Repository: electric-sql/pglite Branch: main Commit: f28c95854494 Files: 421 Total size: 11.9 MB Directory structure: gitextract__bv9p14g/ ├── .changeset/ │ ├── README.md │ └── config.json ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.md │ │ ├── extension-request.md │ │ └── feature_request.md │ └── workflows/ │ └── build_and_test.yml ├── .gitignore ├── .gitmodules ├── .prettierrc.cjs ├── LICENSE ├── POSTGRES-LICENSE ├── README.md ├── docs/ │ ├── .prettierignore │ ├── .vitepress/ │ │ ├── config.mts │ │ └── theme/ │ │ ├── custom.css │ │ └── index.js │ ├── benchmarks.md │ ├── components/ │ │ ├── HeroImage.vue │ │ ├── Repl.vue │ │ └── starCount.ts │ ├── count.data.ts │ ├── debugging.md │ ├── docs/ │ │ ├── about.md │ │ ├── api.md │ │ ├── bundler-support.md │ │ ├── filesystems.md │ │ ├── framework-hooks/ │ │ │ ├── react.md │ │ │ └── vue.md │ │ ├── index.md │ │ ├── live-queries.md │ │ ├── multi-tab-worker.md │ │ ├── orm-support.md │ │ ├── pglite-socket.md │ │ ├── pglite-tools.md │ │ ├── repl.md │ │ ├── sync.md │ │ ├── upgrade.md │ │ └── videos.md │ ├── eslint.config.js │ ├── examples.md │ ├── extensions/ │ │ ├── age.md │ │ ├── development.md │ │ ├── extensions.data.ts │ │ └── index.md │ ├── index.md │ ├── package.json │ └── repl/ │ ├── ReplPlayground.vue │ ├── allExtensions.ts │ └── index.md ├── eslint.config.js ├── examples/ │ ├── react/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src/ │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── MyPGliteComponent.tsx │ │ │ ├── MyPGliteItemsComponent.tsx │ │ │ ├── index.css │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ └── unixSocket/ │ ├── .gitignore │ ├── package.json │ ├── src/ │ │ └── index.ts │ └── tsup.config.ts ├── package.json ├── packages/ │ ├── benchmark/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── baseline.ts │ │ ├── eslint.config.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── benchmark1.sql │ │ │ ├── benchmark10.sql │ │ │ ├── benchmark11.sql │ │ │ ├── benchmark12.sql │ │ │ ├── benchmark13.sql │ │ │ ├── benchmark14.sql │ │ │ ├── benchmark15.sql │ │ │ ├── benchmark16.sql │ │ │ ├── benchmark2.1.sql │ │ │ ├── benchmark2.sql │ │ │ ├── benchmark3.1.sql │ │ │ ├── benchmark3.sql │ │ │ ├── benchmark4.sql │ │ │ ├── benchmark5.sql │ │ │ ├── benchmark6.sql │ │ │ ├── benchmark7.sql │ │ │ ├── benchmark8.sql │ │ │ ├── benchmark9.sql │ │ │ ├── benchmarks-worker.js │ │ │ ├── benchmarks.js │ │ │ ├── index.html │ │ │ ├── rtt-worker.js │ │ │ ├── rtt.html │ │ │ ├── rtt.js │ │ │ └── styles.css │ │ └── tsconfig.json │ ├── pg-protocol/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── buffer-reader.ts │ │ │ ├── buffer-writer.ts │ │ │ ├── index.ts │ │ │ ├── messages.ts │ │ │ ├── parser.ts │ │ │ ├── serializer.ts │ │ │ ├── string-utils.ts │ │ │ └── types.ts │ │ ├── test/ │ │ │ ├── inbound-parser.test.ts │ │ │ ├── outbound-serializer.test.ts │ │ │ ├── string-utils.test.ts │ │ │ └── testing/ │ │ │ ├── buffer-list.ts │ │ │ └── test-buffers.ts │ │ ├── tsconfig.json │ │ ├── tsup.config.ts │ │ └── vitest.config.ts │ ├── pglite/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── examples/ │ │ │ ├── basic.html │ │ │ ├── basic.js │ │ │ ├── copy.html │ │ │ ├── dump-data-dir.html │ │ │ ├── dump-data-dir.js │ │ │ ├── fts.html │ │ │ ├── live-changes.html │ │ │ ├── live-incremental.html │ │ │ ├── live.html │ │ │ ├── notify.html │ │ │ ├── opfs-worker.js │ │ │ ├── opfs.html │ │ │ ├── pg_dump.html │ │ │ ├── pg_dump.js │ │ │ ├── plpgsql.html │ │ │ ├── query-params.html │ │ │ ├── query-params.js │ │ │ ├── repl-idb.html │ │ │ ├── repl.html │ │ │ ├── styles.css │ │ │ ├── utils.js │ │ │ ├── vector.html │ │ │ ├── worker-process.js │ │ │ └── worker.html │ │ ├── package.json │ │ ├── scripts/ │ │ │ └── bundle-wasm.ts │ │ ├── src/ │ │ │ ├── age/ │ │ │ │ └── index.ts │ │ │ ├── argsParser.ts │ │ │ ├── base.ts │ │ │ ├── contrib/ │ │ │ │ ├── amcheck.ts │ │ │ │ ├── auto_explain.ts │ │ │ │ ├── bloom.ts │ │ │ │ ├── btree_gin.ts │ │ │ │ ├── btree_gist.ts │ │ │ │ ├── citext.ts │ │ │ │ ├── cube.ts │ │ │ │ ├── dict_int.ts │ │ │ │ ├── dict_xsyn.ts │ │ │ │ ├── earthdistance.ts │ │ │ │ ├── file_fdw.ts │ │ │ │ ├── fuzzystrmatch.ts │ │ │ │ ├── hstore.ts │ │ │ │ ├── intarray.ts │ │ │ │ ├── isn.ts │ │ │ │ ├── lo.ts │ │ │ │ ├── ltree.ts │ │ │ │ ├── pageinspect.ts │ │ │ │ ├── pg_buffercache.ts │ │ │ │ ├── pg_freespacemap.ts │ │ │ │ ├── pg_surgery.ts │ │ │ │ ├── pg_trgm.ts │ │ │ │ ├── pg_visibility.ts │ │ │ │ ├── pg_walinspect.ts │ │ │ │ ├── pgcrypto.ts │ │ │ │ ├── seg.ts │ │ │ │ ├── tablefunc.ts │ │ │ │ ├── tcn.ts │ │ │ │ ├── tsm_system_rows.ts │ │ │ │ ├── tsm_system_time.ts │ │ │ │ ├── unaccent.ts │ │ │ │ └── uuid_ossp.ts │ │ │ ├── definitions/ │ │ │ │ └── tinytar.d.ts │ │ │ ├── errors.ts │ │ │ ├── extensionUtils.ts │ │ │ ├── fs/ │ │ │ │ ├── base.ts │ │ │ │ ├── idbfs.ts │ │ │ │ ├── index.ts │ │ │ │ ├── memoryfs.ts │ │ │ │ ├── nodefs.ts │ │ │ │ ├── opfs-ahp.ts │ │ │ │ └── tarUtils.ts │ │ │ ├── index.ts │ │ │ ├── initdb.ts │ │ │ ├── initdbModFactory.ts │ │ │ ├── interface.ts │ │ │ ├── live/ │ │ │ │ ├── index.ts │ │ │ │ └── interface.ts │ │ │ ├── parse.ts │ │ │ ├── pg_hashids/ │ │ │ │ └── index.ts │ │ │ ├── pg_ivm/ │ │ │ │ └── index.ts │ │ │ ├── pg_textsearch/ │ │ │ │ └── index.ts │ │ │ ├── pg_uuidv7/ │ │ │ │ └── index.ts │ │ │ ├── pglite.ts │ │ │ ├── pgtap/ │ │ │ │ └── index.ts │ │ │ ├── polyfills/ │ │ │ │ ├── blank.ts │ │ │ │ └── indirectEval.ts │ │ │ ├── postgresMod.ts │ │ │ ├── templating.ts │ │ │ ├── types.ts │ │ │ ├── utils.ts │ │ │ ├── vector/ │ │ │ │ └── index.ts │ │ │ └── worker/ │ │ │ └── index.ts │ │ ├── tests/ │ │ │ ├── age.test.ts │ │ │ ├── array-types.test.ts │ │ │ ├── basic.test.ts │ │ │ ├── clone.test.js │ │ │ ├── contrib/ │ │ │ │ ├── amcheck.test.js │ │ │ │ ├── auto_explain.test.js │ │ │ │ ├── bloom.test.js │ │ │ │ ├── btree_gin.test.js │ │ │ │ ├── btree_gist.test.js │ │ │ │ ├── citext.test.js │ │ │ │ ├── cube.test.js │ │ │ │ ├── dict_int.test.js │ │ │ │ ├── dict_xsyn.test.ts │ │ │ │ ├── earthdistance.test.js │ │ │ │ ├── file_fdw.test.js │ │ │ │ ├── fuzzystrmatch.test.js │ │ │ │ ├── hstore.test.js │ │ │ │ ├── intarray.test.js │ │ │ │ ├── isn.test.js │ │ │ │ ├── lo.test.js │ │ │ │ ├── ltree.test.js │ │ │ │ ├── pageinspect.test.js │ │ │ │ ├── pg_buffercache.test.js │ │ │ │ ├── pg_freespacemap.test.ts │ │ │ │ ├── pg_surgery.test.js │ │ │ │ ├── pg_trgm.test.js │ │ │ │ ├── pg_visibility.test.js │ │ │ │ ├── pg_walinspect.test.js │ │ │ │ ├── pgcrypto.test.js │ │ │ │ ├── seg.test.js │ │ │ │ ├── tablefunc.test.js │ │ │ │ ├── tcn.test.js │ │ │ │ ├── tsm_system_rows.test.js │ │ │ │ ├── tsm_system_time.test.js │ │ │ │ ├── unaccent.test.js │ │ │ │ └── uuid_ossp.test.js │ │ │ ├── describe-query.test.ts │ │ │ ├── drop-database.test.ts │ │ │ ├── dump.test.js │ │ │ ├── exec-protocol.test.ts │ │ │ ├── format.test.js │ │ │ ├── fts.english.test.js │ │ │ ├── fts.simple.test.js │ │ │ ├── instantiation.test.ts │ │ │ ├── largeobjects.test.js │ │ │ ├── live.test.ts │ │ │ ├── message-context-leak.test.ts │ │ │ ├── notify.test.ts │ │ │ ├── pg_hashids.test.ts │ │ │ ├── pg_ivm.test.ts │ │ │ ├── pg_textsearch.test.ts │ │ │ ├── pg_uuidv7.test.ts │ │ │ ├── pgtap.test.ts │ │ │ ├── pgvector.test.ts │ │ │ ├── plpgsql.test.js │ │ │ ├── query-sizes.test.ts │ │ │ ├── targets/ │ │ │ │ ├── deno/ │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── basic.test.deno.js │ │ │ │ │ ├── denoUtils.js │ │ │ │ │ ├── fs.test.deno.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── pgvector.test.deno.js │ │ │ │ │ └── runtest.sh │ │ │ │ ├── runtimes/ │ │ │ │ │ ├── base.js │ │ │ │ │ ├── node-fs.test.js │ │ │ │ │ └── node-memory.test.js │ │ │ │ └── web/ │ │ │ │ ├── base.js │ │ │ │ ├── blank.html │ │ │ │ ├── chromium-idb.test.web.js │ │ │ │ ├── chromium-memory.test.web.js │ │ │ │ ├── chromium-opfs-ahp.test.web.js │ │ │ │ ├── firefox-idb.test.web.js │ │ │ │ ├── firefox-memory.test.web.js │ │ │ │ ├── firefox-opfs-ahp.test.web.js │ │ │ │ ├── webkit-idb.test.web.js │ │ │ │ ├── webkit-memory.test.web.js │ │ │ │ ├── webkit-opfs-ahp.test.web.js │ │ │ │ └── worker.js │ │ │ ├── templating.test.js │ │ │ ├── test-utils.ts │ │ │ ├── triggers.test.js │ │ │ ├── types.test.ts │ │ │ ├── user.test.ts │ │ │ ├── utils.test.ts │ │ │ └── xml.test.ts │ │ ├── tsconfig.json │ │ ├── tsup.config.ts │ │ └── vitest.config.ts │ ├── pglite-postgis/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── package.json │ │ ├── scripts/ │ │ │ └── bundle-wasm.ts │ │ ├── src/ │ │ │ └── index.ts │ │ ├── tests/ │ │ │ └── postgis.test.ts │ │ ├── tsconfig.json │ │ ├── tsup.config.ts │ │ └── vitest.config.ts │ ├── pglite-react/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ └── provider.tsx │ │ ├── test/ │ │ │ ├── hooks.test.tsx │ │ │ ├── provider.test-d.tsx │ │ │ └── provider.test.tsx │ │ ├── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsup.config.ts │ │ └── vitest.config.ts │ ├── pglite-repl/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src/ │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── Repl.css │ │ │ ├── Repl.tsx │ │ │ ├── ReplResponse.tsx │ │ │ ├── ReplTable.tsx │ │ │ ├── index.css │ │ │ ├── main.tsx │ │ │ ├── sqlSupport.ts │ │ │ ├── types.ts │ │ │ ├── utils.ts │ │ │ └── vite-env.d.ts │ │ ├── src-webcomponent/ │ │ │ └── main.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ ├── vite.config.ts │ │ └── vite.webcomp.config.ts │ ├── pglite-socket/ │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── examples/ │ │ │ └── basic-server.ts │ │ ├── package.json │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── scripts/ │ │ │ └── server.ts │ │ ├── tests/ │ │ │ ├── index.test.ts │ │ │ ├── query-with-node-pg.test.ts │ │ │ ├── query-with-postgres-js.test.ts │ │ │ └── server.test.ts │ │ ├── tsconfig.json │ │ ├── tsup.config.ts │ │ └── vitest.config.ts │ ├── pglite-sync/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── example/ │ │ │ ├── README.md │ │ │ ├── docker-compose.yaml │ │ │ ├── index.html │ │ │ └── init.sql │ │ ├── package.json │ │ ├── src/ │ │ │ ├── apply.ts │ │ │ ├── index.ts │ │ │ ├── subscriptionState.ts │ │ │ └── types.ts │ │ ├── test/ │ │ │ └── sync.test.ts │ │ ├── test-e2e/ │ │ │ ├── docker_compose.yaml │ │ │ └── sync-e2e.test.ts │ │ ├── tsconfig.json │ │ ├── tsup.config.ts │ │ ├── vitest-e2e.config.ts │ │ └── vitest.config.ts │ ├── pglite-tools/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── eslint.config.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── index.ts │ │ │ ├── pgDumpModFactory.ts │ │ │ └── pg_dump.ts │ │ ├── tests/ │ │ │ ├── pg_dump.test.ts │ │ │ └── setup.ts │ │ ├── tsconfig.json │ │ ├── tsup.config.ts │ │ └── vitest.config.ts │ └── pglite-vue/ │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── eslint.config.js │ ├── package.json │ ├── src/ │ │ ├── dependency-injection.ts │ │ ├── hooks.ts │ │ └── index.ts │ ├── test/ │ │ ├── hooks.test.ts │ │ ├── injection.test-d.ts │ │ └── injection.test.ts │ ├── test-setup.ts │ ├── tsconfig.json │ ├── tsup.config.ts │ └── vitest.config.ts ├── pnpm-workspace.yaml └── tsconfig.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: .changeset/README.md ================================================ # Changesets Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works with multi-package repos, or single-package repos to help you version and publish your code. You can find the full documentation for it [in our repository](https://github.com/changesets/changesets) We have a quick list of common questions to get you started engaging with this project in [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) ================================================ FILE: .changeset/config.json ================================================ { "$schema": "https://unpkg.com/@changesets/config@3.0.2/schema.json", "changelog": "@changesets/cli/changelog", "commit": false, "fixed": [], "linked": [], "access": "public", "baseBranch": "main", "updateInternalDependencies": "patch", "ignore": [ "benchmark", "pglite-react-example", "pglite-unixsocket-example" ], "privatePackages": { "tag": true, "version": true }, "___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": { "onlyUpdatePeerDependentsWhenOutOfRange": true } } ================================================ FILE: .gitattributes ================================================ postgres/** linguist-vendored packages/benchmark/** linguist-vendored docs/** linguist-documentation ================================================ FILE: .github/ISSUE_TEMPLATE/bug-report.md ================================================ --- name: Bug report about: Create a report to help us fix an issue title: "[BUG]: " labels: bug assignees: '' --- **Describe the bug** A clear and concise description of what the bug is. **To Reproduce** - include code sample(s) Add steps to reproduce the behavior. Please **include code** that reproduces the issue. This greatly improves debugging time! **Logs** If applicable, include logs (ideally as text, not screenshots) that you gathered. **Details** - PGlite version - using any extensions? which ones? - OS version - node, bun, deno or browser version **Additional context** Add any other context about the problem here. **Other** If 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. ================================================ FILE: .github/ISSUE_TEMPLATE/extension-request.md ================================================ --- name: Extension request about: PostgreSQL extension porting to PGlite title: "[Extension request]: " labels: extension request assignees: '' --- **Extension request** Before 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). We welcome contributions and would love to see your extension added to our [extension catalog](https://pglite.dev/extensions/). **URL** Add here the URL to the repo containing the extension's code. **Dependencies** Does this extension have any dependencies (eg pgrx, openssl etc.)? ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.md ================================================ --- name: Feature request about: Suggest a new feature for this project title: 'Feature request: ' labels: enhancement assignees: '' --- **New feature request** Let us know what new feature you'd like to see in PGlite. **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. ================================================ FILE: .github/workflows/build_and_test.yml ================================================ name: Build and test PGlite packages concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true permissions: pull-requests: write issues: write contents: read on: workflow_dispatch: inputs: message: description: 'Build PGLite packages' push: branches: ['main'] pull_request: jobs: stylecheck: name: Stylecheck runs-on: blacksmith-4vcpu-ubuntu-2204 steps: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 - uses: actions/setup-node@v4 with: node-version: 20 cache: pnpm - name: Install dependencies run: pnpm install --frozen-lockfile - name: Stylecheck packages run: pnpm -r stylecheck build-all: name: Install, build all and test as described in README runs-on: blacksmith-32vcpu-ubuntu-2204 env: BUILD_CONFIG_FILE: postgres-pglite/.buildconfig TZ: UTC steps: - uses: actions/checkout@v4 with: submodules: recursive - uses: pnpm/action-setup@v4 - uses: actions/setup-node@v4 with: node-version: 20 cache: pnpm - name: Install working-directory: ${{ github.workspace }} run: pnpm install - name: Build all working-directory: ${{ github.workspace }} env: PGSRC: ${{ github.workspace }}/postgres-pglite run: | pnpm build:all - name: Upload PGlite Interim to Github artifacts id: upload-pglite-interim-build-files uses: actions/upload-artifact@v4 with: name: pglite-interim-build-files-node-v20.x path: ./packages/pglite/release/** retention-days: 60 - name: Upload pglite-tools build artifacts to Github artifacts id: upload-pglite-tools-release-files uses: actions/upload-artifact@v4 with: name: pglite-tools-release-files-node-v20.x path: ./packages/pglite-tools/release/** retention-days: 60 - name: Upload pglite-postgis build artifacts to Github artifacts id: upload-pglite-postgis-release-files uses: actions/upload-artifact@v4 with: name: pglite-postgis-release-files-node-v20.x path: ./packages/pglite-postgis/release/** retention-days: 60 - name: Typecheck pglite working-directory: ${{ github.workspace }}/packages/pglite run: pnpm typecheck - name: Test pglite working-directory: ${{ github.workspace }}/packages/pglite run: pnpm test build-and-test-pglite: name: Build and Test packages/pglite runs-on: blacksmith-32vcpu-ubuntu-2204 strategy: matrix: node: [20.x, 21.x, 22.x, 23.x, 24.x] fail-fast: false # allow the build to continue even if some tests fail defaults: run: working-directory: ./packages/pglite needs: [build-all] steps: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} cache: pnpm - uses: denoland/setup-deno@v1 with: deno-version: vx.x.x - name: Download PGlite WASM build artifacts uses: actions/download-artifact@v4 with: name: pglite-interim-build-files-node-v20.x path: ./packages/pglite/release - name: Download pglite-tools WASM build artifacts uses: actions/download-artifact@v4 with: name: pglite-tools-release-files-node-v20.x path: ./packages/pglite-tools/release - name: Download pglite-postgis build artifacts uses: actions/download-artifact@v4 with: name: pglite-postgis-release-files-node-v20.x path: ./packages/pglite-postgis/release - name: Install dependencies run: | pnpm install --frozen-lockfile pnpm exec playwright install --with-deps - name: Build dependencies run: pnpm --filter "pglite^..." build - name: Typecheck run: pnpm typecheck - name: Build run: pnpm build - name: Test web integrations # retry on failure as web tests can be flaky run: pnpm test:web || pnpm test:web || pnpm test:web - name: Test Deno run: pnpm test:deno - name: Pack for distribution run: pnpm pack - name: Upload PGlite distribution artifact id: upload-pglite-dist uses: actions/upload-artifact@v4 with: name: pglite-dist-node-v${{ matrix.node }} path: ./packages/pglite/dist/* - name: Upload PGlite package artifact id: upload-pglite-package uses: actions/upload-artifact@v4 with: name: pglite-package-node-v${{ matrix.node }} path: ./packages/pglite/electric-sql-pglite-*.tgz retention-days: 60 - name: Find Comment uses: peter-evans/find-comment@v3 id: fc if: github.event_name == 'pull_request' with: issue-number: ${{ github.event.pull_request.number }} comment-author: 'github-actions[bot]' body-includes: '- PGlite with node' - name: Create or update build outputs comment uses: peter-evans/create-or-update-comment@v4 if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository continue-on-error: true with: comment-id: ${{ steps.fc.outputs.comment-id }} issue-number: ${{ github.event.pull_request.number }} body: | - PGlite with node v${{ matrix.node }}: ${{ steps.upload-pglite-package.outputs.artifact-url }} edit-mode: append build-and-test-pglite-dependents: name: Build and Test packages dependent on PGlite runs-on: blacksmith-32vcpu-ubuntu-2204 strategy: matrix: node: [20.x, 21.x, 22.x, 23.x, 24.x] fail-fast: false # allow the build to continue even if some tests fail needs: [build-and-test-pglite] steps: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} cache: pnpm - name: Download PGlite build artifacts uses: actions/download-artifact@v4 with: name: pglite-dist-node-v${{ matrix.node }} path: ./packages/pglite/dist/ - name: Download pglite-tools WASM build artifacts uses: actions/download-artifact@v4 with: name: pglite-tools-release-files-node-v20.x path: ./packages/pglite-tools/release/ - name: Download pglite-postgis build artifacts uses: actions/download-artifact@v4 with: name: pglite-postgis-release-files-node-v20.x path: ./packages/pglite-postgis/release/ - name: Install dependencies run: pnpm install --frozen-lockfile - name: Build pg-protocol run: pnpm --filter "@electric-sql/pg-protocol" build - name: Build packages run: pnpm --filter="...^pglite" build - name: Typecheck packages run: pnpm --filter="...^pglite" typecheck - name: Test packages run: pnpm --filter="...^pglite" test - name: Upload pglite-tools distribution artifact id: upload-pglite-tools-dist uses: actions/upload-artifact@v4 with: name: pglite-tools-dist-node-v${{ matrix.node }} path: ./packages/pglite-tools/dist/* - name: Upload pglite-postgis distribution artifact id: upload-pglite-postgis-dist uses: actions/upload-artifact@v4 with: name: pglite-postgis-dist-node-v${{ matrix.node }} path: ./packages/pglite-postgis/dist/* publish-website-with-demos: name: Publish website with demos runs-on: blacksmith-4vcpu-ubuntu-2204 needs: [build-and-test-pglite, build-and-test-pglite-dependents] steps: - name: Checkout uses: actions/checkout@v4 with: submodules: true - uses: pnpm/action-setup@v4 - uses: actions/setup-node@v4 with: node-version: 20 cache: pnpm - name: Download PGlite WASM build artifacts uses: actions/download-artifact@v4 with: name: pglite-interim-build-files-node-v20.x path: ./packages/pglite/release - name: Download pglite-tools WASM build artifacts uses: actions/download-artifact@v4 with: name: pglite-tools-release-files-node-v20.x path: ./packages/pglite-tools/release - name: Download pglite-postgis build artifacts uses: actions/download-artifact@v4 with: name: pglite-postgis-release-files-node-v20.x path: ./packages/pglite-postgis/release/ - name: Download PGlite build artifacts uses: actions/download-artifact@v4 with: name: pglite-dist-node-v20.x path: ./packages/pglite/dist/ - name: Download pglite-postgis dist artifacts uses: actions/download-artifact@v4 with: name: pglite-postgis-dist-node-v20.x path: ./packages/pglite-postgis/dist/ - name: Install dependencies run: pnpm install --frozen-lockfile - name: Build REPL and benchmark packages needed for examples run: pnpm --filter "@electric-sql/pglite-react" --filter "@electric-sql/pglite-repl" --filter "benchmark" build - name: Download PGlite web build artifacts uses: actions/download-artifact@v4 with: name: pglite-interim-build-files-node-v20.x path: /tmp/web - name: Download pglite-tools dist artifacts to tmp uses: actions/download-artifact@v4 with: name: pglite-tools-dist-node-v20.x path: /tmp/pglite-tools - name: Build demo site env: PGSRC: ${{ github.workspace }}/postgres-pglite POSTGRES_PGLITE_OUT: ${{ github.workspace }}/packages/pglite/release PGLITE: ${{ github.workspace }}/packages/pglite working-directory: ${{ github.workspace }} run: | mkdir -p /tmp/web/examples/ /tmp/web/dist /tmp/web/benchmark cp -r ${PGLITE}/dist/* /tmp/web/dist/ cp -r ${PGLITE}/examples/* /tmp/web/examples/ cp -r ${{ github.workspace }}/packages/benchmark/dist/* /tmp/web/benchmark/ rm -rf /tmp/web/examples/pglite-tools cp -r /tmp/pglite-tools /tmp/web/examples/ - name: Build docs working-directory: ./docs run: | pnpm run docs:build cp -r ./.vitepress/dist/* /tmp/web/ - name: Upload Demos to Github artifacts id: upload-demos uses: actions/upload-artifact@v4 with: name: pglite-demos path: /tmp/web/** retention-days: 60 - name: Find Comment uses: peter-evans/find-comment@v3 id: fc if: github.event_name == 'pull_request' with: issue-number: ${{ github.event.pull_request.number }} comment-author: 'github-actions[bot]' body-includes: "- Demos:" - name: Create or update build outputs comment uses: peter-evans/create-or-update-comment@v4 if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository continue-on-error: true with: comment-id: ${{ steps.fc.outputs.comment-id }} issue-number: ${{ github.event.pull_request.number }} body: | - Demos: ${{ steps.upload-demos.outputs.artifact-url }} edit-mode: append - name: Deploy website to Netlify uses: nwtgck/actions-netlify@v3.0 with: publish-dir: '/tmp/web' production-branch: master github-token: ${{ secrets.GITHUB_TOKEN }} deploy-message: 'Deploy PR${{ github.event.pull_request.id }}: ${{ github.event.pull_request.title }}' env: NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} timeout-minutes: 1 changesets-release: if: github.event_name == 'push' permissions: id-token: write # Required for npm trusted publishing (OIDC) contents: write # to create release (changesets/action) issues: write # to post issue comments (changesets/action) pull-requests: write # to create pull request (changesets/action) name: Make a PR or publish runs-on: ubuntu-22.04 needs: [build-all] steps: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 - uses: actions/setup-node@v4 with: node-version: 24 # Required for npm trusted publishing (npm 11.5.1+) cache: pnpm - name: Download PGlite WASM build artifacts uses: actions/download-artifact@v4 with: name: pglite-interim-build-files-node-v20.x path: ./packages/pglite/release - name: Download pglite-tools build artifacts uses: actions/download-artifact@v4 with: name: pglite-tools-release-files-node-v20.x path: ./packages/pglite-tools/release/ - name: Download pglite-postgis build artifacts uses: actions/download-artifact@v4 with: name: pglite-postgis-release-files-node-v20.x path: ./packages/pglite-postgis/release/ - run: pnpm install --frozen-lockfile - run: pnpm --filter "./packages/**" build - name: Create Release Pull Request or Publish id: changesets uses: changesets/action@v1 with: version: pnpm ci:version publish: pnpm ci:publish title: 'chore: publish new package versions' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ================================================ FILE: .gitignore ================================================ .DS_Store .vscode node_modules /packages/pglite/dist /packages/pglite/pgdata-test /packages/pglite/package-lock.json /packages/**/dist /build /postgresql-*.tar.bz2 /postgresql-* /postgresql /patches/imports/* /patches/exports/pgcore.wasm-objdump docs/.vitepress/dist docs/.vitepress/cache ================================================ FILE: .gitmodules ================================================ [submodule "postgres-pglite"] path = postgres-pglite url = ../postgres-pglite.git ================================================ FILE: .prettierrc.cjs ================================================ /** * @see https://prettier.io/docs/en/configuration.html * @type {import("prettier").Options} */ module.exports = { tabWidth: 2, semi: false, singleQuote: true, } ================================================ FILE: LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS ================================================ FILE: POSTGRES-LICENSE ================================================ PostgreSQL Database Management System (formerly known as Postgres, then as Postgres95) Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group Portions Copyright (c) 1994, The Regents of the University of California Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this paragraph and the following two paragraphs appear in all copies. IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ================================================ FILE: README.md ================================================

ElectricSQL logo

PGlite - the WASM build of Postgres from ElectricSQL.
Build reactive, realtime, local-first apps directly on Postgres.

License - Apache 2.0 Status - Alpha Chat - Discord

# PGlite - Postgres in WASM ![PGlite](https://raw.githubusercontent.com/electric-sql/pglite/main/screenshot.png) PGlite 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). ```javascript import { PGlite } from "@electric-sql/pglite"; const db = new PGlite(); await db.query("select 'Hello world' as message;"); // -> { rows: [ { message: "Hello world" } ] } ``` It can be used as an ephemeral in-memory database, or with persistence either to the file system (Node/Bun/Deno) or indexedDB (Browser). Unlike previous "Postgres in the browser" projects, PGlite does not use a Linux virtual machine - it is simply Postgres in WASM. For full documentation and user guides see [pglite.dev](https://pglite.dev). ## Browser It can be installed and imported using your usual package manager: ```js import { PGlite } from "@electric-sql/pglite"; ``` or using a CDN such as JSDeliver: ```js import { PGlite } from "https://cdn.jsdelivr.net/npm/@electric-sql/pglite/dist/index.js"; ``` Then for an in-memory Postgres: ```js const db = new PGlite() await db.query("select 'Hello world' as message;") // -> { rows: [ { message: "Hello world" } ] } ``` or to persist the database to indexedDB: ```js const db = new PGlite("idb://my-pgdata"); ``` ## Node/Bun/Deno Install into your project: **NodeJS** ```bash npm install @electric-sql/pglite ``` **Bun** ```bash bun install @electric-sql/pglite ``` **Deno** ```bash deno add npm:@electric-sql/pglite ``` To use the in-memory Postgres: ```javascript import { PGlite } from "@electric-sql/pglite"; const db = new PGlite(); await db.query("select 'Hello world' as message;"); // -> { rows: [ { message: "Hello world" } ] } ``` or to persist to the filesystem: ```javascript const db = new PGlite("./path/to/pgdata"); ``` ## How it works PostgreSQL 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. Fortunately, 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. ## Limitations - PGlite is single user/connection. ## How to build PGlite and contribute The build process of PGlite is split into two parts: 1. Building the Postgres WASM module. 2. Building the PGlite client library and other TypeScript packages. Docker 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. To start checkout the repository and install dependencies: ```bash git clone --recurse-submodules https://github.com/electric-sql/pglite cd pglite pnpm install ``` To build everything, we have the convenient `pnpm build:all` command in the root of the repository. This command will: 1. Use Docker to build the Postgres WASM module. The artifacts produced by this step are then copied to `/packages/pglite/release`. 2. Build the PGlite client library and other TypeScript packages. To _only_ build the Postgres WASM module (i.e. point 1 above), run ```bash pnpm wasm:build ``` If 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. To build all TypeScript packages (i.e. point 2 of the above), run: ```bash pnpm ts:build ``` This 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. Or alternatively to build a single package, move into the package directory and run: ```bash cd packages/pglite pnpm build ``` When ready to open a PR, run the following command at the root of the repository: ```bash pnpm changeset ``` And follow the instructions to create an appropriate changeset. Please ensure any contributions that touch code are accompanied by a changeset. ## Acknowledgments PGlite 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). ## Sponsors Big shoutout to everybody supporting us! ### Blacksmith ## License PGlite 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. Changes to the [Postgres source](https://github.com/electric-sql/postgres-wasm) are licensed under the PostgreSQL License. ================================================ FILE: docs/.prettierignore ================================================ .vitepress/dist .vitepress/cache ================================================ FILE: docs/.vitepress/config.mts ================================================ import { defineConfig } from 'vitepress' // https://vitepress.dev/reference/site-config export default defineConfig({ lang: 'en', title: 'PGlite', description: 'Lightweight WASM Postgres', appearance: 'force-dark', base: '/', cleanUrls: true, ignoreDeadLinks: [ (url) => { // Ignore links to our example pages return url.toLowerCase().startsWith('./examples') }, (url) => { // Ignore links to the benchmark runners return url.toLowerCase().startsWith('./benchmark/') }, ], head: [ [ 'link', { rel: 'icon', type: 'image/png', sizes: '16x16', href: '/img/favicons/favicon-16x16.png', }, ], [ 'link', { rel: 'icon', type: 'image/png', sizes: '32x32', href: '/img/favicons/favicon-32x32.png', }, ], [ 'link', { rel: 'apple-touch-icon', sizes: '180x180', href: '/img/favicons/apple-touch-icon.png', }, ], [ 'link', { rel: 'icon', type: 'image/svg+xml', href: '/img/brand/icon-light.svg', }, ], [ 'meta', { property: 'og:image', content: '/img/brand/og-image.png', }, ], [ 'script', { defer: 'defer', 'data-domain': 'pglite.dev', src: 'https://plausible.io/js/script.js', }, ], ], themeConfig: { // https://vitepress.dev/reference/default-theme-config logo: { dark: '/img/brand/logo.svg', light: '/img/brand/logo-light.svg', }, nav: [ { text: 'Home', link: '/' }, { text: 'About', link: '/docs/about' }, { text: 'Docs', link: '/docs/' }, { text: 'REPL', link: '/repl/' }, { text: 'ElectricSQL', link: 'https://www.electric-sql.com' }, { text: 'Star on GitHub', link: 'https://github.com/electric-sql/pglite', }, ], sidebar: [ { text: 'About', items: [ { text: 'What is PGlite', link: '/docs/about' }, { text: 'Videos', link: '/docs/videos' }, ], }, { text: 'Docs', items: [ { text: 'Getting Started', link: '/docs/' }, { text: 'PGlite API', link: '/docs/api' }, { text: 'Live Queries', link: '/docs/live-queries' }, { text: 'Filesystems', link: '/docs/filesystems' }, { text: 'Framework Hooks', link: '/react', base: '/docs/framework-hooks', collapsed: false, items: [ { text: 'React', link: '/react' }, { text: 'Vue', link: '/vue' }, ], }, { text: 'Bundler Support', link: '/docs/bundler-support' }, { text: 'Multi-tab Worker', link: '/docs/multi-tab-worker' }, { text: 'REPL Component', link: '/docs/repl' }, { text: 'ORMs & Query Builders', link: '/docs/orm-support' }, { text: 'Sync using ElectricSQL', link: '/docs/sync' }, { text: 'PGlite Socket', link: '/docs/pglite-socket' }, { text: 'PGlite tools', link: '/pglite-tools', base: '/docs', collapsed: false, items: [ { text: 'Package', link: '/pglite-tools' }, { text: 'pgdump', link: '/pglite-tools#pgDump' }, ], }, { text: 'Upgrade between minor versions', link: '/docs/upgrade' }, ], }, { text: 'Extensions', items: [ { text: 'Extensions Catalog', link: '/extensions/' }, { text: 'Extension Development', link: '/extensions/development' }, ], }, { text: 'Reference', items: [ { text: 'Examples', link: '/examples.md' }, { text: 'Benchmarks', link: '/benchmarks.md' }, { text: 'Debugging', link: '/debugging.md' }, ], }, ], siteTitle: false, socialLinks: [ { icon: 'discord', link: 'https://discord.electric-sql.com' }, { icon: 'github', link: 'https://github.com/electric-sql/pglite' }, ], footer: { message: 'Dual-licensed under Apache 2.0 and the PostgreSQL License', copyright: '© ElectricSQL', }, search: { provider: 'local', }, }, vue: { template: { compilerOptions: { isCustomElement: (tag) => tag.startsWith('pglite-'), }, }, }, }) ================================================ FILE: docs/.vitepress/theme/custom.css ================================================ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300..700&display=swap'); :root, .dark { --vp-c-indigo-1: #d0bcff; --vp-c-indigo-2: #998fe7; --vp-c-indigo-3: #7e78db; --vp-nav-logo-height: 30px; --electric-color: #00d2a0; --ddn-color: #d0bcff; --pglite-color: #f6f95c; --vp-c-brand-1: var(--pglite-color); --vp-c-brand-2: #f1f35e; --vp-c-brand-3: #d8da53; } .dark { --vp-c-text-1: rgba(255, 255, 245, 0.92); --vp-c-text-2: rgba(235, 235, 245, 0.75); --vp-c-text-3: rgba(235, 235, 245, 0.55); } @media (max-width: 575px) { .hide-xs { display: none; } } .img-row { display: grid; grid-template-columns: repeat(1, 1fr); flex-direction: row; margin: 20px 0; gap: 10px; } .img-row-2 { grid-template-columns: repeat(2, 1fr); } @media (max-width: 767px) { .img-row-2 { grid-template-columns: repeat(1, 1fr); } } .img-border { border: 1px #ccc solid; border-radius: 10px; padding: 10px; background: rgb(20, 21, 23); } figure { margin: 40px 0; } figcaption { text-align: right; font-size: 90%; max-width: 460px; margin-left: auto; } iframe { color-scheme: auto; } .twitter-tweet { margin: 35px auto -95px !important; } .twitter-tweet iframe { transform: scale(0.8); transform-origin: top left; } .VPHomeHero .VPImage.image-src { max-width: min(calc(250px + 25vw), 560px); margin-left: -40px; margin-top: 10px; } @media (max-width: 959px) { .VPHomeHero .image .image-container { height: calc(190px + 15vw) !important; margin-top: -20px; } .VPHomeHero .VPImage.image-src { margin-left: 0px; } } .VPFeatures { padding-top: 15px !important; padding-bottom: 45px; } .VPFeature .VPImage { width: 50px; } .VPFeature h2.title { font-size: 20px; } .VPFeature.link[href='/product/electric']:hover { border-color: var(--electric-color); } .VPFeature.link[href='/product/pglite']:hover { border-color: var(--pglite-color); } .VPFeature .details { font-weight: 600 !important; } .VPFeature .details, .VPButton.medium, .link-btn, .message, .copywrite { font-size: 14.5px !important; } .product-icon { width: 84px; margin-bottom: 20px; } .about-zap { max-width: min(calc(150px + 25vw), 420px); margin: -20px 0 30px; } @media (max-width: 767px) { .about-zap-container { display: none; } } .vp-doc blockquote { margin: 25px 10px 30px; } .VPButton.brand { color: var(--vp-c-gray-3) !important; } @media (min-width: 768px) { .VPNav a.VPLink[href="https://github.com/electric-sql/pglite"]::after { display: none !important; } .VPNav a.VPLink[href="https://github.com/electric-sql/pglite"] span { border-radius: 20px; padding: 0 15px; line-height: 30px; font-size: 14.5px; color: var(--vp-c-gray-3) !important; border-color: var(--vp-button-brand-border); background-color: var(--vp-button-brand-bg); transition: color 0.25s, border-color 0.25s, background-color 0.25s; } .VPNav a.VPLink[href="https://github.com/electric-sql/pglite"] span:hover { border-color: var(--vp-button-brand-hover-border); color: var(--vp-button-brand-hover-text); background-color: var(--vp-button-brand-hover-bg); } } ================================================ FILE: docs/.vitepress/theme/index.js ================================================ // .vitepress/theme/index.js import { h } from 'vue' import DefaultTheme from 'vitepress/theme-without-fonts' import './custom.css' import HeroImage from '../../components/HeroImage.vue' export default { extends: DefaultTheme, Layout() { return h(DefaultTheme.Layout, null, { 'home-hero-image': () => h(HeroImage), }) }, } ================================================ FILE: docs/benchmarks.md ================================================ # Benchmarks There 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). We also have a set of [native baseline](#native-baseline) results comparing native SQLite (via the Node better-sqlite3 package) to full Postgres. Comparing 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. Another consideration when analyzing the speed, is the performance of the various different VFS implementations providing persistence to both PGlite and wa-sqlite. The key findings are: 1. 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). 2. 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. 3. 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. We 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. These results below were run on an M2 Macbook Air. ## Round-trip-time benchmarks These 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. Values are average ms - lower is better. ![](./public/img/benchmark/rtt.svg) | Test | PGlite Memory | PGlite IDB | PGlite IDB
_relaxed durability_ | PGlite OPFS AHP | PGlite OPFS AHP
_relaxed durability_ | SQLite Memory | SQLite IDB | SQLite IDB
_relaxed durability_ | SQLite IDB BatchAtomic | SQLite IDB BatchAtomic
_relaxed durability_ | SQLite OPFS | SQLite OPFS AHP | | ------------------------ | ------------- | ---------- | ---------------------------------- | --------------- | --------------------------------------- | ------------- | ---------- | ---------------------------------- | ---------------------- | ---------------------------------------------- | ----------- | --------------- | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | ## SQLite benchmark suite The SQLite benchmark suite, converted to web for wa-sqlite - it performs a number of large queries to test the performance of the sql engine. Values are seconds to complete the test - lower is better. ![](./public/img/benchmark/sqlite-suite.svg) | Test | PGlite
Memory | PGlite
IDB FS | PGlite
IDB FS
_relaxed durability_ | PGlite
OPFS Access Handle Pool | PGlite
OPFS Access Handle Pool
_relaxed durability_ | wa-sqlite
Memory (sync) | wa-sqlite
Memory (async) | wa-sqlite
DB Minimal | wa-sqlite
IDB Minimal
_relaxed durability_ | wa-sqlite
IDB Batch Atomic | wa-sqlite
IDB Batch Atomic
_relaxed durability_ | wa-sqlite
OPFS | wa-sqlite
OPFS Access Handle Pool | | ---------------------------------------------------- | ---------------- | ---------------- | ---------------------------------------- | --------------------------------- | --------------------------------------------------------- | -------------------------- | --------------------------- | ----------------------- | ------------------------------------------------ | ----------------------------- | ----------------------------------------------------- | ----------------- | ------------------------------------ | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | | 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 | ## Native baseline All 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)) ![](./public/img/benchmark/baseline.svg) | Test | SQLite In-Memory | SQLite On-Disk | Postgres | | ---------------------------------------------------- | ---------------- | -------------- | -------- | | Test 1: 1000 INSERTs | 0.002 | 0.288 | 0.007 | | Test 2: 25000 INSERTs in a transaction | 0.022 | 0.019 | 0.114 | | Test 3: 25000 INSERTs into an indexed table | 0.035 | 0.04 | 0.383 | | Test 4: 100 SELECTs without an index | 0.076 | 0.078 | 0.094 | | Test 5: 100 SELECTs on a string comparison | 0.268 | 0.429 | 0.259 | | Test 6: Creating an index | 0.007 | 0.011 | 0.01 | | Test 7: 5000 SELECTs with an index | 0.01 | 0.01 | 0.078 | | Test 8: 1000 UPDATEs without an index | 0.018 | 0.021 | 0.047 | | Test 9: 25000 UPDATEs with an index | 0.047 | 0.056 | 0.307 | | Test 10: 25000 text UPDATEs with an index | 0.032 | 0.041 | 0.416 | | Test 11: INSERTs from a SELECT | 0.022 | 0.027 | 0.072 | | Test 12: DELETE without an index | 0.01 | 0.023 | 0.007 | | Test 13: DELETE with an index | 0.017 | 0.021 | 0.019 | | Test 14: A big INSERT after a big DELETE | 0.017 | 0.021 | 0.048 | | Test 15: A big DELETE followed by many small INSERTs | 0.008 | 0.01 | 0.067 | | Test 16: DROP TABLE | 0.001 | 0.003 | 0.004 | ## Run the benchmarks yourself We have a hosted version of the benchmark runners that you can run yourself: - Benchmark using the SQLite benchmark suite - Benchmark round-trim-time for CRUD queries Additionally, to run the native baseline, checkout the [PGlite monorepo](https://github.com/electric-sql/pglite), then: ```sh cd ./packages/benchmark pnpm install npx tsx baseline.ts ``` ================================================ FILE: docs/components/HeroImage.vue ================================================ ================================================ FILE: docs/components/Repl.vue ================================================ ================================================ FILE: docs/components/starCount.ts ================================================ const FALLBACK_INITIAL_COUNT = 5_000 export async function localStorageCache( key: string, ttl: number, valueCb: () => unknown, ) { const now = new Date().getTime() const cachedItem = localStorage.getItem(key) if (cachedItem) { const cachedData = JSON.parse(cachedItem) if (now < cachedData.expiry) { return cachedData.value } } const value = await valueCb() const expiry = now + ttl * 1000 const dataToCache = { value: value, expiry: expiry, } localStorage.setItem(key, JSON.stringify(dataToCache)) return value } export async function starCount(currentCount) { const ttl = 3600 // 1 hour return localStorageCache('starCount', ttl, async () => { return await fetchStarCount(currentCount) }) } export async function fetchStarCount(currentCount) { const resp = await fetch('https://api.github.com/repos/electric-sql/pglite') if (resp.ok) { const data = await resp.json() return data.stargazers_count } return currentCount || FALLBACK_INITIAL_COUNT } ================================================ FILE: docs/count.data.ts ================================================ import { fetchStarCount } from './components/starCount.ts' export default { async load() { return await fetchStarCount() }, } ================================================ FILE: docs/debugging.md ================================================ # Debugging PGlite Building a `debug` version of PGlite allows you to debug both the TypeScript and WASM parts of the project. You can run an interactive debug session either in Chrome or in Visual Studio Code. ## Using Visual Studio Code ### Prerequisites - Visual Studio Code with [WebAssembly DWARF Debugging](https://marketplace.visualstudio.com/items?itemName=ms-vscode.wasm-dwarf-debugging) extension installed ## Using Chrome ### Prerequisites - Chrome browser - [C/C++ DevTools Support (DWARF) Chrome extension](https://goo.gle/wasm-debugging-extension). # Running the DEBUG build `$ pnpm build:all:debug` This 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. For example, you can start the `JavaScript Debug Terminal` inside VSCode and run some of the pglite tests. From the folder `packages/pglite`: `$ vitest tests/basic.test.ts` ================================================ FILE: docs/docs/about.md ================================================ # What is PGlite PGlite 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). Getting started with PGlite is simple: just install and import the NPM package, then create your embedded database: ```js import { PGlite } from '@electric-sql/pglite' const db = new PGlite() await db.query("select 'Hello world' as message;") // -> { rows: [ { message: "Hello world" } ] } ``` It can be used as an ephemeral in-memory database, or with persistence either to the file system (Node/Bun), or IndexedDB (browser). Unlike previous "Postgres in the browser" projects, PGlite does not use a Linux virtual machine - it is simply Postgres in WASM. It'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. However, there are many more use cases for PGlite beyond its use as an embedded application database: - **Unit and CI testing**
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. - **Local development**
You can use PGlite as an alternative to a full local Postgres for development; simplifying your development environments. - **Remote development, or local web containers**
As PGlite is so lightweight it can be easily embedded into remote containerised development environments, or in-browser [web containers](https://webcontainers.io). - **On-device or edge AI and RAG**
PGlite has full support for [pgvector](../extensions/#pgvector), enabling a local or edge retrieval augmented generation (RAG) workflow. We 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. Read more in our [getting started guide](./index.md). ================================================ FILE: docs/docs/api.md ================================================ --- outline: [2, 3] --- # PGlite API ## Main Constructor The main constructor is imported as: ```ts import { PGlite } from '@electric-sql/pglite' ``` The preferred way to create a PGlite instance is with the `PGlite.create()` static method that returns a promise, resolving to the new PGlite instance. `await PGlite.create(dataDir: string, options: PGliteOptions)`
`await PGlite.create(options: PGliteOptions)` There are a couple of advantages to using the static method: - This awaits the [`.waitReady`](#waitready) promise, ensuring that the database has been fully initialised. - 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. A new PGlite instance can also be created using the `new PGlite()` constructor. `new PGlite(dataDir: string, options: PGliteOptions)`
`new PGlite(options: PGliteOptions)` #### `dataDir` Path to the directory for storing the Postgres database. You can provide a URI scheme for various storage backends: - `file://` or unprefixed
File system storage, available in Node and Bun. - `idb://`
[IndexedDB](https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API) storage, available in the browser. - `memory://`
In-memory ephemeral storage, available in all platforms. #### `options` - `dataDir?: string`
The directory in which to store the Postgres database when not provided as the first argument. - `debug?: 1-5`
the Postgres debug level. Logs are sent to the console. - `relaxedDurability?: boolean`
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. - `fs?: Filesystem`
The alternative to providing a dataDir with a filesystem prefix is to initialise a `Filesystem` yourself and provide it here. See [Filesystems](./filesystems.md) - `loadDataDir?: Blob | File`
A tarball of a PGlite `datadir` to load when the database starts. This should be a tarball produced from the related [`.dumpDataDir()`](#dumpdatadir) method. - `extensions?: Extensions`
An object containing the extensions you wish to load. - `username?: string`
The username of the user to connect to the database as. Permissions will be applied in the context of this user. - `database?: string`
The database from the Postgres cluster within the `dataDir` to connect to. - `initialMemory?: number`
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. - `wasmModule?: WebAssembly.Module`
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. - `fsBundle?: Blob | File`
A filesystem bundle to use instead of downloading the default version. This is useful if in a restricted environment such as an edge worker. - `parsers: ParserOptions`
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. ```ts import { PGlite, types } from '@electric-sql/pglite' const pg = await PGlite.create({ parsers: { [types.TEXT]: (value) => value.toUpperCase(), }, }) ``` - `serializers: SerializerOptions`
An object of type `{ [pgType: number]: (value: any) => string; }` mapping Postgres data type IDs to serializer functions. ```ts import { PGlite, types } from '@electric-sql/pglite' const pg = await PGlite.create({ serializers: { [types.NUMERIC]: (value) => value.toString(), }, }) ``` #### `options.extensions` PGlite 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. The `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. ```ts import { PGlite } from '@electric-sql/pglite' import { live } from '@electric-sql/pglite/live' import { vector } from '@electric-sql/pglite/vector' const pg = await PGlite.create({ extensions: { live, // Live query extension, is a PGlite client plugin vector, // Postgres pgvector extension }, }) // The `live` namespace is added by the use of the // `live` key in the `extensions` object. pg.live.query('...') ``` For information on how to develop a PGlite extension see [Extension Development](../extensions/development.md). ## Methods ### query `.query(query: string, params?: any[], options?: QueryOptions): Promise>` Execute a single statement, optionally with parameters. Uses the _extended query_ Postgres wire protocol. Returns single [result object](#results-t-objects). ##### Example ```ts await pg.query('INSERT INTO test (name) VALUES ($1);', ['test']) // { affectedRows: 1 }, ``` ##### Query Options The `query` and `exec` methods take an optional `options` objects with the following parameters: - `rowMode: "object" | "array"`
The returned row object type, either an object of `fieldName: value` mappings or an array of positional values. Defaults to `"object"`. - `parsers: ParserOptions`
An object mapping Postgres data type IDs to parser functions. This option overrides any parsers set at the instance level. ```ts import { types } from '@electric-sql/pglite' await pg.query(`SELECT * FROM test WHERE name = $1;`, ['test'], { parsers: { [types.TEXT]: (value) => value.toUpperCase(), }, }) ``` - `serializers: SerializerOptions`
An object mapping Postgres data type IDs to serializer functions. This option overrides any serializers set at the instance level. ```ts import { types } from '@electric-sql/pglite' await pg.query(`INSERT INTO test (numeric) VALUES ($1);`, [100n], { serializers: { [types.NUMERIC]: (value: number | bigint) => value.toString(), }, }) ``` - `blob: Blob | File`
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). ### sql ` .sql``: Promise>` `.sql(strings: TemplateStringsArray, ...params: any[]): Promise>` You can also use the [` sql`` `](#tagged-template-queries) tagged template literal to create queries: ```ts await pg.sql`SELECT * FROM test WHERE name = ${'test'}` // equivalent of pg.query('SELECT * FROM test WHERE name = $1', ['test']) ``` See 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. ### exec `.exec(query: string, options?: QueryOptions): Promise>` Execute one or more statements. _(note that parameters are not supported)_ This is useful for applying database migrations, or running multi-statement SQL that doesn't use parameters. Uses the _simple query_ Postgres wire protocol. Returns array of [result objects](#results-t-objects); one for each statement. ##### Example ```ts await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); INSERT INTO test (name) VALUES ('test'); SELECT * FROM test; `) // [ // { affectedRows: 0 }, // { affectedRows: 1 }, // { // rows: [ // { id: 1, name: 'test' } // ] // affectedRows: 0, // fields: [ // { name: 'id', dataTypeID: '23' }, // { name: 'name', dataTypeID: '25' }, // ] // } // ] ``` ### transaction `.transaction(callback: (tx: Transaction) => Promise)` To 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. The transaction will be committed when the promise returned from your callback resolves, and automatically rolled back if the promise is rejected. ##### `Transaction` objects - `tx.query(query: string, params?: any[], options?: QueryOptions): Promise>`
The same as the main [`.query` method](#querytquery-string-params-any-promiseresultst). - ` tx.sql``: Promise>`
The same as the main [`.sql` template string method](#tagged-template-queries). - `tx.exec(query: string, options?: QueryOptions): Promise>`
The same as the main [`.exec` method](#execquery-string-promisearrayresults). - `tx.rollback()`
Rollback and close the current transaction. ##### Example ```ts await pg.transaction(async (tx) => { await tx.query( 'INSERT INTO test (name) VALUES ('$1');', [ 'test' ] ); return await ts.query('SELECT * FROM test;'); }); ``` ### close `.close(): Promise` Close the database, ensuring it is shut down cleanly. ### listen `.listen(channel: string, callback: (payload: string) => void): Promise<(() => Promise>` Subscribe to a [pg_notify](https://www.postgresql.org/docs/current/sql-notify.html) channel. The callback will receive the payload from the notification. Returns an unsubscribe function to unsubscribe from the channel. ##### Example ```ts const unsub = await pg.listen('test', (payload) => { console.log('Received:', payload) }) await pg.query("NOTIFY test, 'Hello, world!'") ``` Channel names are case sensitive if double-quoted (`pg.listen('"TeST"')`). Otherwise channel name will be lower cased (`pg.listen('TeStiNG')` == `pg.listen('testing')`). ### unlisten `.unlisten(channel: string, callback?: (payload: string) => void): Promise` Unsubscribe 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. ### onNotification `onNotification(callback: (channel: string, payload: string) => void): () => void` Add an event handler for all notifications received from Postgres. **Note:** This does not subscribe to the notification; you will need to manually subscribe with `LISTEN channel_name`. ### offNotification `offNotification(callback: (channel: string, payload: string) => void): void` Remove an event handler for all notifications received from Postgres. ### dumpDataDir `dumpDataDir(compression?: 'auto' | 'gzip' | 'none'): Promise` Dump the Postgres `datadir` to a Gzipped tarball. The 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. This can then be used in combination with the [`loadDataDir`](#options) option when starting PGlite to load a dumped database from storage. ::: tip NOTE The datadir dump may not be compatible with other Postgres versions; it is only designed for importing back into PGlite. ::: ### execProtocol `execProtocol(message: Uint8Array, options?: ExecProtocolOptions): Promise>` Execute a Postgres wire protocol message, returning an array of tuples, one for each wire protocol result message, consisting of: 1. The passed message object - see [pg-protocol](https://github.com/brianc/node-postgres/tree/master/packages/pg-protocol) 2. The raw `Uint8Array` for that message. This API is safe to use alongside the other PGlite query APIs as it handles error, transactions and notifications. ### execProtocolRaw `execProtocolRaw(message: Uint8Array, options?: ExecProtocolOptions): Promise` Execute 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. ::: warning WARNING `execProtocolRaw` bypasses PGlite's protocol wrappers that manage error/notice messages, transactions, 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. ::: `execProtocolRawStream(message: Uint8Array, options: ExecProtocolOptionsStream): void` Same 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. See 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. ### describeQuery `.describeQuery(query: string, options?: QueryOptions): Promise` Get 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. Returns an object with: - `queryParams: Array<{ dataTypeID: number, serializer: Function }>`
Information about each parameter's Postgres type ID and the serializer function used to convert JavaScript values to Postgres format. - `resultFields: Array<{ name: string, dataTypeID: number, parser: Function }>`
Information about each result field including its name, Postgres type ID, and the parser function used to convert Postgres values to JavaScript format. ### refreshArrayTypes `.refreshArrayTypes(): Promise` Refresh 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. ##### Example ```ts await pg.describeQuery('SELECT * FROM test WHERE name = $1', ['test']) // returns: { queryParams: [{ dataTypeID: 25, serializer: Function }], resultFields: [{ name: "id", dataTypeID: 23, parser: Function }], } ``` ### clone `.clone(): Promise` Clones 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. ## Properties ### ready `.ready` _`boolean (read only)`_ Whether the database is ready to accept queries. ### closed `.closed` _`boolean (read only)`_ Whether the database is closed and no longer accepting queries. ### waitReady `.waitReady` _`Promise`_ Promise that resolves when the database is ready to use. ::: tip NOTE Query 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. ::: ## `Results` Objects Result objects have the following properties: - `rows: Row[]`
The rows returned by the query. - `affectedRows?: number`
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. - `fields: { name: string; dataTypeID: number }[]`
Field name and Postgres data type ID for each field returned. - `blob?: Blob`
A `Blob` containing the data written to the virtual `/dev/blob/` device by a `COPY TO` command. See [/dev/blob](#dev-blob). ## `Row` Objects Rows objects are a key / value mapping for each row returned by the query. The `.query()` method can take a TypeScript type describing the expected shape of the returned rows. ::: tip NOTE These types are not validated at run time, the result is only cast to the provided type. ::: ## Tagged Template Queries PGlite 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. ```ts const name = getName() await pg.sql`SELECT * FROM test WHERE name = ${name}` ``` There are helpers in the `template` export to create more complex and parametrizeable templated queries: - ` identifier`` `
Tag identifiers like column and table names to escape them with quotes and prevent them from becoming parameters. - ` raw`` `
Tag any string that you want to avoid being interpreted as a parameter. Will allow you to still do regular string templating. - ` sql`` `
Tag nested templated literals to preserve behaviour and parametrization. Will allow you to create reusable templating utilities - ` query`` `
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. If you require additional configurations or complex binary parameters it's best to use the [`query` method](#query). ##### Example ```ts import { identifier, raw, sql, query } from '@electric-sql/pglite/template' await pg.sql`SELECT * FROM ${identifier`test`} WHERE name = ${'test'}` // equivalent of pg.query('SELECT * FROM "test" WHERE name = $1', ['test']) const filterStmt = (filterVar?: string) => filterVar ? sql`WHERE name = ${filterVar}` : raw`WHERE 1=1` await pg.sql`SELECT * FROM test ${filterStmt('test')}` // equivalent of pg.query('SELECT * FROM "test" WHERE name = $1', ['test']) await pg.sql`SELECT * FROM test ${filterStmt(null)}` // equivalent of pg.query('SELECT * FROM "test" WHERE 1=1, []) query`SELECT * FROM ${identifier`test`} WHERE name = ${'test'}` // { query: 'SELECT * FROM "test" WHERE name = $1', params: ['test'] } ``` ## /dev/blob PGlite has support for importing and exporting via the SQL `COPY TO/FROM` command by using a virtual `/dev/blob` device. To import a file, pass the `File` or `Blob` in the query options as `blob`, and copy from the `/dev/blob` device. ```ts await pg.query("COPY my_table FROM '/dev/blob';", [], { blob: MyBlob, }) ``` To 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: ```ts const ret = await pg.query("COPY my_table TO '/dev/blob';") // ret.blob is a `Blob` object with the data from the copy. ``` ================================================ FILE: docs/docs/bundler-support.md ================================================ # Bundler Support Some bundlers require additional configuration to work with PGlite. :::tip If 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. ::: ## Vite When using [Vite](https://vitejs.dev/), make sure to exclude `pglite` from dependency optimization using the `optimizeDeps` option inside `vite.config.js`: ```js import { defineConfig } from 'vite' export default defineConfig({ optimizeDeps: { exclude: ['@electric-sql/pglite'], }, }) ``` ### Additional configuration for the Multi-tab Worker When 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'`) ```ts import { defineConfig } from 'vite' export default defineConfig({ optimizeDeps: { exclude: ['@electric-sql/pglite'], }, worker: { format: 'es', }, }) ``` When importing the worker in your script, you can use the recommended [?worker](https://vitejs.dev/guide/features#static-assets) import method from Vite: ```ts import PGWorker from './worker.js?worker' export const pglite = new PGliteWorker( new PGWorker({ type: 'module', name: 'pglite-worker', }), { // ...your options here } }, ) ``` ## esbuild [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. ### Workaround: manually provide `wasmModule` and `fsBundle` 1. 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. 2. Pass them manually when creating a PGlite instance: ```ts import { PGlite } from '@electric-sql/pglite' const [wasmModule, fsBundle] = await Promise.all([ WebAssembly.compileStreaming(fetch('/pglite.wasm')), fetch('/pglite.data').then((response) => response.blob()), ]) const db = await PGlite.create({ wasmModule, fsBundle, }) ``` Alternatively, 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. ## Next.js When using [Next.js](https://nextjs.org/), make sure to add `@electric-sql/pglite` to the `transpilePackages` array in `next.config.js`: ```js const nextConfig = { swcMinify: false, transpilePackages: [ '@electric-sql/pglite-react', // Optional '@electric-sql/pglite', ], } export default nextConfig ``` ================================================ FILE: docs/docs/filesystems.md ================================================ # Filesystems PGlite has a virtual file system layer that allows it to run in environments that don't traditionally have filesystem access. PGlite 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. We would recommend using the IndexedDB VFS in the browser at the current time as the OPFS VFS is not supported by Safari. ## In-memory FS The 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. To use the in-memory FS you can use one of these methods: - Don't provide a `dataDir` option ```ts const pg = new PGlite() ``` - Set the `dataDir` to `memory://` ```ts const pg = new PGlite('memory://') ``` - Import and pass the FS explicitly ```ts import { MemoryFS } from '@electric-sql/pglite' const pg = new PGlite({ fs: new MemoryFS(), }) ``` ### Platform Support | Node | Bun | Deno | Chrome | Safari | Firefox | | ---- | --- | ---- | ------ | ------ | ------- | | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ## Node FS The Node FS uses the Node.js file system API to implement a VFS for PGLite. It is available in both Node and Bun. To use the Node FS you can use one of these methods: - Set the `dataDir` to a directory on your filesystem ```ts const pg = new PGlite('./path/to/datadir/') ``` - Import and pass the FS explicitly ```ts import { NodeFS } from '@electric-sql/pglite' const pg = new PGlite({ fs: new NodeFS('./path/to/datadir/'), }) ``` #### Platform Support | Node | Bun | Deno | Chrome | Safari | Firefox | | ---- | --- | ---- | ------ | ------ | ------- | | ✓ | ✓ | ✓ | | | | ## IndexedDB FS The [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. To use the IndexedDB FS you can use one of these methods: - Set the `dataDir` with a `idb://` prefix, the database will be stored in an IndexedDB named with the path provided ```ts const pg = new PGlite('idb://my-database') ``` - Import and pass the FS explicitly ```ts import { IdbFs } from '@electric-sql/pglite' const pg = new PGlite({ fs: new IdbFs('my-database'), }) ``` The 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. ### Platform Support | Node | Bun | Deno | Chrome | Safari | Firefox | | ---- | --- | ---- | ------ | ------ | ------- | | | | | ✓ | ✓ | ✓ | ## OPFS AHP FS The 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. To use the OPFS AHP FS you can use one of these methods: - Set the `dataDir` to a directory within the origins OPFS ```ts const pg = new PGlite('opfs-ahp://path/to/datadir/') ``` - Import and pass the FS explicitly ```ts import { OpfsAhpFS } from '@electric-sql/pglite/opfs-ahp' const pg = new PGlite({ fs: new OpfsAhpFS('./path/to/datadir/'), }) ``` ### Platform Support | Node | Bun | Deno | Chrome | Safari | Firefox | | ---- | --- | ---- | ------ | ------ | ------- | | | | | ✓ | | ✓ | Unfortunately, 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. ### What is an "access handle pool"? The 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. To 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. The 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). ================================================ FILE: docs/docs/framework-hooks/react.md ================================================ --- outline: [2, 3] --- # React To 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. ### PGliteProvider The `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. To use it, pass a PGlite instance as the `db` property. ```ts import { PGlite } from "@electric-sql/pglite" import { live } from "@electric-sql/pglite/live" import { PGliteProvider } from "@electric-sql/pglite-react" const db = await PGlite.create({ extensions: { live } }) const App = () => { // ... return ( // ... ) } ``` ### usePGlite You can retrieve the provided PGlite instance using `usePGlite` and then query it from within your components. ```ts import { usePGlite } from "@electric-sql/pglite-react" const MyComponent = () => { const db = usePGlite() const insertItem = () => { db.query("INSERT INTO my_table (name, number) VALUES ('Arthur', 42);") } return ( <>

{{ ext.name }}

{{ tag }}
================================================ FILE: docs/index.md ================================================ --- # https://vitepress.dev/reference/default-theme-home-page layout: home hero: name: 'PGlite' text: 'Embeddable Postgres' tagline: 'Run a full Postgres database locally in WASM with reactivity and live sync.' actions: - theme: brand text: Get Started link: /docs/ - theme: alt text: Star on GitHub link: https://github.com/electric-sql/pglite features: - title: Lightweight details: A complete WASM build of Postgres that's under 3MB Gzipped. - title: Extendable details: Dynamic extension loading mechanism, including support for pgvector. - title: Reactive details: Built in support for data loading, synchronisation and live query primitives. ---

Experience PGlite with database.build

Create and publish a Postgres database using AI
built on PGlite by Supabase:

What would you like to create?

Try PGlite Now

This is a full PGlite Postgres running in your browser.
It even includes pgvector!

Try more extensions in the playground
================================================ FILE: docs/package.json ================================================ { "name": "docs", "type": "module", "private": true, "scripts": { "docs:dev": "vitepress dev", "docs:build": "vitepress build", "docs:preview": "vitepress preview", "dev": "vitepress dev", "build": "vitepress build", "preview": "vitepress preview", "lint": "eslint . --report-unused-disable-directives --max-warnings 0", "format": "prettier --write .", "typecheck": "tsc --noEmit", "stylecheck": "pnpm lint && prettier --check ." }, "devDependencies": { "vitepress": "^1.3.1" }, "dependencies": { "@electric-sql/pglite": "workspace:*", "@electric-sql/pglite-repl": "workspace:*", "@electric-sql/pglite-postgis": "workspace:*", "@uiw/codemirror-theme-github": "^4.23.0", "dedent": "^1.5.3" } } ================================================ FILE: docs/repl/ReplPlayground.vue ================================================ ================================================ FILE: docs/repl/allExtensions.ts ================================================ export { amcheck } from '@electric-sql/pglite/contrib/amcheck' export { auto_explain } from '@electric-sql/pglite/contrib/auto_explain' export { bloom } from '@electric-sql/pglite/contrib/bloom' export { btree_gin } from '@electric-sql/pglite/contrib/btree_gin' export { btree_gist } from '@electric-sql/pglite/contrib/btree_gist' export { citext } from '@electric-sql/pglite/contrib/citext' export { cube } from '@electric-sql/pglite/contrib/cube' export { dict_int } from '@electric-sql/pglite/contrib/dict_int' export { dict_xsyn } from '@electric-sql/pglite/contrib/dict_xsyn' export { earthdistance } from '@electric-sql/pglite/contrib/earthdistance' export { file_fdw } from '@electric-sql/pglite/contrib/file_fdw' export { fuzzystrmatch } from '@electric-sql/pglite/contrib/fuzzystrmatch' export { hstore } from '@electric-sql/pglite/contrib/hstore' export { intarray } from '@electric-sql/pglite/contrib/intarray' export { isn } from '@electric-sql/pglite/contrib/isn' export { lo } from '@electric-sql/pglite/contrib/lo' export { ltree } from '@electric-sql/pglite/contrib/ltree' export { pageinspect } from '@electric-sql/pglite/contrib/pageinspect' export { pg_buffercache } from '@electric-sql/pglite/contrib/pg_buffercache' export { pg_freespacemap } from '@electric-sql/pglite/contrib/pg_freespacemap' export { pg_hashids } from '@electric-sql/pglite/pg_hashids' export { pg_surgery } from '@electric-sql/pglite/contrib/pg_surgery' export { pg_trgm } from '@electric-sql/pglite/contrib/pg_trgm' export { pg_uuidv7 } from '@electric-sql/pglite/pg_uuidv7' export { pg_visibility } from '@electric-sql/pglite/contrib/pg_visibility' export { pg_walinspect } from '@electric-sql/pglite/contrib/pg_walinspect' export { pgcrypto } from '@electric-sql/pglite/contrib/pgcrypto' export { pgtap } from '@electric-sql/pglite/pgtap' export { seg } from '@electric-sql/pglite/contrib/seg' export { tablefunc } from '@electric-sql/pglite/contrib/tablefunc' export { tcn } from '@electric-sql/pglite/contrib/tcn' export { tsm_system_rows } from '@electric-sql/pglite/contrib/tsm_system_rows' export { tsm_system_time } from '@electric-sql/pglite/contrib/tsm_system_time' export { unaccent } from '@electric-sql/pglite/contrib/unaccent' export { uuid_ossp } from '@electric-sql/pglite/contrib/uuid_ossp' export { vector } from '@electric-sql/pglite/vector' export { age } from '@electric-sql/pglite/age' export { postgis } from '@electric-sql/pglite-postgis' export { pg_textsearch } from '@electric-sql/pglite/pg_textsearch' ================================================ FILE: docs/repl/index.md ================================================ --- layout: page sidebar: false footer: false pageClass: page-repl-playground --- ================================================ FILE: eslint.config.js ================================================ // @ts-expect-error no types import js from '@eslint/js' // @ts-expect-error no types import { FlatCompat } from '@eslint/eslintrc' import globals from 'globals' import eslintTsParser from '@typescript-eslint/parser' import tsPlugin from '@typescript-eslint/eslint-plugin' const compat = new FlatCompat() export default [ js.configs.recommended, ...compat.extends('plugin:@typescript-eslint/recommended'), { languageOptions: { parser: eslintTsParser, globals: { ...globals.browser, }, }, files: ['**/*.{ts,tsx}'], plugins: { '@typescript-eslint': tsPlugin, }, rules: { ...tsPlugin.configs.recommended?.rules, '@typescript-eslint/no-unused-vars': [ 'warn', // or "error" { argsIgnorePattern: '^_', varsIgnorePattern: '^_', caughtErrorsIgnorePattern: '^_', }, ], '@typescript-eslint/no-inferrable-types': 'off', // always allow explicit typings '@typescript-eslint/no-empty-function': 'off', '@typescript-eslint/no-explicit-any': ['warn', { ignoreRestArgs: true }], '@typescript-eslint/ban-ts-comment': [ 'error', { 'ts-ignore': 'allow-with-description' }, ], 'no-constant-condition': ['error', { checkLoops: false }], eqeqeq: ['error'], }, }, { files: ['**/*.cjs'], languageOptions: { globals: { ...globals.node, }, }, rules: { '@typescript-eslint/no-var-requires': 'off', }, }, ] ================================================ FILE: examples/react/.gitignore ================================================ # Logs logs *.log npm-debug.log* yarn-debug.log* yarn-error.log* pnpm-debug.log* lerna-debug.log* node_modules dist dist-ssr *.local # Editor directories and files .vscode/* !.vscode/extensions.json .idea .DS_Store *.suo *.ntvs* *.njsproj *.sln *.sw? ================================================ FILE: examples/react/README.md ================================================ # Example: PGlite + Vite + React + TypeScript This 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/). This 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). On 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. # Getting started with this example ## Prerequisites You need [node](https://nodejs.org/en/download) (at least version 18), [pnpm](https://pnpm.io/installation) and [git](https://git-scm.com/downloads) installed. Check node version ``` $ node --version ``` Sample output: `v20.9.0` Check pnpm version ``` $ pnpm --version ``` Sample output: `9.15.3` Check git version ``` $ git --version ``` Sample output: `git version 2.34.1` ## Install and run the example locally This 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. 1. Get the code from GitHub. The example is in `PGlite`'s main repository ``` $ git clone https://github.com/electric-sql/pglite ``` 2. Navigate to this example's directory ``` $ cd ./pglite/examples/react ``` 3. Install dependencies ``` $ pnpm i --ignore-workspace ``` This 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. 4. Start a development server locally ``` $ pnpm dev ``` Sample output: ``` VITE v6.1.0 ready in 126 ms ➜ Local: http://localhost:5173/ ➜ Network: use --host to expose ➜ press h + enter to show help ``` 5. Open your browser and point to the above indicated address (http://localhost:5173/ but your address might be different) # Getting started with PGlite + Vite + React + Typescript If you'd like to start from scratch, here is how you can reproduce this example, so you understand better how it was made: 1. Install [node](https://nodejs.org/en/download), [pnpm](https://pnpm.io/installation) and [git](https://git-scm.com/downloads) 2. 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. Sample output: ``` $ pnpm create vite .../19522a4053e-20b11 | +1 + .../19522a4053e-20b11 | Progress: resolved 1, reused 1, downloaded 0, added 1, done ✔ Project name: … pglite-vite-react-project ✔ Select a framework: › React ✔ Select a variant: › TypeScript Scaffolding project in /tmp/pglite-vite-react-project... Done. Now run: cd pglite-vite-react-project pnpm install pnpm run dev ``` 3. Run the steps above: ``` $ cd pglite-vite-react-project $ pnpm install $ pnpm run dev ``` 4. The last command will start an http server on your local machine. Point your browser to the indicated address: ``` $ pnpm run dev VITE v6.1.0 ready in 126 ms ➜ Local: http://localhost:5173/ ➜ Network: use --host to expose ➜ press h + enter to show help ``` 4. 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: ``` $ pnpm install @electric-sql/pglite @electric-sql/pglite-react Packages: +2 ++ Downloading @electric-sql/pglite@0.2.17: 9.99 MB/9.99 MB, done Progress: resolved 224, reused 180, downloaded 2, added 2, done dependencies: + @electric-sql/pglite 0.2.17 + @electric-sql/pglite-react 0.2.17 ``` 5. You are ready start using PGlite's React API. Make sure to exclude pglite from dependency optimization using the [optimizeDeps option inside vite.config.js](https://pglite.dev/docs/bundler-support#vite). 6. 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. ================================================ FILE: examples/react/eslint.config.js ================================================ import js from '@eslint/js' import globals from 'globals' import reactHooks from 'eslint-plugin-react-hooks' import reactRefresh from 'eslint-plugin-react-refresh' import tseslint from 'typescript-eslint' export default tseslint.config( { ignores: ['dist'] }, { extends: [js.configs.recommended, ...tseslint.configs.recommended], files: ['**/*.{ts,tsx}'], languageOptions: { ecmaVersion: 2020, globals: globals.browser, }, plugins: { 'react-hooks': reactHooks, 'react-refresh': reactRefresh, }, rules: { ...reactHooks.configs.recommended.rules, 'react-refresh/only-export-components': [ 'warn', { allowConstantExport: true }, ], }, }, ) ================================================ FILE: examples/react/index.html ================================================ PGlite with Vite + React + TS
================================================ FILE: examples/react/package.json ================================================ { "name": "pglite-react-example", "author": "Electric DB Limited", "homepage": "https://pglite.dev", "license": "Apache-2.0", "private": true, "version": "0.0.1", "type": "module", "scripts": { "dev": "vite", "build": "tsc -b && vite build", "lint": "eslint .", "preview": "vite preview" }, "dependencies": { "@electric-sql/pglite": "workspace:*", "@electric-sql/pglite-react": "workspace:*", "react": "^19.0.0", "react-dom": "^19.0.0" }, "devDependencies": { "@eslint/js": "^9.19.0", "@types/react": "^19.0.2", "@types/react-dom": "^19.0.2", "@vitejs/plugin-react": "^4.3.2", "eslint": "^8.57.1", "eslint-plugin-react-hooks": "^4.6.2", "eslint-plugin-react-refresh": "^0.4.12", "globals": "^15.11.0", "typescript": "^5.6.3", "typescript-eslint": "^8.22.0", "vite": "^5.4.8" } } ================================================ FILE: examples/react/src/App.css ================================================ #root { max-width: 1280px; margin: 0 auto; padding: 2rem; text-align: center; } .logo { height: 6em; padding: 1.5em; will-change: filter; transition: filter 300ms; } .logo:hover { filter: drop-shadow(0 0 2em #646cffaa); } .logo.react:hover { filter: drop-shadow(0 0 2em #61dafbaa); } @keyframes logo-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @media (prefers-reduced-motion: no-preference) { a:nth-of-type(3) .logo { animation: logo-spin infinite 20s linear; } } .card { padding: 2em; margin: 0 auto; max-width: 800px; } .read-the-docs { color: #888; } ================================================ FILE: examples/react/src/App.tsx ================================================ import { useEffect, useState } from 'react' import reactLogo from './assets/react.svg' import viteLogo from '/vite.svg' import pgliteLogoLight from '/pglite-logo-light.svg' import typescriptLogo from '/typescript.svg' import './App.css' import { PGliteProvider } from '@electric-sql/pglite-react' import MyPGliteComponent from './MyPGliteComponent' import { live, PGliteWithLive } from '@electric-sql/pglite/live' import { PGlite } from '@electric-sql/pglite' let dbGlobal: PGliteWithLive | undefined function App() { const [db, setDb] = useState() useEffect(() => { async function setupDb() { // Initialising a PGlite instance in a useEffect hook is a good pattern. // However, it doesn't play well with React's strict mode, so we'll use a global // variable to store the instance once it's initialised. That way strict mode // doesn't re-initialise it. dbGlobal ??= await PGlite.create({ extensions: { live }, }) dbGlobal.query(`CREATE TABLE IF NOT EXISTS my_table ( id SERIAL PRIMARY KEY NOT NULL, name TEXT, number INT, "insertDateTime" TIMESTAMPTZ DEFAULT CURRENT_TIMESTAMP );`) setDb(dbGlobal) } setupDb() }, []) return ( <>

PGlite example with Vite + React + TS

Click on the logos to learn more

This example demonstrates the usage of some of PGlite's React API:{' '} PGliteProvider ,{' '} usePGlite ,{' '} useLiveQuery .

On 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.

{/* see details https://pglite.dev/docs/framework-hooks/react#pgliteprovider */} {db ? ( ) : (
Loading PGlite...
)}
) } export default App ================================================ FILE: examples/react/src/MyPGliteComponent.tsx ================================================ import { usePGlite } from '@electric-sql/pglite-react' import MyPGliteItemsComponent from './MyPGliteItemsComponent' const names = [ 'Arthur', 'Valter', 'Sam', 'Paul', 'Stefanos', 'Rob', 'Gary', 'Kyle', 'Kevin', 'Tudor', ] function MyPGliteComponent() { // see details https://pglite.dev/docs/framework-hooks/react#usepglite const db = usePGlite() const insertRow = async () => { const name = names[Math.floor(Math.random() * names.length)] const value = Math.floor(Math.random() * 1000) console.log(`Inserting name = ${name} with value=${value} into pglite`) // see details https://pglite.dev/docs/api#query const result = await db.query( 'INSERT INTO my_table (name, number) VALUES ($1, $2);', [name, value], ) console.log(`Inserted into pglite ${result.affectedRows} rows.`) } return ( <>
) } export default MyPGliteComponent ================================================ FILE: examples/react/src/MyPGliteItemsComponent.tsx ================================================ import { useLiveQuery } from '@electric-sql/pglite-react' function MyPGliteItemsComponent() { const maxNumber = 1000 // see details https://pglite.dev/docs/framework-hooks/react#uselivequery const items = useLiveQuery( ` SELECT id, name, number, "insertDateTime" FROM my_table WHERE number <= $1 ORDER BY "insertDateTime" DESC FETCH FIRST 5 ROWS ONLY `, [maxNumber], ) console.log(items) if (!items || items.rows.length === 0) return <> return ( <>
{items?.rows.map((i) => ( ))}
id Name Value Inserted
{i.id as any} {i.name as any} {i.number as any} {(i.insertDateTime as Date).toString()}
) } export default MyPGliteItemsComponent ================================================ FILE: examples/react/src/index.css ================================================ :root { font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; line-height: 1.5; font-weight: 400; color-scheme: light dark; color: rgba(255, 255, 255, 0.87); background-color: #242424; font-synthesis: none; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } a { font-weight: 500; color: #646cff; text-decoration: inherit; } a:hover { color: #535bf2; } body { margin: 0; display: flex; place-items: center; min-width: 320px; min-height: 100vh; } h1 { font-size: 3.2em; line-height: 1.1; } button { border-radius: 8px; border: 1px solid transparent; padding: 0.6em 1.2em; font-size: 1em; font-weight: 500; font-family: inherit; background-color: #1a1a1a; cursor: pointer; transition: border-color 0.25s; } button:hover { border-color: #646cff; } button:focus, button:focus-visible { outline: 4px auto -webkit-focus-ring-color; } @media (prefers-color-scheme: light) { :root { color: #213547; background-color: #ffffff; } a:hover { color: #747bff; } button { background-color: #f9f9f9; } } ================================================ FILE: examples/react/src/main.tsx ================================================ import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' import './index.css' import App from './App.tsx' createRoot(document.getElementById('root')!).render( , ) ================================================ FILE: examples/react/src/vite-env.d.ts ================================================ /// ================================================ FILE: examples/react/tsconfig.app.json ================================================ { "compilerOptions": { "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", "target": "ES2020", "useDefineForClassFields": true, "lib": ["ES2020", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, "isolatedModules": true, "moduleDetection": "force", "noEmit": true, "jsx": "react-jsx", /* Linting */ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, "noUncheckedSideEffectImports": true }, "include": ["src"] } ================================================ FILE: examples/react/tsconfig.json ================================================ { "files": [], "references": [ { "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" } ] } ================================================ FILE: examples/react/tsconfig.node.json ================================================ { "compilerOptions": { "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", "target": "ES2022", "lib": ["ES2023"], "module": "ESNext", "skipLibCheck": true, /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, "isolatedModules": true, "moduleDetection": "force", "noEmit": true, /* Linting */ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, "noUncheckedSideEffectImports": true }, "include": ["vite.config.ts"] } ================================================ FILE: examples/react/vite.config.ts ================================================ import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' // https://vite.dev/config/ export default defineConfig({ plugins: [react()], optimizeDeps: { exclude: ['@electric-sql/pglite'], }, }) ================================================ FILE: examples/unixSocket/.gitignore ================================================ node_modules dist ================================================ FILE: examples/unixSocket/package.json ================================================ { "name": "pglite-unixsocket-example", "version": "1.0.0", "description": "", "main": "index.js", "private": true, "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "build": "tsup" }, "keywords": [], "author": "", "license": "ISC", "dependencies": { "@types/node": "^20.16.11", "pg": "^8.14.0", "tsx": "^4.19.2", "typescript": "^5.6.3" }, "devDependencies": { "@types/pg": "^8.15.2" } } ================================================ FILE: examples/unixSocket/src/index.ts ================================================ import { PGlite } from '../../../packages/pglite/dist'; import { PGLiteSocketServer } from '../../../packages/pglite-socket' import { Client } from 'pg'; import { unlink } from 'fs/promises'; import { existsSync } from 'fs'; const SOCKET_PATH = '/tmp/.s.PGSQL.5432'; async function cleanup() { if (existsSync(SOCKET_PATH)) { try { await unlink(SOCKET_PATH); console.log(`Removed old socket at ${SOCKET_PATH}`); } catch (err) {} } } async function run() { // Create a PGlite instance const db = await PGlite.create(); // Create and start a socket server cleanup(); const server = new PGLiteSocketServer({ db, path: SOCKET_PATH, }); await server.start(); console.log(`Server started on socket ${SOCKET_PATH}`); // Handle graceful shutdown process.on('SIGINT', async () => { await server.stop(); await db.close(); console.log('Server stopped and database closed'); process.exit(0); }); // Create a new PostgreSQL client const client = new Client({ host: '/tmp', user: 'postgres', database: 'postgres', password: 'postgres', }); await client.connect(); // Query! const result = await client.query('SELECT version()'); console.log(result); await client.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `); const multiStatementResult = await client.query(` INSERT INTO test (name) VALUES ('test'); UPDATE test SET name = 'bulan'; SELECT * FROM test; `); console.log(JSON.stringify(multiStatementResult)); } run(); ================================================ FILE: examples/unixSocket/tsup.config.ts ================================================ import { defineConfig } from 'tsup' const minify = process.env.DEBUG === 'true' ? false : true export default defineConfig([ { entry: ['src/index.ts'], format: ['cjs', 'esm'], outDir: 'dist', dts: true, minify: minify, sourcemap: true, clean: true, }, ]) ================================================ FILE: package.json ================================================ { "pnpm": {}, "engines": { "node": ">=20", "pnpm": ">=9" }, "packageManager": "pnpm@9.7.0", "private": true, "type": "module", "scripts": { "ci:version": "pnpm exec changeset version", "ci:publish": "pnpm changeset publish", "ts:build": "pnpm -r --filter \"./packages/**\" build", "ts:build:debug": "DEBUG=true pnpm ts:build", "wasm:copy-postgis": "mkdir -p ./packages/pglite-postgis/release && cp ./postgres-pglite/dist/extensions/postgis/postgis.tar.gz ./packages/pglite-postgis/release", "wasm:copy-initdb": "mkdir -p ./packages/pglite/release && cp ./postgres-pglite/dist/bin/initdb.* ./packages/pglite/release", "wasm:copy-pgdump": "mkdir -p ./packages/pglite-tools/release && cp ./postgres-pglite/dist/bin/pg_dump.* ./packages/pglite-tools/release", "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/", "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", "wasm:build:debug": "DEBUG=true pnpm wasm:build", "build:all": "pnpm wasm:build && pnpm ts:build", "build:all:debug": "DEBUG=true pnpm build:all" }, "devDependencies": { "@changesets/cli": "^2.27.9", "@eslint/eslintrc": "^3.1.0", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "eslint": "^8.57.1", "globals": "^15.11.0", "prettier": "3.3.3", "tsup": "^8.3.0", "tsx": "^4.19.1", "typescript": "^5.6.3" } } ================================================ FILE: packages/benchmark/.gitignore ================================================ node_modules dist ================================================ FILE: packages/benchmark/README.md ================================================ # Benchmarks There 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). To run, from this dir: ```sh pnpm install pnpm build cd ./dist python3 -m http.server ``` Then 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. There 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`. There is a [writeup of the benchmarks in the docs](../../docs/benchmarks.md). ================================================ FILE: packages/benchmark/baseline.ts ================================================ import SQLite from 'better-sqlite3' import EmbeddedPostgres from 'embedded-postgres' import fs from 'fs' import { AsciiTable3, AlignmentEnum } from 'ascii-table3' const benchmarkIds = [ '1', '2', '2.1', '3', '3.1', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', ] const benchmarks: [string, string][] = [] benchmarkIds.forEach((id) => { benchmarks.push([id, fs.readFileSync(`benchmark${id}.sql`, 'utf8')]) }) interface Result { sqliteInMemory: number sqliteOnDisk: number postgres: number } const results: Result[] = [] for (let i = 0; i < benchmarks.length; i++) { const result: Result = { sqliteInMemory: 0, sqliteOnDisk: 0, postgres: 0, } results.push(result) } function runSQLite(fileName: string) { const inMemory = fileName === ':memory:' const resultsName = inMemory ? 'sqliteInMemory' : 'sqliteOnDisk' if (!inMemory && fs.existsSync(fileName)) { fs.unlinkSync(fileName) } const db = new SQLite(fileName) console.log('SQLite', fileName) benchmarks.forEach(([id, b], i) => { const startTime = Date.now() db.exec(b) const elapsed = (Date.now() - startTime) / 1000 console.log(`Test ${id}: ${elapsed}ms`) results[i][resultsName] = elapsed }) if (inMemory && fs.existsSync(fileName)) { fs.unlinkSync(fileName) } } async function runPostgres() { console.log('Postgres') const pg = new EmbeddedPostgres({ databaseDir: './pgdata', user: 'postgres', password: 'password', port: 5439, persistent: false, }) console.log(pg) await pg.initialise() await pg.start() const client = pg.getPgClient() await client.connect() for (const [i, [id, b]] of benchmarks.entries()) { const startTime = Date.now() await client.query(b) const elapsed = (Date.now() - startTime) / 1000 console.log(`Test ${id}: ${elapsed}ms`) results[i].postgres = elapsed } await client.end() await pg.stop() } function resultsTable() { const table = new AsciiTable3('Benchmark Results') const headings = ['Test', 'SQLite In-Memory', 'SQLite On-Disk', 'Postgres'] table.setHeading(...headings) benchmarks.forEach(([id, _], i) => { table.addRow( id, results[i].sqliteInMemory, results[i].sqliteOnDisk, results[i].postgres, ) }) table.setAligns(headings.map((_) => AlignmentEnum.CENTER)) console.log(table.toString()) } async function main() { runSQLite(':memory:') runSQLite('test-sqlite.db') await runPostgres() resultsTable() } main() ================================================ FILE: packages/benchmark/eslint.config.js ================================================ import globals from 'globals' import rootConfig from '../../eslint.config.js' export default [ ...rootConfig, { ignores: ['dist/**/*'] }, { files: ['**/*.js'], languageOptions: { globals: { ...globals.browser, }, }, }, ] ================================================ FILE: packages/benchmark/package.json ================================================ { "name": "benchmark", "version": "0.2.17", "description": "", "main": "index.js", "type": "module", "private": true, "scripts": { "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", "lint": "eslint . --report-unused-disable-directives --max-warnings 0", "format": "prettier --write .", "typecheck": "tsc --noEmit", "stylecheck": "pnpm lint && prettier --check ." }, "keywords": [], "author": "Electric DB Limited", "license": "Apache-2.0", "devDependencies": { "@types/better-sqlite3": "^7.6.11", "ascii-table3": "^0.9.0", "better-sqlite3": "^11.1.2", "embedded-postgres": "15.5.1-beta.9" }, "dependencies": { "wa-sqlite": "github:rhashimoto/wa-sqlite#v0.9.14" }, "peerDependencies": { "@electric-sql/pglite": "workspace:*" } } ================================================ FILE: packages/benchmark/src/benchmark1.sql ================================================ CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100)); INSERT INTO t1 VALUES(1, 19147, 'nineteen thousand one hundred forty-seven'); INSERT INTO t1 VALUES(2, 26008, 'twenty-six thousand eight'); INSERT INTO t1 VALUES(3, 46582, 'forty-six thousand five hundred eighty-two'); INSERT INTO t1 VALUES(4, 75112, 'seventy-five thousand one hundred twelve'); INSERT INTO t1 VALUES(5, 29909, 'twenty-nine thousand nine hundred nine'); INSERT INTO t1 VALUES(6, 95173, 'ninety-five thousand one hundred seventy-three'); INSERT INTO t1 VALUES(7, 96498, 'ninety-six thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(8, 33553, 'thirty-three thousand five hundred fifty-three'); INSERT INTO t1 VALUES(9, 11186, 'eleven thousand one hundred eighty-six'); INSERT INTO t1 VALUES(10, 87632, 'eighty-seven thousand six hundred thirty-two'); INSERT INTO t1 VALUES(11, 15880, 'fifteen thousand eight hundred eighty'); INSERT INTO t1 VALUES(12, 85555, 'eighty-five thousand five hundred fifty-five'); INSERT INTO t1 VALUES(13, 66962, 'sixty-six thousand nine hundred sixty-two'); INSERT INTO t1 VALUES(14, 50452, 'fifty thousand four hundred fifty-two'); INSERT INTO t1 VALUES(15, 92717, 'ninety-two thousand seven hundred seventeen'); INSERT INTO t1 VALUES(16, 34743, 'thirty-four thousand seven hundred forty-three'); INSERT INTO t1 VALUES(17, 75522, 'seventy-five thousand five hundred twenty-two'); INSERT INTO t1 VALUES(18, 28475, 'twenty-eight thousand four hundred seventy-five'); INSERT INTO t1 VALUES(19, 42370, 'forty-two thousand three hundred seventy'); INSERT INTO t1 VALUES(20, 75259, 'seventy-five thousand two hundred fifty-nine'); INSERT INTO t1 VALUES(21, 90441, 'ninety thousand four hundred forty-one'); INSERT INTO t1 VALUES(22, 6887, 'six thousand eight hundred eighty-seven'); INSERT INTO t1 VALUES(23, 31672, 'thirty-one thousand six hundred seventy-two'); INSERT INTO t1 VALUES(24, 67080, 'sixty-seven thousand eighty'); INSERT INTO t1 VALUES(25, 2575, 'two thousand five hundred seventy-five'); INSERT INTO t1 VALUES(26, 34784, 'thirty-four thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(27, 32771, 'thirty-two thousand seven hundred seventy-one'); INSERT INTO t1 VALUES(28, 87218, 'eighty-seven thousand two hundred eighteen'); INSERT INTO t1 VALUES(29, 52078, 'fifty-two thousand seventy-eight'); INSERT INTO t1 VALUES(30, 26042, 'twenty-six thousand forty-two'); INSERT INTO t1 VALUES(31, 13, 'thirteen'); INSERT INTO t1 VALUES(32, 32938, 'thirty-two thousand nine hundred thirty-eight'); INSERT INTO t1 VALUES(33, 36469, 'thirty-six thousand four hundred sixty-nine'); INSERT INTO t1 VALUES(34, 28290, 'twenty-eight thousand two hundred ninety'); INSERT INTO t1 VALUES(35, 93808, 'ninety-three thousand eight hundred eight'); INSERT INTO t1 VALUES(36, 93132, 'ninety-three thousand one hundred thirty-two'); INSERT INTO t1 VALUES(37, 56252, 'fifty-six thousand two hundred fifty-two'); INSERT INTO t1 VALUES(38, 37551, 'thirty-seven thousand five hundred fifty-one'); INSERT INTO t1 VALUES(39, 9901, 'nine thousand nine hundred one'); INSERT INTO t1 VALUES(40, 70023, 'seventy thousand twenty-three'); INSERT INTO t1 VALUES(41, 78360, 'seventy-eight thousand three hundred sixty'); INSERT INTO t1 VALUES(42, 76658, 'seventy-six thousand six hundred fifty-eight'); INSERT INTO t1 VALUES(43, 46473, 'forty-six thousand four hundred seventy-three'); INSERT INTO t1 VALUES(44, 66561, 'sixty-six thousand five hundred sixty-one'); INSERT INTO t1 VALUES(45, 62839, 'sixty-two thousand eight hundred thirty-nine'); INSERT INTO t1 VALUES(46, 11988, 'eleven thousand nine hundred eighty-eight'); INSERT INTO t1 VALUES(47, 18601, 'eighteen thousand six hundred one'); INSERT INTO t1 VALUES(48, 3045, 'three thousand forty-five'); INSERT INTO t1 VALUES(49, 94656, 'ninety-four thousand six hundred fifty-six'); INSERT INTO t1 VALUES(50, 51287, 'fifty-one thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(51, 85700, 'eighty-five thousand seven hundred'); INSERT INTO t1 VALUES(52, 8465, 'eight thousand four hundred sixty-five'); INSERT INTO t1 VALUES(53, 86627, 'eighty-six thousand six hundred twenty-seven'); INSERT INTO t1 VALUES(54, 61737, 'sixty-one thousand seven hundred thirty-seven'); INSERT INTO t1 VALUES(55, 50686, 'fifty thousand six hundred eighty-six'); INSERT INTO t1 VALUES(56, 99182, 'ninety-nine thousand one hundred eighty-two'); INSERT INTO t1 VALUES(57, 47667, 'forty-seven thousand six hundred sixty-seven'); INSERT INTO t1 VALUES(58, 8213, 'eight thousand two hundred thirteen'); INSERT INTO t1 VALUES(59, 78015, 'seventy-eight thousand fifteen'); INSERT INTO t1 VALUES(60, 41396, 'forty-one thousand three hundred ninety-six'); INSERT INTO t1 VALUES(61, 74844, 'seventy-four thousand eight hundred forty-four'); INSERT INTO t1 VALUES(62, 42282, 'forty-two thousand two hundred eighty-two'); INSERT INTO t1 VALUES(63, 58654, 'fifty-eight thousand six hundred fifty-four'); INSERT INTO t1 VALUES(64, 31467, 'thirty-one thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(65, 78022, 'seventy-eight thousand twenty-two'); INSERT INTO t1 VALUES(66, 78945, 'seventy-eight thousand nine hundred forty-five'); INSERT INTO t1 VALUES(67, 60603, 'sixty thousand six hundred three'); INSERT INTO t1 VALUES(68, 6570, 'six thousand five hundred seventy'); INSERT INTO t1 VALUES(69, 6111, 'six thousand one hundred eleven'); INSERT INTO t1 VALUES(70, 45086, 'forty-five thousand eighty-six'); INSERT INTO t1 VALUES(71, 89033, 'eighty-nine thousand thirty-three'); INSERT INTO t1 VALUES(72, 96617, 'ninety-six thousand six hundred seventeen'); INSERT INTO t1 VALUES(73, 95091, 'ninety-five thousand ninety-one'); INSERT INTO t1 VALUES(74, 94429, 'ninety-four thousand four hundred twenty-nine'); INSERT INTO t1 VALUES(75, 36609, 'thirty-six thousand six hundred nine'); INSERT INTO t1 VALUES(76, 30748, 'thirty thousand seven hundred forty-eight'); INSERT INTO t1 VALUES(77, 15734, 'fifteen thousand seven hundred thirty-four'); INSERT INTO t1 VALUES(78, 73965, 'seventy-three thousand nine hundred sixty-five'); INSERT INTO t1 VALUES(79, 77263, 'seventy-seven thousand two hundred sixty-three'); INSERT INTO t1 VALUES(80, 74133, 'seventy-four thousand one hundred thirty-three'); INSERT INTO t1 VALUES(81, 4297, 'four thousand two hundred ninety-seven'); INSERT INTO t1 VALUES(82, 8664, 'eight thousand six hundred sixty-four'); INSERT INTO t1 VALUES(83, 78801, 'seventy-eight thousand eight hundred one'); INSERT INTO t1 VALUES(84, 40814, 'forty thousand eight hundred fourteen'); INSERT INTO t1 VALUES(85, 74176, 'seventy-four thousand one hundred seventy-six'); INSERT INTO t1 VALUES(86, 29083, 'twenty-nine thousand eighty-three'); INSERT INTO t1 VALUES(87, 30060, 'thirty thousand sixty'); INSERT INTO t1 VALUES(88, 37917, 'thirty-seven thousand nine hundred seventeen'); INSERT INTO t1 VALUES(89, 32421, 'thirty-two thousand four hundred twenty-one'); INSERT INTO t1 VALUES(90, 61068, 'sixty-one thousand sixty-eight'); INSERT INTO t1 VALUES(91, 4852, 'four thousand eight hundred fifty-two'); INSERT INTO t1 VALUES(92, 26679, 'twenty-six thousand six hundred seventy-nine'); INSERT INTO t1 VALUES(93, 19074, 'nineteen thousand seventy-four'); INSERT INTO t1 VALUES(94, 14278, 'fourteen thousand two hundred seventy-eight'); INSERT INTO t1 VALUES(95, 58212, 'fifty-eight thousand two hundred twelve'); INSERT INTO t1 VALUES(96, 57525, 'fifty-seven thousand five hundred twenty-five'); INSERT INTO t1 VALUES(97, 22334, 'twenty-two thousand three hundred thirty-four'); INSERT INTO t1 VALUES(98, 536, 'five hundred thirty-six'); INSERT INTO t1 VALUES(99, 4807, 'four thousand eight hundred seven'); INSERT INTO t1 VALUES(100, 70316, 'seventy thousand three hundred sixteen'); INSERT INTO t1 VALUES(101, 99873, 'ninety-nine thousand eight hundred seventy-three'); INSERT INTO t1 VALUES(102, 47917, 'forty-seven thousand nine hundred seventeen'); INSERT INTO t1 VALUES(103, 14048, 'fourteen thousand forty-eight'); INSERT INTO t1 VALUES(104, 79492, 'seventy-nine thousand four hundred ninety-two'); INSERT INTO t1 VALUES(105, 77781, 'seventy-seven thousand seven hundred eighty-one'); INSERT INTO t1 VALUES(106, 22024, 'twenty-two thousand twenty-four'); INSERT INTO t1 VALUES(107, 48173, 'forty-eight thousand one hundred seventy-three'); INSERT INTO t1 VALUES(108, 20117, 'twenty thousand one hundred seventeen'); INSERT INTO t1 VALUES(109, 19000, 'nineteen thousand'); INSERT INTO t1 VALUES(110, 38210, 'thirty-eight thousand two hundred ten'); INSERT INTO t1 VALUES(111, 74415, 'seventy-four thousand four hundred fifteen'); INSERT INTO t1 VALUES(112, 92727, 'ninety-two thousand seven hundred twenty-seven'); INSERT INTO t1 VALUES(113, 47610, 'forty-seven thousand six hundred ten'); INSERT INTO t1 VALUES(114, 33304, 'thirty-three thousand three hundred four'); INSERT INTO t1 VALUES(115, 50236, 'fifty thousand two hundred thirty-six'); INSERT INTO t1 VALUES(116, 45425, 'forty-five thousand four hundred twenty-five'); INSERT INTO t1 VALUES(117, 50591, 'fifty thousand five hundred ninety-one'); INSERT INTO t1 VALUES(118, 75266, 'seventy-five thousand two hundred sixty-six'); INSERT INTO t1 VALUES(119, 66445, 'sixty-six thousand four hundred forty-five'); INSERT INTO t1 VALUES(120, 61104, 'sixty-one thousand one hundred four'); INSERT INTO t1 VALUES(121, 50019, 'fifty thousand nineteen'); INSERT INTO t1 VALUES(122, 51784, 'fifty-one thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(123, 25726, 'twenty-five thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(124, 93590, 'ninety-three thousand five hundred ninety'); INSERT INTO t1 VALUES(125, 54736, 'fifty-four thousand seven hundred thirty-six'); INSERT INTO t1 VALUES(126, 76531, 'seventy-six thousand five hundred thirty-one'); INSERT INTO t1 VALUES(127, 15808, 'fifteen thousand eight hundred eight'); INSERT INTO t1 VALUES(128, 85511, 'eighty-five thousand five hundred eleven'); INSERT INTO t1 VALUES(129, 14677, 'fourteen thousand six hundred seventy-seven'); INSERT INTO t1 VALUES(130, 34447, 'thirty-four thousand four hundred forty-seven'); INSERT INTO t1 VALUES(131, 77381, 'seventy-seven thousand three hundred eighty-one'); INSERT INTO t1 VALUES(132, 1894, 'one thousand eight hundred ninety-four'); INSERT INTO t1 VALUES(133, 17809, 'seventeen thousand eight hundred nine'); INSERT INTO t1 VALUES(134, 85345, 'eighty-five thousand three hundred forty-five'); INSERT INTO t1 VALUES(135, 44239, 'forty-four thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(136, 86042, 'eighty-six thousand forty-two'); INSERT INTO t1 VALUES(137, 3118, 'three thousand one hundred eighteen'); INSERT INTO t1 VALUES(138, 96075, 'ninety-six thousand seventy-five'); INSERT INTO t1 VALUES(139, 29595, 'twenty-nine thousand five hundred ninety-five'); INSERT INTO t1 VALUES(140, 80538, 'eighty thousand five hundred thirty-eight'); INSERT INTO t1 VALUES(141, 42560, 'forty-two thousand five hundred sixty'); INSERT INTO t1 VALUES(142, 39540, 'thirty-nine thousand five hundred forty'); INSERT INTO t1 VALUES(143, 67182, 'sixty-seven thousand one hundred eighty-two'); INSERT INTO t1 VALUES(144, 95398, 'ninety-five thousand three hundred ninety-eight'); INSERT INTO t1 VALUES(145, 23257, 'twenty-three thousand two hundred fifty-seven'); INSERT INTO t1 VALUES(146, 30008, 'thirty thousand eight'); INSERT INTO t1 VALUES(147, 34224, 'thirty-four thousand two hundred twenty-four'); INSERT INTO t1 VALUES(148, 89043, 'eighty-nine thousand forty-three'); INSERT INTO t1 VALUES(149, 29133, 'twenty-nine thousand one hundred thirty-three'); INSERT INTO t1 VALUES(150, 3487, 'three thousand four hundred eighty-seven'); INSERT INTO t1 VALUES(151, 70789, 'seventy thousand seven hundred eighty-nine'); INSERT INTO t1 VALUES(152, 74058, 'seventy-four thousand fifty-eight'); INSERT INTO t1 VALUES(153, 70685, 'seventy thousand six hundred eighty-five'); INSERT INTO t1 VALUES(154, 73614, 'seventy-three thousand six hundred fourteen'); INSERT INTO t1 VALUES(155, 75238, 'seventy-five thousand two hundred thirty-eight'); INSERT INTO t1 VALUES(156, 55897, 'fifty-five thousand eight hundred ninety-seven'); INSERT INTO t1 VALUES(157, 65660, 'sixty-five thousand six hundred sixty'); INSERT INTO t1 VALUES(158, 27054, 'twenty-seven thousand fifty-four'); INSERT INTO t1 VALUES(159, 17055, 'seventeen thousand fifty-five'); INSERT INTO t1 VALUES(160, 84839, 'eighty-four thousand eight hundred thirty-nine'); INSERT INTO t1 VALUES(161, 14288, 'fourteen thousand two hundred eighty-eight'); INSERT INTO t1 VALUES(162, 62959, 'sixty-two thousand nine hundred fifty-nine'); INSERT INTO t1 VALUES(163, 30731, 'thirty thousand seven hundred thirty-one'); INSERT INTO t1 VALUES(164, 27592, 'twenty-seven thousand five hundred ninety-two'); INSERT INTO t1 VALUES(165, 66036, 'sixty-six thousand thirty-six'); INSERT INTO t1 VALUES(166, 75408, 'seventy-five thousand four hundred eight'); INSERT INTO t1 VALUES(167, 79619, 'seventy-nine thousand six hundred nineteen'); INSERT INTO t1 VALUES(168, 98635, 'ninety-eight thousand six hundred thirty-five'); INSERT INTO t1 VALUES(169, 62495, 'sixty-two thousand four hundred ninety-five'); INSERT INTO t1 VALUES(170, 18248, 'eighteen thousand two hundred forty-eight'); INSERT INTO t1 VALUES(171, 78919, 'seventy-eight thousand nine hundred nineteen'); INSERT INTO t1 VALUES(172, 33725, 'thirty-three thousand seven hundred twenty-five'); INSERT INTO t1 VALUES(173, 74583, 'seventy-four thousand five hundred eighty-three'); INSERT INTO t1 VALUES(174, 64756, 'sixty-four thousand seven hundred fifty-six'); INSERT INTO t1 VALUES(175, 33725, 'thirty-three thousand seven hundred twenty-five'); INSERT INTO t1 VALUES(176, 3595, 'three thousand five hundred ninety-five'); INSERT INTO t1 VALUES(177, 11341, 'eleven thousand three hundred forty-one'); INSERT INTO t1 VALUES(178, 75031, 'seventy-five thousand thirty-one'); INSERT INTO t1 VALUES(179, 9003, 'nine thousand three'); INSERT INTO t1 VALUES(180, 18248, 'eighteen thousand two hundred forty-eight'); INSERT INTO t1 VALUES(181, 83579, 'eighty-three thousand five hundred seventy-nine'); INSERT INTO t1 VALUES(182, 27815, 'twenty-seven thousand eight hundred fifteen'); INSERT INTO t1 VALUES(183, 70544, 'seventy thousand five hundred forty-four'); INSERT INTO t1 VALUES(184, 52108, 'fifty-two thousand one hundred eight'); INSERT INTO t1 VALUES(185, 3136, 'three thousand one hundred thirty-six'); INSERT INTO t1 VALUES(186, 25759, 'twenty-five thousand seven hundred fifty-nine'); INSERT INTO t1 VALUES(187, 85160, 'eighty-five thousand one hundred sixty'); INSERT INTO t1 VALUES(188, 25823, 'twenty-five thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(189, 56519, 'fifty-six thousand five hundred nineteen'); INSERT INTO t1 VALUES(190, 31350, 'thirty-one thousand three hundred fifty'); INSERT INTO t1 VALUES(191, 43623, 'forty-three thousand six hundred twenty-three'); INSERT INTO t1 VALUES(192, 96084, 'ninety-six thousand eighty-four'); INSERT INTO t1 VALUES(193, 93824, 'ninety-three thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(194, 49987, 'forty-nine thousand nine hundred eighty-seven'); INSERT INTO t1 VALUES(195, 66071, 'sixty-six thousand seventy-one'); INSERT INTO t1 VALUES(196, 49509, 'forty-nine thousand five hundred nine'); INSERT INTO t1 VALUES(197, 45551, 'forty-five thousand five hundred fifty-one'); INSERT INTO t1 VALUES(198, 20309, 'twenty thousand three hundred nine'); INSERT INTO t1 VALUES(199, 5671, 'five thousand six hundred seventy-one'); INSERT INTO t1 VALUES(200, 78809, 'seventy-eight thousand eight hundred nine'); INSERT INTO t1 VALUES(201, 93680, 'ninety-three thousand six hundred eighty'); INSERT INTO t1 VALUES(202, 8073, 'eight thousand seventy-three'); INSERT INTO t1 VALUES(203, 5304, 'five thousand three hundred four'); INSERT INTO t1 VALUES(204, 79456, 'seventy-nine thousand four hundred fifty-six'); INSERT INTO t1 VALUES(205, 75452, 'seventy-five thousand four hundred fifty-two'); INSERT INTO t1 VALUES(206, 14111, 'fourteen thousand one hundred eleven'); INSERT INTO t1 VALUES(207, 22754, 'twenty-two thousand seven hundred fifty-four'); INSERT INTO t1 VALUES(208, 45501, 'forty-five thousand five hundred one'); INSERT INTO t1 VALUES(209, 5406, 'five thousand four hundred six'); INSERT INTO t1 VALUES(210, 98550, 'ninety-eight thousand five hundred fifty'); INSERT INTO t1 VALUES(211, 26850, 'twenty-six thousand eight hundred fifty'); INSERT INTO t1 VALUES(212, 14885, 'fourteen thousand eight hundred eighty-five'); INSERT INTO t1 VALUES(213, 11498, 'eleven thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(214, 1761, 'one thousand seven hundred sixty-one'); INSERT INTO t1 VALUES(215, 43387, 'forty-three thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(216, 71881, 'seventy-one thousand eight hundred eighty-one'); INSERT INTO t1 VALUES(217, 85573, 'eighty-five thousand five hundred seventy-three'); INSERT INTO t1 VALUES(218, 5594, 'five thousand five hundred ninety-four'); INSERT INTO t1 VALUES(219, 67124, 'sixty-seven thousand one hundred twenty-four'); INSERT INTO t1 VALUES(220, 78654, 'seventy-eight thousand six hundred fifty-four'); INSERT INTO t1 VALUES(221, 74294, 'seventy-four thousand two hundred ninety-four'); INSERT INTO t1 VALUES(222, 69335, 'sixty-nine thousand three hundred thirty-five'); INSERT INTO t1 VALUES(223, 90733, 'ninety thousand seven hundred thirty-three'); INSERT INTO t1 VALUES(224, 69794, 'sixty-nine thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(225, 1223, 'one thousand two hundred twenty-three'); INSERT INTO t1 VALUES(226, 36643, 'thirty-six thousand six hundred forty-three'); INSERT INTO t1 VALUES(227, 35185, 'thirty-five thousand one hundred eighty-five'); INSERT INTO t1 VALUES(228, 4715, 'four thousand seven hundred fifteen'); INSERT INTO t1 VALUES(229, 96718, 'ninety-six thousand seven hundred eighteen'); INSERT INTO t1 VALUES(230, 37054, 'thirty-seven thousand fifty-four'); INSERT INTO t1 VALUES(231, 46589, 'forty-six thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(232, 20775, 'twenty thousand seven hundred seventy-five'); INSERT INTO t1 VALUES(233, 11050, 'eleven thousand fifty'); INSERT INTO t1 VALUES(234, 41387, 'forty-one thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(235, 15187, 'fifteen thousand one hundred eighty-seven'); INSERT INTO t1 VALUES(236, 4416, 'four thousand four hundred sixteen'); INSERT INTO t1 VALUES(237, 66769, 'sixty-six thousand seven hundred sixty-nine'); INSERT INTO t1 VALUES(238, 91803, 'ninety-one thousand eight hundred three'); INSERT INTO t1 VALUES(239, 21308, 'twenty-one thousand three hundred eight'); INSERT INTO t1 VALUES(240, 41803, 'forty-one thousand eight hundred three'); INSERT INTO t1 VALUES(241, 85279, 'eighty-five thousand two hundred seventy-nine'); INSERT INTO t1 VALUES(242, 45849, 'forty-five thousand eight hundred forty-nine'); INSERT INTO t1 VALUES(243, 86486, 'eighty-six thousand four hundred eighty-six'); INSERT INTO t1 VALUES(244, 58082, 'fifty-eight thousand eighty-two'); INSERT INTO t1 VALUES(245, 83184, 'eighty-three thousand one hundred eighty-four'); INSERT INTO t1 VALUES(246, 40745, 'forty thousand seven hundred forty-five'); INSERT INTO t1 VALUES(247, 74393, 'seventy-four thousand three hundred ninety-three'); INSERT INTO t1 VALUES(248, 51061, 'fifty-one thousand sixty-one'); INSERT INTO t1 VALUES(249, 67710, 'sixty-seven thousand seven hundred ten'); INSERT INTO t1 VALUES(250, 93047, 'ninety-three thousand forty-seven'); INSERT INTO t1 VALUES(251, 59027, 'fifty-nine thousand twenty-seven'); INSERT INTO t1 VALUES(252, 51204, 'fifty-one thousand two hundred four'); INSERT INTO t1 VALUES(253, 6662, 'six thousand six hundred sixty-two'); INSERT INTO t1 VALUES(254, 86955, 'eighty-six thousand nine hundred fifty-five'); INSERT INTO t1 VALUES(255, 46821, 'forty-six thousand eight hundred twenty-one'); INSERT INTO t1 VALUES(256, 48135, 'forty-eight thousand one hundred thirty-five'); INSERT INTO t1 VALUES(257, 35098, 'thirty-five thousand ninety-eight'); INSERT INTO t1 VALUES(258, 83517, 'eighty-three thousand five hundred seventeen'); INSERT INTO t1 VALUES(259, 74030, 'seventy-four thousand thirty'); INSERT INTO t1 VALUES(260, 74477, 'seventy-four thousand four hundred seventy-seven'); INSERT INTO t1 VALUES(261, 11630, 'eleven thousand six hundred thirty'); INSERT INTO t1 VALUES(262, 35794, 'thirty-five thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(263, 21497, 'twenty-one thousand four hundred ninety-seven'); INSERT INTO t1 VALUES(264, 19570, 'nineteen thousand five hundred seventy'); INSERT INTO t1 VALUES(265, 5455, 'five thousand four hundred fifty-five'); INSERT INTO t1 VALUES(266, 72500, 'seventy-two thousand five hundred'); INSERT INTO t1 VALUES(267, 93036, 'ninety-three thousand thirty-six'); INSERT INTO t1 VALUES(268, 65524, 'sixty-five thousand five hundred twenty-four'); INSERT INTO t1 VALUES(269, 61390, 'sixty-one thousand three hundred ninety'); INSERT INTO t1 VALUES(270, 19573, 'nineteen thousand five hundred seventy-three'); INSERT INTO t1 VALUES(271, 63868, 'sixty-three thousand eight hundred sixty-eight'); INSERT INTO t1 VALUES(272, 52301, 'fifty-two thousand three hundred one'); INSERT INTO t1 VALUES(273, 84950, 'eighty-four thousand nine hundred fifty'); INSERT INTO t1 VALUES(274, 99106, 'ninety-nine thousand one hundred six'); INSERT INTO t1 VALUES(275, 66492, 'sixty-six thousand four hundred ninety-two'); INSERT INTO t1 VALUES(276, 12327, 'twelve thousand three hundred twenty-seven'); INSERT INTO t1 VALUES(277, 77453, 'seventy-seven thousand four hundred fifty-three'); INSERT INTO t1 VALUES(278, 41180, 'forty-one thousand one hundred eighty'); INSERT INTO t1 VALUES(279, 76455, 'seventy-six thousand four hundred fifty-five'); INSERT INTO t1 VALUES(280, 71541, 'seventy-one thousand five hundred forty-one'); INSERT INTO t1 VALUES(281, 6968, 'six thousand nine hundred sixty-eight'); INSERT INTO t1 VALUES(282, 93941, 'ninety-three thousand nine hundred forty-one'); INSERT INTO t1 VALUES(283, 85076, 'eighty-five thousand seventy-six'); INSERT INTO t1 VALUES(284, 65894, 'sixty-five thousand eight hundred ninety-four'); INSERT INTO t1 VALUES(285, 98059, 'ninety-eight thousand fifty-nine'); INSERT INTO t1 VALUES(286, 92367, 'ninety-two thousand three hundred sixty-seven'); INSERT INTO t1 VALUES(287, 64838, 'sixty-four thousand eight hundred thirty-eight'); INSERT INTO t1 VALUES(288, 87708, 'eighty-seven thousand seven hundred eight'); INSERT INTO t1 VALUES(289, 21778, 'twenty-one thousand seven hundred seventy-eight'); INSERT INTO t1 VALUES(290, 34994, 'thirty-four thousand nine hundred ninety-four'); INSERT INTO t1 VALUES(291, 58838, 'fifty-eight thousand eight hundred thirty-eight'); INSERT INTO t1 VALUES(292, 77301, 'seventy-seven thousand three hundred one'); INSERT INTO t1 VALUES(293, 58704, 'fifty-eight thousand seven hundred four'); INSERT INTO t1 VALUES(294, 67690, 'sixty-seven thousand six hundred ninety'); INSERT INTO t1 VALUES(295, 36058, 'thirty-six thousand fifty-eight'); INSERT INTO t1 VALUES(296, 68672, 'sixty-eight thousand six hundred seventy-two'); INSERT INTO t1 VALUES(297, 94874, 'ninety-four thousand eight hundred seventy-four'); INSERT INTO t1 VALUES(298, 84131, 'eighty-four thousand one hundred thirty-one'); INSERT INTO t1 VALUES(299, 54916, 'fifty-four thousand nine hundred sixteen'); INSERT INTO t1 VALUES(300, 57153, 'fifty-seven thousand one hundred fifty-three'); INSERT INTO t1 VALUES(301, 64123, 'sixty-four thousand one hundred twenty-three'); INSERT INTO t1 VALUES(302, 54653, 'fifty-four thousand six hundred fifty-three'); INSERT INTO t1 VALUES(303, 33431, 'thirty-three thousand four hundred thirty-one'); INSERT INTO t1 VALUES(304, 62626, 'sixty-two thousand six hundred twenty-six'); INSERT INTO t1 VALUES(305, 4844, 'four thousand eight hundred forty-four'); INSERT INTO t1 VALUES(306, 79303, 'seventy-nine thousand three hundred three'); INSERT INTO t1 VALUES(307, 7086, 'seven thousand eighty-six'); INSERT INTO t1 VALUES(308, 57117, 'fifty-seven thousand one hundred seventeen'); INSERT INTO t1 VALUES(309, 31781, 'thirty-one thousand seven hundred eighty-one'); INSERT INTO t1 VALUES(310, 29491, 'twenty-nine thousand four hundred ninety-one'); INSERT INTO t1 VALUES(311, 94880, 'ninety-four thousand eight hundred eighty'); INSERT INTO t1 VALUES(312, 58269, 'fifty-eight thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(313, 15574, 'fifteen thousand five hundred seventy-four'); INSERT INTO t1 VALUES(314, 49226, 'forty-nine thousand two hundred twenty-six'); INSERT INTO t1 VALUES(315, 12233, 'twelve thousand two hundred thirty-three'); INSERT INTO t1 VALUES(316, 49770, 'forty-nine thousand seven hundred seventy'); INSERT INTO t1 VALUES(317, 61010, 'sixty-one thousand ten'); INSERT INTO t1 VALUES(318, 10081, 'ten thousand eighty-one'); INSERT INTO t1 VALUES(319, 97107, 'ninety-seven thousand one hundred seven'); INSERT INTO t1 VALUES(320, 10745, 'ten thousand seven hundred forty-five'); INSERT INTO t1 VALUES(321, 27225, 'twenty-seven thousand two hundred twenty-five'); INSERT INTO t1 VALUES(322, 64158, 'sixty-four thousand one hundred fifty-eight'); INSERT INTO t1 VALUES(323, 76659, 'seventy-six thousand six hundred fifty-nine'); INSERT INTO t1 VALUES(324, 72364, 'seventy-two thousand three hundred sixty-four'); INSERT INTO t1 VALUES(325, 72712, 'seventy-two thousand seven hundred twelve'); INSERT INTO t1 VALUES(326, 33014, 'thirty-three thousand fourteen'); INSERT INTO t1 VALUES(327, 90216, 'ninety thousand two hundred sixteen'); INSERT INTO t1 VALUES(328, 81305, 'eighty-one thousand three hundred five'); INSERT INTO t1 VALUES(329, 25638, 'twenty-five thousand six hundred thirty-eight'); INSERT INTO t1 VALUES(330, 25191, 'twenty-five thousand one hundred ninety-one'); INSERT INTO t1 VALUES(331, 54511, 'fifty-four thousand five hundred eleven'); INSERT INTO t1 VALUES(332, 48126, 'forty-eight thousand one hundred twenty-six'); INSERT INTO t1 VALUES(333, 82179, 'eighty-two thousand one hundred seventy-nine'); INSERT INTO t1 VALUES(334, 30050, 'thirty thousand fifty'); INSERT INTO t1 VALUES(335, 51531, 'fifty-one thousand five hundred thirty-one'); INSERT INTO t1 VALUES(336, 58294, 'fifty-eight thousand two hundred ninety-four'); INSERT INTO t1 VALUES(337, 8820, 'eight thousand eight hundred twenty'); INSERT INTO t1 VALUES(338, 14563, 'fourteen thousand five hundred sixty-three'); INSERT INTO t1 VALUES(339, 43247, 'forty-three thousand two hundred forty-seven'); INSERT INTO t1 VALUES(340, 54240, 'fifty-four thousand two hundred forty'); INSERT INTO t1 VALUES(341, 95630, 'ninety-five thousand six hundred thirty'); INSERT INTO t1 VALUES(342, 30926, 'thirty thousand nine hundred twenty-six'); INSERT INTO t1 VALUES(343, 32664, 'thirty-two thousand six hundred sixty-four'); INSERT INTO t1 VALUES(344, 64590, 'sixty-four thousand five hundred ninety'); INSERT INTO t1 VALUES(345, 71119, 'seventy-one thousand one hundred nineteen'); INSERT INTO t1 VALUES(346, 62216, 'sixty-two thousand two hundred sixteen'); INSERT INTO t1 VALUES(347, 80999, 'eighty thousand nine hundred ninety-nine'); INSERT INTO t1 VALUES(348, 88326, 'eighty-eight thousand three hundred twenty-six'); INSERT INTO t1 VALUES(349, 43585, 'forty-three thousand five hundred eighty-five'); INSERT INTO t1 VALUES(350, 62542, 'sixty-two thousand five hundred forty-two'); INSERT INTO t1 VALUES(351, 30380, 'thirty thousand three hundred eighty'); INSERT INTO t1 VALUES(352, 27824, 'twenty-seven thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(353, 86530, 'eighty-six thousand five hundred thirty'); INSERT INTO t1 VALUES(354, 21045, 'twenty-one thousand forty-five'); INSERT INTO t1 VALUES(355, 24707, 'twenty-four thousand seven hundred seven'); INSERT INTO t1 VALUES(356, 45949, 'forty-five thousand nine hundred forty-nine'); INSERT INTO t1 VALUES(357, 84512, 'eighty-four thousand five hundred twelve'); INSERT INTO t1 VALUES(358, 39579, 'thirty-nine thousand five hundred seventy-nine'); INSERT INTO t1 VALUES(359, 72448, 'seventy-two thousand four hundred forty-eight'); INSERT INTO t1 VALUES(360, 19510, 'nineteen thousand five hundred ten'); INSERT INTO t1 VALUES(361, 26117, 'twenty-six thousand one hundred seventeen'); INSERT INTO t1 VALUES(362, 42334, 'forty-two thousand three hundred thirty-four'); INSERT INTO t1 VALUES(363, 50760, 'fifty thousand seven hundred sixty'); INSERT INTO t1 VALUES(364, 95698, 'ninety-five thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(365, 10473, 'ten thousand four hundred seventy-three'); INSERT INTO t1 VALUES(366, 53827, 'fifty-three thousand eight hundred twenty-seven'); INSERT INTO t1 VALUES(367, 62653, 'sixty-two thousand six hundred fifty-three'); INSERT INTO t1 VALUES(368, 35692, 'thirty-five thousand six hundred ninety-two'); INSERT INTO t1 VALUES(369, 38100, 'thirty-eight thousand one hundred'); INSERT INTO t1 VALUES(370, 55564, 'fifty-five thousand five hundred sixty-four'); INSERT INTO t1 VALUES(371, 75269, 'seventy-five thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(372, 62985, 'sixty-two thousand nine hundred eighty-five'); INSERT INTO t1 VALUES(373, 47780, 'forty-seven thousand seven hundred eighty'); INSERT INTO t1 VALUES(374, 12747, 'twelve thousand seven hundred forty-seven'); INSERT INTO t1 VALUES(375, 62003, 'sixty-two thousand three'); INSERT INTO t1 VALUES(376, 11458, 'eleven thousand four hundred fifty-eight'); INSERT INTO t1 VALUES(377, 79919, 'seventy-nine thousand nine hundred nineteen'); INSERT INTO t1 VALUES(378, 17221, 'seventeen thousand two hundred twenty-one'); INSERT INTO t1 VALUES(379, 58368, 'fifty-eight thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(380, 26722, 'twenty-six thousand seven hundred twenty-two'); INSERT INTO t1 VALUES(381, 93591, 'ninety-three thousand five hundred ninety-one'); INSERT INTO t1 VALUES(382, 1793, 'one thousand seven hundred ninety-three'); INSERT INTO t1 VALUES(383, 51839, 'fifty-one thousand eight hundred thirty-nine'); INSERT INTO t1 VALUES(384, 31833, 'thirty-one thousand eight hundred thirty-three'); INSERT INTO t1 VALUES(385, 29003, 'twenty-nine thousand three'); INSERT INTO t1 VALUES(386, 14779, 'fourteen thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(387, 67741, 'sixty-seven thousand seven hundred forty-one'); INSERT INTO t1 VALUES(388, 39051, 'thirty-nine thousand fifty-one'); INSERT INTO t1 VALUES(389, 77292, 'seventy-seven thousand two hundred ninety-two'); INSERT INTO t1 VALUES(390, 5168, 'five thousand one hundred sixty-eight'); INSERT INTO t1 VALUES(391, 32168, 'thirty-two thousand one hundred sixty-eight'); INSERT INTO t1 VALUES(392, 88724, 'eighty-eight thousand seven hundred twenty-four'); INSERT INTO t1 VALUES(393, 298, 'two hundred ninety-eight'); INSERT INTO t1 VALUES(394, 78128, 'seventy-eight thousand one hundred twenty-eight'); INSERT INTO t1 VALUES(395, 85877, 'eighty-five thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(396, 32384, 'thirty-two thousand three hundred eighty-four'); INSERT INTO t1 VALUES(397, 25524, 'twenty-five thousand five hundred twenty-four'); INSERT INTO t1 VALUES(398, 47018, 'forty-seven thousand eighteen'); INSERT INTO t1 VALUES(399, 22974, 'twenty-two thousand nine hundred seventy-four'); INSERT INTO t1 VALUES(400, 20767, 'twenty thousand seven hundred sixty-seven'); INSERT INTO t1 VALUES(401, 89516, 'eighty-nine thousand five hundred sixteen'); INSERT INTO t1 VALUES(402, 99437, 'ninety-nine thousand four hundred thirty-seven'); INSERT INTO t1 VALUES(403, 5201, 'five thousand two hundred one'); INSERT INTO t1 VALUES(404, 59848, 'fifty-nine thousand eight hundred forty-eight'); INSERT INTO t1 VALUES(405, 66234, 'sixty-six thousand two hundred thirty-four'); INSERT INTO t1 VALUES(406, 37713, 'thirty-seven thousand seven hundred thirteen'); INSERT INTO t1 VALUES(407, 27038, 'twenty-seven thousand thirty-eight'); INSERT INTO t1 VALUES(408, 54681, 'fifty-four thousand six hundred eighty-one'); INSERT INTO t1 VALUES(409, 72462, 'seventy-two thousand four hundred sixty-two'); INSERT INTO t1 VALUES(410, 6852, 'six thousand eight hundred fifty-two'); INSERT INTO t1 VALUES(411, 60641, 'sixty thousand six hundred forty-one'); INSERT INTO t1 VALUES(412, 29158, 'twenty-nine thousand one hundred fifty-eight'); INSERT INTO t1 VALUES(413, 18673, 'eighteen thousand six hundred seventy-three'); INSERT INTO t1 VALUES(414, 54871, 'fifty-four thousand eight hundred seventy-one'); INSERT INTO t1 VALUES(415, 6149, 'six thousand one hundred forty-nine'); INSERT INTO t1 VALUES(416, 66181, 'sixty-six thousand one hundred eighty-one'); INSERT INTO t1 VALUES(417, 56189, 'fifty-six thousand one hundred eighty-nine'); INSERT INTO t1 VALUES(418, 20015, 'twenty thousand fifteen'); INSERT INTO t1 VALUES(419, 46327, 'forty-six thousand three hundred twenty-seven'); INSERT INTO t1 VALUES(420, 92802, 'ninety-two thousand eight hundred two'); INSERT INTO t1 VALUES(421, 29952, 'twenty-nine thousand nine hundred fifty-two'); INSERT INTO t1 VALUES(422, 5709, 'five thousand seven hundred nine'); INSERT INTO t1 VALUES(423, 78299, 'seventy-eight thousand two hundred ninety-nine'); INSERT INTO t1 VALUES(424, 44201, 'forty-four thousand two hundred one'); INSERT INTO t1 VALUES(425, 11898, 'eleven thousand eight hundred ninety-eight'); INSERT INTO t1 VALUES(426, 539, 'five hundred thirty-nine'); INSERT INTO t1 VALUES(427, 24406, 'twenty-four thousand four hundred six'); INSERT INTO t1 VALUES(428, 98362, 'ninety-eight thousand three hundred sixty-two'); INSERT INTO t1 VALUES(429, 60805, 'sixty thousand eight hundred five'); INSERT INTO t1 VALUES(430, 19074, 'nineteen thousand seventy-four'); INSERT INTO t1 VALUES(431, 41901, 'forty-one thousand nine hundred one'); INSERT INTO t1 VALUES(432, 45737, 'forty-five thousand seven hundred thirty-seven'); INSERT INTO t1 VALUES(433, 53634, 'fifty-three thousand six hundred thirty-four'); INSERT INTO t1 VALUES(434, 39974, 'thirty-nine thousand nine hundred seventy-four'); INSERT INTO t1 VALUES(435, 10132, 'ten thousand one hundred thirty-two'); INSERT INTO t1 VALUES(436, 21908, 'twenty-one thousand nine hundred eight'); INSERT INTO t1 VALUES(437, 21144, 'twenty-one thousand one hundred forty-four'); INSERT INTO t1 VALUES(438, 44661, 'forty-four thousand six hundred sixty-one'); INSERT INTO t1 VALUES(439, 1538, 'one thousand five hundred thirty-eight'); INSERT INTO t1 VALUES(440, 54521, 'fifty-four thousand five hundred twenty-one'); INSERT INTO t1 VALUES(441, 94236, 'ninety-four thousand two hundred thirty-six'); INSERT INTO t1 VALUES(442, 55719, 'fifty-five thousand seven hundred nineteen'); INSERT INTO t1 VALUES(443, 69736, 'sixty-nine thousand seven hundred thirty-six'); INSERT INTO t1 VALUES(444, 53487, 'fifty-three thousand four hundred eighty-seven'); INSERT INTO t1 VALUES(445, 8984, 'eight thousand nine hundred eighty-four'); INSERT INTO t1 VALUES(446, 3898, 'three thousand eight hundred ninety-eight'); INSERT INTO t1 VALUES(447, 13364, 'thirteen thousand three hundred sixty-four'); INSERT INTO t1 VALUES(448, 35674, 'thirty-five thousand six hundred seventy-four'); INSERT INTO t1 VALUES(449, 96851, 'ninety-six thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(450, 31439, 'thirty-one thousand four hundred thirty-nine'); INSERT INTO t1 VALUES(451, 50192, 'fifty thousand one hundred ninety-two'); INSERT INTO t1 VALUES(452, 42155, 'forty-two thousand one hundred fifty-five'); INSERT INTO t1 VALUES(453, 80153, 'eighty thousand one hundred fifty-three'); INSERT INTO t1 VALUES(454, 10788, 'ten thousand seven hundred eighty-eight'); INSERT INTO t1 VALUES(455, 69811, 'sixty-nine thousand eight hundred eleven'); INSERT INTO t1 VALUES(456, 238, 'two hundred thirty-eight'); INSERT INTO t1 VALUES(457, 28236, 'twenty-eight thousand two hundred thirty-six'); INSERT INTO t1 VALUES(458, 69835, 'sixty-nine thousand eight hundred thirty-five'); INSERT INTO t1 VALUES(459, 18661, 'eighteen thousand six hundred sixty-one'); INSERT INTO t1 VALUES(460, 50942, 'fifty thousand nine hundred forty-two'); INSERT INTO t1 VALUES(461, 41616, 'forty-one thousand six hundred sixteen'); INSERT INTO t1 VALUES(462, 61068, 'sixty-one thousand sixty-eight'); INSERT INTO t1 VALUES(463, 76319, 'seventy-six thousand three hundred nineteen'); INSERT INTO t1 VALUES(464, 48862, 'forty-eight thousand eight hundred sixty-two'); INSERT INTO t1 VALUES(465, 67521, 'sixty-seven thousand five hundred twenty-one'); INSERT INTO t1 VALUES(466, 5614, 'five thousand six hundred fourteen'); INSERT INTO t1 VALUES(467, 63796, 'sixty-three thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(468, 93004, 'ninety-three thousand four'); INSERT INTO t1 VALUES(469, 80923, 'eighty thousand nine hundred twenty-three'); INSERT INTO t1 VALUES(470, 22392, 'twenty-two thousand three hundred ninety-two'); INSERT INTO t1 VALUES(471, 67687, 'sixty-seven thousand six hundred eighty-seven'); INSERT INTO t1 VALUES(472, 26857, 'twenty-six thousand eight hundred fifty-seven'); INSERT INTO t1 VALUES(473, 34028, 'thirty-four thousand twenty-eight'); INSERT INTO t1 VALUES(474, 11549, 'eleven thousand five hundred forty-nine'); INSERT INTO t1 VALUES(475, 38142, 'thirty-eight thousand one hundred forty-two'); INSERT INTO t1 VALUES(476, 31711, 'thirty-one thousand seven hundred eleven'); INSERT INTO t1 VALUES(477, 33471, 'thirty-three thousand four hundred seventy-one'); INSERT INTO t1 VALUES(478, 87117, 'eighty-seven thousand one hundred seventeen'); INSERT INTO t1 VALUES(479, 32173, 'thirty-two thousand one hundred seventy-three'); INSERT INTO t1 VALUES(480, 95354, 'ninety-five thousand three hundred fifty-four'); INSERT INTO t1 VALUES(481, 90955, 'ninety thousand nine hundred fifty-five'); INSERT INTO t1 VALUES(482, 39317, 'thirty-nine thousand three hundred seventeen'); INSERT INTO t1 VALUES(483, 80460, 'eighty thousand four hundred sixty'); INSERT INTO t1 VALUES(484, 95340, 'ninety-five thousand three hundred forty'); INSERT INTO t1 VALUES(485, 82632, 'eighty-two thousand six hundred thirty-two'); INSERT INTO t1 VALUES(486, 48608, 'forty-eight thousand six hundred eight'); INSERT INTO t1 VALUES(487, 98488, 'ninety-eight thousand four hundred eighty-eight'); INSERT INTO t1 VALUES(488, 5150, 'five thousand one hundred fifty'); INSERT INTO t1 VALUES(489, 27485, 'twenty-seven thousand four hundred eighty-five'); INSERT INTO t1 VALUES(490, 7164, 'seven thousand one hundred sixty-four'); INSERT INTO t1 VALUES(491, 47631, 'forty-seven thousand six hundred thirty-one'); INSERT INTO t1 VALUES(492, 65426, 'sixty-five thousand four hundred twenty-six'); INSERT INTO t1 VALUES(493, 75771, 'seventy-five thousand seven hundred seventy-one'); INSERT INTO t1 VALUES(494, 6764, 'six thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(495, 33671, 'thirty-three thousand six hundred seventy-one'); INSERT INTO t1 VALUES(496, 82362, 'eighty-two thousand three hundred sixty-two'); INSERT INTO t1 VALUES(497, 20050, 'twenty thousand fifty'); INSERT INTO t1 VALUES(498, 56872, 'fifty-six thousand eight hundred seventy-two'); INSERT INTO t1 VALUES(499, 50444, 'fifty thousand four hundred forty-four'); INSERT INTO t1 VALUES(500, 58990, 'fifty-eight thousand nine hundred ninety'); INSERT INTO t1 VALUES(501, 33015, 'thirty-three thousand fifteen'); INSERT INTO t1 VALUES(502, 22947, 'twenty-two thousand nine hundred forty-seven'); INSERT INTO t1 VALUES(503, 51076, 'fifty-one thousand seventy-six'); INSERT INTO t1 VALUES(504, 54076, 'fifty-four thousand seventy-six'); INSERT INTO t1 VALUES(505, 9164, 'nine thousand one hundred sixty-four'); INSERT INTO t1 VALUES(506, 49803, 'forty-nine thousand eight hundred three'); INSERT INTO t1 VALUES(507, 30930, 'thirty thousand nine hundred thirty'); INSERT INTO t1 VALUES(508, 72773, 'seventy-two thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(509, 86955, 'eighty-six thousand nine hundred fifty-five'); INSERT INTO t1 VALUES(510, 63099, 'sixty-three thousand ninety-nine'); INSERT INTO t1 VALUES(511, 36835, 'thirty-six thousand eight hundred thirty-five'); INSERT INTO t1 VALUES(512, 99608, 'ninety-nine thousand six hundred eight'); INSERT INTO t1 VALUES(513, 20087, 'twenty thousand eighty-seven'); INSERT INTO t1 VALUES(514, 59902, 'fifty-nine thousand nine hundred two'); INSERT INTO t1 VALUES(515, 70901, 'seventy thousand nine hundred one'); INSERT INTO t1 VALUES(516, 71899, 'seventy-one thousand eight hundred ninety-nine'); INSERT INTO t1 VALUES(517, 22897, 'twenty-two thousand eight hundred ninety-seven'); INSERT INTO t1 VALUES(518, 6672, 'six thousand six hundred seventy-two'); INSERT INTO t1 VALUES(519, 9660, 'nine thousand six hundred sixty'); INSERT INTO t1 VALUES(520, 78736, 'seventy-eight thousand seven hundred thirty-six'); INSERT INTO t1 VALUES(521, 85202, 'eighty-five thousand two hundred two'); INSERT INTO t1 VALUES(522, 11277, 'eleven thousand two hundred seventy-seven'); INSERT INTO t1 VALUES(523, 83494, 'eighty-three thousand four hundred ninety-four'); INSERT INTO t1 VALUES(524, 19099, 'nineteen thousand ninety-nine'); INSERT INTO t1 VALUES(525, 87334, 'eighty-seven thousand three hundred thirty-four'); INSERT INTO t1 VALUES(526, 54397, 'fifty-four thousand three hundred ninety-seven'); INSERT INTO t1 VALUES(527, 61503, 'sixty-one thousand five hundred three'); INSERT INTO t1 VALUES(528, 56635, 'fifty-six thousand six hundred thirty-five'); INSERT INTO t1 VALUES(529, 50206, 'fifty thousand two hundred six'); INSERT INTO t1 VALUES(530, 30947, 'thirty thousand nine hundred forty-seven'); INSERT INTO t1 VALUES(531, 56690, 'fifty-six thousand six hundred ninety'); INSERT INTO t1 VALUES(532, 21428, 'twenty-one thousand four hundred twenty-eight'); INSERT INTO t1 VALUES(533, 49866, 'forty-nine thousand eight hundred sixty-six'); INSERT INTO t1 VALUES(534, 96174, 'ninety-six thousand one hundred seventy-four'); INSERT INTO t1 VALUES(535, 67447, 'sixty-seven thousand four hundred forty-seven'); INSERT INTO t1 VALUES(536, 68896, 'sixty-eight thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(537, 78687, 'seventy-eight thousand six hundred eighty-seven'); INSERT INTO t1 VALUES(538, 53144, 'fifty-three thousand one hundred forty-four'); INSERT INTO t1 VALUES(539, 70681, 'seventy thousand six hundred eighty-one'); INSERT INTO t1 VALUES(540, 69947, 'sixty-nine thousand nine hundred forty-seven'); INSERT INTO t1 VALUES(541, 43066, 'forty-three thousand sixty-six'); INSERT INTO t1 VALUES(542, 61640, 'sixty-one thousand six hundred forty'); INSERT INTO t1 VALUES(543, 65972, 'sixty-five thousand nine hundred seventy-two'); INSERT INTO t1 VALUES(544, 79904, 'seventy-nine thousand nine hundred four'); INSERT INTO t1 VALUES(545, 53530, 'fifty-three thousand five hundred thirty'); INSERT INTO t1 VALUES(546, 67898, 'sixty-seven thousand eight hundred ninety-eight'); INSERT INTO t1 VALUES(547, 74946, 'seventy-four thousand nine hundred forty-six'); INSERT INTO t1 VALUES(548, 31320, 'thirty-one thousand three hundred twenty'); INSERT INTO t1 VALUES(549, 19443, 'nineteen thousand four hundred forty-three'); INSERT INTO t1 VALUES(550, 74559, 'seventy-four thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(551, 29338, 'twenty-nine thousand three hundred thirty-eight'); INSERT INTO t1 VALUES(552, 31827, 'thirty-one thousand eight hundred twenty-seven'); INSERT INTO t1 VALUES(553, 85634, 'eighty-five thousand six hundred thirty-four'); INSERT INTO t1 VALUES(554, 71742, 'seventy-one thousand seven hundred forty-two'); INSERT INTO t1 VALUES(555, 10773, 'ten thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(556, 56958, 'fifty-six thousand nine hundred fifty-eight'); INSERT INTO t1 VALUES(557, 11158, 'eleven thousand one hundred fifty-eight'); INSERT INTO t1 VALUES(558, 24219, 'twenty-four thousand two hundred nineteen'); INSERT INTO t1 VALUES(559, 64293, 'sixty-four thousand two hundred ninety-three'); INSERT INTO t1 VALUES(560, 29597, 'twenty-nine thousand five hundred ninety-seven'); INSERT INTO t1 VALUES(561, 44206, 'forty-four thousand two hundred six'); INSERT INTO t1 VALUES(562, 41355, 'forty-one thousand three hundred fifty-five'); INSERT INTO t1 VALUES(563, 9326, 'nine thousand three hundred twenty-six'); INSERT INTO t1 VALUES(564, 55285, 'fifty-five thousand two hundred eighty-five'); INSERT INTO t1 VALUES(565, 13074, 'thirteen thousand seventy-four'); INSERT INTO t1 VALUES(566, 14914, 'fourteen thousand nine hundred fourteen'); INSERT INTO t1 VALUES(567, 39352, 'thirty-nine thousand three hundred fifty-two'); INSERT INTO t1 VALUES(568, 85270, 'eighty-five thousand two hundred seventy'); INSERT INTO t1 VALUES(569, 49568, 'forty-nine thousand five hundred sixty-eight'); INSERT INTO t1 VALUES(570, 12341, 'twelve thousand three hundred forty-one'); INSERT INTO t1 VALUES(571, 79612, 'seventy-nine thousand six hundred twelve'); INSERT INTO t1 VALUES(572, 60587, 'sixty thousand five hundred eighty-seven'); INSERT INTO t1 VALUES(573, 21080, 'twenty-one thousand eighty'); INSERT INTO t1 VALUES(574, 1918, 'one thousand nine hundred eighteen'); INSERT INTO t1 VALUES(575, 11453, 'eleven thousand four hundred fifty-three'); INSERT INTO t1 VALUES(576, 14499, 'fourteen thousand four hundred ninety-nine'); INSERT INTO t1 VALUES(577, 34377, 'thirty-four thousand three hundred seventy-seven'); INSERT INTO t1 VALUES(578, 24256, 'twenty-four thousand two hundred fifty-six'); INSERT INTO t1 VALUES(579, 19779, 'nineteen thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(580, 95966, 'ninety-five thousand nine hundred sixty-six'); INSERT INTO t1 VALUES(581, 73931, 'seventy-three thousand nine hundred thirty-one'); INSERT INTO t1 VALUES(582, 20049, 'twenty thousand forty-nine'); INSERT INTO t1 VALUES(583, 98672, 'ninety-eight thousand six hundred seventy-two'); INSERT INTO t1 VALUES(584, 15686, 'fifteen thousand six hundred eighty-six'); INSERT INTO t1 VALUES(585, 14102, 'fourteen thousand one hundred two'); INSERT INTO t1 VALUES(586, 19086, 'nineteen thousand eighty-six'); INSERT INTO t1 VALUES(587, 84666, 'eighty-four thousand six hundred sixty-six'); INSERT INTO t1 VALUES(588, 43294, 'forty-three thousand two hundred ninety-four'); INSERT INTO t1 VALUES(589, 18934, 'eighteen thousand nine hundred thirty-four'); INSERT INTO t1 VALUES(590, 32540, 'thirty-two thousand five hundred forty'); INSERT INTO t1 VALUES(591, 77719, 'seventy-seven thousand seven hundred nineteen'); INSERT INTO t1 VALUES(592, 71077, 'seventy-one thousand seventy-seven'); INSERT INTO t1 VALUES(593, 41207, 'forty-one thousand two hundred seven'); INSERT INTO t1 VALUES(594, 70728, 'seventy thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(595, 23442, 'twenty-three thousand four hundred forty-two'); INSERT INTO t1 VALUES(596, 24449, 'twenty-four thousand four hundred forty-nine'); INSERT INTO t1 VALUES(597, 37949, 'thirty-seven thousand nine hundred forty-nine'); INSERT INTO t1 VALUES(598, 23420, 'twenty-three thousand four hundred twenty'); INSERT INTO t1 VALUES(599, 374, 'three hundred seventy-four'); INSERT INTO t1 VALUES(600, 34061, 'thirty-four thousand sixty-one'); INSERT INTO t1 VALUES(601, 17320, 'seventeen thousand three hundred twenty'); INSERT INTO t1 VALUES(602, 15866, 'fifteen thousand eight hundred sixty-six'); INSERT INTO t1 VALUES(603, 36879, 'thirty-six thousand eight hundred seventy-nine'); INSERT INTO t1 VALUES(604, 63304, 'sixty-three thousand three hundred four'); INSERT INTO t1 VALUES(605, 30961, 'thirty thousand nine hundred sixty-one'); INSERT INTO t1 VALUES(606, 41945, 'forty-one thousand nine hundred forty-five'); INSERT INTO t1 VALUES(607, 42550, 'forty-two thousand five hundred fifty'); INSERT INTO t1 VALUES(608, 21902, 'twenty-one thousand nine hundred two'); INSERT INTO t1 VALUES(609, 53848, 'fifty-three thousand eight hundred forty-eight'); INSERT INTO t1 VALUES(610, 74728, 'seventy-four thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(611, 65032, 'sixty-five thousand thirty-two'); INSERT INTO t1 VALUES(612, 85955, 'eighty-five thousand nine hundred fifty-five'); INSERT INTO t1 VALUES(613, 94410, 'ninety-four thousand four hundred ten'); INSERT INTO t1 VALUES(614, 98397, 'ninety-eight thousand three hundred ninety-seven'); INSERT INTO t1 VALUES(615, 47190, 'forty-seven thousand one hundred ninety'); INSERT INTO t1 VALUES(616, 17588, 'seventeen thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(617, 31575, 'thirty-one thousand five hundred seventy-five'); INSERT INTO t1 VALUES(618, 78749, 'seventy-eight thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(619, 40495, 'forty thousand four hundred ninety-five'); INSERT INTO t1 VALUES(620, 38920, 'thirty-eight thousand nine hundred twenty'); INSERT INTO t1 VALUES(621, 72952, 'seventy-two thousand nine hundred fifty-two'); INSERT INTO t1 VALUES(622, 49107, 'forty-nine thousand one hundred seven'); INSERT INTO t1 VALUES(623, 88304, 'eighty-eight thousand three hundred four'); INSERT INTO t1 VALUES(624, 61467, 'sixty-one thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(625, 53876, 'fifty-three thousand eight hundred seventy-six'); INSERT INTO t1 VALUES(626, 52585, 'fifty-two thousand five hundred eighty-five'); INSERT INTO t1 VALUES(627, 52521, 'fifty-two thousand five hundred twenty-one'); INSERT INTO t1 VALUES(628, 91069, 'ninety-one thousand sixty-nine'); INSERT INTO t1 VALUES(629, 75990, 'seventy-five thousand nine hundred ninety'); INSERT INTO t1 VALUES(630, 37578, 'thirty-seven thousand five hundred seventy-eight'); INSERT INTO t1 VALUES(631, 55375, 'fifty-five thousand three hundred seventy-five'); INSERT INTO t1 VALUES(632, 18123, 'eighteen thousand one hundred twenty-three'); INSERT INTO t1 VALUES(633, 49793, 'forty-nine thousand seven hundred ninety-three'); INSERT INTO t1 VALUES(634, 48660, 'forty-eight thousand six hundred sixty'); INSERT INTO t1 VALUES(635, 95750, 'ninety-five thousand seven hundred fifty'); INSERT INTO t1 VALUES(636, 88482, 'eighty-eight thousand four hundred eighty-two'); INSERT INTO t1 VALUES(637, 52293, 'fifty-two thousand two hundred ninety-three'); INSERT INTO t1 VALUES(638, 48752, 'forty-eight thousand seven hundred fifty-two'); INSERT INTO t1 VALUES(639, 40166, 'forty thousand one hundred sixty-six'); INSERT INTO t1 VALUES(640, 77581, 'seventy-seven thousand five hundred eighty-one'); INSERT INTO t1 VALUES(641, 10821, 'ten thousand eight hundred twenty-one'); INSERT INTO t1 VALUES(642, 29263, 'twenty-nine thousand two hundred sixty-three'); INSERT INTO t1 VALUES(643, 83388, 'eighty-three thousand three hundred eighty-eight'); INSERT INTO t1 VALUES(644, 29250, 'twenty-nine thousand two hundred fifty'); INSERT INTO t1 VALUES(645, 62922, 'sixty-two thousand nine hundred twenty-two'); INSERT INTO t1 VALUES(646, 61310, 'sixty-one thousand three hundred ten'); INSERT INTO t1 VALUES(647, 4415, 'four thousand four hundred fifteen'); INSERT INTO t1 VALUES(648, 45268, 'forty-five thousand two hundred sixty-eight'); INSERT INTO t1 VALUES(649, 65389, 'sixty-five thousand three hundred eighty-nine'); INSERT INTO t1 VALUES(650, 45523, 'forty-five thousand five hundred twenty-three'); INSERT INTO t1 VALUES(651, 15806, 'fifteen thousand eight hundred six'); INSERT INTO t1 VALUES(652, 98377, 'ninety-eight thousand three hundred seventy-seven'); INSERT INTO t1 VALUES(653, 55698, 'fifty-five thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(654, 1478, 'one thousand four hundred seventy-eight'); INSERT INTO t1 VALUES(655, 30335, 'thirty thousand three hundred thirty-five'); INSERT INTO t1 VALUES(656, 79411, 'seventy-nine thousand four hundred eleven'); INSERT INTO t1 VALUES(657, 25522, 'twenty-five thousand five hundred twenty-two'); INSERT INTO t1 VALUES(658, 62224, 'sixty-two thousand two hundred twenty-four'); INSERT INTO t1 VALUES(659, 85132, 'eighty-five thousand one hundred thirty-two'); INSERT INTO t1 VALUES(660, 40466, 'forty thousand four hundred sixty-six'); INSERT INTO t1 VALUES(661, 50611, 'fifty thousand six hundred eleven'); INSERT INTO t1 VALUES(662, 20690, 'twenty thousand six hundred ninety'); INSERT INTO t1 VALUES(663, 20473, 'twenty thousand four hundred seventy-three'); INSERT INTO t1 VALUES(664, 11232, 'eleven thousand two hundred thirty-two'); INSERT INTO t1 VALUES(665, 74572, 'seventy-four thousand five hundred seventy-two'); INSERT INTO t1 VALUES(666, 96457, 'ninety-six thousand four hundred fifty-seven'); INSERT INTO t1 VALUES(667, 19592, 'nineteen thousand five hundred ninety-two'); INSERT INTO t1 VALUES(668, 73698, 'seventy-three thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(669, 46020, 'forty-six thousand twenty'); INSERT INTO t1 VALUES(670, 21920, 'twenty-one thousand nine hundred twenty'); INSERT INTO t1 VALUES(671, 82017, 'eighty-two thousand seventeen'); INSERT INTO t1 VALUES(672, 11049, 'eleven thousand forty-nine'); INSERT INTO t1 VALUES(673, 11331, 'eleven thousand three hundred thirty-one'); INSERT INTO t1 VALUES(674, 69853, 'sixty-nine thousand eight hundred fifty-three'); INSERT INTO t1 VALUES(675, 72860, 'seventy-two thousand eight hundred sixty'); INSERT INTO t1 VALUES(676, 92902, 'ninety-two thousand nine hundred two'); INSERT INTO t1 VALUES(677, 76012, 'seventy-six thousand twelve'); INSERT INTO t1 VALUES(678, 24146, 'twenty-four thousand one hundred forty-six'); INSERT INTO t1 VALUES(679, 65043, 'sixty-five thousand forty-three'); INSERT INTO t1 VALUES(680, 33189, 'thirty-three thousand one hundred eighty-nine'); INSERT INTO t1 VALUES(681, 26540, 'twenty-six thousand five hundred forty'); INSERT INTO t1 VALUES(682, 11391, 'eleven thousand three hundred ninety-one'); INSERT INTO t1 VALUES(683, 7557, 'seven thousand five hundred fifty-seven'); INSERT INTO t1 VALUES(684, 96548, 'ninety-six thousand five hundred forty-eight'); INSERT INTO t1 VALUES(685, 28249, 'twenty-eight thousand two hundred forty-nine'); INSERT INTO t1 VALUES(686, 4, 'four'); INSERT INTO t1 VALUES(687, 93866, 'ninety-three thousand eight hundred sixty-six'); INSERT INTO t1 VALUES(688, 85913, 'eighty-five thousand nine hundred thirteen'); INSERT INTO t1 VALUES(689, 27019, 'twenty-seven thousand nineteen'); INSERT INTO t1 VALUES(690, 73409, 'seventy-three thousand four hundred nine'); INSERT INTO t1 VALUES(691, 94731, 'ninety-four thousand seven hundred thirty-one'); INSERT INTO t1 VALUES(692, 97305, 'ninety-seven thousand three hundred five'); INSERT INTO t1 VALUES(693, 91379, 'ninety-one thousand three hundred seventy-nine'); INSERT INTO t1 VALUES(694, 36839, 'thirty-six thousand eight hundred thirty-nine'); INSERT INTO t1 VALUES(695, 43929, 'forty-three thousand nine hundred twenty-nine'); INSERT INTO t1 VALUES(696, 35693, 'thirty-five thousand six hundred ninety-three'); INSERT INTO t1 VALUES(697, 95751, 'ninety-five thousand seven hundred fifty-one'); INSERT INTO t1 VALUES(698, 87282, 'eighty-seven thousand two hundred eighty-two'); INSERT INTO t1 VALUES(699, 27253, 'twenty-seven thousand two hundred fifty-three'); INSERT INTO t1 VALUES(700, 42140, 'forty-two thousand one hundred forty'); INSERT INTO t1 VALUES(701, 49889, 'forty-nine thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(702, 66987, 'sixty-six thousand nine hundred eighty-seven'); INSERT INTO t1 VALUES(703, 91389, 'ninety-one thousand three hundred eighty-nine'); INSERT INTO t1 VALUES(704, 72974, 'seventy-two thousand nine hundred seventy-four'); INSERT INTO t1 VALUES(705, 902, 'nine hundred two'); INSERT INTO t1 VALUES(706, 91221, 'ninety-one thousand two hundred twenty-one'); INSERT INTO t1 VALUES(707, 56384, 'fifty-six thousand three hundred eighty-four'); INSERT INTO t1 VALUES(708, 18704, 'eighteen thousand seven hundred four'); INSERT INTO t1 VALUES(709, 78404, 'seventy-eight thousand four hundred four'); INSERT INTO t1 VALUES(710, 10294, 'ten thousand two hundred ninety-four'); INSERT INTO t1 VALUES(711, 63621, 'sixty-three thousand six hundred twenty-one'); INSERT INTO t1 VALUES(712, 16992, 'sixteen thousand nine hundred ninety-two'); INSERT INTO t1 VALUES(713, 97472, 'ninety-seven thousand four hundred seventy-two'); INSERT INTO t1 VALUES(714, 28965, 'twenty-eight thousand nine hundred sixty-five'); INSERT INTO t1 VALUES(715, 8316, 'eight thousand three hundred sixteen'); INSERT INTO t1 VALUES(716, 97964, 'ninety-seven thousand nine hundred sixty-four'); INSERT INTO t1 VALUES(717, 12696, 'twelve thousand six hundred ninety-six'); INSERT INTO t1 VALUES(718, 4515, 'four thousand five hundred fifteen'); INSERT INTO t1 VALUES(719, 62470, 'sixty-two thousand four hundred seventy'); INSERT INTO t1 VALUES(720, 36663, 'thirty-six thousand six hundred sixty-three'); INSERT INTO t1 VALUES(721, 90498, 'ninety thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(722, 6487, 'six thousand four hundred eighty-seven'); INSERT INTO t1 VALUES(723, 52641, 'fifty-two thousand six hundred forty-one'); INSERT INTO t1 VALUES(724, 39672, 'thirty-nine thousand six hundred seventy-two'); INSERT INTO t1 VALUES(725, 24632, 'twenty-four thousand six hundred thirty-two'); INSERT INTO t1 VALUES(726, 23330, 'twenty-three thousand three hundred thirty'); INSERT INTO t1 VALUES(727, 76465, 'seventy-six thousand four hundred sixty-five'); INSERT INTO t1 VALUES(728, 20847, 'twenty thousand eight hundred forty-seven'); INSERT INTO t1 VALUES(729, 50465, 'fifty thousand four hundred sixty-five'); INSERT INTO t1 VALUES(730, 39837, 'thirty-nine thousand eight hundred thirty-seven'); INSERT INTO t1 VALUES(731, 83352, 'eighty-three thousand three hundred fifty-two'); INSERT INTO t1 VALUES(732, 50598, 'fifty thousand five hundred ninety-eight'); INSERT INTO t1 VALUES(733, 50053, 'fifty thousand fifty-three'); INSERT INTO t1 VALUES(734, 94348, 'ninety-four thousand three hundred forty-eight'); INSERT INTO t1 VALUES(735, 96286, 'ninety-six thousand two hundred eighty-six'); INSERT INTO t1 VALUES(736, 4012, 'four thousand twelve'); INSERT INTO t1 VALUES(737, 75209, 'seventy-five thousand two hundred nine'); INSERT INTO t1 VALUES(738, 74851, 'seventy-four thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(739, 1740, 'one thousand seven hundred forty'); INSERT INTO t1 VALUES(740, 67502, 'sixty-seven thousand five hundred two'); INSERT INTO t1 VALUES(741, 75490, 'seventy-five thousand four hundred ninety'); INSERT INTO t1 VALUES(742, 85302, 'eighty-five thousand three hundred two'); INSERT INTO t1 VALUES(743, 57899, 'fifty-seven thousand eight hundred ninety-nine'); INSERT INTO t1 VALUES(744, 12706, 'twelve thousand seven hundred six'); INSERT INTO t1 VALUES(745, 19713, 'nineteen thousand seven hundred thirteen'); INSERT INTO t1 VALUES(746, 61208, 'sixty-one thousand two hundred eight'); INSERT INTO t1 VALUES(747, 88189, 'eighty-eight thousand one hundred eighty-nine'); INSERT INTO t1 VALUES(748, 61646, 'sixty-one thousand six hundred forty-six'); INSERT INTO t1 VALUES(749, 42774, 'forty-two thousand seven hundred seventy-four'); INSERT INTO t1 VALUES(750, 31477, 'thirty-one thousand four hundred seventy-seven'); INSERT INTO t1 VALUES(751, 97340, 'ninety-seven thousand three hundred forty'); INSERT INTO t1 VALUES(752, 14108, 'fourteen thousand one hundred eight'); INSERT INTO t1 VALUES(753, 74097, 'seventy-four thousand ninety-seven'); INSERT INTO t1 VALUES(754, 83823, 'eighty-three thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(755, 36077, 'thirty-six thousand seventy-seven'); INSERT INTO t1 VALUES(756, 86419, 'eighty-six thousand four hundred nineteen'); INSERT INTO t1 VALUES(757, 72428, 'seventy-two thousand four hundred twenty-eight'); INSERT INTO t1 VALUES(758, 27947, 'twenty-seven thousand nine hundred forty-seven'); INSERT INTO t1 VALUES(759, 36039, 'thirty-six thousand thirty-nine'); INSERT INTO t1 VALUES(760, 37107, 'thirty-seven thousand one hundred seven'); INSERT INTO t1 VALUES(761, 56070, 'fifty-six thousand seventy'); INSERT INTO t1 VALUES(762, 91807, 'ninety-one thousand eight hundred seven'); INSERT INTO t1 VALUES(763, 16255, 'sixteen thousand two hundred fifty-five'); INSERT INTO t1 VALUES(764, 58625, 'fifty-eight thousand six hundred twenty-five'); INSERT INTO t1 VALUES(765, 70216, 'seventy thousand two hundred sixteen'); INSERT INTO t1 VALUES(766, 66700, 'sixty-six thousand seven hundred'); INSERT INTO t1 VALUES(767, 83359, 'eighty-three thousand three hundred fifty-nine'); INSERT INTO t1 VALUES(768, 53833, 'fifty-three thousand eight hundred thirty-three'); INSERT INTO t1 VALUES(769, 56167, 'fifty-six thousand one hundred sixty-seven'); INSERT INTO t1 VALUES(770, 18770, 'eighteen thousand seven hundred seventy'); INSERT INTO t1 VALUES(771, 21077, 'twenty-one thousand seventy-seven'); INSERT INTO t1 VALUES(772, 91380, 'ninety-one thousand three hundred eighty'); INSERT INTO t1 VALUES(773, 64063, 'sixty-four thousand sixty-three'); INSERT INTO t1 VALUES(774, 19494, 'nineteen thousand four hundred ninety-four'); INSERT INTO t1 VALUES(775, 98753, 'ninety-eight thousand seven hundred fifty-three'); INSERT INTO t1 VALUES(776, 20066, 'twenty thousand sixty-six'); INSERT INTO t1 VALUES(777, 37911, 'thirty-seven thousand nine hundred eleven'); INSERT INTO t1 VALUES(778, 20388, 'twenty thousand three hundred eighty-eight'); INSERT INTO t1 VALUES(779, 56293, 'fifty-six thousand two hundred ninety-three'); INSERT INTO t1 VALUES(780, 14002, 'fourteen thousand two'); INSERT INTO t1 VALUES(781, 54877, 'fifty-four thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(782, 15206, 'fifteen thousand two hundred six'); INSERT INTO t1 VALUES(783, 49004, 'forty-nine thousand four'); INSERT INTO t1 VALUES(784, 11380, 'eleven thousand three hundred eighty'); INSERT INTO t1 VALUES(785, 36092, 'thirty-six thousand ninety-two'); INSERT INTO t1 VALUES(786, 11214, 'eleven thousand two hundred fourteen'); INSERT INTO t1 VALUES(787, 42797, 'forty-two thousand seven hundred ninety-seven'); INSERT INTO t1 VALUES(788, 67437, 'sixty-seven thousand four hundred thirty-seven'); INSERT INTO t1 VALUES(789, 69758, 'sixty-nine thousand seven hundred fifty-eight'); INSERT INTO t1 VALUES(790, 39380, 'thirty-nine thousand three hundred eighty'); INSERT INTO t1 VALUES(791, 98258, 'ninety-eight thousand two hundred fifty-eight'); INSERT INTO t1 VALUES(792, 91089, 'ninety-one thousand eighty-nine'); INSERT INTO t1 VALUES(793, 26792, 'twenty-six thousand seven hundred ninety-two'); INSERT INTO t1 VALUES(794, 50150, 'fifty thousand one hundred fifty'); INSERT INTO t1 VALUES(795, 33970, 'thirty-three thousand nine hundred seventy'); INSERT INTO t1 VALUES(796, 8966, 'eight thousand nine hundred sixty-six'); INSERT INTO t1 VALUES(797, 72381, 'seventy-two thousand three hundred eighty-one'); INSERT INTO t1 VALUES(798, 54370, 'fifty-four thousand three hundred seventy'); INSERT INTO t1 VALUES(799, 25873, 'twenty-five thousand eight hundred seventy-three'); INSERT INTO t1 VALUES(800, 34960, 'thirty-four thousand nine hundred sixty'); INSERT INTO t1 VALUES(801, 30057, 'thirty thousand fifty-seven'); INSERT INTO t1 VALUES(802, 8378, 'eight thousand three hundred seventy-eight'); INSERT INTO t1 VALUES(803, 63387, 'sixty-three thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(804, 83890, 'eighty-three thousand eight hundred ninety'); INSERT INTO t1 VALUES(805, 48723, 'forty-eight thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(806, 21491, 'twenty-one thousand four hundred ninety-one'); INSERT INTO t1 VALUES(807, 20470, 'twenty thousand four hundred seventy'); INSERT INTO t1 VALUES(808, 65561, 'sixty-five thousand five hundred sixty-one'); INSERT INTO t1 VALUES(809, 38706, 'thirty-eight thousand seven hundred six'); INSERT INTO t1 VALUES(810, 18333, 'eighteen thousand three hundred thirty-three'); INSERT INTO t1 VALUES(811, 35631, 'thirty-five thousand six hundred thirty-one'); INSERT INTO t1 VALUES(812, 84578, 'eighty-four thousand five hundred seventy-eight'); INSERT INTO t1 VALUES(813, 88735, 'eighty-eight thousand seven hundred thirty-five'); INSERT INTO t1 VALUES(814, 92359, 'ninety-two thousand three hundred fifty-nine'); INSERT INTO t1 VALUES(815, 63086, 'sixty-three thousand eighty-six'); INSERT INTO t1 VALUES(816, 47841, 'forty-seven thousand eight hundred forty-one'); INSERT INTO t1 VALUES(817, 86086, 'eighty-six thousand eighty-six'); INSERT INTO t1 VALUES(818, 62646, 'sixty-two thousand six hundred forty-six'); INSERT INTO t1 VALUES(819, 55244, 'fifty-five thousand two hundred forty-four'); INSERT INTO t1 VALUES(820, 76085, 'seventy-six thousand eighty-five'); INSERT INTO t1 VALUES(821, 75668, 'seventy-five thousand six hundred sixty-eight'); INSERT INTO t1 VALUES(822, 62414, 'sixty-two thousand four hundred fourteen'); INSERT INTO t1 VALUES(823, 38682, 'thirty-eight thousand six hundred eighty-two'); INSERT INTO t1 VALUES(824, 13046, 'thirteen thousand forty-six'); INSERT INTO t1 VALUES(825, 58590, 'fifty-eight thousand five hundred ninety'); INSERT INTO t1 VALUES(826, 51105, 'fifty-one thousand one hundred five'); INSERT INTO t1 VALUES(827, 94588, 'ninety-four thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(828, 85111, 'eighty-five thousand one hundred eleven'); INSERT INTO t1 VALUES(829, 55835, 'fifty-five thousand eight hundred thirty-five'); INSERT INTO t1 VALUES(830, 58345, 'fifty-eight thousand three hundred forty-five'); INSERT INTO t1 VALUES(831, 84864, 'eighty-four thousand eight hundred sixty-four'); INSERT INTO t1 VALUES(832, 80927, 'eighty thousand nine hundred twenty-seven'); INSERT INTO t1 VALUES(833, 17844, 'seventeen thousand eight hundred forty-four'); INSERT INTO t1 VALUES(834, 74478, 'seventy-four thousand four hundred seventy-eight'); INSERT INTO t1 VALUES(835, 11835, 'eleven thousand eight hundred thirty-five'); INSERT INTO t1 VALUES(836, 35914, 'thirty-five thousand nine hundred fourteen'); INSERT INTO t1 VALUES(837, 99275, 'ninety-nine thousand two hundred seventy-five'); INSERT INTO t1 VALUES(838, 52793, 'fifty-two thousand seven hundred ninety-three'); INSERT INTO t1 VALUES(839, 58035, 'fifty-eight thousand thirty-five'); INSERT INTO t1 VALUES(840, 2207, 'two thousand two hundred seven'); INSERT INTO t1 VALUES(841, 14523, 'fourteen thousand five hundred twenty-three'); INSERT INTO t1 VALUES(842, 34155, 'thirty-four thousand one hundred fifty-five'); INSERT INTO t1 VALUES(843, 29322, 'twenty-nine thousand three hundred twenty-two'); INSERT INTO t1 VALUES(844, 46687, 'forty-six thousand six hundred eighty-seven'); INSERT INTO t1 VALUES(845, 33492, 'thirty-three thousand four hundred ninety-two'); INSERT INTO t1 VALUES(846, 84814, 'eighty-four thousand eight hundred fourteen'); INSERT INTO t1 VALUES(847, 44434, 'forty-four thousand four hundred thirty-four'); INSERT INTO t1 VALUES(848, 13852, 'thirteen thousand eight hundred fifty-two'); INSERT INTO t1 VALUES(849, 72546, 'seventy-two thousand five hundred forty-six'); INSERT INTO t1 VALUES(850, 40984, 'forty thousand nine hundred eighty-four'); INSERT INTO t1 VALUES(851, 93784, 'ninety-three thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(852, 34250, 'thirty-four thousand two hundred fifty'); INSERT INTO t1 VALUES(853, 72147, 'seventy-two thousand one hundred forty-seven'); INSERT INTO t1 VALUES(854, 74225, 'seventy-four thousand two hundred twenty-five'); INSERT INTO t1 VALUES(855, 31017, 'thirty-one thousand seventeen'); INSERT INTO t1 VALUES(856, 26569, 'twenty-six thousand five hundred sixty-nine'); INSERT INTO t1 VALUES(857, 5857, 'five thousand eight hundred fifty-seven'); INSERT INTO t1 VALUES(858, 32947, 'thirty-two thousand nine hundred forty-seven'); INSERT INTO t1 VALUES(859, 83134, 'eighty-three thousand one hundred thirty-four'); INSERT INTO t1 VALUES(860, 42816, 'forty-two thousand eight hundred sixteen'); INSERT INTO t1 VALUES(861, 71423, 'seventy-one thousand four hundred twenty-three'); INSERT INTO t1 VALUES(862, 52047, 'fifty-two thousand forty-seven'); INSERT INTO t1 VALUES(863, 64998, 'sixty-four thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(864, 69171, 'sixty-nine thousand one hundred seventy-one'); INSERT INTO t1 VALUES(865, 84031, 'eighty-four thousand thirty-one'); INSERT INTO t1 VALUES(866, 75532, 'seventy-five thousand five hundred thirty-two'); INSERT INTO t1 VALUES(867, 94964, 'ninety-four thousand nine hundred sixty-four'); INSERT INTO t1 VALUES(868, 5660, 'five thousand six hundred sixty'); INSERT INTO t1 VALUES(869, 55840, 'fifty-five thousand eight hundred forty'); INSERT INTO t1 VALUES(870, 89953, 'eighty-nine thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(871, 13202, 'thirteen thousand two hundred two'); INSERT INTO t1 VALUES(872, 2630, 'two thousand six hundred thirty'); INSERT INTO t1 VALUES(873, 63261, 'sixty-three thousand two hundred sixty-one'); INSERT INTO t1 VALUES(874, 2886, 'two thousand eight hundred eighty-six'); INSERT INTO t1 VALUES(875, 64187, 'sixty-four thousand one hundred eighty-seven'); INSERT INTO t1 VALUES(876, 63376, 'sixty-three thousand three hundred seventy-six'); INSERT INTO t1 VALUES(877, 63783, 'sixty-three thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(878, 25102, 'twenty-five thousand one hundred two'); INSERT INTO t1 VALUES(879, 63740, 'sixty-three thousand seven hundred forty'); INSERT INTO t1 VALUES(880, 51842, 'fifty-one thousand eight hundred forty-two'); INSERT INTO t1 VALUES(881, 99799, 'ninety-nine thousand seven hundred ninety-nine'); INSERT INTO t1 VALUES(882, 56301, 'fifty-six thousand three hundred one'); INSERT INTO t1 VALUES(883, 89118, 'eighty-nine thousand one hundred eighteen'); INSERT INTO t1 VALUES(884, 2127, 'two thousand one hundred twenty-seven'); INSERT INTO t1 VALUES(885, 95244, 'ninety-five thousand two hundred forty-four'); INSERT INTO t1 VALUES(886, 90631, 'ninety thousand six hundred thirty-one'); INSERT INTO t1 VALUES(887, 36802, 'thirty-six thousand eight hundred two'); INSERT INTO t1 VALUES(888, 27481, 'twenty-seven thousand four hundred eighty-one'); INSERT INTO t1 VALUES(889, 58760, 'fifty-eight thousand seven hundred sixty'); INSERT INTO t1 VALUES(890, 72033, 'seventy-two thousand thirty-three'); INSERT INTO t1 VALUES(891, 28999, 'twenty-eight thousand nine hundred ninety-nine'); INSERT INTO t1 VALUES(892, 41077, 'forty-one thousand seventy-seven'); INSERT INTO t1 VALUES(893, 14607, 'fourteen thousand six hundred seven'); INSERT INTO t1 VALUES(894, 82153, 'eighty-two thousand one hundred fifty-three'); INSERT INTO t1 VALUES(895, 18611, 'eighteen thousand six hundred eleven'); INSERT INTO t1 VALUES(896, 6609, 'six thousand six hundred nine'); INSERT INTO t1 VALUES(897, 77853, 'seventy-seven thousand eight hundred fifty-three'); INSERT INTO t1 VALUES(898, 26063, 'twenty-six thousand sixty-three'); INSERT INTO t1 VALUES(899, 86043, 'eighty-six thousand forty-three'); INSERT INTO t1 VALUES(900, 74825, 'seventy-four thousand eight hundred twenty-five'); INSERT INTO t1 VALUES(901, 42686, 'forty-two thousand six hundred eighty-six'); INSERT INTO t1 VALUES(902, 24753, 'twenty-four thousand seven hundred fifty-three'); INSERT INTO t1 VALUES(903, 77131, 'seventy-seven thousand one hundred thirty-one'); INSERT INTO t1 VALUES(904, 96987, 'ninety-six thousand nine hundred eighty-seven'); INSERT INTO t1 VALUES(905, 44504, 'forty-four thousand five hundred four'); INSERT INTO t1 VALUES(906, 45053, 'forty-five thousand fifty-three'); INSERT INTO t1 VALUES(907, 87269, 'eighty-seven thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(908, 24991, 'twenty-four thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(909, 62528, 'sixty-two thousand five hundred twenty-eight'); INSERT INTO t1 VALUES(910, 74023, 'seventy-four thousand twenty-three'); INSERT INTO t1 VALUES(911, 47325, 'forty-seven thousand three hundred twenty-five'); INSERT INTO t1 VALUES(912, 7764, 'seven thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(913, 25982, 'twenty-five thousand nine hundred eighty-two'); INSERT INTO t1 VALUES(914, 4560, 'four thousand five hundred sixty'); INSERT INTO t1 VALUES(915, 78481, 'seventy-eight thousand four hundred eighty-one'); INSERT INTO t1 VALUES(916, 22421, 'twenty-two thousand four hundred twenty-one'); INSERT INTO t1 VALUES(917, 81391, 'eighty-one thousand three hundred ninety-one'); INSERT INTO t1 VALUES(918, 37103, 'thirty-seven thousand one hundred three'); INSERT INTO t1 VALUES(919, 6594, 'six thousand five hundred ninety-four'); INSERT INTO t1 VALUES(920, 6273, 'six thousand two hundred seventy-three'); INSERT INTO t1 VALUES(921, 35096, 'thirty-five thousand ninety-six'); INSERT INTO t1 VALUES(922, 70951, 'seventy thousand nine hundred fifty-one'); INSERT INTO t1 VALUES(923, 52908, 'fifty-two thousand nine hundred eight'); INSERT INTO t1 VALUES(924, 75934, 'seventy-five thousand nine hundred thirty-four'); INSERT INTO t1 VALUES(925, 79146, 'seventy-nine thousand one hundred forty-six'); INSERT INTO t1 VALUES(926, 68445, 'sixty-eight thousand four hundred forty-five'); INSERT INTO t1 VALUES(927, 30177, 'thirty thousand one hundred seventy-seven'); INSERT INTO t1 VALUES(928, 81045, 'eighty-one thousand forty-five'); INSERT INTO t1 VALUES(929, 81681, 'eighty-one thousand six hundred eighty-one'); INSERT INTO t1 VALUES(930, 55140, 'fifty-five thousand one hundred forty'); INSERT INTO t1 VALUES(931, 32735, 'thirty-two thousand seven hundred thirty-five'); INSERT INTO t1 VALUES(932, 36710, 'thirty-six thousand seven hundred ten'); INSERT INTO t1 VALUES(933, 87743, 'eighty-seven thousand seven hundred forty-three'); INSERT INTO t1 VALUES(934, 69665, 'sixty-nine thousand six hundred sixty-five'); INSERT INTO t1 VALUES(935, 57940, 'fifty-seven thousand nine hundred forty'); INSERT INTO t1 VALUES(936, 20254, 'twenty thousand two hundred fifty-four'); INSERT INTO t1 VALUES(937, 67563, 'sixty-seven thousand five hundred sixty-three'); INSERT INTO t1 VALUES(938, 55515, 'fifty-five thousand five hundred fifteen'); INSERT INTO t1 VALUES(939, 31646, 'thirty-one thousand six hundred forty-six'); INSERT INTO t1 VALUES(940, 28729, 'twenty-eight thousand seven hundred twenty-nine'); INSERT INTO t1 VALUES(941, 95022, 'ninety-five thousand twenty-two'); INSERT INTO t1 VALUES(942, 65016, 'sixty-five thousand sixteen'); INSERT INTO t1 VALUES(943, 53322, 'fifty-three thousand three hundred twenty-two'); INSERT INTO t1 VALUES(944, 80022, 'eighty thousand twenty-two'); INSERT INTO t1 VALUES(945, 84214, 'eighty-four thousand two hundred fourteen'); INSERT INTO t1 VALUES(946, 41101, 'forty-one thousand one hundred one'); INSERT INTO t1 VALUES(947, 45773, 'forty-five thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(948, 77511, 'seventy-seven thousand five hundred eleven'); INSERT INTO t1 VALUES(949, 87665, 'eighty-seven thousand six hundred sixty-five'); INSERT INTO t1 VALUES(950, 7337, 'seven thousand three hundred thirty-seven'); INSERT INTO t1 VALUES(951, 7387, 'seven thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(952, 37648, 'thirty-seven thousand six hundred forty-eight'); INSERT INTO t1 VALUES(953, 78093, 'seventy-eight thousand ninety-three'); INSERT INTO t1 VALUES(954, 17055, 'seventeen thousand fifty-five'); INSERT INTO t1 VALUES(955, 75829, 'seventy-five thousand eight hundred twenty-nine'); INSERT INTO t1 VALUES(956, 36840, 'thirty-six thousand eight hundred forty'); INSERT INTO t1 VALUES(957, 56519, 'fifty-six thousand five hundred nineteen'); INSERT INTO t1 VALUES(958, 41940, 'forty-one thousand nine hundred forty'); INSERT INTO t1 VALUES(959, 61832, 'sixty-one thousand eight hundred thirty-two'); INSERT INTO t1 VALUES(960, 51010, 'fifty-one thousand ten'); INSERT INTO t1 VALUES(961, 93497, 'ninety-three thousand four hundred ninety-seven'); INSERT INTO t1 VALUES(962, 76007, 'seventy-six thousand seven'); INSERT INTO t1 VALUES(963, 48149, 'forty-eight thousand one hundred forty-nine'); INSERT INTO t1 VALUES(964, 14722, 'fourteen thousand seven hundred twenty-two'); INSERT INTO t1 VALUES(965, 8909, 'eight thousand nine hundred nine'); INSERT INTO t1 VALUES(966, 2643, 'two thousand six hundred forty-three'); INSERT INTO t1 VALUES(967, 94315, 'ninety-four thousand three hundred fifteen'); INSERT INTO t1 VALUES(968, 69977, 'sixty-nine thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(969, 11808, 'eleven thousand eight hundred eight'); INSERT INTO t1 VALUES(970, 68357, 'sixty-eight thousand three hundred fifty-seven'); INSERT INTO t1 VALUES(971, 85250, 'eighty-five thousand two hundred fifty'); INSERT INTO t1 VALUES(972, 58340, 'fifty-eight thousand three hundred forty'); INSERT INTO t1 VALUES(973, 68845, 'sixty-eight thousand eight hundred forty-five'); INSERT INTO t1 VALUES(974, 94591, 'ninety-four thousand five hundred ninety-one'); INSERT INTO t1 VALUES(975, 46474, 'forty-six thousand four hundred seventy-four'); INSERT INTO t1 VALUES(976, 92292, 'ninety-two thousand two hundred ninety-two'); INSERT INTO t1 VALUES(977, 28243, 'twenty-eight thousand two hundred forty-three'); INSERT INTO t1 VALUES(978, 56049, 'fifty-six thousand forty-nine'); INSERT INTO t1 VALUES(979, 43203, 'forty-three thousand two hundred three'); INSERT INTO t1 VALUES(980, 2892, 'two thousand eight hundred ninety-two'); INSERT INTO t1 VALUES(981, 3349, 'three thousand three hundred forty-nine'); INSERT INTO t1 VALUES(982, 31139, 'thirty-one thousand one hundred thirty-nine'); INSERT INTO t1 VALUES(983, 19311, 'nineteen thousand three hundred eleven'); INSERT INTO t1 VALUES(984, 47939, 'forty-seven thousand nine hundred thirty-nine'); INSERT INTO t1 VALUES(985, 76128, 'seventy-six thousand one hundred twenty-eight'); INSERT INTO t1 VALUES(986, 43219, 'forty-three thousand two hundred nineteen'); INSERT INTO t1 VALUES(987, 32916, 'thirty-two thousand nine hundred sixteen'); INSERT INTO t1 VALUES(988, 6167, 'six thousand one hundred sixty-seven'); INSERT INTO t1 VALUES(989, 53700, 'fifty-three thousand seven hundred'); INSERT INTO t1 VALUES(990, 12394, 'twelve thousand three hundred ninety-four'); INSERT INTO t1 VALUES(991, 38055, 'thirty-eight thousand fifty-five'); INSERT INTO t1 VALUES(992, 20264, 'twenty thousand two hundred sixty-four'); INSERT INTO t1 VALUES(993, 62637, 'sixty-two thousand six hundred thirty-seven'); INSERT INTO t1 VALUES(994, 42503, 'forty-two thousand five hundred three'); INSERT INTO t1 VALUES(995, 11145, 'eleven thousand one hundred forty-five'); INSERT INTO t1 VALUES(996, 11489, 'eleven thousand four hundred eighty-nine'); INSERT INTO t1 VALUES(997, 22604, 'twenty-two thousand six hundred four'); INSERT INTO t1 VALUES(998, 14827, 'fourteen thousand eight hundred twenty-seven'); INSERT INTO t1 VALUES(999, 52539, 'fifty-two thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(1000, 64413, 'sixty-four thousand four hundred thirteen'); ================================================ FILE: packages/benchmark/src/benchmark10.sql ================================================ BEGIN; UPDATE t2 SET c='ninety-two thousand six hundred ten' WHERE a=1; UPDATE t2 SET c='sixty-four thousand ninety-one' WHERE a=2; UPDATE t2 SET c='seventy-one thousand four hundred fifty-four' WHERE a=3; UPDATE t2 SET c='two thousand two hundred nineteen' WHERE a=4; UPDATE t2 SET c='twelve thousand two hundred fifty-two' WHERE a=5; UPDATE t2 SET c='six thousand four hundred eighteen' WHERE a=6; UPDATE t2 SET c='sixty-one thousand four hundred sixty-seven' WHERE a=7; UPDATE t2 SET c='ninety thousand nine hundred thirty-two' WHERE a=8; UPDATE t2 SET c='forty-three thousand five hundred eighty' WHERE a=9; UPDATE t2 SET c='forty thousand nine hundred seven' WHERE a=10; UPDATE t2 SET c='twenty-one thousand seven hundred fifty-one' WHERE a=11; UPDATE t2 SET c='fifty-nine thousand one hundred sixty-four' WHERE a=12; UPDATE t2 SET c='three thousand one hundred twenty-two' WHERE a=13; UPDATE t2 SET c='twenty thousand six hundred fifty-six' WHERE a=14; UPDATE t2 SET c='eighty-seven thousand one hundred thirty-one' WHERE a=15; UPDATE t2 SET c='thirty-nine thousand four hundred ninety-seven' WHERE a=16; UPDATE t2 SET c='fifty-eight thousand twenty-five' WHERE a=17; UPDATE t2 SET c='thirty-eight thousand nine hundred ninety' WHERE a=18; UPDATE t2 SET c='eighty-one thousand nine hundred forty-two' WHERE a=19; UPDATE t2 SET c='twenty thousand seven hundred forty-nine' WHERE a=20; UPDATE t2 SET c='twenty-four thousand four hundred fourteen' WHERE a=21; UPDATE t2 SET c='four thousand four hundred four' WHERE a=22; UPDATE t2 SET c='ninety-eight thousand six hundred forty-one' WHERE a=23; UPDATE t2 SET c='fifteen thousand two hundred forty-three' WHERE a=24; UPDATE t2 SET c='fifty-nine thousand two hundred ten' WHERE a=25; UPDATE t2 SET c='ninety-seven thousand one hundred fifty' WHERE a=26; UPDATE t2 SET c='thirty-three thousand five hundred forty-nine' WHERE a=27; UPDATE t2 SET c='forty-one thousand five hundred forty-four' WHERE a=28; UPDATE t2 SET c='twenty-five thousand forty-seven' WHERE a=29; UPDATE t2 SET c='thirteen thousand six hundred nineteen' WHERE a=30; UPDATE t2 SET c='seventy-five thousand nine hundred twenty-one' WHERE a=31; UPDATE t2 SET c='forty-nine thousand two hundred sixty-nine' WHERE a=32; UPDATE t2 SET c='one thousand three hundred ten' WHERE a=33; UPDATE t2 SET c='forty-three thousand nine hundred twenty-six' WHERE a=34; UPDATE t2 SET c='eighty thousand eight hundred fifty-six' WHERE a=35; UPDATE t2 SET c='forty-nine thousand eight hundred fifty-three' WHERE a=36; UPDATE t2 SET c='fifty-nine thousand two hundred thirty-three' WHERE a=37; UPDATE t2 SET c='eighty thousand three hundred fifteen' WHERE a=38; UPDATE t2 SET c='sixty-six thousand seven hundred eighty' WHERE a=39; UPDATE t2 SET c='forty-seven thousand five hundred six' WHERE a=40; UPDATE t2 SET c='eighty-nine thousand seven hundred sixty' WHERE a=41; UPDATE t2 SET c='twenty-seven thousand nine hundred eighty' WHERE a=42; UPDATE t2 SET c='ninety-seven thousand one hundred forty-nine' WHERE a=43; UPDATE t2 SET c='forty-three thousand three hundred thirty-one' WHERE a=44; UPDATE t2 SET c='sixteen thousand nine hundred fifty-four' WHERE a=45; UPDATE t2 SET c='twenty-five thousand nine hundred ten' WHERE a=46; UPDATE t2 SET c='seventeen thousand three hundred thirty-eight' WHERE a=47; UPDATE t2 SET c='eighteen thousand five hundred fifty-one' WHERE a=48; UPDATE t2 SET c='sixty-six thousand three hundred twenty' WHERE a=49; UPDATE t2 SET c='thirty thousand six hundred seventy-eight' WHERE a=50; UPDATE t2 SET c='seventy-four thousand five hundred sixty-one' WHERE a=51; UPDATE t2 SET c='twenty-two thousand four hundred ninety-nine' WHERE a=52; UPDATE t2 SET c='sixty-seven thousand three hundred twenty-six' WHERE a=53; UPDATE t2 SET c='thirty-five thousand three hundred forty-four' WHERE a=54; UPDATE t2 SET c='eighty-five thousand sixty-three' WHERE a=55; UPDATE t2 SET c='thirty-five thousand one hundred forty' WHERE a=56; UPDATE t2 SET c='forty-eight thousand two hundred seventy-three' WHERE a=57; UPDATE t2 SET c='seventy-two thousand three hundred eighteen' WHERE a=58; UPDATE t2 SET c='eighty-three thousand eight hundred ninety-eight' WHERE a=59; UPDATE t2 SET c='fourteen thousand nine hundred twenty-seven' WHERE a=60; UPDATE t2 SET c='twenty-six thousand three hundred eighty' WHERE a=61; UPDATE t2 SET c='twenty thousand eight hundred thirty-seven' WHERE a=62; UPDATE t2 SET c='three thousand one hundred ninety-two' WHERE a=63; UPDATE t2 SET c='forty-eight thousand seven hundred ninety-four' WHERE a=64; UPDATE t2 SET c='sixty thousand eight hundred eighteen' WHERE a=65; UPDATE t2 SET c='ninety-one thousand five hundred fifty-six' WHERE a=66; UPDATE t2 SET c='eleven thousand four hundred twenty' WHERE a=67; UPDATE t2 SET c='nine thousand two hundred sixty-five' WHERE a=68; UPDATE t2 SET c='sixty thousand four hundred eighty-nine' WHERE a=69; UPDATE t2 SET c='ninety-three thousand nine hundred eighty-six' WHERE a=70; UPDATE t2 SET c='seventy-seven thousand two hundred sixty-four' WHERE a=71; UPDATE t2 SET c='forty-two thousand' WHERE a=72; UPDATE t2 SET c='sixty-seven thousand eight hundred forty-six' WHERE a=73; UPDATE t2 SET c='sixteen thousand seven hundred thirty-seven' WHERE a=74; UPDATE t2 SET c='thirty-three thousand sixty' WHERE a=75; UPDATE t2 SET c='seventy thousand nine hundred twenty-five' WHERE a=76; UPDATE t2 SET c='forty-three thousand four hundred fifty-five' WHERE a=77; UPDATE t2 SET c='eighty-one thousand nine hundred eighty-nine' WHERE a=78; UPDATE t2 SET c='four thousand nine hundred sixty-five' WHERE a=79; UPDATE t2 SET c='twenty-one thousand one hundred two' WHERE a=80; UPDATE t2 SET c='eighty-one thousand seven hundred twenty-six' WHERE a=81; UPDATE t2 SET c='eighty-seven thousand nine hundred forty-four' WHERE a=82; UPDATE t2 SET c='eighty-one thousand six hundred thirty-four' WHERE a=83; UPDATE t2 SET c='eighty-seven thousand forty-eight' WHERE a=84; UPDATE t2 SET c='forty-three thousand four hundred ninety-five' WHERE a=85; UPDATE t2 SET c='seven thousand five hundred sixty-three' WHERE a=86; UPDATE t2 SET c='thirty-six thousand two hundred fifty-three' WHERE a=87; UPDATE t2 SET c='twenty-seven thousand six hundred thirty-two' WHERE a=88; UPDATE t2 SET c='thirty-one thousand eight hundred thirty-five' WHERE a=89; UPDATE t2 SET c='thirty-five thousand six hundred thirty-six' WHERE a=90; UPDATE t2 SET c='fifty-three thousand five hundred seventy-five' WHERE a=91; UPDATE t2 SET c='eighty-nine thousand seven hundred ninety-nine' WHERE a=92; UPDATE t2 SET c='thirty-one thousand eight hundred eighty-five' WHERE a=93; UPDATE t2 SET c='seventy-five thousand three hundred twenty-nine' WHERE a=94; UPDATE t2 SET c='ninety-eight thousand five hundred eighty' WHERE a=95; UPDATE t2 SET c='ninety-six thousand three hundred two' WHERE a=96; UPDATE t2 SET c='three thousand two hundred seventy-one' WHERE a=97; UPDATE t2 SET c='seventy-six thousand six hundred fifty-five' WHERE a=98; UPDATE t2 SET c='nine thousand three hundred sixty-six' WHERE a=99; UPDATE t2 SET c='forty thousand eight hundred thirty' WHERE a=100; UPDATE t2 SET c='two hundred forty-one' WHERE a=101; UPDATE t2 SET c='fifty-five thousand six hundred fifty-three' WHERE a=102; UPDATE t2 SET c='ninety-four thousand six hundred ten' WHERE a=103; UPDATE t2 SET c='seventy-seven thousand seven hundred forty-nine' WHERE a=104; UPDATE t2 SET c='forty-six thousand four hundred two' WHERE a=105; UPDATE t2 SET c='eighty-five thousand two hundred eighty-six' WHERE a=106; UPDATE t2 SET c='eighty-two thousand six hundred twenty-nine' WHERE a=107; UPDATE t2 SET c='fifty-three thousand five hundred two' WHERE a=108; UPDATE t2 SET c='eighteen thousand three hundred eighty-three' WHERE a=109; UPDATE t2 SET c='ninety-eight thousand five hundred thirty-eight' WHERE a=110; UPDATE t2 SET c='fifty-two thousand five hundred eighty-five' WHERE a=111; UPDATE t2 SET c='six thousand three hundred sixty' WHERE a=112; UPDATE t2 SET c='forty-seven thousand six hundred fifty' WHERE a=113; UPDATE t2 SET c='ten thousand four hundred sixty-four' WHERE a=114; UPDATE t2 SET c='seventy thousand nine hundred fifty-four' WHERE a=115; UPDATE t2 SET c='sixty-six thousand one hundred fifty-two' WHERE a=116; UPDATE t2 SET c='forty-eight thousand seven hundred sixty-four' WHERE a=117; UPDATE t2 SET c='thirty-four thousand seven hundred thirty-eight' WHERE a=118; UPDATE t2 SET c='sixty-six thousand nine hundred seventy-nine' WHERE a=119; UPDATE t2 SET c='seventy-eight thousand one hundred four' WHERE a=120; UPDATE t2 SET c='forty thousand nine hundred thirty-three' WHERE a=121; UPDATE t2 SET c='eighty-five thousand three hundred sixty-nine' WHERE a=122; UPDATE t2 SET c='sixty-nine thousand eight hundred fifty-six' WHERE a=123; UPDATE t2 SET c='fifty-five thousand four hundred twenty-one' WHERE a=124; UPDATE t2 SET c='twenty-one thousand four hundred forty-eight' WHERE a=125; UPDATE t2 SET c='seventy-two thousand two hundred ninety-one' WHERE a=126; UPDATE t2 SET c='four thousand three hundred eighty-six' WHERE a=127; UPDATE t2 SET c='sixteen thousand two hundred twenty-nine' WHERE a=128; UPDATE t2 SET c='fifty-five thousand nine hundred ninety-six' WHERE a=129; UPDATE t2 SET c='twenty-five thousand three hundred eighty-seven' WHERE a=130; UPDATE t2 SET c='twenty-seven thousand nine hundred sixty-four' WHERE a=131; UPDATE t2 SET c='fifteen thousand seven hundred eighty-two' WHERE a=132; UPDATE t2 SET c='sixty-six thousand eight hundred ninety-three' WHERE a=133; UPDATE t2 SET c='twelve thousand seven hundred twenty-nine' WHERE a=134; UPDATE t2 SET c='nine thousand eight hundred seventy-five' WHERE a=135; UPDATE t2 SET c='fifty-two thousand fifty-three' WHERE a=136; UPDATE t2 SET c='thirty-nine thousand three hundred ninety-nine' WHERE a=137; UPDATE t2 SET c='forty-four thousand twenty-three' WHERE a=138; UPDATE t2 SET c='seventy-four thousand eight hundred seventy-three' WHERE a=139; UPDATE t2 SET c='twelve thousand eighty-one' WHERE a=140; UPDATE t2 SET c='ninety-three thousand twenty-seven' WHERE a=141; UPDATE t2 SET c='sixty-two thousand three hundred seventy-two' WHERE a=142; UPDATE t2 SET c='fourteen thousand seven hundred sixty-nine' WHERE a=143; UPDATE t2 SET c='fifty-eight thousand six hundred sixty-one' WHERE a=144; UPDATE t2 SET c='ninety-two thousand three hundred forty' WHERE a=145; UPDATE t2 SET c='eighty-one thousand three hundred seventy-nine' WHERE a=146; UPDATE t2 SET c='ninety-four thousand one hundred fifteen' WHERE a=147; UPDATE t2 SET c='twenty thousand four hundred ninety-nine' WHERE a=148; UPDATE t2 SET c='sixty-seven thousand eight hundred twelve' WHERE a=149; UPDATE t2 SET c='twenty thousand eight hundred fifty-one' WHERE a=150; UPDATE t2 SET c='sixty-one thousand eight' WHERE a=151; UPDATE t2 SET c='twenty-five thousand three hundred seventy-eight' WHERE a=152; UPDATE t2 SET c='forty thousand seven hundred sixty-seven' WHERE a=153; UPDATE t2 SET c='sixty-six thousand one hundred forty-seven' WHERE a=154; UPDATE t2 SET c='thirty thousand eight hundred ninety-six' WHERE a=155; UPDATE t2 SET c='seventy-four thousand four hundred twenty-four' WHERE a=156; UPDATE t2 SET c='eight thousand five hundred thirty-two' WHERE a=157; UPDATE t2 SET c='ninety-three thousand five hundred nine' WHERE a=158; UPDATE t2 SET c='ninety-five thousand four hundred twelve' WHERE a=159; UPDATE t2 SET c='forty-five thousand five hundred sixty-two' WHERE a=160; UPDATE t2 SET c='sixty-seven thousand two hundred sixty-eight' WHERE a=161; UPDATE t2 SET c='sixty-four thousand sixty-two' WHERE a=162; UPDATE t2 SET c='eighty-eight thousand four hundred ninety-four' WHERE a=163; UPDATE t2 SET c='five thousand one hundred forty-seven' WHERE a=164; UPDATE t2 SET c='seventy-five thousand five hundred forty-one' WHERE a=165; UPDATE t2 SET c='sixteen thousand two hundred thirty-eight' WHERE a=166; UPDATE t2 SET c='twenty-one thousand six hundred eighty-six' WHERE a=167; UPDATE t2 SET c='two thousand four hundred ninety-five' WHERE a=168; UPDATE t2 SET c='eighteen thousand four hundred two' WHERE a=169; UPDATE t2 SET c='twenty-three thousand three hundred twenty-nine' WHERE a=170; UPDATE t2 SET c='eleven thousand four hundred eighty-four' WHERE a=171; UPDATE t2 SET c='sixty-one thousand one hundred fifty' WHERE a=172; UPDATE t2 SET c='forty-two thousand nine hundred twenty-seven' WHERE a=173; UPDATE t2 SET c='seventy thousand six hundred seventy-two' WHERE a=174; UPDATE t2 SET c='seven thousand one hundred seventy-seven' WHERE a=175; UPDATE t2 SET c='twenty-nine thousand seven hundred three' WHERE a=176; UPDATE t2 SET c='thirty-seven thousand six hundred one' WHERE a=177; UPDATE t2 SET c='seventy-five thousand seven hundred seventy-seven' WHERE a=178; UPDATE t2 SET c='sixty-five thousand one hundred seventy-two' WHERE a=179; UPDATE t2 SET c='ninety-nine thousand four hundred eighty-seven' WHERE a=180; UPDATE t2 SET c='eighty-seven thousand nine hundred eighty-nine' WHERE a=181; UPDATE t2 SET c='sixty-seven thousand one hundred forty-one' WHERE a=182; UPDATE t2 SET c='eighty-five thousand nine hundred eighty-four' WHERE a=183; UPDATE t2 SET c='sixty-two thousand seven hundred seventy' WHERE a=184; UPDATE t2 SET c='three thousand nine hundred forty-seven' WHERE a=185; UPDATE t2 SET c='ninety-six thousand one hundred thirty-one' WHERE a=186; UPDATE t2 SET c='thirty-two thousand eight hundred ninety-seven' WHERE a=187; UPDATE t2 SET c='nine thousand seven hundred one' WHERE a=188; UPDATE t2 SET c='six thousand four hundred ninety-five' WHERE a=189; UPDATE t2 SET c='fifty-two thousand two hundred thirteen' WHERE a=190; UPDATE t2 SET c='seventy-three thousand nine hundred ninety-three' WHERE a=191; UPDATE t2 SET c='thirty-eight thousand six hundred fifty-three' WHERE a=192; UPDATE t2 SET c='forty-seven thousand seven hundred eighty-seven' WHERE a=193; UPDATE t2 SET c='twenty-five thousand eight hundred seventy-two' WHERE a=194; UPDATE t2 SET c='seventy-five thousand three hundred ninety-four' WHERE a=195; UPDATE t2 SET c='eleven thousand seven hundred sixty' WHERE a=196; UPDATE t2 SET c='fifty-two thousand three hundred twelve' WHERE a=197; UPDATE t2 SET c='seven thousand seven hundred fifteen' WHERE a=198; UPDATE t2 SET c='ten thousand three hundred fifteen' WHERE a=199; UPDATE t2 SET c='twenty-six thousand four hundred forty-seven' WHERE a=200; UPDATE t2 SET c='eighty-seven thousand three hundred thirty-five' WHERE a=201; UPDATE t2 SET c='forty-one thousand eight hundred nine' WHERE a=202; UPDATE t2 SET c='twenty-three thousand one hundred thirty-five' WHERE a=203; UPDATE t2 SET c='fifty-five thousand three hundred ninety-six' WHERE a=204; UPDATE t2 SET c='eighty-five thousand one hundred seventeen' WHERE a=205; UPDATE t2 SET c='six thousand six hundred seventy-six' WHERE a=206; UPDATE t2 SET c='twenty-one thousand four hundred sixty-three' WHERE a=207; UPDATE t2 SET c='forty-eight thousand one hundred twenty-two' WHERE a=208; UPDATE t2 SET c='eighty-five thousand five hundred twenty-nine' WHERE a=209; UPDATE t2 SET c='seventy-two thousand six hundred thirty-six' WHERE a=210; UPDATE t2 SET c='forty-six thousand sixty-six' WHERE a=211; UPDATE t2 SET c='forty-five thousand one hundred ninety-eight' WHERE a=212; UPDATE t2 SET c='four thousand seven hundred fifty-three' WHERE a=213; UPDATE t2 SET c='sixty thousand one hundred one' WHERE a=214; UPDATE t2 SET c='six thousand nine hundred fifty-two' WHERE a=215; UPDATE t2 SET c='thirty-four thousand seven hundred twenty-six' WHERE a=216; UPDATE t2 SET c='twenty-eight thousand nine hundred four' WHERE a=217; UPDATE t2 SET c='six thousand one hundred sixty-seven' WHERE a=218; UPDATE t2 SET c='fifty-seven thousand four hundred ninety-six' WHERE a=219; UPDATE t2 SET c='fifty thousand eighty-four' WHERE a=220; UPDATE t2 SET c='eighty-four thousand nine hundred thirty-six' WHERE a=221; UPDATE t2 SET c='eighty-six thousand eight hundred sixteen' WHERE a=222; UPDATE t2 SET c='seventy thousand three hundred thirty-eight' WHERE a=223; UPDATE t2 SET c='ninety-nine thousand three hundred fifty-three' WHERE a=224; UPDATE t2 SET c='seventy thousand ninety-three' WHERE a=225; UPDATE t2 SET c='twenty-four thousand eight hundred sixty-two' WHERE a=226; UPDATE t2 SET c='fifty thousand five hundred eighty-four' WHERE a=227; UPDATE t2 SET c='thirty-five thousand five hundred sixty-six' WHERE a=228; UPDATE t2 SET c='seventeen thousand two hundred fifty-five' WHERE a=229; UPDATE t2 SET c='seventy-three thousand three hundred two' WHERE a=230; UPDATE t2 SET c='thirteen thousand four' WHERE a=231; UPDATE t2 SET c='thirty thousand nine hundred eight' WHERE a=232; UPDATE t2 SET c='ten thousand six hundred fifty-two' WHERE a=233; UPDATE t2 SET c='thirty-seven thousand forty-three' WHERE a=234; UPDATE t2 SET c='seventy thousand five hundred eighty-two' WHERE a=235; UPDATE t2 SET c='five thousand three hundred seventy-four' WHERE a=236; UPDATE t2 SET c='thirty-eight thousand eight hundred forty-five' WHERE a=237; UPDATE t2 SET c='eighty-nine thousand eight hundred seventy-eight' WHERE a=238; UPDATE t2 SET c='forty-four thousand one hundred sixty-four' WHERE a=239; UPDATE t2 SET c='forty-nine thousand one hundred twenty-six' WHERE a=240; UPDATE t2 SET c='eighty-one thousand one hundred three' WHERE a=241; UPDATE t2 SET c='eighteen thousand three hundred nine' WHERE a=242; UPDATE t2 SET c='four thousand one hundred' WHERE a=243; UPDATE t2 SET c='twenty-eight thousand eight hundred twenty-six' WHERE a=244; UPDATE t2 SET c='twenty-eight thousand seventy-seven' WHERE a=245; UPDATE t2 SET c='thirty-three thousand ninety-five' WHERE a=246; UPDATE t2 SET c='seventy-eight thousand six hundred thirty-five' WHERE a=247; UPDATE t2 SET c='fifty-eight thousand four hundred thirty-four' WHERE a=248; UPDATE t2 SET c='nine thousand one hundred sixty-two' WHERE a=249; UPDATE t2 SET c='fifty-seven thousand seven hundred fifty-six' WHERE a=250; UPDATE t2 SET c='thirty-four thousand nine' WHERE a=251; UPDATE t2 SET c='sixty-one thousand four hundred fifty-four' WHERE a=252; UPDATE t2 SET c='thirty-six thousand seven hundred sixty-five' WHERE a=253; UPDATE t2 SET c='seventy-one thousand three hundred ninety-three' WHERE a=254; UPDATE t2 SET c='forty-nine thousand sixty-nine' WHERE a=255; UPDATE t2 SET c='forty-two thousand one hundred forty-six' WHERE a=256; UPDATE t2 SET c='thirty-nine thousand three hundred thirty-six' WHERE a=257; UPDATE t2 SET c='five thousand three hundred twenty-one' WHERE a=258; UPDATE t2 SET c='fifteen thousand seventy-four' WHERE a=259; UPDATE t2 SET c='twenty-eight thousand five hundred ten' WHERE a=260; UPDATE t2 SET c='ninety-four thousand seven hundred eighty-five' WHERE a=261; UPDATE t2 SET c='eighty-one thousand two hundred sixteen' WHERE a=262; UPDATE t2 SET c='sixty-three thousand four hundred thirty-four' WHERE a=263; UPDATE t2 SET c='twenty-four thousand nine hundred twenty-eight' WHERE a=264; UPDATE t2 SET c='eleven thousand one hundred seventy-eight' WHERE a=265; UPDATE t2 SET c='seventy-nine thousand one hundred eighteen' WHERE a=266; UPDATE t2 SET c='ninety-two thousand one hundred ninety-six' WHERE a=267; UPDATE t2 SET c='seven thousand four hundred ninety-two' WHERE a=268; UPDATE t2 SET c='eighty-one thousand three hundred three' WHERE a=269; UPDATE t2 SET c='eighty-six thousand nine hundred thirteen' WHERE a=270; UPDATE t2 SET c='sixty-nine thousand sixty-one' WHERE a=271; UPDATE t2 SET c='fifty-four thousand six hundred twenty' WHERE a=272; UPDATE t2 SET c='six thousand two hundred thirty-six' WHERE a=273; UPDATE t2 SET c='fifty-six thousand six hundred forty-four' WHERE a=274; UPDATE t2 SET c='thirty thousand six hundred eight' WHERE a=275; UPDATE t2 SET c='fifty-two thousand seven hundred twenty-eight' WHERE a=276; UPDATE t2 SET c='fourteen thousand five hundred seventy-two' WHERE a=277; UPDATE t2 SET c='ninety thousand two hundred seventy-four' WHERE a=278; UPDATE t2 SET c='seventy-seven thousand one hundred ninety-four' WHERE a=279; UPDATE t2 SET c='nine thousand one hundred thirty-two' WHERE a=280; UPDATE t2 SET c='thirty-two thousand nine hundred four' WHERE a=281; UPDATE t2 SET c='fourteen thousand seven hundred twenty-nine' WHERE a=282; UPDATE t2 SET c='fifty-seven thousand sixty-eight' WHERE a=283; UPDATE t2 SET c='forty-seven thousand two hundred nine' WHERE a=284; UPDATE t2 SET c='sixty-four thousand eight hundred fifty-eight' WHERE a=285; UPDATE t2 SET c='eighty-two thousand six hundred sixty-two' WHERE a=286; UPDATE t2 SET c='sixty-three thousand eight hundred eighty-four' WHERE a=287; UPDATE t2 SET c='twelve thousand seven hundred forty-seven' WHERE a=288; UPDATE t2 SET c='eighty-nine thousand nine hundred forty-nine' WHERE a=289; UPDATE t2 SET c='forty-nine thousand five hundred sixty-six' WHERE a=290; UPDATE t2 SET c='seventy-nine thousand four hundred sixty-five' WHERE a=291; UPDATE t2 SET c='thirty-three thousand six hundred ninety-seven' WHERE a=292; UPDATE t2 SET c='fifty-nine thousand one hundred forty-two' WHERE a=293; UPDATE t2 SET c='sixty-eight thousand two hundred thirty-three' WHERE a=294; UPDATE t2 SET c='sixty thousand six hundred four' WHERE a=295; UPDATE t2 SET c='sixty-five thousand six hundred ninety-nine' WHERE a=296; UPDATE t2 SET c='fifty-five thousand four hundred forty-two' WHERE a=297; UPDATE t2 SET c='ten thousand nine hundred twenty-four' WHERE a=298; UPDATE t2 SET c='eighty-eight thousand forty-two' WHERE a=299; UPDATE t2 SET c='ten thousand nine hundred thirty-seven' WHERE a=300; UPDATE t2 SET c='twelve thousand nine hundred seventy-nine' WHERE a=301; UPDATE t2 SET c='forty-six thousand nine hundred eighty' WHERE a=302; UPDATE t2 SET c='twenty-eight thousand five hundred fifty-eight' WHERE a=303; UPDATE t2 SET c='ninety-four thousand fourteen' WHERE a=304; UPDATE t2 SET c='eight thousand four hundred forty' WHERE a=305; UPDATE t2 SET c='thirteen thousand five hundred thirty-five' WHERE a=306; UPDATE t2 SET c='seventy-five thousand three hundred sixty-nine' WHERE a=307; UPDATE t2 SET c='sixty-eight thousand four hundred twenty-eight' WHERE a=308; UPDATE t2 SET c='seventy thousand seven hundred eighty-eight' WHERE a=309; UPDATE t2 SET c='eleven thousand three hundred fifty' WHERE a=310; UPDATE t2 SET c='forty-eight thousand one hundred five' WHERE a=311; UPDATE t2 SET c='forty-eight thousand three hundred sixty-eight' WHERE a=312; UPDATE t2 SET c='forty-seven thousand eight hundred twenty' WHERE a=313; UPDATE t2 SET c='seventy-three thousand eight hundred forty-three' WHERE a=314; UPDATE t2 SET c='seventy-four thousand three hundred thirty-two' WHERE a=315; UPDATE t2 SET c='thirty-two thousand two hundred seventeen' WHERE a=316; UPDATE t2 SET c='thirty-five thousand nine hundred fifty-six' WHERE a=317; UPDATE t2 SET c='fifty-two thousand four hundred twenty' WHERE a=318; UPDATE t2 SET c='eighty-eight thousand one hundred sixty-nine' WHERE a=319; UPDATE t2 SET c='eighty-five thousand seven hundred ten' WHERE a=320; UPDATE t2 SET c='six thousand fifty-one' WHERE a=321; UPDATE t2 SET c='fifty-five thousand one hundred sixty-five' WHERE a=322; UPDATE t2 SET c='seventy-nine thousand five hundred fifty-six' WHERE a=323; UPDATE t2 SET c='four thousand one hundred forty-nine' WHERE a=324; UPDATE t2 SET c='eighty-six thousand seven hundred ninety-five' WHERE a=325; UPDATE t2 SET c='thirty thousand two hundred forty-four' WHERE a=326; UPDATE t2 SET c='eighty-one thousand seven hundred ninety-six' WHERE a=327; UPDATE t2 SET c='fifty-seven thousand six hundred fifteen' WHERE a=328; UPDATE t2 SET c='ninety-four thousand sixty-one' WHERE a=329; UPDATE t2 SET c='sixty-two thousand six hundred forty-nine' WHERE a=330; UPDATE t2 SET c='sixty-three thousand two hundred ten' WHERE a=331; UPDATE t2 SET c='eight thousand thirty-nine' WHERE a=332; UPDATE t2 SET c='seventeen thousand six hundred forty' WHERE a=333; UPDATE t2 SET c='forty-seven thousand nine hundred eighty-six' WHERE a=334; UPDATE t2 SET c='forty-four thousand five hundred ninety-four' WHERE a=335; UPDATE t2 SET c='sixty-one thousand eight hundred ninety-seven' WHERE a=336; UPDATE t2 SET c='forty-five thousand seventy-six' WHERE a=337; UPDATE t2 SET c='ten thousand five hundred sixty-six' WHERE a=338; UPDATE t2 SET c='thirty-two thousand three hundred forty-seven' WHERE a=339; UPDATE t2 SET c='seventy-six thousand one hundred seventy' WHERE a=340; UPDATE t2 SET c='seventy-four thousand six hundred fifty-seven' WHERE a=341; UPDATE t2 SET c='one thousand four hundred thirty-six' WHERE a=342; UPDATE t2 SET c='twelve thousand four hundred twenty-five' WHERE a=343; UPDATE t2 SET c='sixty-two thousand three hundred seventy-nine' WHERE a=344; UPDATE t2 SET c='seventy-one thousand three hundred sixty-three' WHERE a=345; UPDATE t2 SET c='thirty-four thousand six hundred seventy-two' WHERE a=346; UPDATE t2 SET c='two thousand three hundred eighty-eight' WHERE a=347; UPDATE t2 SET c='eighty-seven thousand four hundred sixty-nine' WHERE a=348; UPDATE t2 SET c='sixty-eight thousand eight hundred seventy-four' WHERE a=349; UPDATE t2 SET c='forty-six thousand nine hundred ninety-one' WHERE a=350; UPDATE t2 SET c='fifty-seven thousand seven hundred sixty-six' WHERE a=351; UPDATE t2 SET c='twenty-seven thousand six hundred twenty-two' WHERE a=352; UPDATE t2 SET c='seventy-seven thousand five hundred fifty-one' WHERE a=353; UPDATE t2 SET c='forty-two thousand five hundred sixty-one' WHERE a=354; UPDATE t2 SET c='twenty-seven thousand five hundred twenty-five' WHERE a=355; UPDATE t2 SET c='fifty thousand thirty-three' WHERE a=356; UPDATE t2 SET c='fifteen thousand six hundred ninety-one' WHERE a=357; UPDATE t2 SET c='ninety-nine thousand nine hundred thirteen' WHERE a=358; UPDATE t2 SET c='seventeen thousand nine hundred seventy-five' WHERE a=359; UPDATE t2 SET c='thirty-nine thousand three hundred seventy' WHERE a=360; UPDATE t2 SET c='eighty thousand five hundred two' WHERE a=361; UPDATE t2 SET c='thirty-seven thousand one hundred nineteen' WHERE a=362; UPDATE t2 SET c='one thousand five hundred sixty-seven' WHERE a=363; UPDATE t2 SET c='seventy-five thousand two hundred twenty-four' WHERE a=364; UPDATE t2 SET c='eighty-four thousand one hundred twenty-nine' WHERE a=365; UPDATE t2 SET c='sixty-three thousand eight hundred fifty-four' WHERE a=366; UPDATE t2 SET c='twenty-six thousand seven hundred thirty-three' WHERE a=367; UPDATE t2 SET c='ninety-five thousand two hundred sixty' WHERE a=368; UPDATE t2 SET c='ninety-two thousand one hundred ninety-five' WHERE a=369; UPDATE t2 SET c='five thousand eighty-eight' WHERE a=370; UPDATE t2 SET c='ninety thousand seventy' WHERE a=371; UPDATE t2 SET c='seventy-nine thousand eighty-four' WHERE a=372; UPDATE t2 SET c='forty-one thousand two hundred ten' WHERE a=373; UPDATE t2 SET c='ninety-one thousand eight hundred fifteen' WHERE a=374; UPDATE t2 SET c='seventy-seven thousand three hundred thirty-four' WHERE a=375; UPDATE t2 SET c='ninety-one thousand ninety-nine' WHERE a=376; UPDATE t2 SET c='ninety-five thousand nine hundred seventy-six' WHERE a=377; UPDATE t2 SET c='thirty-six thousand four hundred sixty-nine' WHERE a=378; UPDATE t2 SET c='sixty-three thousand seven hundred fifteen' WHERE a=379; UPDATE t2 SET c='seventeen thousand thirty-six' WHERE a=380; UPDATE t2 SET c='forty-six thousand six hundred ninety-five' WHERE a=381; UPDATE t2 SET c='thirty-eight thousand five hundred forty-eight' WHERE a=382; UPDATE t2 SET c='sixty-four thousand two hundred forty-one' WHERE a=383; UPDATE t2 SET c='three thousand three hundred thirty-three' WHERE a=384; UPDATE t2 SET c='sixty-nine thousand five hundred nineteen' WHERE a=385; UPDATE t2 SET c='two thousand one hundred ninety-five' WHERE a=386; UPDATE t2 SET c='ninety-eight thousand four hundred forty-four' WHERE a=387; UPDATE t2 SET c='eighty-nine thousand five hundred sixty-six' WHERE a=388; UPDATE t2 SET c='fifty-one thousand four hundred six' WHERE a=389; UPDATE t2 SET c='thirty-eight thousand eight hundred eighty' WHERE a=390; UPDATE t2 SET c='ninety-five thousand nine hundred sixty-one' WHERE a=391; UPDATE t2 SET c='seven thousand six hundred sixty-eight' WHERE a=392; UPDATE t2 SET c='forty-seven thousand fifty-four' WHERE a=393; UPDATE t2 SET c='seventy-seven thousand eighty-three' WHERE a=394; UPDATE t2 SET c='eighty-three thousand one hundred thirty-five' WHERE a=395; UPDATE t2 SET c='sixty thousand six hundred fourteen' WHERE a=396; UPDATE t2 SET c='eleven thousand one hundred seventy' WHERE a=397; UPDATE t2 SET c='eighty thousand one hundred fifty' WHERE a=398; UPDATE t2 SET c='forty-nine thousand eight hundred twenty-eight' WHERE a=399; UPDATE t2 SET c='twenty-eight thousand five hundred ninety-seven' WHERE a=400; UPDATE t2 SET c='fifty-five thousand two hundred ninety-eight' WHERE a=401; UPDATE t2 SET c='eighteen thousand three hundred' WHERE a=402; UPDATE t2 SET c='eighty-five thousand three hundred thirty-five' WHERE a=403; UPDATE t2 SET c='forty-nine thousand three hundred nineteen' WHERE a=404; UPDATE t2 SET c='eighteen thousand one hundred four' WHERE a=405; UPDATE t2 SET c='fifty-seven thousand nine hundred seventy-seven' WHERE a=406; UPDATE t2 SET c='fifty thousand seven hundred eleven' WHERE a=407; UPDATE t2 SET c='six thousand sixty-five' WHERE a=408; UPDATE t2 SET c='ninety-four thousand seven hundred eighty-two' WHERE a=409; UPDATE t2 SET c='sixty-eight thousand one hundred forty-four' WHERE a=410; UPDATE t2 SET c='eighty-two thousand nine hundred forty-two' WHERE a=411; UPDATE t2 SET c='five thousand eight hundred seventy-three' WHERE a=412; UPDATE t2 SET c='fifty-three thousand two hundred sixty-four' WHERE a=413; UPDATE t2 SET c='twelve thousand five hundred eighty-seven' WHERE a=414; UPDATE t2 SET c='eighty-one thousand two hundred fifty-eight' WHERE a=415; UPDATE t2 SET c='three thousand five hundred ninety-two' WHERE a=416; UPDATE t2 SET c='thirty-one thousand three hundred ninety-three' WHERE a=417; UPDATE t2 SET c='thirty-five thousand seven hundred forty-two' WHERE a=418; UPDATE t2 SET c='sixty thousand two hundred eighteen' WHERE a=419; UPDATE t2 SET c='seventy-seven thousand seven hundred eighty-eight' WHERE a=420; UPDATE t2 SET c='sixty-one thousand one hundred eight' WHERE a=421; UPDATE t2 SET c='forty-two thousand seven hundred forty-two' WHERE a=422; UPDATE t2 SET c='ninety-five thousand eight hundred three' WHERE a=423; UPDATE t2 SET c='thirty-eight thousand six hundred seventy-seven' WHERE a=424; UPDATE t2 SET c='ninety thousand eight hundred twenty-five' WHERE a=425; UPDATE t2 SET c='forty-three thousand forty-eight' WHERE a=426; UPDATE t2 SET c='eighty-four thousand seven hundred fifty-four' WHERE a=427; UPDATE t2 SET c='ninety-one thousand nine hundred four' WHERE a=428; UPDATE t2 SET c='fifty-two thousand seven hundred twenty-nine' WHERE a=429; UPDATE t2 SET c='ninety thousand four hundred seventy-two' WHERE a=430; UPDATE t2 SET c='sixty thousand one hundred seventy-seven' WHERE a=431; UPDATE t2 SET c='seventy-two thousand eight hundred three' WHERE a=432; UPDATE t2 SET c='seventy thousand four hundred seventeen' WHERE a=433; UPDATE t2 SET c='eighty-five thousand two hundred seven' WHERE a=434; UPDATE t2 SET c='sixty thousand six hundred thirty-three' WHERE a=435; UPDATE t2 SET c='seventy-three thousand six hundred fifty-five' WHERE a=436; UPDATE t2 SET c='twelve thousand four hundred fifty-five' WHERE a=437; UPDATE t2 SET c='sixty-seven thousand two hundred eighty-two' WHERE a=438; UPDATE t2 SET c='thirty-two thousand eight hundred seventy-four' WHERE a=439; UPDATE t2 SET c='sixteen thousand ninety-four' WHERE a=440; UPDATE t2 SET c='fifty-six thousand nine hundred eighty-eight' WHERE a=441; UPDATE t2 SET c='sixty-nine thousand twenty-five' WHERE a=442; UPDATE t2 SET c='fifty-two thousand three hundred eighteen' WHERE a=443; UPDATE t2 SET c='fifty-six thousand six hundred eighty-two' WHERE a=444; UPDATE t2 SET c='nine thousand six hundred thirty-two' WHERE a=445; UPDATE t2 SET c='seventy thousand eight hundred eighty-nine' WHERE a=446; UPDATE t2 SET c='sixty-five thousand nine hundred sixty' WHERE a=447; UPDATE t2 SET c='sixty-four thousand four hundred sixty' WHERE a=448; UPDATE t2 SET c='seventy-four thousand nine hundred forty' WHERE a=449; UPDATE t2 SET c='eighty-eight thousand two hundred forty-five' WHERE a=450; UPDATE t2 SET c='eighty-two thousand three hundred ninety-two' WHERE a=451; UPDATE t2 SET c='sixty-eight thousand seventy-seven' WHERE a=452; UPDATE t2 SET c='sixty-six thousand two hundred twenty' WHERE a=453; UPDATE t2 SET c='eleven thousand two hundred eight' WHERE a=454; UPDATE t2 SET c='ninety-eight thousand five hundred fifty-two' WHERE a=455; UPDATE t2 SET c='seventy-five thousand seven hundred thirty-three' WHERE a=456; UPDATE t2 SET c='thirty-seven thousand seven' WHERE a=457; UPDATE t2 SET c='one thousand five hundred sixty-two' WHERE a=458; UPDATE t2 SET c='twenty-five thousand two hundred sixty-one' WHERE a=459; UPDATE t2 SET c='twenty thousand seven hundred eighty-two' WHERE a=460; UPDATE t2 SET c='seven thousand six hundred eighty-six' WHERE a=461; UPDATE t2 SET c='forty-two thousand five hundred thirty-seven' WHERE a=462; UPDATE t2 SET c='sixty-seven thousand eight hundred thirty-four' WHERE a=463; UPDATE t2 SET c='thirty' WHERE a=464; UPDATE t2 SET c='seventy-five thousand six hundred fifty-three' WHERE a=465; UPDATE t2 SET c='eighty-five thousand one hundred fifty-two' WHERE a=466; UPDATE t2 SET c='ten thousand three hundred fifty-two' WHERE a=467; UPDATE t2 SET c='eighty-five thousand eight hundred forty-three' WHERE a=468; UPDATE t2 SET c='thirty-three thousand three hundred seven' WHERE a=469; UPDATE t2 SET c='one thousand three hundred thirty-nine' WHERE a=470; UPDATE t2 SET c='sixty-three thousand eight hundred seventy-nine' WHERE a=471; UPDATE t2 SET c='nineteen thousand six hundred fifty-one' WHERE a=472; UPDATE t2 SET c='seventy-nine thousand six hundred ninety-five' WHERE a=473; UPDATE t2 SET c='sixty-one thousand two hundred fourteen' WHERE a=474; UPDATE t2 SET c='twenty-three thousand two hundred twenty-two' WHERE a=475; UPDATE t2 SET c='seventeen thousand four hundred eighty-two' WHERE a=476; UPDATE t2 SET c='twenty-six thousand five hundred fifty-four' WHERE a=477; UPDATE t2 SET c='eighty-nine thousand six hundred eighty-six' WHERE a=478; UPDATE t2 SET c='sixty-nine thousand nine hundred two' WHERE a=479; UPDATE t2 SET c='twelve thousand three hundred eighty-four' WHERE a=480; UPDATE t2 SET c='thirty-two thousand five hundred seventy-one' WHERE a=481; UPDATE t2 SET c='sixty-five thousand four hundred eleven' WHERE a=482; UPDATE t2 SET c='sixty-four thousand two hundred five' WHERE a=483; UPDATE t2 SET c='fifty-nine thousand seven hundred fourteen' WHERE a=484; UPDATE t2 SET c='seventy-six thousand seven hundred nineteen' WHERE a=485; UPDATE t2 SET c='seventy-six thousand five hundred thirteen' WHERE a=486; UPDATE t2 SET c='fifty-nine thousand eight hundred five' WHERE a=487; UPDATE t2 SET c='seventy thousand nine hundred thirty-eight' WHERE a=488; UPDATE t2 SET c='two thousand seven hundred ninety-one' WHERE a=489; UPDATE t2 SET c='three thousand four hundred fifty-two' WHERE a=490; UPDATE t2 SET c='sixty-eight thousand five hundred thirty-eight' WHERE a=491; UPDATE t2 SET c='seven thousand seven hundred eighty-five' WHERE a=492; UPDATE t2 SET c='thirty-three thousand five hundred thirty-four' WHERE a=493; UPDATE t2 SET c='twenty thousand three hundred twenty-five' WHERE a=494; UPDATE t2 SET c='seventy thousand two hundred fifteen' WHERE a=495; UPDATE t2 SET c='ninety-five thousand three hundred fifteen' WHERE a=496; UPDATE t2 SET c='twenty-six thousand four hundred thirteen' WHERE a=497; UPDATE t2 SET c='thirty-four thousand two hundred seventy-two' WHERE a=498; UPDATE t2 SET c='ninety-two thousand eight hundred fifteen' WHERE a=499; UPDATE t2 SET c='sixty-six thousand seven hundred eighty-one' WHERE a=500; UPDATE t2 SET c='eighty-three thousand three hundred eighty-three' WHERE a=501; UPDATE t2 SET c='eighty-nine thousand sixty-eight' WHERE a=502; UPDATE t2 SET c='eighty-eight thousand three hundred eighty-five' WHERE a=503; UPDATE t2 SET c='seventy-five thousand three hundred sixty-four' WHERE a=504; UPDATE t2 SET c='five thousand eight hundred seventy' WHERE a=505; UPDATE t2 SET c='eighty-one thousand five hundred ninety-four' WHERE a=506; UPDATE t2 SET c='twenty-nine thousand one hundred eighty-five' WHERE a=507; UPDATE t2 SET c='ninety-seven thousand one hundred seventeen' WHERE a=508; UPDATE t2 SET c='sixty-six thousand three hundred forty-two' WHERE a=509; UPDATE t2 SET c='forty-six thousand four hundred twenty' WHERE a=510; UPDATE t2 SET c='thirty-nine thousand eight hundred thirty-six' WHERE a=511; UPDATE t2 SET c='fifty-three thousand seven hundred twenty-eight' WHERE a=512; UPDATE t2 SET c='five thousand six hundred forty-one' WHERE a=513; UPDATE t2 SET c='forty-seven thousand two hundred twenty-four' WHERE a=514; UPDATE t2 SET c='twenty-one thousand eight hundred seventy-four' WHERE a=515; UPDATE t2 SET c='sixty-two thousand one hundred forty-eight' WHERE a=516; UPDATE t2 SET c='thirty-four thousand nine hundred eighteen' WHERE a=517; UPDATE t2 SET c='twenty-one thousand six hundred fifty-one' WHERE a=518; UPDATE t2 SET c='eighty-five thousand five hundred seventy-three' WHERE a=519; UPDATE t2 SET c='ninety-four thousand seven hundred sixty-two' WHERE a=520; UPDATE t2 SET c='twenty-one thousand two hundred seventy-eight' WHERE a=521; UPDATE t2 SET c='eighty-five thousand eight hundred ninety-two' WHERE a=522; UPDATE t2 SET c='twenty-seven thousand six hundred seventy-seven' WHERE a=523; UPDATE t2 SET c='forty-one thousand seven hundred six' WHERE a=524; UPDATE t2 SET c='forty-two thousand nine hundred thirty-two' WHERE a=525; UPDATE t2 SET c='six thousand one hundred thirty-one' WHERE a=526; UPDATE t2 SET c='thirty-two thousand ninety-three' WHERE a=527; UPDATE t2 SET c='seventy-two thousand sixty-nine' WHERE a=528; UPDATE t2 SET c='sixty-five thousand five hundred seventy-three' WHERE a=529; UPDATE t2 SET c='ten thousand three hundred fifty-five' WHERE a=530; UPDATE t2 SET c='eighty-four thousand five hundred eighty' WHERE a=531; UPDATE t2 SET c='sixty-four thousand forty' WHERE a=532; UPDATE t2 SET c='thirty-four thousand four hundred nineteen' WHERE a=533; UPDATE t2 SET c='eighty-three thousand two hundred ninety-two' WHERE a=534; UPDATE t2 SET c='fifty-six thousand six hundred thirty-nine' WHERE a=535; UPDATE t2 SET c='sixty-nine thousand eight hundred sixty-one' WHERE a=536; UPDATE t2 SET c='six thousand five hundred eighty-nine' WHERE a=537; UPDATE t2 SET c='twenty-three thousand five hundred eighty-seven' WHERE a=538; UPDATE t2 SET c='sixty-two thousand eight hundred thirty-four' WHERE a=539; UPDATE t2 SET c='thirteen thousand seven hundred forty-three' WHERE a=540; UPDATE t2 SET c='fifty thousand two hundred eighty-four' WHERE a=541; UPDATE t2 SET c='seventy-three thousand five hundred five' WHERE a=542; UPDATE t2 SET c='forty-five thousand seven hundred forty' WHERE a=543; UPDATE t2 SET c='forty thousand two hundred ninety-one' WHERE a=544; UPDATE t2 SET c='fifty-five thousand three hundred fifteen' WHERE a=545; UPDATE t2 SET c='thirty-six thousand one hundred fifty-six' WHERE a=546; UPDATE t2 SET c='eighteen thousand two hundred six' WHERE a=547; UPDATE t2 SET c='nine thousand six hundred twenty-one' WHERE a=548; UPDATE t2 SET c='thirteen thousand five hundred seventy-four' WHERE a=549; UPDATE t2 SET c='fifteen thousand four hundred eighty-eight' WHERE a=550; UPDATE t2 SET c='twenty-three thousand six hundred fifty-two' WHERE a=551; UPDATE t2 SET c='five thousand one hundred seventy-eight' WHERE a=552; UPDATE t2 SET c='forty thousand one hundred thirty-five' WHERE a=553; UPDATE t2 SET c='eighty-five thousand two hundred seventy-nine' WHERE a=554; UPDATE t2 SET c='forty-eight thousand forty-four' WHERE a=555; UPDATE t2 SET c='eighty-five thousand one hundred sixteen' WHERE a=556; UPDATE t2 SET c='one thousand five hundred thirty-four' WHERE a=557; UPDATE t2 SET c='sixty-five thousand three hundred seventeen' WHERE a=558; UPDATE t2 SET c='twenty-five thousand five hundred ninety-one' WHERE a=559; UPDATE t2 SET c='thirty-three thousand nine hundred eighty-four' WHERE a=560; UPDATE t2 SET c='thirty-six thousand three hundred four' WHERE a=561; UPDATE t2 SET c='sixty-four thousand three hundred forty-five' WHERE a=562; UPDATE t2 SET c='twenty-seven thousand eight hundred forty-eight' WHERE a=563; UPDATE t2 SET c='forty-nine thousand seven hundred ninety-seven' WHERE a=564; UPDATE t2 SET c='fifty-five thousand six hundred fifty-five' WHERE a=565; UPDATE t2 SET c='sixty-four thousand five hundred two' WHERE a=566; UPDATE t2 SET c='twenty-eight thousand seven hundred eighty-nine' WHERE a=567; UPDATE t2 SET c='eighty-five thousand four hundred forty-six' WHERE a=568; UPDATE t2 SET c='eighty-nine thousand eight hundred forty-three' WHERE a=569; UPDATE t2 SET c='eighty thousand one hundred eighty-seven' WHERE a=570; UPDATE t2 SET c='eighty-four thousand five hundred thirty-eight' WHERE a=571; UPDATE t2 SET c='fifty-eight thousand eight hundred seventy-one' WHERE a=572; UPDATE t2 SET c='seventy-eight thousand one hundred seventy' WHERE a=573; UPDATE t2 SET c='seventy-one thousand one hundred fifty' WHERE a=574; UPDATE t2 SET c='eight thousand four hundred seventy-four' WHERE a=575; UPDATE t2 SET c='eighty-two thousand seven hundred seventy-nine' WHERE a=576; UPDATE t2 SET c='nine thousand one hundred ninety-seven' WHERE a=577; UPDATE t2 SET c='eighty-six thousand six hundred seventy-five' WHERE a=578; UPDATE t2 SET c='thirty-five thousand nine hundred eighty-three' WHERE a=579; UPDATE t2 SET c='fifteen thousand seven hundred seventy-two' WHERE a=580; UPDATE t2 SET c='seventy-five thousand three hundred twenty-six' WHERE a=581; UPDATE t2 SET c='eighty-four thousand two hundred eighty-one' WHERE a=582; UPDATE t2 SET c='thirty thousand one hundred five' WHERE a=583; UPDATE t2 SET c='thirty-six thousand seven hundred thirteen' WHERE a=584; UPDATE t2 SET c='sixty-seven thousand three hundred twenty-one' WHERE a=585; UPDATE t2 SET c='forty-three thousand seven hundred seventy-nine' WHERE a=586; UPDATE t2 SET c='sixty-nine thousand seven hundred twenty-five' WHERE a=587; UPDATE t2 SET c='four thousand one hundred forty' WHERE a=588; UPDATE t2 SET c='ninety thousand two hundred fifty' WHERE a=589; UPDATE t2 SET c='thirty-eight thousand four hundred ninety-three' WHERE a=590; UPDATE t2 SET c='seventy-six thousand three hundred seventy-seven' WHERE a=591; UPDATE t2 SET c='ninety-eight thousand nine hundred ninety-nine' WHERE a=592; UPDATE t2 SET c='twenty-six thousand two hundred eighty-nine' WHERE a=593; UPDATE t2 SET c='fifty-one thousand two hundred one' WHERE a=594; UPDATE t2 SET c='sixty-five thousand five hundred ninety-two' WHERE a=595; UPDATE t2 SET c='thirty-nine thousand four hundred forty' WHERE a=596; UPDATE t2 SET c='fifty-five thousand six hundred seventy-nine' WHERE a=597; UPDATE t2 SET c='seventy-three thousand one hundred ninety-seven' WHERE a=598; UPDATE t2 SET c='sixty-seven thousand two hundred nineteen' WHERE a=599; UPDATE t2 SET c='eighty-four thousand four hundred ninety-three' WHERE a=600; UPDATE t2 SET c='fifty-four thousand eight hundred twenty-three' WHERE a=601; UPDATE t2 SET c='nine thousand seven hundred five' WHERE a=602; UPDATE t2 SET c='fifty-eight thousand three hundred forty-one' WHERE a=603; UPDATE t2 SET c='thirty-eight thousand one hundred sixteen' WHERE a=604; UPDATE t2 SET c='twenty-nine thousand four hundred twenty-one' WHERE a=605; UPDATE t2 SET c='sixteen thousand three hundred twenty-five' WHERE a=606; UPDATE t2 SET c='seventy-four thousand ninety' WHERE a=607; UPDATE t2 SET c='eleven thousand nine hundred thirty-four' WHERE a=608; UPDATE t2 SET c='sixty-five thousand seven hundred ten' WHERE a=609; UPDATE t2 SET c='thirty-four thousand six hundred forty-three' WHERE a=610; UPDATE t2 SET c='thirteen thousand three hundred five' WHERE a=611; UPDATE t2 SET c='eleven thousand eight hundred three' WHERE a=612; UPDATE t2 SET c='seventy-seven thousand three hundred sixty-two' WHERE a=613; UPDATE t2 SET c='thirty-four thousand seven hundred five' WHERE a=614; UPDATE t2 SET c='forty-seven thousand two hundred seventy-eight' WHERE a=615; UPDATE t2 SET c='five thousand seven hundred fifty-one' WHERE a=616; UPDATE t2 SET c='ninety-three thousand six hundred ninety-nine' WHERE a=617; UPDATE t2 SET c='eleven thousand six hundred seven' WHERE a=618; UPDATE t2 SET c='four hundred ninety' WHERE a=619; UPDATE t2 SET c='fifty-one thousand three hundred twenty-one' WHERE a=620; UPDATE t2 SET c='twenty-seven thousand six hundred seventy-eight' WHERE a=621; UPDATE t2 SET c='seventy-five thousand five hundred twenty-seven' WHERE a=622; UPDATE t2 SET c='thirty-one thousand eight hundred ninety-nine' WHERE a=623; UPDATE t2 SET c='seventy-six thousand eighty-five' WHERE a=624; UPDATE t2 SET c='ninety-four thousand eight hundred sixty-four' WHERE a=625; UPDATE t2 SET c='eighty-eight thousand two hundred twenty-six' WHERE a=626; UPDATE t2 SET c='one thousand nine hundred thirty-five' WHERE a=627; UPDATE t2 SET c='sixteen thousand one hundred ninety-six' WHERE a=628; UPDATE t2 SET c='thirty-four thousand one hundred eighty' WHERE a=629; UPDATE t2 SET c='seven thousand one hundred forty' WHERE a=630; UPDATE t2 SET c='sixty-five thousand five hundred ninety-seven' WHERE a=631; UPDATE t2 SET c='eighty-one thousand one hundred eight' WHERE a=632; UPDATE t2 SET c='four thousand three hundred five' WHERE a=633; UPDATE t2 SET c='forty-one thousand three hundred seventy-nine' WHERE a=634; UPDATE t2 SET c='eighty-one thousand five hundred thirty-two' WHERE a=635; UPDATE t2 SET c='fifty thousand three hundred twelve' WHERE a=636; UPDATE t2 SET c='sixty-four thousand eight hundred twenty' WHERE a=637; UPDATE t2 SET c='eleven thousand nine hundred eleven' WHERE a=638; UPDATE t2 SET c='three thousand sixty-eight' WHERE a=639; UPDATE t2 SET c='eight thousand nine hundred seventy-six' WHERE a=640; UPDATE t2 SET c='forty-five thousand four hundred forty-eight' WHERE a=641; UPDATE t2 SET c='fifty-six thousand one hundred eight' WHERE a=642; UPDATE t2 SET c='sixty-one thousand eight hundred fifteen' WHERE a=643; UPDATE t2 SET c='forty thousand three hundred ninety-two' WHERE a=644; UPDATE t2 SET c='twenty-eight thousand three hundred eighty-eight' WHERE a=645; UPDATE t2 SET c='fifty-two thousand three hundred thirty' WHERE a=646; UPDATE t2 SET c='forty thousand eight hundred twenty-two' WHERE a=647; UPDATE t2 SET c='nine thousand four hundred forty-one' WHERE a=648; UPDATE t2 SET c='forty-one thousand five hundred three' WHERE a=649; UPDATE t2 SET c='nineteen thousand six hundred ninety-four' WHERE a=650; UPDATE t2 SET c='eighty-six thousand eight hundred sixty-seven' WHERE a=651; UPDATE t2 SET c='sixty-six thousand eight hundred five' WHERE a=652; UPDATE t2 SET c='thirty-five thousand two hundred eighty-five' WHERE a=653; UPDATE t2 SET c='seven thousand six hundred sixty-three' WHERE a=654; UPDATE t2 SET c='fifty-six thousand two hundred fifty-two' WHERE a=655; UPDATE t2 SET c='forty-five thousand four hundred six' WHERE a=656; UPDATE t2 SET c='eighty-four thousand six hundred' WHERE a=657; UPDATE t2 SET c='ninety-eight thousand eight hundred thirteen' WHERE a=658; UPDATE t2 SET c='ninety-three thousand nine hundred thirty-nine' WHERE a=659; UPDATE t2 SET c='eighty-seven thousand nine hundred' WHERE a=660; UPDATE t2 SET c='seventy-three thousand twenty-nine' WHERE a=661; UPDATE t2 SET c='thirty-one thousand six hundred thirty-five' WHERE a=662; UPDATE t2 SET c='fifty-six thousand three hundred ninety-eight' WHERE a=663; UPDATE t2 SET c='sixty-two thousand seventy-one' WHERE a=664; UPDATE t2 SET c='fifteen thousand eight hundred eighty-five' WHERE a=665; UPDATE t2 SET c='forty-seven thousand five hundred twenty' WHERE a=666; UPDATE t2 SET c='seventy-two thousand three hundred eighty-six' WHERE a=667; UPDATE t2 SET c='fifty-one thousand two hundred fifty-seven' WHERE a=668; UPDATE t2 SET c='twelve thousand three hundred twenty-two' WHERE a=669; UPDATE t2 SET c='forty-three thousand three hundred eighty-three' WHERE a=670; UPDATE t2 SET c='forty-one thousand nine hundred ninety-one' WHERE a=671; UPDATE t2 SET c='sixty-three thousand eight hundred sixty-six' WHERE a=672; UPDATE t2 SET c='ninety-four thousand six hundred fifty-six' WHERE a=673; UPDATE t2 SET c='twenty thousand two hundred sixty-eight' WHERE a=674; UPDATE t2 SET c='forty-nine thousand one hundred forty-five' WHERE a=675; UPDATE t2 SET c='forty-nine thousand five hundred eighty-two' WHERE a=676; UPDATE t2 SET c='seventy-seven thousand seven hundred eighty-five' WHERE a=677; UPDATE t2 SET c='one thousand three hundred thirty-two' WHERE a=678; UPDATE t2 SET c='one thousand one hundred forty-six' WHERE a=679; UPDATE t2 SET c='eighty-three thousand eight hundred twenty-six' WHERE a=680; UPDATE t2 SET c='thirty-one thousand five hundred sixty' WHERE a=681; UPDATE t2 SET c='twenty-one thousand seven hundred seventy-five' WHERE a=682; UPDATE t2 SET c='forty-one thousand nine hundred sixty' WHERE a=683; UPDATE t2 SET c='sixty thousand seven hundred fifty' WHERE a=684; UPDATE t2 SET c='twenty-nine thousand three hundred ninety-eight' WHERE a=685; UPDATE t2 SET c='sixteen thousand one hundred fifty-eight' WHERE a=686; UPDATE t2 SET c='thirty thousand seven hundred ninety-three' WHERE a=687; UPDATE t2 SET c='sixty-four thousand four hundred six' WHERE a=688; UPDATE t2 SET c='forty-seven thousand four hundred thirty' WHERE a=689; UPDATE t2 SET c='thirty-eight thousand four hundred twenty' WHERE a=690; UPDATE t2 SET c='seven thousand three hundred eighty-three' WHERE a=691; UPDATE t2 SET c='sixty-nine thousand four hundred eighty-five' WHERE a=692; UPDATE t2 SET c='thirty-five thousand one hundred thirty-eight' WHERE a=693; UPDATE t2 SET c='seventy-seven thousand five' WHERE a=694; UPDATE t2 SET c='thirty-nine thousand six hundred sixty-seven' WHERE a=695; UPDATE t2 SET c='eighteen thousand seventy-nine' WHERE a=696; UPDATE t2 SET c='six thousand five hundred thirty' WHERE a=697; UPDATE t2 SET c='sixty-four thousand nine hundred eighty' WHERE a=698; UPDATE t2 SET c='thirty-eight thousand twelve' WHERE a=699; UPDATE t2 SET c='eighty-nine thousand seven hundred ninety-six' WHERE a=700; UPDATE t2 SET c='sixty-nine thousand three hundred thirty-two' WHERE a=701; UPDATE t2 SET c='sixty-six thousand forty-three' WHERE a=702; UPDATE t2 SET c='twenty-seven thousand eight hundred sixty' WHERE a=703; UPDATE t2 SET c='seventy-five thousand four hundred twelve' WHERE a=704; UPDATE t2 SET c='seventy-six thousand one hundred' WHERE a=705; UPDATE t2 SET c='forty-three thousand eight hundred nine' WHERE a=706; UPDATE t2 SET c='eighty thousand nine hundred forty-seven' WHERE a=707; UPDATE t2 SET c='twenty-one thousand five hundred ninety-five' WHERE a=708; UPDATE t2 SET c='sixty-eight thousand fifty' WHERE a=709; UPDATE t2 SET c='three thousand four hundred eight' WHERE a=710; UPDATE t2 SET c='eighty-nine thousand three hundred eighty' WHERE a=711; UPDATE t2 SET c='three thousand eight hundred four' WHERE a=712; UPDATE t2 SET c='one thousand one hundred twenty' WHERE a=713; UPDATE t2 SET c='thirty-two thousand seven hundred nine' WHERE a=714; UPDATE t2 SET c='four thousand nine hundred sixty-nine' WHERE a=715; UPDATE t2 SET c='ninety-three thousand four hundred ninety-six' WHERE a=716; UPDATE t2 SET c='fifty-one thousand five hundred twenty-four' WHERE a=717; UPDATE t2 SET c='four thousand nine hundred sixty-seven' WHERE a=718; UPDATE t2 SET c='twenty thousand three hundred twelve' WHERE a=719; UPDATE t2 SET c='ninety-eight thousand seven hundred ninety' WHERE a=720; UPDATE t2 SET c='eighty-four thousand four hundred eighty-three' WHERE a=721; UPDATE t2 SET c='eighty-nine thousand seventy' WHERE a=722; UPDATE t2 SET c='forty-four thousand nine hundred seventy-seven' WHERE a=723; UPDATE t2 SET c='thirty-one thousand six hundred seventy-five' WHERE a=724; UPDATE t2 SET c='twenty thousand seven hundred forty-five' WHERE a=725; UPDATE t2 SET c='sixty-two thousand one hundred forty-four' WHERE a=726; UPDATE t2 SET c='thirty-eight thousand four hundred seventy-nine' WHERE a=727; UPDATE t2 SET c='eighty-four thousand five hundred seventy-three' WHERE a=728; UPDATE t2 SET c='eighty-six thousand four hundred forty-nine' WHERE a=729; UPDATE t2 SET c='sixty-four thousand three hundred two' WHERE a=730; UPDATE t2 SET c='seventy thousand three hundred fourteen' WHERE a=731; UPDATE t2 SET c='seventy-four thousand four hundred nine' WHERE a=732; UPDATE t2 SET c='nine thousand six hundred four' WHERE a=733; UPDATE t2 SET c='eighty-two thousand five hundred sixty' WHERE a=734; UPDATE t2 SET c='twenty-nine thousand eight hundred fifty-two' WHERE a=735; UPDATE t2 SET c='fifty-six thousand four hundred fourteen' WHERE a=736; UPDATE t2 SET c='forty-four thousand one hundred thirty-three' WHERE a=737; UPDATE t2 SET c='forty-two thousand nine hundred fourteen' WHERE a=738; UPDATE t2 SET c='sixty-one thousand three hundred twenty-eight' WHERE a=739; UPDATE t2 SET c='eighteen thousand three hundred ninety-four' WHERE a=740; UPDATE t2 SET c='forty thousand four hundred seventy-eight' WHERE a=741; UPDATE t2 SET c='three hundred seventy-one' WHERE a=742; UPDATE t2 SET c='thirty-nine thousand seven hundred forty-five' WHERE a=743; UPDATE t2 SET c='fifty-seven thousand seven hundred ninety-three' WHERE a=744; UPDATE t2 SET c='forty-four thousand eight hundred eighteen' WHERE a=745; UPDATE t2 SET c='eighty-five thousand twenty-eight' WHERE a=746; UPDATE t2 SET c='twelve thousand nine hundred twenty-four' WHERE a=747; UPDATE t2 SET c='eighty-five thousand one hundred ninety-two' WHERE a=748; UPDATE t2 SET c='ninety thousand fifty-three' WHERE a=749; UPDATE t2 SET c='twenty-seven thousand seven hundred seventy-nine' WHERE a=750; UPDATE t2 SET c='seventy-seven thousand four hundred eleven' WHERE a=751; UPDATE t2 SET c='sixty-one thousand five hundred twenty-seven' WHERE a=752; UPDATE t2 SET c='sixteen thousand one hundred nine' WHERE a=753; UPDATE t2 SET c='twenty-six thousand one hundred fifty-eight' WHERE a=754; UPDATE t2 SET c='forty-two thousand four hundred twenty-one' WHERE a=755; UPDATE t2 SET c='thirty-eight thousand five hundred sixty-one' WHERE a=756; UPDATE t2 SET c='thirty thousand three hundred ninety' WHERE a=757; UPDATE t2 SET c='seventy-five thousand two hundred seventy-three' WHERE a=758; UPDATE t2 SET c='eight thousand forty-nine' WHERE a=759; UPDATE t2 SET c='seventy-one thousand seven hundred ten' WHERE a=760; UPDATE t2 SET c='sixty-nine thousand four hundred seventy-one' WHERE a=761; UPDATE t2 SET c='three thousand three hundred twenty' WHERE a=762; UPDATE t2 SET c='ninety-nine thousand six' WHERE a=763; UPDATE t2 SET c='ninety-seven thousand four hundred' WHERE a=764; UPDATE t2 SET c='twenty thousand one hundred sixty-three' WHERE a=765; UPDATE t2 SET c='six thousand seven hundred eighty-two' WHERE a=766; UPDATE t2 SET c='eighty thousand seven hundred fifty-five' WHERE a=767; UPDATE t2 SET c='nine thousand three hundred one' WHERE a=768; UPDATE t2 SET c='thirty-six thousand nine hundred ninety-nine' WHERE a=769; UPDATE t2 SET c='fifty-four thousand three hundred ninety-two' WHERE a=770; UPDATE t2 SET c='ninety-five thousand eight hundred forty-one' WHERE a=771; UPDATE t2 SET c='fifty-nine thousand six hundred sixty-six' WHERE a=772; UPDATE t2 SET c='eighty-one thousand two hundred forty-three' WHERE a=773; UPDATE t2 SET c='thirty-six thousand eight hundred twelve' WHERE a=774; UPDATE t2 SET c='thirteen thousand five hundred ninety-eight' WHERE a=775; UPDATE t2 SET c='one thousand ninety-nine' WHERE a=776; UPDATE t2 SET c='eighty-seven thousand one hundred ninety-four' WHERE a=777; UPDATE t2 SET c='forty-three thousand six hundred ten' WHERE a=778; UPDATE t2 SET c='fifty-six thousand eight hundred six' WHERE a=779; UPDATE t2 SET c='seventy-three thousand six hundred sixty-five' WHERE a=780; UPDATE t2 SET c='seventy-eight thousand nine hundred fifty-seven' WHERE a=781; UPDATE t2 SET c='ninety-five thousand seven hundred seventy-two' WHERE a=782; UPDATE t2 SET c='sixty-two thousand forty-seven' WHERE a=783; UPDATE t2 SET c='eighty-seven thousand ninety-four' WHERE a=784; UPDATE t2 SET c='seventy-eight thousand seven hundred fifty-three' WHERE a=785; UPDATE t2 SET c='twenty thousand seven hundred eighty-nine' WHERE a=786; UPDATE t2 SET c='fourteen thousand eight hundred sixty-six' WHERE a=787; UPDATE t2 SET c='eighty-six thousand seven hundred thirteen' WHERE a=788; UPDATE t2 SET c='fifty-one thousand six hundred thirteen' WHERE a=789; UPDATE t2 SET c='fifty-two thousand six hundred thirty-four' WHERE a=790; UPDATE t2 SET c='sixty-four thousand ninety-five' WHERE a=791; UPDATE t2 SET c='thirty-eight thousand nine hundred forty' WHERE a=792; UPDATE t2 SET c='ten thousand sixty-four' WHERE a=793; UPDATE t2 SET c='twenty-eight thousand seven hundred sixteen' WHERE a=794; UPDATE t2 SET c='forty-nine thousand seven hundred sixty-three' WHERE a=795; UPDATE t2 SET c='eighty thousand seventy-four' WHERE a=796; UPDATE t2 SET c='thirty-two thousand one hundred thirty-five' WHERE a=797; UPDATE t2 SET c='seventy-three thousand two hundred sixty-eight' WHERE a=798; UPDATE t2 SET c='forty-three thousand two hundred seventy-seven' WHERE a=799; UPDATE t2 SET c='four thousand one hundred forty-four' WHERE a=800; UPDATE t2 SET c='eighty-nine thousand nine hundred thirty-four' WHERE a=801; UPDATE t2 SET c='seventy-four thousand nine hundred ninety-one' WHERE a=802; UPDATE t2 SET c='forty-five thousand three hundred thirty-eight' WHERE a=803; UPDATE t2 SET c='ninety-one thousand one hundred sixty' WHERE a=804; UPDATE t2 SET c='sixty-eight thousand four hundred ninety' WHERE a=805; UPDATE t2 SET c='ninety-six thousand four hundred twenty-nine' WHERE a=806; UPDATE t2 SET c='ninety-six thousand two hundred sixty-one' WHERE a=807; UPDATE t2 SET c='twelve thousand one hundred sixty-six' WHERE a=808; UPDATE t2 SET c='forty-nine thousand two hundred eleven' WHERE a=809; UPDATE t2 SET c='twenty-two thousand six hundred twelve' WHERE a=810; UPDATE t2 SET c='fifty-three thousand five hundred sixty-nine' WHERE a=811; UPDATE t2 SET c='fifty-seven thousand nine hundred eighty-four' WHERE a=812; UPDATE t2 SET c='nine thousand ninety-seven' WHERE a=813; UPDATE t2 SET c='eighteen thousand seven hundred thirteen' WHERE a=814; UPDATE t2 SET c='fifteen thousand three hundred sixty-five' WHERE a=815; UPDATE t2 SET c='fifty-nine thousand five hundred sixty-eight' WHERE a=816; UPDATE t2 SET c='eighty-eight thousand three hundred five' WHERE a=817; UPDATE t2 SET c='twenty-five thousand three hundred thirty' WHERE a=818; UPDATE t2 SET c='forty-nine thousand six hundred seventy' WHERE a=819; UPDATE t2 SET c='sixty-five thousand six hundred seventy' WHERE a=820; UPDATE t2 SET c='forty-one thousand one hundred twenty-six' WHERE a=821; UPDATE t2 SET c='twenty-one thousand one hundred forty-five' WHERE a=822; UPDATE t2 SET c='sixty-one thousand six hundred sixty-six' WHERE a=823; UPDATE t2 SET c='twenty-seven thousand three hundred four' WHERE a=824; UPDATE t2 SET c='sixty-one thousand seven hundred fifty-six' WHERE a=825; UPDATE t2 SET c='seven thousand three hundred eighty' WHERE a=826; UPDATE t2 SET c='eighty-four thousand nine hundred twenty-eight' WHERE a=827; UPDATE t2 SET c='seventy-five thousand twenty' WHERE a=828; UPDATE t2 SET c='nineteen thousand two hundred twenty-eight' WHERE a=829; UPDATE t2 SET c='ninety-eight thousand seven hundred thirteen' WHERE a=830; UPDATE t2 SET c='ninety-six thousand four hundred eighty-four' WHERE a=831; UPDATE t2 SET c='seventy-one thousand one hundred forty-four' WHERE a=832; UPDATE t2 SET c='sixty-five thousand nine hundred seventy-three' WHERE a=833; UPDATE t2 SET c='ninety-five thousand three hundred forty-eight' WHERE a=834; UPDATE t2 SET c='fifty-seven thousand four hundred ninety-four' WHERE a=835; UPDATE t2 SET c='forty-one thousand twenty-nine' WHERE a=836; UPDATE t2 SET c='eighty-two thousand five hundred thirteen' WHERE a=837; UPDATE t2 SET c='forty-six thousand one hundred seventy-seven' WHERE a=838; UPDATE t2 SET c='ten thousand five hundred thirty-eight' WHERE a=839; UPDATE t2 SET c='fifty-seven thousand four hundred eighty-four' WHERE a=840; UPDATE t2 SET c='fifty-three thousand one hundred ninety-one' WHERE a=841; UPDATE t2 SET c='twenty-four thousand seven hundred six' WHERE a=842; UPDATE t2 SET c='nine thousand nine hundred seventy-nine' WHERE a=843; UPDATE t2 SET c='fifty thousand seven hundred ninety-five' WHERE a=844; UPDATE t2 SET c='seven thousand six hundred twenty-two' WHERE a=845; UPDATE t2 SET c='sixty-six thousand one hundred eighty' WHERE a=846; UPDATE t2 SET c='five hundred forty-eight' WHERE a=847; UPDATE t2 SET c='forty-two thousand five hundred forty-six' WHERE a=848; UPDATE t2 SET c='ninety-seven thousand five hundred ninety-one' WHERE a=849; UPDATE t2 SET c='thirty-nine thousand eight hundred forty-four' WHERE a=850; UPDATE t2 SET c='ninety-seven thousand six hundred seven' WHERE a=851; UPDATE t2 SET c='twenty-nine thousand two hundred five' WHERE a=852; UPDATE t2 SET c='seventeen thousand nine hundred thirty-three' WHERE a=853; UPDATE t2 SET c='forty-nine thousand eight hundred seventy-two' WHERE a=854; UPDATE t2 SET c='ninety-seven thousand three hundred ninety-three' WHERE a=855; UPDATE t2 SET c='forty-eight thousand eight hundred sixty-one' WHERE a=856; UPDATE t2 SET c='ninety-seven thousand one hundred eighty-eight' WHERE a=857; UPDATE t2 SET c='sixty-seven thousand sixty-six' WHERE a=858; UPDATE t2 SET c='nine thousand five hundred forty-seven' WHERE a=859; UPDATE t2 SET c='thirty-eight thousand four hundred ninety-eight' WHERE a=860; UPDATE t2 SET c='sixty-six thousand twenty-one' WHERE a=861; UPDATE t2 SET c='twenty-seven thousand seven hundred sixty-four' WHERE a=862; UPDATE t2 SET c='forty thousand nine hundred fifty-five' WHERE a=863; UPDATE t2 SET c='thirty-eight thousand forty-four' WHERE a=864; UPDATE t2 SET c='twenty-nine thousand three hundred thirty-one' WHERE a=865; UPDATE t2 SET c='fifty-six thousand four hundred sixty-seven' WHERE a=866; UPDATE t2 SET c='fifty-one thousand eighty-three' WHERE a=867; UPDATE t2 SET c='seventy-nine thousand seven hundred sixty-five' WHERE a=868; UPDATE t2 SET c='thirty-six thousand fifteen' WHERE a=869; UPDATE t2 SET c='thirty-eight thousand one hundred sixty-seven' WHERE a=870; UPDATE t2 SET c='forty-six thousand one hundred forty-nine' WHERE a=871; UPDATE t2 SET c='twenty-three thousand seventy-two' WHERE a=872; UPDATE t2 SET c='thirty-one thousand one hundred ninety-two' WHERE a=873; UPDATE t2 SET c='sixty thousand twelve' WHERE a=874; UPDATE t2 SET c='eighteen thousand six hundred twenty-five' WHERE a=875; UPDATE t2 SET c='seven thousand fifty-six' WHERE a=876; UPDATE t2 SET c='ninety-four thousand six hundred forty' WHERE a=877; UPDATE t2 SET c='ninety-three thousand seven hundred fifteen' WHERE a=878; UPDATE t2 SET c='eighty-four thousand three hundred sixty-nine' WHERE a=879; UPDATE t2 SET c='thirty-one thousand five hundred sixty-four' WHERE a=880; UPDATE t2 SET c='seventy-one thousand two hundred three' WHERE a=881; UPDATE t2 SET c='forty-one thousand four hundred fifty-nine' WHERE a=882; UPDATE t2 SET c='seventy-five thousand six hundred seventy' WHERE a=883; UPDATE t2 SET c='seventy-eight thousand forty-four' WHERE a=884; UPDATE t2 SET c='eighty-one thousand four hundred thirty-nine' WHERE a=885; UPDATE t2 SET c='twelve thousand nine hundred forty-five' WHERE a=886; UPDATE t2 SET c='forty-five thousand six hundred twenty-six' WHERE a=887; UPDATE t2 SET c='twenty-one thousand five hundred seventy' WHERE a=888; UPDATE t2 SET c='forty-four thousand two hundred three' WHERE a=889; UPDATE t2 SET c='seventy-nine thousand six hundred fifty-six' WHERE a=890; UPDATE t2 SET c='sixty-one thousand one hundred eighty-two' WHERE a=891; UPDATE t2 SET c='thirty-nine thousand seven hundred three' WHERE a=892; UPDATE t2 SET c='thirteen thousand four hundred fifty-one' WHERE a=893; UPDATE t2 SET c='fifty-six thousand nine hundred ninety-four' WHERE a=894; UPDATE t2 SET c='twenty-three thousand four hundred forty-seven' WHERE a=895; UPDATE t2 SET c='eighty-nine thousand five hundred sixty' WHERE a=896; UPDATE t2 SET c='thirteen thousand seventy' WHERE a=897; UPDATE t2 SET c='fifteen thousand six hundred sixteen' WHERE a=898; UPDATE t2 SET c='seventy-one thousand three hundred thirty-three' WHERE a=899; UPDATE t2 SET c='forty-nine thousand two hundred fourteen' WHERE a=900; UPDATE t2 SET c='sixteen thousand eight hundred fifty-four' WHERE a=901; UPDATE t2 SET c='thirty-eight thousand one hundred eighty' WHERE a=902; UPDATE t2 SET c='seventy-four thousand eight hundred sixty-four' WHERE a=903; UPDATE t2 SET c='eighty-two thousand six hundred thirty-seven' WHERE a=904; UPDATE t2 SET c='seventy-two thousand three hundred twenty-three' WHERE a=905; UPDATE t2 SET c='twenty-one thousand seven hundred ninety-two' WHERE a=906; UPDATE t2 SET c='fifty-five thousand two hundred eighty-four' WHERE a=907; UPDATE t2 SET c='forty-two thousand two hundred fifty-six' WHERE a=908; UPDATE t2 SET c='ninety-five thousand one hundred eighty-eight' WHERE a=909; UPDATE t2 SET c='thirty-six thousand two hundred eighty-six' WHERE a=910; UPDATE t2 SET c='fifty-seven thousand eighteen' WHERE a=911; UPDATE t2 SET c='three thousand thirty-six' WHERE a=912; UPDATE t2 SET c='eighty-seven thousand nine hundred seventy-six' WHERE a=913; UPDATE t2 SET c='forty-seven thousand one hundred forty-six' WHERE a=914; UPDATE t2 SET c='seventeen thousand twenty' WHERE a=915; UPDATE t2 SET c='eighty-eight thousand nine hundred eleven' WHERE a=916; UPDATE t2 SET c='eighty-nine thousand nine hundred fifteen' WHERE a=917; UPDATE t2 SET c='sixty-three thousand one hundred three' WHERE a=918; UPDATE t2 SET c='forty-three thousand one hundred sixty-nine' WHERE a=919; UPDATE t2 SET c='forty-one thousand nine hundred one' WHERE a=920; UPDATE t2 SET c='twenty-nine thousand six hundred eighty-two' WHERE a=921; UPDATE t2 SET c='thirty-three thousand one hundred eighty-eight' WHERE a=922; UPDATE t2 SET c='nine thousand six hundred sixteen' WHERE a=923; UPDATE t2 SET c='thirty-three thousand two hundred forty-seven' WHERE a=924; UPDATE t2 SET c='sixty-one thousand three hundred seventy-nine' WHERE a=925; UPDATE t2 SET c='twenty-nine thousand one hundred twenty-three' WHERE a=926; UPDATE t2 SET c='fifty-five thousand three hundred twenty-two' WHERE a=927; UPDATE t2 SET c='eighty-six thousand three hundred six' WHERE a=928; UPDATE t2 SET c='nine thousand seven hundred thirty-one' WHERE a=929; UPDATE t2 SET c='ninety-nine thousand four hundred fourteen' WHERE a=930; UPDATE t2 SET c='forty thousand six hundred twenty-one' WHERE a=931; UPDATE t2 SET c='ninety-four thousand six hundred nine' WHERE a=932; UPDATE t2 SET c='thirty-one thousand six hundred twenty-eight' WHERE a=933; UPDATE t2 SET c='four thousand three hundred fifty-six' WHERE a=934; UPDATE t2 SET c='fifty-five thousand twenty-eight' WHERE a=935; UPDATE t2 SET c='seven hundred fifty-four' WHERE a=936; UPDATE t2 SET c='eighty-one thousand two hundred three' WHERE a=937; UPDATE t2 SET c='seventeen thousand seven hundred eighty-three' WHERE a=938; UPDATE t2 SET c='fifty-four thousand three hundred seventy-nine' WHERE a=939; UPDATE t2 SET c='eighty-three thousand six hundred twelve' WHERE a=940; UPDATE t2 SET c='twenty-five thousand one hundred thirty-eight' WHERE a=941; UPDATE t2 SET c='fifteen thousand eight hundred nine' WHERE a=942; UPDATE t2 SET c='seventy-five thousand one hundred fifty' WHERE a=943; UPDATE t2 SET c='ninety-nine thousand six hundred thirteen' WHERE a=944; UPDATE t2 SET c='seventy-one thousand nine hundred fifteen' WHERE a=945; UPDATE t2 SET c='thirty-eight thousand two hundred twenty-six' WHERE a=946; UPDATE t2 SET c='forty thousand eight hundred seventy-five' WHERE a=947; UPDATE t2 SET c='forty thousand one hundred thirty-six' WHERE a=948; UPDATE t2 SET c='sixty-nine thousand seven hundred seven' WHERE a=949; UPDATE t2 SET c='fifty-three thousand four' WHERE a=950; UPDATE t2 SET c='thirty-six thousand six hundred sixty-seven' WHERE a=951; UPDATE t2 SET c='sixty-seven thousand one hundred four' WHERE a=952; UPDATE t2 SET c='sixty-four thousand nine hundred ninety-nine' WHERE a=953; UPDATE t2 SET c='fifty-three thousand eight hundred eighty' WHERE a=954; UPDATE t2 SET c='sixty-six thousand eleven' WHERE a=955; UPDATE t2 SET c='forty-four thousand twenty-three' WHERE a=956; UPDATE t2 SET c='two thousand two hundred twenty-nine' WHERE a=957; UPDATE t2 SET c='sixty-five thousand one hundred seventy-four' WHERE a=958; UPDATE t2 SET c='eleven thousand four hundred ninety-four' WHERE a=959; UPDATE t2 SET c='fifty-one thousand three hundred twenty-five' WHERE a=960; UPDATE t2 SET c='twelve thousand two hundred thirteen' WHERE a=961; UPDATE t2 SET c='fifty-two thousand one hundred sixty-five' WHERE a=962; UPDATE t2 SET c='ten thousand three hundred twenty-one' WHERE a=963; UPDATE t2 SET c='seventy-four thousand five hundred seventeen' WHERE a=964; UPDATE t2 SET c='fifteen thousand seven hundred fifty-nine' WHERE a=965; UPDATE t2 SET c='fifty-seven thousand eighty-six' WHERE a=966; UPDATE t2 SET c='seventy-nine thousand seven hundred seventy-eight' WHERE a=967; UPDATE t2 SET c='ninety-one thousand two hundred thirty-three' WHERE a=968; UPDATE t2 SET c='sixty-seven thousand two hundred forty-two' WHERE a=969; UPDATE t2 SET c='fifty-seven thousand one hundred thirty-five' WHERE a=970; UPDATE t2 SET c='ninety-seven thousand eight hundred twenty-six' WHERE a=971; UPDATE t2 SET c='fifty-one thousand six hundred seventeen' WHERE a=972; UPDATE t2 SET c='twenty-one thousand nine hundred fifty-eight' WHERE a=973; UPDATE t2 SET c='ninety-four thousand three hundred ninety-five' WHERE a=974; UPDATE t2 SET c='thirty-eight thousand nine hundred seventy-one' WHERE a=975; UPDATE t2 SET c='twenty-nine thousand eight hundred eighty-four' WHERE a=976; UPDATE t2 SET c='twenty-four thousand eight hundred thirty-three' WHERE a=977; UPDATE t2 SET c='thirty-six thousand seven hundred' WHERE a=978; UPDATE t2 SET c='thirty-eight thousand three hundred twenty-eight' WHERE a=979; UPDATE t2 SET c='thirty-three thousand five hundred fifty-two' WHERE a=980; UPDATE t2 SET c='fifty-four thousand seven hundred ninety-three' WHERE a=981; UPDATE t2 SET c='twenty-five thousand two hundred sixty-six' WHERE a=982; UPDATE t2 SET c='eighty-seven thousand seven hundred fifty-three' WHERE a=983; UPDATE t2 SET c='three thousand eight hundred sixty-six' WHERE a=984; UPDATE t2 SET c='ninety-six thousand eighty-three' WHERE a=985; UPDATE t2 SET c='sixty-six thousand sixty-two' WHERE a=986; UPDATE t2 SET c='eleven thousand eight hundred twenty' WHERE a=987; UPDATE t2 SET c='sixty-one thousand five hundred ninety' WHERE a=988; UPDATE t2 SET c='seventy-six thousand six hundred twenty-four' WHERE a=989; UPDATE t2 SET c='eighty-five thousand three hundred forty-seven' WHERE a=990; UPDATE t2 SET c='eighty-five thousand seven hundred sixty-seven' WHERE a=991; UPDATE t2 SET c='four thousand four hundred ninety-nine' WHERE a=992; UPDATE t2 SET c='seventy-one thousand one hundred eighteen' WHERE a=993; UPDATE t2 SET c='ninety-five thousand five hundred thirty-one' WHERE a=994; UPDATE t2 SET c='ninety-six thousand five hundred eighty' WHERE a=995; UPDATE t2 SET c='seventy-four thousand two hundred forty-three' WHERE a=996; UPDATE t2 SET c='eighty-seven thousand seven hundred eighty-four' WHERE a=997; UPDATE t2 SET c='twelve thousand four hundred eighty-nine' WHERE a=998; UPDATE t2 SET c='ninety-nine thousand five hundred seventy-four' WHERE a=999; UPDATE t2 SET c='eighty thousand nine hundred ninety-eight' WHERE a=1000; UPDATE t2 SET c='twenty-five thousand five hundred seventy-one' WHERE a=1001; UPDATE t2 SET c='five thousand one hundred eighty-eight' WHERE a=1002; UPDATE t2 SET c='thirty-four thousand six hundred twenty-nine' WHERE a=1003; UPDATE t2 SET c='seventy-one thousand seven hundred eighty' WHERE a=1004; UPDATE t2 SET c='sixty thousand four hundred seventy-eight' WHERE a=1005; UPDATE t2 SET c='seventy thousand four hundred eighty-six' WHERE a=1006; UPDATE t2 SET c='sixty-two thousand nine hundred sixteen' WHERE a=1007; UPDATE t2 SET c='fifty-six thousand fifty-five' WHERE a=1008; UPDATE t2 SET c='fifteen thousand four hundred eighty-six' WHERE a=1009; UPDATE t2 SET c='two thousand nine hundred forty-seven' WHERE a=1010; UPDATE t2 SET c='eighty-two thousand two hundred thirty-six' WHERE a=1011; UPDATE t2 SET c='eighty thousand four hundred eighty-three' WHERE a=1012; UPDATE t2 SET c='fourteen thousand six hundred forty-nine' WHERE a=1013; UPDATE t2 SET c='thirty-nine thousand seven hundred five' WHERE a=1014; UPDATE t2 SET c='ninety-eight thousand one hundred twenty' WHERE a=1015; UPDATE t2 SET c='forty thousand three hundred twenty-four' WHERE a=1016; UPDATE t2 SET c='nine thousand eight hundred ninety-one' WHERE a=1017; UPDATE t2 SET c='ten thousand two hundred seventy-two' WHERE a=1018; UPDATE t2 SET c='twenty-five thousand four hundred seventy-one' WHERE a=1019; UPDATE t2 SET c='nine thousand nine hundred eighty-three' WHERE a=1020; UPDATE t2 SET c='seventy-nine thousand three hundred twenty-six' WHERE a=1021; UPDATE t2 SET c='nine thousand three hundred eighty-three' WHERE a=1022; UPDATE t2 SET c='thirty-eight thousand five hundred four' WHERE a=1023; UPDATE t2 SET c='nine thousand seven hundred sixty-one' WHERE a=1024; UPDATE t2 SET c='ninety thousand seven hundred ninety-five' WHERE a=1025; UPDATE t2 SET c='sixty-eight thousand nine hundred eighty-seven' WHERE a=1026; UPDATE t2 SET c='seven thousand five hundred sixty-eight' WHERE a=1027; UPDATE t2 SET c='ninety-six thousand two hundred twenty' WHERE a=1028; UPDATE t2 SET c='one thousand nine hundred twenty' WHERE a=1029; UPDATE t2 SET c='eighty-seven thousand one hundred eighty-two' WHERE a=1030; UPDATE t2 SET c='eleven thousand four hundred ninety-one' WHERE a=1031; UPDATE t2 SET c='thirty-seven thousand three hundred twenty' WHERE a=1032; UPDATE t2 SET c='sixty-three thousand eight hundred seventy-nine' WHERE a=1033; UPDATE t2 SET c='eleven thousand five hundred eighty-seven' WHERE a=1034; UPDATE t2 SET c='thirty thousand four hundred ninety-one' WHERE a=1035; UPDATE t2 SET c='eighty thousand thirty' WHERE a=1036; UPDATE t2 SET c='sixty-nine thousand eight hundred eighty-three' WHERE a=1037; UPDATE t2 SET c='fifty-seven thousand eighteen' WHERE a=1038; UPDATE t2 SET c='six thousand eight hundred forty-eight' WHERE a=1039; UPDATE t2 SET c='forty-two thousand five hundred seventy-eight' WHERE a=1040; UPDATE t2 SET c='eighty-four thousand ninety-four' WHERE a=1041; UPDATE t2 SET c='twenty-seven thousand six hundred fifty' WHERE a=1042; UPDATE t2 SET c='thirty-one thousand eight hundred ninety-eight' WHERE a=1043; UPDATE t2 SET c='fifty-eight thousand two hundred twenty' WHERE a=1044; UPDATE t2 SET c='eighteen thousand twenty' WHERE a=1045; UPDATE t2 SET c='thirty-one thousand three hundred seventy' WHERE a=1046; UPDATE t2 SET c='twenty-five thousand nine hundred forty-nine' WHERE a=1047; UPDATE t2 SET c='fifteen thousand six hundred eleven' WHERE a=1048; UPDATE t2 SET c='twelve thousand seventeen' WHERE a=1049; UPDATE t2 SET c='ten thousand five hundred ninety' WHERE a=1050; UPDATE t2 SET c='twenty-six thousand six hundred fifteen' WHERE a=1051; UPDATE t2 SET c='seventy-seven thousand sixty-six' WHERE a=1052; UPDATE t2 SET c='twenty-four thousand six hundred five' WHERE a=1053; UPDATE t2 SET c='fifty-one thousand four hundred twenty-three' WHERE a=1054; UPDATE t2 SET c='seventy-seven thousand two hundred twenty-two' WHERE a=1055; UPDATE t2 SET c='forty-three thousand five hundred twenty-four' WHERE a=1056; UPDATE t2 SET c='thirty-eight thousand two hundred sixty' WHERE a=1057; UPDATE t2 SET c='eighty-six thousand five hundred seventy-seven' WHERE a=1058; UPDATE t2 SET c='seven thousand nine hundred thirty-five' WHERE a=1059; UPDATE t2 SET c='eighty-eight thousand three hundred sixty' WHERE a=1060; UPDATE t2 SET c='sixty-seven thousand nine hundred seventy-seven' WHERE a=1061; UPDATE t2 SET c='thirty thousand five hundred eighty-two' WHERE a=1062; UPDATE t2 SET c='fifty-eight thousand six hundred sixty-four' WHERE a=1063; UPDATE t2 SET c='two thousand five hundred twenty-nine' WHERE a=1064; UPDATE t2 SET c='ninety-eight thousand eight hundred seventy-three' WHERE a=1065; UPDATE t2 SET c='sixty-six thousand four hundred fifty' WHERE a=1066; UPDATE t2 SET c='seventy thousand two hundred ninety-five' WHERE a=1067; UPDATE t2 SET c='twenty-one thousand four hundred sixty-three' WHERE a=1068; UPDATE t2 SET c='eighty-three thousand seventy-four' WHERE a=1069; UPDATE t2 SET c='sixty-three thousand eight hundred twenty-six' WHERE a=1070; UPDATE t2 SET c='ninety-six thousand fifteen' WHERE a=1071; UPDATE t2 SET c='thirty-nine thousand four hundred nineteen' WHERE a=1072; UPDATE t2 SET c='seventy-two thousand five hundred twenty-four' WHERE a=1073; UPDATE t2 SET c='seventy-nine thousand nine hundred forty-three' WHERE a=1074; UPDATE t2 SET c='ninety-six thousand five hundred thirty' WHERE a=1075; UPDATE t2 SET c='twenty-four thousand thirty-four' WHERE a=1076; UPDATE t2 SET c='twenty-two thousand seven hundred fifty-seven' WHERE a=1077; UPDATE t2 SET c='seventy-four thousand six hundred seventy' WHERE a=1078; UPDATE t2 SET c='sixty-four thousand eight hundred twenty-three' WHERE a=1079; UPDATE t2 SET c='sixty-three thousand six hundred fourteen' WHERE a=1080; UPDATE t2 SET c='fifty-three thousand four hundred forty-two' WHERE a=1081; UPDATE t2 SET c='thirty-one thousand thirty-seven' WHERE a=1082; UPDATE t2 SET c='sixty-one thousand three hundred seventy' WHERE a=1083; UPDATE t2 SET c='fifty-seven thousand eight hundred fourteen' WHERE a=1084; UPDATE t2 SET c='sixty-nine thousand one hundred forty' WHERE a=1085; UPDATE t2 SET c='forty-one thousand one hundred thirty-six' WHERE a=1086; UPDATE t2 SET c='fourteen thousand ninety-four' WHERE a=1087; UPDATE t2 SET c='seventy-two thousand four hundred fifty' WHERE a=1088; UPDATE t2 SET c='twenty-one thousand three hundred thirty-seven' WHERE a=1089; UPDATE t2 SET c='sixty-three thousand seven hundred eighty-five' WHERE a=1090; UPDATE t2 SET c='fifteen thousand seventy-nine' WHERE a=1091; UPDATE t2 SET c='seventy-nine thousand one hundred sixty' WHERE a=1092; UPDATE t2 SET c='seventy-seven thousand two hundred seventy-seven' WHERE a=1093; UPDATE t2 SET c='thirteen thousand nine hundred six' WHERE a=1094; UPDATE t2 SET c='seventy-two thousand three hundred eighty-six' WHERE a=1095; UPDATE t2 SET c='ninety-three thousand eight hundred eighty-eight' WHERE a=1096; UPDATE t2 SET c='twenty-six thousand three hundred thirty-eight' WHERE a=1097; UPDATE t2 SET c='twenty thousand nine hundred eighty-nine' WHERE a=1098; UPDATE t2 SET c='fourteen thousand three hundred forty-three' WHERE a=1099; UPDATE t2 SET c='one thousand three hundred forty-seven' WHERE a=1100; UPDATE t2 SET c='fifty-eight thousand one hundred forty-one' WHERE a=1101; UPDATE t2 SET c='three thousand one hundred seventeen' WHERE a=1102; UPDATE t2 SET c='nineteen thousand two hundred forty-nine' WHERE a=1103; UPDATE t2 SET c='twenty-eight thousand one hundred sixty-five' WHERE a=1104; UPDATE t2 SET c='thirty-seven thousand one hundred sixty-one' WHERE a=1105; UPDATE t2 SET c='sixty-five thousand nine hundred seventy' WHERE a=1106; UPDATE t2 SET c='sixty-two thousand eighty-five' WHERE a=1107; UPDATE t2 SET c='sixty-eight thousand one hundred nineteen' WHERE a=1108; UPDATE t2 SET c='twenty-seven thousand six hundred twenty-one' WHERE a=1109; UPDATE t2 SET c='five thousand six hundred forty-seven' WHERE a=1110; UPDATE t2 SET c='eighty thousand five hundred sixty-eight' WHERE a=1111; UPDATE t2 SET c='seventy-nine thousand four hundred thirty-six' WHERE a=1112; UPDATE t2 SET c='eighty thousand four hundred fourteen' WHERE a=1113; UPDATE t2 SET c='forty-seven thousand five hundred sixty-one' WHERE a=1114; UPDATE t2 SET c='thirteen thousand nine hundred fifty' WHERE a=1115; UPDATE t2 SET c='sixty-three thousand six hundred ninety-six' WHERE a=1116; UPDATE t2 SET c='seventy thousand nine hundred seventy-three' WHERE a=1117; UPDATE t2 SET c='fifty-six thousand two hundred fifty-seven' WHERE a=1118; UPDATE t2 SET c='ninety thousand five hundred eighty' WHERE a=1119; UPDATE t2 SET c='forty-five thousand seven hundred thirteen' WHERE a=1120; UPDATE t2 SET c='forty-one thousand six hundred ninety-five' WHERE a=1121; UPDATE t2 SET c='sixty-six thousand four hundred fifty-eight' WHERE a=1122; UPDATE t2 SET c='sixty-one thousand nine hundred fifty-seven' WHERE a=1123; UPDATE t2 SET c='five thousand two hundred ninety-two' WHERE a=1124; UPDATE t2 SET c='fifty-seven thousand four hundred twenty-five' WHERE a=1125; UPDATE t2 SET c='sixty-six thousand two hundred sixteen' WHERE a=1126; UPDATE t2 SET c='twelve thousand four' WHERE a=1127; UPDATE t2 SET c='thirty-nine thousand eight hundred twenty' WHERE a=1128; UPDATE t2 SET c='sixty-five thousand two hundred two' WHERE a=1129; UPDATE t2 SET c='eighty-six thousand five hundred forty' WHERE a=1130; UPDATE t2 SET c='five thousand six hundred twenty' WHERE a=1131; UPDATE t2 SET c='ninety-eight thousand five hundred forty-three' WHERE a=1132; UPDATE t2 SET c='twelve thousand eighty-four' WHERE a=1133; UPDATE t2 SET c='forty-two thousand five hundred twenty-three' WHERE a=1134; UPDATE t2 SET c='sixty-one thousand forty-nine' WHERE a=1135; UPDATE t2 SET c='fifty-four thousand two hundred thirty-three' WHERE a=1136; UPDATE t2 SET c='seventy-three thousand one hundred eighty-five' WHERE a=1137; UPDATE t2 SET c='fifty-four thousand nine hundred sixty' WHERE a=1138; UPDATE t2 SET c='seventeen thousand thirty-three' WHERE a=1139; UPDATE t2 SET c='fifty-two thousand four hundred twenty-six' WHERE a=1140; UPDATE t2 SET c='sixty-one thousand one hundred sixty-seven' WHERE a=1141; UPDATE t2 SET c='ninety thousand six hundred thirty' WHERE a=1142; UPDATE t2 SET c='fifteen thousand seventy-three' WHERE a=1143; UPDATE t2 SET c='ninety-five thousand seven hundred thirteen' WHERE a=1144; UPDATE t2 SET c='seventy-two thousand three hundred forty-seven' WHERE a=1145; UPDATE t2 SET c='ninety-seven thousand two hundred thirty-seven' WHERE a=1146; UPDATE t2 SET c='seventy-one thousand one hundred eleven' WHERE a=1147; UPDATE t2 SET c='fifty-nine thousand nine hundred sixty-three' WHERE a=1148; UPDATE t2 SET c='eleven thousand six hundred thirty-nine' WHERE a=1149; UPDATE t2 SET c='fifty-seven thousand five hundred eleven' WHERE a=1150; UPDATE t2 SET c='forty-seven thousand seven hundred eighty-five' WHERE a=1151; UPDATE t2 SET c='twelve thousand six hundred eighty-nine' WHERE a=1152; UPDATE t2 SET c='sixty-six thousand nine hundred seventy-one' WHERE a=1153; UPDATE t2 SET c='fourteen thousand three hundred eighty-four' WHERE a=1154; UPDATE t2 SET c='forty-two thousand eight hundred thirty-six' WHERE a=1155; UPDATE t2 SET c='eighty-seven thousand two hundred forty-three' WHERE a=1156; UPDATE t2 SET c='nine thousand twenty-nine' WHERE a=1157; UPDATE t2 SET c='twenty-nine thousand seven hundred four' WHERE a=1158; UPDATE t2 SET c='ninety-four thousand nine hundred ninety-six' WHERE a=1159; UPDATE t2 SET c='eighty thousand seven hundred six' WHERE a=1160; UPDATE t2 SET c='forty-six thousand two hundred eighty-nine' WHERE a=1161; UPDATE t2 SET c='three thousand ninety-two' WHERE a=1162; UPDATE t2 SET c='thirty-nine thousand two hundred seventy' WHERE a=1163; UPDATE t2 SET c='thirty-eight thousand two hundred ten' WHERE a=1164; UPDATE t2 SET c='ninety-two thousand nine hundred two' WHERE a=1165; UPDATE t2 SET c='fifteen thousand eight hundred thirty-nine' WHERE a=1166; UPDATE t2 SET c='thirty-three thousand one hundred seventy-seven' WHERE a=1167; UPDATE t2 SET c='ninety-one thousand three hundred twenty-five' WHERE a=1168; UPDATE t2 SET c='ninety-four thousand two hundred twenty-one' WHERE a=1169; UPDATE t2 SET c='sixty-one thousand four hundred forty-one' WHERE a=1170; UPDATE t2 SET c='forty-one thousand ten' WHERE a=1171; UPDATE t2 SET c='fifty thousand one hundred sixty-three' WHERE a=1172; UPDATE t2 SET c='eighty-three thousand three hundred sixteen' WHERE a=1173; UPDATE t2 SET c='ninety-seven thousand three hundred eighty-nine' WHERE a=1174; UPDATE t2 SET c='forty-one thousand five hundred forty-five' WHERE a=1175; UPDATE t2 SET c='two thousand sixty-two' WHERE a=1176; UPDATE t2 SET c='forty-one thousand three hundred eighty-six' WHERE a=1177; UPDATE t2 SET c='thirty-three thousand five hundred fifty-eight' WHERE a=1178; UPDATE t2 SET c='forty-five thousand three hundred fifty-six' WHERE a=1179; UPDATE t2 SET c='ninety-two thousand three hundred ninety-six' WHERE a=1180; UPDATE t2 SET c='eighty-four thousand one hundred eight' WHERE a=1181; UPDATE t2 SET c='seventy-four thousand five hundred sixty' WHERE a=1182; UPDATE t2 SET c='forty-nine thousand eight hundred sixty-seven' WHERE a=1183; UPDATE t2 SET c='seventy-four thousand nine hundred fifty-nine' WHERE a=1184; UPDATE t2 SET c='seventy thousand five hundred thirty-one' WHERE a=1185; UPDATE t2 SET c='fifty-eight thousand two hundred thirteen' WHERE a=1186; UPDATE t2 SET c='thirty-five thousand nine hundred eighty-seven' WHERE a=1187; UPDATE t2 SET c='fifty-four thousand four hundred twenty' WHERE a=1188; UPDATE t2 SET c='twenty-nine thousand one hundred ninety-five' WHERE a=1189; UPDATE t2 SET c='eight thousand eight hundred twenty-five' WHERE a=1190; UPDATE t2 SET c='fifty-three thousand six hundred eighty-nine' WHERE a=1191; UPDATE t2 SET c='one thousand seven hundred seventy-two' WHERE a=1192; UPDATE t2 SET c='ninety thousand nine hundred ninety-seven' WHERE a=1193; UPDATE t2 SET c='three thousand six hundred forty-two' WHERE a=1194; UPDATE t2 SET c='thirty-two thousand nine hundred seventy-five' WHERE a=1195; UPDATE t2 SET c='eighty-six thousand thirty-nine' WHERE a=1196; UPDATE t2 SET c='ninety-nine thousand eighty-seven' WHERE a=1197; UPDATE t2 SET c='thirty-four thousand five hundred twenty-five' WHERE a=1198; UPDATE t2 SET c='eighty-six thousand three hundred ninety' WHERE a=1199; UPDATE t2 SET c='eighty-four thousand seven hundred twenty-eight' WHERE a=1200; UPDATE t2 SET c='eighty-five thousand four hundred thirty-eight' WHERE a=1201; UPDATE t2 SET c='eighty-eight thousand one hundred eighty-three' WHERE a=1202; UPDATE t2 SET c='eighty-nine thousand nine hundred seventy-five' WHERE a=1203; UPDATE t2 SET c='forty-eight thousand nine hundred forty-one' WHERE a=1204; UPDATE t2 SET c='twenty-four thousand seven hundred thirty-nine' WHERE a=1205; UPDATE t2 SET c='thirty-two thousand seven hundred ninety-seven' WHERE a=1206; UPDATE t2 SET c='forty-nine thousand six hundred ninety-two' WHERE a=1207; UPDATE t2 SET c='eighty-seven thousand one hundred one' WHERE a=1208; UPDATE t2 SET c='sixteen thousand six hundred fifty-one' WHERE a=1209; UPDATE t2 SET c='fourteen thousand fifty-seven' WHERE a=1210; UPDATE t2 SET c='sixty-seven thousand six hundred thirty-one' WHERE a=1211; UPDATE t2 SET c='seventy-seven thousand eight hundred twenty-nine' WHERE a=1212; UPDATE t2 SET c='sixty-nine thousand two hundred eighty-three' WHERE a=1213; UPDATE t2 SET c='seventy-four thousand four hundred twenty-five' WHERE a=1214; UPDATE t2 SET c='forty-two thousand nine hundred sixty-nine' WHERE a=1215; UPDATE t2 SET c='eighty-seven thousand four hundred twenty-six' WHERE a=1216; UPDATE t2 SET c='sixty-three thousand one hundred twenty-eight' WHERE a=1217; UPDATE t2 SET c='three thousand eight hundred eleven' WHERE a=1218; UPDATE t2 SET c='eighty-one thousand nine hundred twenty-eight' WHERE a=1219; UPDATE t2 SET c='twenty-five thousand two hundred eighty' WHERE a=1220; UPDATE t2 SET c='eighty-two thousand sixty' WHERE a=1221; UPDATE t2 SET c='fifteen thousand two hundred eighteen' WHERE a=1222; UPDATE t2 SET c='three thousand five hundred four' WHERE a=1223; UPDATE t2 SET c='sixty thousand four hundred eighteen' WHERE a=1224; UPDATE t2 SET c='eighty-eight thousand nine hundred thirty-seven' WHERE a=1225; UPDATE t2 SET c='thirty-seven thousand nine hundred nine' WHERE a=1226; UPDATE t2 SET c='seventy thousand six hundred seventy-five' WHERE a=1227; UPDATE t2 SET c='fifty-three thousand six hundred ninety-two' WHERE a=1228; UPDATE t2 SET c='eight thousand one hundred thirty-nine' WHERE a=1229; UPDATE t2 SET c='two hundred forty-two' WHERE a=1230; UPDATE t2 SET c='forty thousand five hundred forty-seven' WHERE a=1231; UPDATE t2 SET c='fifty-two thousand nine hundred nineteen' WHERE a=1232; UPDATE t2 SET c='thirty-eight thousand seven hundred sixty-two' WHERE a=1233; UPDATE t2 SET c='sixty-six thousand eight hundred forty-two' WHERE a=1234; UPDATE t2 SET c='seventy-six thousand two hundred seventy' WHERE a=1235; UPDATE t2 SET c='two thousand six hundred ten' WHERE a=1236; UPDATE t2 SET c='twenty-eight thousand seven hundred nineteen' WHERE a=1237; UPDATE t2 SET c='thirty-nine thousand seven hundred ninety-five' WHERE a=1238; UPDATE t2 SET c='thirty-two thousand two hundred nineteen' WHERE a=1239; UPDATE t2 SET c='forty-five thousand four hundred seventy-three' WHERE a=1240; UPDATE t2 SET c='seventy-one thousand eight hundred twenty-five' WHERE a=1241; UPDATE t2 SET c='eleven thousand six hundred ninety-three' WHERE a=1242; UPDATE t2 SET c='five thousand eight hundred eighty-eight' WHERE a=1243; UPDATE t2 SET c='one thousand one hundred fourteen' WHERE a=1244; UPDATE t2 SET c='sixty-three thousand one hundred fifty-seven' WHERE a=1245; UPDATE t2 SET c='fifty-eight thousand one hundred eighteen' WHERE a=1246; UPDATE t2 SET c='twenty-six thousand one hundred sixteen' WHERE a=1247; UPDATE t2 SET c='forty-four thousand nine hundred eight' WHERE a=1248; UPDATE t2 SET c='forty-nine thousand three hundred eighteen' WHERE a=1249; UPDATE t2 SET c='ninety-six thousand eight hundred fifty' WHERE a=1250; UPDATE t2 SET c='ninety-six thousand one hundred forty-two' WHERE a=1251; UPDATE t2 SET c='one thousand six hundred six' WHERE a=1252; UPDATE t2 SET c='twenty-six thousand six hundred eighty-six' WHERE a=1253; UPDATE t2 SET c='ninety-six thousand nine hundred sixty-three' WHERE a=1254; UPDATE t2 SET c='fifty thousand six hundred fifty-three' WHERE a=1255; UPDATE t2 SET c='two thousand nine hundred sixty-six' WHERE a=1256; UPDATE t2 SET c='seventy-three thousand four hundred ninety-eight' WHERE a=1257; UPDATE t2 SET c='eighty-four thousand six hundred eighty-two' WHERE a=1258; UPDATE t2 SET c='eight thousand eighty-one' WHERE a=1259; UPDATE t2 SET c='thirty-eight thousand six hundred ten' WHERE a=1260; UPDATE t2 SET c='seventy-three thousand nine hundred sixty' WHERE a=1261; UPDATE t2 SET c='thirty-nine thousand six hundred thirteen' WHERE a=1262; UPDATE t2 SET c='eighty-two thousand eight hundred sixty-three' WHERE a=1263; UPDATE t2 SET c='twenty-seven thousand four hundred sixteen' WHERE a=1264; UPDATE t2 SET c='forty thousand nine hundred sixty-eight' WHERE a=1265; UPDATE t2 SET c='ninety-three thousand three hundred fifty-one' WHERE a=1266; UPDATE t2 SET c='fifty thousand four hundred twenty-six' WHERE a=1267; UPDATE t2 SET c='seventy-two thousand eight hundred eighteen' WHERE a=1268; UPDATE t2 SET c='forty thousand eight hundred thirty-four' WHERE a=1269; UPDATE t2 SET c='thirty-one thousand nine hundred forty' WHERE a=1270; UPDATE t2 SET c='twenty-two thousand five hundred twenty-one' WHERE a=1271; UPDATE t2 SET c='fifty thousand seven hundred thirty-four' WHERE a=1272; UPDATE t2 SET c='sixty-eight thousand three hundred forty-seven' WHERE a=1273; UPDATE t2 SET c='fifty-one thousand two hundred eighteen' WHERE a=1274; UPDATE t2 SET c='forty-three thousand fifty-six' WHERE a=1275; UPDATE t2 SET c='fifty-four thousand three hundred three' WHERE a=1276; UPDATE t2 SET c='seventy-three thousand four hundred six' WHERE a=1277; UPDATE t2 SET c='seven thousand five hundred forty-four' WHERE a=1278; UPDATE t2 SET c='sixty-two thousand three hundred sixty-six' WHERE a=1279; UPDATE t2 SET c='thirty-six thousand two hundred eight' WHERE a=1280; UPDATE t2 SET c='eighty-three thousand four hundred sixty-six' WHERE a=1281; UPDATE t2 SET c='twelve thousand eight hundred sixty-three' WHERE a=1282; UPDATE t2 SET c='fourteen thousand thirty-one' WHERE a=1283; UPDATE t2 SET c='fifty-four thousand nine hundred twelve' WHERE a=1284; UPDATE t2 SET c='fifty-four thousand seven hundred twenty-seven' WHERE a=1285; UPDATE t2 SET c='fifty-six thousand four hundred nineteen' WHERE a=1286; UPDATE t2 SET c='two thousand four hundred eighty-nine' WHERE a=1287; UPDATE t2 SET c='seventy-nine thousand eight hundred eight' WHERE a=1288; UPDATE t2 SET c='forty-five thousand two hundred seventy-four' WHERE a=1289; UPDATE t2 SET c='fifty-one thousand one hundred sixty-six' WHERE a=1290; UPDATE t2 SET c='sixty thousand nine hundred ninety-six' WHERE a=1291; UPDATE t2 SET c='thirty-four thousand four hundred sixty-one' WHERE a=1292; UPDATE t2 SET c='eighty-three thousand eight hundred fifty-eight' WHERE a=1293; UPDATE t2 SET c='fifty-seven thousand nine hundred fourteen' WHERE a=1294; UPDATE t2 SET c='forty-two thousand nine hundred thirty-two' WHERE a=1295; UPDATE t2 SET c='sixty-five thousand five hundred forty-two' WHERE a=1296; UPDATE t2 SET c='five thousand three hundred twenty-seven' WHERE a=1297; UPDATE t2 SET c='eighty-seven thousand three hundred eighty-eight' WHERE a=1298; UPDATE t2 SET c='ninety-three thousand seven hundred eighty-nine' WHERE a=1299; UPDATE t2 SET c='ninety-three thousand eight hundred sixty-nine' WHERE a=1300; UPDATE t2 SET c='ninety-seven thousand five hundred eighty-nine' WHERE a=1301; UPDATE t2 SET c='eighty thousand three hundred forty-four' WHERE a=1302; UPDATE t2 SET c='forty-three thousand five hundred nine' WHERE a=1303; UPDATE t2 SET c='seventeen thousand three hundred seventy-four' WHERE a=1304; UPDATE t2 SET c='sixty-eight thousand three hundred seven' WHERE a=1305; UPDATE t2 SET c='eighty-one thousand six' WHERE a=1306; UPDATE t2 SET c='ninety-four thousand one hundred twenty-seven' WHERE a=1307; UPDATE t2 SET c='ninety-two thousand nine hundred nineteen' WHERE a=1308; UPDATE t2 SET c='ninety-two thousand two hundred eighty' WHERE a=1309; UPDATE t2 SET c='forty-six thousand nine hundred ninety-three' WHERE a=1310; UPDATE t2 SET c='ninety-nine thousand eight hundred five' WHERE a=1311; UPDATE t2 SET c='forty-one thousand six hundred fifty-seven' WHERE a=1312; UPDATE t2 SET c='eighty-two thousand seven hundred fifty-four' WHERE a=1313; UPDATE t2 SET c='forty-eight thousand eight hundred seventeen' WHERE a=1314; UPDATE t2 SET c='eighty-six thousand four hundred eighty-two' WHERE a=1315; UPDATE t2 SET c='twenty-five thousand one hundred fifty-three' WHERE a=1316; UPDATE t2 SET c='seventy-seven thousand one hundred fifty-two' WHERE a=1317; UPDATE t2 SET c='seventy-eight thousand seven hundred nine' WHERE a=1318; UPDATE t2 SET c='fifty-five thousand forty-six' WHERE a=1319; UPDATE t2 SET c='ninety-four thousand three hundred sixty-four' WHERE a=1320; UPDATE t2 SET c='fifty-eight thousand fifty' WHERE a=1321; UPDATE t2 SET c='four thousand six hundred forty-five' WHERE a=1322; UPDATE t2 SET c='eight thousand eighty-three' WHERE a=1323; UPDATE t2 SET c='seventy-four thousand two hundred fifty-three' WHERE a=1324; UPDATE t2 SET c='sixty-six thousand fifty-six' WHERE a=1325; UPDATE t2 SET c='twenty-two thousand seven hundred ninety-eight' WHERE a=1326; UPDATE t2 SET c='thirty-five thousand four hundred seventy-five' WHERE a=1327; UPDATE t2 SET c='seventy-three thousand two hundred ninety-four' WHERE a=1328; UPDATE t2 SET c='seventy-five thousand four hundred thirty-six' WHERE a=1329; UPDATE t2 SET c='forty thousand one hundred sixty-eight' WHERE a=1330; UPDATE t2 SET c='ninety-four thousand four hundred twenty-five' WHERE a=1331; UPDATE t2 SET c='thirty-four thousand eight hundred eight' WHERE a=1332; UPDATE t2 SET c='sixty-one thousand nine hundred fifty-one' WHERE a=1333; UPDATE t2 SET c='sixty-seven thousand three hundred eighty-eight' WHERE a=1334; UPDATE t2 SET c='ninety-one thousand two hundred eighty-six' WHERE a=1335; UPDATE t2 SET c='fifty thousand two hundred forty-three' WHERE a=1336; UPDATE t2 SET c='thirty-eight thousand six hundred seventy-seven' WHERE a=1337; UPDATE t2 SET c='thirty-three thousand nine hundred sixty' WHERE a=1338; UPDATE t2 SET c='seventy-eight thousand five hundred seventy-seven' WHERE a=1339; UPDATE t2 SET c='sixty-three thousand five hundred twenty-one' WHERE a=1340; UPDATE t2 SET c='ninety-five thousand eight hundred nine' WHERE a=1341; UPDATE t2 SET c='forty-five thousand six hundred fifty-four' WHERE a=1342; UPDATE t2 SET c='twenty-seven thousand one hundred six' WHERE a=1343; UPDATE t2 SET c='eight thousand seven hundred five' WHERE a=1344; UPDATE t2 SET c='twenty-five thousand one hundred fifty-six' WHERE a=1345; UPDATE t2 SET c='forty-two thousand eight hundred fifty-two' WHERE a=1346; UPDATE t2 SET c='fifteen thousand one hundred sixteen' WHERE a=1347; UPDATE t2 SET c='sixty-eight thousand nine hundred sixty-five' WHERE a=1348; UPDATE t2 SET c='forty-five thousand five hundred fourteen' WHERE a=1349; UPDATE t2 SET c='eighty-one thousand seven hundred eighty-seven' WHERE a=1350; UPDATE t2 SET c='twenty-seven thousand four hundred forty' WHERE a=1351; UPDATE t2 SET c='eighty-four thousand five hundred seven' WHERE a=1352; UPDATE t2 SET c='sixty-two thousand six hundred eleven' WHERE a=1353; UPDATE t2 SET c='sixty-three thousand two hundred seventy-three' WHERE a=1354; UPDATE t2 SET c='forty-three thousand one hundred eighteen' WHERE a=1355; UPDATE t2 SET c='forty-nine thousand three hundred fifty' WHERE a=1356; UPDATE t2 SET c='ten thousand seventy-three' WHERE a=1357; UPDATE t2 SET c='fifty-six thousand four hundred ninety-three' WHERE a=1358; UPDATE t2 SET c='three thousand six hundred sixty-six' WHERE a=1359; UPDATE t2 SET c='fifty thousand four hundred seventy-four' WHERE a=1360; UPDATE t2 SET c='ninety-one thousand eight hundred twelve' WHERE a=1361; UPDATE t2 SET c='eight thousand seven hundred twenty-six' WHERE a=1362; UPDATE t2 SET c='two thousand seven hundred seventy' WHERE a=1363; UPDATE t2 SET c='ninety-eight thousand fifty-three' WHERE a=1364; UPDATE t2 SET c='seventy-seven thousand eight hundred twenty-four' WHERE a=1365; UPDATE t2 SET c='seventy-two thousand five hundred forty-nine' WHERE a=1366; UPDATE t2 SET c='four hundred eighty-nine' WHERE a=1367; UPDATE t2 SET c='thirty thousand seven hundred thirty-eight' WHERE a=1368; UPDATE t2 SET c='sixty thousand five hundred eighty-eight' WHERE a=1369; UPDATE t2 SET c='twenty-seven thousand eight hundred ninety-nine' WHERE a=1370; UPDATE t2 SET c='thirty-two thousand ninety-six' WHERE a=1371; UPDATE t2 SET c='sixty-four thousand six hundred thirty' WHERE a=1372; UPDATE t2 SET c='fifty-three thousand one hundred ninety-one' WHERE a=1373; UPDATE t2 SET c='fifty-six thousand three hundred fifty-three' WHERE a=1374; UPDATE t2 SET c='seventeen thousand seven hundred thirty-one' WHERE a=1375; UPDATE t2 SET c='twenty-nine thousand two hundred fifty-two' WHERE a=1376; UPDATE t2 SET c='five thousand one hundred eighty-nine' WHERE a=1377; UPDATE t2 SET c='five thousand eight hundred sixty-three' WHERE a=1378; UPDATE t2 SET c='two thousand seventy-seven' WHERE a=1379; UPDATE t2 SET c='forty-six thousand seven hundred seven' WHERE a=1380; UPDATE t2 SET c='eight thousand one hundred sixty-two' WHERE a=1381; UPDATE t2 SET c='forty-five thousand eight hundred fifty' WHERE a=1382; UPDATE t2 SET c='eighty-two thousand eight hundred forty-three' WHERE a=1383; UPDATE t2 SET c='ninety-three thousand three hundred twenty-four' WHERE a=1384; UPDATE t2 SET c='seventy-eight thousand seven hundred thirty-two' WHERE a=1385; UPDATE t2 SET c='twelve thousand six hundred thirty-three' WHERE a=1386; UPDATE t2 SET c='eighty-one thousand seven hundred fifty-three' WHERE a=1387; UPDATE t2 SET c='ninety-two thousand four hundred eleven' WHERE a=1388; UPDATE t2 SET c='seventy-three thousand seven hundred eighty-one' WHERE a=1389; UPDATE t2 SET c='forty-five thousand three hundred fifty-eight' WHERE a=1390; UPDATE t2 SET c='fifty-one thousand four hundred thirty-seven' WHERE a=1391; UPDATE t2 SET c='fifty-seven thousand nine hundred eighty-one' WHERE a=1392; UPDATE t2 SET c='seventy thousand two hundred seventy-two' WHERE a=1393; UPDATE t2 SET c='forty thousand nine hundred fifty-four' WHERE a=1394; UPDATE t2 SET c='eighty-two thousand six hundred twenty-seven' WHERE a=1395; UPDATE t2 SET c='eighty-four thousand nine hundred twelve' WHERE a=1396; UPDATE t2 SET c='thirty-nine thousand six hundred sixty-nine' WHERE a=1397; UPDATE t2 SET c='ninety-eight thousand three hundred forty-five' WHERE a=1398; UPDATE t2 SET c='sixty-one thousand one hundred ninety-six' WHERE a=1399; UPDATE t2 SET c='seventy-seven thousand five hundred ninety-six' WHERE a=1400; UPDATE t2 SET c='two thousand ninety-nine' WHERE a=1401; UPDATE t2 SET c='eighty-two thousand six hundred fifteen' WHERE a=1402; UPDATE t2 SET c='fifty-one thousand six hundred thirty-five' WHERE a=1403; UPDATE t2 SET c='forty-one thousand sixty-seven' WHERE a=1404; UPDATE t2 SET c='thirty thousand six hundred seventy-two' WHERE a=1405; UPDATE t2 SET c='ninety-six thousand seven hundred fifty-two' WHERE a=1406; UPDATE t2 SET c='eighty-five thousand three hundred forty-six' WHERE a=1407; UPDATE t2 SET c='twenty-nine thousand two hundred thirty-one' WHERE a=1408; UPDATE t2 SET c='sixty-six thousand four hundred thirteen' WHERE a=1409; UPDATE t2 SET c='forty thousand four hundred ninety-five' WHERE a=1410; UPDATE t2 SET c='eighty-three thousand four hundred twenty' WHERE a=1411; UPDATE t2 SET c='ninety-one thousand six hundred one' WHERE a=1412; UPDATE t2 SET c='eighteen thousand eight hundred seventy-three' WHERE a=1413; UPDATE t2 SET c='ninety-three thousand six hundred thirteen' WHERE a=1414; UPDATE t2 SET c='seventeen thousand four hundred eighty-one' WHERE a=1415; UPDATE t2 SET c='eighty-nine thousand four hundred seventy-two' WHERE a=1416; UPDATE t2 SET c='thirty-four thousand two hundred fifty-three' WHERE a=1417; UPDATE t2 SET c='six thousand two hundred sixty-five' WHERE a=1418; UPDATE t2 SET c='four thousand eight hundred ten' WHERE a=1419; UPDATE t2 SET c='forty-four thousand eight hundred sixty-eight' WHERE a=1420; UPDATE t2 SET c='three hundred thirteen' WHERE a=1421; UPDATE t2 SET c='twenty-three thousand seven hundred fifteen' WHERE a=1422; UPDATE t2 SET c='forty-nine thousand two hundred seventy' WHERE a=1423; UPDATE t2 SET c='four thousand eight hundred forty-three' WHERE a=1424; UPDATE t2 SET c='ninety-five thousand nine hundred seventy-three' WHERE a=1425; UPDATE t2 SET c='fifty-one thousand four hundred sixty-eight' WHERE a=1426; UPDATE t2 SET c='nine thousand ninety-eight' WHERE a=1427; UPDATE t2 SET c='eighty-seven thousand two hundred twenty-six' WHERE a=1428; UPDATE t2 SET c='eighty-one thousand nine hundred sixty-one' WHERE a=1429; UPDATE t2 SET c='thirty-six thousand six hundred twenty-three' WHERE a=1430; UPDATE t2 SET c='fifty-four thousand seven hundred fifty-five' WHERE a=1431; UPDATE t2 SET c='sixty-nine thousand one hundred fourteen' WHERE a=1432; UPDATE t2 SET c='twenty-two thousand nine hundred ninety-seven' WHERE a=1433; UPDATE t2 SET c='fifty-five thousand three hundred thirteen' WHERE a=1434; UPDATE t2 SET c='eighteen thousand one hundred three' WHERE a=1435; UPDATE t2 SET c='fifty-seven thousand four hundred fifty-two' WHERE a=1436; UPDATE t2 SET c='sixty-three thousand one hundred thirty-four' WHERE a=1437; UPDATE t2 SET c='ninety-two thousand two hundred thirty-six' WHERE a=1438; UPDATE t2 SET c='thirty thousand ninety-three' WHERE a=1439; UPDATE t2 SET c='thirteen thousand one hundred thirty' WHERE a=1440; UPDATE t2 SET c='forty-seven thousand nine hundred forty-three' WHERE a=1441; UPDATE t2 SET c='forty-eight thousand one hundred sixty' WHERE a=1442; UPDATE t2 SET c='thirty-eight thousand seventeen' WHERE a=1443; UPDATE t2 SET c='eighteen thousand one hundred seventeen' WHERE a=1444; UPDATE t2 SET c='forty-three thousand four hundred ninety' WHERE a=1445; UPDATE t2 SET c='thirty-four thousand seven hundred ten' WHERE a=1446; UPDATE t2 SET c='sixty-eight thousand six hundred eighty-seven' WHERE a=1447; UPDATE t2 SET c='eighty thousand seven hundred ninety-eight' WHERE a=1448; UPDATE t2 SET c='ninety thousand forty-eight' WHERE a=1449; UPDATE t2 SET c='twenty-three thousand five hundred forty-three' WHERE a=1450; UPDATE t2 SET c='ninety-nine thousand five hundred seventy' WHERE a=1451; UPDATE t2 SET c='seventy-five thousand one hundred twenty-three' WHERE a=1452; UPDATE t2 SET c='sixty-nine thousand sixty-one' WHERE a=1453; UPDATE t2 SET c='fifty-eight thousand two hundred eighty-three' WHERE a=1454; UPDATE t2 SET c='thirty-one thousand four hundred six' WHERE a=1455; UPDATE t2 SET c='fifty-two thousand nine hundred seventy' WHERE a=1456; UPDATE t2 SET c='sixty-nine thousand five hundred fifty-two' WHERE a=1457; UPDATE t2 SET c='seventeen thousand two hundred fifty-nine' WHERE a=1458; UPDATE t2 SET c='seventy-two thousand six hundred fifty-four' WHERE a=1459; UPDATE t2 SET c='forty-eight thousand three hundred sixty' WHERE a=1460; UPDATE t2 SET c='eighty-eight thousand four hundred eighty-three' WHERE a=1461; UPDATE t2 SET c='one thousand three hundred thirty-two' WHERE a=1462; UPDATE t2 SET c='eighty-seven thousand four hundred thirteen' WHERE a=1463; UPDATE t2 SET c='five thousand four hundred seventy-four' WHERE a=1464; UPDATE t2 SET c='twenty-one thousand seven hundred fifty' WHERE a=1465; UPDATE t2 SET c='twenty-two thousand four hundred fifty-one' WHERE a=1466; UPDATE t2 SET c='twenty-eight thousand two hundred one' WHERE a=1467; UPDATE t2 SET c='sixty-two thousand four hundred twenty-five' WHERE a=1468; UPDATE t2 SET c='thirty-seven thousand six hundred thirty-one' WHERE a=1469; UPDATE t2 SET c='ninety-seven thousand nine hundred seventy-three' WHERE a=1470; UPDATE t2 SET c='seventy-two thousand eight hundred ninety-one' WHERE a=1471; UPDATE t2 SET c='eighty-five thousand six hundred thirty-five' WHERE a=1472; UPDATE t2 SET c='ninety-five thousand seven hundred seventy-four' WHERE a=1473; UPDATE t2 SET c='fifteen thousand eight hundred forty-one' WHERE a=1474; UPDATE t2 SET c='ninety-six thousand nine hundred thirteen' WHERE a=1475; UPDATE t2 SET c='fourteen thousand one hundred twenty-nine' WHERE a=1476; UPDATE t2 SET c='ninety-eight thousand two hundred forty-six' WHERE a=1477; UPDATE t2 SET c='ninety-nine thousand seven hundred sixty-seven' WHERE a=1478; UPDATE t2 SET c='three thousand seven hundred eighty-seven' WHERE a=1479; UPDATE t2 SET c='fifty-nine thousand two hundred sixteen' WHERE a=1480; UPDATE t2 SET c='eighteen thousand two hundred seventy-three' WHERE a=1481; UPDATE t2 SET c='eighty-six thousand three hundred thirty-eight' WHERE a=1482; UPDATE t2 SET c='ninety thousand three hundred twenty-four' WHERE a=1483; UPDATE t2 SET c='sixty-three thousand six hundred eighty-four' WHERE a=1484; UPDATE t2 SET c='sixteen thousand three hundred fifty-one' WHERE a=1485; UPDATE t2 SET c='seventy-two thousand three hundred fifteen' WHERE a=1486; UPDATE t2 SET c='fifty-five thousand seven' WHERE a=1487; UPDATE t2 SET c='twenty-seven thousand two hundred seventy-seven' WHERE a=1488; UPDATE t2 SET c='seventy-six thousand fourteen' WHERE a=1489; UPDATE t2 SET c='sixty-two thousand one hundred four' WHERE a=1490; UPDATE t2 SET c='twenty-four thousand sixty-four' WHERE a=1491; UPDATE t2 SET c='sixty-three thousand two hundred eighty-nine' WHERE a=1492; UPDATE t2 SET c='fifty-eight thousand seven hundred sixteen' WHERE a=1493; UPDATE t2 SET c='forty-three thousand five hundred sixty-two' WHERE a=1494; UPDATE t2 SET c='fifty-six thousand ninety-two' WHERE a=1495; UPDATE t2 SET c='forty thousand three hundred ten' WHERE a=1496; UPDATE t2 SET c='eleven thousand one hundred eighty-seven' WHERE a=1497; UPDATE t2 SET c='three hundred sixty-two' WHERE a=1498; UPDATE t2 SET c='ninety-five thousand ninety-seven' WHERE a=1499; UPDATE t2 SET c='eight thousand six hundred fifty-two' WHERE a=1500; UPDATE t2 SET c='twenty-three thousand four hundred ninety-six' WHERE a=1501; UPDATE t2 SET c='twenty-one thousand eight hundred thirty-seven' WHERE a=1502; UPDATE t2 SET c='seventy-four thousand four hundred ninety-four' WHERE a=1503; UPDATE t2 SET c='nineteen thousand six hundred thirty-six' WHERE a=1504; UPDATE t2 SET c='twenty-three thousand' WHERE a=1505; UPDATE t2 SET c='fourteen thousand eight hundred four' WHERE a=1506; UPDATE t2 SET c='forty thousand sixty-nine' WHERE a=1507; UPDATE t2 SET c='ninety-four thousand nine hundred sixteen' WHERE a=1508; UPDATE t2 SET c='eight thousand nine hundred twenty-eight' WHERE a=1509; UPDATE t2 SET c='eight thousand three hundred one' WHERE a=1510; UPDATE t2 SET c='eighty thousand eight hundred eighty-one' WHERE a=1511; UPDATE t2 SET c='forty-one thousand one hundred fifty-six' WHERE a=1512; UPDATE t2 SET c='fifteen thousand four hundred twenty' WHERE a=1513; UPDATE t2 SET c='ninety-two thousand four hundred eighty-one' WHERE a=1514; UPDATE t2 SET c='eight thousand sixty-one' WHERE a=1515; UPDATE t2 SET c='eighty-three thousand eight hundred thirty-four' WHERE a=1516; UPDATE t2 SET c='sixty-one thousand' WHERE a=1517; UPDATE t2 SET c='ninety-one thousand nine hundred eighty-two' WHERE a=1518; UPDATE t2 SET c='seventy-one thousand three hundred thirty-four' WHERE a=1519; UPDATE t2 SET c='fifty-six thousand thirty-four' WHERE a=1520; UPDATE t2 SET c='sixty-six thousand five hundred twenty-one' WHERE a=1521; UPDATE t2 SET c='fifty-seven thousand two hundred sixty-five' WHERE a=1522; UPDATE t2 SET c='twenty-two thousand seven hundred eighty' WHERE a=1523; UPDATE t2 SET c='nine thousand eight hundred ninety-seven' WHERE a=1524; UPDATE t2 SET c='sixty-five thousand one hundred twenty-five' WHERE a=1525; UPDATE t2 SET c='thirty-nine thousand five hundred eighty-eight' WHERE a=1526; UPDATE t2 SET c='thirty thousand five hundred fifty-two' WHERE a=1527; UPDATE t2 SET c='twenty-one thousand six hundred forty-one' WHERE a=1528; UPDATE t2 SET c='ninety-four thousand one hundred seventy-six' WHERE a=1529; UPDATE t2 SET c='seventy-seven thousand four hundred six' WHERE a=1530; UPDATE t2 SET c='eighty thousand nine hundred twenty-two' WHERE a=1531; UPDATE t2 SET c='ninety-two thousand five hundred fifty-three' WHERE a=1532; UPDATE t2 SET c='nine thousand four hundred fifty' WHERE a=1533; UPDATE t2 SET c='seventy-one thousand six hundred ninety-one' WHERE a=1534; UPDATE t2 SET c='thirty-five thousand seven hundred five' WHERE a=1535; UPDATE t2 SET c='twenty-five thousand six hundred sixty-six' WHERE a=1536; UPDATE t2 SET c='twenty-one thousand six hundred ninety-nine' WHERE a=1537; UPDATE t2 SET c='nine thousand nine hundred fifty-five' WHERE a=1538; UPDATE t2 SET c='fifty-five thousand eight hundred eighteen' WHERE a=1539; UPDATE t2 SET c='fifty-six thousand four hundred eighty-three' WHERE a=1540; UPDATE t2 SET c='forty-three thousand five hundred ninety-two' WHERE a=1541; UPDATE t2 SET c='fifty-four thousand nine hundred forty-eight' WHERE a=1542; UPDATE t2 SET c='fifty-six thousand six hundred sixty-eight' WHERE a=1543; UPDATE t2 SET c='forty-three thousand five hundred seventy-six' WHERE a=1544; UPDATE t2 SET c='fifty-two thousand seven hundred thirty-eight' WHERE a=1545; UPDATE t2 SET c='forty-nine thousand six hundred eight' WHERE a=1546; UPDATE t2 SET c='twenty thousand two hundred ninety-two' WHERE a=1547; UPDATE t2 SET c='thirty-eight thousand six hundred five' WHERE a=1548; UPDATE t2 SET c='nineteen thousand four hundred three' WHERE a=1549; UPDATE t2 SET c='forty-one thousand eight hundred ten' WHERE a=1550; UPDATE t2 SET c='eighty-nine thousand five hundred twenty-six' WHERE a=1551; UPDATE t2 SET c='forty-nine thousand two hundred seventy-one' WHERE a=1552; UPDATE t2 SET c='sixty thousand two' WHERE a=1553; UPDATE t2 SET c='eighty-five thousand seven hundred seventy-five' WHERE a=1554; UPDATE t2 SET c='ninety thousand six hundred seventy-five' WHERE a=1555; UPDATE t2 SET c='seventeen thousand five hundred fifty-three' WHERE a=1556; UPDATE t2 SET c='eighty-six thousand six hundred sixty-seven' WHERE a=1557; UPDATE t2 SET c='thirty-eight thousand seven hundred seventy-one' WHERE a=1558; UPDATE t2 SET c='seventy-six thousand two hundred fifty-nine' WHERE a=1559; UPDATE t2 SET c='eighty-two thousand seven hundred forty' WHERE a=1560; UPDATE t2 SET c='seventy-one thousand four hundred seventy-nine' WHERE a=1561; UPDATE t2 SET c='seventy thousand five hundred seventy-eight' WHERE a=1562; UPDATE t2 SET c='sixty-nine thousand six hundred four' WHERE a=1563; UPDATE t2 SET c='fifteen thousand six hundred forty-eight' WHERE a=1564; UPDATE t2 SET c='seventy-five thousand three hundred forty-seven' WHERE a=1565; UPDATE t2 SET c='forty-nine thousand two hundred thirty-two' WHERE a=1566; UPDATE t2 SET c='thirty thousand eight hundred sixty-eight' WHERE a=1567; UPDATE t2 SET c='thirty-six thousand six hundred eighty-six' WHERE a=1568; UPDATE t2 SET c='seventy-six thousand two hundred twelve' WHERE a=1569; UPDATE t2 SET c='seventy-six thousand eight hundred seventy' WHERE a=1570; UPDATE t2 SET c='eleven thousand eight hundred fifty-nine' WHERE a=1571; UPDATE t2 SET c='forty-four thousand four hundred eighty-seven' WHERE a=1572; UPDATE t2 SET c='thirty-seven thousand seven hundred twenty' WHERE a=1573; UPDATE t2 SET c='thirty-seven thousand seven hundred eighty-three' WHERE a=1574; UPDATE t2 SET c='thirteen thousand nine hundred thirty' WHERE a=1575; UPDATE t2 SET c='sixteen thousand thirteen' WHERE a=1576; UPDATE t2 SET c='thirty-five thousand eight hundred thirty-four' WHERE a=1577; UPDATE t2 SET c='thirty-two thousand six hundred forty-two' WHERE a=1578; UPDATE t2 SET c='twelve thousand six hundred twenty' WHERE a=1579; UPDATE t2 SET c='thirty-nine thousand seven hundred fourteen' WHERE a=1580; UPDATE t2 SET c='eighty-two thousand one hundred eleven' WHERE a=1581; UPDATE t2 SET c='forty-one thousand seventy-six' WHERE a=1582; UPDATE t2 SET c='eighty-four thousand five hundred fifty-nine' WHERE a=1583; UPDATE t2 SET c='ninety-two thousand five hundred twenty-five' WHERE a=1584; UPDATE t2 SET c='nine thousand seven hundred ninety' WHERE a=1585; UPDATE t2 SET c='fifty-one thousand ninety-four' WHERE a=1586; UPDATE t2 SET c='eighty-six thousand one hundred fifty-four' WHERE a=1587; UPDATE t2 SET c='sixty-three thousand one hundred five' WHERE a=1588; UPDATE t2 SET c='twenty-eight thousand one hundred seventy-three' WHERE a=1589; UPDATE t2 SET c='thirty thousand seven hundred seventy-six' WHERE a=1590; UPDATE t2 SET c='sixty-four thousand six hundred twenty-nine' WHERE a=1591; UPDATE t2 SET c='forty-nine thousand three hundred ninety-four' WHERE a=1592; UPDATE t2 SET c='three thousand five hundred thirty-three' WHERE a=1593; UPDATE t2 SET c='eleven thousand' WHERE a=1594; UPDATE t2 SET c='fifty thousand seven hundred twenty-eight' WHERE a=1595; UPDATE t2 SET c='fifty-one thousand one hundred twenty-nine' WHERE a=1596; UPDATE t2 SET c='forty thousand five hundred eighty-four' WHERE a=1597; UPDATE t2 SET c='fifty-nine thousand three hundred thirteen' WHERE a=1598; UPDATE t2 SET c='thirty-four thousand three hundred ten' WHERE a=1599; UPDATE t2 SET c='seventy-four thousand six hundred seventy-three' WHERE a=1600; UPDATE t2 SET c='fifty-seven thousand seven hundred twenty-nine' WHERE a=1601; UPDATE t2 SET c='twenty thousand five' WHERE a=1602; UPDATE t2 SET c='eighty-one thousand nine hundred thirty-five' WHERE a=1603; UPDATE t2 SET c='thirty-seven thousand seventy' WHERE a=1604; UPDATE t2 SET c='eighteen thousand five hundred twenty' WHERE a=1605; UPDATE t2 SET c='fifty-eight thousand seven hundred forty-three' WHERE a=1606; UPDATE t2 SET c='twenty-nine thousand eight hundred twenty-nine' WHERE a=1607; UPDATE t2 SET c='eighty thousand eight hundred seventy-nine' WHERE a=1608; UPDATE t2 SET c='forty-one thousand four hundred ninety-seven' WHERE a=1609; UPDATE t2 SET c='ninety-eight thousand one hundred sixty-nine' WHERE a=1610; UPDATE t2 SET c='ninety-three thousand three hundred eight' WHERE a=1611; UPDATE t2 SET c='eighty-nine thousand six hundred ninety-nine' WHERE a=1612; UPDATE t2 SET c='fifty thousand three hundred ninety-four' WHERE a=1613; UPDATE t2 SET c='fifty-seven thousand six hundred twelve' WHERE a=1614; UPDATE t2 SET c='three thousand five hundred sixty-nine' WHERE a=1615; UPDATE t2 SET c='twenty thousand six hundred sixty-eight' WHERE a=1616; UPDATE t2 SET c='ninety-three thousand eleven' WHERE a=1617; UPDATE t2 SET c='twenty-six thousand six hundred six' WHERE a=1618; UPDATE t2 SET c='fifty-three thousand nine hundred eight' WHERE a=1619; UPDATE t2 SET c='forty-seven thousand six hundred thirty-three' WHERE a=1620; UPDATE t2 SET c='forty thousand four hundred seventy-three' WHERE a=1621; UPDATE t2 SET c='eighty-one thousand nine hundred seventy-two' WHERE a=1622; UPDATE t2 SET c='twenty-three thousand three hundred four' WHERE a=1623; UPDATE t2 SET c='thirty-eight thousand two hundred forty-four' WHERE a=1624; UPDATE t2 SET c='thirty-eight thousand five hundred eighty-eight' WHERE a=1625; UPDATE t2 SET c='seventy-one thousand seven hundred three' WHERE a=1626; UPDATE t2 SET c='seventy-three thousand twenty-six' WHERE a=1627; UPDATE t2 SET c='twenty-one thousand three hundred fifty-eight' WHERE a=1628; UPDATE t2 SET c='forty-seven thousand one hundred eight' WHERE a=1629; UPDATE t2 SET c='ninety-three thousand two hundred thirty-four' WHERE a=1630; UPDATE t2 SET c='eighty-two thousand seven hundred twenty' WHERE a=1631; UPDATE t2 SET c='twelve thousand seventy-four' WHERE a=1632; UPDATE t2 SET c='seventy-one thousand four hundred ninety-nine' WHERE a=1633; UPDATE t2 SET c='fifteen thousand two hundred sixty-two' WHERE a=1634; UPDATE t2 SET c='thirty-three thousand eighteen' WHERE a=1635; UPDATE t2 SET c='fifty-one thousand fifty-nine' WHERE a=1636; UPDATE t2 SET c='eighty-nine thousand four hundred four' WHERE a=1637; UPDATE t2 SET c='eighty-two thousand two hundred thirty-nine' WHERE a=1638; UPDATE t2 SET c='forty-five thousand six hundred nine' WHERE a=1639; UPDATE t2 SET c='ninety-three thousand fifty-six' WHERE a=1640; UPDATE t2 SET c='eighty-nine thousand one hundred seventy-eight' WHERE a=1641; UPDATE t2 SET c='eighty-nine thousand nine hundred sixty-two' WHERE a=1642; UPDATE t2 SET c='ninety-six thousand seventy-four' WHERE a=1643; UPDATE t2 SET c='eighty-seven thousand one hundred ninety-four' WHERE a=1644; UPDATE t2 SET c='ninety-six thousand three hundred fifty-nine' WHERE a=1645; UPDATE t2 SET c='ninety-six thousand five hundred five' WHERE a=1646; UPDATE t2 SET c='ninety-six thousand thirty-four' WHERE a=1647; UPDATE t2 SET c='seventy-nine thousand four hundred thirty-eight' WHERE a=1648; UPDATE t2 SET c='seventeen thousand one' WHERE a=1649; UPDATE t2 SET c='fifteen thousand six hundred eight' WHERE a=1650; UPDATE t2 SET c='forty-nine thousand four hundred one' WHERE a=1651; UPDATE t2 SET c='fifty-six thousand five hundred fifty-six' WHERE a=1652; UPDATE t2 SET c='twenty-four thousand seven hundred eleven' WHERE a=1653; UPDATE t2 SET c='eighty-seven thousand two hundred eighty-four' WHERE a=1654; UPDATE t2 SET c='ten thousand four hundred eighty-five' WHERE a=1655; UPDATE t2 SET c='eleven thousand two hundred fifty-three' WHERE a=1656; UPDATE t2 SET c='one thousand nine hundred twenty-three' WHERE a=1657; UPDATE t2 SET c='seventy-eight thousand five hundred eighty-five' WHERE a=1658; UPDATE t2 SET c='sixty-eight thousand five hundred thirty-five' WHERE a=1659; UPDATE t2 SET c='ninety-eight thousand five hundred fifty' WHERE a=1660; UPDATE t2 SET c='twenty-six thousand four hundred nineteen' WHERE a=1661; UPDATE t2 SET c='five thousand two hundred sixty-two' WHERE a=1662; UPDATE t2 SET c='eleven thousand six hundred sixty-seven' WHERE a=1663; UPDATE t2 SET c='eighty-five thousand four hundred sixty-three' WHERE a=1664; UPDATE t2 SET c='sixty-two thousand nine hundred eighteen' WHERE a=1665; UPDATE t2 SET c='eighty-three thousand forty-two' WHERE a=1666; UPDATE t2 SET c='seventy-eight thousand three hundred forty-two' WHERE a=1667; UPDATE t2 SET c='fifty-six thousand six hundred twelve' WHERE a=1668; UPDATE t2 SET c='forty-four thousand seven hundred ninety-nine' WHERE a=1669; UPDATE t2 SET c='sixty-eight thousand seven hundred ninety-seven' WHERE a=1670; UPDATE t2 SET c='seventy-one thousand nine hundred forty-three' WHERE a=1671; UPDATE t2 SET c='eighty-one thousand seven hundred twenty-two' WHERE a=1672; UPDATE t2 SET c='eighty-three thousand four hundred seventy-two' WHERE a=1673; UPDATE t2 SET c='forty-nine thousand forty-seven' WHERE a=1674; UPDATE t2 SET c='ninety-three thousand two hundred fifty' WHERE a=1675; UPDATE t2 SET c='four thousand six hundred sixteen' WHERE a=1676; UPDATE t2 SET c='eighty-three thousand six hundred eighty-one' WHERE a=1677; UPDATE t2 SET c='fifteen thousand two hundred fifty-three' WHERE a=1678; UPDATE t2 SET c='sixteen thousand seven hundred seventy-four' WHERE a=1679; UPDATE t2 SET c='seventy-nine thousand two hundred fifty' WHERE a=1680; UPDATE t2 SET c='sixty thousand three hundred thirty' WHERE a=1681; UPDATE t2 SET c='ninety-one thousand three hundred eight' WHERE a=1682; UPDATE t2 SET c='twenty-four thousand seven hundred ninety-nine' WHERE a=1683; UPDATE t2 SET c='forty-eight thousand seven hundred forty' WHERE a=1684; UPDATE t2 SET c='twenty thousand six hundred eighteen' WHERE a=1685; UPDATE t2 SET c='twenty-two thousand two hundred ninety' WHERE a=1686; UPDATE t2 SET c='seventy-three thousand six hundred eight' WHERE a=1687; UPDATE t2 SET c='seventeen thousand nine hundred twenty-seven' WHERE a=1688; UPDATE t2 SET c='sixty-seven thousand four hundred sixty-three' WHERE a=1689; UPDATE t2 SET c='eighty-nine thousand two hundred ninety-one' WHERE a=1690; UPDATE t2 SET c='twenty-one thousand two hundred seventy-seven' WHERE a=1691; UPDATE t2 SET c='eighty-one thousand ninety-seven' WHERE a=1692; UPDATE t2 SET c='fifty-one thousand six hundred fifty-four' WHERE a=1693; UPDATE t2 SET c='eighty-two thousand one hundred ninety-seven' WHERE a=1694; UPDATE t2 SET c='sixteen thousand ninety-one' WHERE a=1695; UPDATE t2 SET c='sixty-two thousand five hundred thirty-five' WHERE a=1696; UPDATE t2 SET c='eighty-four thousand one hundred thirty-nine' WHERE a=1697; UPDATE t2 SET c='twenty-one thousand two hundred forty-five' WHERE a=1698; UPDATE t2 SET c='ninety-three thousand one hundred fifty-one' WHERE a=1699; UPDATE t2 SET c='twenty-five thousand three hundred twenty-eight' WHERE a=1700; UPDATE t2 SET c='one thousand six hundred seventeen' WHERE a=1701; UPDATE t2 SET c='twenty-five thousand eight hundred nine' WHERE a=1702; UPDATE t2 SET c='ninety-four thousand six hundred twenty-five' WHERE a=1703; UPDATE t2 SET c='eighty-eight thousand one hundred thirty-seven' WHERE a=1704; UPDATE t2 SET c='sixty-two thousand six hundred forty' WHERE a=1705; UPDATE t2 SET c='eighteen thousand seven hundred fifteen' WHERE a=1706; UPDATE t2 SET c='forty-three thousand five hundred thirteen' WHERE a=1707; UPDATE t2 SET c='eighty-one thousand two hundred four' WHERE a=1708; UPDATE t2 SET c='ten thousand three hundred thirty-nine' WHERE a=1709; UPDATE t2 SET c='thirteen thousand six hundred ninety-six' WHERE a=1710; UPDATE t2 SET c='ninety-nine thousand seven hundred fifty-six' WHERE a=1711; UPDATE t2 SET c='forty-seven thousand seven hundred seventy' WHERE a=1712; UPDATE t2 SET c='fifty-one thousand four hundred ten' WHERE a=1713; UPDATE t2 SET c='eighty-six thousand four hundred thirty-one' WHERE a=1714; UPDATE t2 SET c='eighteen thousand four hundred sixteen' WHERE a=1715; UPDATE t2 SET c='fifty-three thousand nine hundred fifty-eight' WHERE a=1716; UPDATE t2 SET c='sixty-two thousand sixty-six' WHERE a=1717; UPDATE t2 SET c='sixty-one thousand six hundred nine' WHERE a=1718; UPDATE t2 SET c='seventy-five thousand nine hundred forty-two' WHERE a=1719; UPDATE t2 SET c='fifty-two thousand six hundred seventy-seven' WHERE a=1720; UPDATE t2 SET c='sixty-one thousand nine hundred fifty-eight' WHERE a=1721; UPDATE t2 SET c='twenty-eight thousand fifteen' WHERE a=1722; UPDATE t2 SET c='twenty-eight thousand six hundred fifty-seven' WHERE a=1723; UPDATE t2 SET c='twenty-nine thousand nine hundred sixty-nine' WHERE a=1724; UPDATE t2 SET c='fifty-four thousand eight hundred thirty-seven' WHERE a=1725; UPDATE t2 SET c='seventy-three thousand one hundred eight' WHERE a=1726; UPDATE t2 SET c='forty-seven thousand nine hundred eighty-five' WHERE a=1727; UPDATE t2 SET c='nine thousand twenty-eight' WHERE a=1728; UPDATE t2 SET c='fifty-two thousand five hundred ninety-nine' WHERE a=1729; UPDATE t2 SET c='seventy-three thousand one hundred fifteen' WHERE a=1730; UPDATE t2 SET c='nineteen thousand two hundred eleven' WHERE a=1731; UPDATE t2 SET c='eighty-three thousand nine' WHERE a=1732; UPDATE t2 SET c='eight thousand two hundred thirty-seven' WHERE a=1733; UPDATE t2 SET c='ninety-three thousand seven hundred twenty-five' WHERE a=1734; UPDATE t2 SET c='twenty-four thousand two hundred thirty-one' WHERE a=1735; UPDATE t2 SET c='ninety-six thousand four hundred twenty' WHERE a=1736; UPDATE t2 SET c='sixty-eight thousand one hundred seven' WHERE a=1737; UPDATE t2 SET c='ninety-one thousand seven hundred thirty-three' WHERE a=1738; UPDATE t2 SET c='forty-eight thousand nine hundred seventy-seven' WHERE a=1739; UPDATE t2 SET c='five thousand seven hundred eighty-five' WHERE a=1740; UPDATE t2 SET c='fifty-five thousand seven hundred six' WHERE a=1741; UPDATE t2 SET c='fifty-eight thousand four hundred eighty' WHERE a=1742; UPDATE t2 SET c='fifty-six thousand four hundred ninety-two' WHERE a=1743; UPDATE t2 SET c='seventy-two thousand eight hundred fifty' WHERE a=1744; UPDATE t2 SET c='eighty-one thousand eight hundred forty-eight' WHERE a=1745; UPDATE t2 SET c='twenty-three thousand eighty-three' WHERE a=1746; UPDATE t2 SET c='eighty-seven thousand six hundred seventy-eight' WHERE a=1747; UPDATE t2 SET c='sixty-one thousand five hundred twelve' WHERE a=1748; UPDATE t2 SET c='fifty-one thousand nine hundred twenty' WHERE a=1749; UPDATE t2 SET c='three thousand eight hundred fifteen' WHERE a=1750; UPDATE t2 SET c='twenty-three thousand six hundred forty-eight' WHERE a=1751; UPDATE t2 SET c='fifty-three thousand eighty-eight' WHERE a=1752; UPDATE t2 SET c='fifty-six thousand nine hundred thirty' WHERE a=1753; UPDATE t2 SET c='eighty-nine thousand nine hundred twenty-seven' WHERE a=1754; UPDATE t2 SET c='six thousand two hundred twenty' WHERE a=1755; UPDATE t2 SET c='three thousand one hundred sixty-six' WHERE a=1756; UPDATE t2 SET c='thirty-one thousand two hundred thirty-four' WHERE a=1757; UPDATE t2 SET c='seventy-one' WHERE a=1758; UPDATE t2 SET c='twenty-nine thousand two hundred ninety-two' WHERE a=1759; UPDATE t2 SET c='twenty-three thousand one hundred fifty' WHERE a=1760; UPDATE t2 SET c='ninety-five thousand eight hundred seventy-nine' WHERE a=1761; UPDATE t2 SET c='twenty-six thousand six hundred thirteen' WHERE a=1762; UPDATE t2 SET c='seventy-six thousand six hundred three' WHERE a=1763; UPDATE t2 SET c='ten thousand four hundred eighty-three' WHERE a=1764; UPDATE t2 SET c='fifty-one thousand two hundred thirty-seven' WHERE a=1765; UPDATE t2 SET c='eighty-seven thousand one hundred seventeen' WHERE a=1766; UPDATE t2 SET c='ninety-three thousand five hundred eleven' WHERE a=1767; UPDATE t2 SET c='twelve thousand three hundred forty-one' WHERE a=1768; UPDATE t2 SET c='thirty-eight thousand four' WHERE a=1769; UPDATE t2 SET c='seventy-seven thousand two hundred nine' WHERE a=1770; UPDATE t2 SET c='seventy-nine thousand seven hundred forty-six' WHERE a=1771; UPDATE t2 SET c='forty-nine thousand three hundred thirty-seven' WHERE a=1772; UPDATE t2 SET c='fifty thousand forty-two' WHERE a=1773; UPDATE t2 SET c='eighty-three thousand one hundred forty-five' WHERE a=1774; UPDATE t2 SET c='eighteen thousand seven hundred sixty-four' WHERE a=1775; UPDATE t2 SET c='fifty-three thousand eighty-one' WHERE a=1776; UPDATE t2 SET c='ninety-six thousand four hundred forty' WHERE a=1777; UPDATE t2 SET c='forty-one thousand nine hundred one' WHERE a=1778; UPDATE t2 SET c='nineteen thousand one hundred seventeen' WHERE a=1779; UPDATE t2 SET c='sixteen thousand seven hundred fifty-four' WHERE a=1780; UPDATE t2 SET c='sixty-eight thousand four hundred ten' WHERE a=1781; UPDATE t2 SET c='six thousand forty-three' WHERE a=1782; UPDATE t2 SET c='ninety-seven thousand eight hundred sixty-six' WHERE a=1783; UPDATE t2 SET c='fifty thousand thirty-eight' WHERE a=1784; UPDATE t2 SET c='twenty-three thousand six hundred thirty-five' WHERE a=1785; UPDATE t2 SET c='three thousand four hundred one' WHERE a=1786; UPDATE t2 SET c='thirty-eight thousand eight hundred seventy-six' WHERE a=1787; UPDATE t2 SET c='thirteen thousand four hundred forty-nine' WHERE a=1788; UPDATE t2 SET c='thirty-seven thousand five hundred ninety-four' WHERE a=1789; UPDATE t2 SET c='seventy-three thousand five hundred ninety-four' WHERE a=1790; UPDATE t2 SET c='sixty-one thousand nine hundred seventy' WHERE a=1791; UPDATE t2 SET c='seventy-three thousand five hundred one' WHERE a=1792; UPDATE t2 SET c='forty-four thousand nine hundred twenty-four' WHERE a=1793; UPDATE t2 SET c='thirty-five thousand three hundred twelve' WHERE a=1794; UPDATE t2 SET c='twenty-three thousand nine hundred two' WHERE a=1795; UPDATE t2 SET c='five thousand four hundred ninety-four' WHERE a=1796; UPDATE t2 SET c='thirty-six thousand four hundred twenty-nine' WHERE a=1797; UPDATE t2 SET c='seven thousand eight hundred three' WHERE a=1798; UPDATE t2 SET c='sixty-nine thousand one hundred twenty-eight' WHERE a=1799; UPDATE t2 SET c='forty-four thousand one hundred twenty-eight' WHERE a=1800; UPDATE t2 SET c='ninety-three thousand thirty-nine' WHERE a=1801; UPDATE t2 SET c='eighty-nine thousand seven hundred sixty-nine' WHERE a=1802; UPDATE t2 SET c='two thousand seventy-four' WHERE a=1803; UPDATE t2 SET c='eighty-seven thousand six hundred seventy' WHERE a=1804; UPDATE t2 SET c='fifty-four thousand seven hundred forty-seven' WHERE a=1805; UPDATE t2 SET c='seven thousand five hundred forty' WHERE a=1806; UPDATE t2 SET c='thirty-seven thousand nine hundred one' WHERE a=1807; UPDATE t2 SET c='ninety-six thousand eight hundred sixty-eight' WHERE a=1808; UPDATE t2 SET c='sixty-five thousand seven hundred seventy-three' WHERE a=1809; UPDATE t2 SET c='forty-two thousand two hundred forty-seven' WHERE a=1810; UPDATE t2 SET c='thirty-nine thousand eight hundred twenty-seven' WHERE a=1811; UPDATE t2 SET c='forty-six thousand three hundred three' WHERE a=1812; UPDATE t2 SET c='twelve thousand three hundred ninety-two' WHERE a=1813; UPDATE t2 SET c='eighty-six thousand two hundred fifteen' WHERE a=1814; UPDATE t2 SET c='nine thousand six hundred sixty-four' WHERE a=1815; UPDATE t2 SET c='thirty-three thousand seven hundred thirteen' WHERE a=1816; UPDATE t2 SET c='eighty-five thousand three hundred twelve' WHERE a=1817; UPDATE t2 SET c='thirty-two thousand seven hundred thirty-two' WHERE a=1818; UPDATE t2 SET c='thirty-eight thousand five hundred seventy-seven' WHERE a=1819; UPDATE t2 SET c='forty-six thousand six hundred thirteen' WHERE a=1820; UPDATE t2 SET c='forty-nine thousand six hundred eighty-eight' WHERE a=1821; UPDATE t2 SET c='twelve thousand four hundred four' WHERE a=1822; UPDATE t2 SET c='twenty thousand three hundred ninety-five' WHERE a=1823; UPDATE t2 SET c='thirty thousand one hundred one' WHERE a=1824; UPDATE t2 SET c='eighty thousand nine hundred thirty-three' WHERE a=1825; UPDATE t2 SET c='fifty-two thousand four hundred forty-five' WHERE a=1826; UPDATE t2 SET c='seventeen thousand four hundred seventy-nine' WHERE a=1827; UPDATE t2 SET c='thirty-six thousand six hundred sixteen' WHERE a=1828; UPDATE t2 SET c='twenty thousand nine hundred thirty-eight' WHERE a=1829; UPDATE t2 SET c='fifty-three thousand four hundred fifty-eight' WHERE a=1830; UPDATE t2 SET c='forty-three thousand seven hundred sixty-five' WHERE a=1831; UPDATE t2 SET c='sixty-three thousand eight hundred sixty-nine' WHERE a=1832; UPDATE t2 SET c='thirty-three thousand eight hundred forty-six' WHERE a=1833; UPDATE t2 SET c='eighty-three thousand five hundred twelve' WHERE a=1834; UPDATE t2 SET c='seventeen thousand four hundred four' WHERE a=1835; UPDATE t2 SET c='eight thousand seven hundred eleven' WHERE a=1836; UPDATE t2 SET c='seventy-nine thousand thirty-two' WHERE a=1837; UPDATE t2 SET c='thirteen thousand eight hundred four' WHERE a=1838; UPDATE t2 SET c='sixty-eight thousand one hundred one' WHERE a=1839; UPDATE t2 SET c='eight thousand six hundred seventy-five' WHERE a=1840; UPDATE t2 SET c='forty-five thousand six hundred six' WHERE a=1841; UPDATE t2 SET c='ninety-five thousand eight hundred ninety-three' WHERE a=1842; UPDATE t2 SET c='fourteen thousand four hundred forty-eight' WHERE a=1843; UPDATE t2 SET c='seventy-seven thousand nine' WHERE a=1844; UPDATE t2 SET c='seventy-eight thousand sixty' WHERE a=1845; UPDATE t2 SET c='seventy thousand five hundred thirteen' WHERE a=1846; UPDATE t2 SET c='fifty-seven thousand eight hundred sixty-seven' WHERE a=1847; UPDATE t2 SET c='twenty-seven thousand nine hundred eighty' WHERE a=1848; UPDATE t2 SET c='thirty-seven thousand six hundred fifty-six' WHERE a=1849; UPDATE t2 SET c='forty-one thousand sixty-seven' WHERE a=1850; UPDATE t2 SET c='twelve thousand nine hundred fifty-nine' WHERE a=1851; UPDATE t2 SET c='nine thousand eight hundred twenty-nine' WHERE a=1852; UPDATE t2 SET c='sixty thousand five hundred sixty-five' WHERE a=1853; UPDATE t2 SET c='ninety-seven thousand five hundred ninety-six' WHERE a=1854; UPDATE t2 SET c='ninety-one thousand four hundred thirty-three' WHERE a=1855; UPDATE t2 SET c='sixty-two thousand one hundred eight' WHERE a=1856; UPDATE t2 SET c='fifty-two thousand two hundred seventy-one' WHERE a=1857; UPDATE t2 SET c='seventy-four thousand nine hundred eighty-one' WHERE a=1858; UPDATE t2 SET c='sixty-nine thousand two hundred eighty-eight' WHERE a=1859; UPDATE t2 SET c='sixty-two thousand five hundred eighteen' WHERE a=1860; UPDATE t2 SET c='thirty-nine thousand six hundred thirty-nine' WHERE a=1861; UPDATE t2 SET c='eleven thousand two hundred six' WHERE a=1862; UPDATE t2 SET c='twenty-four thousand ninety-three' WHERE a=1863; UPDATE t2 SET c='thirty-eight thousand six hundred fifty-one' WHERE a=1864; UPDATE t2 SET c='ninety-three thousand four hundred twenty-two' WHERE a=1865; UPDATE t2 SET c='forty-four thousand five hundred sixty-nine' WHERE a=1866; UPDATE t2 SET c='seventy-seven thousand nine hundred sixty-five' WHERE a=1867; UPDATE t2 SET c='ninety thousand one hundred seventeen' WHERE a=1868; UPDATE t2 SET c='forty-six thousand six hundred eighty-two' WHERE a=1869; UPDATE t2 SET c='ninety-six thousand eight hundred thirty-three' WHERE a=1870; UPDATE t2 SET c='seventy-four thousand nine hundred thirty-three' WHERE a=1871; UPDATE t2 SET c='eighty-eight thousand five hundred sixty-nine' WHERE a=1872; UPDATE t2 SET c='twenty-three thousand two hundred fifty' WHERE a=1873; UPDATE t2 SET c='four thousand three hundred ninety-six' WHERE a=1874; UPDATE t2 SET c='sixty-six thousand six hundred seventeen' WHERE a=1875; UPDATE t2 SET c='thirty-nine thousand fifty-seven' WHERE a=1876; UPDATE t2 SET c='sixty-five thousand five hundred forty-two' WHERE a=1877; UPDATE t2 SET c='eighty-eight thousand eight hundred seventy-six' WHERE a=1878; UPDATE t2 SET c='fifty-three thousand nine hundred seventy-five' WHERE a=1879; UPDATE t2 SET c='sixty-eight thousand fifty-five' WHERE a=1880; UPDATE t2 SET c='ninety-three thousand two hundred twenty-six' WHERE a=1881; UPDATE t2 SET c='twenty thousand four hundred fifty-two' WHERE a=1882; UPDATE t2 SET c='fifty thousand four hundred thirteen' WHERE a=1883; UPDATE t2 SET c='forty-three thousand four hundred thirty' WHERE a=1884; UPDATE t2 SET c='ninety-six thousand seven hundred fifty-two' WHERE a=1885; UPDATE t2 SET c='ninety-three thousand seven hundred fifty-two' WHERE a=1886; UPDATE t2 SET c='fifty-two thousand three hundred ninety-three' WHERE a=1887; UPDATE t2 SET c='four thousand three hundred eighty-four' WHERE a=1888; UPDATE t2 SET c='thirty-six thousand seven hundred thirteen' WHERE a=1889; UPDATE t2 SET c='twenty-eight thousand three hundred fifty-two' WHERE a=1890; UPDATE t2 SET c='thirty-nine thousand two hundred twenty-nine' WHERE a=1891; UPDATE t2 SET c='sixteen thousand nine hundred forty-two' WHERE a=1892; UPDATE t2 SET c='nineteen thousand eight hundred seventy-three' WHERE a=1893; UPDATE t2 SET c='two thousand eight hundred ten' WHERE a=1894; UPDATE t2 SET c='eighty-four thousand eight hundred eighty-four' WHERE a=1895; UPDATE t2 SET c='sixty-six thousand five hundred seventy-four' WHERE a=1896; UPDATE t2 SET c='sixty-seven thousand five hundred twenty-two' WHERE a=1897; UPDATE t2 SET c='thirty-one thousand six hundred twenty-six' WHERE a=1898; UPDATE t2 SET c='eighty-four thousand eight hundred eighty-nine' WHERE a=1899; UPDATE t2 SET c='eighty-five thousand thirty-three' WHERE a=1900; UPDATE t2 SET c='seven thousand four hundred thirty-eight' WHERE a=1901; UPDATE t2 SET c='twenty-nine thousand ninety-six' WHERE a=1902; UPDATE t2 SET c='twenty-three thousand four hundred two' WHERE a=1903; UPDATE t2 SET c='two thousand six hundred sixty-six' WHERE a=1904; UPDATE t2 SET c='six thousand five hundred forty-five' WHERE a=1905; UPDATE t2 SET c='twenty-five thousand three hundred eighty-four' WHERE a=1906; UPDATE t2 SET c='eighty-five thousand three hundred nine' WHERE a=1907; UPDATE t2 SET c='forty-three thousand eight hundred sixty-nine' WHERE a=1908; UPDATE t2 SET c='one thousand three hundred forty-seven' WHERE a=1909; UPDATE t2 SET c='fifty-three thousand three hundred sixty-nine' WHERE a=1910; UPDATE t2 SET c='thirty-four thousand nine hundred eighty-seven' WHERE a=1911; UPDATE t2 SET c='ninety-six thousand one hundred three' WHERE a=1912; UPDATE t2 SET c='seventy-two thousand eight hundred sixty-six' WHERE a=1913; UPDATE t2 SET c='thirty-five thousand six hundred forty-nine' WHERE a=1914; UPDATE t2 SET c='nineteen thousand one hundred eighty-nine' WHERE a=1915; UPDATE t2 SET c='forty-eight thousand ninety-five' WHERE a=1916; UPDATE t2 SET c='ninety-four thousand eight hundred eleven' WHERE a=1917; UPDATE t2 SET c='forty-nine thousand forty-eight' WHERE a=1918; UPDATE t2 SET c='forty-eight thousand nine hundred twenty-eight' WHERE a=1919; UPDATE t2 SET c='sixty-one thousand three hundred seventy-eight' WHERE a=1920; UPDATE t2 SET c='thirty-two thousand eight hundred sixty-nine' WHERE a=1921; UPDATE t2 SET c='ten thousand one hundred thirty-six' WHERE a=1922; UPDATE t2 SET c='twenty-five thousand six hundred forty-four' WHERE a=1923; UPDATE t2 SET c='forty-one thousand nine hundred sixty-eight' WHERE a=1924; UPDATE t2 SET c='seventy-five thousand nine hundred fifty-eight' WHERE a=1925; UPDATE t2 SET c='ninety-two thousand one hundred fifty-four' WHERE a=1926; UPDATE t2 SET c='fifty-five thousand nine hundred sixty-one' WHERE a=1927; UPDATE t2 SET c='seventy-six thousand nine hundred fourteen' WHERE a=1928; UPDATE t2 SET c='five thousand four hundred sixty-seven' WHERE a=1929; UPDATE t2 SET c='four thousand one hundred fifty-nine' WHERE a=1930; UPDATE t2 SET c='thirteen thousand seven hundred sixty-nine' WHERE a=1931; UPDATE t2 SET c='forty-three thousand eight hundred ninety-nine' WHERE a=1932; UPDATE t2 SET c='sixty-seven thousand eight hundred forty-two' WHERE a=1933; UPDATE t2 SET c='forty-eight thousand five hundred eighty-five' WHERE a=1934; UPDATE t2 SET c='eighty thousand two hundred ninety-six' WHERE a=1935; UPDATE t2 SET c='twenty-seven thousand four hundred sixteen' WHERE a=1936; UPDATE t2 SET c='ninety-six thousand one hundred thirty-seven' WHERE a=1937; UPDATE t2 SET c='fifty-three thousand three hundred thirteen' WHERE a=1938; UPDATE t2 SET c='twenty-five thousand eight hundred fifty-seven' WHERE a=1939; UPDATE t2 SET c='sixty-five thousand seven hundred sixty-five' WHERE a=1940; UPDATE t2 SET c='nineteen thousand seven hundred fifteen' WHERE a=1941; UPDATE t2 SET c='five hundred one' WHERE a=1942; UPDATE t2 SET c='sixty-two thousand three hundred fifteen' WHERE a=1943; UPDATE t2 SET c='twenty-two thousand four hundred twelve' WHERE a=1944; UPDATE t2 SET c='eighty-one thousand four hundred fifty-one' WHERE a=1945; UPDATE t2 SET c='fifty-four thousand three hundred seventy-four' WHERE a=1946; UPDATE t2 SET c='seventy thousand five hundred seventy-four' WHERE a=1947; UPDATE t2 SET c='sixty-seven thousand two hundred two' WHERE a=1948; UPDATE t2 SET c='ninety-eight thousand eight hundred sixty-six' WHERE a=1949; UPDATE t2 SET c='seventy-five thousand three hundred twenty' WHERE a=1950; UPDATE t2 SET c='sixty-four thousand three hundred fifty-two' WHERE a=1951; UPDATE t2 SET c='two thousand eight hundred forty-two' WHERE a=1952; UPDATE t2 SET c='ninety-nine thousand one hundred seventy-three' WHERE a=1953; UPDATE t2 SET c='fifty-six thousand eight hundred sixty-six' WHERE a=1954; UPDATE t2 SET c='seventy-four thousand five hundred six' WHERE a=1955; UPDATE t2 SET c='twenty-seven thousand nine hundred thirty-seven' WHERE a=1956; UPDATE t2 SET c='fifty-seven thousand forty' WHERE a=1957; UPDATE t2 SET c='twenty-nine thousand eight' WHERE a=1958; UPDATE t2 SET c='two thousand two hundred fifty-six' WHERE a=1959; UPDATE t2 SET c='twenty-nine thousand four hundred fifty-seven' WHERE a=1960; UPDATE t2 SET c='forty-nine thousand eight hundred thirty-three' WHERE a=1961; UPDATE t2 SET c='forty-four thousand six hundred thirty-five' WHERE a=1962; UPDATE t2 SET c='eight thousand four hundred seventy-one' WHERE a=1963; UPDATE t2 SET c='eighty-five thousand two hundred' WHERE a=1964; UPDATE t2 SET c='eighty-nine thousand nine hundred ninety-four' WHERE a=1965; UPDATE t2 SET c='three thousand nine hundred ninety-six' WHERE a=1966; UPDATE t2 SET c='eighty-one thousand ninety' WHERE a=1967; UPDATE t2 SET c='ten thousand four hundred thirty-four' WHERE a=1968; UPDATE t2 SET c='eighty-one thousand two hundred fifty-two' WHERE a=1969; UPDATE t2 SET c='sixty thousand two hundred thirty-one' WHERE a=1970; UPDATE t2 SET c='nine thousand three hundred thirty-seven' WHERE a=1971; UPDATE t2 SET c='sixty-one thousand three hundred' WHERE a=1972; UPDATE t2 SET c='seventy-eight thousand ninety-six' WHERE a=1973; UPDATE t2 SET c='eighty-three thousand eight hundred sixty-one' WHERE a=1974; UPDATE t2 SET c='ninety-eight thousand five hundred thirty-three' WHERE a=1975; UPDATE t2 SET c='eighty-seven thousand two hundred thirteen' WHERE a=1976; UPDATE t2 SET c='eight thousand five hundred four' WHERE a=1977; UPDATE t2 SET c='ninety-four thousand four' WHERE a=1978; UPDATE t2 SET c='eighty-eight thousand seven hundred eighty' WHERE a=1979; UPDATE t2 SET c='seventy-two thousand five hundred thirty-five' WHERE a=1980; UPDATE t2 SET c='fifty thousand thirteen' WHERE a=1981; UPDATE t2 SET c='fifty-seven thousand six hundred eighty-one' WHERE a=1982; UPDATE t2 SET c='eighty-five thousand fifty-two' WHERE a=1983; UPDATE t2 SET c='fifty-nine thousand five hundred sixty-two' WHERE a=1984; UPDATE t2 SET c='fourteen thousand nine hundred seventy-two' WHERE a=1985; UPDATE t2 SET c='eighty-six thousand eight hundred seventy-two' WHERE a=1986; UPDATE t2 SET c='thirty thousand six hundred twenty-one' WHERE a=1987; UPDATE t2 SET c='thirty-six thousand eight hundred seventy-seven' WHERE a=1988; UPDATE t2 SET c='ninety-six thousand ninety-nine' WHERE a=1989; UPDATE t2 SET c='four thousand three hundred eight' WHERE a=1990; UPDATE t2 SET c='ninety-four thousand eight hundred seventy' WHERE a=1991; UPDATE t2 SET c='ten thousand nine hundred ninety-eight' WHERE a=1992; UPDATE t2 SET c='fifteen thousand three hundred fifteen' WHERE a=1993; UPDATE t2 SET c='fifty-eight thousand seven hundred nineteen' WHERE a=1994; UPDATE t2 SET c='thirty-four thousand two hundred twenty-five' WHERE a=1995; UPDATE t2 SET c='eighty-four thousand one hundred twenty-seven' WHERE a=1996; UPDATE t2 SET c='seventy-seven thousand two hundred eighty-five' WHERE a=1997; UPDATE t2 SET c='twenty-eight thousand two hundred eighty-six' WHERE a=1998; UPDATE t2 SET c='sixty-six thousand eight hundred forty-six' WHERE a=1999; UPDATE t2 SET c='sixty-seven thousand two hundred eighty-one' WHERE a=2000; UPDATE t2 SET c='twenty thousand eight hundred sixty-seven' WHERE a=2001; UPDATE t2 SET c='forty-two thousand one' WHERE a=2002; UPDATE t2 SET c='fifty-four thousand five hundred eighty-six' WHERE a=2003; UPDATE t2 SET c='seventy-seven thousand five hundred twenty-six' WHERE a=2004; UPDATE t2 SET c='thirty-nine thousand four hundred sixty-eight' WHERE a=2005; UPDATE t2 SET c='forty-eight thousand forty-nine' WHERE a=2006; UPDATE t2 SET c='eighty-seven thousand four hundred forty-three' WHERE a=2007; UPDATE t2 SET c='seventy-one thousand eight hundred' WHERE a=2008; UPDATE t2 SET c='fifty thousand five hundred fifty-three' WHERE a=2009; UPDATE t2 SET c='forty-three thousand' WHERE a=2010; UPDATE t2 SET c='seven thousand six hundred twenty-eight' WHERE a=2011; UPDATE t2 SET c='nine thousand eight hundred fifty-seven' WHERE a=2012; UPDATE t2 SET c='fifty-six thousand two hundred forty-three' WHERE a=2013; UPDATE t2 SET c='seventy-eight thousand six hundred ten' WHERE a=2014; UPDATE t2 SET c='eighty thousand one hundred forty-three' WHERE a=2015; UPDATE t2 SET c='seventy-six thousand nine hundred fifty-six' WHERE a=2016; UPDATE t2 SET c='fifteen thousand seven hundred forty-two' WHERE a=2017; UPDATE t2 SET c='sixty-four thousand eight hundred forty-seven' WHERE a=2018; UPDATE t2 SET c='ninety-five thousand four hundred forty-nine' WHERE a=2019; UPDATE t2 SET c='three thousand three hundred fifty-four' WHERE a=2020; UPDATE t2 SET c='sixteen thousand seven hundred sixty-eight' WHERE a=2021; UPDATE t2 SET c='sixty-eight thousand eight hundred ninety-two' WHERE a=2022; UPDATE t2 SET c='seventy thousand two hundred twenty-three' WHERE a=2023; UPDATE t2 SET c='twenty-one thousand three hundred seventy-three' WHERE a=2024; UPDATE t2 SET c='one thousand four hundred twenty-two' WHERE a=2025; UPDATE t2 SET c='fifty-eight thousand three hundred ten' WHERE a=2026; UPDATE t2 SET c='forty-six thousand five hundred sixty-eight' WHERE a=2027; UPDATE t2 SET c='thirty thousand eight hundred fifty-three' WHERE a=2028; UPDATE t2 SET c='seventy-two thousand two hundred ninety-one' WHERE a=2029; UPDATE t2 SET c='twenty-two thousand six hundred forty-nine' WHERE a=2030; UPDATE t2 SET c='five thousand four hundred seventy-nine' WHERE a=2031; UPDATE t2 SET c='seventy-five thousand one hundred twenty' WHERE a=2032; UPDATE t2 SET c='ten thousand five hundred sixty' WHERE a=2033; UPDATE t2 SET c='five hundred fifty-one' WHERE a=2034; UPDATE t2 SET c='fifteen thousand eight hundred four' WHERE a=2035; UPDATE t2 SET c='thirty thousand four hundred fourteen' WHERE a=2036; UPDATE t2 SET c='thirty-six thousand six hundred fifty' WHERE a=2037; UPDATE t2 SET c='forty-seven thousand two hundred ninety' WHERE a=2038; UPDATE t2 SET c='seventy thousand one hundred seventy-five' WHERE a=2039; UPDATE t2 SET c='twenty-two thousand four hundred twenty-five' WHERE a=2040; UPDATE t2 SET c='eighty-four thousand four hundred four' WHERE a=2041; UPDATE t2 SET c='forty-nine thousand four hundred nineteen' WHERE a=2042; UPDATE t2 SET c='thirty-two thousand six hundred seventy-nine' WHERE a=2043; UPDATE t2 SET c='fourteen thousand seven hundred ten' WHERE a=2044; UPDATE t2 SET c='sixty thousand nine hundred eighty-eight' WHERE a=2045; UPDATE t2 SET c='thirty-three thousand seven hundred thirty-five' WHERE a=2046; UPDATE t2 SET c='twelve thousand two hundred seventy-one' WHERE a=2047; UPDATE t2 SET c='sixty-two thousand two hundred eighty-nine' WHERE a=2048; UPDATE t2 SET c='forty thousand one hundred fifty-two' WHERE a=2049; UPDATE t2 SET c='seventy thousand two hundred thirty-eight' WHERE a=2050; UPDATE t2 SET c='sixty-two thousand nine hundred thirty-five' WHERE a=2051; UPDATE t2 SET c='four thousand one hundred ninety-one' WHERE a=2052; UPDATE t2 SET c='eighty-three thousand eight hundred twenty-eight' WHERE a=2053; UPDATE t2 SET c='eighteen thousand seven hundred two' WHERE a=2054; UPDATE t2 SET c='eighty-eight thousand eighteen' WHERE a=2055; UPDATE t2 SET c='twenty-seven thousand eighty-one' WHERE a=2056; UPDATE t2 SET c='sixty-nine thousand nine hundred five' WHERE a=2057; UPDATE t2 SET c='sixteen thousand six hundred forty-seven' WHERE a=2058; UPDATE t2 SET c='eighty thousand five hundred fifty-one' WHERE a=2059; UPDATE t2 SET c='thirty-seven thousand two hundred twenty' WHERE a=2060; UPDATE t2 SET c='twenty-two thousand six hundred four' WHERE a=2061; UPDATE t2 SET c='twelve thousand fourteen' WHERE a=2062; UPDATE t2 SET c='ninety-two thousand seven hundred fifty-eight' WHERE a=2063; UPDATE t2 SET c='fifty-one thousand four hundred six' WHERE a=2064; UPDATE t2 SET c='thirty-three thousand sixty-seven' WHERE a=2065; UPDATE t2 SET c='eighty-three thousand six hundred thirty' WHERE a=2066; UPDATE t2 SET c='fifteen thousand eight hundred forty-one' WHERE a=2067; UPDATE t2 SET c='sixty-six thousand eight hundred sixty-seven' WHERE a=2068; UPDATE t2 SET c='forty-six thousand six hundred sixty-two' WHERE a=2069; UPDATE t2 SET c='seventy-four thousand ninety-four' WHERE a=2070; UPDATE t2 SET c='sixty-nine thousand six hundred seventy-two' WHERE a=2071; UPDATE t2 SET c='fifty-two thousand four hundred fifty-six' WHERE a=2072; UPDATE t2 SET c='ninety-eight thousand six hundred fifty-nine' WHERE a=2073; UPDATE t2 SET c='fifty-seven thousand six hundred thirty-one' WHERE a=2074; UPDATE t2 SET c='ninety-one thousand nine hundred forty-three' WHERE a=2075; UPDATE t2 SET c='thirty-two thousand five hundred seventy-seven' WHERE a=2076; UPDATE t2 SET c='twenty-one thousand seven hundred ten' WHERE a=2077; UPDATE t2 SET c='thirteen thousand five hundred two' WHERE a=2078; UPDATE t2 SET c='twenty-six thousand one hundred sixty-one' WHERE a=2079; UPDATE t2 SET c='eighty-eight thousand seven hundred twenty-five' WHERE a=2080; UPDATE t2 SET c='twenty thousand one hundred sixty-four' WHERE a=2081; UPDATE t2 SET c='eighteen thousand four hundred fifty' WHERE a=2082; UPDATE t2 SET c='twenty-four thousand seven hundred eighty-two' WHERE a=2083; UPDATE t2 SET c='forty-seven thousand nine hundred forty-nine' WHERE a=2084; UPDATE t2 SET c='forty-five thousand three hundred eighty-four' WHERE a=2085; UPDATE t2 SET c='seventy thousand four hundred fifty-two' WHERE a=2086; UPDATE t2 SET c='ninety-eight thousand five hundred forty-seven' WHERE a=2087; UPDATE t2 SET c='eighty-nine thousand five hundred eighty-four' WHERE a=2088; UPDATE t2 SET c='twenty-two thousand four hundred ninety-one' WHERE a=2089; UPDATE t2 SET c='sixty-two thousand five hundred forty-four' WHERE a=2090; UPDATE t2 SET c='twenty-one thousand seven hundred twenty-eight' WHERE a=2091; UPDATE t2 SET c='eighty thousand nine hundred eighty-seven' WHERE a=2092; UPDATE t2 SET c='eighty-two thousand eight hundred thirty' WHERE a=2093; UPDATE t2 SET c='eighty-five thousand eight hundred forty-two' WHERE a=2094; UPDATE t2 SET c='thirty-one thousand six hundred seventy-six' WHERE a=2095; UPDATE t2 SET c='eighty-four thousand two hundred ninety-seven' WHERE a=2096; UPDATE t2 SET c='fifteen thousand seven hundred forty-eight' WHERE a=2097; UPDATE t2 SET c='eighty-six thousand nine hundred twenty' WHERE a=2098; UPDATE t2 SET c='thirty-six thousand two hundred seventy-one' WHERE a=2099; UPDATE t2 SET c='seventeen thousand seventy-five' WHERE a=2100; UPDATE t2 SET c='forty-four thousand four hundred one' WHERE a=2101; UPDATE t2 SET c='thirty-six thousand seven hundred ninety-nine' WHERE a=2102; UPDATE t2 SET c='four thousand nine hundred ninety' WHERE a=2103; UPDATE t2 SET c='fifty-five thousand nine hundred forty-seven' WHERE a=2104; UPDATE t2 SET c='one thousand eight hundred fifty-five' WHERE a=2105; UPDATE t2 SET c='seventy thousand eight hundred forty-three' WHERE a=2106; UPDATE t2 SET c='seventy-seven thousand five hundred twenty-five' WHERE a=2107; UPDATE t2 SET c='fifty-six thousand nine hundred eighty-one' WHERE a=2108; UPDATE t2 SET c='one thousand one hundred eighty-one' WHERE a=2109; UPDATE t2 SET c='forty-two thousand seven hundred eleven' WHERE a=2110; UPDATE t2 SET c='eighty-five thousand one hundred fifty' WHERE a=2111; UPDATE t2 SET c='twenty-four thousand eight hundred twenty-one' WHERE a=2112; UPDATE t2 SET c='eighty-three thousand four hundred sixty-two' WHERE a=2113; UPDATE t2 SET c='thirty-five thousand eight hundred three' WHERE a=2114; UPDATE t2 SET c='seventeen thousand three hundred sixty-four' WHERE a=2115; UPDATE t2 SET c='thirty thousand two hundred twenty-three' WHERE a=2116; UPDATE t2 SET c='thirty-three thousand six hundred ninety-three' WHERE a=2117; UPDATE t2 SET c='fifty thousand five hundred eighty-seven' WHERE a=2118; UPDATE t2 SET c='forty-three thousand seven hundred fifty-seven' WHERE a=2119; UPDATE t2 SET c='fifty-eight thousand nine hundred eighty-five' WHERE a=2120; UPDATE t2 SET c='fifty-four thousand five hundred twenty-seven' WHERE a=2121; UPDATE t2 SET c='twenty-three thousand one hundred forty-three' WHERE a=2122; UPDATE t2 SET c='forty-eight thousand one hundred forty-one' WHERE a=2123; UPDATE t2 SET c='twenty thousand fifty-three' WHERE a=2124; UPDATE t2 SET c='fifty-one thousand five hundred sixty-eight' WHERE a=2125; UPDATE t2 SET c='eighteen thousand two hundred forty-six' WHERE a=2126; UPDATE t2 SET c='eighty-four thousand eight hundred ninety' WHERE a=2127; UPDATE t2 SET c='forty-one thousand six hundred thirteen' WHERE a=2128; UPDATE t2 SET c='sixty-two thousand three hundred twenty-nine' WHERE a=2129; UPDATE t2 SET c='eighteen thousand eight hundred seventy-five' WHERE a=2130; UPDATE t2 SET c='sixty-nine thousand nine hundred seventy-one' WHERE a=2131; UPDATE t2 SET c='six thousand one hundred fifty-three' WHERE a=2132; UPDATE t2 SET c='fifty-eight thousand four hundred fifty-one' WHERE a=2133; UPDATE t2 SET c='sixty-two thousand ninety-three' WHERE a=2134; UPDATE t2 SET c='eighty-five thousand four hundred six' WHERE a=2135; UPDATE t2 SET c='twenty-seven thousand four hundred fifty' WHERE a=2136; UPDATE t2 SET c='forty-four thousand eight hundred forty-five' WHERE a=2137; UPDATE t2 SET c='forty-nine thousand one hundred nine' WHERE a=2138; UPDATE t2 SET c='ninety-two thousand five hundred eighty-three' WHERE a=2139; UPDATE t2 SET c='eighty-one thousand one hundred fifteen' WHERE a=2140; UPDATE t2 SET c='sixty-one thousand nine hundred twenty-five' WHERE a=2141; UPDATE t2 SET c='forty-eight thousand seven hundred ninety-six' WHERE a=2142; UPDATE t2 SET c='ninety-six thousand four hundred twenty-six' WHERE a=2143; UPDATE t2 SET c='seventy-nine thousand nine hundred fifty-three' WHERE a=2144; UPDATE t2 SET c='six thousand six hundred thirty-nine' WHERE a=2145; UPDATE t2 SET c='ten thousand five hundred eighty-one' WHERE a=2146; UPDATE t2 SET c='sixty-two thousand eight hundred thirty-eight' WHERE a=2147; UPDATE t2 SET c='thirteen thousand eighty-two' WHERE a=2148; UPDATE t2 SET c='forty-eight thousand two hundred seventy' WHERE a=2149; UPDATE t2 SET c='fifty thousand eight hundred thirty-nine' WHERE a=2150; UPDATE t2 SET c='thirty-four thousand five hundred fifty-seven' WHERE a=2151; UPDATE t2 SET c='ninety thousand seven hundred fifty' WHERE a=2152; UPDATE t2 SET c='eighty-two thousand one hundred thirty-eight' WHERE a=2153; UPDATE t2 SET c='fifty-three thousand seven hundred thirty-seven' WHERE a=2154; UPDATE t2 SET c='fifty-one thousand three hundred ninety-four' WHERE a=2155; UPDATE t2 SET c='forty-nine thousand fifty-seven' WHERE a=2156; UPDATE t2 SET c='ninety-four thousand seven hundred eighty-nine' WHERE a=2157; UPDATE t2 SET c='seventeen thousand six hundred thirty-two' WHERE a=2158; UPDATE t2 SET c='sixty-four thousand four hundred twenty-one' WHERE a=2159; UPDATE t2 SET c='eighty-seven thousand one hundred fifty-eight' WHERE a=2160; UPDATE t2 SET c='twenty-four thousand four hundred ninety' WHERE a=2161; UPDATE t2 SET c='ninety-seven thousand five hundred eighteen' WHERE a=2162; UPDATE t2 SET c='seventy-nine thousand eight hundred sixty-nine' WHERE a=2163; UPDATE t2 SET c='eighty-one thousand eight hundred thirty-four' WHERE a=2164; UPDATE t2 SET c='ninety-eight thousand one hundred ninety-six' WHERE a=2165; UPDATE t2 SET c='sixty-five thousand two hundred thirty-seven' WHERE a=2166; UPDATE t2 SET c='fifty-eight thousand five hundred ninety' WHERE a=2167; UPDATE t2 SET c='eighty thousand four hundred ten' WHERE a=2168; UPDATE t2 SET c='seventy-three thousand eight hundred nine' WHERE a=2169; UPDATE t2 SET c='sixty-four thousand four hundred sixty-six' WHERE a=2170; UPDATE t2 SET c='eighteen thousand five hundred two' WHERE a=2171; UPDATE t2 SET c='eighteen thousand two hundred sixty-three' WHERE a=2172; UPDATE t2 SET c='forty thousand seven hundred sixty-three' WHERE a=2173; UPDATE t2 SET c='eighty-one thousand one hundred ninety-five' WHERE a=2174; UPDATE t2 SET c='twenty-five thousand two hundred twenty-seven' WHERE a=2175; UPDATE t2 SET c='thirty-six thousand one hundred sixty-seven' WHERE a=2176; UPDATE t2 SET c='ninety-one thousand five hundred fifteen' WHERE a=2177; UPDATE t2 SET c='seventy-eight thousand five hundred forty-three' WHERE a=2178; UPDATE t2 SET c='thirty-eight thousand nine hundred sixty-one' WHERE a=2179; UPDATE t2 SET c='seventy-four thousand two hundred seventy-seven' WHERE a=2180; UPDATE t2 SET c='eighty-five thousand six hundred eighty-six' WHERE a=2181; UPDATE t2 SET c='thirty-eight thousand eight hundred thirty-six' WHERE a=2182; UPDATE t2 SET c='seventeen thousand two hundred sixty-one' WHERE a=2183; UPDATE t2 SET c='forty-two thousand five hundred seventy-eight' WHERE a=2184; UPDATE t2 SET c='seventy-one thousand one hundred one' WHERE a=2185; UPDATE t2 SET c='ninety thousand three hundred sixty-four' WHERE a=2186; UPDATE t2 SET c='seventy-eight thousand three hundred eleven' WHERE a=2187; UPDATE t2 SET c='one thousand one hundred twenty-six' WHERE a=2188; UPDATE t2 SET c='fifty-four thousand two hundred sixty-eight' WHERE a=2189; UPDATE t2 SET c='forty-four thousand two hundred ninety-two' WHERE a=2190; UPDATE t2 SET c='seventy-five thousand seven hundred twenty-nine' WHERE a=2191; UPDATE t2 SET c='sixty-two thousand four hundred nine' WHERE a=2192; UPDATE t2 SET c='forty-four thousand forty-four' WHERE a=2193; UPDATE t2 SET c='fifty-two thousand seven hundred seventy-nine' WHERE a=2194; UPDATE t2 SET c='seventy-one thousand four hundred twelve' WHERE a=2195; UPDATE t2 SET c='forty-one thousand five hundred sixty-nine' WHERE a=2196; UPDATE t2 SET c='sixty-four thousand five hundred sixty-four' WHERE a=2197; UPDATE t2 SET c='ninety-three thousand one hundred ten' WHERE a=2198; UPDATE t2 SET c='twenty-four thousand three hundred seven' WHERE a=2199; UPDATE t2 SET c='ninety-one thousand nine hundred forty-two' WHERE a=2200; UPDATE t2 SET c='ten thousand nine hundred thirty-five' WHERE a=2201; UPDATE t2 SET c='sixty-four thousand one' WHERE a=2202; UPDATE t2 SET c='eighteen thousand two hundred sixty-eight' WHERE a=2203; UPDATE t2 SET c='fifty-one thousand four hundred three' WHERE a=2204; UPDATE t2 SET c='twenty-six thousand eight hundred sixty-one' WHERE a=2205; UPDATE t2 SET c='ninety-seven thousand eight hundred' WHERE a=2206; UPDATE t2 SET c='fifty-six thousand three hundred fifty-six' WHERE a=2207; UPDATE t2 SET c='ninety-nine thousand seven hundred ninety-eight' WHERE a=2208; UPDATE t2 SET c='twenty-five thousand four hundred forty-one' WHERE a=2209; UPDATE t2 SET c='thirty thousand eight hundred forty-three' WHERE a=2210; UPDATE t2 SET c='sixty-seven thousand nine hundred forty' WHERE a=2211; UPDATE t2 SET c='eleven thousand eight hundred forty-nine' WHERE a=2212; UPDATE t2 SET c='forty-two thousand four hundred forty-eight' WHERE a=2213; UPDATE t2 SET c='fifty-four thousand nine hundred forty-one' WHERE a=2214; UPDATE t2 SET c='eighty-nine thousand two hundred twenty-one' WHERE a=2215; UPDATE t2 SET c='six hundred fifty-three' WHERE a=2216; UPDATE t2 SET c='fifty-nine thousand two hundred forty-eight' WHERE a=2217; UPDATE t2 SET c='forty-five thousand six hundred fifty-two' WHERE a=2218; UPDATE t2 SET c='forty-six thousand one hundred eighty-six' WHERE a=2219; UPDATE t2 SET c='thirty-nine thousand three hundred thirty' WHERE a=2220; UPDATE t2 SET c='eighty-three thousand two hundred twelve' WHERE a=2221; UPDATE t2 SET c='thirty thousand forty' WHERE a=2222; UPDATE t2 SET c='thirty-seven thousand two hundred ninety-seven' WHERE a=2223; UPDATE t2 SET c='eighty-three thousand three hundred forty-six' WHERE a=2224; UPDATE t2 SET c='eighty-four thousand one hundred twenty' WHERE a=2225; UPDATE t2 SET c='seven thousand eight hundred fifteen' WHERE a=2226; UPDATE t2 SET c='thirty-three thousand three hundred eighty-nine' WHERE a=2227; UPDATE t2 SET c='thirty-eight thousand five hundred seventy-three' WHERE a=2228; UPDATE t2 SET c='eight thousand eight hundred four' WHERE a=2229; UPDATE t2 SET c='nineteen thousand one hundred seventy-two' WHERE a=2230; UPDATE t2 SET c='fifty-nine thousand two hundred three' WHERE a=2231; UPDATE t2 SET c='ninety-four thousand six hundred seventy-three' WHERE a=2232; UPDATE t2 SET c='three thousand nine hundred ninety-six' WHERE a=2233; UPDATE t2 SET c='ninety-eight thousand seven hundred eighty-five' WHERE a=2234; UPDATE t2 SET c='one thousand five hundred fifty-five' WHERE a=2235; UPDATE t2 SET c='seventy thousand two hundred twelve' WHERE a=2236; UPDATE t2 SET c='fifty-four thousand seven hundred thirty-one' WHERE a=2237; UPDATE t2 SET c='twenty-two thousand two hundred forty-five' WHERE a=2238; UPDATE t2 SET c='ninety-seven thousand two hundred ninety-six' WHERE a=2239; UPDATE t2 SET c='eighty thousand fifty-two' WHERE a=2240; UPDATE t2 SET c='ninety-four thousand one hundred forty-three' WHERE a=2241; UPDATE t2 SET c='forty-four thousand five hundred forty-four' WHERE a=2242; UPDATE t2 SET c='fifty-four thousand two hundred eighty-two' WHERE a=2243; UPDATE t2 SET c='thirty thousand three hundred fifty-eight' WHERE a=2244; UPDATE t2 SET c='ninety-four thousand one hundred fifty-nine' WHERE a=2245; UPDATE t2 SET c='eighty-three thousand four hundred eighty-one' WHERE a=2246; UPDATE t2 SET c='thirty-five thousand seven hundred twenty-four' WHERE a=2247; UPDATE t2 SET c='sixty-seven thousand five hundred eighty-nine' WHERE a=2248; UPDATE t2 SET c='sixty-two thousand five hundred sixty-three' WHERE a=2249; UPDATE t2 SET c='four thousand three hundred fifty-nine' WHERE a=2250; UPDATE t2 SET c='eighty-four thousand eight hundred fifty-five' WHERE a=2251; UPDATE t2 SET c='seventy-two thousand three hundred thirty-eight' WHERE a=2252; UPDATE t2 SET c='twenty-seven thousand seven hundred ninety' WHERE a=2253; UPDATE t2 SET c='sixty-one thousand three hundred seven' WHERE a=2254; UPDATE t2 SET c='ninety-three thousand seven hundred eleven' WHERE a=2255; UPDATE t2 SET c='thirty-nine thousand seven hundred thirty-seven' WHERE a=2256; UPDATE t2 SET c='fifty-six thousand two hundred seventy-three' WHERE a=2257; UPDATE t2 SET c='forty-six thousand four hundred fifty-nine' WHERE a=2258; UPDATE t2 SET c='eighty-six thousand four hundred thirty-four' WHERE a=2259; UPDATE t2 SET c='nineteen thousand sixty-two' WHERE a=2260; UPDATE t2 SET c='seventy-five thousand eight hundred fifty-nine' WHERE a=2261; UPDATE t2 SET c='forty-eight thousand six hundred ninety-two' WHERE a=2262; UPDATE t2 SET c='sixty-six thousand six hundred eight' WHERE a=2263; UPDATE t2 SET c='eighty-nine thousand two hundred sixteen' WHERE a=2264; UPDATE t2 SET c='fifty thousand two hundred thirty-six' WHERE a=2265; UPDATE t2 SET c='twenty-four thousand one hundred forty-three' WHERE a=2266; UPDATE t2 SET c='fifty-eight thousand one hundred sixty-two' WHERE a=2267; UPDATE t2 SET c='thirty-two thousand seven hundred sixty-five' WHERE a=2268; UPDATE t2 SET c='fifty-seven thousand four hundred sixty-five' WHERE a=2269; UPDATE t2 SET c='fifty-two thousand eighteen' WHERE a=2270; UPDATE t2 SET c='three hundred eighty-one' WHERE a=2271; UPDATE t2 SET c='ninety-three thousand seven hundred thirty-four' WHERE a=2272; UPDATE t2 SET c='sixty-three thousand eight hundred seventy-five' WHERE a=2273; UPDATE t2 SET c='seventy-five thousand two hundred sixteen' WHERE a=2274; UPDATE t2 SET c='ninety-four thousand twelve' WHERE a=2275; UPDATE t2 SET c='thirty-four thousand seven hundred five' WHERE a=2276; UPDATE t2 SET c='seventy-two thousand one hundred sixty-six' WHERE a=2277; UPDATE t2 SET c='thirteen thousand eight hundred eighty-nine' WHERE a=2278; UPDATE t2 SET c='seventy-seven thousand eight hundred seventy-three' WHERE a=2279; UPDATE t2 SET c='thirty thousand six hundred ninety-seven' WHERE a=2280; UPDATE t2 SET c='thirty-seven thousand sixty-two' WHERE a=2281; UPDATE t2 SET c='sixty-four thousand one hundred forty-eight' WHERE a=2282; UPDATE t2 SET c='twenty-seven thousand one hundred thirty-six' WHERE a=2283; UPDATE t2 SET c='forty-six thousand three hundred seventy-eight' WHERE a=2284; UPDATE t2 SET c='fifty-two thousand three hundred three' WHERE a=2285; UPDATE t2 SET c='forty-three thousand five hundred fourteen' WHERE a=2286; UPDATE t2 SET c='eighty-two thousand nine hundred ten' WHERE a=2287; UPDATE t2 SET c='fifteen thousand two hundred eighty-three' WHERE a=2288; UPDATE t2 SET c='ninety-eight thousand eight hundred fourteen' WHERE a=2289; UPDATE t2 SET c='ninety-four thousand seven hundred thirty-six' WHERE a=2290; UPDATE t2 SET c='thirty-three thousand one hundred ninety-one' WHERE a=2291; UPDATE t2 SET c='thirty-six thousand three hundred seventy-eight' WHERE a=2292; UPDATE t2 SET c='sixty-two thousand one hundred sixteen' WHERE a=2293; UPDATE t2 SET c='ninety-two thousand five hundred eleven' WHERE a=2294; UPDATE t2 SET c='ninety-four thousand forty-seven' WHERE a=2295; UPDATE t2 SET c='seventy-six thousand four hundred three' WHERE a=2296; UPDATE t2 SET c='sixty-nine thousand one hundred forty-one' WHERE a=2297; UPDATE t2 SET c='forty-two thousand eight hundred fifty-seven' WHERE a=2298; UPDATE t2 SET c='seventy-five thousand five hundred three' WHERE a=2299; UPDATE t2 SET c='eighty-two thousand eight hundred sixty' WHERE a=2300; UPDATE t2 SET c='ninety-five thousand eight hundred thirteen' WHERE a=2301; UPDATE t2 SET c='seven thousand seven hundred twenty-four' WHERE a=2302; UPDATE t2 SET c='five thousand two hundred eighty-eight' WHERE a=2303; UPDATE t2 SET c='forty-three thousand four hundred ninety-five' WHERE a=2304; UPDATE t2 SET c='seventy-six thousand three hundred twenty-five' WHERE a=2305; UPDATE t2 SET c='nine thousand fourteen' WHERE a=2306; UPDATE t2 SET c='thirty-one thousand nine hundred thirty-eight' WHERE a=2307; UPDATE t2 SET c='twenty-nine thousand five hundred six' WHERE a=2308; UPDATE t2 SET c='sixty-four thousand four hundred five' WHERE a=2309; UPDATE t2 SET c='seventy-seven thousand sixteen' WHERE a=2310; UPDATE t2 SET c='eighty-eight thousand five hundred thirty-nine' WHERE a=2311; UPDATE t2 SET c='forty-seven thousand one hundred thirteen' WHERE a=2312; UPDATE t2 SET c='forty-six thousand four hundred forty-three' WHERE a=2313; UPDATE t2 SET c='eighty-nine thousand six hundred fifty-eight' WHERE a=2314; UPDATE t2 SET c='ninety-six thousand four hundred ten' WHERE a=2315; UPDATE t2 SET c='eighty-nine thousand nine hundred thirty-five' WHERE a=2316; UPDATE t2 SET c='eighty-one thousand nine hundred seventy-four' WHERE a=2317; UPDATE t2 SET c='twenty-eight thousand four hundred twenty-nine' WHERE a=2318; UPDATE t2 SET c='forty-one thousand eight hundred fifty-nine' WHERE a=2319; UPDATE t2 SET c='fifty-three thousand thirteen' WHERE a=2320; UPDATE t2 SET c='ninety-eight thousand one hundred twelve' WHERE a=2321; UPDATE t2 SET c='nineteen' WHERE a=2322; UPDATE t2 SET c='twenty-two thousand two hundred thirty-four' WHERE a=2323; UPDATE t2 SET c='seventy-one thousand one hundred four' WHERE a=2324; UPDATE t2 SET c='eighty-seven thousand eight hundred forty-three' WHERE a=2325; UPDATE t2 SET c='seventy-four thousand fifty-three' WHERE a=2326; UPDATE t2 SET c='twenty-nine thousand two hundred forty-four' WHERE a=2327; UPDATE t2 SET c='sixty-five thousand fourteen' WHERE a=2328; UPDATE t2 SET c='two thousand seven hundred eighty' WHERE a=2329; UPDATE t2 SET c='twenty-two thousand twenty' WHERE a=2330; UPDATE t2 SET c='ninety-six thousand three hundred fifty' WHERE a=2331; UPDATE t2 SET c='seventy-six thousand six hundred fifty-nine' WHERE a=2332; UPDATE t2 SET c='seventeen thousand eight hundred seventy-nine' WHERE a=2333; UPDATE t2 SET c='ninety-five thousand twenty-two' WHERE a=2334; UPDATE t2 SET c='three thousand six hundred sixty-two' WHERE a=2335; UPDATE t2 SET c='fifteen thousand one hundred forty-four' WHERE a=2336; UPDATE t2 SET c='twenty-five thousand nine hundred nine' WHERE a=2337; UPDATE t2 SET c='six thousand eight hundred ninety-seven' WHERE a=2338; UPDATE t2 SET c='twenty-two thousand five hundred sixty' WHERE a=2339; UPDATE t2 SET c='seventeen thousand five hundred fourteen' WHERE a=2340; UPDATE t2 SET c='forty-eight thousand two hundred eighty' WHERE a=2341; UPDATE t2 SET c='eighteen thousand three hundred seventy-three' WHERE a=2342; UPDATE t2 SET c='forty-three thousand one hundred twenty' WHERE a=2343; UPDATE t2 SET c='fifty thousand six hundred forty-one' WHERE a=2344; UPDATE t2 SET c='seventeen thousand seven hundred thirty-five' WHERE a=2345; UPDATE t2 SET c='five thousand seven hundred fourteen' WHERE a=2346; UPDATE t2 SET c='fifty-six thousand seventy' WHERE a=2347; UPDATE t2 SET c='seventy-eight thousand two hundred ninety-two' WHERE a=2348; UPDATE t2 SET c='thirty-two thousand seven hundred eighty-five' WHERE a=2349; UPDATE t2 SET c='twenty-one thousand three hundred sixty-four' WHERE a=2350; UPDATE t2 SET c='twenty-four thousand nine hundred fifty-five' WHERE a=2351; UPDATE t2 SET c='eighty thousand nine hundred sixteen' WHERE a=2352; UPDATE t2 SET c='nine thousand five hundred ninety-five' WHERE a=2353; UPDATE t2 SET c='sixty-eight thousand three hundred thirty-six' WHERE a=2354; UPDATE t2 SET c='eighty-six thousand nine hundred fifty-one' WHERE a=2355; UPDATE t2 SET c='forty-eight thousand two hundred twenty' WHERE a=2356; UPDATE t2 SET c='seventy-nine thousand five hundred thirty-eight' WHERE a=2357; UPDATE t2 SET c='twelve thousand nine hundred eighty-six' WHERE a=2358; UPDATE t2 SET c='four thousand three hundred sixty-nine' WHERE a=2359; UPDATE t2 SET c='eighty-six thousand thirty-four' WHERE a=2360; UPDATE t2 SET c='fifty-six thousand nine hundred ten' WHERE a=2361; UPDATE t2 SET c='twenty-five thousand two hundred fifty-seven' WHERE a=2362; UPDATE t2 SET c='fifty-one thousand three hundred eighty-nine' WHERE a=2363; UPDATE t2 SET c='ninety thousand eight hundred forty-five' WHERE a=2364; UPDATE t2 SET c='ninety-nine thousand six' WHERE a=2365; UPDATE t2 SET c='eighty-eight thousand seven hundred twenty-nine' WHERE a=2366; UPDATE t2 SET c='seventy-eight thousand nine hundred fifty-four' WHERE a=2367; UPDATE t2 SET c='seventy-five thousand eight hundred sixty-eight' WHERE a=2368; UPDATE t2 SET c='six thousand eight hundred eight' WHERE a=2369; UPDATE t2 SET c='seventy-eight thousand three hundred thirty-one' WHERE a=2370; UPDATE t2 SET c='ninety-nine thousand five hundred seventeen' WHERE a=2371; UPDATE t2 SET c='ninety-seven thousand five hundred fifty' WHERE a=2372; UPDATE t2 SET c='sixty-four thousand three hundred twenty' WHERE a=2373; UPDATE t2 SET c='thirty thousand three hundred four' WHERE a=2374; UPDATE t2 SET c='forty-one thousand five hundred thirteen' WHERE a=2375; UPDATE t2 SET c='fifty-three thousand five hundred forty-five' WHERE a=2376; UPDATE t2 SET c='thirty-five thousand one hundred fifteen' WHERE a=2377; UPDATE t2 SET c='sixty-four thousand eight hundred one' WHERE a=2378; UPDATE t2 SET c='seventy-four thousand six hundred seventy-eight' WHERE a=2379; UPDATE t2 SET c='ninety-two thousand forty-two' WHERE a=2380; UPDATE t2 SET c='sixteen thousand seven hundred sixty-eight' WHERE a=2381; UPDATE t2 SET c='ninety-three thousand one hundred sixty-three' WHERE a=2382; UPDATE t2 SET c='eighty-eight thousand four hundred sixty-one' WHERE a=2383; UPDATE t2 SET c='sixty-one thousand seven hundred twenty-three' WHERE a=2384; UPDATE t2 SET c='sixty-five thousand six hundred six' WHERE a=2385; UPDATE t2 SET c='sixty-nine thousand four hundred sixteen' WHERE a=2386; UPDATE t2 SET c='eighty-three thousand nine hundred seventy-six' WHERE a=2387; UPDATE t2 SET c='seventeen thousand two hundred fifty' WHERE a=2388; UPDATE t2 SET c='thirty-five thousand one' WHERE a=2389; UPDATE t2 SET c='twenty-seven thousand seven hundred seventy-five' WHERE a=2390; UPDATE t2 SET c='seven hundred ninety-one' WHERE a=2391; UPDATE t2 SET c='four thousand four hundred forty-eight' WHERE a=2392; UPDATE t2 SET c='twenty-four thousand eight hundred forty-one' WHERE a=2393; UPDATE t2 SET c='fifty-six thousand five hundred seventy-three' WHERE a=2394; UPDATE t2 SET c='sixty-four thousand one hundred eighty-six' WHERE a=2395; UPDATE t2 SET c='ninety-six thousand one hundred forty-eight' WHERE a=2396; UPDATE t2 SET c='fifty-three thousand nine hundred thirty-three' WHERE a=2397; UPDATE t2 SET c='thirty-one thousand four hundred eighty' WHERE a=2398; UPDATE t2 SET c='seventy-six thousand nine hundred forty-eight' WHERE a=2399; UPDATE t2 SET c='one thousand five hundred fifty-eight' WHERE a=2400; UPDATE t2 SET c='forty-four thousand three hundred seventy-two' WHERE a=2401; UPDATE t2 SET c='twenty-two thousand two hundred seventy-nine' WHERE a=2402; UPDATE t2 SET c='ten thousand five hundred thirteen' WHERE a=2403; UPDATE t2 SET c='seventeen thousand nine hundred thirty' WHERE a=2404; UPDATE t2 SET c='four thousand nine hundred thirty-five' WHERE a=2405; UPDATE t2 SET c='seventy thousand nine hundred forty-two' WHERE a=2406; UPDATE t2 SET c='thirty-seven thousand four hundred sixty-six' WHERE a=2407; UPDATE t2 SET c='eighty-nine thousand six hundred forty-one' WHERE a=2408; UPDATE t2 SET c='sixty-nine thousand one hundred fifty-seven' WHERE a=2409; UPDATE t2 SET c='six thousand two hundred thirty-six' WHERE a=2410; UPDATE t2 SET c='seventy-one thousand eight hundred forty-eight' WHERE a=2411; UPDATE t2 SET c='fifty-nine thousand seventy-four' WHERE a=2412; UPDATE t2 SET c='twelve thousand nine hundred forty-three' WHERE a=2413; UPDATE t2 SET c='eighty-four thousand one hundred forty-five' WHERE a=2414; UPDATE t2 SET c='eighty-three thousand five hundred forty-seven' WHERE a=2415; UPDATE t2 SET c='fifty-five thousand one hundred' WHERE a=2416; UPDATE t2 SET c='twenty-five thousand one hundred thirty-eight' WHERE a=2417; UPDATE t2 SET c='ninety-four thousand six hundred twenty-one' WHERE a=2418; UPDATE t2 SET c='forty-eight thousand three hundred fifty' WHERE a=2419; UPDATE t2 SET c='sixty-five thousand fifty-eight' WHERE a=2420; UPDATE t2 SET c='sixty-three thousand eight hundred forty-two' WHERE a=2421; UPDATE t2 SET c='twelve thousand seven hundred four' WHERE a=2422; UPDATE t2 SET c='forty-two thousand forty-five' WHERE a=2423; UPDATE t2 SET c='sixteen thousand four hundred eighty-four' WHERE a=2424; UPDATE t2 SET c='ninety-seven thousand three hundred ninety-two' WHERE a=2425; UPDATE t2 SET c='twenty-three thousand seventy-one' WHERE a=2426; UPDATE t2 SET c='two thousand eight hundred sixty-eight' WHERE a=2427; UPDATE t2 SET c='five thousand four hundred sixty-three' WHERE a=2428; UPDATE t2 SET c='thirteen thousand three hundred ninety-five' WHERE a=2429; UPDATE t2 SET c='seventeen thousand three hundred fifty-nine' WHERE a=2430; UPDATE t2 SET c='seventy-nine thousand sixty-three' WHERE a=2431; UPDATE t2 SET c='ninety thousand eight hundred fifty-one' WHERE a=2432; UPDATE t2 SET c='seventy-five thousand nine hundred eighty-five' WHERE a=2433; UPDATE t2 SET c='thirty thousand nine hundred thirty-seven' WHERE a=2434; UPDATE t2 SET c='seventy-three thousand eight hundred forty-one' WHERE a=2435; UPDATE t2 SET c='eighty-three thousand three hundred thirty-three' WHERE a=2436; UPDATE t2 SET c='thirty-three thousand nine hundred sixty-two' WHERE a=2437; UPDATE t2 SET c='ninety-eight thousand five hundred one' WHERE a=2438; UPDATE t2 SET c='forty-seven thousand ninety-seven' WHERE a=2439; UPDATE t2 SET c='twelve thousand eight hundred seventy-four' WHERE a=2440; UPDATE t2 SET c='forty-seven thousand six hundred thirty' WHERE a=2441; UPDATE t2 SET c='eighty thousand four hundred one' WHERE a=2442; UPDATE t2 SET c='thirty-nine thousand nine hundred ninety-two' WHERE a=2443; UPDATE t2 SET c='three thousand three hundred eight' WHERE a=2444; UPDATE t2 SET c='thirty-seven thousand eight hundred thirty-nine' WHERE a=2445; UPDATE t2 SET c='twenty-two thousand three hundred twenty-nine' WHERE a=2446; UPDATE t2 SET c='forty thousand eight hundred forty-seven' WHERE a=2447; UPDATE t2 SET c='twenty-four thousand two hundred eleven' WHERE a=2448; UPDATE t2 SET c='thirty-one thousand one hundred forty-four' WHERE a=2449; UPDATE t2 SET c='fifty-five thousand four hundred eighty-three' WHERE a=2450; UPDATE t2 SET c='sixty-seven thousand one hundred forty' WHERE a=2451; UPDATE t2 SET c='thirty-nine thousand seven hundred seventy' WHERE a=2452; UPDATE t2 SET c='thirty-seven thousand seven hundred ninety-one' WHERE a=2453; UPDATE t2 SET c='seventy-eight thousand three hundred ninety-seven' WHERE a=2454; UPDATE t2 SET c='six thousand eight hundred thirty-five' WHERE a=2455; UPDATE t2 SET c='thirty thousand seven hundred thirty-one' WHERE a=2456; UPDATE t2 SET c='thirty-eight thousand one hundred thirty-two' WHERE a=2457; UPDATE t2 SET c='thirty-two thousand nine hundred eighty-three' WHERE a=2458; UPDATE t2 SET c='eighty-five thousand eight hundred sixty-eight' WHERE a=2459; UPDATE t2 SET c='fifty-seven thousand one hundred forty-five' WHERE a=2460; UPDATE t2 SET c='ninety-one thousand two hundred twenty' WHERE a=2461; UPDATE t2 SET c='sixty-one thousand six hundred ninety-seven' WHERE a=2462; UPDATE t2 SET c='ninety-three thousand seven hundred fifty-five' WHERE a=2463; UPDATE t2 SET c='ninety-one thousand seven hundred thirty-four' WHERE a=2464; UPDATE t2 SET c='seventy thousand six hundred nineteen' WHERE a=2465; UPDATE t2 SET c='eighty-nine thousand one hundred eighty-nine' WHERE a=2466; UPDATE t2 SET c='thirty-eight thousand seven hundred fifty-two' WHERE a=2467; UPDATE t2 SET c='eighty thousand forty-eight' WHERE a=2468; UPDATE t2 SET c='seventeen thousand four hundred eighty-one' WHERE a=2469; UPDATE t2 SET c='six thousand two hundred sixty-five' WHERE a=2470; UPDATE t2 SET c='forty-one thousand six hundred five' WHERE a=2471; UPDATE t2 SET c='fifty-six thousand nine hundred twenty-three' WHERE a=2472; UPDATE t2 SET c='seventy-two thousand seven hundred eighty-six' WHERE a=2473; UPDATE t2 SET c='ninety-three thousand five hundred forty-eight' WHERE a=2474; UPDATE t2 SET c='five thousand five hundred sixty-four' WHERE a=2475; UPDATE t2 SET c='forty thousand seven hundred seventy-one' WHERE a=2476; UPDATE t2 SET c='sixty-eight thousand nine hundred ninety-eight' WHERE a=2477; UPDATE t2 SET c='eighty-seven thousand nine hundred seventeen' WHERE a=2478; UPDATE t2 SET c='seventy-seven thousand one hundred twenty-seven' WHERE a=2479; UPDATE t2 SET c='eighty-eight thousand sixty-four' WHERE a=2480; UPDATE t2 SET c='twenty-one thousand three hundred forty-three' WHERE a=2481; UPDATE t2 SET c='sixty-two thousand four hundred twenty-five' WHERE a=2482; UPDATE t2 SET c='seventy-two thousand nine hundred' WHERE a=2483; UPDATE t2 SET c='seventeen thousand two hundred ninety-two' WHERE a=2484; UPDATE t2 SET c='seventy-three thousand three hundred five' WHERE a=2485; UPDATE t2 SET c='thirty-five thousand four hundred forty-four' WHERE a=2486; UPDATE t2 SET c='seventy-seven thousand one hundred thirty-three' WHERE a=2487; UPDATE t2 SET c='ninety-seven thousand four hundred thirty-five' WHERE a=2488; UPDATE t2 SET c='forty-five thousand eight hundred ninety-nine' WHERE a=2489; UPDATE t2 SET c='fifty-six thousand nine hundred eight' WHERE a=2490; UPDATE t2 SET c='sixty-two thousand one hundred forty-nine' WHERE a=2491; UPDATE t2 SET c='nine thousand five hundred twelve' WHERE a=2492; UPDATE t2 SET c='sixty-eight thousand twenty-four' WHERE a=2493; UPDATE t2 SET c='thirty-five thousand five hundred thirty-three' WHERE a=2494; UPDATE t2 SET c='six thousand ninety-four' WHERE a=2495; UPDATE t2 SET c='seventy-five thousand seven hundred seventy-two' WHERE a=2496; UPDATE t2 SET c='eighty-three thousand one hundred ninety-two' WHERE a=2497; UPDATE t2 SET c='eighty-eight thousand nine hundred eighteen' WHERE a=2498; UPDATE t2 SET c='sixty-nine thousand four hundred thirty-six' WHERE a=2499; UPDATE t2 SET c='ninety-six thousand two hundred sixty-four' WHERE a=2500; UPDATE t2 SET c='thirty-one thousand six' WHERE a=2501; UPDATE t2 SET c='sixty-six thousand one hundred seventy-seven' WHERE a=2502; UPDATE t2 SET c='twenty-six thousand six hundred seventeen' WHERE a=2503; UPDATE t2 SET c='forty thousand two hundred seventy-nine' WHERE a=2504; UPDATE t2 SET c='twenty-two thousand one hundred eighty-four' WHERE a=2505; UPDATE t2 SET c='sixty-one thousand two hundred sixty-three' WHERE a=2506; UPDATE t2 SET c='twelve thousand seven hundred one' WHERE a=2507; UPDATE t2 SET c='eighty-eight thousand two hundred seventy-five' WHERE a=2508; UPDATE t2 SET c='four thousand four hundred fifty' WHERE a=2509; UPDATE t2 SET c='eighty-six thousand six hundred eighty-three' WHERE a=2510; UPDATE t2 SET c='twenty-eight thousand nine hundred forty-two' WHERE a=2511; UPDATE t2 SET c='sixty-four thousand eight hundred ninety-nine' WHERE a=2512; UPDATE t2 SET c='fifty-seven thousand nine hundred two' WHERE a=2513; UPDATE t2 SET c='sixty-one thousand eight hundred seven' WHERE a=2514; UPDATE t2 SET c='eighty thousand one hundred twelve' WHERE a=2515; UPDATE t2 SET c='nine thousand one hundred twenty' WHERE a=2516; UPDATE t2 SET c='seventy-six thousand five hundred sixteen' WHERE a=2517; UPDATE t2 SET c='forty-two thousand seven hundred fifty-two' WHERE a=2518; UPDATE t2 SET c='thirty-six thousand eight hundred forty-one' WHERE a=2519; UPDATE t2 SET c='five thousand eight hundred thirty-four' WHERE a=2520; UPDATE t2 SET c='nine thousand seventy-seven' WHERE a=2521; UPDATE t2 SET c='forty-nine thousand eight hundred seventy-eight' WHERE a=2522; UPDATE t2 SET c='sixty-six thousand eight hundred forty-seven' WHERE a=2523; UPDATE t2 SET c='twenty-three thousand one hundred twenty-five' WHERE a=2524; UPDATE t2 SET c='seventy-four thousand fifty-nine' WHERE a=2525; UPDATE t2 SET c='three thousand one hundred twenty-five' WHERE a=2526; UPDATE t2 SET c='twenty-eight thousand three hundred forty-six' WHERE a=2527; UPDATE t2 SET c='seven thousand five hundred sixty-seven' WHERE a=2528; UPDATE t2 SET c='sixty-seven thousand seven hundred thirty-one' WHERE a=2529; UPDATE t2 SET c='seventy-nine thousand five hundred sixty-four' WHERE a=2530; UPDATE t2 SET c='fifty-eight thousand four hundred fourteen' WHERE a=2531; UPDATE t2 SET c='four thousand two hundred four' WHERE a=2532; UPDATE t2 SET c='fourteen thousand seven hundred ninety-four' WHERE a=2533; UPDATE t2 SET c='sixty-two thousand nine hundred ten' WHERE a=2534; UPDATE t2 SET c='forty-five thousand one hundred forty-two' WHERE a=2535; UPDATE t2 SET c='eight thousand eighty-one' WHERE a=2536; UPDATE t2 SET c='nine thousand five hundred seventy-nine' WHERE a=2537; UPDATE t2 SET c='sixty thousand four hundred twenty-three' WHERE a=2538; UPDATE t2 SET c='twenty-nine thousand seven hundred sixty-seven' WHERE a=2539; UPDATE t2 SET c='ten thousand seven hundred fifteen' WHERE a=2540; UPDATE t2 SET c='sixty-one thousand nine hundred five' WHERE a=2541; UPDATE t2 SET c='thirteen thousand five hundred ninety-three' WHERE a=2542; UPDATE t2 SET c='fifteen thousand five hundred seven' WHERE a=2543; UPDATE t2 SET c='thirty-three thousand five hundred sixty' WHERE a=2544; UPDATE t2 SET c='thirty-nine thousand five hundred sixteen' WHERE a=2545; UPDATE t2 SET c='ninety-five thousand three hundred twenty-eight' WHERE a=2546; UPDATE t2 SET c='ninety-one thousand three hundred nine' WHERE a=2547; UPDATE t2 SET c='nine hundred forty' WHERE a=2548; UPDATE t2 SET c='eighty-four thousand six hundred one' WHERE a=2549; UPDATE t2 SET c='sixty-two thousand seven hundred forty-one' WHERE a=2550; UPDATE t2 SET c='eighty-three thousand five hundred ninety-nine' WHERE a=2551; UPDATE t2 SET c='sixty thousand six hundred forty-seven' WHERE a=2552; UPDATE t2 SET c='sixty-seven thousand three hundred sixty-three' WHERE a=2553; UPDATE t2 SET c='eighty thousand ninety-four' WHERE a=2554; UPDATE t2 SET c='thirty-five thousand four hundred twenty-nine' WHERE a=2555; UPDATE t2 SET c='thirty thousand six hundred forty-two' WHERE a=2556; UPDATE t2 SET c='twenty thousand three hundred eighty-two' WHERE a=2557; UPDATE t2 SET c='seventy-six thousand seven hundred fifty-three' WHERE a=2558; UPDATE t2 SET c='one thousand two hundred sixty-nine' WHERE a=2559; UPDATE t2 SET c='forty-one thousand five hundred ninety-nine' WHERE a=2560; UPDATE t2 SET c='thirty-seven thousand one hundred ninety-nine' WHERE a=2561; UPDATE t2 SET c='sixty-one thousand nine hundred forty-three' WHERE a=2562; UPDATE t2 SET c='eighteen thousand five hundred six' WHERE a=2563; UPDATE t2 SET c='twenty-two thousand six hundred seventy-one' WHERE a=2564; UPDATE t2 SET c='ten thousand six hundred sixty-three' WHERE a=2565; UPDATE t2 SET c='eighty-one thousand five hundred seventy-one' WHERE a=2566; UPDATE t2 SET c='fourteen thousand seven hundred thirty-nine' WHERE a=2567; UPDATE t2 SET c='seventy-three thousand six hundred fifty-two' WHERE a=2568; UPDATE t2 SET c='twenty-one thousand eight hundred three' WHERE a=2569; UPDATE t2 SET c='thirty thousand nine hundred thirty-two' WHERE a=2570; UPDATE t2 SET c='fifty-eight thousand eight hundred forty-seven' WHERE a=2571; UPDATE t2 SET c='eighty-eight thousand thirty-two' WHERE a=2572; UPDATE t2 SET c='fifty-eight thousand seven hundred seventy-one' WHERE a=2573; UPDATE t2 SET c='forty-nine thousand three hundred twenty-two' WHERE a=2574; UPDATE t2 SET c='ten thousand six hundred eighty-two' WHERE a=2575; UPDATE t2 SET c='eighty-six thousand six hundred thirty-three' WHERE a=2576; UPDATE t2 SET c='seventeen thousand seven hundred ninety-nine' WHERE a=2577; UPDATE t2 SET c='two thousand four hundred sixty-eight' WHERE a=2578; UPDATE t2 SET c='eight thousand one hundred fifty-one' WHERE a=2579; UPDATE t2 SET c='sixty-two thousand three hundred thirty-two' WHERE a=2580; UPDATE t2 SET c='seventy-six thousand seven hundred fifty-nine' WHERE a=2581; UPDATE t2 SET c='seventy-eight thousand three hundred seventy-six' WHERE a=2582; UPDATE t2 SET c='thirteen thousand seven hundred thirty-four' WHERE a=2583; UPDATE t2 SET c='fifty-eight thousand five hundred thirty-two' WHERE a=2584; UPDATE t2 SET c='fifteen thousand nine hundred seven' WHERE a=2585; UPDATE t2 SET c='twelve thousand eight hundred five' WHERE a=2586; UPDATE t2 SET c='forty-two thousand nine hundred five' WHERE a=2587; UPDATE t2 SET c='one thousand eight hundred seventy-nine' WHERE a=2588; UPDATE t2 SET c='thirty thousand six hundred seventy-seven' WHERE a=2589; UPDATE t2 SET c='twenty-four thousand one hundred eighty-nine' WHERE a=2590; UPDATE t2 SET c='eighty-five thousand two hundred seventy' WHERE a=2591; UPDATE t2 SET c='seventy-eight thousand six hundred thirty-eight' WHERE a=2592; UPDATE t2 SET c='thirty-one thousand two hundred fifty' WHERE a=2593; UPDATE t2 SET c='sixty-eight thousand one hundred nineteen' WHERE a=2594; UPDATE t2 SET c='fifty-five thousand six hundred twenty-nine' WHERE a=2595; UPDATE t2 SET c='ninety-eight thousand one hundred sixty-nine' WHERE a=2596; UPDATE t2 SET c='twenty-five thousand six hundred forty-seven' WHERE a=2597; UPDATE t2 SET c='ninety-three thousand seven hundred ninety-three' WHERE a=2598; UPDATE t2 SET c='ninety-nine thousand four hundred five' WHERE a=2599; UPDATE t2 SET c='sixty-seven thousand six hundred nineteen' WHERE a=2600; UPDATE t2 SET c='forty-six thousand four hundred fifty' WHERE a=2601; UPDATE t2 SET c='ninety-two thousand twenty-one' WHERE a=2602; UPDATE t2 SET c='one thousand nine hundred ninety-seven' WHERE a=2603; UPDATE t2 SET c='forty-five thousand two hundred twenty-four' WHERE a=2604; UPDATE t2 SET c='seventy-six thousand three hundred seventeen' WHERE a=2605; UPDATE t2 SET c='forty-eight thousand eight hundred sixty-seven' WHERE a=2606; UPDATE t2 SET c='sixty thousand five hundred' WHERE a=2607; UPDATE t2 SET c='ninety-two thousand three hundred ninety-two' WHERE a=2608; UPDATE t2 SET c='fifty-seven thousand six hundred eighty-four' WHERE a=2609; UPDATE t2 SET c='fifty thousand eight hundred seventy-three' WHERE a=2610; UPDATE t2 SET c='fifty thousand three hundred twenty-one' WHERE a=2611; UPDATE t2 SET c='ninety-nine thousand eighty-four' WHERE a=2612; UPDATE t2 SET c='fifty-five thousand six hundred fifty-six' WHERE a=2613; UPDATE t2 SET c='thirty-one thousand eight hundred three' WHERE a=2614; UPDATE t2 SET c='six thousand one hundred fifty-one' WHERE a=2615; UPDATE t2 SET c='fourteen thousand six hundred seventy-four' WHERE a=2616; UPDATE t2 SET c='eighty-five thousand four hundred sixty' WHERE a=2617; UPDATE t2 SET c='four thousand eight hundred forty-six' WHERE a=2618; UPDATE t2 SET c='twenty-three thousand three hundred seventy-four' WHERE a=2619; UPDATE t2 SET c='thirty-two thousand nine hundred twenty-five' WHERE a=2620; UPDATE t2 SET c='sixty-four thousand six hundred seventy-one' WHERE a=2621; UPDATE t2 SET c='eighty-five thousand seven hundred eighty-eight' WHERE a=2622; UPDATE t2 SET c='three thousand nine hundred seventeen' WHERE a=2623; UPDATE t2 SET c='forty-seven thousand three hundred sixty' WHERE a=2624; UPDATE t2 SET c='thirty-three thousand fifty-seven' WHERE a=2625; UPDATE t2 SET c='sixty-five thousand eighty-four' WHERE a=2626; UPDATE t2 SET c='twenty-five thousand five hundred ninety-six' WHERE a=2627; UPDATE t2 SET c='fifty-nine thousand four hundred ninety' WHERE a=2628; UPDATE t2 SET c='thirty-five thousand eight' WHERE a=2629; UPDATE t2 SET c='seventy-one thousand two hundred seventy-two' WHERE a=2630; UPDATE t2 SET c='sixty-six thousand six hundred eighty-four' WHERE a=2631; UPDATE t2 SET c='twenty thousand twenty-one' WHERE a=2632; UPDATE t2 SET c='forty-five thousand five hundred fifty-eight' WHERE a=2633; UPDATE t2 SET c='forty-nine thousand nine hundred sixty-two' WHERE a=2634; UPDATE t2 SET c='sixty-one thousand sixty-nine' WHERE a=2635; UPDATE t2 SET c='eighty thousand four hundred fifty-three' WHERE a=2636; UPDATE t2 SET c='ninety-three thousand two hundred twenty-one' WHERE a=2637; UPDATE t2 SET c='eighty-five thousand six hundred twenty-two' WHERE a=2638; UPDATE t2 SET c='sixty-five thousand three hundred two' WHERE a=2639; UPDATE t2 SET c='eighty-eight thousand seven hundred sixty-five' WHERE a=2640; UPDATE t2 SET c='seventeen thousand seven hundred ninety-three' WHERE a=2641; UPDATE t2 SET c='seventy-two thousand five hundred sixty-seven' WHERE a=2642; UPDATE t2 SET c='seventy-nine thousand twenty-six' WHERE a=2643; UPDATE t2 SET c='sixty-three thousand seven hundred twenty' WHERE a=2644; UPDATE t2 SET c='twenty thousand two hundred sixty-eight' WHERE a=2645; UPDATE t2 SET c='one hundred ninety-seven' WHERE a=2646; UPDATE t2 SET c='eleven thousand four hundred twenty-three' WHERE a=2647; UPDATE t2 SET c='fifty-one thousand four hundred five' WHERE a=2648; UPDATE t2 SET c='ninety-two thousand five hundred seven' WHERE a=2649; UPDATE t2 SET c='thirty thousand five hundred ninety-nine' WHERE a=2650; UPDATE t2 SET c='eighteen thousand thirty-one' WHERE a=2651; UPDATE t2 SET c='thirteen thousand nine hundred forty-nine' WHERE a=2652; UPDATE t2 SET c='sixty thousand six hundred forty-seven' WHERE a=2653; UPDATE t2 SET c='sixty-one thousand one hundred forty' WHERE a=2654; UPDATE t2 SET c='ninety-four thousand five hundred sixty-three' WHERE a=2655; UPDATE t2 SET c='eleven thousand seven hundred seventy' WHERE a=2656; UPDATE t2 SET c='forty-seven thousand five hundred ninety-seven' WHERE a=2657; UPDATE t2 SET c='ninety-six thousand five hundred eight' WHERE a=2658; UPDATE t2 SET c='fifteen thousand four hundred twenty-one' WHERE a=2659; UPDATE t2 SET c='fifty-three thousand eight hundred sixty-seven' WHERE a=2660; UPDATE t2 SET c='fourteen thousand seven hundred eight' WHERE a=2661; UPDATE t2 SET c='seventy thousand five hundred ninety-nine' WHERE a=2662; UPDATE t2 SET c='seventy-five thousand nine hundred sixty-five' WHERE a=2663; UPDATE t2 SET c='twenty-nine thousand one hundred two' WHERE a=2664; UPDATE t2 SET c='seventy-seven thousand one hundred ninety-five' WHERE a=2665; UPDATE t2 SET c='forty-seven thousand four hundred fifty-three' WHERE a=2666; UPDATE t2 SET c='eighty-one thousand seven hundred sixteen' WHERE a=2667; UPDATE t2 SET c='thirty-three thousand three hundred ten' WHERE a=2668; UPDATE t2 SET c='forty-seven thousand two hundred two' WHERE a=2669; UPDATE t2 SET c='eighty-eight thousand three hundred thirty-five' WHERE a=2670; UPDATE t2 SET c='eighteen thousand fifty-eight' WHERE a=2671; UPDATE t2 SET c='eighty-three thousand four hundred fifty-four' WHERE a=2672; UPDATE t2 SET c='eighty-five thousand one hundred eight' WHERE a=2673; UPDATE t2 SET c='nineteen thousand three hundred three' WHERE a=2674; UPDATE t2 SET c='fifty-eight thousand four hundred thirty-one' WHERE a=2675; UPDATE t2 SET c='forty-eight thousand six hundred seventy-four' WHERE a=2676; UPDATE t2 SET c='sixty-eight thousand eight hundred seventy-eight' WHERE a=2677; UPDATE t2 SET c='sixty-seven thousand one hundred sixty-four' WHERE a=2678; UPDATE t2 SET c='thirty-three thousand two hundred ninety-nine' WHERE a=2679; UPDATE t2 SET c='fifty-six thousand two hundred fifty-six' WHERE a=2680; UPDATE t2 SET c='fifty-three thousand five hundred twenty-nine' WHERE a=2681; UPDATE t2 SET c='thirty-nine thousand eight hundred thirty-four' WHERE a=2682; UPDATE t2 SET c='fifty-three thousand six hundred thirty-six' WHERE a=2683; UPDATE t2 SET c='forty thousand three hundred ninety' WHERE a=2684; UPDATE t2 SET c='forty-six thousand five hundred ninety-one' WHERE a=2685; UPDATE t2 SET c='twenty-five thousand two hundred ten' WHERE a=2686; UPDATE t2 SET c='fifty-four thousand thirty-one' WHERE a=2687; UPDATE t2 SET c='eighty-seven thousand four hundred two' WHERE a=2688; UPDATE t2 SET c='seventeen thousand three hundred sixty' WHERE a=2689; UPDATE t2 SET c='thirteen thousand eight hundred twenty-eight' WHERE a=2690; UPDATE t2 SET c='eighty-one thousand one hundred thirty' WHERE a=2691; UPDATE t2 SET c='sixteen thousand six hundred sixteen' WHERE a=2692; UPDATE t2 SET c='eighty-four thousand nine hundred fifty-three' WHERE a=2693; UPDATE t2 SET c='seventy-two thousand two hundred fourteen' WHERE a=2694; UPDATE t2 SET c='thirteen thousand three hundred twenty-two' WHERE a=2695; UPDATE t2 SET c='forty-seven thousand one hundred thirty-six' WHERE a=2696; UPDATE t2 SET c='sixteen thousand eight hundred eighty-four' WHERE a=2697; UPDATE t2 SET c='eighteen thousand three hundred fifty-four' WHERE a=2698; UPDATE t2 SET c='eleven thousand one hundred seventy' WHERE a=2699; UPDATE t2 SET c='twenty-nine thousand four hundred eighty-two' WHERE a=2700; UPDATE t2 SET c='forty-five thousand three hundred thirteen' WHERE a=2701; UPDATE t2 SET c='fifteen thousand five hundred seventy-four' WHERE a=2702; UPDATE t2 SET c='seventy-five thousand five hundred three' WHERE a=2703; UPDATE t2 SET c='thirty-eight thousand nine hundred fifty-seven' WHERE a=2704; UPDATE t2 SET c='ninety-nine thousand two hundred forty-nine' WHERE a=2705; UPDATE t2 SET c='sixty-four thousand nine hundred eighty-three' WHERE a=2706; UPDATE t2 SET c='fifty-five thousand nine hundred sixty-two' WHERE a=2707; UPDATE t2 SET c='fifty-two thousand two hundred sixty-one' WHERE a=2708; UPDATE t2 SET c='thirty-one thousand six hundred eight' WHERE a=2709; UPDATE t2 SET c='eighteen thousand nine hundred twenty-eight' WHERE a=2710; UPDATE t2 SET c='forty-three thousand sixty-eight' WHERE a=2711; UPDATE t2 SET c='forty thousand two hundred thirty-one' WHERE a=2712; UPDATE t2 SET c='twenty-seven thousand three hundred sixty-four' WHERE a=2713; UPDATE t2 SET c='sixty-eight thousand one hundred eighty-eight' WHERE a=2714; UPDATE t2 SET c='eighty-four thousand nine hundred eighty-six' WHERE a=2715; UPDATE t2 SET c='seventy-four thousand one hundred ninety' WHERE a=2716; UPDATE t2 SET c='sixty-six thousand one hundred twenty-one' WHERE a=2717; UPDATE t2 SET c='sixty-one thousand seven hundred eighty-five' WHERE a=2718; UPDATE t2 SET c='forty-six thousand one hundred sixteen' WHERE a=2719; UPDATE t2 SET c='five thousand six hundred seventy-two' WHERE a=2720; UPDATE t2 SET c='fifty-four thousand one hundred sixty-three' WHERE a=2721; UPDATE t2 SET c='seventy-one thousand nine hundred ninety-eight' WHERE a=2722; UPDATE t2 SET c='ninety-one thousand eight hundred nine' WHERE a=2723; UPDATE t2 SET c='seventy-nine thousand one hundred eighty-nine' WHERE a=2724; UPDATE t2 SET c='forty thousand four hundred ninety-nine' WHERE a=2725; UPDATE t2 SET c='twenty-seven thousand nine hundred ninety-six' WHERE a=2726; UPDATE t2 SET c='thirty-seven thousand eight hundred forty-nine' WHERE a=2727; UPDATE t2 SET c='forty-seven thousand seven hundred eighty' WHERE a=2728; UPDATE t2 SET c='seventy-six thousand six' WHERE a=2729; UPDATE t2 SET c='twenty thousand one hundred eight' WHERE a=2730; UPDATE t2 SET c='twenty-six thousand two hundred eighty-one' WHERE a=2731; UPDATE t2 SET c='fourteen thousand nine hundred sixty-three' WHERE a=2732; UPDATE t2 SET c='sixty-five thousand eight hundred forty-two' WHERE a=2733; UPDATE t2 SET c='ninety-six thousand eight hundred forty' WHERE a=2734; UPDATE t2 SET c='ninety-two thousand nine hundred seventy-eight' WHERE a=2735; UPDATE t2 SET c='thirty-five thousand four hundred twenty-four' WHERE a=2736; UPDATE t2 SET c='seventy-four thousand seven hundred fifty-one' WHERE a=2737; UPDATE t2 SET c='seventy-nine thousand nine hundred forty' WHERE a=2738; UPDATE t2 SET c='thirty-six thousand one hundred forty-nine' WHERE a=2739; UPDATE t2 SET c='sixty-six thousand seven hundred forty-four' WHERE a=2740; UPDATE t2 SET c='ninety-six thousand four hundred eight' WHERE a=2741; UPDATE t2 SET c='sixty-five thousand three hundred sixty-five' WHERE a=2742; UPDATE t2 SET c='eighty-seven thousand one hundred sixteen' WHERE a=2743; UPDATE t2 SET c='thirty-three thousand six hundred forty-four' WHERE a=2744; UPDATE t2 SET c='fifty-five thousand eight hundred sixty-six' WHERE a=2745; UPDATE t2 SET c='eighty-one thousand nine' WHERE a=2746; UPDATE t2 SET c='forty-nine thousand four hundred sixteen' WHERE a=2747; UPDATE t2 SET c='forty thousand one hundred forty-five' WHERE a=2748; UPDATE t2 SET c='twenty thousand three hundred ninety' WHERE a=2749; UPDATE t2 SET c='fourteen thousand two hundred sixty-three' WHERE a=2750; UPDATE t2 SET c='ninety-five thousand three hundred forty' WHERE a=2751; UPDATE t2 SET c='twenty-six thousand four hundred five' WHERE a=2752; UPDATE t2 SET c='sixty-two thousand eight hundred thirty-seven' WHERE a=2753; UPDATE t2 SET c='twenty-two thousand five hundred sixty-five' WHERE a=2754; UPDATE t2 SET c='seventy-three thousand fourteen' WHERE a=2755; UPDATE t2 SET c='thirty-four thousand six hundred seventy-nine' WHERE a=2756; UPDATE t2 SET c='sixty-five thousand three hundred ninety-two' WHERE a=2757; UPDATE t2 SET c='thirty-nine thousand seven hundred fifty-three' WHERE a=2758; UPDATE t2 SET c='twelve thousand eight hundred ninety-seven' WHERE a=2759; UPDATE t2 SET c='eight thousand eight hundred ninety-nine' WHERE a=2760; UPDATE t2 SET c='sixty-five thousand eight hundred forty-one' WHERE a=2761; UPDATE t2 SET c='fifty-three thousand nine hundred forty-six' WHERE a=2762; UPDATE t2 SET c='ninety-four thousand fifty-one' WHERE a=2763; UPDATE t2 SET c='sixty-six thousand eight hundred fifty-three' WHERE a=2764; UPDATE t2 SET c='eight thousand seven hundred ninety-two' WHERE a=2765; UPDATE t2 SET c='thirty-eight thousand eight hundred six' WHERE a=2766; UPDATE t2 SET c='nineteen thousand five hundred seventy-three' WHERE a=2767; UPDATE t2 SET c='eighty-two thousand nine hundred twenty-five' WHERE a=2768; UPDATE t2 SET c='eight thousand five hundred eighty-one' WHERE a=2769; UPDATE t2 SET c='four thousand eight hundred eight' WHERE a=2770; UPDATE t2 SET c='sixty-three thousand four hundred forty-nine' WHERE a=2771; UPDATE t2 SET c='twenty-five thousand nine hundred eighty-two' WHERE a=2772; UPDATE t2 SET c='thirty-eight thousand seven hundred forty-six' WHERE a=2773; UPDATE t2 SET c='sixty-eight thousand seven hundred one' WHERE a=2774; UPDATE t2 SET c='seventy-five thousand one hundred fifty-seven' WHERE a=2775; UPDATE t2 SET c='thirty-five thousand six hundred sixty-eight' WHERE a=2776; UPDATE t2 SET c='four thousand five hundred twenty-four' WHERE a=2777; UPDATE t2 SET c='thirty-two thousand nine hundred eighty-seven' WHERE a=2778; UPDATE t2 SET c='thirty-six thousand five hundred sixty-nine' WHERE a=2779; UPDATE t2 SET c='ninety-nine thousand four hundred forty-one' WHERE a=2780; UPDATE t2 SET c='eighty-eight thousand seven hundred eighty-four' WHERE a=2781; UPDATE t2 SET c='five thousand five hundred six' WHERE a=2782; UPDATE t2 SET c='forty-one thousand four hundred eighty-six' WHERE a=2783; UPDATE t2 SET c='eleven thousand two hundred' WHERE a=2784; UPDATE t2 SET c='fifty-one thousand seven hundred four' WHERE a=2785; UPDATE t2 SET c='seventeen thousand five hundred three' WHERE a=2786; UPDATE t2 SET c='forty-seven thousand three hundred seven' WHERE a=2787; UPDATE t2 SET c='seventy-three thousand eight hundred fifty-eight' WHERE a=2788; UPDATE t2 SET c='fifty thousand three hundred eighty-six' WHERE a=2789; UPDATE t2 SET c='twenty thousand two hundred forty-two' WHERE a=2790; UPDATE t2 SET c='sixty-seven thousand one hundred forty-four' WHERE a=2791; UPDATE t2 SET c='ninety-eight thousand one hundred seven' WHERE a=2792; UPDATE t2 SET c='twenty-four thousand six hundred sixty' WHERE a=2793; UPDATE t2 SET c='twenty-two thousand nine hundred forty-eight' WHERE a=2794; UPDATE t2 SET c='twenty-eight thousand six hundred ninety-one' WHERE a=2795; UPDATE t2 SET c='eight hundred twenty-five' WHERE a=2796; UPDATE t2 SET c='seventy-five thousand three hundred seventy-seven' WHERE a=2797; UPDATE t2 SET c='nineteen thousand seven hundred ninety-two' WHERE a=2798; UPDATE t2 SET c='fifty-one thousand four hundred ninety-three' WHERE a=2799; UPDATE t2 SET c='seventy thousand three hundred thirty-eight' WHERE a=2800; UPDATE t2 SET c='thirty-two thousand seven hundred seventy-eight' WHERE a=2801; UPDATE t2 SET c='seventy-seven thousand one hundred twenty-six' WHERE a=2802; UPDATE t2 SET c='sixty-six thousand five hundred forty-eight' WHERE a=2803; UPDATE t2 SET c='ninety-six thousand eight hundred fifty-six' WHERE a=2804; UPDATE t2 SET c='ninety-six thousand seven hundred forty-eight' WHERE a=2805; UPDATE t2 SET c='fifty-seven thousand two hundred eighty-eight' WHERE a=2806; UPDATE t2 SET c='eighty thousand one hundred twenty-seven' WHERE a=2807; UPDATE t2 SET c='ninety-nine thousand five hundred eighty-seven' WHERE a=2808; UPDATE t2 SET c='eighty-five thousand nine' WHERE a=2809; UPDATE t2 SET c='eighty-eight thousand five hundred ninety-one' WHERE a=2810; UPDATE t2 SET c='thirty-five thousand two hundred two' WHERE a=2811; UPDATE t2 SET c='fifty-nine thousand eight hundred sixty-three' WHERE a=2812; UPDATE t2 SET c='fifty-one thousand three hundred forty-eight' WHERE a=2813; UPDATE t2 SET c='forty-six thousand nine hundred seventy-two' WHERE a=2814; UPDATE t2 SET c='sixty-two thousand twenty-seven' WHERE a=2815; UPDATE t2 SET c='four thousand four hundred twenty-six' WHERE a=2816; UPDATE t2 SET c='sixty-five thousand four hundred seventy-seven' WHERE a=2817; UPDATE t2 SET c='forty thousand four hundred sixty-six' WHERE a=2818; UPDATE t2 SET c='three thousand sixty-three' WHERE a=2819; UPDATE t2 SET c='forty-four thousand two hundred four' WHERE a=2820; UPDATE t2 SET c='one thousand two hundred thirty-nine' WHERE a=2821; UPDATE t2 SET c='three thousand eight hundred ten' WHERE a=2822; UPDATE t2 SET c='twelve thousand six hundred forty-six' WHERE a=2823; UPDATE t2 SET c='fifty-five thousand seven hundred thirty-six' WHERE a=2824; UPDATE t2 SET c='sixty-six thousand six hundred forty-four' WHERE a=2825; UPDATE t2 SET c='ninety thousand two hundred fifty-five' WHERE a=2826; UPDATE t2 SET c='twenty-two thousand nineteen' WHERE a=2827; UPDATE t2 SET c='forty-two thousand three hundred seventy-four' WHERE a=2828; UPDATE t2 SET c='five thousand three hundred eighty-two' WHERE a=2829; UPDATE t2 SET c='thirteen thousand three hundred' WHERE a=2830; UPDATE t2 SET c='fifty-five thousand six hundred eight' WHERE a=2831; UPDATE t2 SET c='sixty thousand four' WHERE a=2832; UPDATE t2 SET c='eighty-five thousand eight hundred thirty-seven' WHERE a=2833; UPDATE t2 SET c='one thousand five hundred thirty-seven' WHERE a=2834; UPDATE t2 SET c='eight thousand seven hundred sixty-four' WHERE a=2835; UPDATE t2 SET c='seventy thousand one hundred twenty-six' WHERE a=2836; UPDATE t2 SET c='forty thousand two hundred forty-eight' WHERE a=2837; UPDATE t2 SET c='ninety-nine thousand eight hundred one' WHERE a=2838; UPDATE t2 SET c='sixty-four thousand seventy-six' WHERE a=2839; UPDATE t2 SET c='seventy-one thousand seven hundred twenty-two' WHERE a=2840; UPDATE t2 SET c='three thousand six hundred eighty-three' WHERE a=2841; UPDATE t2 SET c='fifty-eight thousand one hundred sixty-six' WHERE a=2842; UPDATE t2 SET c='fifty-two thousand sixty-eight' WHERE a=2843; UPDATE t2 SET c='ninety-six thousand nine hundred eighty-three' WHERE a=2844; UPDATE t2 SET c='eighty-four thousand two hundred thirteen' WHERE a=2845; UPDATE t2 SET c='sixty-five thousand four hundred ninety-nine' WHERE a=2846; UPDATE t2 SET c='one thousand two hundred thirty-two' WHERE a=2847; UPDATE t2 SET c='ninety-seven thousand nine hundred seventy' WHERE a=2848; UPDATE t2 SET c='eight thousand four hundred nineteen' WHERE a=2849; UPDATE t2 SET c='ninety-three thousand forty-eight' WHERE a=2850; UPDATE t2 SET c='thirty thousand one hundred forty-two' WHERE a=2851; UPDATE t2 SET c='forty-five thousand nine hundred thirty-three' WHERE a=2852; UPDATE t2 SET c='thirty-seven thousand six hundred seventy-seven' WHERE a=2853; UPDATE t2 SET c='four thousand four hundred nineteen' WHERE a=2854; UPDATE t2 SET c='eight thousand nine hundred forty-five' WHERE a=2855; UPDATE t2 SET c='seventy-five thousand forty-two' WHERE a=2856; UPDATE t2 SET c='one thousand seven hundred thirty-five' WHERE a=2857; UPDATE t2 SET c='seventy-six thousand four hundred twenty' WHERE a=2858; UPDATE t2 SET c='forty-nine thousand one hundred sixty' WHERE a=2859; UPDATE t2 SET c='twenty-five thousand nine hundred twenty-eight' WHERE a=2860; UPDATE t2 SET c='forty-three thousand seven hundred sixty-six' WHERE a=2861; UPDATE t2 SET c='forty-five thousand eight hundred five' WHERE a=2862; UPDATE t2 SET c='seventy-seven thousand seventy-one' WHERE a=2863; UPDATE t2 SET c='six thousand six hundred seventy-one' WHERE a=2864; UPDATE t2 SET c='thirty thousand nine hundred fifty' WHERE a=2865; UPDATE t2 SET c='ninety-five thousand six hundred ninety-five' WHERE a=2866; UPDATE t2 SET c='sixty thousand fifty-four' WHERE a=2867; UPDATE t2 SET c='seven thousand sixty-four' WHERE a=2868; UPDATE t2 SET c='nineteen thousand three hundred eighty-nine' WHERE a=2869; UPDATE t2 SET c='forty-five thousand four hundred twenty' WHERE a=2870; UPDATE t2 SET c='thirty-three thousand ninety-five' WHERE a=2871; UPDATE t2 SET c='fifty-six thousand seven hundred thirty-one' WHERE a=2872; UPDATE t2 SET c='thirty-nine thousand nine hundred fifty-seven' WHERE a=2873; UPDATE t2 SET c='fifty-eight thousand four hundred eighty-two' WHERE a=2874; UPDATE t2 SET c='ninety-six thousand one hundred sixty' WHERE a=2875; UPDATE t2 SET c='eighty-nine thousand one hundred fifty-one' WHERE a=2876; UPDATE t2 SET c='seventy-six thousand two hundred sixty-seven' WHERE a=2877; UPDATE t2 SET c='ninety-five thousand five hundred seventeen' WHERE a=2878; UPDATE t2 SET c='forty-two thousand nine hundred eighty-five' WHERE a=2879; UPDATE t2 SET c='thirty-three thousand eight hundred fifty-three' WHERE a=2880; UPDATE t2 SET c='ninety-two thousand seven hundred sixty-nine' WHERE a=2881; UPDATE t2 SET c='sixty-nine thousand four hundred eighteen' WHERE a=2882; UPDATE t2 SET c='seventy-eight thousand twenty-eight' WHERE a=2883; UPDATE t2 SET c='seventy-six thousand four hundred seven' WHERE a=2884; UPDATE t2 SET c='ninety-nine thousand seven hundred forty-eight' WHERE a=2885; UPDATE t2 SET c='ninety-one thousand ten' WHERE a=2886; UPDATE t2 SET c='eighty thousand eight hundred thirty-six' WHERE a=2887; UPDATE t2 SET c='ninety-four thousand eight hundred ninety-five' WHERE a=2888; UPDATE t2 SET c='twenty-eight thousand five hundred three' WHERE a=2889; UPDATE t2 SET c='seventy thousand two hundred fifty-six' WHERE a=2890; UPDATE t2 SET c='twenty-three thousand five hundred eighty-five' WHERE a=2891; UPDATE t2 SET c='sixty-six thousand two hundred twenty' WHERE a=2892; UPDATE t2 SET c='twenty-six thousand two hundred forty-six' WHERE a=2893; UPDATE t2 SET c='three thousand six hundred ninety-nine' WHERE a=2894; UPDATE t2 SET c='fifteen thousand seven hundred thirty' WHERE a=2895; UPDATE t2 SET c='seventy-three thousand two hundred eighty-one' WHERE a=2896; UPDATE t2 SET c='thirty-two thousand twenty-three' WHERE a=2897; UPDATE t2 SET c='twenty-eight thousand seven hundred fifty' WHERE a=2898; UPDATE t2 SET c='seventy-five thousand four hundred fifty-six' WHERE a=2899; UPDATE t2 SET c='thirty-one thousand three hundred nineteen' WHERE a=2900; UPDATE t2 SET c='seventy-eight thousand five hundred five' WHERE a=2901; UPDATE t2 SET c='fifty thousand five hundred eighty-one' WHERE a=2902; UPDATE t2 SET c='eighty-nine thousand six hundred seventy-nine' WHERE a=2903; UPDATE t2 SET c='twenty-three thousand eight hundred thirty-two' WHERE a=2904; UPDATE t2 SET c='sixty-seven thousand seven hundred ninety-two' WHERE a=2905; UPDATE t2 SET c='twenty-three thousand one hundred eighty-two' WHERE a=2906; UPDATE t2 SET c='thirty-two thousand one hundred thirty-seven' WHERE a=2907; UPDATE t2 SET c='twenty-four thousand two hundred seventy-nine' WHERE a=2908; UPDATE t2 SET c='thirty thousand eight hundred seventy-six' WHERE a=2909; UPDATE t2 SET c='ninety-eight thousand two hundred sixty-six' WHERE a=2910; UPDATE t2 SET c='ninety-seven thousand seven hundred sixty-four' WHERE a=2911; UPDATE t2 SET c='sixty-one thousand eight hundred sixty' WHERE a=2912; UPDATE t2 SET c='eighteen thousand six hundred thirty-six' WHERE a=2913; UPDATE t2 SET c='seventy-six thousand eight hundred five' WHERE a=2914; UPDATE t2 SET c='forty thousand two hundred six' WHERE a=2915; UPDATE t2 SET c='twenty-one thousand three hundred twenty-five' WHERE a=2916; UPDATE t2 SET c='forty thousand nine hundred sixty-six' WHERE a=2917; UPDATE t2 SET c='sixty-one thousand one hundred twenty-three' WHERE a=2918; UPDATE t2 SET c='ninety-eight thousand seven hundred eight' WHERE a=2919; UPDATE t2 SET c='twenty-seven thousand nine hundred eighty-nine' WHERE a=2920; UPDATE t2 SET c='ninety-eight thousand nine hundred fifty-one' WHERE a=2921; UPDATE t2 SET c='fifty-two thousand nine hundred thirty-one' WHERE a=2922; UPDATE t2 SET c='eighty-three thousand five hundred forty-four' WHERE a=2923; UPDATE t2 SET c='thirty-eight thousand nine hundred one' WHERE a=2924; UPDATE t2 SET c='fifty-seven thousand four hundred eighty' WHERE a=2925; UPDATE t2 SET c='seventy-eight thousand two hundred twenty-four' WHERE a=2926; UPDATE t2 SET c='sixty-six thousand five hundred three' WHERE a=2927; UPDATE t2 SET c='thirty-six thousand one hundred twenty' WHERE a=2928; UPDATE t2 SET c='seven thousand eighty-nine' WHERE a=2929; UPDATE t2 SET c='fifty-two thousand six hundred forty-four' WHERE a=2930; UPDATE t2 SET c='twenty-four thousand seven hundred nine' WHERE a=2931; UPDATE t2 SET c='ninety-eight thousand five hundred thirty-nine' WHERE a=2932; UPDATE t2 SET c='sixty-two thousand one hundred twenty-four' WHERE a=2933; UPDATE t2 SET c='eighty-seven thousand four hundred twenty-seven' WHERE a=2934; UPDATE t2 SET c='seventy-five thousand five hundred ninety-seven' WHERE a=2935; UPDATE t2 SET c='sixty-two thousand four hundred fifty-four' WHERE a=2936; UPDATE t2 SET c='three hundred eighty-two' WHERE a=2937; UPDATE t2 SET c='twenty-eight thousand two hundred forty-seven' WHERE a=2938; UPDATE t2 SET c='nine thousand six hundred fifty-two' WHERE a=2939; UPDATE t2 SET c='forty thousand seventy-four' WHERE a=2940; UPDATE t2 SET c='fifty-seven thousand three hundred eighty-nine' WHERE a=2941; UPDATE t2 SET c='twenty-one thousand nine hundred seven' WHERE a=2942; UPDATE t2 SET c='sixty-eight thousand twenty-five' WHERE a=2943; UPDATE t2 SET c='sixty-one thousand six hundred ten' WHERE a=2944; UPDATE t2 SET c='four thousand one hundred seventy-nine' WHERE a=2945; UPDATE t2 SET c='twelve thousand seven hundred seventy' WHERE a=2946; UPDATE t2 SET c='sixty-six thousand four hundred ninety-three' WHERE a=2947; UPDATE t2 SET c='one thousand two hundred ninety-six' WHERE a=2948; UPDATE t2 SET c='fifty thousand nine hundred two' WHERE a=2949; UPDATE t2 SET c='fifty-four thousand two hundred twenty' WHERE a=2950; UPDATE t2 SET c='seventy-eight thousand six hundred thirty-three' WHERE a=2951; UPDATE t2 SET c='sixty-two thousand eighty' WHERE a=2952; UPDATE t2 SET c='seventy-eight thousand five hundred ninety-five' WHERE a=2953; UPDATE t2 SET c='nineteen thousand seven hundred seventy-one' WHERE a=2954; UPDATE t2 SET c='fourteen thousand five hundred three' WHERE a=2955; UPDATE t2 SET c='forty-five thousand one hundred fifty-five' WHERE a=2956; UPDATE t2 SET c='ninety-four thousand one hundred fifty-one' WHERE a=2957; UPDATE t2 SET c='eighteen thousand seven hundred forty-two' WHERE a=2958; UPDATE t2 SET c='twenty-two thousand three hundred thirteen' WHERE a=2959; UPDATE t2 SET c='eight thousand seven hundred eighty-nine' WHERE a=2960; UPDATE t2 SET c='twenty-eight thousand three hundred thirty-one' WHERE a=2961; UPDATE t2 SET c='thirty-seven thousand five hundred sixteen' WHERE a=2962; UPDATE t2 SET c='eighty-one thousand eight hundred five' WHERE a=2963; UPDATE t2 SET c='twenty thousand forty-six' WHERE a=2964; UPDATE t2 SET c='thirty-eight thousand three hundred ninety-one' WHERE a=2965; UPDATE t2 SET c='fourteen thousand two hundred sixty-five' WHERE a=2966; UPDATE t2 SET c='sixty-eight thousand five hundred thirty' WHERE a=2967; UPDATE t2 SET c='ninety-four thousand two hundred forty-seven' WHERE a=2968; UPDATE t2 SET c='ninety-seven thousand nine hundred one' WHERE a=2969; UPDATE t2 SET c='thirty-four thousand eight hundred seventy-seven' WHERE a=2970; UPDATE t2 SET c='thirty-six thousand one hundred seventy-eight' WHERE a=2971; UPDATE t2 SET c='thirty-four thousand three hundred seventy-six' WHERE a=2972; UPDATE t2 SET c='thirty thousand two hundred eighty-three' WHERE a=2973; UPDATE t2 SET c='thirteen thousand eight hundred eighteen' WHERE a=2974; UPDATE t2 SET c='seventy-six thousand four hundred sixty-three' WHERE a=2975; UPDATE t2 SET c='seventy-six thousand five hundred thirteen' WHERE a=2976; UPDATE t2 SET c='eighty-three thousand nine hundred forty-seven' WHERE a=2977; UPDATE t2 SET c='ninety-seven thousand seven hundred fifty-one' WHERE a=2978; UPDATE t2 SET c='seven thousand five hundred seventeen' WHERE a=2979; UPDATE t2 SET c='three thousand eight hundred thirty-four' WHERE a=2980; UPDATE t2 SET c='forty-six thousand nine hundred forty-one' WHERE a=2981; UPDATE t2 SET c='sixty-three thousand eighty' WHERE a=2982; UPDATE t2 SET c='sixty-one thousand six hundred forty-six' WHERE a=2983; UPDATE t2 SET c='eighty thousand one hundred one' WHERE a=2984; UPDATE t2 SET c='thirty-nine thousand eight hundred ninety' WHERE a=2985; UPDATE t2 SET c='two hundred seventy-five' WHERE a=2986; UPDATE t2 SET c='twenty-three thousand five hundred forty-four' WHERE a=2987; UPDATE t2 SET c='forty-nine thousand three hundred twenty-seven' WHERE a=2988; UPDATE t2 SET c='seventy thousand nine hundred sixty-eight' WHERE a=2989; UPDATE t2 SET c='eighty-nine thousand five hundred sixty' WHERE a=2990; UPDATE t2 SET c='sixty-seven thousand nine hundred ninety' WHERE a=2991; UPDATE t2 SET c='eighty-four thousand two hundred forty-two' WHERE a=2992; UPDATE t2 SET c='twenty-five thousand five hundred ninety-seven' WHERE a=2993; UPDATE t2 SET c='twenty-three thousand eleven' WHERE a=2994; UPDATE t2 SET c='eighty-four thousand five hundred eighty-three' WHERE a=2995; UPDATE t2 SET c='thirty-one thousand six hundred sixty-four' WHERE a=2996; UPDATE t2 SET c='four thousand two hundred' WHERE a=2997; UPDATE t2 SET c='seventy-six thousand three hundred forty-six' WHERE a=2998; UPDATE t2 SET c='thirty-two thousand five hundred ninety-eight' WHERE a=2999; UPDATE t2 SET c='seventy thousand two hundred sixty-two' WHERE a=3000; UPDATE t2 SET c='nineteen thousand eight hundred forty-eight' WHERE a=3001; UPDATE t2 SET c='ninety thousand five hundred forty-two' WHERE a=3002; UPDATE t2 SET c='fifteen thousand one hundred sixty-one' WHERE a=3003; UPDATE t2 SET c='fifty-seven thousand eight hundred sixty-four' WHERE a=3004; UPDATE t2 SET c='eighty-three thousand seven hundred ninety-four' WHERE a=3005; UPDATE t2 SET c='eighty-two thousand six hundred sixty-three' WHERE a=3006; UPDATE t2 SET c='forty-four thousand eight hundred thirty-three' WHERE a=3007; UPDATE t2 SET c='thirty-five thousand five hundred twenty-two' WHERE a=3008; UPDATE t2 SET c='eight thousand five hundred fifty-eight' WHERE a=3009; UPDATE t2 SET c='eleven thousand three hundred eighty-two' WHERE a=3010; UPDATE t2 SET c='seventy-one thousand seven hundred seventy-seven' WHERE a=3011; UPDATE t2 SET c='sixteen thousand eighty-six' WHERE a=3012; UPDATE t2 SET c='eighty-two thousand six hundred' WHERE a=3013; UPDATE t2 SET c='fifteen thousand four hundred fifty-three' WHERE a=3014; UPDATE t2 SET c='seventy-three thousand seven hundred twenty-three' WHERE a=3015; UPDATE t2 SET c='fifty-three thousand four hundred eighty-four' WHERE a=3016; UPDATE t2 SET c='eighty-two thousand one hundred nineteen' WHERE a=3017; UPDATE t2 SET c='twenty-five thousand four hundred twenty-one' WHERE a=3018; UPDATE t2 SET c='twenty-eight thousand four hundred ninety-three' WHERE a=3019; UPDATE t2 SET c='ninety-eight thousand five hundred ninety-five' WHERE a=3020; UPDATE t2 SET c='sixty-three thousand two hundred fifty-one' WHERE a=3021; UPDATE t2 SET c='sixty-four thousand five hundred seventy-five' WHERE a=3022; UPDATE t2 SET c='five thousand five hundred nineteen' WHERE a=3023; UPDATE t2 SET c='three thousand three hundred fifty-one' WHERE a=3024; UPDATE t2 SET c='thirty-eight thousand sixty-two' WHERE a=3025; UPDATE t2 SET c='ninety-six thousand eight hundred thirty-three' WHERE a=3026; UPDATE t2 SET c='eighty-four thousand eight hundred thirteen' WHERE a=3027; UPDATE t2 SET c='ninety-seven thousand one hundred eighty-seven' WHERE a=3028; UPDATE t2 SET c='twenty-three thousand two hundred ninety-nine' WHERE a=3029; UPDATE t2 SET c='thirty-eight thousand six hundred ninety-four' WHERE a=3030; UPDATE t2 SET c='seventy-nine thousand seven hundred seventy-three' WHERE a=3031; UPDATE t2 SET c='twenty thousand four hundred thirty-one' WHERE a=3032; UPDATE t2 SET c='thirty thousand eight hundred sixty' WHERE a=3033; UPDATE t2 SET c='fifteen thousand eight hundred twenty-seven' WHERE a=3034; UPDATE t2 SET c='three hundred fifty-eight' WHERE a=3035; UPDATE t2 SET c='thirty-six thousand six hundred twenty-eight' WHERE a=3036; UPDATE t2 SET c='eighty-eight thousand six hundred eighteen' WHERE a=3037; UPDATE t2 SET c='eighty-three thousand one hundred nineteen' WHERE a=3038; UPDATE t2 SET c='forty-six thousand four hundred eight' WHERE a=3039; UPDATE t2 SET c='forty-nine thousand seven hundred seventy-four' WHERE a=3040; UPDATE t2 SET c='ten thousand one hundred ninety-four' WHERE a=3041; UPDATE t2 SET c='fifty-eight thousand seven hundred sixty-five' WHERE a=3042; UPDATE t2 SET c='seventy-seven thousand seven hundred fifty-four' WHERE a=3043; UPDATE t2 SET c='ninety-seven thousand four hundred fifty-nine' WHERE a=3044; UPDATE t2 SET c='eighty-three thousand four hundred twenty-one' WHERE a=3045; UPDATE t2 SET c='seventy-seven thousand seven hundred fifty-one' WHERE a=3046; UPDATE t2 SET c='forty-one thousand four hundred thirty-four' WHERE a=3047; UPDATE t2 SET c='fifty-three thousand nine hundred fifty-one' WHERE a=3048; UPDATE t2 SET c='forty-nine thousand four hundred sixty' WHERE a=3049; UPDATE t2 SET c='six thousand four hundred' WHERE a=3050; UPDATE t2 SET c='thirty-nine thousand three hundred ninety-seven' WHERE a=3051; UPDATE t2 SET c='ninety-two thousand seven hundred fifty-one' WHERE a=3052; UPDATE t2 SET c='forty-eight thousand two hundred eighty-nine' WHERE a=3053; UPDATE t2 SET c='ninety-eight thousand four hundred seventy-three' WHERE a=3054; UPDATE t2 SET c='eighty-six thousand seven hundred fourteen' WHERE a=3055; UPDATE t2 SET c='two thousand five hundred twenty' WHERE a=3056; UPDATE t2 SET c='nineteen thousand seven hundred sixty-eight' WHERE a=3057; UPDATE t2 SET c='sixty-three thousand nine hundred thirty-three' WHERE a=3058; UPDATE t2 SET c='eight thousand seven hundred eighty' WHERE a=3059; UPDATE t2 SET c='five thousand thirty-five' WHERE a=3060; UPDATE t2 SET c='twenty-eight thousand two hundred eighty-six' WHERE a=3061; UPDATE t2 SET c='forty-three thousand two hundred twenty-four' WHERE a=3062; UPDATE t2 SET c='seventy-seven thousand thirty-four' WHERE a=3063; UPDATE t2 SET c='eighty-three thousand six hundred seventy' WHERE a=3064; UPDATE t2 SET c='ninety-two thousand three hundred sixty-six' WHERE a=3065; UPDATE t2 SET c='thirty-six thousand seven hundred thirty' WHERE a=3066; UPDATE t2 SET c='ninety-eight thousand thirty-three' WHERE a=3067; UPDATE t2 SET c='ninety-two thousand four hundred thirty' WHERE a=3068; UPDATE t2 SET c='seventy-six thousand one hundred four' WHERE a=3069; UPDATE t2 SET c='twenty-seven thousand six hundred forty-one' WHERE a=3070; UPDATE t2 SET c='eleven thousand nine hundred ninety-one' WHERE a=3071; UPDATE t2 SET c='eight thousand two hundred thirty-eight' WHERE a=3072; UPDATE t2 SET c='thirty-three thousand two hundred fifty-four' WHERE a=3073; UPDATE t2 SET c='twenty-six thousand five hundred twelve' WHERE a=3074; UPDATE t2 SET c='seventy-seven thousand five hundred seventy-five' WHERE a=3075; UPDATE t2 SET c='forty thousand six hundred ninety' WHERE a=3076; UPDATE t2 SET c='twenty-nine thousand four hundred ninety-three' WHERE a=3077; UPDATE t2 SET c='fifty-six thousand four hundred seventy-two' WHERE a=3078; UPDATE t2 SET c='twenty-three thousand three hundred ninety-four' WHERE a=3079; UPDATE t2 SET c='sixty-eight thousand five hundred ninety-nine' WHERE a=3080; UPDATE t2 SET c='seventy-seven thousand one hundred eighty-eight' WHERE a=3081; UPDATE t2 SET c='four hundred twenty-three' WHERE a=3082; UPDATE t2 SET c='forty thousand eleven' WHERE a=3083; UPDATE t2 SET c='sixty-two thousand nine hundred twenty-eight' WHERE a=3084; UPDATE t2 SET c='seventy-nine thousand three hundred eighty' WHERE a=3085; UPDATE t2 SET c='sixty-one thousand six hundred twenty-one' WHERE a=3086; UPDATE t2 SET c='fifty-two thousand seven hundred twenty-one' WHERE a=3087; UPDATE t2 SET c='fifty-one thousand five hundred three' WHERE a=3088; UPDATE t2 SET c='fifteen thousand seven hundred seventy-nine' WHERE a=3089; UPDATE t2 SET c='eighty-eight thousand fifty-two' WHERE a=3090; UPDATE t2 SET c='forty-two thousand six hundred eighty-eight' WHERE a=3091; UPDATE t2 SET c='nineteen thousand eight hundred eight' WHERE a=3092; UPDATE t2 SET c='eighty-one thousand five hundred sixty-three' WHERE a=3093; UPDATE t2 SET c='seventy-three thousand three hundred thirty-seven' WHERE a=3094; UPDATE t2 SET c='five thousand three hundred sixty-eight' WHERE a=3095; UPDATE t2 SET c='ninety-six thousand six hundred thirty-six' WHERE a=3096; UPDATE t2 SET c='thirty-three thousand six hundred twenty' WHERE a=3097; UPDATE t2 SET c='eighty-seven thousand seven hundred eighty-nine' WHERE a=3098; UPDATE t2 SET c='ninety-seven thousand sixty-three' WHERE a=3099; UPDATE t2 SET c='ninety-six thousand two hundred sixty-five' WHERE a=3100; UPDATE t2 SET c='sixty-four thousand forty-seven' WHERE a=3101; UPDATE t2 SET c='ten thousand nine hundred eighty-three' WHERE a=3102; UPDATE t2 SET c='five hundred forty-four' WHERE a=3103; UPDATE t2 SET c='sixty thousand nine hundred forty-five' WHERE a=3104; UPDATE t2 SET c='seventy-four thousand two hundred fifty-nine' WHERE a=3105; UPDATE t2 SET c='forty-seven thousand four hundred sixty-four' WHERE a=3106; UPDATE t2 SET c='sixty-four thousand six hundred fifty-six' WHERE a=3107; UPDATE t2 SET c='eighty-seven thousand two hundred sixty-eight' WHERE a=3108; UPDATE t2 SET c='ninety-four thousand three hundred fifty-four' WHERE a=3109; UPDATE t2 SET c='forty-six thousand five hundred forty-three' WHERE a=3110; UPDATE t2 SET c='thirteen thousand four hundred seventy-five' WHERE a=3111; UPDATE t2 SET c='fifty-two thousand one hundred eighty-two' WHERE a=3112; UPDATE t2 SET c='seventy-one thousand five hundred ninety-nine' WHERE a=3113; UPDATE t2 SET c='thirty-five thousand one hundred fifty-eight' WHERE a=3114; UPDATE t2 SET c='fifty-two thousand one hundred fourteen' WHERE a=3115; UPDATE t2 SET c='eighty-four thousand eight hundred eighty' WHERE a=3116; UPDATE t2 SET c='fifty-one thousand two hundred ninety-five' WHERE a=3117; UPDATE t2 SET c='thirty-two thousand fifty' WHERE a=3118; UPDATE t2 SET c='forty-one thousand nine hundred forty-seven' WHERE a=3119; UPDATE t2 SET c='eighty thousand three hundred seven' WHERE a=3120; UPDATE t2 SET c='fifteen thousand eighty-nine' WHERE a=3121; UPDATE t2 SET c='seventeen thousand six hundred fifty-seven' WHERE a=3122; UPDATE t2 SET c='eight thousand three hundred sixty-seven' WHERE a=3123; UPDATE t2 SET c='eleven thousand ninety' WHERE a=3124; UPDATE t2 SET c='five thousand ninety-three' WHERE a=3125; UPDATE t2 SET c='sixty-three thousand six hundred fifty-seven' WHERE a=3126; UPDATE t2 SET c='ninety-eight thousand six hundred forty-nine' WHERE a=3127; UPDATE t2 SET c='fifty thousand two hundred sixty-six' WHERE a=3128; UPDATE t2 SET c='sixteen thousand four hundred two' WHERE a=3129; UPDATE t2 SET c='eleven thousand seventy-five' WHERE a=3130; UPDATE t2 SET c='forty-three thousand three hundred eighty' WHERE a=3131; UPDATE t2 SET c='eighty-four thousand five hundred thirty-four' WHERE a=3132; UPDATE t2 SET c='thirty thousand nine hundred sixty' WHERE a=3133; UPDATE t2 SET c='twenty-three thousand seven hundred two' WHERE a=3134; UPDATE t2 SET c='three thousand two hundred nine' WHERE a=3135; UPDATE t2 SET c='ten thousand two hundred eleven' WHERE a=3136; UPDATE t2 SET c='eighty thousand two hundred forty-three' WHERE a=3137; UPDATE t2 SET c='sixty-six thousand four hundred twenty' WHERE a=3138; UPDATE t2 SET c='seventy-six thousand eighty-seven' WHERE a=3139; UPDATE t2 SET c='ninety-nine thousand nine hundred sixty-five' WHERE a=3140; UPDATE t2 SET c='two thousand eight hundred fifteen' WHERE a=3141; UPDATE t2 SET c='eight thousand forty-five' WHERE a=3142; UPDATE t2 SET c='four thousand eight hundred sixteen' WHERE a=3143; UPDATE t2 SET c='seventy-five thousand eight hundred seventy-five' WHERE a=3144; UPDATE t2 SET c='fifty-eight thousand one hundred fifteen' WHERE a=3145; UPDATE t2 SET c='sixty-four thousand forty-three' WHERE a=3146; UPDATE t2 SET c='fifty-six thousand six hundred seventy-two' WHERE a=3147; UPDATE t2 SET c='fifty thousand three hundred forty-three' WHERE a=3148; UPDATE t2 SET c='twenty-nine thousand eighty-three' WHERE a=3149; UPDATE t2 SET c='seventy-eight thousand seven hundred thirty-seven' WHERE a=3150; UPDATE t2 SET c='eighty-seven thousand one hundred seventy' WHERE a=3151; UPDATE t2 SET c='twenty-eight thousand one hundred twenty-nine' WHERE a=3152; UPDATE t2 SET c='eighty-nine thousand seven hundred seventy-seven' WHERE a=3153; UPDATE t2 SET c='seventeen thousand eight hundred forty-nine' WHERE a=3154; UPDATE t2 SET c='nineteen thousand nine hundred ten' WHERE a=3155; UPDATE t2 SET c='thirteen thousand five hundred thirty-four' WHERE a=3156; UPDATE t2 SET c='twelve thousand one hundred seventy-one' WHERE a=3157; UPDATE t2 SET c='fifty-four thousand two hundred eighteen' WHERE a=3158; UPDATE t2 SET c='thirty-two thousand three hundred twenty-seven' WHERE a=3159; UPDATE t2 SET c='fifteen thousand seven hundred twenty-nine' WHERE a=3160; UPDATE t2 SET c='forty-nine thousand nine hundred twenty-two' WHERE a=3161; UPDATE t2 SET c='nineteen thousand ninety-two' WHERE a=3162; UPDATE t2 SET c='seventy thousand seven hundred forty-two' WHERE a=3163; UPDATE t2 SET c='forty-one thousand four hundred forty-eight' WHERE a=3164; UPDATE t2 SET c='forty-three thousand eight hundred one' WHERE a=3165; UPDATE t2 SET c='ninety-six thousand one hundred one' WHERE a=3166; UPDATE t2 SET c='ninety-six thousand three hundred eighty-three' WHERE a=3167; UPDATE t2 SET c='nine thousand eight hundred sixty-six' WHERE a=3168; UPDATE t2 SET c='sixty-five thousand nine hundred ninety-one' WHERE a=3169; UPDATE t2 SET c='sixteen thousand nine hundred fourteen' WHERE a=3170; UPDATE t2 SET c='eighty-two thousand five hundred fifty-six' WHERE a=3171; UPDATE t2 SET c='ninety-six thousand seven hundred fifty' WHERE a=3172; UPDATE t2 SET c='eight thousand seven hundred fifty-one' WHERE a=3173; UPDATE t2 SET c='sixty-one thousand three hundred ninety-two' WHERE a=3174; UPDATE t2 SET c='thirty-five thousand seven hundred fifty-eight' WHERE a=3175; UPDATE t2 SET c='one thousand three hundred forty-nine' WHERE a=3176; UPDATE t2 SET c='twenty-nine thousand nine hundred thirty-nine' WHERE a=3177; UPDATE t2 SET c='eighty-eight thousand one hundred eighty-five' WHERE a=3178; UPDATE t2 SET c='fifty-two thousand four hundred eighty-three' WHERE a=3179; UPDATE t2 SET c='ninety-five thousand four hundred sixty' WHERE a=3180; UPDATE t2 SET c='thirteen thousand six hundred twenty-two' WHERE a=3181; UPDATE t2 SET c='eight thousand six' WHERE a=3182; UPDATE t2 SET c='one thousand eight hundred sixty-one' WHERE a=3183; UPDATE t2 SET c='fifty-three thousand four hundred nineteen' WHERE a=3184; UPDATE t2 SET c='sixty-one thousand six hundred twenty-eight' WHERE a=3185; UPDATE t2 SET c='fifty-two thousand four hundred forty-eight' WHERE a=3186; UPDATE t2 SET c='twenty-nine thousand two hundred sixty-seven' WHERE a=3187; UPDATE t2 SET c='ninety-three thousand four hundred forty-five' WHERE a=3188; UPDATE t2 SET c='fifty-two thousand twenty-four' WHERE a=3189; UPDATE t2 SET c='eighty-four thousand three hundred forty-six' WHERE a=3190; UPDATE t2 SET c='forty-two thousand six hundred sixty' WHERE a=3191; UPDATE t2 SET c='seventeen thousand nine hundred thirty-eight' WHERE a=3192; UPDATE t2 SET c='twenty-eight thousand seven hundred seventy-eight' WHERE a=3193; UPDATE t2 SET c='eighty-eight thousand two hundred eight' WHERE a=3194; UPDATE t2 SET c='thirty-one thousand five hundred eighty-four' WHERE a=3195; UPDATE t2 SET c='seventy-nine thousand nine hundred forty-six' WHERE a=3196; UPDATE t2 SET c='thirty-three thousand two hundred sixty-five' WHERE a=3197; UPDATE t2 SET c='seventy thousand four hundred six' WHERE a=3198; UPDATE t2 SET c='ninety-three thousand two hundred twenty-six' WHERE a=3199; UPDATE t2 SET c='forty-eight thousand two hundred eighty-four' WHERE a=3200; UPDATE t2 SET c='eighty-eight thousand one hundred seventy' WHERE a=3201; UPDATE t2 SET c='twelve thousand four hundred sixty-five' WHERE a=3202; UPDATE t2 SET c='eighty-six thousand six hundred fifty-nine' WHERE a=3203; UPDATE t2 SET c='twenty-six thousand eight hundred twenty-five' WHERE a=3204; UPDATE t2 SET c='twenty-two thousand one hundred eight' WHERE a=3205; UPDATE t2 SET c='three thousand nine hundred seventy-three' WHERE a=3206; UPDATE t2 SET c='seventy-one thousand eight hundred twelve' WHERE a=3207; UPDATE t2 SET c='forty-seven thousand two hundred eighty-six' WHERE a=3208; UPDATE t2 SET c='eighty-four thousand seventy-eight' WHERE a=3209; UPDATE t2 SET c='twenty-five thousand seven hundred fifty-three' WHERE a=3210; UPDATE t2 SET c='twelve thousand five hundred ninety-nine' WHERE a=3211; UPDATE t2 SET c='twenty-five thousand one hundred fifty-six' WHERE a=3212; UPDATE t2 SET c='twenty-one thousand one hundred seventy-nine' WHERE a=3213; UPDATE t2 SET c='thirty-nine thousand one hundred fifty-two' WHERE a=3214; UPDATE t2 SET c='ninety-eight thousand four hundred forty-nine' WHERE a=3215; UPDATE t2 SET c='fifty-one thousand four hundred fifty-seven' WHERE a=3216; UPDATE t2 SET c='sixty-seven thousand three hundred seventy-five' WHERE a=3217; UPDATE t2 SET c='fifteen thousand six hundred twelve' WHERE a=3218; UPDATE t2 SET c='eighty-seven thousand nine hundred forty-six' WHERE a=3219; UPDATE t2 SET c='twenty-nine thousand seven hundred fifty-four' WHERE a=3220; UPDATE t2 SET c='eighty-nine thousand six hundred seventy-six' WHERE a=3221; UPDATE t2 SET c='forty-seven thousand seven hundred eleven' WHERE a=3222; UPDATE t2 SET c='forty-two thousand one hundred thirty-eight' WHERE a=3223; UPDATE t2 SET c='ninety thousand nine hundred thirty-two' WHERE a=3224; UPDATE t2 SET c='thirty-one thousand four hundred ninety-six' WHERE a=3225; UPDATE t2 SET c='fifty-seven thousand nine hundred fifty-five' WHERE a=3226; UPDATE t2 SET c='fifty-six thousand two hundred twenty-three' WHERE a=3227; UPDATE t2 SET c='six hundred fourteen' WHERE a=3228; UPDATE t2 SET c='eighty-seven thousand three hundred sixty-five' WHERE a=3229; UPDATE t2 SET c='sixty-four thousand eight hundred eighty-nine' WHERE a=3230; UPDATE t2 SET c='forty-five thousand thirteen' WHERE a=3231; UPDATE t2 SET c='sixty-eight thousand thirty-seven' WHERE a=3232; UPDATE t2 SET c='fifty-one thousand one hundred ten' WHERE a=3233; UPDATE t2 SET c='thirty-one thousand nine hundred forty-four' WHERE a=3234; UPDATE t2 SET c='seventy-six thousand nine hundred twenty-four' WHERE a=3235; UPDATE t2 SET c='seventy-nine thousand nine hundred fifty-eight' WHERE a=3236; UPDATE t2 SET c='fifteen thousand seven hundred forty-seven' WHERE a=3237; UPDATE t2 SET c='ninety-two thousand one hundred twenty-six' WHERE a=3238; UPDATE t2 SET c='sixteen thousand two hundred forty-nine' WHERE a=3239; UPDATE t2 SET c='fifty-seven thousand nine hundred eighty-seven' WHERE a=3240; UPDATE t2 SET c='twenty thousand five hundred twenty-nine' WHERE a=3241; UPDATE t2 SET c='ninety-five thousand one hundred eighty-nine' WHERE a=3242; UPDATE t2 SET c='fifty-five thousand thirteen' WHERE a=3243; UPDATE t2 SET c='forty-six thousand five hundred thirty-eight' WHERE a=3244; UPDATE t2 SET c='fifteen thousand nine hundred two' WHERE a=3245; UPDATE t2 SET c='sixty-five thousand eight hundred sixty-eight' WHERE a=3246; UPDATE t2 SET c='thirty-one thousand seven hundred sixty-five' WHERE a=3247; UPDATE t2 SET c='thirteen thousand three hundred thirty-seven' WHERE a=3248; UPDATE t2 SET c='thirty-one thousand one hundred seventy-nine' WHERE a=3249; UPDATE t2 SET c='twenty-one thousand three hundred ninety-four' WHERE a=3250; UPDATE t2 SET c='four thousand seven hundred five' WHERE a=3251; UPDATE t2 SET c='fifty-seven thousand nine hundred fifty-four' WHERE a=3252; UPDATE t2 SET c='eighty-four thousand six hundred forty-one' WHERE a=3253; UPDATE t2 SET c='fifteen thousand six hundred eleven' WHERE a=3254; UPDATE t2 SET c='forty-one thousand six hundred seven' WHERE a=3255; UPDATE t2 SET c='fifteen thousand eight hundred nine' WHERE a=3256; UPDATE t2 SET c='three thousand fifty-one' WHERE a=3257; UPDATE t2 SET c='fifty-four thousand eight hundred twenty-seven' WHERE a=3258; UPDATE t2 SET c='eighty-nine thousand two hundred eighty-nine' WHERE a=3259; UPDATE t2 SET c='twenty-four thousand five hundred sixty-two' WHERE a=3260; UPDATE t2 SET c='seventy-two thousand three hundred nineteen' WHERE a=3261; UPDATE t2 SET c='ninety-seven thousand one hundred thirty-seven' WHERE a=3262; UPDATE t2 SET c='eighty-four thousand five hundred twenty-six' WHERE a=3263; UPDATE t2 SET c='sixty-nine thousand four hundred six' WHERE a=3264; UPDATE t2 SET c='seventy-seven thousand six hundred forty-seven' WHERE a=3265; UPDATE t2 SET c='fifty thousand one hundred' WHERE a=3266; UPDATE t2 SET c='twenty-five thousand six hundred seventy-four' WHERE a=3267; UPDATE t2 SET c='forty-five thousand thirty-six' WHERE a=3268; UPDATE t2 SET c='eighty-three thousand eight hundred seventy-eight' WHERE a=3269; UPDATE t2 SET c='seventy-nine thousand six hundred eight' WHERE a=3270; UPDATE t2 SET c='seventy-nine thousand three hundred thirty-five' WHERE a=3271; UPDATE t2 SET c='eighty-three thousand ten' WHERE a=3272; UPDATE t2 SET c='thirty-seven thousand five hundred seventy-two' WHERE a=3273; UPDATE t2 SET c='thirty-eight thousand six hundred sixty-four' WHERE a=3274; UPDATE t2 SET c='thirty-six thousand seven hundred two' WHERE a=3275; UPDATE t2 SET c='seventy-one thousand six hundred forty-five' WHERE a=3276; UPDATE t2 SET c='forty-eight thousand nine hundred sixty-one' WHERE a=3277; UPDATE t2 SET c='twenty-one thousand three hundred thirty-four' WHERE a=3278; UPDATE t2 SET c='ten thousand eight hundred twenty-four' WHERE a=3279; UPDATE t2 SET c='sixty-one thousand three hundred thirty-eight' WHERE a=3280; UPDATE t2 SET c='fifty-two thousand five hundred fifty-three' WHERE a=3281; UPDATE t2 SET c='nineteen thousand nine hundred thirty-three' WHERE a=3282; UPDATE t2 SET c='ninety-five thousand nine hundred twenty-two' WHERE a=3283; UPDATE t2 SET c='seventy-two thousand five hundred eighty-seven' WHERE a=3284; UPDATE t2 SET c='ninety-five thousand nine hundred ninety' WHERE a=3285; UPDATE t2 SET c='eighty-two thousand one hundred forty-three' WHERE a=3286; UPDATE t2 SET c='fifty-six thousand seven hundred ninety-one' WHERE a=3287; UPDATE t2 SET c='twenty-nine thousand seven hundred twenty-four' WHERE a=3288; UPDATE t2 SET c='eighty-nine thousand seventy-nine' WHERE a=3289; UPDATE t2 SET c='fifty-four thousand four hundred thirteen' WHERE a=3290; UPDATE t2 SET c='seventy-eight thousand five hundred forty-eight' WHERE a=3291; UPDATE t2 SET c='forty-eight thousand five hundred sixty-four' WHERE a=3292; UPDATE t2 SET c='fifty-one thousand eight hundred thirty-one' WHERE a=3293; UPDATE t2 SET c='ninety-six thousand eight hundred' WHERE a=3294; UPDATE t2 SET c='thirty thousand three hundred ninety-nine' WHERE a=3295; UPDATE t2 SET c='ninety-eight thousand nine hundred forty-six' WHERE a=3296; UPDATE t2 SET c='sixty-seven thousand eight hundred forty-five' WHERE a=3297; UPDATE t2 SET c='seventy-nine thousand eight hundred seventy-one' WHERE a=3298; UPDATE t2 SET c='sixty-seven thousand eight hundred thirty-four' WHERE a=3299; UPDATE t2 SET c='seventy-six thousand five hundred twenty-two' WHERE a=3300; UPDATE t2 SET c='thirty-five thousand six hundred ninety' WHERE a=3301; UPDATE t2 SET c='thirty-eight thousand four' WHERE a=3302; UPDATE t2 SET c='forty-seven thousand six hundred fifty-eight' WHERE a=3303; UPDATE t2 SET c='forty thousand nine hundred thirty-two' WHERE a=3304; UPDATE t2 SET c='ninety-two thousand nine hundred ninety-four' WHERE a=3305; UPDATE t2 SET c='six thousand one hundred forty-five' WHERE a=3306; UPDATE t2 SET c='eighty-one thousand two hundred sixty' WHERE a=3307; UPDATE t2 SET c='ninety thousand seven hundred fifty-six' WHERE a=3308; UPDATE t2 SET c='one thousand three hundred forty-four' WHERE a=3309; UPDATE t2 SET c='seventy-one thousand nine hundred seventy-four' WHERE a=3310; UPDATE t2 SET c='thirty thousand twenty-three' WHERE a=3311; UPDATE t2 SET c='twenty-five thousand one hundred six' WHERE a=3312; UPDATE t2 SET c='ten thousand nine hundred fifty-four' WHERE a=3313; UPDATE t2 SET c='thirty thousand six hundred ninety-one' WHERE a=3314; UPDATE t2 SET c='three thousand two hundred fifty-eight' WHERE a=3315; UPDATE t2 SET c='seventy-eight thousand nine hundred seventy-two' WHERE a=3316; UPDATE t2 SET c='ten thousand seven hundred twelve' WHERE a=3317; UPDATE t2 SET c='forty-one thousand four hundred twenty-one' WHERE a=3318; UPDATE t2 SET c='forty-six thousand six hundred seventy-six' WHERE a=3319; UPDATE t2 SET c='forty-two thousand nine hundred eleven' WHERE a=3320; UPDATE t2 SET c='seventy-seven thousand three hundred forty-four' WHERE a=3321; UPDATE t2 SET c='thirty-five thousand eight hundred ninety-seven' WHERE a=3322; UPDATE t2 SET c='twenty-five thousand two hundred sixty-four' WHERE a=3323; UPDATE t2 SET c='forty-five thousand one hundred thirty-nine' WHERE a=3324; UPDATE t2 SET c='fifty-eight thousand seven hundred twenty' WHERE a=3325; UPDATE t2 SET c='sixty-seven thousand two hundred seventy-eight' WHERE a=3326; UPDATE t2 SET c='eighty-two thousand two hundred thirty-four' WHERE a=3327; UPDATE t2 SET c='thirty-four thousand five hundred four' WHERE a=3328; UPDATE t2 SET c='one thousand four hundred ninety-seven' WHERE a=3329; UPDATE t2 SET c='sixty-one thousand forty' WHERE a=3330; UPDATE t2 SET c='ten thousand two hundred sixty-five' WHERE a=3331; UPDATE t2 SET c='eighty-one thousand eight hundred twenty-four' WHERE a=3332; UPDATE t2 SET c='fifty-nine thousand nine hundred forty-six' WHERE a=3333; UPDATE t2 SET c='ninety-eight thousand nine hundred eighty-nine' WHERE a=3334; UPDATE t2 SET c='seventy-five thousand six hundred twenty-seven' WHERE a=3335; UPDATE t2 SET c='ninety-five thousand five hundred eighty-seven' WHERE a=3336; UPDATE t2 SET c='ninety-six thousand three hundred' WHERE a=3337; UPDATE t2 SET c='thirty-five thousand one hundred fifty-one' WHERE a=3338; UPDATE t2 SET c='forty-five thousand nine hundred sixty-eight' WHERE a=3339; UPDATE t2 SET c='fifty-two thousand five hundred forty-two' WHERE a=3340; UPDATE t2 SET c='forty thousand two hundred forty-eight' WHERE a=3341; UPDATE t2 SET c='fifty-nine thousand nine hundred seventy-five' WHERE a=3342; UPDATE t2 SET c='seventy-three thousand four hundred sixty-one' WHERE a=3343; UPDATE t2 SET c='seventy-one thousand four hundred eighty-six' WHERE a=3344; UPDATE t2 SET c='twenty-nine thousand two hundred sixty-four' WHERE a=3345; UPDATE t2 SET c='fifty-seven thousand nine hundred eighty-four' WHERE a=3346; UPDATE t2 SET c='twenty-three thousand ninety-one' WHERE a=3347; UPDATE t2 SET c='thirty-three thousand two hundred nine' WHERE a=3348; UPDATE t2 SET c='seventy thousand eight hundred fifty-eight' WHERE a=3349; UPDATE t2 SET c='seventy-six thousand nine hundred sixteen' WHERE a=3350; UPDATE t2 SET c='ninety-three thousand five hundred forty-three' WHERE a=3351; UPDATE t2 SET c='thirty-five thousand seven hundred thirty' WHERE a=3352; UPDATE t2 SET c='thirty-nine thousand six hundred sixty-seven' WHERE a=3353; UPDATE t2 SET c='twenty-five thousand eight hundred ten' WHERE a=3354; UPDATE t2 SET c='forty-four thousand nine hundred two' WHERE a=3355; UPDATE t2 SET c='thirty-six thousand three hundred eighteen' WHERE a=3356; UPDATE t2 SET c='eighty thousand three hundred four' WHERE a=3357; UPDATE t2 SET c='eighty-four thousand one hundred seventy-two' WHERE a=3358; UPDATE t2 SET c='eighty-seven thousand eight hundred fifty-two' WHERE a=3359; UPDATE t2 SET c='ninety-nine thousand two hundred seventy-six' WHERE a=3360; UPDATE t2 SET c='forty-nine thousand eight hundred sixty-seven' WHERE a=3361; UPDATE t2 SET c='sixty-four thousand five hundred forty-one' WHERE a=3362; UPDATE t2 SET c='twenty-seven thousand three hundred seventy-four' WHERE a=3363; UPDATE t2 SET c='forty thousand nine hundred eighty-four' WHERE a=3364; UPDATE t2 SET c='sixty-four thousand four hundred thirty-six' WHERE a=3365; UPDATE t2 SET c='eighty-eight thousand five hundred fifty-four' WHERE a=3366; UPDATE t2 SET c='ninety-seven thousand eight hundred thirty' WHERE a=3367; UPDATE t2 SET c='twelve thousand six hundred sixty-eight' WHERE a=3368; UPDATE t2 SET c='fifty-four thousand eight hundred fifty' WHERE a=3369; UPDATE t2 SET c='sixty-nine thousand seven hundred eighty-nine' WHERE a=3370; UPDATE t2 SET c='ninety-seven thousand four hundred ninety' WHERE a=3371; UPDATE t2 SET c='three thousand six hundred eighty-three' WHERE a=3372; UPDATE t2 SET c='forty-two thousand thirty-eight' WHERE a=3373; UPDATE t2 SET c='thirty-three thousand seven hundred thirty-four' WHERE a=3374; UPDATE t2 SET c='forty-nine thousand seven hundred seventy-five' WHERE a=3375; UPDATE t2 SET c='ninety-four thousand nine hundred seventy-six' WHERE a=3376; UPDATE t2 SET c='twenty-five thousand three hundred forty-one' WHERE a=3377; UPDATE t2 SET c='ninety-eight thousand five hundred twenty-two' WHERE a=3378; UPDATE t2 SET c='six thousand five hundred ten' WHERE a=3379; UPDATE t2 SET c='ninety-one thousand three hundred ninety-two' WHERE a=3380; UPDATE t2 SET c='fifty-five thousand three hundred fifty-four' WHERE a=3381; UPDATE t2 SET c='fifty thousand thirteen' WHERE a=3382; UPDATE t2 SET c='eighty-three thousand two hundred six' WHERE a=3383; UPDATE t2 SET c='forty-two thousand thirty-nine' WHERE a=3384; UPDATE t2 SET c='sixty-two thousand five hundred fifty-three' WHERE a=3385; UPDATE t2 SET c='forty-two thousand eight hundred sixty-four' WHERE a=3386; UPDATE t2 SET c='forty-two thousand nine hundred seventy-nine' WHERE a=3387; UPDATE t2 SET c='thirty-nine thousand three hundred sixty-nine' WHERE a=3388; UPDATE t2 SET c='thirty-six thousand five hundred forty-two' WHERE a=3389; UPDATE t2 SET c='twenty-seven thousand six hundred twenty-seven' WHERE a=3390; UPDATE t2 SET c='fifty-five thousand four hundred fifty-six' WHERE a=3391; UPDATE t2 SET c='twenty-six thousand eight hundred thirty-eight' WHERE a=3392; UPDATE t2 SET c='sixty thousand eight hundred thirty' WHERE a=3393; UPDATE t2 SET c='forty thousand three hundred four' WHERE a=3394; UPDATE t2 SET c='seventy-three thousand two hundred forty-eight' WHERE a=3395; UPDATE t2 SET c='ninety-two thousand two hundred eighty' WHERE a=3396; UPDATE t2 SET c='eighty thousand nine hundred eleven' WHERE a=3397; UPDATE t2 SET c='twenty-six thousand' WHERE a=3398; UPDATE t2 SET c='sixteen thousand seven hundred ninety-three' WHERE a=3399; UPDATE t2 SET c='fifty-two thousand one hundred sixty-seven' WHERE a=3400; UPDATE t2 SET c='twenty-seven thousand one hundred ninety-seven' WHERE a=3401; UPDATE t2 SET c='ninety-seven thousand nine hundred eighty-eight' WHERE a=3402; UPDATE t2 SET c='fifty-three thousand three hundred seventy-five' WHERE a=3403; UPDATE t2 SET c='eighty-one thousand five hundred seventy-five' WHERE a=3404; UPDATE t2 SET c='eighty-two thousand eight hundred seventy-nine' WHERE a=3405; UPDATE t2 SET c='ninety-two thousand three hundred twenty-five' WHERE a=3406; UPDATE t2 SET c='sixty-three thousand nine hundred forty-six' WHERE a=3407; UPDATE t2 SET c='twenty-seven thousand three hundred five' WHERE a=3408; UPDATE t2 SET c='fifty-four thousand three hundred eight' WHERE a=3409; UPDATE t2 SET c='seventy-seven thousand two hundred twenty-four' WHERE a=3410; UPDATE t2 SET c='sixty-nine thousand two hundred thirty-four' WHERE a=3411; UPDATE t2 SET c='nine thousand three hundred forty-eight' WHERE a=3412; UPDATE t2 SET c='seventy-four thousand seven hundred sixty-eight' WHERE a=3413; UPDATE t2 SET c='seventy-three thousand one hundred fifty-eight' WHERE a=3414; UPDATE t2 SET c='sixty-eight thousand three hundred ninety-eight' WHERE a=3415; UPDATE t2 SET c='seventy-four thousand four hundred sixty-seven' WHERE a=3416; UPDATE t2 SET c='seventy thousand four hundred thirty-one' WHERE a=3417; UPDATE t2 SET c='seventy-five thousand six hundred sixty-eight' WHERE a=3418; UPDATE t2 SET c='eighty-one thousand two hundred sixty-six' WHERE a=3419; UPDATE t2 SET c='fifty thousand one hundred seventeen' WHERE a=3420; UPDATE t2 SET c='eighty thousand four hundred thirty-five' WHERE a=3421; UPDATE t2 SET c='twenty-one thousand four hundred seventy-five' WHERE a=3422; UPDATE t2 SET c='nineteen thousand one hundred ninety-five' WHERE a=3423; UPDATE t2 SET c='twenty-seven thousand three hundred thirty-four' WHERE a=3424; UPDATE t2 SET c='fifty-eight thousand four hundred thirty-nine' WHERE a=3425; UPDATE t2 SET c='fifty-five thousand six hundred sixteen' WHERE a=3426; UPDATE t2 SET c='eighteen thousand eight hundred fifty' WHERE a=3427; UPDATE t2 SET c='fifty-five thousand four hundred thirty-seven' WHERE a=3428; UPDATE t2 SET c='eighty-eight thousand three hundred sixty-three' WHERE a=3429; UPDATE t2 SET c='five thousand five hundred eight' WHERE a=3430; UPDATE t2 SET c='three thousand seven hundred fourteen' WHERE a=3431; UPDATE t2 SET c='fifty-nine thousand nine hundred seventy-four' WHERE a=3432; UPDATE t2 SET c='seventy thousand seven hundred twenty-two' WHERE a=3433; UPDATE t2 SET c='eighty-seven thousand six hundred fifty-one' WHERE a=3434; UPDATE t2 SET c='six thousand one hundred fifty-three' WHERE a=3435; UPDATE t2 SET c='forty-nine thousand five hundred fifteen' WHERE a=3436; UPDATE t2 SET c='twenty-two thousand three hundred sixty-six' WHERE a=3437; UPDATE t2 SET c='sixty-five thousand four hundred thirty-six' WHERE a=3438; UPDATE t2 SET c='fifty-one thousand one hundred twenty-two' WHERE a=3439; UPDATE t2 SET c='six thousand four hundred twenty-six' WHERE a=3440; UPDATE t2 SET c='twenty-five thousand three hundred eight' WHERE a=3441; UPDATE t2 SET c='seventy-one thousand nine hundred fifty-six' WHERE a=3442; UPDATE t2 SET c='eighty-seven thousand seven hundred seventy-nine' WHERE a=3443; UPDATE t2 SET c='seventy-six thousand ninety-four' WHERE a=3444; UPDATE t2 SET c='ninety-nine thousand five hundred ninety-nine' WHERE a=3445; UPDATE t2 SET c='thirty-one thousand five hundred seventy-eight' WHERE a=3446; UPDATE t2 SET c='fifty-one thousand nine hundred seventy-four' WHERE a=3447; UPDATE t2 SET c='sixty-four thousand one hundred twenty-two' WHERE a=3448; UPDATE t2 SET c='seventy-two thousand three hundred ninety-eight' WHERE a=3449; UPDATE t2 SET c='fifty-nine thousand two hundred one' WHERE a=3450; UPDATE t2 SET c='fourteen thousand one hundred sixty-one' WHERE a=3451; UPDATE t2 SET c='seventy-eight thousand three hundred forty-nine' WHERE a=3452; UPDATE t2 SET c='two hundred thirty-two' WHERE a=3453; UPDATE t2 SET c='fifty thousand fifty-eight' WHERE a=3454; UPDATE t2 SET c='three thousand four hundred sixty-six' WHERE a=3455; UPDATE t2 SET c='sixty-four thousand six hundred thirty-six' WHERE a=3456; UPDATE t2 SET c='eleven thousand eight hundred sixty-five' WHERE a=3457; UPDATE t2 SET c='thirty thousand four hundred eighty-one' WHERE a=3458; UPDATE t2 SET c='seventy-four thousand five hundred thirty-two' WHERE a=3459; UPDATE t2 SET c='seventy-seven thousand two hundred forty-six' WHERE a=3460; UPDATE t2 SET c='nineteen thousand nine hundred twenty-three' WHERE a=3461; UPDATE t2 SET c='seventy-three thousand two hundred eighty-four' WHERE a=3462; UPDATE t2 SET c='eleven thousand three hundred eighteen' WHERE a=3463; UPDATE t2 SET c='seventy-four thousand two hundred seventy-six' WHERE a=3464; UPDATE t2 SET c='eighteen thousand four hundred seventy-six' WHERE a=3465; UPDATE t2 SET c='seventeen thousand nine hundred sixty' WHERE a=3466; UPDATE t2 SET c='seventy-one thousand one hundred forty-six' WHERE a=3467; UPDATE t2 SET c='seventy-seven thousand two hundred twenty-three' WHERE a=3468; UPDATE t2 SET c='forty-three thousand nine hundred twenty-four' WHERE a=3469; UPDATE t2 SET c='sixty-six thousand nine hundred ninety-one' WHERE a=3470; UPDATE t2 SET c='sixty-two thousand six hundred eight' WHERE a=3471; UPDATE t2 SET c='ninety-nine thousand five hundred eighty-one' WHERE a=3472; UPDATE t2 SET c='fourteen thousand four hundred six' WHERE a=3473; UPDATE t2 SET c='six thousand three hundred twenty-seven' WHERE a=3474; UPDATE t2 SET c='sixty-three thousand three hundred eleven' WHERE a=3475; UPDATE t2 SET c='fifteen thousand seven hundred sixty-three' WHERE a=3476; UPDATE t2 SET c='eighty-four thousand two hundred twelve' WHERE a=3477; UPDATE t2 SET c='sixteen thousand five hundred ninety-four' WHERE a=3478; UPDATE t2 SET c='thirty thousand seven hundred eighty-three' WHERE a=3479; UPDATE t2 SET c='seventy-five thousand four hundred fifty-eight' WHERE a=3480; UPDATE t2 SET c='forty-one thousand seven hundred seventy-two' WHERE a=3481; UPDATE t2 SET c='sixteen thousand five hundred eighty-two' WHERE a=3482; UPDATE t2 SET c='thirty-six thousand four hundred ninety-three' WHERE a=3483; UPDATE t2 SET c='fifty-two thousand three hundred sixty-six' WHERE a=3484; UPDATE t2 SET c='seventy-four thousand nine' WHERE a=3485; UPDATE t2 SET c='twenty-four thousand two hundred ninety-seven' WHERE a=3486; UPDATE t2 SET c='sixty-four thousand three hundred sixty-two' WHERE a=3487; UPDATE t2 SET c='forty-eight thousand four hundred three' WHERE a=3488; UPDATE t2 SET c='thirty thousand seventy-seven' WHERE a=3489; UPDATE t2 SET c='seven thousand one hundred thirty-seven' WHERE a=3490; UPDATE t2 SET c='twenty-three thousand five hundred seventy-four' WHERE a=3491; UPDATE t2 SET c='forty-two thousand twenty-six' WHERE a=3492; UPDATE t2 SET c='fifty-five thousand seven hundred forty-two' WHERE a=3493; UPDATE t2 SET c='sixty-nine thousand one hundred forty-four' WHERE a=3494; UPDATE t2 SET c='forty-eight thousand eight hundred six' WHERE a=3495; UPDATE t2 SET c='forty-six thousand seven hundred sixteen' WHERE a=3496; UPDATE t2 SET c='fifty-three thousand seven hundred forty' WHERE a=3497; UPDATE t2 SET c='ninety thousand three hundred eleven' WHERE a=3498; UPDATE t2 SET c='twenty-five thousand four hundred forty-seven' WHERE a=3499; UPDATE t2 SET c='nineteen thousand sixty-six' WHERE a=3500; UPDATE t2 SET c='eighty-four thousand twenty-eight' WHERE a=3501; UPDATE t2 SET c='one thousand six hundred thirty-eight' WHERE a=3502; UPDATE t2 SET c='five thousand one hundred fifteen' WHERE a=3503; UPDATE t2 SET c='twenty-eight thousand nine hundred four' WHERE a=3504; UPDATE t2 SET c='thirty-four thousand five hundred forty-two' WHERE a=3505; UPDATE t2 SET c='forty-eight thousand eight hundred fifty-five' WHERE a=3506; UPDATE t2 SET c='thirty-one thousand five hundred sixty-two' WHERE a=3507; UPDATE t2 SET c='ninety-one thousand two hundred twenty-eight' WHERE a=3508; UPDATE t2 SET c='ninety-four thousand six hundred forty-three' WHERE a=3509; UPDATE t2 SET c='sixty-three thousand three hundred sixty-five' WHERE a=3510; UPDATE t2 SET c='thirty-one thousand eight hundred fifty-four' WHERE a=3511; UPDATE t2 SET c='forty-five thousand two hundred eighty-four' WHERE a=3512; UPDATE t2 SET c='twenty-nine thousand nine hundred seventeen' WHERE a=3513; UPDATE t2 SET c='eight thousand nine hundred fifty-seven' WHERE a=3514; UPDATE t2 SET c='forty thousand twenty-seven' WHERE a=3515; UPDATE t2 SET c='one thousand nine hundred fifty-two' WHERE a=3516; UPDATE t2 SET c='fourteen thousand one hundred ninety-nine' WHERE a=3517; UPDATE t2 SET c='fifty-three thousand two hundred forty-four' WHERE a=3518; UPDATE t2 SET c='fifty-nine thousand eight hundred one' WHERE a=3519; UPDATE t2 SET c='twenty-four thousand two hundred sixty' WHERE a=3520; UPDATE t2 SET c='sixty-two thousand eight hundred' WHERE a=3521; UPDATE t2 SET c='sixty-three thousand five hundred fifty-two' WHERE a=3522; UPDATE t2 SET c='seven thousand eight hundred twenty' WHERE a=3523; UPDATE t2 SET c='sixty-six thousand two hundred forty-seven' WHERE a=3524; UPDATE t2 SET c='ninety-two thousand eight hundred forty-five' WHERE a=3525; UPDATE t2 SET c='seventy-six thousand two hundred ninety-two' WHERE a=3526; UPDATE t2 SET c='sixty-five thousand seven hundred two' WHERE a=3527; UPDATE t2 SET c='sixty-nine thousand four hundred ninety-five' WHERE a=3528; UPDATE t2 SET c='twelve thousand seven hundred seventy-seven' WHERE a=3529; UPDATE t2 SET c='ninety-nine thousand eight hundred eighty-eight' WHERE a=3530; UPDATE t2 SET c='seven thousand six hundred eighty-four' WHERE a=3531; UPDATE t2 SET c='fifty-eight thousand two hundred seventy-six' WHERE a=3532; UPDATE t2 SET c='forty thousand ten' WHERE a=3533; UPDATE t2 SET c='seventy-one thousand seven hundred thirty-nine' WHERE a=3534; UPDATE t2 SET c='six thousand eight hundred eighty-two' WHERE a=3535; UPDATE t2 SET c='eighty-three thousand four hundred twelve' WHERE a=3536; UPDATE t2 SET c='seven thousand two hundred ninety-three' WHERE a=3537; UPDATE t2 SET c='three thousand three hundred sixteen' WHERE a=3538; UPDATE t2 SET c='forty thousand two hundred thirty-eight' WHERE a=3539; UPDATE t2 SET c='forty-six thousand three hundred ninety-four' WHERE a=3540; UPDATE t2 SET c='fifty-three thousand three hundred thirty-four' WHERE a=3541; UPDATE t2 SET c='ninety-six thousand seven hundred seventy-five' WHERE a=3542; UPDATE t2 SET c='ninety-eight thousand nine hundred seventy-three' WHERE a=3543; UPDATE t2 SET c='twenty-nine thousand three hundred twenty-eight' WHERE a=3544; UPDATE t2 SET c='twenty-eight thousand four hundred forty-nine' WHERE a=3545; UPDATE t2 SET c='twenty-five thousand sixty-nine' WHERE a=3546; UPDATE t2 SET c='twenty-eight thousand fifty-eight' WHERE a=3547; UPDATE t2 SET c='forty-two thousand six hundred twenty-five' WHERE a=3548; UPDATE t2 SET c='one hundred thirty-three' WHERE a=3549; UPDATE t2 SET c='sixty-eight thousand two hundred thirty-eight' WHERE a=3550; UPDATE t2 SET c='eighty-one thousand nine hundred thirty-seven' WHERE a=3551; UPDATE t2 SET c='fifty thousand one hundred eighty-five' WHERE a=3552; UPDATE t2 SET c='fifty-nine thousand five hundred nineteen' WHERE a=3553; UPDATE t2 SET c='twenty-two thousand three hundred forty-one' WHERE a=3554; UPDATE t2 SET c='twenty-four thousand three hundred nineteen' WHERE a=3555; UPDATE t2 SET c='four thousand nine hundred ninety-three' WHERE a=3556; UPDATE t2 SET c='eighty-eight thousand six hundred ninety-two' WHERE a=3557; UPDATE t2 SET c='twelve thousand three hundred eighty-two' WHERE a=3558; UPDATE t2 SET c='fifty-nine thousand four hundred seventy' WHERE a=3559; UPDATE t2 SET c='twenty-three thousand four hundred six' WHERE a=3560; UPDATE t2 SET c='thirty-five thousand five hundred ninety-three' WHERE a=3561; UPDATE t2 SET c='eighty-one thousand one hundred thirty-four' WHERE a=3562; UPDATE t2 SET c='thirty-seven thousand one hundred forty-nine' WHERE a=3563; UPDATE t2 SET c='nineteen thousand ninety-four' WHERE a=3564; UPDATE t2 SET c='seventy-eight thousand four hundred ninety-eight' WHERE a=3565; UPDATE t2 SET c='four thousand seven hundred thirty-eight' WHERE a=3566; UPDATE t2 SET c='eighty-two thousand eighteen' WHERE a=3567; UPDATE t2 SET c='eighty thousand five hundred seven' WHERE a=3568; UPDATE t2 SET c='twenty-one thousand nine hundred ninety-seven' WHERE a=3569; UPDATE t2 SET c='seventeen thousand nine hundred fifty-eight' WHERE a=3570; UPDATE t2 SET c='fifteen thousand five hundred thirty-three' WHERE a=3571; UPDATE t2 SET c='five thousand three hundred fifty-seven' WHERE a=3572; UPDATE t2 SET c='forty-eight thousand five hundred ninety-eight' WHERE a=3573; UPDATE t2 SET c='twenty-eight thousand three hundred seventy-two' WHERE a=3574; UPDATE t2 SET c='thirty-eight thousand seven hundred twenty' WHERE a=3575; UPDATE t2 SET c='seventeen thousand nine hundred thirty' WHERE a=3576; UPDATE t2 SET c='ninety-two thousand five hundred ten' WHERE a=3577; UPDATE t2 SET c='sixteen thousand one' WHERE a=3578; UPDATE t2 SET c='sixty-four thousand one hundred fifty-four' WHERE a=3579; UPDATE t2 SET c='fifty thousand twenty-one' WHERE a=3580; UPDATE t2 SET c='eighty-one thousand three hundred thirty-five' WHERE a=3581; UPDATE t2 SET c='seventy-eight thousand eight hundred sixty-seven' WHERE a=3582; UPDATE t2 SET c='five thousand seven hundred fifty-five' WHERE a=3583; UPDATE t2 SET c='ninety-four thousand seven hundred thirty-four' WHERE a=3584; UPDATE t2 SET c='one thousand nine hundred four' WHERE a=3585; UPDATE t2 SET c='seventy-eight thousand six hundred fifty-one' WHERE a=3586; UPDATE t2 SET c='seventy-six thousand seven hundred twenty-six' WHERE a=3587; UPDATE t2 SET c='seventy-four thousand three hundred sixty-six' WHERE a=3588; UPDATE t2 SET c='sixty-two thousand one hundred sixty-six' WHERE a=3589; UPDATE t2 SET c='eighty-two thousand two hundred thirty-six' WHERE a=3590; UPDATE t2 SET c='sixty-six thousand nine hundred sixty-six' WHERE a=3591; UPDATE t2 SET c='thirty-five thousand four hundred fifty-one' WHERE a=3592; UPDATE t2 SET c='thirty-nine thousand three hundred seventy-four' WHERE a=3593; UPDATE t2 SET c='seventy-three thousand nine hundred eighty-four' WHERE a=3594; UPDATE t2 SET c='seventy-eight thousand six hundred sixty-eight' WHERE a=3595; UPDATE t2 SET c='eighty-one thousand eight hundred eighty-three' WHERE a=3596; UPDATE t2 SET c='eighty-six thousand eight hundred ninety' WHERE a=3597; UPDATE t2 SET c='seven thousand six hundred eighty-two' WHERE a=3598; UPDATE t2 SET c='fifty-eight thousand six hundred sixty' WHERE a=3599; UPDATE t2 SET c='twenty-six thousand two hundred ninety-eight' WHERE a=3600; UPDATE t2 SET c='eighty-nine thousand three hundred eighty-seven' WHERE a=3601; UPDATE t2 SET c='two thousand five hundred fifty-seven' WHERE a=3602; UPDATE t2 SET c='sixteen thousand nine hundred thirty-one' WHERE a=3603; UPDATE t2 SET c='forty-seven thousand eight hundred seventy-five' WHERE a=3604; UPDATE t2 SET c='sixty-seven thousand six hundred four' WHERE a=3605; UPDATE t2 SET c='thirteen thousand six hundred five' WHERE a=3606; UPDATE t2 SET c='twenty-three thousand two hundred sixty-four' WHERE a=3607; UPDATE t2 SET c='thirty-one thousand one hundred forty-six' WHERE a=3608; UPDATE t2 SET c='five thousand eight hundred eighty' WHERE a=3609; UPDATE t2 SET c='fifty-two thousand seven hundred seventy-four' WHERE a=3610; UPDATE t2 SET c='fifteen thousand five hundred sixty-one' WHERE a=3611; UPDATE t2 SET c='fifty thousand eight hundred ninety-seven' WHERE a=3612; UPDATE t2 SET c='twenty thousand two hundred fifty' WHERE a=3613; UPDATE t2 SET c='sixteen thousand sixty-four' WHERE a=3614; UPDATE t2 SET c='seventy-one thousand five hundred fifty' WHERE a=3615; UPDATE t2 SET c='eighteen thousand thirty-nine' WHERE a=3616; UPDATE t2 SET c='twenty-six thousand four hundred fifty-six' WHERE a=3617; UPDATE t2 SET c='sixty-four thousand nine hundred twenty-nine' WHERE a=3618; UPDATE t2 SET c='sixty-two thousand two hundred eighty-five' WHERE a=3619; UPDATE t2 SET c='eighty-seven thousand five hundred six' WHERE a=3620; UPDATE t2 SET c='forty-five thousand fifty-seven' WHERE a=3621; UPDATE t2 SET c='seventy-seven thousand nine hundred five' WHERE a=3622; UPDATE t2 SET c='eighty-three thousand one hundred seventy-one' WHERE a=3623; UPDATE t2 SET c='four thousand seven hundred thirty' WHERE a=3624; UPDATE t2 SET c='sixty-one thousand six hundred forty-six' WHERE a=3625; UPDATE t2 SET c='sixty-six thousand forty-two' WHERE a=3626; UPDATE t2 SET c='twenty-eight thousand nine hundred sixty-two' WHERE a=3627; UPDATE t2 SET c='ninety-six thousand two hundred fifty-six' WHERE a=3628; UPDATE t2 SET c='fifty-four thousand four hundred three' WHERE a=3629; UPDATE t2 SET c='ninety-eight thousand eight hundred eighty-three' WHERE a=3630; UPDATE t2 SET c='sixty-seven thousand seven hundred thirty-two' WHERE a=3631; UPDATE t2 SET c='twenty-seven thousand thirty-one' WHERE a=3632; UPDATE t2 SET c='sixty-one thousand five hundred seventy-eight' WHERE a=3633; UPDATE t2 SET c='fifty thousand six hundred ninety-three' WHERE a=3634; UPDATE t2 SET c='eighteen thousand two hundred twenty-one' WHERE a=3635; UPDATE t2 SET c='sixty-three thousand five hundred ninety-one' WHERE a=3636; UPDATE t2 SET c='forty-five thousand three hundred ninety-three' WHERE a=3637; UPDATE t2 SET c='fifty-one thousand six hundred two' WHERE a=3638; UPDATE t2 SET c='eighty-one thousand seventy-five' WHERE a=3639; UPDATE t2 SET c='ninety-four thousand two hundred eight' WHERE a=3640; UPDATE t2 SET c='eighty-eight thousand five hundred sixty-eight' WHERE a=3641; UPDATE t2 SET c='fifty-one thousand seven hundred seven' WHERE a=3642; UPDATE t2 SET c='seventy-nine thousand one hundred ninety' WHERE a=3643; UPDATE t2 SET c='thirty-five thousand two hundred ninety-six' WHERE a=3644; UPDATE t2 SET c='eighty thousand five hundred fifty-nine' WHERE a=3645; UPDATE t2 SET c='fifty thousand five hundred seventy-three' WHERE a=3646; UPDATE t2 SET c='fifty-seven thousand four hundred thirty-five' WHERE a=3647; UPDATE t2 SET c='nine thousand six hundred ten' WHERE a=3648; UPDATE t2 SET c='twenty-seven thousand four hundred fifty-nine' WHERE a=3649; UPDATE t2 SET c='ninety-three thousand six hundred forty' WHERE a=3650; UPDATE t2 SET c='seventy-three thousand nine hundred sixteen' WHERE a=3651; UPDATE t2 SET c='seventy-four thousand four hundred seventy-eight' WHERE a=3652; UPDATE t2 SET c='fifty-eight thousand one hundred eighty-three' WHERE a=3653; UPDATE t2 SET c='twenty-five thousand nine hundred nineteen' WHERE a=3654; UPDATE t2 SET c='ninety-seven thousand seven hundred sixty' WHERE a=3655; UPDATE t2 SET c='five thousand eight hundred thirty-three' WHERE a=3656; UPDATE t2 SET c='ninety-seven thousand eight hundred ninety' WHERE a=3657; UPDATE t2 SET c='forty-three thousand one hundred sixteen' WHERE a=3658; UPDATE t2 SET c='thirty-one thousand four hundred three' WHERE a=3659; UPDATE t2 SET c='eighty-six thousand four hundred twenty-two' WHERE a=3660; UPDATE t2 SET c='eighty-two thousand two hundred thirty-three' WHERE a=3661; UPDATE t2 SET c='nineteen thousand three hundred twenty-six' WHERE a=3662; UPDATE t2 SET c='seventy-seven thousand six hundred eighty-two' WHERE a=3663; UPDATE t2 SET c='twenty-three thousand two hundred sixty-nine' WHERE a=3664; UPDATE t2 SET c='ninety-seven thousand nine hundred eighty-one' WHERE a=3665; UPDATE t2 SET c='three thousand eight hundred thirty-four' WHERE a=3666; UPDATE t2 SET c='twenty-five thousand five hundred ninety-six' WHERE a=3667; UPDATE t2 SET c='sixty-three thousand eight hundred seventy-eight' WHERE a=3668; UPDATE t2 SET c='twenty-four thousand one hundred twenty-seven' WHERE a=3669; UPDATE t2 SET c='eighty-two thousand one hundred sixty-eight' WHERE a=3670; UPDATE t2 SET c='seven thousand four hundred thirty-one' WHERE a=3671; UPDATE t2 SET c='seventy-six thousand four hundred seventy-five' WHERE a=3672; UPDATE t2 SET c='fifty-nine thousand five hundred eighty' WHERE a=3673; UPDATE t2 SET c='ninety thousand seven hundred eighty-seven' WHERE a=3674; UPDATE t2 SET c='fifty-two thousand seven hundred seventy' WHERE a=3675; UPDATE t2 SET c='fifty-eight thousand seven hundred sixty-one' WHERE a=3676; UPDATE t2 SET c='twenty-six thousand seven hundred eight' WHERE a=3677; UPDATE t2 SET c='forty-one thousand nine hundred sixty-three' WHERE a=3678; UPDATE t2 SET c='six thousand nine hundred forty-four' WHERE a=3679; UPDATE t2 SET c='forty-five thousand nine hundred thirty-two' WHERE a=3680; UPDATE t2 SET c='one thousand six hundred sixty-one' WHERE a=3681; UPDATE t2 SET c='seventeen thousand four hundred twenty-four' WHERE a=3682; UPDATE t2 SET c='ninety-three thousand two hundred thirty-nine' WHERE a=3683; UPDATE t2 SET c='twenty-four thousand one hundred ninety-one' WHERE a=3684; UPDATE t2 SET c='seventeen thousand five hundred twenty-one' WHERE a=3685; UPDATE t2 SET c='fifteen thousand one hundred forty-two' WHERE a=3686; UPDATE t2 SET c='seven thousand three hundred thirty' WHERE a=3687; UPDATE t2 SET c='ninety-two thousand seven hundred ninety-seven' WHERE a=3688; UPDATE t2 SET c='sixty thousand two hundred thirty-nine' WHERE a=3689; UPDATE t2 SET c='twenty-two thousand two hundred ninety-eight' WHERE a=3690; UPDATE t2 SET c='seventy-five thousand eight hundred thirty-three' WHERE a=3691; UPDATE t2 SET c='sixty-nine thousand four hundred twenty-two' WHERE a=3692; UPDATE t2 SET c='eighty-seven thousand seven hundred eighty' WHERE a=3693; UPDATE t2 SET c='fifty-three thousand seven hundred seventy-six' WHERE a=3694; UPDATE t2 SET c='twenty-three thousand one hundred six' WHERE a=3695; UPDATE t2 SET c='thirty-six thousand four hundred forty-eight' WHERE a=3696; UPDATE t2 SET c='seven thousand two hundred thirty' WHERE a=3697; UPDATE t2 SET c='fourteen thousand eight hundred eighty-eight' WHERE a=3698; UPDATE t2 SET c='forty-six thousand seven hundred thirty-nine' WHERE a=3699; UPDATE t2 SET c='ninety-one thousand two hundred forty-one' WHERE a=3700; UPDATE t2 SET c='sixty-eight thousand six hundred fourteen' WHERE a=3701; UPDATE t2 SET c='sixty-four thousand nine' WHERE a=3702; UPDATE t2 SET c='forty thousand five hundred eighty-one' WHERE a=3703; UPDATE t2 SET c='two thousand four hundred twelve' WHERE a=3704; UPDATE t2 SET c='sixty-nine thousand twenty-six' WHERE a=3705; UPDATE t2 SET c='fifty-four thousand seven hundred fifty-one' WHERE a=3706; UPDATE t2 SET c='sixteen thousand three hundred twenty-nine' WHERE a=3707; UPDATE t2 SET c='twenty-three thousand six hundred fourteen' WHERE a=3708; UPDATE t2 SET c='seventy-four thousand eight hundred eighty-seven' WHERE a=3709; UPDATE t2 SET c='seventy-seven thousand nine hundred twenty-one' WHERE a=3710; UPDATE t2 SET c='eighty-three thousand six hundred seventy-three' WHERE a=3711; UPDATE t2 SET c='forty-six thousand two hundred twenty' WHERE a=3712; UPDATE t2 SET c='twenty-seven thousand two hundred forty-six' WHERE a=3713; UPDATE t2 SET c='eighteen thousand two hundred fifty-three' WHERE a=3714; UPDATE t2 SET c='thirty-one thousand three hundred forty-seven' WHERE a=3715; UPDATE t2 SET c='eleven thousand six hundred forty-eight' WHERE a=3716; UPDATE t2 SET c='ninety-nine thousand seven hundred thirty' WHERE a=3717; UPDATE t2 SET c='two thousand one hundred twenty-one' WHERE a=3718; UPDATE t2 SET c='forty-three thousand six hundred eighty-four' WHERE a=3719; UPDATE t2 SET c='four thousand six hundred thirty-nine' WHERE a=3720; UPDATE t2 SET c='fourteen thousand four hundred eighty-seven' WHERE a=3721; UPDATE t2 SET c='thirty thousand nine hundred ninety-five' WHERE a=3722; UPDATE t2 SET c='eight thousand four hundred twelve' WHERE a=3723; UPDATE t2 SET c='thirty-one thousand seven hundred nineteen' WHERE a=3724; UPDATE t2 SET c='ninety-eight thousand seven hundred eighty-two' WHERE a=3725; UPDATE t2 SET c='ninety-nine thousand eight hundred seven' WHERE a=3726; UPDATE t2 SET c='thirty-nine thousand nine hundred seventy-three' WHERE a=3727; UPDATE t2 SET c='sixty-two thousand two hundred thirty-eight' WHERE a=3728; UPDATE t2 SET c='fifty-two thousand five hundred fifteen' WHERE a=3729; UPDATE t2 SET c='ninety-six thousand five hundred fifty-nine' WHERE a=3730; UPDATE t2 SET c='sixty-seven thousand eight hundred sixty-nine' WHERE a=3731; UPDATE t2 SET c='seventy-one thousand four hundred twenty-five' WHERE a=3732; UPDATE t2 SET c='fifty-two thousand nine hundred sixty-six' WHERE a=3733; UPDATE t2 SET c='forty-four thousand eight hundred twenty-five' WHERE a=3734; UPDATE t2 SET c='ninety-three thousand two hundred eighty-seven' WHERE a=3735; UPDATE t2 SET c='ninety thousand three hundred seventy' WHERE a=3736; UPDATE t2 SET c='seven thousand twenty-four' WHERE a=3737; UPDATE t2 SET c='seventy thousand two hundred eighty-eight' WHERE a=3738; UPDATE t2 SET c='eighty-nine thousand four hundred three' WHERE a=3739; UPDATE t2 SET c='eighty-two thousand nine hundred ninety-nine' WHERE a=3740; UPDATE t2 SET c='ninety-six thousand five hundred ninety-six' WHERE a=3741; UPDATE t2 SET c='sixty-eight thousand two hundred seventy-five' WHERE a=3742; UPDATE t2 SET c='eighty-three thousand four hundred twenty-seven' WHERE a=3743; UPDATE t2 SET c='seventy-two thousand two hundred ninety-six' WHERE a=3744; UPDATE t2 SET c='eighty-six thousand three hundred ninety-four' WHERE a=3745; UPDATE t2 SET c='thirty-two thousand six hundred twenty-five' WHERE a=3746; UPDATE t2 SET c='ninety-two thousand five hundred thirty-two' WHERE a=3747; UPDATE t2 SET c='sixty-eight thousand two hundred thirty-four' WHERE a=3748; UPDATE t2 SET c='thirty-two thousand eight hundred fifty-eight' WHERE a=3749; UPDATE t2 SET c='sixty-nine thousand six hundred eighty-five' WHERE a=3750; UPDATE t2 SET c='thirty-three thousand twenty-two' WHERE a=3751; UPDATE t2 SET c='seventy-three thousand seventy' WHERE a=3752; UPDATE t2 SET c='eighty-three thousand three hundred fifty-one' WHERE a=3753; UPDATE t2 SET c='forty-five thousand twenty' WHERE a=3754; UPDATE t2 SET c='ninety-one thousand forty-three' WHERE a=3755; UPDATE t2 SET c='twenty-two thousand six hundred sixty-seven' WHERE a=3756; UPDATE t2 SET c='one thousand eight hundred sixty-one' WHERE a=3757; UPDATE t2 SET c='eighty-one thousand two hundred sixty-one' WHERE a=3758; UPDATE t2 SET c='twelve thousand one hundred fifteen' WHERE a=3759; UPDATE t2 SET c='eight thousand two hundred seventy-five' WHERE a=3760; UPDATE t2 SET c='thirty-four thousand four hundred five' WHERE a=3761; UPDATE t2 SET c='thirty-seven thousand two hundred two' WHERE a=3762; UPDATE t2 SET c='ninety-one thousand nine hundred eight' WHERE a=3763; UPDATE t2 SET c='thirty-nine thousand three hundred ninety-nine' WHERE a=3764; UPDATE t2 SET c='ninety-one thousand seven hundred fifty' WHERE a=3765; UPDATE t2 SET c='forty-two thousand five hundred fifty-two' WHERE a=3766; UPDATE t2 SET c='thirty-seven thousand five hundred thirty' WHERE a=3767; UPDATE t2 SET c='forty-three thousand four hundred sixty-seven' WHERE a=3768; UPDATE t2 SET c='eleven thousand thirty-nine' WHERE a=3769; UPDATE t2 SET c='fifty-four thousand six hundred fifty-five' WHERE a=3770; UPDATE t2 SET c='eighty-four thousand seven hundred thirty-two' WHERE a=3771; UPDATE t2 SET c='sixty-one thousand four hundred eighty-one' WHERE a=3772; UPDATE t2 SET c='six thousand three hundred sixty-four' WHERE a=3773; UPDATE t2 SET c='forty-three thousand eight hundred thirty-eight' WHERE a=3774; UPDATE t2 SET c='seventeen thousand seven hundred twenty-nine' WHERE a=3775; UPDATE t2 SET c='forty-one thousand seven hundred fifty-four' WHERE a=3776; UPDATE t2 SET c='eighty-four thousand four hundred forty-one' WHERE a=3777; UPDATE t2 SET c='seventy-six thousand three hundred eighty-seven' WHERE a=3778; UPDATE t2 SET c='eighty-four thousand one hundred sixteen' WHERE a=3779; UPDATE t2 SET c='seventy-two thousand one hundred twenty-five' WHERE a=3780; UPDATE t2 SET c='eighteen thousand two hundred twenty-nine' WHERE a=3781; UPDATE t2 SET c='twenty-one thousand twenty-seven' WHERE a=3782; UPDATE t2 SET c='twenty-five thousand two hundred sixty-eight' WHERE a=3783; UPDATE t2 SET c='eighty-three thousand eight hundred thirty-one' WHERE a=3784; UPDATE t2 SET c='two thousand two hundred thirty-five' WHERE a=3785; UPDATE t2 SET c='six thousand two hundred sixty-nine' WHERE a=3786; UPDATE t2 SET c='forty-two thousand fourteen' WHERE a=3787; UPDATE t2 SET c='eighty thousand one hundred twenty-eight' WHERE a=3788; UPDATE t2 SET c='sixty thousand ninety-one' WHERE a=3789; UPDATE t2 SET c='twenty-eight thousand eight hundred twenty-eight' WHERE a=3790; UPDATE t2 SET c='fifty-nine thousand nine hundred eighty' WHERE a=3791; UPDATE t2 SET c='three thousand six hundred thirty-four' WHERE a=3792; UPDATE t2 SET c='seventy-two thousand four hundred twenty-three' WHERE a=3793; UPDATE t2 SET c='forty-nine thousand one hundred thirty-five' WHERE a=3794; UPDATE t2 SET c='eighty thousand fifty-six' WHERE a=3795; UPDATE t2 SET c='eighty-nine thousand five hundred one' WHERE a=3796; UPDATE t2 SET c='three thousand forty-three' WHERE a=3797; UPDATE t2 SET c='twenty-two thousand nine hundred eleven' WHERE a=3798; UPDATE t2 SET c='eighty-six thousand thirty-three' WHERE a=3799; UPDATE t2 SET c='eighty-four thousand twenty' WHERE a=3800; UPDATE t2 SET c='eighty thousand one hundred seventy-five' WHERE a=3801; UPDATE t2 SET c='forty thousand five hundred thirty-nine' WHERE a=3802; UPDATE t2 SET c='forty-two thousand nine hundred fifty-six' WHERE a=3803; UPDATE t2 SET c='thirty thousand five hundred three' WHERE a=3804; UPDATE t2 SET c='thirty-nine thousand seventy-three' WHERE a=3805; UPDATE t2 SET c='five thousand seven hundred seventy-four' WHERE a=3806; UPDATE t2 SET c='forty-three thousand five hundred twenty-six' WHERE a=3807; UPDATE t2 SET c='sixteen thousand ninety-seven' WHERE a=3808; UPDATE t2 SET c='six thousand three hundred twenty-three' WHERE a=3809; UPDATE t2 SET c='sixty-nine thousand five hundred seventy-seven' WHERE a=3810; UPDATE t2 SET c='sixty-seven thousand nine hundred fifty-three' WHERE a=3811; UPDATE t2 SET c='forty thousand eighty-six' WHERE a=3812; UPDATE t2 SET c='thirty-three thousand six hundred forty-nine' WHERE a=3813; UPDATE t2 SET c='eighty-four thousand five hundred' WHERE a=3814; UPDATE t2 SET c='thirty-five thousand three hundred fifty' WHERE a=3815; UPDATE t2 SET c='eight thousand eighty' WHERE a=3816; UPDATE t2 SET c='eight hundred sixty-nine' WHERE a=3817; UPDATE t2 SET c='fifty-seven thousand seven hundred thirteen' WHERE a=3818; UPDATE t2 SET c='forty-nine thousand six hundred fifty-one' WHERE a=3819; UPDATE t2 SET c='twenty-seven thousand three' WHERE a=3820; UPDATE t2 SET c='seventy-one thousand five hundred seventy' WHERE a=3821; UPDATE t2 SET c='eight thousand eight hundred eighty-five' WHERE a=3822; UPDATE t2 SET c='fourteen thousand one hundred forty-two' WHERE a=3823; UPDATE t2 SET c='twenty-six thousand nine hundred eighty-one' WHERE a=3824; UPDATE t2 SET c='fifty-five thousand five hundred sixteen' WHERE a=3825; UPDATE t2 SET c='twenty-three thousand eight hundred eighteen' WHERE a=3826; UPDATE t2 SET c='fifty-seven thousand eighty-one' WHERE a=3827; UPDATE t2 SET c='forty-five thousand four hundred nineteen' WHERE a=3828; UPDATE t2 SET c='seventy-two thousand five hundred one' WHERE a=3829; UPDATE t2 SET c='thirty-nine thousand seven hundred fifty-six' WHERE a=3830; UPDATE t2 SET c='fifty-three thousand four hundred ninety-eight' WHERE a=3831; UPDATE t2 SET c='eighty-four thousand nine hundred ninety-nine' WHERE a=3832; UPDATE t2 SET c='eighty-three thousand one hundred thirty-one' WHERE a=3833; UPDATE t2 SET c='ninety-six thousand three hundred eighty-eight' WHERE a=3834; UPDATE t2 SET c='sixty-two thousand three hundred forty-one' WHERE a=3835; UPDATE t2 SET c='twenty thousand thirty-one' WHERE a=3836; UPDATE t2 SET c='fifty-five thousand nine hundred forty-five' WHERE a=3837; UPDATE t2 SET c='twenty-four thousand two hundred fourteen' WHERE a=3838; UPDATE t2 SET c='thirty-four thousand two hundred sixty' WHERE a=3839; UPDATE t2 SET c='thirty-three thousand six hundred sixty-five' WHERE a=3840; UPDATE t2 SET c='sixty-seven thousand eight hundred ninety-three' WHERE a=3841; UPDATE t2 SET c='seventy-one thousand one hundred ninety-seven' WHERE a=3842; UPDATE t2 SET c='thirty-one thousand eight hundred sixty-nine' WHERE a=3843; UPDATE t2 SET c='thirteen thousand eight hundred seventy-two' WHERE a=3844; UPDATE t2 SET c='forty-four thousand five hundred forty-five' WHERE a=3845; UPDATE t2 SET c='forty-one thousand two hundred thirty-one' WHERE a=3846; UPDATE t2 SET c='ninety-four thousand five hundred fifty-eight' WHERE a=3847; UPDATE t2 SET c='thirty-five thousand six hundred seventy-five' WHERE a=3848; UPDATE t2 SET c='eighty-nine thousand two hundred forty-one' WHERE a=3849; UPDATE t2 SET c='eighty-six thousand thirty-two' WHERE a=3850; UPDATE t2 SET c='seventy-six thousand three hundred sixty-four' WHERE a=3851; UPDATE t2 SET c='ninety thousand five hundred forty-eight' WHERE a=3852; UPDATE t2 SET c='nineteen thousand nine hundred fifty-nine' WHERE a=3853; UPDATE t2 SET c='eighty-seven thousand eight hundred forty-five' WHERE a=3854; UPDATE t2 SET c='sixty-one thousand five hundred fifty-three' WHERE a=3855; UPDATE t2 SET c='sixteen thousand three hundred fifty-two' WHERE a=3856; UPDATE t2 SET c='nineteen thousand ninety' WHERE a=3857; UPDATE t2 SET c='four hundred nineteen' WHERE a=3858; UPDATE t2 SET c='seventy-eight thousand nine hundred forty-five' WHERE a=3859; UPDATE t2 SET c='ninety-one thousand five hundred seven' WHERE a=3860; UPDATE t2 SET c='twenty-one thousand nine hundred' WHERE a=3861; UPDATE t2 SET c='twenty-six thousand eight hundred fifty-six' WHERE a=3862; UPDATE t2 SET c='twenty-three thousand two hundred twenty-three' WHERE a=3863; UPDATE t2 SET c='twenty-six thousand five hundred fifty-seven' WHERE a=3864; UPDATE t2 SET c='sixty-six thousand five hundred thirteen' WHERE a=3865; UPDATE t2 SET c='eighty-four thousand four hundred seventeen' WHERE a=3866; UPDATE t2 SET c='twelve thousand four hundred sixty-six' WHERE a=3867; UPDATE t2 SET c='ninety-three thousand seventy-one' WHERE a=3868; UPDATE t2 SET c='seventy-five thousand seven hundred sixty' WHERE a=3869; UPDATE t2 SET c='thirty-nine thousand six hundred fourteen' WHERE a=3870; UPDATE t2 SET c='fifty-five thousand three hundred thirty-two' WHERE a=3871; UPDATE t2 SET c='thirty thousand two hundred thirty-nine' WHERE a=3872; UPDATE t2 SET c='seventy-three thousand three hundred twenty-seven' WHERE a=3873; UPDATE t2 SET c='fourteen thousand three hundred seventeen' WHERE a=3874; UPDATE t2 SET c='thirty-six thousand ninety-two' WHERE a=3875; UPDATE t2 SET c='six thousand five hundred ten' WHERE a=3876; UPDATE t2 SET c='eighty-two thousand three hundred fifty-seven' WHERE a=3877; UPDATE t2 SET c='fifty-two thousand eight hundred thirty-nine' WHERE a=3878; UPDATE t2 SET c='forty-seven thousand nine hundred eighteen' WHERE a=3879; UPDATE t2 SET c='seventy thousand seven hundred ninety-seven' WHERE a=3880; UPDATE t2 SET c='ninety-five thousand three hundred eighty-seven' WHERE a=3881; UPDATE t2 SET c='thirty-eight thousand eight hundred twenty' WHERE a=3882; UPDATE t2 SET c='ninety-nine thousand seven hundred thirty' WHERE a=3883; UPDATE t2 SET c='ninety thousand four hundred thirteen' WHERE a=3884; UPDATE t2 SET c='forty-eight thousand nine hundred forty-two' WHERE a=3885; UPDATE t2 SET c='fifty-four thousand four hundred seventy' WHERE a=3886; UPDATE t2 SET c='fifty-three thousand seven hundred ninety-eight' WHERE a=3887; UPDATE t2 SET c='fifty-five thousand three hundred forty-five' WHERE a=3888; UPDATE t2 SET c='sixty-eight thousand eight hundred four' WHERE a=3889; UPDATE t2 SET c='seventy-eight thousand four hundred forty-nine' WHERE a=3890; UPDATE t2 SET c='fifty-one thousand nine hundred sixty' WHERE a=3891; UPDATE t2 SET c='seventy-five thousand nine hundred thirty' WHERE a=3892; UPDATE t2 SET c='ninety-three thousand two hundred eighty-four' WHERE a=3893; UPDATE t2 SET c='sixteen thousand four hundred thirty-nine' WHERE a=3894; UPDATE t2 SET c='seven thousand two hundred eighty-two' WHERE a=3895; UPDATE t2 SET c='forty-five thousand seventy-nine' WHERE a=3896; UPDATE t2 SET c='twenty-four thousand two hundred twelve' WHERE a=3897; UPDATE t2 SET c='thirty-seven thousand seventy-six' WHERE a=3898; UPDATE t2 SET c='ninety-six thousand three hundred thirty-six' WHERE a=3899; UPDATE t2 SET c='fifteen thousand one hundred thirty-six' WHERE a=3900; UPDATE t2 SET c='twenty-eight thousand fifty-six' WHERE a=3901; UPDATE t2 SET c='seven thousand four hundred eighty-five' WHERE a=3902; UPDATE t2 SET c='thirty-seven thousand eight hundred forty-four' WHERE a=3903; UPDATE t2 SET c='ninety-two thousand two hundred sixty-five' WHERE a=3904; UPDATE t2 SET c='thirteen thousand seven hundred seventeen' WHERE a=3905; UPDATE t2 SET c='fifty-six thousand seven hundred ninety-eight' WHERE a=3906; UPDATE t2 SET c='fifty thousand six hundred ninety-nine' WHERE a=3907; UPDATE t2 SET c='sixty-four thousand twenty' WHERE a=3908; UPDATE t2 SET c='sixty-seven thousand six hundred fifty-six' WHERE a=3909; UPDATE t2 SET c='seventy-one thousand seven hundred twenty-six' WHERE a=3910; UPDATE t2 SET c='twenty-nine thousand six hundred forty-one' WHERE a=3911; UPDATE t2 SET c='fifty-six thousand nine hundred sixty-four' WHERE a=3912; UPDATE t2 SET c='twenty-eight thousand nine hundred thirty-six' WHERE a=3913; UPDATE t2 SET c='eighty-five thousand five hundred forty-seven' WHERE a=3914; UPDATE t2 SET c='seventy-two thousand forty-seven' WHERE a=3915; UPDATE t2 SET c='thirty-two thousand eight hundred twenty' WHERE a=3916; UPDATE t2 SET c='forty-three thousand four hundred twenty-nine' WHERE a=3917; UPDATE t2 SET c='fifty thousand six hundred twenty-three' WHERE a=3918; UPDATE t2 SET c='fifty-seven thousand three hundred twenty-six' WHERE a=3919; UPDATE t2 SET c='thirty-four thousand one hundred eleven' WHERE a=3920; UPDATE t2 SET c='ninety-one thousand six hundred thirty-five' WHERE a=3921; UPDATE t2 SET c='twelve thousand five hundred thirty-nine' WHERE a=3922; UPDATE t2 SET c='nine thousand five hundred eight' WHERE a=3923; UPDATE t2 SET c='forty-four thousand two hundred ten' WHERE a=3924; UPDATE t2 SET c='thirty-two thousand four hundred nineteen' WHERE a=3925; UPDATE t2 SET c='eighty-four thousand three hundred forty-seven' WHERE a=3926; UPDATE t2 SET c='fifty-one thousand five hundred fourteen' WHERE a=3927; UPDATE t2 SET c='forty-three thousand two hundred seventy-two' WHERE a=3928; UPDATE t2 SET c='fifteen thousand eight hundred ninety-nine' WHERE a=3929; UPDATE t2 SET c='seventy-five thousand two hundred ninety-eight' WHERE a=3930; UPDATE t2 SET c='eighteen thousand seven hundred ninety-five' WHERE a=3931; UPDATE t2 SET c='nineteen thousand three hundred forty-two' WHERE a=3932; UPDATE t2 SET c='nine thousand eight hundred seventy-nine' WHERE a=3933; UPDATE t2 SET c='twenty-seven thousand three hundred sixty' WHERE a=3934; UPDATE t2 SET c='twenty thousand six hundred fifty-three' WHERE a=3935; UPDATE t2 SET c='sixty-eight thousand eight hundred nineteen' WHERE a=3936; UPDATE t2 SET c='ninety-six thousand nine hundred sixty-six' WHERE a=3937; UPDATE t2 SET c='forty-one thousand two hundred seventy-nine' WHERE a=3938; UPDATE t2 SET c='fifteen thousand one hundred fifty-three' WHERE a=3939; UPDATE t2 SET c='sixty-one thousand five hundred five' WHERE a=3940; UPDATE t2 SET c='eighty-five thousand seven hundred thirty-seven' WHERE a=3941; UPDATE t2 SET c='thirty-one thousand four hundred eighty-nine' WHERE a=3942; UPDATE t2 SET c='ninety-nine thousand forty-nine' WHERE a=3943; UPDATE t2 SET c='fifty-one thousand three hundred ninety-two' WHERE a=3944; UPDATE t2 SET c='eighteen thousand sixty-seven' WHERE a=3945; UPDATE t2 SET c='sixty-eight thousand two hundred thirty-six' WHERE a=3946; UPDATE t2 SET c='sixteen thousand four hundred' WHERE a=3947; UPDATE t2 SET c='ten thousand eight hundred twelve' WHERE a=3948; UPDATE t2 SET c='fifty-six thousand four hundred forty-five' WHERE a=3949; UPDATE t2 SET c='eighty-three thousand one hundred fifty-nine' WHERE a=3950; UPDATE t2 SET c='twenty-four thousand one hundred thirty-nine' WHERE a=3951; UPDATE t2 SET c='twenty-one thousand sixteen' WHERE a=3952; UPDATE t2 SET c='ninety-one thousand three hundred eleven' WHERE a=3953; UPDATE t2 SET c='forty-seven thousand six hundred thirty-seven' WHERE a=3954; UPDATE t2 SET c='fifty thousand six hundred twenty-four' WHERE a=3955; UPDATE t2 SET c='seventeen thousand nine hundred ninety-eight' WHERE a=3956; UPDATE t2 SET c='two hundred ten' WHERE a=3957; UPDATE t2 SET c='six thousand three hundred seventy' WHERE a=3958; UPDATE t2 SET c='ninety thousand five hundred twenty-seven' WHERE a=3959; UPDATE t2 SET c='seventy-one thousand six hundred twenty-three' WHERE a=3960; UPDATE t2 SET c='eighty-nine thousand five hundred ninety-six' WHERE a=3961; UPDATE t2 SET c='eighty-one thousand six hundred seventy' WHERE a=3962; UPDATE t2 SET c='sixty-six thousand six hundred eighty-three' WHERE a=3963; UPDATE t2 SET c='sixty-two thousand seven hundred eighty-four' WHERE a=3964; UPDATE t2 SET c='eight thousand seven hundred thirty-six' WHERE a=3965; UPDATE t2 SET c='eighteen thousand five hundred forty-seven' WHERE a=3966; UPDATE t2 SET c='ninety-two thousand eight hundred eighty-nine' WHERE a=3967; UPDATE t2 SET c='eighty-nine thousand nine hundred six' WHERE a=3968; UPDATE t2 SET c='thirty-seven thousand forty-six' WHERE a=3969; UPDATE t2 SET c='seventeen thousand six hundred fifty-one' WHERE a=3970; UPDATE t2 SET c='ninety-five thousand seven hundred thirty-five' WHERE a=3971; UPDATE t2 SET c='fifty-eight thousand two hundred seven' WHERE a=3972; UPDATE t2 SET c='seventy-five thousand one hundred seventy-three' WHERE a=3973; UPDATE t2 SET c='seventy-two thousand six hundred seventy-one' WHERE a=3974; UPDATE t2 SET c='seventy-nine thousand one hundred eighty-three' WHERE a=3975; UPDATE t2 SET c='eighty-eight thousand five hundred forty-seven' WHERE a=3976; UPDATE t2 SET c='forty-eight thousand seven hundred thirty-nine' WHERE a=3977; UPDATE t2 SET c='seventy-nine thousand sixty-five' WHERE a=3978; UPDATE t2 SET c='fourteen thousand four hundred three' WHERE a=3979; UPDATE t2 SET c='thirty-six thousand six hundred forty-two' WHERE a=3980; UPDATE t2 SET c='eighty-nine thousand two hundred eighty-two' WHERE a=3981; UPDATE t2 SET c='thirty-seven thousand nine hundred eighty-two' WHERE a=3982; UPDATE t2 SET c='forty-seven thousand seven hundred sixty-nine' WHERE a=3983; UPDATE t2 SET c='seventy-four thousand three hundred seventy' WHERE a=3984; UPDATE t2 SET c='ninety-nine thousand two hundred seventy-eight' WHERE a=3985; UPDATE t2 SET c='forty-three thousand seven hundred twenty' WHERE a=3986; UPDATE t2 SET c='thirty-four thousand three hundred thirty-six' WHERE a=3987; UPDATE t2 SET c='fifty-five thousand three hundred sixty-two' WHERE a=3988; UPDATE t2 SET c='twenty-six thousand three hundred eighty-five' WHERE a=3989; UPDATE t2 SET c='twenty-one thousand seven hundred seventy' WHERE a=3990; UPDATE t2 SET c='eleven thousand sixty-four' WHERE a=3991; UPDATE t2 SET c='fifty thousand three hundred ninety-three' WHERE a=3992; UPDATE t2 SET c='eighty-one thousand three hundred thirty-two' WHERE a=3993; UPDATE t2 SET c='thirteen thousand three hundred sixty-nine' WHERE a=3994; UPDATE t2 SET c='ninety-seven thousand forty-five' WHERE a=3995; UPDATE t2 SET c='fifty-two thousand three hundred eight' WHERE a=3996; UPDATE t2 SET c='twenty-seven thousand eight hundred six' WHERE a=3997; UPDATE t2 SET c='seventy-five thousand one hundred fifteen' WHERE a=3998; UPDATE t2 SET c='eighty-three thousand four hundred forty-two' WHERE a=3999; UPDATE t2 SET c='twenty-eight thousand six hundred twenty-seven' WHERE a=4000; UPDATE t2 SET c='thirty-six thousand five hundred twenty-three' WHERE a=4001; UPDATE t2 SET c='twenty-five thousand seventy-six' WHERE a=4002; UPDATE t2 SET c='fifty-one thousand eight hundred fifty-three' WHERE a=4003; UPDATE t2 SET c='twenty-one thousand seven hundred twenty-six' WHERE a=4004; UPDATE t2 SET c='eighty-nine thousand eight hundred eighty-nine' WHERE a=4005; UPDATE t2 SET c='eighty-eight thousand six hundred eighty-eight' WHERE a=4006; UPDATE t2 SET c='twenty-four thousand one hundred thirty-one' WHERE a=4007; UPDATE t2 SET c='seventeen thousand two hundred eleven' WHERE a=4008; UPDATE t2 SET c='fifty-three thousand eight hundred thirty-three' WHERE a=4009; UPDATE t2 SET c='seventy-nine thousand seven hundred thirty-six' WHERE a=4010; UPDATE t2 SET c='ten thousand seven hundred forty-six' WHERE a=4011; UPDATE t2 SET c='nine thousand seven hundred fifty-three' WHERE a=4012; UPDATE t2 SET c='ninety-five thousand one hundred eighty-one' WHERE a=4013; UPDATE t2 SET c='twenty thousand four hundred twenty-two' WHERE a=4014; UPDATE t2 SET c='forty-two thousand five hundred eighty-one' WHERE a=4015; UPDATE t2 SET c='ninety-nine thousand six hundred forty-three' WHERE a=4016; UPDATE t2 SET c='twenty thousand two hundred forty-nine' WHERE a=4017; UPDATE t2 SET c='seventy-five thousand three hundred forty-four' WHERE a=4018; UPDATE t2 SET c='fifteen thousand five hundred thirty-three' WHERE a=4019; UPDATE t2 SET c='forty-nine thousand one hundred ninety-seven' WHERE a=4020; UPDATE t2 SET c='sixty-three thousand seven hundred fifty-nine' WHERE a=4021; UPDATE t2 SET c='ninety-four thousand three hundred nineteen' WHERE a=4022; UPDATE t2 SET c='eighty-six thousand four hundred sixty-seven' WHERE a=4023; UPDATE t2 SET c='sixty-nine thousand two hundred six' WHERE a=4024; UPDATE t2 SET c='fifty-seven thousand two hundred nineteen' WHERE a=4025; UPDATE t2 SET c='thirteen thousand two hundred eighty-four' WHERE a=4026; UPDATE t2 SET c='ninety-eight thousand one hundred forty-eight' WHERE a=4027; UPDATE t2 SET c='seventy-five thousand ninety-five' WHERE a=4028; UPDATE t2 SET c='thirteen thousand four hundred fifty' WHERE a=4029; UPDATE t2 SET c='fifty-four thousand three hundred three' WHERE a=4030; UPDATE t2 SET c='eighty-one thousand seventy-nine' WHERE a=4031; UPDATE t2 SET c='eighty thousand one hundred six' WHERE a=4032; UPDATE t2 SET c='seven thousand four hundred fifty' WHERE a=4033; UPDATE t2 SET c='forty-three thousand one hundred fourteen' WHERE a=4034; UPDATE t2 SET c='fifteen thousand seven hundred eighty-eight' WHERE a=4035; UPDATE t2 SET c='fifty-nine thousand three hundred fifty' WHERE a=4036; UPDATE t2 SET c='twenty thousand one hundred one' WHERE a=4037; UPDATE t2 SET c='eighty-eight thousand one hundred forty-nine' WHERE a=4038; UPDATE t2 SET c='fifty-four thousand eight hundred forty-seven' WHERE a=4039; UPDATE t2 SET c='thirty-eight thousand nine hundred thirty-five' WHERE a=4040; UPDATE t2 SET c='twenty-eight' WHERE a=4041; UPDATE t2 SET c='eighteen thousand seven hundred seven' WHERE a=4042; UPDATE t2 SET c='thirty-one thousand two hundred forty-two' WHERE a=4043; UPDATE t2 SET c='five thousand three hundred ten' WHERE a=4044; UPDATE t2 SET c='thirty-three thousand five hundred ninety-four' WHERE a=4045; UPDATE t2 SET c='forty-one thousand two hundred nine' WHERE a=4046; UPDATE t2 SET c='three thousand four hundred sixty-six' WHERE a=4047; UPDATE t2 SET c='seventy-eight thousand seven hundred nine' WHERE a=4048; UPDATE t2 SET c='twenty-three thousand seven hundred six' WHERE a=4049; UPDATE t2 SET c='ninety thousand nine hundred thirty-two' WHERE a=4050; UPDATE t2 SET c='twelve thousand six hundred three' WHERE a=4051; UPDATE t2 SET c='forty-three thousand one' WHERE a=4052; UPDATE t2 SET c='forty thousand two hundred ninety' WHERE a=4053; UPDATE t2 SET c='thirty-three thousand seven hundred eighteen' WHERE a=4054; UPDATE t2 SET c='twenty-nine thousand one hundred seventy-eight' WHERE a=4055; UPDATE t2 SET c='forty thousand nine hundred thirty-five' WHERE a=4056; UPDATE t2 SET c='forty-two thousand four hundred thirty-one' WHERE a=4057; UPDATE t2 SET c='forty-four thousand two hundred fifty' WHERE a=4058; UPDATE t2 SET c='seventy-three thousand three hundred sixty-two' WHERE a=4059; UPDATE t2 SET c='fourteen thousand two hundred thirty-one' WHERE a=4060; UPDATE t2 SET c='eighty-two thousand three hundred seventy-three' WHERE a=4061; UPDATE t2 SET c='sixty thousand nine hundred thirty-one' WHERE a=4062; UPDATE t2 SET c='fifty-eight thousand seven hundred sixty-seven' WHERE a=4063; UPDATE t2 SET c='forty-nine thousand three hundred ninety-four' WHERE a=4064; UPDATE t2 SET c='fifty thousand nine hundred three' WHERE a=4065; UPDATE t2 SET c='ninety thousand seven hundred thirty' WHERE a=4066; UPDATE t2 SET c='forty-one thousand one hundred sixty-nine' WHERE a=4067; UPDATE t2 SET c='twenty-four thousand ninety-six' WHERE a=4068; UPDATE t2 SET c='sixty-five thousand three hundred two' WHERE a=4069; UPDATE t2 SET c='eighty thousand six hundred fifty' WHERE a=4070; UPDATE t2 SET c='ninety-eight thousand eight hundred twenty-one' WHERE a=4071; UPDATE t2 SET c='ninety-seven thousand two hundred seventy-three' WHERE a=4072; UPDATE t2 SET c='forty-one thousand six hundred thirty-three' WHERE a=4073; UPDATE t2 SET c='ninety thousand three hundred fifty-eight' WHERE a=4074; UPDATE t2 SET c='forty-six thousand one hundred eighty-one' WHERE a=4075; UPDATE t2 SET c='sixty thousand three hundred fifty-three' WHERE a=4076; UPDATE t2 SET c='sixty-five thousand seven hundred twenty-six' WHERE a=4077; UPDATE t2 SET c='ninety-eight thousand one hundred' WHERE a=4078; UPDATE t2 SET c='twenty-five thousand five hundred thirty-three' WHERE a=4079; UPDATE t2 SET c='fifty-seven thousand eighty-four' WHERE a=4080; UPDATE t2 SET c='forty-one thousand two hundred seventy-seven' WHERE a=4081; UPDATE t2 SET c='seventy-seven thousand forty' WHERE a=4082; UPDATE t2 SET c='fifty-two thousand four hundred seventy' WHERE a=4083; UPDATE t2 SET c='eighty-eight thousand five hundred forty-six' WHERE a=4084; UPDATE t2 SET c='forty-two thousand five hundred seventy-three' WHERE a=4085; UPDATE t2 SET c='seventy-four thousand two hundred fifty-seven' WHERE a=4086; UPDATE t2 SET c='one thousand one hundred thirty-one' WHERE a=4087; UPDATE t2 SET c='sixty-one thousand five hundred fifty-five' WHERE a=4088; UPDATE t2 SET c='eighty-three thousand two hundred fifty-three' WHERE a=4089; UPDATE t2 SET c='fifty-six thousand four hundred seventy-one' WHERE a=4090; UPDATE t2 SET c='thirty-seven thousand six hundred forty-four' WHERE a=4091; UPDATE t2 SET c='eighty-three thousand five hundred seventy-three' WHERE a=4092; UPDATE t2 SET c='sixty-nine thousand five hundred seventy-five' WHERE a=4093; UPDATE t2 SET c='fifty-seven thousand nine hundred twenty-seven' WHERE a=4094; UPDATE t2 SET c='eighty thousand nine hundred six' WHERE a=4095; UPDATE t2 SET c='sixty-one thousand six hundred twenty-seven' WHERE a=4096; UPDATE t2 SET c='fifty-two thousand two hundred eighty-six' WHERE a=4097; UPDATE t2 SET c='fourteen thousand six hundred eighty-six' WHERE a=4098; UPDATE t2 SET c='twenty-three thousand three hundred' WHERE a=4099; UPDATE t2 SET c='forty-four thousand five hundred twenty-seven' WHERE a=4100; UPDATE t2 SET c='forty-six thousand eight hundred sixty-two' WHERE a=4101; UPDATE t2 SET c='sixty-six thousand nine hundred fifty-eight' WHERE a=4102; UPDATE t2 SET c='one thousand three hundred three' WHERE a=4103; UPDATE t2 SET c='fifty-three thousand seven hundred ninety-one' WHERE a=4104; UPDATE t2 SET c='sixty-eight thousand six hundred ninety-three' WHERE a=4105; UPDATE t2 SET c='three thousand eight hundred seventy-three' WHERE a=4106; UPDATE t2 SET c='four thousand one hundred twenty-nine' WHERE a=4107; UPDATE t2 SET c='eight thousand six hundred sixty-one' WHERE a=4108; UPDATE t2 SET c='ninety-two thousand seven hundred one' WHERE a=4109; UPDATE t2 SET c='sixty-seven thousand six hundred seven' WHERE a=4110; UPDATE t2 SET c='three thousand five hundred twenty-eight' WHERE a=4111; UPDATE t2 SET c='fifty-eight thousand four hundred twenty-six' WHERE a=4112; UPDATE t2 SET c='fourteen thousand three hundred eighty-six' WHERE a=4113; UPDATE t2 SET c='twenty-four thousand six hundred seventy-two' WHERE a=4114; UPDATE t2 SET c='thirteen thousand seven hundred forty-three' WHERE a=4115; UPDATE t2 SET c='seventeen thousand three hundred thirty-eight' WHERE a=4116; UPDATE t2 SET c='nineteen thousand two hundred sixty-eight' WHERE a=4117; UPDATE t2 SET c='sixty-four thousand three hundred seventy-nine' WHERE a=4118; UPDATE t2 SET c='eight thousand three hundred fifty' WHERE a=4119; UPDATE t2 SET c='seventy-five thousand one hundred sixty-eight' WHERE a=4120; UPDATE t2 SET c='fourteen thousand five hundred twenty-six' WHERE a=4121; UPDATE t2 SET c='eighty-nine thousand two hundred nineteen' WHERE a=4122; UPDATE t2 SET c='seventy-three thousand four hundred seven' WHERE a=4123; UPDATE t2 SET c='thirty-six thousand nine hundred seventy-six' WHERE a=4124; UPDATE t2 SET c='ninety-four thousand three hundred eighty-four' WHERE a=4125; UPDATE t2 SET c='forty-five thousand nine hundred ninety-three' WHERE a=4126; UPDATE t2 SET c='twenty-one thousand four hundred thirty-two' WHERE a=4127; UPDATE t2 SET c='twenty-three thousand two hundred thirty-one' WHERE a=4128; UPDATE t2 SET c='three hundred ninety-five' WHERE a=4129; UPDATE t2 SET c='forty-three thousand one hundred thirty-two' WHERE a=4130; UPDATE t2 SET c='three thousand two hundred ninety-eight' WHERE a=4131; UPDATE t2 SET c='sixty-seven thousand seventy-seven' WHERE a=4132; UPDATE t2 SET c='twenty-three thousand nine hundred fifty-four' WHERE a=4133; UPDATE t2 SET c='sixty-nine thousand three hundred seventy-five' WHERE a=4134; UPDATE t2 SET c='eighty-four thousand three hundred sixty-five' WHERE a=4135; UPDATE t2 SET c='sixty-five thousand seven hundred forty-six' WHERE a=4136; UPDATE t2 SET c='seventy thousand seven hundred nine' WHERE a=4137; UPDATE t2 SET c='fifty-five thousand seven hundred eleven' WHERE a=4138; UPDATE t2 SET c='fifteen thousand six hundred fifty-two' WHERE a=4139; UPDATE t2 SET c='six thousand two hundred thirty-three' WHERE a=4140; UPDATE t2 SET c='fifty-six thousand seven hundred seventy-five' WHERE a=4141; UPDATE t2 SET c='twenty-four thousand thirty-one' WHERE a=4142; UPDATE t2 SET c='twenty-four thousand three hundred ninety-eight' WHERE a=4143; UPDATE t2 SET c='seventy-six thousand one hundred eighty-seven' WHERE a=4144; UPDATE t2 SET c='sixty-two thousand six hundred fifty-six' WHERE a=4145; UPDATE t2 SET c='ninety-three thousand three hundred eighty-two' WHERE a=4146; UPDATE t2 SET c='fifty-one thousand one hundred eighty-nine' WHERE a=4147; UPDATE t2 SET c='forty-six thousand two hundred three' WHERE a=4148; UPDATE t2 SET c='forty-four thousand four hundred forty-two' WHERE a=4149; UPDATE t2 SET c='thirty-seven thousand three hundred fifty-seven' WHERE a=4150; UPDATE t2 SET c='sixty-eight thousand two hundred ninety-two' WHERE a=4151; UPDATE t2 SET c='forty-one thousand six hundred eighty-nine' WHERE a=4152; UPDATE t2 SET c='three thousand one hundred seventy-eight' WHERE a=4153; UPDATE t2 SET c='four thousand ninety-nine' WHERE a=4154; UPDATE t2 SET c='fifty-two thousand four hundred sixty-nine' WHERE a=4155; UPDATE t2 SET c='sixty-three thousand five hundred fifteen' WHERE a=4156; UPDATE t2 SET c='forty-two thousand five hundred sixty' WHERE a=4157; UPDATE t2 SET c='seventy-two thousand two hundred five' WHERE a=4158; UPDATE t2 SET c='sixty-nine thousand two hundred forty-seven' WHERE a=4159; UPDATE t2 SET c='fifty-three thousand four hundred sixty-four' WHERE a=4160; UPDATE t2 SET c='seventy-seven thousand four hundred fifty-nine' WHERE a=4161; UPDATE t2 SET c='seven hundred sixty-five' WHERE a=4162; UPDATE t2 SET c='sixty-three thousand eight hundred eighteen' WHERE a=4163; UPDATE t2 SET c='forty-seven thousand one hundred fifty-two' WHERE a=4164; UPDATE t2 SET c='twenty-four thousand three hundred eight' WHERE a=4165; UPDATE t2 SET c='forty-one thousand six hundred eighty-nine' WHERE a=4166; UPDATE t2 SET c='seventy-one thousand six hundred five' WHERE a=4167; UPDATE t2 SET c='forty-four thousand sixty-one' WHERE a=4168; UPDATE t2 SET c='twenty-four thousand six hundred thirty-eight' WHERE a=4169; UPDATE t2 SET c='twenty-six thousand one hundred fifty-six' WHERE a=4170; UPDATE t2 SET c='ninety-nine thousand eight hundred twenty-two' WHERE a=4171; UPDATE t2 SET c='one thousand six hundred fifty-eight' WHERE a=4172; UPDATE t2 SET c='eighty-three thousand three hundred forty-one' WHERE a=4173; UPDATE t2 SET c='sixty-two thousand six hundred forty-three' WHERE a=4174; UPDATE t2 SET c='fifty-one thousand four hundred seventy-one' WHERE a=4175; UPDATE t2 SET c='forty-three thousand three hundred twenty-four' WHERE a=4176; UPDATE t2 SET c='ninety-six thousand two hundred five' WHERE a=4177; UPDATE t2 SET c='seventy-one thousand three hundred eighty-three' WHERE a=4178; UPDATE t2 SET c='sixty-six thousand three hundred twenty-four' WHERE a=4179; UPDATE t2 SET c='eighty-two thousand three hundred thirty-eight' WHERE a=4180; UPDATE t2 SET c='fifty-three thousand thirty-seven' WHERE a=4181; UPDATE t2 SET c='fifty-nine thousand nine hundred fifty-nine' WHERE a=4182; UPDATE t2 SET c='ninety-seven thousand six hundred seventy-four' WHERE a=4183; UPDATE t2 SET c='thirty-five thousand five hundred thirty-one' WHERE a=4184; UPDATE t2 SET c='ninety-two thousand nine hundred forty-one' WHERE a=4185; UPDATE t2 SET c='ninety-six thousand five hundred seventy' WHERE a=4186; UPDATE t2 SET c='six thousand seven' WHERE a=4187; UPDATE t2 SET c='twenty-one thousand one hundred eleven' WHERE a=4188; UPDATE t2 SET c='thirty-nine thousand eight hundred fifty-five' WHERE a=4189; UPDATE t2 SET c='fifty-four thousand eight hundred seventy-one' WHERE a=4190; UPDATE t2 SET c='thirty-three thousand five hundred eighty-nine' WHERE a=4191; UPDATE t2 SET c='ninety thousand three hundred twenty-nine' WHERE a=4192; UPDATE t2 SET c='seventy thousand four hundred eighty' WHERE a=4193; UPDATE t2 SET c='fifty-two thousand six hundred six' WHERE a=4194; UPDATE t2 SET c='six thousand two hundred seventy-six' WHERE a=4195; UPDATE t2 SET c='sixty-two thousand two hundred fifty' WHERE a=4196; UPDATE t2 SET c='thirty-seven thousand seven hundred' WHERE a=4197; UPDATE t2 SET c='ten thousand nine hundred ninety-three' WHERE a=4198; UPDATE t2 SET c='one thousand three hundred two' WHERE a=4199; UPDATE t2 SET c='twenty thousand six hundred twenty' WHERE a=4200; UPDATE t2 SET c='nine hundred twenty-six' WHERE a=4201; UPDATE t2 SET c='fifty thousand one hundred forty-two' WHERE a=4202; UPDATE t2 SET c='thirty-one thousand nineteen' WHERE a=4203; UPDATE t2 SET c='forty-four thousand sixty-five' WHERE a=4204; UPDATE t2 SET c='seventy-seven thousand five hundred thirteen' WHERE a=4205; UPDATE t2 SET c='eighty-three thousand nine hundred forty' WHERE a=4206; UPDATE t2 SET c='six thousand eight hundred eighty-eight' WHERE a=4207; UPDATE t2 SET c='eighty-one thousand one hundred fifty-eight' WHERE a=4208; UPDATE t2 SET c='sixteen thousand five hundred thirty-three' WHERE a=4209; UPDATE t2 SET c='seven thousand five hundred twenty-eight' WHERE a=4210; UPDATE t2 SET c='seventy-three thousand three hundred five' WHERE a=4211; UPDATE t2 SET c='seventy-five thousand six hundred fifty-seven' WHERE a=4212; UPDATE t2 SET c='twenty-two thousand two hundred sixty-one' WHERE a=4213; UPDATE t2 SET c='sixty-one thousand two hundred thirty' WHERE a=4214; UPDATE t2 SET c='eighteen thousand four hundred seventy-one' WHERE a=4215; UPDATE t2 SET c='fifty-three thousand nine hundred sixty-six' WHERE a=4216; UPDATE t2 SET c='twenty-one thousand five hundred ninety-four' WHERE a=4217; UPDATE t2 SET c='seventy-seven thousand five hundred thirty-two' WHERE a=4218; UPDATE t2 SET c='thirty-eight thousand nine hundred twenty-nine' WHERE a=4219; UPDATE t2 SET c='eighty thousand eight hundred forty-six' WHERE a=4220; UPDATE t2 SET c='twenty-eight thousand two hundred sixty-seven' WHERE a=4221; UPDATE t2 SET c='thirty-five thousand one hundred sixty-six' WHERE a=4222; UPDATE t2 SET c='fifty-four thousand five hundred ninety-three' WHERE a=4223; UPDATE t2 SET c='ten thousand six hundred five' WHERE a=4224; UPDATE t2 SET c='sixty-two thousand two hundred thirty-seven' WHERE a=4225; UPDATE t2 SET c='forty-three thousand eight hundred twenty-one' WHERE a=4226; UPDATE t2 SET c='forty-five thousand eight hundred twenty-eight' WHERE a=4227; UPDATE t2 SET c='eighty-eight thousand eight hundred ninety-seven' WHERE a=4228; UPDATE t2 SET c='thirty-nine thousand seven hundred nineteen' WHERE a=4229; UPDATE t2 SET c='forty-two thousand eighty-seven' WHERE a=4230; UPDATE t2 SET c='thirty-three thousand four hundred seventy-two' WHERE a=4231; UPDATE t2 SET c='twenty thousand three hundred seventy-two' WHERE a=4232; UPDATE t2 SET c='thirty-four thousand one hundred forty-four' WHERE a=4233; UPDATE t2 SET c='two thousand eight hundred eleven' WHERE a=4234; UPDATE t2 SET c='sixty-eight thousand six hundred eighty-three' WHERE a=4235; UPDATE t2 SET c='twenty-three thousand seven hundred nine' WHERE a=4236; UPDATE t2 SET c='twelve thousand one hundred sixty-two' WHERE a=4237; UPDATE t2 SET c='fifty-two thousand six hundred sixty-nine' WHERE a=4238; UPDATE t2 SET c='fifty-five thousand three hundred eighty-seven' WHERE a=4239; UPDATE t2 SET c='ninety-nine thousand four hundred five' WHERE a=4240; UPDATE t2 SET c='thirty-eight thousand five hundred fifty-one' WHERE a=4241; UPDATE t2 SET c='two hundred eight' WHERE a=4242; UPDATE t2 SET c='ninety-eight thousand eight hundred ninety-six' WHERE a=4243; UPDATE t2 SET c='thirty-eight thousand eight hundred eleven' WHERE a=4244; UPDATE t2 SET c='fifty-four thousand two hundred eighty-six' WHERE a=4245; UPDATE t2 SET c='sixty-one thousand one hundred seventeen' WHERE a=4246; UPDATE t2 SET c='eighty-one thousand three hundred ninety-nine' WHERE a=4247; UPDATE t2 SET c='fifteen thousand four hundred five' WHERE a=4248; UPDATE t2 SET c='twenty-two thousand seven hundred six' WHERE a=4249; UPDATE t2 SET c='fifty-two thousand five hundred thirty-two' WHERE a=4250; UPDATE t2 SET c='forty-six thousand two hundred thirty-three' WHERE a=4251; UPDATE t2 SET c='eighty-two thousand eight hundred twenty-one' WHERE a=4252; UPDATE t2 SET c='seventy-five thousand nine' WHERE a=4253; UPDATE t2 SET c='sixty-nine thousand seven hundred forty' WHERE a=4254; UPDATE t2 SET c='seventy-three thousand nine hundred twenty-one' WHERE a=4255; UPDATE t2 SET c='thirty-eight thousand nine hundred sixty-seven' WHERE a=4256; UPDATE t2 SET c='thirty-two thousand three hundred eighty-seven' WHERE a=4257; UPDATE t2 SET c='nineteen thousand three hundred ninety-three' WHERE a=4258; UPDATE t2 SET c='eighty-nine thousand six hundred seventy-nine' WHERE a=4259; UPDATE t2 SET c='six hundred forty-five' WHERE a=4260; UPDATE t2 SET c='thirty-six thousand four hundred thirty-six' WHERE a=4261; UPDATE t2 SET c='sixty-two thousand nine hundred seventy-three' WHERE a=4262; UPDATE t2 SET c='sixteen thousand sixty-one' WHERE a=4263; UPDATE t2 SET c='sixty-five thousand five hundred ninety-seven' WHERE a=4264; UPDATE t2 SET c='three thousand seventy' WHERE a=4265; UPDATE t2 SET c='eight thousand three hundred fifty-five' WHERE a=4266; UPDATE t2 SET c='thirty-four thousand nine hundred thirty-seven' WHERE a=4267; UPDATE t2 SET c='forty-one thousand five hundred eighty-eight' WHERE a=4268; UPDATE t2 SET c='seven thousand one hundred forty-three' WHERE a=4269; UPDATE t2 SET c='eighty-four thousand two' WHERE a=4270; UPDATE t2 SET c='fifteen thousand four hundred eighty-six' WHERE a=4271; UPDATE t2 SET c='eighty-two thousand four hundred seventy-six' WHERE a=4272; UPDATE t2 SET c='twenty-three thousand one hundred eighteen' WHERE a=4273; UPDATE t2 SET c='fifty-six thousand eight hundred thirty-seven' WHERE a=4274; UPDATE t2 SET c='thirty thousand six hundred eighty-nine' WHERE a=4275; UPDATE t2 SET c='eighty-one thousand nine hundred eighty-two' WHERE a=4276; UPDATE t2 SET c='eighty-three thousand nine hundred nineteen' WHERE a=4277; UPDATE t2 SET c='sixty thousand two hundred thirty-one' WHERE a=4278; UPDATE t2 SET c='fifty-nine thousand five hundred twenty-two' WHERE a=4279; UPDATE t2 SET c='forty thousand thirty-eight' WHERE a=4280; UPDATE t2 SET c='twenty-eight thousand one hundred twenty' WHERE a=4281; UPDATE t2 SET c='thirty-seven thousand five hundred twenty-seven' WHERE a=4282; UPDATE t2 SET c='ninety-nine thousand five hundred fifty-eight' WHERE a=4283; UPDATE t2 SET c='three thousand seven hundred ninety-three' WHERE a=4284; UPDATE t2 SET c='two thousand four hundred eighty-three' WHERE a=4285; UPDATE t2 SET c='sixteen thousand three hundred seventy-five' WHERE a=4286; UPDATE t2 SET c='sixteen thousand seven hundred eighteen' WHERE a=4287; UPDATE t2 SET c='fifty-seven thousand one hundred thirty-two' WHERE a=4288; UPDATE t2 SET c='forty-three thousand eight hundred seventy-three' WHERE a=4289; UPDATE t2 SET c='eleven thousand eight hundred forty-four' WHERE a=4290; UPDATE t2 SET c='sixty thousand two hundred sixty-eight' WHERE a=4291; UPDATE t2 SET c='ninety-three thousand two hundred seventy-two' WHERE a=4292; UPDATE t2 SET c='forty-eight thousand five hundred seventy-six' WHERE a=4293; UPDATE t2 SET c='seventy-six thousand five hundred ninety-one' WHERE a=4294; UPDATE t2 SET c='seventy-one thousand nine hundred seventy-one' WHERE a=4295; UPDATE t2 SET c='ninety-eight thousand two hundred forty-three' WHERE a=4296; UPDATE t2 SET c='eighteen thousand three hundred fifty-six' WHERE a=4297; UPDATE t2 SET c='forty-seven thousand nine hundred four' WHERE a=4298; UPDATE t2 SET c='fourteen thousand one hundred thirty' WHERE a=4299; UPDATE t2 SET c='seventy-three thousand six hundred twenty-two' WHERE a=4300; UPDATE t2 SET c='ninety-nine thousand eight hundred sixty-eight' WHERE a=4301; UPDATE t2 SET c='eight thousand four hundred twenty-three' WHERE a=4302; UPDATE t2 SET c='seventy-seven thousand five hundred seventy-seven' WHERE a=4303; UPDATE t2 SET c='seventy-eight thousand eight hundred ninety-four' WHERE a=4304; UPDATE t2 SET c='twelve thousand three hundred five' WHERE a=4305; UPDATE t2 SET c='fifty thousand seven hundred eighty-four' WHERE a=4306; UPDATE t2 SET c='seventy thousand seventy-eight' WHERE a=4307; UPDATE t2 SET c='twenty-five thousand two hundred forty' WHERE a=4308; UPDATE t2 SET c='fifty-six thousand eight hundred seventy-four' WHERE a=4309; UPDATE t2 SET c='twenty-nine thousand four hundred twenty-three' WHERE a=4310; UPDATE t2 SET c='eighty-three thousand one hundred sixteen' WHERE a=4311; UPDATE t2 SET c='ninety-four thousand six hundred twenty-eight' WHERE a=4312; UPDATE t2 SET c='thirty-one thousand seven hundred twenty' WHERE a=4313; UPDATE t2 SET c='sixty-eight thousand two hundred seven' WHERE a=4314; UPDATE t2 SET c='fifty-eight thousand three hundred six' WHERE a=4315; UPDATE t2 SET c='twenty-six thousand three hundred eighty-two' WHERE a=4316; UPDATE t2 SET c='eighty-three thousand one hundred seventy-four' WHERE a=4317; UPDATE t2 SET c='fifty-four thousand twenty' WHERE a=4318; UPDATE t2 SET c='ninety-seven thousand five hundred eleven' WHERE a=4319; UPDATE t2 SET c='twelve thousand seven hundred ninety-two' WHERE a=4320; UPDATE t2 SET c='fifty-seven thousand nine hundred twenty-three' WHERE a=4321; UPDATE t2 SET c='nine thousand three hundred eighty-seven' WHERE a=4322; UPDATE t2 SET c='sixty thousand six hundred sixty-two' WHERE a=4323; UPDATE t2 SET c='twenty-three thousand three hundred thirty' WHERE a=4324; UPDATE t2 SET c='ninety-three thousand four hundred thirty-one' WHERE a=4325; UPDATE t2 SET c='twenty-three thousand seven hundred fifty-one' WHERE a=4326; UPDATE t2 SET c='thirty-nine thousand one hundred twenty-seven' WHERE a=4327; UPDATE t2 SET c='ten thousand thirty-six' WHERE a=4328; UPDATE t2 SET c='eighty-five thousand seven hundred eighty-two' WHERE a=4329; UPDATE t2 SET c='fifteen thousand nine hundred seventy' WHERE a=4330; UPDATE t2 SET c='two thousand twenty-one' WHERE a=4331; UPDATE t2 SET c='sixty-five thousand four hundred seventy-two' WHERE a=4332; UPDATE t2 SET c='twelve thousand five hundred fourteen' WHERE a=4333; UPDATE t2 SET c='seventy-two thousand ninety-three' WHERE a=4334; UPDATE t2 SET c='ninety-seven thousand four hundred sixty' WHERE a=4335; UPDATE t2 SET c='sixty-eight thousand five hundred twenty' WHERE a=4336; UPDATE t2 SET c='forty thousand two hundred eighteen' WHERE a=4337; UPDATE t2 SET c='sixteen thousand seven hundred eighty-eight' WHERE a=4338; UPDATE t2 SET c='twenty-two thousand two hundred fifty' WHERE a=4339; UPDATE t2 SET c='eighty-seven thousand seven hundred forty-two' WHERE a=4340; UPDATE t2 SET c='ninety-five thousand twenty' WHERE a=4341; UPDATE t2 SET c='twenty-seven thousand four hundred fifty-seven' WHERE a=4342; UPDATE t2 SET c='sixty-nine thousand eighty-five' WHERE a=4343; UPDATE t2 SET c='five thousand eight hundred twenty-three' WHERE a=4344; UPDATE t2 SET c='ninety-six thousand three hundred twenty-one' WHERE a=4345; UPDATE t2 SET c='fifty-nine thousand nine hundred forty-one' WHERE a=4346; UPDATE t2 SET c='sixty-seven thousand five hundred seventy-three' WHERE a=4347; UPDATE t2 SET c='eight thousand sixty-one' WHERE a=4348; UPDATE t2 SET c='four thousand seventy-nine' WHERE a=4349; UPDATE t2 SET c='ninety-two thousand two hundred seventy-nine' WHERE a=4350; UPDATE t2 SET c='one thousand three hundred fifteen' WHERE a=4351; UPDATE t2 SET c='four hundred twenty-five' WHERE a=4352; UPDATE t2 SET c='eighty-one thousand five hundred seventy-one' WHERE a=4353; UPDATE t2 SET c='forty-three thousand four hundred fifty' WHERE a=4354; UPDATE t2 SET c='thirty-nine thousand one hundred forty-nine' WHERE a=4355; UPDATE t2 SET c='ninety-four thousand eight hundred six' WHERE a=4356; UPDATE t2 SET c='eighty-seven thousand two hundred sixty-seven' WHERE a=4357; UPDATE t2 SET c='seventy-eight thousand twenty-five' WHERE a=4358; UPDATE t2 SET c='ninety-three thousand one hundred twenty-six' WHERE a=4359; UPDATE t2 SET c='ninety-six thousand three hundred thirteen' WHERE a=4360; UPDATE t2 SET c='sixty-three thousand two hundred eighty-one' WHERE a=4361; UPDATE t2 SET c='thirty-two thousand four hundred five' WHERE a=4362; UPDATE t2 SET c='seventy-two thousand fifty-nine' WHERE a=4363; UPDATE t2 SET c='twenty-nine thousand one hundred eleven' WHERE a=4364; UPDATE t2 SET c='forty-four thousand three hundred forty-four' WHERE a=4365; UPDATE t2 SET c='eighty-seven thousand seven hundred thirty-seven' WHERE a=4366; UPDATE t2 SET c='ninety-five thousand seven hundred fifty-four' WHERE a=4367; UPDATE t2 SET c='seventy-nine thousand four hundred ninety-one' WHERE a=4368; UPDATE t2 SET c='thirteen thousand six hundred thirty-two' WHERE a=4369; UPDATE t2 SET c='two thousand nine hundred seventy-five' WHERE a=4370; UPDATE t2 SET c='eighty-six thousand eight hundred twenty' WHERE a=4371; UPDATE t2 SET c='four thousand seven hundred eighty-two' WHERE a=4372; UPDATE t2 SET c='thirty-eight thousand five hundred seventy' WHERE a=4373; UPDATE t2 SET c='seventy-five thousand two hundred eighty-seven' WHERE a=4374; UPDATE t2 SET c='eighty-three thousand eight hundred eighty-five' WHERE a=4375; UPDATE t2 SET c='fifteen thousand seven hundred ninety-three' WHERE a=4376; UPDATE t2 SET c='fifteen thousand five hundred fifteen' WHERE a=4377; UPDATE t2 SET c='thirty-one thousand two hundred twelve' WHERE a=4378; UPDATE t2 SET c='twenty-six thousand seven hundred twenty-one' WHERE a=4379; UPDATE t2 SET c='thirty thousand nine hundred thirteen' WHERE a=4380; UPDATE t2 SET c='thirty-four thousand three hundred nineteen' WHERE a=4381; UPDATE t2 SET c='ninety-two thousand nine hundred sixteen' WHERE a=4382; UPDATE t2 SET c='fifty thousand eight hundred twenty-eight' WHERE a=4383; UPDATE t2 SET c='seventy-six thousand sixty-six' WHERE a=4384; UPDATE t2 SET c='seventeen thousand two hundred seventy-two' WHERE a=4385; UPDATE t2 SET c='one thousand eight hundred fifty-nine' WHERE a=4386; UPDATE t2 SET c='seventy-five thousand four hundred ten' WHERE a=4387; UPDATE t2 SET c='twenty-five thousand forty-one' WHERE a=4388; UPDATE t2 SET c='forty-five thousand seven hundred twenty-one' WHERE a=4389; UPDATE t2 SET c='eight thousand five hundred sixty-three' WHERE a=4390; UPDATE t2 SET c='fifty-four thousand two hundred seventy-three' WHERE a=4391; UPDATE t2 SET c='twenty-five thousand five hundred ninety' WHERE a=4392; UPDATE t2 SET c='fourteen thousand four hundred sixty-two' WHERE a=4393; UPDATE t2 SET c='fifty-two thousand four hundred eighty-one' WHERE a=4394; UPDATE t2 SET c='seventy-nine thousand seven hundred eighty-four' WHERE a=4395; UPDATE t2 SET c='twenty-one thousand two hundred seventy' WHERE a=4396; UPDATE t2 SET c='ninety-three thousand six hundred fifteen' WHERE a=4397; UPDATE t2 SET c='fifty thousand one hundred sixty' WHERE a=4398; UPDATE t2 SET c='five thousand two hundred fifty-one' WHERE a=4399; UPDATE t2 SET c='one thousand one hundred ninety-six' WHERE a=4400; UPDATE t2 SET c='seventy-five thousand ninety' WHERE a=4401; UPDATE t2 SET c='thirty-six thousand three hundred thirty-one' WHERE a=4402; UPDATE t2 SET c='eighty-one thousand one hundred twenty-four' WHERE a=4403; UPDATE t2 SET c='twenty-eight thousand twenty-four' WHERE a=4404; UPDATE t2 SET c='eighty thousand seven hundred eighty-four' WHERE a=4405; UPDATE t2 SET c='thirty-eight thousand eight hundred thirty-four' WHERE a=4406; UPDATE t2 SET c='one thousand one hundred nine' WHERE a=4407; UPDATE t2 SET c='five thousand two hundred thirty-nine' WHERE a=4408; UPDATE t2 SET c='eighty-seven thousand one hundred forty-eight' WHERE a=4409; UPDATE t2 SET c='thirteen thousand one hundred ninety-nine' WHERE a=4410; UPDATE t2 SET c='twenty-two thousand five hundred forty-seven' WHERE a=4411; UPDATE t2 SET c='twenty-three thousand seven hundred fifty-eight' WHERE a=4412; UPDATE t2 SET c='sixty-seven thousand four hundred thirty-eight' WHERE a=4413; UPDATE t2 SET c='thirty-nine thousand eight hundred sixty-one' WHERE a=4414; UPDATE t2 SET c='twenty-five thousand four hundred seventeen' WHERE a=4415; UPDATE t2 SET c='forty-seven thousand four hundred fifty-four' WHERE a=4416; UPDATE t2 SET c='six thousand three hundred eighty-nine' WHERE a=4417; UPDATE t2 SET c='fifteen thousand four hundred ninety-three' WHERE a=4418; UPDATE t2 SET c='fifty-six thousand nine hundred seventy-five' WHERE a=4419; UPDATE t2 SET c='seventy thousand eight hundred forty-three' WHERE a=4420; UPDATE t2 SET c='thirty-six thousand two hundred ninety-one' WHERE a=4421; UPDATE t2 SET c='eighty-eight thousand two hundred three' WHERE a=4422; UPDATE t2 SET c='ten thousand two hundred forty-five' WHERE a=4423; UPDATE t2 SET c='eighty-five thousand nine hundred forty-one' WHERE a=4424; UPDATE t2 SET c='fifty-seven thousand thirty-one' WHERE a=4425; UPDATE t2 SET c='seventy-one thousand two hundred eighty-one' WHERE a=4426; UPDATE t2 SET c='fifty-eight thousand eight hundred twenty-two' WHERE a=4427; UPDATE t2 SET c='forty thousand three hundred thirty-nine' WHERE a=4428; UPDATE t2 SET c='one thousand six hundred sixty-two' WHERE a=4429; UPDATE t2 SET c='eighty-five thousand three hundred ninety-nine' WHERE a=4430; UPDATE t2 SET c='sixteen thousand nine hundred thirty-nine' WHERE a=4431; UPDATE t2 SET c='thirty-two thousand four hundred seventy-one' WHERE a=4432; UPDATE t2 SET c='ninety-nine thousand three hundred thirty-six' WHERE a=4433; UPDATE t2 SET c='twenty-three thousand two hundred two' WHERE a=4434; UPDATE t2 SET c='fifty-two thousand four hundred fifty-two' WHERE a=4435; UPDATE t2 SET c='seventy-nine thousand seven hundred seventy-three' WHERE a=4436; UPDATE t2 SET c='fifty-one thousand three hundred sixty-seven' WHERE a=4437; UPDATE t2 SET c='five thousand six hundred eighty-four' WHERE a=4438; UPDATE t2 SET c='thirty-one thousand three hundred ninety-three' WHERE a=4439; UPDATE t2 SET c='sixty-nine thousand seven hundred twenty-five' WHERE a=4440; UPDATE t2 SET c='fifty-seven thousand eight hundred eleven' WHERE a=4441; UPDATE t2 SET c='ninety-four thousand five hundred forty' WHERE a=4442; UPDATE t2 SET c='twenty-one thousand seven hundred eight' WHERE a=4443; UPDATE t2 SET c='nineteen thousand four hundred fifty-three' WHERE a=4444; UPDATE t2 SET c='eighty thousand one hundred forty' WHERE a=4445; UPDATE t2 SET c='forty-two thousand fifteen' WHERE a=4446; UPDATE t2 SET c='forty thousand two hundred forty-seven' WHERE a=4447; UPDATE t2 SET c='three thousand four hundred sixty-three' WHERE a=4448; UPDATE t2 SET c='forty-three thousand five hundred' WHERE a=4449; UPDATE t2 SET c='thirty-five thousand nine hundred thirty-four' WHERE a=4450; UPDATE t2 SET c='eighty-five thousand nine hundred seventy-two' WHERE a=4451; UPDATE t2 SET c='eleven thousand eight hundred fifty-seven' WHERE a=4452; UPDATE t2 SET c='eighty-four thousand five hundred ninety-two' WHERE a=4453; UPDATE t2 SET c='thirty-three thousand eight hundred twenty-nine' WHERE a=4454; UPDATE t2 SET c='sixty-eight thousand sixty-eight' WHERE a=4455; UPDATE t2 SET c='seventy-one thousand nine hundred eighty-three' WHERE a=4456; UPDATE t2 SET c='forty-seven thousand eight hundred forty-two' WHERE a=4457; UPDATE t2 SET c='sixteen thousand three hundred eighty-six' WHERE a=4458; UPDATE t2 SET c='thirty-nine thousand five hundred forty-seven' WHERE a=4459; UPDATE t2 SET c='fifteen thousand four hundred eighty-eight' WHERE a=4460; UPDATE t2 SET c='eighty-seven thousand one hundred ninety-two' WHERE a=4461; UPDATE t2 SET c='twenty-six thousand eight hundred sixty-one' WHERE a=4462; UPDATE t2 SET c='ninety-two thousand seven hundred twelve' WHERE a=4463; UPDATE t2 SET c='fifty-five thousand three hundred twenty-three' WHERE a=4464; UPDATE t2 SET c='fifty-three thousand six hundred ten' WHERE a=4465; UPDATE t2 SET c='ninety-eight thousand four hundred seventy-four' WHERE a=4466; UPDATE t2 SET c='ninety-three thousand five hundred twenty-one' WHERE a=4467; UPDATE t2 SET c='thirty thousand six hundred forty-eight' WHERE a=4468; UPDATE t2 SET c='eighty-eight thousand thirty-two' WHERE a=4469; UPDATE t2 SET c='fifty-five thousand seven hundred thirty-four' WHERE a=4470; UPDATE t2 SET c='forty-four thousand three hundred eleven' WHERE a=4471; UPDATE t2 SET c='five thousand two hundred seventeen' WHERE a=4472; UPDATE t2 SET c='eleven thousand two hundred thirty-two' WHERE a=4473; UPDATE t2 SET c='eighty-nine thousand two hundred seventy-nine' WHERE a=4474; UPDATE t2 SET c='eighty-two thousand six hundred eight' WHERE a=4475; UPDATE t2 SET c='three thousand six hundred ninety-four' WHERE a=4476; UPDATE t2 SET c='five thousand six hundred forty-one' WHERE a=4477; UPDATE t2 SET c='thirty-five thousand fifty-seven' WHERE a=4478; UPDATE t2 SET c='seventy-five thousand four hundred seventy-eight' WHERE a=4479; UPDATE t2 SET c='nineteen thousand two hundred eighty' WHERE a=4480; UPDATE t2 SET c='six thousand six hundred fifty-nine' WHERE a=4481; UPDATE t2 SET c='sixty-four thousand four hundred one' WHERE a=4482; UPDATE t2 SET c='two thousand four hundred sixty-four' WHERE a=4483; UPDATE t2 SET c='thirty-one thousand eight hundred sixty-eight' WHERE a=4484; UPDATE t2 SET c='nineteen thousand four hundred seventy-nine' WHERE a=4485; UPDATE t2 SET c='four thousand seven hundred three' WHERE a=4486; UPDATE t2 SET c='seventy-five thousand seven hundred eight' WHERE a=4487; UPDATE t2 SET c='ninety-five thousand one hundred seven' WHERE a=4488; UPDATE t2 SET c='fifty-five thousand three hundred ninety-three' WHERE a=4489; UPDATE t2 SET c='seven thousand seven hundred thirty' WHERE a=4490; UPDATE t2 SET c='sixteen thousand seven hundred twenty-three' WHERE a=4491; UPDATE t2 SET c='eight hundred fifty-seven' WHERE a=4492; UPDATE t2 SET c='thirty-one thousand four hundred seventeen' WHERE a=4493; UPDATE t2 SET c='ten thousand five hundred eighty-two' WHERE a=4494; UPDATE t2 SET c='fifty-three thousand eight hundred seventy-seven' WHERE a=4495; UPDATE t2 SET c='forty-four thousand six hundred sixty-four' WHERE a=4496; UPDATE t2 SET c='forty-two thousand forty-one' WHERE a=4497; UPDATE t2 SET c='eighty-seven thousand three hundred twenty-nine' WHERE a=4498; UPDATE t2 SET c='eighty-five thousand one hundred fifty-nine' WHERE a=4499; UPDATE t2 SET c='ninety-five thousand one hundred forty-three' WHERE a=4500; UPDATE t2 SET c='ninety-eight thousand three hundred fifty-four' WHERE a=4501; UPDATE t2 SET c='thirty thousand six hundred ninety-seven' WHERE a=4502; UPDATE t2 SET c='two thousand five hundred fifty-three' WHERE a=4503; UPDATE t2 SET c='fifty-nine thousand three hundred thirty-nine' WHERE a=4504; UPDATE t2 SET c='eleven thousand six hundred sixty-six' WHERE a=4505; UPDATE t2 SET c='seventy-nine thousand eight hundred ninety-eight' WHERE a=4506; UPDATE t2 SET c='thirty-two thousand eight hundred seventy-three' WHERE a=4507; UPDATE t2 SET c='eighty-four thousand seven hundred ninety-six' WHERE a=4508; UPDATE t2 SET c='nineteen thousand eight hundred seventy-one' WHERE a=4509; UPDATE t2 SET c='twenty-eight thousand seven hundred seventy-two' WHERE a=4510; UPDATE t2 SET c='thirty-seven thousand fifty-five' WHERE a=4511; UPDATE t2 SET c='fifty-three thousand one hundred twenty-nine' WHERE a=4512; UPDATE t2 SET c='twenty-two thousand eight hundred fourteen' WHERE a=4513; UPDATE t2 SET c='eighty thousand two hundred fifty-five' WHERE a=4514; UPDATE t2 SET c='eleven thousand nine hundred seventy-two' WHERE a=4515; UPDATE t2 SET c='fifty thousand one hundred thirty-nine' WHERE a=4516; UPDATE t2 SET c='twenty-five thousand five hundred ninety-eight' WHERE a=4517; UPDATE t2 SET c='seventy thousand two hundred eighty-four' WHERE a=4518; UPDATE t2 SET c='four thousand one hundred eighty-one' WHERE a=4519; UPDATE t2 SET c='thirty-three thousand four hundred nine' WHERE a=4520; UPDATE t2 SET c='sixty-six thousand eight hundred forty-one' WHERE a=4521; UPDATE t2 SET c='seventy-four thousand six hundred fifty-one' WHERE a=4522; UPDATE t2 SET c='sixty-seven thousand four hundred eleven' WHERE a=4523; UPDATE t2 SET c='sixty-six thousand seven hundred ninety-eight' WHERE a=4524; UPDATE t2 SET c='seventy-one thousand six hundred fifty-seven' WHERE a=4525; UPDATE t2 SET c='seventy-six thousand two hundred two' WHERE a=4526; UPDATE t2 SET c='seventy-nine thousand three hundred sixty' WHERE a=4527; UPDATE t2 SET c='twelve thousand four hundred thirty-five' WHERE a=4528; UPDATE t2 SET c='fifty-four thousand one hundred eighty' WHERE a=4529; UPDATE t2 SET c='forty thousand eight hundred seventy-five' WHERE a=4530; UPDATE t2 SET c='ninety-nine thousand nine hundred sixty-four' WHERE a=4531; UPDATE t2 SET c='sixteen thousand four hundred eighty-three' WHERE a=4532; UPDATE t2 SET c='fifty-five thousand four hundred eight' WHERE a=4533; UPDATE t2 SET c='thirty-nine thousand seventy-one' WHERE a=4534; UPDATE t2 SET c='fifty-nine thousand six hundred eighty-nine' WHERE a=4535; UPDATE t2 SET c='eighty-four thousand eight hundred twenty-three' WHERE a=4536; UPDATE t2 SET c='seventy-two thousand four hundred four' WHERE a=4537; UPDATE t2 SET c='two hundred seventy-one' WHERE a=4538; UPDATE t2 SET c='sixty thousand eight hundred fourteen' WHERE a=4539; UPDATE t2 SET c='ninety-two thousand three hundred ninety-two' WHERE a=4540; UPDATE t2 SET c='forty-five thousand one hundred two' WHERE a=4541; UPDATE t2 SET c='nine thousand seven hundred four' WHERE a=4542; UPDATE t2 SET c='eighty-two thousand thirty-nine' WHERE a=4543; UPDATE t2 SET c='forty thousand four hundred ninety-nine' WHERE a=4544; UPDATE t2 SET c='forty-seven thousand one hundred twenty-five' WHERE a=4545; UPDATE t2 SET c='forty-one thousand nine hundred two' WHERE a=4546; UPDATE t2 SET c='forty-one thousand two hundred seventy-five' WHERE a=4547; UPDATE t2 SET c='six hundred seventy-two' WHERE a=4548; UPDATE t2 SET c='eleven thousand four hundred fifty-four' WHERE a=4549; UPDATE t2 SET c='thirteen thousand fifty-eight' WHERE a=4550; UPDATE t2 SET c='eighty-one thousand four hundred fifty-nine' WHERE a=4551; UPDATE t2 SET c='forty-six thousand seven hundred four' WHERE a=4552; UPDATE t2 SET c='eighty-five thousand four hundred seventy-one' WHERE a=4553; UPDATE t2 SET c='fifty-three thousand four hundred fifty-seven' WHERE a=4554; UPDATE t2 SET c='thirty thousand five hundred one' WHERE a=4555; UPDATE t2 SET c='fifty-four thousand forty-one' WHERE a=4556; UPDATE t2 SET c='sixty-eight thousand five hundred sixty-nine' WHERE a=4557; UPDATE t2 SET c='nine thousand seventy-seven' WHERE a=4558; UPDATE t2 SET c='one thousand two hundred sixty-nine' WHERE a=4559; UPDATE t2 SET c='sixty-three thousand nine hundred forty-six' WHERE a=4560; UPDATE t2 SET c='sixteen thousand one hundred ninety-four' WHERE a=4561; UPDATE t2 SET c='thirty-one thousand two hundred seventy-one' WHERE a=4562; UPDATE t2 SET c='sixty thousand six hundred seventy-two' WHERE a=4563; UPDATE t2 SET c='twenty-two thousand two hundred thirty-six' WHERE a=4564; UPDATE t2 SET c='thirty-four thousand five hundred four' WHERE a=4565; UPDATE t2 SET c='ninety-four thousand two hundred five' WHERE a=4566; UPDATE t2 SET c='sixty-eight thousand eight hundred forty-four' WHERE a=4567; UPDATE t2 SET c='two thousand eighty-three' WHERE a=4568; UPDATE t2 SET c='sixty-eight thousand one hundred eleven' WHERE a=4569; UPDATE t2 SET c='sixty-five thousand three hundred eleven' WHERE a=4570; UPDATE t2 SET c='twenty-five thousand five hundred forty-seven' WHERE a=4571; UPDATE t2 SET c='five thousand nine hundred ninety-nine' WHERE a=4572; UPDATE t2 SET c='thirty-five thousand eight hundred nineteen' WHERE a=4573; UPDATE t2 SET c='forty-seven thousand eight hundred ninety' WHERE a=4574; UPDATE t2 SET c='thirty-seven thousand three hundred seventy' WHERE a=4575; UPDATE t2 SET c='seven thousand one hundred fifty-four' WHERE a=4576; UPDATE t2 SET c='ninety-one thousand nine hundred three' WHERE a=4577; UPDATE t2 SET c='fifteen thousand seven hundred fifty-five' WHERE a=4578; UPDATE t2 SET c='seventy-four thousand seven hundred seventy-seven' WHERE a=4579; UPDATE t2 SET c='seventy-four thousand nine hundred thirty-nine' WHERE a=4580; UPDATE t2 SET c='seventy-two thousand eight hundred fifty-six' WHERE a=4581; UPDATE t2 SET c='seventeen thousand nine hundred seven' WHERE a=4582; UPDATE t2 SET c='seven thousand six hundred nine' WHERE a=4583; UPDATE t2 SET c='eighty-two thousand one hundred eight' WHERE a=4584; UPDATE t2 SET c='sixteen thousand six hundred eighty-eight' WHERE a=4585; UPDATE t2 SET c='fifty-seven thousand forty-nine' WHERE a=4586; UPDATE t2 SET c='seventy-eight thousand one hundred fifty' WHERE a=4587; UPDATE t2 SET c='thirty thousand three hundred fifteen' WHERE a=4588; UPDATE t2 SET c='twenty-eight thousand eight hundred thirty-six' WHERE a=4589; UPDATE t2 SET c='fourteen thousand four hundred nine' WHERE a=4590; UPDATE t2 SET c='fifty-three thousand six hundred thirty-six' WHERE a=4591; UPDATE t2 SET c='seventy-two thousand nineteen' WHERE a=4592; UPDATE t2 SET c='twenty-five thousand five hundred sixty-seven' WHERE a=4593; UPDATE t2 SET c='forty-four thousand sixty-nine' WHERE a=4594; UPDATE t2 SET c='seventeen thousand one hundred thirty-eight' WHERE a=4595; UPDATE t2 SET c='fifty-six thousand one hundred ninety-eight' WHERE a=4596; UPDATE t2 SET c='ninety-five thousand four hundred sixty-one' WHERE a=4597; UPDATE t2 SET c='fifty-nine thousand eight hundred nineteen' WHERE a=4598; UPDATE t2 SET c='twenty-five thousand five hundred nineteen' WHERE a=4599; UPDATE t2 SET c='forty-three thousand seven hundred fifty-nine' WHERE a=4600; UPDATE t2 SET c='six thousand eight hundred fifty-two' WHERE a=4601; UPDATE t2 SET c='forty-four thousand fifty-one' WHERE a=4602; UPDATE t2 SET c='twenty-two thousand nine hundred twenty-four' WHERE a=4603; UPDATE t2 SET c='fifty-two thousand ninety-six' WHERE a=4604; UPDATE t2 SET c='eighty thousand eight hundred ten' WHERE a=4605; UPDATE t2 SET c='fifteen thousand four hundred eighty-three' WHERE a=4606; UPDATE t2 SET c='sixty-nine thousand seven hundred sixty-nine' WHERE a=4607; UPDATE t2 SET c='forty-four thousand four hundred sixty-six' WHERE a=4608; UPDATE t2 SET c='thirty-one thousand nine hundred twenty-six' WHERE a=4609; UPDATE t2 SET c='four thousand three hundred twenty-three' WHERE a=4610; UPDATE t2 SET c='seventy-seven thousand one hundred ninety' WHERE a=4611; UPDATE t2 SET c='sixty-three thousand seven hundred fifty-eight' WHERE a=4612; UPDATE t2 SET c='eleven thousand two hundred ninety-eight' WHERE a=4613; UPDATE t2 SET c='thirty-eight thousand two hundred sixty-eight' WHERE a=4614; UPDATE t2 SET c='sixty-three' WHERE a=4615; UPDATE t2 SET c='fifty-six thousand eight hundred sixty-nine' WHERE a=4616; UPDATE t2 SET c='eighty-eight thousand four hundred twenty-five' WHERE a=4617; UPDATE t2 SET c='ninety thousand nine hundred ninety-five' WHERE a=4618; UPDATE t2 SET c='five thousand eight hundred fifty-nine' WHERE a=4619; UPDATE t2 SET c='seventy-three thousand nine hundred fifty-four' WHERE a=4620; UPDATE t2 SET c='eighty-seven thousand seven hundred four' WHERE a=4621; UPDATE t2 SET c='thirty thousand seven hundred seventy-three' WHERE a=4622; UPDATE t2 SET c='ninety thousand eight hundred thirty-eight' WHERE a=4623; UPDATE t2 SET c='twenty-nine thousand six hundred fifty-eight' WHERE a=4624; UPDATE t2 SET c='seventy-five thousand one hundred sixty-four' WHERE a=4625; UPDATE t2 SET c='twenty-three thousand five hundred seventy' WHERE a=4626; UPDATE t2 SET c='eighty-four thousand two hundred thirty-seven' WHERE a=4627; UPDATE t2 SET c='eighty-six thousand seven hundred twenty-three' WHERE a=4628; UPDATE t2 SET c='fifty-one thousand eighty-five' WHERE a=4629; UPDATE t2 SET c='sixty-six thousand nine hundred fifty-two' WHERE a=4630; UPDATE t2 SET c='eighty-seven thousand nine hundred fifty-eight' WHERE a=4631; UPDATE t2 SET c='two thousand seven hundred ninety-four' WHERE a=4632; UPDATE t2 SET c='sixty-four thousand five hundred fifty-eight' WHERE a=4633; UPDATE t2 SET c='forty-eight thousand nine hundred seventy-six' WHERE a=4634; UPDATE t2 SET c='nine thousand two hundred thirty-three' WHERE a=4635; UPDATE t2 SET c='five thousand two hundred forty-three' WHERE a=4636; UPDATE t2 SET c='fifty-two thousand four hundred forty-five' WHERE a=4637; UPDATE t2 SET c='forty thousand five hundred thirty-two' WHERE a=4638; UPDATE t2 SET c='forty-four thousand eight hundred ninety-three' WHERE a=4639; UPDATE t2 SET c='five thousand seven hundred seventeen' WHERE a=4640; UPDATE t2 SET c='ninety-three thousand six hundred fifty-three' WHERE a=4641; UPDATE t2 SET c='six thousand one hundred sixty' WHERE a=4642; UPDATE t2 SET c='six thousand two hundred eighty-seven' WHERE a=4643; UPDATE t2 SET c='ninety-five thousand two hundred seventy-one' WHERE a=4644; UPDATE t2 SET c='eighty-seven thousand five hundred twenty-one' WHERE a=4645; UPDATE t2 SET c='twenty-five thousand eight hundred sixty' WHERE a=4646; UPDATE t2 SET c='ninety thousand four hundred thirty-four' WHERE a=4647; UPDATE t2 SET c='three thousand five hundred forty-one' WHERE a=4648; UPDATE t2 SET c='fifty-one thousand two hundred seventy-five' WHERE a=4649; UPDATE t2 SET c='seventy-five thousand two hundred sixty-four' WHERE a=4650; UPDATE t2 SET c='fifty-two thousand five hundred thirty-one' WHERE a=4651; UPDATE t2 SET c='twenty-one thousand three hundred eighty-six' WHERE a=4652; UPDATE t2 SET c='one thousand eight hundred ninety-six' WHERE a=4653; UPDATE t2 SET c='fifty-nine thousand six hundred thirty-three' WHERE a=4654; UPDATE t2 SET c='eighty-three thousand three hundred fifty-three' WHERE a=4655; UPDATE t2 SET c='four hundred ninety-one' WHERE a=4656; UPDATE t2 SET c='forty-two thousand two hundred ninety-two' WHERE a=4657; UPDATE t2 SET c='sixty-four thousand two hundred fifty-five' WHERE a=4658; UPDATE t2 SET c='sixty thousand nine hundred twelve' WHERE a=4659; UPDATE t2 SET c='twenty-one thousand seven hundred sixteen' WHERE a=4660; UPDATE t2 SET c='ninety-seven thousand five hundred seventy-four' WHERE a=4661; UPDATE t2 SET c='six thousand eight hundred sixty-eight' WHERE a=4662; UPDATE t2 SET c='ten thousand six hundred eighty-eight' WHERE a=4663; UPDATE t2 SET c='eighty-four thousand nine hundred thirty-six' WHERE a=4664; UPDATE t2 SET c='fifty-one thousand fifty-four' WHERE a=4665; UPDATE t2 SET c='seventy thousand six hundred twenty-six' WHERE a=4666; UPDATE t2 SET c='seventeen thousand nine hundred eighty-seven' WHERE a=4667; UPDATE t2 SET c='four thousand two hundred sixty-eight' WHERE a=4668; UPDATE t2 SET c='fifty-seven thousand four hundred ninety-nine' WHERE a=4669; UPDATE t2 SET c='forty thousand nine hundred ninety-seven' WHERE a=4670; UPDATE t2 SET c='thirteen thousand two hundred sixty-eight' WHERE a=4671; UPDATE t2 SET c='thirty thousand seventy-one' WHERE a=4672; UPDATE t2 SET c='seventy-eight thousand one hundred forty-two' WHERE a=4673; UPDATE t2 SET c='ninety-six thousand eight hundred seventy-three' WHERE a=4674; UPDATE t2 SET c='ninety-five thousand four hundred fifty-five' WHERE a=4675; UPDATE t2 SET c='forty-four thousand seven hundred three' WHERE a=4676; UPDATE t2 SET c='eighty-nine thousand eight hundred twenty-three' WHERE a=4677; UPDATE t2 SET c='forty-five thousand six hundred ten' WHERE a=4678; UPDATE t2 SET c='sixty-six thousand fifty-one' WHERE a=4679; UPDATE t2 SET c='sixty-three thousand two hundred ten' WHERE a=4680; UPDATE t2 SET c='eighty-three thousand one hundred ninety-eight' WHERE a=4681; UPDATE t2 SET c='twelve thousand two hundred fifty-five' WHERE a=4682; UPDATE t2 SET c='thirteen thousand sixteen' WHERE a=4683; UPDATE t2 SET c='eight thousand two hundred sixty-six' WHERE a=4684; UPDATE t2 SET c='eight thousand sixty-six' WHERE a=4685; UPDATE t2 SET c='thirty-three thousand four hundred fifty-eight' WHERE a=4686; UPDATE t2 SET c='twenty-two thousand four hundred twelve' WHERE a=4687; UPDATE t2 SET c='eighty-seven thousand sixty-six' WHERE a=4688; UPDATE t2 SET c='eighty-two thousand six hundred twenty-one' WHERE a=4689; UPDATE t2 SET c='eleven thousand seven hundred sixty-five' WHERE a=4690; UPDATE t2 SET c='eighty-five thousand one hundred ninety-five' WHERE a=4691; UPDATE t2 SET c='fifty-four thousand one hundred eighty-five' WHERE a=4692; UPDATE t2 SET c='fifty-three thousand five hundred eighty-five' WHERE a=4693; UPDATE t2 SET c='thirty-two thousand six hundred fifty' WHERE a=4694; UPDATE t2 SET c='thirty-nine thousand one hundred eighty-two' WHERE a=4695; UPDATE t2 SET c='fifty-six thousand six hundred twenty' WHERE a=4696; UPDATE t2 SET c='seventy-seven thousand two hundred sixty-two' WHERE a=4697; UPDATE t2 SET c='eight thousand one hundred ninety-three' WHERE a=4698; UPDATE t2 SET c='forty-three thousand four hundred sixty' WHERE a=4699; UPDATE t2 SET c='forty-seven thousand six hundred seventy-six' WHERE a=4700; UPDATE t2 SET c='seventy-four thousand five hundred eleven' WHERE a=4701; UPDATE t2 SET c='seventy-three thousand eight hundred nine' WHERE a=4702; UPDATE t2 SET c='eight thousand eight hundred twenty-seven' WHERE a=4703; UPDATE t2 SET c='sixty-eight thousand one hundred thirteen' WHERE a=4704; UPDATE t2 SET c='twenty-six thousand one hundred sixty-five' WHERE a=4705; UPDATE t2 SET c='thirty-one thousand five hundred eighty-six' WHERE a=4706; UPDATE t2 SET c='eighty-three thousand three hundred eighteen' WHERE a=4707; UPDATE t2 SET c='sixty thousand eight hundred twenty-seven' WHERE a=4708; UPDATE t2 SET c='ninety-three thousand seven hundred eighty' WHERE a=4709; UPDATE t2 SET c='eight thousand three hundred thirty-one' WHERE a=4710; UPDATE t2 SET c='fifty-six thousand eight hundred five' WHERE a=4711; UPDATE t2 SET c='forty-four thousand eight hundred thirty-six' WHERE a=4712; UPDATE t2 SET c='seventy-two thousand twenty-five' WHERE a=4713; UPDATE t2 SET c='ninety-four thousand one hundred fifty-one' WHERE a=4714; UPDATE t2 SET c='fifty-eight thousand one hundred ninety' WHERE a=4715; UPDATE t2 SET c='twenty-six thousand two hundred eighty-five' WHERE a=4716; UPDATE t2 SET c='thirty-one thousand eight hundred fifty-two' WHERE a=4717; UPDATE t2 SET c='eight thousand three hundred one' WHERE a=4718; UPDATE t2 SET c='seventeen thousand one hundred seventy-five' WHERE a=4719; UPDATE t2 SET c='ninety-four thousand nine hundred eighty-nine' WHERE a=4720; UPDATE t2 SET c='forty-seven thousand two hundred sixteen' WHERE a=4721; UPDATE t2 SET c='seventy thousand seven hundred eighty-three' WHERE a=4722; UPDATE t2 SET c='ten thousand five hundred seventy-one' WHERE a=4723; UPDATE t2 SET c='forty-one thousand four hundred fifty-five' WHERE a=4724; UPDATE t2 SET c='twenty-one thousand six hundred ninety-seven' WHERE a=4725; UPDATE t2 SET c='one thousand one hundred seventy-seven' WHERE a=4726; UPDATE t2 SET c='forty-eight thousand two hundred seventy-seven' WHERE a=4727; UPDATE t2 SET c='ninety-five thousand one hundred thirty-one' WHERE a=4728; UPDATE t2 SET c='eighty-five thousand nine hundred eighty' WHERE a=4729; UPDATE t2 SET c='nineteen thousand eight hundred fourteen' WHERE a=4730; UPDATE t2 SET c='nine hundred nine' WHERE a=4731; UPDATE t2 SET c='ninety-two thousand two hundred forty-four' WHERE a=4732; UPDATE t2 SET c='seventy-six thousand four hundred eighteen' WHERE a=4733; UPDATE t2 SET c='nine thousand eight hundred eighty-five' WHERE a=4734; UPDATE t2 SET c='three thousand one hundred five' WHERE a=4735; UPDATE t2 SET c='seventy-two thousand three hundred seventy-six' WHERE a=4736; UPDATE t2 SET c='fifty-six thousand five hundred eighty-five' WHERE a=4737; UPDATE t2 SET c='fifty-seven thousand nine hundred thirty-five' WHERE a=4738; UPDATE t2 SET c='ninety-nine thousand nine hundred fourteen' WHERE a=4739; UPDATE t2 SET c='twenty-two thousand eight hundred seven' WHERE a=4740; UPDATE t2 SET c='thirty thousand seven hundred forty' WHERE a=4741; UPDATE t2 SET c='ten thousand five hundred three' WHERE a=4742; UPDATE t2 SET c='fifty-four thousand seven hundred forty-six' WHERE a=4743; UPDATE t2 SET c='fifty-nine thousand seven hundred twenty-eight' WHERE a=4744; UPDATE t2 SET c='nineteen thousand three hundred thirty-six' WHERE a=4745; UPDATE t2 SET c='ninety-nine thousand three hundred forty' WHERE a=4746; UPDATE t2 SET c='ninety-nine thousand five hundred seventy-nine' WHERE a=4747; UPDATE t2 SET c='eighty-two thousand one hundred thirty-three' WHERE a=4748; UPDATE t2 SET c='eighty-eight thousand seven hundred seventy-eight' WHERE a=4749; UPDATE t2 SET c='fifty-one thousand eight hundred thirty-six' WHERE a=4750; UPDATE t2 SET c='thirty-nine thousand six hundred forty-four' WHERE a=4751; UPDATE t2 SET c='twenty-nine thousand six hundred sixty-four' WHERE a=4752; UPDATE t2 SET c='eighty-one thousand one hundred twenty-three' WHERE a=4753; UPDATE t2 SET c='fourteen thousand one hundred twenty-seven' WHERE a=4754; UPDATE t2 SET c='ninety thousand four hundred sixty-two' WHERE a=4755; UPDATE t2 SET c='ninety-two thousand nine hundred eighty-three' WHERE a=4756; UPDATE t2 SET c='seventy-two thousand one hundred forty-three' WHERE a=4757; UPDATE t2 SET c='seventy-one thousand three hundred twenty-three' WHERE a=4758; UPDATE t2 SET c='sixty-one thousand three hundred fifty-six' WHERE a=4759; UPDATE t2 SET c='twenty-six thousand seventy-eight' WHERE a=4760; UPDATE t2 SET c='eighty thousand eighty-seven' WHERE a=4761; UPDATE t2 SET c='twenty-seven thousand two hundred two' WHERE a=4762; UPDATE t2 SET c='seventy-one thousand seven hundred fifty-one' WHERE a=4763; UPDATE t2 SET c='five thousand one hundred thirty-five' WHERE a=4764; UPDATE t2 SET c='fifty-eight thousand three hundred one' WHERE a=4765; UPDATE t2 SET c='thirty-two thousand ninety' WHERE a=4766; UPDATE t2 SET c='nine hundred ninety-five' WHERE a=4767; UPDATE t2 SET c='thirty-two thousand two hundred forty-two' WHERE a=4768; UPDATE t2 SET c='eighty-nine thousand one hundred forty-one' WHERE a=4769; UPDATE t2 SET c='eighty-one thousand four hundred sixteen' WHERE a=4770; UPDATE t2 SET c='forty-five thousand one hundred fifty-six' WHERE a=4771; UPDATE t2 SET c='twenty-eight thousand two hundred sixty-five' WHERE a=4772; UPDATE t2 SET c='fifty-six thousand seven hundred eighty-five' WHERE a=4773; UPDATE t2 SET c='thirty-one thousand five hundred forty' WHERE a=4774; UPDATE t2 SET c='fifty-four thousand eight hundred twenty-six' WHERE a=4775; UPDATE t2 SET c='thirty-seven thousand five hundred twenty-three' WHERE a=4776; UPDATE t2 SET c='sixty-eight thousand one hundred thirty-three' WHERE a=4777; UPDATE t2 SET c='sixty-one thousand two hundred eighty-five' WHERE a=4778; UPDATE t2 SET c='eighty-nine thousand two hundred ten' WHERE a=4779; UPDATE t2 SET c='twenty-six thousand six hundred forty-four' WHERE a=4780; UPDATE t2 SET c='forty-nine thousand nine hundred ninety-three' WHERE a=4781; UPDATE t2 SET c='thirty-two thousand seven hundred fourteen' WHERE a=4782; UPDATE t2 SET c='eight hundred forty-six' WHERE a=4783; UPDATE t2 SET c='thirty-four thousand five hundred thirty-three' WHERE a=4784; UPDATE t2 SET c='forty thousand four hundred eighty-three' WHERE a=4785; UPDATE t2 SET c='fifty-eight thousand eight hundred eighty-nine' WHERE a=4786; UPDATE t2 SET c='forty-nine thousand seven hundred forty-seven' WHERE a=4787; UPDATE t2 SET c='sixty-four thousand nine hundred twenty-two' WHERE a=4788; UPDATE t2 SET c='sixty-six thousand eight hundred fifty-four' WHERE a=4789; UPDATE t2 SET c='sixty thousand eight hundred sixty-nine' WHERE a=4790; UPDATE t2 SET c='forty-four thousand fifty-three' WHERE a=4791; UPDATE t2 SET c='ninety-six thousand five hundred thirty-two' WHERE a=4792; UPDATE t2 SET c='sixty-three thousand eight hundred sixteen' WHERE a=4793; UPDATE t2 SET c='fifty-seven thousand six hundred ninety-nine' WHERE a=4794; UPDATE t2 SET c='sixty-one thousand two hundred fifty-three' WHERE a=4795; UPDATE t2 SET c='eighty-nine thousand seventy-four' WHERE a=4796; UPDATE t2 SET c='twenty-six thousand nine hundred thirty-seven' WHERE a=4797; UPDATE t2 SET c='fifty-three thousand four hundred sixty-one' WHERE a=4798; UPDATE t2 SET c='twenty-seven thousand eight hundred ninety-eight' WHERE a=4799; UPDATE t2 SET c='one thousand two hundred ninety-one' WHERE a=4800; UPDATE t2 SET c='ninety-seven thousand six hundred sixty-eight' WHERE a=4801; UPDATE t2 SET c='seventeen thousand one hundred seven' WHERE a=4802; UPDATE t2 SET c='seventy-nine thousand nine hundred fifty-four' WHERE a=4803; UPDATE t2 SET c='twelve thousand four hundred thirty-five' WHERE a=4804; UPDATE t2 SET c='one thousand nine hundred sixteen' WHERE a=4805; UPDATE t2 SET c='eighty thousand seven hundred fifty-six' WHERE a=4806; UPDATE t2 SET c='sixty-one thousand one hundred ninety-three' WHERE a=4807; UPDATE t2 SET c='eighty-one thousand one hundred ninety-seven' WHERE a=4808; UPDATE t2 SET c='fifty-five thousand nine hundred five' WHERE a=4809; UPDATE t2 SET c='six thousand one hundred twenty-nine' WHERE a=4810; UPDATE t2 SET c='sixty-one thousand seven hundred eight' WHERE a=4811; UPDATE t2 SET c='nineteen thousand forty' WHERE a=4812; UPDATE t2 SET c='sixty-one thousand six hundred ninety-two' WHERE a=4813; UPDATE t2 SET c='eighty-nine thousand two hundred eighty' WHERE a=4814; UPDATE t2 SET c='nineteen thousand one hundred ninety-two' WHERE a=4815; UPDATE t2 SET c='twenty-one thousand nine hundred twenty-seven' WHERE a=4816; UPDATE t2 SET c='fifty-nine thousand two hundred eighty-five' WHERE a=4817; UPDATE t2 SET c='eight hundred twenty-three' WHERE a=4818; UPDATE t2 SET c='twenty-four thousand seventeen' WHERE a=4819; UPDATE t2 SET c='sixteen thousand nine hundred nine' WHERE a=4820; UPDATE t2 SET c='twenty-five thousand four hundred thirty-two' WHERE a=4821; UPDATE t2 SET c='ninety-four thousand three hundred ten' WHERE a=4822; UPDATE t2 SET c='eighty-nine thousand six hundred seventeen' WHERE a=4823; UPDATE t2 SET c='sixty-five thousand four hundred forty-two' WHERE a=4824; UPDATE t2 SET c='eighty-seven thousand two hundred thirty-six' WHERE a=4825; UPDATE t2 SET c='forty-nine thousand five hundred one' WHERE a=4826; UPDATE t2 SET c='eight thousand eight hundred eighty-seven' WHERE a=4827; UPDATE t2 SET c='twenty-three thousand one hundred sixteen' WHERE a=4828; UPDATE t2 SET c='thirty-seven thousand eight hundred twelve' WHERE a=4829; UPDATE t2 SET c='ninety-six thousand four hundred forty-four' WHERE a=4830; UPDATE t2 SET c='fifty-four thousand nine hundred eleven' WHERE a=4831; UPDATE t2 SET c='twenty-eight thousand six hundred ninety-six' WHERE a=4832; UPDATE t2 SET c='seventy-five thousand four hundred forty-eight' WHERE a=4833; UPDATE t2 SET c='fifty-two thousand six hundred forty-seven' WHERE a=4834; UPDATE t2 SET c='fifty-three thousand one hundred four' WHERE a=4835; UPDATE t2 SET c='two hundred eighty-one' WHERE a=4836; UPDATE t2 SET c='seventy-one thousand seven hundred fifty' WHERE a=4837; UPDATE t2 SET c='fifty-eight thousand two hundred twenty-nine' WHERE a=4838; UPDATE t2 SET c='seventy-nine thousand three hundred seventy-six' WHERE a=4839; UPDATE t2 SET c='sixty-six thousand four hundred ninety-one' WHERE a=4840; UPDATE t2 SET c='forty thousand nine hundred four' WHERE a=4841; UPDATE t2 SET c='thirty-seven thousand four hundred ninety' WHERE a=4842; UPDATE t2 SET c='seventy-three thousand nine hundred forty-five' WHERE a=4843; UPDATE t2 SET c='thirty-four thousand two hundred sixty-seven' WHERE a=4844; UPDATE t2 SET c='eighty-three thousand one hundred six' WHERE a=4845; UPDATE t2 SET c='fifty-six thousand three hundred seventy-seven' WHERE a=4846; UPDATE t2 SET c='sixty-five thousand six hundred one' WHERE a=4847; UPDATE t2 SET c='thirty-five thousand three hundred sixty' WHERE a=4848; UPDATE t2 SET c='thirty-seven thousand four hundred eighty-three' WHERE a=4849; UPDATE t2 SET c='eighty-two thousand nine hundred twenty-one' WHERE a=4850; UPDATE t2 SET c='seventy-seven thousand two hundred seventy' WHERE a=4851; UPDATE t2 SET c='fifteen thousand one hundred seventy-four' WHERE a=4852; UPDATE t2 SET c='thirty-two thousand four hundred thirty-nine' WHERE a=4853; UPDATE t2 SET c='twenty-seven thousand thirty-nine' WHERE a=4854; UPDATE t2 SET c='eight thousand four hundred seventy-nine' WHERE a=4855; UPDATE t2 SET c='twenty-five thousand six hundred twenty' WHERE a=4856; UPDATE t2 SET c='eleven thousand seven hundred twenty-four' WHERE a=4857; UPDATE t2 SET c='nine thousand one hundred eighty-nine' WHERE a=4858; UPDATE t2 SET c='four thousand three hundred eighty-eight' WHERE a=4859; UPDATE t2 SET c='fifteen thousand nine hundred twenty-seven' WHERE a=4860; UPDATE t2 SET c='four thousand eight hundred sixty-two' WHERE a=4861; UPDATE t2 SET c='forty-three thousand five hundred seventy-one' WHERE a=4862; UPDATE t2 SET c='seventy-nine thousand two hundred nineteen' WHERE a=4863; UPDATE t2 SET c='sixty-six thousand one hundred seventy-nine' WHERE a=4864; UPDATE t2 SET c='seventeen thousand one hundred forty-two' WHERE a=4865; UPDATE t2 SET c='thirty thousand five hundred twenty-eight' WHERE a=4866; UPDATE t2 SET c='seventy-six thousand four hundred fifteen' WHERE a=4867; UPDATE t2 SET c='forty-four thousand three hundred fifteen' WHERE a=4868; UPDATE t2 SET c='eighty thousand two hundred ninety-two' WHERE a=4869; UPDATE t2 SET c='twenty-eight thousand three hundred sixty-two' WHERE a=4870; UPDATE t2 SET c='twenty-eight thousand twenty' WHERE a=4871; UPDATE t2 SET c='forty-five thousand thirty-seven' WHERE a=4872; UPDATE t2 SET c='ten thousand seven hundred seventy-five' WHERE a=4873; UPDATE t2 SET c='sixty-one thousand five hundred twenty-three' WHERE a=4874; UPDATE t2 SET c='fifteen thousand ninety-one' WHERE a=4875; UPDATE t2 SET c='thirty-six thousand four hundred thirty-two' WHERE a=4876; UPDATE t2 SET c='eighty-five thousand five hundred seventy-three' WHERE a=4877; UPDATE t2 SET c='seventy-two thousand one hundred ninety-two' WHERE a=4878; UPDATE t2 SET c='thirty-one thousand one hundred forty-nine' WHERE a=4879; UPDATE t2 SET c='seventy-one thousand eighty-two' WHERE a=4880; UPDATE t2 SET c='forty-two thousand five hundred sixty-two' WHERE a=4881; UPDATE t2 SET c='ninety-four thousand three hundred twenty-five' WHERE a=4882; UPDATE t2 SET c='eighty-eight thousand seven hundred sixteen' WHERE a=4883; UPDATE t2 SET c='fifty-two thousand two hundred sixty' WHERE a=4884; UPDATE t2 SET c='forty-two thousand eight hundred sixty-five' WHERE a=4885; UPDATE t2 SET c='five thousand four hundred twenty-six' WHERE a=4886; UPDATE t2 SET c='forty-five thousand ninety-seven' WHERE a=4887; UPDATE t2 SET c='seventy-six thousand seven hundred forty-three' WHERE a=4888; UPDATE t2 SET c='eighty-three thousand seven hundred fifty-two' WHERE a=4889; UPDATE t2 SET c='nineteen thousand seven hundred thirty-three' WHERE a=4890; UPDATE t2 SET c='fifty-one thousand five hundred five' WHERE a=4891; UPDATE t2 SET c='eighty-six thousand three hundred eighty-seven' WHERE a=4892; UPDATE t2 SET c='thirty-two thousand nine hundred thirty-four' WHERE a=4893; UPDATE t2 SET c='thirty-one thousand six hundred ninety-five' WHERE a=4894; UPDATE t2 SET c='fourteen thousand six hundred five' WHERE a=4895; UPDATE t2 SET c='eighty-two thousand six hundred seventy-five' WHERE a=4896; UPDATE t2 SET c='twelve thousand sixty' WHERE a=4897; UPDATE t2 SET c='thirteen thousand two hundred seventy-seven' WHERE a=4898; UPDATE t2 SET c='forty-four thousand seven hundred thirteen' WHERE a=4899; UPDATE t2 SET c='eighty-one thousand eight hundred forty-two' WHERE a=4900; UPDATE t2 SET c='fifteen thousand eight hundred seventy-nine' WHERE a=4901; UPDATE t2 SET c='forty-seven thousand six hundred nine' WHERE a=4902; UPDATE t2 SET c='one thousand three hundred forty-eight' WHERE a=4903; UPDATE t2 SET c='ninety-two thousand three hundred eighty-seven' WHERE a=4904; UPDATE t2 SET c='forty-nine thousand three hundred ninety' WHERE a=4905; UPDATE t2 SET c='thirty-nine thousand nine hundred three' WHERE a=4906; UPDATE t2 SET c='fifty-nine thousand four hundred fifty-four' WHERE a=4907; UPDATE t2 SET c='ninety-two thousand two hundred twenty' WHERE a=4908; UPDATE t2 SET c='fifty-six thousand nine hundred sixty-nine' WHERE a=4909; UPDATE t2 SET c='eighty-four thousand sixty-seven' WHERE a=4910; UPDATE t2 SET c='seventy-nine thousand thirty-three' WHERE a=4911; UPDATE t2 SET c='twenty-six thousand six hundred sixty-five' WHERE a=4912; UPDATE t2 SET c='ninety-two thousand nine hundred forty-nine' WHERE a=4913; UPDATE t2 SET c='nineteen thousand three hundred forty-two' WHERE a=4914; UPDATE t2 SET c='eleven thousand one hundred twenty-two' WHERE a=4915; UPDATE t2 SET c='thirty-eight thousand seven hundred thirty-two' WHERE a=4916; UPDATE t2 SET c='five thousand two hundred ninety-three' WHERE a=4917; UPDATE t2 SET c='thirty-five thousand six hundred seventy-one' WHERE a=4918; UPDATE t2 SET c='fifty-six thousand four hundred forty-three' WHERE a=4919; UPDATE t2 SET c='ninety-nine thousand one hundred eighty-eight' WHERE a=4920; UPDATE t2 SET c='sixty-two thousand six hundred ninety-two' WHERE a=4921; UPDATE t2 SET c='one thousand seven hundred four' WHERE a=4922; UPDATE t2 SET c='fourteen thousand nine hundred forty-four' WHERE a=4923; UPDATE t2 SET c='fifty-six thousand one hundred twenty-five' WHERE a=4924; UPDATE t2 SET c='thirty-five thousand six hundred sixty-seven' WHERE a=4925; UPDATE t2 SET c='twenty-eight thousand eight hundred eighty-seven' WHERE a=4926; UPDATE t2 SET c='seventy-seven thousand seven hundred twenty-eight' WHERE a=4927; UPDATE t2 SET c='ninety-one thousand three hundred forty-three' WHERE a=4928; UPDATE t2 SET c='sixty-seven thousand one hundred twenty-seven' WHERE a=4929; UPDATE t2 SET c='fifty-six thousand five hundred five' WHERE a=4930; UPDATE t2 SET c='forty-nine thousand one hundred twenty-five' WHERE a=4931; UPDATE t2 SET c='forty thousand eight hundred twenty-two' WHERE a=4932; UPDATE t2 SET c='seventy-nine thousand four hundred twenty-one' WHERE a=4933; UPDATE t2 SET c='seventy-six thousand nine hundred eighty-two' WHERE a=4934; UPDATE t2 SET c='seventy-three thousand five hundred sixty-eight' WHERE a=4935; UPDATE t2 SET c='fifty-one thousand' WHERE a=4936; UPDATE t2 SET c='sixty-one thousand two hundred nineteen' WHERE a=4937; UPDATE t2 SET c='seventy-one thousand forty-seven' WHERE a=4938; UPDATE t2 SET c='sixty-three thousand sixty' WHERE a=4939; UPDATE t2 SET c='twenty-eight thousand five hundred thirty-seven' WHERE a=4940; UPDATE t2 SET c='ninety-five thousand one hundred seventeen' WHERE a=4941; UPDATE t2 SET c='eight thousand seven hundred nineteen' WHERE a=4942; UPDATE t2 SET c='thirty thousand five hundred fifty-one' WHERE a=4943; UPDATE t2 SET c='ninety-two thousand four hundred seventy-seven' WHERE a=4944; UPDATE t2 SET c='thirty-one thousand four hundred forty-five' WHERE a=4945; UPDATE t2 SET c='eighty-six thousand four hundred thirty-six' WHERE a=4946; UPDATE t2 SET c='eighty-two thousand seven hundred forty-one' WHERE a=4947; UPDATE t2 SET c='sixty-one thousand six hundred ninety' WHERE a=4948; UPDATE t2 SET c='fifty thousand seven hundred four' WHERE a=4949; UPDATE t2 SET c='seventy-five thousand three hundred three' WHERE a=4950; UPDATE t2 SET c='twenty-four thousand eight hundred eighty-six' WHERE a=4951; UPDATE t2 SET c='two thousand one hundred seventy-three' WHERE a=4952; UPDATE t2 SET c='ninety-nine thousand three hundred thirty-eight' WHERE a=4953; UPDATE t2 SET c='four thousand one hundred sixty-nine' WHERE a=4954; UPDATE t2 SET c='seventy-three thousand six hundred ninety-nine' WHERE a=4955; UPDATE t2 SET c='seventy-five thousand eight hundred twenty' WHERE a=4956; UPDATE t2 SET c='fifty-one thousand one hundred seventy-five' WHERE a=4957; UPDATE t2 SET c='seventy-six thousand eleven' WHERE a=4958; UPDATE t2 SET c='forty thousand eight hundred ninety-seven' WHERE a=4959; UPDATE t2 SET c='ten thousand five hundred twenty-eight' WHERE a=4960; UPDATE t2 SET c='eighty-nine thousand four hundred twenty-three' WHERE a=4961; UPDATE t2 SET c='fifty-two thousand three hundred eight' WHERE a=4962; UPDATE t2 SET c='fifty-two thousand five hundred twenty-three' WHERE a=4963; UPDATE t2 SET c='thirty-six thousand six hundred fifty-one' WHERE a=4964; UPDATE t2 SET c='fifteen thousand three hundred sixteen' WHERE a=4965; UPDATE t2 SET c='thirty-eight thousand eight hundred twenty-four' WHERE a=4966; UPDATE t2 SET c='twenty-three thousand six hundred thirty-seven' WHERE a=4967; UPDATE t2 SET c='forty-two thousand six hundred ninety-one' WHERE a=4968; UPDATE t2 SET c='fifty-five thousand four hundred ninety-seven' WHERE a=4969; UPDATE t2 SET c='forty-two thousand six hundred five' WHERE a=4970; UPDATE t2 SET c='sixty-four thousand six hundred seventeen' WHERE a=4971; UPDATE t2 SET c='seventy-three thousand nine hundred seventy-nine' WHERE a=4972; UPDATE t2 SET c='seventy-three thousand nine hundred ninety' WHERE a=4973; UPDATE t2 SET c='eighty-five thousand nine hundred sixty-four' WHERE a=4974; UPDATE t2 SET c='ninety-seven thousand four hundred ninety-seven' WHERE a=4975; UPDATE t2 SET c='thirty-nine thousand two hundred fifty' WHERE a=4976; UPDATE t2 SET c='three thousand six hundred fifty-eight' WHERE a=4977; UPDATE t2 SET c='forty-five thousand nine hundred seventy-five' WHERE a=4978; UPDATE t2 SET c='fifty-three thousand four hundred sixty-six' WHERE a=4979; UPDATE t2 SET c='twenty thousand nine hundred seventy-five' WHERE a=4980; UPDATE t2 SET c='twenty-nine thousand eight hundred forty-three' WHERE a=4981; UPDATE t2 SET c='sixty-six thousand six hundred sixty-three' WHERE a=4982; UPDATE t2 SET c='ninety-eight thousand ninety' WHERE a=4983; UPDATE t2 SET c='fifty-eight thousand twenty-seven' WHERE a=4984; UPDATE t2 SET c='twenty-two thousand two hundred eighty' WHERE a=4985; UPDATE t2 SET c='sixty-one thousand eight hundred twenty-eight' WHERE a=4986; UPDATE t2 SET c='eleven thousand four hundred sixty-six' WHERE a=4987; UPDATE t2 SET c='four thousand one hundred fifteen' WHERE a=4988; UPDATE t2 SET c='eighty thousand seven hundred sixteen' WHERE a=4989; UPDATE t2 SET c='twenty-five thousand seven hundred seventy-five' WHERE a=4990; UPDATE t2 SET c='two thousand four hundred eighty-two' WHERE a=4991; UPDATE t2 SET c='twenty-eight thousand two hundred thirty-seven' WHERE a=4992; UPDATE t2 SET c='six thousand seven hundred eighty-eight' WHERE a=4993; UPDATE t2 SET c='fifty-nine thousand three hundred fifty' WHERE a=4994; UPDATE t2 SET c='ninety-seven thousand six hundred eighty-six' WHERE a=4995; UPDATE t2 SET c='eighty-seven thousand seven hundred thirty-nine' WHERE a=4996; UPDATE t2 SET c='forty-four thousand six hundred seventy-three' WHERE a=4997; UPDATE t2 SET c='twenty-six thousand fifty-eight' WHERE a=4998; UPDATE t2 SET c='thirty-six thousand eight hundred seventy' WHERE a=4999; UPDATE t2 SET c='sixty-one thousand five hundred fifty-three' WHERE a=5000; UPDATE t2 SET c='forty-eight thousand two hundred twenty-nine' WHERE a=5001; UPDATE t2 SET c='forty-eight thousand nine hundred twenty-nine' WHERE a=5002; UPDATE t2 SET c='seventy-eight thousand three hundred fifty-seven' WHERE a=5003; UPDATE t2 SET c='sixty-seven thousand two hundred four' WHERE a=5004; UPDATE t2 SET c='thirty-seven thousand five hundred thirty-three' WHERE a=5005; UPDATE t2 SET c='eighty-eight' WHERE a=5006; UPDATE t2 SET c='forty-six thousand five hundred eighty-two' WHERE a=5007; UPDATE t2 SET c='seventy-two thousand six hundred fifty-seven' WHERE a=5008; UPDATE t2 SET c='sixty-four thousand two hundred seventeen' WHERE a=5009; UPDATE t2 SET c='twenty-six thousand seven hundred forty-five' WHERE a=5010; UPDATE t2 SET c='eighty-one thousand four hundred eighty-nine' WHERE a=5011; UPDATE t2 SET c='fifty-nine thousand seventy-eight' WHERE a=5012; UPDATE t2 SET c='twenty thousand six hundred eighty-eight' WHERE a=5013; UPDATE t2 SET c='eighty-seven thousand five hundred eighty-nine' WHERE a=5014; UPDATE t2 SET c='forty-eight thousand five hundred seventy-seven' WHERE a=5015; UPDATE t2 SET c='seventeen thousand seven hundred nine' WHERE a=5016; UPDATE t2 SET c='nine thousand seven hundred thirteen' WHERE a=5017; UPDATE t2 SET c='ninety-nine thousand four hundred' WHERE a=5018; UPDATE t2 SET c='eighty-eight thousand eight hundred sixty-eight' WHERE a=5019; UPDATE t2 SET c='thirty-five thousand two hundred twenty-three' WHERE a=5020; UPDATE t2 SET c='ninety-one thousand two hundred sixty-nine' WHERE a=5021; UPDATE t2 SET c='thirty-three thousand four hundred thirty' WHERE a=5022; UPDATE t2 SET c='ninety-five thousand four hundred fifty-one' WHERE a=5023; UPDATE t2 SET c='ninety-seven thousand six hundred thirty-two' WHERE a=5024; UPDATE t2 SET c='eighty-nine thousand seven hundred eighty-two' WHERE a=5025; UPDATE t2 SET c='sixty-two thousand four hundred fifty-six' WHERE a=5026; UPDATE t2 SET c='one thousand four hundred fifty-eight' WHERE a=5027; UPDATE t2 SET c='seventy-one thousand six hundred eighty-two' WHERE a=5028; UPDATE t2 SET c='seventy-seven thousand thirty' WHERE a=5029; UPDATE t2 SET c='twenty thousand nine hundred seven' WHERE a=5030; UPDATE t2 SET c='eighty thousand seven hundred eighty-six' WHERE a=5031; UPDATE t2 SET c='thirty-eight thousand six hundred three' WHERE a=5032; UPDATE t2 SET c='ninety-eight thousand two hundred twenty-eight' WHERE a=5033; UPDATE t2 SET c='fifty-three thousand one hundred seventeen' WHERE a=5034; UPDATE t2 SET c='eight thousand nine hundred ninety-three' WHERE a=5035; UPDATE t2 SET c='four hundred sixty' WHERE a=5036; UPDATE t2 SET c='fifty-one thousand three hundred thirty-two' WHERE a=5037; UPDATE t2 SET c='ninety-nine thousand two hundred nineteen' WHERE a=5038; UPDATE t2 SET c='twenty-seven thousand eight hundred sixty-eight' WHERE a=5039; UPDATE t2 SET c='sixty-seven thousand six hundred sixty-seven' WHERE a=5040; UPDATE t2 SET c='fourteen thousand four hundred twenty-four' WHERE a=5041; UPDATE t2 SET c='sixty thousand eight hundred eighty-seven' WHERE a=5042; UPDATE t2 SET c='twenty-three thousand four hundred ninety-eight' WHERE a=5043; UPDATE t2 SET c='twenty-six thousand seven' WHERE a=5044; UPDATE t2 SET c='fifty-seven thousand two hundred eighteen' WHERE a=5045; UPDATE t2 SET c='ninety-four thousand ninety-three' WHERE a=5046; UPDATE t2 SET c='nine thousand three hundred' WHERE a=5047; UPDATE t2 SET c='twenty-four thousand sixteen' WHERE a=5048; UPDATE t2 SET c='sixty-one thousand nine hundred' WHERE a=5049; UPDATE t2 SET c='thirty-two thousand nine hundred fifteen' WHERE a=5050; UPDATE t2 SET c='twenty-two thousand seven hundred four' WHERE a=5051; UPDATE t2 SET c='thirty-three thousand two hundred fifteen' WHERE a=5052; UPDATE t2 SET c='thirteen thousand four hundred eighty-two' WHERE a=5053; UPDATE t2 SET c='five thousand fifty-nine' WHERE a=5054; UPDATE t2 SET c='fifty-seven thousand six hundred eighty-four' WHERE a=5055; UPDATE t2 SET c='eighty-four thousand seven hundred twenty' WHERE a=5056; UPDATE t2 SET c='thirty-two thousand seven hundred ninety-one' WHERE a=5057; UPDATE t2 SET c='eighty-eight thousand six hundred eighty-eight' WHERE a=5058; UPDATE t2 SET c='sixty-five thousand one hundred thirteen' WHERE a=5059; UPDATE t2 SET c='forty-seven thousand six hundred eighty-four' WHERE a=5060; UPDATE t2 SET c='seventy-eight thousand six hundred fifty-eight' WHERE a=5061; UPDATE t2 SET c='thirty-two thousand nine hundred ninety-eight' WHERE a=5062; UPDATE t2 SET c='forty-nine thousand five hundred four' WHERE a=5063; UPDATE t2 SET c='eighty thousand five hundred fifty-three' WHERE a=5064; UPDATE t2 SET c='fifty-seven thousand one hundred thirty-five' WHERE a=5065; UPDATE t2 SET c='seventy-three thousand five hundred thirty-eight' WHERE a=5066; UPDATE t2 SET c='forty-two thousand three hundred fifty-five' WHERE a=5067; UPDATE t2 SET c='forty-four thousand five hundred sixty-seven' WHERE a=5068; UPDATE t2 SET c='thirty-two thousand two hundred ninety-three' WHERE a=5069; UPDATE t2 SET c='eight thousand five hundred seventy-eight' WHERE a=5070; UPDATE t2 SET c='fifty-two thousand two hundred eighty-two' WHERE a=5071; UPDATE t2 SET c='sixteen thousand seven hundred three' WHERE a=5072; UPDATE t2 SET c='four hundred seventy-six' WHERE a=5073; UPDATE t2 SET c='seventeen thousand five hundred four' WHERE a=5074; UPDATE t2 SET c='nineteen thousand one hundred seventy' WHERE a=5075; UPDATE t2 SET c='ninety-two thousand six hundred eighteen' WHERE a=5076; UPDATE t2 SET c='twenty-three thousand five hundred sixty-nine' WHERE a=5077; UPDATE t2 SET c='eighteen thousand three hundred ninety-seven' WHERE a=5078; UPDATE t2 SET c='thirty-two thousand six hundred eighty-one' WHERE a=5079; UPDATE t2 SET c='seventy-three thousand eight hundred five' WHERE a=5080; UPDATE t2 SET c='thirty-six thousand seven hundred ninety-seven' WHERE a=5081; UPDATE t2 SET c='sixty-one thousand nine hundred eighty-five' WHERE a=5082; UPDATE t2 SET c='ninety-nine thousand two hundred twenty-four' WHERE a=5083; UPDATE t2 SET c='three thousand four hundred twenty-four' WHERE a=5084; UPDATE t2 SET c='eleven thousand three hundred fifty-eight' WHERE a=5085; UPDATE t2 SET c='sixty-nine thousand nine hundred nine' WHERE a=5086; UPDATE t2 SET c='three thousand four hundred ninety-two' WHERE a=5087; UPDATE t2 SET c='twenty-seven thousand nine hundred ninety-two' WHERE a=5088; UPDATE t2 SET c='ninety-five thousand eight hundred fifty-five' WHERE a=5089; UPDATE t2 SET c='fifty thousand two hundred six' WHERE a=5090; UPDATE t2 SET c='forty thousand seven hundred twenty-two' WHERE a=5091; UPDATE t2 SET c='ninety-nine thousand six hundred thirty' WHERE a=5092; UPDATE t2 SET c='seventy-nine thousand twenty-six' WHERE a=5093; UPDATE t2 SET c='seventy-two thousand five hundred fifty-six' WHERE a=5094; UPDATE t2 SET c='eighteen thousand eight hundred sixteen' WHERE a=5095; UPDATE t2 SET c='twenty-six thousand three hundred seventy-seven' WHERE a=5096; UPDATE t2 SET c='twelve thousand seven hundred ninety-one' WHERE a=5097; UPDATE t2 SET c='forty-eight thousand five hundred ninety-seven' WHERE a=5098; UPDATE t2 SET c='seventy thousand three hundred fifty-nine' WHERE a=5099; UPDATE t2 SET c='ten thousand nine hundred ninety-three' WHERE a=5100; UPDATE t2 SET c='thirty-three thousand three hundred thirty-three' WHERE a=5101; UPDATE t2 SET c='seventy-four thousand two hundred fifty-eight' WHERE a=5102; UPDATE t2 SET c='forty-three thousand sixty-seven' WHERE a=5103; UPDATE t2 SET c='ninety-eight thousand seven hundred seventeen' WHERE a=5104; UPDATE t2 SET c='ninety-eight thousand three hundred eighty-two' WHERE a=5105; UPDATE t2 SET c='twenty-one thousand one hundred eighty-five' WHERE a=5106; UPDATE t2 SET c='ninety-four thousand thirty-two' WHERE a=5107; UPDATE t2 SET c='nineteen thousand seven hundred fifty-seven' WHERE a=5108; UPDATE t2 SET c='seventeen thousand six hundred forty-six' WHERE a=5109; UPDATE t2 SET c='twenty-two thousand four hundred sixty-eight' WHERE a=5110; UPDATE t2 SET c='seventy-nine thousand three hundred fifty-eight' WHERE a=5111; UPDATE t2 SET c='thirty-three thousand one hundred eighty-six' WHERE a=5112; UPDATE t2 SET c='two thousand thirty-nine' WHERE a=5113; UPDATE t2 SET c='ninety-nine thousand one hundred ninety-two' WHERE a=5114; UPDATE t2 SET c='five thousand four hundred fifty-six' WHERE a=5115; UPDATE t2 SET c='thirty-six thousand seven hundred eighty' WHERE a=5116; UPDATE t2 SET c='thirty-five thousand five hundred' WHERE a=5117; UPDATE t2 SET c='fourteen thousand twenty' WHERE a=5118; UPDATE t2 SET c='one hundred thirty-five' WHERE a=5119; UPDATE t2 SET c='three thousand fifty-nine' WHERE a=5120; UPDATE t2 SET c='ninety-five thousand eight hundred seventy-six' WHERE a=5121; UPDATE t2 SET c='nineteen thousand eight hundred nineteen' WHERE a=5122; UPDATE t2 SET c='eighty-one thousand seven hundred forty-six' WHERE a=5123; UPDATE t2 SET c='eighty-seven thousand seven hundred forty-three' WHERE a=5124; UPDATE t2 SET c='seventy-one thousand eight hundred sixty-three' WHERE a=5125; UPDATE t2 SET c='forty-three thousand nine hundred eighty-three' WHERE a=5126; UPDATE t2 SET c='twenty-three thousand thirty-five' WHERE a=5127; UPDATE t2 SET c='seventy thousand nine hundred forty' WHERE a=5128; UPDATE t2 SET c='one thousand one hundred ninety' WHERE a=5129; UPDATE t2 SET c='three thousand six hundred twelve' WHERE a=5130; UPDATE t2 SET c='sixty-six thousand seven hundred twenty' WHERE a=5131; UPDATE t2 SET c='seventy-eight thousand nine hundred forty-four' WHERE a=5132; UPDATE t2 SET c='sixty-five thousand seven hundred twenty-one' WHERE a=5133; UPDATE t2 SET c='nineteen thousand nine hundred six' WHERE a=5134; UPDATE t2 SET c='forty-two thousand forty-seven' WHERE a=5135; UPDATE t2 SET c='fourteen thousand five hundred forty-eight' WHERE a=5136; UPDATE t2 SET c='forty-seven thousand two hundred sixty-nine' WHERE a=5137; UPDATE t2 SET c='thirty-four thousand three hundred eleven' WHERE a=5138; UPDATE t2 SET c='eight thousand one hundred nine' WHERE a=5139; UPDATE t2 SET c='thirty-two thousand sixty' WHERE a=5140; UPDATE t2 SET c='thirty-nine thousand four hundred three' WHERE a=5141; UPDATE t2 SET c='seventeen thousand two hundred fifty-nine' WHERE a=5142; UPDATE t2 SET c='twenty thousand seven hundred ninety-three' WHERE a=5143; UPDATE t2 SET c='eighty-seven thousand thirty-four' WHERE a=5144; UPDATE t2 SET c='fifty-two thousand two hundred forty-five' WHERE a=5145; UPDATE t2 SET c='thirty-nine thousand nine hundred seventeen' WHERE a=5146; UPDATE t2 SET c='nine thousand five hundred twenty-eight' WHERE a=5147; UPDATE t2 SET c='fifty-four thousand nine hundred fifty-three' WHERE a=5148; UPDATE t2 SET c='seventy-five thousand sixty-two' WHERE a=5149; UPDATE t2 SET c='seventy-two thousand seven hundred seventy-five' WHERE a=5150; UPDATE t2 SET c='eighty-three thousand two hundred eighty-three' WHERE a=5151; UPDATE t2 SET c='sixty-four thousand four hundred thirty-six' WHERE a=5152; UPDATE t2 SET c='ten thousand six hundred six' WHERE a=5153; UPDATE t2 SET c='eleven thousand three hundred' WHERE a=5154; UPDATE t2 SET c='thirty-two thousand eight hundred eleven' WHERE a=5155; UPDATE t2 SET c='twenty-eight thousand two hundred twenty-three' WHERE a=5156; UPDATE t2 SET c='fifty-six thousand three hundred fifty-eight' WHERE a=5157; UPDATE t2 SET c='ninety-two thousand six hundred nineteen' WHERE a=5158; UPDATE t2 SET c='sixteen thousand nine hundred eighty' WHERE a=5159; UPDATE t2 SET c='ninety-seven thousand four hundred seventy-seven' WHERE a=5160; UPDATE t2 SET c='seventy-nine thousand nine hundred seventy' WHERE a=5161; UPDATE t2 SET c='seventy-eight thousand one hundred seventy-eight' WHERE a=5162; UPDATE t2 SET c='twenty-six thousand three hundred ninety-nine' WHERE a=5163; UPDATE t2 SET c='fifty-three thousand four hundred ninety-four' WHERE a=5164; UPDATE t2 SET c='ninety-eight thousand eight hundred sixty-eight' WHERE a=5165; UPDATE t2 SET c='seventy-nine thousand one hundred seventy' WHERE a=5166; UPDATE t2 SET c='seventy-nine thousand one hundred seven' WHERE a=5167; UPDATE t2 SET c='forty-seven thousand one hundred twenty-five' WHERE a=5168; UPDATE t2 SET c='fifty-two thousand five hundred eighty-nine' WHERE a=5169; UPDATE t2 SET c='ninety thousand eighty-eight' WHERE a=5170; UPDATE t2 SET c='fifty-three thousand seven hundred six' WHERE a=5171; UPDATE t2 SET c='five thousand seventy-three' WHERE a=5172; UPDATE t2 SET c='fifty-nine thousand five hundred ninety-five' WHERE a=5173; UPDATE t2 SET c='two thousand one hundred seventy-five' WHERE a=5174; UPDATE t2 SET c='thirty-five thousand five hundred ten' WHERE a=5175; UPDATE t2 SET c='three hundred eighty-six' WHERE a=5176; UPDATE t2 SET c='thirty-two thousand two hundred ninety-six' WHERE a=5177; UPDATE t2 SET c='twenty-six thousand nine hundred eighty-four' WHERE a=5178; UPDATE t2 SET c='sixty-four thousand six hundred twenty-seven' WHERE a=5179; UPDATE t2 SET c='thirty-two thousand five hundred seventy-three' WHERE a=5180; UPDATE t2 SET c='twenty-four thousand eight hundred thirty-seven' WHERE a=5181; UPDATE t2 SET c='ninety-eight thousand ninety-four' WHERE a=5182; UPDATE t2 SET c='fifty-four thousand six hundred fifty-five' WHERE a=5183; UPDATE t2 SET c='thirty-two thousand two hundred seventy' WHERE a=5184; UPDATE t2 SET c='seventy-nine thousand six hundred two' WHERE a=5185; UPDATE t2 SET c='forty-nine thousand seven hundred seventy' WHERE a=5186; UPDATE t2 SET c='thirteen thousand six hundred sixty' WHERE a=5187; UPDATE t2 SET c='twenty-one thousand two hundred fifty-six' WHERE a=5188; UPDATE t2 SET c='seventy-five thousand seven hundred seventy-five' WHERE a=5189; UPDATE t2 SET c='twenty-six thousand five hundred eleven' WHERE a=5190; UPDATE t2 SET c='forty-two thousand two hundred fifty-six' WHERE a=5191; UPDATE t2 SET c='sixteen thousand five hundred two' WHERE a=5192; UPDATE t2 SET c='ninety-five thousand two hundred fifteen' WHERE a=5193; UPDATE t2 SET c='thirty-five thousand five hundred ninety-four' WHERE a=5194; UPDATE t2 SET c='thirty-six thousand eight hundred eighty-one' WHERE a=5195; UPDATE t2 SET c='fifty-three thousand one hundred forty-two' WHERE a=5196; UPDATE t2 SET c='sixty-six thousand four hundred ninety-three' WHERE a=5197; UPDATE t2 SET c='forty-nine thousand two hundred ninety-one' WHERE a=5198; UPDATE t2 SET c='one thousand eight hundred ninety-three' WHERE a=5199; UPDATE t2 SET c='thirty-nine thousand seven hundred seventy-seven' WHERE a=5200; UPDATE t2 SET c='thirty-three thousand one hundred twelve' WHERE a=5201; UPDATE t2 SET c='seventy-three thousand six hundred thirty-seven' WHERE a=5202; UPDATE t2 SET c='eighty-three thousand six hundred sixty-eight' WHERE a=5203; UPDATE t2 SET c='seventeen thousand eight hundred eighty-two' WHERE a=5204; UPDATE t2 SET c='nine thousand four hundred twenty-two' WHERE a=5205; UPDATE t2 SET c='eleven thousand eight hundred nine' WHERE a=5206; UPDATE t2 SET c='eighteen thousand six hundred seventeen' WHERE a=5207; UPDATE t2 SET c='thirty-five thousand seventy-one' WHERE a=5208; UPDATE t2 SET c='twenty-two thousand six hundred thirty-five' WHERE a=5209; UPDATE t2 SET c='eighty thousand four hundred ten' WHERE a=5210; UPDATE t2 SET c='sixty-four thousand nine hundred thirty' WHERE a=5211; UPDATE t2 SET c='eighty-three thousand three hundred ninety-seven' WHERE a=5212; UPDATE t2 SET c='twenty-five thousand four hundred twenty-six' WHERE a=5213; UPDATE t2 SET c='twenty-five thousand six hundred fifty-two' WHERE a=5214; UPDATE t2 SET c='sixty-seven thousand five hundred sixty-eight' WHERE a=5215; UPDATE t2 SET c='twenty-five thousand eighty-seven' WHERE a=5216; UPDATE t2 SET c='ninety-five thousand five hundred forty-eight' WHERE a=5217; UPDATE t2 SET c='forty-two thousand eight hundred ninety-one' WHERE a=5218; UPDATE t2 SET c='twenty-three thousand three hundred forty' WHERE a=5219; UPDATE t2 SET c='six thousand three hundred eighteen' WHERE a=5220; UPDATE t2 SET c='ninety-two thousand one hundred fifty' WHERE a=5221; UPDATE t2 SET c='three hundred seventy-seven' WHERE a=5222; UPDATE t2 SET c='seventy-nine thousand three hundred seventy-six' WHERE a=5223; UPDATE t2 SET c='eighty-one thousand two hundred forty' WHERE a=5224; UPDATE t2 SET c='ninety-seven thousand forty' WHERE a=5225; UPDATE t2 SET c='eight thousand five hundred twenty-four' WHERE a=5226; UPDATE t2 SET c='forty-five thousand five hundred nineteen' WHERE a=5227; UPDATE t2 SET c='ninety-three thousand eight hundred forty-nine' WHERE a=5228; UPDATE t2 SET c='eighty-four thousand three hundred forty-three' WHERE a=5229; UPDATE t2 SET c='twenty thousand six hundred sixty' WHERE a=5230; UPDATE t2 SET c='twenty-six thousand nine hundred twenty-eight' WHERE a=5231; UPDATE t2 SET c='forty-five thousand five hundred forty-three' WHERE a=5232; UPDATE t2 SET c='seventy-seven thousand six hundred eighty-four' WHERE a=5233; UPDATE t2 SET c='thirty-six thousand nine hundred fifty-four' WHERE a=5234; UPDATE t2 SET c='twenty-nine thousand sixty-four' WHERE a=5235; UPDATE t2 SET c='ninety-five thousand one hundred thirty' WHERE a=5236; UPDATE t2 SET c='seventy-one thousand one hundred sixty-eight' WHERE a=5237; UPDATE t2 SET c='thirteen thousand one hundred fifty-three' WHERE a=5238; UPDATE t2 SET c='six thousand seven hundred ninety-two' WHERE a=5239; UPDATE t2 SET c='thirty-eight thousand six hundred ninety-five' WHERE a=5240; UPDATE t2 SET c='twenty-seven thousand one hundred thirty-one' WHERE a=5241; UPDATE t2 SET c='twenty-eight thousand three hundred fifty' WHERE a=5242; UPDATE t2 SET c='sixteen thousand two hundred fifty-one' WHERE a=5243; UPDATE t2 SET c='sixty-five thousand four hundred nineteen' WHERE a=5244; UPDATE t2 SET c='twenty-four thousand one hundred three' WHERE a=5245; UPDATE t2 SET c='fifteen thousand nine hundred fourteen' WHERE a=5246; UPDATE t2 SET c='twenty-four thousand six hundred sixty-eight' WHERE a=5247; UPDATE t2 SET c='eighty thousand two hundred seventy-seven' WHERE a=5248; UPDATE t2 SET c='sixty-four thousand two hundred three' WHERE a=5249; UPDATE t2 SET c='sixteen thousand four hundred thirteen' WHERE a=5250; UPDATE t2 SET c='twenty-eight thousand six hundred thirty' WHERE a=5251; UPDATE t2 SET c='eighty-two thousand nine hundred six' WHERE a=5252; UPDATE t2 SET c='forty-eight thousand six hundred eighty-nine' WHERE a=5253; UPDATE t2 SET c='twenty-one thousand eight hundred thirty-one' WHERE a=5254; UPDATE t2 SET c='seven thousand nine hundred fifty-nine' WHERE a=5255; UPDATE t2 SET c='eight thousand eight hundred sixty' WHERE a=5256; UPDATE t2 SET c='sixty-eight thousand one hundred ninety-nine' WHERE a=5257; UPDATE t2 SET c='thirty-six thousand six hundred ninety-six' WHERE a=5258; UPDATE t2 SET c='seventy-five thousand seven hundred seventy-one' WHERE a=5259; UPDATE t2 SET c='sixteen thousand one hundred eighty-three' WHERE a=5260; UPDATE t2 SET c='twenty thousand two hundred forty-seven' WHERE a=5261; UPDATE t2 SET c='seventy-three thousand seven hundred thirty-seven' WHERE a=5262; UPDATE t2 SET c='forty-seven thousand four hundred eighty-five' WHERE a=5263; UPDATE t2 SET c='sixteen thousand five hundred eighty-three' WHERE a=5264; UPDATE t2 SET c='six thousand six hundred sixty-eight' WHERE a=5265; UPDATE t2 SET c='twenty-four thousand seven hundred fifty-three' WHERE a=5266; UPDATE t2 SET c='fifty-five thousand nine hundred thirty-five' WHERE a=5267; UPDATE t2 SET c='eight thousand seven hundred ninety-nine' WHERE a=5268; UPDATE t2 SET c='twenty-two thousand eighty-four' WHERE a=5269; UPDATE t2 SET c='fifty-eight thousand three hundred three' WHERE a=5270; UPDATE t2 SET c='sixty-six thousand seven hundred ninety-six' WHERE a=5271; UPDATE t2 SET c='eighty-four thousand one hundred forty-five' WHERE a=5272; UPDATE t2 SET c='sixty-three thousand two hundred three' WHERE a=5273; UPDATE t2 SET c='forty-eight thousand one hundred fifty-one' WHERE a=5274; UPDATE t2 SET c='eighty-five thousand seven hundred seventy-five' WHERE a=5275; UPDATE t2 SET c='fifty-three thousand four hundred fifty-seven' WHERE a=5276; UPDATE t2 SET c='ninety-two thousand four hundred fifty-eight' WHERE a=5277; UPDATE t2 SET c='seventy-eight thousand six' WHERE a=5278; UPDATE t2 SET c='seventy thousand ninety' WHERE a=5279; UPDATE t2 SET c='sixteen thousand five hundred eighty-six' WHERE a=5280; UPDATE t2 SET c='fifty-two thousand nine hundred three' WHERE a=5281; UPDATE t2 SET c='six thousand fifty' WHERE a=5282; UPDATE t2 SET c='sixty-seven thousand four hundred thirteen' WHERE a=5283; UPDATE t2 SET c='twenty-one thousand six hundred forty-four' WHERE a=5284; UPDATE t2 SET c='fourteen thousand six hundred sixty-five' WHERE a=5285; UPDATE t2 SET c='ninety thousand four hundred eight' WHERE a=5286; UPDATE t2 SET c='four thousand six hundred eighty-eight' WHERE a=5287; UPDATE t2 SET c='ninety-eight thousand ten' WHERE a=5288; UPDATE t2 SET c='sixty-three thousand eight hundred twenty-five' WHERE a=5289; UPDATE t2 SET c='nine thousand one hundred fifty' WHERE a=5290; UPDATE t2 SET c='forty-four thousand two hundred forty-one' WHERE a=5291; UPDATE t2 SET c='thirty-seven thousand one hundred twenty-six' WHERE a=5292; UPDATE t2 SET c='forty-four thousand nine hundred forty-nine' WHERE a=5293; UPDATE t2 SET c='ninety-three thousand eight hundred thirteen' WHERE a=5294; UPDATE t2 SET c='three hundred eighty-six' WHERE a=5295; UPDATE t2 SET c='eleven thousand six hundred sixty-two' WHERE a=5296; UPDATE t2 SET c='five thousand two hundred eighty-one' WHERE a=5297; UPDATE t2 SET c='forty-two thousand three hundred twenty' WHERE a=5298; UPDATE t2 SET c='twenty-one thousand five hundred eighty-five' WHERE a=5299; UPDATE t2 SET c='sixty-four thousand three hundred eighty-nine' WHERE a=5300; UPDATE t2 SET c='twenty-eight thousand four hundred forty-six' WHERE a=5301; UPDATE t2 SET c='forty-six thousand seven hundred eighty-five' WHERE a=5302; UPDATE t2 SET c='seventy-three thousand forty-one' WHERE a=5303; UPDATE t2 SET c='thirteen thousand nine hundred thirty-nine' WHERE a=5304; UPDATE t2 SET c='forty-two thousand six hundred eleven' WHERE a=5305; UPDATE t2 SET c='seventy-one thousand ninety-one' WHERE a=5306; UPDATE t2 SET c='thirty-four thousand two hundred ninety-six' WHERE a=5307; UPDATE t2 SET c='seventy-six thousand four hundred sixty-seven' WHERE a=5308; UPDATE t2 SET c='fifty-five thousand three hundred eighty-three' WHERE a=5309; UPDATE t2 SET c='thirty-five thousand three hundred eighty-one' WHERE a=5310; UPDATE t2 SET c='seventy thousand three hundred sixty-eight' WHERE a=5311; UPDATE t2 SET c='seventy-eight thousand two hundred one' WHERE a=5312; UPDATE t2 SET c='eighty thousand eight hundred fifty' WHERE a=5313; UPDATE t2 SET c='fifty-one thousand seven hundred eighty' WHERE a=5314; UPDATE t2 SET c='forty-five thousand seven hundred eight' WHERE a=5315; UPDATE t2 SET c='fifty-one thousand nine hundred twenty-nine' WHERE a=5316; UPDATE t2 SET c='ninety-three thousand ninety-three' WHERE a=5317; UPDATE t2 SET c='seventy thousand one hundred eighteen' WHERE a=5318; UPDATE t2 SET c='forty-five thousand four hundred four' WHERE a=5319; UPDATE t2 SET c='thirteen thousand one hundred twenty-seven' WHERE a=5320; UPDATE t2 SET c='forty-nine thousand one hundred forty-five' WHERE a=5321; UPDATE t2 SET c='sixty-four thousand eight' WHERE a=5322; UPDATE t2 SET c='twenty-one thousand one hundred forty-six' WHERE a=5323; UPDATE t2 SET c='eighty-six thousand eight hundred seven' WHERE a=5324; UPDATE t2 SET c='six thousand four hundred eighty-three' WHERE a=5325; UPDATE t2 SET c='sixty-nine thousand three hundred sixteen' WHERE a=5326; UPDATE t2 SET c='fifty-one thousand eight hundred twenty-one' WHERE a=5327; UPDATE t2 SET c='sixteen thousand six hundred six' WHERE a=5328; UPDATE t2 SET c='sixty-seven thousand nine hundred ninety-four' WHERE a=5329; UPDATE t2 SET c='seventy-eight thousand four hundred eighty-one' WHERE a=5330; UPDATE t2 SET c='ninety-four thousand nine hundred seventeen' WHERE a=5331; UPDATE t2 SET c='nineteen thousand nine hundred two' WHERE a=5332; UPDATE t2 SET c='thirty-nine thousand two hundred nine' WHERE a=5333; UPDATE t2 SET c='eighteen thousand two hundred sixty-three' WHERE a=5334; UPDATE t2 SET c='eighteen thousand nine hundred fifty-five' WHERE a=5335; UPDATE t2 SET c='eighty-four thousand eight hundred eighty-nine' WHERE a=5336; UPDATE t2 SET c='sixty-nine thousand six hundred twenty-eight' WHERE a=5337; UPDATE t2 SET c='thirty-six thousand eight hundred fifty' WHERE a=5338; UPDATE t2 SET c='fifteen thousand six hundred thirty-five' WHERE a=5339; UPDATE t2 SET c='four thousand nine hundred forty-seven' WHERE a=5340; UPDATE t2 SET c='sixty-nine thousand five hundred ninety-eight' WHERE a=5341; UPDATE t2 SET c='twenty-seven thousand four hundred thirty' WHERE a=5342; UPDATE t2 SET c='nine thousand seven hundred eighty-five' WHERE a=5343; UPDATE t2 SET c='eighty-four thousand two hundred thirty-six' WHERE a=5344; UPDATE t2 SET c='ninety-seven thousand five hundred eighty-three' WHERE a=5345; UPDATE t2 SET c='sixty thousand nine hundred two' WHERE a=5346; UPDATE t2 SET c='sixty thousand four hundred forty-seven' WHERE a=5347; UPDATE t2 SET c='seventy-three thousand four hundred two' WHERE a=5348; UPDATE t2 SET c='twenty-five thousand forty-four' WHERE a=5349; UPDATE t2 SET c='thirty thousand forty-seven' WHERE a=5350; UPDATE t2 SET c='fourteen thousand four hundred fifty-four' WHERE a=5351; UPDATE t2 SET c='thirty-seven thousand five hundred ninety-one' WHERE a=5352; UPDATE t2 SET c='thirty-seven thousand eight hundred ninety-four' WHERE a=5353; UPDATE t2 SET c='forty-three thousand nine hundred eleven' WHERE a=5354; UPDATE t2 SET c='fifty-one thousand five hundred thirty-one' WHERE a=5355; UPDATE t2 SET c='fifty-six thousand three hundred fifty-six' WHERE a=5356; UPDATE t2 SET c='thirty-seven thousand nine hundred eighty-two' WHERE a=5357; UPDATE t2 SET c='thirty-one thousand six hundred eighty-six' WHERE a=5358; UPDATE t2 SET c='sixty thousand six' WHERE a=5359; UPDATE t2 SET c='sixty thousand nine hundred sixty-six' WHERE a=5360; UPDATE t2 SET c='eighty thousand six hundred twenty-two' WHERE a=5361; UPDATE t2 SET c='sixty-nine thousand five hundred ninety-eight' WHERE a=5362; UPDATE t2 SET c='sixty-five thousand three hundred eighteen' WHERE a=5363; UPDATE t2 SET c='forty-five thousand seven hundred sixty-five' WHERE a=5364; UPDATE t2 SET c='five thousand three hundred' WHERE a=5365; UPDATE t2 SET c='sixty-seven thousand eight hundred thirty-three' WHERE a=5366; UPDATE t2 SET c='three thousand eight hundred seventy' WHERE a=5367; UPDATE t2 SET c='eighty thousand four hundred nine' WHERE a=5368; UPDATE t2 SET c='ninety-four thousand four hundred thirty-nine' WHERE a=5369; UPDATE t2 SET c='twenty-six thousand one hundred sixty-five' WHERE a=5370; UPDATE t2 SET c='seventy-six thousand ninety-three' WHERE a=5371; UPDATE t2 SET c='sixty-two thousand two hundred forty-three' WHERE a=5372; UPDATE t2 SET c='twenty-two thousand one hundred eighty-five' WHERE a=5373; UPDATE t2 SET c='thirty thousand six hundred seventy-four' WHERE a=5374; UPDATE t2 SET c='three thousand nine hundred ninety-one' WHERE a=5375; UPDATE t2 SET c='fifty-six thousand six hundred six' WHERE a=5376; UPDATE t2 SET c='thirty thousand three hundred forty-two' WHERE a=5377; UPDATE t2 SET c='seventy-six thousand six hundred fifty-two' WHERE a=5378; UPDATE t2 SET c='ninety-five thousand one hundred forty-one' WHERE a=5379; UPDATE t2 SET c='eight thousand nine hundred seventy-five' WHERE a=5380; UPDATE t2 SET c='seventy-three thousand four hundred ten' WHERE a=5381; UPDATE t2 SET c='six thousand three hundred six' WHERE a=5382; UPDATE t2 SET c='sixty thousand six hundred twenty-seven' WHERE a=5383; UPDATE t2 SET c='thirty-four thousand sixty-two' WHERE a=5384; UPDATE t2 SET c='thirty-seven thousand five hundred forty-four' WHERE a=5385; UPDATE t2 SET c='thirty-three thousand nineteen' WHERE a=5386; UPDATE t2 SET c='seventy-five thousand nine hundred sixty-eight' WHERE a=5387; UPDATE t2 SET c='forty-four thousand nine hundred fourteen' WHERE a=5388; UPDATE t2 SET c='twenty-three thousand four hundred seventeen' WHERE a=5389; UPDATE t2 SET c='ninety-three thousand eight hundred seventy-five' WHERE a=5390; UPDATE t2 SET c='thirteen thousand ninety-one' WHERE a=5391; UPDATE t2 SET c='seventy-four thousand two hundred ninety-one' WHERE a=5392; UPDATE t2 SET c='forty-one thousand eleven' WHERE a=5393; UPDATE t2 SET c='eighty thousand five hundred twenty-three' WHERE a=5394; UPDATE t2 SET c='sixty-four thousand three hundred thirty' WHERE a=5395; UPDATE t2 SET c='sixty-one thousand four hundred thirty-five' WHERE a=5396; UPDATE t2 SET c='forty-six thousand six hundred ninety-three' WHERE a=5397; UPDATE t2 SET c='sixty-two thousand four hundred seventy-two' WHERE a=5398; UPDATE t2 SET c='seventy-eight thousand six hundred fifteen' WHERE a=5399; UPDATE t2 SET c='forty-six thousand nine hundred twenty-one' WHERE a=5400; UPDATE t2 SET c='thirteen thousand nine hundred two' WHERE a=5401; UPDATE t2 SET c='ninety-two thousand ninety-four' WHERE a=5402; UPDATE t2 SET c='sixty-four thousand five hundred ninety-four' WHERE a=5403; UPDATE t2 SET c='thirteen thousand two hundred ninety' WHERE a=5404; UPDATE t2 SET c='fourteen thousand one hundred sixty-two' WHERE a=5405; UPDATE t2 SET c='thirteen thousand two hundred sixty' WHERE a=5406; UPDATE t2 SET c='twenty-one thousand six hundred forty-four' WHERE a=5407; UPDATE t2 SET c='seventy-three thousand six hundred' WHERE a=5408; UPDATE t2 SET c='four hundred eighty-nine' WHERE a=5409; UPDATE t2 SET c='twenty-five thousand eight hundred fifty-seven' WHERE a=5410; UPDATE t2 SET c='sixty-seven thousand two hundred twenty-seven' WHERE a=5411; UPDATE t2 SET c='seventeen thousand three hundred four' WHERE a=5412; UPDATE t2 SET c='eighteen thousand ninety-four' WHERE a=5413; UPDATE t2 SET c='fifty thousand three hundred ninety-four' WHERE a=5414; UPDATE t2 SET c='one thousand three hundred twenty-six' WHERE a=5415; UPDATE t2 SET c='eighty-one thousand one hundred thirty' WHERE a=5416; UPDATE t2 SET c='eighty-seven thousand two hundred twenty-five' WHERE a=5417; UPDATE t2 SET c='eighty-nine thousand three hundred twelve' WHERE a=5418; UPDATE t2 SET c='thirty-eight thousand five hundred sixty-six' WHERE a=5419; UPDATE t2 SET c='forty-nine thousand nine hundred eighty-three' WHERE a=5420; UPDATE t2 SET c='sixty-nine thousand five hundred fifteen' WHERE a=5421; UPDATE t2 SET c='eighty-nine thousand nine hundred thirty-one' WHERE a=5422; UPDATE t2 SET c='twenty-two thousand four hundred seventy-six' WHERE a=5423; UPDATE t2 SET c='fifty-seven thousand seven hundred fifty-five' WHERE a=5424; UPDATE t2 SET c='seventy-one thousand nine hundred fifteen' WHERE a=5425; UPDATE t2 SET c='fifty-two thousand eight hundred fifty-nine' WHERE a=5426; UPDATE t2 SET c='two thousand two hundred ninety-eight' WHERE a=5427; UPDATE t2 SET c='forty-four thousand three hundred fifty-six' WHERE a=5428; UPDATE t2 SET c='sixty-six thousand three hundred forty' WHERE a=5429; UPDATE t2 SET c='seventy-six thousand seven hundred fifty-eight' WHERE a=5430; UPDATE t2 SET c='ninety-eight thousand three hundred twenty-seven' WHERE a=5431; UPDATE t2 SET c='ninety-two thousand twenty-two' WHERE a=5432; UPDATE t2 SET c='eighty-seven thousand two hundred seventy' WHERE a=5433; UPDATE t2 SET c='fifty-four thousand three hundred fifty-one' WHERE a=5434; UPDATE t2 SET c='forty-eight thousand eight hundred twenty-seven' WHERE a=5435; UPDATE t2 SET c='forty-seven thousand nine hundred one' WHERE a=5436; UPDATE t2 SET c='sixty-four thousand five hundred seventeen' WHERE a=5437; UPDATE t2 SET c='fifteen thousand nine hundred sixteen' WHERE a=5438; UPDATE t2 SET c='forty-six thousand four hundred seventy-five' WHERE a=5439; UPDATE t2 SET c='twenty-eight thousand thirty-seven' WHERE a=5440; UPDATE t2 SET c='seventy-four thousand six hundred sixty-three' WHERE a=5441; UPDATE t2 SET c='seventy-four thousand eight hundred sixty-four' WHERE a=5442; UPDATE t2 SET c='eighty-nine thousand eight hundred twenty-one' WHERE a=5443; UPDATE t2 SET c='seventy-seven thousand one hundred thirty-two' WHERE a=5444; UPDATE t2 SET c='twenty-seven thousand two hundred seventeen' WHERE a=5445; UPDATE t2 SET c='one thousand three hundred five' WHERE a=5446; UPDATE t2 SET c='fourteen thousand six hundred ninety-six' WHERE a=5447; UPDATE t2 SET c='sixty thousand five hundred thirty-three' WHERE a=5448; UPDATE t2 SET c='twenty-seven thousand two hundred sixty-two' WHERE a=5449; UPDATE t2 SET c='thirty-one thousand nine hundred fifty-eight' WHERE a=5450; UPDATE t2 SET c='sixty-four thousand seven hundred thirty' WHERE a=5451; UPDATE t2 SET c='sixty-one thousand nine hundred seventeen' WHERE a=5452; UPDATE t2 SET c='forty-eight thousand one hundred sixty-eight' WHERE a=5453; UPDATE t2 SET c='two thousand three hundred sixty-six' WHERE a=5454; UPDATE t2 SET c='five thousand three hundred forty-eight' WHERE a=5455; UPDATE t2 SET c='twenty thousand six hundred fifty-two' WHERE a=5456; UPDATE t2 SET c='ninety-five thousand four hundred forty-one' WHERE a=5457; UPDATE t2 SET c='forty-five thousand thirty-five' WHERE a=5458; UPDATE t2 SET c='forty thousand one hundred eighty-eight' WHERE a=5459; UPDATE t2 SET c='fifty-eight thousand two hundred five' WHERE a=5460; UPDATE t2 SET c='twenty-one thousand two hundred fifty-two' WHERE a=5461; UPDATE t2 SET c='seventy-six thousand one hundred fifty-five' WHERE a=5462; UPDATE t2 SET c='seventy-eight thousand six hundred thirty-three' WHERE a=5463; UPDATE t2 SET c='twenty-seven thousand three hundred forty' WHERE a=5464; UPDATE t2 SET c='seventy-one thousand four hundred eighty-four' WHERE a=5465; UPDATE t2 SET c='fifty-four thousand one hundred four' WHERE a=5466; UPDATE t2 SET c='seventeen thousand seven hundred forty-six' WHERE a=5467; UPDATE t2 SET c='thirty-eight thousand nine hundred sixty-four' WHERE a=5468; UPDATE t2 SET c='seventy-five thousand three hundred twenty-eight' WHERE a=5469; UPDATE t2 SET c='seventy-four thousand eight hundred nine' WHERE a=5470; UPDATE t2 SET c='twenty-eight thousand seven hundred thirty-seven' WHERE a=5471; UPDATE t2 SET c='eighty-one thousand two hundred seventy-two' WHERE a=5472; UPDATE t2 SET c='seventy-six thousand nine hundred nine' WHERE a=5473; UPDATE t2 SET c='twenty-three thousand sixty-six' WHERE a=5474; UPDATE t2 SET c='nineteen thousand two hundred twelve' WHERE a=5475; UPDATE t2 SET c='twenty-five thousand five hundred fifty' WHERE a=5476; UPDATE t2 SET c='twenty-six thousand eight hundred sixty-one' WHERE a=5477; UPDATE t2 SET c='fourteen thousand nine hundred seventeen' WHERE a=5478; UPDATE t2 SET c='seventy-six thousand three hundred thirty-five' WHERE a=5479; UPDATE t2 SET c='seventy thousand four hundred fifty-six' WHERE a=5480; UPDATE t2 SET c='sixty-eight thousand ninety-six' WHERE a=5481; UPDATE t2 SET c='sixty-three thousand two hundred ninety-three' WHERE a=5482; UPDATE t2 SET c='seventy-four thousand forty-six' WHERE a=5483; UPDATE t2 SET c='ninety-five thousand six hundred seventy-five' WHERE a=5484; UPDATE t2 SET c='forty-four thousand eight hundred nine' WHERE a=5485; UPDATE t2 SET c='thirty-six thousand six hundred sixty-six' WHERE a=5486; UPDATE t2 SET c='eighty-one thousand four hundred three' WHERE a=5487; UPDATE t2 SET c='one thousand seven hundred seventy-six' WHERE a=5488; UPDATE t2 SET c='nineteen thousand forty-eight' WHERE a=5489; UPDATE t2 SET c='thirty-six thousand one hundred forty-seven' WHERE a=5490; UPDATE t2 SET c='eleven thousand eight hundred seven' WHERE a=5491; UPDATE t2 SET c='sixty-three thousand four hundred forty-six' WHERE a=5492; UPDATE t2 SET c='twenty-four thousand six hundred seventy-six' WHERE a=5493; UPDATE t2 SET c='eighty-two thousand three hundred fifty-six' WHERE a=5494; UPDATE t2 SET c='four hundred nineteen' WHERE a=5495; UPDATE t2 SET c='sixty-nine thousand six hundred thirty-four' WHERE a=5496; UPDATE t2 SET c='seventy-five thousand one hundred fifty' WHERE a=5497; UPDATE t2 SET c='eighty thousand seven hundred fifty-six' WHERE a=5498; UPDATE t2 SET c='twenty-six thousand two hundred eighty-six' WHERE a=5499; UPDATE t2 SET c='seventy thousand seven hundred thirty-three' WHERE a=5500; UPDATE t2 SET c='thirty-two thousand three hundred twelve' WHERE a=5501; UPDATE t2 SET c='twenty-one thousand forty-nine' WHERE a=5502; UPDATE t2 SET c='fifty-seven thousand four hundred thirty-nine' WHERE a=5503; UPDATE t2 SET c='ninety-seven thousand five hundred nine' WHERE a=5504; UPDATE t2 SET c='fifty-seven thousand four hundred forty-eight' WHERE a=5505; UPDATE t2 SET c='fifty-seven thousand nine hundred thirty-five' WHERE a=5506; UPDATE t2 SET c='forty-four thousand eight hundred eighty-six' WHERE a=5507; UPDATE t2 SET c='eighty-four thousand fifty-two' WHERE a=5508; UPDATE t2 SET c='ten thousand five hundred thirty-eight' WHERE a=5509; UPDATE t2 SET c='seventy-two thousand two hundred thirty-six' WHERE a=5510; UPDATE t2 SET c='seventy-nine thousand two hundred eighty-five' WHERE a=5511; UPDATE t2 SET c='fifty thousand eight hundred eighty-two' WHERE a=5512; UPDATE t2 SET c='sixty-five thousand six hundred twenty-eight' WHERE a=5513; UPDATE t2 SET c='eighty-nine thousand four hundred twenty-two' WHERE a=5514; UPDATE t2 SET c='eighty-six thousand seven hundred eighty' WHERE a=5515; UPDATE t2 SET c='sixty-seven thousand three hundred forty' WHERE a=5516; UPDATE t2 SET c='thirteen thousand eight hundred thirty-three' WHERE a=5517; UPDATE t2 SET c='eighty-four thousand one hundred seventy-five' WHERE a=5518; UPDATE t2 SET c='sixty-three thousand two hundred eighty-nine' WHERE a=5519; UPDATE t2 SET c='twelve thousand six hundred five' WHERE a=5520; UPDATE t2 SET c='forty-six thousand three hundred sixty-three' WHERE a=5521; UPDATE t2 SET c='seventeen thousand one hundred sixty-nine' WHERE a=5522; UPDATE t2 SET c='ninety-three thousand five hundred forty' WHERE a=5523; UPDATE t2 SET c='twenty-three thousand seven hundred' WHERE a=5524; UPDATE t2 SET c='eighty-four thousand five hundred fifty-seven' WHERE a=5525; UPDATE t2 SET c='thirty-two thousand eight hundred seventy-five' WHERE a=5526; UPDATE t2 SET c='ninety-four thousand nine hundred ninety-three' WHERE a=5527; UPDATE t2 SET c='sixty-six thousand six hundred ninety-one' WHERE a=5528; UPDATE t2 SET c='eighty-nine thousand nine hundred thirty-four' WHERE a=5529; UPDATE t2 SET c='fifty thousand three hundred sixty-four' WHERE a=5530; UPDATE t2 SET c='thirteen thousand nine hundred seventy-two' WHERE a=5531; UPDATE t2 SET c='thirty-five thousand three hundred seventy-two' WHERE a=5532; UPDATE t2 SET c='sixty thousand three hundred sixty-eight' WHERE a=5533; UPDATE t2 SET c='sixty-six thousand eight hundred sixty-eight' WHERE a=5534; UPDATE t2 SET c='ninety-four thousand nine hundred fifty-eight' WHERE a=5535; UPDATE t2 SET c='thirty-seven thousand three hundred sixty-one' WHERE a=5536; UPDATE t2 SET c='forty-one thousand four hundred forty-four' WHERE a=5537; UPDATE t2 SET c='eighteen thousand four hundred' WHERE a=5538; UPDATE t2 SET c='fifty-one thousand one hundred sixty-eight' WHERE a=5539; UPDATE t2 SET c='twenty-six thousand twenty-six' WHERE a=5540; UPDATE t2 SET c='eighty-one thousand seven hundred nineteen' WHERE a=5541; UPDATE t2 SET c='twenty-one thousand eight hundred eighty-five' WHERE a=5542; UPDATE t2 SET c='fifty-one thousand one hundred ninety-eight' WHERE a=5543; UPDATE t2 SET c='forty-eight thousand one hundred eighty-three' WHERE a=5544; UPDATE t2 SET c='thirty-six thousand eighty-seven' WHERE a=5545; UPDATE t2 SET c='thirty-two thousand four hundred twenty-eight' WHERE a=5546; UPDATE t2 SET c='sixty-nine thousand four hundred ninety-six' WHERE a=5547; UPDATE t2 SET c='eighteen thousand five hundred twelve' WHERE a=5548; UPDATE t2 SET c='forty thousand eight hundred twenty' WHERE a=5549; UPDATE t2 SET c='ninety-nine thousand two hundred seventy' WHERE a=5550; UPDATE t2 SET c='eighty-two thousand one hundred seventy-eight' WHERE a=5551; UPDATE t2 SET c='ninety-four thousand twenty-seven' WHERE a=5552; UPDATE t2 SET c='twenty-eight thousand three hundred fifty-five' WHERE a=5553; UPDATE t2 SET c='sixty-six thousand five hundred sixty-one' WHERE a=5554; UPDATE t2 SET c='ninety-one thousand four hundred forty-two' WHERE a=5555; UPDATE t2 SET c='fifty-one thousand four hundred seventy-one' WHERE a=5556; UPDATE t2 SET c='fifty-seven thousand three hundred forty-six' WHERE a=5557; UPDATE t2 SET c='eighty-four thousand five hundred forty-five' WHERE a=5558; UPDATE t2 SET c='sixty-six thousand six hundred forty-six' WHERE a=5559; UPDATE t2 SET c='eighteen thousand six hundred forty-seven' WHERE a=5560; UPDATE t2 SET c='twenty thousand seven hundred fifty-nine' WHERE a=5561; UPDATE t2 SET c='fifty thousand two hundred ninety-two' WHERE a=5562; UPDATE t2 SET c='ninety-six thousand two hundred forty' WHERE a=5563; UPDATE t2 SET c='sixty-two thousand forty-six' WHERE a=5564; UPDATE t2 SET c='two thousand six hundred forty-one' WHERE a=5565; UPDATE t2 SET c='two thousand one hundred three' WHERE a=5566; UPDATE t2 SET c='eight thousand one hundred two' WHERE a=5567; UPDATE t2 SET c='two thousand six hundred fifty-eight' WHERE a=5568; UPDATE t2 SET c='seventy-three thousand four hundred seventy-eight' WHERE a=5569; UPDATE t2 SET c='fifty-nine thousand five hundred' WHERE a=5570; UPDATE t2 SET c='ninety-four thousand eight hundred thirteen' WHERE a=5571; UPDATE t2 SET c='twenty-three thousand two hundred sixty-seven' WHERE a=5572; UPDATE t2 SET c='six thousand nine hundred sixty-nine' WHERE a=5573; UPDATE t2 SET c='seventy-five thousand six hundred eighty-eight' WHERE a=5574; UPDATE t2 SET c='thirty-nine thousand ninety' WHERE a=5575; UPDATE t2 SET c='eleven thousand four hundred forty-one' WHERE a=5576; UPDATE t2 SET c='seventy thousand two hundred forty-nine' WHERE a=5577; UPDATE t2 SET c='sixty-eight thousand two hundred two' WHERE a=5578; UPDATE t2 SET c='sixty-five thousand nine hundred twelve' WHERE a=5579; UPDATE t2 SET c='sixty-five thousand seven hundred twenty-one' WHERE a=5580; UPDATE t2 SET c='seven thousand fifty-one' WHERE a=5581; UPDATE t2 SET c='ninety-seven thousand nine hundred eighty-four' WHERE a=5582; UPDATE t2 SET c='fifty-two thousand nine hundred eighty-three' WHERE a=5583; UPDATE t2 SET c='thirty-two thousand five hundred ninety-four' WHERE a=5584; UPDATE t2 SET c='seventy thousand seven hundred forty-one' WHERE a=5585; UPDATE t2 SET c='eighty-nine thousand six hundred fifty-six' WHERE a=5586; UPDATE t2 SET c='eighty-one thousand eight hundred ninety-three' WHERE a=5587; UPDATE t2 SET c='sixty-four thousand one hundred thirty-three' WHERE a=5588; UPDATE t2 SET c='forty-five thousand six hundred seventy' WHERE a=5589; UPDATE t2 SET c='sixteen thousand five hundred one' WHERE a=5590; UPDATE t2 SET c='forty-two thousand four hundred seventy-three' WHERE a=5591; UPDATE t2 SET c='thirty-three thousand seven hundred sixty' WHERE a=5592; UPDATE t2 SET c='seventy-two thousand seven hundred sixty' WHERE a=5593; UPDATE t2 SET c='sixty-five thousand two hundred nineteen' WHERE a=5594; UPDATE t2 SET c='ninety-seven thousand nine hundred four' WHERE a=5595; UPDATE t2 SET c='ninety-seven thousand one hundred thirty-two' WHERE a=5596; UPDATE t2 SET c='twenty-eight thousand one hundred eight' WHERE a=5597; UPDATE t2 SET c='seventeen thousand one hundred fifty-two' WHERE a=5598; UPDATE t2 SET c='thirty-one thousand three hundred fifty-three' WHERE a=5599; UPDATE t2 SET c='nine thousand nine hundred three' WHERE a=5600; UPDATE t2 SET c='ninety-eight thousand seven hundred ninety-nine' WHERE a=5601; UPDATE t2 SET c='twenty-four thousand seven hundred forty-four' WHERE a=5602; UPDATE t2 SET c='twenty-seven thousand seven hundred seventy-three' WHERE a=5603; UPDATE t2 SET c='fifty-one thousand two hundred sixty-seven' WHERE a=5604; UPDATE t2 SET c='one thousand seven hundred thirty-four' WHERE a=5605; UPDATE t2 SET c='nineteen thousand two' WHERE a=5606; UPDATE t2 SET c='sixteen thousand four hundred twenty-two' WHERE a=5607; UPDATE t2 SET c='twenty-three thousand eight hundred two' WHERE a=5608; UPDATE t2 SET c='eighty-one thousand nine hundred forty-four' WHERE a=5609; UPDATE t2 SET c='forty-six thousand two hundred sixty-seven' WHERE a=5610; UPDATE t2 SET c='thirty-eight thousand seven hundred twenty-seven' WHERE a=5611; UPDATE t2 SET c='seventeen thousand four hundred ninety-eight' WHERE a=5612; UPDATE t2 SET c='sixty-eight thousand five hundred eighty' WHERE a=5613; UPDATE t2 SET c='ninety-four thousand six hundred ninety-five' WHERE a=5614; UPDATE t2 SET c='seventy thousand four hundred eight' WHERE a=5615; UPDATE t2 SET c='ninety-six thousand six' WHERE a=5616; UPDATE t2 SET c='fifteen thousand three hundred twenty-eight' WHERE a=5617; UPDATE t2 SET c='twenty-three thousand three hundred forty-seven' WHERE a=5618; UPDATE t2 SET c='ninety thousand ninety-six' WHERE a=5619; UPDATE t2 SET c='ninety-seven thousand four hundred forty' WHERE a=5620; UPDATE t2 SET c='ninety-nine thousand five hundred eleven' WHERE a=5621; UPDATE t2 SET c='five thousand one hundred fifteen' WHERE a=5622; UPDATE t2 SET c='forty-five thousand five hundred seventy' WHERE a=5623; UPDATE t2 SET c='forty thousand nine hundred eighty-seven' WHERE a=5624; UPDATE t2 SET c='forty-six thousand five hundred seventy-seven' WHERE a=5625; UPDATE t2 SET c='fifteen thousand nine hundred thirty-nine' WHERE a=5626; UPDATE t2 SET c='two thousand nine hundred fifteen' WHERE a=5627; UPDATE t2 SET c='eighty-nine thousand seven hundred thirty-nine' WHERE a=5628; UPDATE t2 SET c='seventy-nine thousand four hundred seventy-four' WHERE a=5629; UPDATE t2 SET c='sixty thousand one hundred ninety-eight' WHERE a=5630; UPDATE t2 SET c='twenty-six thousand eight hundred fifty-three' WHERE a=5631; UPDATE t2 SET c='eighty-four thousand eighty-one' WHERE a=5632; UPDATE t2 SET c='eighty-nine thousand six hundred thirty-eight' WHERE a=5633; UPDATE t2 SET c='thirty thousand five hundred sixty' WHERE a=5634; UPDATE t2 SET c='fifty-nine thousand one hundred seventy-one' WHERE a=5635; UPDATE t2 SET c='eighty-eight thousand five' WHERE a=5636; UPDATE t2 SET c='forty-three thousand six hundred thirty-seven' WHERE a=5637; UPDATE t2 SET c='thirty-nine thousand four hundred ninety-two' WHERE a=5638; UPDATE t2 SET c='six thousand eight hundred twelve' WHERE a=5639; UPDATE t2 SET c='fifty-nine thousand one hundred sixty-one' WHERE a=5640; UPDATE t2 SET c='fifty-three thousand six hundred forty-nine' WHERE a=5641; UPDATE t2 SET c='eighty-seven thousand six hundred eighty-three' WHERE a=5642; UPDATE t2 SET c='ninety-seven thousand nine hundred forty-six' WHERE a=5643; UPDATE t2 SET c='ninety-three thousand nine hundred seven' WHERE a=5644; UPDATE t2 SET c='forty-nine thousand nine hundred twenty-nine' WHERE a=5645; UPDATE t2 SET c='eighty-two thousand two hundred fifty-seven' WHERE a=5646; UPDATE t2 SET c='thirty thousand eight hundred eighty-three' WHERE a=5647; UPDATE t2 SET c='twelve thousand seven hundred eighteen' WHERE a=5648; UPDATE t2 SET c='forty-three thousand five hundred seventy-eight' WHERE a=5649; UPDATE t2 SET c='sixteen thousand five hundred twenty' WHERE a=5650; UPDATE t2 SET c='fifteen thousand eight hundred sixty-seven' WHERE a=5651; UPDATE t2 SET c='eleven thousand three hundred ninety-one' WHERE a=5652; UPDATE t2 SET c='forty-two thousand seven hundred forty-five' WHERE a=5653; UPDATE t2 SET c='ninety-three thousand five hundred forty-seven' WHERE a=5654; UPDATE t2 SET c='twenty-five thousand one hundred seventy-eight' WHERE a=5655; UPDATE t2 SET c='nineteen thousand five hundred fifty-four' WHERE a=5656; UPDATE t2 SET c='fifty-one thousand three hundred eighty-five' WHERE a=5657; UPDATE t2 SET c='twenty-two thousand five hundred twenty-three' WHERE a=5658; UPDATE t2 SET c='six thousand four hundred seventy-one' WHERE a=5659; UPDATE t2 SET c='nine thousand seven hundred forty-five' WHERE a=5660; UPDATE t2 SET c='sixty-seven thousand ninety-nine' WHERE a=5661; UPDATE t2 SET c='sixty-two thousand one hundred two' WHERE a=5662; UPDATE t2 SET c='ninety-six thousand five hundred fifty-five' WHERE a=5663; UPDATE t2 SET c='thirty-seven thousand fifty-four' WHERE a=5664; UPDATE t2 SET c='ninety-eight thousand six hundred seven' WHERE a=5665; UPDATE t2 SET c='sixteen thousand five hundred forty-nine' WHERE a=5666; UPDATE t2 SET c='twenty thousand seven hundred fifty-one' WHERE a=5667; UPDATE t2 SET c='forty-one thousand nine hundred one' WHERE a=5668; UPDATE t2 SET c='fifty-two thousand three hundred forty' WHERE a=5669; UPDATE t2 SET c='seventy-three thousand seven hundred ninety-four' WHERE a=5670; UPDATE t2 SET c='fifty thousand one hundred nineteen' WHERE a=5671; UPDATE t2 SET c='two thousand fifty' WHERE a=5672; UPDATE t2 SET c='seventy thousand four hundred fifty' WHERE a=5673; UPDATE t2 SET c='ninety-three thousand seventy-five' WHERE a=5674; UPDATE t2 SET c='three thousand five hundred seventy-seven' WHERE a=5675; UPDATE t2 SET c='thirty-eight thousand eight hundred ninety-nine' WHERE a=5676; UPDATE t2 SET c='sixty-six thousand one hundred seventy-five' WHERE a=5677; UPDATE t2 SET c='thirty-eight thousand nine hundred twenty-eight' WHERE a=5678; UPDATE t2 SET c='forty-five thousand ninety-six' WHERE a=5679; UPDATE t2 SET c='forty-four thousand nine hundred seventy-nine' WHERE a=5680; UPDATE t2 SET c='sixty-six thousand two hundred forty-two' WHERE a=5681; UPDATE t2 SET c='ninety-five thousand six hundred sixty-eight' WHERE a=5682; UPDATE t2 SET c='eighty-one thousand five hundred eighty' WHERE a=5683; UPDATE t2 SET c='six thousand eight hundred ten' WHERE a=5684; UPDATE t2 SET c='thirty-two thousand four hundred thirty-six' WHERE a=5685; UPDATE t2 SET c='eighty thousand four hundred seventy-two' WHERE a=5686; UPDATE t2 SET c='sixty-six thousand nine hundred eighty-three' WHERE a=5687; UPDATE t2 SET c='thirteen thousand eight hundred twenty-two' WHERE a=5688; UPDATE t2 SET c='eighty-five thousand one hundred six' WHERE a=5689; UPDATE t2 SET c='sixty-two thousand five hundred twenty-nine' WHERE a=5690; UPDATE t2 SET c='eleven thousand eighty-nine' WHERE a=5691; UPDATE t2 SET c='four thousand one hundred sixty-five' WHERE a=5692; UPDATE t2 SET c='ninety-three thousand fifteen' WHERE a=5693; UPDATE t2 SET c='six thousand three hundred seven' WHERE a=5694; UPDATE t2 SET c='fifty-seven thousand nine hundred sixty-two' WHERE a=5695; UPDATE t2 SET c='seventy thousand eight hundred forty-two' WHERE a=5696; UPDATE t2 SET c='thirty-eight thousand three hundred forty-six' WHERE a=5697; UPDATE t2 SET c='twenty-four thousand nine hundred twelve' WHERE a=5698; UPDATE t2 SET c='seventy-eight thousand four hundred twenty-three' WHERE a=5699; UPDATE t2 SET c='forty-four thousand ninety-one' WHERE a=5700; UPDATE t2 SET c='twenty-five thousand four hundred fifty-three' WHERE a=5701; UPDATE t2 SET c='thirty-two thousand nine hundred thirty-four' WHERE a=5702; UPDATE t2 SET c='one hundred eighty-five' WHERE a=5703; UPDATE t2 SET c='seventy-eight thousand three hundred sixty-six' WHERE a=5704; UPDATE t2 SET c='ninety-eight thousand six hundred five' WHERE a=5705; UPDATE t2 SET c='thirty-three thousand forty-nine' WHERE a=5706; UPDATE t2 SET c='twenty-six thousand seventy-one' WHERE a=5707; UPDATE t2 SET c='thirty thousand five hundred eighty-two' WHERE a=5708; UPDATE t2 SET c='eighty-one thousand one hundred eighty-two' WHERE a=5709; UPDATE t2 SET c='forty-four thousand one hundred sixty-three' WHERE a=5710; UPDATE t2 SET c='forty-five thousand one hundred eighty-five' WHERE a=5711; UPDATE t2 SET c='twenty-nine thousand six hundred eleven' WHERE a=5712; UPDATE t2 SET c='fourteen thousand three hundred thirty-three' WHERE a=5713; UPDATE t2 SET c='fifty-four thousand one hundred thirty-three' WHERE a=5714; UPDATE t2 SET c='thirty-five thousand nine hundred twenty-seven' WHERE a=5715; UPDATE t2 SET c='ninety-four thousand five hundred sixty-three' WHERE a=5716; UPDATE t2 SET c='fifty thousand four hundred one' WHERE a=5717; UPDATE t2 SET c='forty-eight thousand nine hundred thirty-one' WHERE a=5718; UPDATE t2 SET c='twenty-three thousand seven hundred sixty-one' WHERE a=5719; UPDATE t2 SET c='eighty-one thousand eight hundred thirty-six' WHERE a=5720; UPDATE t2 SET c='forty-one thousand seven hundred twenty-five' WHERE a=5721; UPDATE t2 SET c='eighty-four thousand nine hundred eleven' WHERE a=5722; UPDATE t2 SET c='ninety-three thousand one hundred forty-two' WHERE a=5723; UPDATE t2 SET c='forty-three thousand sixty-five' WHERE a=5724; UPDATE t2 SET c='seventy-two thousand one hundred fifteen' WHERE a=5725; UPDATE t2 SET c='seventy-five thousand five hundred sixty-six' WHERE a=5726; UPDATE t2 SET c='twenty-four thousand four hundred fifty-nine' WHERE a=5727; UPDATE t2 SET c='forty-three thousand thirty-two' WHERE a=5728; UPDATE t2 SET c='seventy-three thousand four hundred two' WHERE a=5729; UPDATE t2 SET c='seventy-seven thousand seventy-four' WHERE a=5730; UPDATE t2 SET c='nineteen thousand nine hundred ninety-four' WHERE a=5731; UPDATE t2 SET c='fifty-seven thousand two hundred eighty-five' WHERE a=5732; UPDATE t2 SET c='seventeen thousand five hundred thirty-nine' WHERE a=5733; UPDATE t2 SET c='twenty-one thousand eight hundred ninety-eight' WHERE a=5734; UPDATE t2 SET c='eighty thousand two hundred ninety-nine' WHERE a=5735; UPDATE t2 SET c='eighty-six thousand three hundred eighty-seven' WHERE a=5736; UPDATE t2 SET c='three thousand three hundred twenty-five' WHERE a=5737; UPDATE t2 SET c='sixty-two thousand forty-eight' WHERE a=5738; UPDATE t2 SET c='twenty-one thousand seven hundred seventy-one' WHERE a=5739; UPDATE t2 SET c='eight thousand two hundred eight' WHERE a=5740; UPDATE t2 SET c='fifty-four thousand three hundred' WHERE a=5741; UPDATE t2 SET c='ninety-two thousand seven hundred thirty-seven' WHERE a=5742; UPDATE t2 SET c='eighteen thousand three hundred eighty-seven' WHERE a=5743; UPDATE t2 SET c='thirty-six thousand six hundred eighty-five' WHERE a=5744; UPDATE t2 SET c='forty-nine thousand nine hundred seventy-one' WHERE a=5745; UPDATE t2 SET c='five thousand nine hundred eighty-eight' WHERE a=5746; UPDATE t2 SET c='ninety-nine thousand eight hundred fifty-three' WHERE a=5747; UPDATE t2 SET c='sixty-seven thousand one hundred seventy-nine' WHERE a=5748; UPDATE t2 SET c='thirty-three thousand six hundred twenty-five' WHERE a=5749; UPDATE t2 SET c='sixty-nine thousand nine hundred ninety-eight' WHERE a=5750; UPDATE t2 SET c='seventy-three thousand two hundred eighty-six' WHERE a=5751; UPDATE t2 SET c='seventy thousand four hundred thirty-two' WHERE a=5752; UPDATE t2 SET c='fifty-one thousand eight hundred seventy-two' WHERE a=5753; UPDATE t2 SET c='ninety-three thousand five hundred eighteen' WHERE a=5754; UPDATE t2 SET c='ninety-one thousand one hundred fifty-two' WHERE a=5755; UPDATE t2 SET c='thirty-four thousand two hundred forty-two' WHERE a=5756; UPDATE t2 SET c='seventy-five thousand three hundred ninety-four' WHERE a=5757; UPDATE t2 SET c='ninety thousand two hundred four' WHERE a=5758; UPDATE t2 SET c='eighty thousand nine hundred fifty-three' WHERE a=5759; UPDATE t2 SET c='fifty-four thousand nine hundred nineteen' WHERE a=5760; UPDATE t2 SET c='ninety-two thousand four hundred sixty-nine' WHERE a=5761; UPDATE t2 SET c='ten thousand two hundred sixteen' WHERE a=5762; UPDATE t2 SET c='forty-four thousand one hundred thirty-five' WHERE a=5763; UPDATE t2 SET c='eighty-eight thousand nine hundred forty-seven' WHERE a=5764; UPDATE t2 SET c='fourteen thousand two hundred fifty-one' WHERE a=5765; UPDATE t2 SET c='eighty-eight thousand twenty-six' WHERE a=5766; UPDATE t2 SET c='thirty-two thousand four hundred fifty-nine' WHERE a=5767; UPDATE t2 SET c='ninety-four thousand five hundred forty-three' WHERE a=5768; UPDATE t2 SET c='sixty-nine thousand three hundred eighty' WHERE a=5769; UPDATE t2 SET c='twenty-three thousand three hundred eighty-eight' WHERE a=5770; UPDATE t2 SET c='twenty-four thousand three hundred twenty-five' WHERE a=5771; UPDATE t2 SET c='twenty-one thousand five hundred eighty' WHERE a=5772; UPDATE t2 SET c='fifty-nine thousand four hundred sixty-seven' WHERE a=5773; UPDATE t2 SET c='fifty-three thousand eight hundred ninety-two' WHERE a=5774; UPDATE t2 SET c='forty-three thousand one hundred eighty' WHERE a=5775; UPDATE t2 SET c='ninety-nine thousand seven hundred thirty-eight' WHERE a=5776; UPDATE t2 SET c='ninety-one thousand seven hundred sixteen' WHERE a=5777; UPDATE t2 SET c='eighteen thousand two hundred one' WHERE a=5778; UPDATE t2 SET c='seventy-five thousand eight hundred sixteen' WHERE a=5779; UPDATE t2 SET c='three thousand five hundred twenty-five' WHERE a=5780; UPDATE t2 SET c='thirty-nine thousand two hundred seventy-two' WHERE a=5781; UPDATE t2 SET c='seventy-five thousand seven hundred ninety-two' WHERE a=5782; UPDATE t2 SET c='sixty-one thousand five hundred forty-three' WHERE a=5783; UPDATE t2 SET c='twenty-one thousand one hundred three' WHERE a=5784; UPDATE t2 SET c='eighty-three thousand nine hundred forty-six' WHERE a=5785; UPDATE t2 SET c='forty-one thousand seven hundred seven' WHERE a=5786; UPDATE t2 SET c='fifty-two thousand eight hundred ninety-six' WHERE a=5787; UPDATE t2 SET c='nine thousand three hundred' WHERE a=5788; UPDATE t2 SET c='seventy-seven thousand eighty-three' WHERE a=5789; UPDATE t2 SET c='sixty-seven thousand four hundred fifty-four' WHERE a=5790; UPDATE t2 SET c='thirty-nine thousand nine hundred eighty-seven' WHERE a=5791; UPDATE t2 SET c='eighteen thousand seven hundred thirty-three' WHERE a=5792; UPDATE t2 SET c='eight thousand four hundred forty-nine' WHERE a=5793; UPDATE t2 SET c='thirty-eight thousand one hundred forty-nine' WHERE a=5794; UPDATE t2 SET c='fifteen thousand three hundred eighty-eight' WHERE a=5795; UPDATE t2 SET c='seventy-nine thousand six hundred ninety-five' WHERE a=5796; UPDATE t2 SET c='ninety-nine thousand six hundred ninety-two' WHERE a=5797; UPDATE t2 SET c='thirty-seven thousand fifty' WHERE a=5798; UPDATE t2 SET c='fourteen thousand eight hundred eleven' WHERE a=5799; UPDATE t2 SET c='ninety-five thousand three hundred sixty-six' WHERE a=5800; UPDATE t2 SET c='thirty-nine thousand six hundred thirty-two' WHERE a=5801; UPDATE t2 SET c='eighteen thousand nine hundred eighty-nine' WHERE a=5802; UPDATE t2 SET c='eighty-one thousand five hundred eighteen' WHERE a=5803; UPDATE t2 SET c='seventy-six thousand three hundred eighty-eight' WHERE a=5804; UPDATE t2 SET c='eighty-nine thousand two hundred forty-six' WHERE a=5805; UPDATE t2 SET c='thirty-two thousand twenty-three' WHERE a=5806; UPDATE t2 SET c='forty-one thousand nine hundred forty-three' WHERE a=5807; UPDATE t2 SET c='forty-eight thousand four hundred sixty-five' WHERE a=5808; UPDATE t2 SET c='ninety-eight thousand eight hundred fifty' WHERE a=5809; UPDATE t2 SET c='thirty-four thousand eight hundred twenty-five' WHERE a=5810; UPDATE t2 SET c='sixty-six thousand sixty' WHERE a=5811; UPDATE t2 SET c='sixty-five thousand eight hundred seventy-two' WHERE a=5812; UPDATE t2 SET c='eighty-four thousand four hundred seventy-eight' WHERE a=5813; UPDATE t2 SET c='twenty-nine thousand seven hundred forty-eight' WHERE a=5814; UPDATE t2 SET c='thirty-nine thousand nine hundred eighty-eight' WHERE a=5815; UPDATE t2 SET c='sixty-five thousand nine hundred sixty-three' WHERE a=5816; UPDATE t2 SET c='seventy thousand one hundred eighty-three' WHERE a=5817; UPDATE t2 SET c='twenty thousand two hundred thirty-three' WHERE a=5818; UPDATE t2 SET c='forty-nine thousand four hundred ninety-four' WHERE a=5819; UPDATE t2 SET c='seventy-five thousand five hundred seventy-four' WHERE a=5820; UPDATE t2 SET c='forty-six thousand seven hundred fifty-four' WHERE a=5821; UPDATE t2 SET c='thirty-three thousand four hundred seventy-two' WHERE a=5822; UPDATE t2 SET c='sixty-five thousand three hundred seventy-six' WHERE a=5823; UPDATE t2 SET c='eleven thousand one hundred eighty-one' WHERE a=5824; UPDATE t2 SET c='twenty-four thousand eight hundred ninety-one' WHERE a=5825; UPDATE t2 SET c='seventy-six thousand eighteen' WHERE a=5826; UPDATE t2 SET c='thirty-two thousand seven hundred twenty-three' WHERE a=5827; UPDATE t2 SET c='four thousand four hundred seventeen' WHERE a=5828; UPDATE t2 SET c='forty-eight thousand three hundred three' WHERE a=5829; UPDATE t2 SET c='sixty-two thousand two hundred forty-one' WHERE a=5830; UPDATE t2 SET c='thirty-four thousand six hundred forty-one' WHERE a=5831; UPDATE t2 SET c='nineteen thousand four hundred eighty-five' WHERE a=5832; UPDATE t2 SET c='fifty-five thousand three hundred sixty-six' WHERE a=5833; UPDATE t2 SET c='eighty-five thousand nine hundred ninety-seven' WHERE a=5834; UPDATE t2 SET c='ninety-six thousand seventy-five' WHERE a=5835; UPDATE t2 SET c='fifty thousand one hundred' WHERE a=5836; UPDATE t2 SET c='ninety-one thousand six hundred sixty-two' WHERE a=5837; UPDATE t2 SET c='seventy-one thousand four hundred nine' WHERE a=5838; UPDATE t2 SET c='fifty-one thousand seven hundred twelve' WHERE a=5839; UPDATE t2 SET c='forty-two thousand four hundred eighteen' WHERE a=5840; UPDATE t2 SET c='eleven thousand four hundred seventy-three' WHERE a=5841; UPDATE t2 SET c='eighty-five thousand three hundred thirty-seven' WHERE a=5842; UPDATE t2 SET c='twenty-six thousand four hundred fifty-one' WHERE a=5843; UPDATE t2 SET c='eighty thousand six hundred twenty-four' WHERE a=5844; UPDATE t2 SET c='ninety-eight thousand six hundred thirteen' WHERE a=5845; UPDATE t2 SET c='eighty-five thousand seventy' WHERE a=5846; UPDATE t2 SET c='fifty-eight thousand five hundred sixty-six' WHERE a=5847; UPDATE t2 SET c='sixty-four thousand eight hundred sixteen' WHERE a=5848; UPDATE t2 SET c='forty-seven thousand nine hundred fifty-nine' WHERE a=5849; UPDATE t2 SET c='fifty-one thousand seven hundred eight' WHERE a=5850; UPDATE t2 SET c='seventy thousand seven hundred twenty-nine' WHERE a=5851; UPDATE t2 SET c='seventy-seven thousand seven hundred twenty-eight' WHERE a=5852; UPDATE t2 SET c='sixteen thousand one hundred twelve' WHERE a=5853; UPDATE t2 SET c='eighty-nine thousand four hundred twenty' WHERE a=5854; UPDATE t2 SET c='thirty-one thousand two hundred eight' WHERE a=5855; UPDATE t2 SET c='ninety-seven thousand seven hundred six' WHERE a=5856; UPDATE t2 SET c='ninety-four thousand eight hundred four' WHERE a=5857; UPDATE t2 SET c='thirteen thousand two hundred ninety' WHERE a=5858; UPDATE t2 SET c='eighty-three thousand eight hundred twenty-four' WHERE a=5859; UPDATE t2 SET c='fifty-eight thousand three hundred sixty-nine' WHERE a=5860; UPDATE t2 SET c='sixty-eight thousand three hundred twenty-two' WHERE a=5861; UPDATE t2 SET c='eight thousand three hundred six' WHERE a=5862; UPDATE t2 SET c='sixty-six thousand forty-four' WHERE a=5863; UPDATE t2 SET c='seventy-five thousand nine hundred ninety-eight' WHERE a=5864; UPDATE t2 SET c='eighty thousand eight hundred fifty-two' WHERE a=5865; UPDATE t2 SET c='fifty-nine thousand six hundred thirty-seven' WHERE a=5866; UPDATE t2 SET c='sixty-eight thousand eight hundred seventy-nine' WHERE a=5867; UPDATE t2 SET c='three thousand two hundred six' WHERE a=5868; UPDATE t2 SET c='seventy-five thousand two hundred ninety-eight' WHERE a=5869; UPDATE t2 SET c='thirty-one thousand four hundred fifty-seven' WHERE a=5870; UPDATE t2 SET c='seventy thousand two hundred seventy-one' WHERE a=5871; UPDATE t2 SET c='eighty-three thousand sixty-four' WHERE a=5872; UPDATE t2 SET c='forty-eight thousand six hundred ten' WHERE a=5873; UPDATE t2 SET c='seventy-seven thousand four hundred thirty-five' WHERE a=5874; UPDATE t2 SET c='fifty thousand nine hundred sixty-five' WHERE a=5875; UPDATE t2 SET c='forty-eight thousand one hundred sixty-eight' WHERE a=5876; UPDATE t2 SET c='thirty-one thousand ninety-two' WHERE a=5877; UPDATE t2 SET c='four thousand two hundred ninety-seven' WHERE a=5878; UPDATE t2 SET c='forty-four thousand two hundred thirty' WHERE a=5879; UPDATE t2 SET c='thirty-one thousand four hundred sixty-five' WHERE a=5880; UPDATE t2 SET c='thirty-nine thousand forty-seven' WHERE a=5881; UPDATE t2 SET c='twenty thousand five hundred ninety-eight' WHERE a=5882; UPDATE t2 SET c='ninety-four thousand eight hundred forty-two' WHERE a=5883; UPDATE t2 SET c='eighty thousand one hundred seventy' WHERE a=5884; UPDATE t2 SET c='twenty-four thousand thirteen' WHERE a=5885; UPDATE t2 SET c='sixty-four thousand four hundred fifty' WHERE a=5886; UPDATE t2 SET c='seventy-five thousand three hundred fifty-eight' WHERE a=5887; UPDATE t2 SET c='forty-four thousand two hundred thirty-seven' WHERE a=5888; UPDATE t2 SET c='sixty-nine thousand ninety-one' WHERE a=5889; UPDATE t2 SET c='sixty-three thousand nine hundred fifty-three' WHERE a=5890; UPDATE t2 SET c='fifty thousand five hundred seventeen' WHERE a=5891; UPDATE t2 SET c='twelve thousand six hundred sixty-five' WHERE a=5892; UPDATE t2 SET c='thirty-nine thousand four hundred seventy-three' WHERE a=5893; UPDATE t2 SET c='eighty-five thousand seven hundred sixty-two' WHERE a=5894; UPDATE t2 SET c='ninety-four thousand one hundred forty-six' WHERE a=5895; UPDATE t2 SET c='five thousand eight hundred twenty-seven' WHERE a=5896; UPDATE t2 SET c='twenty thousand one hundred thirty-eight' WHERE a=5897; UPDATE t2 SET c='thirty-one thousand one hundred eighteen' WHERE a=5898; UPDATE t2 SET c='thirteen thousand one hundred' WHERE a=5899; UPDATE t2 SET c='sixty-three thousand two hundred seventy-six' WHERE a=5900; UPDATE t2 SET c='seventy-seven thousand nine hundred twenty-eight' WHERE a=5901; UPDATE t2 SET c='thirty-seven thousand two hundred ten' WHERE a=5902; UPDATE t2 SET c='ninety-three thousand five hundred eighty-six' WHERE a=5903; UPDATE t2 SET c='eighty-two thousand one hundred fifteen' WHERE a=5904; UPDATE t2 SET c='ten thousand seven hundred thirty-eight' WHERE a=5905; UPDATE t2 SET c='sixty thousand nine hundred eighty-five' WHERE a=5906; UPDATE t2 SET c='ninety-eight thousand five hundred fifty' WHERE a=5907; UPDATE t2 SET c='six hundred seventy-six' WHERE a=5908; UPDATE t2 SET c='eleven thousand eight hundred eighty-six' WHERE a=5909; UPDATE t2 SET c='ninety-five thousand seven hundred twenty-seven' WHERE a=5910; UPDATE t2 SET c='sixty thousand eight hundred sixty-two' WHERE a=5911; UPDATE t2 SET c='eighty-two thousand five hundred seventy-six' WHERE a=5912; UPDATE t2 SET c='thirteen thousand nine hundred seventy-three' WHERE a=5913; UPDATE t2 SET c='seventy thousand five hundred eighty-two' WHERE a=5914; UPDATE t2 SET c='eighty-five thousand two hundred fifty-three' WHERE a=5915; UPDATE t2 SET c='fifty-six thousand seven hundred thirty-four' WHERE a=5916; UPDATE t2 SET c='forty-two thousand five hundred ninety-five' WHERE a=5917; UPDATE t2 SET c='fifty-three thousand two hundred thirty-six' WHERE a=5918; UPDATE t2 SET c='fifty-five thousand four hundred three' WHERE a=5919; UPDATE t2 SET c='thirty-eight thousand six hundred fifty-eight' WHERE a=5920; UPDATE t2 SET c='ninety-three thousand four hundred thirty-nine' WHERE a=5921; UPDATE t2 SET c='fifty-four thousand eight hundred sixty-five' WHERE a=5922; UPDATE t2 SET c='eighty-seven thousand nine hundred thirty-one' WHERE a=5923; UPDATE t2 SET c='thirty-three thousand six hundred thirty-two' WHERE a=5924; UPDATE t2 SET c='two thousand one hundred fifty-one' WHERE a=5925; UPDATE t2 SET c='eighty-five thousand seventy-two' WHERE a=5926; UPDATE t2 SET c='forty-five thousand six hundred sixty-two' WHERE a=5927; UPDATE t2 SET c='ten thousand four hundred ninety' WHERE a=5928; UPDATE t2 SET c='ninety-nine thousand seven hundred ninety-six' WHERE a=5929; UPDATE t2 SET c='thirty-eight thousand two hundred eighty-seven' WHERE a=5930; UPDATE t2 SET c='eleven thousand four hundred forty-eight' WHERE a=5931; UPDATE t2 SET c='sixty-seven thousand three hundred seventy-one' WHERE a=5932; UPDATE t2 SET c='fifty-three thousand three hundred fifty-five' WHERE a=5933; UPDATE t2 SET c='forty-eight thousand six hundred eleven' WHERE a=5934; UPDATE t2 SET c='thirty-nine thousand two hundred thirty-four' WHERE a=5935; UPDATE t2 SET c='twenty-four thousand five hundred thirty-six' WHERE a=5936; UPDATE t2 SET c='four thousand eight hundred eighty' WHERE a=5937; UPDATE t2 SET c='five thousand one hundred ninety-seven' WHERE a=5938; UPDATE t2 SET c='sixty-eight thousand six hundred seventy' WHERE a=5939; UPDATE t2 SET c='thirty-nine thousand nine hundred forty-three' WHERE a=5940; UPDATE t2 SET c='twenty thousand one hundred sixty' WHERE a=5941; UPDATE t2 SET c='twenty-seven thousand three hundred forty' WHERE a=5942; UPDATE t2 SET c='thirty-one thousand three hundred three' WHERE a=5943; UPDATE t2 SET c='ninety-five thousand one hundred eighteen' WHERE a=5944; UPDATE t2 SET c='ten thousand seven hundred eleven' WHERE a=5945; UPDATE t2 SET c='five thousand nine hundred fifty' WHERE a=5946; UPDATE t2 SET c='nineteen thousand nine hundred forty-four' WHERE a=5947; UPDATE t2 SET c='ninety-six thousand eight hundred fifty-five' WHERE a=5948; UPDATE t2 SET c='sixty-one thousand five hundred two' WHERE a=5949; UPDATE t2 SET c='eighty-five thousand three hundred seventy-one' WHERE a=5950; UPDATE t2 SET c='forty-nine thousand three hundred eighty-six' WHERE a=5951; UPDATE t2 SET c='seventy-six thousand one hundred thirty-three' WHERE a=5952; UPDATE t2 SET c='eighty-seven thousand one hundred fifty' WHERE a=5953; UPDATE t2 SET c='thirty-three thousand nine hundred five' WHERE a=5954; UPDATE t2 SET c='sixty-four thousand thirty' WHERE a=5955; UPDATE t2 SET c='two thousand seven hundred thirty-two' WHERE a=5956; UPDATE t2 SET c='seventy-two thousand two hundred thirty-two' WHERE a=5957; UPDATE t2 SET c='sixty-six thousand nine hundred twenty-nine' WHERE a=5958; UPDATE t2 SET c='twenty-eight thousand seven hundred fifty-three' WHERE a=5959; UPDATE t2 SET c='seventy-six thousand two hundred thirty-eight' WHERE a=5960; UPDATE t2 SET c='thirty-five thousand four hundred forty-two' WHERE a=5961; UPDATE t2 SET c='forty-six thousand three hundred fifty-three' WHERE a=5962; UPDATE t2 SET c='fifty-three thousand three hundred thirty-nine' WHERE a=5963; UPDATE t2 SET c='eighty-one thousand seven hundred thirty-three' WHERE a=5964; UPDATE t2 SET c='ninety-three thousand one hundred ninety-six' WHERE a=5965; UPDATE t2 SET c='ninety thousand seven hundred seventy-nine' WHERE a=5966; UPDATE t2 SET c='ninety-two thousand two hundred twenty-eight' WHERE a=5967; UPDATE t2 SET c='seventy-five thousand five hundred thirty' WHERE a=5968; UPDATE t2 SET c='sixty-six thousand nine hundred thirty-seven' WHERE a=5969; UPDATE t2 SET c='two thousand five hundred forty-one' WHERE a=5970; UPDATE t2 SET c='thirty-one thousand four hundred' WHERE a=5971; UPDATE t2 SET c='sixty-six thousand eight hundred forty-two' WHERE a=5972; UPDATE t2 SET c='four thousand three hundred seventy-seven' WHERE a=5973; UPDATE t2 SET c='sixty thousand four hundred ten' WHERE a=5974; UPDATE t2 SET c='three thousand eight hundred thirty-seven' WHERE a=5975; UPDATE t2 SET c='ninety-nine thousand nine hundred twenty-four' WHERE a=5976; UPDATE t2 SET c='sixty-eight thousand one hundred fifty' WHERE a=5977; UPDATE t2 SET c='forty-nine thousand six hundred ninety-five' WHERE a=5978; UPDATE t2 SET c='two thousand two hundred thirty-four' WHERE a=5979; UPDATE t2 SET c='eight thousand eight hundred eighty-three' WHERE a=5980; UPDATE t2 SET c='seventy thousand thirteen' WHERE a=5981; UPDATE t2 SET c='forty-seven thousand eight hundred fourteen' WHERE a=5982; UPDATE t2 SET c='five thousand nine hundred forty-one' WHERE a=5983; UPDATE t2 SET c='nine thousand six hundred thirty' WHERE a=5984; UPDATE t2 SET c='five thousand four hundred nineteen' WHERE a=5985; UPDATE t2 SET c='ninety-seven thousand eight hundred thirty-seven' WHERE a=5986; UPDATE t2 SET c='forty-seven thousand two hundred six' WHERE a=5987; UPDATE t2 SET c='thirty-three thousand three hundred sixty-five' WHERE a=5988; UPDATE t2 SET c='twenty-one thousand two hundred fifty-four' WHERE a=5989; UPDATE t2 SET c='twenty-one thousand sixty-five' WHERE a=5990; UPDATE t2 SET c='forty-six thousand seven hundred sixty-four' WHERE a=5991; UPDATE t2 SET c='seventy thousand one hundred ninety-nine' WHERE a=5992; UPDATE t2 SET c='sixty-one thousand one hundred fifty-two' WHERE a=5993; UPDATE t2 SET c='sixty-one thousand two hundred sixty-four' WHERE a=5994; UPDATE t2 SET c='thirty-nine thousand five hundred fifteen' WHERE a=5995; UPDATE t2 SET c='eighty-four thousand six hundred ninety-five' WHERE a=5996; UPDATE t2 SET c='ninety-six thousand four hundred seventy-three' WHERE a=5997; UPDATE t2 SET c='ninety-six thousand nine hundred five' WHERE a=5998; UPDATE t2 SET c='forty-three thousand five hundred forty-four' WHERE a=5999; UPDATE t2 SET c='four thousand eight hundred ninety-five' WHERE a=6000; UPDATE t2 SET c='seventy thousand eight hundred seventy' WHERE a=6001; UPDATE t2 SET c='forty-two thousand seven hundred twenty-six' WHERE a=6002; UPDATE t2 SET c='sixty-four thousand three hundred eighty-four' WHERE a=6003; UPDATE t2 SET c='thirty thousand three hundred thirty-six' WHERE a=6004; UPDATE t2 SET c='eighty thousand seven hundred fifty-four' WHERE a=6005; UPDATE t2 SET c='six thousand seventy-seven' WHERE a=6006; UPDATE t2 SET c='thirty-two thousand nine hundred' WHERE a=6007; UPDATE t2 SET c='one thousand six hundred seventy-three' WHERE a=6008; UPDATE t2 SET c='forty-six thousand two hundred seven' WHERE a=6009; UPDATE t2 SET c='forty-six thousand nine hundred seventy-seven' WHERE a=6010; UPDATE t2 SET c='forty-three thousand one hundred ninety' WHERE a=6011; UPDATE t2 SET c='nineteen thousand five hundred twenty-seven' WHERE a=6012; UPDATE t2 SET c='ninety-eight thousand five hundred seventy-five' WHERE a=6013; UPDATE t2 SET c='seventy-one thousand nine hundred nineteen' WHERE a=6014; UPDATE t2 SET c='forty-four thousand eight hundred five' WHERE a=6015; UPDATE t2 SET c='one hundred two' WHERE a=6016; UPDATE t2 SET c='forty-one thousand three hundred thirty' WHERE a=6017; UPDATE t2 SET c='sixteen thousand forty-five' WHERE a=6018; UPDATE t2 SET c='seventy-one thousand seven hundred forty-three' WHERE a=6019; UPDATE t2 SET c='eighty-nine thousand three hundred eighty-six' WHERE a=6020; UPDATE t2 SET c='fifty thousand four hundred seventy-three' WHERE a=6021; UPDATE t2 SET c='forty-four thousand six hundred sixty-four' WHERE a=6022; UPDATE t2 SET c='ninety-seven thousand two hundred fourteen' WHERE a=6023; UPDATE t2 SET c='ninety-four thousand one hundred forty-two' WHERE a=6024; UPDATE t2 SET c='sixty-four thousand one hundred thirteen' WHERE a=6025; UPDATE t2 SET c='eleven thousand two hundred one' WHERE a=6026; UPDATE t2 SET c='seventy-three thousand seven hundred ninety-one' WHERE a=6027; UPDATE t2 SET c='eighty-nine thousand five hundred ninety-five' WHERE a=6028; UPDATE t2 SET c='five hundred nine' WHERE a=6029; UPDATE t2 SET c='sixty-one thousand seven hundred thirty-one' WHERE a=6030; UPDATE t2 SET c='six thousand four hundred twenty-seven' WHERE a=6031; UPDATE t2 SET c='ninety-four thousand eight hundred seventy-eight' WHERE a=6032; UPDATE t2 SET c='ninety-seven thousand four hundred forty-four' WHERE a=6033; UPDATE t2 SET c='sixty-eight thousand six hundred sixty-eight' WHERE a=6034; UPDATE t2 SET c='twenty-six thousand three' WHERE a=6035; UPDATE t2 SET c='forty-four thousand seven hundred sixty' WHERE a=6036; UPDATE t2 SET c='seventy thousand ninety-two' WHERE a=6037; UPDATE t2 SET c='ninety-nine thousand seven hundred fifty-six' WHERE a=6038; UPDATE t2 SET c='forty-nine thousand eight hundred thirty-six' WHERE a=6039; UPDATE t2 SET c='seventy thousand nine hundred twenty-four' WHERE a=6040; UPDATE t2 SET c='forty-one thousand two' WHERE a=6041; UPDATE t2 SET c='eighty-one thousand six hundred forty-one' WHERE a=6042; UPDATE t2 SET c='thirty-two thousand four hundred one' WHERE a=6043; UPDATE t2 SET c='sixty-four thousand one hundred ninety-six' WHERE a=6044; UPDATE t2 SET c='fifteen thousand six hundred seventy-two' WHERE a=6045; UPDATE t2 SET c='forty-one thousand fifteen' WHERE a=6046; UPDATE t2 SET c='ninety-eight thousand nine hundred eighty-seven' WHERE a=6047; UPDATE t2 SET c='forty thousand two hundred sixty-two' WHERE a=6048; UPDATE t2 SET c='twenty-one thousand nine hundred one' WHERE a=6049; UPDATE t2 SET c='forty-nine thousand four hundred two' WHERE a=6050; UPDATE t2 SET c='five thousand seven hundred sixty-eight' WHERE a=6051; UPDATE t2 SET c='eighty-nine thousand four hundred thirty' WHERE a=6052; UPDATE t2 SET c='fourteen thousand nine hundred sixty-nine' WHERE a=6053; UPDATE t2 SET c='fifty-nine thousand five hundred sixty-four' WHERE a=6054; UPDATE t2 SET c='ninety-five thousand four hundred eighty-nine' WHERE a=6055; UPDATE t2 SET c='thirty-six thousand four hundred' WHERE a=6056; UPDATE t2 SET c='twenty-seven thousand six hundred five' WHERE a=6057; UPDATE t2 SET c='seventeen thousand' WHERE a=6058; UPDATE t2 SET c='thirty-five thousand four hundred eighty-three' WHERE a=6059; UPDATE t2 SET c='eight thousand one hundred fifty-seven' WHERE a=6060; UPDATE t2 SET c='seventy-three thousand eight hundred seventy' WHERE a=6061; UPDATE t2 SET c='seventy-eight thousand six hundred fifty-seven' WHERE a=6062; UPDATE t2 SET c='seventy-one thousand three hundred forty-six' WHERE a=6063; UPDATE t2 SET c='sixty-four thousand twenty-two' WHERE a=6064; UPDATE t2 SET c='eleven thousand two hundred forty-two' WHERE a=6065; UPDATE t2 SET c='eighty-five thousand four hundred ninety-nine' WHERE a=6066; UPDATE t2 SET c='twenty thousand two hundred sixty-nine' WHERE a=6067; UPDATE t2 SET c='seventy-four thousand four hundred seventy-five' WHERE a=6068; UPDATE t2 SET c='thirty-one thousand two hundred fifty-two' WHERE a=6069; UPDATE t2 SET c='twenty-seven thousand ninety-four' WHERE a=6070; UPDATE t2 SET c='five thousand twenty-six' WHERE a=6071; UPDATE t2 SET c='twenty-five thousand four hundred forty-two' WHERE a=6072; UPDATE t2 SET c='forty-seven thousand nine hundred fifty-two' WHERE a=6073; UPDATE t2 SET c='twenty-nine thousand eighty-nine' WHERE a=6074; UPDATE t2 SET c='fifty-five thousand nine hundred twenty-six' WHERE a=6075; UPDATE t2 SET c='twenty-six thousand seven hundred sixty-four' WHERE a=6076; UPDATE t2 SET c='seventeen thousand seven hundred thirty-three' WHERE a=6077; UPDATE t2 SET c='fifteen thousand five hundred forty' WHERE a=6078; UPDATE t2 SET c='twenty-two thousand one hundred forty-six' WHERE a=6079; UPDATE t2 SET c='seventy-three thousand five hundred ninety-two' WHERE a=6080; UPDATE t2 SET c='five thousand four' WHERE a=6081; UPDATE t2 SET c='forty-seven thousand three hundred ninety-six' WHERE a=6082; UPDATE t2 SET c='thirty-seven thousand seven hundred eighty-five' WHERE a=6083; UPDATE t2 SET c='thirteen thousand four hundred fifty-two' WHERE a=6084; UPDATE t2 SET c='seventy-three thousand eight hundred forty-two' WHERE a=6085; UPDATE t2 SET c='seventy-seven thousand five hundred ninety-nine' WHERE a=6086; UPDATE t2 SET c='seventy-six thousand nine hundred sixty-nine' WHERE a=6087; UPDATE t2 SET c='eighty-five thousand seven hundred thirty-four' WHERE a=6088; UPDATE t2 SET c='sixty-three thousand seven hundred sixty-nine' WHERE a=6089; UPDATE t2 SET c='ninety-three thousand one hundred thirty-four' WHERE a=6090; UPDATE t2 SET c='seventy-one thousand six hundred twenty-three' WHERE a=6091; UPDATE t2 SET c='sixty-five thousand eight hundred forty' WHERE a=6092; UPDATE t2 SET c='one thousand one hundred eighty-three' WHERE a=6093; UPDATE t2 SET c='sixty-one thousand nine hundred thirty-two' WHERE a=6094; UPDATE t2 SET c='eighty-one thousand nine hundred twenty' WHERE a=6095; UPDATE t2 SET c='twenty-one thousand five hundred thirty-four' WHERE a=6096; UPDATE t2 SET c='sixty-eight thousand twelve' WHERE a=6097; UPDATE t2 SET c='twenty-one thousand seven hundred twenty-three' WHERE a=6098; UPDATE t2 SET c='three thousand two hundred ninety-seven' WHERE a=6099; UPDATE t2 SET c='ninety-three thousand five hundred seventy-eight' WHERE a=6100; UPDATE t2 SET c='forty-nine thousand four hundred forty-nine' WHERE a=6101; UPDATE t2 SET c='eighty-five thousand seven hundred eighteen' WHERE a=6102; UPDATE t2 SET c='sixty-five thousand seven hundred ten' WHERE a=6103; UPDATE t2 SET c='fifty thousand four hundred thirty-five' WHERE a=6104; UPDATE t2 SET c='fifty-five thousand fifty-three' WHERE a=6105; UPDATE t2 SET c='ninety-six thousand seven hundred sixty-three' WHERE a=6106; UPDATE t2 SET c='seventy-six thousand one hundred eighty-six' WHERE a=6107; UPDATE t2 SET c='forty-one thousand seven hundred eleven' WHERE a=6108; UPDATE t2 SET c='seventy-four thousand eight hundred ninety-nine' WHERE a=6109; UPDATE t2 SET c='three thousand seven hundred seventy-eight' WHERE a=6110; UPDATE t2 SET c='fifty-nine thousand three hundred thirty-one' WHERE a=6111; UPDATE t2 SET c='six thousand eight hundred ninety-one' WHERE a=6112; UPDATE t2 SET c='thirty-four thousand seven hundred seventy-eight' WHERE a=6113; UPDATE t2 SET c='ninety-five thousand eight hundred fifteen' WHERE a=6114; UPDATE t2 SET c='fifty-four thousand five hundred eighty-three' WHERE a=6115; UPDATE t2 SET c='thirty-four thousand two hundred sixty-two' WHERE a=6116; UPDATE t2 SET c='sixty-eight thousand three hundred forty-nine' WHERE a=6117; UPDATE t2 SET c='sixty-five thousand eight hundred thirty-eight' WHERE a=6118; UPDATE t2 SET c='forty-eight thousand seven hundred seventeen' WHERE a=6119; UPDATE t2 SET c='twenty-eight thousand two hundred twenty' WHERE a=6120; UPDATE t2 SET c='seventy-six thousand two hundred four' WHERE a=6121; UPDATE t2 SET c='fifteen thousand one hundred ninety-seven' WHERE a=6122; UPDATE t2 SET c='seventy-three thousand seven hundred two' WHERE a=6123; UPDATE t2 SET c='fifty thousand two hundred twenty-two' WHERE a=6124; UPDATE t2 SET c='twenty-six thousand seventy-six' WHERE a=6125; UPDATE t2 SET c='thirty-one thousand eight hundred five' WHERE a=6126; UPDATE t2 SET c='eighty-two thousand eight hundred forty-seven' WHERE a=6127; UPDATE t2 SET c='seventy-one thousand nine hundred thirteen' WHERE a=6128; UPDATE t2 SET c='fifty-four thousand four hundred twenty-seven' WHERE a=6129; UPDATE t2 SET c='forty-one thousand eight hundred eighty-seven' WHERE a=6130; UPDATE t2 SET c='forty-eight thousand one hundred forty' WHERE a=6131; UPDATE t2 SET c='seventy-six thousand three hundred twenty-seven' WHERE a=6132; UPDATE t2 SET c='seventy thousand twenty-one' WHERE a=6133; UPDATE t2 SET c='ninety-two thousand seven hundred ninety-five' WHERE a=6134; UPDATE t2 SET c='forty-seven thousand six hundred fifty-three' WHERE a=6135; UPDATE t2 SET c='fifty-two thousand nine hundred nine' WHERE a=6136; UPDATE t2 SET c='sixty thousand one hundred fifty-five' WHERE a=6137; UPDATE t2 SET c='twenty-five thousand five hundred forty-seven' WHERE a=6138; UPDATE t2 SET c='seventy-eight thousand two hundred nine' WHERE a=6139; UPDATE t2 SET c='eighty-five thousand eight hundred sixty-eight' WHERE a=6140; UPDATE t2 SET c='eighty-nine thousand two hundred forty-nine' WHERE a=6141; UPDATE t2 SET c='ninety-five thousand one hundred fifty-nine' WHERE a=6142; UPDATE t2 SET c='sixty-two thousand one hundred ninety-one' WHERE a=6143; UPDATE t2 SET c='twenty-one thousand four hundred ten' WHERE a=6144; UPDATE t2 SET c='ninety-seven thousand four hundred thirty-five' WHERE a=6145; UPDATE t2 SET c='forty-eight thousand four hundred fifty-eight' WHERE a=6146; UPDATE t2 SET c='forty-six thousand six hundred forty-four' WHERE a=6147; UPDATE t2 SET c='seventy-nine thousand five hundred thirty-six' WHERE a=6148; UPDATE t2 SET c='forty-nine thousand nine hundred thirty-four' WHERE a=6149; UPDATE t2 SET c='fifty thousand nine hundred' WHERE a=6150; UPDATE t2 SET c='ninety-five thousand nine hundred twenty-two' WHERE a=6151; UPDATE t2 SET c='seven thousand nine hundred forty-four' WHERE a=6152; UPDATE t2 SET c='sixty-nine thousand forty-four' WHERE a=6153; UPDATE t2 SET c='thirty-nine thousand eight hundred thirty-six' WHERE a=6154; UPDATE t2 SET c='fifty-one thousand forty-three' WHERE a=6155; UPDATE t2 SET c='sixty-three thousand two hundred seventy-two' WHERE a=6156; UPDATE t2 SET c='thirty thousand three hundred six' WHERE a=6157; UPDATE t2 SET c='eighty-six thousand four hundred sixty-five' WHERE a=6158; UPDATE t2 SET c='eighty-eight thousand eight hundred eighty-three' WHERE a=6159; UPDATE t2 SET c='thirty-eight thousand four hundred eighty-six' WHERE a=6160; UPDATE t2 SET c='twenty-five thousand two hundred fifty-five' WHERE a=6161; UPDATE t2 SET c='seventy-two thousand nine hundred' WHERE a=6162; UPDATE t2 SET c='ninety-five thousand two hundred eighty-two' WHERE a=6163; UPDATE t2 SET c='fifty-two thousand seven hundred seven' WHERE a=6164; UPDATE t2 SET c='three thousand seven hundred ninety-one' WHERE a=6165; UPDATE t2 SET c='sixty-nine thousand seven hundred twenty-seven' WHERE a=6166; UPDATE t2 SET c='eighty-five thousand eight hundred seventy' WHERE a=6167; UPDATE t2 SET c='twenty-nine thousand four hundred eighty-seven' WHERE a=6168; UPDATE t2 SET c='thirty-seven thousand twenty-one' WHERE a=6169; UPDATE t2 SET c='twenty-two thousand one hundred forty-three' WHERE a=6170; UPDATE t2 SET c='thirty-four thousand eight hundred seven' WHERE a=6171; UPDATE t2 SET c='ninety-one thousand two hundred thirty-nine' WHERE a=6172; UPDATE t2 SET c='twenty thousand three hundred seventy' WHERE a=6173; UPDATE t2 SET c='ninety-one thousand six hundred ninety-six' WHERE a=6174; UPDATE t2 SET c='seventy-eight thousand six hundred thirty-three' WHERE a=6175; UPDATE t2 SET c='eighty-nine thousand twenty-seven' WHERE a=6176; UPDATE t2 SET c='twenty-six thousand eight hundred forty-four' WHERE a=6177; UPDATE t2 SET c='ninety-six thousand nine hundred eighty-eight' WHERE a=6178; UPDATE t2 SET c='twenty-eight thousand three hundred seventy-three' WHERE a=6179; UPDATE t2 SET c='fifty-five thousand six hundred ninety' WHERE a=6180; UPDATE t2 SET c='eleven thousand one hundred ninety-two' WHERE a=6181; UPDATE t2 SET c='seventy-one thousand six hundred six' WHERE a=6182; UPDATE t2 SET c='sixteen thousand four hundred fifteen' WHERE a=6183; UPDATE t2 SET c='eighty-two thousand six hundred fifty-three' WHERE a=6184; UPDATE t2 SET c='fifty-one thousand two hundred seventy-four' WHERE a=6185; UPDATE t2 SET c='fifty-five thousand three hundred twenty-eight' WHERE a=6186; UPDATE t2 SET c='thirty-three thousand four hundred forty-three' WHERE a=6187; UPDATE t2 SET c='twenty-nine thousand three hundred fifty-eight' WHERE a=6188; UPDATE t2 SET c='sixty-nine thousand three hundred eighteen' WHERE a=6189; UPDATE t2 SET c='thirty-two thousand five hundred ninety-three' WHERE a=6190; UPDATE t2 SET c='seventy-eight thousand three hundred forty-seven' WHERE a=6191; UPDATE t2 SET c='thirty-two thousand eight hundred seventy-seven' WHERE a=6192; UPDATE t2 SET c='fourteen thousand three hundred ninety' WHERE a=6193; UPDATE t2 SET c='forty-eight thousand six hundred forty-six' WHERE a=6194; UPDATE t2 SET c='forty-six thousand five hundred ten' WHERE a=6195; UPDATE t2 SET c='eighteen thousand nine hundred seventy-nine' WHERE a=6196; UPDATE t2 SET c='seventy-five thousand seven hundred eighty-two' WHERE a=6197; UPDATE t2 SET c='forty-eight thousand one hundred seventy-six' WHERE a=6198; UPDATE t2 SET c='sixty-eight thousand seven hundred sixty-four' WHERE a=6199; UPDATE t2 SET c='ninety-seven thousand eight hundred eighteen' WHERE a=6200; UPDATE t2 SET c='twenty-six thousand two hundred five' WHERE a=6201; UPDATE t2 SET c='eighty-six thousand one hundred thirty-eight' WHERE a=6202; UPDATE t2 SET c='eighty-eight thousand eighty-nine' WHERE a=6203; UPDATE t2 SET c='seventy-four thousand six hundred ninety' WHERE a=6204; UPDATE t2 SET c='forty thousand eighty-five' WHERE a=6205; UPDATE t2 SET c='seventy-one thousand three hundred twenty-one' WHERE a=6206; UPDATE t2 SET c='ninety-eight thousand two hundred thirteen' WHERE a=6207; UPDATE t2 SET c='twenty-two thousand five' WHERE a=6208; UPDATE t2 SET c='seventy thousand three hundred ninety-seven' WHERE a=6209; UPDATE t2 SET c='nine thousand eight hundred eleven' WHERE a=6210; UPDATE t2 SET c='twenty-five thousand seventy-five' WHERE a=6211; UPDATE t2 SET c='fifty-four thousand nine hundred twenty' WHERE a=6212; UPDATE t2 SET c='ninety-three thousand one hundred sixty-four' WHERE a=6213; UPDATE t2 SET c='eleven thousand four hundred fifty-two' WHERE a=6214; UPDATE t2 SET c='thirty-eight thousand eight hundred sixty-nine' WHERE a=6215; UPDATE t2 SET c='ninety thousand seven hundred twenty-three' WHERE a=6216; UPDATE t2 SET c='sixty-four thousand four hundred eighty-one' WHERE a=6217; UPDATE t2 SET c='fifty-three thousand three hundred thirty-three' WHERE a=6218; UPDATE t2 SET c='forty-eight thousand sixty-six' WHERE a=6219; UPDATE t2 SET c='thirty-two thousand one hundred sixty-eight' WHERE a=6220; UPDATE t2 SET c='forty thousand seven hundred three' WHERE a=6221; UPDATE t2 SET c='three thousand seven hundred nine' WHERE a=6222; UPDATE t2 SET c='thirty-four thousand nine hundred thirty-five' WHERE a=6223; UPDATE t2 SET c='twenty-nine thousand six hundred six' WHERE a=6224; UPDATE t2 SET c='twenty-nine thousand thirteen' WHERE a=6225; UPDATE t2 SET c='sixty-nine thousand six hundred sixty-three' WHERE a=6226; UPDATE t2 SET c='thirteen thousand four hundred eighty-three' WHERE a=6227; UPDATE t2 SET c='seventy-seven thousand nine hundred forty-two' WHERE a=6228; UPDATE t2 SET c='ninety-four thousand thirty-one' WHERE a=6229; UPDATE t2 SET c='twenty-four thousand nine hundred eleven' WHERE a=6230; UPDATE t2 SET c='fifty-two thousand six hundred sixty-four' WHERE a=6231; UPDATE t2 SET c='forty-two thousand eight hundred twenty-one' WHERE a=6232; UPDATE t2 SET c='seventy-seven thousand three hundred forty' WHERE a=6233; UPDATE t2 SET c='seventy-four thousand one hundred twelve' WHERE a=6234; UPDATE t2 SET c='one thousand five hundred seventy' WHERE a=6235; UPDATE t2 SET c='seventy-five thousand three hundred seventy-one' WHERE a=6236; UPDATE t2 SET c='nineteen thousand nine hundred twenty-four' WHERE a=6237; UPDATE t2 SET c='seventy-six thousand nine hundred' WHERE a=6238; UPDATE t2 SET c='ninety-nine thousand four hundred ninety-nine' WHERE a=6239; UPDATE t2 SET c='seventy thousand seven hundred thirty-seven' WHERE a=6240; UPDATE t2 SET c='eighty-eight thousand four hundred nine' WHERE a=6241; UPDATE t2 SET c='thirteen thousand three hundred thirty-four' WHERE a=6242; UPDATE t2 SET c='twenty-eight thousand four hundred six' WHERE a=6243; UPDATE t2 SET c='ninety-seven thousand eight hundred five' WHERE a=6244; UPDATE t2 SET c='twelve thousand six hundred fifty-five' WHERE a=6245; UPDATE t2 SET c='fourteen thousand eight hundred ninety-five' WHERE a=6246; UPDATE t2 SET c='eighteen thousand four hundred sixty-six' WHERE a=6247; UPDATE t2 SET c='eighty-nine thousand one hundred four' WHERE a=6248; UPDATE t2 SET c='sixty-two thousand seven hundred ninety-six' WHERE a=6249; UPDATE t2 SET c='forty-one thousand eight hundred fifty-eight' WHERE a=6250; UPDATE t2 SET c='twenty-two thousand eight hundred ninety-two' WHERE a=6251; UPDATE t2 SET c='thirty thousand eight hundred ninety-one' WHERE a=6252; UPDATE t2 SET c='seventy-one thousand seven hundred eighteen' WHERE a=6253; UPDATE t2 SET c='eighty-nine thousand nine hundred seventy-two' WHERE a=6254; UPDATE t2 SET c='sixty-three thousand two hundred sixty-one' WHERE a=6255; UPDATE t2 SET c='thirty-one thousand three hundred fourteen' WHERE a=6256; UPDATE t2 SET c='ninety-four thousand seven hundred' WHERE a=6257; UPDATE t2 SET c='forty-five thousand eight hundred one' WHERE a=6258; UPDATE t2 SET c='sixty-one thousand twelve' WHERE a=6259; UPDATE t2 SET c='fifty-seven thousand seven hundred sixty-two' WHERE a=6260; UPDATE t2 SET c='four thousand six hundred fifty-nine' WHERE a=6261; UPDATE t2 SET c='fifty-six thousand seventy-six' WHERE a=6262; UPDATE t2 SET c='fifty-six thousand five hundred forty' WHERE a=6263; UPDATE t2 SET c='seventy-one thousand nine hundred forty-eight' WHERE a=6264; UPDATE t2 SET c='thirty thousand six hundred seventy' WHERE a=6265; UPDATE t2 SET c='sixteen thousand six hundred forty-three' WHERE a=6266; UPDATE t2 SET c='nine thousand sixty-seven' WHERE a=6267; UPDATE t2 SET c='twenty-eight thousand five hundred thirty-four' WHERE a=6268; UPDATE t2 SET c='fifty-one thousand nine hundred two' WHERE a=6269; UPDATE t2 SET c='twenty-nine thousand two hundred thirty-four' WHERE a=6270; UPDATE t2 SET c='eighteen thousand two hundred sixty' WHERE a=6271; UPDATE t2 SET c='thirty-eight thousand one hundred twenty-one' WHERE a=6272; UPDATE t2 SET c='seventy-three thousand four hundred twelve' WHERE a=6273; UPDATE t2 SET c='three thousand two hundred eighty-seven' WHERE a=6274; UPDATE t2 SET c='seven thousand six hundred forty' WHERE a=6275; UPDATE t2 SET c='forty-two thousand three hundred thirty-six' WHERE a=6276; UPDATE t2 SET c='forty-one thousand five hundred fifty-seven' WHERE a=6277; UPDATE t2 SET c='eighty-three thousand three hundred seventy-four' WHERE a=6278; UPDATE t2 SET c='ninety-five thousand five hundred nine' WHERE a=6279; UPDATE t2 SET c='eighty-one thousand eight hundred sixty-nine' WHERE a=6280; UPDATE t2 SET c='thirty-four thousand six hundred fifteen' WHERE a=6281; UPDATE t2 SET c='forty-one thousand seven hundred thirty-seven' WHERE a=6282; UPDATE t2 SET c='thirty-six thousand six hundred forty-six' WHERE a=6283; UPDATE t2 SET c='fifty-six thousand six hundred seventy-four' WHERE a=6284; UPDATE t2 SET c='eighty-four thousand eight hundred thirty-eight' WHERE a=6285; UPDATE t2 SET c='twenty-four thousand three hundred forty-nine' WHERE a=6286; UPDATE t2 SET c='eighty-one thousand nine hundred eighty-one' WHERE a=6287; UPDATE t2 SET c='twenty-five thousand four hundred fifty-two' WHERE a=6288; UPDATE t2 SET c='seventeen thousand nine hundred sixty-four' WHERE a=6289; UPDATE t2 SET c='sixty-six thousand nine hundred thirty-three' WHERE a=6290; UPDATE t2 SET c='seventy-four thousand seven hundred seventy-seven' WHERE a=6291; UPDATE t2 SET c='one thousand four hundred twenty-nine' WHERE a=6292; UPDATE t2 SET c='nineteen thousand six hundred eleven' WHERE a=6293; UPDATE t2 SET c='thirty-four thousand four hundred ten' WHERE a=6294; UPDATE t2 SET c='forty-three thousand four hundred fifty-seven' WHERE a=6295; UPDATE t2 SET c='ninety-three thousand three hundred ninety' WHERE a=6296; UPDATE t2 SET c='eighty-six thousand three hundred ninety-six' WHERE a=6297; UPDATE t2 SET c='fifty-nine thousand six hundred fifteen' WHERE a=6298; UPDATE t2 SET c='eighty-six thousand seven hundred fifty-six' WHERE a=6299; UPDATE t2 SET c='one thousand one hundred ninety-nine' WHERE a=6300; UPDATE t2 SET c='fifty-seven thousand eight hundred seventeen' WHERE a=6301; UPDATE t2 SET c='four thousand four hundred seventy' WHERE a=6302; UPDATE t2 SET c='forty-six thousand nine hundred forty-seven' WHERE a=6303; UPDATE t2 SET c='sixty-three thousand seven hundred thirty-five' WHERE a=6304; UPDATE t2 SET c='thirty-six thousand four hundred two' WHERE a=6305; UPDATE t2 SET c='twelve thousand nine hundred eighty-five' WHERE a=6306; UPDATE t2 SET c='forty-five thousand one hundred seventy-five' WHERE a=6307; UPDATE t2 SET c='fifty-one thousand five hundred fifteen' WHERE a=6308; UPDATE t2 SET c='seventy-eight thousand three hundred eighty-five' WHERE a=6309; UPDATE t2 SET c='fifty-four thousand six hundred twenty-one' WHERE a=6310; UPDATE t2 SET c='fifty-four thousand five hundred sixty-five' WHERE a=6311; UPDATE t2 SET c='twenty-six thousand nine hundred fifty-eight' WHERE a=6312; UPDATE t2 SET c='fifty thousand thirty-two' WHERE a=6313; UPDATE t2 SET c='twenty-nine thousand nine hundred fifty-eight' WHERE a=6314; UPDATE t2 SET c='four thousand seven hundred forty-seven' WHERE a=6315; UPDATE t2 SET c='seventeen thousand sixty-four' WHERE a=6316; UPDATE t2 SET c='sixty-one thousand two hundred eighteen' WHERE a=6317; UPDATE t2 SET c='three hundred thirty-seven' WHERE a=6318; UPDATE t2 SET c='seven thousand two hundred ninety-seven' WHERE a=6319; UPDATE t2 SET c='sixty-three thousand two hundred eighty-six' WHERE a=6320; UPDATE t2 SET c='sixty-six thousand three hundred ninety-six' WHERE a=6321; UPDATE t2 SET c='thirty-nine thousand seven hundred two' WHERE a=6322; UPDATE t2 SET c='forty-five thousand five hundred twenty-two' WHERE a=6323; UPDATE t2 SET c='forty thousand five hundred seventy-two' WHERE a=6324; UPDATE t2 SET c='four thousand two hundred forty-five' WHERE a=6325; UPDATE t2 SET c='sixty-one thousand nine hundred' WHERE a=6326; UPDATE t2 SET c='fifty-seven thousand six hundred sixty-nine' WHERE a=6327; UPDATE t2 SET c='thirteen thousand five hundred eight' WHERE a=6328; UPDATE t2 SET c='fifty-six thousand nine hundred two' WHERE a=6329; UPDATE t2 SET c='twenty-one thousand three hundred seventy-five' WHERE a=6330; UPDATE t2 SET c='seventy-five thousand two hundred thirty-seven' WHERE a=6331; UPDATE t2 SET c='fifty-four thousand five hundred fifty-five' WHERE a=6332; UPDATE t2 SET c='thirty-six thousand three hundred twenty-four' WHERE a=6333; UPDATE t2 SET c='thirty-nine thousand three hundred ninety-six' WHERE a=6334; UPDATE t2 SET c='fifty thousand four hundred eight' WHERE a=6335; UPDATE t2 SET c='twenty-five thousand five hundred thirty-six' WHERE a=6336; UPDATE t2 SET c='twenty-five thousand one hundred twenty-eight' WHERE a=6337; UPDATE t2 SET c='thirty-nine thousand sixty-nine' WHERE a=6338; UPDATE t2 SET c='eighteen thousand nine hundred ninety-eight' WHERE a=6339; UPDATE t2 SET c='twenty thousand six hundred thirty' WHERE a=6340; UPDATE t2 SET c='ninety-nine thousand forty-seven' WHERE a=6341; UPDATE t2 SET c='nine thousand four hundred sixty' WHERE a=6342; UPDATE t2 SET c='thirty-one thousand four hundred eighteen' WHERE a=6343; UPDATE t2 SET c='forty-six thousand four hundred sixty-six' WHERE a=6344; UPDATE t2 SET c='eighty-two thousand eight hundred seven' WHERE a=6345; UPDATE t2 SET c='eleven thousand three hundred three' WHERE a=6346; UPDATE t2 SET c='ninety-eight thousand nine hundred sixty-five' WHERE a=6347; UPDATE t2 SET c='sixty-eight thousand seven hundred' WHERE a=6348; UPDATE t2 SET c='seventy-nine thousand nine hundred eighty-seven' WHERE a=6349; UPDATE t2 SET c='fifty-five thousand nine hundred forty-eight' WHERE a=6350; UPDATE t2 SET c='eighty-two thousand one hundred seventy-two' WHERE a=6351; UPDATE t2 SET c='fifty thousand seven' WHERE a=6352; UPDATE t2 SET c='seventy-two thousand two hundred thirty-eight' WHERE a=6353; UPDATE t2 SET c='thirty-seven thousand six hundred ninety-three' WHERE a=6354; UPDATE t2 SET c='fifty-seven thousand six hundred forty-nine' WHERE a=6355; UPDATE t2 SET c='sixty-seven thousand one hundred seventy-four' WHERE a=6356; UPDATE t2 SET c='three thousand one' WHERE a=6357; UPDATE t2 SET c='forty-six thousand two hundred eighteen' WHERE a=6358; UPDATE t2 SET c='sixty-one thousand five hundred thirty-one' WHERE a=6359; UPDATE t2 SET c='twenty-eight thousand four hundred eighty-five' WHERE a=6360; UPDATE t2 SET c='seven thousand five hundred thirty-one' WHERE a=6361; UPDATE t2 SET c='fourteen thousand six hundred ninety-five' WHERE a=6362; UPDATE t2 SET c='twenty-five thousand eight hundred twenty-five' WHERE a=6363; UPDATE t2 SET c='forty thousand seven hundred sixty' WHERE a=6364; UPDATE t2 SET c='eleven thousand eight hundred forty-six' WHERE a=6365; UPDATE t2 SET c='fifteen thousand two hundred eighty-four' WHERE a=6366; UPDATE t2 SET c='forty-four thousand one hundred forty-seven' WHERE a=6367; UPDATE t2 SET c='ninety-one thousand five hundred seventy-two' WHERE a=6368; UPDATE t2 SET c='thirty-eight thousand five hundred ninety-three' WHERE a=6369; UPDATE t2 SET c='forty-four thousand eight hundred thirty-eight' WHERE a=6370; UPDATE t2 SET c='six thousand nine hundred seven' WHERE a=6371; UPDATE t2 SET c='sixty-three thousand one hundred ninety-two' WHERE a=6372; UPDATE t2 SET c='sixty-two thousand four hundred five' WHERE a=6373; UPDATE t2 SET c='thirty-two thousand nine hundred seventy-seven' WHERE a=6374; UPDATE t2 SET c='eighty-nine thousand four hundred fifty-five' WHERE a=6375; UPDATE t2 SET c='twenty-eight thousand four hundred sixty-five' WHERE a=6376; UPDATE t2 SET c='seventy-six thousand two hundred twenty-one' WHERE a=6377; UPDATE t2 SET c='seventy-one thousand eight hundred sixty-three' WHERE a=6378; UPDATE t2 SET c='fifteen thousand four hundred forty-nine' WHERE a=6379; UPDATE t2 SET c='sixty-five thousand eight hundred sixty' WHERE a=6380; UPDATE t2 SET c='forty-five thousand four hundred eighty' WHERE a=6381; UPDATE t2 SET c='forty-five thousand three hundred seventy-four' WHERE a=6382; UPDATE t2 SET c='seven hundred ninety' WHERE a=6383; UPDATE t2 SET c='forty-nine thousand thirty-five' WHERE a=6384; UPDATE t2 SET c='ninety-four thousand three hundred seventy-one' WHERE a=6385; UPDATE t2 SET c='sixty-six thousand four hundred ninety-eight' WHERE a=6386; UPDATE t2 SET c='ninety-four thousand one hundred eighty-six' WHERE a=6387; UPDATE t2 SET c='twelve thousand seven hundred twelve' WHERE a=6388; UPDATE t2 SET c='seventy-one thousand eight hundred seventy-eight' WHERE a=6389; UPDATE t2 SET c='forty-five thousand three hundred twenty-nine' WHERE a=6390; UPDATE t2 SET c='eighty-eight thousand seven hundred fifty-three' WHERE a=6391; UPDATE t2 SET c='thirty-nine thousand one hundred eighty-one' WHERE a=6392; UPDATE t2 SET c='ninety-three thousand five hundred seventy-eight' WHERE a=6393; UPDATE t2 SET c='seventy-seven thousand one hundred eighty-four' WHERE a=6394; UPDATE t2 SET c='eighteen thousand three hundred five' WHERE a=6395; UPDATE t2 SET c='ninety-four thousand two hundred forty-six' WHERE a=6396; UPDATE t2 SET c='sixty-six thousand seventeen' WHERE a=6397; UPDATE t2 SET c='sixty-five thousand twenty-three' WHERE a=6398; UPDATE t2 SET c='eighty thousand two hundred ninety-two' WHERE a=6399; UPDATE t2 SET c='fifty-six thousand five hundred seventy-six' WHERE a=6400; UPDATE t2 SET c='forty-eight thousand seventy-six' WHERE a=6401; UPDATE t2 SET c='fifty-eight thousand seven hundred thirty-eight' WHERE a=6402; UPDATE t2 SET c='fifty-seven thousand nine hundred forty-eight' WHERE a=6403; UPDATE t2 SET c='fourteen thousand eight hundred nine' WHERE a=6404; UPDATE t2 SET c='three thousand three hundred forty-seven' WHERE a=6405; UPDATE t2 SET c='ninety-five thousand five hundred five' WHERE a=6406; UPDATE t2 SET c='seventy-eight thousand six hundred three' WHERE a=6407; UPDATE t2 SET c='seventy-four thousand seven hundred eighty-three' WHERE a=6408; UPDATE t2 SET c='thirty-five thousand two hundred seventeen' WHERE a=6409; UPDATE t2 SET c='eighty-two thousand six hundred eight' WHERE a=6410; UPDATE t2 SET c='eighty-four thousand two hundred one' WHERE a=6411; UPDATE t2 SET c='seventeen thousand five hundred thirteen' WHERE a=6412; UPDATE t2 SET c='twenty-three thousand two hundred forty-eight' WHERE a=6413; UPDATE t2 SET c='two thousand nine hundred seventeen' WHERE a=6414; UPDATE t2 SET c='twenty-three thousand nine hundred eighty-nine' WHERE a=6415; UPDATE t2 SET c='sixty-six thousand two hundred fifty-eight' WHERE a=6416; UPDATE t2 SET c='twenty-nine thousand one hundred four' WHERE a=6417; UPDATE t2 SET c='ninety thousand four hundred eighty-five' WHERE a=6418; UPDATE t2 SET c='twenty-seven thousand three hundred three' WHERE a=6419; UPDATE t2 SET c='twenty-nine thousand four hundred forty-eight' WHERE a=6420; UPDATE t2 SET c='sixty-eight thousand six hundred forty-six' WHERE a=6421; UPDATE t2 SET c='one thousand four hundred fifty-one' WHERE a=6422; UPDATE t2 SET c='five thousand sixty-one' WHERE a=6423; UPDATE t2 SET c='fourteen thousand eight hundred nineteen' WHERE a=6424; UPDATE t2 SET c='ninety-six thousand forty-four' WHERE a=6425; UPDATE t2 SET c='fifteen thousand seven hundred forty-six' WHERE a=6426; UPDATE t2 SET c='sixty-four thousand eight hundred eighty-four' WHERE a=6427; UPDATE t2 SET c='thirty-three thousand two hundred eleven' WHERE a=6428; UPDATE t2 SET c='seventeen thousand seventy-six' WHERE a=6429; UPDATE t2 SET c='fifty-two thousand eight hundred thirty-four' WHERE a=6430; UPDATE t2 SET c='twenty thousand four hundred seventy-six' WHERE a=6431; UPDATE t2 SET c='ninety-six thousand two hundred eighteen' WHERE a=6432; UPDATE t2 SET c='eleven thousand four hundred eighty-eight' WHERE a=6433; UPDATE t2 SET c='eighty-one thousand seven hundred seventy' WHERE a=6434; UPDATE t2 SET c='eighty-eight thousand six hundred ninety-six' WHERE a=6435; UPDATE t2 SET c='seventy thousand five hundred thirteen' WHERE a=6436; UPDATE t2 SET c='seventy-six thousand six hundred sixty-four' WHERE a=6437; UPDATE t2 SET c='fifty-two thousand six hundred fifty-five' WHERE a=6438; UPDATE t2 SET c='fifty-five thousand eight hundred sixteen' WHERE a=6439; UPDATE t2 SET c='seventy-seven thousand five hundred two' WHERE a=6440; UPDATE t2 SET c='eighty-four thousand six hundred eighty-two' WHERE a=6441; UPDATE t2 SET c='fifteen thousand nine hundred eight' WHERE a=6442; UPDATE t2 SET c='eighty-nine thousand five hundred thirty-eight' WHERE a=6443; UPDATE t2 SET c='eighty-five thousand six hundred thirty-six' WHERE a=6444; UPDATE t2 SET c='nineteen thousand three hundred forty-one' WHERE a=6445; UPDATE t2 SET c='ninety-four thousand five hundred four' WHERE a=6446; UPDATE t2 SET c='sixty-six thousand three hundred twenty-seven' WHERE a=6447; UPDATE t2 SET c='seventy-one thousand three hundred ninety-one' WHERE a=6448; UPDATE t2 SET c='sixteen thousand five hundred fifty-two' WHERE a=6449; UPDATE t2 SET c='five thousand eight hundred' WHERE a=6450; UPDATE t2 SET c='fifty-three thousand seven hundred thirty-three' WHERE a=6451; UPDATE t2 SET c='sixty-two thousand nine hundred fifty-three' WHERE a=6452; UPDATE t2 SET c='twenty-five thousand seven hundred eighty-nine' WHERE a=6453; UPDATE t2 SET c='ninety thousand five hundred fifty-two' WHERE a=6454; UPDATE t2 SET c='fifty-two thousand four hundred sixteen' WHERE a=6455; UPDATE t2 SET c='seventy-six thousand eighty-two' WHERE a=6456; UPDATE t2 SET c='seventy-one thousand four hundred forty-three' WHERE a=6457; UPDATE t2 SET c='eighty-six thousand two hundred forty-two' WHERE a=6458; UPDATE t2 SET c='ninety-two thousand four hundred twenty-eight' WHERE a=6459; UPDATE t2 SET c='twenty-two thousand one hundred thirty-three' WHERE a=6460; UPDATE t2 SET c='fifty-three thousand nine hundred seventeen' WHERE a=6461; UPDATE t2 SET c='seventy-eight thousand forty-one' WHERE a=6462; UPDATE t2 SET c='eighty-eight thousand nine hundred thirty-seven' WHERE a=6463; UPDATE t2 SET c='eighty-six thousand three hundred twenty-two' WHERE a=6464; UPDATE t2 SET c='one thousand one hundred forty-seven' WHERE a=6465; UPDATE t2 SET c='fifteen thousand six hundred seventy-nine' WHERE a=6466; UPDATE t2 SET c='forty-three thousand four hundred fifty-seven' WHERE a=6467; UPDATE t2 SET c='two thousand seventy-nine' WHERE a=6468; UPDATE t2 SET c='thirty-four thousand two hundred forty-two' WHERE a=6469; UPDATE t2 SET c='sixty-four thousand one hundred fifty-nine' WHERE a=6470; UPDATE t2 SET c='ninety-one thousand three hundred two' WHERE a=6471; UPDATE t2 SET c='sixty-three thousand two hundred fifty-three' WHERE a=6472; UPDATE t2 SET c='ninety-eight thousand five hundred seventy-two' WHERE a=6473; UPDATE t2 SET c='thirty-one thousand six hundred seventy-four' WHERE a=6474; UPDATE t2 SET c='forty-seven thousand three hundred twenty-seven' WHERE a=6475; UPDATE t2 SET c='forty-seven thousand eight hundred twenty-six' WHERE a=6476; UPDATE t2 SET c='seventy-five thousand three hundred eighty-two' WHERE a=6477; UPDATE t2 SET c='ninety-nine thousand two hundred seventy-three' WHERE a=6478; UPDATE t2 SET c='sixteen thousand seven hundred forty-two' WHERE a=6479; UPDATE t2 SET c='two thousand four hundred fifty-five' WHERE a=6480; UPDATE t2 SET c='forty-four thousand three hundred eighty-one' WHERE a=6481; UPDATE t2 SET c='twenty-five thousand four hundred thirty-one' WHERE a=6482; UPDATE t2 SET c='seventy-seven thousand one hundred twenty-four' WHERE a=6483; UPDATE t2 SET c='fifty-one thousand six hundred three' WHERE a=6484; UPDATE t2 SET c='ten thousand six hundred seventy-three' WHERE a=6485; UPDATE t2 SET c='ninety-two thousand one hundred forty-four' WHERE a=6486; UPDATE t2 SET c='ninety-four thousand one hundred eighty-six' WHERE a=6487; UPDATE t2 SET c='eighty-five thousand nine hundred sixty' WHERE a=6488; UPDATE t2 SET c='thirty-five thousand four hundred eleven' WHERE a=6489; UPDATE t2 SET c='sixty-one thousand six hundred sixty' WHERE a=6490; UPDATE t2 SET c='forty-six thousand three hundred forty-seven' WHERE a=6491; UPDATE t2 SET c='seven thousand nine hundred one' WHERE a=6492; UPDATE t2 SET c='twenty-nine thousand two hundred twenty-three' WHERE a=6493; UPDATE t2 SET c='forty thousand six hundred sixty-three' WHERE a=6494; UPDATE t2 SET c='ninety-two thousand six hundred thirty-seven' WHERE a=6495; UPDATE t2 SET c='seventy-six thousand nine hundred eighty-five' WHERE a=6496; UPDATE t2 SET c='ten thousand one hundred five' WHERE a=6497; UPDATE t2 SET c='fourteen thousand seven hundred fifty-seven' WHERE a=6498; UPDATE t2 SET c='forty-two thousand four hundred twenty-five' WHERE a=6499; UPDATE t2 SET c='five hundred thirty-four' WHERE a=6500; UPDATE t2 SET c='fifteen thousand nine hundred eighty-one' WHERE a=6501; UPDATE t2 SET c='sixty-nine thousand six hundred seventy-three' WHERE a=6502; UPDATE t2 SET c='seventy thousand eight hundred twenty' WHERE a=6503; UPDATE t2 SET c='eighty-six thousand three hundred twenty' WHERE a=6504; UPDATE t2 SET c='one thousand four hundred sixty-nine' WHERE a=6505; UPDATE t2 SET c='one hundred twenty-eight' WHERE a=6506; UPDATE t2 SET c='thirty-three thousand five hundred twenty-one' WHERE a=6507; UPDATE t2 SET c='forty-six thousand seven hundred six' WHERE a=6508; UPDATE t2 SET c='twelve thousand three hundred five' WHERE a=6509; UPDATE t2 SET c='eighty-five thousand six hundred two' WHERE a=6510; UPDATE t2 SET c='forty-six thousand seven hundred ninety-five' WHERE a=6511; UPDATE t2 SET c='sixty-four thousand one hundred fifty-three' WHERE a=6512; UPDATE t2 SET c='twenty-seven thousand three hundred twenty-one' WHERE a=6513; UPDATE t2 SET c='forty-five thousand four hundred eleven' WHERE a=6514; UPDATE t2 SET c='twenty-six thousand two hundred one' WHERE a=6515; UPDATE t2 SET c='fourteen thousand six hundred thirty-three' WHERE a=6516; UPDATE t2 SET c='eighty-three thousand eight hundred eighty-nine' WHERE a=6517; UPDATE t2 SET c='seventy-three thousand six hundred eighty-seven' WHERE a=6518; UPDATE t2 SET c='eighty thousand seven hundred two' WHERE a=6519; UPDATE t2 SET c='ninety thousand nine hundred eighty-six' WHERE a=6520; UPDATE t2 SET c='eighty-three thousand eight hundred thirty-seven' WHERE a=6521; UPDATE t2 SET c='ninety-two thousand one hundred twenty-three' WHERE a=6522; UPDATE t2 SET c='ninety-three thousand two hundred sixty-five' WHERE a=6523; UPDATE t2 SET c='seventy thousand six hundred forty-four' WHERE a=6524; UPDATE t2 SET c='eighteen thousand three hundred sixteen' WHERE a=6525; UPDATE t2 SET c='sixty-seven thousand three hundred seventeen' WHERE a=6526; UPDATE t2 SET c='four thousand nine hundred eighty' WHERE a=6527; UPDATE t2 SET c='six thousand six hundred sixty-five' WHERE a=6528; UPDATE t2 SET c='five thousand two hundred seven' WHERE a=6529; UPDATE t2 SET c='eighty-eight thousand nine hundred ninety-two' WHERE a=6530; UPDATE t2 SET c='ninety-seven thousand three hundred forty-four' WHERE a=6531; UPDATE t2 SET c='two thousand two hundred fifty-four' WHERE a=6532; UPDATE t2 SET c='twenty-one thousand five hundred nine' WHERE a=6533; UPDATE t2 SET c='sixty-one thousand four hundred forty' WHERE a=6534; UPDATE t2 SET c='sixty-seven thousand nine hundred eighty-eight' WHERE a=6535; UPDATE t2 SET c='one thousand one hundred ninety-six' WHERE a=6536; UPDATE t2 SET c='nineteen thousand three hundred nineteen' WHERE a=6537; UPDATE t2 SET c='six thousand seven hundred ninety-seven' WHERE a=6538; UPDATE t2 SET c='twenty-nine thousand three hundred sixty-one' WHERE a=6539; UPDATE t2 SET c='sixty-one thousand nine hundred fifty-six' WHERE a=6540; UPDATE t2 SET c='ninety-three thousand three hundred fifty-seven' WHERE a=6541; UPDATE t2 SET c='fifty-six thousand nine hundred sixty-seven' WHERE a=6542; UPDATE t2 SET c='seventy-eight thousand four hundred twenty-one' WHERE a=6543; UPDATE t2 SET c='twenty-three thousand eight hundred forty-five' WHERE a=6544; UPDATE t2 SET c='thirty-eight thousand five hundred seventy' WHERE a=6545; UPDATE t2 SET c='sixty-three thousand eighty-three' WHERE a=6546; UPDATE t2 SET c='eight thousand three hundred fifty-seven' WHERE a=6547; UPDATE t2 SET c='forty-three thousand three hundred one' WHERE a=6548; UPDATE t2 SET c='ninety-nine thousand three hundred forty-five' WHERE a=6549; UPDATE t2 SET c='forty-two thousand seven hundred thirty-six' WHERE a=6550; UPDATE t2 SET c='fifty-two thousand three hundred ninety-nine' WHERE a=6551; UPDATE t2 SET c='three thousand seven hundred eighty-five' WHERE a=6552; UPDATE t2 SET c='forty-five thousand four hundred five' WHERE a=6553; UPDATE t2 SET c='thirty-five thousand forty-nine' WHERE a=6554; UPDATE t2 SET c='ten thousand eight hundred thirty-eight' WHERE a=6555; UPDATE t2 SET c='twenty-nine thousand two hundred ninety-nine' WHERE a=6556; UPDATE t2 SET c='sixty-four thousand two hundred twenty-nine' WHERE a=6557; UPDATE t2 SET c='ninety-one thousand four hundred twenty' WHERE a=6558; UPDATE t2 SET c='forty-five thousand one hundred twenty-two' WHERE a=6559; UPDATE t2 SET c='eighty thousand seven hundred twenty-six' WHERE a=6560; UPDATE t2 SET c='seventy-one thousand eight hundred thirty-seven' WHERE a=6561; UPDATE t2 SET c='seventy-four thousand four hundred eighty-seven' WHERE a=6562; UPDATE t2 SET c='forty-two thousand nine hundred twenty-five' WHERE a=6563; UPDATE t2 SET c='eighty-seven thousand two hundred eight' WHERE a=6564; UPDATE t2 SET c='seven thousand one hundred thirty-one' WHERE a=6565; UPDATE t2 SET c='thirty-one thousand three hundred thirty-one' WHERE a=6566; UPDATE t2 SET c='seventy-nine thousand five hundred seventy-four' WHERE a=6567; UPDATE t2 SET c='eighty-five thousand four hundred sixty' WHERE a=6568; UPDATE t2 SET c='sixteen thousand six hundred forty-eight' WHERE a=6569; UPDATE t2 SET c='seventy-nine thousand nine hundred one' WHERE a=6570; UPDATE t2 SET c='seventy-two thousand six hundred thirty-six' WHERE a=6571; UPDATE t2 SET c='ninety-two thousand sixty-nine' WHERE a=6572; UPDATE t2 SET c='three thousand five hundred six' WHERE a=6573; UPDATE t2 SET c='twenty-nine thousand three hundred ninety-three' WHERE a=6574; UPDATE t2 SET c='three thousand eight hundred seventy-six' WHERE a=6575; UPDATE t2 SET c='twenty-nine thousand three hundred eleven' WHERE a=6576; UPDATE t2 SET c='nine thousand eight hundred thirty-two' WHERE a=6577; UPDATE t2 SET c='ninety-six thousand four hundred thirty-nine' WHERE a=6578; UPDATE t2 SET c='seventy-four thousand nine hundred ten' WHERE a=6579; UPDATE t2 SET c='sixty-four thousand eight hundred twelve' WHERE a=6580; UPDATE t2 SET c='seventy-three thousand seven hundred fifty-five' WHERE a=6581; UPDATE t2 SET c='thirteen thousand three hundred sixty-six' WHERE a=6582; UPDATE t2 SET c='fifty-one thousand one hundred sixty-six' WHERE a=6583; UPDATE t2 SET c='forty-four thousand four hundred seventy-five' WHERE a=6584; UPDATE t2 SET c='forty-nine thousand nine hundred sixty-one' WHERE a=6585; UPDATE t2 SET c='sixty-three thousand five hundred ninety-three' WHERE a=6586; UPDATE t2 SET c='thirty-four thousand six hundred twenty-one' WHERE a=6587; UPDATE t2 SET c='ninety-seven thousand eight hundred seventy-three' WHERE a=6588; UPDATE t2 SET c='eighty thousand one hundred thirty' WHERE a=6589; UPDATE t2 SET c='eighty-four thousand two hundred sixty-six' WHERE a=6590; UPDATE t2 SET c='twenty-six thousand seven hundred six' WHERE a=6591; UPDATE t2 SET c='seventy-three thousand nine hundred sixty-four' WHERE a=6592; UPDATE t2 SET c='eighty-four thousand seven hundred five' WHERE a=6593; UPDATE t2 SET c='ninety-eight thousand seven hundred forty-nine' WHERE a=6594; UPDATE t2 SET c='twelve thousand one hundred ninety-nine' WHERE a=6595; UPDATE t2 SET c='forty-three thousand five hundred sixty-one' WHERE a=6596; UPDATE t2 SET c='seventy-three thousand four hundred sixty-two' WHERE a=6597; UPDATE t2 SET c='sixty-two thousand five hundred fifty-five' WHERE a=6598; UPDATE t2 SET c='forty-one thousand five hundred fifty-three' WHERE a=6599; UPDATE t2 SET c='forty-three thousand seventy-eight' WHERE a=6600; UPDATE t2 SET c='one thousand eight hundred nineteen' WHERE a=6601; UPDATE t2 SET c='eleven thousand one hundred fifty-nine' WHERE a=6602; UPDATE t2 SET c='sixty thousand eight hundred seven' WHERE a=6603; UPDATE t2 SET c='forty-six thousand four hundred forty-three' WHERE a=6604; UPDATE t2 SET c='sixty-three thousand five hundred ninety-two' WHERE a=6605; UPDATE t2 SET c='eighty-one thousand nine hundred forty-eight' WHERE a=6606; UPDATE t2 SET c='ninety-one thousand nine hundred two' WHERE a=6607; UPDATE t2 SET c='fifty thousand thirty-six' WHERE a=6608; UPDATE t2 SET c='fifty-four thousand five hundred eighty-six' WHERE a=6609; UPDATE t2 SET c='seventy-nine thousand six hundred fifty-three' WHERE a=6610; UPDATE t2 SET c='twenty-seven thousand ninety-one' WHERE a=6611; UPDATE t2 SET c='ninety-one thousand six hundred fifty-five' WHERE a=6612; UPDATE t2 SET c='eighty-nine thousand four hundred sixty-four' WHERE a=6613; UPDATE t2 SET c='fifty thousand two hundred thirty-one' WHERE a=6614; UPDATE t2 SET c='thirteen thousand five hundred thirty-six' WHERE a=6615; UPDATE t2 SET c='ninety-five thousand one hundred fifty-two' WHERE a=6616; UPDATE t2 SET c='thirty-seven thousand six hundred twenty-two' WHERE a=6617; UPDATE t2 SET c='fifty-eight thousand one hundred fifteen' WHERE a=6618; UPDATE t2 SET c='twelve thousand five hundred forty-one' WHERE a=6619; UPDATE t2 SET c='seventy-five thousand ten' WHERE a=6620; UPDATE t2 SET c='sixty-three thousand nine hundred eighty-five' WHERE a=6621; UPDATE t2 SET c='sixty-one thousand one hundred ninety-four' WHERE a=6622; UPDATE t2 SET c='fifty-seven thousand four hundred ninety-six' WHERE a=6623; UPDATE t2 SET c='thirty-three thousand four hundred twenty-four' WHERE a=6624; UPDATE t2 SET c='eighty-seven thousand three hundred seventy-six' WHERE a=6625; UPDATE t2 SET c='fifty-nine thousand six hundred seventy' WHERE a=6626; UPDATE t2 SET c='twenty-seven thousand ninety-five' WHERE a=6627; UPDATE t2 SET c='eighty-eight thousand seventy-four' WHERE a=6628; UPDATE t2 SET c='eighty thousand four hundred fifteen' WHERE a=6629; UPDATE t2 SET c='five thousand nine hundred fifty-two' WHERE a=6630; UPDATE t2 SET c='forty-five thousand three hundred twenty-three' WHERE a=6631; UPDATE t2 SET c='sixty-four thousand three hundred ninety-three' WHERE a=6632; UPDATE t2 SET c='seventy-one thousand five hundred sixty-four' WHERE a=6633; UPDATE t2 SET c='eighty-one thousand four hundred eighty-five' WHERE a=6634; UPDATE t2 SET c='thirty-six thousand five hundred fifty-seven' WHERE a=6635; UPDATE t2 SET c='eleven thousand four hundred ninety-eight' WHERE a=6636; UPDATE t2 SET c='ninety-two thousand seven hundred forty-three' WHERE a=6637; UPDATE t2 SET c='ninety-eight thousand nine hundred eighty-nine' WHERE a=6638; UPDATE t2 SET c='sixty thousand four hundred seventy-eight' WHERE a=6639; UPDATE t2 SET c='twenty-six thousand three hundred thirty' WHERE a=6640; UPDATE t2 SET c='fifty-seven thousand two hundred eighteen' WHERE a=6641; UPDATE t2 SET c='fifty thousand seven hundred thirty-four' WHERE a=6642; UPDATE t2 SET c='one thousand sixty-six' WHERE a=6643; UPDATE t2 SET c='seventy-one thousand nine hundred forty-five' WHERE a=6644; UPDATE t2 SET c='ninety thousand eight hundred sixty-nine' WHERE a=6645; UPDATE t2 SET c='twenty-three thousand six hundred ninety-four' WHERE a=6646; UPDATE t2 SET c='ninety-nine thousand seven hundred fourteen' WHERE a=6647; UPDATE t2 SET c='sixty-nine thousand seven hundred sixty-six' WHERE a=6648; UPDATE t2 SET c='eighty-three thousand four hundred forty' WHERE a=6649; UPDATE t2 SET c='sixty-six thousand one hundred twenty-four' WHERE a=6650; UPDATE t2 SET c='twenty-eight thousand two hundred ninety-four' WHERE a=6651; UPDATE t2 SET c='thirty-eight thousand four hundred eighty-five' WHERE a=6652; UPDATE t2 SET c='fifteen thousand sixty-nine' WHERE a=6653; UPDATE t2 SET c='thirteen thousand four hundred twenty-eight' WHERE a=6654; UPDATE t2 SET c='ninety-three thousand one hundred ninety' WHERE a=6655; UPDATE t2 SET c='eighty-one thousand one hundred sixty-four' WHERE a=6656; UPDATE t2 SET c='fifty-three thousand nine hundred eighty-two' WHERE a=6657; UPDATE t2 SET c='thirty-two thousand four hundred ninety-nine' WHERE a=6658; UPDATE t2 SET c='twenty-one thousand seventy-two' WHERE a=6659; UPDATE t2 SET c='sixty-seven thousand four hundred eighty-eight' WHERE a=6660; UPDATE t2 SET c='sixty-six thousand one hundred fifty' WHERE a=6661; UPDATE t2 SET c='fifty-one thousand nine hundred fifty-five' WHERE a=6662; UPDATE t2 SET c='sixty-seven thousand eight hundred seventeen' WHERE a=6663; UPDATE t2 SET c='ninety-five thousand seventy-two' WHERE a=6664; UPDATE t2 SET c='seventy-two thousand five hundred thirty-nine' WHERE a=6665; UPDATE t2 SET c='eighty-eight thousand sixty-eight' WHERE a=6666; UPDATE t2 SET c='sixty-seven thousand one hundred fifty-four' WHERE a=6667; UPDATE t2 SET c='twenty-nine thousand six hundred forty-five' WHERE a=6668; UPDATE t2 SET c='fifteen thousand two hundred four' WHERE a=6669; UPDATE t2 SET c='seventy thousand four hundred seventy-two' WHERE a=6670; UPDATE t2 SET c='forty thousand seven hundred eighty-seven' WHERE a=6671; UPDATE t2 SET c='twenty-eight thousand four hundred' WHERE a=6672; UPDATE t2 SET c='twenty-two thousand nine hundred ninety-seven' WHERE a=6673; UPDATE t2 SET c='sixty-nine thousand four hundred eight' WHERE a=6674; UPDATE t2 SET c='thirteen thousand five hundred four' WHERE a=6675; UPDATE t2 SET c='four thousand nine hundred twenty-four' WHERE a=6676; UPDATE t2 SET c='ninety-one thousand three hundred thirteen' WHERE a=6677; UPDATE t2 SET c='twenty thousand two hundred sixty-two' WHERE a=6678; UPDATE t2 SET c='eighteen thousand five hundred sixty-six' WHERE a=6679; UPDATE t2 SET c='twenty-six thousand seven hundred fifty-eight' WHERE a=6680; UPDATE t2 SET c='eighty thousand one hundred fifty-five' WHERE a=6681; UPDATE t2 SET c='seventy-eight thousand three hundred ten' WHERE a=6682; UPDATE t2 SET c='fourteen thousand one hundred five' WHERE a=6683; UPDATE t2 SET c='sixty-six thousand five hundred ten' WHERE a=6684; UPDATE t2 SET c='forty-seven thousand two hundred forty-seven' WHERE a=6685; UPDATE t2 SET c='thirty-two thousand two hundred thirty' WHERE a=6686; UPDATE t2 SET c='two thousand nine hundred thirty-five' WHERE a=6687; UPDATE t2 SET c='seventy-three thousand three hundred twenty-nine' WHERE a=6688; UPDATE t2 SET c='fifty-five thousand eight hundred' WHERE a=6689; UPDATE t2 SET c='fifty thousand seven hundred eighty-four' WHERE a=6690; UPDATE t2 SET c='forty-two thousand six hundred eleven' WHERE a=6691; UPDATE t2 SET c='twenty-seven thousand nine hundred eighty-seven' WHERE a=6692; UPDATE t2 SET c='forty-nine thousand ninety-three' WHERE a=6693; UPDATE t2 SET c='fifty-six thousand four hundred fifty-three' WHERE a=6694; UPDATE t2 SET c='sixty-nine thousand four hundred twenty-six' WHERE a=6695; UPDATE t2 SET c='twenty-nine thousand one hundred sixty-eight' WHERE a=6696; UPDATE t2 SET c='eighty thousand six hundred fifteen' WHERE a=6697; UPDATE t2 SET c='sixteen thousand four hundred seventy-eight' WHERE a=6698; UPDATE t2 SET c='seventy-seven thousand six hundred thirty-three' WHERE a=6699; UPDATE t2 SET c='twenty-three thousand six hundred forty-four' WHERE a=6700; UPDATE t2 SET c='eighteen thousand two hundred ninety-six' WHERE a=6701; UPDATE t2 SET c='seven thousand eight hundred twenty-six' WHERE a=6702; UPDATE t2 SET c='thirty thousand two hundred seventy-seven' WHERE a=6703; UPDATE t2 SET c='eighty-three thousand three hundred forty-six' WHERE a=6704; UPDATE t2 SET c='eighty thousand two hundred thirty-nine' WHERE a=6705; UPDATE t2 SET c='ninety-seven thousand nine hundred seventy-two' WHERE a=6706; UPDATE t2 SET c='seventy thousand two hundred forty-five' WHERE a=6707; UPDATE t2 SET c='fifty-eight thousand three hundred thirty-nine' WHERE a=6708; UPDATE t2 SET c='fifty-two thousand forty-six' WHERE a=6709; UPDATE t2 SET c='four thousand two hundred eighty-nine' WHERE a=6710; UPDATE t2 SET c='forty-nine thousand six hundred eighteen' WHERE a=6711; UPDATE t2 SET c='seventy-six thousand six hundred thirty-seven' WHERE a=6712; UPDATE t2 SET c='twenty-five thousand two hundred sixty' WHERE a=6713; UPDATE t2 SET c='twenty-one thousand seven hundred eighty-two' WHERE a=6714; UPDATE t2 SET c='six thousand eight hundred eighteen' WHERE a=6715; UPDATE t2 SET c='ninety-nine thousand five hundred thirty-four' WHERE a=6716; UPDATE t2 SET c='eighty-five thousand five hundred twenty-nine' WHERE a=6717; UPDATE t2 SET c='four hundred ninety-five' WHERE a=6718; UPDATE t2 SET c='sixty-two thousand eight hundred ninety-one' WHERE a=6719; UPDATE t2 SET c='ninety-nine thousand eight hundred forty-nine' WHERE a=6720; UPDATE t2 SET c='seventy-two thousand two hundred ninety' WHERE a=6721; UPDATE t2 SET c='fifty-four thousand one hundred sixty' WHERE a=6722; UPDATE t2 SET c='seventy-four thousand four hundred sixty-five' WHERE a=6723; UPDATE t2 SET c='fifteen thousand twenty-three' WHERE a=6724; UPDATE t2 SET c='fifty thousand eight hundred forty-one' WHERE a=6725; UPDATE t2 SET c='fifty-two thousand six hundred forty-five' WHERE a=6726; UPDATE t2 SET c='forty-one thousand four hundred sixty-eight' WHERE a=6727; UPDATE t2 SET c='eighty-five thousand six hundred ninety-one' WHERE a=6728; UPDATE t2 SET c='nine thousand six hundred ninety' WHERE a=6729; UPDATE t2 SET c='four thousand nine hundred seventy-two' WHERE a=6730; UPDATE t2 SET c='forty-two thousand nine hundred sixty-five' WHERE a=6731; UPDATE t2 SET c='sixty-one thousand nine hundred fifty-nine' WHERE a=6732; UPDATE t2 SET c='eighty thousand five hundred thirty-one' WHERE a=6733; UPDATE t2 SET c='eighty-six thousand four hundred seventeen' WHERE a=6734; UPDATE t2 SET c='sixty-two thousand nine hundred fifty-five' WHERE a=6735; UPDATE t2 SET c='fifty-five thousand two hundred twenty-two' WHERE a=6736; UPDATE t2 SET c='ninety-one thousand five hundred ninety-two' WHERE a=6737; UPDATE t2 SET c='ninety-four thousand thirty-one' WHERE a=6738; UPDATE t2 SET c='eighty-seven thousand one hundred twenty-eight' WHERE a=6739; UPDATE t2 SET c='fifty-seven thousand four hundred ninety-five' WHERE a=6740; UPDATE t2 SET c='eighty-six thousand two hundred twenty' WHERE a=6741; UPDATE t2 SET c='forty-five thousand nine hundred fourteen' WHERE a=6742; UPDATE t2 SET c='sixty-five thousand nine hundred twenty-eight' WHERE a=6743; UPDATE t2 SET c='sixty-one thousand one hundred forty-six' WHERE a=6744; UPDATE t2 SET c='twenty-two thousand three hundred eight' WHERE a=6745; UPDATE t2 SET c='sixty thousand seven hundred eighty-four' WHERE a=6746; UPDATE t2 SET c='seventy-four thousand seventy' WHERE a=6747; UPDATE t2 SET c='twenty-nine thousand eight hundred fifty-two' WHERE a=6748; UPDATE t2 SET c='fifty-four thousand two hundred ten' WHERE a=6749; UPDATE t2 SET c='seventy thousand four hundred four' WHERE a=6750; UPDATE t2 SET c='seventy-eight thousand seven hundred eleven' WHERE a=6751; UPDATE t2 SET c='four thousand two hundred twenty-four' WHERE a=6752; UPDATE t2 SET c='one hundred twenty-nine' WHERE a=6753; UPDATE t2 SET c='eighty thousand three hundred eighty-three' WHERE a=6754; UPDATE t2 SET c='forty-one thousand ninety-four' WHERE a=6755; UPDATE t2 SET c='four hundred fifty' WHERE a=6756; UPDATE t2 SET c='forty-five thousand six hundred sixty-nine' WHERE a=6757; UPDATE t2 SET c='seventy-four thousand four hundred one' WHERE a=6758; UPDATE t2 SET c='ninety-seven thousand eighty' WHERE a=6759; UPDATE t2 SET c='eighty-two thousand eight hundred twenty-three' WHERE a=6760; UPDATE t2 SET c='seven thousand two hundred eighty-eight' WHERE a=6761; UPDATE t2 SET c='ninety-five thousand seven hundred ninety-six' WHERE a=6762; UPDATE t2 SET c='sixty-one thousand three hundred' WHERE a=6763; UPDATE t2 SET c='ten thousand one hundred seventy-nine' WHERE a=6764; UPDATE t2 SET c='thirteen thousand two hundred four' WHERE a=6765; UPDATE t2 SET c='twenty-six thousand two hundred sixty-four' WHERE a=6766; UPDATE t2 SET c='fifty-six thousand ten' WHERE a=6767; UPDATE t2 SET c='seventy-three thousand seven hundred eighty-three' WHERE a=6768; UPDATE t2 SET c='twenty-four thousand nine hundred fifty-five' WHERE a=6769; UPDATE t2 SET c='seventy-one thousand one hundred seventy-two' WHERE a=6770; UPDATE t2 SET c='seventeen thousand one hundred one' WHERE a=6771; UPDATE t2 SET c='twenty-eight thousand eight hundred thirty-one' WHERE a=6772; UPDATE t2 SET c='thirty-five thousand four hundred eighty-five' WHERE a=6773; UPDATE t2 SET c='ninety-one thousand two hundred ninety-eight' WHERE a=6774; UPDATE t2 SET c='seventy-one thousand seven hundred twenty-one' WHERE a=6775; UPDATE t2 SET c='sixteen thousand six hundred fifteen' WHERE a=6776; UPDATE t2 SET c='ninety-six thousand two hundred fifty' WHERE a=6777; UPDATE t2 SET c='eighty-four thousand six hundred seventy-two' WHERE a=6778; UPDATE t2 SET c='twenty-seven thousand seven hundred thirty-five' WHERE a=6779; UPDATE t2 SET c='three thousand four hundred thirty-seven' WHERE a=6780; UPDATE t2 SET c='seventy-one thousand three hundred eighteen' WHERE a=6781; UPDATE t2 SET c='sixteen thousand eight hundred sixty-two' WHERE a=6782; UPDATE t2 SET c='twenty-three thousand one hundred fifty-eight' WHERE a=6783; UPDATE t2 SET c='forty-one thousand six hundred eighty-four' WHERE a=6784; UPDATE t2 SET c='ninety-three thousand two hundred fifty-five' WHERE a=6785; UPDATE t2 SET c='twenty-four thousand four hundred sixty-four' WHERE a=6786; UPDATE t2 SET c='ninety-five thousand nine hundred seventy-four' WHERE a=6787; UPDATE t2 SET c='eighteen thousand three hundred seventy-eight' WHERE a=6788; UPDATE t2 SET c='eight thousand four hundred one' WHERE a=6789; UPDATE t2 SET c='thirty-six thousand eighty-six' WHERE a=6790; UPDATE t2 SET c='one thousand six hundred thirty-three' WHERE a=6791; UPDATE t2 SET c='sixteen thousand one hundred sixty-nine' WHERE a=6792; UPDATE t2 SET c='six hundred sixteen' WHERE a=6793; UPDATE t2 SET c='twenty-two thousand five hundred three' WHERE a=6794; UPDATE t2 SET c='thirty-one thousand four hundred thirty-three' WHERE a=6795; UPDATE t2 SET c='ninety-one thousand nine hundred sixteen' WHERE a=6796; UPDATE t2 SET c='seventeen thousand one hundred eighty-two' WHERE a=6797; UPDATE t2 SET c='fifty-six thousand one hundred seventy-three' WHERE a=6798; UPDATE t2 SET c='forty-four thousand nine hundred eighty-seven' WHERE a=6799; UPDATE t2 SET c='fifty-two thousand nine hundred thirty-one' WHERE a=6800; UPDATE t2 SET c='four thousand five hundred eighty-eight' WHERE a=6801; UPDATE t2 SET c='thirty-seven thousand eight hundred eighty-nine' WHERE a=6802; UPDATE t2 SET c='thirteen thousand two hundred thirty-four' WHERE a=6803; UPDATE t2 SET c='thirty-six thousand one hundred eighty-nine' WHERE a=6804; UPDATE t2 SET c='forty-three thousand four hundred ninety-three' WHERE a=6805; UPDATE t2 SET c='nineteen thousand nine hundred forty-two' WHERE a=6806; UPDATE t2 SET c='ninety-eight thousand eight hundred forty-nine' WHERE a=6807; UPDATE t2 SET c='one thousand three hundred eighty-five' WHERE a=6808; UPDATE t2 SET c='sixty-eight thousand six hundred ninety-three' WHERE a=6809; UPDATE t2 SET c='four thousand seven hundred sixty-nine' WHERE a=6810; UPDATE t2 SET c='seventy-five thousand nine hundred twenty-four' WHERE a=6811; UPDATE t2 SET c='three thousand nine hundred seventeen' WHERE a=6812; UPDATE t2 SET c='ninety-nine thousand two hundred twenty-one' WHERE a=6813; UPDATE t2 SET c='eighty thousand seven hundred fourteen' WHERE a=6814; UPDATE t2 SET c='forty thousand four hundred two' WHERE a=6815; UPDATE t2 SET c='two thousand six hundred forty-two' WHERE a=6816; UPDATE t2 SET c='eighty-six thousand six hundred seventy-five' WHERE a=6817; UPDATE t2 SET c='fourteen thousand seven hundred twenty-four' WHERE a=6818; UPDATE t2 SET c='seven thousand eight hundred forty-five' WHERE a=6819; UPDATE t2 SET c='ninety-seven thousand four hundred seventy-five' WHERE a=6820; UPDATE t2 SET c='fifty-four thousand four hundred thirty-one' WHERE a=6821; UPDATE t2 SET c='seventy-three thousand six hundred sixty-one' WHERE a=6822; UPDATE t2 SET c='thirty-three thousand three hundred seventy-five' WHERE a=6823; UPDATE t2 SET c='twenty-five thousand three hundred thirteen' WHERE a=6824; UPDATE t2 SET c='sixty-six thousand nine hundred thirty-nine' WHERE a=6825; UPDATE t2 SET c='twenty-two thousand one hundred ninety-three' WHERE a=6826; UPDATE t2 SET c='forty-eight thousand eight hundred fifty-five' WHERE a=6827; UPDATE t2 SET c='twenty-five thousand six hundred thirty-six' WHERE a=6828; UPDATE t2 SET c='sixteen thousand seven hundred eighty-five' WHERE a=6829; UPDATE t2 SET c='fifty-eight thousand seven hundred five' WHERE a=6830; UPDATE t2 SET c='forty-one thousand two hundred sixty' WHERE a=6831; UPDATE t2 SET c='forty-six thousand two hundred twenty-nine' WHERE a=6832; UPDATE t2 SET c='ninety-one thousand eight hundred seventy' WHERE a=6833; UPDATE t2 SET c='twenty-three thousand seven hundred twenty-eight' WHERE a=6834; UPDATE t2 SET c='sixty-one thousand eight hundred eighty-six' WHERE a=6835; UPDATE t2 SET c='forty-three thousand one hundred seventy-three' WHERE a=6836; UPDATE t2 SET c='fourteen thousand four hundred forty-four' WHERE a=6837; UPDATE t2 SET c='eighty-nine thousand forty-four' WHERE a=6838; UPDATE t2 SET c='fifteen thousand five hundred fifty-two' WHERE a=6839; UPDATE t2 SET c='twenty-three thousand five hundred four' WHERE a=6840; UPDATE t2 SET c='fifty-eight thousand eight hundred seventy-one' WHERE a=6841; UPDATE t2 SET c='four thousand five hundred eighty-one' WHERE a=6842; UPDATE t2 SET c='twenty-one thousand six hundred fifty-five' WHERE a=6843; UPDATE t2 SET c='thirty-five thousand four hundred fifty-three' WHERE a=6844; UPDATE t2 SET c='thirty-two thousand one hundred one' WHERE a=6845; UPDATE t2 SET c='thirty-one thousand five hundred eighty-nine' WHERE a=6846; UPDATE t2 SET c='seventy-four thousand sixty-eight' WHERE a=6847; UPDATE t2 SET c='thirty-eight thousand three hundred sixty-eight' WHERE a=6848; UPDATE t2 SET c='five thousand one hundred twenty-five' WHERE a=6849; UPDATE t2 SET c='ninety-six thousand three hundred fifty' WHERE a=6850; UPDATE t2 SET c='eighty-one thousand three hundred fourteen' WHERE a=6851; UPDATE t2 SET c='eighty-one thousand five hundred forty-four' WHERE a=6852; UPDATE t2 SET c='forty-five thousand three hundred ninety-three' WHERE a=6853; UPDATE t2 SET c='seventy thousand one hundred forty-seven' WHERE a=6854; UPDATE t2 SET c='seventy-nine thousand eighty-two' WHERE a=6855; UPDATE t2 SET c='eighty-eight thousand seven hundred seventeen' WHERE a=6856; UPDATE t2 SET c='seventy-six thousand four hundred two' WHERE a=6857; UPDATE t2 SET c='seventy-four thousand seven hundred sixty-seven' WHERE a=6858; UPDATE t2 SET c='sixty-six thousand nine hundred fifty-five' WHERE a=6859; UPDATE t2 SET c='thirty thousand nine hundred sixty-four' WHERE a=6860; UPDATE t2 SET c='ninety-four thousand nine hundred eighty-one' WHERE a=6861; UPDATE t2 SET c='eighty-nine thousand one hundred sixty-five' WHERE a=6862; UPDATE t2 SET c='sixty-six thousand five hundred ninety-seven' WHERE a=6863; UPDATE t2 SET c='sixty-one thousand two hundred twelve' WHERE a=6864; UPDATE t2 SET c='eighteen thousand one hundred thirty' WHERE a=6865; UPDATE t2 SET c='forty-four thousand three hundred thirty-nine' WHERE a=6866; UPDATE t2 SET c='seventy-seven thousand four hundred fifty-five' WHERE a=6867; UPDATE t2 SET c='four thousand two hundred thirty-five' WHERE a=6868; UPDATE t2 SET c='seven thousand two hundred sixty-nine' WHERE a=6869; UPDATE t2 SET c='thirty-one thousand eight hundred eighty-one' WHERE a=6870; UPDATE t2 SET c='forty-one thousand six hundred seventy' WHERE a=6871; UPDATE t2 SET c='forty-four thousand one hundred ninety-seven' WHERE a=6872; UPDATE t2 SET c='twenty-four thousand nine hundred seventy-nine' WHERE a=6873; UPDATE t2 SET c='eighty-two thousand five hundred six' WHERE a=6874; UPDATE t2 SET c='forty-three thousand five hundred sixty-one' WHERE a=6875; UPDATE t2 SET c='two thousand three hundred twenty-four' WHERE a=6876; UPDATE t2 SET c='forty-eight thousand nine hundred forty-eight' WHERE a=6877; UPDATE t2 SET c='thirty-two thousand six hundred ten' WHERE a=6878; UPDATE t2 SET c='ninety-one thousand one hundred eighteen' WHERE a=6879; UPDATE t2 SET c='seventy-nine thousand two hundred forty-three' WHERE a=6880; UPDATE t2 SET c='eighty thousand six hundred forty-two' WHERE a=6881; UPDATE t2 SET c='thirteen thousand two hundred eighty-five' WHERE a=6882; UPDATE t2 SET c='eighty-two thousand one hundred eighty-three' WHERE a=6883; UPDATE t2 SET c='fifty-five thousand three hundred eighty-five' WHERE a=6884; UPDATE t2 SET c='sixty-one thousand six hundred six' WHERE a=6885; UPDATE t2 SET c='seventy-four thousand nine hundred forty-six' WHERE a=6886; UPDATE t2 SET c='eighty-seven thousand seven hundred eighty-five' WHERE a=6887; UPDATE t2 SET c='fifty-seven thousand five hundred thirty-seven' WHERE a=6888; UPDATE t2 SET c='eighty-eight thousand one hundred fourteen' WHERE a=6889; UPDATE t2 SET c='eighty-three thousand six hundred forty-two' WHERE a=6890; UPDATE t2 SET c='twenty-three thousand ninety-five' WHERE a=6891; UPDATE t2 SET c='nine thousand four hundred six' WHERE a=6892; UPDATE t2 SET c='eighteen thousand seven hundred forty-seven' WHERE a=6893; UPDATE t2 SET c='twenty-three thousand four hundred fifty-five' WHERE a=6894; UPDATE t2 SET c='fifty-one thousand nine hundred thirty-one' WHERE a=6895; UPDATE t2 SET c='twelve thousand seven hundred' WHERE a=6896; UPDATE t2 SET c='eighty-six thousand one hundred forty-seven' WHERE a=6897; UPDATE t2 SET c='sixty-seven thousand seven hundred seventy-one' WHERE a=6898; UPDATE t2 SET c='sixty-five thousand five hundred sixty-seven' WHERE a=6899; UPDATE t2 SET c='seventy-three thousand eight hundred seventy' WHERE a=6900; UPDATE t2 SET c='forty-one thousand ninety-two' WHERE a=6901; UPDATE t2 SET c='seventy-nine thousand two hundred thirty-one' WHERE a=6902; UPDATE t2 SET c='forty-one thousand seven hundred eighty-one' WHERE a=6903; UPDATE t2 SET c='seventy-nine thousand seven hundred eighty-three' WHERE a=6904; UPDATE t2 SET c='seventy-nine thousand four hundred fifty-two' WHERE a=6905; UPDATE t2 SET c='forty-eight thousand nine hundred fifty-two' WHERE a=6906; UPDATE t2 SET c='eighty-nine thousand sixty-three' WHERE a=6907; UPDATE t2 SET c='fifty-eight thousand nine hundred twenty-five' WHERE a=6908; UPDATE t2 SET c='fifty-three thousand seventy' WHERE a=6909; UPDATE t2 SET c='seventy-five thousand three hundred twenty-one' WHERE a=6910; UPDATE t2 SET c='thirty-three thousand six hundred twenty-one' WHERE a=6911; UPDATE t2 SET c='seventy-eight thousand eight hundred thirty-three' WHERE a=6912; UPDATE t2 SET c='eighty-six thousand four hundred sixty-five' WHERE a=6913; UPDATE t2 SET c='thirty-nine thousand two hundred nineteen' WHERE a=6914; UPDATE t2 SET c='eighty-five thousand two hundred thirty-eight' WHERE a=6915; UPDATE t2 SET c='sixty-nine thousand four hundred forty-four' WHERE a=6916; UPDATE t2 SET c='thirty-three thousand three hundred sixty-four' WHERE a=6917; UPDATE t2 SET c='forty thousand ninety-six' WHERE a=6918; UPDATE t2 SET c='thirty-six thousand nine hundred sixty' WHERE a=6919; UPDATE t2 SET c='forty-eight thousand three hundred sixty-two' WHERE a=6920; UPDATE t2 SET c='sixty thousand seven hundred ten' WHERE a=6921; UPDATE t2 SET c='forty-nine thousand nine hundred sixty-two' WHERE a=6922; UPDATE t2 SET c='thirty thousand six hundred fifteen' WHERE a=6923; UPDATE t2 SET c='fifty-five thousand seven hundred seven' WHERE a=6924; UPDATE t2 SET c='sixteen thousand three hundred eighty-seven' WHERE a=6925; UPDATE t2 SET c='forty-seven thousand four hundred eighty-three' WHERE a=6926; UPDATE t2 SET c='eighty-eight thousand five hundred seventy-nine' WHERE a=6927; UPDATE t2 SET c='forty-five thousand six hundred twenty-six' WHERE a=6928; UPDATE t2 SET c='eighteen thousand two hundred four' WHERE a=6929; UPDATE t2 SET c='thirty-one thousand one hundred thirty' WHERE a=6930; UPDATE t2 SET c='thirty-eight thousand eighty-three' WHERE a=6931; UPDATE t2 SET c='seventy-six thousand five hundred seventy-eight' WHERE a=6932; UPDATE t2 SET c='twenty thousand eight hundred fifty-two' WHERE a=6933; UPDATE t2 SET c='fifty-six thousand two hundred ninety-six' WHERE a=6934; UPDATE t2 SET c='one thousand two hundred thirty-four' WHERE a=6935; UPDATE t2 SET c='twenty-three thousand one hundred ninety' WHERE a=6936; UPDATE t2 SET c='twenty-six thousand eight hundred eleven' WHERE a=6937; UPDATE t2 SET c='eighty-seven thousand six hundred twenty-two' WHERE a=6938; UPDATE t2 SET c='ninety-one thousand seven hundred forty-five' WHERE a=6939; UPDATE t2 SET c='sixty-four thousand six hundred twenty-eight' WHERE a=6940; UPDATE t2 SET c='nineteen thousand nine hundred eighty-three' WHERE a=6941; UPDATE t2 SET c='nine thousand three hundred two' WHERE a=6942; UPDATE t2 SET c='seventy-six thousand three hundred eighty-one' WHERE a=6943; UPDATE t2 SET c='eleven thousand eight hundred forty-six' WHERE a=6944; UPDATE t2 SET c='forty-two thousand one hundred seventy-eight' WHERE a=6945; UPDATE t2 SET c='sixty-nine thousand twenty-five' WHERE a=6946; UPDATE t2 SET c='seventy thousand two hundred forty-five' WHERE a=6947; UPDATE t2 SET c='sixty-eight thousand six hundred eighty-five' WHERE a=6948; UPDATE t2 SET c='seventy-two thousand five hundred twenty-five' WHERE a=6949; UPDATE t2 SET c='thirteen thousand eight hundred ninety-two' WHERE a=6950; UPDATE t2 SET c='one thousand three hundred eighteen' WHERE a=6951; UPDATE t2 SET c='twenty-one thousand four hundred seventy-nine' WHERE a=6952; UPDATE t2 SET c='fifty-three thousand six hundred forty-one' WHERE a=6953; UPDATE t2 SET c='sixty-two thousand three hundred ninety-seven' WHERE a=6954; UPDATE t2 SET c='seventy-five thousand five hundred seventy-seven' WHERE a=6955; UPDATE t2 SET c='sixty-six thousand six hundred thirty-five' WHERE a=6956; UPDATE t2 SET c='forty-six thousand five hundred fifty-two' WHERE a=6957; UPDATE t2 SET c='twenty thousand one hundred ninety-two' WHERE a=6958; UPDATE t2 SET c='eighteen thousand six hundred forty' WHERE a=6959; UPDATE t2 SET c='sixty-one thousand one hundred ten' WHERE a=6960; UPDATE t2 SET c='fifty-four thousand eight hundred sixty-three' WHERE a=6961; UPDATE t2 SET c='seventy-two thousand three hundred forty-four' WHERE a=6962; UPDATE t2 SET c='sixty-five thousand four hundred twenty-six' WHERE a=6963; UPDATE t2 SET c='fifty-seven thousand nine hundred thirty-two' WHERE a=6964; UPDATE t2 SET c='sixty-eight thousand nine hundred seventy-two' WHERE a=6965; UPDATE t2 SET c='sixty-seven thousand six hundred seventy-four' WHERE a=6966; UPDATE t2 SET c='seven thousand nine hundred sixty-five' WHERE a=6967; UPDATE t2 SET c='ninety-two thousand seventy-three' WHERE a=6968; UPDATE t2 SET c='thirty-one thousand five hundred ninety-one' WHERE a=6969; UPDATE t2 SET c='sixty-three thousand one hundred ninety-six' WHERE a=6970; UPDATE t2 SET c='seventeen thousand nine hundred fifty-three' WHERE a=6971; UPDATE t2 SET c='twenty-six thousand eight hundred twenty-four' WHERE a=6972; UPDATE t2 SET c='fifty-three thousand forty-two' WHERE a=6973; UPDATE t2 SET c='six thousand seven hundred forty-three' WHERE a=6974; UPDATE t2 SET c='seventy-three thousand nine hundred eighty-three' WHERE a=6975; UPDATE t2 SET c='eighty-three thousand six hundred seventy-three' WHERE a=6976; UPDATE t2 SET c='fifty thousand two hundred seventy-eight' WHERE a=6977; UPDATE t2 SET c='ninety-nine thousand two hundred thirty-nine' WHERE a=6978; UPDATE t2 SET c='fifty-nine thousand nine hundred twenty-seven' WHERE a=6979; UPDATE t2 SET c='sixty-six thousand five hundred thirty-eight' WHERE a=6980; UPDATE t2 SET c='two thousand eleven' WHERE a=6981; UPDATE t2 SET c='fifty-two thousand eight hundred forty-nine' WHERE a=6982; UPDATE t2 SET c='sixty-one thousand two hundred eighteen' WHERE a=6983; UPDATE t2 SET c='fifty-two thousand one hundred three' WHERE a=6984; UPDATE t2 SET c='seventy-two thousand eight hundred forty-one' WHERE a=6985; UPDATE t2 SET c='ninety thousand eight hundred twenty-two' WHERE a=6986; UPDATE t2 SET c='five thousand nine hundred forty-four' WHERE a=6987; UPDATE t2 SET c='thirty-five thousand five hundred twenty-four' WHERE a=6988; UPDATE t2 SET c='thirty-four thousand seventy-four' WHERE a=6989; UPDATE t2 SET c='forty-eight thousand twenty-nine' WHERE a=6990; UPDATE t2 SET c='thirty-four thousand seventy-three' WHERE a=6991; UPDATE t2 SET c='forty-five thousand two hundred twenty-nine' WHERE a=6992; UPDATE t2 SET c='twenty-three thousand six hundred sixty-seven' WHERE a=6993; UPDATE t2 SET c='fifty-two thousand one hundred fifty-five' WHERE a=6994; UPDATE t2 SET c='fifty-three thousand eight hundred nine' WHERE a=6995; UPDATE t2 SET c='forty-three thousand eight hundred forty-nine' WHERE a=6996; UPDATE t2 SET c='forty-one thousand four hundred sixty-one' WHERE a=6997; UPDATE t2 SET c='sixty-five thousand seventeen' WHERE a=6998; UPDATE t2 SET c='ninety-four thousand nine hundred forty' WHERE a=6999; UPDATE t2 SET c='seventeen thousand eighty-four' WHERE a=7000; UPDATE t2 SET c='thirty-eight thousand six hundred sixty-seven' WHERE a=7001; UPDATE t2 SET c='three thousand eighty-five' WHERE a=7002; UPDATE t2 SET c='seventeen thousand four hundred ninety' WHERE a=7003; UPDATE t2 SET c='twenty-three thousand one hundred eleven' WHERE a=7004; UPDATE t2 SET c='thirty-four thousand five hundred sixty-two' WHERE a=7005; UPDATE t2 SET c='sixty-eight thousand two hundred ninety-nine' WHERE a=7006; UPDATE t2 SET c='seventy-three thousand three hundred seventy-three' WHERE a=7007; UPDATE t2 SET c='thirty-eight thousand three hundred sixty-nine' WHERE a=7008; UPDATE t2 SET c='one hundred forty-two' WHERE a=7009; UPDATE t2 SET c='eighty-eight thousand seventy-one' WHERE a=7010; UPDATE t2 SET c='ninety-four thousand thirty-two' WHERE a=7011; UPDATE t2 SET c='seven thousand one hundred thirty-four' WHERE a=7012; UPDATE t2 SET c='forty-six thousand three hundred seventy-two' WHERE a=7013; UPDATE t2 SET c='eighty thousand three hundred seventy-six' WHERE a=7014; UPDATE t2 SET c='sixty-seven thousand seven hundred fourteen' WHERE a=7015; UPDATE t2 SET c='seventy-five thousand six hundred twenty-one' WHERE a=7016; UPDATE t2 SET c='fifteen thousand four hundred forty-three' WHERE a=7017; UPDATE t2 SET c='twenty thousand five hundred one' WHERE a=7018; UPDATE t2 SET c='eleven thousand eight hundred forty-three' WHERE a=7019; UPDATE t2 SET c='eighteen thousand eight hundred ninety-eight' WHERE a=7020; UPDATE t2 SET c='fifteen thousand three hundred seven' WHERE a=7021; UPDATE t2 SET c='sixty-five thousand nine hundred thirty' WHERE a=7022; UPDATE t2 SET c='ninety-two thousand two hundred twenty-one' WHERE a=7023; UPDATE t2 SET c='eighty-five thousand three hundred thirty' WHERE a=7024; UPDATE t2 SET c='twenty-one thousand five hundred thirty-four' WHERE a=7025; UPDATE t2 SET c='twenty-six thousand five hundred fifty-five' WHERE a=7026; UPDATE t2 SET c='seventy-four thousand two hundred seventy-two' WHERE a=7027; UPDATE t2 SET c='thirty-three thousand nine hundred twenty' WHERE a=7028; UPDATE t2 SET c='seventy-five thousand one hundred twenty-one' WHERE a=7029; UPDATE t2 SET c='ninety-two thousand six hundred twelve' WHERE a=7030; UPDATE t2 SET c='thirty-four thousand ninety-nine' WHERE a=7031; UPDATE t2 SET c='eighty-eight thousand one hundred ninety-one' WHERE a=7032; UPDATE t2 SET c='seventy-two thousand two hundred twenty-four' WHERE a=7033; UPDATE t2 SET c='fifty-two thousand eight hundred sixty-eight' WHERE a=7034; UPDATE t2 SET c='eighty-six thousand eight hundred' WHERE a=7035; UPDATE t2 SET c='twenty-nine thousand seven hundred forty-four' WHERE a=7036; UPDATE t2 SET c='twenty thousand three hundred seventy-eight' WHERE a=7037; UPDATE t2 SET c='forty-one thousand four hundred thirty-two' WHERE a=7038; UPDATE t2 SET c='fifty-three thousand nine hundred twenty-six' WHERE a=7039; UPDATE t2 SET c='forty-two thousand three hundred one' WHERE a=7040; UPDATE t2 SET c='seventeen thousand thirty-two' WHERE a=7041; UPDATE t2 SET c='ninety thousand five hundred six' WHERE a=7042; UPDATE t2 SET c='seventeen thousand nine hundred seventy' WHERE a=7043; UPDATE t2 SET c='forty-five thousand four hundred fifty-three' WHERE a=7044; UPDATE t2 SET c='thirty-four thousand four hundred seventeen' WHERE a=7045; UPDATE t2 SET c='sixty-six thousand twenty-seven' WHERE a=7046; UPDATE t2 SET c='twenty-three thousand five hundred fifty-three' WHERE a=7047; UPDATE t2 SET c='eighty-one thousand two hundred twenty-two' WHERE a=7048; UPDATE t2 SET c='seventy-six thousand five hundred twenty-seven' WHERE a=7049; UPDATE t2 SET c='fourteen thousand two hundred sixty-three' WHERE a=7050; UPDATE t2 SET c='thirty-two thousand ninety-six' WHERE a=7051; UPDATE t2 SET c='fourteen thousand six hundred seventy-eight' WHERE a=7052; UPDATE t2 SET c='fifteen thousand nine hundred twenty-eight' WHERE a=7053; UPDATE t2 SET c='twenty-six thousand five hundred forty-five' WHERE a=7054; UPDATE t2 SET c='eleven thousand one hundred twenty-eight' WHERE a=7055; UPDATE t2 SET c='sixty-three thousand seven hundred twenty-eight' WHERE a=7056; UPDATE t2 SET c='forty-six thousand two hundred thirty-seven' WHERE a=7057; UPDATE t2 SET c='seventy-six thousand one hundred forty-nine' WHERE a=7058; UPDATE t2 SET c='fifty-five thousand four hundred seventy-nine' WHERE a=7059; UPDATE t2 SET c='ninety-two thousand eight hundred forty-four' WHERE a=7060; UPDATE t2 SET c='ninety-seven thousand nine hundred twenty-seven' WHERE a=7061; UPDATE t2 SET c='sixty-two thousand two hundred nine' WHERE a=7062; UPDATE t2 SET c='sixteen thousand one hundred seventy-five' WHERE a=7063; UPDATE t2 SET c='fifty-five thousand one hundred sixty-two' WHERE a=7064; UPDATE t2 SET c='forty-three thousand three hundred ninety-six' WHERE a=7065; UPDATE t2 SET c='nine thousand three hundred seventy-two' WHERE a=7066; UPDATE t2 SET c='fifty-one thousand seven hundred eighteen' WHERE a=7067; UPDATE t2 SET c='ninety-nine thousand three hundred thirty-three' WHERE a=7068; UPDATE t2 SET c='sixty-eight thousand six hundred forty-seven' WHERE a=7069; UPDATE t2 SET c='fifty-eight thousand six hundred twelve' WHERE a=7070; UPDATE t2 SET c='sixty-nine thousand six hundred forty-five' WHERE a=7071; UPDATE t2 SET c='fifty-seven thousand seven hundred ninety-four' WHERE a=7072; UPDATE t2 SET c='sixty-nine thousand seven hundred eighty-nine' WHERE a=7073; UPDATE t2 SET c='seventy-five thousand eleven' WHERE a=7074; UPDATE t2 SET c='fifty-nine thousand eight hundred ninety-four' WHERE a=7075; UPDATE t2 SET c='fifty-two thousand seven hundred twenty-two' WHERE a=7076; UPDATE t2 SET c='thirty-six thousand five hundred six' WHERE a=7077; UPDATE t2 SET c='three thousand nine hundred forty-two' WHERE a=7078; UPDATE t2 SET c='thirty-six thousand two hundred ninety-eight' WHERE a=7079; UPDATE t2 SET c='fifty-nine thousand ninety-five' WHERE a=7080; UPDATE t2 SET c='forty-seven thousand four hundred sixty-eight' WHERE a=7081; UPDATE t2 SET c='sixteen thousand one hundred seventy-five' WHERE a=7082; UPDATE t2 SET c='seventy-two thousand eight hundred sixty-eight' WHERE a=7083; UPDATE t2 SET c='forty-eight thousand seven hundred ninety-three' WHERE a=7084; UPDATE t2 SET c='sixty-two thousand three hundred fourteen' WHERE a=7085; UPDATE t2 SET c='seventy-eight thousand nine hundred sixty-five' WHERE a=7086; UPDATE t2 SET c='eighty thousand seven hundred eighty-six' WHERE a=7087; UPDATE t2 SET c='six hundred forty-two' WHERE a=7088; UPDATE t2 SET c='seventeen thousand six hundred twelve' WHERE a=7089; UPDATE t2 SET c='eighty-seven thousand seven hundred fifty-five' WHERE a=7090; UPDATE t2 SET c='twenty-seven thousand two hundred fifteen' WHERE a=7091; UPDATE t2 SET c='fifty-three thousand four hundred twenty-one' WHERE a=7092; UPDATE t2 SET c='eighty-seven thousand eighteen' WHERE a=7093; UPDATE t2 SET c='fifty-three thousand six hundred twenty-five' WHERE a=7094; UPDATE t2 SET c='eighteen thousand nine hundred fifty-seven' WHERE a=7095; UPDATE t2 SET c='forty-one thousand two hundred fifty-seven' WHERE a=7096; UPDATE t2 SET c='fifty-eight thousand seven hundred seventeen' WHERE a=7097; UPDATE t2 SET c='seventy-four thousand nine hundred thirty-nine' WHERE a=7098; UPDATE t2 SET c='three thousand eight hundred two' WHERE a=7099; UPDATE t2 SET c='seventy-eight thousand six hundred sixty-nine' WHERE a=7100; UPDATE t2 SET c='sixty-eight thousand four hundred forty' WHERE a=7101; UPDATE t2 SET c='eleven thousand nine hundred eighty-seven' WHERE a=7102; UPDATE t2 SET c='ninety-seven thousand nine hundred sixty' WHERE a=7103; UPDATE t2 SET c='two thousand one hundred thirty-two' WHERE a=7104; UPDATE t2 SET c='thirty-two thousand six hundred nineteen' WHERE a=7105; UPDATE t2 SET c='ninety-four thousand fifty-six' WHERE a=7106; UPDATE t2 SET c='seven hundred twenty-nine' WHERE a=7107; UPDATE t2 SET c='nineteen thousand eight hundred fifty-three' WHERE a=7108; UPDATE t2 SET c='two thousand seven' WHERE a=7109; UPDATE t2 SET c='twenty thousand one hundred ninety-one' WHERE a=7110; UPDATE t2 SET c='fifty-one thousand five hundred nine' WHERE a=7111; UPDATE t2 SET c='eighty-nine thousand five hundred seventy-one' WHERE a=7112; UPDATE t2 SET c='seventy-one thousand three hundred thirty-five' WHERE a=7113; UPDATE t2 SET c='ninety-one thousand seven hundred one' WHERE a=7114; UPDATE t2 SET c='twelve thousand one hundred forty' WHERE a=7115; UPDATE t2 SET c='ninety-eight thousand four hundred ninety-nine' WHERE a=7116; UPDATE t2 SET c='forty-nine thousand three hundred forty-four' WHERE a=7117; UPDATE t2 SET c='sixty-six thousand one' WHERE a=7118; UPDATE t2 SET c='seventy-six thousand seven hundred eighty-one' WHERE a=7119; UPDATE t2 SET c='eighty-seven thousand one hundred three' WHERE a=7120; UPDATE t2 SET c='nine thousand five hundred fifty' WHERE a=7121; UPDATE t2 SET c='forty-four thousand six hundred ninety-three' WHERE a=7122; UPDATE t2 SET c='five thousand one hundred ninety-five' WHERE a=7123; UPDATE t2 SET c='eight thousand nine hundred five' WHERE a=7124; UPDATE t2 SET c='forty-three thousand six hundred twenty-seven' WHERE a=7125; UPDATE t2 SET c='sixty-five thousand seven hundred seven' WHERE a=7126; UPDATE t2 SET c='three thousand one hundred seventy-four' WHERE a=7127; UPDATE t2 SET c='fifty-eight thousand six hundred thirty-five' WHERE a=7128; UPDATE t2 SET c='ninety-two thousand one hundred fifty-four' WHERE a=7129; UPDATE t2 SET c='eighty-one thousand nine hundred sixty' WHERE a=7130; UPDATE t2 SET c='fifty-nine thousand sixty' WHERE a=7131; UPDATE t2 SET c='seventy-two thousand nine hundred four' WHERE a=7132; UPDATE t2 SET c='seventy-seven thousand forty-three' WHERE a=7133; UPDATE t2 SET c='seventeen thousand eight hundred sixteen' WHERE a=7134; UPDATE t2 SET c='thirty-one thousand two hundred sixteen' WHERE a=7135; UPDATE t2 SET c='sixteen thousand five hundred fifty' WHERE a=7136; UPDATE t2 SET c='eighty-seven thousand nine hundred forty-three' WHERE a=7137; UPDATE t2 SET c='ninety-six thousand eight hundred seventy-seven' WHERE a=7138; UPDATE t2 SET c='thirteen thousand seven hundred eighty-five' WHERE a=7139; UPDATE t2 SET c='forty-two thousand seven hundred twenty-nine' WHERE a=7140; UPDATE t2 SET c='ninety-two thousand seven hundred eighty' WHERE a=7141; UPDATE t2 SET c='sixty thousand eight hundred fifty-nine' WHERE a=7142; UPDATE t2 SET c='eighty-one thousand four hundred ninety-seven' WHERE a=7143; UPDATE t2 SET c='six thousand one hundred ninety-four' WHERE a=7144; UPDATE t2 SET c='ninety-nine thousand seven hundred fifty-one' WHERE a=7145; UPDATE t2 SET c='thirty-eight thousand six hundred thirty-nine' WHERE a=7146; UPDATE t2 SET c='fifty-five thousand six hundred twenty-three' WHERE a=7147; UPDATE t2 SET c='seven thousand one hundred sixty-four' WHERE a=7148; UPDATE t2 SET c='thirty-five thousand seven hundred nineteen' WHERE a=7149; UPDATE t2 SET c='seventy-two thousand three hundred fifty-eight' WHERE a=7150; UPDATE t2 SET c='sixty thousand four hundred forty-seven' WHERE a=7151; UPDATE t2 SET c='twenty-three thousand twenty-six' WHERE a=7152; UPDATE t2 SET c='thirty-five thousand four hundred eighty' WHERE a=7153; UPDATE t2 SET c='fifty-seven thousand four hundred sixty' WHERE a=7154; UPDATE t2 SET c='eighty thousand two hundred eighteen' WHERE a=7155; UPDATE t2 SET c='fifty-six thousand four hundred eighty-one' WHERE a=7156; UPDATE t2 SET c='fifty-one thousand seven hundred sixty-two' WHERE a=7157; UPDATE t2 SET c='two thousand one hundred nine' WHERE a=7158; UPDATE t2 SET c='sixty-seven thousand five hundred three' WHERE a=7159; UPDATE t2 SET c='five thousand one hundred forty-two' WHERE a=7160; UPDATE t2 SET c='four thousand seven hundred seventy-five' WHERE a=7161; UPDATE t2 SET c='eighteen thousand five hundred sixty-three' WHERE a=7162; UPDATE t2 SET c='thirty-seven thousand eighty' WHERE a=7163; UPDATE t2 SET c='one hundred thirty-eight' WHERE a=7164; UPDATE t2 SET c='twenty-one thousand six hundred seven' WHERE a=7165; UPDATE t2 SET c='eight thousand six hundred seventy-three' WHERE a=7166; UPDATE t2 SET c='fifty-one thousand two hundred ninety-five' WHERE a=7167; UPDATE t2 SET c='sixty-one thousand three hundred thirty-five' WHERE a=7168; UPDATE t2 SET c='thirty-six thousand eight hundred seventy-six' WHERE a=7169; UPDATE t2 SET c='ninety-one thousand seven hundred sixty-four' WHERE a=7170; UPDATE t2 SET c='six thousand seven hundred eighty-seven' WHERE a=7171; UPDATE t2 SET c='thirty-four thousand six hundred ninety-two' WHERE a=7172; UPDATE t2 SET c='seventy-eight thousand seven hundred seventy-five' WHERE a=7173; UPDATE t2 SET c='eighty-three thousand five hundred fifty-three' WHERE a=7174; UPDATE t2 SET c='sixty-eight thousand five hundred seventy-three' WHERE a=7175; UPDATE t2 SET c='eleven thousand nine hundred eighty-one' WHERE a=7176; UPDATE t2 SET c='thirty-three thousand three hundred forty-eight' WHERE a=7177; UPDATE t2 SET c='nineteen thousand nine hundred five' WHERE a=7178; UPDATE t2 SET c='sixty-three thousand two hundred seventy-seven' WHERE a=7179; UPDATE t2 SET c='fifty-one thousand eight hundred two' WHERE a=7180; UPDATE t2 SET c='thirty-nine thousand five hundred eighty-four' WHERE a=7181; UPDATE t2 SET c='sixty-six thousand four hundred seventy-four' WHERE a=7182; UPDATE t2 SET c='three thousand one hundred seventy-two' WHERE a=7183; UPDATE t2 SET c='fifty-two thousand twenty-one' WHERE a=7184; UPDATE t2 SET c='twenty-three thousand one hundred forty-eight' WHERE a=7185; UPDATE t2 SET c='fifty thousand eight hundred fifty-four' WHERE a=7186; UPDATE t2 SET c='thirty-five thousand one hundred twenty-four' WHERE a=7187; UPDATE t2 SET c='ninety-eight thousand forty-two' WHERE a=7188; UPDATE t2 SET c='one thousand nine hundred fifty-three' WHERE a=7189; UPDATE t2 SET c='sixty-one thousand two hundred twelve' WHERE a=7190; UPDATE t2 SET c='twenty-four thousand four hundred sixty' WHERE a=7191; UPDATE t2 SET c='eighty-four thousand one hundred ninety-five' WHERE a=7192; UPDATE t2 SET c='ninety-four thousand eight hundred nine' WHERE a=7193; UPDATE t2 SET c='seventy-seven thousand three hundred fifty' WHERE a=7194; UPDATE t2 SET c='twenty-three thousand six hundred ninety' WHERE a=7195; UPDATE t2 SET c='eighty-three thousand six hundred forty-six' WHERE a=7196; UPDATE t2 SET c='twenty-one thousand nine hundred forty-one' WHERE a=7197; UPDATE t2 SET c='sixty-one thousand one hundred twenty-four' WHERE a=7198; UPDATE t2 SET c='sixty-four thousand four hundred two' WHERE a=7199; UPDATE t2 SET c='sixty-four thousand eight hundred thirteen' WHERE a=7200; UPDATE t2 SET c='nine thousand seven hundred' WHERE a=7201; UPDATE t2 SET c='ninety-one thousand eight hundred eighty-eight' WHERE a=7202; UPDATE t2 SET c='six thousand thirty-three' WHERE a=7203; UPDATE t2 SET c='eighty-eight thousand four hundred eight' WHERE a=7204; UPDATE t2 SET c='forty-seven thousand one hundred twenty-eight' WHERE a=7205; UPDATE t2 SET c='seventy-seven thousand nine hundred forty-six' WHERE a=7206; UPDATE t2 SET c='twelve thousand six hundred forty' WHERE a=7207; UPDATE t2 SET c='fifty-three thousand five hundred thirty-four' WHERE a=7208; UPDATE t2 SET c='ninety thousand five hundred twenty-seven' WHERE a=7209; UPDATE t2 SET c='forty-one thousand seven hundred thirty-three' WHERE a=7210; UPDATE t2 SET c='thirteen thousand five hundred fifty-four' WHERE a=7211; UPDATE t2 SET c='sixteen thousand one hundred sixty-seven' WHERE a=7212; UPDATE t2 SET c='three thousand six hundred sixty' WHERE a=7213; UPDATE t2 SET c='seventy-seven thousand five hundred sixteen' WHERE a=7214; UPDATE t2 SET c='twenty thousand eight hundred seventy-seven' WHERE a=7215; UPDATE t2 SET c='forty-one thousand five hundred forty-nine' WHERE a=7216; UPDATE t2 SET c='four thousand four hundred sixty-three' WHERE a=7217; UPDATE t2 SET c='forty-three thousand five hundred thirty-eight' WHERE a=7218; UPDATE t2 SET c='forty-six thousand fifty-nine' WHERE a=7219; UPDATE t2 SET c='twenty-six thousand five hundred fifty-five' WHERE a=7220; UPDATE t2 SET c='sixteen thousand eight hundred four' WHERE a=7221; UPDATE t2 SET c='seventy-seven thousand one hundred seventy-eight' WHERE a=7222; UPDATE t2 SET c='seventy-four thousand forty' WHERE a=7223; UPDATE t2 SET c='fifty-seven thousand twenty-one' WHERE a=7224; UPDATE t2 SET c='one thousand nine hundred fifty-five' WHERE a=7225; UPDATE t2 SET c='nineteen thousand six hundred fifty-nine' WHERE a=7226; UPDATE t2 SET c='nine thousand two hundred forty-one' WHERE a=7227; UPDATE t2 SET c='seventeen thousand three hundred fifty-six' WHERE a=7228; UPDATE t2 SET c='twenty-four thousand four hundred seventy-three' WHERE a=7229; UPDATE t2 SET c='forty-four thousand five hundred twenty-two' WHERE a=7230; UPDATE t2 SET c='thirty-one thousand nine hundred two' WHERE a=7231; UPDATE t2 SET c='ten thousand nine hundred forty' WHERE a=7232; UPDATE t2 SET c='twenty thousand nine hundred seventy-seven' WHERE a=7233; UPDATE t2 SET c='thirty-six thousand nine hundred thirty-four' WHERE a=7234; UPDATE t2 SET c='eight thousand three hundred twenty-two' WHERE a=7235; UPDATE t2 SET c='twenty-two thousand seven hundred eighteen' WHERE a=7236; UPDATE t2 SET c='fifty-eight thousand thirty-eight' WHERE a=7237; UPDATE t2 SET c='thirteen thousand seven hundred ninety-seven' WHERE a=7238; UPDATE t2 SET c='sixty-seven thousand six hundred sixty-nine' WHERE a=7239; UPDATE t2 SET c='thirteen thousand one hundred eighty-four' WHERE a=7240; UPDATE t2 SET c='eighty-six thousand eight hundred ninety-nine' WHERE a=7241; UPDATE t2 SET c='forty-two thousand one hundred thirty-three' WHERE a=7242; UPDATE t2 SET c='sixty-four thousand four hundred ninety-three' WHERE a=7243; UPDATE t2 SET c='fifty-nine thousand fifty-two' WHERE a=7244; UPDATE t2 SET c='forty-one thousand forty-four' WHERE a=7245; UPDATE t2 SET c='twenty-eight thousand forty-one' WHERE a=7246; UPDATE t2 SET c='eighty-seven thousand three hundred twenty' WHERE a=7247; UPDATE t2 SET c='thirty-two thousand sixty-five' WHERE a=7248; UPDATE t2 SET c='forty-four thousand forty-four' WHERE a=7249; UPDATE t2 SET c='twelve thousand eight hundred fifty-six' WHERE a=7250; UPDATE t2 SET c='twenty-four thousand eight hundred forty-five' WHERE a=7251; UPDATE t2 SET c='eighty-five thousand two hundred three' WHERE a=7252; UPDATE t2 SET c='sixteen thousand two hundred ninety-nine' WHERE a=7253; UPDATE t2 SET c='forty-five thousand seven hundred sixty-three' WHERE a=7254; UPDATE t2 SET c='forty thousand ten' WHERE a=7255; UPDATE t2 SET c='ninety-two thousand seven hundred eighty-two' WHERE a=7256; UPDATE t2 SET c='twenty-nine thousand eight hundred eighty-three' WHERE a=7257; UPDATE t2 SET c='fifty-seven thousand seven hundred ninety-seven' WHERE a=7258; UPDATE t2 SET c='ninety-four thousand forty-five' WHERE a=7259; UPDATE t2 SET c='thirty-two thousand one hundred seven' WHERE a=7260; UPDATE t2 SET c='sixty-five thousand six hundred twenty-two' WHERE a=7261; UPDATE t2 SET c='eighty thousand four hundred sixty-three' WHERE a=7262; UPDATE t2 SET c='one thousand eight hundred sixty-three' WHERE a=7263; UPDATE t2 SET c='fourteen thousand five hundred twenty-seven' WHERE a=7264; UPDATE t2 SET c='fifty-seven thousand seven hundred seventy-seven' WHERE a=7265; UPDATE t2 SET c='seventy-one thousand four hundred sixty-four' WHERE a=7266; UPDATE t2 SET c='eighty-five thousand seventy-three' WHERE a=7267; UPDATE t2 SET c='fifty-two thousand seven hundred ninety-seven' WHERE a=7268; UPDATE t2 SET c='twelve thousand eight hundred forty-nine' WHERE a=7269; UPDATE t2 SET c='ninety-eight thousand nine hundred sixty-four' WHERE a=7270; UPDATE t2 SET c='four thousand one hundred thirty' WHERE a=7271; UPDATE t2 SET c='thirty-four thousand three hundred thirty-five' WHERE a=7272; UPDATE t2 SET c='fifty-two thousand two hundred ninety' WHERE a=7273; UPDATE t2 SET c='fifty-seven thousand one hundred thirty-two' WHERE a=7274; UPDATE t2 SET c='ninety-three thousand four hundred ten' WHERE a=7275; UPDATE t2 SET c='fifty-nine thousand one' WHERE a=7276; UPDATE t2 SET c='thirty thousand four hundred thirty-five' WHERE a=7277; UPDATE t2 SET c='twenty-eight thousand two hundred ten' WHERE a=7278; UPDATE t2 SET c='sixty-nine thousand three hundred forty-six' WHERE a=7279; UPDATE t2 SET c='eleven thousand seven hundred forty-one' WHERE a=7280; UPDATE t2 SET c='twelve thousand two hundred eighteen' WHERE a=7281; UPDATE t2 SET c='seventy-three thousand four hundred thirty-three' WHERE a=7282; UPDATE t2 SET c='seventy-two thousand three hundred thirty-nine' WHERE a=7283; UPDATE t2 SET c='one thousand seven hundred fourteen' WHERE a=7284; UPDATE t2 SET c='forty thousand five hundred fifty-nine' WHERE a=7285; UPDATE t2 SET c='fifty-four thousand eight hundred fifty-four' WHERE a=7286; UPDATE t2 SET c='twenty-eight thousand nine hundred forty-eight' WHERE a=7287; UPDATE t2 SET c='forty-four thousand one hundred eighty-eight' WHERE a=7288; UPDATE t2 SET c='three hundred fifty-one' WHERE a=7289; UPDATE t2 SET c='thirty-one thousand four hundred sixty-eight' WHERE a=7290; UPDATE t2 SET c='forty-one thousand two hundred forty-three' WHERE a=7291; UPDATE t2 SET c='seventy-one thousand nine hundred twenty-seven' WHERE a=7292; UPDATE t2 SET c='sixty-six thousand sixty-two' WHERE a=7293; UPDATE t2 SET c='ninety-six thousand nine hundred' WHERE a=7294; UPDATE t2 SET c='sixty-nine thousand nine hundred forty-three' WHERE a=7295; UPDATE t2 SET c='sixty-eight thousand one hundred forty-seven' WHERE a=7296; UPDATE t2 SET c='thirty-five thousand three hundred twenty-eight' WHERE a=7297; UPDATE t2 SET c='nine thousand fifty-six' WHERE a=7298; UPDATE t2 SET c='six hundred thirty-three' WHERE a=7299; UPDATE t2 SET c='six thousand two hundred sixty-five' WHERE a=7300; UPDATE t2 SET c='sixty-five thousand nine hundred eighty-one' WHERE a=7301; UPDATE t2 SET c='sixty-two thousand five hundred forty' WHERE a=7302; UPDATE t2 SET c='twenty-eight thousand four hundred thirty-two' WHERE a=7303; UPDATE t2 SET c='seventy-seven thousand four hundred sixty-five' WHERE a=7304; UPDATE t2 SET c='fifty-one thousand six hundred forty-six' WHERE a=7305; UPDATE t2 SET c='eighty-four thousand eight hundred seven' WHERE a=7306; UPDATE t2 SET c='sixty-one thousand three hundred fifty-one' WHERE a=7307; UPDATE t2 SET c='thirty-six thousand seven hundred ninety-seven' WHERE a=7308; UPDATE t2 SET c='eighty-three thousand five hundred ten' WHERE a=7309; UPDATE t2 SET c='seventeen thousand three hundred seventy-one' WHERE a=7310; UPDATE t2 SET c='fifty-eight thousand eighteen' WHERE a=7311; UPDATE t2 SET c='twenty-five thousand nine hundred thirty-eight' WHERE a=7312; UPDATE t2 SET c='thirty-six thousand eight hundred thirty' WHERE a=7313; UPDATE t2 SET c='fifty-three thousand seven hundred eighty-four' WHERE a=7314; UPDATE t2 SET c='ninety-one thousand six hundred five' WHERE a=7315; UPDATE t2 SET c='fifty-seven thousand three hundred twenty-eight' WHERE a=7316; UPDATE t2 SET c='twenty-five thousand six hundred seventy-eight' WHERE a=7317; UPDATE t2 SET c='fourteen thousand eight hundred sixty-two' WHERE a=7318; UPDATE t2 SET c='ninety-nine thousand eight hundred ninety-eight' WHERE a=7319; UPDATE t2 SET c='nine thousand nine hundred seventy-two' WHERE a=7320; UPDATE t2 SET c='seven hundred seventeen' WHERE a=7321; UPDATE t2 SET c='seventy thousand six hundred five' WHERE a=7322; UPDATE t2 SET c='forty-one thousand two hundred sixty-four' WHERE a=7323; UPDATE t2 SET c='sixty-five thousand six hundred seventy-nine' WHERE a=7324; UPDATE t2 SET c='thirty-two thousand one hundred thirty-six' WHERE a=7325; UPDATE t2 SET c='forty-eight thousand seventy-one' WHERE a=7326; UPDATE t2 SET c='thirty-two thousand three hundred eighty-seven' WHERE a=7327; UPDATE t2 SET c='eighty-eight thousand seven hundred ninety-four' WHERE a=7328; UPDATE t2 SET c='sixty-one thousand three hundred seventy-six' WHERE a=7329; UPDATE t2 SET c='seventeen thousand two hundred eighty-three' WHERE a=7330; UPDATE t2 SET c='five thousand nine hundred ninety-two' WHERE a=7331; UPDATE t2 SET c='fifty-one thousand six hundred fifteen' WHERE a=7332; UPDATE t2 SET c='ninety-seven thousand five hundred eighty-six' WHERE a=7333; UPDATE t2 SET c='twenty-eight thousand five hundred sixty-five' WHERE a=7334; UPDATE t2 SET c='forty-eight thousand five hundred thirty' WHERE a=7335; UPDATE t2 SET c='forty thousand three hundred fifty-eight' WHERE a=7336; UPDATE t2 SET c='two thousand three hundred one' WHERE a=7337; UPDATE t2 SET c='twenty-four thousand two hundred fifty-seven' WHERE a=7338; UPDATE t2 SET c='sixty-six thousand nine hundred ninety-eight' WHERE a=7339; UPDATE t2 SET c='twenty-nine thousand eight hundred eighty-three' WHERE a=7340; UPDATE t2 SET c='nineteen thousand nine hundred fourteen' WHERE a=7341; UPDATE t2 SET c='twenty-six thousand seven hundred eighteen' WHERE a=7342; UPDATE t2 SET c='seventy-four thousand seven hundred seventy-five' WHERE a=7343; UPDATE t2 SET c='seventy-eight thousand two hundred forty-seven' WHERE a=7344; UPDATE t2 SET c='eighty-nine thousand three hundred four' WHERE a=7345; UPDATE t2 SET c='twenty-nine thousand one hundred sixty-five' WHERE a=7346; UPDATE t2 SET c='fifty-eight thousand eighty-seven' WHERE a=7347; UPDATE t2 SET c='eighty thousand two hundred sixteen' WHERE a=7348; UPDATE t2 SET c='four thousand one hundred forty-three' WHERE a=7349; UPDATE t2 SET c='seventy-four thousand three hundred forty-two' WHERE a=7350; UPDATE t2 SET c='seventeen thousand one hundred forty-three' WHERE a=7351; UPDATE t2 SET c='ninety-seven thousand three hundred' WHERE a=7352; UPDATE t2 SET c='fifty-five thousand eight hundred twenty-two' WHERE a=7353; UPDATE t2 SET c='nine thousand four hundred ninety-four' WHERE a=7354; UPDATE t2 SET c='eighteen thousand five hundred ten' WHERE a=7355; UPDATE t2 SET c='eighty-four thousand seven hundred twenty-nine' WHERE a=7356; UPDATE t2 SET c='fifty thousand four hundred thirty-two' WHERE a=7357; UPDATE t2 SET c='sixty-seven thousand two hundred thirty-eight' WHERE a=7358; UPDATE t2 SET c='sixty-six thousand seven hundred thirty-four' WHERE a=7359; UPDATE t2 SET c='eighty-four thousand five' WHERE a=7360; UPDATE t2 SET c='fourteen thousand two hundred nine' WHERE a=7361; UPDATE t2 SET c='two thousand eighty-four' WHERE a=7362; UPDATE t2 SET c='thirty-seven thousand five hundred thirty' WHERE a=7363; UPDATE t2 SET c='thirty-six thousand three hundred seven' WHERE a=7364; UPDATE t2 SET c='five thousand seven hundred nineteen' WHERE a=7365; UPDATE t2 SET c='sixty-eight thousand seven hundred two' WHERE a=7366; UPDATE t2 SET c='sixteen thousand three hundred eighteen' WHERE a=7367; UPDATE t2 SET c='forty thousand two hundred thirty-three' WHERE a=7368; UPDATE t2 SET c='sixty-two thousand one' WHERE a=7369; UPDATE t2 SET c='thirty-five thousand one hundred' WHERE a=7370; UPDATE t2 SET c='sixty-nine thousand seven hundred ten' WHERE a=7371; UPDATE t2 SET c='twenty-one thousand nine hundred sixty-one' WHERE a=7372; UPDATE t2 SET c='thirty-three thousand one hundred nineteen' WHERE a=7373; UPDATE t2 SET c='seventy-four thousand eight hundred eighty-seven' WHERE a=7374; UPDATE t2 SET c='seventy thousand six hundred ninety-three' WHERE a=7375; UPDATE t2 SET c='eighty-three thousand one' WHERE a=7376; UPDATE t2 SET c='ninety thousand three hundred thirty-eight' WHERE a=7377; UPDATE t2 SET c='thirty-two thousand seven hundred sixty' WHERE a=7378; UPDATE t2 SET c='seventy-four thousand five hundred seventeen' WHERE a=7379; UPDATE t2 SET c='thirty-eight thousand three hundred fourteen' WHERE a=7380; UPDATE t2 SET c='seventy-four thousand eight hundred nineteen' WHERE a=7381; UPDATE t2 SET c='three thousand nine hundred ninety-one' WHERE a=7382; UPDATE t2 SET c='sixty-eight thousand five hundred twenty-three' WHERE a=7383; UPDATE t2 SET c='eighty-nine thousand four hundred four' WHERE a=7384; UPDATE t2 SET c='seventy-eight thousand seven hundred fifty' WHERE a=7385; UPDATE t2 SET c='sixty-seven thousand seven hundred fifty-five' WHERE a=7386; UPDATE t2 SET c='thirteen thousand six hundred eighty-three' WHERE a=7387; UPDATE t2 SET c='forty thousand one hundred ninety-six' WHERE a=7388; UPDATE t2 SET c='seventy-seven thousand nine hundred twenty-six' WHERE a=7389; UPDATE t2 SET c='seventy-six thousand six hundred four' WHERE a=7390; UPDATE t2 SET c='ninety-two thousand six hundred fifty-one' WHERE a=7391; UPDATE t2 SET c='eighty-nine thousand eight hundred forty-six' WHERE a=7392; UPDATE t2 SET c='thirty-eight thousand three hundred twenty-nine' WHERE a=7393; UPDATE t2 SET c='eighty-one thousand eight hundred fifty-seven' WHERE a=7394; UPDATE t2 SET c='sixty-five thousand seven hundred thirty-six' WHERE a=7395; UPDATE t2 SET c='ten thousand four hundred sixty-six' WHERE a=7396; UPDATE t2 SET c='eighty-six thousand' WHERE a=7397; UPDATE t2 SET c='twenty-two thousand five hundred forty-one' WHERE a=7398; UPDATE t2 SET c='twenty-five thousand six hundred one' WHERE a=7399; UPDATE t2 SET c='eight hundred fifty-nine' WHERE a=7400; UPDATE t2 SET c='sixty-six thousand ninety-one' WHERE a=7401; UPDATE t2 SET c='ninety-one thousand six hundred nineteen' WHERE a=7402; UPDATE t2 SET c='eighty-five thousand nine hundred twenty-seven' WHERE a=7403; UPDATE t2 SET c='eighteen thousand eight hundred sixty-nine' WHERE a=7404; UPDATE t2 SET c='sixty-eight thousand one hundred eight' WHERE a=7405; UPDATE t2 SET c='ninety-nine thousand seven hundred forty-one' WHERE a=7406; UPDATE t2 SET c='one thousand two hundred fifty' WHERE a=7407; UPDATE t2 SET c='eighty-one thousand nine hundred seventy-nine' WHERE a=7408; UPDATE t2 SET c='twenty-eight thousand three hundred ninety-six' WHERE a=7409; UPDATE t2 SET c='fifty-three thousand eight hundred twenty-four' WHERE a=7410; UPDATE t2 SET c='twenty-seven thousand seven hundred ninety-five' WHERE a=7411; UPDATE t2 SET c='ninety-one thousand five hundred nine' WHERE a=7412; UPDATE t2 SET c='ninety-four thousand eight hundred seven' WHERE a=7413; UPDATE t2 SET c='eighty-five thousand six hundred twenty-one' WHERE a=7414; UPDATE t2 SET c='eighty-three thousand three hundred eighty-four' WHERE a=7415; UPDATE t2 SET c='seventy-six thousand four hundred twenty' WHERE a=7416; UPDATE t2 SET c='sixty-eight thousand three hundred fifty-seven' WHERE a=7417; UPDATE t2 SET c='fifty-three thousand eight hundred seventy-seven' WHERE a=7418; UPDATE t2 SET c='ninety-four thousand six hundred nineteen' WHERE a=7419; UPDATE t2 SET c='forty-three thousand nine hundred eighty-six' WHERE a=7420; UPDATE t2 SET c='twenty-five thousand five hundred ninety-two' WHERE a=7421; UPDATE t2 SET c='fifty-one thousand one hundred fifty-seven' WHERE a=7422; UPDATE t2 SET c='forty-two thousand five hundred thirty-eight' WHERE a=7423; UPDATE t2 SET c='thirteen thousand four hundred twelve' WHERE a=7424; UPDATE t2 SET c='forty-four thousand forty' WHERE a=7425; UPDATE t2 SET c='eight thousand seven hundred seventy-five' WHERE a=7426; UPDATE t2 SET c='ninety-six thousand four hundred seventy-eight' WHERE a=7427; UPDATE t2 SET c='sixty-six thousand five hundred twenty-nine' WHERE a=7428; UPDATE t2 SET c='seventy-nine thousand four hundred ninety-nine' WHERE a=7429; UPDATE t2 SET c='thirty-four thousand fifty-five' WHERE a=7430; UPDATE t2 SET c='fifty-one thousand five hundred sixty-five' WHERE a=7431; UPDATE t2 SET c='two thousand six hundred seventy-three' WHERE a=7432; UPDATE t2 SET c='seventy-four thousand five hundred sixty-seven' WHERE a=7433; UPDATE t2 SET c='seventy-seven thousand four hundred eighty-seven' WHERE a=7434; UPDATE t2 SET c='sixty-two thousand fourteen' WHERE a=7435; UPDATE t2 SET c='thirty-nine thousand one hundred' WHERE a=7436; UPDATE t2 SET c='ninety-one thousand one hundred twenty' WHERE a=7437; UPDATE t2 SET c='eighty-four thousand three hundred seventy-seven' WHERE a=7438; UPDATE t2 SET c='forty-seven thousand ninety-one' WHERE a=7439; UPDATE t2 SET c='thirty-nine thousand seven hundred thirteen' WHERE a=7440; UPDATE t2 SET c='thirty-seven thousand two hundred five' WHERE a=7441; UPDATE t2 SET c='eighty-four thousand one hundred twenty' WHERE a=7442; UPDATE t2 SET c='fifteen thousand eighty' WHERE a=7443; UPDATE t2 SET c='seventy thousand four hundred seventy' WHERE a=7444; UPDATE t2 SET c='twenty-six thousand four hundred five' WHERE a=7445; UPDATE t2 SET c='seventy-six thousand ninety-two' WHERE a=7446; UPDATE t2 SET c='forty-nine thousand six hundred twenty-three' WHERE a=7447; UPDATE t2 SET c='fifteen thousand four hundred twenty' WHERE a=7448; UPDATE t2 SET c='eighty-nine thousand three hundred ten' WHERE a=7449; UPDATE t2 SET c='fifty-nine thousand five hundred seventy-two' WHERE a=7450; UPDATE t2 SET c='fifty-three thousand six hundred eighty-seven' WHERE a=7451; UPDATE t2 SET c='four thousand two hundred eleven' WHERE a=7452; UPDATE t2 SET c='eighty-four thousand fifty' WHERE a=7453; UPDATE t2 SET c='twenty-four thousand one hundred twenty-six' WHERE a=7454; UPDATE t2 SET c='ninety-three thousand one hundred eighty-seven' WHERE a=7455; UPDATE t2 SET c='twelve thousand four hundred eighty' WHERE a=7456; UPDATE t2 SET c='fifty-eight thousand two hundred sixty-seven' WHERE a=7457; UPDATE t2 SET c='six thousand six hundred sixty' WHERE a=7458; UPDATE t2 SET c='ninety-six thousand three hundred seventy-seven' WHERE a=7459; UPDATE t2 SET c='seventy-two thousand eight hundred ninety-one' WHERE a=7460; UPDATE t2 SET c='sixty-nine thousand six hundred five' WHERE a=7461; UPDATE t2 SET c='twenty thousand four hundred thirty-seven' WHERE a=7462; UPDATE t2 SET c='twenty-seven thousand eight hundred eighty-seven' WHERE a=7463; UPDATE t2 SET c='fifty-five thousand five hundred eighty-three' WHERE a=7464; UPDATE t2 SET c='forty-six thousand four hundred seventy' WHERE a=7465; UPDATE t2 SET c='eighty-one thousand nine hundred eighty' WHERE a=7466; UPDATE t2 SET c='forty-four thousand one hundred eighty-eight' WHERE a=7467; UPDATE t2 SET c='thirteen thousand three hundred ninety-four' WHERE a=7468; UPDATE t2 SET c='thirty-four thousand nine hundred eighty-seven' WHERE a=7469; UPDATE t2 SET c='forty-two thousand eight hundred fourteen' WHERE a=7470; UPDATE t2 SET c='two thousand four hundred ninety-eight' WHERE a=7471; UPDATE t2 SET c='forty-two thousand six hundred forty-two' WHERE a=7472; UPDATE t2 SET c='thirty thousand five hundred twenty-seven' WHERE a=7473; UPDATE t2 SET c='thirty-nine thousand three hundred eighty' WHERE a=7474; UPDATE t2 SET c='ninety-four thousand six hundred forty-four' WHERE a=7475; UPDATE t2 SET c='sixty-six thousand six hundred eighty-one' WHERE a=7476; UPDATE t2 SET c='eighty-three thousand one hundred forty-five' WHERE a=7477; UPDATE t2 SET c='thirty-nine thousand one hundred sixty-seven' WHERE a=7478; UPDATE t2 SET c='seventeen thousand three hundred eighty-four' WHERE a=7479; UPDATE t2 SET c='eighty-two thousand four hundred fifty-four' WHERE a=7480; UPDATE t2 SET c='sixty-two thousand seventeen' WHERE a=7481; UPDATE t2 SET c='nine thousand six hundred thirty-five' WHERE a=7482; UPDATE t2 SET c='sixty-seven thousand sixteen' WHERE a=7483; UPDATE t2 SET c='sixty-eight thousand fifty-one' WHERE a=7484; UPDATE t2 SET c='eighty-nine thousand one hundred thirty-one' WHERE a=7485; UPDATE t2 SET c='seventy-eight thousand seven hundred sixty-seven' WHERE a=7486; UPDATE t2 SET c='four thousand two hundred eighty-three' WHERE a=7487; UPDATE t2 SET c='sixty-seven thousand nine hundred forty-one' WHERE a=7488; UPDATE t2 SET c='seventy-three thousand eight hundred sixty-eight' WHERE a=7489; UPDATE t2 SET c='eighty-six thousand seven hundred thirty-five' WHERE a=7490; UPDATE t2 SET c='forty-one thousand five hundred eighty-three' WHERE a=7491; UPDATE t2 SET c='sixteen thousand nine hundred seventy' WHERE a=7492; UPDATE t2 SET c='forty-four thousand two hundred eighty-one' WHERE a=7493; UPDATE t2 SET c='forty-eight thousand eight hundred five' WHERE a=7494; UPDATE t2 SET c='fifteen thousand four hundred fifteen' WHERE a=7495; UPDATE t2 SET c='twenty-five thousand three hundred seventy-five' WHERE a=7496; UPDATE t2 SET c='thirty-one thousand three hundred fifty-six' WHERE a=7497; UPDATE t2 SET c='nineteen thousand six hundred nine' WHERE a=7498; UPDATE t2 SET c='sixteen thousand three hundred seventy-one' WHERE a=7499; UPDATE t2 SET c='twenty-seven thousand five hundred sixty-seven' WHERE a=7500; UPDATE t2 SET c='ninety-nine thousand six hundred fifty-eight' WHERE a=7501; UPDATE t2 SET c='fifty-eight thousand seven hundred twenty-eight' WHERE a=7502; UPDATE t2 SET c='twenty-five thousand one hundred sixty-four' WHERE a=7503; UPDATE t2 SET c='forty thousand two hundred seventy-eight' WHERE a=7504; UPDATE t2 SET c='five thousand four hundred six' WHERE a=7505; UPDATE t2 SET c='seventy-six thousand eight hundred forty-seven' WHERE a=7506; UPDATE t2 SET c='eight thousand twenty-three' WHERE a=7507; UPDATE t2 SET c='forty thousand fifty-eight' WHERE a=7508; UPDATE t2 SET c='twenty-two thousand seven hundred seventy-eight' WHERE a=7509; UPDATE t2 SET c='eighty-seven thousand one hundred twelve' WHERE a=7510; UPDATE t2 SET c='fifty-five thousand six hundred sixty-one' WHERE a=7511; UPDATE t2 SET c='forty-four thousand nine hundred one' WHERE a=7512; UPDATE t2 SET c='fifty thousand eight hundred fifty-six' WHERE a=7513; UPDATE t2 SET c='twenty-three thousand seven hundred forty-seven' WHERE a=7514; UPDATE t2 SET c='fifty-four thousand six hundred forty-seven' WHERE a=7515; UPDATE t2 SET c='ninety-three thousand four hundred eighty-seven' WHERE a=7516; UPDATE t2 SET c='forty-one thousand six hundred eighty-two' WHERE a=7517; UPDATE t2 SET c='fifty-six thousand two hundred four' WHERE a=7518; UPDATE t2 SET c='ninety-six thousand three hundred sixty-nine' WHERE a=7519; UPDATE t2 SET c='seventy-nine thousand eight hundred four' WHERE a=7520; UPDATE t2 SET c='sixty-eight thousand five hundred fifty-nine' WHERE a=7521; UPDATE t2 SET c='fourteen thousand eighteen' WHERE a=7522; UPDATE t2 SET c='eighty-three thousand seven hundred eleven' WHERE a=7523; UPDATE t2 SET c='forty thousand four hundred thirty-five' WHERE a=7524; UPDATE t2 SET c='thirty-two thousand seven hundred sixty-five' WHERE a=7525; UPDATE t2 SET c='forty thousand five hundred forty-eight' WHERE a=7526; UPDATE t2 SET c='forty-nine thousand one hundred' WHERE a=7527; UPDATE t2 SET c='thirty-eight thousand seven hundred eight' WHERE a=7528; UPDATE t2 SET c='one thousand seven hundred seventy-one' WHERE a=7529; UPDATE t2 SET c='two thousand fifty-three' WHERE a=7530; UPDATE t2 SET c='fifty-three thousand three hundred ten' WHERE a=7531; UPDATE t2 SET c='thirty-six thousand four hundred thirty' WHERE a=7532; UPDATE t2 SET c='thirty-two thousand five hundred thirty' WHERE a=7533; UPDATE t2 SET c='eighty-five thousand one hundred seventy-six' WHERE a=7534; UPDATE t2 SET c='ninety-six thousand one hundred forty-one' WHERE a=7535; UPDATE t2 SET c='seventy-three thousand four hundred three' WHERE a=7536; UPDATE t2 SET c='thirteen thousand five hundred eighty-nine' WHERE a=7537; UPDATE t2 SET c='ninety thousand seven hundred sixty-one' WHERE a=7538; UPDATE t2 SET c='nine thousand seven hundred ten' WHERE a=7539; UPDATE t2 SET c='seven thousand one hundred five' WHERE a=7540; UPDATE t2 SET c='fifty-nine thousand two hundred forty-three' WHERE a=7541; UPDATE t2 SET c='seventy-three thousand seven hundred' WHERE a=7542; UPDATE t2 SET c='ten thousand seven hundred two' WHERE a=7543; UPDATE t2 SET c='forty-seven thousand nine hundred sixty-seven' WHERE a=7544; UPDATE t2 SET c='twenty-two thousand three hundred eighty-seven' WHERE a=7545; UPDATE t2 SET c='twenty-nine thousand eight hundred forty-seven' WHERE a=7546; UPDATE t2 SET c='seventy-nine thousand two hundred seventy' WHERE a=7547; UPDATE t2 SET c='twenty-six thousand four hundred eighty-eight' WHERE a=7548; UPDATE t2 SET c='seventeen thousand two hundred ninety-four' WHERE a=7549; UPDATE t2 SET c='sixty-eight thousand seven hundred forty-six' WHERE a=7550; UPDATE t2 SET c='fourteen thousand six hundred thirty-nine' WHERE a=7551; UPDATE t2 SET c='ninety-eight thousand one hundred forty-six' WHERE a=7552; UPDATE t2 SET c='ninety-four thousand nine hundred thirty-two' WHERE a=7553; UPDATE t2 SET c='eleven thousand nine hundred twenty-nine' WHERE a=7554; UPDATE t2 SET c='ninety-nine thousand eight hundred ninety' WHERE a=7555; UPDATE t2 SET c='twenty-seven thousand six hundred eighty-four' WHERE a=7556; UPDATE t2 SET c='sixty-two thousand one hundred fifty-seven' WHERE a=7557; UPDATE t2 SET c='twenty-four thousand five hundred forty-six' WHERE a=7558; UPDATE t2 SET c='forty-six thousand one hundred twenty' WHERE a=7559; UPDATE t2 SET c='sixty-eight thousand four' WHERE a=7560; UPDATE t2 SET c='ninety-five thousand eight hundred seventy-three' WHERE a=7561; UPDATE t2 SET c='thirty-seven thousand four hundred sixty-nine' WHERE a=7562; UPDATE t2 SET c='forty-three thousand five hundred seventy-four' WHERE a=7563; UPDATE t2 SET c='sixty-four thousand one hundred thirty-seven' WHERE a=7564; UPDATE t2 SET c='fifteen thousand four hundred sixty-eight' WHERE a=7565; UPDATE t2 SET c='twenty-six thousand four hundred twenty-one' WHERE a=7566; UPDATE t2 SET c='sixty-one thousand one hundred ninety' WHERE a=7567; UPDATE t2 SET c='thirteen thousand two hundred twelve' WHERE a=7568; UPDATE t2 SET c='forty-four thousand one hundred ninety-nine' WHERE a=7569; UPDATE t2 SET c='thirty-eight thousand six hundred fifty-five' WHERE a=7570; UPDATE t2 SET c='forty-two thousand twenty-seven' WHERE a=7571; UPDATE t2 SET c='seventy-seven thousand four hundred forty-five' WHERE a=7572; UPDATE t2 SET c='sixty-seven thousand two hundred twenty-six' WHERE a=7573; UPDATE t2 SET c='thirty-nine thousand four hundred seventy-eight' WHERE a=7574; UPDATE t2 SET c='forty-one thousand four hundred thirty-nine' WHERE a=7575; UPDATE t2 SET c='sixty-six thousand two hundred seventy-eight' WHERE a=7576; UPDATE t2 SET c='ninety-six thousand one hundred sixty-five' WHERE a=7577; UPDATE t2 SET c='ninety-three thousand eight hundred forty-three' WHERE a=7578; UPDATE t2 SET c='thirty-four thousand two hundred fifty-four' WHERE a=7579; UPDATE t2 SET c='fifty-eight thousand six hundred one' WHERE a=7580; UPDATE t2 SET c='thirty thousand eight hundred fifty-four' WHERE a=7581; UPDATE t2 SET c='thirty-three thousand two hundred seven' WHERE a=7582; UPDATE t2 SET c='seventy-nine thousand eight hundred eighty-one' WHERE a=7583; UPDATE t2 SET c='twenty-four thousand five hundred twenty-three' WHERE a=7584; UPDATE t2 SET c='eighty-eight thousand four hundred eighty-two' WHERE a=7585; UPDATE t2 SET c='forty-six thousand one hundred fifty' WHERE a=7586; UPDATE t2 SET c='eight thousand eighteen' WHERE a=7587; UPDATE t2 SET c='nineteen thousand five hundred five' WHERE a=7588; UPDATE t2 SET c='twenty-seven thousand two' WHERE a=7589; UPDATE t2 SET c='fifty thousand one hundred seventy-eight' WHERE a=7590; UPDATE t2 SET c='eighteen thousand three hundred fifty-nine' WHERE a=7591; UPDATE t2 SET c='seventy-nine thousand one hundred fifty' WHERE a=7592; UPDATE t2 SET c='thirty-nine thousand five hundred thirty' WHERE a=7593; UPDATE t2 SET c='ninety-seven thousand four hundred sixty-one' WHERE a=7594; UPDATE t2 SET c='thirty-three thousand six hundred thirty' WHERE a=7595; UPDATE t2 SET c='five thousand seventy-one' WHERE a=7596; UPDATE t2 SET c='sixty-eight thousand one hundred thirty' WHERE a=7597; UPDATE t2 SET c='fifty-two thousand six hundred forty-four' WHERE a=7598; UPDATE t2 SET c='seven thousand six hundred forty-seven' WHERE a=7599; UPDATE t2 SET c='sixty-two thousand four hundred ten' WHERE a=7600; UPDATE t2 SET c='thirty-two thousand nine hundred fifty-seven' WHERE a=7601; UPDATE t2 SET c='sixty-two thousand five hundred eighty-nine' WHERE a=7602; UPDATE t2 SET c='ninety-one thousand three hundred twenty-eight' WHERE a=7603; UPDATE t2 SET c='ninety-seven thousand one hundred twenty-eight' WHERE a=7604; UPDATE t2 SET c='sixty-two thousand seven hundred three' WHERE a=7605; UPDATE t2 SET c='twenty-one thousand three hundred sixty-seven' WHERE a=7606; UPDATE t2 SET c='eighty-eight thousand six hundred seven' WHERE a=7607; UPDATE t2 SET c='twenty-three thousand eight hundred three' WHERE a=7608; UPDATE t2 SET c='two thousand six hundred fourteen' WHERE a=7609; UPDATE t2 SET c='twenty-four thousand two hundred sixty-seven' WHERE a=7610; UPDATE t2 SET c='forty-three thousand two hundred fifty-nine' WHERE a=7611; UPDATE t2 SET c='ninety-nine thousand five hundred fifty' WHERE a=7612; UPDATE t2 SET c='ninety-six thousand fifty-four' WHERE a=7613; UPDATE t2 SET c='forty-eight thousand two hundred fifty-seven' WHERE a=7614; UPDATE t2 SET c='twelve thousand four hundred twenty-eight' WHERE a=7615; UPDATE t2 SET c='eight thousand seven hundred forty-three' WHERE a=7616; UPDATE t2 SET c='seventy-six thousand four hundred thirty-six' WHERE a=7617; UPDATE t2 SET c='thirty-three thousand seven hundred thirteen' WHERE a=7618; UPDATE t2 SET c='fifteen thousand eight hundred twenty-four' WHERE a=7619; UPDATE t2 SET c='seventeen thousand nine hundred seventeen' WHERE a=7620; UPDATE t2 SET c='eight thousand nine hundred ninety-three' WHERE a=7621; UPDATE t2 SET c='eighty-three thousand seven hundred forty-five' WHERE a=7622; UPDATE t2 SET c='ninety-three thousand four hundred twenty-three' WHERE a=7623; UPDATE t2 SET c='sixty-seven thousand one hundred one' WHERE a=7624; UPDATE t2 SET c='forty-nine thousand one hundred nineteen' WHERE a=7625; UPDATE t2 SET c='four thousand four hundred eight' WHERE a=7626; UPDATE t2 SET c='thirty-six thousand six hundred twenty-eight' WHERE a=7627; UPDATE t2 SET c='six thousand eight hundred seventy-seven' WHERE a=7628; UPDATE t2 SET c='sixty-eight thousand seven hundred ninety-nine' WHERE a=7629; UPDATE t2 SET c='five thousand four hundred ninety-three' WHERE a=7630; UPDATE t2 SET c='twenty-one thousand nine hundred fifty-two' WHERE a=7631; UPDATE t2 SET c='fifty-seven thousand nine hundred one' WHERE a=7632; UPDATE t2 SET c='sixty-two thousand one hundred forty-five' WHERE a=7633; UPDATE t2 SET c='three thousand one hundred ninety-four' WHERE a=7634; UPDATE t2 SET c='fifty-four thousand one hundred twelve' WHERE a=7635; UPDATE t2 SET c='thirty-five thousand two hundred seventy-six' WHERE a=7636; UPDATE t2 SET c='three thousand four hundred five' WHERE a=7637; UPDATE t2 SET c='thirteen thousand two hundred eighty-one' WHERE a=7638; UPDATE t2 SET c='fifty thousand two hundred sixty-five' WHERE a=7639; UPDATE t2 SET c='ninety-five thousand two hundred twenty-five' WHERE a=7640; UPDATE t2 SET c='ninety-three thousand eight hundred sixty-seven' WHERE a=7641; UPDATE t2 SET c='eighty-seven thousand two hundred thirty-seven' WHERE a=7642; UPDATE t2 SET c='three thousand seven hundred eighty-two' WHERE a=7643; UPDATE t2 SET c='ten thousand four hundred thirty-two' WHERE a=7644; UPDATE t2 SET c='ninety-eight thousand eight hundred eighty-three' WHERE a=7645; UPDATE t2 SET c='eighty-one thousand two hundred thirteen' WHERE a=7646; UPDATE t2 SET c='forty-eight thousand forty-four' WHERE a=7647; UPDATE t2 SET c='seventy-three thousand eight hundred thirty-one' WHERE a=7648; UPDATE t2 SET c='forty-two thousand twenty-six' WHERE a=7649; UPDATE t2 SET c='eighteen thousand eight hundred twenty-eight' WHERE a=7650; UPDATE t2 SET c='twenty-two thousand four hundred eighty-five' WHERE a=7651; UPDATE t2 SET c='forty-two thousand one hundred ten' WHERE a=7652; UPDATE t2 SET c='thirty-nine thousand two' WHERE a=7653; UPDATE t2 SET c='eight thousand one hundred sixty-three' WHERE a=7654; UPDATE t2 SET c='fifty-six thousand twenty-six' WHERE a=7655; UPDATE t2 SET c='sixty-eight thousand two hundred eighty' WHERE a=7656; UPDATE t2 SET c='fifty-three thousand seven hundred nineteen' WHERE a=7657; UPDATE t2 SET c='twenty-four thousand six hundred fifty-three' WHERE a=7658; UPDATE t2 SET c='ninety thousand seven hundred eighteen' WHERE a=7659; UPDATE t2 SET c='twelve thousand seven hundred twenty-three' WHERE a=7660; UPDATE t2 SET c='twenty-eight thousand eight hundred ninety' WHERE a=7661; UPDATE t2 SET c='thirty-two thousand forty-two' WHERE a=7662; UPDATE t2 SET c='ninety-nine thousand four hundred fifty-six' WHERE a=7663; UPDATE t2 SET c='twenty-six thousand six hundred thirteen' WHERE a=7664; UPDATE t2 SET c='ninety-two thousand nine hundred twenty' WHERE a=7665; UPDATE t2 SET c='thirty-one thousand one hundred seventy-seven' WHERE a=7666; UPDATE t2 SET c='twenty-eight thousand one hundred five' WHERE a=7667; UPDATE t2 SET c='fifty-three thousand eight hundred eighty-seven' WHERE a=7668; UPDATE t2 SET c='thirty-four thousand five hundred seventy-eight' WHERE a=7669; UPDATE t2 SET c='forty-nine thousand two hundred thirty-seven' WHERE a=7670; UPDATE t2 SET c='seventy-one thousand two hundred seventy-nine' WHERE a=7671; UPDATE t2 SET c='sixty-seven thousand three hundred fifty-seven' WHERE a=7672; UPDATE t2 SET c='forty-four thousand five hundred sixty-four' WHERE a=7673; UPDATE t2 SET c='five thousand nine hundred three' WHERE a=7674; UPDATE t2 SET c='ninety-three thousand eight hundred fifty-two' WHERE a=7675; UPDATE t2 SET c='fifty-six thousand two hundred thirty-six' WHERE a=7676; UPDATE t2 SET c='twenty-two thousand four hundred sixty-nine' WHERE a=7677; UPDATE t2 SET c='twenty-eight thousand one hundred fifty-four' WHERE a=7678; UPDATE t2 SET c='thirty-one thousand eight hundred thirty-eight' WHERE a=7679; UPDATE t2 SET c='thirty-four thousand thirty-five' WHERE a=7680; UPDATE t2 SET c='forty-five thousand one hundred one' WHERE a=7681; UPDATE t2 SET c='twenty-six thousand four hundred thirty-one' WHERE a=7682; UPDATE t2 SET c='twenty-seven thousand seven hundred fifty-four' WHERE a=7683; UPDATE t2 SET c='thirty-six thousand eight hundred thirty-two' WHERE a=7684; UPDATE t2 SET c='fourteen thousand two hundred four' WHERE a=7685; UPDATE t2 SET c='fifty-three thousand nine hundred thirty-one' WHERE a=7686; UPDATE t2 SET c='ninety-five thousand eight hundred ninety-three' WHERE a=7687; UPDATE t2 SET c='forty-seven thousand nine hundred fifty-three' WHERE a=7688; UPDATE t2 SET c='thirty-four thousand six hundred twenty-seven' WHERE a=7689; UPDATE t2 SET c='seventy-eight thousand eight hundred twenty-three' WHERE a=7690; UPDATE t2 SET c='seventy-three thousand four hundred seventy' WHERE a=7691; UPDATE t2 SET c='ten thousand two hundred sixty-seven' WHERE a=7692; UPDATE t2 SET c='forty-seven thousand nine hundred eighty-five' WHERE a=7693; UPDATE t2 SET c='seventy-five thousand fifty-six' WHERE a=7694; UPDATE t2 SET c='seventy-four thousand two hundred eighty-three' WHERE a=7695; UPDATE t2 SET c='fifty-four thousand ninety-two' WHERE a=7696; UPDATE t2 SET c='forty-nine thousand four hundred twenty-eight' WHERE a=7697; UPDATE t2 SET c='ninety-two thousand thirty-seven' WHERE a=7698; UPDATE t2 SET c='seventy-six thousand eight hundred seventy-one' WHERE a=7699; UPDATE t2 SET c='sixty-one thousand four hundred ninety' WHERE a=7700; UPDATE t2 SET c='sixty-six thousand eight hundred sixty-five' WHERE a=7701; UPDATE t2 SET c='thirty-two thousand eight hundred sixty-six' WHERE a=7702; UPDATE t2 SET c='forty-three thousand eight hundred thirty-one' WHERE a=7703; UPDATE t2 SET c='seventy-two thousand seven hundred' WHERE a=7704; UPDATE t2 SET c='eleven thousand one hundred eleven' WHERE a=7705; UPDATE t2 SET c='fifty-eight thousand eight hundred thirty-five' WHERE a=7706; UPDATE t2 SET c='seventy-seven thousand one hundred fifty-nine' WHERE a=7707; UPDATE t2 SET c='fifty-two thousand six hundred ninety-two' WHERE a=7708; UPDATE t2 SET c='ninety-five thousand nine hundred thirty' WHERE a=7709; UPDATE t2 SET c='thirty-seven thousand nine hundred sixty-one' WHERE a=7710; UPDATE t2 SET c='sixty thousand nine hundred fifteen' WHERE a=7711; UPDATE t2 SET c='ninety-five thousand five hundred forty-five' WHERE a=7712; UPDATE t2 SET c='sixty-five thousand six hundred one' WHERE a=7713; UPDATE t2 SET c='sixty-six thousand three hundred ninety-eight' WHERE a=7714; UPDATE t2 SET c='four thousand four hundred forty-six' WHERE a=7715; UPDATE t2 SET c='seventy-seven thousand five hundred' WHERE a=7716; UPDATE t2 SET c='thirty-two thousand one hundred eighty-seven' WHERE a=7717; UPDATE t2 SET c='sixty-nine thousand six hundred eighteen' WHERE a=7718; UPDATE t2 SET c='three thousand nine hundred forty-four' WHERE a=7719; UPDATE t2 SET c='ninety-five thousand nine hundred fifty-two' WHERE a=7720; UPDATE t2 SET c='fifty-four thousand seven hundred sixty-nine' WHERE a=7721; UPDATE t2 SET c='twenty-eight thousand six hundred two' WHERE a=7722; UPDATE t2 SET c='twenty-six thousand one hundred fifty-six' WHERE a=7723; UPDATE t2 SET c='ninety-two thousand nine hundred twenty-six' WHERE a=7724; UPDATE t2 SET c='ninety thousand eight hundred eighty' WHERE a=7725; UPDATE t2 SET c='seventy-seven thousand one hundred two' WHERE a=7726; UPDATE t2 SET c='twenty-eight thousand seven hundred eight' WHERE a=7727; UPDATE t2 SET c='thirty-five thousand two hundred eight' WHERE a=7728; UPDATE t2 SET c='sixty-three thousand three hundred four' WHERE a=7729; UPDATE t2 SET c='twenty-nine thousand four hundred eighty-two' WHERE a=7730; UPDATE t2 SET c='forty-two thousand five hundred eighty-nine' WHERE a=7731; UPDATE t2 SET c='three thousand four hundred ten' WHERE a=7732; UPDATE t2 SET c='seventy-four thousand five hundred forty' WHERE a=7733; UPDATE t2 SET c='fifty-two thousand five hundred twenty-five' WHERE a=7734; UPDATE t2 SET c='seventy thousand five hundred eighty-three' WHERE a=7735; UPDATE t2 SET c='eighty-four thousand nine hundred ninety-six' WHERE a=7736; UPDATE t2 SET c='seventy-four thousand four hundred thirty-three' WHERE a=7737; UPDATE t2 SET c='twenty-one thousand four hundred thirty-seven' WHERE a=7738; UPDATE t2 SET c='seventy-two thousand four hundred three' WHERE a=7739; UPDATE t2 SET c='ninety-two thousand nine hundred seventy-four' WHERE a=7740; UPDATE t2 SET c='sixty-eight thousand eight hundred eight' WHERE a=7741; UPDATE t2 SET c='forty-four thousand seven hundred sixty-eight' WHERE a=7742; UPDATE t2 SET c='thirty-three thousand five hundred ninety' WHERE a=7743; UPDATE t2 SET c='sixty-four thousand seven hundred four' WHERE a=7744; UPDATE t2 SET c='eleven thousand seven hundred thirteen' WHERE a=7745; UPDATE t2 SET c='eight thousand seven hundred thirty-nine' WHERE a=7746; UPDATE t2 SET c='sixty-two thousand eighty-three' WHERE a=7747; UPDATE t2 SET c='twenty-three thousand five hundred seventy-eight' WHERE a=7748; UPDATE t2 SET c='fifty-three thousand two hundred sixty-eight' WHERE a=7749; UPDATE t2 SET c='nineteen thousand eight hundred seventy-seven' WHERE a=7750; UPDATE t2 SET c='eighty-eight thousand one hundred thirty-one' WHERE a=7751; UPDATE t2 SET c='eighty-seven thousand six hundred forty' WHERE a=7752; UPDATE t2 SET c='forty-three thousand four hundred eighty-nine' WHERE a=7753; UPDATE t2 SET c='sixteen thousand seven hundred one' WHERE a=7754; UPDATE t2 SET c='ninety-three thousand three hundred ninety-two' WHERE a=7755; UPDATE t2 SET c='forty thousand six hundred eighty-five' WHERE a=7756; UPDATE t2 SET c='twenty-six thousand six hundred ninety-two' WHERE a=7757; UPDATE t2 SET c='five thousand three hundred ninety-four' WHERE a=7758; UPDATE t2 SET c='twenty-nine thousand two hundred forty-three' WHERE a=7759; UPDATE t2 SET c='sixty thousand five hundred fifty-two' WHERE a=7760; UPDATE t2 SET c='thirteen thousand four hundred three' WHERE a=7761; UPDATE t2 SET c='seventy thousand eight hundred sixty' WHERE a=7762; UPDATE t2 SET c='fifty-one thousand four' WHERE a=7763; UPDATE t2 SET c='seventy-five thousand four hundred ninety-five' WHERE a=7764; UPDATE t2 SET c='fifty-five thousand four hundred fifty-six' WHERE a=7765; UPDATE t2 SET c='thirteen thousand four hundred seventy-six' WHERE a=7766; UPDATE t2 SET c='twenty-five thousand seven hundred fifty-eight' WHERE a=7767; UPDATE t2 SET c='fifteen thousand six hundred eight' WHERE a=7768; UPDATE t2 SET c='eighteen thousand seven hundred thirty-nine' WHERE a=7769; UPDATE t2 SET c='thirty-three thousand five hundred seventy-three' WHERE a=7770; UPDATE t2 SET c='twenty-seven thousand five hundred thirty-nine' WHERE a=7771; UPDATE t2 SET c='thirty-one thousand five hundred four' WHERE a=7772; UPDATE t2 SET c='fifty-one thousand four hundred seven' WHERE a=7773; UPDATE t2 SET c='seven thousand five hundred fifty-eight' WHERE a=7774; UPDATE t2 SET c='ninety-six thousand seven hundred eighty-seven' WHERE a=7775; UPDATE t2 SET c='ninety-two thousand eight hundred four' WHERE a=7776; UPDATE t2 SET c='twenty-nine thousand two hundred seventy' WHERE a=7777; UPDATE t2 SET c='thirty-two thousand five hundred sixty-seven' WHERE a=7778; UPDATE t2 SET c='ninety-eight thousand eight hundred ninety-eight' WHERE a=7779; UPDATE t2 SET c='seventy-two thousand twenty-eight' WHERE a=7780; UPDATE t2 SET c='four thousand one hundred ninety-two' WHERE a=7781; UPDATE t2 SET c='eighty-four thousand thirty-two' WHERE a=7782; UPDATE t2 SET c='five thousand four hundred twenty-nine' WHERE a=7783; UPDATE t2 SET c='eighty-six thousand six hundred twenty-eight' WHERE a=7784; UPDATE t2 SET c='five thousand one hundred fifty-eight' WHERE a=7785; UPDATE t2 SET c='seventy-two thousand nine hundred seventy-two' WHERE a=7786; UPDATE t2 SET c='nine thousand two hundred ninety-one' WHERE a=7787; UPDATE t2 SET c='thirty-four thousand six hundred thirty-five' WHERE a=7788; UPDATE t2 SET c='five thousand forty-two' WHERE a=7789; UPDATE t2 SET c='fifty-five thousand four hundred thirty-three' WHERE a=7790; UPDATE t2 SET c='twenty-nine thousand nine hundred sixty-four' WHERE a=7791; UPDATE t2 SET c='ninety-three thousand seven hundred fifty' WHERE a=7792; UPDATE t2 SET c='twelve thousand five hundred six' WHERE a=7793; UPDATE t2 SET c='twelve thousand one hundred five' WHERE a=7794; UPDATE t2 SET c='ninety-three thousand one hundred thirty-six' WHERE a=7795; UPDATE t2 SET c='ninety-four thousand seven hundred seventy-six' WHERE a=7796; UPDATE t2 SET c='forty-five thousand six hundred eighty-two' WHERE a=7797; UPDATE t2 SET c='eighty-eight thousand four hundred thirty-six' WHERE a=7798; UPDATE t2 SET c='ninety-nine thousand six hundred twenty-seven' WHERE a=7799; UPDATE t2 SET c='twenty-three thousand five hundred twenty-nine' WHERE a=7800; UPDATE t2 SET c='forty-seven thousand seven hundred fifty-two' WHERE a=7801; UPDATE t2 SET c='eighty-eight thousand nine hundred' WHERE a=7802; UPDATE t2 SET c='thirty-four thousand seven hundred thirty-eight' WHERE a=7803; UPDATE t2 SET c='eighty thousand nine hundred twenty-two' WHERE a=7804; UPDATE t2 SET c='seventy-nine thousand six hundred thirty' WHERE a=7805; UPDATE t2 SET c='thirty-two thousand eight hundred fourteen' WHERE a=7806; UPDATE t2 SET c='forty-nine thousand nine hundred fifty-eight' WHERE a=7807; UPDATE t2 SET c='seventy-eight thousand five hundred eighty-seven' WHERE a=7808; UPDATE t2 SET c='ninety-eight thousand nine hundred fifty' WHERE a=7809; UPDATE t2 SET c='eighty-five thousand six hundred twenty-eight' WHERE a=7810; UPDATE t2 SET c='seventeen thousand two hundred fifty-five' WHERE a=7811; UPDATE t2 SET c='twenty-eight thousand five hundred seventy' WHERE a=7812; UPDATE t2 SET c='one hundred sixty' WHERE a=7813; UPDATE t2 SET c='fifty-six thousand sixty-nine' WHERE a=7814; UPDATE t2 SET c='eight thousand two hundred ninety-six' WHERE a=7815; UPDATE t2 SET c='fourteen thousand three hundred sixty-seven' WHERE a=7816; UPDATE t2 SET c='seventy-two thousand five hundred sixteen' WHERE a=7817; UPDATE t2 SET c='twenty-seven thousand two hundred sixteen' WHERE a=7818; UPDATE t2 SET c='fifty thousand five hundred seventy-one' WHERE a=7819; UPDATE t2 SET c='twenty-nine thousand four hundred eighty-three' WHERE a=7820; UPDATE t2 SET c='twenty-eight thousand nine hundred fifteen' WHERE a=7821; UPDATE t2 SET c='thirty-five thousand seven hundred thirty-three' WHERE a=7822; UPDATE t2 SET c='ninety-two thousand one hundred six' WHERE a=7823; UPDATE t2 SET c='twenty-nine thousand eight hundred ninety-six' WHERE a=7824; UPDATE t2 SET c='seventy-four thousand one hundred sixty' WHERE a=7825; UPDATE t2 SET c='ninety-six thousand two hundred eight' WHERE a=7826; UPDATE t2 SET c='forty-three thousand six hundred fifty' WHERE a=7827; UPDATE t2 SET c='forty-seven thousand eight hundred eighty-nine' WHERE a=7828; UPDATE t2 SET c='sixty-two thousand twenty' WHERE a=7829; UPDATE t2 SET c='sixty-three thousand one hundred sixty-seven' WHERE a=7830; UPDATE t2 SET c='twenty-two thousand five hundred ninety' WHERE a=7831; UPDATE t2 SET c='thirty-eight thousand nine hundred fifty-eight' WHERE a=7832; UPDATE t2 SET c='ninety-eight thousand six hundred eleven' WHERE a=7833; UPDATE t2 SET c='ninety-eight thousand four hundred eight' WHERE a=7834; UPDATE t2 SET c='nineteen thousand two hundred ninety-seven' WHERE a=7835; UPDATE t2 SET c='ten thousand eight hundred forty-eight' WHERE a=7836; UPDATE t2 SET c='ninety-four thousand eight hundred eighty-three' WHERE a=7837; UPDATE t2 SET c='forty-eight thousand four hundred fifty-five' WHERE a=7838; UPDATE t2 SET c='ninety-eight thousand one hundred fifty-two' WHERE a=7839; UPDATE t2 SET c='thirty-five thousand two hundred thirty-seven' WHERE a=7840; UPDATE t2 SET c='eighty-one thousand seven hundred sixty-eight' WHERE a=7841; UPDATE t2 SET c='forty-four thousand three hundred ninety-five' WHERE a=7842; UPDATE t2 SET c='seventeen thousand four hundred ninety-one' WHERE a=7843; UPDATE t2 SET c='forty-five thousand six hundred seventy-eight' WHERE a=7844; UPDATE t2 SET c='twenty thousand one hundred' WHERE a=7845; UPDATE t2 SET c='forty-nine thousand five hundred sixty-two' WHERE a=7846; UPDATE t2 SET c='seventy-three thousand eight hundred nineteen' WHERE a=7847; UPDATE t2 SET c='fifty-three thousand seven hundred twenty-three' WHERE a=7848; UPDATE t2 SET c='forty-two thousand six hundred nineteen' WHERE a=7849; UPDATE t2 SET c='eighty thousand nine hundred forty-six' WHERE a=7850; UPDATE t2 SET c='forty-six thousand three hundred ninety-three' WHERE a=7851; UPDATE t2 SET c='forty-eight thousand three hundred forty-five' WHERE a=7852; UPDATE t2 SET c='twenty-five thousand one hundred forty-one' WHERE a=7853; UPDATE t2 SET c='one hundred fifty-six' WHERE a=7854; UPDATE t2 SET c='ninety-four thousand one hundred sixty-nine' WHERE a=7855; UPDATE t2 SET c='seventy-eight thousand five hundred sixty-six' WHERE a=7856; UPDATE t2 SET c='six thousand seven hundred thirty-seven' WHERE a=7857; UPDATE t2 SET c='eighty-five thousand two hundred eighty-nine' WHERE a=7858; UPDATE t2 SET c='eighteen thousand three hundred thirty-six' WHERE a=7859; UPDATE t2 SET c='sixty-four thousand seven hundred eighty-five' WHERE a=7860; UPDATE t2 SET c='forty-seven thousand five hundred eighty-one' WHERE a=7861; UPDATE t2 SET c='twenty-one thousand five hundred seventy-two' WHERE a=7862; UPDATE t2 SET c='fifty-seven thousand five hundred ten' WHERE a=7863; UPDATE t2 SET c='eighty-seven thousand thirty-nine' WHERE a=7864; UPDATE t2 SET c='thirty-three thousand two hundred seven' WHERE a=7865; UPDATE t2 SET c='eighty-nine thousand six hundred thirty-two' WHERE a=7866; UPDATE t2 SET c='eighty-two thousand seven hundred twenty-three' WHERE a=7867; UPDATE t2 SET c='eighty-one thousand five hundred ninety-one' WHERE a=7868; UPDATE t2 SET c='sixty-nine thousand two hundred twenty-one' WHERE a=7869; UPDATE t2 SET c='six thousand one hundred three' WHERE a=7870; UPDATE t2 SET c='sixty-two thousand eight hundred seventeen' WHERE a=7871; UPDATE t2 SET c='seventy-seven thousand two hundred thirty-one' WHERE a=7872; UPDATE t2 SET c='fifty thousand one hundred seventy-seven' WHERE a=7873; UPDATE t2 SET c='eighty-eight thousand twenty-seven' WHERE a=7874; UPDATE t2 SET c='sixteen thousand five hundred forty-five' WHERE a=7875; UPDATE t2 SET c='one thousand four hundred ninety-seven' WHERE a=7876; UPDATE t2 SET c='seventy-six thousand eight hundred ninety-five' WHERE a=7877; UPDATE t2 SET c='ninety-nine thousand four hundred forty-eight' WHERE a=7878; UPDATE t2 SET c='thirty-eight thousand eight hundred' WHERE a=7879; UPDATE t2 SET c='thirty-five thousand two hundred three' WHERE a=7880; UPDATE t2 SET c='ninety-two thousand two hundred forty-one' WHERE a=7881; UPDATE t2 SET c='thirteen thousand two hundred eighty-six' WHERE a=7882; UPDATE t2 SET c='thirty-five thousand one hundred twenty-four' WHERE a=7883; UPDATE t2 SET c='thirteen thousand nine hundred sixty-nine' WHERE a=7884; UPDATE t2 SET c='fifteen thousand four hundred sixty-one' WHERE a=7885; UPDATE t2 SET c='twenty-one thousand four hundred forty-nine' WHERE a=7886; UPDATE t2 SET c='seventy thousand eighty' WHERE a=7887; UPDATE t2 SET c='seventy-three thousand seven hundred nineteen' WHERE a=7888; UPDATE t2 SET c='thirty-six thousand sixty-five' WHERE a=7889; UPDATE t2 SET c='sixty-one thousand five hundred thirty-three' WHERE a=7890; UPDATE t2 SET c='thirty-nine thousand three hundred nine' WHERE a=7891; UPDATE t2 SET c='seventy-five thousand five hundred sixty-five' WHERE a=7892; UPDATE t2 SET c='seventy-nine thousand seven hundred twenty-eight' WHERE a=7893; UPDATE t2 SET c='seventy-eight thousand nine hundred sixty-five' WHERE a=7894; UPDATE t2 SET c='thirty-six thousand six hundred ninety-four' WHERE a=7895; UPDATE t2 SET c='fifty-three thousand seven hundred thirty-six' WHERE a=7896; UPDATE t2 SET c='thirteen thousand one hundred sixty-four' WHERE a=7897; UPDATE t2 SET c='forty-one thousand nine hundred forty-one' WHERE a=7898; UPDATE t2 SET c='sixty-seven thousand eight hundred sixty-nine' WHERE a=7899; UPDATE t2 SET c='fifty-four thousand three hundred sixty-one' WHERE a=7900; UPDATE t2 SET c='forty-eight thousand three hundred forty-two' WHERE a=7901; UPDATE t2 SET c='ninety-five thousand four hundred seventy-eight' WHERE a=7902; UPDATE t2 SET c='fifty thousand nine hundred ninety-six' WHERE a=7903; UPDATE t2 SET c='thirty-seven thousand eight hundred sixty-eight' WHERE a=7904; UPDATE t2 SET c='forty-six thousand two hundred forty-three' WHERE a=7905; UPDATE t2 SET c='twenty-nine thousand five hundred forty-four' WHERE a=7906; UPDATE t2 SET c='fifty-eight thousand two hundred seventeen' WHERE a=7907; UPDATE t2 SET c='twenty-two thousand nine hundred thirty-eight' WHERE a=7908; UPDATE t2 SET c='ninety-six thousand two hundred twenty-five' WHERE a=7909; UPDATE t2 SET c='nine thousand eight hundred seventy-four' WHERE a=7910; UPDATE t2 SET c='thirty thousand eight hundred ninety-four' WHERE a=7911; UPDATE t2 SET c='fifty-nine thousand three hundred thirty-four' WHERE a=7912; UPDATE t2 SET c='forty-four thousand seven hundred ninety-six' WHERE a=7913; UPDATE t2 SET c='sixty-four thousand six hundred fifty-one' WHERE a=7914; UPDATE t2 SET c='eight thousand eight hundred forty-eight' WHERE a=7915; UPDATE t2 SET c='forty-three thousand one hundred eleven' WHERE a=7916; UPDATE t2 SET c='twenty-eight thousand one hundred forty' WHERE a=7917; UPDATE t2 SET c='sixty-one thousand seven hundred seventy-three' WHERE a=7918; UPDATE t2 SET c='eighty-two thousand two hundred eight' WHERE a=7919; UPDATE t2 SET c='three hundred fifty-one' WHERE a=7920; UPDATE t2 SET c='twelve thousand seven hundred fifty-nine' WHERE a=7921; UPDATE t2 SET c='sixty-seven thousand eight hundred fifty-seven' WHERE a=7922; UPDATE t2 SET c='ninety-eight thousand nine hundred twelve' WHERE a=7923; UPDATE t2 SET c='seventy-three thousand four hundred eighty-six' WHERE a=7924; UPDATE t2 SET c='fifty-nine thousand fifteen' WHERE a=7925; UPDATE t2 SET c='thirty-three thousand four hundred eighty-two' WHERE a=7926; UPDATE t2 SET c='fifteen thousand two hundred forty-four' WHERE a=7927; UPDATE t2 SET c='nine thousand eight hundred thirty-three' WHERE a=7928; UPDATE t2 SET c='fifty-three thousand nine hundred seventy-two' WHERE a=7929; UPDATE t2 SET c='fifty-four thousand three hundred thirty-three' WHERE a=7930; UPDATE t2 SET c='eighteen thousand three hundred forty-eight' WHERE a=7931; UPDATE t2 SET c='seventy-nine thousand two hundred eighty-two' WHERE a=7932; UPDATE t2 SET c='forty-seven thousand eight hundred twenty-five' WHERE a=7933; UPDATE t2 SET c='two thousand four hundred forty-eight' WHERE a=7934; UPDATE t2 SET c='twenty-six thousand eight hundred fifty-seven' WHERE a=7935; UPDATE t2 SET c='sixty-four thousand seventy-one' WHERE a=7936; UPDATE t2 SET c='sixty-eight thousand two hundred seventeen' WHERE a=7937; UPDATE t2 SET c='thirteen thousand three hundred seventy-nine' WHERE a=7938; UPDATE t2 SET c='sixty thousand two hundred forty' WHERE a=7939; UPDATE t2 SET c='ninety-four thousand five hundred seventy-two' WHERE a=7940; UPDATE t2 SET c='fourteen thousand six hundred four' WHERE a=7941; UPDATE t2 SET c='eighty-five thousand seventy-six' WHERE a=7942; UPDATE t2 SET c='fourteen thousand three hundred five' WHERE a=7943; UPDATE t2 SET c='ninety-five thousand eight hundred ninety-six' WHERE a=7944; UPDATE t2 SET c='thirty-two thousand five hundred seventy-one' WHERE a=7945; UPDATE t2 SET c='eighty-two thousand eighty' WHERE a=7946; UPDATE t2 SET c='one thousand eight hundred thirty-nine' WHERE a=7947; UPDATE t2 SET c='seventy-two thousand five hundred nine' WHERE a=7948; UPDATE t2 SET c='eight thousand nine hundred thirty-eight' WHERE a=7949; UPDATE t2 SET c='seventy-five thousand seven hundred thirteen' WHERE a=7950; UPDATE t2 SET c='ninety-six thousand one hundred fifty-five' WHERE a=7951; UPDATE t2 SET c='thirty-five thousand one hundred twenty-nine' WHERE a=7952; UPDATE t2 SET c='six thousand two hundred nine' WHERE a=7953; UPDATE t2 SET c='forty-nine thousand seven hundred forty-nine' WHERE a=7954; UPDATE t2 SET c='sixty-three thousand four hundred thirty' WHERE a=7955; UPDATE t2 SET c='nineteen thousand ninety-five' WHERE a=7956; UPDATE t2 SET c='fourteen thousand six hundred sixty-seven' WHERE a=7957; UPDATE t2 SET c='forty-five thousand seven hundred six' WHERE a=7958; UPDATE t2 SET c='seventeen thousand eight hundred eighty-one' WHERE a=7959; UPDATE t2 SET c='twenty-one thousand four hundred ninety' WHERE a=7960; UPDATE t2 SET c='eighty-four thousand seven hundred ninety-four' WHERE a=7961; UPDATE t2 SET c='twenty-six thousand one hundred eight' WHERE a=7962; UPDATE t2 SET c='eighty-four thousand five hundred ninety-four' WHERE a=7963; UPDATE t2 SET c='thirty-seven thousand nine hundred seventy-eight' WHERE a=7964; UPDATE t2 SET c='thirty-four thousand one hundred one' WHERE a=7965; UPDATE t2 SET c='ninety-one thousand one hundred seventy-two' WHERE a=7966; UPDATE t2 SET c='fifty-nine thousand eight hundred eighty-six' WHERE a=7967; UPDATE t2 SET c='twenty-seven thousand five hundred sixty-six' WHERE a=7968; UPDATE t2 SET c='ninety-seven thousand two hundred fifty-three' WHERE a=7969; UPDATE t2 SET c='fifty-one thousand five hundred sixty-three' WHERE a=7970; UPDATE t2 SET c='eighty thousand seven hundred eighty-four' WHERE a=7971; UPDATE t2 SET c='seventy-five thousand nine hundred sixty-three' WHERE a=7972; UPDATE t2 SET c='seventy-nine thousand six hundred three' WHERE a=7973; UPDATE t2 SET c='sixty-eight thousand three hundred seventeen' WHERE a=7974; UPDATE t2 SET c='seventy-two thousand six hundred twenty-one' WHERE a=7975; UPDATE t2 SET c='ninety-six thousand eight hundred twenty-three' WHERE a=7976; UPDATE t2 SET c='fifty thousand seven hundred four' WHERE a=7977; UPDATE t2 SET c='two thousand eight hundred fifty-one' WHERE a=7978; UPDATE t2 SET c='sixty-nine thousand five hundred five' WHERE a=7979; UPDATE t2 SET c='seventy-two thousand two hundred fourteen' WHERE a=7980; UPDATE t2 SET c='fifty-one thousand four hundred eight' WHERE a=7981; UPDATE t2 SET c='nineteen thousand nine hundred twenty' WHERE a=7982; UPDATE t2 SET c='seventy-seven thousand three hundred twenty-eight' WHERE a=7983; UPDATE t2 SET c='forty-two thousand nine hundred fifty' WHERE a=7984; UPDATE t2 SET c='eleven thousand six hundred ninety-seven' WHERE a=7985; UPDATE t2 SET c='twenty-nine thousand four hundred eighty' WHERE a=7986; UPDATE t2 SET c='sixty-five thousand seven hundred eighty-two' WHERE a=7987; UPDATE t2 SET c='seventy-four thousand three hundred thirteen' WHERE a=7988; UPDATE t2 SET c='forty-six thousand five hundred thirteen' WHERE a=7989; UPDATE t2 SET c='seventy-six thousand nine hundred fifty-two' WHERE a=7990; UPDATE t2 SET c='sixty-three thousand seven hundred ninety-six' WHERE a=7991; UPDATE t2 SET c='ninety-three thousand six hundred four' WHERE a=7992; UPDATE t2 SET c='eighty-three thousand one hundred fifty-one' WHERE a=7993; UPDATE t2 SET c='thirty-one thousand nine hundred five' WHERE a=7994; UPDATE t2 SET c='ninety-five thousand eight hundred twenty-five' WHERE a=7995; UPDATE t2 SET c='twenty-six thousand fifty-five' WHERE a=7996; UPDATE t2 SET c='sixty-six thousand five hundred sixty-six' WHERE a=7997; UPDATE t2 SET c='thirty-nine thousand six hundred eighty-six' WHERE a=7998; UPDATE t2 SET c='fifteen thousand eight hundred eighty-five' WHERE a=7999; UPDATE t2 SET c='thirty-nine thousand six hundred eighty-five' WHERE a=8000; UPDATE t2 SET c='nineteen thousand four hundred ninety-one' WHERE a=8001; UPDATE t2 SET c='fourteen thousand one hundred two' WHERE a=8002; UPDATE t2 SET c='ninety-four thousand nine hundred ninety-one' WHERE a=8003; UPDATE t2 SET c='ninety-two thousand one hundred ninety-five' WHERE a=8004; UPDATE t2 SET c='sixty-five thousand ninety-three' WHERE a=8005; UPDATE t2 SET c='ninety-six thousand three hundred eighty-eight' WHERE a=8006; UPDATE t2 SET c='seven thousand two hundred sixty-five' WHERE a=8007; UPDATE t2 SET c='thirty-six thousand thirty-nine' WHERE a=8008; UPDATE t2 SET c='sixty-five thousand one hundred thirty-three' WHERE a=8009; UPDATE t2 SET c='sixty-two thousand two hundred twenty-six' WHERE a=8010; UPDATE t2 SET c='thirty-four thousand four hundred ninety-nine' WHERE a=8011; UPDATE t2 SET c='twenty-seven thousand one hundred forty-six' WHERE a=8012; UPDATE t2 SET c='fifty-two thousand five hundred four' WHERE a=8013; UPDATE t2 SET c='forty-one thousand five hundred twenty-three' WHERE a=8014; UPDATE t2 SET c='eighty-six thousand three hundred seventy-two' WHERE a=8015; UPDATE t2 SET c='twenty-eight thousand four hundred sixty' WHERE a=8016; UPDATE t2 SET c='forty-three thousand six hundred ninety-four' WHERE a=8017; UPDATE t2 SET c='seventy thousand two hundred ninety-two' WHERE a=8018; UPDATE t2 SET c='twenty-three thousand six hundred forty-seven' WHERE a=8019; UPDATE t2 SET c='forty-four thousand fifty-nine' WHERE a=8020; UPDATE t2 SET c='twenty-seven thousand six hundred' WHERE a=8021; UPDATE t2 SET c='fifty-nine thousand four hundred sixty-seven' WHERE a=8022; UPDATE t2 SET c='sixty-six thousand eight hundred five' WHERE a=8023; UPDATE t2 SET c='one thousand six hundred forty' WHERE a=8024; UPDATE t2 SET c='nine thousand five hundred ninety-eight' WHERE a=8025; UPDATE t2 SET c='twenty-one thousand two hundred eighty-five' WHERE a=8026; UPDATE t2 SET c='eighty-eight thousand eight hundred sixty' WHERE a=8027; UPDATE t2 SET c='thirty-three thousand five hundred ninety-nine' WHERE a=8028; UPDATE t2 SET c='forty-three thousand nine hundred fifty-five' WHERE a=8029; UPDATE t2 SET c='sixty thousand five hundred eighty' WHERE a=8030; UPDATE t2 SET c='thirty-five thousand four hundred nine' WHERE a=8031; UPDATE t2 SET c='sixty-seven thousand five hundred thirty-four' WHERE a=8032; UPDATE t2 SET c='eighteen thousand two hundred forty' WHERE a=8033; UPDATE t2 SET c='seventy-eight thousand four hundred seventy' WHERE a=8034; UPDATE t2 SET c='fifty-three thousand six hundred sixty-four' WHERE a=8035; UPDATE t2 SET c='ninety-three thousand seven hundred thirty-one' WHERE a=8036; UPDATE t2 SET c='seventy-five thousand five hundred ninety-one' WHERE a=8037; UPDATE t2 SET c='eighty-nine thousand nine hundred ninety-six' WHERE a=8038; UPDATE t2 SET c='seven thousand nine hundred seventy-five' WHERE a=8039; UPDATE t2 SET c='sixty-three thousand eight hundred thirty-nine' WHERE a=8040; UPDATE t2 SET c='eighty thousand eight' WHERE a=8041; UPDATE t2 SET c='five thousand four' WHERE a=8042; UPDATE t2 SET c='sixty-nine thousand eight hundred thirty-three' WHERE a=8043; UPDATE t2 SET c='eighty-five thousand six hundred thirty' WHERE a=8044; UPDATE t2 SET c='fifty-eight thousand three hundred fifty-eight' WHERE a=8045; UPDATE t2 SET c='sixty-five thousand seven hundred ten' WHERE a=8046; UPDATE t2 SET c='ninety-two thousand four hundred twenty-five' WHERE a=8047; UPDATE t2 SET c='thirty-eight thousand seventy-six' WHERE a=8048; UPDATE t2 SET c='eleven thousand one hundred twenty-three' WHERE a=8049; UPDATE t2 SET c='ninety-six thousand seven hundred ninety-one' WHERE a=8050; UPDATE t2 SET c='ninety-nine thousand four hundred seventy' WHERE a=8051; UPDATE t2 SET c='forty-one thousand four hundred sixteen' WHERE a=8052; UPDATE t2 SET c='twelve thousand eight hundred ninety-eight' WHERE a=8053; UPDATE t2 SET c='nineteen thousand nine hundred seventy-one' WHERE a=8054; UPDATE t2 SET c='thirty-three thousand eight hundred twenty-six' WHERE a=8055; UPDATE t2 SET c='forty-one thousand four hundred thirty-four' WHERE a=8056; UPDATE t2 SET c='seven thousand seven hundred seventy-eight' WHERE a=8057; UPDATE t2 SET c='twenty-eight thousand seven hundred ninety-nine' WHERE a=8058; UPDATE t2 SET c='forty-nine thousand two hundred eleven' WHERE a=8059; UPDATE t2 SET c='ninety-three thousand three hundred forty-five' WHERE a=8060; UPDATE t2 SET c='eight thousand five hundred fifty-five' WHERE a=8061; UPDATE t2 SET c='thirty-six thousand two hundred seventy-five' WHERE a=8062; UPDATE t2 SET c='thirty-five thousand four hundred seventy-six' WHERE a=8063; UPDATE t2 SET c='fifty-eight thousand five hundred forty-seven' WHERE a=8064; UPDATE t2 SET c='forty-one thousand eighty-six' WHERE a=8065; UPDATE t2 SET c='eighty-six thousand eight hundred seventy' WHERE a=8066; UPDATE t2 SET c='eighty-seven thousand six hundred ninety-one' WHERE a=8067; UPDATE t2 SET c='sixty-five thousand seven hundred forty-six' WHERE a=8068; UPDATE t2 SET c='nineteen thousand one hundred sixty-five' WHERE a=8069; UPDATE t2 SET c='seventy-two thousand six hundred eighteen' WHERE a=8070; UPDATE t2 SET c='ninety-eight thousand six hundred thirty-eight' WHERE a=8071; UPDATE t2 SET c='thirty-one thousand seven hundred eighty-one' WHERE a=8072; UPDATE t2 SET c='ten thousand one hundred six' WHERE a=8073; UPDATE t2 SET c='sixty-five thousand three hundred thirty-four' WHERE a=8074; UPDATE t2 SET c='thirty thousand seven hundred eighty-one' WHERE a=8075; UPDATE t2 SET c='twenty thousand seven hundred fifty-seven' WHERE a=8076; UPDATE t2 SET c='eighty-nine thousand two hundred forty-four' WHERE a=8077; UPDATE t2 SET c='three thousand one hundred sixty-six' WHERE a=8078; UPDATE t2 SET c='two thousand five hundred fifty-three' WHERE a=8079; UPDATE t2 SET c='seventy thousand six hundred seventy-three' WHERE a=8080; UPDATE t2 SET c='fifty-eight thousand nine hundred sixty-one' WHERE a=8081; UPDATE t2 SET c='six thousand three hundred twenty-one' WHERE a=8082; UPDATE t2 SET c='sixty-seven thousand three hundred twenty-eight' WHERE a=8083; UPDATE t2 SET c='ninety-seven thousand seven hundred nineteen' WHERE a=8084; UPDATE t2 SET c='twenty-one thousand eighty-one' WHERE a=8085; UPDATE t2 SET c='ninety-one thousand eight hundred thirty-seven' WHERE a=8086; UPDATE t2 SET c='forty thousand one hundred thirty-one' WHERE a=8087; UPDATE t2 SET c='forty-seven thousand six hundred fifty-one' WHERE a=8088; UPDATE t2 SET c='eighteen thousand nine hundred fourteen' WHERE a=8089; UPDATE t2 SET c='seventy thousand six hundred sixty-four' WHERE a=8090; UPDATE t2 SET c='twenty-six thousand five hundred sixty-four' WHERE a=8091; UPDATE t2 SET c='two thousand two hundred eighty-seven' WHERE a=8092; UPDATE t2 SET c='eighty-seven thousand seventy-five' WHERE a=8093; UPDATE t2 SET c='four thousand seven hundred thirty-eight' WHERE a=8094; UPDATE t2 SET c='seven thousand two hundred seventy-four' WHERE a=8095; UPDATE t2 SET c='forty-one thousand three hundred ninety-seven' WHERE a=8096; UPDATE t2 SET c='twenty thousand nine hundred twenty' WHERE a=8097; UPDATE t2 SET c='ten thousand one hundred ninety-four' WHERE a=8098; UPDATE t2 SET c='thirty-three thousand four hundred thirty-three' WHERE a=8099; UPDATE t2 SET c='twenty thousand five hundred thirty-two' WHERE a=8100; UPDATE t2 SET c='forty-one thousand five hundred fifty-nine' WHERE a=8101; UPDATE t2 SET c='twenty-eight thousand six hundred eighty-five' WHERE a=8102; UPDATE t2 SET c='twenty-eight thousand three hundred eighty-eight' WHERE a=8103; UPDATE t2 SET c='fifty-nine thousand eighty-five' WHERE a=8104; UPDATE t2 SET c='eighty-seven thousand six hundred eight' WHERE a=8105; UPDATE t2 SET c='seven thousand four hundred eighty-four' WHERE a=8106; UPDATE t2 SET c='forty-nine thousand eight hundred sixty-nine' WHERE a=8107; UPDATE t2 SET c='seventy-seven thousand eight hundred two' WHERE a=8108; UPDATE t2 SET c='eight thousand four hundred thirty-seven' WHERE a=8109; UPDATE t2 SET c='seventy-six thousand five hundred ninety-seven' WHERE a=8110; UPDATE t2 SET c='one thousand seven hundred eleven' WHERE a=8111; UPDATE t2 SET c='sixty-seven thousand five hundred eleven' WHERE a=8112; UPDATE t2 SET c='four thousand two hundred' WHERE a=8113; UPDATE t2 SET c='eighty-eight thousand six hundred forty-four' WHERE a=8114; UPDATE t2 SET c='thirty-seven thousand seven hundred fifty-three' WHERE a=8115; UPDATE t2 SET c='eighteen thousand four hundred forty-seven' WHERE a=8116; UPDATE t2 SET c='thirty-seven thousand six hundred forty-four' WHERE a=8117; UPDATE t2 SET c='seventy-three thousand two hundred eighty-five' WHERE a=8118; UPDATE t2 SET c='twenty-six thousand nine hundred eighty-six' WHERE a=8119; UPDATE t2 SET c='eighty-two thousand nine hundred twenty-two' WHERE a=8120; UPDATE t2 SET c='thirty-six thousand eight hundred twenty-six' WHERE a=8121; UPDATE t2 SET c='fifty-four thousand five hundred thirty-six' WHERE a=8122; UPDATE t2 SET c='eighty-five thousand two hundred fifty-three' WHERE a=8123; UPDATE t2 SET c='ten thousand eight hundred seven' WHERE a=8124; UPDATE t2 SET c='twenty-eight thousand two hundred seventy-three' WHERE a=8125; UPDATE t2 SET c='twelve thousand eight hundred twenty-eight' WHERE a=8126; UPDATE t2 SET c='sixty-six thousand six hundred sixty-five' WHERE a=8127; UPDATE t2 SET c='fifty-nine thousand three hundred forty-seven' WHERE a=8128; UPDATE t2 SET c='seventeen thousand two hundred fifty-one' WHERE a=8129; UPDATE t2 SET c='nine thousand two hundred eight' WHERE a=8130; UPDATE t2 SET c='seventy-three thousand eight hundred fifty-six' WHERE a=8131; UPDATE t2 SET c='fifty-eight thousand forty-three' WHERE a=8132; UPDATE t2 SET c='fourteen thousand seven hundred seven' WHERE a=8133; UPDATE t2 SET c='eighty-two thousand two hundred twenty-five' WHERE a=8134; UPDATE t2 SET c='seventy-eight thousand six hundred seventy-four' WHERE a=8135; UPDATE t2 SET c='twenty-six thousand three hundred fourteen' WHERE a=8136; UPDATE t2 SET c='ninety-five thousand three hundred sixty-five' WHERE a=8137; UPDATE t2 SET c='forty-five thousand seventy-six' WHERE a=8138; UPDATE t2 SET c='fifty-three thousand one hundred twelve' WHERE a=8139; UPDATE t2 SET c='ninety-nine thousand six hundred eight' WHERE a=8140; UPDATE t2 SET c='thirty-one thousand three hundred thirty-three' WHERE a=8141; UPDATE t2 SET c='ninety-three thousand two hundred sixty-four' WHERE a=8142; UPDATE t2 SET c='eighty thousand six hundred six' WHERE a=8143; UPDATE t2 SET c='eighty-seven thousand five hundred sixty-six' WHERE a=8144; UPDATE t2 SET c='fifty-five thousand two hundred sixty-nine' WHERE a=8145; UPDATE t2 SET c='three thousand two hundred ninety' WHERE a=8146; UPDATE t2 SET c='five thousand five hundred' WHERE a=8147; UPDATE t2 SET c='seventy thousand five hundred forty-eight' WHERE a=8148; UPDATE t2 SET c='thirty-three thousand one hundred eighty-five' WHERE a=8149; UPDATE t2 SET c='seventy thousand four hundred twenty' WHERE a=8150; UPDATE t2 SET c='nine thousand eight hundred fifty-two' WHERE a=8151; UPDATE t2 SET c='seventy-four thousand one hundred sixty' WHERE a=8152; UPDATE t2 SET c='forty-four thousand six hundred four' WHERE a=8153; UPDATE t2 SET c='one thousand two hundred fifty-nine' WHERE a=8154; UPDATE t2 SET c='forty-three thousand sixteen' WHERE a=8155; UPDATE t2 SET c='fifty-two thousand nine hundred ninety-one' WHERE a=8156; UPDATE t2 SET c='thirteen thousand three hundred twenty-three' WHERE a=8157; UPDATE t2 SET c='one thousand one hundred fifty-one' WHERE a=8158; UPDATE t2 SET c='sixty thousand three hundred seventy-six' WHERE a=8159; UPDATE t2 SET c='seventy-five thousand seven hundred seventy-five' WHERE a=8160; UPDATE t2 SET c='seventy-two thousand eight hundred sixty-three' WHERE a=8161; UPDATE t2 SET c='seventy thousand three hundred eighty-one' WHERE a=8162; UPDATE t2 SET c='forty thousand two hundred seven' WHERE a=8163; UPDATE t2 SET c='eighty-six thousand three hundred eighty-two' WHERE a=8164; UPDATE t2 SET c='thirty-three thousand five hundred forty-nine' WHERE a=8165; UPDATE t2 SET c='sixty-two thousand one hundred sixty-six' WHERE a=8166; UPDATE t2 SET c='eighty thousand nine hundred forty-three' WHERE a=8167; UPDATE t2 SET c='ninety-two thousand four hundred ninety-seven' WHERE a=8168; UPDATE t2 SET c='forty-five thousand nine hundred thirty-four' WHERE a=8169; UPDATE t2 SET c='seventy-one thousand eight hundred sixty-three' WHERE a=8170; UPDATE t2 SET c='thirty-three thousand seven hundred sixteen' WHERE a=8171; UPDATE t2 SET c='sixty-four thousand five hundred twenty-seven' WHERE a=8172; UPDATE t2 SET c='forty-four thousand thirteen' WHERE a=8173; UPDATE t2 SET c='sixty-one thousand eight hundred eighty' WHERE a=8174; UPDATE t2 SET c='fifty-two thousand one hundred eighty' WHERE a=8175; UPDATE t2 SET c='eight thousand nine hundred five' WHERE a=8176; UPDATE t2 SET c='seventeen thousand seven hundred eighty-two' WHERE a=8177; UPDATE t2 SET c='seventy-two thousand two hundred ninety-eight' WHERE a=8178; UPDATE t2 SET c='sixty-eight thousand seven hundred fifty-four' WHERE a=8179; UPDATE t2 SET c='seventy-one thousand seventy-three' WHERE a=8180; UPDATE t2 SET c='twenty-two thousand one hundred ninety-six' WHERE a=8181; UPDATE t2 SET c='twelve thousand one hundred eighteen' WHERE a=8182; UPDATE t2 SET c='seventy-nine thousand forty-four' WHERE a=8183; UPDATE t2 SET c='ninety-three thousand forty-four' WHERE a=8184; UPDATE t2 SET c='seventy-two thousand fifty-three' WHERE a=8185; UPDATE t2 SET c='fifty-seven thousand nine hundred seventy-two' WHERE a=8186; UPDATE t2 SET c='sixty-five thousand five hundred thirty-four' WHERE a=8187; UPDATE t2 SET c='fifty-six thousand eight hundred twenty-seven' WHERE a=8188; UPDATE t2 SET c='twenty-eight thousand four hundred eleven' WHERE a=8189; UPDATE t2 SET c='seventy-eight thousand nine hundred twenty-two' WHERE a=8190; UPDATE t2 SET c='ninety-seven thousand two hundred one' WHERE a=8191; UPDATE t2 SET c='forty-nine thousand one hundred ninety-nine' WHERE a=8192; UPDATE t2 SET c='twenty-seven thousand one hundred one' WHERE a=8193; UPDATE t2 SET c='fifty-five thousand one hundred one' WHERE a=8194; UPDATE t2 SET c='thirty-four thousand forty-four' WHERE a=8195; UPDATE t2 SET c='thirty-one thousand eight hundred fifty-four' WHERE a=8196; UPDATE t2 SET c='thirty-seven thousand seven hundred seventy-one' WHERE a=8197; UPDATE t2 SET c='three thousand eight hundred sixty-four' WHERE a=8198; UPDATE t2 SET c='eight thousand two hundred seventy-four' WHERE a=8199; UPDATE t2 SET c='fifty-one thousand four hundred thirty-nine' WHERE a=8200; UPDATE t2 SET c='eighteen thousand two hundred eighteen' WHERE a=8201; UPDATE t2 SET c='eight thousand nine hundred twenty-two' WHERE a=8202; UPDATE t2 SET c='twenty-eight thousand five' WHERE a=8203; UPDATE t2 SET c='sixty-two thousand five hundred twenty-one' WHERE a=8204; UPDATE t2 SET c='ten thousand six hundred eighty-four' WHERE a=8205; UPDATE t2 SET c='sixty-six thousand seven hundred eighty-seven' WHERE a=8206; UPDATE t2 SET c='eighty-six thousand five hundred forty' WHERE a=8207; UPDATE t2 SET c='ninety-three thousand nine hundred thirty' WHERE a=8208; UPDATE t2 SET c='fifty-three thousand nine hundred eighty-nine' WHERE a=8209; UPDATE t2 SET c='forty-eight thousand eight hundred seventy-eight' WHERE a=8210; UPDATE t2 SET c='fifty thousand six hundred fifty-five' WHERE a=8211; UPDATE t2 SET c='twenty-four thousand one hundred forty-eight' WHERE a=8212; UPDATE t2 SET c='twenty-seven thousand six hundred eighty-six' WHERE a=8213; UPDATE t2 SET c='eighty-six thousand one hundred sixty-nine' WHERE a=8214; UPDATE t2 SET c='eleven thousand five hundred nine' WHERE a=8215; UPDATE t2 SET c='twenty-seven thousand eight hundred thirty' WHERE a=8216; UPDATE t2 SET c='fifty thousand four hundred thirty-one' WHERE a=8217; UPDATE t2 SET c='seventy-eight thousand eight hundred sixteen' WHERE a=8218; UPDATE t2 SET c='two thousand four hundred twenty' WHERE a=8219; UPDATE t2 SET c='twenty-four thousand five hundred one' WHERE a=8220; UPDATE t2 SET c='fifty-five thousand two hundred forty' WHERE a=8221; UPDATE t2 SET c='eighty-five thousand nine hundred fifty-five' WHERE a=8222; UPDATE t2 SET c='ninety-nine thousand nine hundred eighteen' WHERE a=8223; UPDATE t2 SET c='eight thousand five hundred forty-eight' WHERE a=8224; UPDATE t2 SET c='seventeen thousand eight hundred forty' WHERE a=8225; UPDATE t2 SET c='eighty-seven thousand three hundred twenty-nine' WHERE a=8226; UPDATE t2 SET c='sixty-one thousand six hundred seventy-one' WHERE a=8227; UPDATE t2 SET c='ninety-six thousand one hundred seventy-one' WHERE a=8228; UPDATE t2 SET c='thirty-seven thousand one hundred ninety-three' WHERE a=8229; UPDATE t2 SET c='thirteen thousand seven hundred thirteen' WHERE a=8230; UPDATE t2 SET c='ninety-nine thousand fifty-one' WHERE a=8231; UPDATE t2 SET c='ninety-seven thousand one hundred eighty' WHERE a=8232; UPDATE t2 SET c='six thousand nine hundred eighty' WHERE a=8233; UPDATE t2 SET c='fifty thousand twenty-four' WHERE a=8234; UPDATE t2 SET c='eighty-four thousand three hundred thirty-four' WHERE a=8235; UPDATE t2 SET c='sixty-two thousand six hundred seventeen' WHERE a=8236; UPDATE t2 SET c='eighty-one thousand two hundred eighty-eight' WHERE a=8237; UPDATE t2 SET c='seventy-two thousand seven hundred fifty-eight' WHERE a=8238; UPDATE t2 SET c='nineteen thousand seventy-eight' WHERE a=8239; UPDATE t2 SET c='seven thousand one hundred ninety-two' WHERE a=8240; UPDATE t2 SET c='sixty-eight thousand two hundred fifteen' WHERE a=8241; UPDATE t2 SET c='thirty-two thousand two hundred seventy-four' WHERE a=8242; UPDATE t2 SET c='ninety-five thousand eight hundred eight' WHERE a=8243; UPDATE t2 SET c='one thousand nine hundred fifty-seven' WHERE a=8244; UPDATE t2 SET c='forty-eight thousand nine hundred twenty-five' WHERE a=8245; UPDATE t2 SET c='thirty thousand six hundred seventy' WHERE a=8246; UPDATE t2 SET c='eighty-seven thousand four hundred eighty-four' WHERE a=8247; UPDATE t2 SET c='sixty thousand sixty-four' WHERE a=8248; UPDATE t2 SET c='forty-four thousand thirty-six' WHERE a=8249; UPDATE t2 SET c='thirty-four thousand two hundred seventy-two' WHERE a=8250; UPDATE t2 SET c='ninety-four thousand two hundred fifty-seven' WHERE a=8251; UPDATE t2 SET c='twenty-three thousand seven hundred two' WHERE a=8252; UPDATE t2 SET c='sixty thousand four hundred eighty' WHERE a=8253; UPDATE t2 SET c='seventy-eight thousand two hundred twenty-two' WHERE a=8254; UPDATE t2 SET c='fifteen thousand nine hundred ninety-seven' WHERE a=8255; UPDATE t2 SET c='eighty-two thousand eight hundred thirty-seven' WHERE a=8256; UPDATE t2 SET c='twenty-nine thousand two hundred ninety-two' WHERE a=8257; UPDATE t2 SET c='thirty-nine thousand five hundred sixty-six' WHERE a=8258; UPDATE t2 SET c='eleven thousand seven hundred forty-six' WHERE a=8259; UPDATE t2 SET c='twenty-five thousand five hundred thirty-six' WHERE a=8260; UPDATE t2 SET c='fifteen thousand three hundred seventy-five' WHERE a=8261; UPDATE t2 SET c='five thousand sixty-one' WHERE a=8262; UPDATE t2 SET c='seventy thousand eight hundred seventy' WHERE a=8263; UPDATE t2 SET c='three thousand nine hundred fifty-eight' WHERE a=8264; UPDATE t2 SET c='forty-six thousand one hundred forty-eight' WHERE a=8265; UPDATE t2 SET c='fifty-five thousand seven hundred thirty-eight' WHERE a=8266; UPDATE t2 SET c='forty-six thousand two hundred fifty-eight' WHERE a=8267; UPDATE t2 SET c='eleven thousand three hundred seventy-seven' WHERE a=8268; UPDATE t2 SET c='eighty-nine thousand three hundred fourteen' WHERE a=8269; UPDATE t2 SET c='twenty-two thousand eight hundred fifty-one' WHERE a=8270; UPDATE t2 SET c='fifty thousand one hundred thirty-two' WHERE a=8271; UPDATE t2 SET c='five thousand six hundred thirty-three' WHERE a=8272; UPDATE t2 SET c='seventy-six thousand one hundred seventy-five' WHERE a=8273; UPDATE t2 SET c='sixty-four thousand eight hundred sixty-five' WHERE a=8274; UPDATE t2 SET c='fifty-five thousand four hundred ninety-one' WHERE a=8275; UPDATE t2 SET c='seventy-six thousand six hundred seventy-two' WHERE a=8276; UPDATE t2 SET c='eighty-five thousand four hundred eighty-one' WHERE a=8277; UPDATE t2 SET c='four hundred one' WHERE a=8278; UPDATE t2 SET c='sixty-seven thousand one hundred forty-four' WHERE a=8279; UPDATE t2 SET c='sixteen thousand seventy-two' WHERE a=8280; UPDATE t2 SET c='thirteen thousand eight hundred ten' WHERE a=8281; UPDATE t2 SET c='ninety-two thousand six hundred eighty-two' WHERE a=8282; UPDATE t2 SET c='three thousand one hundred five' WHERE a=8283; UPDATE t2 SET c='forty thousand five hundred nineteen' WHERE a=8284; UPDATE t2 SET c='fifty-six thousand seven hundred ninety-nine' WHERE a=8285; UPDATE t2 SET c='thirty-six thousand six hundred forty-six' WHERE a=8286; UPDATE t2 SET c='four thousand four hundred fifty-three' WHERE a=8287; UPDATE t2 SET c='thirty thousand nine hundred eighty-seven' WHERE a=8288; UPDATE t2 SET c='sixty-three thousand four hundred fifty-six' WHERE a=8289; UPDATE t2 SET c='thirty-three thousand two hundred sixty-five' WHERE a=8290; UPDATE t2 SET c='thirty thousand four hundred thirty-three' WHERE a=8291; UPDATE t2 SET c='ninety-five thousand one hundred seventy' WHERE a=8292; UPDATE t2 SET c='eleven thousand two hundred thirty-five' WHERE a=8293; UPDATE t2 SET c='eighty-one thousand seven hundred ninety-eight' WHERE a=8294; UPDATE t2 SET c='seventy-four thousand four hundred fourteen' WHERE a=8295; UPDATE t2 SET c='nine thousand five hundred sixty-three' WHERE a=8296; UPDATE t2 SET c='ninety thousand seven hundred eighty-five' WHERE a=8297; UPDATE t2 SET c='ninety-five thousand five hundred fifty' WHERE a=8298; UPDATE t2 SET c='five thousand eight hundred forty-six' WHERE a=8299; UPDATE t2 SET c='forty-seven thousand six hundred twenty-two' WHERE a=8300; UPDATE t2 SET c='ninety-eight thousand eight hundred twenty-seven' WHERE a=8301; UPDATE t2 SET c='seventy thousand seven hundred forty-three' WHERE a=8302; UPDATE t2 SET c='fifteen thousand eight hundred twenty-four' WHERE a=8303; UPDATE t2 SET c='fourteen thousand five hundred twenty-nine' WHERE a=8304; UPDATE t2 SET c='fifty-two thousand four hundred sixty-six' WHERE a=8305; UPDATE t2 SET c='twenty-two thousand six hundred seventy-seven' WHERE a=8306; UPDATE t2 SET c='ten thousand nine hundred forty-three' WHERE a=8307; UPDATE t2 SET c='eighty-eight thousand three hundred eighty-five' WHERE a=8308; UPDATE t2 SET c='sixty thousand nine hundred twenty-nine' WHERE a=8309; UPDATE t2 SET c='eighty-one thousand eight hundred twenty-seven' WHERE a=8310; UPDATE t2 SET c='ninety thousand nine hundred fifty-two' WHERE a=8311; UPDATE t2 SET c='fifty-nine thousand seven hundred sixty-one' WHERE a=8312; UPDATE t2 SET c='thirty thousand two hundred thirty-two' WHERE a=8313; UPDATE t2 SET c='thirty-two thousand one hundred seventy-nine' WHERE a=8314; UPDATE t2 SET c='five thousand fourteen' WHERE a=8315; UPDATE t2 SET c='seventy-one thousand seven hundred seventy-seven' WHERE a=8316; UPDATE t2 SET c='sixteen thousand three hundred ninety-six' WHERE a=8317; UPDATE t2 SET c='twelve thousand eight hundred seventy-seven' WHERE a=8318; UPDATE t2 SET c='twenty-seven thousand six hundred ninety-six' WHERE a=8319; UPDATE t2 SET c='fifty thousand eight hundred seven' WHERE a=8320; UPDATE t2 SET c='seventy-nine thousand four hundred sixty-eight' WHERE a=8321; UPDATE t2 SET c='seventy-four thousand six hundred eighty-three' WHERE a=8322; UPDATE t2 SET c='ninety-three thousand three hundred five' WHERE a=8323; UPDATE t2 SET c='nine thousand seventeen' WHERE a=8324; UPDATE t2 SET c='twenty-eight thousand two hundred fifty-six' WHERE a=8325; UPDATE t2 SET c='eighty-three thousand five hundred eighty' WHERE a=8326; UPDATE t2 SET c='forty-two thousand four hundred eighty-four' WHERE a=8327; UPDATE t2 SET c='seventy-nine thousand four hundred thirty-eight' WHERE a=8328; UPDATE t2 SET c='twenty-two thousand seventeen' WHERE a=8329; UPDATE t2 SET c='ninety-four thousand one hundred ten' WHERE a=8330; UPDATE t2 SET c='eighty-three thousand two hundred two' WHERE a=8331; UPDATE t2 SET c='thirty thousand one hundred forty-eight' WHERE a=8332; UPDATE t2 SET c='forty-one thousand five hundred ninety-seven' WHERE a=8333; UPDATE t2 SET c='sixty-eight thousand six hundred fifty-nine' WHERE a=8334; UPDATE t2 SET c='eighteen thousand four hundred eighteen' WHERE a=8335; UPDATE t2 SET c='fifty-nine thousand four hundred thirty' WHERE a=8336; UPDATE t2 SET c='sixty-four thousand four hundred nine' WHERE a=8337; UPDATE t2 SET c='forty-six thousand eight hundred ninety-four' WHERE a=8338; UPDATE t2 SET c='twenty-five thousand seven hundred seven' WHERE a=8339; UPDATE t2 SET c='eighty-nine thousand two hundred sixty' WHERE a=8340; UPDATE t2 SET c='thirty-three thousand four hundred eleven' WHERE a=8341; UPDATE t2 SET c='forty-two thousand forty' WHERE a=8342; UPDATE t2 SET c='seventy-four thousand four hundred ten' WHERE a=8343; UPDATE t2 SET c='ninety-one thousand eight hundred ninety-five' WHERE a=8344; UPDATE t2 SET c='twenty-nine thousand seven hundred forty-six' WHERE a=8345; UPDATE t2 SET c='fifty-four thousand seventy-four' WHERE a=8346; UPDATE t2 SET c='thirty-nine thousand nine hundred forty-seven' WHERE a=8347; UPDATE t2 SET c='fifty-four thousand nine hundred ninety-nine' WHERE a=8348; UPDATE t2 SET c='sixty thousand seven hundred six' WHERE a=8349; UPDATE t2 SET c='thirty thousand five hundred two' WHERE a=8350; UPDATE t2 SET c='thirty-one thousand five hundred seventy-five' WHERE a=8351; UPDATE t2 SET c='eighty-one thousand seven hundred sixty-six' WHERE a=8352; UPDATE t2 SET c='sixty-nine thousand seventy-four' WHERE a=8353; UPDATE t2 SET c='eighty thousand nine hundred forty-two' WHERE a=8354; UPDATE t2 SET c='sixteen thousand two hundred seventy-eight' WHERE a=8355; UPDATE t2 SET c='three thousand ninety-eight' WHERE a=8356; UPDATE t2 SET c='ninety-nine thousand seven hundred twenty' WHERE a=8357; UPDATE t2 SET c='twenty-eight thousand two hundred sixty-three' WHERE a=8358; UPDATE t2 SET c='seventeen thousand ninety-five' WHERE a=8359; UPDATE t2 SET c='forty-nine thousand six hundred two' WHERE a=8360; UPDATE t2 SET c='sixty-seven thousand five hundred three' WHERE a=8361; UPDATE t2 SET c='eighty-two thousand four hundred thirty-two' WHERE a=8362; UPDATE t2 SET c='forty-eight thousand three hundred seventy-three' WHERE a=8363; UPDATE t2 SET c='thirty-nine thousand eight hundred forty-nine' WHERE a=8364; UPDATE t2 SET c='fifty-one thousand eight hundred eighty-five' WHERE a=8365; UPDATE t2 SET c='sixty-two thousand nine hundred twelve' WHERE a=8366; UPDATE t2 SET c='forty-two thousand two hundred forty-three' WHERE a=8367; UPDATE t2 SET c='seventy-eight thousand nine hundred eighty-four' WHERE a=8368; UPDATE t2 SET c='fifteen thousand four hundred six' WHERE a=8369; UPDATE t2 SET c='thirty-two thousand seven hundred seventy-five' WHERE a=8370; UPDATE t2 SET c='sixty-nine thousand seven hundred sixty-five' WHERE a=8371; UPDATE t2 SET c='fifty-three thousand six hundred forty-five' WHERE a=8372; UPDATE t2 SET c='ten thousand seven hundred forty-three' WHERE a=8373; UPDATE t2 SET c='fourteen thousand three hundred eighty' WHERE a=8374; UPDATE t2 SET c='ninety-four thousand three hundred seventy-nine' WHERE a=8375; UPDATE t2 SET c='seventy-seven thousand two hundred forty-two' WHERE a=8376; UPDATE t2 SET c='sixty-six thousand ninety-two' WHERE a=8377; UPDATE t2 SET c='sixty-nine thousand one hundred seventy-four' WHERE a=8378; UPDATE t2 SET c='thirty-three thousand one hundred four' WHERE a=8379; UPDATE t2 SET c='forty-two thousand four hundred seventy-nine' WHERE a=8380; UPDATE t2 SET c='nine hundred forty-nine' WHERE a=8381; UPDATE t2 SET c='twelve thousand four hundred fifty-four' WHERE a=8382; UPDATE t2 SET c='ninety-four thousand nine hundred forty-four' WHERE a=8383; UPDATE t2 SET c='sixty-three thousand five hundred eleven' WHERE a=8384; UPDATE t2 SET c='seventy thousand three hundred thirty-eight' WHERE a=8385; UPDATE t2 SET c='ninety-five thousand thirty-one' WHERE a=8386; UPDATE t2 SET c='eleven thousand six hundred ninety-four' WHERE a=8387; UPDATE t2 SET c='thirty-three thousand one hundred thirty-three' WHERE a=8388; UPDATE t2 SET c='six thousand three hundred one' WHERE a=8389; UPDATE t2 SET c='thirty-seven thousand eight hundred five' WHERE a=8390; UPDATE t2 SET c='fifty-five thousand one hundred forty-four' WHERE a=8391; UPDATE t2 SET c='ninety-one thousand eight hundred sixty-five' WHERE a=8392; UPDATE t2 SET c='thirty-six thousand six hundred ninety-two' WHERE a=8393; UPDATE t2 SET c='ninety-two thousand one hundred forty-three' WHERE a=8394; UPDATE t2 SET c='ten thousand eight hundred seventy-two' WHERE a=8395; UPDATE t2 SET c='thirty-three thousand seven hundred sixteen' WHERE a=8396; UPDATE t2 SET c='thirty-two thousand six hundred one' WHERE a=8397; UPDATE t2 SET c='eighty-four thousand five hundred fifty-six' WHERE a=8398; UPDATE t2 SET c='seventy-one thousand nine hundred seventy-three' WHERE a=8399; UPDATE t2 SET c='seventy-seven thousand seven hundred seventy' WHERE a=8400; UPDATE t2 SET c='forty-nine thousand eight hundred ninety-six' WHERE a=8401; UPDATE t2 SET c='eight hundred twenty-nine' WHERE a=8402; UPDATE t2 SET c='twelve thousand seven hundred ninety-three' WHERE a=8403; UPDATE t2 SET c='sixty-seven thousand three hundred thirty-five' WHERE a=8404; UPDATE t2 SET c='thirty-one thousand nine hundred thirty-seven' WHERE a=8405; UPDATE t2 SET c='seventy-six thousand five hundred sixty-nine' WHERE a=8406; UPDATE t2 SET c='eighty-three thousand three hundred fifty-two' WHERE a=8407; UPDATE t2 SET c='twenty-five thousand five hundred four' WHERE a=8408; UPDATE t2 SET c='seventy-five thousand one hundred sixty-six' WHERE a=8409; UPDATE t2 SET c='eighty-six thousand six hundred sixty-six' WHERE a=8410; UPDATE t2 SET c='fifteen thousand nine hundred forty-two' WHERE a=8411; UPDATE t2 SET c='seventy-five thousand nine hundred seventy-six' WHERE a=8412; UPDATE t2 SET c='ten thousand one hundred ninety-three' WHERE a=8413; UPDATE t2 SET c='six thousand seventy-three' WHERE a=8414; UPDATE t2 SET c='sixty-three thousand two hundred fourteen' WHERE a=8415; UPDATE t2 SET c='thirteen thousand five hundred thirty-nine' WHERE a=8416; UPDATE t2 SET c='five thousand four hundred seventy-five' WHERE a=8417; UPDATE t2 SET c='seventy thousand ninety-five' WHERE a=8418; UPDATE t2 SET c='forty-two thousand three hundred ninety-eight' WHERE a=8419; UPDATE t2 SET c='eighteen thousand twenty-nine' WHERE a=8420; UPDATE t2 SET c='forty thousand four hundred fifty-two' WHERE a=8421; UPDATE t2 SET c='forty-eight thousand two hundred eight' WHERE a=8422; UPDATE t2 SET c='thirty-four thousand five hundred ninety-four' WHERE a=8423; UPDATE t2 SET c='forty-nine thousand eight hundred eighty-two' WHERE a=8424; UPDATE t2 SET c='fifty-six thousand seven hundred nineteen' WHERE a=8425; UPDATE t2 SET c='two thousand three hundred ninety-one' WHERE a=8426; UPDATE t2 SET c='ninety-nine thousand seven hundred eighty-five' WHERE a=8427; UPDATE t2 SET c='eighty-one thousand seven hundred twenty-seven' WHERE a=8428; UPDATE t2 SET c='sixty-one thousand four hundred forty-nine' WHERE a=8429; UPDATE t2 SET c='sixty-three thousand four hundred twenty-four' WHERE a=8430; UPDATE t2 SET c='eleven thousand thirteen' WHERE a=8431; UPDATE t2 SET c='twenty-four thousand one hundred twenty-two' WHERE a=8432; UPDATE t2 SET c='eighty thousand five hundred forty' WHERE a=8433; UPDATE t2 SET c='eighty-two thousand three hundred sixty-eight' WHERE a=8434; UPDATE t2 SET c='sixty-three thousand three hundred twenty' WHERE a=8435; UPDATE t2 SET c='three thousand two hundred forty-five' WHERE a=8436; UPDATE t2 SET c='fifty-six thousand eight hundred forty-five' WHERE a=8437; UPDATE t2 SET c='seventy-four thousand eight hundred eighty-eight' WHERE a=8438; UPDATE t2 SET c='seventy-three thousand one hundred fifty-nine' WHERE a=8439; UPDATE t2 SET c='seventy-two thousand two' WHERE a=8440; UPDATE t2 SET c='seventy-five thousand three hundred sixty-seven' WHERE a=8441; UPDATE t2 SET c='ninety-six thousand five hundred twelve' WHERE a=8442; UPDATE t2 SET c='seventy-two thousand seven hundred forty-one' WHERE a=8443; UPDATE t2 SET c='thirty-five thousand one hundred sixty-three' WHERE a=8444; UPDATE t2 SET c='forty-three thousand six hundred twelve' WHERE a=8445; UPDATE t2 SET c='ten thousand seven hundred thirty-five' WHERE a=8446; UPDATE t2 SET c='twenty thousand four hundred fifty-three' WHERE a=8447; UPDATE t2 SET c='forty-one thousand two hundred eighty' WHERE a=8448; UPDATE t2 SET c='four hundred ten' WHERE a=8449; UPDATE t2 SET c='fifty-one thousand three hundred ninety-four' WHERE a=8450; UPDATE t2 SET c='seventy-nine thousand four hundred eighty-nine' WHERE a=8451; UPDATE t2 SET c='twelve thousand nine hundred thirty-four' WHERE a=8452; UPDATE t2 SET c='eighty-six thousand nine hundred eighty-seven' WHERE a=8453; UPDATE t2 SET c='seventy-five thousand nine hundred eighty-three' WHERE a=8454; UPDATE t2 SET c='six thousand four hundred six' WHERE a=8455; UPDATE t2 SET c='eighty-seven thousand six hundred forty-eight' WHERE a=8456; UPDATE t2 SET c='seventy-four thousand five hundred forty-six' WHERE a=8457; UPDATE t2 SET c='seventy-five thousand one hundred thirty-two' WHERE a=8458; UPDATE t2 SET c='seventy-eight thousand nine' WHERE a=8459; UPDATE t2 SET c='ninety-eight thousand three hundred thirty-one' WHERE a=8460; UPDATE t2 SET c='ninety-seven thousand one hundred' WHERE a=8461; UPDATE t2 SET c='fifty-seven thousand six hundred ninety-five' WHERE a=8462; UPDATE t2 SET c='five hundred sixty' WHERE a=8463; UPDATE t2 SET c='ninety-six thousand seven hundred seventy-three' WHERE a=8464; UPDATE t2 SET c='seventy-seven thousand nine hundred thirty' WHERE a=8465; UPDATE t2 SET c='fifty thousand three hundred sixty-four' WHERE a=8466; UPDATE t2 SET c='thirty-five thousand six hundred four' WHERE a=8467; UPDATE t2 SET c='fifty-two thousand two hundred fifty-four' WHERE a=8468; UPDATE t2 SET c='ninety-eight thousand four hundred sixteen' WHERE a=8469; UPDATE t2 SET c='forty-nine thousand five hundred seventy-eight' WHERE a=8470; UPDATE t2 SET c='sixty-four thousand nine hundred eighty-one' WHERE a=8471; UPDATE t2 SET c='seven thousand six hundred eighty-four' WHERE a=8472; UPDATE t2 SET c='eighty-three thousand three hundred ninety-three' WHERE a=8473; UPDATE t2 SET c='forty-six thousand three hundred ten' WHERE a=8474; UPDATE t2 SET c='seventy-five thousand nine hundred thirty-five' WHERE a=8475; UPDATE t2 SET c='eighty-three thousand six hundred sixty-two' WHERE a=8476; UPDATE t2 SET c='seventy-six thousand one hundred sixty-five' WHERE a=8477; UPDATE t2 SET c='sixty-one thousand six hundred eighty-one' WHERE a=8478; UPDATE t2 SET c='four thousand seven hundred twenty-seven' WHERE a=8479; UPDATE t2 SET c='eighteen thousand five hundred forty-nine' WHERE a=8480; UPDATE t2 SET c='seventy-three thousand four hundred fifty' WHERE a=8481; UPDATE t2 SET c='sixty-five thousand thirty-nine' WHERE a=8482; UPDATE t2 SET c='seventy-nine thousand eight hundred eighty-six' WHERE a=8483; UPDATE t2 SET c='three thousand five hundred five' WHERE a=8484; UPDATE t2 SET c='seventy-one thousand one hundred ninety-one' WHERE a=8485; UPDATE t2 SET c='forty-eight thousand seven hundred eighty-four' WHERE a=8486; UPDATE t2 SET c='fifty-one thousand seven hundred eighty-four' WHERE a=8487; UPDATE t2 SET c='eighty-five thousand twenty-four' WHERE a=8488; UPDATE t2 SET c='fifty-two thousand two hundred twenty-five' WHERE a=8489; UPDATE t2 SET c='twenty-five thousand eight hundred eighty-six' WHERE a=8490; UPDATE t2 SET c='forty-eight thousand eight hundred thirty-five' WHERE a=8491; UPDATE t2 SET c='twenty thousand nine hundred eleven' WHERE a=8492; UPDATE t2 SET c='twenty-five thousand four hundred fifty-two' WHERE a=8493; UPDATE t2 SET c='twenty-six thousand five hundred sixty-one' WHERE a=8494; UPDATE t2 SET c='ten thousand three hundred sixty-four' WHERE a=8495; UPDATE t2 SET c='seventy-seven thousand two hundred eight' WHERE a=8496; UPDATE t2 SET c='eighty-three thousand five hundred forty-two' WHERE a=8497; UPDATE t2 SET c='seventy-eight thousand five hundred forty-five' WHERE a=8498; UPDATE t2 SET c='eighty-three thousand nine hundred eighty-eight' WHERE a=8499; UPDATE t2 SET c='seventy-four thousand seven hundred twenty-three' WHERE a=8500; UPDATE t2 SET c='forty-eight thousand two hundred forty-two' WHERE a=8501; UPDATE t2 SET c='twenty-nine thousand six hundred sixty-seven' WHERE a=8502; UPDATE t2 SET c='fifty-nine thousand seven hundred forty-nine' WHERE a=8503; UPDATE t2 SET c='eighty-eight thousand two hundred forty-seven' WHERE a=8504; UPDATE t2 SET c='twenty-five thousand eight hundred forty-seven' WHERE a=8505; UPDATE t2 SET c='fifteen thousand two hundred forty-six' WHERE a=8506; UPDATE t2 SET c='seventy-six thousand two hundred ninety-three' WHERE a=8507; UPDATE t2 SET c='forty-five thousand twenty-eight' WHERE a=8508; UPDATE t2 SET c='five thousand one hundred seventy-five' WHERE a=8509; UPDATE t2 SET c='seventy-two thousand seven hundred eighteen' WHERE a=8510; UPDATE t2 SET c='ninety-four thousand six hundred thirty-five' WHERE a=8511; UPDATE t2 SET c='ninety thousand fifty-two' WHERE a=8512; UPDATE t2 SET c='five thousand eight hundred twenty' WHERE a=8513; UPDATE t2 SET c='fifteen thousand two hundred thirty' WHERE a=8514; UPDATE t2 SET c='sixty-nine thousand eight hundred thirty-seven' WHERE a=8515; UPDATE t2 SET c='thirty-six thousand five hundred seventy' WHERE a=8516; UPDATE t2 SET c='ninety-seven thousand seven hundred ninety-three' WHERE a=8517; UPDATE t2 SET c='seventy-seven thousand three hundred forty-two' WHERE a=8518; UPDATE t2 SET c='ninety-two thousand four hundred sixty-four' WHERE a=8519; UPDATE t2 SET c='five hundred four' WHERE a=8520; UPDATE t2 SET c='twenty-three thousand two hundred thirty-four' WHERE a=8521; UPDATE t2 SET c='ninety-four thousand four hundred twenty-six' WHERE a=8522; UPDATE t2 SET c='sixty-three thousand eight hundred twenty' WHERE a=8523; UPDATE t2 SET c='eighty-nine thousand seven hundred eighty' WHERE a=8524; UPDATE t2 SET c='fifty-four thousand two hundred six' WHERE a=8525; UPDATE t2 SET c='fifty-five thousand eight hundred seventy-six' WHERE a=8526; UPDATE t2 SET c='sixty-four thousand eight hundred sixty-three' WHERE a=8527; UPDATE t2 SET c='six thousand eight hundred sixty-four' WHERE a=8528; UPDATE t2 SET c='thirty-three thousand eight hundred ninety-one' WHERE a=8529; UPDATE t2 SET c='eighty-three thousand five hundred sixty-six' WHERE a=8530; UPDATE t2 SET c='ninety-seven thousand four hundred twenty' WHERE a=8531; UPDATE t2 SET c='seven thousand one hundred fifty-nine' WHERE a=8532; UPDATE t2 SET c='sixty-two thousand nine hundred sixty-three' WHERE a=8533; UPDATE t2 SET c='sixty-seven thousand four hundred thirty-nine' WHERE a=8534; UPDATE t2 SET c='three thousand one hundred fifty-nine' WHERE a=8535; UPDATE t2 SET c='twelve thousand twenty-four' WHERE a=8536; UPDATE t2 SET c='seventy-six thousand one hundred thirteen' WHERE a=8537; UPDATE t2 SET c='eighty-six thousand five hundred ninety-nine' WHERE a=8538; UPDATE t2 SET c='eight thousand four hundred ninety-four' WHERE a=8539; UPDATE t2 SET c='forty-four thousand seven hundred sixty-five' WHERE a=8540; UPDATE t2 SET c='twenty-four thousand two hundred fifty-nine' WHERE a=8541; UPDATE t2 SET c='seventy thousand two hundred ninety-two' WHERE a=8542; UPDATE t2 SET c='sixty-four thousand eight hundred ninety-one' WHERE a=8543; UPDATE t2 SET c='ninety-six thousand two hundred forty' WHERE a=8544; UPDATE t2 SET c='eleven thousand one hundred ninety-three' WHERE a=8545; UPDATE t2 SET c='forty-one thousand nine hundred forty-three' WHERE a=8546; UPDATE t2 SET c='seven thousand four hundred twenty' WHERE a=8547; UPDATE t2 SET c='two hundred seventy-seven' WHERE a=8548; UPDATE t2 SET c='ninety-seven thousand two hundred seventy-two' WHERE a=8549; UPDATE t2 SET c='forty-eight thousand two hundred thirty' WHERE a=8550; UPDATE t2 SET c='eighty-two thousand two hundred sixty-three' WHERE a=8551; UPDATE t2 SET c='sixty-three thousand three hundred twenty-six' WHERE a=8552; UPDATE t2 SET c='eighty-eight thousand seven hundred seventy-four' WHERE a=8553; UPDATE t2 SET c='seventy-four thousand twenty-five' WHERE a=8554; UPDATE t2 SET c='ninety-eight thousand one hundred forty-three' WHERE a=8555; UPDATE t2 SET c='three thousand three hundred four' WHERE a=8556; UPDATE t2 SET c='forty-three thousand one hundred seventy' WHERE a=8557; UPDATE t2 SET c='sixty-six thousand seven hundred ninety-two' WHERE a=8558; UPDATE t2 SET c='eighty-seven thousand six hundred twenty-three' WHERE a=8559; UPDATE t2 SET c='eighty-four thousand two hundred ninety-two' WHERE a=8560; UPDATE t2 SET c='thirty-eight thousand one hundred thirty-one' WHERE a=8561; UPDATE t2 SET c='thirty-one thousand four hundred thirty' WHERE a=8562; UPDATE t2 SET c='sixty-one thousand two hundred sixty' WHERE a=8563; UPDATE t2 SET c='thirty-six thousand nine hundred thirty-two' WHERE a=8564; UPDATE t2 SET c='eleven thousand four hundred forty-four' WHERE a=8565; UPDATE t2 SET c='fifty-nine thousand three hundred seven' WHERE a=8566; UPDATE t2 SET c='ninety-five thousand ninety' WHERE a=8567; UPDATE t2 SET c='seventy-seven thousand seven hundred ninety-seven' WHERE a=8568; UPDATE t2 SET c='seventy-two thousand eight hundred eighty-one' WHERE a=8569; UPDATE t2 SET c='thirty-seven thousand one hundred fourteen' WHERE a=8570; UPDATE t2 SET c='seventy-six thousand three hundred eighty-seven' WHERE a=8571; UPDATE t2 SET c='six thousand two hundred forty-eight' WHERE a=8572; UPDATE t2 SET c='eighty-seven thousand five hundred one' WHERE a=8573; UPDATE t2 SET c='forty thousand three hundred forty-five' WHERE a=8574; UPDATE t2 SET c='ninety thousand seven hundred sixty-five' WHERE a=8575; UPDATE t2 SET c='nine thousand three hundred eighty-three' WHERE a=8576; UPDATE t2 SET c='eighteen thousand six hundred seventy-eight' WHERE a=8577; UPDATE t2 SET c='fifty thousand seven hundred eighty-nine' WHERE a=8578; UPDATE t2 SET c='eleven thousand six hundred forty-five' WHERE a=8579; UPDATE t2 SET c='thirty thousand six hundred fifty-three' WHERE a=8580; UPDATE t2 SET c='sixty-two thousand six hundred thirty-six' WHERE a=8581; UPDATE t2 SET c='seventy-one thousand three hundred eighty-two' WHERE a=8582; UPDATE t2 SET c='sixty-four thousand two hundred fifty-one' WHERE a=8583; UPDATE t2 SET c='fifty-six thousand nine hundred eighty-four' WHERE a=8584; UPDATE t2 SET c='forty-six thousand one hundred sixty-eight' WHERE a=8585; UPDATE t2 SET c='sixty-seven thousand nine hundred eight' WHERE a=8586; UPDATE t2 SET c='twenty-two thousand seven hundred two' WHERE a=8587; UPDATE t2 SET c='eighty-eight thousand seven hundred sixty-nine' WHERE a=8588; UPDATE t2 SET c='seventy-five thousand nine hundred seventy-eight' WHERE a=8589; UPDATE t2 SET c='eighty-eight thousand two hundred fifty-three' WHERE a=8590; UPDATE t2 SET c='one thousand ninety-six' WHERE a=8591; UPDATE t2 SET c='ninety-six thousand six hundred thirty-seven' WHERE a=8592; UPDATE t2 SET c='seventy-four thousand seventy-seven' WHERE a=8593; UPDATE t2 SET c='forty-three thousand seven hundred ten' WHERE a=8594; UPDATE t2 SET c='seventy-three thousand four hundred seventy-six' WHERE a=8595; UPDATE t2 SET c='thirty-four thousand nine hundred four' WHERE a=8596; UPDATE t2 SET c='thirteen thousand three hundred eighty-nine' WHERE a=8597; UPDATE t2 SET c='sixty-two thousand eighty-seven' WHERE a=8598; UPDATE t2 SET c='thirty-two thousand three hundred fifty-seven' WHERE a=8599; UPDATE t2 SET c='seventy-eight thousand four hundred seventy-eight' WHERE a=8600; UPDATE t2 SET c='three thousand fifty-seven' WHERE a=8601; UPDATE t2 SET c='twenty-two thousand fifty-seven' WHERE a=8602; UPDATE t2 SET c='fifty-one thousand two hundred eighty-five' WHERE a=8603; UPDATE t2 SET c='sixty-six thousand five hundred twenty-six' WHERE a=8604; UPDATE t2 SET c='twenty-six thousand two hundred eighty-six' WHERE a=8605; UPDATE t2 SET c='seventy-one thousand three hundred twenty' WHERE a=8606; UPDATE t2 SET c='sixty-three thousand two' WHERE a=8607; UPDATE t2 SET c='eighty-nine thousand six hundred fourteen' WHERE a=8608; UPDATE t2 SET c='sixty-six thousand two hundred eleven' WHERE a=8609; UPDATE t2 SET c='ninety-seven thousand nine hundred seven' WHERE a=8610; UPDATE t2 SET c='sixty-three thousand four hundred sixty' WHERE a=8611; UPDATE t2 SET c='forty-seven thousand seven hundred thirty-one' WHERE a=8612; UPDATE t2 SET c='seventy-four thousand six hundred twenty-two' WHERE a=8613; UPDATE t2 SET c='one thousand two hundred eighty' WHERE a=8614; UPDATE t2 SET c='fifty-three thousand eight hundred seventy-two' WHERE a=8615; UPDATE t2 SET c='fifty-four thousand three hundred fifty-four' WHERE a=8616; UPDATE t2 SET c='ninety-three thousand five hundred forty-five' WHERE a=8617; UPDATE t2 SET c='ninety thousand one hundred three' WHERE a=8618; UPDATE t2 SET c='seventy-six thousand six hundred thirty-eight' WHERE a=8619; UPDATE t2 SET c='ninety-seven thousand four hundred ninety' WHERE a=8620; UPDATE t2 SET c='ten thousand eight hundred one' WHERE a=8621; UPDATE t2 SET c='eighty-eight thousand nine hundred seventy' WHERE a=8622; UPDATE t2 SET c='seventy-seven thousand three hundred fifty-one' WHERE a=8623; UPDATE t2 SET c='twelve thousand nine hundred eighty-six' WHERE a=8624; UPDATE t2 SET c='seventeen thousand three hundred fifty' WHERE a=8625; UPDATE t2 SET c='seventy-eight thousand five hundred fifteen' WHERE a=8626; UPDATE t2 SET c='eighty-nine thousand two hundred fourteen' WHERE a=8627; UPDATE t2 SET c='sixty-six thousand seven hundred sixty-six' WHERE a=8628; UPDATE t2 SET c='fifty-six thousand four hundred forty-two' WHERE a=8629; UPDATE t2 SET c='seventy-seven thousand two hundred forty-nine' WHERE a=8630; UPDATE t2 SET c='sixty-three thousand one hundred fifty-seven' WHERE a=8631; UPDATE t2 SET c='twenty-four thousand two hundred ninety-eight' WHERE a=8632; UPDATE t2 SET c='sixty-five thousand eight hundred twenty-seven' WHERE a=8633; UPDATE t2 SET c='eighty-five thousand four hundred seventy-nine' WHERE a=8634; UPDATE t2 SET c='thirty-three thousand four hundred eighty-three' WHERE a=8635; UPDATE t2 SET c='forty-six thousand seven hundred eighty-seven' WHERE a=8636; UPDATE t2 SET c='eighty-three thousand nine hundred sixty' WHERE a=8637; UPDATE t2 SET c='twenty-six thousand eight hundred twenty-four' WHERE a=8638; UPDATE t2 SET c='sixty-eight thousand seven hundred fifty-four' WHERE a=8639; UPDATE t2 SET c='thirty-three thousand nine hundred thirty-five' WHERE a=8640; UPDATE t2 SET c='sixty-seven thousand eight hundred twenty-five' WHERE a=8641; UPDATE t2 SET c='three thousand three hundred twenty-two' WHERE a=8642; UPDATE t2 SET c='thirty-nine thousand one hundred fifty-two' WHERE a=8643; UPDATE t2 SET c='one thousand eight hundred seventy-two' WHERE a=8644; UPDATE t2 SET c='eighty thousand nine hundred fifty-seven' WHERE a=8645; UPDATE t2 SET c='eighty-nine thousand four hundred sixty-three' WHERE a=8646; UPDATE t2 SET c='eighty-eight thousand seven hundred fourteen' WHERE a=8647; UPDATE t2 SET c='thirty-one thousand four hundred nine' WHERE a=8648; UPDATE t2 SET c='twenty-two thousand one hundred seventy-four' WHERE a=8649; UPDATE t2 SET c='eight thousand nine hundred ninety-three' WHERE a=8650; UPDATE t2 SET c='twenty-six thousand one hundred twenty-four' WHERE a=8651; UPDATE t2 SET c='ninety thousand five hundred fifty-three' WHERE a=8652; UPDATE t2 SET c='forty-seven thousand one hundred eighty-eight' WHERE a=8653; UPDATE t2 SET c='twenty-two thousand four hundred thirty' WHERE a=8654; UPDATE t2 SET c='sixty-two thousand three hundred twenty-six' WHERE a=8655; UPDATE t2 SET c='twenty-three thousand eight hundred seventy-three' WHERE a=8656; UPDATE t2 SET c='eighty-five thousand five hundred ninety-eight' WHERE a=8657; UPDATE t2 SET c='twenty-six thousand eight hundred twenty-eight' WHERE a=8658; UPDATE t2 SET c='seventy-five thousand seventy-seven' WHERE a=8659; UPDATE t2 SET c='thirty thousand nine hundred sixty-eight' WHERE a=8660; UPDATE t2 SET c='eighty-six thousand four hundred seventy-two' WHERE a=8661; UPDATE t2 SET c='eighty-nine thousand four hundred eighty-seven' WHERE a=8662; UPDATE t2 SET c='forty-nine thousand six hundred seventy-one' WHERE a=8663; UPDATE t2 SET c='nine thousand six hundred thirty-seven' WHERE a=8664; UPDATE t2 SET c='twenty-five thousand five hundred thirty-five' WHERE a=8665; UPDATE t2 SET c='forty-six thousand one hundred five' WHERE a=8666; UPDATE t2 SET c='fifty-four thousand five hundred twenty-seven' WHERE a=8667; UPDATE t2 SET c='sixty-two thousand thirty-three' WHERE a=8668; UPDATE t2 SET c='eighteen thousand four hundred sixteen' WHERE a=8669; UPDATE t2 SET c='fifty-eight thousand four hundred forty-four' WHERE a=8670; UPDATE t2 SET c='eighty-seven thousand six hundred twenty-nine' WHERE a=8671; UPDATE t2 SET c='ninety-nine thousand three hundred twenty-five' WHERE a=8672; UPDATE t2 SET c='seventy-two thousand six hundred one' WHERE a=8673; UPDATE t2 SET c='four thousand six hundred fifty-five' WHERE a=8674; UPDATE t2 SET c='ninety-four thousand fifty-two' WHERE a=8675; UPDATE t2 SET c='fifteen thousand three hundred ninety-two' WHERE a=8676; UPDATE t2 SET c='seventy-seven thousand two hundred seventeen' WHERE a=8677; UPDATE t2 SET c='thirty-nine thousand one hundred' WHERE a=8678; UPDATE t2 SET c='nine thousand one hundred fifty' WHERE a=8679; UPDATE t2 SET c='fifty-six thousand five hundred seventy-four' WHERE a=8680; UPDATE t2 SET c='sixty-one thousand three hundred forty-seven' WHERE a=8681; UPDATE t2 SET c='twenty-six thousand seven hundred five' WHERE a=8682; UPDATE t2 SET c='twenty-five thousand eight hundred ninety-four' WHERE a=8683; UPDATE t2 SET c='twenty-five thousand three hundred ten' WHERE a=8684; UPDATE t2 SET c='ninety-five thousand one hundred fifty-four' WHERE a=8685; UPDATE t2 SET c='ninety-five thousand six hundred thirty-four' WHERE a=8686; UPDATE t2 SET c='two thousand nine hundred five' WHERE a=8687; UPDATE t2 SET c='twelve thousand six hundred twenty-eight' WHERE a=8688; UPDATE t2 SET c='eighty-three thousand nine hundred eighty-six' WHERE a=8689; UPDATE t2 SET c='fifty-two thousand six hundred fifty-seven' WHERE a=8690; UPDATE t2 SET c='seven thousand nine hundred seventy-three' WHERE a=8691; UPDATE t2 SET c='twenty-one thousand three hundred forty-nine' WHERE a=8692; UPDATE t2 SET c='fifty-five thousand eight hundred two' WHERE a=8693; UPDATE t2 SET c='twelve thousand six hundred five' WHERE a=8694; UPDATE t2 SET c='sixty-five thousand sixty-one' WHERE a=8695; UPDATE t2 SET c='fifty thousand thirty-two' WHERE a=8696; UPDATE t2 SET c='sixty-nine thousand one hundred ninety-eight' WHERE a=8697; UPDATE t2 SET c='thirty-one thousand nine hundred twenty-six' WHERE a=8698; UPDATE t2 SET c='two hundred thirteen' WHERE a=8699; UPDATE t2 SET c='one thousand nine hundred thirty-three' WHERE a=8700; UPDATE t2 SET c='ten thousand three hundred seventy-eight' WHERE a=8701; UPDATE t2 SET c='fifty-six thousand one hundred forty-two' WHERE a=8702; UPDATE t2 SET c='forty-four thousand nine hundred forty-six' WHERE a=8703; UPDATE t2 SET c='forty-seven thousand twenty-five' WHERE a=8704; UPDATE t2 SET c='ten thousand eight hundred one' WHERE a=8705; UPDATE t2 SET c='forty-one thousand one hundred sixty-four' WHERE a=8706; UPDATE t2 SET c='ninety-nine thousand seven hundred ninety-nine' WHERE a=8707; UPDATE t2 SET c='thirty-one thousand six hundred forty-seven' WHERE a=8708; UPDATE t2 SET c='twenty-two thousand three hundred fifty-seven' WHERE a=8709; UPDATE t2 SET c='seventy-five thousand one' WHERE a=8710; UPDATE t2 SET c='sixty-seven thousand eight hundred fifty-eight' WHERE a=8711; UPDATE t2 SET c='thirty-five thousand three hundred eighty-five' WHERE a=8712; UPDATE t2 SET c='eighty-five thousand three hundred eighty-seven' WHERE a=8713; UPDATE t2 SET c='forty-eight thousand five hundred fourteen' WHERE a=8714; UPDATE t2 SET c='sixty-five thousand three hundred sixty-seven' WHERE a=8715; UPDATE t2 SET c='fifty-four thousand three hundred eighty-nine' WHERE a=8716; UPDATE t2 SET c='seventy-two thousand six hundred sixty-seven' WHERE a=8717; UPDATE t2 SET c='forty-six thousand one hundred eighty-eight' WHERE a=8718; UPDATE t2 SET c='ninety-eight thousand one hundred twenty-six' WHERE a=8719; UPDATE t2 SET c='sixty-three thousand three hundred eighty-one' WHERE a=8720; UPDATE t2 SET c='ten thousand six hundred forty-four' WHERE a=8721; UPDATE t2 SET c='fifty-one thousand nine hundred one' WHERE a=8722; UPDATE t2 SET c='eighty-three thousand five hundred thirty' WHERE a=8723; UPDATE t2 SET c='thirty-nine thousand seven hundred eighty-three' WHERE a=8724; UPDATE t2 SET c='twenty-three thousand nine hundred eighty-eight' WHERE a=8725; UPDATE t2 SET c='thirty-one thousand six hundred thirty-seven' WHERE a=8726; UPDATE t2 SET c='sixty-two thousand nine hundred ninety-nine' WHERE a=8727; UPDATE t2 SET c='eighty-two thousand sixteen' WHERE a=8728; UPDATE t2 SET c='ninety-three thousand three hundred fifteen' WHERE a=8729; UPDATE t2 SET c='sixty-seven thousand two hundred fifty-one' WHERE a=8730; UPDATE t2 SET c='twenty-five thousand four hundred thirty-one' WHERE a=8731; UPDATE t2 SET c='eighty-seven thousand eight hundred sixty-six' WHERE a=8732; UPDATE t2 SET c='ninety-six thousand one hundred twenty-three' WHERE a=8733; UPDATE t2 SET c='sixty-two thousand eight hundred eighty-eight' WHERE a=8734; UPDATE t2 SET c='fifty-six thousand four hundred twenty-five' WHERE a=8735; UPDATE t2 SET c='ninety-four thousand five hundred eighty-eight' WHERE a=8736; UPDATE t2 SET c='eighteen thousand five hundred thirty-six' WHERE a=8737; UPDATE t2 SET c='thirty-two thousand one hundred ninety-four' WHERE a=8738; UPDATE t2 SET c='ninety-six thousand six hundred thirty-five' WHERE a=8739; UPDATE t2 SET c='five thousand four hundred fifty-four' WHERE a=8740; UPDATE t2 SET c='ninety-two thousand five hundred seventy-seven' WHERE a=8741; UPDATE t2 SET c='six thousand three hundred fourteen' WHERE a=8742; UPDATE t2 SET c='forty-nine thousand four hundred one' WHERE a=8743; UPDATE t2 SET c='eighty-six thousand fifty-four' WHERE a=8744; UPDATE t2 SET c='seventy-six thousand nine hundred thirty-six' WHERE a=8745; UPDATE t2 SET c='eighty-eight thousand eight hundred fourteen' WHERE a=8746; UPDATE t2 SET c='eighty-two thousand six hundred nineteen' WHERE a=8747; UPDATE t2 SET c='forty thousand three hundred ninety' WHERE a=8748; UPDATE t2 SET c='thirty-nine thousand three hundred ninety-one' WHERE a=8749; UPDATE t2 SET c='sixty-nine thousand seven hundred twenty-three' WHERE a=8750; UPDATE t2 SET c='eighty-eight thousand two hundred eighty' WHERE a=8751; UPDATE t2 SET c='forty-seven thousand seven hundred seventy-four' WHERE a=8752; UPDATE t2 SET c='forty-one thousand five hundred eighty-eight' WHERE a=8753; UPDATE t2 SET c='sixty thousand one hundred ninety-nine' WHERE a=8754; UPDATE t2 SET c='fifty-six thousand five hundred seventeen' WHERE a=8755; UPDATE t2 SET c='forty-nine thousand one hundred forty-two' WHERE a=8756; UPDATE t2 SET c='forty-five thousand two hundred fifty-four' WHERE a=8757; UPDATE t2 SET c='eighty thousand seven hundred eighty-four' WHERE a=8758; UPDATE t2 SET c='seventy-four thousand one hundred seventy-nine' WHERE a=8759; UPDATE t2 SET c='eighty-five thousand thirty-six' WHERE a=8760; UPDATE t2 SET c='sixty-seven thousand six hundred forty' WHERE a=8761; UPDATE t2 SET c='two thousand eight hundred twenty-five' WHERE a=8762; UPDATE t2 SET c='fifty-three thousand one hundred forty-nine' WHERE a=8763; UPDATE t2 SET c='fifty-four thousand three hundred seventy-five' WHERE a=8764; UPDATE t2 SET c='ninety-three thousand two hundred eight' WHERE a=8765; UPDATE t2 SET c='eighty thousand thirty-three' WHERE a=8766; UPDATE t2 SET c='twenty-one thousand seven hundred ninety-two' WHERE a=8767; UPDATE t2 SET c='ninety-nine thousand six hundred twelve' WHERE a=8768; UPDATE t2 SET c='ninety-two thousand seven hundred ninety-eight' WHERE a=8769; UPDATE t2 SET c='seventy-eight thousand six hundred twenty-one' WHERE a=8770; UPDATE t2 SET c='ninety-two thousand one hundred nine' WHERE a=8771; UPDATE t2 SET c='seventy-four thousand three hundred sixty-seven' WHERE a=8772; UPDATE t2 SET c='ninety-seven thousand nine hundred twenty-two' WHERE a=8773; UPDATE t2 SET c='two thousand seven hundred four' WHERE a=8774; UPDATE t2 SET c='forty-two thousand two hundred thirty' WHERE a=8775; UPDATE t2 SET c='ninety-seven thousand eleven' WHERE a=8776; UPDATE t2 SET c='eighty-one thousand eight hundred ninety-four' WHERE a=8777; UPDATE t2 SET c='fifty-two thousand seven hundred thirteen' WHERE a=8778; UPDATE t2 SET c='eighty-three thousand nine hundred sixty-three' WHERE a=8779; UPDATE t2 SET c='ninety-seven thousand five hundred fifty-three' WHERE a=8780; UPDATE t2 SET c='seventy-eight thousand three hundred ninety-six' WHERE a=8781; UPDATE t2 SET c='five thousand five hundred two' WHERE a=8782; UPDATE t2 SET c='twenty thousand seventy-five' WHERE a=8783; UPDATE t2 SET c='nine hundred eighty-seven' WHERE a=8784; UPDATE t2 SET c='ninety-five thousand nine hundred eighty-seven' WHERE a=8785; UPDATE t2 SET c='nineteen thousand nine hundred ten' WHERE a=8786; UPDATE t2 SET c='fifty-five thousand two hundred twenty' WHERE a=8787; UPDATE t2 SET c='nine thousand forty' WHERE a=8788; UPDATE t2 SET c='nineteen thousand seven hundred eighty-two' WHERE a=8789; UPDATE t2 SET c='forty-nine thousand three hundred eighty' WHERE a=8790; UPDATE t2 SET c='fifty-eight thousand four hundred sixty-nine' WHERE a=8791; UPDATE t2 SET c='thirty-two thousand fifty' WHERE a=8792; UPDATE t2 SET c='sixty-three thousand eight hundred one' WHERE a=8793; UPDATE t2 SET c='thirty-nine thousand eighty-nine' WHERE a=8794; UPDATE t2 SET c='sixteen thousand two hundred sixty-two' WHERE a=8795; UPDATE t2 SET c='seventy-one thousand four hundred' WHERE a=8796; UPDATE t2 SET c='eighty-two thousand seven hundred two' WHERE a=8797; UPDATE t2 SET c='twelve thousand eight hundred eighteen' WHERE a=8798; UPDATE t2 SET c='twenty-three thousand ninety-one' WHERE a=8799; UPDATE t2 SET c='two thousand one hundred twenty-nine' WHERE a=8800; UPDATE t2 SET c='seven thousand seven hundred seventy-two' WHERE a=8801; UPDATE t2 SET c='one thousand fifteen' WHERE a=8802; UPDATE t2 SET c='seven thousand six hundred fifty-two' WHERE a=8803; UPDATE t2 SET c='seventy-four thousand seven hundred seventy-two' WHERE a=8804; UPDATE t2 SET c='sixty thousand one hundred thirty-four' WHERE a=8805; UPDATE t2 SET c='ninety-eight thousand nine hundred thirty-one' WHERE a=8806; UPDATE t2 SET c='sixty-one thousand six hundred eighteen' WHERE a=8807; UPDATE t2 SET c='fifty-one thousand six hundred nine' WHERE a=8808; UPDATE t2 SET c='nine thousand seven hundred nine' WHERE a=8809; UPDATE t2 SET c='ninety-seven thousand two hundred thirty-eight' WHERE a=8810; UPDATE t2 SET c='sixty-seven thousand ninety-one' WHERE a=8811; UPDATE t2 SET c='sixty-three thousand five hundred seven' WHERE a=8812; UPDATE t2 SET c='seventy-four thousand three hundred twenty-six' WHERE a=8813; UPDATE t2 SET c='ninety-seven thousand eight hundred ninety-seven' WHERE a=8814; UPDATE t2 SET c='ninety-one thousand nine hundred six' WHERE a=8815; UPDATE t2 SET c='twenty-three thousand seven hundred eighty-eight' WHERE a=8816; UPDATE t2 SET c='four thousand eight hundred forty-nine' WHERE a=8817; UPDATE t2 SET c='ninety-seven thousand eighteen' WHERE a=8818; UPDATE t2 SET c='seventy-one thousand nine hundred three' WHERE a=8819; UPDATE t2 SET c='thirty-two thousand nine hundred fifty-nine' WHERE a=8820; UPDATE t2 SET c='ten thousand four hundred fifty-four' WHERE a=8821; UPDATE t2 SET c='fifty-seven thousand eight hundred sixty-one' WHERE a=8822; UPDATE t2 SET c='ninety-three thousand two hundred forty-four' WHERE a=8823; UPDATE t2 SET c='thirty-seven thousand eight hundred seventy-three' WHERE a=8824; UPDATE t2 SET c='seventy thousand seven hundred seventy-five' WHERE a=8825; UPDATE t2 SET c='ninety-one thousand six hundred eighty-four' WHERE a=8826; UPDATE t2 SET c='eighteen thousand seven hundred twelve' WHERE a=8827; UPDATE t2 SET c='seventy-eight thousand five hundred eleven' WHERE a=8828; UPDATE t2 SET c='sixteen thousand three hundred seventy-four' WHERE a=8829; UPDATE t2 SET c='seventy-two thousand nine hundred six' WHERE a=8830; UPDATE t2 SET c='eighty-one thousand eight hundred eighty-six' WHERE a=8831; UPDATE t2 SET c='twenty-four thousand three hundred twenty-six' WHERE a=8832; UPDATE t2 SET c='seventy-nine thousand three hundred sixty' WHERE a=8833; UPDATE t2 SET c='eighty-four thousand two hundred ninety-one' WHERE a=8834; UPDATE t2 SET c='fifty-six thousand one hundred nineteen' WHERE a=8835; UPDATE t2 SET c='ninety-one thousand three hundred twenty-six' WHERE a=8836; UPDATE t2 SET c='seventeen thousand four hundred thirty-six' WHERE a=8837; UPDATE t2 SET c='eleven thousand sixty' WHERE a=8838; UPDATE t2 SET c='sixty thousand three hundred eighteen' WHERE a=8839; UPDATE t2 SET c='ninety-six thousand nine hundred seven' WHERE a=8840; UPDATE t2 SET c='eighty-six thousand one hundred fifty-five' WHERE a=8841; UPDATE t2 SET c='twenty thousand eight hundred three' WHERE a=8842; UPDATE t2 SET c='ninety-seven thousand eight hundred thirty-one' WHERE a=8843; UPDATE t2 SET c='thirty-six thousand one hundred ten' WHERE a=8844; UPDATE t2 SET c='forty-four thousand seven hundred five' WHERE a=8845; UPDATE t2 SET c='thirty thousand three hundred six' WHERE a=8846; UPDATE t2 SET c='ninety-three thousand twenty-nine' WHERE a=8847; UPDATE t2 SET c='eighty-four thousand eight hundred' WHERE a=8848; UPDATE t2 SET c='eighteen thousand nine hundred eighty-eight' WHERE a=8849; UPDATE t2 SET c='forty-nine thousand four hundred twenty-nine' WHERE a=8850; UPDATE t2 SET c='seventy-eight thousand nine hundred fifty-six' WHERE a=8851; UPDATE t2 SET c='thirteen thousand two hundred sixty-four' WHERE a=8852; UPDATE t2 SET c='fifty-one thousand three hundred seventy-eight' WHERE a=8853; UPDATE t2 SET c='fifty-five thousand seven hundred twenty-eight' WHERE a=8854; UPDATE t2 SET c='two thousand four hundred thirty-eight' WHERE a=8855; UPDATE t2 SET c='six thousand one hundred thirty-three' WHERE a=8856; UPDATE t2 SET c='forty thousand nine hundred ninety' WHERE a=8857; UPDATE t2 SET c='fifty-five thousand three hundred five' WHERE a=8858; UPDATE t2 SET c='twenty-eight thousand two hundred thirty' WHERE a=8859; UPDATE t2 SET c='sixty-eight thousand five hundred twenty-one' WHERE a=8860; UPDATE t2 SET c='sixteen thousand three hundred forty-seven' WHERE a=8861; UPDATE t2 SET c='eleven thousand two hundred seventy-six' WHERE a=8862; UPDATE t2 SET c='twenty-one thousand one hundred fifty-two' WHERE a=8863; UPDATE t2 SET c='eight thousand seven hundred thirty-eight' WHERE a=8864; UPDATE t2 SET c='sixty-eight thousand one hundred seventy-nine' WHERE a=8865; UPDATE t2 SET c='sixteen thousand forty-seven' WHERE a=8866; UPDATE t2 SET c='eleven thousand nine hundred eighty-five' WHERE a=8867; UPDATE t2 SET c='ninety-three thousand one hundred two' WHERE a=8868; UPDATE t2 SET c='twenty-seven thousand one hundred eighty-four' WHERE a=8869; UPDATE t2 SET c='seventy-nine thousand eight hundred two' WHERE a=8870; UPDATE t2 SET c='three thousand six hundred thirteen' WHERE a=8871; UPDATE t2 SET c='ninety-eight thousand nine hundred twenty-eight' WHERE a=8872; UPDATE t2 SET c='fifty-seven thousand two hundred eighty-nine' WHERE a=8873; UPDATE t2 SET c='seven thousand eight hundred nineteen' WHERE a=8874; UPDATE t2 SET c='thirty-one thousand nine hundred eighty-two' WHERE a=8875; UPDATE t2 SET c='nineteen thousand three hundred fifty-seven' WHERE a=8876; UPDATE t2 SET c='twelve thousand eight hundred eighty-four' WHERE a=8877; UPDATE t2 SET c='eighty-four thousand four hundred thirty-three' WHERE a=8878; UPDATE t2 SET c='sixty-five thousand nine hundred sixteen' WHERE a=8879; UPDATE t2 SET c='ninety-seven thousand nine hundred forty-one' WHERE a=8880; UPDATE t2 SET c='seventy-nine thousand eight hundred seventy-four' WHERE a=8881; UPDATE t2 SET c='fifty-nine thousand eight hundred ninety-five' WHERE a=8882; UPDATE t2 SET c='ninety-eight thousand four hundred twenty' WHERE a=8883; UPDATE t2 SET c='fifty-two thousand six hundred ninety-two' WHERE a=8884; UPDATE t2 SET c='fifty-one thousand eight hundred five' WHERE a=8885; UPDATE t2 SET c='thirty-two thousand eighty-two' WHERE a=8886; UPDATE t2 SET c='forty-nine thousand three hundred sixty-one' WHERE a=8887; UPDATE t2 SET c='twenty-eight thousand seven hundred forty-six' WHERE a=8888; UPDATE t2 SET c='forty-two thousand eighty-three' WHERE a=8889; UPDATE t2 SET c='seventeen thousand six hundred four' WHERE a=8890; UPDATE t2 SET c='ninety-five thousand one hundred seventy-four' WHERE a=8891; UPDATE t2 SET c='eighty-eight thousand nine hundred forty-six' WHERE a=8892; UPDATE t2 SET c='twenty-four thousand two hundred sixty-five' WHERE a=8893; UPDATE t2 SET c='nineteen thousand four hundred sixty-eight' WHERE a=8894; UPDATE t2 SET c='eighty-six thousand six hundred fifty-nine' WHERE a=8895; UPDATE t2 SET c='four thousand nine hundred thirty-one' WHERE a=8896; UPDATE t2 SET c='ten thousand five hundred seventy-one' WHERE a=8897; UPDATE t2 SET c='sixty-five thousand six hundred seventeen' WHERE a=8898; UPDATE t2 SET c='forty-two thousand eight hundred five' WHERE a=8899; UPDATE t2 SET c='ninety-five thousand six hundred eleven' WHERE a=8900; UPDATE t2 SET c='thirty-two thousand four hundred seventy-two' WHERE a=8901; UPDATE t2 SET c='six hundred seventy-five' WHERE a=8902; UPDATE t2 SET c='ninety-eight thousand nine hundred four' WHERE a=8903; UPDATE t2 SET c='eighty-five thousand nine hundred one' WHERE a=8904; UPDATE t2 SET c='forty thousand five hundred seventy-eight' WHERE a=8905; UPDATE t2 SET c='thirty-one thousand seven hundred ninety-seven' WHERE a=8906; UPDATE t2 SET c='twenty-eight thousand one hundred eighty-five' WHERE a=8907; UPDATE t2 SET c='seventy-seven thousand nine hundred forty-four' WHERE a=8908; UPDATE t2 SET c='seventeen thousand five hundred eighty-one' WHERE a=8909; UPDATE t2 SET c='six thousand two hundred sixty' WHERE a=8910; UPDATE t2 SET c='ninety-four thousand one hundred eighty-one' WHERE a=8911; UPDATE t2 SET c='twenty thousand six hundred thirty-three' WHERE a=8912; UPDATE t2 SET c='ninety-six thousand nine hundred twenty' WHERE a=8913; UPDATE t2 SET c='sixty-four thousand nine hundred thirty-five' WHERE a=8914; UPDATE t2 SET c='thirty-six thousand seventy-seven' WHERE a=8915; UPDATE t2 SET c='eighty-four thousand six hundred twenty-five' WHERE a=8916; UPDATE t2 SET c='fifty thousand eight hundred eighty' WHERE a=8917; UPDATE t2 SET c='twenty thousand seventy-five' WHERE a=8918; UPDATE t2 SET c='ninety-five thousand nine hundred eighty-two' WHERE a=8919; UPDATE t2 SET c='ninety-eight thousand one hundred ninety-four' WHERE a=8920; UPDATE t2 SET c='forty-one thousand three hundred sixty-seven' WHERE a=8921; UPDATE t2 SET c='sixty-five thousand one hundred fifty-four' WHERE a=8922; UPDATE t2 SET c='fifty-five thousand two hundred sixty-nine' WHERE a=8923; UPDATE t2 SET c='sixty-seven thousand one hundred seventy-two' WHERE a=8924; UPDATE t2 SET c='sixty-seven thousand sixty-seven' WHERE a=8925; UPDATE t2 SET c='fifty-nine thousand nine hundred sixty-four' WHERE a=8926; UPDATE t2 SET c='fifty thousand one hundred forty-five' WHERE a=8927; UPDATE t2 SET c='eighty-five thousand nine hundred eleven' WHERE a=8928; UPDATE t2 SET c='sixty-seven thousand one hundred twenty-eight' WHERE a=8929; UPDATE t2 SET c='eleven thousand one hundred fifty-four' WHERE a=8930; UPDATE t2 SET c='fifteen thousand five hundred seventy-one' WHERE a=8931; UPDATE t2 SET c='forty-six thousand six hundred two' WHERE a=8932; UPDATE t2 SET c='eighteen thousand five hundred ninety-seven' WHERE a=8933; UPDATE t2 SET c='twenty-eight thousand nine hundred twenty-seven' WHERE a=8934; UPDATE t2 SET c='sixty-one thousand three hundred forty-one' WHERE a=8935; UPDATE t2 SET c='fifty-three thousand eight hundred fifty-three' WHERE a=8936; UPDATE t2 SET c='ninety thousand two hundred twenty-six' WHERE a=8937; UPDATE t2 SET c='thirty-two thousand seven hundred fifty-two' WHERE a=8938; UPDATE t2 SET c='sixty-one thousand sixty-five' WHERE a=8939; UPDATE t2 SET c='one hundred sixty-six' WHERE a=8940; UPDATE t2 SET c='sixty-eight thousand three hundred seventy-two' WHERE a=8941; UPDATE t2 SET c='twenty-five thousand eight hundred four' WHERE a=8942; UPDATE t2 SET c='fifty-nine thousand nine hundred forty-four' WHERE a=8943; UPDATE t2 SET c='eighty-five thousand seventy-seven' WHERE a=8944; UPDATE t2 SET c='thirty-three thousand one hundred forty-two' WHERE a=8945; UPDATE t2 SET c='sixty-four thousand nine hundred seventy-one' WHERE a=8946; UPDATE t2 SET c='thirty-five thousand five hundred twelve' WHERE a=8947; UPDATE t2 SET c='ninety-three thousand three hundred twenty-seven' WHERE a=8948; UPDATE t2 SET c='eighty-six thousand four hundred eighteen' WHERE a=8949; UPDATE t2 SET c='thirty-eight thousand four hundred ninety-two' WHERE a=8950; UPDATE t2 SET c='eighty-three thousand seven hundred sixty-seven' WHERE a=8951; UPDATE t2 SET c='sixteen thousand two hundred forty-four' WHERE a=8952; UPDATE t2 SET c='eighty-one thousand eight hundred sixty-three' WHERE a=8953; UPDATE t2 SET c='ninety-seven thousand three hundred eighty' WHERE a=8954; UPDATE t2 SET c='twenty-one thousand six hundred fifty-seven' WHERE a=8955; UPDATE t2 SET c='seventy-seven thousand five hundred thirty-three' WHERE a=8956; UPDATE t2 SET c='thirty thousand five hundred seventy-five' WHERE a=8957; UPDATE t2 SET c='forty-one thousand one hundred three' WHERE a=8958; UPDATE t2 SET c='seventy-seven thousand nine hundred eighty-three' WHERE a=8959; UPDATE t2 SET c='thirty-five thousand eight hundred ninety-eight' WHERE a=8960; UPDATE t2 SET c='five thousand three hundred ninety-nine' WHERE a=8961; UPDATE t2 SET c='fifty-six thousand one hundred seventy-two' WHERE a=8962; UPDATE t2 SET c='eleven thousand two hundred thirteen' WHERE a=8963; UPDATE t2 SET c='thirteen thousand twenty-nine' WHERE a=8964; UPDATE t2 SET c='eighty-five thousand nine hundred fifty-three' WHERE a=8965; UPDATE t2 SET c='ninety-four thousand seven hundred seventy-eight' WHERE a=8966; UPDATE t2 SET c='twenty-nine thousand seven hundred twenty-six' WHERE a=8967; UPDATE t2 SET c='twenty-three thousand six hundred ninety-six' WHERE a=8968; UPDATE t2 SET c='thirty-two thousand two hundred seventy' WHERE a=8969; UPDATE t2 SET c='fifty-two thousand two hundred thirty-seven' WHERE a=8970; UPDATE t2 SET c='ten thousand forty-five' WHERE a=8971; UPDATE t2 SET c='thirty-nine thousand six hundred ninety-six' WHERE a=8972; UPDATE t2 SET c='fifty-eight thousand fifty-nine' WHERE a=8973; UPDATE t2 SET c='eighty-nine thousand two hundred two' WHERE a=8974; UPDATE t2 SET c='seventy-one thousand six hundred ninety-one' WHERE a=8975; UPDATE t2 SET c='eleven thousand nine hundred seventy-five' WHERE a=8976; UPDATE t2 SET c='seventy thousand three hundred ninety-six' WHERE a=8977; UPDATE t2 SET c='seventy-five thousand seven hundred twelve' WHERE a=8978; UPDATE t2 SET c='forty-seven thousand four hundred five' WHERE a=8979; UPDATE t2 SET c='twenty-six thousand eight hundred fifty' WHERE a=8980; UPDATE t2 SET c='twenty-two thousand five hundred four' WHERE a=8981; UPDATE t2 SET c='two thousand seven hundred ninety-one' WHERE a=8982; UPDATE t2 SET c='twenty thousand seven hundred sixty-four' WHERE a=8983; UPDATE t2 SET c='forty-three thousand seven hundred eight' WHERE a=8984; UPDATE t2 SET c='twenty-two thousand five hundred forty-eight' WHERE a=8985; UPDATE t2 SET c='twenty thousand four hundred fourteen' WHERE a=8986; UPDATE t2 SET c='ninety-two thousand eight hundred thirty-seven' WHERE a=8987; UPDATE t2 SET c='thirteen thousand three hundred fourteen' WHERE a=8988; UPDATE t2 SET c='twenty-three thousand eight hundred four' WHERE a=8989; UPDATE t2 SET c='twenty-four thousand one hundred forty-nine' WHERE a=8990; UPDATE t2 SET c='seventy-one thousand thirty-three' WHERE a=8991; UPDATE t2 SET c='sixty-nine thousand eight hundred twenty-six' WHERE a=8992; UPDATE t2 SET c='fifteen thousand one hundred seventy-nine' WHERE a=8993; UPDATE t2 SET c='sixteen thousand one hundred nine' WHERE a=8994; UPDATE t2 SET c='ninety-one thousand seven hundred thirteen' WHERE a=8995; UPDATE t2 SET c='fifty-three thousand nine hundred sixty-nine' WHERE a=8996; UPDATE t2 SET c='nine thousand two hundred forty-two' WHERE a=8997; UPDATE t2 SET c='thirteen thousand seven hundred sixteen' WHERE a=8998; UPDATE t2 SET c='thirty-seven thousand one hundred twenty-three' WHERE a=8999; UPDATE t2 SET c='three thousand two hundred eighty-eight' WHERE a=9000; UPDATE t2 SET c='seventy thousand two hundred forty-five' WHERE a=9001; UPDATE t2 SET c='forty-eight thousand two hundred eighty-eight' WHERE a=9002; UPDATE t2 SET c='twenty-nine thousand six hundred fifty-four' WHERE a=9003; UPDATE t2 SET c='forty-seven thousand six hundred eighty-seven' WHERE a=9004; UPDATE t2 SET c='thirty-nine thousand one hundred fifty-six' WHERE a=9005; UPDATE t2 SET c='one thousand two hundred ninety-five' WHERE a=9006; UPDATE t2 SET c='eighty-four thousand four hundred fifty' WHERE a=9007; UPDATE t2 SET c='eighty-six thousand three hundred thirty-one' WHERE a=9008; UPDATE t2 SET c='eighty-seven thousand sixty' WHERE a=9009; UPDATE t2 SET c='sixty-five thousand eight hundred sixteen' WHERE a=9010; UPDATE t2 SET c='twenty-six thousand one hundred forty-five' WHERE a=9011; UPDATE t2 SET c='fifty-four thousand fifty-three' WHERE a=9012; UPDATE t2 SET c='ninety-eight thousand eight hundred sixteen' WHERE a=9013; UPDATE t2 SET c='twenty-one thousand ninety-eight' WHERE a=9014; UPDATE t2 SET c='sixty-five thousand two hundred ninety-four' WHERE a=9015; UPDATE t2 SET c='forty-two thousand six hundred forty' WHERE a=9016; UPDATE t2 SET c='seventy-four thousand four hundred ninety-six' WHERE a=9017; UPDATE t2 SET c='twenty-eight thousand three hundred ninety-one' WHERE a=9018; UPDATE t2 SET c='eighty-nine thousand five hundred eighty-eight' WHERE a=9019; UPDATE t2 SET c='eighty-eight thousand five hundred eighty-five' WHERE a=9020; UPDATE t2 SET c='fifty-two thousand seven hundred fifty-six' WHERE a=9021; UPDATE t2 SET c='eighty-four thousand eighty-seven' WHERE a=9022; UPDATE t2 SET c='fifty-three thousand eight hundred seventy-five' WHERE a=9023; UPDATE t2 SET c='fourteen thousand seven hundred ninety' WHERE a=9024; UPDATE t2 SET c='fifty-eight thousand five hundred sixty-two' WHERE a=9025; UPDATE t2 SET c='eighty-three thousand three hundred twenty-one' WHERE a=9026; UPDATE t2 SET c='ninety-two thousand seven hundred six' WHERE a=9027; UPDATE t2 SET c='seventy-seven thousand two hundred twenty-five' WHERE a=9028; UPDATE t2 SET c='sixteen thousand seven hundred twenty-four' WHERE a=9029; UPDATE t2 SET c='fifty-four thousand sixty-six' WHERE a=9030; UPDATE t2 SET c='eleven thousand ninety-two' WHERE a=9031; UPDATE t2 SET c='fifty-seven thousand one hundred sixty-eight' WHERE a=9032; UPDATE t2 SET c='eighty-one thousand twenty-one' WHERE a=9033; UPDATE t2 SET c='thirty-five thousand six hundred seventy-five' WHERE a=9034; UPDATE t2 SET c='seventy-four thousand three hundred eighty-three' WHERE a=9035; UPDATE t2 SET c='twenty-seven thousand three' WHERE a=9036; UPDATE t2 SET c='thirty-two thousand two hundred ten' WHERE a=9037; UPDATE t2 SET c='thirty-eight thousand eight hundred sixty-two' WHERE a=9038; UPDATE t2 SET c='eight thousand two hundred seventy-six' WHERE a=9039; UPDATE t2 SET c='seventy-six thousand seven hundred thirty' WHERE a=9040; UPDATE t2 SET c='two thousand seven hundred sixty-five' WHERE a=9041; UPDATE t2 SET c='thirty-one thousand ninety-six' WHERE a=9042; UPDATE t2 SET c='thirty-three thousand five hundred fifty-one' WHERE a=9043; UPDATE t2 SET c='ninety-six thousand three hundred eighty-three' WHERE a=9044; UPDATE t2 SET c='sixty-three thousand two hundred forty-one' WHERE a=9045; UPDATE t2 SET c='two thousand five hundred forty-six' WHERE a=9046; UPDATE t2 SET c='two thousand five hundred seventy' WHERE a=9047; UPDATE t2 SET c='fifty-three thousand five hundred forty-seven' WHERE a=9048; UPDATE t2 SET c='seventy-six thousand eight hundred fifteen' WHERE a=9049; UPDATE t2 SET c='eighty-five thousand sixty-nine' WHERE a=9050; UPDATE t2 SET c='seventy-one thousand seven hundred sixty-four' WHERE a=9051; UPDATE t2 SET c='forty-six thousand four hundred thirty-six' WHERE a=9052; UPDATE t2 SET c='one thousand one hundred twenty-three' WHERE a=9053; UPDATE t2 SET c='fifteen thousand seven hundred ninety-eight' WHERE a=9054; UPDATE t2 SET c='twelve thousand one hundred five' WHERE a=9055; UPDATE t2 SET c='sixty-three thousand two hundred thirty-one' WHERE a=9056; UPDATE t2 SET c='sixty-six thousand seven hundred twenty-two' WHERE a=9057; UPDATE t2 SET c='twenty-one thousand ninety-two' WHERE a=9058; UPDATE t2 SET c='fifty-three thousand one hundred forty-four' WHERE a=9059; UPDATE t2 SET c='thirty-two thousand one hundred sixty' WHERE a=9060; UPDATE t2 SET c='sixty-three thousand four hundred twenty-eight' WHERE a=9061; UPDATE t2 SET c='two thousand nine hundred seventy' WHERE a=9062; UPDATE t2 SET c='eighty-two thousand two hundred seventy-five' WHERE a=9063; UPDATE t2 SET c='fifty-seven thousand two hundred four' WHERE a=9064; UPDATE t2 SET c='thirty thousand seven hundred ninety-two' WHERE a=9065; UPDATE t2 SET c='eighty-three thousand seven hundred fourteen' WHERE a=9066; UPDATE t2 SET c='twenty-seven thousand eight hundred forty-two' WHERE a=9067; UPDATE t2 SET c='seventy-five thousand nine hundred sixty-six' WHERE a=9068; UPDATE t2 SET c='forty-eight thousand five hundred ninety-two' WHERE a=9069; UPDATE t2 SET c='four thousand eight hundred twenty-seven' WHERE a=9070; UPDATE t2 SET c='forty-two thousand one hundred thirty-six' WHERE a=9071; UPDATE t2 SET c='ninety-five thousand nine hundred forty-seven' WHERE a=9072; UPDATE t2 SET c='sixty-one thousand one hundred sixty-one' WHERE a=9073; UPDATE t2 SET c='sixty-three thousand six hundred ninety-seven' WHERE a=9074; UPDATE t2 SET c='seventy-six thousand nine hundred fifty-four' WHERE a=9075; UPDATE t2 SET c='fifty-three thousand two hundred ninety-four' WHERE a=9076; UPDATE t2 SET c='seventeen thousand eighty-three' WHERE a=9077; UPDATE t2 SET c='twenty-one thousand four hundred ten' WHERE a=9078; UPDATE t2 SET c='forty-seven thousand six hundred seventy-eight' WHERE a=9079; UPDATE t2 SET c='eighty-three thousand four hundred nine' WHERE a=9080; UPDATE t2 SET c='fifty-seven thousand nine hundred twenty-two' WHERE a=9081; UPDATE t2 SET c='ninety-six thousand nine hundred twenty-seven' WHERE a=9082; UPDATE t2 SET c='thirty-five thousand two hundred ninety' WHERE a=9083; UPDATE t2 SET c='twelve thousand seventy-two' WHERE a=9084; UPDATE t2 SET c='fifty-two thousand five hundred nine' WHERE a=9085; UPDATE t2 SET c='thirty-seven thousand twenty-three' WHERE a=9086; UPDATE t2 SET c='fifty-three thousand one hundred thirty-nine' WHERE a=9087; UPDATE t2 SET c='fifty-four thousand five hundred sixteen' WHERE a=9088; UPDATE t2 SET c='fifty-five thousand nine hundred forty' WHERE a=9089; UPDATE t2 SET c='thirty thousand eighty-one' WHERE a=9090; UPDATE t2 SET c='four hundred forty-nine' WHERE a=9091; UPDATE t2 SET c='seventy-two thousand seven hundred thirty' WHERE a=9092; UPDATE t2 SET c='two thousand three hundred eighty-one' WHERE a=9093; UPDATE t2 SET c='forty-six thousand one hundred eighty-six' WHERE a=9094; UPDATE t2 SET c='eleven thousand five hundred eighteen' WHERE a=9095; UPDATE t2 SET c='twenty-one thousand two hundred eighty-nine' WHERE a=9096; UPDATE t2 SET c='thirty thousand seven hundred forty-five' WHERE a=9097; UPDATE t2 SET c='sixty-seven thousand six hundred twenty-seven' WHERE a=9098; UPDATE t2 SET c='seventy thousand nine hundred twenty-five' WHERE a=9099; UPDATE t2 SET c='twelve thousand six hundred forty-six' WHERE a=9100; UPDATE t2 SET c='seventy-five thousand five hundred eight' WHERE a=9101; UPDATE t2 SET c='eighteen thousand four hundred one' WHERE a=9102; UPDATE t2 SET c='ninety-nine thousand three hundred ninety-four' WHERE a=9103; UPDATE t2 SET c='forty-eight thousand three hundred thirty-five' WHERE a=9104; UPDATE t2 SET c='seventy-six thousand four hundred twenty-six' WHERE a=9105; UPDATE t2 SET c='twenty-five thousand four hundred eighty' WHERE a=9106; UPDATE t2 SET c='fifty thousand two hundred eighty-five' WHERE a=9107; UPDATE t2 SET c='fifty-five thousand nine hundred twenty-five' WHERE a=9108; UPDATE t2 SET c='sixty-six thousand one hundred ninety' WHERE a=9109; UPDATE t2 SET c='four thousand five hundred fifty-three' WHERE a=9110; UPDATE t2 SET c='twenty-four thousand one hundred forty-four' WHERE a=9111; UPDATE t2 SET c='fifty-two thousand one hundred two' WHERE a=9112; UPDATE t2 SET c='fifty-eight thousand two hundred ninety-eight' WHERE a=9113; UPDATE t2 SET c='thirteen thousand six hundred forty' WHERE a=9114; UPDATE t2 SET c='ninety thousand five hundred thirty-one' WHERE a=9115; UPDATE t2 SET c='twenty-eight thousand six' WHERE a=9116; UPDATE t2 SET c='eighty thousand four hundred thirty-six' WHERE a=9117; UPDATE t2 SET c='seventy-six thousand six hundred eighty-six' WHERE a=9118; UPDATE t2 SET c='eighteen thousand nine hundred thirty-two' WHERE a=9119; UPDATE t2 SET c='forty-nine thousand sixty-nine' WHERE a=9120; UPDATE t2 SET c='fifty-five thousand five hundred fifty-eight' WHERE a=9121; UPDATE t2 SET c='ninety-five thousand two hundred fifty-six' WHERE a=9122; UPDATE t2 SET c='thirty-two thousand eight hundred ninety-six' WHERE a=9123; UPDATE t2 SET c='twenty-five thousand eight hundred sixty' WHERE a=9124; UPDATE t2 SET c='fourteen thousand nine hundred ninety-eight' WHERE a=9125; UPDATE t2 SET c='eighty-two thousand two hundred ninety-seven' WHERE a=9126; UPDATE t2 SET c='fifty-two thousand seven hundred thirty-six' WHERE a=9127; UPDATE t2 SET c='seventy-nine thousand eight hundred seventy-seven' WHERE a=9128; UPDATE t2 SET c='forty-nine thousand one hundred eighteen' WHERE a=9129; UPDATE t2 SET c='forty-five thousand ninety-eight' WHERE a=9130; UPDATE t2 SET c='seventeen thousand six hundred fifty-six' WHERE a=9131; UPDATE t2 SET c='twenty-five thousand nine hundred twenty-five' WHERE a=9132; UPDATE t2 SET c='fifty-seven thousand three hundred fifty-six' WHERE a=9133; UPDATE t2 SET c='eighty-eight thousand six hundred forty-six' WHERE a=9134; UPDATE t2 SET c='thirty-five thousand one hundred eighty-four' WHERE a=9135; UPDATE t2 SET c='twenty-four thousand two hundred sixty-eight' WHERE a=9136; UPDATE t2 SET c='eighty thousand seven hundred one' WHERE a=9137; UPDATE t2 SET c='ten thousand two hundred ninety' WHERE a=9138; UPDATE t2 SET c='ninety-two thousand one hundred seventy-five' WHERE a=9139; UPDATE t2 SET c='ninety-six thousand eight hundred eighty-six' WHERE a=9140; UPDATE t2 SET c='eighty-one thousand seventy-six' WHERE a=9141; UPDATE t2 SET c='fifty-nine thousand four hundred fifty' WHERE a=9142; UPDATE t2 SET c='twenty-nine thousand five hundred forty-two' WHERE a=9143; UPDATE t2 SET c='eighty-four thousand eight hundred forty-nine' WHERE a=9144; UPDATE t2 SET c='thirty-four thousand five hundred seventy-eight' WHERE a=9145; UPDATE t2 SET c='nine thousand seven hundred twenty-two' WHERE a=9146; UPDATE t2 SET c='sixty-one thousand three hundred sixty-three' WHERE a=9147; UPDATE t2 SET c='forty-six thousand eight hundred forty-five' WHERE a=9148; UPDATE t2 SET c='ten thousand three hundred seventy-nine' WHERE a=9149; UPDATE t2 SET c='eighty-five thousand sixty' WHERE a=9150; UPDATE t2 SET c='eighty-three thousand three hundred sixty-five' WHERE a=9151; UPDATE t2 SET c='seven thousand two hundred ninety-eight' WHERE a=9152; UPDATE t2 SET c='twenty-four thousand seven hundred fourteen' WHERE a=9153; UPDATE t2 SET c='twenty-one thousand nine hundred twenty-nine' WHERE a=9154; UPDATE t2 SET c='ninety-seven thousand nine hundred seven' WHERE a=9155; UPDATE t2 SET c='sixteen thousand six hundred forty-seven' WHERE a=9156; UPDATE t2 SET c='fifty-six thousand nine hundred fifty-two' WHERE a=9157; UPDATE t2 SET c='ninety-four thousand seven hundred sixty-four' WHERE a=9158; UPDATE t2 SET c='fourteen thousand seven hundred twenty-two' WHERE a=9159; UPDATE t2 SET c='forty-six thousand six hundred twenty-two' WHERE a=9160; UPDATE t2 SET c='twenty-six thousand one hundred ninety-five' WHERE a=9161; UPDATE t2 SET c='seventy-three thousand fifty-six' WHERE a=9162; UPDATE t2 SET c='seventy-five thousand seven hundred sixty-four' WHERE a=9163; UPDATE t2 SET c='fifty-five thousand six hundred fifty' WHERE a=9164; UPDATE t2 SET c='seven thousand two hundred fifty' WHERE a=9165; UPDATE t2 SET c='eight thousand three hundred eighty-one' WHERE a=9166; UPDATE t2 SET c='forty-three thousand five hundred sixteen' WHERE a=9167; UPDATE t2 SET c='sixty-two thousand five hundred twenty-two' WHERE a=9168; UPDATE t2 SET c='eighty-eight thousand nine hundred' WHERE a=9169; UPDATE t2 SET c='ninety-nine thousand three hundred forty-three' WHERE a=9170; UPDATE t2 SET c='sixty-one thousand three hundred nine' WHERE a=9171; UPDATE t2 SET c='seventy-nine thousand nine hundred sixty-eight' WHERE a=9172; UPDATE t2 SET c='sixty-one thousand seven hundred seventeen' WHERE a=9173; UPDATE t2 SET c='sixty-five thousand two hundred eighty-five' WHERE a=9174; UPDATE t2 SET c='five thousand three hundred forty-four' WHERE a=9175; UPDATE t2 SET c='twelve thousand five hundred ninety-one' WHERE a=9176; UPDATE t2 SET c='fifty-nine thousand seven hundred twenty-six' WHERE a=9177; UPDATE t2 SET c='five thousand nine hundred eleven' WHERE a=9178; UPDATE t2 SET c='seventy-four thousand seven hundred fifty-eight' WHERE a=9179; UPDATE t2 SET c='sixty-nine thousand ninety-six' WHERE a=9180; UPDATE t2 SET c='two thousand six hundred eighty-one' WHERE a=9181; UPDATE t2 SET c='sixty-seven thousand seven hundred thirty-eight' WHERE a=9182; UPDATE t2 SET c='one thousand seven hundred seventy-eight' WHERE a=9183; UPDATE t2 SET c='ninety-eight thousand seven hundred ten' WHERE a=9184; UPDATE t2 SET c='sixty thousand seven hundred sixty-three' WHERE a=9185; UPDATE t2 SET c='forty-five thousand two hundred ninety-four' WHERE a=9186; UPDATE t2 SET c='eighty-three thousand five hundred seventy-five' WHERE a=9187; UPDATE t2 SET c='fifty thousand seven hundred forty-six' WHERE a=9188; UPDATE t2 SET c='seven thousand seven hundred eighty-five' WHERE a=9189; UPDATE t2 SET c='ninety-one thousand fifty-seven' WHERE a=9190; UPDATE t2 SET c='thirty-three thousand two hundred forty-one' WHERE a=9191; UPDATE t2 SET c='eighty-one thousand one hundred thirty-four' WHERE a=9192; UPDATE t2 SET c='twenty-three thousand two hundred sixty-one' WHERE a=9193; UPDATE t2 SET c='seventy-six thousand one hundred six' WHERE a=9194; UPDATE t2 SET c='seventy thousand eight hundred forty-three' WHERE a=9195; UPDATE t2 SET c='six thousand two hundred eighty' WHERE a=9196; UPDATE t2 SET c='seven thousand three hundred ten' WHERE a=9197; UPDATE t2 SET c='sixteen thousand six hundred twenty-one' WHERE a=9198; UPDATE t2 SET c='thirty thousand twenty-nine' WHERE a=9199; UPDATE t2 SET c='two thousand twenty-three' WHERE a=9200; UPDATE t2 SET c='fifty thousand six hundred forty-three' WHERE a=9201; UPDATE t2 SET c='sixty-four thousand one hundred forty-three' WHERE a=9202; UPDATE t2 SET c='sixty-six thousand one hundred forty-one' WHERE a=9203; UPDATE t2 SET c='fifty-one thousand four hundred thirty-four' WHERE a=9204; UPDATE t2 SET c='ninety-nine thousand nine hundred forty' WHERE a=9205; UPDATE t2 SET c='sixty-four thousand two hundred sixty' WHERE a=9206; UPDATE t2 SET c='eight thousand two hundred six' WHERE a=9207; UPDATE t2 SET c='fifty-four thousand forty-one' WHERE a=9208; UPDATE t2 SET c='ninety-two thousand one hundred forty-one' WHERE a=9209; UPDATE t2 SET c='sixty-three thousand seven hundred ninety-eight' WHERE a=9210; UPDATE t2 SET c='twenty-three thousand four hundred eighty-two' WHERE a=9211; UPDATE t2 SET c='twenty-one thousand six hundred five' WHERE a=9212; UPDATE t2 SET c='forty-five thousand two hundred fifty-three' WHERE a=9213; UPDATE t2 SET c='seventy-four thousand two hundred twenty-one' WHERE a=9214; UPDATE t2 SET c='seventy-two thousand six hundred thirty-nine' WHERE a=9215; UPDATE t2 SET c='ninety-two thousand four hundred ninety-five' WHERE a=9216; UPDATE t2 SET c='fifty-five thousand nine hundred nineteen' WHERE a=9217; UPDATE t2 SET c='sixty-four thousand five hundred sixty-six' WHERE a=9218; UPDATE t2 SET c='forty-six thousand five hundred twenty-one' WHERE a=9219; UPDATE t2 SET c='thirty thousand seven hundred forty-two' WHERE a=9220; UPDATE t2 SET c='eleven thousand six hundred forty-four' WHERE a=9221; UPDATE t2 SET c='thirty-eight thousand six hundred twenty-nine' WHERE a=9222; UPDATE t2 SET c='eighty-seven thousand eight hundred sixty-two' WHERE a=9223; UPDATE t2 SET c='forty-nine thousand four hundred thirty-five' WHERE a=9224; UPDATE t2 SET c='eighty-six thousand one hundred thirty-three' WHERE a=9225; UPDATE t2 SET c='fifty-eight thousand eight hundred ninety' WHERE a=9226; UPDATE t2 SET c='forty thousand four hundred thirty-four' WHERE a=9227; UPDATE t2 SET c='forty-two thousand four hundred one' WHERE a=9228; UPDATE t2 SET c='sixty-nine thousand seven hundred fourteen' WHERE a=9229; UPDATE t2 SET c='ninety-nine thousand five hundred fifty-five' WHERE a=9230; UPDATE t2 SET c='two thousand six hundred fifty-seven' WHERE a=9231; UPDATE t2 SET c='sixty-four thousand twenty-seven' WHERE a=9232; UPDATE t2 SET c='seventy-four thousand six hundred sixty-eight' WHERE a=9233; UPDATE t2 SET c='eighty-six thousand six hundred twenty-one' WHERE a=9234; UPDATE t2 SET c='fifty-nine thousand seven hundred eighty-three' WHERE a=9235; UPDATE t2 SET c='seventy-five thousand fifteen' WHERE a=9236; UPDATE t2 SET c='fifty-nine thousand seven hundred eighty-four' WHERE a=9237; UPDATE t2 SET c='forty-three thousand one hundred sixty-nine' WHERE a=9238; UPDATE t2 SET c='five hundred fifty-seven' WHERE a=9239; UPDATE t2 SET c='ninety-nine thousand two hundred eighty-two' WHERE a=9240; UPDATE t2 SET c='sixty thousand six hundred ten' WHERE a=9241; UPDATE t2 SET c='sixty-nine thousand seven hundred thirteen' WHERE a=9242; UPDATE t2 SET c='thirty-eight thousand three hundred fifty-six' WHERE a=9243; UPDATE t2 SET c='thirty-eight thousand two hundred nineteen' WHERE a=9244; UPDATE t2 SET c='six thousand ninety-two' WHERE a=9245; UPDATE t2 SET c='twenty-nine thousand one hundred four' WHERE a=9246; UPDATE t2 SET c='forty-four thousand seven hundred twenty-five' WHERE a=9247; UPDATE t2 SET c='eighty-nine thousand one hundred eleven' WHERE a=9248; UPDATE t2 SET c='forty-one thousand fifty-three' WHERE a=9249; UPDATE t2 SET c='twenty-one thousand seven hundred eighty-seven' WHERE a=9250; UPDATE t2 SET c='forty-four thousand six hundred sixty-two' WHERE a=9251; UPDATE t2 SET c='ninety-seven thousand four hundred fifty-nine' WHERE a=9252; UPDATE t2 SET c='twenty-four thousand two hundred seventy-nine' WHERE a=9253; UPDATE t2 SET c='seventy-four thousand eight hundred eighty-five' WHERE a=9254; UPDATE t2 SET c='ninety-one thousand two hundred fifty-three' WHERE a=9255; UPDATE t2 SET c='twenty thousand eight hundred sixty-two' WHERE a=9256; UPDATE t2 SET c='sixty-nine thousand two hundred ninety-nine' WHERE a=9257; UPDATE t2 SET c='twenty thousand two hundred fifty-six' WHERE a=9258; UPDATE t2 SET c='five thousand four hundred twenty-eight' WHERE a=9259; UPDATE t2 SET c='fifty-three thousand eight hundred six' WHERE a=9260; UPDATE t2 SET c='eighty-five thousand five hundred thirty-three' WHERE a=9261; UPDATE t2 SET c='forty-nine thousand two hundred twenty-nine' WHERE a=9262; UPDATE t2 SET c='twenty-two thousand one hundred seventy' WHERE a=9263; UPDATE t2 SET c='ninety-two thousand five hundred ninety-seven' WHERE a=9264; UPDATE t2 SET c='eighty thousand six hundred twenty-six' WHERE a=9265; UPDATE t2 SET c='thirteen thousand six hundred sixty' WHERE a=9266; UPDATE t2 SET c='thirteen thousand eight hundred sixteen' WHERE a=9267; UPDATE t2 SET c='forty-five thousand seven hundred forty-one' WHERE a=9268; UPDATE t2 SET c='eleven thousand five hundred eighty-nine' WHERE a=9269; UPDATE t2 SET c='fifty-seven thousand six hundred twenty-nine' WHERE a=9270; UPDATE t2 SET c='thirty-eight thousand five hundred sixty-seven' WHERE a=9271; UPDATE t2 SET c='twenty-three thousand one hundred eighty-one' WHERE a=9272; UPDATE t2 SET c='twenty thousand two hundred fifty' WHERE a=9273; UPDATE t2 SET c='fifty-nine thousand three hundred thirteen' WHERE a=9274; UPDATE t2 SET c='thirty-two thousand nine hundred one' WHERE a=9275; UPDATE t2 SET c='forty-one thousand five hundred fourteen' WHERE a=9276; UPDATE t2 SET c='sixty-two thousand three hundred forty-seven' WHERE a=9277; UPDATE t2 SET c='ninety-one thousand three hundred sixty' WHERE a=9278; UPDATE t2 SET c='thirty-four thousand two hundred seventy-two' WHERE a=9279; UPDATE t2 SET c='seventy-two thousand four hundred eighty-one' WHERE a=9280; UPDATE t2 SET c='forty-five thousand three hundred ninety-three' WHERE a=9281; UPDATE t2 SET c='eighty-six thousand one hundred twenty' WHERE a=9282; UPDATE t2 SET c='eighty-eight thousand six hundred thirty-five' WHERE a=9283; UPDATE t2 SET c='ninety-six thousand nine hundred sixty-four' WHERE a=9284; UPDATE t2 SET c='forty thousand nine hundred seventy-seven' WHERE a=9285; UPDATE t2 SET c='fifty-nine thousand five' WHERE a=9286; UPDATE t2 SET c='eighteen thousand one hundred twenty-one' WHERE a=9287; UPDATE t2 SET c='eighteen thousand six hundred thirty-five' WHERE a=9288; UPDATE t2 SET c='eighty-two thousand five hundred thirty-four' WHERE a=9289; UPDATE t2 SET c='fifty-one thousand one hundred forty-four' WHERE a=9290; UPDATE t2 SET c='twenty-seven thousand two hundred twenty' WHERE a=9291; UPDATE t2 SET c='sixteen thousand two hundred fifty-two' WHERE a=9292; UPDATE t2 SET c='forty thousand five hundred forty-eight' WHERE a=9293; UPDATE t2 SET c='forty-two thousand seventy-three' WHERE a=9294; UPDATE t2 SET c='sixty-five thousand five hundred thirty-three' WHERE a=9295; UPDATE t2 SET c='thirty thousand four hundred seventy-two' WHERE a=9296; UPDATE t2 SET c='fifty-nine thousand one hundred thirty-one' WHERE a=9297; UPDATE t2 SET c='sixty-three thousand one hundred seventy-five' WHERE a=9298; UPDATE t2 SET c='ninety-one thousand five hundred eleven' WHERE a=9299; UPDATE t2 SET c='eighty-six thousand four hundred sixty-nine' WHERE a=9300; UPDATE t2 SET c='eighty-eight thousand nine hundred forty-six' WHERE a=9301; UPDATE t2 SET c='sixty-one thousand sixty' WHERE a=9302; UPDATE t2 SET c='eighty-eight thousand seven hundred ninety-three' WHERE a=9303; UPDATE t2 SET c='ninety thousand sixty-one' WHERE a=9304; UPDATE t2 SET c='eight thousand eight hundred sixty-eight' WHERE a=9305; UPDATE t2 SET c='twenty-one thousand fifty' WHERE a=9306; UPDATE t2 SET c='seventy-six thousand one hundred six' WHERE a=9307; UPDATE t2 SET c='seven thousand nine hundred eighty-three' WHERE a=9308; UPDATE t2 SET c='fifty-seven thousand eight hundred seven' WHERE a=9309; UPDATE t2 SET c='ninety-four thousand three hundred fifty-two' WHERE a=9310; UPDATE t2 SET c='twenty-eight thousand three hundred twenty-eight' WHERE a=9311; UPDATE t2 SET c='twelve thousand two hundred forty' WHERE a=9312; UPDATE t2 SET c='fifty-two thousand eight hundred twenty-three' WHERE a=9313; UPDATE t2 SET c='eight thousand ninety-four' WHERE a=9314; UPDATE t2 SET c='thirty-seven thousand four hundred six' WHERE a=9315; UPDATE t2 SET c='sixty-two thousand six hundred eighty-three' WHERE a=9316; UPDATE t2 SET c='ninety thousand eight hundred ninety-one' WHERE a=9317; UPDATE t2 SET c='eighty-eight thousand seventeen' WHERE a=9318; UPDATE t2 SET c='thirty-nine thousand three hundred twenty-one' WHERE a=9319; UPDATE t2 SET c='eighteen thousand one' WHERE a=9320; UPDATE t2 SET c='fourteen thousand seven hundred seventy-nine' WHERE a=9321; UPDATE t2 SET c='ninety thousand two hundred eighty-four' WHERE a=9322; UPDATE t2 SET c='fifty-three thousand nine hundred eighty-four' WHERE a=9323; UPDATE t2 SET c='two hundred twenty-six' WHERE a=9324; UPDATE t2 SET c='ten thousand seven hundred six' WHERE a=9325; UPDATE t2 SET c='forty thousand seven hundred seventeen' WHERE a=9326; UPDATE t2 SET c='sixty-seven thousand five hundred eight' WHERE a=9327; UPDATE t2 SET c='seventy-four thousand five hundred ninety-three' WHERE a=9328; UPDATE t2 SET c='forty-six thousand ninety-five' WHERE a=9329; UPDATE t2 SET c='forty-five thousand five hundred forty-five' WHERE a=9330; UPDATE t2 SET c='thirty-nine thousand five hundred seventy-six' WHERE a=9331; UPDATE t2 SET c='thirty-six thousand four hundred ninety-six' WHERE a=9332; UPDATE t2 SET c='thirty-five thousand two hundred six' WHERE a=9333; UPDATE t2 SET c='twenty thousand one' WHERE a=9334; UPDATE t2 SET c='sixty thousand forty' WHERE a=9335; UPDATE t2 SET c='twenty-seven thousand six hundred forty-eight' WHERE a=9336; UPDATE t2 SET c='fifty-three thousand eight hundred eighty-seven' WHERE a=9337; UPDATE t2 SET c='sixty-one thousand nine hundred seventy-three' WHERE a=9338; UPDATE t2 SET c='sixty-two thousand four hundred ninety-nine' WHERE a=9339; UPDATE t2 SET c='eighty-three thousand one hundred sixty-two' WHERE a=9340; UPDATE t2 SET c='fifty-nine thousand eight hundred sixty-four' WHERE a=9341; UPDATE t2 SET c='forty-eight thousand three hundred fifty-three' WHERE a=9342; UPDATE t2 SET c='seventy-three thousand nine hundred thirty-six' WHERE a=9343; UPDATE t2 SET c='ninety-four thousand four hundred forty-nine' WHERE a=9344; UPDATE t2 SET c='ninety thousand four hundred forty-four' WHERE a=9345; UPDATE t2 SET c='eighty-one thousand three hundred six' WHERE a=9346; UPDATE t2 SET c='forty-five thousand two hundred forty-six' WHERE a=9347; UPDATE t2 SET c='ninety-three thousand six hundred twenty-three' WHERE a=9348; UPDATE t2 SET c='ninety-four thousand ninety' WHERE a=9349; UPDATE t2 SET c='ninety-six thousand four hundred fifty-six' WHERE a=9350; UPDATE t2 SET c='sixty-nine thousand two hundred eighty-nine' WHERE a=9351; UPDATE t2 SET c='thirty-one thousand one hundred two' WHERE a=9352; UPDATE t2 SET c='forty-six thousand five hundred fifty-three' WHERE a=9353; UPDATE t2 SET c='ninety thousand five hundred eighty-five' WHERE a=9354; UPDATE t2 SET c='one hundred fifty-eight' WHERE a=9355; UPDATE t2 SET c='twenty-nine thousand nine hundred eleven' WHERE a=9356; UPDATE t2 SET c='seventy-seven thousand six hundred twenty-one' WHERE a=9357; UPDATE t2 SET c='twenty-four thousand eighty-seven' WHERE a=9358; UPDATE t2 SET c='forty-two thousand three hundred thirty' WHERE a=9359; UPDATE t2 SET c='eighty thousand eighty-five' WHERE a=9360; UPDATE t2 SET c='fifty thousand seven hundred eighty-one' WHERE a=9361; UPDATE t2 SET c='thirty-seven thousand four hundred' WHERE a=9362; UPDATE t2 SET c='sixty-two thousand one hundred sixty' WHERE a=9363; UPDATE t2 SET c='nine hundred fifty-one' WHERE a=9364; UPDATE t2 SET c='five hundred twenty-seven' WHERE a=9365; UPDATE t2 SET c='ninety-two thousand nine hundred fifteen' WHERE a=9366; UPDATE t2 SET c='sixty-six thousand five hundred seventy-seven' WHERE a=9367; UPDATE t2 SET c='four thousand eight hundred sixty-five' WHERE a=9368; UPDATE t2 SET c='eighty-one thousand six hundred forty-six' WHERE a=9369; UPDATE t2 SET c='ninety-six thousand nine hundred six' WHERE a=9370; UPDATE t2 SET c='sixty-eight thousand nine hundred seven' WHERE a=9371; UPDATE t2 SET c='seventy-five thousand nine hundred eighty-seven' WHERE a=9372; UPDATE t2 SET c='ninety-six thousand five hundred eighteen' WHERE a=9373; UPDATE t2 SET c='twenty-one thousand two hundred eighty-two' WHERE a=9374; UPDATE t2 SET c='fifty-eight thousand two hundred thirty' WHERE a=9375; UPDATE t2 SET c='ninety-eight thousand eight hundred seventy-nine' WHERE a=9376; UPDATE t2 SET c='fifty-six thousand seven hundred nine' WHERE a=9377; UPDATE t2 SET c='forty-three thousand five hundred forty-three' WHERE a=9378; UPDATE t2 SET c='fourteen thousand eight hundred eighty' WHERE a=9379; UPDATE t2 SET c='eighty-four thousand four hundred sixty' WHERE a=9380; UPDATE t2 SET c='forty-four thousand six hundred eleven' WHERE a=9381; UPDATE t2 SET c='twenty-one thousand eight hundred forty-eight' WHERE a=9382; UPDATE t2 SET c='fifteen thousand two hundred twenty-seven' WHERE a=9383; UPDATE t2 SET c='forty-seven thousand nine hundred seventy-one' WHERE a=9384; UPDATE t2 SET c='sixty thousand two hundred fifty-three' WHERE a=9385; UPDATE t2 SET c='sixty-nine thousand one hundred twenty-five' WHERE a=9386; UPDATE t2 SET c='seven thousand seven' WHERE a=9387; UPDATE t2 SET c='thirty-seven thousand four hundred seventy-one' WHERE a=9388; UPDATE t2 SET c='twenty thousand nine hundred fifty-five' WHERE a=9389; UPDATE t2 SET c='fourteen thousand three hundred eighteen' WHERE a=9390; UPDATE t2 SET c='ninety-four thousand six hundred fifty-four' WHERE a=9391; UPDATE t2 SET c='sixty-three thousand ten' WHERE a=9392; UPDATE t2 SET c='sixty-five thousand four hundred eighty-one' WHERE a=9393; UPDATE t2 SET c='sixty-five thousand seven hundred ninety-three' WHERE a=9394; UPDATE t2 SET c='sixty thousand six hundred fifty-three' WHERE a=9395; UPDATE t2 SET c='sixty-six thousand six hundred eleven' WHERE a=9396; UPDATE t2 SET c='thirty-five thousand one hundred seventy-eight' WHERE a=9397; UPDATE t2 SET c='twelve thousand three hundred eighty-eight' WHERE a=9398; UPDATE t2 SET c='eighty-seven thousand eight hundred forty-one' WHERE a=9399; UPDATE t2 SET c='forty-nine thousand four hundred seventy-seven' WHERE a=9400; UPDATE t2 SET c='eighty thousand one hundred six' WHERE a=9401; UPDATE t2 SET c='fifty-five thousand seven hundred sixty-seven' WHERE a=9402; UPDATE t2 SET c='forty-four thousand one hundred twenty-seven' WHERE a=9403; UPDATE t2 SET c='twenty-five thousand two hundred ninety-one' WHERE a=9404; UPDATE t2 SET c='twenty-four thousand three hundred twenty-six' WHERE a=9405; UPDATE t2 SET c='eight thousand four hundred seventy-two' WHERE a=9406; UPDATE t2 SET c='forty-nine thousand six hundred eighty' WHERE a=9407; UPDATE t2 SET c='fifty thousand three hundred seventy-seven' WHERE a=9408; UPDATE t2 SET c='nine thousand four hundred seventy-five' WHERE a=9409; UPDATE t2 SET c='sixty-nine thousand six hundred ninety-seven' WHERE a=9410; UPDATE t2 SET c='fifty-one thousand seven hundred ninety-seven' WHERE a=9411; UPDATE t2 SET c='thirteen thousand eight hundred twenty-nine' WHERE a=9412; UPDATE t2 SET c='thirty-eight thousand ninety-six' WHERE a=9413; UPDATE t2 SET c='twenty-nine thousand ninety-four' WHERE a=9414; UPDATE t2 SET c='sixty-three thousand four hundred forty-nine' WHERE a=9415; UPDATE t2 SET c='fifty-six thousand five hundred ninety-eight' WHERE a=9416; UPDATE t2 SET c='ninety-five thousand four hundred thirty-three' WHERE a=9417; UPDATE t2 SET c='thirty-seven thousand nine hundred ninety-four' WHERE a=9418; UPDATE t2 SET c='eighty-nine thousand nine hundred thirty-nine' WHERE a=9419; UPDATE t2 SET c='thirty-eight thousand seven hundred fifty-one' WHERE a=9420; UPDATE t2 SET c='seven hundred fifty-nine' WHERE a=9421; UPDATE t2 SET c='ninety-six thousand two hundred thirty-seven' WHERE a=9422; UPDATE t2 SET c='eighty-one thousand eighty-two' WHERE a=9423; UPDATE t2 SET c='eighteen thousand seven hundred eighty-three' WHERE a=9424; UPDATE t2 SET c='twenty-four thousand three hundred thirty-one' WHERE a=9425; UPDATE t2 SET c='eighty-seven thousand four hundred sixty' WHERE a=9426; UPDATE t2 SET c='eighty-seven thousand eight hundred eighty-six' WHERE a=9427; UPDATE t2 SET c='eight thousand one hundred eighty-eight' WHERE a=9428; UPDATE t2 SET c='twenty-five thousand six hundred seventy-nine' WHERE a=9429; UPDATE t2 SET c='thirty-two thousand five hundred seventy-six' WHERE a=9430; UPDATE t2 SET c='ninety-eight thousand six hundred sixty-four' WHERE a=9431; UPDATE t2 SET c='sixty thousand two hundred fifty-eight' WHERE a=9432; UPDATE t2 SET c='fifty-three thousand eight hundred ninety-six' WHERE a=9433; UPDATE t2 SET c='eighty-five thousand seven hundred twelve' WHERE a=9434; UPDATE t2 SET c='forty-seven thousand nine hundred seventeen' WHERE a=9435; UPDATE t2 SET c='ninety-four thousand two hundred eighty-four' WHERE a=9436; UPDATE t2 SET c='forty-six thousand three hundred seventy-two' WHERE a=9437; UPDATE t2 SET c='three thousand eight hundred seventy-nine' WHERE a=9438; UPDATE t2 SET c='twenty-nine thousand one hundred sixty-eight' WHERE a=9439; UPDATE t2 SET c='thirty-four thousand five hundred twenty-five' WHERE a=9440; UPDATE t2 SET c='eighteen thousand eight hundred eleven' WHERE a=9441; UPDATE t2 SET c='fifteen thousand five hundred eighteen' WHERE a=9442; UPDATE t2 SET c='sixty-five thousand five hundred eighty-seven' WHERE a=9443; UPDATE t2 SET c='fifty thousand six hundred thirty-one' WHERE a=9444; UPDATE t2 SET c='ninety-six thousand one hundred forty' WHERE a=9445; UPDATE t2 SET c='seventy-three thousand one hundred forty-five' WHERE a=9446; UPDATE t2 SET c='twenty-one thousand six hundred eighty-eight' WHERE a=9447; UPDATE t2 SET c='twenty-five thousand five hundred seven' WHERE a=9448; UPDATE t2 SET c='sixty-five thousand five hundred twenty' WHERE a=9449; UPDATE t2 SET c='sixty-eight thousand six hundred twenty-three' WHERE a=9450; UPDATE t2 SET c='seventy-six thousand nine hundred sixteen' WHERE a=9451; UPDATE t2 SET c='twenty-seven thousand eight hundred twelve' WHERE a=9452; UPDATE t2 SET c='ninety-two thousand five hundred fifty-nine' WHERE a=9453; UPDATE t2 SET c='thirty-five thousand two hundred thirty' WHERE a=9454; UPDATE t2 SET c='eleven thousand seven hundred seventy-four' WHERE a=9455; UPDATE t2 SET c='fourteen thousand six hundred thirty-one' WHERE a=9456; UPDATE t2 SET c='ninety-four thousand eight hundred sixty-seven' WHERE a=9457; UPDATE t2 SET c='seventy-two thousand one hundred thirty-three' WHERE a=9458; UPDATE t2 SET c='seventy-three thousand four hundred twenty-six' WHERE a=9459; UPDATE t2 SET c='ninety-two thousand one hundred thirty-four' WHERE a=9460; UPDATE t2 SET c='ninety-one thousand seven hundred fifty-seven' WHERE a=9461; UPDATE t2 SET c='thirty-nine thousand eight hundred fifty' WHERE a=9462; UPDATE t2 SET c='thirty-three thousand seven hundred forty' WHERE a=9463; UPDATE t2 SET c='ninety thousand seven hundred eighty' WHERE a=9464; UPDATE t2 SET c='ninety-nine thousand two hundred ninety-six' WHERE a=9465; UPDATE t2 SET c='eight thousand seven hundred thirty-nine' WHERE a=9466; UPDATE t2 SET c='thirty-six thousand four hundred eleven' WHERE a=9467; UPDATE t2 SET c='twenty-eight thousand three hundred five' WHERE a=9468; UPDATE t2 SET c='sixty-three thousand eight hundred seventy-one' WHERE a=9469; UPDATE t2 SET c='one thousand nine hundred seventy-six' WHERE a=9470; UPDATE t2 SET c='thirty thousand four hundred twenty-eight' WHERE a=9471; UPDATE t2 SET c='seventy-six thousand eight hundred seventy-five' WHERE a=9472; UPDATE t2 SET c='seventy-six thousand fifty-four' WHERE a=9473; UPDATE t2 SET c='sixty-nine thousand seven hundred seventy-one' WHERE a=9474; UPDATE t2 SET c='ninety-four thousand forty-eight' WHERE a=9475; UPDATE t2 SET c='thirty-five thousand seven hundred eighty-two' WHERE a=9476; UPDATE t2 SET c='two thousand six hundred forty' WHERE a=9477; UPDATE t2 SET c='sixty-eight thousand five hundred one' WHERE a=9478; UPDATE t2 SET c='eighty-six thousand nine hundred thirteen' WHERE a=9479; UPDATE t2 SET c='eighty-five thousand seventy-one' WHERE a=9480; UPDATE t2 SET c='seventy-seven thousand five hundred fifty-nine' WHERE a=9481; UPDATE t2 SET c='fifty thousand eight hundred fifty-six' WHERE a=9482; UPDATE t2 SET c='five thousand five hundred seventy-nine' WHERE a=9483; UPDATE t2 SET c='forty-four thousand four hundred forty-nine' WHERE a=9484; UPDATE t2 SET c='eight thousand four hundred thirty-eight' WHERE a=9485; UPDATE t2 SET c='ninety-two thousand three hundred seventy-four' WHERE a=9486; UPDATE t2 SET c='twenty-two thousand five hundred eighty-three' WHERE a=9487; UPDATE t2 SET c='thirty thousand four hundred eighty-nine' WHERE a=9488; UPDATE t2 SET c='eighty-three thousand five hundred ninety-eight' WHERE a=9489; UPDATE t2 SET c='ninety-four thousand four hundred fifty-six' WHERE a=9490; UPDATE t2 SET c='sixteen thousand nine hundred eighty-one' WHERE a=9491; UPDATE t2 SET c='twenty-nine thousand one hundred eighty-four' WHERE a=9492; UPDATE t2 SET c='eighty-five thousand one hundred eight' WHERE a=9493; UPDATE t2 SET c='thirty-nine thousand eight hundred ninety-two' WHERE a=9494; UPDATE t2 SET c='seventy-nine thousand two hundred thirty-six' WHERE a=9495; UPDATE t2 SET c='ninety-two thousand six hundred forty-one' WHERE a=9496; UPDATE t2 SET c='ninety-nine thousand one hundred ninety-three' WHERE a=9497; UPDATE t2 SET c='ninety-one thousand four hundred seventy-four' WHERE a=9498; UPDATE t2 SET c='sixty-one thousand one hundred eighty-five' WHERE a=9499; UPDATE t2 SET c='fifty-two thousand fifteen' WHERE a=9500; UPDATE t2 SET c='twenty-six thousand eight hundred thirty-three' WHERE a=9501; UPDATE t2 SET c='ninety-four thousand six hundred seventy-six' WHERE a=9502; UPDATE t2 SET c='seven thousand nine hundred fifty-nine' WHERE a=9503; UPDATE t2 SET c='thirty-four thousand eighty-four' WHERE a=9504; UPDATE t2 SET c='forty thousand seven hundred fifty-seven' WHERE a=9505; UPDATE t2 SET c='fifty-one thousand six hundred twenty-seven' WHERE a=9506; UPDATE t2 SET c='two hundred forty-eight' WHERE a=9507; UPDATE t2 SET c='twenty-four thousand six hundred eighty-six' WHERE a=9508; UPDATE t2 SET c='seventy-five thousand four hundred sixteen' WHERE a=9509; UPDATE t2 SET c='eighty thousand ninety-six' WHERE a=9510; UPDATE t2 SET c='two hundred thirty-three' WHERE a=9511; UPDATE t2 SET c='forty-six thousand six hundred seventy-one' WHERE a=9512; UPDATE t2 SET c='fifty-two thousand nine hundred thirteen' WHERE a=9513; UPDATE t2 SET c='eight thousand five hundred thirty' WHERE a=9514; UPDATE t2 SET c='thirty-four thousand nine hundred seventy-one' WHERE a=9515; UPDATE t2 SET c='ninety-five thousand two hundred eight' WHERE a=9516; UPDATE t2 SET c='one thousand twenty-six' WHERE a=9517; UPDATE t2 SET c='forty-nine thousand two hundred sixty-five' WHERE a=9518; UPDATE t2 SET c='eighty thousand twenty-four' WHERE a=9519; UPDATE t2 SET c='nine thousand eighty-four' WHERE a=9520; UPDATE t2 SET c='sixty-nine thousand six hundred ninety-nine' WHERE a=9521; UPDATE t2 SET c='fifty-one thousand four hundred eight' WHERE a=9522; UPDATE t2 SET c='thirty-six thousand nine hundred ninety' WHERE a=9523; UPDATE t2 SET c='forty-nine thousand one hundred eighty-two' WHERE a=9524; UPDATE t2 SET c='eleven thousand nine hundred thirty-two' WHERE a=9525; UPDATE t2 SET c='sixty-two thousand ninety-two' WHERE a=9526; UPDATE t2 SET c='twenty-nine thousand sixty-three' WHERE a=9527; UPDATE t2 SET c='eighty-seven thousand three hundred twenty-six' WHERE a=9528; UPDATE t2 SET c='thirty-one thousand eight hundred seventy' WHERE a=9529; UPDATE t2 SET c='forty-six thousand nine hundred fifteen' WHERE a=9530; UPDATE t2 SET c='one thousand six hundred ninety-one' WHERE a=9531; UPDATE t2 SET c='sixty-five thousand nine hundred twenty-five' WHERE a=9532; UPDATE t2 SET c='thirty thousand four hundred fifteen' WHERE a=9533; UPDATE t2 SET c='fifty-seven thousand two hundred ninety-two' WHERE a=9534; UPDATE t2 SET c='sixty-four thousand seven hundred ten' WHERE a=9535; UPDATE t2 SET c='twenty-five thousand ninety-nine' WHERE a=9536; UPDATE t2 SET c='sixty-five thousand one hundred thirty-seven' WHERE a=9537; UPDATE t2 SET c='forty-one thousand three hundred one' WHERE a=9538; UPDATE t2 SET c='fourteen thousand three hundred twenty-six' WHERE a=9539; UPDATE t2 SET c='sixty-five thousand six hundred thirty-three' WHERE a=9540; UPDATE t2 SET c='forty-eight thousand three hundred fifty-five' WHERE a=9541; UPDATE t2 SET c='six thousand seven hundred seventeen' WHERE a=9542; UPDATE t2 SET c='sixty-nine thousand eight hundred thirty-two' WHERE a=9543; UPDATE t2 SET c='four thousand one hundred forty' WHERE a=9544; UPDATE t2 SET c='ninety thousand sixty-seven' WHERE a=9545; UPDATE t2 SET c='sixty-four thousand nine hundred seven' WHERE a=9546; UPDATE t2 SET c='six thousand nine hundred sixty-eight' WHERE a=9547; UPDATE t2 SET c='twenty-one thousand sixty-four' WHERE a=9548; UPDATE t2 SET c='thirteen thousand six hundred twenty-eight' WHERE a=9549; UPDATE t2 SET c='forty-five thousand two hundred thirty-nine' WHERE a=9550; UPDATE t2 SET c='ninety-three thousand nine hundred sixty-two' WHERE a=9551; UPDATE t2 SET c='thirty thousand three hundred twenty-one' WHERE a=9552; UPDATE t2 SET c='thirty-two thousand seven hundred sixty-nine' WHERE a=9553; UPDATE t2 SET c='fifty thousand two hundred fifteen' WHERE a=9554; UPDATE t2 SET c='eighty-two thousand four hundred sixty-one' WHERE a=9555; UPDATE t2 SET c='twenty-eight thousand eight hundred seventy-three' WHERE a=9556; UPDATE t2 SET c='forty-five thousand seven hundred five' WHERE a=9557; UPDATE t2 SET c='eighty-nine thousand six hundred eighty-two' WHERE a=9558; UPDATE t2 SET c='eighty thousand six hundred ninety-four' WHERE a=9559; UPDATE t2 SET c='forty thousand seventy' WHERE a=9560; UPDATE t2 SET c='eighty-two thousand four hundred eighty' WHERE a=9561; UPDATE t2 SET c='sixty-two thousand two hundred thirty-six' WHERE a=9562; UPDATE t2 SET c='seventy-six thousand eight hundred twenty-three' WHERE a=9563; UPDATE t2 SET c='twenty-three thousand three hundred nineteen' WHERE a=9564; UPDATE t2 SET c='fifty-six thousand two hundred fifteen' WHERE a=9565; UPDATE t2 SET c='eighty-two thousand eight hundred seventy-six' WHERE a=9566; UPDATE t2 SET c='sixty-two thousand five hundred eighty-four' WHERE a=9567; UPDATE t2 SET c='eighty-five thousand sixty-four' WHERE a=9568; UPDATE t2 SET c='thirty-two thousand eight hundred seventy-four' WHERE a=9569; UPDATE t2 SET c='fifty-seven thousand forty-one' WHERE a=9570; UPDATE t2 SET c='sixty-two thousand seven hundred twenty-four' WHERE a=9571; UPDATE t2 SET c='sixty-six thousand nine hundred sixteen' WHERE a=9572; UPDATE t2 SET c='one thousand three hundred twenty-six' WHERE a=9573; UPDATE t2 SET c='eighty-three thousand one hundred forty-six' WHERE a=9574; UPDATE t2 SET c='seventy-seven thousand seven hundred forty-five' WHERE a=9575; UPDATE t2 SET c='thirty-four thousand eight hundred fifty-two' WHERE a=9576; UPDATE t2 SET c='eighty-six thousand four hundred three' WHERE a=9577; UPDATE t2 SET c='fifty-three thousand seven hundred sixteen' WHERE a=9578; UPDATE t2 SET c='ninety-three thousand five hundred fifty-three' WHERE a=9579; UPDATE t2 SET c='sixty-nine thousand four hundred ninety-two' WHERE a=9580; UPDATE t2 SET c='fifty-eight thousand eight hundred thirty-seven' WHERE a=9581; UPDATE t2 SET c='thirty-four thousand nine hundred seventy-six' WHERE a=9582; UPDATE t2 SET c='sixty-seven thousand five hundred sixty-six' WHERE a=9583; UPDATE t2 SET c='eighty-six thousand nine hundred eighty-four' WHERE a=9584; UPDATE t2 SET c='ninety-two thousand two hundred seventy-eight' WHERE a=9585; UPDATE t2 SET c='thirty-five thousand two hundred fifty-nine' WHERE a=9586; UPDATE t2 SET c='forty-six thousand five hundred seventy-two' WHERE a=9587; UPDATE t2 SET c='ninety-eight thousand eight hundred eighty-four' WHERE a=9588; UPDATE t2 SET c='eighteen thousand three hundred ninety' WHERE a=9589; UPDATE t2 SET c='twenty-two thousand eight hundred fifty' WHERE a=9590; UPDATE t2 SET c='thirty-two thousand four hundred sixty-one' WHERE a=9591; UPDATE t2 SET c='thirty-eight thousand eight hundred thirty-five' WHERE a=9592; UPDATE t2 SET c='twenty-seven thousand six hundred thirty-three' WHERE a=9593; UPDATE t2 SET c='seventy-three thousand three hundred eighty-four' WHERE a=9594; UPDATE t2 SET c='thirty-four thousand six hundred sixty-four' WHERE a=9595; UPDATE t2 SET c='ninety-five thousand five hundred twenty-seven' WHERE a=9596; UPDATE t2 SET c='twenty-seven thousand three hundred one' WHERE a=9597; UPDATE t2 SET c='ninety-six thousand four hundred' WHERE a=9598; UPDATE t2 SET c='seventy-eight thousand eight hundred forty-nine' WHERE a=9599; UPDATE t2 SET c='twenty-three thousand eight hundred seventy-one' WHERE a=9600; UPDATE t2 SET c='eighty-six thousand five hundred ninety-seven' WHERE a=9601; UPDATE t2 SET c='seventy-six thousand five hundred fifty' WHERE a=9602; UPDATE t2 SET c='ten thousand seven hundred thirty-five' WHERE a=9603; UPDATE t2 SET c='twenty-three thousand nine hundred twenty-five' WHERE a=9604; UPDATE t2 SET c='thirty-nine thousand one hundred forty-three' WHERE a=9605; UPDATE t2 SET c='eighteen thousand nine hundred forty-two' WHERE a=9606; UPDATE t2 SET c='eleven thousand eight hundred seventy-seven' WHERE a=9607; UPDATE t2 SET c='twenty-nine thousand one hundred seventy' WHERE a=9608; UPDATE t2 SET c='ten thousand two hundred eighty-eight' WHERE a=9609; UPDATE t2 SET c='six thousand four hundred nine' WHERE a=9610; UPDATE t2 SET c='eighty-eight thousand seven hundred sixty-eight' WHERE a=9611; UPDATE t2 SET c='thirty-six thousand eight hundred ninety-nine' WHERE a=9612; UPDATE t2 SET c='ninety-eight thousand four hundred thirty-two' WHERE a=9613; UPDATE t2 SET c='eighty-six thousand nine hundred fifty-six' WHERE a=9614; UPDATE t2 SET c='fifty-four thousand fourteen' WHERE a=9615; UPDATE t2 SET c='eighty-six thousand seven hundred sixty-nine' WHERE a=9616; UPDATE t2 SET c='twenty-nine thousand two hundred eighty-three' WHERE a=9617; UPDATE t2 SET c='sixty-eight thousand six hundred twenty' WHERE a=9618; UPDATE t2 SET c='eight thousand four hundred nine' WHERE a=9619; UPDATE t2 SET c='seventy-seven thousand seven hundred fifty' WHERE a=9620; UPDATE t2 SET c='twenty-four thousand seven hundred twenty-seven' WHERE a=9621; UPDATE t2 SET c='twenty-three thousand nine hundred sixty-seven' WHERE a=9622; UPDATE t2 SET c='forty-five thousand seven hundred fifty-two' WHERE a=9623; UPDATE t2 SET c='three thousand one hundred sixty-nine' WHERE a=9624; UPDATE t2 SET c='seventy-nine thousand five hundred twelve' WHERE a=9625; UPDATE t2 SET c='twenty-nine thousand one hundred' WHERE a=9626; UPDATE t2 SET c='sixty thousand seven hundred twenty-eight' WHERE a=9627; UPDATE t2 SET c='eighty-six thousand five hundred fifty-four' WHERE a=9628; UPDATE t2 SET c='seventeen thousand eight hundred eighty-eight' WHERE a=9629; UPDATE t2 SET c='fifty-four thousand eight hundred ninety-three' WHERE a=9630; UPDATE t2 SET c='ninety-three thousand four hundred twenty-five' WHERE a=9631; UPDATE t2 SET c='twenty thousand five hundred sixty-six' WHERE a=9632; UPDATE t2 SET c='thirty-one thousand one hundred four' WHERE a=9633; UPDATE t2 SET c='twenty thousand one hundred eighty' WHERE a=9634; UPDATE t2 SET c='eighty-eight thousand seven hundred twenty-two' WHERE a=9635; UPDATE t2 SET c='seven thousand three hundred twenty-five' WHERE a=9636; UPDATE t2 SET c='seventy-four thousand five hundred forty-seven' WHERE a=9637; UPDATE t2 SET c='eighty-nine thousand three hundred thirteen' WHERE a=9638; UPDATE t2 SET c='sixty-one thousand seven hundred two' WHERE a=9639; UPDATE t2 SET c='ninety-two thousand six hundred sixty-one' WHERE a=9640; UPDATE t2 SET c='fifty-six thousand sixty-four' WHERE a=9641; UPDATE t2 SET c='four thousand one hundred fifty-five' WHERE a=9642; UPDATE t2 SET c='twenty-three thousand six hundred sixty-four' WHERE a=9643; UPDATE t2 SET c='forty-five thousand two hundred seventy-seven' WHERE a=9644; UPDATE t2 SET c='forty-two thousand four hundred fifty-three' WHERE a=9645; UPDATE t2 SET c='fifty-three thousand seven hundred twenty-six' WHERE a=9646; UPDATE t2 SET c='twenty-four thousand nine hundred thirty-seven' WHERE a=9647; UPDATE t2 SET c='forty-four thousand two hundred twenty' WHERE a=9648; UPDATE t2 SET c='forty-seven thousand fifteen' WHERE a=9649; UPDATE t2 SET c='thirty thousand four hundred seventy' WHERE a=9650; UPDATE t2 SET c='two thousand one hundred fifty-three' WHERE a=9651; UPDATE t2 SET c='thirty-eight thousand forty-four' WHERE a=9652; UPDATE t2 SET c='seventy thousand five hundred twenty-four' WHERE a=9653; UPDATE t2 SET c='sixty-three thousand eight hundred fifty-one' WHERE a=9654; UPDATE t2 SET c='seventy-four thousand fifty-three' WHERE a=9655; UPDATE t2 SET c='thirty-five thousand seventy-six' WHERE a=9656; UPDATE t2 SET c='forty-seven' WHERE a=9657; UPDATE t2 SET c='thirty-seven thousand four hundred sixty-four' WHERE a=9658; UPDATE t2 SET c='sixty-eight thousand eight hundred seventy-eight' WHERE a=9659; UPDATE t2 SET c='seventy-five thousand nine hundred fifty-four' WHERE a=9660; UPDATE t2 SET c='forty-five thousand one hundred eighty-nine' WHERE a=9661; UPDATE t2 SET c='four thousand seventy-three' WHERE a=9662; UPDATE t2 SET c='five thousand nine hundred eighty-two' WHERE a=9663; UPDATE t2 SET c='twenty-three thousand eight hundred fifty-nine' WHERE a=9664; UPDATE t2 SET c='ninety-one thousand one hundred sixty-eight' WHERE a=9665; UPDATE t2 SET c='twenty thousand four hundred thirty-two' WHERE a=9666; UPDATE t2 SET c='twenty thousand five hundred seven' WHERE a=9667; UPDATE t2 SET c='fifty-one thousand three hundred fifty-five' WHERE a=9668; UPDATE t2 SET c='twenty-seven thousand eight hundred sixty-one' WHERE a=9669; UPDATE t2 SET c='twenty-nine thousand seven hundred sixty-three' WHERE a=9670; UPDATE t2 SET c='forty-eight thousand four hundred twenty-six' WHERE a=9671; UPDATE t2 SET c='seventy-one thousand one hundred thirty-two' WHERE a=9672; UPDATE t2 SET c='seventy-five thousand one hundred sixty-seven' WHERE a=9673; UPDATE t2 SET c='eighty-two thousand seven hundred thirteen' WHERE a=9674; UPDATE t2 SET c='thirty-five thousand four hundred eighty' WHERE a=9675; UPDATE t2 SET c='five thousand four hundred three' WHERE a=9676; UPDATE t2 SET c='fifty-five thousand seven hundred thirty' WHERE a=9677; UPDATE t2 SET c='ninety-five thousand ninety-six' WHERE a=9678; UPDATE t2 SET c='four hundred sixty-nine' WHERE a=9679; UPDATE t2 SET c='nineteen thousand one hundred ninety-four' WHERE a=9680; UPDATE t2 SET c='eighty-one thousand three hundred thirty-eight' WHERE a=9681; UPDATE t2 SET c='twenty-five thousand one hundred seventy-nine' WHERE a=9682; UPDATE t2 SET c='thirty-two thousand seventy-three' WHERE a=9683; UPDATE t2 SET c='sixty-four thousand one hundred sixteen' WHERE a=9684; UPDATE t2 SET c='thirty-six thousand nine hundred eight' WHERE a=9685; UPDATE t2 SET c='seventy-nine thousand eight hundred thirteen' WHERE a=9686; UPDATE t2 SET c='ninety-nine thousand seventy' WHERE a=9687; UPDATE t2 SET c='three thousand eight hundred eighty-nine' WHERE a=9688; UPDATE t2 SET c='twenty-two thousand six hundred eight' WHERE a=9689; UPDATE t2 SET c='seventy thousand forty-six' WHERE a=9690; UPDATE t2 SET c='eighty-five thousand six hundred fourteen' WHERE a=9691; UPDATE t2 SET c='twenty-nine thousand five hundred fifteen' WHERE a=9692; UPDATE t2 SET c='thirty-two thousand three hundred ninety-eight' WHERE a=9693; UPDATE t2 SET c='ten thousand one hundred ninety-nine' WHERE a=9694; UPDATE t2 SET c='eighty-eight thousand eight hundred fifty-two' WHERE a=9695; UPDATE t2 SET c='forty-one thousand two hundred seventy-seven' WHERE a=9696; UPDATE t2 SET c='thirty-six thousand six hundred fourteen' WHERE a=9697; UPDATE t2 SET c='fifty-three thousand five hundred thirty-one' WHERE a=9698; UPDATE t2 SET c='sixty-six thousand two hundred sixty' WHERE a=9699; UPDATE t2 SET c='twelve thousand seven hundred ninety-eight' WHERE a=9700; UPDATE t2 SET c='thirty-six thousand ninety-nine' WHERE a=9701; UPDATE t2 SET c='forty-four thousand five hundred eighty-six' WHERE a=9702; UPDATE t2 SET c='fifty-eight thousand five hundred thirty-five' WHERE a=9703; UPDATE t2 SET c='twenty-one thousand nine hundred twenty-four' WHERE a=9704; UPDATE t2 SET c='eighty-six thousand six hundred ninety-seven' WHERE a=9705; UPDATE t2 SET c='eighty-seven thousand two hundred thirty-seven' WHERE a=9706; UPDATE t2 SET c='fifty-eight thousand seven hundred forty-eight' WHERE a=9707; UPDATE t2 SET c='fourteen thousand four hundred thirty' WHERE a=9708; UPDATE t2 SET c='thirty-five thousand five hundred sixty-two' WHERE a=9709; UPDATE t2 SET c='sixty-five thousand four hundred fifty' WHERE a=9710; UPDATE t2 SET c='sixty-four thousand three hundred seventy-two' WHERE a=9711; UPDATE t2 SET c='twenty-one thousand eight hundred seventy-nine' WHERE a=9712; UPDATE t2 SET c='ninety-four thousand eight hundred eight' WHERE a=9713; UPDATE t2 SET c='fifty-five thousand seven hundred thirty-three' WHERE a=9714; UPDATE t2 SET c='fifty-seven thousand seven hundred thirty-one' WHERE a=9715; UPDATE t2 SET c='one thousand six hundred thirty-six' WHERE a=9716; UPDATE t2 SET c='eighty-two thousand two hundred seventy-eight' WHERE a=9717; UPDATE t2 SET c='sixty-six thousand two hundred forty-one' WHERE a=9718; UPDATE t2 SET c='eighty-seven thousand six hundred twenty' WHERE a=9719; UPDATE t2 SET c='seven hundred ninety-two' WHERE a=9720; UPDATE t2 SET c='thirty-one thousand three hundred ten' WHERE a=9721; UPDATE t2 SET c='ninety-one thousand two hundred sixty-two' WHERE a=9722; UPDATE t2 SET c='thirty-four thousand six hundred twenty-eight' WHERE a=9723; UPDATE t2 SET c='seventy-four thousand seven hundred fifty-one' WHERE a=9724; UPDATE t2 SET c='twenty-five thousand two hundred nineteen' WHERE a=9725; UPDATE t2 SET c='seventy-three thousand three hundred ninety-two' WHERE a=9726; UPDATE t2 SET c='sixty-one thousand seven hundred forty-five' WHERE a=9727; UPDATE t2 SET c='sixty-four thousand one hundred two' WHERE a=9728; UPDATE t2 SET c='fourteen thousand five hundred ninety-two' WHERE a=9729; UPDATE t2 SET c='twenty-four thousand three hundred thirty-two' WHERE a=9730; UPDATE t2 SET c='eighty-seven thousand six hundred ninety-seven' WHERE a=9731; UPDATE t2 SET c='eighty-six thousand seven hundred seventy-one' WHERE a=9732; UPDATE t2 SET c='nine thousand eight hundred four' WHERE a=9733; UPDATE t2 SET c='forty thousand seven hundred fifty-nine' WHERE a=9734; UPDATE t2 SET c='eighty-nine thousand three hundred seventy-eight' WHERE a=9735; UPDATE t2 SET c='forty-one thousand four hundred forty' WHERE a=9736; UPDATE t2 SET c='thirty-four thousand nine hundred fifty' WHERE a=9737; UPDATE t2 SET c='seventy-three thousand two hundred sixty-eight' WHERE a=9738; UPDATE t2 SET c='eighty-seven thousand seven hundred forty-five' WHERE a=9739; UPDATE t2 SET c='ninety-six thousand two hundred six' WHERE a=9740; UPDATE t2 SET c='ninety-eight thousand five hundred four' WHERE a=9741; UPDATE t2 SET c='seven thousand five hundred fifty-nine' WHERE a=9742; UPDATE t2 SET c='ninety-seven thousand nine hundred seventy-seven' WHERE a=9743; UPDATE t2 SET c='fifty-two thousand nine hundred forty-three' WHERE a=9744; UPDATE t2 SET c='seventy-two thousand one hundred fifty-two' WHERE a=9745; UPDATE t2 SET c='sixty thousand six hundred seven' WHERE a=9746; UPDATE t2 SET c='thirty-nine thousand one hundred ninety-two' WHERE a=9747; UPDATE t2 SET c='fifteen thousand seven hundred fifty-nine' WHERE a=9748; UPDATE t2 SET c='eleven thousand eight hundred thirty-seven' WHERE a=9749; UPDATE t2 SET c='sixteen thousand one hundred thirty-nine' WHERE a=9750; UPDATE t2 SET c='forty-seven thousand three hundred eighty' WHERE a=9751; UPDATE t2 SET c='ninety-six thousand six hundred' WHERE a=9752; UPDATE t2 SET c='seventy-three thousand' WHERE a=9753; UPDATE t2 SET c='twenty-three thousand fourteen' WHERE a=9754; UPDATE t2 SET c='ten thousand eight hundred twenty-three' WHERE a=9755; UPDATE t2 SET c='eleven thousand five hundred ninety-nine' WHERE a=9756; UPDATE t2 SET c='eighty-nine thousand three hundred eighty-seven' WHERE a=9757; UPDATE t2 SET c='ninety thousand three hundred ninety' WHERE a=9758; UPDATE t2 SET c='fifty-four thousand three hundred sixty-eight' WHERE a=9759; UPDATE t2 SET c='nine thousand six hundred ninety-two' WHERE a=9760; UPDATE t2 SET c='forty thousand three hundred eighty-seven' WHERE a=9761; UPDATE t2 SET c='seventy-five thousand seven hundred ninety-nine' WHERE a=9762; UPDATE t2 SET c='eight thousand five hundred sixty-two' WHERE a=9763; UPDATE t2 SET c='sixty-seven thousand seven hundred thirty-three' WHERE a=9764; UPDATE t2 SET c='seventeen thousand one hundred twenty-nine' WHERE a=9765; UPDATE t2 SET c='twenty-four thousand nine hundred ninety-six' WHERE a=9766; UPDATE t2 SET c='twenty thousand two hundred sixty' WHERE a=9767; UPDATE t2 SET c='nineteen thousand seven hundred sixty-six' WHERE a=9768; UPDATE t2 SET c='thirty-five thousand six hundred sixty-nine' WHERE a=9769; UPDATE t2 SET c='forty-eight thousand eighty-seven' WHERE a=9770; UPDATE t2 SET c='fourteen thousand six hundred ninety-one' WHERE a=9771; UPDATE t2 SET c='nineteen thousand one hundred twenty' WHERE a=9772; UPDATE t2 SET c='eighty-nine thousand nine hundred eighty-seven' WHERE a=9773; UPDATE t2 SET c='ninety-two thousand two hundred thirty' WHERE a=9774; UPDATE t2 SET c='thirty-seven thousand one hundred forty' WHERE a=9775; UPDATE t2 SET c='sixty-four thousand four hundred seventy-two' WHERE a=9776; UPDATE t2 SET c='sixty thousand five hundred thirty-six' WHERE a=9777; UPDATE t2 SET c='seventy-three thousand one hundred thirty-eight' WHERE a=9778; UPDATE t2 SET c='sixty thousand four hundred four' WHERE a=9779; UPDATE t2 SET c='seventy thousand four hundred fifty-nine' WHERE a=9780; UPDATE t2 SET c='sixty-eight thousand two hundred ninety-two' WHERE a=9781; UPDATE t2 SET c='nineteen thousand two hundred twenty-four' WHERE a=9782; UPDATE t2 SET c='sixty-three thousand eight hundred sixty-four' WHERE a=9783; UPDATE t2 SET c='sixty-four thousand three' WHERE a=9784; UPDATE t2 SET c='twenty-nine thousand eight hundred thirty-eight' WHERE a=9785; UPDATE t2 SET c='eighty thousand three hundred three' WHERE a=9786; UPDATE t2 SET c='four thousand seven hundred ninety-three' WHERE a=9787; UPDATE t2 SET c='twenty-three thousand four hundred ninety-six' WHERE a=9788; UPDATE t2 SET c='ninety-two thousand thirteen' WHERE a=9789; UPDATE t2 SET c='twenty-two thousand seventy-two' WHERE a=9790; UPDATE t2 SET c='eight thousand eight hundred thirty' WHERE a=9791; UPDATE t2 SET c='forty-three thousand one hundred seventy-nine' WHERE a=9792; UPDATE t2 SET c='ninety-seven thousand sixty-three' WHERE a=9793; UPDATE t2 SET c='fifty-eight thousand eight hundred fifty-seven' WHERE a=9794; UPDATE t2 SET c='thirteen thousand one hundred forty-six' WHERE a=9795; UPDATE t2 SET c='twenty-nine thousand five hundred forty' WHERE a=9796; UPDATE t2 SET c='ninety-nine thousand two hundred fifty-three' WHERE a=9797; UPDATE t2 SET c='forty-three thousand one hundred sixty-seven' WHERE a=9798; UPDATE t2 SET c='sixty-nine thousand eight hundred thirty-two' WHERE a=9799; UPDATE t2 SET c='thirty-two thousand two hundred fifty-three' WHERE a=9800; UPDATE t2 SET c='fifty-one thousand one hundred forty-seven' WHERE a=9801; UPDATE t2 SET c='nine thousand seventy-four' WHERE a=9802; UPDATE t2 SET c='forty-seven thousand eight hundred five' WHERE a=9803; UPDATE t2 SET c='thirty-eight thousand nine hundred seventy-five' WHERE a=9804; UPDATE t2 SET c='fourteen thousand three hundred six' WHERE a=9805; UPDATE t2 SET c='twenty-four thousand eighty-eight' WHERE a=9806; UPDATE t2 SET c='ninety-two thousand eight hundred forty-four' WHERE a=9807; UPDATE t2 SET c='five hundred twelve' WHERE a=9808; UPDATE t2 SET c='eighty-two thousand eighty-three' WHERE a=9809; UPDATE t2 SET c='forty-five thousand two hundred twenty-two' WHERE a=9810; UPDATE t2 SET c='thirty-seven thousand eight hundred ninety' WHERE a=9811; UPDATE t2 SET c='ten thousand three hundred forty-nine' WHERE a=9812; UPDATE t2 SET c='twenty-four thousand five hundred seventeen' WHERE a=9813; UPDATE t2 SET c='fifteen thousand eight hundred sixty-two' WHERE a=9814; UPDATE t2 SET c='six thousand five hundred two' WHERE a=9815; UPDATE t2 SET c='ninety-nine thousand eight hundred sixty-seven' WHERE a=9816; UPDATE t2 SET c='thirty-six thousand seven hundred sixty' WHERE a=9817; UPDATE t2 SET c='eight thousand seventy' WHERE a=9818; UPDATE t2 SET c='eighty-one thousand seven hundred fifty-nine' WHERE a=9819; UPDATE t2 SET c='forty-five thousand five hundred forty-two' WHERE a=9820; UPDATE t2 SET c='thirty-eight thousand four hundred nine' WHERE a=9821; UPDATE t2 SET c='thirty-one thousand seven hundred fourteen' WHERE a=9822; UPDATE t2 SET c='twelve thousand eight hundred eighty-two' WHERE a=9823; UPDATE t2 SET c='four thousand one hundred eighty-six' WHERE a=9824; UPDATE t2 SET c='eighteen thousand nine hundred ninety-seven' WHERE a=9825; UPDATE t2 SET c='eighty-one thousand nine hundred ninety' WHERE a=9826; UPDATE t2 SET c='sixteen thousand nine hundred forty-one' WHERE a=9827; UPDATE t2 SET c='twenty-seven thousand four hundred fifty-one' WHERE a=9828; UPDATE t2 SET c='forty-three thousand one hundred forty-six' WHERE a=9829; UPDATE t2 SET c='ninety thousand six hundred forty-one' WHERE a=9830; UPDATE t2 SET c='fifty thousand two hundred fifty' WHERE a=9831; UPDATE t2 SET c='forty-eight thousand eight hundred seventeen' WHERE a=9832; UPDATE t2 SET c='sixty-five thousand seven hundred eighteen' WHERE a=9833; UPDATE t2 SET c='seventy-seven thousand eighty-two' WHERE a=9834; UPDATE t2 SET c='eighty thousand three hundred thirteen' WHERE a=9835; UPDATE t2 SET c='eighty thousand two hundred eighty-eight' WHERE a=9836; UPDATE t2 SET c='twenty-six thousand seven hundred thirteen' WHERE a=9837; UPDATE t2 SET c='sixty-nine thousand eight hundred eighty-eight' WHERE a=9838; UPDATE t2 SET c='twenty thousand two hundred ten' WHERE a=9839; UPDATE t2 SET c='nineteen thousand seven hundred twenty-six' WHERE a=9840; UPDATE t2 SET c='eighty-five thousand six hundred thirty-three' WHERE a=9841; UPDATE t2 SET c='four thousand six hundred eighteen' WHERE a=9842; UPDATE t2 SET c='fifty-eight thousand three hundred eighteen' WHERE a=9843; UPDATE t2 SET c='twenty-one thousand four hundred fifty-three' WHERE a=9844; UPDATE t2 SET c='ninety-one thousand four hundred thirty-six' WHERE a=9845; UPDATE t2 SET c='thirteen thousand thirty-seven' WHERE a=9846; UPDATE t2 SET c='seven thousand three hundred eight' WHERE a=9847; UPDATE t2 SET c='ninety-two thousand four hundred fifty' WHERE a=9848; UPDATE t2 SET c='thirty-five thousand three hundred nine' WHERE a=9849; UPDATE t2 SET c='three thousand three hundred seventy-nine' WHERE a=9850; UPDATE t2 SET c='seventy-six thousand four' WHERE a=9851; UPDATE t2 SET c='eighty-two thousand nine hundred fifty-eight' WHERE a=9852; UPDATE t2 SET c='twenty-three thousand eight hundred nineteen' WHERE a=9853; UPDATE t2 SET c='thirty-two thousand three' WHERE a=9854; UPDATE t2 SET c='seventy-two thousand eight hundred thirty-five' WHERE a=9855; UPDATE t2 SET c='eighty thousand nine hundred six' WHERE a=9856; UPDATE t2 SET c='ninety-two thousand six hundred fifty-three' WHERE a=9857; UPDATE t2 SET c='thirty-one thousand one hundred sixteen' WHERE a=9858; UPDATE t2 SET c='fifty-one thousand two hundred eighteen' WHERE a=9859; UPDATE t2 SET c='ninety-eight thousand three hundred fifteen' WHERE a=9860; UPDATE t2 SET c='eighty-five thousand five hundred eighty-five' WHERE a=9861; UPDATE t2 SET c='fifty-seven thousand five hundred ninety-five' WHERE a=9862; UPDATE t2 SET c='sixty-two thousand three hundred' WHERE a=9863; UPDATE t2 SET c='seventy-three thousand eighty-one' WHERE a=9864; UPDATE t2 SET c='twenty thousand four hundred forty-two' WHERE a=9865; UPDATE t2 SET c='fifty-eight thousand nine hundred twenty' WHERE a=9866; UPDATE t2 SET c='fourteen thousand nine hundred eighty-four' WHERE a=9867; UPDATE t2 SET c='eighty-four thousand two hundred seventy-two' WHERE a=9868; UPDATE t2 SET c='sixty-six thousand one hundred thirty-one' WHERE a=9869; UPDATE t2 SET c='seventy-three thousand six hundred nine' WHERE a=9870; UPDATE t2 SET c='fifty-nine thousand seven hundred forty-five' WHERE a=9871; UPDATE t2 SET c='seventy-five thousand four hundred fifty-seven' WHERE a=9872; UPDATE t2 SET c='fifty-seven thousand eight hundred twenty-eight' WHERE a=9873; UPDATE t2 SET c='ninety-three thousand four hundred ninety-five' WHERE a=9874; UPDATE t2 SET c='sixty-nine thousand four hundred twenty-five' WHERE a=9875; UPDATE t2 SET c='fifty-seven thousand sixteen' WHERE a=9876; UPDATE t2 SET c='twenty-eight thousand eight hundred eighteen' WHERE a=9877; UPDATE t2 SET c='ninety thousand eight hundred twenty-one' WHERE a=9878; UPDATE t2 SET c='thirty thousand two hundred nine' WHERE a=9879; UPDATE t2 SET c='forty-seven thousand one hundred nineteen' WHERE a=9880; UPDATE t2 SET c='forty-six thousand two hundred eighty-nine' WHERE a=9881; UPDATE t2 SET c='forty-six thousand seven hundred eighty-six' WHERE a=9882; UPDATE t2 SET c='eighty-four thousand two hundred twenty-four' WHERE a=9883; UPDATE t2 SET c='fifty-two thousand three hundred fifty-four' WHERE a=9884; UPDATE t2 SET c='ninety-nine thousand four hundred ninety-five' WHERE a=9885; UPDATE t2 SET c='ninety-seven thousand two hundred eleven' WHERE a=9886; UPDATE t2 SET c='fifty-three thousand eight hundred seventy-six' WHERE a=9887; UPDATE t2 SET c='ten thousand four hundred fifty-three' WHERE a=9888; UPDATE t2 SET c='eighty-nine thousand three hundred eight' WHERE a=9889; UPDATE t2 SET c='nineteen thousand nine hundred sixty-three' WHERE a=9890; UPDATE t2 SET c='eighty-one thousand six hundred seventy-eight' WHERE a=9891; UPDATE t2 SET c='seventy-two thousand five hundred sixteen' WHERE a=9892; UPDATE t2 SET c='twenty-two thousand two hundred forty-three' WHERE a=9893; UPDATE t2 SET c='ninety-nine thousand seven hundred ninety-seven' WHERE a=9894; UPDATE t2 SET c='seventy-six thousand two hundred fourteen' WHERE a=9895; UPDATE t2 SET c='seventy-five thousand eight hundred twenty-four' WHERE a=9896; UPDATE t2 SET c='ninety-six thousand five hundred fifty' WHERE a=9897; UPDATE t2 SET c='ninety-six thousand eight hundred four' WHERE a=9898; UPDATE t2 SET c='eighty-nine thousand nine hundred fifty-five' WHERE a=9899; UPDATE t2 SET c='eighty-three thousand four hundred two' WHERE a=9900; UPDATE t2 SET c='forty-four thousand four hundred seventy-nine' WHERE a=9901; UPDATE t2 SET c='ninety-seven thousand six hundred seventy-three' WHERE a=9902; UPDATE t2 SET c='eighty-two thousand four hundred thirty-three' WHERE a=9903; UPDATE t2 SET c='six hundred fourteen' WHERE a=9904; UPDATE t2 SET c='ninety-four thousand four hundred forty-two' WHERE a=9905; UPDATE t2 SET c='thirty-five thousand three hundred twenty-five' WHERE a=9906; UPDATE t2 SET c='sixty-nine thousand five hundred eighty-seven' WHERE a=9907; UPDATE t2 SET c='thirty-eight thousand nine hundred forty' WHERE a=9908; UPDATE t2 SET c='twelve thousand four hundred twenty-four' WHERE a=9909; UPDATE t2 SET c='twenty-two thousand two hundred thirty-four' WHERE a=9910; UPDATE t2 SET c='three thousand seven hundred ten' WHERE a=9911; UPDATE t2 SET c='twenty-two thousand seven hundred fourteen' WHERE a=9912; UPDATE t2 SET c='thirty-four thousand three hundred forty-eight' WHERE a=9913; UPDATE t2 SET c='fifty-nine thousand two hundred forty-four' WHERE a=9914; UPDATE t2 SET c='forty-six thousand two hundred seventy-one' WHERE a=9915; UPDATE t2 SET c='fifty-one thousand seven hundred thirty-six' WHERE a=9916; UPDATE t2 SET c='ninety thousand nine hundred thirty' WHERE a=9917; UPDATE t2 SET c='sixteen thousand one hundred sixty-two' WHERE a=9918; UPDATE t2 SET c='seventy-two thousand four hundred twenty-nine' WHERE a=9919; UPDATE t2 SET c='forty-two thousand nine hundred sixty-eight' WHERE a=9920; UPDATE t2 SET c='eighty-four thousand forty-five' WHERE a=9921; UPDATE t2 SET c='thirty-eight thousand eight hundred eighty-four' WHERE a=9922; UPDATE t2 SET c='one thousand seven hundred fourteen' WHERE a=9923; UPDATE t2 SET c='sixty-six thousand seven hundred four' WHERE a=9924; UPDATE t2 SET c='forty thousand five hundred forty' WHERE a=9925; UPDATE t2 SET c='twenty-two thousand six hundred sixty-eight' WHERE a=9926; UPDATE t2 SET c='thirty-six thousand three hundred forty-five' WHERE a=9927; UPDATE t2 SET c='thirty-seven thousand five hundred forty' WHERE a=9928; UPDATE t2 SET c='fifty-three thousand one hundred thirty-seven' WHERE a=9929; UPDATE t2 SET c='seventy thousand nine hundred forty-seven' WHERE a=9930; UPDATE t2 SET c='fifty thousand five hundred fifty-six' WHERE a=9931; UPDATE t2 SET c='fifty-six thousand one hundred fifty-one' WHERE a=9932; UPDATE t2 SET c='fifty-two thousand one hundred three' WHERE a=9933; UPDATE t2 SET c='seventy-two thousand three hundred fifty-three' WHERE a=9934; UPDATE t2 SET c='eight thousand eight hundred ninety' WHERE a=9935; UPDATE t2 SET c='sixteen thousand seven hundred fifty-seven' WHERE a=9936; UPDATE t2 SET c='three thousand eight hundred twenty-nine' WHERE a=9937; UPDATE t2 SET c='fourteen thousand eight hundred twenty-six' WHERE a=9938; UPDATE t2 SET c='thirty-one thousand seventy-eight' WHERE a=9939; UPDATE t2 SET c='one thousand three hundred fifty' WHERE a=9940; UPDATE t2 SET c='eighty-one thousand seven hundred eight' WHERE a=9941; UPDATE t2 SET c='forty-eight thousand three hundred eighty-six' WHERE a=9942; UPDATE t2 SET c='fifty-one thousand four hundred sixty-nine' WHERE a=9943; UPDATE t2 SET c='ninety-seven thousand four hundred twelve' WHERE a=9944; UPDATE t2 SET c='sixty-nine thousand five hundred seventy-two' WHERE a=9945; UPDATE t2 SET c='thirty-five thousand five hundred ninety-four' WHERE a=9946; UPDATE t2 SET c='eighty-three thousand five hundred seventy-six' WHERE a=9947; UPDATE t2 SET c='sixty-nine thousand six hundred sixty-four' WHERE a=9948; UPDATE t2 SET c='eighty-five thousand seven hundred ninety-three' WHERE a=9949; UPDATE t2 SET c='sixty-nine thousand eight hundred fifty-two' WHERE a=9950; UPDATE t2 SET c='ninety-three thousand two hundred fifty-six' WHERE a=9951; UPDATE t2 SET c='forty-two thousand two hundred fifteen' WHERE a=9952; UPDATE t2 SET c='thirty-two thousand one hundred twenty-four' WHERE a=9953; UPDATE t2 SET c='seventy-five thousand eight hundred four' WHERE a=9954; UPDATE t2 SET c='five thousand six hundred eighty-five' WHERE a=9955; UPDATE t2 SET c='eighty-six thousand two hundred seventy-three' WHERE a=9956; UPDATE t2 SET c='twenty-seven thousand seven hundred' WHERE a=9957; UPDATE t2 SET c='fifty-one thousand eight hundred eighty-nine' WHERE a=9958; UPDATE t2 SET c='fifty-six thousand four hundred seventy-five' WHERE a=9959; UPDATE t2 SET c='twenty-six thousand eight hundred seventy-four' WHERE a=9960; UPDATE t2 SET c='ninety-three thousand forty-seven' WHERE a=9961; UPDATE t2 SET c='seven hundred eighty-four' WHERE a=9962; UPDATE t2 SET c='eighty-seven thousand seven hundred fifteen' WHERE a=9963; UPDATE t2 SET c='eighty thousand seven hundred eighty-two' WHERE a=9964; UPDATE t2 SET c='fifty-one thousand two hundred ninety-three' WHERE a=9965; UPDATE t2 SET c='eighteen thousand seven hundred eighty-three' WHERE a=9966; UPDATE t2 SET c='eighty-two thousand seven hundred ninety-two' WHERE a=9967; UPDATE t2 SET c='thirty-six thousand four hundred thirty-seven' WHERE a=9968; UPDATE t2 SET c='forty-nine thousand five hundred forty-one' WHERE a=9969; UPDATE t2 SET c='thirty-one thousand nine hundred eight' WHERE a=9970; UPDATE t2 SET c='ninety-nine thousand four hundred seventy-four' WHERE a=9971; UPDATE t2 SET c='twenty-three thousand thirty-four' WHERE a=9972; UPDATE t2 SET c='ninety-five thousand one hundred twenty-one' WHERE a=9973; UPDATE t2 SET c='six hundred eighty-nine' WHERE a=9974; UPDATE t2 SET c='sixteen thousand eight hundred eight' WHERE a=9975; UPDATE t2 SET c='four thousand one hundred fifty-four' WHERE a=9976; UPDATE t2 SET c='seventeen thousand sixty-eight' WHERE a=9977; UPDATE t2 SET c='seventy-six thousand eight hundred sixty-two' WHERE a=9978; UPDATE t2 SET c='one thousand seven hundred five' WHERE a=9979; UPDATE t2 SET c='twenty-three thousand eighty-seven' WHERE a=9980; UPDATE t2 SET c='eight thousand eight hundred sixty-eight' WHERE a=9981; UPDATE t2 SET c='fifty-eight thousand five hundred seventy-two' WHERE a=9982; UPDATE t2 SET c='sixteen thousand one hundred seventy-nine' WHERE a=9983; UPDATE t2 SET c='ninety-seven thousand two hundred thirty-four' WHERE a=9984; UPDATE t2 SET c='eighty-five thousand six hundred eleven' WHERE a=9985; UPDATE t2 SET c='thirty-five thousand eight hundred six' WHERE a=9986; UPDATE t2 SET c='thirty-nine thousand seven hundred twenty-seven' WHERE a=9987; UPDATE t2 SET c='eighty-two thousand three hundred twenty-five' WHERE a=9988; UPDATE t2 SET c='thirty-nine thousand six hundred forty-nine' WHERE a=9989; UPDATE t2 SET c='eighty thousand two hundred sixty-four' WHERE a=9990; UPDATE t2 SET c='sixty-two thousand three hundred seventy-six' WHERE a=9991; UPDATE t2 SET c='five thousand six hundred fifty-nine' WHERE a=9992; UPDATE t2 SET c='thirteen thousand fifty-four' WHERE a=9993; UPDATE t2 SET c='fourteen thousand fifty-eight' WHERE a=9994; UPDATE t2 SET c='forty-nine thousand seven hundred thirty-five' WHERE a=9995; UPDATE t2 SET c='seventy-nine thousand two hundred thirty-seven' WHERE a=9996; UPDATE t2 SET c='seven thousand seven hundred fifty-four' WHERE a=9997; UPDATE t2 SET c='fifty-three thousand three hundred eleven' WHERE a=9998; UPDATE t2 SET c='thirty thousand one hundred seven' WHERE a=9999; UPDATE t2 SET c='fifty-seven thousand twenty-eight' WHERE a=10000; UPDATE t2 SET c='six thousand eight hundred sixty-two' WHERE a=10001; UPDATE t2 SET c='sixty thousand three hundred sixty-seven' WHERE a=10002; UPDATE t2 SET c='thirty-one thousand six hundred seventy-four' WHERE a=10003; UPDATE t2 SET c='fifty-three thousand eight hundred fifty-eight' WHERE a=10004; UPDATE t2 SET c='forty-three thousand one hundred eighty-three' WHERE a=10005; UPDATE t2 SET c='ninety-three thousand two hundred seventy-eight' WHERE a=10006; UPDATE t2 SET c='sixty-one thousand two hundred eighty-one' WHERE a=10007; UPDATE t2 SET c='four thousand four hundred forty-eight' WHERE a=10008; UPDATE t2 SET c='four thousand two hundred six' WHERE a=10009; UPDATE t2 SET c='seventy-two thousand six hundred four' WHERE a=10010; UPDATE t2 SET c='fifty-six thousand four hundred ninety-six' WHERE a=10011; UPDATE t2 SET c='six thousand three hundred ninety-two' WHERE a=10012; UPDATE t2 SET c='sixty thousand three hundred eighty-nine' WHERE a=10013; UPDATE t2 SET c='twenty-eight thousand nine hundred ninety-four' WHERE a=10014; UPDATE t2 SET c='eighty-four thousand two hundred forty-two' WHERE a=10015; UPDATE t2 SET c='ninety-two thousand eight hundred twenty-eight' WHERE a=10016; UPDATE t2 SET c='thirty-five thousand two hundred seventy-seven' WHERE a=10017; UPDATE t2 SET c='thirty-eight thousand four hundred seventeen' WHERE a=10018; UPDATE t2 SET c='seventy-eight thousand seventy-two' WHERE a=10019; UPDATE t2 SET c='twenty-two thousand two hundred thirty-seven' WHERE a=10020; UPDATE t2 SET c='fourteen thousand six hundred sixty-two' WHERE a=10021; UPDATE t2 SET c='twenty-seven thousand seventy' WHERE a=10022; UPDATE t2 SET c='eighteen thousand two hundred twenty-one' WHERE a=10023; UPDATE t2 SET c='forty-four thousand one hundred twenty-three' WHERE a=10024; UPDATE t2 SET c='sixty-two thousand two hundred six' WHERE a=10025; UPDATE t2 SET c='forty-two thousand six hundred seventy-four' WHERE a=10026; UPDATE t2 SET c='nineteen thousand four hundred sixty-one' WHERE a=10027; UPDATE t2 SET c='ninety-five thousand seven hundred eighty-four' WHERE a=10028; UPDATE t2 SET c='twenty-two thousand four hundred seventy' WHERE a=10029; UPDATE t2 SET c='ninety-three thousand seven hundred ninety-one' WHERE a=10030; UPDATE t2 SET c='thirty-nine thousand two hundred ninety-four' WHERE a=10031; UPDATE t2 SET c='forty-three thousand eight hundred thirty-three' WHERE a=10032; UPDATE t2 SET c='sixty-seven thousand two hundred sixty-two' WHERE a=10033; UPDATE t2 SET c='sixty-one thousand eight hundred sixty-eight' WHERE a=10034; UPDATE t2 SET c='fifty-one thousand four hundred forty-two' WHERE a=10035; UPDATE t2 SET c='six thousand four hundred eighty-two' WHERE a=10036; UPDATE t2 SET c='seventy-nine thousand nine hundred ninety-four' WHERE a=10037; UPDATE t2 SET c='eighty-eight thousand eight hundred seventy-seven' WHERE a=10038; UPDATE t2 SET c='twelve thousand five hundred sixteen' WHERE a=10039; UPDATE t2 SET c='seven thousand nine hundred sixty-six' WHERE a=10040; UPDATE t2 SET c='eighty-eight thousand one hundred sixty' WHERE a=10041; UPDATE t2 SET c='ninety-six thousand seven hundred seventy-three' WHERE a=10042; UPDATE t2 SET c='thirty-eight thousand one hundred fifty-nine' WHERE a=10043; UPDATE t2 SET c='sixty-eight thousand eight hundred forty-nine' WHERE a=10044; UPDATE t2 SET c='fifty-one thousand two hundred seventy-eight' WHERE a=10045; UPDATE t2 SET c='one thousand four hundred sixty-three' WHERE a=10046; UPDATE t2 SET c='twenty-eight thousand one hundred seventy-one' WHERE a=10047; UPDATE t2 SET c='forty-eight thousand three hundred fifty-three' WHERE a=10048; UPDATE t2 SET c='twenty-nine thousand eight hundred forty-six' WHERE a=10049; UPDATE t2 SET c='fifty-one thousand nine hundred fifty-five' WHERE a=10050; UPDATE t2 SET c='ninety thousand eight hundred fifty-five' WHERE a=10051; UPDATE t2 SET c='ten thousand three hundred forty-five' WHERE a=10052; UPDATE t2 SET c='forty-two thousand nine hundred forty-five' WHERE a=10053; UPDATE t2 SET c='forty-three thousand seven hundred ninety-nine' WHERE a=10054; UPDATE t2 SET c='seventy-one thousand nine hundred eighty-five' WHERE a=10055; UPDATE t2 SET c='seventy thousand two hundred sixty-four' WHERE a=10056; UPDATE t2 SET c='sixty-eight thousand six hundred nineteen' WHERE a=10057; UPDATE t2 SET c='fifty-seven thousand five hundred seventy-seven' WHERE a=10058; UPDATE t2 SET c='nineteen thousand eight hundred sixty-eight' WHERE a=10059; UPDATE t2 SET c='seventy-nine thousand seven hundred thirty-one' WHERE a=10060; UPDATE t2 SET c='fifteen thousand seven hundred forty-eight' WHERE a=10061; UPDATE t2 SET c='sixty-three thousand three hundred ninety-three' WHERE a=10062; UPDATE t2 SET c='ninety-six thousand six hundred eighty-seven' WHERE a=10063; UPDATE t2 SET c='sixty-six thousand one hundred seventy-three' WHERE a=10064; UPDATE t2 SET c='forty-four thousand seven hundred twenty' WHERE a=10065; UPDATE t2 SET c='seventy-nine thousand six hundred sixty-one' WHERE a=10066; UPDATE t2 SET c='fifty-three thousand twelve' WHERE a=10067; UPDATE t2 SET c='ninety-three thousand fifty-seven' WHERE a=10068; UPDATE t2 SET c='six thousand eighty-eight' WHERE a=10069; UPDATE t2 SET c='fifty-six thousand six hundred eighty-seven' WHERE a=10070; UPDATE t2 SET c='fifty-seven thousand two hundred thirty-two' WHERE a=10071; UPDATE t2 SET c='thirty-six thousand two hundred eighty-one' WHERE a=10072; UPDATE t2 SET c='sixty-eight thousand six' WHERE a=10073; UPDATE t2 SET c='fifty-nine thousand four hundred sixteen' WHERE a=10074; UPDATE t2 SET c='sixty-eight thousand six hundred forty-eight' WHERE a=10075; UPDATE t2 SET c='fifty-eight thousand nine hundred sixty-four' WHERE a=10076; UPDATE t2 SET c='seventy-six thousand two hundred two' WHERE a=10077; UPDATE t2 SET c='three thousand nine hundred one' WHERE a=10078; UPDATE t2 SET c='thirty thousand two hundred fifty' WHERE a=10079; UPDATE t2 SET c='forty-four thousand six hundred eight' WHERE a=10080; UPDATE t2 SET c='twenty-two thousand two hundred sixty' WHERE a=10081; UPDATE t2 SET c='seventy-one thousand two hundred ninety' WHERE a=10082; UPDATE t2 SET c='sixty-five thousand five hundred forty-eight' WHERE a=10083; UPDATE t2 SET c='ninety-seven thousand four hundred twelve' WHERE a=10084; UPDATE t2 SET c='eighty thousand one hundred fifty-nine' WHERE a=10085; UPDATE t2 SET c='seven thousand one hundred seventy-three' WHERE a=10086; UPDATE t2 SET c='fifty-six thousand three hundred forty-five' WHERE a=10087; UPDATE t2 SET c='twenty-three thousand six hundred seventy-two' WHERE a=10088; UPDATE t2 SET c='eighty-three thousand two hundred thirty-seven' WHERE a=10089; UPDATE t2 SET c='thirty-three thousand one hundred eleven' WHERE a=10090; UPDATE t2 SET c='twenty-six thousand three hundred thirty-two' WHERE a=10091; UPDATE t2 SET c='fifteen thousand' WHERE a=10092; UPDATE t2 SET c='eighty-one thousand seven hundred sixty-two' WHERE a=10093; UPDATE t2 SET c='sixty-three thousand eight hundred eighteen' WHERE a=10094; UPDATE t2 SET c='thirteen thousand seven hundred ninety-nine' WHERE a=10095; UPDATE t2 SET c='two thousand four hundred twenty-nine' WHERE a=10096; UPDATE t2 SET c='seventy-nine thousand six hundred thirty-nine' WHERE a=10097; UPDATE t2 SET c='sixty-five thousand two hundred thirty-seven' WHERE a=10098; UPDATE t2 SET c='thirty-one thousand eight hundred eighty-four' WHERE a=10099; UPDATE t2 SET c='ninety-two thousand six hundred seven' WHERE a=10100; UPDATE t2 SET c='ten thousand six hundred sixty-nine' WHERE a=10101; UPDATE t2 SET c='seventy-seven thousand one hundred seventy-three' WHERE a=10102; UPDATE t2 SET c='sixty-seven thousand three hundred seventy-seven' WHERE a=10103; UPDATE t2 SET c='eighty-eight thousand six hundred thirty-three' WHERE a=10104; UPDATE t2 SET c='twenty-six thousand five hundred forty' WHERE a=10105; UPDATE t2 SET c='thirty-two thousand eight hundred thirty-three' WHERE a=10106; UPDATE t2 SET c='forty-three thousand two hundred twenty-one' WHERE a=10107; UPDATE t2 SET c='thirty-one thousand nine hundred sixty-nine' WHERE a=10108; UPDATE t2 SET c='fifty-three thousand seven hundred eighteen' WHERE a=10109; UPDATE t2 SET c='seventy thousand three hundred eighty-eight' WHERE a=10110; UPDATE t2 SET c='seventy-five thousand sixty' WHERE a=10111; UPDATE t2 SET c='eight thousand three hundred thirteen' WHERE a=10112; UPDATE t2 SET c='sixty-three thousand four hundred ninety-six' WHERE a=10113; UPDATE t2 SET c='fifty-nine thousand seventy-four' WHERE a=10114; UPDATE t2 SET c='twenty-eight thousand one hundred twenty-four' WHERE a=10115; UPDATE t2 SET c='seventy-six thousand five hundred eighty-six' WHERE a=10116; UPDATE t2 SET c='five thousand three hundred twenty-two' WHERE a=10117; UPDATE t2 SET c='seventy-seven thousand two hundred ninety-four' WHERE a=10118; UPDATE t2 SET c='fifty thousand four hundred twenty' WHERE a=10119; UPDATE t2 SET c='twenty-two thousand two hundred seventy-eight' WHERE a=10120; UPDATE t2 SET c='twelve thousand five hundred seventy-nine' WHERE a=10121; UPDATE t2 SET c='four thousand ninety-eight' WHERE a=10122; UPDATE t2 SET c='ninety-four thousand forty-eight' WHERE a=10123; UPDATE t2 SET c='fifty-seven thousand nine hundred forty-one' WHERE a=10124; UPDATE t2 SET c='thirty-six thousand four hundred ninety-three' WHERE a=10125; UPDATE t2 SET c='twenty-two thousand two hundred thirty-two' WHERE a=10126; UPDATE t2 SET c='seventy-seven thousand five hundred eighty-five' WHERE a=10127; UPDATE t2 SET c='fifty-nine thousand seventy-four' WHERE a=10128; UPDATE t2 SET c='seventy-seven thousand one hundred three' WHERE a=10129; UPDATE t2 SET c='ninety-six thousand one hundred seventy' WHERE a=10130; UPDATE t2 SET c='thirty-three thousand one hundred sixty-one' WHERE a=10131; UPDATE t2 SET c='forty-three thousand seven hundred seventeen' WHERE a=10132; UPDATE t2 SET c='forty-eight thousand four hundred thirty-seven' WHERE a=10133; UPDATE t2 SET c='fifty-nine thousand two hundred fifty-three' WHERE a=10134; UPDATE t2 SET c='nineteen thousand nine hundred ninety-seven' WHERE a=10135; UPDATE t2 SET c='fifty-five thousand eight hundred thirty-eight' WHERE a=10136; UPDATE t2 SET c='sixty-six thousand fifty-eight' WHERE a=10137; UPDATE t2 SET c='seventy-three thousand forty-eight' WHERE a=10138; UPDATE t2 SET c='fifty-three thousand nine hundred twenty-three' WHERE a=10139; UPDATE t2 SET c='seventy thousand five hundred sixty-five' WHERE a=10140; UPDATE t2 SET c='fifty-nine thousand eight hundred seven' WHERE a=10141; UPDATE t2 SET c='twenty-one thousand one hundred fourteen' WHERE a=10142; UPDATE t2 SET c='forty-one thousand two hundred sixty-seven' WHERE a=10143; UPDATE t2 SET c='ninety-eight thousand three hundred thirty-nine' WHERE a=10144; UPDATE t2 SET c='fifty-six thousand five hundred forty-five' WHERE a=10145; UPDATE t2 SET c='fifty-one thousand nine hundred sixty-five' WHERE a=10146; UPDATE t2 SET c='thirty-five thousand seventy-two' WHERE a=10147; UPDATE t2 SET c='eighty-five thousand two hundred seventy-five' WHERE a=10148; UPDATE t2 SET c='ninety-nine thousand six hundred thirty-one' WHERE a=10149; UPDATE t2 SET c='eighty-six thousand nine hundred eighty-six' WHERE a=10150; UPDATE t2 SET c='nineteen thousand six hundred forty-six' WHERE a=10151; UPDATE t2 SET c='seventy-five thousand nine hundred sixty-six' WHERE a=10152; UPDATE t2 SET c='ninety-two thousand two hundred ninety' WHERE a=10153; UPDATE t2 SET c='eighteen thousand nine hundred three' WHERE a=10154; UPDATE t2 SET c='twenty-six thousand one hundred seventy-four' WHERE a=10155; UPDATE t2 SET c='sixty-seven thousand five hundred fifty-two' WHERE a=10156; UPDATE t2 SET c='two thousand seven hundred' WHERE a=10157; UPDATE t2 SET c='ninety-four thousand five hundred twenty-six' WHERE a=10158; UPDATE t2 SET c='seventy-five thousand seventy' WHERE a=10159; UPDATE t2 SET c='two thousand four hundred seventy-four' WHERE a=10160; UPDATE t2 SET c='eighty-one thousand two hundred fifty-three' WHERE a=10161; UPDATE t2 SET c='thirteen thousand nine hundred forty-eight' WHERE a=10162; UPDATE t2 SET c='twenty-two thousand seven hundred nine' WHERE a=10163; UPDATE t2 SET c='seventy-one thousand six hundred forty-nine' WHERE a=10164; UPDATE t2 SET c='one hundred eighty-one' WHERE a=10165; UPDATE t2 SET c='sixty-four thousand four hundred fifty-two' WHERE a=10166; UPDATE t2 SET c='thirty-four thousand four hundred twenty' WHERE a=10167; UPDATE t2 SET c='ninety-four thousand three hundred fifty-two' WHERE a=10168; UPDATE t2 SET c='fifty thousand three hundred two' WHERE a=10169; UPDATE t2 SET c='eighty-seven thousand three hundred thirty-two' WHERE a=10170; UPDATE t2 SET c='twenty thousand five hundred eight' WHERE a=10171; UPDATE t2 SET c='seventeen thousand six hundred twenty' WHERE a=10172; UPDATE t2 SET c='thirty thousand five hundred fifty-seven' WHERE a=10173; UPDATE t2 SET c='twenty-two thousand one hundred fifteen' WHERE a=10174; UPDATE t2 SET c='seventy-eight thousand eight hundred sixty-six' WHERE a=10175; UPDATE t2 SET c='three hundred ten' WHERE a=10176; UPDATE t2 SET c='ninety-one thousand nine hundred seventeen' WHERE a=10177; UPDATE t2 SET c='twenty-six thousand seven hundred sixty-nine' WHERE a=10178; UPDATE t2 SET c='seventy-eight thousand one hundred' WHERE a=10179; UPDATE t2 SET c='one thousand seven hundred eighty-nine' WHERE a=10180; UPDATE t2 SET c='twenty-two thousand one hundred seventy-eight' WHERE a=10181; UPDATE t2 SET c='twenty-nine thousand six hundred eighty-seven' WHERE a=10182; UPDATE t2 SET c='ninety-six thousand three hundred seventy-five' WHERE a=10183; UPDATE t2 SET c='four thousand eight hundred sixty-two' WHERE a=10184; UPDATE t2 SET c='fifty-three thousand ninety-nine' WHERE a=10185; UPDATE t2 SET c='sixty-five thousand nine hundred eighty-four' WHERE a=10186; UPDATE t2 SET c='nine thousand eight hundred seventy-six' WHERE a=10187; UPDATE t2 SET c='sixty thousand eight hundred thirty-eight' WHERE a=10188; UPDATE t2 SET c='sixty-five thousand nine hundred seventy-one' WHERE a=10189; UPDATE t2 SET c='one thousand nine hundred three' WHERE a=10190; UPDATE t2 SET c='seventy-eight thousand fifty-one' WHERE a=10191; UPDATE t2 SET c='thirty-eight thousand two hundred seventy-one' WHERE a=10192; UPDATE t2 SET c='eighty-one thousand two hundred five' WHERE a=10193; UPDATE t2 SET c='forty-four thousand eighty-one' WHERE a=10194; UPDATE t2 SET c='sixteen thousand four hundred eighteen' WHERE a=10195; UPDATE t2 SET c='forty-three thousand two hundred eighty-five' WHERE a=10196; UPDATE t2 SET c='fifty-eight thousand seven hundred two' WHERE a=10197; UPDATE t2 SET c='thirty-one thousand two hundred sixteen' WHERE a=10198; UPDATE t2 SET c='three thousand four hundred eighty-one' WHERE a=10199; UPDATE t2 SET c='three thousand three hundred thirty-four' WHERE a=10200; UPDATE t2 SET c='seventy-four thousand four hundred forty-one' WHERE a=10201; UPDATE t2 SET c='ninety-three thousand seven hundred nine' WHERE a=10202; UPDATE t2 SET c='fifty-five thousand nine hundred thirty-nine' WHERE a=10203; UPDATE t2 SET c='twenty-two thousand nine hundred forty-eight' WHERE a=10204; UPDATE t2 SET c='thirty-five thousand twenty-nine' WHERE a=10205; UPDATE t2 SET c='thirty-nine thousand eight hundred ten' WHERE a=10206; UPDATE t2 SET c='six thousand three hundred thirteen' WHERE a=10207; UPDATE t2 SET c='ninety-nine thousand four hundred fifty-five' WHERE a=10208; UPDATE t2 SET c='fifty-eight thousand five hundred fifty-nine' WHERE a=10209; UPDATE t2 SET c='six thousand nine hundred forty-five' WHERE a=10210; UPDATE t2 SET c='ninety-four thousand one hundred fifty-one' WHERE a=10211; UPDATE t2 SET c='seventy-five thousand nine hundred fifty-four' WHERE a=10212; UPDATE t2 SET c='forty-seven thousand six hundred seventy' WHERE a=10213; UPDATE t2 SET c='seventy thousand five hundred fifty-three' WHERE a=10214; UPDATE t2 SET c='thirty-six thousand four hundred eighty-seven' WHERE a=10215; UPDATE t2 SET c='sixty thousand one hundred sixty-three' WHERE a=10216; UPDATE t2 SET c='ninety-one thousand one' WHERE a=10217; UPDATE t2 SET c='sixty-six thousand seven hundred fifty-one' WHERE a=10218; UPDATE t2 SET c='thirteen thousand four hundred thirty-nine' WHERE a=10219; UPDATE t2 SET c='fifty-five thousand five hundred fifty-eight' WHERE a=10220; UPDATE t2 SET c='twenty-six thousand five hundred fifty-five' WHERE a=10221; UPDATE t2 SET c='fifty-six thousand three hundred ninety-three' WHERE a=10222; UPDATE t2 SET c='thirty thousand two hundred four' WHERE a=10223; UPDATE t2 SET c='eighty-nine thousand one hundred eighty-four' WHERE a=10224; UPDATE t2 SET c='ninety-four thousand seven hundred sixteen' WHERE a=10225; UPDATE t2 SET c='eighty-two thousand eight hundred fifty-six' WHERE a=10226; UPDATE t2 SET c='ninety-seven thousand eight hundred sixteen' WHERE a=10227; UPDATE t2 SET c='fifty-two thousand seven hundred fifty-five' WHERE a=10228; UPDATE t2 SET c='ninety-five thousand three hundred ninety-seven' WHERE a=10229; UPDATE t2 SET c='twenty-four thousand six hundred forty-six' WHERE a=10230; UPDATE t2 SET c='twenty thousand eight hundred sixty-nine' WHERE a=10231; UPDATE t2 SET c='fifty-one thousand two hundred thirty-nine' WHERE a=10232; UPDATE t2 SET c='twenty-three thousand four hundred thirty-four' WHERE a=10233; UPDATE t2 SET c='twenty-one thousand eighty' WHERE a=10234; UPDATE t2 SET c='eighty-six thousand seven hundred sixty-four' WHERE a=10235; UPDATE t2 SET c='thirty thousand one hundred ninety-four' WHERE a=10236; UPDATE t2 SET c='fifty-three thousand seventy-four' WHERE a=10237; UPDATE t2 SET c='ninety-five thousand two hundred fourteen' WHERE a=10238; UPDATE t2 SET c='eighty-five thousand six hundred sixty-eight' WHERE a=10239; UPDATE t2 SET c='seventy-eight thousand one hundred fifty-five' WHERE a=10240; UPDATE t2 SET c='thirty-four thousand one hundred forty-eight' WHERE a=10241; UPDATE t2 SET c='ninety-three thousand seven hundred twenty-five' WHERE a=10242; UPDATE t2 SET c='twenty-four thousand fifty' WHERE a=10243; UPDATE t2 SET c='forty-one thousand nine hundred sixteen' WHERE a=10244; UPDATE t2 SET c='twenty-eight thousand seven hundred thirty' WHERE a=10245; UPDATE t2 SET c='fifty-five thousand five hundred sixty-eight' WHERE a=10246; UPDATE t2 SET c='eight thousand seven hundred thirteen' WHERE a=10247; UPDATE t2 SET c='three thousand five hundred eighty-five' WHERE a=10248; UPDATE t2 SET c='thirty-seven thousand five hundred sixty-nine' WHERE a=10249; UPDATE t2 SET c='twenty thousand seven hundred eighty-two' WHERE a=10250; UPDATE t2 SET c='fifty-four thousand six hundred sixty-eight' WHERE a=10251; UPDATE t2 SET c='sixty-two thousand one hundred ninety-five' WHERE a=10252; UPDATE t2 SET c='eighty-two thousand four hundred three' WHERE a=10253; UPDATE t2 SET c='eighty-two thousand four hundred thirty-one' WHERE a=10254; UPDATE t2 SET c='thirty-four thousand five hundred one' WHERE a=10255; UPDATE t2 SET c='nine thousand nine hundred sixty-six' WHERE a=10256; UPDATE t2 SET c='sixty-three thousand seven hundred ninety-three' WHERE a=10257; UPDATE t2 SET c='eighteen thousand five hundred sixty-four' WHERE a=10258; UPDATE t2 SET c='sixty-two thousand three hundred ninety-six' WHERE a=10259; UPDATE t2 SET c='eighty-nine thousand two hundred sixty-one' WHERE a=10260; UPDATE t2 SET c='thirty-nine thousand nine hundred thirty-seven' WHERE a=10261; UPDATE t2 SET c='one thousand five hundred eighty-two' WHERE a=10262; UPDATE t2 SET c='twenty-two thousand five hundred eighty' WHERE a=10263; UPDATE t2 SET c='fourteen thousand eight hundred sixty-seven' WHERE a=10264; UPDATE t2 SET c='fifty-nine thousand one hundred sixty' WHERE a=10265; UPDATE t2 SET c='fifty-eight thousand two hundred eighty-seven' WHERE a=10266; UPDATE t2 SET c='ninety-four thousand four hundred nine' WHERE a=10267; UPDATE t2 SET c='twenty-nine thousand five hundred twenty-two' WHERE a=10268; UPDATE t2 SET c='sixty-four thousand seven hundred fifty-three' WHERE a=10269; UPDATE t2 SET c='ninety-eight thousand fifty-four' WHERE a=10270; UPDATE t2 SET c='twenty-one thousand one hundred' WHERE a=10271; UPDATE t2 SET c='eighty-two thousand three hundred sixty-two' WHERE a=10272; UPDATE t2 SET c='seventy-seven thousand eight hundred forty-one' WHERE a=10273; UPDATE t2 SET c='fifty-four thousand two hundred fifty-seven' WHERE a=10274; UPDATE t2 SET c='two thousand eight' WHERE a=10275; UPDATE t2 SET c='thirty-four thousand nine hundred seventy-two' WHERE a=10276; UPDATE t2 SET c='thirty-five thousand seventy-eight' WHERE a=10277; UPDATE t2 SET c='seventy-nine thousand eight hundred fifty-five' WHERE a=10278; UPDATE t2 SET c='fifty-three thousand six hundred sixty' WHERE a=10279; UPDATE t2 SET c='eighty-seven thousand two hundred fifty-four' WHERE a=10280; UPDATE t2 SET c='seventy thousand seven hundred twenty-four' WHERE a=10281; UPDATE t2 SET c='sixty-three thousand three hundred forty' WHERE a=10282; UPDATE t2 SET c='sixteen thousand eight hundred seventy-five' WHERE a=10283; UPDATE t2 SET c='eighty-four thousand two hundred sixty-one' WHERE a=10284; UPDATE t2 SET c='fifty-nine thousand two hundred forty-six' WHERE a=10285; UPDATE t2 SET c='ninety-nine thousand nine hundred three' WHERE a=10286; UPDATE t2 SET c='sixty-six thousand two hundred seventy-eight' WHERE a=10287; UPDATE t2 SET c='forty-six thousand one hundred forty-seven' WHERE a=10288; UPDATE t2 SET c='nineteen thousand eight hundred thirty-three' WHERE a=10289; UPDATE t2 SET c='sixty-five thousand one hundred ninety-eight' WHERE a=10290; UPDATE t2 SET c='fifty-seven thousand four hundred fifty-four' WHERE a=10291; UPDATE t2 SET c='twelve thousand four hundred three' WHERE a=10292; UPDATE t2 SET c='eighty-four thousand nine hundred fifty-six' WHERE a=10293; UPDATE t2 SET c='sixty-one thousand six hundred thirty-five' WHERE a=10294; UPDATE t2 SET c='four thousand eight hundred forty-five' WHERE a=10295; UPDATE t2 SET c='sixty-three thousand three hundred thirty-eight' WHERE a=10296; UPDATE t2 SET c='seventy-seven thousand seven hundred twenty-eight' WHERE a=10297; UPDATE t2 SET c='twenty-six thousand six hundred sixty-six' WHERE a=10298; UPDATE t2 SET c='fifty thousand six hundred twenty-seven' WHERE a=10299; UPDATE t2 SET c='fifty thousand three hundred ninety-nine' WHERE a=10300; UPDATE t2 SET c='thirty-eight thousand four hundred twenty-nine' WHERE a=10301; UPDATE t2 SET c='nine thousand three hundred eighty-seven' WHERE a=10302; UPDATE t2 SET c='seventy-nine thousand ninety-three' WHERE a=10303; UPDATE t2 SET c='sixty-nine thousand eight hundred four' WHERE a=10304; UPDATE t2 SET c='seventy-two thousand nine hundred fifty-four' WHERE a=10305; UPDATE t2 SET c='sixty-one thousand four hundred fifty-four' WHERE a=10306; UPDATE t2 SET c='ninety-seven thousand one hundred twenty-one' WHERE a=10307; UPDATE t2 SET c='ninety-six thousand eight hundred fifty-two' WHERE a=10308; UPDATE t2 SET c='fifty-six thousand seven hundred thirty-three' WHERE a=10309; UPDATE t2 SET c='eighty-three thousand one hundred ninety-eight' WHERE a=10310; UPDATE t2 SET c='eighty-five thousand eight hundred seventy-eight' WHERE a=10311; UPDATE t2 SET c='eighty thousand seven hundred seventeen' WHERE a=10312; UPDATE t2 SET c='seventy-two thousand one hundred fifty-six' WHERE a=10313; UPDATE t2 SET c='thirty-nine thousand three hundred forty-three' WHERE a=10314; UPDATE t2 SET c='eighty-two' WHERE a=10315; UPDATE t2 SET c='sixty-seven thousand two hundred seventy' WHERE a=10316; UPDATE t2 SET c='seventy-six thousand four hundred forty-four' WHERE a=10317; UPDATE t2 SET c='fifteen thousand six hundred' WHERE a=10318; UPDATE t2 SET c='eighty-five thousand six hundred forty' WHERE a=10319; UPDATE t2 SET c='sixty-four thousand nine hundred eighty-two' WHERE a=10320; UPDATE t2 SET c='four thousand six hundred six' WHERE a=10321; UPDATE t2 SET c='seventy-two thousand four hundred forty-seven' WHERE a=10322; UPDATE t2 SET c='sixty-eight thousand eight hundred fifty-eight' WHERE a=10323; UPDATE t2 SET c='seventy-four thousand two hundred twenty-one' WHERE a=10324; UPDATE t2 SET c='seventy-three thousand five hundred seventy-seven' WHERE a=10325; UPDATE t2 SET c='fifty-two thousand one hundred four' WHERE a=10326; UPDATE t2 SET c='fifty-six thousand five hundred forty-six' WHERE a=10327; UPDATE t2 SET c='fifty-four thousand one hundred thirty-one' WHERE a=10328; UPDATE t2 SET c='fifty-three thousand one hundred seventy-one' WHERE a=10329; UPDATE t2 SET c='sixty-four thousand six hundred fifty-three' WHERE a=10330; UPDATE t2 SET c='sixty-six thousand eight hundred ninety-one' WHERE a=10331; UPDATE t2 SET c='fifty-nine thousand nine hundred eighteen' WHERE a=10332; UPDATE t2 SET c='six thousand seven hundred thirty' WHERE a=10333; UPDATE t2 SET c='twenty-six thousand one hundred twelve' WHERE a=10334; UPDATE t2 SET c='fourteen thousand six hundred eleven' WHERE a=10335; UPDATE t2 SET c='sixty-one thousand two hundred ninety-four' WHERE a=10336; UPDATE t2 SET c='fifty thousand nine hundred twelve' WHERE a=10337; UPDATE t2 SET c='one thousand five hundred sixty-two' WHERE a=10338; UPDATE t2 SET c='twenty-four thousand nine hundred sixty-nine' WHERE a=10339; UPDATE t2 SET c='three hundred fifty-eight' WHERE a=10340; UPDATE t2 SET c='thirty-five thousand four hundred eighty-eight' WHERE a=10341; UPDATE t2 SET c='sixteen thousand nine hundred twelve' WHERE a=10342; UPDATE t2 SET c='sixty-nine thousand nine hundred fifty-eight' WHERE a=10343; UPDATE t2 SET c='seventy-eight thousand seven hundred twenty-one' WHERE a=10344; UPDATE t2 SET c='thirty-seven thousand one' WHERE a=10345; UPDATE t2 SET c='seventy-five thousand nine hundred seven' WHERE a=10346; UPDATE t2 SET c='sixty-nine thousand nine hundred eighty-five' WHERE a=10347; UPDATE t2 SET c='twenty-seven thousand eight hundred sixty-seven' WHERE a=10348; UPDATE t2 SET c='ninety-five thousand forty-eight' WHERE a=10349; UPDATE t2 SET c='eighty-two thousand nine hundred fourteen' WHERE a=10350; UPDATE t2 SET c='forty-four thousand four hundred sixty-four' WHERE a=10351; UPDATE t2 SET c='five thousand three hundred twenty-seven' WHERE a=10352; UPDATE t2 SET c='ninety-eight thousand seven hundred eleven' WHERE a=10353; UPDATE t2 SET c='seventy-one thousand four hundred one' WHERE a=10354; UPDATE t2 SET c='sixty-six thousand eighty-nine' WHERE a=10355; UPDATE t2 SET c='seventy-eight thousand nineteen' WHERE a=10356; UPDATE t2 SET c='twenty-one thousand sixty-seven' WHERE a=10357; UPDATE t2 SET c='one thousand five hundred seventy' WHERE a=10358; UPDATE t2 SET c='ninety-six thousand one hundred twenty-one' WHERE a=10359; UPDATE t2 SET c='sixty-four thousand two hundred twelve' WHERE a=10360; UPDATE t2 SET c='sixty thousand thirty-four' WHERE a=10361; UPDATE t2 SET c='nineteen thousand three hundred fifty' WHERE a=10362; UPDATE t2 SET c='twenty-four thousand five hundred fourteen' WHERE a=10363; UPDATE t2 SET c='seventy-five thousand five hundred thirty-nine' WHERE a=10364; UPDATE t2 SET c='eighty-eight thousand two hundred twenty-three' WHERE a=10365; UPDATE t2 SET c='seventy-four thousand eight hundred fifty-nine' WHERE a=10366; UPDATE t2 SET c='forty-four thousand two hundred twelve' WHERE a=10367; UPDATE t2 SET c='twelve thousand eight' WHERE a=10368; UPDATE t2 SET c='ten thousand six hundred forty-nine' WHERE a=10369; UPDATE t2 SET c='thirty-nine thousand two hundred forty-two' WHERE a=10370; UPDATE t2 SET c='forty-four thousand five hundred fourteen' WHERE a=10371; UPDATE t2 SET c='ninety thousand two hundred thirty-three' WHERE a=10372; UPDATE t2 SET c='fourteen thousand four hundred thirty-six' WHERE a=10373; UPDATE t2 SET c='eight thousand nine hundred seventeen' WHERE a=10374; UPDATE t2 SET c='forty-one thousand two hundred sixty-seven' WHERE a=10375; UPDATE t2 SET c='twenty-seven thousand three hundred eighty-nine' WHERE a=10376; UPDATE t2 SET c='eighty-nine thousand seven hundred six' WHERE a=10377; UPDATE t2 SET c='twenty-two thousand eight hundred twenty-nine' WHERE a=10378; UPDATE t2 SET c='forty-nine thousand three hundred eighty-five' WHERE a=10379; UPDATE t2 SET c='fifty thousand four hundred seventeen' WHERE a=10380; UPDATE t2 SET c='eighty-seven thousand six hundred thirty-eight' WHERE a=10381; UPDATE t2 SET c='eighty-five thousand twenty-five' WHERE a=10382; UPDATE t2 SET c='eleven thousand six hundred seventy-five' WHERE a=10383; UPDATE t2 SET c='three thousand nine hundred thirty-three' WHERE a=10384; UPDATE t2 SET c='sixty-three thousand two hundred sixty-five' WHERE a=10385; UPDATE t2 SET c='seventy-eight thousand one hundred fifty-five' WHERE a=10386; UPDATE t2 SET c='sixty-four thousand two hundred twenty-nine' WHERE a=10387; UPDATE t2 SET c='seventy-one thousand four hundred eighty-eight' WHERE a=10388; UPDATE t2 SET c='three thousand three hundred thirty-three' WHERE a=10389; UPDATE t2 SET c='fifty-one thousand one hundred fifty-five' WHERE a=10390; UPDATE t2 SET c='fifty-eight thousand eight hundred twenty-eight' WHERE a=10391; UPDATE t2 SET c='forty-five thousand six hundred fifty' WHERE a=10392; UPDATE t2 SET c='seven thousand five hundred thirty-nine' WHERE a=10393; UPDATE t2 SET c='twenty-six thousand four hundred ninety-seven' WHERE a=10394; UPDATE t2 SET c='fifty-four thousand seven hundred six' WHERE a=10395; UPDATE t2 SET c='nineteen thousand seventy-seven' WHERE a=10396; UPDATE t2 SET c='seventy-two thousand three hundred seventy-three' WHERE a=10397; UPDATE t2 SET c='forty-nine thousand three hundred thirty-five' WHERE a=10398; UPDATE t2 SET c='ninety-one thousand four hundred forty-eight' WHERE a=10399; UPDATE t2 SET c='ninety-nine thousand two hundred forty-four' WHERE a=10400; UPDATE t2 SET c='seventy-two thousand four hundred eighty-nine' WHERE a=10401; UPDATE t2 SET c='fifty-seven thousand seven hundred fifty-two' WHERE a=10402; UPDATE t2 SET c='ten thousand one hundred sixty' WHERE a=10403; UPDATE t2 SET c='fifty-six thousand four hundred ninety-seven' WHERE a=10404; UPDATE t2 SET c='twenty-two thousand two hundred thirty-nine' WHERE a=10405; UPDATE t2 SET c='ninety-seven thousand seven hundred forty-seven' WHERE a=10406; UPDATE t2 SET c='eighty-six thousand forty-five' WHERE a=10407; UPDATE t2 SET c='fifty thousand two hundred eighty-two' WHERE a=10408; UPDATE t2 SET c='seventy-nine thousand eighty-eight' WHERE a=10409; UPDATE t2 SET c='sixty-six thousand seven hundred ninety-six' WHERE a=10410; UPDATE t2 SET c='eight thousand nine hundred fifty-seven' WHERE a=10411; UPDATE t2 SET c='forty-six thousand two hundred seventy-six' WHERE a=10412; UPDATE t2 SET c='fourteen thousand six hundred twenty-seven' WHERE a=10413; UPDATE t2 SET c='fourteen thousand four hundred five' WHERE a=10414; UPDATE t2 SET c='eighty-seven thousand four hundred twenty-nine' WHERE a=10415; UPDATE t2 SET c='fifty-three thousand five hundred eighty-four' WHERE a=10416; UPDATE t2 SET c='forty-one thousand six hundred thirty-eight' WHERE a=10417; UPDATE t2 SET c='ten thousand ninety' WHERE a=10418; UPDATE t2 SET c='thirty-one thousand eight hundred ten' WHERE a=10419; UPDATE t2 SET c='five thousand nine hundred sixteen' WHERE a=10420; UPDATE t2 SET c='twenty-four thousand forty-eight' WHERE a=10421; UPDATE t2 SET c='ten thousand ninety-two' WHERE a=10422; UPDATE t2 SET c='fifteen thousand five hundred ninety-four' WHERE a=10423; UPDATE t2 SET c='three thousand six hundred ninety-five' WHERE a=10424; UPDATE t2 SET c='seventy-four thousand nine hundred thirty-one' WHERE a=10425; UPDATE t2 SET c='seventy-two thousand two hundred seventy-five' WHERE a=10426; UPDATE t2 SET c='forty-two thousand ninety-one' WHERE a=10427; UPDATE t2 SET c='twenty-two thousand three hundred thirty-eight' WHERE a=10428; UPDATE t2 SET c='ninety-eight thousand seven hundred thirty-nine' WHERE a=10429; UPDATE t2 SET c='twenty thousand nine hundred sixty-seven' WHERE a=10430; UPDATE t2 SET c='thirty-two thousand five hundred twenty-nine' WHERE a=10431; UPDATE t2 SET c='eleven thousand forty-three' WHERE a=10432; UPDATE t2 SET c='twelve thousand seven hundred' WHERE a=10433; UPDATE t2 SET c='seventy thousand four' WHERE a=10434; UPDATE t2 SET c='fifty-three thousand seven hundred' WHERE a=10435; UPDATE t2 SET c='fifty-eight thousand five hundred thirty-nine' WHERE a=10436; UPDATE t2 SET c='twenty thousand two hundred five' WHERE a=10437; UPDATE t2 SET c='fifty thousand six hundred twenty-eight' WHERE a=10438; UPDATE t2 SET c='eighty-three thousand seven hundred sixteen' WHERE a=10439; UPDATE t2 SET c='fifteen thousand two hundred seventy-seven' WHERE a=10440; UPDATE t2 SET c='eighty thousand nine hundred eighty-seven' WHERE a=10441; UPDATE t2 SET c='ninety-nine thousand one hundred eighty-eight' WHERE a=10442; UPDATE t2 SET c='forty-nine thousand one hundred seventy-three' WHERE a=10443; UPDATE t2 SET c='fifty-five thousand eight hundred ninety-two' WHERE a=10444; UPDATE t2 SET c='eighty-nine thousand two hundred ninety-five' WHERE a=10445; UPDATE t2 SET c='seventy-seven thousand five hundred forty-three' WHERE a=10446; UPDATE t2 SET c='ninety-two thousand seven hundred seventy-two' WHERE a=10447; UPDATE t2 SET c='eight thousand three hundred fifty-one' WHERE a=10448; UPDATE t2 SET c='twenty-three thousand three hundred twenty' WHERE a=10449; UPDATE t2 SET c='ninety-six thousand two hundred eighteen' WHERE a=10450; UPDATE t2 SET c='sixty thousand eight hundred twenty-five' WHERE a=10451; UPDATE t2 SET c='thirty-one thousand one hundred two' WHERE a=10452; UPDATE t2 SET c='eighty-nine thousand three hundred fifty' WHERE a=10453; UPDATE t2 SET c='ninety thousand eight hundred forty-seven' WHERE a=10454; UPDATE t2 SET c='sixty-two thousand thirty' WHERE a=10455; UPDATE t2 SET c='eleven thousand three hundred fifty-five' WHERE a=10456; UPDATE t2 SET c='seventy thousand nine hundred eighty-one' WHERE a=10457; UPDATE t2 SET c='eighty-six thousand nine hundred forty-seven' WHERE a=10458; UPDATE t2 SET c='twenty-nine thousand nine hundred twenty-two' WHERE a=10459; UPDATE t2 SET c='ninety-three thousand six hundred thirty-four' WHERE a=10460; UPDATE t2 SET c='thirty-one thousand five hundred eighty-four' WHERE a=10461; UPDATE t2 SET c='fifty-one thousand eight hundred fifty-nine' WHERE a=10462; UPDATE t2 SET c='ninety-eight thousand seven hundred eighty-two' WHERE a=10463; UPDATE t2 SET c='fifty-five thousand fifteen' WHERE a=10464; UPDATE t2 SET c='eighteen thousand seven hundred ninety-nine' WHERE a=10465; UPDATE t2 SET c='ninety-eight thousand eight hundred thirteen' WHERE a=10466; UPDATE t2 SET c='thirty-four thousand eight hundred fifty-two' WHERE a=10467; UPDATE t2 SET c='sixteen thousand one hundred twenty-six' WHERE a=10468; UPDATE t2 SET c='eighty-seven thousand six hundred eighty-nine' WHERE a=10469; UPDATE t2 SET c='eighty-six thousand nine hundred twenty-seven' WHERE a=10470; UPDATE t2 SET c='seventy-three thousand two hundred eighty-seven' WHERE a=10471; UPDATE t2 SET c='eighty-nine thousand one hundred eighty-five' WHERE a=10472; UPDATE t2 SET c='twenty thousand six hundred forty-seven' WHERE a=10473; UPDATE t2 SET c='fifty-eight thousand three hundred sixty-nine' WHERE a=10474; UPDATE t2 SET c='thirty-three thousand eight hundred sixty-four' WHERE a=10475; UPDATE t2 SET c='thirty-eight thousand three hundred thirty-three' WHERE a=10476; UPDATE t2 SET c='twenty-eight thousand one hundred twelve' WHERE a=10477; UPDATE t2 SET c='thirty-five thousand nine hundred eighteen' WHERE a=10478; UPDATE t2 SET c='eleven thousand seven hundred seven' WHERE a=10479; UPDATE t2 SET c='seventy-seven thousand six hundred fifty-nine' WHERE a=10480; UPDATE t2 SET c='eighty-five thousand two hundred twenty-one' WHERE a=10481; UPDATE t2 SET c='seventy-one thousand five hundred ninety-four' WHERE a=10482; UPDATE t2 SET c='eighty-five thousand two hundred ninety-seven' WHERE a=10483; UPDATE t2 SET c='thirty-five thousand six hundred ninety' WHERE a=10484; UPDATE t2 SET c='fifty-one thousand nine hundred ninety-two' WHERE a=10485; UPDATE t2 SET c='nineteen thousand ninety-five' WHERE a=10486; UPDATE t2 SET c='eighty-two thousand six hundred eighty-nine' WHERE a=10487; UPDATE t2 SET c='forty-eight thousand eight hundred ninety-seven' WHERE a=10488; UPDATE t2 SET c='five thousand four hundred nineteen' WHERE a=10489; UPDATE t2 SET c='thirty thousand five hundred seventy-five' WHERE a=10490; UPDATE t2 SET c='forty-five thousand five hundred forty-five' WHERE a=10491; UPDATE t2 SET c='ninety-one thousand four hundred ninety-eight' WHERE a=10492; UPDATE t2 SET c='twenty-two thousand one hundred seventy-eight' WHERE a=10493; UPDATE t2 SET c='eighty-five thousand four hundred thirty-seven' WHERE a=10494; UPDATE t2 SET c='forty-two thousand three hundred forty-four' WHERE a=10495; UPDATE t2 SET c='one thousand two hundred fifty-eight' WHERE a=10496; UPDATE t2 SET c='thirty-seven thousand three hundred thirty-one' WHERE a=10497; UPDATE t2 SET c='twelve thousand nine hundred seventy-six' WHERE a=10498; UPDATE t2 SET c='twenty-two thousand four hundred eighty-three' WHERE a=10499; UPDATE t2 SET c='fifty-nine thousand three hundred sixty' WHERE a=10500; UPDATE t2 SET c='fifty-three thousand sixty-five' WHERE a=10501; UPDATE t2 SET c='twelve thousand seven hundred ninety-five' WHERE a=10502; UPDATE t2 SET c='sixteen thousand seven hundred forty-one' WHERE a=10503; UPDATE t2 SET c='three thousand nine hundred twenty-five' WHERE a=10504; UPDATE t2 SET c='thirteen thousand two hundred eighty-six' WHERE a=10505; UPDATE t2 SET c='forty-six thousand seven hundred forty' WHERE a=10506; UPDATE t2 SET c='sixty-nine thousand twenty' WHERE a=10507; UPDATE t2 SET c='forty-two thousand eight hundred seven' WHERE a=10508; UPDATE t2 SET c='fifty-two thousand two hundred ninety-eight' WHERE a=10509; UPDATE t2 SET c='thirty-four thousand two hundred two' WHERE a=10510; UPDATE t2 SET c='sixty thousand nine hundred fourteen' WHERE a=10511; UPDATE t2 SET c='twenty-five thousand six hundred ninety-nine' WHERE a=10512; UPDATE t2 SET c='ninety thousand nine hundred twenty-one' WHERE a=10513; UPDATE t2 SET c='thirty-five thousand three hundred ninety-four' WHERE a=10514; UPDATE t2 SET c='ninety-eight thousand one hundred fifty-two' WHERE a=10515; UPDATE t2 SET c='thirty-one thousand six hundred eighty-six' WHERE a=10516; UPDATE t2 SET c='seventy thousand nine hundred fifty-four' WHERE a=10517; UPDATE t2 SET c='forty-six thousand nine hundred forty' WHERE a=10518; UPDATE t2 SET c='fourteen thousand six hundred thirty' WHERE a=10519; UPDATE t2 SET c='eighty-eight thousand one hundred eighty-eight' WHERE a=10520; UPDATE t2 SET c='eleven thousand six hundred forty-nine' WHERE a=10521; UPDATE t2 SET c='ninety-four thousand nine hundred eleven' WHERE a=10522; UPDATE t2 SET c='three thousand one hundred ninety-six' WHERE a=10523; UPDATE t2 SET c='eighty-two thousand one hundred fifty-two' WHERE a=10524; UPDATE t2 SET c='twenty-one thousand nine hundred ninety-four' WHERE a=10525; UPDATE t2 SET c='twenty-two thousand seven hundred thirty-two' WHERE a=10526; UPDATE t2 SET c='fifty thousand nine hundred three' WHERE a=10527; UPDATE t2 SET c='thirty-three thousand six hundred seventy-three' WHERE a=10528; UPDATE t2 SET c='twenty-nine thousand three hundred twelve' WHERE a=10529; UPDATE t2 SET c='forty-three thousand nine hundred eighty-four' WHERE a=10530; UPDATE t2 SET c='eighty-seven thousand nine hundred one' WHERE a=10531; UPDATE t2 SET c='five thousand four hundred fifty-three' WHERE a=10532; UPDATE t2 SET c='twelve thousand three hundred thirty-three' WHERE a=10533; UPDATE t2 SET c='thirty thousand six hundred fifty-five' WHERE a=10534; UPDATE t2 SET c='two thousand two hundred forty-four' WHERE a=10535; UPDATE t2 SET c='fifty-six thousand two hundred twenty-eight' WHERE a=10536; UPDATE t2 SET c='twenty-two thousand sixty-three' WHERE a=10537; UPDATE t2 SET c='six thousand six hundred seventy-eight' WHERE a=10538; UPDATE t2 SET c='eight thousand twenty-three' WHERE a=10539; UPDATE t2 SET c='six thousand one hundred ninety' WHERE a=10540; UPDATE t2 SET c='fifty thousand eight hundred sixty-two' WHERE a=10541; UPDATE t2 SET c='forty-two thousand two hundred sixty-five' WHERE a=10542; UPDATE t2 SET c='fifty-seven thousand nine hundred five' WHERE a=10543; UPDATE t2 SET c='ninety-six thousand twenty-six' WHERE a=10544; UPDATE t2 SET c='forty-nine thousand six hundred sixty-three' WHERE a=10545; UPDATE t2 SET c='nineteen thousand seven hundred ninety-five' WHERE a=10546; UPDATE t2 SET c='twenty-four thousand seventy-six' WHERE a=10547; UPDATE t2 SET c='forty-three thousand eight hundred eighty-one' WHERE a=10548; UPDATE t2 SET c='eight thousand five hundred forty-seven' WHERE a=10549; UPDATE t2 SET c='thirty-seven thousand two hundred fifty' WHERE a=10550; UPDATE t2 SET c='twenty-six thousand nine hundred seventy-nine' WHERE a=10551; UPDATE t2 SET c='forty thousand seven hundred seventy-six' WHERE a=10552; UPDATE t2 SET c='eighty-seven thousand three hundred eighty-one' WHERE a=10553; UPDATE t2 SET c='forty-nine thousand eight hundred forty-six' WHERE a=10554; UPDATE t2 SET c='fifty-eight thousand seven hundred nine' WHERE a=10555; UPDATE t2 SET c='fourteen thousand three hundred sixty-five' WHERE a=10556; UPDATE t2 SET c='seventy-seven thousand seven hundred forty-five' WHERE a=10557; UPDATE t2 SET c='four thousand three hundred eighty-two' WHERE a=10558; UPDATE t2 SET c='forty-five thousand four hundred eighty' WHERE a=10559; UPDATE t2 SET c='seventy-two thousand four hundred twenty-nine' WHERE a=10560; UPDATE t2 SET c='thirty-nine thousand seven hundred eighty' WHERE a=10561; UPDATE t2 SET c='forty thousand eighty-four' WHERE a=10562; UPDATE t2 SET c='fifty-seven thousand five hundred forty-four' WHERE a=10563; UPDATE t2 SET c='twenty-five thousand nine hundred fifty' WHERE a=10564; UPDATE t2 SET c='ninety thousand four hundred twenty-two' WHERE a=10565; UPDATE t2 SET c='thirty-three thousand five hundred ninety-five' WHERE a=10566; UPDATE t2 SET c='forty-eight thousand nine hundred thirty-four' WHERE a=10567; UPDATE t2 SET c='ninety-one thousand three hundred ninety-five' WHERE a=10568; UPDATE t2 SET c='seventy thousand six hundred forty-seven' WHERE a=10569; UPDATE t2 SET c='seventy-five thousand three hundred fifty-six' WHERE a=10570; UPDATE t2 SET c='forty-three thousand nine hundred thirty-seven' WHERE a=10571; UPDATE t2 SET c='forty-five thousand forty-three' WHERE a=10572; UPDATE t2 SET c='seven thousand two hundred eighty-four' WHERE a=10573; UPDATE t2 SET c='ninety-one thousand three hundred ninety-three' WHERE a=10574; UPDATE t2 SET c='sixty-one thousand three hundred twenty-four' WHERE a=10575; UPDATE t2 SET c='forty-six thousand three hundred seventy-eight' WHERE a=10576; UPDATE t2 SET c='twenty-one thousand three hundred seventeen' WHERE a=10577; UPDATE t2 SET c='ninety-seven thousand sixty-seven' WHERE a=10578; UPDATE t2 SET c='twenty-two thousand seven hundred sixty' WHERE a=10579; UPDATE t2 SET c='three thousand four hundred sixteen' WHERE a=10580; UPDATE t2 SET c='six thousand six hundred forty-seven' WHERE a=10581; UPDATE t2 SET c='seventy-six thousand five hundred sixty' WHERE a=10582; UPDATE t2 SET c='twelve thousand four hundred sixty-five' WHERE a=10583; UPDATE t2 SET c='ninety-one thousand five hundred sixty-one' WHERE a=10584; UPDATE t2 SET c='two thousand two hundred forty-eight' WHERE a=10585; UPDATE t2 SET c='one thousand one hundred seventy-one' WHERE a=10586; UPDATE t2 SET c='eighty-four thousand forty-nine' WHERE a=10587; UPDATE t2 SET c='thirty-seven thousand three hundred eighty-four' WHERE a=10588; UPDATE t2 SET c='sixty-one thousand nine hundred seventy-four' WHERE a=10589; UPDATE t2 SET c='thirteen thousand four hundred fifty-seven' WHERE a=10590; UPDATE t2 SET c='sixty-three thousand five hundred fifty-eight' WHERE a=10591; UPDATE t2 SET c='ten thousand three hundred ninety-eight' WHERE a=10592; UPDATE t2 SET c='eighty-eight thousand thirty-two' WHERE a=10593; UPDATE t2 SET c='eighty-one thousand two hundred forty-eight' WHERE a=10594; UPDATE t2 SET c='nineteen thousand five hundred seventy' WHERE a=10595; UPDATE t2 SET c='twenty thousand two hundred' WHERE a=10596; UPDATE t2 SET c='seventy-six thousand fifty-four' WHERE a=10597; UPDATE t2 SET c='thirty-one thousand one hundred two' WHERE a=10598; UPDATE t2 SET c='ninety-one thousand two hundred sixty-nine' WHERE a=10599; UPDATE t2 SET c='ninety-two thousand six hundred twenty-two' WHERE a=10600; UPDATE t2 SET c='thirty-six thousand three hundred eighty-eight' WHERE a=10601; UPDATE t2 SET c='sixty-seven thousand eight hundred thirty-nine' WHERE a=10602; UPDATE t2 SET c='fifty-two thousand seven hundred sixty-one' WHERE a=10603; UPDATE t2 SET c='ninety-three thousand four hundred fifty-five' WHERE a=10604; UPDATE t2 SET c='thirty thousand eight hundred sixty' WHERE a=10605; UPDATE t2 SET c='seventeen thousand three hundred thirty-four' WHERE a=10606; UPDATE t2 SET c='ninety-nine thousand one hundred three' WHERE a=10607; UPDATE t2 SET c='twenty-four thousand eight hundred forty-two' WHERE a=10608; UPDATE t2 SET c='fifty-eight thousand one hundred forty-four' WHERE a=10609; UPDATE t2 SET c='eighty thousand seven hundred eighteen' WHERE a=10610; UPDATE t2 SET c='sixty-five thousand nine hundred fifty-nine' WHERE a=10611; UPDATE t2 SET c='fifty-one thousand three hundred nineteen' WHERE a=10612; UPDATE t2 SET c='four thousand seven hundred sixty-six' WHERE a=10613; UPDATE t2 SET c='eighty-six thousand six hundred seventy-nine' WHERE a=10614; UPDATE t2 SET c='forty-three thousand thirty-one' WHERE a=10615; UPDATE t2 SET c='ten thousand one hundred fifty-two' WHERE a=10616; UPDATE t2 SET c='fifty thousand two hundred eighty-five' WHERE a=10617; UPDATE t2 SET c='fourteen thousand eight hundred fifty-six' WHERE a=10618; UPDATE t2 SET c='fifty-five thousand four hundred eighty-two' WHERE a=10619; UPDATE t2 SET c='seventy-five thousand eight hundred twenty-five' WHERE a=10620; UPDATE t2 SET c='twenty-six thousand four hundred seventy-three' WHERE a=10621; UPDATE t2 SET c='eighty-six thousand eight hundred three' WHERE a=10622; UPDATE t2 SET c='sixty-four thousand four hundred eighty-nine' WHERE a=10623; UPDATE t2 SET c='eighty thousand seven hundred ninety-four' WHERE a=10624; UPDATE t2 SET c='twenty-five thousand seven hundred seventy-five' WHERE a=10625; UPDATE t2 SET c='ninety-seven thousand six hundred twenty' WHERE a=10626; UPDATE t2 SET c='sixty-six thousand three hundred thirty-nine' WHERE a=10627; UPDATE t2 SET c='thirty-one thousand six hundred thirteen' WHERE a=10628; UPDATE t2 SET c='fifteen thousand one hundred eighty-six' WHERE a=10629; UPDATE t2 SET c='ninety-seven thousand eight hundred' WHERE a=10630; UPDATE t2 SET c='seventy-nine thousand eight hundred thirty-four' WHERE a=10631; UPDATE t2 SET c='eleven thousand six hundred sixty' WHERE a=10632; UPDATE t2 SET c='seventy thousand seven hundred ninety-eight' WHERE a=10633; UPDATE t2 SET c='fifty-six thousand fifty-three' WHERE a=10634; UPDATE t2 SET c='eighty thousand seven hundred sixty-one' WHERE a=10635; UPDATE t2 SET c='seventy thousand seven hundred ninety-six' WHERE a=10636; UPDATE t2 SET c='eight thousand six hundred sixty-six' WHERE a=10637; UPDATE t2 SET c='forty-nine thousand one hundred ninety-four' WHERE a=10638; UPDATE t2 SET c='sixty-seven thousand seven hundred ninety' WHERE a=10639; UPDATE t2 SET c='thirty-nine thousand seven hundred three' WHERE a=10640; UPDATE t2 SET c='ninety-nine thousand seventy-six' WHERE a=10641; UPDATE t2 SET c='eight thousand one hundred twenty-nine' WHERE a=10642; UPDATE t2 SET c='seventy-eight thousand two hundred thirty-six' WHERE a=10643; UPDATE t2 SET c='four thousand twenty-nine' WHERE a=10644; UPDATE t2 SET c='forty-nine thousand four hundred fifteen' WHERE a=10645; UPDATE t2 SET c='fifty-two thousand four hundred forty-five' WHERE a=10646; UPDATE t2 SET c='thirty thousand four hundred thirteen' WHERE a=10647; UPDATE t2 SET c='six thousand four hundred seventeen' WHERE a=10648; UPDATE t2 SET c='ninety-four thousand one hundred nineteen' WHERE a=10649; UPDATE t2 SET c='thirty-one thousand nine hundred eighty' WHERE a=10650; UPDATE t2 SET c='sixty-two thousand one hundred fifty' WHERE a=10651; UPDATE t2 SET c='sixty thousand six hundred thirty-three' WHERE a=10652; UPDATE t2 SET c='three thousand six hundred fifty' WHERE a=10653; UPDATE t2 SET c='nineteen thousand one hundred twenty-five' WHERE a=10654; UPDATE t2 SET c='twenty-one thousand eight hundred fifty-three' WHERE a=10655; UPDATE t2 SET c='eighteen thousand one hundred eighty-seven' WHERE a=10656; UPDATE t2 SET c='six thousand one hundred twenty-nine' WHERE a=10657; UPDATE t2 SET c='twenty-seven thousand nine hundred seventy-one' WHERE a=10658; UPDATE t2 SET c='ninety-two thousand six hundred eighty' WHERE a=10659; UPDATE t2 SET c='forty-seven thousand six hundred forty-five' WHERE a=10660; UPDATE t2 SET c='forty-nine thousand one hundred eight' WHERE a=10661; UPDATE t2 SET c='sixty-three thousand two hundred eighty' WHERE a=10662; UPDATE t2 SET c='eighty-two thousand eight hundred twenty-one' WHERE a=10663; UPDATE t2 SET c='ninety-two thousand eight hundred ninety-eight' WHERE a=10664; UPDATE t2 SET c='ninety-six thousand five hundred thirty-three' WHERE a=10665; UPDATE t2 SET c='sixty-seven thousand eight hundred one' WHERE a=10666; UPDATE t2 SET c='twelve thousand three hundred seventy' WHERE a=10667; UPDATE t2 SET c='thirty thousand eight hundred seven' WHERE a=10668; UPDATE t2 SET c='fifty-one thousand two hundred sixty-six' WHERE a=10669; UPDATE t2 SET c='eighty-seven thousand twenty-two' WHERE a=10670; UPDATE t2 SET c='eighty-four thousand eighty-seven' WHERE a=10671; UPDATE t2 SET c='forty-one thousand twenty-one' WHERE a=10672; UPDATE t2 SET c='six thousand nine hundred fifty-five' WHERE a=10673; UPDATE t2 SET c='sixty-four thousand two hundred seventy-seven' WHERE a=10674; UPDATE t2 SET c='sixty-three thousand six hundred eighty-five' WHERE a=10675; UPDATE t2 SET c='forty-nine thousand twenty-seven' WHERE a=10676; UPDATE t2 SET c='ninety-three thousand seven hundred forty-four' WHERE a=10677; UPDATE t2 SET c='three thousand five hundred ninety' WHERE a=10678; UPDATE t2 SET c='seventy-one thousand one hundred five' WHERE a=10679; UPDATE t2 SET c='seven hundred eighteen' WHERE a=10680; UPDATE t2 SET c='twenty-eight thousand two hundred ninety-four' WHERE a=10681; UPDATE t2 SET c='ninety-six thousand four hundred thirty-eight' WHERE a=10682; UPDATE t2 SET c='sixty-five thousand nine hundred fourteen' WHERE a=10683; UPDATE t2 SET c='twenty-three thousand five' WHERE a=10684; UPDATE t2 SET c='eighty-seven thousand three hundred three' WHERE a=10685; UPDATE t2 SET c='nineteen thousand one hundred sixty-seven' WHERE a=10686; UPDATE t2 SET c='twenty-three thousand one hundred eleven' WHERE a=10687; UPDATE t2 SET c='seventy-four thousand thirty-nine' WHERE a=10688; UPDATE t2 SET c='thirty-four thousand one hundred seventy-one' WHERE a=10689; UPDATE t2 SET c='twenty-four thousand two hundred twelve' WHERE a=10690; UPDATE t2 SET c='seventy thousand two hundred four' WHERE a=10691; UPDATE t2 SET c='ninety-nine thousand nine hundred thirty-two' WHERE a=10692; UPDATE t2 SET c='thirty-four thousand five hundred ninety-three' WHERE a=10693; UPDATE t2 SET c='thirty-seven thousand seven hundred ninety' WHERE a=10694; UPDATE t2 SET c='fifty-five thousand seven hundred seventy' WHERE a=10695; UPDATE t2 SET c='thirty-four thousand seven hundred twenty-seven' WHERE a=10696; UPDATE t2 SET c='eighty-seven thousand five hundred twenty-two' WHERE a=10697; UPDATE t2 SET c='forty-one thousand nine hundred forty-four' WHERE a=10698; UPDATE t2 SET c='ninety-three thousand five hundred sixty-eight' WHERE a=10699; UPDATE t2 SET c='thirty-five thousand seven hundred seventy-seven' WHERE a=10700; UPDATE t2 SET c='sixty thousand four hundred seventy-one' WHERE a=10701; UPDATE t2 SET c='thirty-eight thousand sixty-eight' WHERE a=10702; UPDATE t2 SET c='thirty-five thousand two hundred ninety-one' WHERE a=10703; UPDATE t2 SET c='forty-three thousand seven hundred fifty-seven' WHERE a=10704; UPDATE t2 SET c='fifty-one thousand two hundred seventy-four' WHERE a=10705; UPDATE t2 SET c='ninety-eight thousand four hundred ninety' WHERE a=10706; UPDATE t2 SET c='four thousand eight hundred forty-eight' WHERE a=10707; UPDATE t2 SET c='thirty-nine thousand five hundred ninety' WHERE a=10708; UPDATE t2 SET c='eighty-six thousand three hundred five' WHERE a=10709; UPDATE t2 SET c='eighteen thousand six hundred twenty' WHERE a=10710; UPDATE t2 SET c='fifty-six thousand three hundred fifty-six' WHERE a=10711; UPDATE t2 SET c='ninety-three thousand one hundred twenty-four' WHERE a=10712; UPDATE t2 SET c='eighty-nine thousand eight hundred seventy-six' WHERE a=10713; UPDATE t2 SET c='fifty-three thousand two hundred thirty-six' WHERE a=10714; UPDATE t2 SET c='nineteen thousand nine hundred seventy-one' WHERE a=10715; UPDATE t2 SET c='fifty thousand three hundred twelve' WHERE a=10716; UPDATE t2 SET c='nine thousand three hundred eighty-five' WHERE a=10717; UPDATE t2 SET c='thirty-eight thousand three hundred forty-one' WHERE a=10718; UPDATE t2 SET c='eighty-eight thousand three hundred twenty' WHERE a=10719; UPDATE t2 SET c='seventy-three thousand seven hundred forty-one' WHERE a=10720; UPDATE t2 SET c='thirty-six thousand eight hundred eighty-seven' WHERE a=10721; UPDATE t2 SET c='ninety-seven thousand fifteen' WHERE a=10722; UPDATE t2 SET c='sixty-three thousand sixty-five' WHERE a=10723; UPDATE t2 SET c='seventy-six thousand seven hundred sixty' WHERE a=10724; UPDATE t2 SET c='eleven thousand nine hundred seventy-four' WHERE a=10725; UPDATE t2 SET c='ninety-eight thousand three hundred ten' WHERE a=10726; UPDATE t2 SET c='twenty-one thousand one hundred forty-nine' WHERE a=10727; UPDATE t2 SET c='seventeen thousand two hundred ninety-one' WHERE a=10728; UPDATE t2 SET c='eighteen thousand nine hundred nineteen' WHERE a=10729; UPDATE t2 SET c='twenty-eight thousand three hundred ninety-three' WHERE a=10730; UPDATE t2 SET c='ninety thousand nine hundred fifty-six' WHERE a=10731; UPDATE t2 SET c='seventy-four thousand seven hundred forty-four' WHERE a=10732; UPDATE t2 SET c='forty-one thousand four hundred forty-two' WHERE a=10733; UPDATE t2 SET c='ninety-seven thousand seven hundred seventy-three' WHERE a=10734; UPDATE t2 SET c='ninety-eight thousand five hundred thirty-eight' WHERE a=10735; UPDATE t2 SET c='eighty-seven thousand two hundred twenty-two' WHERE a=10736; UPDATE t2 SET c='sixty-seven thousand four hundred twenty-nine' WHERE a=10737; UPDATE t2 SET c='thirty-nine thousand six hundred eighty-five' WHERE a=10738; UPDATE t2 SET c='sixty-eight thousand three hundred eighty-one' WHERE a=10739; UPDATE t2 SET c='forty-eight thousand sixty-four' WHERE a=10740; UPDATE t2 SET c='forty-six thousand three hundred ninety-three' WHERE a=10741; UPDATE t2 SET c='sixty-seven thousand five hundred eleven' WHERE a=10742; UPDATE t2 SET c='six thousand eight hundred sixty-three' WHERE a=10743; UPDATE t2 SET c='seventy-two thousand seven hundred one' WHERE a=10744; UPDATE t2 SET c='thirty-six thousand eighteen' WHERE a=10745; UPDATE t2 SET c='seventy-six thousand seven hundred eighty-seven' WHERE a=10746; UPDATE t2 SET c='fifty-one thousand two hundred eighty-three' WHERE a=10747; UPDATE t2 SET c='three thousand ninety-four' WHERE a=10748; UPDATE t2 SET c='eleven thousand eight hundred eighty-four' WHERE a=10749; UPDATE t2 SET c='fifty thousand two hundred eighty-nine' WHERE a=10750; UPDATE t2 SET c='six thousand two hundred forty-six' WHERE a=10751; UPDATE t2 SET c='fifty-four thousand eight hundred fifty-four' WHERE a=10752; UPDATE t2 SET c='four thousand seven hundred ninety-one' WHERE a=10753; UPDATE t2 SET c='eighty-seven thousand eight hundred eighty-three' WHERE a=10754; UPDATE t2 SET c='seventeen thousand five hundred twenty-three' WHERE a=10755; UPDATE t2 SET c='eighty-one thousand two hundred eighty-four' WHERE a=10756; UPDATE t2 SET c='sixty-two thousand two hundred twenty-three' WHERE a=10757; UPDATE t2 SET c='ninety-five thousand four hundred ninety-six' WHERE a=10758; UPDATE t2 SET c='forty-five thousand nine hundred forty-one' WHERE a=10759; UPDATE t2 SET c='twenty-four thousand twenty-seven' WHERE a=10760; UPDATE t2 SET c='eighteen thousand two hundred two' WHERE a=10761; UPDATE t2 SET c='eighty-nine thousand five hundred eighty-seven' WHERE a=10762; UPDATE t2 SET c='twenty-one thousand eighty-nine' WHERE a=10763; UPDATE t2 SET c='four hundred sixty-nine' WHERE a=10764; UPDATE t2 SET c='six thousand twenty' WHERE a=10765; UPDATE t2 SET c='seventy thousand five hundred seventy-seven' WHERE a=10766; UPDATE t2 SET c='sixty-one thousand nine hundred seventy-five' WHERE a=10767; UPDATE t2 SET c='sixty-six thousand four hundred fifty-nine' WHERE a=10768; UPDATE t2 SET c='sixty-nine thousand four hundred thirty-seven' WHERE a=10769; UPDATE t2 SET c='seventy-seven thousand seven hundred thirty-one' WHERE a=10770; UPDATE t2 SET c='ninety-eight thousand three hundred fifty-seven' WHERE a=10771; UPDATE t2 SET c='seventy-three thousand one hundred twenty-nine' WHERE a=10772; UPDATE t2 SET c='seventeen thousand nine hundred sixty-seven' WHERE a=10773; UPDATE t2 SET c='ninety-six thousand five hundred sixty-nine' WHERE a=10774; UPDATE t2 SET c='fifty-three thousand five hundred thirty-five' WHERE a=10775; UPDATE t2 SET c='seventy-two thousand six hundred ninety' WHERE a=10776; UPDATE t2 SET c='forty-one thousand four hundred fifty-eight' WHERE a=10777; UPDATE t2 SET c='ten thousand six hundred one' WHERE a=10778; UPDATE t2 SET c='eighty-eight thousand eight hundred five' WHERE a=10779; UPDATE t2 SET c='fifty-five thousand two hundred thirty-three' WHERE a=10780; UPDATE t2 SET c='seventy-nine thousand three hundred twenty-four' WHERE a=10781; UPDATE t2 SET c='eighty-seven thousand eight hundred eighty-five' WHERE a=10782; UPDATE t2 SET c='forty-three thousand one hundred seventy-six' WHERE a=10783; UPDATE t2 SET c='eighty-four thousand eight hundred sixty-seven' WHERE a=10784; UPDATE t2 SET c='eighty-six thousand six hundred fifty-three' WHERE a=10785; UPDATE t2 SET c='fifty-four thousand six hundred seventy-seven' WHERE a=10786; UPDATE t2 SET c='sixty-four thousand three hundred fifty-three' WHERE a=10787; UPDATE t2 SET c='seventy-eight thousand seven hundred thirty-nine' WHERE a=10788; UPDATE t2 SET c='thirty-eight thousand one hundred fifty-six' WHERE a=10789; UPDATE t2 SET c='two thousand four hundred nine' WHERE a=10790; UPDATE t2 SET c='twenty-three thousand two hundred seven' WHERE a=10791; UPDATE t2 SET c='fifty-one thousand nine hundred fifty-three' WHERE a=10792; UPDATE t2 SET c='fifty-four thousand six hundred nineteen' WHERE a=10793; UPDATE t2 SET c='fifty-five thousand six hundred one' WHERE a=10794; UPDATE t2 SET c='fifty-nine thousand nine hundred thirty-two' WHERE a=10795; UPDATE t2 SET c='eighty-eight thousand three hundred ninety-nine' WHERE a=10796; UPDATE t2 SET c='eighteen thousand five hundred forty-four' WHERE a=10797; UPDATE t2 SET c='eighty thousand nine hundred thirty-nine' WHERE a=10798; UPDATE t2 SET c='seventy-nine thousand eight hundred eight' WHERE a=10799; UPDATE t2 SET c='ninety-three thousand three hundred twenty-three' WHERE a=10800; UPDATE t2 SET c='seventy-one thousand three hundred seventeen' WHERE a=10801; UPDATE t2 SET c='sixty-three thousand four hundred seventeen' WHERE a=10802; UPDATE t2 SET c='sixty-three thousand seven hundred sixty-four' WHERE a=10803; UPDATE t2 SET c='thirty-six thousand nine hundred forty-eight' WHERE a=10804; UPDATE t2 SET c='forty-three thousand six hundred eighty-three' WHERE a=10805; UPDATE t2 SET c='twenty-nine thousand nine hundred ninety-two' WHERE a=10806; UPDATE t2 SET c='sixty thousand eight hundred ninety-eight' WHERE a=10807; UPDATE t2 SET c='ninety-nine thousand one hundred sixty-one' WHERE a=10808; UPDATE t2 SET c='fifty-one thousand three hundred forty' WHERE a=10809; UPDATE t2 SET c='ninety-four thousand two hundred thirty-six' WHERE a=10810; UPDATE t2 SET c='twelve thousand seven hundred twenty-three' WHERE a=10811; UPDATE t2 SET c='thirty-six thousand nine hundred sixty-six' WHERE a=10812; UPDATE t2 SET c='eighty-six thousand eight hundred fifty-two' WHERE a=10813; UPDATE t2 SET c='sixty-four thousand seven hundred thirty-eight' WHERE a=10814; UPDATE t2 SET c='sixty-one thousand thirty-one' WHERE a=10815; UPDATE t2 SET c='seventy-seven thousand two hundred eighty-seven' WHERE a=10816; UPDATE t2 SET c='eighty-five thousand one hundred seventy-seven' WHERE a=10817; UPDATE t2 SET c='twenty-two thousand eight hundred ninety-two' WHERE a=10818; UPDATE t2 SET c='sixty-four thousand seven hundred thirty-three' WHERE a=10819; UPDATE t2 SET c='ninety-nine thousand eighty-three' WHERE a=10820; UPDATE t2 SET c='eleven thousand seven hundred forty' WHERE a=10821; UPDATE t2 SET c='thirty-eight thousand six hundred sixteen' WHERE a=10822; UPDATE t2 SET c='eighty-two thousand two hundred thirty-six' WHERE a=10823; UPDATE t2 SET c='forty-five thousand five hundred ten' WHERE a=10824; UPDATE t2 SET c='ninety-nine thousand seven hundred seventy-five' WHERE a=10825; UPDATE t2 SET c='seventy-six thousand six hundred fifty' WHERE a=10826; UPDATE t2 SET c='twenty-two thousand six hundred six' WHERE a=10827; UPDATE t2 SET c='forty-eight thousand three hundred fifty-seven' WHERE a=10828; UPDATE t2 SET c='fifty-one thousand nine hundred fifty-four' WHERE a=10829; UPDATE t2 SET c='forty-one thousand four hundred thirty-seven' WHERE a=10830; UPDATE t2 SET c='ninety-eight thousand one hundred forty-eight' WHERE a=10831; UPDATE t2 SET c='fifty-nine thousand five hundred fourteen' WHERE a=10832; UPDATE t2 SET c='twenty-six thousand three hundred ninety-seven' WHERE a=10833; UPDATE t2 SET c='forty-eight thousand nine hundred thirty-five' WHERE a=10834; UPDATE t2 SET c='thirty-four thousand six hundred seven' WHERE a=10835; UPDATE t2 SET c='five thousand eight hundred thirty-four' WHERE a=10836; UPDATE t2 SET c='ninety-eight thousand five hundred thirty-one' WHERE a=10837; UPDATE t2 SET c='twenty-two thousand four hundred fifty-three' WHERE a=10838; UPDATE t2 SET c='fifty-three thousand five hundred twenty-two' WHERE a=10839; UPDATE t2 SET c='sixty-eight thousand twenty-one' WHERE a=10840; UPDATE t2 SET c='eighty-one thousand seven hundred fifty-two' WHERE a=10841; UPDATE t2 SET c='seven thousand three hundred twenty-three' WHERE a=10842; UPDATE t2 SET c='fourteen thousand four hundred eighty' WHERE a=10843; UPDATE t2 SET c='ninety-six thousand eight hundred seventy-three' WHERE a=10844; UPDATE t2 SET c='thirty-four thousand two hundred seventy' WHERE a=10845; UPDATE t2 SET c='sixty-three thousand one hundred thirty-seven' WHERE a=10846; UPDATE t2 SET c='sixty-two thousand four hundred eighty-nine' WHERE a=10847; UPDATE t2 SET c='seventeen thousand one hundred thirty-three' WHERE a=10848; UPDATE t2 SET c='sixty-nine thousand seven hundred five' WHERE a=10849; UPDATE t2 SET c='forty-four thousand two hundred thirty-seven' WHERE a=10850; UPDATE t2 SET c='thirty-six thousand seven hundred thirty-six' WHERE a=10851; UPDATE t2 SET c='eighty-nine thousand two hundred sixty-five' WHERE a=10852; UPDATE t2 SET c='twenty thousand two hundred sixty-two' WHERE a=10853; UPDATE t2 SET c='eighty-six thousand seven hundred thirty-two' WHERE a=10854; UPDATE t2 SET c='forty-five thousand six hundred fifteen' WHERE a=10855; UPDATE t2 SET c='eighty thousand seven hundred twenty-five' WHERE a=10856; UPDATE t2 SET c='thirty-two thousand eight hundred ninety-three' WHERE a=10857; UPDATE t2 SET c='seventy-seven thousand three hundred twenty-eight' WHERE a=10858; UPDATE t2 SET c='sixty thousand three hundred eighty' WHERE a=10859; UPDATE t2 SET c='fifty-nine thousand three hundred eighty-five' WHERE a=10860; UPDATE t2 SET c='eighty-eight thousand three hundred eighty-six' WHERE a=10861; UPDATE t2 SET c='twenty-one thousand thirty-two' WHERE a=10862; UPDATE t2 SET c='fifty-three thousand seventy-three' WHERE a=10863; UPDATE t2 SET c='eighty-four thousand seven hundred thirty-two' WHERE a=10864; UPDATE t2 SET c='sixty-seven thousand four hundred six' WHERE a=10865; UPDATE t2 SET c='twenty-six thousand two hundred fifty-two' WHERE a=10866; UPDATE t2 SET c='ninety-six thousand seven hundred seventy-two' WHERE a=10867; UPDATE t2 SET c='sixty-nine thousand five hundred forty' WHERE a=10868; UPDATE t2 SET c='ninety-two thousand six hundred six' WHERE a=10869; UPDATE t2 SET c='sixty-six thousand four hundred ninety-three' WHERE a=10870; UPDATE t2 SET c='nine thousand six hundred two' WHERE a=10871; UPDATE t2 SET c='nine hundred fifty-two' WHERE a=10872; UPDATE t2 SET c='ninety thousand nine hundred eight' WHERE a=10873; UPDATE t2 SET c='seventy-four thousand six hundred eighty-eight' WHERE a=10874; UPDATE t2 SET c='forty-two thousand seven hundred eight' WHERE a=10875; UPDATE t2 SET c='forty-five thousand six hundred seventy-seven' WHERE a=10876; UPDATE t2 SET c='forty-six thousand two hundred eighty-eight' WHERE a=10877; UPDATE t2 SET c='twenty-five thousand two hundred seventy-four' WHERE a=10878; UPDATE t2 SET c='nineteen thousand one hundred ninety-eight' WHERE a=10879; UPDATE t2 SET c='fifty thousand three hundred eighty' WHERE a=10880; UPDATE t2 SET c='seventy thousand five hundred forty-nine' WHERE a=10881; UPDATE t2 SET c='sixty-three thousand four hundred two' WHERE a=10882; UPDATE t2 SET c='thirty-seven thousand five hundred fifty-three' WHERE a=10883; UPDATE t2 SET c='fifty-nine thousand seven hundred thirty' WHERE a=10884; UPDATE t2 SET c='twenty-nine thousand nine hundred thirty-two' WHERE a=10885; UPDATE t2 SET c='eighty-three thousand one hundred fifteen' WHERE a=10886; UPDATE t2 SET c='thirty-three thousand five hundred sixty-two' WHERE a=10887; UPDATE t2 SET c='twenty-nine thousand eight hundred thirty' WHERE a=10888; UPDATE t2 SET c='sixty-seven thousand seven hundred five' WHERE a=10889; UPDATE t2 SET c='eight hundred thirteen' WHERE a=10890; UPDATE t2 SET c='seventeen thousand four hundred eighty' WHERE a=10891; UPDATE t2 SET c='twenty thousand eight hundred six' WHERE a=10892; UPDATE t2 SET c='ninety-eight thousand nine hundred seventy-eight' WHERE a=10893; UPDATE t2 SET c='eighty-nine thousand six hundred eighty-nine' WHERE a=10894; UPDATE t2 SET c='eleven thousand five hundred five' WHERE a=10895; UPDATE t2 SET c='fifty-four thousand seven hundred eighty' WHERE a=10896; UPDATE t2 SET c='forty-eight thousand four hundred nineteen' WHERE a=10897; UPDATE t2 SET c='ninety-seven thousand seven hundred seventy-nine' WHERE a=10898; UPDATE t2 SET c='eighty-one thousand three hundred twenty-four' WHERE a=10899; UPDATE t2 SET c='eighty thousand twenty-four' WHERE a=10900; UPDATE t2 SET c='seventy-six thousand two hundred sixteen' WHERE a=10901; UPDATE t2 SET c='seventy-three thousand thirty' WHERE a=10902; UPDATE t2 SET c='fifty-two thousand nine hundred forty-six' WHERE a=10903; UPDATE t2 SET c='fifty-seven thousand one hundred forty-one' WHERE a=10904; UPDATE t2 SET c='twenty thousand seven hundred eighty-three' WHERE a=10905; UPDATE t2 SET c='ninety-seven thousand four hundred nineteen' WHERE a=10906; UPDATE t2 SET c='eighty-six thousand two hundred sixteen' WHERE a=10907; UPDATE t2 SET c='forty-one thousand eight hundred three' WHERE a=10908; UPDATE t2 SET c='forty-three thousand two hundred sixty-four' WHERE a=10909; UPDATE t2 SET c='seventy-four thousand three hundred seven' WHERE a=10910; UPDATE t2 SET c='thirty-two thousand two hundred ninety-seven' WHERE a=10911; UPDATE t2 SET c='fifty-one thousand nine hundred forty' WHERE a=10912; UPDATE t2 SET c='thirty thousand two hundred seventy-three' WHERE a=10913; UPDATE t2 SET c='seven thousand six hundred five' WHERE a=10914; UPDATE t2 SET c='thirty-three thousand seven hundred seven' WHERE a=10915; UPDATE t2 SET c='thirty-three thousand two hundred sixteen' WHERE a=10916; UPDATE t2 SET c='seventeen thousand four hundred eighty' WHERE a=10917; UPDATE t2 SET c='sixty-five thousand two hundred fifty-nine' WHERE a=10918; UPDATE t2 SET c='fifty-three thousand three hundred forty' WHERE a=10919; UPDATE t2 SET c='seventy-one thousand one hundred fifty-nine' WHERE a=10920; UPDATE t2 SET c='eighty-nine thousand one hundred fifteen' WHERE a=10921; UPDATE t2 SET c='three thousand nine hundred fifty-four' WHERE a=10922; UPDATE t2 SET c='eighteen thousand eight hundred thirty-eight' WHERE a=10923; UPDATE t2 SET c='seventy-three thousand three hundred thirteen' WHERE a=10924; UPDATE t2 SET c='twenty-five thousand three hundred fifty-one' WHERE a=10925; UPDATE t2 SET c='thirty-one thousand one hundred fifteen' WHERE a=10926; UPDATE t2 SET c='thirty-seven thousand nine hundred twelve' WHERE a=10927; UPDATE t2 SET c='ninety-eight thousand three hundred sixteen' WHERE a=10928; UPDATE t2 SET c='fifty-three thousand four hundred sixty-five' WHERE a=10929; UPDATE t2 SET c='seventy-four thousand three hundred sixty-five' WHERE a=10930; UPDATE t2 SET c='seventy-one thousand four hundred seventeen' WHERE a=10931; UPDATE t2 SET c='sixty-four thousand four hundred eight' WHERE a=10932; UPDATE t2 SET c='eighteen thousand four hundred four' WHERE a=10933; UPDATE t2 SET c='sixty-four thousand five hundred thirty-eight' WHERE a=10934; UPDATE t2 SET c='thirty-five thousand forty-three' WHERE a=10935; UPDATE t2 SET c='fifty-five thousand six hundred eighty' WHERE a=10936; UPDATE t2 SET c='seventy-seven thousand three hundred fifty-six' WHERE a=10937; UPDATE t2 SET c='sixty-seven thousand eight hundred twenty-two' WHERE a=10938; UPDATE t2 SET c='ninety thousand three hundred fifty-six' WHERE a=10939; UPDATE t2 SET c='seventy-four thousand five hundred seventy-two' WHERE a=10940; UPDATE t2 SET c='seventeen thousand six hundred seventy-five' WHERE a=10941; UPDATE t2 SET c='thirty-three thousand six hundred seventy-one' WHERE a=10942; UPDATE t2 SET c='sixty-three thousand five hundred thirty-six' WHERE a=10943; UPDATE t2 SET c='seventy-nine thousand two hundred eighty-three' WHERE a=10944; UPDATE t2 SET c='ninety-four thousand seven hundred eighty-eight' WHERE a=10945; UPDATE t2 SET c='ninety-three thousand one hundred thirty-four' WHERE a=10946; UPDATE t2 SET c='fifty-four thousand five hundred eighty-four' WHERE a=10947; UPDATE t2 SET c='eighty-two thousand two hundred ninety-four' WHERE a=10948; UPDATE t2 SET c='fourteen thousand seven hundred seventy-four' WHERE a=10949; UPDATE t2 SET c='forty-nine thousand five hundred fifty-four' WHERE a=10950; UPDATE t2 SET c='seventy-one thousand forty-six' WHERE a=10951; UPDATE t2 SET c='nineteen thousand five hundred thirty-seven' WHERE a=10952; UPDATE t2 SET c='eighty-two thousand four hundred twenty-four' WHERE a=10953; UPDATE t2 SET c='forty-three thousand one hundred eighty-seven' WHERE a=10954; UPDATE t2 SET c='four thousand nine hundred seventy-eight' WHERE a=10955; UPDATE t2 SET c='fifty-two thousand four hundred ten' WHERE a=10956; UPDATE t2 SET c='one thousand four hundred fifty-one' WHERE a=10957; UPDATE t2 SET c='fifty-eight thousand two hundred fifty-eight' WHERE a=10958; UPDATE t2 SET c='eleven thousand nine hundred forty' WHERE a=10959; UPDATE t2 SET c='twenty thousand three hundred fourteen' WHERE a=10960; UPDATE t2 SET c='sixty-eight thousand four hundred twenty-seven' WHERE a=10961; UPDATE t2 SET c='eight thousand six hundred fifty-nine' WHERE a=10962; UPDATE t2 SET c='sixty-four thousand two hundred thirty-four' WHERE a=10963; UPDATE t2 SET c='seventy-seven thousand seven hundred twenty-seven' WHERE a=10964; UPDATE t2 SET c='twenty thousand seven hundred twenty-two' WHERE a=10965; UPDATE t2 SET c='fifty-nine thousand six hundred forty-five' WHERE a=10966; UPDATE t2 SET c='eighty-six thousand six hundred fifty-nine' WHERE a=10967; UPDATE t2 SET c='forty-five thousand three hundred twenty-one' WHERE a=10968; UPDATE t2 SET c='ninety thousand two hundred thirty-eight' WHERE a=10969; UPDATE t2 SET c='sixty-five thousand eighty-one' WHERE a=10970; UPDATE t2 SET c='eighty-nine thousand three hundred twenty-seven' WHERE a=10971; UPDATE t2 SET c='seventy-three thousand four hundred eighty-eight' WHERE a=10972; UPDATE t2 SET c='eighty-four thousand eight hundred thirty-five' WHERE a=10973; UPDATE t2 SET c='twenty-nine thousand fifty-six' WHERE a=10974; UPDATE t2 SET c='sixty-nine thousand five hundred sixty-three' WHERE a=10975; UPDATE t2 SET c='one thousand two hundred fifteen' WHERE a=10976; UPDATE t2 SET c='thirty-six thousand one hundred ninety-seven' WHERE a=10977; UPDATE t2 SET c='sixty thousand eighty-one' WHERE a=10978; UPDATE t2 SET c='fifty-eight thousand seven hundred twenty-one' WHERE a=10979; UPDATE t2 SET c='twenty-eight thousand five hundred ninety-four' WHERE a=10980; UPDATE t2 SET c='eighty-five thousand eight hundred thirty-one' WHERE a=10981; UPDATE t2 SET c='eighty-nine thousand six hundred thirty-six' WHERE a=10982; UPDATE t2 SET c='sixteen thousand eight hundred seventy-one' WHERE a=10983; UPDATE t2 SET c='twenty-eight thousand four hundred fifty-three' WHERE a=10984; UPDATE t2 SET c='sixteen thousand five hundred eighty-eight' WHERE a=10985; UPDATE t2 SET c='twenty-seven thousand five hundred seventy' WHERE a=10986; UPDATE t2 SET c='eighty-two thousand eight hundred sixty-eight' WHERE a=10987; UPDATE t2 SET c='twenty-three thousand eleven' WHERE a=10988; UPDATE t2 SET c='four thousand seven hundred twenty-two' WHERE a=10989; UPDATE t2 SET c='eighty-eight thousand eighteen' WHERE a=10990; UPDATE t2 SET c='ninety-four thousand three hundred twenty-two' WHERE a=10991; UPDATE t2 SET c='eighty-one thousand eighty' WHERE a=10992; UPDATE t2 SET c='forty-nine thousand four hundred eighty-two' WHERE a=10993; UPDATE t2 SET c='thirty-three thousand four hundred sixty-eight' WHERE a=10994; UPDATE t2 SET c='seventy-one thousand seven hundred eighty-one' WHERE a=10995; UPDATE t2 SET c='eighteen thousand two hundred ten' WHERE a=10996; UPDATE t2 SET c='eighty-one thousand seven hundred sixty-four' WHERE a=10997; UPDATE t2 SET c='twenty-five thousand eight hundred thirteen' WHERE a=10998; UPDATE t2 SET c='five thousand two hundred thirteen' WHERE a=10999; UPDATE t2 SET c='eighty-three thousand eight hundred twenty-one' WHERE a=11000; UPDATE t2 SET c='fourteen thousand seven hundred twenty-four' WHERE a=11001; UPDATE t2 SET c='ninety-four thousand nine hundred seventy-one' WHERE a=11002; UPDATE t2 SET c='forty-five thousand eight hundred two' WHERE a=11003; UPDATE t2 SET c='fifty-one thousand five hundred thirteen' WHERE a=11004; UPDATE t2 SET c='sixty-five thousand sixty-four' WHERE a=11005; UPDATE t2 SET c='seventy-four thousand five hundred ninety-six' WHERE a=11006; UPDATE t2 SET c='four thousand three hundred fifty-one' WHERE a=11007; UPDATE t2 SET c='thirty-two thousand one hundred eighty-nine' WHERE a=11008; UPDATE t2 SET c='sixteen thousand five hundred thirty-four' WHERE a=11009; UPDATE t2 SET c='seven thousand two hundred eighty-one' WHERE a=11010; UPDATE t2 SET c='ninety thousand seven hundred sixty-six' WHERE a=11011; UPDATE t2 SET c='twenty-two thousand three hundred thirty-six' WHERE a=11012; UPDATE t2 SET c='twenty-six thousand nine hundred seventy-four' WHERE a=11013; UPDATE t2 SET c='eighty-three thousand six hundred twenty-one' WHERE a=11014; UPDATE t2 SET c='twenty-six thousand five hundred eighty-nine' WHERE a=11015; UPDATE t2 SET c='eighteen thousand two hundred seventy-one' WHERE a=11016; UPDATE t2 SET c='fifty-six thousand one hundred eight' WHERE a=11017; UPDATE t2 SET c='thirty-six thousand seven hundred seventeen' WHERE a=11018; UPDATE t2 SET c='fifteen thousand eight hundred three' WHERE a=11019; UPDATE t2 SET c='ninety-two thousand two hundred fourteen' WHERE a=11020; UPDATE t2 SET c='forty-one thousand eight hundred forty-seven' WHERE a=11021; UPDATE t2 SET c='thirty-one thousand eight hundred nineteen' WHERE a=11022; UPDATE t2 SET c='fourteen thousand five hundred fifteen' WHERE a=11023; UPDATE t2 SET c='four thousand seven hundred sixty-four' WHERE a=11024; UPDATE t2 SET c='fifty-nine thousand seven hundred fifty' WHERE a=11025; UPDATE t2 SET c='eighty-one thousand three hundred seventy-two' WHERE a=11026; UPDATE t2 SET c='five thousand two hundred seventy-eight' WHERE a=11027; UPDATE t2 SET c='seventy-one thousand three hundred ninety-eight' WHERE a=11028; UPDATE t2 SET c='thirty-two thousand six hundred fifty-eight' WHERE a=11029; UPDATE t2 SET c='sixty-four thousand eight hundred fifteen' WHERE a=11030; UPDATE t2 SET c='eighty-nine thousand six hundred eighty-eight' WHERE a=11031; UPDATE t2 SET c='forty-five thousand five hundred sixty-five' WHERE a=11032; UPDATE t2 SET c='twenty-three thousand eight hundred twenty-four' WHERE a=11033; UPDATE t2 SET c='eighty-five thousand nine hundred sixty' WHERE a=11034; UPDATE t2 SET c='seventy-one thousand one hundred thirty-one' WHERE a=11035; UPDATE t2 SET c='twenty-five thousand five hundred sixty-seven' WHERE a=11036; UPDATE t2 SET c='seventy-one thousand one hundred seventy-five' WHERE a=11037; UPDATE t2 SET c='seventy thousand fifty-two' WHERE a=11038; UPDATE t2 SET c='twenty-five thousand two hundred seventy-one' WHERE a=11039; UPDATE t2 SET c='thirteen thousand four hundred seventy-nine' WHERE a=11040; UPDATE t2 SET c='thirty-seven thousand seven hundred forty-nine' WHERE a=11041; UPDATE t2 SET c='ninety-six thousand two hundred one' WHERE a=11042; UPDATE t2 SET c='ninety-seven thousand eighty-eight' WHERE a=11043; UPDATE t2 SET c='fifty-four thousand four hundred sixty-five' WHERE a=11044; UPDATE t2 SET c='sixty-eight thousand three hundred seven' WHERE a=11045; UPDATE t2 SET c='eighty-six thousand eight hundred fifty-three' WHERE a=11046; UPDATE t2 SET c='eighty-three thousand fifty-five' WHERE a=11047; UPDATE t2 SET c='three thousand nine hundred twenty-nine' WHERE a=11048; UPDATE t2 SET c='eleven thousand eight hundred ninety-three' WHERE a=11049; UPDATE t2 SET c='twelve thousand six hundred seventy-three' WHERE a=11050; UPDATE t2 SET c='fifty-six thousand one hundred two' WHERE a=11051; UPDATE t2 SET c='ninety-three thousand two hundred twenty-eight' WHERE a=11052; UPDATE t2 SET c='forty-five thousand five hundred sixty' WHERE a=11053; UPDATE t2 SET c='three thousand five hundred fifty-five' WHERE a=11054; UPDATE t2 SET c='forty-five thousand seven hundred seventy-seven' WHERE a=11055; UPDATE t2 SET c='sixty-five thousand seven hundred eighty-two' WHERE a=11056; UPDATE t2 SET c='twenty-two thousand seven hundred ninety-one' WHERE a=11057; UPDATE t2 SET c='nine thousand seven hundred sixty-seven' WHERE a=11058; UPDATE t2 SET c='two hundred sixty-two' WHERE a=11059; UPDATE t2 SET c='forty-five thousand sixty-five' WHERE a=11060; UPDATE t2 SET c='fifty-five thousand nine hundred fifty-one' WHERE a=11061; UPDATE t2 SET c='forty-seven thousand four hundred twenty-two' WHERE a=11062; UPDATE t2 SET c='ninety-two thousand seven hundred eleven' WHERE a=11063; UPDATE t2 SET c='ninety-one thousand six hundred forty-one' WHERE a=11064; UPDATE t2 SET c='seventy-six thousand thirty-nine' WHERE a=11065; UPDATE t2 SET c='ninety-four thousand nine hundred eighty-two' WHERE a=11066; UPDATE t2 SET c='nineteen thousand one hundred twenty-six' WHERE a=11067; UPDATE t2 SET c='nine thousand one hundred seventy-nine' WHERE a=11068; UPDATE t2 SET c='thirty-five thousand eighty-two' WHERE a=11069; UPDATE t2 SET c='forty-five thousand four hundred ninety-eight' WHERE a=11070; UPDATE t2 SET c='seventy-one thousand eighty-two' WHERE a=11071; UPDATE t2 SET c='ninety-five thousand four hundred sixty-four' WHERE a=11072; UPDATE t2 SET c='fifty-eight thousand six hundred forty-five' WHERE a=11073; UPDATE t2 SET c='sixty-two thousand fifty' WHERE a=11074; UPDATE t2 SET c='eighty-seven thousand one hundred seventeen' WHERE a=11075; UPDATE t2 SET c='ninety-seven thousand three hundred twenty-eight' WHERE a=11076; UPDATE t2 SET c='eighty-five thousand eight hundred twenty-five' WHERE a=11077; UPDATE t2 SET c='twenty-four thousand one hundred sixty-seven' WHERE a=11078; UPDATE t2 SET c='twenty-nine thousand four hundred sixteen' WHERE a=11079; UPDATE t2 SET c='fifty-three thousand one hundred sixty-five' WHERE a=11080; UPDATE t2 SET c='twenty-one thousand seven hundred six' WHERE a=11081; UPDATE t2 SET c='sixty thousand six hundred fifty-six' WHERE a=11082; UPDATE t2 SET c='fifteen thousand nine hundred twenty-two' WHERE a=11083; UPDATE t2 SET c='seventy-five thousand two hundred one' WHERE a=11084; UPDATE t2 SET c='three thousand four hundred' WHERE a=11085; UPDATE t2 SET c='fifty-seven thousand six hundred ninety-one' WHERE a=11086; UPDATE t2 SET c='twenty-six thousand fourteen' WHERE a=11087; UPDATE t2 SET c='three thousand four hundred eighty-nine' WHERE a=11088; UPDATE t2 SET c='sixty-seven thousand eight hundred sixty-two' WHERE a=11089; UPDATE t2 SET c='eighty-seven thousand fifty' WHERE a=11090; UPDATE t2 SET c='thirteen thousand seven hundred twelve' WHERE a=11091; UPDATE t2 SET c='sixty-one thousand six hundred ninety-three' WHERE a=11092; UPDATE t2 SET c='seventy-three thousand nine hundred fifteen' WHERE a=11093; UPDATE t2 SET c='eighty-seven thousand thirty-six' WHERE a=11094; UPDATE t2 SET c='forty-four thousand three hundred sixty-five' WHERE a=11095; UPDATE t2 SET c='fifty-nine' WHERE a=11096; UPDATE t2 SET c='ninety-six thousand four hundred thirty-seven' WHERE a=11097; UPDATE t2 SET c='forty-one thousand three hundred thirteen' WHERE a=11098; UPDATE t2 SET c='sixty-four thousand five hundred forty-nine' WHERE a=11099; UPDATE t2 SET c='thirty-three thousand eight hundred eight' WHERE a=11100; UPDATE t2 SET c='seventy-seven thousand eight hundred forty-four' WHERE a=11101; UPDATE t2 SET c='fifty thousand forty-one' WHERE a=11102; UPDATE t2 SET c='seventy-four thousand two hundred eleven' WHERE a=11103; UPDATE t2 SET c='eighty-five thousand nine hundred eighty-six' WHERE a=11104; UPDATE t2 SET c='fourteen thousand five hundred seventy-five' WHERE a=11105; UPDATE t2 SET c='twenty-six thousand five hundred forty-two' WHERE a=11106; UPDATE t2 SET c='thirty-five thousand four hundred ninety-eight' WHERE a=11107; UPDATE t2 SET c='sixty-eight thousand six hundred eighteen' WHERE a=11108; UPDATE t2 SET c='ninety-three thousand six hundred seventy-five' WHERE a=11109; UPDATE t2 SET c='seventy-five thousand eight hundred twenty-eight' WHERE a=11110; UPDATE t2 SET c='twenty-three thousand eighty-two' WHERE a=11111; UPDATE t2 SET c='eighty-five thousand four hundred seventy-eight' WHERE a=11112; UPDATE t2 SET c='fifty-eight thousand four hundred sixty-three' WHERE a=11113; UPDATE t2 SET c='forty-nine thousand one hundred seven' WHERE a=11114; UPDATE t2 SET c='sixty-two thousand fifty-one' WHERE a=11115; UPDATE t2 SET c='five thousand six hundred fifty-four' WHERE a=11116; UPDATE t2 SET c='fifty thousand six hundred eighty-nine' WHERE a=11117; UPDATE t2 SET c='fifty-nine thousand three hundred ninety-seven' WHERE a=11118; UPDATE t2 SET c='ninety-three thousand forty-four' WHERE a=11119; UPDATE t2 SET c='sixty-seven thousand twenty' WHERE a=11120; UPDATE t2 SET c='fourteen thousand three hundred seventy-four' WHERE a=11121; UPDATE t2 SET c='one thousand six hundred forty-nine' WHERE a=11122; UPDATE t2 SET c='ninety-nine thousand two hundred sixty-five' WHERE a=11123; UPDATE t2 SET c='twenty thousand three hundred two' WHERE a=11124; UPDATE t2 SET c='twenty-two thousand eight hundred forty-seven' WHERE a=11125; UPDATE t2 SET c='thirty-seven thousand eleven' WHERE a=11126; UPDATE t2 SET c='seven thousand two hundred four' WHERE a=11127; UPDATE t2 SET c='eighty-eight thousand three hundred one' WHERE a=11128; UPDATE t2 SET c='sixteen thousand five hundred ninety-three' WHERE a=11129; UPDATE t2 SET c='forty-six thousand eight hundred thirty-eight' WHERE a=11130; UPDATE t2 SET c='forty-three thousand seven hundred twenty-four' WHERE a=11131; UPDATE t2 SET c='seventy-six thousand two hundred forty-five' WHERE a=11132; UPDATE t2 SET c='thirty thousand six hundred thirty-one' WHERE a=11133; UPDATE t2 SET c='twenty-one thousand five hundred sixty-nine' WHERE a=11134; UPDATE t2 SET c='eighty-six thousand one hundred fourteen' WHERE a=11135; UPDATE t2 SET c='ninety-three thousand five hundred three' WHERE a=11136; UPDATE t2 SET c='seventy-seven thousand six hundred ninety-three' WHERE a=11137; UPDATE t2 SET c='ninety-six thousand nine hundred fifty-eight' WHERE a=11138; UPDATE t2 SET c='fifty-eight thousand eight hundred twenty-six' WHERE a=11139; UPDATE t2 SET c='twelve thousand nine hundred ninety-eight' WHERE a=11140; UPDATE t2 SET c='sixteen thousand one hundred five' WHERE a=11141; UPDATE t2 SET c='seventy-three thousand four hundred sixty-nine' WHERE a=11142; UPDATE t2 SET c='twelve thousand seven hundred eighty-six' WHERE a=11143; UPDATE t2 SET c='fifty-eight thousand eight hundred' WHERE a=11144; UPDATE t2 SET c='sixty-six thousand six hundred four' WHERE a=11145; UPDATE t2 SET c='fifty-three thousand eight hundred eighty-two' WHERE a=11146; UPDATE t2 SET c='eight hundred fifty-five' WHERE a=11147; UPDATE t2 SET c='one thousand nine hundred fifty-nine' WHERE a=11148; UPDATE t2 SET c='seventy-nine thousand three hundred eighty-nine' WHERE a=11149; UPDATE t2 SET c='ninety-nine thousand five hundred thirty-five' WHERE a=11150; UPDATE t2 SET c='eighty-five thousand nine hundred seventy-two' WHERE a=11151; UPDATE t2 SET c='forty-five thousand three hundred fifty-one' WHERE a=11152; UPDATE t2 SET c='sixty-four thousand six hundred sixty-one' WHERE a=11153; UPDATE t2 SET c='thirty thousand eighteen' WHERE a=11154; UPDATE t2 SET c='ninety-five thousand three hundred nine' WHERE a=11155; UPDATE t2 SET c='forty-eight thousand seven hundred thirty-six' WHERE a=11156; UPDATE t2 SET c='ninety thousand one hundred seventy-four' WHERE a=11157; UPDATE t2 SET c='eighty-eight thousand three hundred eighty-nine' WHERE a=11158; UPDATE t2 SET c='fifty thousand nine hundred thirty-seven' WHERE a=11159; UPDATE t2 SET c='sixty-seven thousand five hundred twenty-six' WHERE a=11160; UPDATE t2 SET c='fifty-six thousand five hundred seventy' WHERE a=11161; UPDATE t2 SET c='twenty thousand one hundred forty-nine' WHERE a=11162; UPDATE t2 SET c='nineteen thousand four hundred ninety-two' WHERE a=11163; UPDATE t2 SET c='thirty-one thousand seven hundred forty-three' WHERE a=11164; UPDATE t2 SET c='thirty-four thousand nine hundred sixty-seven' WHERE a=11165; UPDATE t2 SET c='twenty-eight thousand six hundred seventy-four' WHERE a=11166; UPDATE t2 SET c='ninety-two thousand seven hundred twelve' WHERE a=11167; UPDATE t2 SET c='eleven thousand two hundred seventy-four' WHERE a=11168; UPDATE t2 SET c='seventy-nine thousand seven hundred forty-four' WHERE a=11169; UPDATE t2 SET c='eighty-six thousand six hundred sixty-two' WHERE a=11170; UPDATE t2 SET c='fifty-five thousand two' WHERE a=11171; UPDATE t2 SET c='six thousand twenty-three' WHERE a=11172; UPDATE t2 SET c='fifty-three thousand four hundred eighty-seven' WHERE a=11173; UPDATE t2 SET c='thirty-seven thousand two hundred eighty-two' WHERE a=11174; UPDATE t2 SET c='eighty-two thousand five hundred ninety-six' WHERE a=11175; UPDATE t2 SET c='fifty-one thousand one hundred fifty-three' WHERE a=11176; UPDATE t2 SET c='twenty thousand eight hundred ninety-three' WHERE a=11177; UPDATE t2 SET c='twenty-two thousand nine hundred eighteen' WHERE a=11178; UPDATE t2 SET c='seventeen thousand six hundred seventeen' WHERE a=11179; UPDATE t2 SET c='sixty-one thousand one hundred eighty-seven' WHERE a=11180; UPDATE t2 SET c='fifty-seven thousand two hundred fifteen' WHERE a=11181; UPDATE t2 SET c='seventy-seven thousand five hundred fifty-eight' WHERE a=11182; UPDATE t2 SET c='twenty thousand six hundred ten' WHERE a=11183; UPDATE t2 SET c='forty-three thousand three hundred seventy' WHERE a=11184; UPDATE t2 SET c='twenty-five thousand eight hundred fifty' WHERE a=11185; UPDATE t2 SET c='seventy thousand seven hundred fifty-two' WHERE a=11186; UPDATE t2 SET c='eighty-one thousand six hundred ninety-eight' WHERE a=11187; UPDATE t2 SET c='sixty-six thousand nine hundred fourteen' WHERE a=11188; UPDATE t2 SET c='thirty-one thousand one hundred fifty-six' WHERE a=11189; UPDATE t2 SET c='six thousand seven hundred thirty-two' WHERE a=11190; UPDATE t2 SET c='eighty thousand seven hundred fifty-two' WHERE a=11191; UPDATE t2 SET c='twenty-eight thousand two hundred sixteen' WHERE a=11192; UPDATE t2 SET c='fourteen thousand two hundred forty-two' WHERE a=11193; UPDATE t2 SET c='ninety-four thousand five hundred twenty-one' WHERE a=11194; UPDATE t2 SET c='seventy-one thousand two hundred forty-three' WHERE a=11195; UPDATE t2 SET c='fourteen thousand eight hundred seven' WHERE a=11196; UPDATE t2 SET c='twenty-two thousand two hundred twelve' WHERE a=11197; UPDATE t2 SET c='twenty-one thousand two hundred three' WHERE a=11198; UPDATE t2 SET c='ninety thousand fifty-four' WHERE a=11199; UPDATE t2 SET c='sixty-seven thousand nine hundred fifty-seven' WHERE a=11200; UPDATE t2 SET c='seventy-seven thousand three hundred eighty-three' WHERE a=11201; UPDATE t2 SET c='sixty-six thousand one hundred five' WHERE a=11202; UPDATE t2 SET c='thirty-one thousand four hundred twenty-two' WHERE a=11203; UPDATE t2 SET c='forty-eight thousand seven hundred eighty-seven' WHERE a=11204; UPDATE t2 SET c='eighty-nine thousand one hundred forty-one' WHERE a=11205; UPDATE t2 SET c='thirty-four thousand three hundred twenty-six' WHERE a=11206; UPDATE t2 SET c='eighty-eight thousand seven hundred eighty-nine' WHERE a=11207; UPDATE t2 SET c='seven thousand eight hundred twelve' WHERE a=11208; UPDATE t2 SET c='eighty-six thousand six hundred forty-six' WHERE a=11209; UPDATE t2 SET c='eighty-four thousand seven hundred' WHERE a=11210; UPDATE t2 SET c='thirty-nine thousand six hundred ninety-two' WHERE a=11211; UPDATE t2 SET c='forty-seven thousand one hundred fifty' WHERE a=11212; UPDATE t2 SET c='sixty-one thousand two hundred fifty-three' WHERE a=11213; UPDATE t2 SET c='twelve thousand eight hundred sixty-eight' WHERE a=11214; UPDATE t2 SET c='eighty-four thousand seven hundred ninety-eight' WHERE a=11215; UPDATE t2 SET c='forty-seven thousand one hundred eight' WHERE a=11216; UPDATE t2 SET c='fifty-six thousand seven hundred forty-two' WHERE a=11217; UPDATE t2 SET c='sixteen thousand four hundred forty-three' WHERE a=11218; UPDATE t2 SET c='forty-five thousand eight hundred sixty-four' WHERE a=11219; UPDATE t2 SET c='sixty-four thousand ninety-two' WHERE a=11220; UPDATE t2 SET c='sixty-five thousand eight hundred forty-four' WHERE a=11221; UPDATE t2 SET c='thirty-four thousand three hundred nine' WHERE a=11222; UPDATE t2 SET c='twenty-five thousand four hundred seventy-nine' WHERE a=11223; UPDATE t2 SET c='seventy thousand eight hundred forty-seven' WHERE a=11224; UPDATE t2 SET c='ninety-nine thousand twenty-two' WHERE a=11225; UPDATE t2 SET c='ninety-two thousand nine hundred sixty-seven' WHERE a=11226; UPDATE t2 SET c='eight thousand five hundred eighty-eight' WHERE a=11227; UPDATE t2 SET c='twenty-four thousand five hundred nineteen' WHERE a=11228; UPDATE t2 SET c='twenty-five thousand nine hundred fifty-four' WHERE a=11229; UPDATE t2 SET c='thirty-one thousand one hundred eighty-nine' WHERE a=11230; UPDATE t2 SET c='eighty-one thousand forty-three' WHERE a=11231; UPDATE t2 SET c='eighty-eight thousand four hundred thirty-six' WHERE a=11232; UPDATE t2 SET c='seventy-six thousand four hundred thirty-six' WHERE a=11233; UPDATE t2 SET c='twenty-seven thousand five hundred seventy-nine' WHERE a=11234; UPDATE t2 SET c='fifty-one thousand eight hundred eighty' WHERE a=11235; UPDATE t2 SET c='fifty-two thousand seven hundred fifty-two' WHERE a=11236; UPDATE t2 SET c='seventy-one thousand two hundred seventy-nine' WHERE a=11237; UPDATE t2 SET c='thirty-five thousand one hundred sixty-six' WHERE a=11238; UPDATE t2 SET c='ninety-six thousand six hundred ninety-nine' WHERE a=11239; UPDATE t2 SET c='sixty-seven thousand five hundred eighty-one' WHERE a=11240; UPDATE t2 SET c='seventy-nine thousand one hundred thirty-one' WHERE a=11241; UPDATE t2 SET c='sixteen thousand forty-nine' WHERE a=11242; UPDATE t2 SET c='forty-five thousand one hundred sixty-eight' WHERE a=11243; UPDATE t2 SET c='eighty-two thousand nine hundred forty' WHERE a=11244; UPDATE t2 SET c='thirteen thousand thirty-six' WHERE a=11245; UPDATE t2 SET c='seven thousand seven hundred twenty' WHERE a=11246; UPDATE t2 SET c='seventy-two thousand nine hundred twenty-five' WHERE a=11247; UPDATE t2 SET c='nine hundred forty-five' WHERE a=11248; UPDATE t2 SET c='twenty-two thousand five hundred eighty-four' WHERE a=11249; UPDATE t2 SET c='ninety-six thousand eighty-five' WHERE a=11250; UPDATE t2 SET c='forty-six thousand eight hundred forty-one' WHERE a=11251; UPDATE t2 SET c='thirty-two thousand six hundred ninety-nine' WHERE a=11252; UPDATE t2 SET c='twenty-two thousand three hundred eighty-nine' WHERE a=11253; UPDATE t2 SET c='six thousand four hundred thirteen' WHERE a=11254; UPDATE t2 SET c='eighty thousand two hundred forty-four' WHERE a=11255; UPDATE t2 SET c='fifty-two thousand seven hundred ninety-seven' WHERE a=11256; UPDATE t2 SET c='eighty-six thousand three hundred twenty-five' WHERE a=11257; UPDATE t2 SET c='fifty-two thousand four hundred six' WHERE a=11258; UPDATE t2 SET c='nine thousand two hundred forty-four' WHERE a=11259; UPDATE t2 SET c='seventy-six thousand eight hundred twenty-seven' WHERE a=11260; UPDATE t2 SET c='sixty-eight thousand nine hundred sixty-six' WHERE a=11261; UPDATE t2 SET c='forty-nine thousand five hundred forty-six' WHERE a=11262; UPDATE t2 SET c='fifty thousand five hundred thirty-seven' WHERE a=11263; UPDATE t2 SET c='eighty-four thousand nine hundred seventy' WHERE a=11264; UPDATE t2 SET c='fifty-two thousand three hundred two' WHERE a=11265; UPDATE t2 SET c='ninety-four thousand three hundred' WHERE a=11266; UPDATE t2 SET c='ninety thousand eight hundred fifty-six' WHERE a=11267; UPDATE t2 SET c='eighty-eight thousand six hundred ninety-one' WHERE a=11268; UPDATE t2 SET c='ninety thousand three hundred forty-seven' WHERE a=11269; UPDATE t2 SET c='seventy-five thousand seven hundred ninety-nine' WHERE a=11270; UPDATE t2 SET c='fourteen thousand four hundred fifty-nine' WHERE a=11271; UPDATE t2 SET c='twenty thousand six hundred seventy-five' WHERE a=11272; UPDATE t2 SET c='ninety thousand one hundred ninety' WHERE a=11273; UPDATE t2 SET c='ninety-nine thousand nine hundred eighty-four' WHERE a=11274; UPDATE t2 SET c='fifteen thousand one hundred thirty-six' WHERE a=11275; UPDATE t2 SET c='sixty-six thousand one hundred two' WHERE a=11276; UPDATE t2 SET c='forty-seven thousand nine hundred nine' WHERE a=11277; UPDATE t2 SET c='twenty-one thousand one hundred seventy-one' WHERE a=11278; UPDATE t2 SET c='eighty-seven thousand four hundred fourteen' WHERE a=11279; UPDATE t2 SET c='sixty-eight thousand nine hundred sixty-one' WHERE a=11280; UPDATE t2 SET c='seventy-two thousand seventy-eight' WHERE a=11281; UPDATE t2 SET c='eighty-nine thousand five hundred six' WHERE a=11282; UPDATE t2 SET c='sixty-four thousand nine hundred fifty-four' WHERE a=11283; UPDATE t2 SET c='twenty-six thousand forty-nine' WHERE a=11284; UPDATE t2 SET c='ninety-two thousand nine hundred sixty-one' WHERE a=11285; UPDATE t2 SET c='forty-six thousand nine hundred eighty-three' WHERE a=11286; UPDATE t2 SET c='forty-nine thousand nine hundred thirty' WHERE a=11287; UPDATE t2 SET c='forty-seven thousand six hundred twenty-four' WHERE a=11288; UPDATE t2 SET c='thirty-six thousand six hundred forty-seven' WHERE a=11289; UPDATE t2 SET c='seventy-six thousand six hundred eight' WHERE a=11290; UPDATE t2 SET c='seventy-seven thousand one hundred twenty' WHERE a=11291; UPDATE t2 SET c='seven thousand four hundred thirteen' WHERE a=11292; UPDATE t2 SET c='eighty-seven thousand sixty-four' WHERE a=11293; UPDATE t2 SET c='four thousand eight hundred eighty' WHERE a=11294; UPDATE t2 SET c='sixty-eight thousand seven hundred eighteen' WHERE a=11295; UPDATE t2 SET c='seventy-one thousand two hundred thirty-seven' WHERE a=11296; UPDATE t2 SET c='sixty-two thousand three hundred thirteen' WHERE a=11297; UPDATE t2 SET c='one thousand sixty-three' WHERE a=11298; UPDATE t2 SET c='twenty-six thousand nine hundred eighty-four' WHERE a=11299; UPDATE t2 SET c='fifty-two thousand four hundred seven' WHERE a=11300; UPDATE t2 SET c='twelve thousand one hundred ninety-four' WHERE a=11301; UPDATE t2 SET c='sixty-five thousand four hundred sixty-four' WHERE a=11302; UPDATE t2 SET c='ninety-five thousand twelve' WHERE a=11303; UPDATE t2 SET c='ninety-three thousand six hundred forty-one' WHERE a=11304; UPDATE t2 SET c='sixteen thousand three hundred twenty-eight' WHERE a=11305; UPDATE t2 SET c='twenty-one thousand five hundred seventy' WHERE a=11306; UPDATE t2 SET c='forty-three thousand one hundred eighty-three' WHERE a=11307; UPDATE t2 SET c='seventy-eight thousand six hundred fifty-six' WHERE a=11308; UPDATE t2 SET c='thirty-nine thousand eight hundred sixty-eight' WHERE a=11309; UPDATE t2 SET c='forty-seven thousand eight hundred seventy-four' WHERE a=11310; UPDATE t2 SET c='seventy-eight thousand four hundred six' WHERE a=11311; UPDATE t2 SET c='fifty-four thousand four hundred thirty-seven' WHERE a=11312; UPDATE t2 SET c='twenty-six thousand forty' WHERE a=11313; UPDATE t2 SET c='fifty-three thousand seven hundred sixty' WHERE a=11314; UPDATE t2 SET c='forty thousand four hundred' WHERE a=11315; UPDATE t2 SET c='thirty-one thousand ten' WHERE a=11316; UPDATE t2 SET c='seventy-seven thousand five hundred seventy-six' WHERE a=11317; UPDATE t2 SET c='seventy-eight thousand six hundred ninety-seven' WHERE a=11318; UPDATE t2 SET c='eighteen thousand eight hundred seventeen' WHERE a=11319; UPDATE t2 SET c='forty-two thousand six hundred seventy-eight' WHERE a=11320; UPDATE t2 SET c='sixty-four thousand one hundred fifty-seven' WHERE a=11321; UPDATE t2 SET c='ten thousand nine hundred forty-eight' WHERE a=11322; UPDATE t2 SET c='eighty thousand two hundred twenty-seven' WHERE a=11323; UPDATE t2 SET c='forty-four thousand thirteen' WHERE a=11324; UPDATE t2 SET c='fifty-one thousand six hundred sixty-six' WHERE a=11325; UPDATE t2 SET c='fifty-six thousand nine hundred forty-six' WHERE a=11326; UPDATE t2 SET c='sixty-five thousand nine hundred eleven' WHERE a=11327; UPDATE t2 SET c='thirty-eight thousand one hundred sixty-nine' WHERE a=11328; UPDATE t2 SET c='sixty-nine thousand seven hundred thirty-nine' WHERE a=11329; UPDATE t2 SET c='twelve thousand ten' WHERE a=11330; UPDATE t2 SET c='twenty-five thousand four hundred eighty' WHERE a=11331; UPDATE t2 SET c='forty thousand one hundred three' WHERE a=11332; UPDATE t2 SET c='thirty-six thousand four hundred forty-nine' WHERE a=11333; UPDATE t2 SET c='thirty-three thousand six hundred four' WHERE a=11334; UPDATE t2 SET c='eleven thousand five hundred nine' WHERE a=11335; UPDATE t2 SET c='fifty-eight thousand thirty-eight' WHERE a=11336; UPDATE t2 SET c='seventy-nine thousand seven hundred forty-five' WHERE a=11337; UPDATE t2 SET c='sixty-seven thousand nine hundred fifty-eight' WHERE a=11338; UPDATE t2 SET c='fifty-three thousand four hundred fifty-nine' WHERE a=11339; UPDATE t2 SET c='twenty-nine thousand ninety-one' WHERE a=11340; UPDATE t2 SET c='thirty-six thousand six hundred fifty-three' WHERE a=11341; UPDATE t2 SET c='twenty-five thousand eight hundred sixteen' WHERE a=11342; UPDATE t2 SET c='eighty-seven thousand three hundred twenty-three' WHERE a=11343; UPDATE t2 SET c='seventy-nine thousand eight hundred sixteen' WHERE a=11344; UPDATE t2 SET c='seventy-six thousand seven hundred seventy' WHERE a=11345; UPDATE t2 SET c='twenty-six thousand three hundred sixty-three' WHERE a=11346; UPDATE t2 SET c='twenty thousand four hundred ninety-nine' WHERE a=11347; UPDATE t2 SET c='sixty-one thousand two hundred sixty-one' WHERE a=11348; UPDATE t2 SET c='twenty-five thousand four hundred fifty-seven' WHERE a=11349; UPDATE t2 SET c='seventeen thousand nine hundred seventy-six' WHERE a=11350; UPDATE t2 SET c='five thousand six hundred fifty-five' WHERE a=11351; UPDATE t2 SET c='twenty-four thousand eight hundred seventy-eight' WHERE a=11352; UPDATE t2 SET c='ninety thousand four hundred seventy-six' WHERE a=11353; UPDATE t2 SET c='eighty-seven thousand five hundred seventy-one' WHERE a=11354; UPDATE t2 SET c='ninety-five thousand nine hundred fifty-three' WHERE a=11355; UPDATE t2 SET c='ninety-five thousand forty-four' WHERE a=11356; UPDATE t2 SET c='seven thousand four hundred eighty' WHERE a=11357; UPDATE t2 SET c='thirteen thousand one hundred twenty-five' WHERE a=11358; UPDATE t2 SET c='forty-one thousand six hundred forty-six' WHERE a=11359; UPDATE t2 SET c='thirty-six thousand three hundred twenty-two' WHERE a=11360; UPDATE t2 SET c='fifty-one thousand seven hundred fifty-five' WHERE a=11361; UPDATE t2 SET c='twenty-three thousand one hundred forty-two' WHERE a=11362; UPDATE t2 SET c='forty-two thousand seven hundred nineteen' WHERE a=11363; UPDATE t2 SET c='thirty thousand six hundred sixty-three' WHERE a=11364; UPDATE t2 SET c='seventy-eight thousand six hundred eighty-four' WHERE a=11365; UPDATE t2 SET c='eighty-three thousand ninety-six' WHERE a=11366; UPDATE t2 SET c='sixty-three thousand two hundred six' WHERE a=11367; UPDATE t2 SET c='fifty-one thousand seven hundred fifty-nine' WHERE a=11368; UPDATE t2 SET c='seventy-one thousand four hundred nineteen' WHERE a=11369; UPDATE t2 SET c='sixty-two thousand eight hundred eighty-two' WHERE a=11370; UPDATE t2 SET c='thirty-nine thousand seven hundred nine' WHERE a=11371; UPDATE t2 SET c='seventy-six thousand thirty-five' WHERE a=11372; UPDATE t2 SET c='sixty thousand six hundred fifty-one' WHERE a=11373; UPDATE t2 SET c='sixty-one thousand six hundred sixty-one' WHERE a=11374; UPDATE t2 SET c='forty thousand six hundred ninety-six' WHERE a=11375; UPDATE t2 SET c='thirty-three thousand four hundred sixty-four' WHERE a=11376; UPDATE t2 SET c='seventy-four thousand four hundred forty-four' WHERE a=11377; UPDATE t2 SET c='five thousand nine hundred one' WHERE a=11378; UPDATE t2 SET c='forty-six thousand nine hundred eighty-one' WHERE a=11379; UPDATE t2 SET c='seventy-one thousand three hundred seventy-eight' WHERE a=11380; UPDATE t2 SET c='twenty-six thousand sixty-nine' WHERE a=11381; UPDATE t2 SET c='sixty-four thousand four hundred eighty-seven' WHERE a=11382; UPDATE t2 SET c='ninety thousand seven hundred ninety-four' WHERE a=11383; UPDATE t2 SET c='twenty-seven thousand one' WHERE a=11384; UPDATE t2 SET c='thirty-nine thousand five hundred seventy-nine' WHERE a=11385; UPDATE t2 SET c='fifty-five thousand three hundred ninety-six' WHERE a=11386; UPDATE t2 SET c='fifteen thousand nine hundred ninety-three' WHERE a=11387; UPDATE t2 SET c='thirty-five thousand nine hundred ninety-five' WHERE a=11388; UPDATE t2 SET c='sixty-three thousand four hundred eighteen' WHERE a=11389; UPDATE t2 SET c='ten thousand five hundred forty-three' WHERE a=11390; UPDATE t2 SET c='forty thousand three hundred eighty-one' WHERE a=11391; UPDATE t2 SET c='eighty-eight thousand two hundred eighty' WHERE a=11392; UPDATE t2 SET c='forty-seven thousand eight hundred ten' WHERE a=11393; UPDATE t2 SET c='eighty-nine thousand eight hundred thirty-eight' WHERE a=11394; UPDATE t2 SET c='seventy-one thousand two hundred eighty-seven' WHERE a=11395; UPDATE t2 SET c='twenty-five thousand seventy-one' WHERE a=11396; UPDATE t2 SET c='sixty thousand three hundred one' WHERE a=11397; UPDATE t2 SET c='seventy-five thousand nine hundred eighty-six' WHERE a=11398; UPDATE t2 SET c='sixty-one thousand four hundred eighty' WHERE a=11399; UPDATE t2 SET c='eighty-eight thousand seven hundred ninety-one' WHERE a=11400; UPDATE t2 SET c='fifty-seven thousand two hundred sixty-three' WHERE a=11401; UPDATE t2 SET c='seventy-five thousand six hundred thirty-six' WHERE a=11402; UPDATE t2 SET c='seventy-five thousand one hundred fifty-five' WHERE a=11403; UPDATE t2 SET c='fourteen thousand two hundred fifty-three' WHERE a=11404; UPDATE t2 SET c='sixty-six thousand seven hundred forty-three' WHERE a=11405; UPDATE t2 SET c='eight thousand two hundred seventy-one' WHERE a=11406; UPDATE t2 SET c='eighty-one thousand five hundred thirty-nine' WHERE a=11407; UPDATE t2 SET c='sixty-six thousand eight hundred forty-eight' WHERE a=11408; UPDATE t2 SET c='forty-eight thousand eight hundred sixty-four' WHERE a=11409; UPDATE t2 SET c='thirty-one thousand seven hundred sixty-seven' WHERE a=11410; UPDATE t2 SET c='seventy-seven thousand three hundred fourteen' WHERE a=11411; UPDATE t2 SET c='twenty-eight thousand one hundred fifty-nine' WHERE a=11412; UPDATE t2 SET c='fifty-four thousand two hundred seventy-three' WHERE a=11413; UPDATE t2 SET c='seventy-five thousand seven hundred twenty-one' WHERE a=11414; UPDATE t2 SET c='ninety-one thousand three hundred six' WHERE a=11415; UPDATE t2 SET c='twelve thousand two hundred thirty-nine' WHERE a=11416; UPDATE t2 SET c='sixty-eight thousand seven hundred fifty-nine' WHERE a=11417; UPDATE t2 SET c='eighty thousand one hundred ninety-seven' WHERE a=11418; UPDATE t2 SET c='ninety-six thousand seven hundred seventy-nine' WHERE a=11419; UPDATE t2 SET c='twenty-six thousand three hundred seventy-five' WHERE a=11420; UPDATE t2 SET c='fifty thousand five hundred forty-one' WHERE a=11421; UPDATE t2 SET c='fifty-three thousand six hundred sixty-seven' WHERE a=11422; UPDATE t2 SET c='twenty-five thousand five hundred seventy-eight' WHERE a=11423; UPDATE t2 SET c='eighty-four thousand twenty' WHERE a=11424; UPDATE t2 SET c='seventy-seven thousand five hundred sixty-one' WHERE a=11425; UPDATE t2 SET c='seven thousand seven hundred thirty' WHERE a=11426; UPDATE t2 SET c='thirty thousand ninety' WHERE a=11427; UPDATE t2 SET c='fifteen thousand eight hundred twenty-four' WHERE a=11428; UPDATE t2 SET c='ninety-one thousand five hundred forty-five' WHERE a=11429; UPDATE t2 SET c='thirty-two thousand two hundred eighty-five' WHERE a=11430; UPDATE t2 SET c='sixty-four thousand seven hundred fifty-seven' WHERE a=11431; UPDATE t2 SET c='seventy-seven thousand nine hundred nine' WHERE a=11432; UPDATE t2 SET c='forty-six thousand four hundred eighteen' WHERE a=11433; UPDATE t2 SET c='seventy-six thousand nine hundred eighty-one' WHERE a=11434; UPDATE t2 SET c='eighty-one thousand nine hundred eight' WHERE a=11435; UPDATE t2 SET c='seventy-five thousand four hundred fifty' WHERE a=11436; UPDATE t2 SET c='forty-three thousand one hundred twenty-eight' WHERE a=11437; UPDATE t2 SET c='twenty-seven thousand seven hundred eighty' WHERE a=11438; UPDATE t2 SET c='three thousand one hundred five' WHERE a=11439; UPDATE t2 SET c='forty-four thousand five hundred ninety-five' WHERE a=11440; UPDATE t2 SET c='twenty-two thousand ninety-eight' WHERE a=11441; UPDATE t2 SET c='ninety-two thousand five hundred four' WHERE a=11442; UPDATE t2 SET c='sixty-eight thousand three hundred twenty-two' WHERE a=11443; UPDATE t2 SET c='ninety-eight thousand nine hundred fifty-nine' WHERE a=11444; UPDATE t2 SET c='thirty thousand two hundred seventy' WHERE a=11445; UPDATE t2 SET c='fifty-one thousand eight hundred fifty-five' WHERE a=11446; UPDATE t2 SET c='six thousand seven hundred eighty' WHERE a=11447; UPDATE t2 SET c='eighty-two thousand twenty-seven' WHERE a=11448; UPDATE t2 SET c='twenty-seven thousand two hundred thirty-eight' WHERE a=11449; UPDATE t2 SET c='forty thousand nine hundred fifty-seven' WHERE a=11450; UPDATE t2 SET c='eighty-five thousand six hundred sixty-two' WHERE a=11451; UPDATE t2 SET c='twenty thousand two hundred sixteen' WHERE a=11452; UPDATE t2 SET c='forty-two thousand nine hundred twenty-five' WHERE a=11453; UPDATE t2 SET c='eighty-eight thousand three hundred ninety-four' WHERE a=11454; UPDATE t2 SET c='forty-two thousand seven hundred forty-five' WHERE a=11455; UPDATE t2 SET c='sixty-one thousand four hundred three' WHERE a=11456; UPDATE t2 SET c='seventy-three thousand eight hundred twenty-seven' WHERE a=11457; UPDATE t2 SET c='thirty-one thousand seventy-four' WHERE a=11458; UPDATE t2 SET c='sixty-seven thousand thirty-eight' WHERE a=11459; UPDATE t2 SET c='fifty-seven thousand nine hundred thirty-two' WHERE a=11460; UPDATE t2 SET c='twenty-eight thousand three hundred ninety-seven' WHERE a=11461; UPDATE t2 SET c='sixteen thousand eight hundred sixty' WHERE a=11462; UPDATE t2 SET c='seventy-six thousand seven hundred' WHERE a=11463; UPDATE t2 SET c='fifty-nine thousand six hundred seventy' WHERE a=11464; UPDATE t2 SET c='twenty-one thousand fifty-one' WHERE a=11465; UPDATE t2 SET c='seven thousand eight hundred sixty-one' WHERE a=11466; UPDATE t2 SET c='seventy thousand three hundred seventy-eight' WHERE a=11467; UPDATE t2 SET c='fifty-two thousand six hundred twenty-four' WHERE a=11468; UPDATE t2 SET c='nineteen thousand nine hundred thirty-five' WHERE a=11469; UPDATE t2 SET c='twenty-five thousand three hundred ninety' WHERE a=11470; UPDATE t2 SET c='six thousand three hundred fifty-one' WHERE a=11471; UPDATE t2 SET c='sixty thousand two hundred twenty-nine' WHERE a=11472; UPDATE t2 SET c='twenty-three thousand seven' WHERE a=11473; UPDATE t2 SET c='eighteen thousand four' WHERE a=11474; UPDATE t2 SET c='seventy-seven thousand six hundred five' WHERE a=11475; UPDATE t2 SET c='seventy-one thousand two hundred eighty-five' WHERE a=11476; UPDATE t2 SET c='twenty-five thousand four hundred thirteen' WHERE a=11477; UPDATE t2 SET c='eighty-eight thousand nine hundred sixty-eight' WHERE a=11478; UPDATE t2 SET c='sixty-three thousand five hundred twenty-three' WHERE a=11479; UPDATE t2 SET c='eighty-five thousand five hundred thirty-six' WHERE a=11480; UPDATE t2 SET c='seventy-eight thousand eight hundred fifty-three' WHERE a=11481; UPDATE t2 SET c='forty-nine thousand four hundred twenty-three' WHERE a=11482; UPDATE t2 SET c='twenty-five thousand three hundred twenty-six' WHERE a=11483; UPDATE t2 SET c='sixty-nine thousand six hundred seventy-two' WHERE a=11484; UPDATE t2 SET c='seventy thousand one hundred sixty' WHERE a=11485; UPDATE t2 SET c='ninety-four thousand five hundred sixty-nine' WHERE a=11486; UPDATE t2 SET c='thirty-four thousand forty-three' WHERE a=11487; UPDATE t2 SET c='sixty-five thousand five hundred three' WHERE a=11488; UPDATE t2 SET c='twenty-six thousand eight hundred forty-one' WHERE a=11489; UPDATE t2 SET c='eighty-two thousand thirty-two' WHERE a=11490; UPDATE t2 SET c='seventy-five thousand seven hundred forty-five' WHERE a=11491; UPDATE t2 SET c='fifty-six thousand seven hundred forty-eight' WHERE a=11492; UPDATE t2 SET c='ninety-four thousand two hundred eighty-seven' WHERE a=11493; UPDATE t2 SET c='one thousand seven hundred eighty' WHERE a=11494; UPDATE t2 SET c='thirty-one thousand six hundred fifteen' WHERE a=11495; UPDATE t2 SET c='ten thousand nine hundred fifty-four' WHERE a=11496; UPDATE t2 SET c='seventy-five thousand seven hundred eighty-two' WHERE a=11497; UPDATE t2 SET c='twenty-four thousand four hundred ten' WHERE a=11498; UPDATE t2 SET c='fifty-eight thousand four hundred ten' WHERE a=11499; UPDATE t2 SET c='thirty thousand three hundred twenty-six' WHERE a=11500; UPDATE t2 SET c='six hundred forty-five' WHERE a=11501; UPDATE t2 SET c='seventy-four thousand one hundred sixty-eight' WHERE a=11502; UPDATE t2 SET c='fifty-two thousand eight hundred forty-six' WHERE a=11503; UPDATE t2 SET c='thirty-three thousand three hundred thirty-six' WHERE a=11504; UPDATE t2 SET c='eighty-four thousand four hundred eight' WHERE a=11505; UPDATE t2 SET c='forty-seven thousand five hundred fifteen' WHERE a=11506; UPDATE t2 SET c='sixty thousand eight hundred twenty-two' WHERE a=11507; UPDATE t2 SET c='seventy-three thousand one hundred fifty' WHERE a=11508; UPDATE t2 SET c='eighty-one thousand six hundred twelve' WHERE a=11509; UPDATE t2 SET c='sixty-three thousand four hundred nine' WHERE a=11510; UPDATE t2 SET c='sixty-eight thousand four hundred sixty-five' WHERE a=11511; UPDATE t2 SET c='twenty-five thousand seven hundred twenty' WHERE a=11512; UPDATE t2 SET c='seventy thousand five hundred sixty-eight' WHERE a=11513; UPDATE t2 SET c='ninety thousand eight hundred seventy-seven' WHERE a=11514; UPDATE t2 SET c='sixty-one thousand three hundred three' WHERE a=11515; UPDATE t2 SET c='sixty-five thousand four hundred twelve' WHERE a=11516; UPDATE t2 SET c='thirty thousand three hundred two' WHERE a=11517; UPDATE t2 SET c='fifty-seven thousand forty-one' WHERE a=11518; UPDATE t2 SET c='eighty-seven thousand five hundred ninety-nine' WHERE a=11519; UPDATE t2 SET c='one thousand one hundred thirty-four' WHERE a=11520; UPDATE t2 SET c='sixty-nine thousand seven hundred thirty-seven' WHERE a=11521; UPDATE t2 SET c='forty-nine thousand four hundred sixty-nine' WHERE a=11522; UPDATE t2 SET c='eighty-four thousand nine hundred sixty' WHERE a=11523; UPDATE t2 SET c='forty-two thousand one hundred seventeen' WHERE a=11524; UPDATE t2 SET c='sixty-five thousand six hundred eighty-two' WHERE a=11525; UPDATE t2 SET c='thirty-eight thousand seven hundred eighty-three' WHERE a=11526; UPDATE t2 SET c='forty-six thousand six hundred thirty-seven' WHERE a=11527; UPDATE t2 SET c='sixty-two thousand one hundred eight' WHERE a=11528; UPDATE t2 SET c='fifty-five thousand three hundred forty-seven' WHERE a=11529; UPDATE t2 SET c='twenty-eight thousand six hundred nineteen' WHERE a=11530; UPDATE t2 SET c='nineteen thousand nine hundred forty' WHERE a=11531; UPDATE t2 SET c='eighty-three thousand seven hundred seventy-eight' WHERE a=11532; UPDATE t2 SET c='eighty thousand six hundred sixty-four' WHERE a=11533; UPDATE t2 SET c='fifty-four thousand seven hundred sixty-five' WHERE a=11534; UPDATE t2 SET c='forty-six thousand one hundred nine' WHERE a=11535; UPDATE t2 SET c='forty thousand twenty-two' WHERE a=11536; UPDATE t2 SET c='sixteen thousand one hundred eighty-four' WHERE a=11537; UPDATE t2 SET c='fifty-seven thousand three hundred two' WHERE a=11538; UPDATE t2 SET c='seventy thousand nine hundred twenty-five' WHERE a=11539; UPDATE t2 SET c='ninety-one thousand eight hundred sixty-six' WHERE a=11540; UPDATE t2 SET c='twenty thousand nine hundred sixteen' WHERE a=11541; UPDATE t2 SET c='seventy-six thousand thirty-three' WHERE a=11542; UPDATE t2 SET c='one thousand seven hundred thirty-six' WHERE a=11543; UPDATE t2 SET c='twenty-one thousand five hundred ninety-two' WHERE a=11544; UPDATE t2 SET c='eighty-five thousand nine hundred seventy-five' WHERE a=11545; UPDATE t2 SET c='eighty-seven thousand five hundred two' WHERE a=11546; UPDATE t2 SET c='three thousand eight hundred fifty-two' WHERE a=11547; UPDATE t2 SET c='ninety thousand seven hundred seventy-two' WHERE a=11548; UPDATE t2 SET c='thirty-seven thousand twenty-one' WHERE a=11549; UPDATE t2 SET c='twenty-nine thousand seven hundred ninety-three' WHERE a=11550; UPDATE t2 SET c='fifty thousand six hundred fifty-one' WHERE a=11551; UPDATE t2 SET c='ninety-nine thousand nine hundred seventy-eight' WHERE a=11552; UPDATE t2 SET c='seventy-four thousand two hundred forty-six' WHERE a=11553; UPDATE t2 SET c='sixty-five thousand two hundred seventy-seven' WHERE a=11554; UPDATE t2 SET c='twenty-two thousand forty-five' WHERE a=11555; UPDATE t2 SET c='sixty-seven thousand sixty-one' WHERE a=11556; UPDATE t2 SET c='thirty thousand forty-three' WHERE a=11557; UPDATE t2 SET c='one thousand eight hundred sixty-three' WHERE a=11558; UPDATE t2 SET c='nineteen thousand nine hundred twenty-six' WHERE a=11559; UPDATE t2 SET c='ten thousand six hundred sixty-one' WHERE a=11560; UPDATE t2 SET c='forty-two thousand one hundred seventy-two' WHERE a=11561; UPDATE t2 SET c='forty-two thousand three hundred forty-five' WHERE a=11562; UPDATE t2 SET c='seventy-seven thousand two hundred sixty-two' WHERE a=11563; UPDATE t2 SET c='eight hundred five' WHERE a=11564; UPDATE t2 SET c='seventy-eight thousand fifty-eight' WHERE a=11565; UPDATE t2 SET c='eighty-two thousand seven hundred fifteen' WHERE a=11566; UPDATE t2 SET c='fifty-two thousand eighty-nine' WHERE a=11567; UPDATE t2 SET c='ninety-eight thousand five hundred ninety-four' WHERE a=11568; UPDATE t2 SET c='ninety-two thousand two hundred seventy-five' WHERE a=11569; UPDATE t2 SET c='twenty-eight thousand three hundred fifty-one' WHERE a=11570; UPDATE t2 SET c='nineteen thousand five hundred forty-nine' WHERE a=11571; UPDATE t2 SET c='ninety-nine thousand three hundred eighty-six' WHERE a=11572; UPDATE t2 SET c='ten thousand thirty-two' WHERE a=11573; UPDATE t2 SET c='seventy-two thousand two hundred eighteen' WHERE a=11574; UPDATE t2 SET c='ten thousand four hundred twelve' WHERE a=11575; UPDATE t2 SET c='seventy-seven thousand nine hundred twelve' WHERE a=11576; UPDATE t2 SET c='twenty-one thousand nine hundred seventy' WHERE a=11577; UPDATE t2 SET c='fifty-five thousand four hundred sixty-seven' WHERE a=11578; UPDATE t2 SET c='seventy thousand nine hundred thirty' WHERE a=11579; UPDATE t2 SET c='twenty-five thousand seven hundred four' WHERE a=11580; UPDATE t2 SET c='forty-five thousand nine hundred ninety-two' WHERE a=11581; UPDATE t2 SET c='seventy thousand two hundred ninety-nine' WHERE a=11582; UPDATE t2 SET c='seventy-three thousand two hundred sixty-five' WHERE a=11583; UPDATE t2 SET c='eighty-eight thousand two hundred seventy-nine' WHERE a=11584; UPDATE t2 SET c='fifty-seven thousand fifty-two' WHERE a=11585; UPDATE t2 SET c='seventy-four thousand two hundred eighty' WHERE a=11586; UPDATE t2 SET c='eighty-four thousand five hundred twenty' WHERE a=11587; UPDATE t2 SET c='seven thousand three' WHERE a=11588; UPDATE t2 SET c='seventy-two thousand eight hundred ninety-nine' WHERE a=11589; UPDATE t2 SET c='sixty-six thousand seventy-one' WHERE a=11590; UPDATE t2 SET c='seventy-six thousand sixty-seven' WHERE a=11591; UPDATE t2 SET c='fifty-eight thousand two hundred four' WHERE a=11592; UPDATE t2 SET c='ninety-seven thousand three hundred eighty-five' WHERE a=11593; UPDATE t2 SET c='four hundred seventy-one' WHERE a=11594; UPDATE t2 SET c='fifty-five thousand fifty' WHERE a=11595; UPDATE t2 SET c='three thousand two hundred ninety-four' WHERE a=11596; UPDATE t2 SET c='eighty-two thousand six hundred ninety-six' WHERE a=11597; UPDATE t2 SET c='two thousand six hundred sixty-five' WHERE a=11598; UPDATE t2 SET c='eight thousand seven hundred seventeen' WHERE a=11599; UPDATE t2 SET c='forty-seven thousand seven hundred ninety' WHERE a=11600; UPDATE t2 SET c='thirty-nine thousand three hundred seventy-nine' WHERE a=11601; UPDATE t2 SET c='ninety-two thousand five hundred eighty-seven' WHERE a=11602; UPDATE t2 SET c='sixteen thousand seven hundred twenty' WHERE a=11603; UPDATE t2 SET c='three thousand nine hundred fifty-five' WHERE a=11604; UPDATE t2 SET c='twenty-two thousand nine hundred one' WHERE a=11605; UPDATE t2 SET c='thirty-three thousand nine hundred seventy-two' WHERE a=11606; UPDATE t2 SET c='three thousand eight hundred twenty-eight' WHERE a=11607; UPDATE t2 SET c='sixty-seven thousand four hundred thirty' WHERE a=11608; UPDATE t2 SET c='twenty-four thousand five hundred seven' WHERE a=11609; UPDATE t2 SET c='fifty-eight thousand seven hundred seventy-one' WHERE a=11610; UPDATE t2 SET c='eighty-two thousand six hundred ninety-four' WHERE a=11611; UPDATE t2 SET c='sixty-three thousand five hundred eighty-one' WHERE a=11612; UPDATE t2 SET c='sixty-four thousand eight hundred twenty-three' WHERE a=11613; UPDATE t2 SET c='forty-one thousand one hundred twenty-eight' WHERE a=11614; UPDATE t2 SET c='eighty-nine thousand eight hundred forty' WHERE a=11615; UPDATE t2 SET c='thirty-three thousand two hundred forty-five' WHERE a=11616; UPDATE t2 SET c='sixty-two thousand six hundred nineteen' WHERE a=11617; UPDATE t2 SET c='twenty-eight thousand three hundred twenty-seven' WHERE a=11618; UPDATE t2 SET c='twenty-four thousand eighty-nine' WHERE a=11619; UPDATE t2 SET c='forty-four thousand five hundred forty-one' WHERE a=11620; UPDATE t2 SET c='sixty-seven thousand three hundred ninety-nine' WHERE a=11621; UPDATE t2 SET c='ninety-nine thousand two hundred thirteen' WHERE a=11622; UPDATE t2 SET c='ninety-nine thousand nine hundred sixty-three' WHERE a=11623; UPDATE t2 SET c='seventy-three thousand five hundred nine' WHERE a=11624; UPDATE t2 SET c='one thousand seventy-two' WHERE a=11625; UPDATE t2 SET c='thirty-two thousand four hundred ninety-six' WHERE a=11626; UPDATE t2 SET c='sixty-four thousand six hundred forty-three' WHERE a=11627; UPDATE t2 SET c='fifty-four thousand' WHERE a=11628; UPDATE t2 SET c='seventy-four thousand five hundred seventy-eight' WHERE a=11629; UPDATE t2 SET c='seventy thousand three hundred twenty-three' WHERE a=11630; UPDATE t2 SET c='seventy-five thousand two hundred thirty-five' WHERE a=11631; UPDATE t2 SET c='thirty-three thousand eight hundred two' WHERE a=11632; UPDATE t2 SET c='two thousand one hundred thirty-seven' WHERE a=11633; UPDATE t2 SET c='twenty-two thousand two hundred fourteen' WHERE a=11634; UPDATE t2 SET c='seventy-one thousand five hundred seventy-six' WHERE a=11635; UPDATE t2 SET c='thirty-two thousand eight hundred eighty-two' WHERE a=11636; UPDATE t2 SET c='forty-one thousand two hundred sixty' WHERE a=11637; UPDATE t2 SET c='thirty-three thousand five hundred fifty-eight' WHERE a=11638; UPDATE t2 SET c='forty thousand nine hundred ninety-six' WHERE a=11639; UPDATE t2 SET c='ninety-one thousand eight hundred forty-eight' WHERE a=11640; UPDATE t2 SET c='twenty-eight thousand five hundred seventy-nine' WHERE a=11641; UPDATE t2 SET c='nine thousand two hundred seventy-six' WHERE a=11642; UPDATE t2 SET c='ninety-eight thousand four hundred thirty-one' WHERE a=11643; UPDATE t2 SET c='thirty-two thousand three hundred thirty-six' WHERE a=11644; UPDATE t2 SET c='five thousand three hundred thirteen' WHERE a=11645; UPDATE t2 SET c='four hundred twenty-six' WHERE a=11646; UPDATE t2 SET c='fifteen thousand ten' WHERE a=11647; UPDATE t2 SET c='seventy-three thousand seven hundred forty-seven' WHERE a=11648; UPDATE t2 SET c='thirty-four thousand ninety-four' WHERE a=11649; UPDATE t2 SET c='ninety-seven thousand eight hundred twenty-five' WHERE a=11650; UPDATE t2 SET c='ninety-four thousand three hundred twenty-one' WHERE a=11651; UPDATE t2 SET c='forty-four thousand seven hundred ninety-four' WHERE a=11652; UPDATE t2 SET c='seventy-eight thousand one hundred forty-eight' WHERE a=11653; UPDATE t2 SET c='twenty-five thousand eight hundred ninety-two' WHERE a=11654; UPDATE t2 SET c='sixty-seven thousand seven hundred fifty-one' WHERE a=11655; UPDATE t2 SET c='twenty-eight thousand nine hundred forty' WHERE a=11656; UPDATE t2 SET c='seventy-six thousand twenty-five' WHERE a=11657; UPDATE t2 SET c='seventy-five thousand eight hundred sixty-two' WHERE a=11658; UPDATE t2 SET c='seventy-five thousand fifty-nine' WHERE a=11659; UPDATE t2 SET c='ninety-five thousand three hundred seventy-five' WHERE a=11660; UPDATE t2 SET c='ninety-one thousand seven hundred twenty-four' WHERE a=11661; UPDATE t2 SET c='seventy-five thousand seven hundred fifty-seven' WHERE a=11662; UPDATE t2 SET c='forty-five thousand four hundred ninety-three' WHERE a=11663; UPDATE t2 SET c='eleven thousand five hundred eighty-five' WHERE a=11664; UPDATE t2 SET c='one thousand five hundred thirty-six' WHERE a=11665; UPDATE t2 SET c='thirty-two thousand nine hundred fifty-five' WHERE a=11666; UPDATE t2 SET c='fifty-nine thousand two hundred forty-one' WHERE a=11667; UPDATE t2 SET c='two thousand four hundred twenty-five' WHERE a=11668; UPDATE t2 SET c='thirty-one thousand nine hundred forty-two' WHERE a=11669; UPDATE t2 SET c='twenty-eight thousand five hundred thirty-four' WHERE a=11670; UPDATE t2 SET c='fifty-eight thousand three hundred eighty-five' WHERE a=11671; UPDATE t2 SET c='seventy-four thousand one hundred fifty-three' WHERE a=11672; UPDATE t2 SET c='thirty-one thousand two hundred twenty-six' WHERE a=11673; UPDATE t2 SET c='four thousand one' WHERE a=11674; UPDATE t2 SET c='seventy-one thousand four hundred forty-four' WHERE a=11675; UPDATE t2 SET c='seventy-eight thousand eight hundred eighty-five' WHERE a=11676; UPDATE t2 SET c='twenty-three thousand eight hundred sixty-six' WHERE a=11677; UPDATE t2 SET c='forty thousand two hundred fifty-five' WHERE a=11678; UPDATE t2 SET c='ninety-seven thousand one hundred sixty-six' WHERE a=11679; UPDATE t2 SET c='fifty-four thousand two hundred ninety-nine' WHERE a=11680; UPDATE t2 SET c='nine thousand fifty-six' WHERE a=11681; UPDATE t2 SET c='fifty-six thousand seven hundred thirty-five' WHERE a=11682; UPDATE t2 SET c='three thousand seven hundred forty' WHERE a=11683; UPDATE t2 SET c='eighty-nine thousand one' WHERE a=11684; UPDATE t2 SET c='seventy-five thousand three hundred fifty' WHERE a=11685; UPDATE t2 SET c='thirty-five thousand three hundred seventy-one' WHERE a=11686; UPDATE t2 SET c='fourteen thousand two hundred twenty-one' WHERE a=11687; UPDATE t2 SET c='fifty-five thousand one hundred seventy-seven' WHERE a=11688; UPDATE t2 SET c='twenty-four thousand one hundred eleven' WHERE a=11689; UPDATE t2 SET c='one thousand nine hundred eighty-one' WHERE a=11690; UPDATE t2 SET c='eighty thousand six hundred thirty-one' WHERE a=11691; UPDATE t2 SET c='forty-seven thousand thirty-six' WHERE a=11692; UPDATE t2 SET c='fifteen thousand five hundred three' WHERE a=11693; UPDATE t2 SET c='ninety-five thousand eight hundred thirty-seven' WHERE a=11694; UPDATE t2 SET c='ninety-two thousand two hundred forty' WHERE a=11695; UPDATE t2 SET c='ninety-three thousand one hundred thirty' WHERE a=11696; UPDATE t2 SET c='seventy-nine thousand seven hundred forty-seven' WHERE a=11697; UPDATE t2 SET c='seventeen thousand twenty-three' WHERE a=11698; UPDATE t2 SET c='ninety-seven thousand six hundred nine' WHERE a=11699; UPDATE t2 SET c='seventy-four thousand eight hundred eighty-seven' WHERE a=11700; UPDATE t2 SET c='nineteen thousand eight hundred forty-three' WHERE a=11701; UPDATE t2 SET c='forty-four thousand nine hundred fifteen' WHERE a=11702; UPDATE t2 SET c='seventy-one thousand three hundred thirty-nine' WHERE a=11703; UPDATE t2 SET c='eighty-three thousand five hundred nine' WHERE a=11704; UPDATE t2 SET c='seventy thousand five hundred seventy-eight' WHERE a=11705; UPDATE t2 SET c='twenty-eight thousand seven hundred six' WHERE a=11706; UPDATE t2 SET c='ninety-one thousand three hundred thirteen' WHERE a=11707; UPDATE t2 SET c='thirty-one thousand two hundred ninety-five' WHERE a=11708; UPDATE t2 SET c='fifty-six thousand five hundred forty-six' WHERE a=11709; UPDATE t2 SET c='fourteen thousand seven hundred twenty-three' WHERE a=11710; UPDATE t2 SET c='seven thousand six hundred forty-six' WHERE a=11711; UPDATE t2 SET c='forty-seven thousand one hundred thirty-seven' WHERE a=11712; UPDATE t2 SET c='fifteen thousand eight hundred ninety-six' WHERE a=11713; UPDATE t2 SET c='one hundred five' WHERE a=11714; UPDATE t2 SET c='seventy-four thousand five hundred forty-four' WHERE a=11715; UPDATE t2 SET c='forty-six thousand one hundred seventy-seven' WHERE a=11716; UPDATE t2 SET c='twenty thousand three hundred seventy-seven' WHERE a=11717; UPDATE t2 SET c='forty-eight thousand three hundred fifty-eight' WHERE a=11718; UPDATE t2 SET c='eight thousand six hundred ninety-three' WHERE a=11719; UPDATE t2 SET c='forty-eight thousand six hundred seventy-seven' WHERE a=11720; UPDATE t2 SET c='fifteen thousand three hundred fifty-two' WHERE a=11721; UPDATE t2 SET c='seventy-eight thousand eighty-three' WHERE a=11722; UPDATE t2 SET c='seven thousand six hundred eight' WHERE a=11723; UPDATE t2 SET c='seventy-eight thousand three hundred eleven' WHERE a=11724; UPDATE t2 SET c='thirty-eight thousand two hundred fifty-one' WHERE a=11725; UPDATE t2 SET c='seventeen thousand three hundred seven' WHERE a=11726; UPDATE t2 SET c='sixteen thousand six hundred twenty-two' WHERE a=11727; UPDATE t2 SET c='ninety-six thousand thirty-four' WHERE a=11728; UPDATE t2 SET c='twenty-six thousand five hundred eighty-two' WHERE a=11729; UPDATE t2 SET c='forty-seven thousand four hundred sixty-nine' WHERE a=11730; UPDATE t2 SET c='twenty-one thousand two hundred twenty-four' WHERE a=11731; UPDATE t2 SET c='sixty-six thousand six hundred thirty-nine' WHERE a=11732; UPDATE t2 SET c='eight thousand four hundred fifteen' WHERE a=11733; UPDATE t2 SET c='sixty-four thousand six hundred ninety-six' WHERE a=11734; UPDATE t2 SET c='sixty-seven thousand four hundred sixty-three' WHERE a=11735; UPDATE t2 SET c='forty-eight thousand three hundred eleven' WHERE a=11736; UPDATE t2 SET c='sixty-one thousand three hundred twenty' WHERE a=11737; UPDATE t2 SET c='eight thousand two hundred sixty-five' WHERE a=11738; UPDATE t2 SET c='ninety-six thousand one hundred eighty-seven' WHERE a=11739; UPDATE t2 SET c='sixteen thousand four hundred thirty-two' WHERE a=11740; UPDATE t2 SET c='twenty-three thousand six hundred ninety-one' WHERE a=11741; UPDATE t2 SET c='fifty-seven thousand four hundred eighty-three' WHERE a=11742; UPDATE t2 SET c='forty-one thousand three hundred twenty-one' WHERE a=11743; UPDATE t2 SET c='eighty-three thousand five hundred eighty-six' WHERE a=11744; UPDATE t2 SET c='seventy-five thousand four hundred eighteen' WHERE a=11745; UPDATE t2 SET c='thirty-six thousand twenty-seven' WHERE a=11746; UPDATE t2 SET c='sixty-two thousand two hundred seventy-six' WHERE a=11747; UPDATE t2 SET c='thirty-nine thousand eight hundred seventy-three' WHERE a=11748; UPDATE t2 SET c='ninety-seven thousand one hundred ninety-three' WHERE a=11749; UPDATE t2 SET c='sixty-six thousand one hundred forty-nine' WHERE a=11750; UPDATE t2 SET c='seventeen thousand eight hundred ninety-eight' WHERE a=11751; UPDATE t2 SET c='forty-eight thousand three hundred fifty-one' WHERE a=11752; UPDATE t2 SET c='ten thousand eight' WHERE a=11753; UPDATE t2 SET c='sixty-three thousand five hundred sixty-nine' WHERE a=11754; UPDATE t2 SET c='fifty-two thousand two hundred six' WHERE a=11755; UPDATE t2 SET c='seventy-two thousand five hundred thirty-three' WHERE a=11756; UPDATE t2 SET c='thirty-seven thousand four hundred sixty-seven' WHERE a=11757; UPDATE t2 SET c='thirty-four thousand one hundred fifty-seven' WHERE a=11758; UPDATE t2 SET c='fifty-nine thousand two hundred forty-five' WHERE a=11759; UPDATE t2 SET c='sixty-five thousand eight hundred fifty-two' WHERE a=11760; UPDATE t2 SET c='two thousand five hundred fifty-three' WHERE a=11761; UPDATE t2 SET c='sixty-one thousand seven hundred seventy-one' WHERE a=11762; UPDATE t2 SET c='twenty-one thousand seven hundred forty-nine' WHERE a=11763; UPDATE t2 SET c='forty-eight thousand one hundred eighty-three' WHERE a=11764; UPDATE t2 SET c='thirty thousand five hundred forty-one' WHERE a=11765; UPDATE t2 SET c='five thousand six hundred ninety-nine' WHERE a=11766; UPDATE t2 SET c='thirty-three thousand three hundred thirty-five' WHERE a=11767; UPDATE t2 SET c='one thousand four hundred ninety-three' WHERE a=11768; UPDATE t2 SET c='eighty-five thousand two hundred seventy-nine' WHERE a=11769; UPDATE t2 SET c='fifteen thousand eight hundred sixty-two' WHERE a=11770; UPDATE t2 SET c='seventy-three thousand four hundred five' WHERE a=11771; UPDATE t2 SET c='twenty-one thousand two hundred sixteen' WHERE a=11772; UPDATE t2 SET c='seven thousand four hundred ninety-five' WHERE a=11773; UPDATE t2 SET c='seventy thousand six hundred eighty' WHERE a=11774; UPDATE t2 SET c='twenty-five thousand seven hundred eighty-nine' WHERE a=11775; UPDATE t2 SET c='three thousand two hundred four' WHERE a=11776; UPDATE t2 SET c='sixty-three thousand five hundred eighty-one' WHERE a=11777; UPDATE t2 SET c='eighty-four thousand eight hundred five' WHERE a=11778; UPDATE t2 SET c='six thousand eight hundred eighty-five' WHERE a=11779; UPDATE t2 SET c='sixty-six thousand nine hundred fourteen' WHERE a=11780; UPDATE t2 SET c='eighty thousand two hundred twenty-nine' WHERE a=11781; UPDATE t2 SET c='fifty thousand four hundred twenty-five' WHERE a=11782; UPDATE t2 SET c='sixty thousand eight hundred two' WHERE a=11783; UPDATE t2 SET c='sixty-six thousand three hundred eighty-four' WHERE a=11784; UPDATE t2 SET c='eighty-five thousand three hundred ninety-seven' WHERE a=11785; UPDATE t2 SET c='fifteen thousand seven hundred twelve' WHERE a=11786; UPDATE t2 SET c='seventy thousand five hundred twenty-six' WHERE a=11787; UPDATE t2 SET c='forty thousand sixty-five' WHERE a=11788; UPDATE t2 SET c='forty-six thousand sixty-two' WHERE a=11789; UPDATE t2 SET c='thirty-three thousand five hundred six' WHERE a=11790; UPDATE t2 SET c='ninety-seven thousand four hundred fifty-eight' WHERE a=11791; UPDATE t2 SET c='eighty-one thousand four hundred twenty-three' WHERE a=11792; UPDATE t2 SET c='thirty thousand three hundred seventeen' WHERE a=11793; UPDATE t2 SET c='eighty-nine thousand four hundred seventy-six' WHERE a=11794; UPDATE t2 SET c='seventy-three thousand one hundred thirty-eight' WHERE a=11795; UPDATE t2 SET c='five thousand nine hundred eighty-nine' WHERE a=11796; UPDATE t2 SET c='ninety-four thousand nine hundred seventy-two' WHERE a=11797; UPDATE t2 SET c='sixty-seven thousand nine hundred seventy' WHERE a=11798; UPDATE t2 SET c='fifty-one thousand three hundred twenty-two' WHERE a=11799; UPDATE t2 SET c='forty-four thousand seven hundred seventy-three' WHERE a=11800; UPDATE t2 SET c='eleven thousand two hundred forty-two' WHERE a=11801; UPDATE t2 SET c='fifty-seven thousand eight hundred seventy' WHERE a=11802; UPDATE t2 SET c='eighty-seven thousand seven hundred forty-one' WHERE a=11803; UPDATE t2 SET c='seventy-three thousand six hundred seventeen' WHERE a=11804; UPDATE t2 SET c='seventy-nine thousand eight hundred twenty-seven' WHERE a=11805; UPDATE t2 SET c='twenty-six thousand nine hundred sixty-two' WHERE a=11806; UPDATE t2 SET c='eighty-nine thousand eight hundred sixty-three' WHERE a=11807; UPDATE t2 SET c='thirty-nine thousand nine hundred sixty-one' WHERE a=11808; UPDATE t2 SET c='seventy-one thousand one hundred sixty-seven' WHERE a=11809; UPDATE t2 SET c='thirty-five thousand five hundred two' WHERE a=11810; UPDATE t2 SET c='forty-nine thousand sixty' WHERE a=11811; UPDATE t2 SET c='fifty-seven thousand one hundred ninety' WHERE a=11812; UPDATE t2 SET c='sixty thousand six hundred forty-one' WHERE a=11813; UPDATE t2 SET c='sixty-five thousand four hundred forty-eight' WHERE a=11814; UPDATE t2 SET c='thirty-nine thousand two hundred seventy-eight' WHERE a=11815; UPDATE t2 SET c='eighteen thousand three hundred four' WHERE a=11816; UPDATE t2 SET c='sixty-five thousand four hundred one' WHERE a=11817; UPDATE t2 SET c='thirteen thousand two hundred thirty-six' WHERE a=11818; UPDATE t2 SET c='fifty thousand eighty-two' WHERE a=11819; UPDATE t2 SET c='five thousand ninety' WHERE a=11820; UPDATE t2 SET c='ninety-five thousand five hundred sixty-seven' WHERE a=11821; UPDATE t2 SET c='sixty-seven thousand five hundred twenty-four' WHERE a=11822; UPDATE t2 SET c='thirty-eight thousand three hundred twenty-six' WHERE a=11823; UPDATE t2 SET c='fifty-eight thousand one hundred five' WHERE a=11824; UPDATE t2 SET c='twenty-nine thousand nine hundred forty-eight' WHERE a=11825; UPDATE t2 SET c='thirty-nine thousand six hundred fifteen' WHERE a=11826; UPDATE t2 SET c='nineteen thousand one hundred fifty-eight' WHERE a=11827; UPDATE t2 SET c='thirty-nine thousand two hundred thirteen' WHERE a=11828; UPDATE t2 SET c='thirty-six thousand four' WHERE a=11829; UPDATE t2 SET c='eighty-seven thousand forty-eight' WHERE a=11830; UPDATE t2 SET c='thirteen thousand four hundred seven' WHERE a=11831; UPDATE t2 SET c='fifty-three thousand one hundred seventy-one' WHERE a=11832; UPDATE t2 SET c='twenty-five thousand four hundred fifty-two' WHERE a=11833; UPDATE t2 SET c='thirty-six thousand five hundred fifty-one' WHERE a=11834; UPDATE t2 SET c='eighty-three thousand seventy-seven' WHERE a=11835; UPDATE t2 SET c='eighty-five thousand nine hundred eighty-six' WHERE a=11836; UPDATE t2 SET c='fifty-four thousand two hundred sixty-four' WHERE a=11837; UPDATE t2 SET c='thirty-two thousand eight hundred sixty-two' WHERE a=11838; UPDATE t2 SET c='forty-five thousand sixty-five' WHERE a=11839; UPDATE t2 SET c='ninety-eight thousand nine hundred ninety-four' WHERE a=11840; UPDATE t2 SET c='seventy-two thousand nine hundred eighty-three' WHERE a=11841; UPDATE t2 SET c='four thousand six hundred forty-one' WHERE a=11842; UPDATE t2 SET c='sixty-four thousand six hundred eighty-seven' WHERE a=11843; UPDATE t2 SET c='thirty-one thousand six hundred twenty' WHERE a=11844; UPDATE t2 SET c='thirty-four thousand five hundred forty-nine' WHERE a=11845; UPDATE t2 SET c='eighty-one thousand seventy-three' WHERE a=11846; UPDATE t2 SET c='twenty-two thousand five hundred thirty-two' WHERE a=11847; UPDATE t2 SET c='thirty-six thousand five hundred seventy-two' WHERE a=11848; UPDATE t2 SET c='ninety thousand one hundred four' WHERE a=11849; UPDATE t2 SET c='seventy thousand four hundred ninety-nine' WHERE a=11850; UPDATE t2 SET c='twenty-four thousand four hundred sixty-seven' WHERE a=11851; UPDATE t2 SET c='sixty-two thousand two hundred forty' WHERE a=11852; UPDATE t2 SET c='thirty-seven thousand four hundred forty-four' WHERE a=11853; UPDATE t2 SET c='twelve thousand forty-one' WHERE a=11854; UPDATE t2 SET c='forty-two thousand five hundred forty-seven' WHERE a=11855; UPDATE t2 SET c='eighty-four thousand one hundred sixty-six' WHERE a=11856; UPDATE t2 SET c='fifty-six thousand seven hundred twenty-two' WHERE a=11857; UPDATE t2 SET c='nine thousand three hundred eleven' WHERE a=11858; UPDATE t2 SET c='thirty-nine thousand three hundred eighty-three' WHERE a=11859; UPDATE t2 SET c='ninety-three thousand six hundred twenty-one' WHERE a=11860; UPDATE t2 SET c='twenty-eight thousand one hundred sixty-seven' WHERE a=11861; UPDATE t2 SET c='fifty-three thousand six hundred' WHERE a=11862; UPDATE t2 SET c='fifteen thousand two hundred ninety-eight' WHERE a=11863; UPDATE t2 SET c='forty-six thousand eight hundred sixteen' WHERE a=11864; UPDATE t2 SET c='thirty-four thousand three hundred fifty-five' WHERE a=11865; UPDATE t2 SET c='sixty-three thousand three hundred forty-nine' WHERE a=11866; UPDATE t2 SET c='sixty-eight thousand eight hundred thirty-six' WHERE a=11867; UPDATE t2 SET c='fifty thousand seven hundred twenty-two' WHERE a=11868; UPDATE t2 SET c='seventy-seven thousand seven hundred thirty' WHERE a=11869; UPDATE t2 SET c='fifty-two thousand thirty-nine' WHERE a=11870; UPDATE t2 SET c='sixty-eight thousand five hundred twenty-nine' WHERE a=11871; UPDATE t2 SET c='twenty-one thousand nineteen' WHERE a=11872; UPDATE t2 SET c='fifty-seven thousand seven hundred fifteen' WHERE a=11873; UPDATE t2 SET c='fifty thousand seven hundred twelve' WHERE a=11874; UPDATE t2 SET c='thirty-nine thousand two hundred thirty-seven' WHERE a=11875; UPDATE t2 SET c='eighty-four thousand ninety-seven' WHERE a=11876; UPDATE t2 SET c='ninety-nine thousand eight hundred seventy-two' WHERE a=11877; UPDATE t2 SET c='ninety-eight thousand six hundred thirty' WHERE a=11878; UPDATE t2 SET c='eight thousand one hundred ninety-nine' WHERE a=11879; UPDATE t2 SET c='eighty-two thousand twenty-two' WHERE a=11880; UPDATE t2 SET c='sixty-three thousand six hundred fourteen' WHERE a=11881; UPDATE t2 SET c='seventy-five thousand fifteen' WHERE a=11882; UPDATE t2 SET c='seventy-four thousand eight hundred thirty-four' WHERE a=11883; UPDATE t2 SET c='thirty-four thousand six hundred eighty-eight' WHERE a=11884; UPDATE t2 SET c='forty-five thousand fifty' WHERE a=11885; UPDATE t2 SET c='eighty-three thousand three hundred seventy' WHERE a=11886; UPDATE t2 SET c='nine thousand two hundred ten' WHERE a=11887; UPDATE t2 SET c='eighty-five thousand eight hundred eighty-four' WHERE a=11888; UPDATE t2 SET c='thirteen thousand two hundred ninety-four' WHERE a=11889; UPDATE t2 SET c='thirty-one thousand six hundred sixty-one' WHERE a=11890; UPDATE t2 SET c='ninety-nine thousand two hundred sixty-three' WHERE a=11891; UPDATE t2 SET c='sixty-eight thousand four hundred thirty-one' WHERE a=11892; UPDATE t2 SET c='twenty-six thousand five hundred twenty-five' WHERE a=11893; UPDATE t2 SET c='forty-nine thousand one hundred eighty-seven' WHERE a=11894; UPDATE t2 SET c='forty-three thousand four hundred fifty' WHERE a=11895; UPDATE t2 SET c='forty-nine thousand six hundred eight' WHERE a=11896; UPDATE t2 SET c='forty-one thousand five hundred thirty-six' WHERE a=11897; UPDATE t2 SET c='sixty-nine thousand three hundred fifty-seven' WHERE a=11898; UPDATE t2 SET c='sixty-five thousand two hundred sixty-three' WHERE a=11899; UPDATE t2 SET c='sixty-eight thousand eight hundred forty-seven' WHERE a=11900; UPDATE t2 SET c='fifty thousand four hundred eight' WHERE a=11901; UPDATE t2 SET c='fifty-one thousand two hundred seventy-nine' WHERE a=11902; UPDATE t2 SET c='twenty-seven thousand five hundred eighty-six' WHERE a=11903; UPDATE t2 SET c='thirty-four thousand six hundred twelve' WHERE a=11904; UPDATE t2 SET c='seventeen thousand one hundred eighty-three' WHERE a=11905; UPDATE t2 SET c='sixty-seven thousand five hundred thirty-seven' WHERE a=11906; UPDATE t2 SET c='eighty-six thousand three hundred ninety-five' WHERE a=11907; UPDATE t2 SET c='six thousand forty-two' WHERE a=11908; UPDATE t2 SET c='fifty-one thousand seven hundred eighty-nine' WHERE a=11909; UPDATE t2 SET c='fifty-two thousand nine hundred five' WHERE a=11910; UPDATE t2 SET c='twenty-two thousand eight hundred sixty-one' WHERE a=11911; UPDATE t2 SET c='twenty thousand three hundred thirty-seven' WHERE a=11912; UPDATE t2 SET c='forty-three thousand ninety-eight' WHERE a=11913; UPDATE t2 SET c='thirty-five thousand six hundred twenty-three' WHERE a=11914; UPDATE t2 SET c='fifty thousand eight hundred fourteen' WHERE a=11915; UPDATE t2 SET c='seventy-two thousand three hundred eight' WHERE a=11916; UPDATE t2 SET c='eighty-seven thousand three hundred one' WHERE a=11917; UPDATE t2 SET c='twenty-four thousand three hundred ninety-five' WHERE a=11918; UPDATE t2 SET c='ninety-six thousand nine hundred eight' WHERE a=11919; UPDATE t2 SET c='sixty thousand three hundred seven' WHERE a=11920; UPDATE t2 SET c='seventy-seven thousand thirty-five' WHERE a=11921; UPDATE t2 SET c='eighty-nine thousand nine hundred thirty-eight' WHERE a=11922; UPDATE t2 SET c='sixty-nine thousand four hundred thirty-three' WHERE a=11923; UPDATE t2 SET c='seventy-five thousand six hundred thirty-eight' WHERE a=11924; UPDATE t2 SET c='thirty-one thousand thirty-eight' WHERE a=11925; UPDATE t2 SET c='ninety thousand seven hundred sixty-three' WHERE a=11926; UPDATE t2 SET c='sixty-nine thousand six hundred twenty-nine' WHERE a=11927; UPDATE t2 SET c='eighty-four thousand one hundred twenty-nine' WHERE a=11928; UPDATE t2 SET c='fifty-two thousand five hundred seven' WHERE a=11929; UPDATE t2 SET c='three thousand two hundred eighty-five' WHERE a=11930; UPDATE t2 SET c='twenty-three thousand seven hundred forty-two' WHERE a=11931; UPDATE t2 SET c='twenty-nine thousand five hundred seventy-five' WHERE a=11932; UPDATE t2 SET c='five thousand eight hundred ninety-six' WHERE a=11933; UPDATE t2 SET c='forty-four thousand eight hundred eighty-three' WHERE a=11934; UPDATE t2 SET c='seventy-eight thousand five hundred thirty-eight' WHERE a=11935; UPDATE t2 SET c='seventy-seven thousand seven hundred twenty-six' WHERE a=11936; UPDATE t2 SET c='seventy-seven thousand two hundred forty-four' WHERE a=11937; UPDATE t2 SET c='twenty-four thousand eight hundred forty-seven' WHERE a=11938; UPDATE t2 SET c='fifty-six thousand five hundred seventy-four' WHERE a=11939; UPDATE t2 SET c='forty-eight thousand seven hundred ninety-eight' WHERE a=11940; UPDATE t2 SET c='thirty-four thousand ninety-five' WHERE a=11941; UPDATE t2 SET c='seven thousand nine hundred ninety-seven' WHERE a=11942; UPDATE t2 SET c='forty-six thousand three hundred seventy-two' WHERE a=11943; UPDATE t2 SET c='forty-seven thousand two hundred sixty' WHERE a=11944; UPDATE t2 SET c='twenty-seven thousand four hundred eleven' WHERE a=11945; UPDATE t2 SET c='seventeen thousand five hundred seventy-eight' WHERE a=11946; UPDATE t2 SET c='seventy-three thousand six hundred sixty-eight' WHERE a=11947; UPDATE t2 SET c='eighty-nine thousand seven hundred fourteen' WHERE a=11948; UPDATE t2 SET c='fifty-five thousand nine hundred twenty-nine' WHERE a=11949; UPDATE t2 SET c='twenty-two thousand five hundred seventy-six' WHERE a=11950; UPDATE t2 SET c='seventy-two thousand three hundred sixteen' WHERE a=11951; UPDATE t2 SET c='seventy-eight thousand five hundred seventy-seven' WHERE a=11952; UPDATE t2 SET c='thirty-one thousand three hundred forty-four' WHERE a=11953; UPDATE t2 SET c='sixty-seven thousand three hundred thirty-three' WHERE a=11954; UPDATE t2 SET c='thirteen thousand nine hundred ninety-nine' WHERE a=11955; UPDATE t2 SET c='nine thousand four hundred twenty-six' WHERE a=11956; UPDATE t2 SET c='twelve thousand three hundred sixty-six' WHERE a=11957; UPDATE t2 SET c='two hundred forty-four' WHERE a=11958; UPDATE t2 SET c='two hundred eighty-nine' WHERE a=11959; UPDATE t2 SET c='thirty thousand one hundred five' WHERE a=11960; UPDATE t2 SET c='thirty-five thousand six hundred two' WHERE a=11961; UPDATE t2 SET c='thirty-three thousand eight hundred nine' WHERE a=11962; UPDATE t2 SET c='eighty-one thousand two hundred thirty-nine' WHERE a=11963; UPDATE t2 SET c='ninety-five thousand four hundred seventy-eight' WHERE a=11964; UPDATE t2 SET c='ninety-three thousand four hundred sixty-nine' WHERE a=11965; UPDATE t2 SET c='eleven thousand five hundred sixteen' WHERE a=11966; UPDATE t2 SET c='sixty-eight thousand one hundred fifty' WHERE a=11967; UPDATE t2 SET c='sixty-three thousand six hundred eleven' WHERE a=11968; UPDATE t2 SET c='eighty thousand four hundred sixty-four' WHERE a=11969; UPDATE t2 SET c='ninety-one thousand seventy-six' WHERE a=11970; UPDATE t2 SET c='eighty-four thousand seven hundred forty-nine' WHERE a=11971; UPDATE t2 SET c='fifty-two thousand eight hundred ninety-nine' WHERE a=11972; UPDATE t2 SET c='fifty-four thousand six hundred eighty-two' WHERE a=11973; UPDATE t2 SET c='sixty-five thousand two hundred eighty-five' WHERE a=11974; UPDATE t2 SET c='four thousand six hundred twenty' WHERE a=11975; UPDATE t2 SET c='eighty-four thousand two hundred sixty-eight' WHERE a=11976; UPDATE t2 SET c='ninety-four thousand forty-eight' WHERE a=11977; UPDATE t2 SET c='three thousand four hundred thirty-seven' WHERE a=11978; UPDATE t2 SET c='thirty-seven thousand eight hundred eighteen' WHERE a=11979; UPDATE t2 SET c='forty-eight thousand six hundred seventy-three' WHERE a=11980; UPDATE t2 SET c='sixty-six thousand seven hundred forty-two' WHERE a=11981; UPDATE t2 SET c='eighteen thousand nine hundred fifty-seven' WHERE a=11982; UPDATE t2 SET c='ninety-four thousand five hundred eighteen' WHERE a=11983; UPDATE t2 SET c='eighty thousand six hundred eighty-three' WHERE a=11984; UPDATE t2 SET c='six thousand four hundred twenty-seven' WHERE a=11985; UPDATE t2 SET c='forty-two thousand one hundred fifty-three' WHERE a=11986; UPDATE t2 SET c='eighty-one thousand eight hundred seventy-nine' WHERE a=11987; UPDATE t2 SET c='twenty thousand three hundred eighty-seven' WHERE a=11988; UPDATE t2 SET c='sixty-eight thousand four hundred eighty-three' WHERE a=11989; UPDATE t2 SET c='eighty-seven thousand eight hundred sixty-three' WHERE a=11990; UPDATE t2 SET c='eighty-seven thousand four hundred fifty-one' WHERE a=11991; UPDATE t2 SET c='six thousand four hundred four' WHERE a=11992; UPDATE t2 SET c='thirteen thousand thirty-two' WHERE a=11993; UPDATE t2 SET c='sixteen thousand nine hundred ninety-five' WHERE a=11994; UPDATE t2 SET c='twenty-five thousand five hundred eighty' WHERE a=11995; UPDATE t2 SET c='sixty-two thousand five hundred forty-one' WHERE a=11996; UPDATE t2 SET c='fifty-nine thousand eight hundred sixty-six' WHERE a=11997; UPDATE t2 SET c='nineteen thousand one hundred thirteen' WHERE a=11998; UPDATE t2 SET c='seventy-four thousand one hundred eighty-nine' WHERE a=11999; UPDATE t2 SET c='sixty-seven thousand five hundred ninety-seven' WHERE a=12000; UPDATE t2 SET c='seventy-three thousand three hundred fifty-seven' WHERE a=12001; UPDATE t2 SET c='thirty-three thousand one hundred six' WHERE a=12002; UPDATE t2 SET c='eighty-seven thousand eight hundred thirty-one' WHERE a=12003; UPDATE t2 SET c='ninety-four thousand ninety-eight' WHERE a=12004; UPDATE t2 SET c='forty thousand six hundred eighteen' WHERE a=12005; UPDATE t2 SET c='seventy-three thousand nine hundred fifty-nine' WHERE a=12006; UPDATE t2 SET c='seven thousand six hundred thirty-six' WHERE a=12007; UPDATE t2 SET c='eighty-three thousand five hundred twenty-eight' WHERE a=12008; UPDATE t2 SET c='fifty-three thousand eight hundred twenty-two' WHERE a=12009; UPDATE t2 SET c='one thousand sixty-eight' WHERE a=12010; UPDATE t2 SET c='seventy-eight thousand two hundred ninety-five' WHERE a=12011; UPDATE t2 SET c='nineteen thousand three hundred seven' WHERE a=12012; UPDATE t2 SET c='ninety-five thousand three hundred sixty-two' WHERE a=12013; UPDATE t2 SET c='twenty-four thousand two hundred eight' WHERE a=12014; UPDATE t2 SET c='eighty-two thousand nine hundred fifty-nine' WHERE a=12015; UPDATE t2 SET c='ninety-nine thousand one hundred sixty-four' WHERE a=12016; UPDATE t2 SET c='twenty thousand one hundred thirty-eight' WHERE a=12017; UPDATE t2 SET c='ninety-nine thousand two hundred seven' WHERE a=12018; UPDATE t2 SET c='fifty-three thousand four hundred ninety-eight' WHERE a=12019; UPDATE t2 SET c='eighty-three thousand two hundred seventy-two' WHERE a=12020; UPDATE t2 SET c='forty-five thousand nine hundred eighty-four' WHERE a=12021; UPDATE t2 SET c='six thousand five' WHERE a=12022; UPDATE t2 SET c='fifty-seven thousand two hundred five' WHERE a=12023; UPDATE t2 SET c='forty-seven thousand four hundred seventy' WHERE a=12024; UPDATE t2 SET c='fifty-three thousand five hundred one' WHERE a=12025; UPDATE t2 SET c='twenty-four thousand five hundred twelve' WHERE a=12026; UPDATE t2 SET c='seventy-six thousand eight hundred thirty-one' WHERE a=12027; UPDATE t2 SET c='twenty-three thousand six hundred sixty-nine' WHERE a=12028; UPDATE t2 SET c='eleven thousand five hundred six' WHERE a=12029; UPDATE t2 SET c='forty-six thousand eight hundred seventy-two' WHERE a=12030; UPDATE t2 SET c='forty-one thousand three hundred fifty-eight' WHERE a=12031; UPDATE t2 SET c='twenty-eight thousand five hundred five' WHERE a=12032; UPDATE t2 SET c='eighty-five thousand two hundred seventy-six' WHERE a=12033; UPDATE t2 SET c='sixty-four thousand eight hundred three' WHERE a=12034; UPDATE t2 SET c='eighty thousand eight hundred ninety-two' WHERE a=12035; UPDATE t2 SET c='eighty-seven thousand twelve' WHERE a=12036; UPDATE t2 SET c='seventy-three thousand five hundred sixty-nine' WHERE a=12037; UPDATE t2 SET c='twenty-six thousand two hundred fifty-seven' WHERE a=12038; UPDATE t2 SET c='seven thousand one hundred thirty-seven' WHERE a=12039; UPDATE t2 SET c='thirty-one thousand eighty-seven' WHERE a=12040; UPDATE t2 SET c='forty-one thousand seven hundred sixty' WHERE a=12041; UPDATE t2 SET c='nine thousand six hundred ninety-two' WHERE a=12042; UPDATE t2 SET c='forty-one thousand one hundred' WHERE a=12043; UPDATE t2 SET c='seventy-eight thousand eight hundred three' WHERE a=12044; UPDATE t2 SET c='ninety-five thousand four hundred ninety-seven' WHERE a=12045; UPDATE t2 SET c='six thousand one hundred seventy-one' WHERE a=12046; UPDATE t2 SET c='ninety-four thousand four hundred thirty-five' WHERE a=12047; UPDATE t2 SET c='twenty-four thousand five hundred thirty-nine' WHERE a=12048; UPDATE t2 SET c='sixty-six thousand six hundred forty-nine' WHERE a=12049; UPDATE t2 SET c='fifteen thousand five hundred eighty-six' WHERE a=12050; UPDATE t2 SET c='twenty-five thousand eight hundred fourteen' WHERE a=12051; UPDATE t2 SET c='seventy-nine thousand two hundred thirty-five' WHERE a=12052; UPDATE t2 SET c='ninety-three thousand seven hundred eighty-one' WHERE a=12053; UPDATE t2 SET c='four thousand three hundred forty-seven' WHERE a=12054; UPDATE t2 SET c='ninety-two thousand three hundred ninety-three' WHERE a=12055; UPDATE t2 SET c='seventy-seven thousand one hundred twenty-seven' WHERE a=12056; UPDATE t2 SET c='seventy-six thousand five hundred sixty-two' WHERE a=12057; UPDATE t2 SET c='forty-five thousand six hundred forty-five' WHERE a=12058; UPDATE t2 SET c='forty-one thousand six hundred twenty-four' WHERE a=12059; UPDATE t2 SET c='forty-three thousand six hundred thirty-four' WHERE a=12060; UPDATE t2 SET c='sixty-two thousand two hundred seventeen' WHERE a=12061; UPDATE t2 SET c='two thousand sixty-seven' WHERE a=12062; UPDATE t2 SET c='ninety-five thousand eight hundred forty-five' WHERE a=12063; UPDATE t2 SET c='thirty-eight thousand three hundred forty-six' WHERE a=12064; UPDATE t2 SET c='five thousand five hundred fifty-two' WHERE a=12065; UPDATE t2 SET c='ninety thousand two hundred eighty-five' WHERE a=12066; UPDATE t2 SET c='fourteen thousand three hundred eighty-eight' WHERE a=12067; UPDATE t2 SET c='one thousand six hundred sixty-four' WHERE a=12068; UPDATE t2 SET c='forty-two thousand six hundred forty-eight' WHERE a=12069; UPDATE t2 SET c='eighty-four thousand four hundred seventy-five' WHERE a=12070; UPDATE t2 SET c='forty-five thousand six hundred ninety-three' WHERE a=12071; UPDATE t2 SET c='ten thousand two hundred thirty-three' WHERE a=12072; UPDATE t2 SET c='fourteen thousand five hundred sixty-one' WHERE a=12073; UPDATE t2 SET c='ninety-four thousand one hundred forty-eight' WHERE a=12074; UPDATE t2 SET c='thirty thousand seventeen' WHERE a=12075; UPDATE t2 SET c='thirty-four thousand two hundred eleven' WHERE a=12076; UPDATE t2 SET c='forty-seven thousand one hundred eighty-three' WHERE a=12077; UPDATE t2 SET c='seventy-six thousand three hundred fifty-six' WHERE a=12078; UPDATE t2 SET c='fifty-seven thousand six hundred ninety' WHERE a=12079; UPDATE t2 SET c='seventy-eight thousand fifty-three' WHERE a=12080; UPDATE t2 SET c='nineteen thousand two hundred sixty-five' WHERE a=12081; UPDATE t2 SET c='four thousand one hundred thirteen' WHERE a=12082; UPDATE t2 SET c='sixty-four thousand four hundred thirty-one' WHERE a=12083; UPDATE t2 SET c='thirty-nine thousand six hundred seventy' WHERE a=12084; UPDATE t2 SET c='seventy-nine thousand five hundred ninety-four' WHERE a=12085; UPDATE t2 SET c='seventy-one thousand six hundred seventeen' WHERE a=12086; UPDATE t2 SET c='ninety-five thousand seven hundred fifty-one' WHERE a=12087; UPDATE t2 SET c='sixty-nine thousand forty-one' WHERE a=12088; UPDATE t2 SET c='forty-three thousand one hundred twenty-four' WHERE a=12089; UPDATE t2 SET c='ninety-four thousand five hundred nine' WHERE a=12090; UPDATE t2 SET c='seventy thousand six hundred thirteen' WHERE a=12091; UPDATE t2 SET c='sixty-seven thousand six hundred seventy-six' WHERE a=12092; UPDATE t2 SET c='sixty-four thousand seven hundred four' WHERE a=12093; UPDATE t2 SET c='sixteen thousand three hundred thirty-four' WHERE a=12094; UPDATE t2 SET c='nineteen thousand six hundred thirty-one' WHERE a=12095; UPDATE t2 SET c='eighteen thousand five hundred twenty-six' WHERE a=12096; UPDATE t2 SET c='twenty-one thousand five hundred ninety-seven' WHERE a=12097; UPDATE t2 SET c='one thousand six hundred seven' WHERE a=12098; UPDATE t2 SET c='ten thousand two hundred seventy-nine' WHERE a=12099; UPDATE t2 SET c='fifty-eight thousand four hundred eighty-six' WHERE a=12100; UPDATE t2 SET c='eighty-two thousand four hundred nineteen' WHERE a=12101; UPDATE t2 SET c='thirty-three thousand seven hundred twenty-five' WHERE a=12102; UPDATE t2 SET c='fifteen thousand one hundred thirteen' WHERE a=12103; UPDATE t2 SET c='twenty-six thousand nine hundred eighty-five' WHERE a=12104; UPDATE t2 SET c='fifty-nine thousand one hundred eighty' WHERE a=12105; UPDATE t2 SET c='fifty-nine thousand three hundred seventy-six' WHERE a=12106; UPDATE t2 SET c='nineteen thousand five hundred twelve' WHERE a=12107; UPDATE t2 SET c='four thousand one hundred forty-six' WHERE a=12108; UPDATE t2 SET c='two thousand four hundred thirty-three' WHERE a=12109; UPDATE t2 SET c='fifty-one thousand four hundred eleven' WHERE a=12110; UPDATE t2 SET c='seventy-three thousand eight hundred ninety-eight' WHERE a=12111; UPDATE t2 SET c='eighty-one thousand seven hundred seventeen' WHERE a=12112; UPDATE t2 SET c='four hundred' WHERE a=12113; UPDATE t2 SET c='fifty-seven thousand five hundred ninety-two' WHERE a=12114; UPDATE t2 SET c='eighteen thousand nine hundred forty-eight' WHERE a=12115; UPDATE t2 SET c='sixty-seven thousand six hundred fifty-two' WHERE a=12116; UPDATE t2 SET c='fifty-eight thousand eight hundred sixty-three' WHERE a=12117; UPDATE t2 SET c='fourteen thousand five hundred forty' WHERE a=12118; UPDATE t2 SET c='six thousand fifty' WHERE a=12119; UPDATE t2 SET c='twenty-six thousand three hundred fifty-three' WHERE a=12120; UPDATE t2 SET c='four hundred seventy-one' WHERE a=12121; UPDATE t2 SET c='thirty-nine thousand nine hundred sixty-seven' WHERE a=12122; UPDATE t2 SET c='ten thousand three hundred ninety-four' WHERE a=12123; UPDATE t2 SET c='fifty-eight thousand eighty' WHERE a=12124; UPDATE t2 SET c='thirty-nine thousand ninety-nine' WHERE a=12125; UPDATE t2 SET c='twenty-eight thousand one hundred twenty-four' WHERE a=12126; UPDATE t2 SET c='eighty-two thousand three hundred sixty-four' WHERE a=12127; UPDATE t2 SET c='fifty-three thousand forty-nine' WHERE a=12128; UPDATE t2 SET c='seven thousand seven hundred ninety' WHERE a=12129; UPDATE t2 SET c='ninety-six thousand seven hundred ninety-one' WHERE a=12130; UPDATE t2 SET c='twenty-one thousand three hundred fifty-six' WHERE a=12131; UPDATE t2 SET c='sixty-three thousand three hundred nine' WHERE a=12132; UPDATE t2 SET c='six thousand three hundred ninety-eight' WHERE a=12133; UPDATE t2 SET c='fourteen thousand four hundred ninety-five' WHERE a=12134; UPDATE t2 SET c='eighty-eight thousand six hundred seventy-two' WHERE a=12135; UPDATE t2 SET c='seventy-one thousand four hundred ninety-one' WHERE a=12136; UPDATE t2 SET c='thirty-seven thousand eleven' WHERE a=12137; UPDATE t2 SET c='fifteen thousand one hundred seven' WHERE a=12138; UPDATE t2 SET c='ninety-eight thousand nine hundred forty-five' WHERE a=12139; UPDATE t2 SET c='ninety-six thousand six hundred thirty-three' WHERE a=12140; UPDATE t2 SET c='seventy-nine thousand five hundred ninety-five' WHERE a=12141; UPDATE t2 SET c='twenty-nine thousand seven hundred sixteen' WHERE a=12142; UPDATE t2 SET c='fifty-one thousand nine hundred fifty-seven' WHERE a=12143; UPDATE t2 SET c='thirty-seven thousand three hundred fifty-nine' WHERE a=12144; UPDATE t2 SET c='eighteen thousand eight hundred nine' WHERE a=12145; UPDATE t2 SET c='thirty-nine thousand nine hundred fourteen' WHERE a=12146; UPDATE t2 SET c='twenty-seven thousand five hundred sixty-two' WHERE a=12147; UPDATE t2 SET c='eighty-six thousand six hundred twenty-six' WHERE a=12148; UPDATE t2 SET c='eighty thousand one hundred eighty-six' WHERE a=12149; UPDATE t2 SET c='sixteen thousand nine hundred ninety-six' WHERE a=12150; UPDATE t2 SET c='sixty-four thousand six hundred eighty-eight' WHERE a=12151; UPDATE t2 SET c='six thousand six hundred eighty-four' WHERE a=12152; UPDATE t2 SET c='sixty thousand eight hundred thirty-eight' WHERE a=12153; UPDATE t2 SET c='ninety thousand nine hundred thirty-two' WHERE a=12154; UPDATE t2 SET c='ninety-six thousand nine hundred thirty-one' WHERE a=12155; UPDATE t2 SET c='sixty-six thousand two hundred eighty-eight' WHERE a=12156; UPDATE t2 SET c='seventy-six thousand eight hundred twenty-four' WHERE a=12157; UPDATE t2 SET c='thirteen thousand seven hundred forty-five' WHERE a=12158; UPDATE t2 SET c='eighty-four thousand seven hundred thirty-eight' WHERE a=12159; UPDATE t2 SET c='four thousand nine hundred sixty-two' WHERE a=12160; UPDATE t2 SET c='eleven thousand one hundred sixty-two' WHERE a=12161; UPDATE t2 SET c='ninety-seven thousand three hundred seven' WHERE a=12162; UPDATE t2 SET c='eighty-six thousand five hundred sixty' WHERE a=12163; UPDATE t2 SET c='one hundred sixteen' WHERE a=12164; UPDATE t2 SET c='fifty thousand two hundred forty-three' WHERE a=12165; UPDATE t2 SET c='eighty-four thousand nine hundred sixty-nine' WHERE a=12166; UPDATE t2 SET c='seventy-one thousand eight hundred forty-six' WHERE a=12167; UPDATE t2 SET c='fifty-one thousand four hundred forty-two' WHERE a=12168; UPDATE t2 SET c='seventy-two thousand ninety-one' WHERE a=12169; UPDATE t2 SET c='twenty-five thousand eight hundred forty-eight' WHERE a=12170; UPDATE t2 SET c='seventy thousand two hundred forty-four' WHERE a=12171; UPDATE t2 SET c='fourteen thousand one hundred fifty-eight' WHERE a=12172; UPDATE t2 SET c='thirty-seven thousand eight hundred fifty-two' WHERE a=12173; UPDATE t2 SET c='seventy-nine thousand four hundred seventy-nine' WHERE a=12174; UPDATE t2 SET c='ten thousand nine hundred thirteen' WHERE a=12175; UPDATE t2 SET c='thirteen thousand one hundred sixty-six' WHERE a=12176; UPDATE t2 SET c='fifty-seven thousand four hundred eight' WHERE a=12177; UPDATE t2 SET c='twenty-two thousand six hundred seventy-five' WHERE a=12178; UPDATE t2 SET c='seventy-five thousand one hundred thirty-seven' WHERE a=12179; UPDATE t2 SET c='eighteen thousand seven hundred thirteen' WHERE a=12180; UPDATE t2 SET c='ninety-six thousand thirty-two' WHERE a=12181; UPDATE t2 SET c='eight thousand one hundred fifty-seven' WHERE a=12182; UPDATE t2 SET c='seventeen thousand three hundred fifty-four' WHERE a=12183; UPDATE t2 SET c='forty-nine thousand five hundred fifteen' WHERE a=12184; UPDATE t2 SET c='seventeen thousand three hundred fifty-five' WHERE a=12185; UPDATE t2 SET c='seventy-two thousand five hundred forty-four' WHERE a=12186; UPDATE t2 SET c='thirty thousand three hundred sixty-eight' WHERE a=12187; UPDATE t2 SET c='thirty-one thousand five hundred seventy-three' WHERE a=12188; UPDATE t2 SET c='eighty-six thousand three hundred ninety-one' WHERE a=12189; UPDATE t2 SET c='eighty-one thousand four hundred eight' WHERE a=12190; UPDATE t2 SET c='thirty-two thousand one hundred three' WHERE a=12191; UPDATE t2 SET c='two thousand eight hundred seventeen' WHERE a=12192; UPDATE t2 SET c='ninety-one thousand three hundred ninety' WHERE a=12193; UPDATE t2 SET c='ninety-three thousand three hundred thirty-seven' WHERE a=12194; UPDATE t2 SET c='eighty-four thousand nine hundred eighty-eight' WHERE a=12195; UPDATE t2 SET c='ninety-one thousand four hundred seventy-three' WHERE a=12196; UPDATE t2 SET c='forty-five thousand four hundred seventy-nine' WHERE a=12197; UPDATE t2 SET c='sixty-seven thousand three hundred sixty-six' WHERE a=12198; UPDATE t2 SET c='sixty-three thousand three hundred thirty-eight' WHERE a=12199; UPDATE t2 SET c='thirty-five thousand four hundred ninety-four' WHERE a=12200; UPDATE t2 SET c='seventy thousand one hundred sixty-seven' WHERE a=12201; UPDATE t2 SET c='twenty-six thousand two hundred forty-six' WHERE a=12202; UPDATE t2 SET c='ninety thousand three hundred seventy-two' WHERE a=12203; UPDATE t2 SET c='eighty-one thousand eight hundred twenty-seven' WHERE a=12204; UPDATE t2 SET c='four thousand seven hundred eighty-two' WHERE a=12205; UPDATE t2 SET c='forty-one thousand six hundred eighty' WHERE a=12206; UPDATE t2 SET c='fourteen thousand nine hundred sixty-four' WHERE a=12207; UPDATE t2 SET c='fifty-eight thousand two hundred twenty-eight' WHERE a=12208; UPDATE t2 SET c='ninety-seven thousand six hundred ninety-eight' WHERE a=12209; UPDATE t2 SET c='fifty thousand eight hundred forty-four' WHERE a=12210; UPDATE t2 SET c='twenty-six thousand eight hundred fifty-nine' WHERE a=12211; UPDATE t2 SET c='two thousand eight hundred eighty-nine' WHERE a=12212; UPDATE t2 SET c='seventy-two thousand four hundred ninety-five' WHERE a=12213; UPDATE t2 SET c='thirty thousand eight hundred thirty-four' WHERE a=12214; UPDATE t2 SET c='eight thousand eleven' WHERE a=12215; UPDATE t2 SET c='nine thousand seven hundred forty-one' WHERE a=12216; UPDATE t2 SET c='forty-nine thousand one hundred thirty-nine' WHERE a=12217; UPDATE t2 SET c='sixty-two thousand one hundred fifty-seven' WHERE a=12218; UPDATE t2 SET c='ninety-eight thousand one hundred seventy-seven' WHERE a=12219; UPDATE t2 SET c='forty thousand nine hundred eighty-one' WHERE a=12220; UPDATE t2 SET c='ninety-six thousand four hundred eighty-eight' WHERE a=12221; UPDATE t2 SET c='seven thousand five hundred ninety-four' WHERE a=12222; UPDATE t2 SET c='eighty-five thousand three hundred twenty-five' WHERE a=12223; UPDATE t2 SET c='seventy-six thousand three hundred nine' WHERE a=12224; UPDATE t2 SET c='fifty-four thousand nine hundred forty-nine' WHERE a=12225; UPDATE t2 SET c='forty-four thousand two hundred sixty-nine' WHERE a=12226; UPDATE t2 SET c='thirty-eight thousand nine hundred fifty-three' WHERE a=12227; UPDATE t2 SET c='thirty-six thousand two hundred three' WHERE a=12228; UPDATE t2 SET c='forty-six thousand five hundred seventy-three' WHERE a=12229; UPDATE t2 SET c='eighty-nine thousand two hundred forty-eight' WHERE a=12230; UPDATE t2 SET c='twenty-three thousand five hundred eighty-one' WHERE a=12231; UPDATE t2 SET c='eighteen thousand four hundred twenty-four' WHERE a=12232; UPDATE t2 SET c='fifteen thousand eight hundred twenty-two' WHERE a=12233; UPDATE t2 SET c='twelve thousand six hundred fifty-three' WHERE a=12234; UPDATE t2 SET c='seventy-five thousand nine hundred ninety-seven' WHERE a=12235; UPDATE t2 SET c='eight thousand five hundred seventy-one' WHERE a=12236; UPDATE t2 SET c='thirty-nine thousand five hundred seventy' WHERE a=12237; UPDATE t2 SET c='forty-two thousand three hundred eighty-four' WHERE a=12238; UPDATE t2 SET c='eighty-one thousand nine hundred eighty-eight' WHERE a=12239; UPDATE t2 SET c='twenty-nine thousand four hundred four' WHERE a=12240; UPDATE t2 SET c='ninety-two thousand one hundred fifty-four' WHERE a=12241; UPDATE t2 SET c='eighty-six thousand five hundred thirty-two' WHERE a=12242; UPDATE t2 SET c='two thousand three hundred seventy-nine' WHERE a=12243; UPDATE t2 SET c='twenty-six thousand three hundred thirty-six' WHERE a=12244; UPDATE t2 SET c='forty-eight thousand two hundred fifty' WHERE a=12245; UPDATE t2 SET c='eighty-nine thousand six hundred eleven' WHERE a=12246; UPDATE t2 SET c='eleven thousand seven hundred seventy-four' WHERE a=12247; UPDATE t2 SET c='forty-seven thousand eleven' WHERE a=12248; UPDATE t2 SET c='twenty-seven thousand eight hundred nineteen' WHERE a=12249; UPDATE t2 SET c='eighty-three thousand three hundred fifteen' WHERE a=12250; UPDATE t2 SET c='fifty-six thousand eight hundred eighty-eight' WHERE a=12251; UPDATE t2 SET c='sixty-nine thousand four hundred fifteen' WHERE a=12252; UPDATE t2 SET c='thirty thousand nine hundred forty-nine' WHERE a=12253; UPDATE t2 SET c='fifty-eight thousand four hundred thirty-five' WHERE a=12254; UPDATE t2 SET c='eighty-one thousand seven hundred eighty-six' WHERE a=12255; UPDATE t2 SET c='ninety thousand twenty-one' WHERE a=12256; UPDATE t2 SET c='seventy-nine thousand nine hundred forty-seven' WHERE a=12257; UPDATE t2 SET c='forty-three thousand nine hundred twenty-five' WHERE a=12258; UPDATE t2 SET c='forty-three thousand five hundred sixty-seven' WHERE a=12259; UPDATE t2 SET c='ninety-four thousand nine hundred forty-nine' WHERE a=12260; UPDATE t2 SET c='sixty-four thousand nine hundred thirteen' WHERE a=12261; UPDATE t2 SET c='eighty-eight thousand seven hundred eighty-six' WHERE a=12262; UPDATE t2 SET c='fifty-five thousand nine hundred sixty-five' WHERE a=12263; UPDATE t2 SET c='ten thousand six hundred forty-three' WHERE a=12264; UPDATE t2 SET c='forty-five thousand ninety-seven' WHERE a=12265; UPDATE t2 SET c='twenty-one thousand six hundred forty-nine' WHERE a=12266; UPDATE t2 SET c='twenty-seven thousand two hundred sixty-three' WHERE a=12267; UPDATE t2 SET c='thirty-eight thousand eight hundred sixty-two' WHERE a=12268; UPDATE t2 SET c='thirteen thousand four hundred twenty-five' WHERE a=12269; UPDATE t2 SET c='ten thousand three hundred seventy-three' WHERE a=12270; UPDATE t2 SET c='twenty-six thousand one hundred eight' WHERE a=12271; UPDATE t2 SET c='five hundred sixty-three' WHERE a=12272; UPDATE t2 SET c='one thousand one hundred ninety-six' WHERE a=12273; UPDATE t2 SET c='fifty-four thousand five hundred seventy-one' WHERE a=12274; UPDATE t2 SET c='fifty-four thousand four hundred thirty-five' WHERE a=12275; UPDATE t2 SET c='sixty-five thousand three hundred eight' WHERE a=12276; UPDATE t2 SET c='forty-nine thousand forty-eight' WHERE a=12277; UPDATE t2 SET c='eighty-six thousand two hundred eighteen' WHERE a=12278; UPDATE t2 SET c='sixty-eight thousand seven hundred ninety-two' WHERE a=12279; UPDATE t2 SET c='twenty-one thousand three hundred sixty-six' WHERE a=12280; UPDATE t2 SET c='thirty-eight thousand three hundred twenty' WHERE a=12281; UPDATE t2 SET c='sixteen thousand seven hundred thirty-three' WHERE a=12282; UPDATE t2 SET c='ninety-six thousand one' WHERE a=12283; UPDATE t2 SET c='fifty-five thousand seventy-four' WHERE a=12284; UPDATE t2 SET c='three thousand seven hundred thirty-eight' WHERE a=12285; UPDATE t2 SET c='forty-one thousand six hundred sixty-four' WHERE a=12286; UPDATE t2 SET c='six thousand six hundred twenty-seven' WHERE a=12287; UPDATE t2 SET c='fifty-five thousand five hundred sixty-six' WHERE a=12288; UPDATE t2 SET c='fifty-eight thousand two hundred five' WHERE a=12289; UPDATE t2 SET c='fifty-seven thousand nine hundred eighty-seven' WHERE a=12290; UPDATE t2 SET c='sixty-five thousand nine hundred seventy-seven' WHERE a=12291; UPDATE t2 SET c='twenty-seven thousand seven hundred ninety-nine' WHERE a=12292; UPDATE t2 SET c='eighty-four thousand six hundred twenty-six' WHERE a=12293; UPDATE t2 SET c='thirty-eight thousand eight hundred sixty-nine' WHERE a=12294; UPDATE t2 SET c='thirty-nine thousand one hundred nineteen' WHERE a=12295; UPDATE t2 SET c='one thousand nine hundred eleven' WHERE a=12296; UPDATE t2 SET c='seventy-one thousand two hundred eighty-four' WHERE a=12297; UPDATE t2 SET c='twenty-four thousand five hundred seventy-seven' WHERE a=12298; UPDATE t2 SET c='seventeen thousand three hundred five' WHERE a=12299; UPDATE t2 SET c='thirty-three thousand twenty-five' WHERE a=12300; UPDATE t2 SET c='fifty-three thousand three hundred eighty-seven' WHERE a=12301; UPDATE t2 SET c='seventy thousand eighty-nine' WHERE a=12302; UPDATE t2 SET c='thirty-two thousand seven hundred ninety-nine' WHERE a=12303; UPDATE t2 SET c='thirty-seven thousand one hundred ninety-eight' WHERE a=12304; UPDATE t2 SET c='twenty thousand seven hundred forty' WHERE a=12305; UPDATE t2 SET c='eighty-two thousand ninety-two' WHERE a=12306; UPDATE t2 SET c='ninety-six thousand five hundred twelve' WHERE a=12307; UPDATE t2 SET c='eighty thousand five hundred fifteen' WHERE a=12308; UPDATE t2 SET c='seventy-nine thousand nine hundred sixty-three' WHERE a=12309; UPDATE t2 SET c='thirty-seven thousand three hundred forty' WHERE a=12310; UPDATE t2 SET c='ninety-nine thousand two hundred fifty-five' WHERE a=12311; UPDATE t2 SET c='sixty-two thousand nine hundred seventy' WHERE a=12312; UPDATE t2 SET c='eighty-three thousand thirty-four' WHERE a=12313; UPDATE t2 SET c='thirty-six thousand six hundred seven' WHERE a=12314; UPDATE t2 SET c='sixty-three thousand one hundred seventeen' WHERE a=12315; UPDATE t2 SET c='forty-one thousand eight hundred thirty-seven' WHERE a=12316; UPDATE t2 SET c='fifty-eight thousand one hundred sixteen' WHERE a=12317; UPDATE t2 SET c='ninety-six thousand three hundred seventy' WHERE a=12318; UPDATE t2 SET c='ninety thousand seventy' WHERE a=12319; UPDATE t2 SET c='fifteen thousand ninety-five' WHERE a=12320; UPDATE t2 SET c='thirty-two thousand nine hundred seventy-seven' WHERE a=12321; UPDATE t2 SET c='thirty-seven thousand five hundred thirty-one' WHERE a=12322; UPDATE t2 SET c='sixteen thousand six hundred fifty-six' WHERE a=12323; UPDATE t2 SET c='sixty-nine thousand five hundred sixty-four' WHERE a=12324; UPDATE t2 SET c='seventeen thousand eight hundred ninety-four' WHERE a=12325; UPDATE t2 SET c='thirty-four thousand four hundred seventy-two' WHERE a=12326; UPDATE t2 SET c='thirty-three thousand nine hundred eighty-nine' WHERE a=12327; UPDATE t2 SET c='eighty-seven thousand eight hundred forty-nine' WHERE a=12328; UPDATE t2 SET c='seventy-seven thousand six hundred seventy-one' WHERE a=12329; UPDATE t2 SET c='sixty-four thousand three hundred fifty-two' WHERE a=12330; UPDATE t2 SET c='one thousand six hundred sixty-eight' WHERE a=12331; UPDATE t2 SET c='sixty-four thousand eight hundred eight' WHERE a=12332; UPDATE t2 SET c='eighty-seven thousand three hundred seventy-four' WHERE a=12333; UPDATE t2 SET c='ninety-three thousand four hundred sixty-four' WHERE a=12334; UPDATE t2 SET c='four hundred thirty-seven' WHERE a=12335; UPDATE t2 SET c='forty-four thousand three hundred ninety-six' WHERE a=12336; UPDATE t2 SET c='fourteen thousand five hundred seventy-one' WHERE a=12337; UPDATE t2 SET c='seventy-two thousand five hundred twenty-three' WHERE a=12338; UPDATE t2 SET c='eighty-three thousand eight hundred twelve' WHERE a=12339; UPDATE t2 SET c='five thousand four hundred twenty-one' WHERE a=12340; UPDATE t2 SET c='ninety-two thousand seven hundred twenty-two' WHERE a=12341; UPDATE t2 SET c='seven thousand two hundred sixty-four' WHERE a=12342; UPDATE t2 SET c='thirty-nine thousand nine hundred sixty' WHERE a=12343; UPDATE t2 SET c='thirty-eight thousand three hundred nine' WHERE a=12344; UPDATE t2 SET c='sixty-one thousand four hundred eighty-five' WHERE a=12345; UPDATE t2 SET c='nine thousand eight hundred forty-five' WHERE a=12346; UPDATE t2 SET c='forty-three thousand three hundred' WHERE a=12347; UPDATE t2 SET c='fifty-five thousand three hundred forty-nine' WHERE a=12348; UPDATE t2 SET c='sixty-nine thousand nine hundred ninety-eight' WHERE a=12349; UPDATE t2 SET c='twenty-six thousand five hundred twenty-seven' WHERE a=12350; UPDATE t2 SET c='fourteen thousand four hundred three' WHERE a=12351; UPDATE t2 SET c='twenty-five thousand seven hundred seventy-five' WHERE a=12352; UPDATE t2 SET c='two thousand two hundred ninety-four' WHERE a=12353; UPDATE t2 SET c='seventy-three thousand one hundred thirty-four' WHERE a=12354; UPDATE t2 SET c='forty-four thousand nine hundred seventy-two' WHERE a=12355; UPDATE t2 SET c='six thousand five' WHERE a=12356; UPDATE t2 SET c='twenty-eight' WHERE a=12357; UPDATE t2 SET c='sixty-four thousand thirty-two' WHERE a=12358; UPDATE t2 SET c='five hundred ninety-five' WHERE a=12359; UPDATE t2 SET c='fifty-nine thousand nine hundred seventy' WHERE a=12360; UPDATE t2 SET c='twenty thousand one hundred seventy-seven' WHERE a=12361; UPDATE t2 SET c='ninety-eight thousand three hundred fifty-two' WHERE a=12362; UPDATE t2 SET c='sixty thousand one hundred sixty-five' WHERE a=12363; UPDATE t2 SET c='fifty-one thousand two hundred sixty' WHERE a=12364; UPDATE t2 SET c='seventy-four thousand six hundred eighty-five' WHERE a=12365; UPDATE t2 SET c='forty-three thousand four hundred ninety-one' WHERE a=12366; UPDATE t2 SET c='seventy-eight thousand three hundred twenty' WHERE a=12367; UPDATE t2 SET c='seventy-seven thousand two hundred thirty-three' WHERE a=12368; UPDATE t2 SET c='ten thousand nine hundred thirty-eight' WHERE a=12369; UPDATE t2 SET c='twenty-one thousand four hundred fifty-six' WHERE a=12370; UPDATE t2 SET c='thirty-one thousand four hundred two' WHERE a=12371; UPDATE t2 SET c='six thousand six hundred thirty-four' WHERE a=12372; UPDATE t2 SET c='thirty-three thousand eight hundred twenty-three' WHERE a=12373; UPDATE t2 SET c='thirty-eight thousand forty' WHERE a=12374; UPDATE t2 SET c='eighty-nine thousand three hundred nine' WHERE a=12375; UPDATE t2 SET c='fifty-four thousand three hundred thirteen' WHERE a=12376; UPDATE t2 SET c='eighty-seven thousand one hundred seventy-four' WHERE a=12377; UPDATE t2 SET c='thirty-nine thousand five hundred sixty-eight' WHERE a=12378; UPDATE t2 SET c='sixty-five thousand eighty-three' WHERE a=12379; UPDATE t2 SET c='two thousand one hundred forty-six' WHERE a=12380; UPDATE t2 SET c='twenty-two thousand six hundred forty-eight' WHERE a=12381; UPDATE t2 SET c='two thousand three hundred eighty-three' WHERE a=12382; UPDATE t2 SET c='thirty-six thousand nine hundred twenty-five' WHERE a=12383; UPDATE t2 SET c='ninety-nine thousand five hundred ninety-two' WHERE a=12384; UPDATE t2 SET c='thirty-four thousand eight hundred eighty' WHERE a=12385; UPDATE t2 SET c='five thousand nine hundred ninety-five' WHERE a=12386; UPDATE t2 SET c='ninety-three thousand three hundred ninety-six' WHERE a=12387; UPDATE t2 SET c='forty-nine thousand six hundred two' WHERE a=12388; UPDATE t2 SET c='seventy-one thousand six hundred sixty-six' WHERE a=12389; UPDATE t2 SET c='thirty-six thousand one hundred fifty-two' WHERE a=12390; UPDATE t2 SET c='eighty-four thousand one hundred sixty-eight' WHERE a=12391; UPDATE t2 SET c='twenty-five thousand eight hundred eight' WHERE a=12392; UPDATE t2 SET c='fifty-four thousand two hundred eighty-three' WHERE a=12393; UPDATE t2 SET c='forty-two thousand four hundred seventy-nine' WHERE a=12394; UPDATE t2 SET c='fifty thousand three hundred seventy-four' WHERE a=12395; UPDATE t2 SET c='twenty-five thousand three hundred eighty-three' WHERE a=12396; UPDATE t2 SET c='twenty-four thousand five hundred ninety-five' WHERE a=12397; UPDATE t2 SET c='fifteen thousand one hundred two' WHERE a=12398; UPDATE t2 SET c='seventy-three thousand four hundred forty-three' WHERE a=12399; UPDATE t2 SET c='fifty-five thousand five hundred fifty-nine' WHERE a=12400; UPDATE t2 SET c='thirty-two thousand two hundred eighty-two' WHERE a=12401; UPDATE t2 SET c='twenty-four thousand eight hundred two' WHERE a=12402; UPDATE t2 SET c='eighty-six thousand one hundred twenty-five' WHERE a=12403; UPDATE t2 SET c='fifty-one thousand four hundred nineteen' WHERE a=12404; UPDATE t2 SET c='fifty-two thousand two hundred thirty-five' WHERE a=12405; UPDATE t2 SET c='ninety-seven thousand one hundred ninety-two' WHERE a=12406; UPDATE t2 SET c='thirty-eight thousand six hundred ninety' WHERE a=12407; UPDATE t2 SET c='forty thousand one hundred seventy-four' WHERE a=12408; UPDATE t2 SET c='thirty-seven thousand nine hundred ninety-eight' WHERE a=12409; UPDATE t2 SET c='one thousand one hundred eighty-eight' WHERE a=12410; UPDATE t2 SET c='sixty-seven thousand three hundred seventy-six' WHERE a=12411; UPDATE t2 SET c='seventy-two thousand two hundred forty-nine' WHERE a=12412; UPDATE t2 SET c='eighteen thousand three hundred ninety-eight' WHERE a=12413; UPDATE t2 SET c='six thousand four hundred forty-one' WHERE a=12414; UPDATE t2 SET c='eighty thousand five hundred twenty-one' WHERE a=12415; UPDATE t2 SET c='fifty-one thousand six hundred fifty-one' WHERE a=12416; UPDATE t2 SET c='sixty-five thousand sixty-five' WHERE a=12417; UPDATE t2 SET c='ninety-nine thousand nine hundred twenty-eight' WHERE a=12418; UPDATE t2 SET c='ninety-eight thousand four hundred forty' WHERE a=12419; UPDATE t2 SET c='fifty-nine thousand one hundred four' WHERE a=12420; UPDATE t2 SET c='eighty-one thousand nine hundred eighty-five' WHERE a=12421; UPDATE t2 SET c='forty-five thousand six hundred ninety-nine' WHERE a=12422; UPDATE t2 SET c='twelve thousand four hundred seventy-nine' WHERE a=12423; UPDATE t2 SET c='eighteen thousand four hundred forty-two' WHERE a=12424; UPDATE t2 SET c='ninety-three thousand two hundred twenty-seven' WHERE a=12425; UPDATE t2 SET c='ten thousand seven hundred thirty-nine' WHERE a=12426; UPDATE t2 SET c='thirty-four thousand eight hundred eighty-eight' WHERE a=12427; UPDATE t2 SET c='sixty-two thousand two hundred fifty-eight' WHERE a=12428; UPDATE t2 SET c='seventy-four thousand seven' WHERE a=12429; UPDATE t2 SET c='eighty thousand three hundred fifty' WHERE a=12430; UPDATE t2 SET c='eight thousand five hundred sixty' WHERE a=12431; UPDATE t2 SET c='seventy thousand six hundred thirty-eight' WHERE a=12432; UPDATE t2 SET c='ninety-eight thousand two hundred forty-nine' WHERE a=12433; UPDATE t2 SET c='eighty-nine thousand eight hundred seven' WHERE a=12434; UPDATE t2 SET c='seventy-eight thousand ten' WHERE a=12435; UPDATE t2 SET c='forty-five thousand two hundred one' WHERE a=12436; UPDATE t2 SET c='thirty thousand ten' WHERE a=12437; UPDATE t2 SET c='ninety-eight thousand two hundred fifty' WHERE a=12438; UPDATE t2 SET c='fifty thousand one hundred eighty-eight' WHERE a=12439; UPDATE t2 SET c='seventeen thousand three hundred forty-two' WHERE a=12440; UPDATE t2 SET c='sixty-four thousand three hundred eighty-nine' WHERE a=12441; UPDATE t2 SET c='twenty-five thousand fifty-five' WHERE a=12442; UPDATE t2 SET c='fifty-eight thousand two hundred seventy-seven' WHERE a=12443; UPDATE t2 SET c='fifteen thousand five hundred sixty-nine' WHERE a=12444; UPDATE t2 SET c='seventy-six thousand forty-six' WHERE a=12445; UPDATE t2 SET c='seventy-nine thousand four hundred ninety-nine' WHERE a=12446; UPDATE t2 SET c='fifty-two thousand three hundred thirteen' WHERE a=12447; UPDATE t2 SET c='fifty-five thousand four hundred twenty-one' WHERE a=12448; UPDATE t2 SET c='fifty-two thousand nine hundred eighty-three' WHERE a=12449; UPDATE t2 SET c='eighteen thousand eight hundred ninety-one' WHERE a=12450; UPDATE t2 SET c='seventy-one thousand one hundred fifty-seven' WHERE a=12451; UPDATE t2 SET c='seventy-five thousand five hundred fourteen' WHERE a=12452; UPDATE t2 SET c='seventeen thousand one hundred twenty-two' WHERE a=12453; UPDATE t2 SET c='eighty-three thousand one hundred fifteen' WHERE a=12454; UPDATE t2 SET c='ninety-nine thousand two hundred two' WHERE a=12455; UPDATE t2 SET c='twenty-seven thousand two hundred twenty-nine' WHERE a=12456; UPDATE t2 SET c='sixty-seven thousand five hundred twenty-two' WHERE a=12457; UPDATE t2 SET c='eighty-five thousand four hundred thirteen' WHERE a=12458; UPDATE t2 SET c='twelve thousand seven hundred seventy-eight' WHERE a=12459; UPDATE t2 SET c='ninety thousand six hundred eighty-seven' WHERE a=12460; UPDATE t2 SET c='sixty-five thousand nine hundred ninety-three' WHERE a=12461; UPDATE t2 SET c='eighty-two thousand one hundred forty' WHERE a=12462; UPDATE t2 SET c='seventy-three thousand six hundred forty-four' WHERE a=12463; UPDATE t2 SET c='forty thousand seven hundred thirty-four' WHERE a=12464; UPDATE t2 SET c='seventy-one thousand four hundred forty-seven' WHERE a=12465; UPDATE t2 SET c='twenty-one thousand nine hundred thirty-one' WHERE a=12466; UPDATE t2 SET c='ninety-seven thousand eight hundred eleven' WHERE a=12467; UPDATE t2 SET c='six thousand one hundred thirty-two' WHERE a=12468; UPDATE t2 SET c='seventy-six thousand thirty-six' WHERE a=12469; UPDATE t2 SET c='sixty-eight thousand' WHERE a=12470; UPDATE t2 SET c='thirty-seven thousand seven hundred forty-four' WHERE a=12471; UPDATE t2 SET c='thirty-seven thousand six hundred forty-nine' WHERE a=12472; UPDATE t2 SET c='twenty thousand two hundred nineteen' WHERE a=12473; UPDATE t2 SET c='eighty-two thousand four hundred thirty-nine' WHERE a=12474; UPDATE t2 SET c='seventy-seven thousand eight hundred fifty-five' WHERE a=12475; UPDATE t2 SET c='fourteen thousand two hundred ninety-three' WHERE a=12476; UPDATE t2 SET c='eleven thousand six hundred twenty-five' WHERE a=12477; UPDATE t2 SET c='eight thousand four hundred eighteen' WHERE a=12478; UPDATE t2 SET c='one thousand six hundred sixty-four' WHERE a=12479; UPDATE t2 SET c='thirty-one thousand seven hundred seventy-eight' WHERE a=12480; UPDATE t2 SET c='thirty-eight thousand seven hundred fifty-two' WHERE a=12481; UPDATE t2 SET c='forty-six thousand five hundred nine' WHERE a=12482; UPDATE t2 SET c='one thousand two hundred thirty-eight' WHERE a=12483; UPDATE t2 SET c='twenty-one thousand one hundred seven' WHERE a=12484; UPDATE t2 SET c='eighty-four thousand eighty-two' WHERE a=12485; UPDATE t2 SET c='ninety-six thousand six hundred forty' WHERE a=12486; UPDATE t2 SET c='sixteen thousand one hundred sixty-six' WHERE a=12487; UPDATE t2 SET c='eighty-three thousand twenty-one' WHERE a=12488; UPDATE t2 SET c='nine thousand sixty-nine' WHERE a=12489; UPDATE t2 SET c='ninety thousand nine hundred fifty-seven' WHERE a=12490; UPDATE t2 SET c='ninety-seven thousand twenty-six' WHERE a=12491; UPDATE t2 SET c='ninety-eight thousand eight hundred ninety-one' WHERE a=12492; UPDATE t2 SET c='fourteen thousand five hundred fifty-nine' WHERE a=12493; UPDATE t2 SET c='sixty-one thousand nine hundred forty-five' WHERE a=12494; UPDATE t2 SET c='seven thousand five hundred four' WHERE a=12495; UPDATE t2 SET c='ninety-eight thousand four hundred seventy-six' WHERE a=12496; UPDATE t2 SET c='seventy-four thousand five hundred forty-four' WHERE a=12497; UPDATE t2 SET c='twenty-eight thousand five hundred eleven' WHERE a=12498; UPDATE t2 SET c='eighty thousand two hundred sixty-seven' WHERE a=12499; UPDATE t2 SET c='thirty-five thousand two hundred seventy-one' WHERE a=12500; UPDATE t2 SET c='fifty-five thousand two hundred fifty-two' WHERE a=12501; UPDATE t2 SET c='eight thousand seventy-six' WHERE a=12502; UPDATE t2 SET c='sixty-nine thousand eight hundred forty-three' WHERE a=12503; UPDATE t2 SET c='sixty-four thousand seven hundred two' WHERE a=12504; UPDATE t2 SET c='fifty-nine thousand five hundred sixty-three' WHERE a=12505; UPDATE t2 SET c='eighteen thousand eight hundred sixty-one' WHERE a=12506; UPDATE t2 SET c='seventy-six thousand five hundred three' WHERE a=12507; UPDATE t2 SET c='seventy-five thousand six hundred eighty-nine' WHERE a=12508; UPDATE t2 SET c='eleven thousand two hundred seventy-two' WHERE a=12509; UPDATE t2 SET c='ninety-nine thousand one hundred forty-nine' WHERE a=12510; UPDATE t2 SET c='fourteen thousand two hundred nineteen' WHERE a=12511; UPDATE t2 SET c='ninety thousand three hundred fifty-seven' WHERE a=12512; UPDATE t2 SET c='three thousand thirty-nine' WHERE a=12513; UPDATE t2 SET c='nine thousand four hundred thirty' WHERE a=12514; UPDATE t2 SET c='seventy-two thousand one hundred six' WHERE a=12515; UPDATE t2 SET c='three thousand seven hundred forty-two' WHERE a=12516; UPDATE t2 SET c='nineteen thousand two hundred ninety-two' WHERE a=12517; UPDATE t2 SET c='forty-two thousand seven hundred forty-five' WHERE a=12518; UPDATE t2 SET c='forty-nine thousand one hundred thirty' WHERE a=12519; UPDATE t2 SET c='twenty-three thousand three hundred twelve' WHERE a=12520; UPDATE t2 SET c='seventy-one thousand eight hundred ninety' WHERE a=12521; UPDATE t2 SET c='ninety-eight thousand forty-six' WHERE a=12522; UPDATE t2 SET c='eighteen thousand seven hundred seventy-two' WHERE a=12523; UPDATE t2 SET c='thirty thousand four hundred fifty-one' WHERE a=12524; UPDATE t2 SET c='ninety-eight thousand three hundred thirty-two' WHERE a=12525; UPDATE t2 SET c='ninety-one thousand four hundred seventy-three' WHERE a=12526; UPDATE t2 SET c='eighty-eight thousand four hundred sixty-eight' WHERE a=12527; UPDATE t2 SET c='seventy-eight thousand four hundred ninety-two' WHERE a=12528; UPDATE t2 SET c='forty-eight thousand one hundred seventy-eight' WHERE a=12529; UPDATE t2 SET c='sixty-two thousand three hundred eighteen' WHERE a=12530; UPDATE t2 SET c='thirty-three thousand eight hundred thirty-five' WHERE a=12531; UPDATE t2 SET c='twelve thousand four hundred twenty-five' WHERE a=12532; UPDATE t2 SET c='twenty-six thousand nine hundred ninety-two' WHERE a=12533; UPDATE t2 SET c='forty thousand four hundred ninety-five' WHERE a=12534; UPDATE t2 SET c='five thousand eight hundred forty-four' WHERE a=12535; UPDATE t2 SET c='eighty-nine thousand nine hundred sixty-two' WHERE a=12536; UPDATE t2 SET c='ninety-seven thousand five hundred seventy-six' WHERE a=12537; UPDATE t2 SET c='eighty-six thousand four hundred eighteen' WHERE a=12538; UPDATE t2 SET c='ninety-seven thousand nine hundred sixty-one' WHERE a=12539; UPDATE t2 SET c='ninety-five thousand six hundred thirty-six' WHERE a=12540; UPDATE t2 SET c='forty-four thousand nine hundred seventy-one' WHERE a=12541; UPDATE t2 SET c='seventy-seven thousand three hundred thirty-five' WHERE a=12542; UPDATE t2 SET c='eighty-two thousand two hundred' WHERE a=12543; UPDATE t2 SET c='forty-two thousand six hundred seven' WHERE a=12544; UPDATE t2 SET c='eighty-one thousand twenty-nine' WHERE a=12545; UPDATE t2 SET c='seventy-nine thousand five hundred sixty-one' WHERE a=12546; UPDATE t2 SET c='eighty-eight thousand seven hundred eighty-four' WHERE a=12547; UPDATE t2 SET c='five thousand nine hundred eighty-one' WHERE a=12548; UPDATE t2 SET c='two thousand one hundred fifty-eight' WHERE a=12549; UPDATE t2 SET c='nine thousand eight hundred seventy-five' WHERE a=12550; UPDATE t2 SET c='seven thousand three hundred twenty-four' WHERE a=12551; UPDATE t2 SET c='eighty-three thousand three hundred forty-eight' WHERE a=12552; UPDATE t2 SET c='seventy-five thousand two hundred twenty-eight' WHERE a=12553; UPDATE t2 SET c='eighty thousand nine hundred fourteen' WHERE a=12554; UPDATE t2 SET c='forty-eight thousand one hundred seventy-three' WHERE a=12555; UPDATE t2 SET c='seventy-four thousand eight hundred nineteen' WHERE a=12556; UPDATE t2 SET c='fifty thousand three hundred seventy' WHERE a=12557; UPDATE t2 SET c='thirty-seven thousand two hundred sixty-eight' WHERE a=12558; UPDATE t2 SET c='thirty-six thousand seven hundred forty-three' WHERE a=12559; UPDATE t2 SET c='sixty-one thousand four hundred seventy-seven' WHERE a=12560; UPDATE t2 SET c='forty-six thousand eight hundred twenty-three' WHERE a=12561; UPDATE t2 SET c='sixty-five thousand seven hundred fifty-five' WHERE a=12562; UPDATE t2 SET c='fifty-three thousand seven hundred fifty' WHERE a=12563; UPDATE t2 SET c='sixty-eight thousand nine hundred eighty-six' WHERE a=12564; UPDATE t2 SET c='nineteen thousand two hundred thirteen' WHERE a=12565; UPDATE t2 SET c='twenty-nine thousand two hundred ninety' WHERE a=12566; UPDATE t2 SET c='forty-three thousand one hundred sixty-three' WHERE a=12567; UPDATE t2 SET c='sixty-five thousand six hundred thirty-one' WHERE a=12568; UPDATE t2 SET c='eighty-eight thousand nine hundred seventy-three' WHERE a=12569; UPDATE t2 SET c='four thousand five hundred eighty-eight' WHERE a=12570; UPDATE t2 SET c='eighty thousand nine hundred fifty' WHERE a=12571; UPDATE t2 SET c='forty-nine thousand two hundred ninety-eight' WHERE a=12572; UPDATE t2 SET c='twenty thousand three hundred forty-nine' WHERE a=12573; UPDATE t2 SET c='ninety-nine thousand one hundred sixty-seven' WHERE a=12574; UPDATE t2 SET c='five thousand eight hundred forty-six' WHERE a=12575; UPDATE t2 SET c='thirty-two thousand four hundred twelve' WHERE a=12576; UPDATE t2 SET c='forty-one thousand three hundred forty-eight' WHERE a=12577; UPDATE t2 SET c='six hundred four' WHERE a=12578; UPDATE t2 SET c='forty-three thousand two hundred seventy-nine' WHERE a=12579; UPDATE t2 SET c='eighty-nine thousand eight hundred ninety-nine' WHERE a=12580; UPDATE t2 SET c='thirty-seven thousand two hundred ninety-six' WHERE a=12581; UPDATE t2 SET c='fourteen thousand eight hundred fifty-four' WHERE a=12582; UPDATE t2 SET c='eighty-four thousand nine hundred seventy-eight' WHERE a=12583; UPDATE t2 SET c='eighty-two thousand six hundred seventy-nine' WHERE a=12584; UPDATE t2 SET c='twenty thousand five hundred nineteen' WHERE a=12585; UPDATE t2 SET c='two hundred sixty' WHERE a=12586; UPDATE t2 SET c='seventy-three thousand five hundred sixty-seven' WHERE a=12587; UPDATE t2 SET c='fifty-seven thousand eighty-nine' WHERE a=12588; UPDATE t2 SET c='fifty-one thousand four hundred sixty-one' WHERE a=12589; UPDATE t2 SET c='thirty-six thousand eighteen' WHERE a=12590; UPDATE t2 SET c='seventy-nine thousand six hundred ninety-two' WHERE a=12591; UPDATE t2 SET c='seventy-six thousand thirty-six' WHERE a=12592; UPDATE t2 SET c='sixty-eight thousand two hundred seventy-three' WHERE a=12593; UPDATE t2 SET c='eighty-eight thousand five hundred fifty-nine' WHERE a=12594; UPDATE t2 SET c='forty-six thousand five hundred thirty-four' WHERE a=12595; UPDATE t2 SET c='thirty-two thousand one hundred twenty-seven' WHERE a=12596; UPDATE t2 SET c='fifty-five thousand two hundred thirty-eight' WHERE a=12597; UPDATE t2 SET c='forty-six thousand nine hundred twenty-six' WHERE a=12598; UPDATE t2 SET c='seven thousand eight hundred forty-seven' WHERE a=12599; UPDATE t2 SET c='twenty-six thousand seven hundred ninety-one' WHERE a=12600; UPDATE t2 SET c='nineteen thousand nine hundred ninety-nine' WHERE a=12601; UPDATE t2 SET c='fifty-eight thousand nine hundred eighty' WHERE a=12602; UPDATE t2 SET c='sixteen thousand sixty-nine' WHERE a=12603; UPDATE t2 SET c='forty-six thousand one hundred eighty-nine' WHERE a=12604; UPDATE t2 SET c='three thousand nine hundred fifty-nine' WHERE a=12605; UPDATE t2 SET c='seventy-three thousand seventeen' WHERE a=12606; UPDATE t2 SET c='forty-nine thousand eight hundred ninety-one' WHERE a=12607; UPDATE t2 SET c='fifty-six thousand four hundred twenty-five' WHERE a=12608; UPDATE t2 SET c='thirty-two thousand six hundred twenty-five' WHERE a=12609; UPDATE t2 SET c='thirty-five thousand five hundred thirty-two' WHERE a=12610; UPDATE t2 SET c='forty-nine thousand ninety-seven' WHERE a=12611; UPDATE t2 SET c='sixty-three thousand two hundred forty' WHERE a=12612; UPDATE t2 SET c='eighty-eight thousand eight hundred fifty-one' WHERE a=12613; UPDATE t2 SET c='six thousand forty' WHERE a=12614; UPDATE t2 SET c='thirty-nine thousand seven hundred ninety-six' WHERE a=12615; UPDATE t2 SET c='sixty-four thousand nine hundred seventy-four' WHERE a=12616; UPDATE t2 SET c='eighty-four thousand eight hundred ninety-three' WHERE a=12617; UPDATE t2 SET c='twenty-three thousand twenty-four' WHERE a=12618; UPDATE t2 SET c='one thousand seventy-four' WHERE a=12619; UPDATE t2 SET c='seventy-two thousand three hundred ninety-six' WHERE a=12620; UPDATE t2 SET c='thirty-three thousand five hundred eighty-six' WHERE a=12621; UPDATE t2 SET c='forty-one thousand four hundred thirty-five' WHERE a=12622; UPDATE t2 SET c='twenty-five thousand eight hundred forty-eight' WHERE a=12623; UPDATE t2 SET c='eighty-two thousand eight hundred sixty-nine' WHERE a=12624; UPDATE t2 SET c='ninety-three thousand seven hundred forty-three' WHERE a=12625; UPDATE t2 SET c='twenty-three thousand one hundred nineteen' WHERE a=12626; UPDATE t2 SET c='seventy-five thousand one hundred eighteen' WHERE a=12627; UPDATE t2 SET c='nine hundred eighty-seven' WHERE a=12628; UPDATE t2 SET c='seven thousand two hundred ninety-seven' WHERE a=12629; UPDATE t2 SET c='thirty-nine thousand nine hundred sixty-one' WHERE a=12630; UPDATE t2 SET c='ninety-nine thousand six hundred twenty-six' WHERE a=12631; UPDATE t2 SET c='eighty thousand six hundred five' WHERE a=12632; UPDATE t2 SET c='eighty-two thousand four hundred seventy-seven' WHERE a=12633; UPDATE t2 SET c='thirty-five thousand one hundred ninety-six' WHERE a=12634; UPDATE t2 SET c='twenty-four thousand nine hundred ninety' WHERE a=12635; UPDATE t2 SET c='ninety-eight thousand three hundred fifty-seven' WHERE a=12636; UPDATE t2 SET c='eighty thousand four hundred seventy-two' WHERE a=12637; UPDATE t2 SET c='forty thousand five hundred ninety-five' WHERE a=12638; UPDATE t2 SET c='five thousand six hundred eighty' WHERE a=12639; UPDATE t2 SET c='eighty-two thousand three hundred twenty-four' WHERE a=12640; UPDATE t2 SET c='thirty-one thousand one hundred eighty-nine' WHERE a=12641; UPDATE t2 SET c='fifty-three thousand one hundred forty-eight' WHERE a=12642; UPDATE t2 SET c='twenty thousand five hundred forty-nine' WHERE a=12643; UPDATE t2 SET c='forty-one thousand one hundred nineteen' WHERE a=12644; UPDATE t2 SET c='nine hundred fifty-nine' WHERE a=12645; UPDATE t2 SET c='fourteen thousand four hundred sixty-two' WHERE a=12646; UPDATE t2 SET c='ninety-three thousand four hundred ninety-eight' WHERE a=12647; UPDATE t2 SET c='sixty-one thousand eight hundred six' WHERE a=12648; UPDATE t2 SET c='twenty-one thousand four hundred thirty-five' WHERE a=12649; UPDATE t2 SET c='sixteen thousand one hundred fifty-five' WHERE a=12650; UPDATE t2 SET c='eighty-seven thousand one hundred seventy-three' WHERE a=12651; UPDATE t2 SET c='sixty-four thousand two hundred fifty-seven' WHERE a=12652; UPDATE t2 SET c='sixty-five thousand three hundred thirty-one' WHERE a=12653; UPDATE t2 SET c='ninety-one thousand seventy-four' WHERE a=12654; UPDATE t2 SET c='ninety-two thousand one hundred seventy' WHERE a=12655; UPDATE t2 SET c='one thousand eight hundred eleven' WHERE a=12656; UPDATE t2 SET c='fifty-four thousand seven hundred seventy-six' WHERE a=12657; UPDATE t2 SET c='seventy thousand four hundred sixty-eight' WHERE a=12658; UPDATE t2 SET c='ninety-nine thousand seven hundred sixty' WHERE a=12659; UPDATE t2 SET c='sixty-three thousand two hundred ten' WHERE a=12660; UPDATE t2 SET c='sixty-three thousand five hundred nine' WHERE a=12661; UPDATE t2 SET c='fourteen thousand one hundred two' WHERE a=12662; UPDATE t2 SET c='seventy-five thousand five hundred seventy-seven' WHERE a=12663; UPDATE t2 SET c='twenty-eight thousand four hundred twenty-eight' WHERE a=12664; UPDATE t2 SET c='forty-one thousand six hundred eighty-six' WHERE a=12665; UPDATE t2 SET c='thirty-two thousand five hundred thirty-one' WHERE a=12666; UPDATE t2 SET c='seventy-two thousand eight hundred forty-five' WHERE a=12667; UPDATE t2 SET c='sixty-one thousand eight hundred ten' WHERE a=12668; UPDATE t2 SET c='twenty thousand six hundred seventy-one' WHERE a=12669; UPDATE t2 SET c='twelve thousand six hundred thirty-three' WHERE a=12670; UPDATE t2 SET c='three thousand eight hundred ninety-six' WHERE a=12671; UPDATE t2 SET c='eighty-two thousand one hundred fifty-five' WHERE a=12672; UPDATE t2 SET c='seventy-five thousand six hundred sixty-six' WHERE a=12673; UPDATE t2 SET c='eighty-three thousand three hundred thirty-nine' WHERE a=12674; UPDATE t2 SET c='fifty-five thousand three hundred seventy-nine' WHERE a=12675; UPDATE t2 SET c='sixty-seven thousand seventy-one' WHERE a=12676; UPDATE t2 SET c='seventy-seven thousand five hundred eighty-six' WHERE a=12677; UPDATE t2 SET c='fifty-nine thousand eight hundred sixty-eight' WHERE a=12678; UPDATE t2 SET c='fourteen thousand seven hundred twenty-seven' WHERE a=12679; UPDATE t2 SET c='seventy-one thousand eight hundred forty-nine' WHERE a=12680; UPDATE t2 SET c='twenty-two thousand three hundred seventy-nine' WHERE a=12681; UPDATE t2 SET c='thirty-seven thousand nine hundred seventy-four' WHERE a=12682; UPDATE t2 SET c='twenty-seven thousand three hundred twenty-four' WHERE a=12683; UPDATE t2 SET c='thirty-four thousand seven hundred seventy-eight' WHERE a=12684; UPDATE t2 SET c='forty-eight thousand six hundred forty-five' WHERE a=12685; UPDATE t2 SET c='forty-eight thousand five hundred twelve' WHERE a=12686; UPDATE t2 SET c='ninety-seven thousand six hundred fifty-six' WHERE a=12687; UPDATE t2 SET c='thirty-five thousand fifty-one' WHERE a=12688; UPDATE t2 SET c='fifty-two thousand fifty-nine' WHERE a=12689; UPDATE t2 SET c='nine hundred sixty-four' WHERE a=12690; UPDATE t2 SET c='seven thousand seventy-six' WHERE a=12691; UPDATE t2 SET c='two thousand five hundred fourteen' WHERE a=12692; UPDATE t2 SET c='eighty-two thousand eight hundred eighty-four' WHERE a=12693; UPDATE t2 SET c='ninety-one thousand four hundred nineteen' WHERE a=12694; UPDATE t2 SET c='ninety-seven thousand six hundred ninety-eight' WHERE a=12695; UPDATE t2 SET c='eighty-seven thousand nine' WHERE a=12696; UPDATE t2 SET c='twenty-seven thousand six hundred sixty-three' WHERE a=12697; UPDATE t2 SET c='ninety-two thousand two hundred eighty-seven' WHERE a=12698; UPDATE t2 SET c='five thousand seven hundred forty-five' WHERE a=12699; UPDATE t2 SET c='seventy-six thousand one hundred ninety-three' WHERE a=12700; UPDATE t2 SET c='eighty-eight thousand seven hundred seventeen' WHERE a=12701; UPDATE t2 SET c='ninety-one thousand three hundred eighty-six' WHERE a=12702; UPDATE t2 SET c='sixty-two thousand three hundred ninety-eight' WHERE a=12703; UPDATE t2 SET c='ninety-two thousand one hundred sixty' WHERE a=12704; UPDATE t2 SET c='seventy-two thousand three hundred six' WHERE a=12705; UPDATE t2 SET c='twenty-three thousand seven hundred ninety-seven' WHERE a=12706; UPDATE t2 SET c='ninety-four thousand three hundred two' WHERE a=12707; UPDATE t2 SET c='thirty-two thousand seven hundred fifty-nine' WHERE a=12708; UPDATE t2 SET c='eighty-one thousand one hundred fifty-seven' WHERE a=12709; UPDATE t2 SET c='fifty-nine thousand nine hundred ninety-six' WHERE a=12710; UPDATE t2 SET c='sixty-seven thousand six hundred five' WHERE a=12711; UPDATE t2 SET c='ninety-three thousand seventy-five' WHERE a=12712; UPDATE t2 SET c='twenty-six thousand eight hundred fifty-two' WHERE a=12713; UPDATE t2 SET c='fifty-three thousand eight hundred forty-seven' WHERE a=12714; UPDATE t2 SET c='twenty-six thousand six hundred eighty-eight' WHERE a=12715; UPDATE t2 SET c='twenty-six thousand six hundred sixty' WHERE a=12716; UPDATE t2 SET c='eighty-four thousand three hundred ninety-nine' WHERE a=12717; UPDATE t2 SET c='seven thousand five hundred seventy-two' WHERE a=12718; UPDATE t2 SET c='thirty-three thousand two hundred nine' WHERE a=12719; UPDATE t2 SET c='seventy-seven thousand eight hundred sixty-nine' WHERE a=12720; UPDATE t2 SET c='sixty-two thousand eight hundred twenty-one' WHERE a=12721; UPDATE t2 SET c='forty-two thousand seven hundred sixty-one' WHERE a=12722; UPDATE t2 SET c='seventy-three thousand three hundred sixty-two' WHERE a=12723; UPDATE t2 SET c='forty-six thousand five hundred fifty-six' WHERE a=12724; UPDATE t2 SET c='forty-one thousand four hundred ninety-two' WHERE a=12725; UPDATE t2 SET c='seventy-four thousand six hundred eighty-seven' WHERE a=12726; UPDATE t2 SET c='eighty-nine thousand ninety-two' WHERE a=12727; UPDATE t2 SET c='nine thousand four' WHERE a=12728; UPDATE t2 SET c='thirty-three thousand two hundred ninety-six' WHERE a=12729; UPDATE t2 SET c='fifty-two thousand eight hundred eighteen' WHERE a=12730; UPDATE t2 SET c='eighty-four thousand five hundred ninety-three' WHERE a=12731; UPDATE t2 SET c='thirty-one thousand nine hundred forty' WHERE a=12732; UPDATE t2 SET c='thirty-four thousand four hundred nine' WHERE a=12733; UPDATE t2 SET c='eighty thousand forty-four' WHERE a=12734; UPDATE t2 SET c='eighty-nine thousand five hundred six' WHERE a=12735; UPDATE t2 SET c='seventy-five thousand eight hundred eighty-five' WHERE a=12736; UPDATE t2 SET c='thirty-five thousand seventy-four' WHERE a=12737; UPDATE t2 SET c='eighty-four thousand eight hundred ninety-five' WHERE a=12738; UPDATE t2 SET c='sixty-eight thousand seven hundred eighty-four' WHERE a=12739; UPDATE t2 SET c='fifty-nine thousand seven hundred eighty' WHERE a=12740; UPDATE t2 SET c='thirty-five thousand four hundred fifty-two' WHERE a=12741; UPDATE t2 SET c='fifteen thousand three hundred thirty-four' WHERE a=12742; UPDATE t2 SET c='five thousand nine hundred twenty-eight' WHERE a=12743; UPDATE t2 SET c='fifty-two thousand one hundred seventy-three' WHERE a=12744; UPDATE t2 SET c='thirty-one thousand three hundred twenty-five' WHERE a=12745; UPDATE t2 SET c='forty-two thousand fifty' WHERE a=12746; UPDATE t2 SET c='eleven thousand one hundred sixty-three' WHERE a=12747; UPDATE t2 SET c='nine thousand six hundred one' WHERE a=12748; UPDATE t2 SET c='seventeen thousand forty-six' WHERE a=12749; UPDATE t2 SET c='thirteen thousand one hundred twenty-nine' WHERE a=12750; UPDATE t2 SET c='eighty-seven thousand seventy-seven' WHERE a=12751; UPDATE t2 SET c='eighty-five thousand two hundred thirty-seven' WHERE a=12752; UPDATE t2 SET c='nine thousand eighty' WHERE a=12753; UPDATE t2 SET c='thirteen thousand four hundred forty-six' WHERE a=12754; UPDATE t2 SET c='thirty-five thousand five hundred twenty-four' WHERE a=12755; UPDATE t2 SET c='twelve thousand twenty-eight' WHERE a=12756; UPDATE t2 SET c='forty-five thousand one hundred seventy-six' WHERE a=12757; UPDATE t2 SET c='forty-eight thousand three hundred fifty' WHERE a=12758; UPDATE t2 SET c='thirty-one thousand six hundred ninety-two' WHERE a=12759; UPDATE t2 SET c='forty-nine thousand three hundred thirty-seven' WHERE a=12760; UPDATE t2 SET c='fifty-five thousand seven hundred fifty-six' WHERE a=12761; UPDATE t2 SET c='twenty-seven thousand three hundred twenty-eight' WHERE a=12762; UPDATE t2 SET c='forty-nine thousand three hundred thirty-one' WHERE a=12763; UPDATE t2 SET c='thirty-four thousand two hundred eighty-eight' WHERE a=12764; UPDATE t2 SET c='fifty-one thousand six hundred eighty-seven' WHERE a=12765; UPDATE t2 SET c='three thousand six hundred fifty-two' WHERE a=12766; UPDATE t2 SET c='eleven thousand four hundred ninety-seven' WHERE a=12767; UPDATE t2 SET c='eighty-nine thousand seven hundred seventy-two' WHERE a=12768; UPDATE t2 SET c='fifty-two thousand eight hundred ninety-one' WHERE a=12769; UPDATE t2 SET c='five thousand two hundred eighty-three' WHERE a=12770; UPDATE t2 SET c='two thousand three hundred ninety-six' WHERE a=12771; UPDATE t2 SET c='twenty thousand nine hundred ninety-seven' WHERE a=12772; UPDATE t2 SET c='three thousand seven hundred seventy-six' WHERE a=12773; UPDATE t2 SET c='fifteen thousand five hundred sixty-one' WHERE a=12774; UPDATE t2 SET c='nine thousand one hundred sixty-two' WHERE a=12775; UPDATE t2 SET c='seventy-five thousand nine hundred sixty-nine' WHERE a=12776; UPDATE t2 SET c='forty-six thousand nine hundred sixty-eight' WHERE a=12777; UPDATE t2 SET c='ninety-six thousand five hundred ninety-three' WHERE a=12778; UPDATE t2 SET c='forty thousand seven hundred eighty-three' WHERE a=12779; UPDATE t2 SET c='eighty-six thousand four hundred eighty-eight' WHERE a=12780; UPDATE t2 SET c='thirty-six thousand two hundred fifty-two' WHERE a=12781; UPDATE t2 SET c='forty thousand five hundred nineteen' WHERE a=12782; UPDATE t2 SET c='ninety-eight thousand nine hundred ninety-five' WHERE a=12783; UPDATE t2 SET c='twelve thousand one hundred fifty-nine' WHERE a=12784; UPDATE t2 SET c='sixty-one thousand sixty-six' WHERE a=12785; UPDATE t2 SET c='nineteen thousand nine hundred eighty-eight' WHERE a=12786; UPDATE t2 SET c='thirty-two thousand eight hundred forty-five' WHERE a=12787; UPDATE t2 SET c='forty-eight thousand nine hundred twenty-seven' WHERE a=12788; UPDATE t2 SET c='fifty-two thousand five hundred eighty-six' WHERE a=12789; UPDATE t2 SET c='fifty-two thousand eight hundred sixty-one' WHERE a=12790; UPDATE t2 SET c='twenty-six thousand five hundred seventy-three' WHERE a=12791; UPDATE t2 SET c='sixty-six thousand eight hundred thirty-six' WHERE a=12792; UPDATE t2 SET c='three thousand two hundred forty-four' WHERE a=12793; UPDATE t2 SET c='ten thousand eight hundred eighty-three' WHERE a=12794; UPDATE t2 SET c='sixty-three thousand seven hundred sixty-five' WHERE a=12795; UPDATE t2 SET c='thirteen thousand nine hundred sixty-one' WHERE a=12796; UPDATE t2 SET c='fifty thousand two hundred' WHERE a=12797; UPDATE t2 SET c='fifteen thousand nine hundred eighty-six' WHERE a=12798; UPDATE t2 SET c='twenty-five thousand eight hundred eighty-two' WHERE a=12799; UPDATE t2 SET c='seventy-nine thousand nine hundred eighty-one' WHERE a=12800; UPDATE t2 SET c='seventy-seven thousand one hundred eleven' WHERE a=12801; UPDATE t2 SET c='fifty-six thousand eight hundred fifteen' WHERE a=12802; UPDATE t2 SET c='thirty thousand six hundred sixty' WHERE a=12803; UPDATE t2 SET c='seventy-nine thousand eight hundred forty-seven' WHERE a=12804; UPDATE t2 SET c='fifty thousand forty-six' WHERE a=12805; UPDATE t2 SET c='fifteen thousand five hundred nineteen' WHERE a=12806; UPDATE t2 SET c='eighty-six thousand six hundred twelve' WHERE a=12807; UPDATE t2 SET c='twelve thousand forty-six' WHERE a=12808; UPDATE t2 SET c='seventy-five thousand three hundred eighty-eight' WHERE a=12809; UPDATE t2 SET c='forty-eight thousand three hundred seventy-one' WHERE a=12810; UPDATE t2 SET c='fifty-nine thousand one hundred nineteen' WHERE a=12811; UPDATE t2 SET c='ten thousand five hundred sixteen' WHERE a=12812; UPDATE t2 SET c='sixty-nine thousand five hundred sixty' WHERE a=12813; UPDATE t2 SET c='sixty-one thousand four hundred six' WHERE a=12814; UPDATE t2 SET c='thirty-one thousand eight hundred sixty-one' WHERE a=12815; UPDATE t2 SET c='thirty-eight thousand nine hundred forty-three' WHERE a=12816; UPDATE t2 SET c='thirty-seven thousand seventy-five' WHERE a=12817; UPDATE t2 SET c='fifteen thousand six hundred fourteen' WHERE a=12818; UPDATE t2 SET c='eighty thousand nine hundred fifteen' WHERE a=12819; UPDATE t2 SET c='one thousand seven hundred nineteen' WHERE a=12820; UPDATE t2 SET c='ninety-six thousand three hundred eighty-seven' WHERE a=12821; UPDATE t2 SET c='twenty-three thousand one hundred nineteen' WHERE a=12822; UPDATE t2 SET c='sixteen thousand three hundred seventy-three' WHERE a=12823; UPDATE t2 SET c='twenty-five thousand four hundred sixteen' WHERE a=12824; UPDATE t2 SET c='sixty-four thousand six hundred twelve' WHERE a=12825; UPDATE t2 SET c='sixty-three thousand four hundred ninety-three' WHERE a=12826; UPDATE t2 SET c='ninety-one thousand six hundred one' WHERE a=12827; UPDATE t2 SET c='sixty thousand eight hundred twenty' WHERE a=12828; UPDATE t2 SET c='thirty-four thousand eight hundred seven' WHERE a=12829; UPDATE t2 SET c='nineteen thousand five hundred six' WHERE a=12830; UPDATE t2 SET c='eighty-seven thousand nine hundred sixty-five' WHERE a=12831; UPDATE t2 SET c='thirty-one thousand two hundred thirty-four' WHERE a=12832; UPDATE t2 SET c='five hundred eighty-five' WHERE a=12833; UPDATE t2 SET c='thirty-two thousand eight hundred sixty-six' WHERE a=12834; UPDATE t2 SET c='two thousand forty-nine' WHERE a=12835; UPDATE t2 SET c='ninety-eight thousand three hundred fifty-two' WHERE a=12836; UPDATE t2 SET c='seventy thousand seven hundred fourteen' WHERE a=12837; UPDATE t2 SET c='seventy-six thousand one hundred thirty-six' WHERE a=12838; UPDATE t2 SET c='sixty-two thousand three hundred three' WHERE a=12839; UPDATE t2 SET c='two thousand nine hundred sixty-six' WHERE a=12840; UPDATE t2 SET c='three thousand seven hundred forty-one' WHERE a=12841; UPDATE t2 SET c='fifty-four thousand four hundred fourteen' WHERE a=12842; UPDATE t2 SET c='sixty-six thousand seven hundred seventy-nine' WHERE a=12843; UPDATE t2 SET c='eighteen thousand two hundred eighty-one' WHERE a=12844; UPDATE t2 SET c='seventeen thousand five hundred eighteen' WHERE a=12845; UPDATE t2 SET c='fifty-three thousand one hundred ninety-three' WHERE a=12846; UPDATE t2 SET c='eighty-six thousand one hundred eighty-seven' WHERE a=12847; UPDATE t2 SET c='eighty-nine thousand four hundred thirty-eight' WHERE a=12848; UPDATE t2 SET c='forty-one thousand nine hundred eighteen' WHERE a=12849; UPDATE t2 SET c='seventy-one thousand three hundred sixty-seven' WHERE a=12850; UPDATE t2 SET c='sixty-seven thousand two hundred sixty-five' WHERE a=12851; UPDATE t2 SET c='twenty-nine thousand seven hundred eighty-two' WHERE a=12852; UPDATE t2 SET c='seventy-eight thousand five hundred ninety-nine' WHERE a=12853; UPDATE t2 SET c='four thousand nine hundred seventy-four' WHERE a=12854; UPDATE t2 SET c='forty-five thousand nine hundred ninety-three' WHERE a=12855; UPDATE t2 SET c='sixty-six thousand two hundred forty-seven' WHERE a=12856; UPDATE t2 SET c='sixty-seven thousand three hundred thirty' WHERE a=12857; UPDATE t2 SET c='thirty-eight thousand six hundred sixty-five' WHERE a=12858; UPDATE t2 SET c='one thousand three hundred nineteen' WHERE a=12859; UPDATE t2 SET c='ninety-one thousand seven hundred thirteen' WHERE a=12860; UPDATE t2 SET c='seventy thousand six hundred ten' WHERE a=12861; UPDATE t2 SET c='nine thousand four hundred thirteen' WHERE a=12862; UPDATE t2 SET c='ninety-six thousand four hundred two' WHERE a=12863; UPDATE t2 SET c='fifty-four thousand seven hundred fifty-one' WHERE a=12864; UPDATE t2 SET c='eighty-three thousand nine hundred seventy-one' WHERE a=12865; UPDATE t2 SET c='ninety-six thousand two hundred sixty-two' WHERE a=12866; UPDATE t2 SET c='forty-four thousand three hundred fifty' WHERE a=12867; UPDATE t2 SET c='fifty-seven thousand nine hundred eighty-six' WHERE a=12868; UPDATE t2 SET c='thirty-nine thousand ninety-eight' WHERE a=12869; UPDATE t2 SET c='ten thousand six hundred twenty-nine' WHERE a=12870; UPDATE t2 SET c='seventy-five thousand four hundred twenty-six' WHERE a=12871; UPDATE t2 SET c='ten thousand two hundred two' WHERE a=12872; UPDATE t2 SET c='twenty-five thousand eight hundred fifty' WHERE a=12873; UPDATE t2 SET c='ninety-nine thousand one hundred one' WHERE a=12874; UPDATE t2 SET c='ninety-seven thousand three hundred fifty-six' WHERE a=12875; UPDATE t2 SET c='twenty-seven thousand two hundred seventy-three' WHERE a=12876; UPDATE t2 SET c='twenty-one thousand three hundred one' WHERE a=12877; UPDATE t2 SET c='fifty-one thousand four hundred thirty-six' WHERE a=12878; UPDATE t2 SET c='nine thousand eight hundred twelve' WHERE a=12879; UPDATE t2 SET c='thirty thousand six hundred eighty' WHERE a=12880; UPDATE t2 SET c='ninety-eight thousand forty-seven' WHERE a=12881; UPDATE t2 SET c='fifty-four thousand three hundred seventy-nine' WHERE a=12882; UPDATE t2 SET c='twenty-six thousand one hundred ten' WHERE a=12883; UPDATE t2 SET c='twenty-eight thousand eighty-eight' WHERE a=12884; UPDATE t2 SET c='fifty-six thousand eight hundred sixty-eight' WHERE a=12885; UPDATE t2 SET c='thirty-four thousand five hundred thirty-eight' WHERE a=12886; UPDATE t2 SET c='eighteen thousand six hundred forty' WHERE a=12887; UPDATE t2 SET c='ninety-four thousand five hundred sixty-three' WHERE a=12888; UPDATE t2 SET c='seventy-six thousand one hundred fifty' WHERE a=12889; UPDATE t2 SET c='two thousand one hundred thirteen' WHERE a=12890; UPDATE t2 SET c='sixty-five thousand ninety-six' WHERE a=12891; UPDATE t2 SET c='seventy thousand six hundred nineteen' WHERE a=12892; UPDATE t2 SET c='two thousand five hundred eighty-one' WHERE a=12893; UPDATE t2 SET c='forty-two thousand three hundred thirty-seven' WHERE a=12894; UPDATE t2 SET c='thirty-eight thousand six hundred seventy-four' WHERE a=12895; UPDATE t2 SET c='forty-seven thousand six hundred sixty-four' WHERE a=12896; UPDATE t2 SET c='forty-four thousand three hundred seventy-six' WHERE a=12897; UPDATE t2 SET c='thirty-five thousand nine hundred twenty' WHERE a=12898; UPDATE t2 SET c='eighty thousand five hundred sixty' WHERE a=12899; UPDATE t2 SET c='sixteen thousand two hundred twelve' WHERE a=12900; UPDATE t2 SET c='sixty-five thousand one hundred seventy-eight' WHERE a=12901; UPDATE t2 SET c='twenty-one thousand nine hundred eleven' WHERE a=12902; UPDATE t2 SET c='fifty-six thousand twenty-five' WHERE a=12903; UPDATE t2 SET c='sixteen thousand five hundred five' WHERE a=12904; UPDATE t2 SET c='seventy-four thousand seventy-seven' WHERE a=12905; UPDATE t2 SET c='eighty-two thousand nine hundred thirty-seven' WHERE a=12906; UPDATE t2 SET c='fifty-six thousand one hundred eighty-three' WHERE a=12907; UPDATE t2 SET c='seventy-six thousand seven hundred eleven' WHERE a=12908; UPDATE t2 SET c='five thousand eight hundred twenty-eight' WHERE a=12909; UPDATE t2 SET c='two thousand two hundred seventy-six' WHERE a=12910; UPDATE t2 SET c='twenty-one thousand nine hundred forty-five' WHERE a=12911; UPDATE t2 SET c='ninety-one thousand five hundred fifty-nine' WHERE a=12912; UPDATE t2 SET c='eighty-one thousand five hundred sixty-nine' WHERE a=12913; UPDATE t2 SET c='thirty-four thousand fifteen' WHERE a=12914; UPDATE t2 SET c='fifty-eight thousand eight hundred fifty-two' WHERE a=12915; UPDATE t2 SET c='seventy-two thousand one hundred fifty-two' WHERE a=12916; UPDATE t2 SET c='fifty thousand seven hundred eighty-five' WHERE a=12917; UPDATE t2 SET c='sixty-seven thousand seven hundred ninety-four' WHERE a=12918; UPDATE t2 SET c='seventy thousand one hundred thirty-six' WHERE a=12919; UPDATE t2 SET c='twenty thousand eight hundred two' WHERE a=12920; UPDATE t2 SET c='ninety-five thousand one hundred twenty-five' WHERE a=12921; UPDATE t2 SET c='thirty-five thousand seven hundred eighteen' WHERE a=12922; UPDATE t2 SET c='fifty-six thousand one hundred seventy-nine' WHERE a=12923; UPDATE t2 SET c='sixty-one thousand nine hundred thirty-three' WHERE a=12924; UPDATE t2 SET c='eighty-four thousand seven hundred forty-one' WHERE a=12925; UPDATE t2 SET c='twenty-three thousand nine hundred ninety-three' WHERE a=12926; UPDATE t2 SET c='fourteen thousand forty-two' WHERE a=12927; UPDATE t2 SET c='seventy-two thousand nine hundred thirty-one' WHERE a=12928; UPDATE t2 SET c='fifty-four thousand three hundred seventy-five' WHERE a=12929; UPDATE t2 SET c='fifty-six thousand one' WHERE a=12930; UPDATE t2 SET c='eighty-nine thousand one hundred seventy-two' WHERE a=12931; UPDATE t2 SET c='thirteen thousand seventy-five' WHERE a=12932; UPDATE t2 SET c='fifty-four thousand seven hundred six' WHERE a=12933; UPDATE t2 SET c='eighty-eight thousand six hundred sixty-three' WHERE a=12934; UPDATE t2 SET c='seventy thousand six hundred eight' WHERE a=12935; UPDATE t2 SET c='thirty-five thousand six hundred forty-five' WHERE a=12936; UPDATE t2 SET c='ninety thousand nine hundred two' WHERE a=12937; UPDATE t2 SET c='fourteen thousand six hundred sixty' WHERE a=12938; UPDATE t2 SET c='eighty-five thousand three hundred twenty-two' WHERE a=12939; UPDATE t2 SET c='ten thousand forty-eight' WHERE a=12940; UPDATE t2 SET c='forty-five thousand eight hundred thirteen' WHERE a=12941; UPDATE t2 SET c='eighty-nine thousand six hundred eighty-one' WHERE a=12942; UPDATE t2 SET c='fifty-four thousand seven hundred thirty-seven' WHERE a=12943; UPDATE t2 SET c='sixty-nine thousand nine hundred fifty-seven' WHERE a=12944; UPDATE t2 SET c='fifty-seven thousand nine hundred seventy-six' WHERE a=12945; UPDATE t2 SET c='forty-nine thousand seven hundred thirty-eight' WHERE a=12946; UPDATE t2 SET c='eighty-six thousand five hundred thirty-three' WHERE a=12947; UPDATE t2 SET c='seventy-eight thousand four hundred twenty-eight' WHERE a=12948; UPDATE t2 SET c='twenty-two thousand six hundred fifty-one' WHERE a=12949; UPDATE t2 SET c='seventy-one thousand three hundred thirty-six' WHERE a=12950; UPDATE t2 SET c='sixty-one thousand five hundred eleven' WHERE a=12951; UPDATE t2 SET c='forty-eight thousand two hundred ninety-eight' WHERE a=12952; UPDATE t2 SET c='sixty-nine thousand eight hundred ninety-nine' WHERE a=12953; UPDATE t2 SET c='thirty-nine thousand six hundred twenty-three' WHERE a=12954; UPDATE t2 SET c='seventy-four thousand five hundred seventy-nine' WHERE a=12955; UPDATE t2 SET c='thirty-nine thousand eight hundred ninety-five' WHERE a=12956; UPDATE t2 SET c='thirty-five thousand four hundred twelve' WHERE a=12957; UPDATE t2 SET c='eighty-seven thousand eight hundred fifty-two' WHERE a=12958; UPDATE t2 SET c='ninety-seven thousand seven hundred seventy-seven' WHERE a=12959; UPDATE t2 SET c='seventy-eight thousand three hundred fifty-one' WHERE a=12960; UPDATE t2 SET c='thirty-two thousand five hundred sixty-seven' WHERE a=12961; UPDATE t2 SET c='thirty thousand five hundred thirty-seven' WHERE a=12962; UPDATE t2 SET c='eighty-one thousand three hundred twenty-eight' WHERE a=12963; UPDATE t2 SET c='thirteen thousand eight hundred nineteen' WHERE a=12964; UPDATE t2 SET c='four thousand one hundred ninety-five' WHERE a=12965; UPDATE t2 SET c='twelve thousand two hundred nineteen' WHERE a=12966; UPDATE t2 SET c='seventy-one thousand nine hundred sixty-nine' WHERE a=12967; UPDATE t2 SET c='forty-six thousand three hundred nineteen' WHERE a=12968; UPDATE t2 SET c='thirty-two thousand seven hundred fifty-two' WHERE a=12969; UPDATE t2 SET c='sixty-two thousand five hundred ninety-five' WHERE a=12970; UPDATE t2 SET c='ninety-one thousand sixty-seven' WHERE a=12971; UPDATE t2 SET c='eighty-five thousand fifty-eight' WHERE a=12972; UPDATE t2 SET c='ninety-nine thousand six hundred sixty-one' WHERE a=12973; UPDATE t2 SET c='seventy-one thousand three hundred eighty-one' WHERE a=12974; UPDATE t2 SET c='ninety-nine thousand seven hundred thirty-seven' WHERE a=12975; UPDATE t2 SET c='sixty-five thousand three hundred fifty-nine' WHERE a=12976; UPDATE t2 SET c='twenty-two thousand one hundred twenty-three' WHERE a=12977; UPDATE t2 SET c='fifty-four thousand eight hundred sixty-five' WHERE a=12978; UPDATE t2 SET c='sixty thousand eight hundred forty-four' WHERE a=12979; UPDATE t2 SET c='seventy-nine thousand four hundred fourteen' WHERE a=12980; UPDATE t2 SET c='fifty thousand one hundred fifty-two' WHERE a=12981; UPDATE t2 SET c='forty-two thousand two hundred eighty-two' WHERE a=12982; UPDATE t2 SET c='thirty-one thousand one hundred eighty-six' WHERE a=12983; UPDATE t2 SET c='seventy-five thousand two hundred eighty-three' WHERE a=12984; UPDATE t2 SET c='one thousand two hundred seventy-nine' WHERE a=12985; UPDATE t2 SET c='fifty-one thousand five hundred twenty-four' WHERE a=12986; UPDATE t2 SET c='twenty-four thousand five hundred fifty-three' WHERE a=12987; UPDATE t2 SET c='sixty-nine thousand two hundred fifty-eight' WHERE a=12988; UPDATE t2 SET c='eighty-two thousand seven hundred forty-six' WHERE a=12989; UPDATE t2 SET c='five thousand eight hundred nineteen' WHERE a=12990; UPDATE t2 SET c='thirty-eight thousand two hundred fifty-six' WHERE a=12991; UPDATE t2 SET c='thirty-six thousand two hundred sixty-six' WHERE a=12992; UPDATE t2 SET c='sixty-nine thousand five hundred eighty-three' WHERE a=12993; UPDATE t2 SET c='thirty-one thousand two hundred ninety-one' WHERE a=12994; UPDATE t2 SET c='fifty thousand one hundred twenty' WHERE a=12995; UPDATE t2 SET c='twelve thousand fifty-six' WHERE a=12996; UPDATE t2 SET c='ninety thousand four hundred ninety' WHERE a=12997; UPDATE t2 SET c='ninety-nine thousand three hundred eighteen' WHERE a=12998; UPDATE t2 SET c='eighty-seven thousand thirty-five' WHERE a=12999; UPDATE t2 SET c='seventy-three thousand five hundred seventy-eight' WHERE a=13000; UPDATE t2 SET c='one thousand two hundred sixty-one' WHERE a=13001; UPDATE t2 SET c='forty-seven thousand eighty-three' WHERE a=13002; UPDATE t2 SET c='seventy thousand seven hundred thirty-six' WHERE a=13003; UPDATE t2 SET c='thirty-six thousand eight hundred seventy-two' WHERE a=13004; UPDATE t2 SET c='seventy-four thousand one hundred four' WHERE a=13005; UPDATE t2 SET c='seventy-six thousand four hundred ninety-six' WHERE a=13006; UPDATE t2 SET c='one thousand two hundred fifty-five' WHERE a=13007; UPDATE t2 SET c='four thousand seven hundred thirty' WHERE a=13008; UPDATE t2 SET c='sixty-seven thousand two hundred sixty-nine' WHERE a=13009; UPDATE t2 SET c='forty-four thousand one hundred' WHERE a=13010; UPDATE t2 SET c='fifty-two thousand five hundred forty-six' WHERE a=13011; UPDATE t2 SET c='forty-five thousand four hundred sixty-six' WHERE a=13012; UPDATE t2 SET c='ninety-three thousand three hundred thirty-five' WHERE a=13013; UPDATE t2 SET c='thirty-one thousand two hundred fourteen' WHERE a=13014; UPDATE t2 SET c='forty-six thousand eight hundred twenty-five' WHERE a=13015; UPDATE t2 SET c='forty thousand five hundred fifty-nine' WHERE a=13016; UPDATE t2 SET c='sixteen thousand nine hundred three' WHERE a=13017; UPDATE t2 SET c='twenty thousand five hundred ten' WHERE a=13018; UPDATE t2 SET c='ninety-five thousand two hundred ninety-four' WHERE a=13019; UPDATE t2 SET c='sixty-three thousand four hundred fifty-eight' WHERE a=13020; UPDATE t2 SET c='twenty-one thousand eight hundred forty-one' WHERE a=13021; UPDATE t2 SET c='forty-five thousand sixty-nine' WHERE a=13022; UPDATE t2 SET c='sixty-one thousand seven hundred eighty-two' WHERE a=13023; UPDATE t2 SET c='twenty-nine thousand nine hundred forty-six' WHERE a=13024; UPDATE t2 SET c='twenty-three thousand three hundred ninety-five' WHERE a=13025; UPDATE t2 SET c='eighteen thousand four hundred thirty' WHERE a=13026; UPDATE t2 SET c='sixty-eight thousand nine hundred ten' WHERE a=13027; UPDATE t2 SET c='twenty-three thousand sixty-seven' WHERE a=13028; UPDATE t2 SET c='forty thousand two hundred seventy-seven' WHERE a=13029; UPDATE t2 SET c='thirty-two thousand five hundred thirty-four' WHERE a=13030; UPDATE t2 SET c='eleven thousand eight hundred six' WHERE a=13031; UPDATE t2 SET c='seven thousand one hundred ninety-two' WHERE a=13032; UPDATE t2 SET c='ninety-eight thousand three hundred forty-seven' WHERE a=13033; UPDATE t2 SET c='ninety-two thousand seven hundred twenty-six' WHERE a=13034; UPDATE t2 SET c='eighty-nine thousand seven hundred forty-four' WHERE a=13035; UPDATE t2 SET c='forty-nine thousand three hundred twenty-nine' WHERE a=13036; UPDATE t2 SET c='ninety-four thousand eight hundred seventy-five' WHERE a=13037; UPDATE t2 SET c='seventy-three thousand eight hundred ninety-three' WHERE a=13038; UPDATE t2 SET c='seventy thousand five hundred nine' WHERE a=13039; UPDATE t2 SET c='ninety-two thousand seven hundred twenty-eight' WHERE a=13040; UPDATE t2 SET c='forty-six thousand five hundred fifty' WHERE a=13041; UPDATE t2 SET c='seventy-eight thousand thirty' WHERE a=13042; UPDATE t2 SET c='eight thousand ninety-eight' WHERE a=13043; UPDATE t2 SET c='eighty-eight thousand seven hundred twenty' WHERE a=13044; UPDATE t2 SET c='four thousand six hundred fourteen' WHERE a=13045; UPDATE t2 SET c='twenty-six thousand four hundred seventeen' WHERE a=13046; UPDATE t2 SET c='twenty-seven thousand twenty-eight' WHERE a=13047; UPDATE t2 SET c='sixty-four thousand six hundred thirty-five' WHERE a=13048; UPDATE t2 SET c='twenty thousand nine hundred fifty-three' WHERE a=13049; UPDATE t2 SET c='thirty-seven thousand three hundred forty-three' WHERE a=13050; UPDATE t2 SET c='ninety-one thousand eight hundred sixty-six' WHERE a=13051; UPDATE t2 SET c='sixty-six thousand six hundred sixty-nine' WHERE a=13052; UPDATE t2 SET c='six thousand three hundred seven' WHERE a=13053; UPDATE t2 SET c='forty-six thousand six hundred sixty-nine' WHERE a=13054; UPDATE t2 SET c='thirty-eight thousand five hundred twenty-eight' WHERE a=13055; UPDATE t2 SET c='fifty-one thousand four hundred ninety-nine' WHERE a=13056; UPDATE t2 SET c='fifty-one thousand six hundred five' WHERE a=13057; UPDATE t2 SET c='seven thousand nine hundred forty-one' WHERE a=13058; UPDATE t2 SET c='thirty-two thousand six hundred seventy' WHERE a=13059; UPDATE t2 SET c='forty-one thousand six hundred twenty-six' WHERE a=13060; UPDATE t2 SET c='seventy-three thousand one' WHERE a=13061; UPDATE t2 SET c='sixty-two thousand four hundred thirty-four' WHERE a=13062; UPDATE t2 SET c='forty-one thousand two hundred thirty-eight' WHERE a=13063; UPDATE t2 SET c='ninety-two thousand three hundred seventy-four' WHERE a=13064; UPDATE t2 SET c='fifty-three thousand nine hundred forty-four' WHERE a=13065; UPDATE t2 SET c='thirty-two thousand eight hundred eighty-five' WHERE a=13066; UPDATE t2 SET c='eighty-four thousand one hundred fifty-seven' WHERE a=13067; UPDATE t2 SET c='thirty-six thousand nine hundred thirty-one' WHERE a=13068; UPDATE t2 SET c='fifty-seven thousand three hundred eight' WHERE a=13069; UPDATE t2 SET c='forty-six thousand one hundred nine' WHERE a=13070; UPDATE t2 SET c='forty-six thousand one hundred sixty-six' WHERE a=13071; UPDATE t2 SET c='three thousand eight hundred ninety-seven' WHERE a=13072; UPDATE t2 SET c='sixty-eight thousand three hundred fifty' WHERE a=13073; UPDATE t2 SET c='twenty-two thousand seven hundred thirty-two' WHERE a=13074; UPDATE t2 SET c='forty-nine thousand nine hundred ninety-three' WHERE a=13075; UPDATE t2 SET c='seventy-one thousand five hundred twelve' WHERE a=13076; UPDATE t2 SET c='sixty-one thousand one hundred thirty-one' WHERE a=13077; UPDATE t2 SET c='twenty-five thousand five hundred twenty-six' WHERE a=13078; UPDATE t2 SET c='eight thousand fifty-three' WHERE a=13079; UPDATE t2 SET c='seventy-three thousand seven hundred forty-two' WHERE a=13080; UPDATE t2 SET c='nine thousand one hundred forty-three' WHERE a=13081; UPDATE t2 SET c='thirty-three thousand five hundred eighty-one' WHERE a=13082; UPDATE t2 SET c='thirty-five thousand sixty-three' WHERE a=13083; UPDATE t2 SET c='thirty-five thousand nine hundred' WHERE a=13084; UPDATE t2 SET c='fifty-three thousand four hundred ninety' WHERE a=13085; UPDATE t2 SET c='fifty-six thousand six hundred eleven' WHERE a=13086; UPDATE t2 SET c='forty-three thousand eight hundred fifty-seven' WHERE a=13087; UPDATE t2 SET c='nineteen thousand one hundred eighty-one' WHERE a=13088; UPDATE t2 SET c='forty-nine thousand two hundred twelve' WHERE a=13089; UPDATE t2 SET c='four thousand two hundred seventy-five' WHERE a=13090; UPDATE t2 SET c='one thousand eighty' WHERE a=13091; UPDATE t2 SET c='forty-one thousand two hundred sixty-four' WHERE a=13092; UPDATE t2 SET c='thirty-two thousand three hundred thirty-nine' WHERE a=13093; UPDATE t2 SET c='ninety thousand ninety-seven' WHERE a=13094; UPDATE t2 SET c='ninety-one thousand two hundred forty-five' WHERE a=13095; UPDATE t2 SET c='ninety-six thousand six hundred fifteen' WHERE a=13096; UPDATE t2 SET c='fifty-eight thousand ninety-four' WHERE a=13097; UPDATE t2 SET c='seven thousand three hundred seventy-two' WHERE a=13098; UPDATE t2 SET c='fifty-seven thousand eighty-eight' WHERE a=13099; UPDATE t2 SET c='twelve thousand three hundred forty-four' WHERE a=13100; UPDATE t2 SET c='fifty-seven thousand six hundred fifty-five' WHERE a=13101; UPDATE t2 SET c='four thousand one hundred eighty-seven' WHERE a=13102; UPDATE t2 SET c='thirty-six thousand seven hundred thirty-one' WHERE a=13103; UPDATE t2 SET c='nineteen thousand three hundred fifty-eight' WHERE a=13104; UPDATE t2 SET c='fifty-nine thousand three hundred fourteen' WHERE a=13105; UPDATE t2 SET c='eighty-four thousand two hundred thirty-five' WHERE a=13106; UPDATE t2 SET c='forty-two thousand two hundred eighteen' WHERE a=13107; UPDATE t2 SET c='sixty-two thousand five hundred forty-seven' WHERE a=13108; UPDATE t2 SET c='eighty thousand seven hundred fifty-four' WHERE a=13109; UPDATE t2 SET c='forty-eight thousand six hundred twenty-nine' WHERE a=13110; UPDATE t2 SET c='sixty thousand four hundred twenty-seven' WHERE a=13111; UPDATE t2 SET c='twenty-two thousand four hundred four' WHERE a=13112; UPDATE t2 SET c='fifty-four thousand five' WHERE a=13113; UPDATE t2 SET c='ninety-five thousand six hundred seven' WHERE a=13114; UPDATE t2 SET c='fourteen thousand one hundred eleven' WHERE a=13115; UPDATE t2 SET c='thirty-seven thousand ninety' WHERE a=13116; UPDATE t2 SET c='eighty-eight thousand ninety-four' WHERE a=13117; UPDATE t2 SET c='forty-five thousand three hundred ninety-nine' WHERE a=13118; UPDATE t2 SET c='thirty-three thousand two hundred eighty-seven' WHERE a=13119; UPDATE t2 SET c='twenty-nine thousand six hundred forty-five' WHERE a=13120; UPDATE t2 SET c='ninety-one thousand nine hundred sixty-one' WHERE a=13121; UPDATE t2 SET c='eighty-five thousand three hundred seventy-one' WHERE a=13122; UPDATE t2 SET c='eighty-five thousand nine hundred ninety-nine' WHERE a=13123; UPDATE t2 SET c='nineteen thousand seven hundred ninety-two' WHERE a=13124; UPDATE t2 SET c='thirty-three thousand seven hundred thirty-one' WHERE a=13125; UPDATE t2 SET c='thirteen thousand one hundred fifty-nine' WHERE a=13126; UPDATE t2 SET c='forty-two thousand four hundred fourteen' WHERE a=13127; UPDATE t2 SET c='fifty-nine thousand two hundred eighty-eight' WHERE a=13128; UPDATE t2 SET c='ninety-six thousand seven hundred sixty-four' WHERE a=13129; UPDATE t2 SET c='thirty-seven thousand six hundred eighty-three' WHERE a=13130; UPDATE t2 SET c='seventy-three thousand three hundred eighty-one' WHERE a=13131; UPDATE t2 SET c='seventeen thousand seven hundred two' WHERE a=13132; UPDATE t2 SET c='forty-eight thousand six hundred fifty-three' WHERE a=13133; UPDATE t2 SET c='seventy-five thousand nine hundred ninety-three' WHERE a=13134; UPDATE t2 SET c='ninety-three thousand three hundred sixty-nine' WHERE a=13135; UPDATE t2 SET c='fifty-five thousand four hundred thirty-eight' WHERE a=13136; UPDATE t2 SET c='seventy-three thousand one hundred sixty-two' WHERE a=13137; UPDATE t2 SET c='sixty-five thousand one hundred sixty-five' WHERE a=13138; UPDATE t2 SET c='ninety-five thousand five hundred twenty-three' WHERE a=13139; UPDATE t2 SET c='seventeen thousand two hundred fifty-two' WHERE a=13140; UPDATE t2 SET c='seventeen thousand three hundred six' WHERE a=13141; UPDATE t2 SET c='six thousand seven hundred eighty-six' WHERE a=13142; UPDATE t2 SET c='thirty thousand three hundred seventy-two' WHERE a=13143; UPDATE t2 SET c='fifty-six thousand five hundred ninety-one' WHERE a=13144; UPDATE t2 SET c='thirty-three thousand seven hundred seventy-seven' WHERE a=13145; UPDATE t2 SET c='twenty-two thousand nine hundred forty-six' WHERE a=13146; UPDATE t2 SET c='fifty-three thousand seven hundred sixty-nine' WHERE a=13147; UPDATE t2 SET c='sixteen thousand one hundred eleven' WHERE a=13148; UPDATE t2 SET c='eighteen thousand fifty-two' WHERE a=13149; UPDATE t2 SET c='eighty-three thousand one hundred forty-two' WHERE a=13150; UPDATE t2 SET c='twenty-four thousand eight hundred seven' WHERE a=13151; UPDATE t2 SET c='forty-nine thousand sixty-two' WHERE a=13152; UPDATE t2 SET c='thirty-three thousand eight hundred seventy-one' WHERE a=13153; UPDATE t2 SET c='thirty-eight thousand one hundred nineteen' WHERE a=13154; UPDATE t2 SET c='forty-five thousand four hundred sixty-three' WHERE a=13155; UPDATE t2 SET c='twelve thousand seven hundred thirty' WHERE a=13156; UPDATE t2 SET c='ninety-nine thousand four hundred fourteen' WHERE a=13157; UPDATE t2 SET c='eighty-five thousand nine hundred ninety-five' WHERE a=13158; UPDATE t2 SET c='twenty-nine thousand nine hundred eighty-nine' WHERE a=13159; UPDATE t2 SET c='fifteen thousand six hundred thirteen' WHERE a=13160; UPDATE t2 SET c='thirty-two thousand five hundred seventy-five' WHERE a=13161; UPDATE t2 SET c='eleven thousand one hundred fifty-one' WHERE a=13162; UPDATE t2 SET c='eighty-five thousand nine hundred twelve' WHERE a=13163; UPDATE t2 SET c='twenty thousand four hundred thirty-three' WHERE a=13164; UPDATE t2 SET c='sixty-four thousand six hundred sixteen' WHERE a=13165; UPDATE t2 SET c='eighty-nine thousand eighty-one' WHERE a=13166; UPDATE t2 SET c='twenty-six thousand four hundred seventy-nine' WHERE a=13167; UPDATE t2 SET c='thirty thousand ninety-three' WHERE a=13168; UPDATE t2 SET c='sixty-eight thousand seven hundred ninety-three' WHERE a=13169; UPDATE t2 SET c='fifty-four thousand sixteen' WHERE a=13170; UPDATE t2 SET c='seventy-three thousand two hundred fifty-seven' WHERE a=13171; UPDATE t2 SET c='seven thousand four hundred eight' WHERE a=13172; UPDATE t2 SET c='thirty-four thousand one hundred five' WHERE a=13173; UPDATE t2 SET c='seventy-nine thousand two hundred seventy-nine' WHERE a=13174; UPDATE t2 SET c='sixty-seven thousand six hundred seventy-nine' WHERE a=13175; UPDATE t2 SET c='thirty-nine thousand eight hundred forty-one' WHERE a=13176; UPDATE t2 SET c='twenty-eight thousand four hundred fifty-eight' WHERE a=13177; UPDATE t2 SET c='twenty-five thousand six hundred ninety-six' WHERE a=13178; UPDATE t2 SET c='ninety-nine thousand six hundred forty-eight' WHERE a=13179; UPDATE t2 SET c='forty-five thousand eight hundred sixty-three' WHERE a=13180; UPDATE t2 SET c='seventy-three thousand seven hundred twelve' WHERE a=13181; UPDATE t2 SET c='fifty-two thousand seven hundred seventy-seven' WHERE a=13182; UPDATE t2 SET c='one thousand three hundred eighty' WHERE a=13183; UPDATE t2 SET c='ninety-one thousand eight hundred thirty-one' WHERE a=13184; UPDATE t2 SET c='forty-eight thousand two hundred thirty-four' WHERE a=13185; UPDATE t2 SET c='ninety-two thousand nine hundred ninety-three' WHERE a=13186; UPDATE t2 SET c='seventy-five thousand three hundred fifty-nine' WHERE a=13187; UPDATE t2 SET c='fifty thousand twelve' WHERE a=13188; UPDATE t2 SET c='eleven thousand one hundred seventeen' WHERE a=13189; UPDATE t2 SET c='eighty thousand two hundred ninety-six' WHERE a=13190; UPDATE t2 SET c='eleven thousand five hundred ninety-three' WHERE a=13191; UPDATE t2 SET c='ninety-six thousand fifty-five' WHERE a=13192; UPDATE t2 SET c='fifteen thousand one hundred thirty-five' WHERE a=13193; UPDATE t2 SET c='sixty-six thousand three hundred seventy-two' WHERE a=13194; UPDATE t2 SET c='fifty-seven thousand two hundred eighteen' WHERE a=13195; UPDATE t2 SET c='twenty-one thousand nine hundred thirty-one' WHERE a=13196; UPDATE t2 SET c='one thousand three hundred thirty-two' WHERE a=13197; UPDATE t2 SET c='ten thousand five hundred sixty-two' WHERE a=13198; UPDATE t2 SET c='fifty thousand two hundred eighty-two' WHERE a=13199; UPDATE t2 SET c='fifty-four thousand nine hundred thirteen' WHERE a=13200; UPDATE t2 SET c='seventy-one thousand two hundred fifty-five' WHERE a=13201; UPDATE t2 SET c='sixty-three thousand nine hundred eighty' WHERE a=13202; UPDATE t2 SET c='fifty-eight thousand one hundred fifty-four' WHERE a=13203; UPDATE t2 SET c='ninety-nine thousand three hundred twenty-five' WHERE a=13204; UPDATE t2 SET c='seventy-four thousand nine hundred eleven' WHERE a=13205; UPDATE t2 SET c='seventeen thousand eight hundred five' WHERE a=13206; UPDATE t2 SET c='twenty-four thousand two hundred ninety-one' WHERE a=13207; UPDATE t2 SET c='eighteen thousand one hundred twenty-one' WHERE a=13208; UPDATE t2 SET c='eighty-eight thousand eight hundred nine' WHERE a=13209; UPDATE t2 SET c='seventy-seven thousand two hundred seventeen' WHERE a=13210; UPDATE t2 SET c='ninety thousand one hundred thirty-four' WHERE a=13211; UPDATE t2 SET c='fifty-seven thousand seven hundred eighty' WHERE a=13212; UPDATE t2 SET c='sixteen thousand three hundred fifty-six' WHERE a=13213; UPDATE t2 SET c='fifty-two thousand eight hundred seventy' WHERE a=13214; UPDATE t2 SET c='two thousand three hundred forty-seven' WHERE a=13215; UPDATE t2 SET c='eighteen thousand three hundred ninety-two' WHERE a=13216; UPDATE t2 SET c='nine thousand one hundred forty-one' WHERE a=13217; UPDATE t2 SET c='seventy-five thousand six hundred seventy-eight' WHERE a=13218; UPDATE t2 SET c='forty-three thousand seven hundred sixty' WHERE a=13219; UPDATE t2 SET c='twenty-eight thousand six hundred eighty' WHERE a=13220; UPDATE t2 SET c='forty thousand nine hundred twelve' WHERE a=13221; UPDATE t2 SET c='seventy-six thousand four hundred twelve' WHERE a=13222; UPDATE t2 SET c='ten thousand four hundred eighty-six' WHERE a=13223; UPDATE t2 SET c='six thousand one hundred fifty-two' WHERE a=13224; UPDATE t2 SET c='seventy-six thousand nine hundred eighty-two' WHERE a=13225; UPDATE t2 SET c='seven hundred fifty-three' WHERE a=13226; UPDATE t2 SET c='three hundred eighty-five' WHERE a=13227; UPDATE t2 SET c='forty-one thousand nine hundred fifty-five' WHERE a=13228; UPDATE t2 SET c='six thousand two hundred sixty-two' WHERE a=13229; UPDATE t2 SET c='sixty-three thousand seven hundred fifty' WHERE a=13230; UPDATE t2 SET c='sixteen thousand eighty-four' WHERE a=13231; UPDATE t2 SET c='sixty-one thousand one hundred sixty-eight' WHERE a=13232; UPDATE t2 SET c='fifty-six thousand five hundred eighteen' WHERE a=13233; UPDATE t2 SET c='four thousand five hundred seventy-seven' WHERE a=13234; UPDATE t2 SET c='seventy-four thousand nine hundred sixty-eight' WHERE a=13235; UPDATE t2 SET c='fifty-eight thousand one hundred eighty-two' WHERE a=13236; UPDATE t2 SET c='thirty-two thousand nine hundred ninety-two' WHERE a=13237; UPDATE t2 SET c='ninety-two thousand four hundred thirty-five' WHERE a=13238; UPDATE t2 SET c='seventy-seven thousand eight hundred eighty-six' WHERE a=13239; UPDATE t2 SET c='thirty-nine thousand two hundred sixteen' WHERE a=13240; UPDATE t2 SET c='seven thousand nine hundred eighty-eight' WHERE a=13241; UPDATE t2 SET c='ninety thousand three hundred sixty-eight' WHERE a=13242; UPDATE t2 SET c='twenty-four thousand six hundred twenty-four' WHERE a=13243; UPDATE t2 SET c='thirty-nine thousand eight hundred ninety-eight' WHERE a=13244; UPDATE t2 SET c='twenty-eight thousand three hundred fifty-six' WHERE a=13245; UPDATE t2 SET c='seventy-four thousand six hundred thirty-seven' WHERE a=13246; UPDATE t2 SET c='twenty-eight thousand six hundred seven' WHERE a=13247; UPDATE t2 SET c='ninety-five thousand two hundred ninety-two' WHERE a=13248; UPDATE t2 SET c='seventy-five thousand six hundred fifty-three' WHERE a=13249; UPDATE t2 SET c='twenty-seven thousand nine hundred twenty' WHERE a=13250; UPDATE t2 SET c='sixty-five thousand one' WHERE a=13251; UPDATE t2 SET c='ninety-one thousand seven hundred forty-nine' WHERE a=13252; UPDATE t2 SET c='sixty-two thousand five hundred thirty-one' WHERE a=13253; UPDATE t2 SET c='thirty-one thousand eighteen' WHERE a=13254; UPDATE t2 SET c='sixty-one thousand thirty-eight' WHERE a=13255; UPDATE t2 SET c='fifty-nine thousand six hundred ninety-seven' WHERE a=13256; UPDATE t2 SET c='three hundred two' WHERE a=13257; UPDATE t2 SET c='sixty-four thousand four hundred forty-three' WHERE a=13258; UPDATE t2 SET c='seventy-nine thousand eight hundred one' WHERE a=13259; UPDATE t2 SET c='sixty-two thousand seven hundred twenty-six' WHERE a=13260; UPDATE t2 SET c='two thousand seven' WHERE a=13261; UPDATE t2 SET c='twenty-eight thousand ninety-eight' WHERE a=13262; UPDATE t2 SET c='sixteen thousand fourteen' WHERE a=13263; UPDATE t2 SET c='forty-eight thousand eight hundred fifty-five' WHERE a=13264; UPDATE t2 SET c='seventy thousand five hundred fourteen' WHERE a=13265; UPDATE t2 SET c='seventy-seven thousand fifty-eight' WHERE a=13266; UPDATE t2 SET c='forty-nine thousand four hundred fifteen' WHERE a=13267; UPDATE t2 SET c='seventy-nine thousand five hundred seventy-two' WHERE a=13268; UPDATE t2 SET c='ninety-five thousand eight hundred seventy-two' WHERE a=13269; UPDATE t2 SET c='eighty-eight thousand six hundred sixty' WHERE a=13270; UPDATE t2 SET c='ninety-one thousand six hundred twelve' WHERE a=13271; UPDATE t2 SET c='fifty-nine thousand thirty-two' WHERE a=13272; UPDATE t2 SET c='thirty-one thousand two hundred four' WHERE a=13273; UPDATE t2 SET c='ninety-seven thousand six hundred sixty-seven' WHERE a=13274; UPDATE t2 SET c='forty-nine thousand seven hundred thirty' WHERE a=13275; UPDATE t2 SET c='forty-two thousand six hundred forty-one' WHERE a=13276; UPDATE t2 SET c='six thousand one hundred seventeen' WHERE a=13277; UPDATE t2 SET c='nineteen thousand six hundred sixty' WHERE a=13278; UPDATE t2 SET c='ninety-seven thousand forty-six' WHERE a=13279; UPDATE t2 SET c='eighty-nine thousand eight hundred fifty-six' WHERE a=13280; UPDATE t2 SET c='twenty-seven thousand five hundred eighty-eight' WHERE a=13281; UPDATE t2 SET c='three thousand eight hundred ninety-nine' WHERE a=13282; UPDATE t2 SET c='seventy thousand three hundred eighty-four' WHERE a=13283; UPDATE t2 SET c='seventeen thousand five hundred ninety-five' WHERE a=13284; UPDATE t2 SET c='eighty-two thousand two hundred eighty-three' WHERE a=13285; UPDATE t2 SET c='fifty-four thousand eight hundred sixty-two' WHERE a=13286; UPDATE t2 SET c='ninety-five thousand thirty-eight' WHERE a=13287; UPDATE t2 SET c='fifty thousand seven hundred twenty' WHERE a=13288; UPDATE t2 SET c='thirty thousand seven hundred thirty-one' WHERE a=13289; UPDATE t2 SET c='fifty-five thousand one hundred fifty-seven' WHERE a=13290; UPDATE t2 SET c='twenty-two thousand seven hundred four' WHERE a=13291; UPDATE t2 SET c='one thousand two hundred thirty-five' WHERE a=13292; UPDATE t2 SET c='one thousand one hundred forty-five' WHERE a=13293; UPDATE t2 SET c='thirty-one thousand eight hundred eighty-eight' WHERE a=13294; UPDATE t2 SET c='seventy-one thousand nine hundred sixty-six' WHERE a=13295; UPDATE t2 SET c='eleven thousand eight hundred twenty-three' WHERE a=13296; UPDATE t2 SET c='fifty-eight thousand seven hundred sixty-six' WHERE a=13297; UPDATE t2 SET c='seventy-five thousand six hundred fifty-seven' WHERE a=13298; UPDATE t2 SET c='thirty-six thousand four hundred thirty-eight' WHERE a=13299; UPDATE t2 SET c='one thousand eight hundred six' WHERE a=13300; UPDATE t2 SET c='ninety-eight thousand fifty-four' WHERE a=13301; UPDATE t2 SET c='two thousand forty-one' WHERE a=13302; UPDATE t2 SET c='twenty-nine thousand two hundred seventy-six' WHERE a=13303; UPDATE t2 SET c='eighty thousand one hundred nineteen' WHERE a=13304; UPDATE t2 SET c='sixty-four thousand three hundred sixty-six' WHERE a=13305; UPDATE t2 SET c='seventy-one thousand one hundred ninety-five' WHERE a=13306; UPDATE t2 SET c='three thousand four hundred fifty-six' WHERE a=13307; UPDATE t2 SET c='thirty-five thousand four hundred fifty-seven' WHERE a=13308; UPDATE t2 SET c='twelve thousand sixty-two' WHERE a=13309; UPDATE t2 SET c='forty-one thousand eight hundred twenty-six' WHERE a=13310; UPDATE t2 SET c='ninety-seven thousand eight hundred eleven' WHERE a=13311; UPDATE t2 SET c='fourteen thousand seven hundred ninety-four' WHERE a=13312; UPDATE t2 SET c='ninety-five thousand eighty-seven' WHERE a=13313; UPDATE t2 SET c='fifty-five thousand fifty-five' WHERE a=13314; UPDATE t2 SET c='ninety-two thousand three hundred one' WHERE a=13315; UPDATE t2 SET c='ten thousand eight hundred sixty-five' WHERE a=13316; UPDATE t2 SET c='sixty thousand two hundred fifty-seven' WHERE a=13317; UPDATE t2 SET c='ninety-seven thousand five hundred forty-four' WHERE a=13318; UPDATE t2 SET c='eighty-six thousand four hundred twenty-five' WHERE a=13319; UPDATE t2 SET c='twenty-four thousand seventy-six' WHERE a=13320; UPDATE t2 SET c='forty-two thousand four hundred eighteen' WHERE a=13321; UPDATE t2 SET c='sixty-four thousand seven hundred seventy-nine' WHERE a=13322; UPDATE t2 SET c='forty-one thousand one hundred eighty-five' WHERE a=13323; UPDATE t2 SET c='thirty-three thousand seven hundred eighty' WHERE a=13324; UPDATE t2 SET c='twenty-four thousand four hundred seven' WHERE a=13325; UPDATE t2 SET c='forty-two thousand one hundred forty-two' WHERE a=13326; UPDATE t2 SET c='twenty-two thousand six hundred twenty-four' WHERE a=13327; UPDATE t2 SET c='seventy thousand six hundred nine' WHERE a=13328; UPDATE t2 SET c='twenty thousand five hundred twenty-two' WHERE a=13329; UPDATE t2 SET c='ninety-six thousand two hundred twenty-two' WHERE a=13330; UPDATE t2 SET c='sixty thousand ninety-six' WHERE a=13331; UPDATE t2 SET c='ninety-seven thousand two hundred seventy-eight' WHERE a=13332; UPDATE t2 SET c='twenty-seven thousand three hundred ninety-nine' WHERE a=13333; UPDATE t2 SET c='four thousand nine hundred ninety-nine' WHERE a=13334; UPDATE t2 SET c='sixty-nine thousand five hundred sixteen' WHERE a=13335; UPDATE t2 SET c='eight thousand five hundred thirty-eight' WHERE a=13336; UPDATE t2 SET c='fifty-three thousand one hundred thirty-three' WHERE a=13337; UPDATE t2 SET c='six thousand one hundred forty-five' WHERE a=13338; UPDATE t2 SET c='seventy-seven thousand eight hundred fifty-four' WHERE a=13339; UPDATE t2 SET c='forty-seven thousand five hundred twelve' WHERE a=13340; UPDATE t2 SET c='sixty-eight thousand one hundred twenty-three' WHERE a=13341; UPDATE t2 SET c='seventy-eight thousand five hundred eighty-six' WHERE a=13342; UPDATE t2 SET c='seventy-six thousand seven hundred thirty-four' WHERE a=13343; UPDATE t2 SET c='fifty thousand three hundred eighty-two' WHERE a=13344; UPDATE t2 SET c='fifteen thousand eight hundred thirty-eight' WHERE a=13345; UPDATE t2 SET c='ninety-five thousand nine hundred sixty-four' WHERE a=13346; UPDATE t2 SET c='fifty-four thousand two hundred eighty' WHERE a=13347; UPDATE t2 SET c='one thousand one hundred sixty-seven' WHERE a=13348; UPDATE t2 SET c='thirty-nine thousand eight hundred forty-three' WHERE a=13349; UPDATE t2 SET c='nineteen thousand eight hundred eighty-one' WHERE a=13350; UPDATE t2 SET c='twenty thousand eight hundred thirty-six' WHERE a=13351; UPDATE t2 SET c='thirty-seven thousand six hundred twenty-nine' WHERE a=13352; UPDATE t2 SET c='twenty-eight thousand seventy' WHERE a=13353; UPDATE t2 SET c='eighty-eight thousand five hundred sixty-nine' WHERE a=13354; UPDATE t2 SET c='sixteen thousand two hundred thirty-eight' WHERE a=13355; UPDATE t2 SET c='twenty-one thousand one hundred thirty-two' WHERE a=13356; UPDATE t2 SET c='thirty-five thousand four hundred forty-five' WHERE a=13357; UPDATE t2 SET c='seventy-nine thousand six hundred twenty' WHERE a=13358; UPDATE t2 SET c='eleven thousand seven hundred thirty-six' WHERE a=13359; UPDATE t2 SET c='twenty-seven thousand thirty-two' WHERE a=13360; UPDATE t2 SET c='two thousand nine hundred sixty-six' WHERE a=13361; UPDATE t2 SET c='twenty-eight thousand three hundred' WHERE a=13362; UPDATE t2 SET c='seventy thousand two hundred twenty-one' WHERE a=13363; UPDATE t2 SET c='fifty-six thousand five hundred forty-two' WHERE a=13364; UPDATE t2 SET c='forty-six thousand five' WHERE a=13365; UPDATE t2 SET c='eighty-four thousand seven hundred eighty-seven' WHERE a=13366; UPDATE t2 SET c='fifty-five thousand four hundred fifty' WHERE a=13367; UPDATE t2 SET c='forty-one thousand three hundred seventy-two' WHERE a=13368; UPDATE t2 SET c='one thousand two hundred ninety-two' WHERE a=13369; UPDATE t2 SET c='ninety-eight thousand eighty-three' WHERE a=13370; UPDATE t2 SET c='thirty-four thousand one' WHERE a=13371; UPDATE t2 SET c='three thousand four hundred fifty' WHERE a=13372; UPDATE t2 SET c='twenty-one thousand seven hundred one' WHERE a=13373; UPDATE t2 SET c='thirty-seven thousand six hundred thirty-two' WHERE a=13374; UPDATE t2 SET c='fifty-nine thousand eight hundred forty-two' WHERE a=13375; UPDATE t2 SET c='seventy-five thousand eight hundred sixty-nine' WHERE a=13376; UPDATE t2 SET c='seventy-one thousand five hundred eleven' WHERE a=13377; UPDATE t2 SET c='twenty-eight thousand four hundred thirty' WHERE a=13378; UPDATE t2 SET c='twenty-six thousand eight hundred thirty-one' WHERE a=13379; UPDATE t2 SET c='sixty-seven thousand seven hundred fifty-six' WHERE a=13380; UPDATE t2 SET c='eleven thousand two hundred thirty-one' WHERE a=13381; UPDATE t2 SET c='fifty-three thousand two hundred forty-six' WHERE a=13382; UPDATE t2 SET c='twenty-eight thousand nine hundred thirty-four' WHERE a=13383; UPDATE t2 SET c='eleven thousand two hundred forty-three' WHERE a=13384; UPDATE t2 SET c='twenty-one thousand two hundred eighty-five' WHERE a=13385; UPDATE t2 SET c='eighty-nine thousand seven hundred twenty-six' WHERE a=13386; UPDATE t2 SET c='fifteen thousand nine hundred fifteen' WHERE a=13387; UPDATE t2 SET c='two thousand six hundred eighty-two' WHERE a=13388; UPDATE t2 SET c='six thousand nine hundred forty-seven' WHERE a=13389; UPDATE t2 SET c='ninety-six thousand three hundred sixty' WHERE a=13390; UPDATE t2 SET c='ninety-three thousand six hundred eighty-five' WHERE a=13391; UPDATE t2 SET c='forty-five thousand six hundred seventy-two' WHERE a=13392; UPDATE t2 SET c='eighty-four thousand eight hundred seventy-three' WHERE a=13393; UPDATE t2 SET c='seventy-seven thousand three hundred sixty-four' WHERE a=13394; UPDATE t2 SET c='twenty thousand eight hundred eighty-one' WHERE a=13395; UPDATE t2 SET c='seventy thousand two hundred eighty-three' WHERE a=13396; UPDATE t2 SET c='ninety-one thousand seven hundred eighty-one' WHERE a=13397; UPDATE t2 SET c='thirty-one thousand eight hundred eighty-eight' WHERE a=13398; UPDATE t2 SET c='forty thousand three hundred fifty-eight' WHERE a=13399; UPDATE t2 SET c='ten thousand nine hundred thirty-three' WHERE a=13400; UPDATE t2 SET c='ninety-four thousand three hundred seventy-four' WHERE a=13401; UPDATE t2 SET c='twelve thousand five hundred ninety-nine' WHERE a=13402; UPDATE t2 SET c='nine hundred twenty-three' WHERE a=13403; UPDATE t2 SET c='forty-five thousand one hundred seventy-eight' WHERE a=13404; UPDATE t2 SET c='eighty-eight thousand two hundred sixty-four' WHERE a=13405; UPDATE t2 SET c='seven thousand one hundred twenty-seven' WHERE a=13406; UPDATE t2 SET c='seventy-seven thousand two hundred twenty-eight' WHERE a=13407; UPDATE t2 SET c='eighty-four thousand ninety-seven' WHERE a=13408; UPDATE t2 SET c='twenty-three thousand eight hundred fifteen' WHERE a=13409; UPDATE t2 SET c='ninety-nine thousand three hundred fifteen' WHERE a=13410; UPDATE t2 SET c='fifty-six thousand two hundred fifty-three' WHERE a=13411; UPDATE t2 SET c='seventeen thousand seven hundred seventy-six' WHERE a=13412; UPDATE t2 SET c='forty-one thousand five hundred thirteen' WHERE a=13413; UPDATE t2 SET c='ninety-one thousand nine hundred seventy-one' WHERE a=13414; UPDATE t2 SET c='eighty-two thousand nine hundred fifty-six' WHERE a=13415; UPDATE t2 SET c='seventy-one thousand eight hundred sixty' WHERE a=13416; UPDATE t2 SET c='forty-six thousand five hundred twenty-one' WHERE a=13417; UPDATE t2 SET c='thirty-three thousand six hundred fourteen' WHERE a=13418; UPDATE t2 SET c='eighty-eight thousand seven hundred fifty-nine' WHERE a=13419; UPDATE t2 SET c='fifty-eight thousand seven hundred sixty-five' WHERE a=13420; UPDATE t2 SET c='one thousand one hundred ninety' WHERE a=13421; UPDATE t2 SET c='seventy-four thousand nine hundred nineteen' WHERE a=13422; UPDATE t2 SET c='twenty-two thousand six hundred eight' WHERE a=13423; UPDATE t2 SET c='one thousand eight hundred twenty-four' WHERE a=13424; UPDATE t2 SET c='ninety-nine thousand one hundred fifty-nine' WHERE a=13425; UPDATE t2 SET c='seventy-one thousand eight hundred four' WHERE a=13426; UPDATE t2 SET c='eighty-two thousand seven hundred eleven' WHERE a=13427; UPDATE t2 SET c='forty-nine thousand nine hundred eighty-seven' WHERE a=13428; UPDATE t2 SET c='sixteen thousand two hundred ninety-six' WHERE a=13429; UPDATE t2 SET c='four thousand one hundred sixty-eight' WHERE a=13430; UPDATE t2 SET c='eighty-three thousand three hundred eighty' WHERE a=13431; UPDATE t2 SET c='thirty-two thousand four hundred sixty-nine' WHERE a=13432; UPDATE t2 SET c='ninety-eight thousand seven hundred ninety-nine' WHERE a=13433; UPDATE t2 SET c='ninety-seven thousand one hundred twenty-seven' WHERE a=13434; UPDATE t2 SET c='sixteen thousand thirty-four' WHERE a=13435; UPDATE t2 SET c='thirty-one thousand four hundred ninety-eight' WHERE a=13436; UPDATE t2 SET c='twelve thousand six hundred eighteen' WHERE a=13437; UPDATE t2 SET c='thirty-seven thousand one hundred seventy-four' WHERE a=13438; UPDATE t2 SET c='seventeen thousand five hundred two' WHERE a=13439; UPDATE t2 SET c='fifty-nine thousand three hundred seventy-six' WHERE a=13440; UPDATE t2 SET c='seventy-six thousand one hundred eighty-six' WHERE a=13441; UPDATE t2 SET c='three hundred forty-three' WHERE a=13442; UPDATE t2 SET c='sixty-one thousand eighty-eight' WHERE a=13443; UPDATE t2 SET c='seventy-eight thousand three hundred eighty-nine' WHERE a=13444; UPDATE t2 SET c='two thousand nine hundred eighty-six' WHERE a=13445; UPDATE t2 SET c='forty-seven thousand seven hundred sixty-six' WHERE a=13446; UPDATE t2 SET c='ninety-two thousand eight hundred twenty-three' WHERE a=13447; UPDATE t2 SET c='six thousand six hundred ninety-five' WHERE a=13448; UPDATE t2 SET c='twenty-five thousand six hundred sixty-seven' WHERE a=13449; UPDATE t2 SET c='twenty-one thousand eight hundred fifteen' WHERE a=13450; UPDATE t2 SET c='seventy-eight thousand four hundred forty-seven' WHERE a=13451; UPDATE t2 SET c='sixty-nine thousand six hundred thirty-four' WHERE a=13452; UPDATE t2 SET c='thirty thousand one hundred thirty-seven' WHERE a=13453; UPDATE t2 SET c='ninety-one thousand four hundred forty-four' WHERE a=13454; UPDATE t2 SET c='ninety-seven thousand five hundred fifty' WHERE a=13455; UPDATE t2 SET c='fifty-two thousand five hundred seventy' WHERE a=13456; UPDATE t2 SET c='twenty-eight thousand one hundred eight' WHERE a=13457; UPDATE t2 SET c='sixty-four thousand three hundred sixty-seven' WHERE a=13458; UPDATE t2 SET c='thirty-one thousand four' WHERE a=13459; UPDATE t2 SET c='nine thousand one hundred ninety-one' WHERE a=13460; UPDATE t2 SET c='twelve thousand seven hundred seventy-nine' WHERE a=13461; UPDATE t2 SET c='fifty-one thousand three hundred sixty-two' WHERE a=13462; UPDATE t2 SET c='five thousand seven hundred eighty-six' WHERE a=13463; UPDATE t2 SET c='seventy-seven thousand four hundred ninety-one' WHERE a=13464; UPDATE t2 SET c='fifteen thousand two hundred eighty-four' WHERE a=13465; UPDATE t2 SET c='seventy-four thousand seven hundred twenty-three' WHERE a=13466; UPDATE t2 SET c='seventy-two thousand one hundred ninety-seven' WHERE a=13467; UPDATE t2 SET c='seventy-six thousand two hundred ninety-seven' WHERE a=13468; UPDATE t2 SET c='twenty thousand two hundred ninety-nine' WHERE a=13469; UPDATE t2 SET c='fifty thousand seven hundred sixty-five' WHERE a=13470; UPDATE t2 SET c='sixty-nine thousand seven hundred thirty-three' WHERE a=13471; UPDATE t2 SET c='ninety-three thousand three hundred fifty-six' WHERE a=13472; UPDATE t2 SET c='two thousand seven hundred seventy-four' WHERE a=13473; UPDATE t2 SET c='forty-four thousand ninety-eight' WHERE a=13474; UPDATE t2 SET c='sixty-three thousand seven hundred twenty-five' WHERE a=13475; UPDATE t2 SET c='fifteen thousand seven hundred seventy-seven' WHERE a=13476; UPDATE t2 SET c='seventy-three thousand two hundred seventy-eight' WHERE a=13477; UPDATE t2 SET c='seventy-three thousand two hundred four' WHERE a=13478; UPDATE t2 SET c='forty-nine thousand six hundred ten' WHERE a=13479; UPDATE t2 SET c='sixty-one thousand seven hundred seventy-nine' WHERE a=13480; UPDATE t2 SET c='seventeen thousand two hundred fifty-eight' WHERE a=13481; UPDATE t2 SET c='eight thousand two hundred forty-four' WHERE a=13482; UPDATE t2 SET c='thirty-five thousand four hundred eighty-three' WHERE a=13483; UPDATE t2 SET c='sixty-nine thousand two hundred ninety-two' WHERE a=13484; UPDATE t2 SET c='eighty-five thousand two hundred eighty-six' WHERE a=13485; UPDATE t2 SET c='sixty-eight thousand three hundred seventy-four' WHERE a=13486; UPDATE t2 SET c='ten thousand five hundred sixty-one' WHERE a=13487; UPDATE t2 SET c='eighty-one thousand four hundred forty-one' WHERE a=13488; UPDATE t2 SET c='thirty-four thousand three hundred forty-six' WHERE a=13489; UPDATE t2 SET c='eleven thousand three hundred forty-six' WHERE a=13490; UPDATE t2 SET c='fifty-five thousand five hundred ninety-three' WHERE a=13491; UPDATE t2 SET c='sixty-two thousand five hundred twenty-seven' WHERE a=13492; UPDATE t2 SET c='forty-two thousand nine hundred one' WHERE a=13493; UPDATE t2 SET c='thirty-two thousand six hundred fifty-three' WHERE a=13494; UPDATE t2 SET c='two thousand three hundred seventy-nine' WHERE a=13495; UPDATE t2 SET c='three thousand five hundred ninety-eight' WHERE a=13496; UPDATE t2 SET c='eighteen thousand three hundred fourteen' WHERE a=13497; UPDATE t2 SET c='twenty-three thousand eight hundred seven' WHERE a=13498; UPDATE t2 SET c='eighty thousand one hundred eighty-five' WHERE a=13499; UPDATE t2 SET c='thirty-six thousand one hundred twenty-seven' WHERE a=13500; UPDATE t2 SET c='sixty-seven thousand eight hundred twelve' WHERE a=13501; UPDATE t2 SET c='eighty-six thousand four hundred seventy-five' WHERE a=13502; UPDATE t2 SET c='sixty-five thousand seven hundred eighty-two' WHERE a=13503; UPDATE t2 SET c='thirty-nine thousand nine hundred eight' WHERE a=13504; UPDATE t2 SET c='three thousand nine hundred eighty-two' WHERE a=13505; UPDATE t2 SET c='thirteen thousand three hundred sixty-five' WHERE a=13506; UPDATE t2 SET c='ninety-three thousand eight hundred fourteen' WHERE a=13507; UPDATE t2 SET c='thirty-seven thousand four hundred thirty-five' WHERE a=13508; UPDATE t2 SET c='forty-four thousand one hundred ninety-five' WHERE a=13509; UPDATE t2 SET c='eighty-nine thousand five hundred eighty-four' WHERE a=13510; UPDATE t2 SET c='forty-eight thousand three hundred eighty-one' WHERE a=13511; UPDATE t2 SET c='three thousand three hundred sixty-three' WHERE a=13512; UPDATE t2 SET c='seventy thousand eighty-eight' WHERE a=13513; UPDATE t2 SET c='ninety-three thousand six hundred twenty' WHERE a=13514; UPDATE t2 SET c='sixty-six thousand six hundred fifty-eight' WHERE a=13515; UPDATE t2 SET c='nine thousand two hundred seventy' WHERE a=13516; UPDATE t2 SET c='seventy-three thousand four hundred eighty-seven' WHERE a=13517; UPDATE t2 SET c='thirty-four thousand seven hundred forty-four' WHERE a=13518; UPDATE t2 SET c='eighty-nine thousand seven hundred six' WHERE a=13519; UPDATE t2 SET c='ninety-one thousand seven hundred thirty-six' WHERE a=13520; UPDATE t2 SET c='seventy-three thousand four hundred ninety-six' WHERE a=13521; UPDATE t2 SET c='thirty-six thousand seven hundred eighty-eight' WHERE a=13522; UPDATE t2 SET c='twenty-one thousand eight hundred six' WHERE a=13523; UPDATE t2 SET c='twenty-five thousand five hundred forty-two' WHERE a=13524; UPDATE t2 SET c='eighty-five thousand three hundred twenty-one' WHERE a=13525; UPDATE t2 SET c='thirty-four thousand three hundred seventy-one' WHERE a=13526; UPDATE t2 SET c='forty-eight thousand seven hundred ninety-two' WHERE a=13527; UPDATE t2 SET c='fifty-nine thousand two hundred thirty-three' WHERE a=13528; UPDATE t2 SET c='seventy-four thousand seven hundred forty-five' WHERE a=13529; UPDATE t2 SET c='eighty-nine thousand three hundred seventy-two' WHERE a=13530; UPDATE t2 SET c='seventy-four thousand one hundred twenty-nine' WHERE a=13531; UPDATE t2 SET c='fourteen thousand nine hundred four' WHERE a=13532; UPDATE t2 SET c='forty-five thousand seven hundred twelve' WHERE a=13533; UPDATE t2 SET c='eighty-two thousand one hundred forty-six' WHERE a=13534; UPDATE t2 SET c='twenty-six thousand eight hundred ten' WHERE a=13535; UPDATE t2 SET c='eight thousand three hundred seventy-five' WHERE a=13536; UPDATE t2 SET c='eight thousand six hundred ten' WHERE a=13537; UPDATE t2 SET c='twenty-six thousand one hundred ninety' WHERE a=13538; UPDATE t2 SET c='fifty-five thousand eight hundred seventy-two' WHERE a=13539; UPDATE t2 SET c='seven thousand thirty-seven' WHERE a=13540; UPDATE t2 SET c='eighty-eight thousand five hundred twenty-five' WHERE a=13541; UPDATE t2 SET c='eighty-two thousand five hundred forty' WHERE a=13542; UPDATE t2 SET c='four thousand two hundred fifty-three' WHERE a=13543; UPDATE t2 SET c='seventy-one thousand three hundred sixty-three' WHERE a=13544; UPDATE t2 SET c='ninety-nine thousand two hundred eighty-three' WHERE a=13545; UPDATE t2 SET c='fifty-six thousand two hundred sixty-nine' WHERE a=13546; UPDATE t2 SET c='ninety-six thousand three hundred forty-eight' WHERE a=13547; UPDATE t2 SET c='eighty-six thousand seven hundred eighty-two' WHERE a=13548; UPDATE t2 SET c='seventy-eight thousand two hundred sixty-seven' WHERE a=13549; UPDATE t2 SET c='twenty-four thousand seven hundred thirty-three' WHERE a=13550; UPDATE t2 SET c='sixty thousand one hundred seventy-six' WHERE a=13551; UPDATE t2 SET c='thirty-seven thousand seven hundred ninety-eight' WHERE a=13552; UPDATE t2 SET c='sixty-nine thousand forty' WHERE a=13553; UPDATE t2 SET c='twenty-seven thousand six hundred thirty-four' WHERE a=13554; UPDATE t2 SET c='twenty-eight thousand ten' WHERE a=13555; UPDATE t2 SET c='fifty-two thousand seven hundred eighty-one' WHERE a=13556; UPDATE t2 SET c='one hundred forty-six' WHERE a=13557; UPDATE t2 SET c='eleven thousand eight hundred thirty-three' WHERE a=13558; UPDATE t2 SET c='eighty-two thousand two hundred eighteen' WHERE a=13559; UPDATE t2 SET c='eighty-one thousand one hundred eighty' WHERE a=13560; UPDATE t2 SET c='eighty thousand fifty-nine' WHERE a=13561; UPDATE t2 SET c='thirty-five thousand four hundred twenty-five' WHERE a=13562; UPDATE t2 SET c='forty-nine thousand nine hundred forty-two' WHERE a=13563; UPDATE t2 SET c='fifteen thousand four hundred sixty-five' WHERE a=13564; UPDATE t2 SET c='four thousand fifty-two' WHERE a=13565; UPDATE t2 SET c='eighty-two thousand eight hundred six' WHERE a=13566; UPDATE t2 SET c='twenty-three thousand two hundred sixty-three' WHERE a=13567; UPDATE t2 SET c='fifty-six thousand one hundred sixty-seven' WHERE a=13568; UPDATE t2 SET c='twenty-five thousand two hundred seventy' WHERE a=13569; UPDATE t2 SET c='eighty-four thousand nine hundred thirty-seven' WHERE a=13570; UPDATE t2 SET c='eighty-four thousand seven hundred twenty-one' WHERE a=13571; UPDATE t2 SET c='eighty-two thousand ten' WHERE a=13572; UPDATE t2 SET c='seventy-two thousand one hundred ninety' WHERE a=13573; UPDATE t2 SET c='seventy-six thousand seven hundred seventy-four' WHERE a=13574; UPDATE t2 SET c='seventeen thousand eight hundred twenty-six' WHERE a=13575; UPDATE t2 SET c='seventy-five thousand three hundred twelve' WHERE a=13576; UPDATE t2 SET c='eighty-three thousand one hundred eighteen' WHERE a=13577; UPDATE t2 SET c='seventy-two thousand three hundred ninety-nine' WHERE a=13578; UPDATE t2 SET c='ninety-five thousand seven hundred twenty-nine' WHERE a=13579; UPDATE t2 SET c='eighteen thousand seven hundred thirty-seven' WHERE a=13580; UPDATE t2 SET c='fifty-three thousand six hundred sixty-two' WHERE a=13581; UPDATE t2 SET c='thirty-six thousand two hundred seven' WHERE a=13582; UPDATE t2 SET c='eighteen thousand eight hundred forty-six' WHERE a=13583; UPDATE t2 SET c='sixty-eight thousand five hundred eighteen' WHERE a=13584; UPDATE t2 SET c='seventy-eight thousand six hundred forty-six' WHERE a=13585; UPDATE t2 SET c='eighty-seven thousand seven hundred ninety-one' WHERE a=13586; UPDATE t2 SET c='forty-two thousand four hundred eighty-five' WHERE a=13587; UPDATE t2 SET c='eighty-one thousand four hundred fifty-nine' WHERE a=13588; UPDATE t2 SET c='twenty-nine thousand five hundred eighty-five' WHERE a=13589; UPDATE t2 SET c='seventy-seven thousand forty-four' WHERE a=13590; UPDATE t2 SET c='fifteen thousand three hundred eighteen' WHERE a=13591; UPDATE t2 SET c='seventy-eight thousand eight hundred thirty-seven' WHERE a=13592; UPDATE t2 SET c='eighty-five thousand one hundred twenty-eight' WHERE a=13593; UPDATE t2 SET c='eighty-five thousand one hundred twelve' WHERE a=13594; UPDATE t2 SET c='sixty thousand nine hundred sixty-five' WHERE a=13595; UPDATE t2 SET c='eighty-one thousand six hundred fifteen' WHERE a=13596; UPDATE t2 SET c='twenty-four thousand five hundred ninety-seven' WHERE a=13597; UPDATE t2 SET c='twenty-two thousand six hundred fifteen' WHERE a=13598; UPDATE t2 SET c='six thousand nine hundred eighty-six' WHERE a=13599; UPDATE t2 SET c='seventy-two thousand eight hundred seven' WHERE a=13600; UPDATE t2 SET c='forty-three thousand three hundred ninety-one' WHERE a=13601; UPDATE t2 SET c='thirty-four thousand one hundred eighty-six' WHERE a=13602; UPDATE t2 SET c='forty-six thousand five hundred eighty' WHERE a=13603; UPDATE t2 SET c='ninety-six thousand six hundred forty-seven' WHERE a=13604; UPDATE t2 SET c='ninety-four thousand five hundred seventy-three' WHERE a=13605; UPDATE t2 SET c='forty-one thousand seventy-two' WHERE a=13606; UPDATE t2 SET c='five thousand seven hundred fifty-four' WHERE a=13607; UPDATE t2 SET c='thirteen thousand eight hundred eighty-eight' WHERE a=13608; UPDATE t2 SET c='eighty-five thousand eight hundred ninety-seven' WHERE a=13609; UPDATE t2 SET c='fifty-four thousand nine hundred forty-nine' WHERE a=13610; UPDATE t2 SET c='ninety-five thousand five hundred sixty-five' WHERE a=13611; UPDATE t2 SET c='sixty-seven thousand eight hundred eighty' WHERE a=13612; UPDATE t2 SET c='twenty-three thousand nine hundred eighty-five' WHERE a=13613; UPDATE t2 SET c='three thousand three hundred ninety-four' WHERE a=13614; UPDATE t2 SET c='twenty-seven thousand seventy-one' WHERE a=13615; UPDATE t2 SET c='sixty thousand eighty-nine' WHERE a=13616; UPDATE t2 SET c='thirty-three thousand one hundred seventy-five' WHERE a=13617; UPDATE t2 SET c='fifty-one thousand four hundred seventy-eight' WHERE a=13618; UPDATE t2 SET c='twenty-seven thousand eight hundred twenty-four' WHERE a=13619; UPDATE t2 SET c='fifty-nine thousand eight hundred four' WHERE a=13620; UPDATE t2 SET c='twenty-two thousand one hundred fifty-one' WHERE a=13621; UPDATE t2 SET c='eighty-five thousand three hundred thirty-one' WHERE a=13622; UPDATE t2 SET c='twenty-two thousand nine hundred three' WHERE a=13623; UPDATE t2 SET c='eighty-four thousand eight hundred fifty-two' WHERE a=13624; UPDATE t2 SET c='seventy-two thousand forty-seven' WHERE a=13625; UPDATE t2 SET c='eighty-four thousand nine hundred eight' WHERE a=13626; UPDATE t2 SET c='thirty-nine thousand two hundred forty-two' WHERE a=13627; UPDATE t2 SET c='twenty-three thousand seven hundred ten' WHERE a=13628; UPDATE t2 SET c='sixty-nine thousand four hundred thirty-one' WHERE a=13629; UPDATE t2 SET c='eighty-five thousand nine hundred forty' WHERE a=13630; UPDATE t2 SET c='five thousand six hundred fifty-three' WHERE a=13631; UPDATE t2 SET c='eighty-four thousand three hundred eighty-five' WHERE a=13632; UPDATE t2 SET c='eighty-four thousand seven hundred forty-five' WHERE a=13633; UPDATE t2 SET c='thirty-five thousand two hundred forty' WHERE a=13634; UPDATE t2 SET c='two thousand two hundred eighty-six' WHERE a=13635; UPDATE t2 SET c='seven thousand four' WHERE a=13636; UPDATE t2 SET c='seventy-four thousand seven hundred sixty-nine' WHERE a=13637; UPDATE t2 SET c='thirty-eight thousand six hundred twenty-one' WHERE a=13638; UPDATE t2 SET c='twenty-four thousand two hundred fifty-three' WHERE a=13639; UPDATE t2 SET c='forty-four thousand four hundred four' WHERE a=13640; UPDATE t2 SET c='four thousand five hundred sixty-two' WHERE a=13641; UPDATE t2 SET c='ninety-five thousand five hundred nine' WHERE a=13642; UPDATE t2 SET c='nineteen thousand six hundred forty-eight' WHERE a=13643; UPDATE t2 SET c='seventy-nine thousand one hundred sixteen' WHERE a=13644; UPDATE t2 SET c='eighteen thousand nine hundred ninety-one' WHERE a=13645; UPDATE t2 SET c='fifty-six thousand one hundred twenty-nine' WHERE a=13646; UPDATE t2 SET c='thirty-nine thousand nine hundred six' WHERE a=13647; UPDATE t2 SET c='fifty-two thousand nine hundred sixty-seven' WHERE a=13648; UPDATE t2 SET c='seventeen thousand three hundred fifty-four' WHERE a=13649; UPDATE t2 SET c='fifty-six thousand sixty-two' WHERE a=13650; UPDATE t2 SET c='twenty-eight thousand nine hundred twenty-five' WHERE a=13651; UPDATE t2 SET c='twenty-eight thousand seven hundred ninety-four' WHERE a=13652; UPDATE t2 SET c='fifty-one thousand three hundred twenty-five' WHERE a=13653; UPDATE t2 SET c='seventy-four thousand seven hundred forty-one' WHERE a=13654; UPDATE t2 SET c='fourteen thousand four hundred fifty-three' WHERE a=13655; UPDATE t2 SET c='sixty-six thousand seven hundred ninety-nine' WHERE a=13656; UPDATE t2 SET c='six thousand seven hundred forty-eight' WHERE a=13657; UPDATE t2 SET c='sixty-five thousand sixty-six' WHERE a=13658; UPDATE t2 SET c='sixty-eight thousand six hundred sixty-eight' WHERE a=13659; UPDATE t2 SET c='sixty-two thousand two hundred fifty-six' WHERE a=13660; UPDATE t2 SET c='fifty-three thousand six hundred seventeen' WHERE a=13661; UPDATE t2 SET c='fifty-seven thousand five hundred eighty-one' WHERE a=13662; UPDATE t2 SET c='eighteen thousand one hundred eighty-seven' WHERE a=13663; UPDATE t2 SET c='thirty-nine thousand nine hundred ninety-five' WHERE a=13664; UPDATE t2 SET c='seventy-nine thousand eighty-seven' WHERE a=13665; UPDATE t2 SET c='fifty-two thousand two hundred forty-one' WHERE a=13666; UPDATE t2 SET c='thirty-three thousand five hundred eighty-five' WHERE a=13667; UPDATE t2 SET c='thirty-three thousand four hundred eighty' WHERE a=13668; UPDATE t2 SET c='fifty-one thousand forty-five' WHERE a=13669; UPDATE t2 SET c='seven thousand seven hundred twenty-three' WHERE a=13670; UPDATE t2 SET c='thirty-eight thousand eight hundred seventy-five' WHERE a=13671; UPDATE t2 SET c='seventy-nine thousand eighteen' WHERE a=13672; UPDATE t2 SET c='five hundred seventy-three' WHERE a=13673; UPDATE t2 SET c='forty-two thousand nine hundred twenty-nine' WHERE a=13674; UPDATE t2 SET c='eighty-two thousand one hundred twenty-one' WHERE a=13675; UPDATE t2 SET c='sixty-five thousand six hundred fifty-one' WHERE a=13676; UPDATE t2 SET c='five thousand three hundred fifty-nine' WHERE a=13677; UPDATE t2 SET c='four hundred forty-five' WHERE a=13678; UPDATE t2 SET c='ninety-seven thousand nine hundred nineteen' WHERE a=13679; UPDATE t2 SET c='three thousand three hundred twenty-nine' WHERE a=13680; UPDATE t2 SET c='eighty-seven thousand five hundred twenty' WHERE a=13681; UPDATE t2 SET c='thirty-two thousand thirty-nine' WHERE a=13682; UPDATE t2 SET c='fifty thousand three hundred ninety-five' WHERE a=13683; UPDATE t2 SET c='eight thousand two hundred sixty-seven' WHERE a=13684; UPDATE t2 SET c='three thousand three hundred fifty-eight' WHERE a=13685; UPDATE t2 SET c='thirty-two thousand four hundred eighteen' WHERE a=13686; UPDATE t2 SET c='thirty-two thousand seven hundred eighty-six' WHERE a=13687; UPDATE t2 SET c='fourteen thousand two hundred twenty-two' WHERE a=13688; UPDATE t2 SET c='forty-nine thousand ninety-three' WHERE a=13689; UPDATE t2 SET c='forty-four thousand six hundred thirty-two' WHERE a=13690; UPDATE t2 SET c='forty-nine thousand nine hundred thirteen' WHERE a=13691; UPDATE t2 SET c='fifty-four thousand seven hundred forty-five' WHERE a=13692; UPDATE t2 SET c='twenty-four thousand eight hundred seventy-seven' WHERE a=13693; UPDATE t2 SET c='fifty-nine thousand five hundred forty-six' WHERE a=13694; UPDATE t2 SET c='fifty-five thousand nine hundred seventy-three' WHERE a=13695; UPDATE t2 SET c='sixty-three thousand two hundred fifty-four' WHERE a=13696; UPDATE t2 SET c='eighty-eight thousand nine hundred eighty' WHERE a=13697; UPDATE t2 SET c='twenty-six thousand five hundred twenty-six' WHERE a=13698; UPDATE t2 SET c='seven thousand five hundred four' WHERE a=13699; UPDATE t2 SET c='twelve thousand one hundred thirty-three' WHERE a=13700; UPDATE t2 SET c='thirty-three thousand eight' WHERE a=13701; UPDATE t2 SET c='thirty-three thousand seven hundred ninety-two' WHERE a=13702; UPDATE t2 SET c='fifty-seven thousand one hundred forty' WHERE a=13703; UPDATE t2 SET c='ninety-six thousand two hundred fourteen' WHERE a=13704; UPDATE t2 SET c='eighty-seven thousand two hundred thirty-nine' WHERE a=13705; UPDATE t2 SET c='seventy-four thousand one hundred thirty-three' WHERE a=13706; UPDATE t2 SET c='fifty-nine thousand three hundred fifteen' WHERE a=13707; UPDATE t2 SET c='fourteen thousand nine hundred thirty-four' WHERE a=13708; UPDATE t2 SET c='fifty-five thousand three hundred eighty-two' WHERE a=13709; UPDATE t2 SET c='twenty-two thousand nine hundred twenty-six' WHERE a=13710; UPDATE t2 SET c='eighty-one thousand sixty' WHERE a=13711; UPDATE t2 SET c='eighty-nine thousand six hundred forty-one' WHERE a=13712; UPDATE t2 SET c='forty-four thousand four hundred fifty-five' WHERE a=13713; UPDATE t2 SET c='thirty-eight thousand three hundred twenty-five' WHERE a=13714; UPDATE t2 SET c='eighty-five thousand five hundred seventy-two' WHERE a=13715; UPDATE t2 SET c='eighty-seven thousand eight hundred thirty-two' WHERE a=13716; UPDATE t2 SET c='seventy-six thousand seven hundred fifty-four' WHERE a=13717; UPDATE t2 SET c='ninety-four thousand eight hundred sixty-seven' WHERE a=13718; UPDATE t2 SET c='twenty-one thousand five hundred thirty-eight' WHERE a=13719; UPDATE t2 SET c='twelve thousand eight hundred three' WHERE a=13720; UPDATE t2 SET c='sixty-nine thousand two hundred ninety-six' WHERE a=13721; UPDATE t2 SET c='sixty-two thousand seven hundred ninety-nine' WHERE a=13722; UPDATE t2 SET c='nineteen thousand six hundred twenty-five' WHERE a=13723; UPDATE t2 SET c='fifty-four thousand five hundred sixty-two' WHERE a=13724; UPDATE t2 SET c='fifty-one thousand nine hundred ninety-six' WHERE a=13725; UPDATE t2 SET c='thirty-one thousand nine hundred thirteen' WHERE a=13726; UPDATE t2 SET c='thirty thousand five hundred fifty-six' WHERE a=13727; UPDATE t2 SET c='sixty-one thousand seven hundred fifty-four' WHERE a=13728; UPDATE t2 SET c='twenty-four thousand three hundred forty-six' WHERE a=13729; UPDATE t2 SET c='thirty-one thousand six hundred four' WHERE a=13730; UPDATE t2 SET c='ten thousand eighty' WHERE a=13731; UPDATE t2 SET c='seven thousand three hundred fifty-seven' WHERE a=13732; UPDATE t2 SET c='thirty-five thousand sixty-two' WHERE a=13733; UPDATE t2 SET c='eighteen thousand six hundred twenty-nine' WHERE a=13734; UPDATE t2 SET c='twenty-seven thousand four hundred forty-four' WHERE a=13735; UPDATE t2 SET c='thirty-three thousand eleven' WHERE a=13736; UPDATE t2 SET c='eighty thousand seven hundred thirty-three' WHERE a=13737; UPDATE t2 SET c='fifty-five thousand three hundred thirty-seven' WHERE a=13738; UPDATE t2 SET c='twenty-six thousand two hundred nineteen' WHERE a=13739; UPDATE t2 SET c='sixty-eight thousand eight hundred twenty-nine' WHERE a=13740; UPDATE t2 SET c='eighty-five thousand three hundred eighty-four' WHERE a=13741; UPDATE t2 SET c='sixty-seven thousand five hundred sixty-seven' WHERE a=13742; UPDATE t2 SET c='seven thousand four hundred seventy-four' WHERE a=13743; UPDATE t2 SET c='forty-two thousand six hundred ninety-eight' WHERE a=13744; UPDATE t2 SET c='sixty-nine thousand two hundred eighty-eight' WHERE a=13745; UPDATE t2 SET c='seventy-seven thousand ninety-eight' WHERE a=13746; UPDATE t2 SET c='seventy-eight thousand seven hundred thirty-nine' WHERE a=13747; UPDATE t2 SET c='ninety-one thousand six hundred fifty-one' WHERE a=13748; UPDATE t2 SET c='sixty-one thousand one hundred thirty-seven' WHERE a=13749; UPDATE t2 SET c='sixteen thousand nine hundred forty-one' WHERE a=13750; UPDATE t2 SET c='nine thousand two hundred ninety-six' WHERE a=13751; UPDATE t2 SET c='forty-two thousand three hundred twenty-nine' WHERE a=13752; UPDATE t2 SET c='five thousand two hundred sixty-five' WHERE a=13753; UPDATE t2 SET c='fifty-two thousand five hundred ninety-two' WHERE a=13754; UPDATE t2 SET c='forty-two thousand two hundred five' WHERE a=13755; UPDATE t2 SET c='ninety-two thousand six hundred sixty-three' WHERE a=13756; UPDATE t2 SET c='nine thousand nine hundred eight' WHERE a=13757; UPDATE t2 SET c='eighty-seven thousand one hundred eighty-seven' WHERE a=13758; UPDATE t2 SET c='four thousand eight hundred seventy-four' WHERE a=13759; UPDATE t2 SET c='ninety-three thousand one hundred sixty-five' WHERE a=13760; UPDATE t2 SET c='forty-two thousand seven hundred sixty-seven' WHERE a=13761; UPDATE t2 SET c='twenty-one thousand three hundred twenty-four' WHERE a=13762; UPDATE t2 SET c='ninety-eight thousand four hundred thirteen' WHERE a=13763; UPDATE t2 SET c='twenty-nine thousand eighty-eight' WHERE a=13764; UPDATE t2 SET c='eleven thousand eight hundred sixteen' WHERE a=13765; UPDATE t2 SET c='thirty-six thousand one hundred thirty-three' WHERE a=13766; UPDATE t2 SET c='ten thousand nine hundred sixty-three' WHERE a=13767; UPDATE t2 SET c='fifty-eight thousand two hundred sixty-one' WHERE a=13768; UPDATE t2 SET c='two thousand eight hundred seventy-two' WHERE a=13769; UPDATE t2 SET c='sixty thousand one hundred three' WHERE a=13770; UPDATE t2 SET c='eighty-six thousand eight hundred fifty-four' WHERE a=13771; UPDATE t2 SET c='thirty-four thousand fifty-one' WHERE a=13772; UPDATE t2 SET c='sixteen thousand nine hundred sixteen' WHERE a=13773; UPDATE t2 SET c='one thousand three hundred nineteen' WHERE a=13774; UPDATE t2 SET c='twenty-four thousand five hundred ninety-two' WHERE a=13775; UPDATE t2 SET c='twenty-seven thousand six hundred eighty-four' WHERE a=13776; UPDATE t2 SET c='one thousand nine hundred eighty-eight' WHERE a=13777; UPDATE t2 SET c='seven thousand two hundred thirty-six' WHERE a=13778; UPDATE t2 SET c='eighty-eight thousand three hundred twenty-seven' WHERE a=13779; UPDATE t2 SET c='sixty-six thousand seventeen' WHERE a=13780; UPDATE t2 SET c='ninety-seven thousand four hundred sixty-four' WHERE a=13781; UPDATE t2 SET c='twelve thousand eight hundred twenty-six' WHERE a=13782; UPDATE t2 SET c='forty-seven thousand three hundred eleven' WHERE a=13783; UPDATE t2 SET c='ninety-nine thousand seven hundred twenty' WHERE a=13784; UPDATE t2 SET c='twenty-five thousand one hundred fifty-eight' WHERE a=13785; UPDATE t2 SET c='thirty-five thousand four hundred seven' WHERE a=13786; UPDATE t2 SET c='nine thousand three hundred ninety-five' WHERE a=13787; UPDATE t2 SET c='eighty-five thousand four hundred sixty-five' WHERE a=13788; UPDATE t2 SET c='twenty-eight thousand nine hundred thirty-two' WHERE a=13789; UPDATE t2 SET c='eighty-eight thousand three hundred fifty-two' WHERE a=13790; UPDATE t2 SET c='seventy-eight thousand five hundred seven' WHERE a=13791; UPDATE t2 SET c='forty-one thousand five hundred fifty-seven' WHERE a=13792; UPDATE t2 SET c='four thousand seven hundred forty-three' WHERE a=13793; UPDATE t2 SET c='seventy-two thousand five hundred forty-nine' WHERE a=13794; UPDATE t2 SET c='twenty-one thousand nine hundred two' WHERE a=13795; UPDATE t2 SET c='eighty-four thousand two hundred eighty-four' WHERE a=13796; UPDATE t2 SET c='thirty-five thousand nine hundred fifteen' WHERE a=13797; UPDATE t2 SET c='sixty-two thousand nine hundred seven' WHERE a=13798; UPDATE t2 SET c='eighty-eight thousand seven hundred ninety-five' WHERE a=13799; UPDATE t2 SET c='six hundred thirty-one' WHERE a=13800; UPDATE t2 SET c='fifty-six thousand six hundred sixty-nine' WHERE a=13801; UPDATE t2 SET c='seventy-three thousand five hundred sixty-five' WHERE a=13802; UPDATE t2 SET c='thirty-four thousand fifty-six' WHERE a=13803; UPDATE t2 SET c='ninety-four thousand four hundred eleven' WHERE a=13804; UPDATE t2 SET c='forty thousand six hundred ninety-five' WHERE a=13805; UPDATE t2 SET c='ninety-four thousand three hundred twenty-four' WHERE a=13806; UPDATE t2 SET c='fifty-two thousand seven hundred ninety-two' WHERE a=13807; UPDATE t2 SET c='sixty-five thousand five hundred eighty-nine' WHERE a=13808; UPDATE t2 SET c='nine thousand seven hundred ninety-five' WHERE a=13809; UPDATE t2 SET c='eighty-five thousand seven hundred six' WHERE a=13810; UPDATE t2 SET c='seventeen thousand four hundred twelve' WHERE a=13811; UPDATE t2 SET c='eighty-seven thousand one hundred forty' WHERE a=13812; UPDATE t2 SET c='sixty-seven thousand four hundred ninety-five' WHERE a=13813; UPDATE t2 SET c='twelve thousand four hundred twenty-four' WHERE a=13814; UPDATE t2 SET c='seven thousand one hundred seventy-two' WHERE a=13815; UPDATE t2 SET c='forty-five thousand six hundred forty-seven' WHERE a=13816; UPDATE t2 SET c='thirty thousand four hundred thirty-six' WHERE a=13817; UPDATE t2 SET c='sixty-one thousand four hundred fourteen' WHERE a=13818; UPDATE t2 SET c='forty-six thousand three hundred seven' WHERE a=13819; UPDATE t2 SET c='sixty-eight thousand ninety-eight' WHERE a=13820; UPDATE t2 SET c='seventeen thousand seven hundred forty-eight' WHERE a=13821; UPDATE t2 SET c='ninety-seven thousand eight hundred twenty-nine' WHERE a=13822; UPDATE t2 SET c='sixty-two thousand three hundred seventy-two' WHERE a=13823; UPDATE t2 SET c='thirty-five thousand two hundred thirty-five' WHERE a=13824; UPDATE t2 SET c='seventy-eight thousand thirty-nine' WHERE a=13825; UPDATE t2 SET c='seventy-four thousand two hundred fifty-three' WHERE a=13826; UPDATE t2 SET c='seventy thousand eight hundred twenty-four' WHERE a=13827; UPDATE t2 SET c='thirty thousand two hundred forty-five' WHERE a=13828; UPDATE t2 SET c='eighty-six thousand one hundred thirty-six' WHERE a=13829; UPDATE t2 SET c='five thousand four hundred sixty-seven' WHERE a=13830; UPDATE t2 SET c='fifty-three thousand seventy-three' WHERE a=13831; UPDATE t2 SET c='one thousand nine hundred thirty-one' WHERE a=13832; UPDATE t2 SET c='sixty-seven thousand three hundred fifty-five' WHERE a=13833; UPDATE t2 SET c='eighty-eight thousand three hundred sixty-five' WHERE a=13834; UPDATE t2 SET c='forty-two thousand seven hundred eleven' WHERE a=13835; UPDATE t2 SET c='fourteen thousand five hundred ten' WHERE a=13836; UPDATE t2 SET c='thirty thousand five hundred eighty-six' WHERE a=13837; UPDATE t2 SET c='sixty-one thousand eight hundred thirty-nine' WHERE a=13838; UPDATE t2 SET c='twenty-four thousand six hundred sixty' WHERE a=13839; UPDATE t2 SET c='twenty thousand two hundred sixty-one' WHERE a=13840; UPDATE t2 SET c='eighty-seven thousand eight hundred thirty' WHERE a=13841; UPDATE t2 SET c='eighty-three thousand four hundred ninety-one' WHERE a=13842; UPDATE t2 SET c='fifty-six thousand four hundred twenty-seven' WHERE a=13843; UPDATE t2 SET c='fifty-eight thousand three hundred thirty-six' WHERE a=13844; UPDATE t2 SET c='eighty-three thousand nine hundred six' WHERE a=13845; UPDATE t2 SET c='sixteen thousand five hundred fifty-four' WHERE a=13846; UPDATE t2 SET c='ninety-eight thousand eight hundred fourteen' WHERE a=13847; UPDATE t2 SET c='forty-three thousand one hundred eighty' WHERE a=13848; UPDATE t2 SET c='eighty-one thousand one hundred seventeen' WHERE a=13849; UPDATE t2 SET c='twenty-eight thousand eight hundred nine' WHERE a=13850; UPDATE t2 SET c='seventy-three thousand seventy-one' WHERE a=13851; UPDATE t2 SET c='seventy-three thousand one hundred ninety-three' WHERE a=13852; UPDATE t2 SET c='sixty-five thousand three hundred twelve' WHERE a=13853; UPDATE t2 SET c='three thousand eight hundred nineteen' WHERE a=13854; UPDATE t2 SET c='forty-nine thousand one hundred sixteen' WHERE a=13855; UPDATE t2 SET c='twenty-one thousand eight hundred ninety-three' WHERE a=13856; UPDATE t2 SET c='ninety-three thousand eight hundred fifty-three' WHERE a=13857; UPDATE t2 SET c='ninety-one thousand one hundred one' WHERE a=13858; UPDATE t2 SET c='seventy thousand seven hundred forty-six' WHERE a=13859; UPDATE t2 SET c='seventy-two thousand six hundred eighty-three' WHERE a=13860; UPDATE t2 SET c='sixty-two thousand four hundred ninety-five' WHERE a=13861; UPDATE t2 SET c='forty-five thousand one hundred three' WHERE a=13862; UPDATE t2 SET c='sixteen thousand four hundred sixty-six' WHERE a=13863; UPDATE t2 SET c='seventy-one thousand twenty' WHERE a=13864; UPDATE t2 SET c='thirty-six thousand one hundred thirty-seven' WHERE a=13865; UPDATE t2 SET c='forty thousand ninety' WHERE a=13866; UPDATE t2 SET c='twenty-two thousand six hundred forty-one' WHERE a=13867; UPDATE t2 SET c='forty-five thousand five hundred forty-three' WHERE a=13868; UPDATE t2 SET c='forty-eight thousand six hundred seventy-eight' WHERE a=13869; UPDATE t2 SET c='fourteen thousand four hundred eighty-four' WHERE a=13870; UPDATE t2 SET c='twenty-one thousand eight hundred twenty-nine' WHERE a=13871; UPDATE t2 SET c='seventy-five thousand eight hundred eighty-nine' WHERE a=13872; UPDATE t2 SET c='fifty-six thousand nine hundred thirty-eight' WHERE a=13873; UPDATE t2 SET c='ninety-eight thousand nine hundred fifty-two' WHERE a=13874; UPDATE t2 SET c='fifty-one thousand eight hundred fifty-six' WHERE a=13875; UPDATE t2 SET c='twenty-one thousand five hundred twenty-six' WHERE a=13876; UPDATE t2 SET c='twenty-one thousand seven hundred fifty-two' WHERE a=13877; UPDATE t2 SET c='thirty-one thousand nine hundred fifty-four' WHERE a=13878; UPDATE t2 SET c='two thousand seven hundred three' WHERE a=13879; UPDATE t2 SET c='twenty thousand nine hundred ninety-five' WHERE a=13880; UPDATE t2 SET c='twenty-three thousand seven hundred ninety-three' WHERE a=13881; UPDATE t2 SET c='thirty-six thousand four hundred sixty-eight' WHERE a=13882; UPDATE t2 SET c='sixty-one thousand five hundred eighty-nine' WHERE a=13883; UPDATE t2 SET c='eighty-one thousand one hundred thirty-five' WHERE a=13884; UPDATE t2 SET c='thirty-eight thousand eight hundred sixty-three' WHERE a=13885; UPDATE t2 SET c='forty-seven thousand four hundred five' WHERE a=13886; UPDATE t2 SET c='thirty-six thousand four hundred ninety-one' WHERE a=13887; UPDATE t2 SET c='twenty-three thousand two hundred sixty-four' WHERE a=13888; UPDATE t2 SET c='fifty-seven thousand six hundred eighty-seven' WHERE a=13889; UPDATE t2 SET c='seventy-nine thousand three hundred sixty-two' WHERE a=13890; UPDATE t2 SET c='eighty-five thousand one hundred sixty-seven' WHERE a=13891; UPDATE t2 SET c='twelve thousand two hundred thirty-nine' WHERE a=13892; UPDATE t2 SET c='sixteen thousand four hundred eighty-one' WHERE a=13893; UPDATE t2 SET c='seventy-nine thousand six hundred fifty-eight' WHERE a=13894; UPDATE t2 SET c='fifty-four thousand four hundred twelve' WHERE a=13895; UPDATE t2 SET c='eighty-five thousand eight hundred seventy-three' WHERE a=13896; UPDATE t2 SET c='twenty-nine thousand one hundred eighty-six' WHERE a=13897; UPDATE t2 SET c='thirty-eight thousand two hundred fifty-two' WHERE a=13898; UPDATE t2 SET c='ten thousand four hundred sixty-eight' WHERE a=13899; UPDATE t2 SET c='ten thousand six hundred eighty' WHERE a=13900; UPDATE t2 SET c='thirteen thousand seven hundred sixty-six' WHERE a=13901; UPDATE t2 SET c='seventeen thousand eight hundred ninety-three' WHERE a=13902; UPDATE t2 SET c='seventy-three thousand fifty-five' WHERE a=13903; UPDATE t2 SET c='fourteen thousand four hundred nine' WHERE a=13904; UPDATE t2 SET c='two thousand nine hundred ninety' WHERE a=13905; UPDATE t2 SET c='ninety-seven thousand five hundred thirty' WHERE a=13906; UPDATE t2 SET c='eighty-six thousand sixty-eight' WHERE a=13907; UPDATE t2 SET c='sixty-eight thousand sixty-nine' WHERE a=13908; UPDATE t2 SET c='twenty-three thousand three hundred sixty-one' WHERE a=13909; UPDATE t2 SET c='thirty-six thousand sixty-seven' WHERE a=13910; UPDATE t2 SET c='fourteen thousand five hundred eighty-two' WHERE a=13911; UPDATE t2 SET c='sixty-six thousand three hundred eighty-three' WHERE a=13912; UPDATE t2 SET c='fifty-eight thousand two hundred' WHERE a=13913; UPDATE t2 SET c='twelve thousand two hundred seventeen' WHERE a=13914; UPDATE t2 SET c='forty-three thousand seven hundred twenty-six' WHERE a=13915; UPDATE t2 SET c='twenty-four thousand twelve' WHERE a=13916; UPDATE t2 SET c='thirty-nine thousand seven hundred seventy-seven' WHERE a=13917; UPDATE t2 SET c='nine thousand eight hundred thirty-six' WHERE a=13918; UPDATE t2 SET c='ninety thousand four hundred seventy-two' WHERE a=13919; UPDATE t2 SET c='twenty-five thousand one hundred sixty-four' WHERE a=13920; UPDATE t2 SET c='twenty-nine thousand five hundred forty-six' WHERE a=13921; UPDATE t2 SET c='forty-four thousand nine hundred thirty' WHERE a=13922; UPDATE t2 SET c='thirty-two thousand seven hundred ninety-four' WHERE a=13923; UPDATE t2 SET c='eighty-seven thousand nine hundred sixty-two' WHERE a=13924; UPDATE t2 SET c='thirty-four thousand three hundred seven' WHERE a=13925; UPDATE t2 SET c='seventy-four thousand six hundred twenty-nine' WHERE a=13926; UPDATE t2 SET c='five thousand six hundred seventy-four' WHERE a=13927; UPDATE t2 SET c='seventeen thousand five hundred fifty-six' WHERE a=13928; UPDATE t2 SET c='eight thousand two hundred thirty-five' WHERE a=13929; UPDATE t2 SET c='twenty-six thousand six hundred fifty-eight' WHERE a=13930; UPDATE t2 SET c='fifty-seven thousand four' WHERE a=13931; UPDATE t2 SET c='forty-five thousand two hundred sixty-seven' WHERE a=13932; UPDATE t2 SET c='thirty-eight thousand thirty-five' WHERE a=13933; UPDATE t2 SET c='fifty-two thousand five hundred sixty-three' WHERE a=13934; UPDATE t2 SET c='thirty-four thousand five hundred twelve' WHERE a=13935; UPDATE t2 SET c='sixty-seven thousand nine hundred forty-two' WHERE a=13936; UPDATE t2 SET c='ninety thousand eight hundred forty-one' WHERE a=13937; UPDATE t2 SET c='thirty-four thousand two hundred forty' WHERE a=13938; UPDATE t2 SET c='forty-six thousand nine hundred thirty-four' WHERE a=13939; UPDATE t2 SET c='eighty-eight thousand seven hundred fifty-three' WHERE a=13940; UPDATE t2 SET c='three thousand three hundred eighty-eight' WHERE a=13941; UPDATE t2 SET c='sixteen thousand five hundred fifty-four' WHERE a=13942; UPDATE t2 SET c='fifty-nine thousand two hundred eighty-one' WHERE a=13943; UPDATE t2 SET c='seven thousand five hundred twenty-one' WHERE a=13944; UPDATE t2 SET c='eight hundred forty-nine' WHERE a=13945; UPDATE t2 SET c='thirty-four thousand one hundred seventy-nine' WHERE a=13946; UPDATE t2 SET c='thirty thousand eight hundred forty-four' WHERE a=13947; UPDATE t2 SET c='nine thousand six hundred forty-two' WHERE a=13948; UPDATE t2 SET c='sixty-one thousand five hundred fifty-two' WHERE a=13949; UPDATE t2 SET c='forty-one thousand eighty-nine' WHERE a=13950; UPDATE t2 SET c='seventy-two thousand ninety-six' WHERE a=13951; UPDATE t2 SET c='sixty-eight thousand nineteen' WHERE a=13952; UPDATE t2 SET c='five thousand nine hundred ninety-two' WHERE a=13953; UPDATE t2 SET c='thirteen thousand one hundred sixty-four' WHERE a=13954; UPDATE t2 SET c='thirty-one thousand five hundred seven' WHERE a=13955; UPDATE t2 SET c='forty-one thousand eight hundred sixty-nine' WHERE a=13956; UPDATE t2 SET c='fifty-one thousand four hundred seventeen' WHERE a=13957; UPDATE t2 SET c='eighty thousand seven hundred two' WHERE a=13958; UPDATE t2 SET c='thirty-five thousand seven hundred fifty-six' WHERE a=13959; UPDATE t2 SET c='sixty-nine thousand nine hundred seventy-nine' WHERE a=13960; UPDATE t2 SET c='six thousand eight hundred forty-eight' WHERE a=13961; UPDATE t2 SET c='eight thousand two hundred eighty-three' WHERE a=13962; UPDATE t2 SET c='sixty-six thousand five hundred fifty-three' WHERE a=13963; UPDATE t2 SET c='twenty-two thousand three hundred forty-one' WHERE a=13964; UPDATE t2 SET c='thirty-five thousand nine hundred' WHERE a=13965; UPDATE t2 SET c='thirty-three thousand seven hundred seventy-five' WHERE a=13966; UPDATE t2 SET c='sixty-eight thousand three hundred thirty-nine' WHERE a=13967; UPDATE t2 SET c='fifty thousand nine hundred fifty-six' WHERE a=13968; UPDATE t2 SET c='ninety-five thousand six hundred ninety-six' WHERE a=13969; UPDATE t2 SET c='seventy-eight thousand eight hundred ten' WHERE a=13970; UPDATE t2 SET c='twenty-three thousand six hundred forty-nine' WHERE a=13971; UPDATE t2 SET c='six thousand two hundred twenty-four' WHERE a=13972; UPDATE t2 SET c='twenty thousand two hundred fifty-one' WHERE a=13973; UPDATE t2 SET c='fifty-six thousand eighty-three' WHERE a=13974; UPDATE t2 SET c='eight thousand three hundred twenty-seven' WHERE a=13975; UPDATE t2 SET c='twenty-five thousand seven hundred eighty-five' WHERE a=13976; UPDATE t2 SET c='thirty-one thousand five hundred eighty-six' WHERE a=13977; UPDATE t2 SET c='ninety-seven thousand five hundred fifty-eight' WHERE a=13978; UPDATE t2 SET c='twenty-three thousand nine hundred eighty-three' WHERE a=13979; UPDATE t2 SET c='eleven thousand seven hundred twenty-five' WHERE a=13980; UPDATE t2 SET c='forty-eight thousand five hundred eighty-three' WHERE a=13981; UPDATE t2 SET c='eighty thousand sixty-two' WHERE a=13982; UPDATE t2 SET c='twelve thousand four hundred twenty-nine' WHERE a=13983; UPDATE t2 SET c='seventy-three thousand five hundred seventy-seven' WHERE a=13984; UPDATE t2 SET c='ninety-six thousand twenty-five' WHERE a=13985; UPDATE t2 SET c='forty-five thousand eight hundred seventy-eight' WHERE a=13986; UPDATE t2 SET c='sixty-eight thousand nine hundred thirty-six' WHERE a=13987; UPDATE t2 SET c='ninety-seven thousand twenty-six' WHERE a=13988; UPDATE t2 SET c='two thousand six hundred ninety-five' WHERE a=13989; UPDATE t2 SET c='seventy-nine thousand two hundred thirty-six' WHERE a=13990; UPDATE t2 SET c='seventy-seven thousand one hundred twenty-two' WHERE a=13991; UPDATE t2 SET c='thirty-eight thousand fifty-seven' WHERE a=13992; UPDATE t2 SET c='forty-five thousand one hundred fourteen' WHERE a=13993; UPDATE t2 SET c='fifty-two thousand seven hundred eighty-eight' WHERE a=13994; UPDATE t2 SET c='twenty-nine thousand three hundred eighty-eight' WHERE a=13995; UPDATE t2 SET c='eighty-one thousand two hundred twenty-six' WHERE a=13996; UPDATE t2 SET c='seventy-six thousand fifty-nine' WHERE a=13997; UPDATE t2 SET c='ninety-three thousand two hundred twenty-eight' WHERE a=13998; UPDATE t2 SET c='twenty-nine thousand six hundred ninety-nine' WHERE a=13999; UPDATE t2 SET c='seventy-four thousand nine hundred sixty-three' WHERE a=14000; UPDATE t2 SET c='thirty thousand eight hundred ninety-one' WHERE a=14001; UPDATE t2 SET c='sixty thousand eight hundred sixty-eight' WHERE a=14002; UPDATE t2 SET c='ninety thousand eight hundred sixty-one' WHERE a=14003; UPDATE t2 SET c='ninety-eight thousand fifty-four' WHERE a=14004; UPDATE t2 SET c='forty-four thousand three hundred twenty-seven' WHERE a=14005; UPDATE t2 SET c='eighty-eight thousand nine hundred fifty-three' WHERE a=14006; UPDATE t2 SET c='fifty-eight thousand ninety-four' WHERE a=14007; UPDATE t2 SET c='eighty-six thousand five hundred one' WHERE a=14008; UPDATE t2 SET c='sixty thousand twenty-five' WHERE a=14009; UPDATE t2 SET c='ninety-four thousand eight hundred seventy-one' WHERE a=14010; UPDATE t2 SET c='ninety-seven thousand three hundred eighty-four' WHERE a=14011; UPDATE t2 SET c='twenty thousand one hundred forty-five' WHERE a=14012; UPDATE t2 SET c='fifty-four thousand two hundred sixty-eight' WHERE a=14013; UPDATE t2 SET c='twenty thousand three hundred fifteen' WHERE a=14014; UPDATE t2 SET c='twenty-five thousand seven hundred fifty-seven' WHERE a=14015; UPDATE t2 SET c='fifty-eight thousand four hundred fifty' WHERE a=14016; UPDATE t2 SET c='fifty thousand seven hundred sixty-seven' WHERE a=14017; UPDATE t2 SET c='twenty-three thousand eight hundred seventy' WHERE a=14018; UPDATE t2 SET c='fifty-four thousand six hundred twenty' WHERE a=14019; UPDATE t2 SET c='eighty-four thousand nine hundred forty' WHERE a=14020; UPDATE t2 SET c='thirty-seven thousand four hundred ninety-nine' WHERE a=14021; UPDATE t2 SET c='sixty-two thousand nine hundred fifty-two' WHERE a=14022; UPDATE t2 SET c='ten thousand nine hundred thirty-seven' WHERE a=14023; UPDATE t2 SET c='seventy-two thousand five hundred twenty-two' WHERE a=14024; UPDATE t2 SET c='seventy-four thousand nine hundred forty-nine' WHERE a=14025; UPDATE t2 SET c='nineteen thousand three hundred ninety-seven' WHERE a=14026; UPDATE t2 SET c='seventy-two thousand seven hundred eighty-five' WHERE a=14027; UPDATE t2 SET c='sixteen thousand forty-eight' WHERE a=14028; UPDATE t2 SET c='eighty-nine thousand five hundred ninety-five' WHERE a=14029; UPDATE t2 SET c='nine thousand ten' WHERE a=14030; UPDATE t2 SET c='fifty-one thousand four hundred sixty-six' WHERE a=14031; UPDATE t2 SET c='fifty-six thousand six hundred seven' WHERE a=14032; UPDATE t2 SET c='twelve thousand nine hundred thirty-five' WHERE a=14033; UPDATE t2 SET c='forty-five thousand one hundred twenty-one' WHERE a=14034; UPDATE t2 SET c='eighty thousand six hundred fifty-eight' WHERE a=14035; UPDATE t2 SET c='seventy thousand four hundred eighteen' WHERE a=14036; UPDATE t2 SET c='twenty-eight thousand ninety-eight' WHERE a=14037; UPDATE t2 SET c='nineteen thousand twenty-four' WHERE a=14038; UPDATE t2 SET c='sixty thousand three hundred fifty-seven' WHERE a=14039; UPDATE t2 SET c='eighty-one thousand six hundred twenty-five' WHERE a=14040; UPDATE t2 SET c='eleven thousand six hundred twenty-three' WHERE a=14041; UPDATE t2 SET c='forty-one thousand eighty-nine' WHERE a=14042; UPDATE t2 SET c='thirty-one thousand six hundred nine' WHERE a=14043; UPDATE t2 SET c='eighty-four thousand five hundred twenty' WHERE a=14044; UPDATE t2 SET c='nineteen thousand eight hundred eighty-six' WHERE a=14045; UPDATE t2 SET c='seventy-six thousand nine hundred twenty-eight' WHERE a=14046; UPDATE t2 SET c='seventy-six thousand nine hundred five' WHERE a=14047; UPDATE t2 SET c='seventy-six thousand one hundred fifty-nine' WHERE a=14048; UPDATE t2 SET c='eighty-one thousand six hundred twenty' WHERE a=14049; UPDATE t2 SET c='twenty-one thousand sixty-four' WHERE a=14050; UPDATE t2 SET c='ninety-four thousand one hundred twenty-seven' WHERE a=14051; UPDATE t2 SET c='six thousand two hundred thirty' WHERE a=14052; UPDATE t2 SET c='fifty-five thousand seventy-three' WHERE a=14053; UPDATE t2 SET c='four thousand eight hundred eighty-five' WHERE a=14054; UPDATE t2 SET c='fifty-four thousand three hundred eighteen' WHERE a=14055; UPDATE t2 SET c='ninety thousand one hundred ninety-three' WHERE a=14056; UPDATE t2 SET c='thirty-two thousand one hundred eighty-six' WHERE a=14057; UPDATE t2 SET c='forty-seven thousand one hundred forty-one' WHERE a=14058; UPDATE t2 SET c='eight thousand one hundred twenty-four' WHERE a=14059; UPDATE t2 SET c='thirty-eight thousand twelve' WHERE a=14060; UPDATE t2 SET c='fifty-eight thousand two hundred seventy-nine' WHERE a=14061; UPDATE t2 SET c='one thousand nine hundred thirty-two' WHERE a=14062; UPDATE t2 SET c='ninety-four thousand six hundred thirty-seven' WHERE a=14063; UPDATE t2 SET c='fifty thousand one hundred one' WHERE a=14064; UPDATE t2 SET c='two thousand eight hundred forty-three' WHERE a=14065; UPDATE t2 SET c='thirty-eight thousand two hundred fifty-eight' WHERE a=14066; UPDATE t2 SET c='fifty-nine thousand five hundred' WHERE a=14067; UPDATE t2 SET c='eighty-five thousand five hundred ninety-nine' WHERE a=14068; UPDATE t2 SET c='nine thousand five hundred eighty-four' WHERE a=14069; UPDATE t2 SET c='seventy-two thousand sixteen' WHERE a=14070; UPDATE t2 SET c='thirty-seven thousand one hundred ninety-eight' WHERE a=14071; UPDATE t2 SET c='two thousand seven hundred sixty-four' WHERE a=14072; UPDATE t2 SET c='thirty-four thousand ninety-nine' WHERE a=14073; UPDATE t2 SET c='nineteen thousand four hundred sixty-one' WHERE a=14074; UPDATE t2 SET c='fifty-two thousand nine hundred eleven' WHERE a=14075; UPDATE t2 SET c='thirty-two thousand one hundred five' WHERE a=14076; UPDATE t2 SET c='sixty-two thousand six' WHERE a=14077; UPDATE t2 SET c='seventy-four thousand five hundred fifty' WHERE a=14078; UPDATE t2 SET c='sixty-two thousand eight hundred seventy-eight' WHERE a=14079; UPDATE t2 SET c='eighty-five thousand one hundred seventy-three' WHERE a=14080; UPDATE t2 SET c='twenty thousand eleven' WHERE a=14081; UPDATE t2 SET c='thirty-five thousand six hundred forty-two' WHERE a=14082; UPDATE t2 SET c='ninety-nine thousand eight hundred eighty-five' WHERE a=14083; UPDATE t2 SET c='ninety-two thousand forty' WHERE a=14084; UPDATE t2 SET c='sixty-three thousand six hundred fifty-four' WHERE a=14085; UPDATE t2 SET c='eleven thousand three hundred forty-nine' WHERE a=14086; UPDATE t2 SET c='four thousand two hundred sixty-eight' WHERE a=14087; UPDATE t2 SET c='twenty-three thousand seven hundred seventy-six' WHERE a=14088; UPDATE t2 SET c='thirty-one thousand twenty-seven' WHERE a=14089; UPDATE t2 SET c='ninety-four thousand nine hundred seventy-three' WHERE a=14090; UPDATE t2 SET c='twenty-one thousand five hundred eighty-seven' WHERE a=14091; UPDATE t2 SET c='thirty-four thousand one hundred forty-four' WHERE a=14092; UPDATE t2 SET c='twenty-six thousand seven hundred five' WHERE a=14093; UPDATE t2 SET c='seventeen thousand three hundred four' WHERE a=14094; UPDATE t2 SET c='eighty-one thousand three hundred ninety-eight' WHERE a=14095; UPDATE t2 SET c='fifty-two thousand four hundred eighty-nine' WHERE a=14096; UPDATE t2 SET c='nine thousand seven hundred twenty-four' WHERE a=14097; UPDATE t2 SET c='ninety-three thousand eight hundred thirty-seven' WHERE a=14098; UPDATE t2 SET c='twenty-two thousand one hundred seventy-one' WHERE a=14099; UPDATE t2 SET c='thirty thousand seven hundred ninety-one' WHERE a=14100; UPDATE t2 SET c='three thousand seven hundred fifty-two' WHERE a=14101; UPDATE t2 SET c='three hundred seventy-two' WHERE a=14102; UPDATE t2 SET c='seventy thousand one hundred forty-nine' WHERE a=14103; UPDATE t2 SET c='forty-seven thousand nine hundred twenty-three' WHERE a=14104; UPDATE t2 SET c='fifty-two thousand seven hundred thirty-eight' WHERE a=14105; UPDATE t2 SET c='fifty-seven thousand seven hundred twenty-four' WHERE a=14106; UPDATE t2 SET c='ninety-one thousand five hundred thirty-nine' WHERE a=14107; UPDATE t2 SET c='sixty-one thousand five hundred sixty-six' WHERE a=14108; UPDATE t2 SET c='seventy-one thousand nine hundred four' WHERE a=14109; UPDATE t2 SET c='thirty-six thousand six hundred fifteen' WHERE a=14110; UPDATE t2 SET c='fifteen thousand six hundred twenty-nine' WHERE a=14111; UPDATE t2 SET c='eighty-nine thousand six hundred five' WHERE a=14112; UPDATE t2 SET c='ninety-five thousand seven hundred thirty-seven' WHERE a=14113; UPDATE t2 SET c='eighty-seven thousand three hundred ninety-three' WHERE a=14114; UPDATE t2 SET c='forty-seven thousand eighty-six' WHERE a=14115; UPDATE t2 SET c='forty-two thousand twenty-two' WHERE a=14116; UPDATE t2 SET c='seventeen thousand three hundred thirty-five' WHERE a=14117; UPDATE t2 SET c='ninety-seven thousand thirty' WHERE a=14118; UPDATE t2 SET c='seventeen thousand eight hundred sixty-nine' WHERE a=14119; UPDATE t2 SET c='thirty-five thousand seven hundred forty-eight' WHERE a=14120; UPDATE t2 SET c='fifty-one thousand five hundred eighty' WHERE a=14121; UPDATE t2 SET c='seventy-one thousand nine hundred fifty-nine' WHERE a=14122; UPDATE t2 SET c='seven thousand nine hundred fifty' WHERE a=14123; UPDATE t2 SET c='eighty-two thousand seven hundred seventy-five' WHERE a=14124; UPDATE t2 SET c='thirty-five thousand one hundred ninety-seven' WHERE a=14125; UPDATE t2 SET c='seventeen thousand five hundred sixty' WHERE a=14126; UPDATE t2 SET c='sixty-two thousand two hundred thirty-seven' WHERE a=14127; UPDATE t2 SET c='forty-nine thousand six hundred sixty-three' WHERE a=14128; UPDATE t2 SET c='forty-eight thousand four hundred three' WHERE a=14129; UPDATE t2 SET c='sixty thousand eight hundred forty-one' WHERE a=14130; UPDATE t2 SET c='eighty-eight thousand five hundred sixty-six' WHERE a=14131; UPDATE t2 SET c='forty-eight thousand five hundred thirty-four' WHERE a=14132; UPDATE t2 SET c='sixty-seven thousand three hundred sixty' WHERE a=14133; UPDATE t2 SET c='twenty-six thousand seven hundred ninety-three' WHERE a=14134; UPDATE t2 SET c='forty-six thousand nine hundred eight' WHERE a=14135; UPDATE t2 SET c='fifteen thousand one hundred sixty-five' WHERE a=14136; UPDATE t2 SET c='eighty-nine thousand two hundred ninety' WHERE a=14137; UPDATE t2 SET c='two thousand four hundred thirty-eight' WHERE a=14138; UPDATE t2 SET c='seventy-seven thousand one hundred forty-three' WHERE a=14139; UPDATE t2 SET c='forty-eight' WHERE a=14140; UPDATE t2 SET c='eighty-three thousand forty' WHERE a=14141; UPDATE t2 SET c='forty-four thousand one' WHERE a=14142; UPDATE t2 SET c='sixty-four thousand ninety-three' WHERE a=14143; UPDATE t2 SET c='seventy thousand forty-one' WHERE a=14144; UPDATE t2 SET c='sixty-nine thousand five hundred three' WHERE a=14145; UPDATE t2 SET c='nine thousand three hundred fifty-six' WHERE a=14146; UPDATE t2 SET c='thirty-four thousand eight hundred sixty-four' WHERE a=14147; UPDATE t2 SET c='five thousand seven hundred fifty-eight' WHERE a=14148; UPDATE t2 SET c='eighty-six thousand six hundred twenty-seven' WHERE a=14149; UPDATE t2 SET c='ninety-three thousand seven hundred forty-five' WHERE a=14150; UPDATE t2 SET c='fifty-four thousand three hundred eighty-one' WHERE a=14151; UPDATE t2 SET c='fifty-three thousand seven hundred nineteen' WHERE a=14152; UPDATE t2 SET c='thirty-seven thousand four hundred thirty-seven' WHERE a=14153; UPDATE t2 SET c='thirty-three thousand two hundred forty-six' WHERE a=14154; UPDATE t2 SET c='thirty-two thousand one hundred two' WHERE a=14155; UPDATE t2 SET c='eight thousand six hundred one' WHERE a=14156; UPDATE t2 SET c='ninety-six thousand seven hundred ninety-seven' WHERE a=14157; UPDATE t2 SET c='ninety thousand nine hundred forty-six' WHERE a=14158; UPDATE t2 SET c='eighty-one thousand seven hundred forty-five' WHERE a=14159; UPDATE t2 SET c='ninety-two thousand one hundred fifty-seven' WHERE a=14160; UPDATE t2 SET c='ninety-six thousand eight hundred thirty-seven' WHERE a=14161; UPDATE t2 SET c='fifty-three thousand three hundred forty-seven' WHERE a=14162; UPDATE t2 SET c='twenty thousand seven hundred seventy-six' WHERE a=14163; UPDATE t2 SET c='ninety-one thousand three hundred fifty-nine' WHERE a=14164; UPDATE t2 SET c='two hundred sixteen' WHERE a=14165; UPDATE t2 SET c='thirty-seven thousand five hundred forty-two' WHERE a=14166; UPDATE t2 SET c='eighteen thousand four hundred twenty-one' WHERE a=14167; UPDATE t2 SET c='eighty-nine thousand seven hundred twelve' WHERE a=14168; UPDATE t2 SET c='forty-eight thousand four hundred forty-five' WHERE a=14169; UPDATE t2 SET c='ninety-four thousand eight hundred sixty-five' WHERE a=14170; UPDATE t2 SET c='twenty-two thousand seven hundred seventeen' WHERE a=14171; UPDATE t2 SET c='thirty-two thousand four hundred forty-one' WHERE a=14172; UPDATE t2 SET c='fourteen thousand one hundred eighty-six' WHERE a=14173; UPDATE t2 SET c='thirty-seven thousand nine' WHERE a=14174; UPDATE t2 SET c='forty-one thousand two hundred thirty-three' WHERE a=14175; UPDATE t2 SET c='fifty-three thousand six hundred thirty-three' WHERE a=14176; UPDATE t2 SET c='one thousand two hundred sixty' WHERE a=14177; UPDATE t2 SET c='thirty-one thousand eight hundred ninety-eight' WHERE a=14178; UPDATE t2 SET c='forty-two thousand four hundred twenty-seven' WHERE a=14179; UPDATE t2 SET c='thirty-nine thousand sixty-two' WHERE a=14180; UPDATE t2 SET c='fifty-three thousand four' WHERE a=14181; UPDATE t2 SET c='thirty-eight thousand nine hundred ninety-five' WHERE a=14182; UPDATE t2 SET c='nine hundred seventy-one' WHERE a=14183; UPDATE t2 SET c='sixty-one thousand nine hundred eighty-seven' WHERE a=14184; UPDATE t2 SET c='sixty-eight thousand six hundred eighty-seven' WHERE a=14185; UPDATE t2 SET c='thirty-six thousand nine hundred seventy-one' WHERE a=14186; UPDATE t2 SET c='twenty-five thousand five hundred forty-four' WHERE a=14187; UPDATE t2 SET c='eighty-two thousand nine hundred seven' WHERE a=14188; UPDATE t2 SET c='twenty thousand one hundred three' WHERE a=14189; UPDATE t2 SET c='twenty-six thousand eighty-one' WHERE a=14190; UPDATE t2 SET c='ninety-one thousand six hundred twenty-two' WHERE a=14191; UPDATE t2 SET c='eighty-seven thousand six hundred five' WHERE a=14192; UPDATE t2 SET c='twenty-three thousand seven hundred seventy-three' WHERE a=14193; UPDATE t2 SET c='fifty-one thousand two hundred eighty-two' WHERE a=14194; UPDATE t2 SET c='forty-three thousand three hundred fifty-one' WHERE a=14195; UPDATE t2 SET c='thirty-four thousand seven hundred ninety-nine' WHERE a=14196; UPDATE t2 SET c='forty-one thousand three hundred thirty-seven' WHERE a=14197; UPDATE t2 SET c='forty-eight thousand three hundred thirty-three' WHERE a=14198; UPDATE t2 SET c='thirty-one thousand three hundred seventy-eight' WHERE a=14199; UPDATE t2 SET c='sixty-five thousand seven hundred forty-six' WHERE a=14200; UPDATE t2 SET c='seventy-three thousand eight hundred thirty-one' WHERE a=14201; UPDATE t2 SET c='thirty thousand one hundred fifty-four' WHERE a=14202; UPDATE t2 SET c='eleven thousand twenty-four' WHERE a=14203; UPDATE t2 SET c='forty-seven thousand one hundred thirty-one' WHERE a=14204; UPDATE t2 SET c='twenty-four thousand three hundred ninety-three' WHERE a=14205; UPDATE t2 SET c='fifty-two thousand four hundred ninety-seven' WHERE a=14206; UPDATE t2 SET c='eighty-three thousand five' WHERE a=14207; UPDATE t2 SET c='forty-eight thousand one hundred forty-four' WHERE a=14208; UPDATE t2 SET c='six thousand five hundred seventy' WHERE a=14209; UPDATE t2 SET c='seventy-two thousand eight hundred sixty-one' WHERE a=14210; UPDATE t2 SET c='ninety-two thousand seventy-four' WHERE a=14211; UPDATE t2 SET c='twenty thousand nine hundred forty-one' WHERE a=14212; UPDATE t2 SET c='ninety-three thousand one hundred two' WHERE a=14213; UPDATE t2 SET c='eighty-eight thousand six hundred sixty-nine' WHERE a=14214; UPDATE t2 SET c='eighty-one thousand nine hundred thirty-nine' WHERE a=14215; UPDATE t2 SET c='ninety-eight thousand three hundred eighty' WHERE a=14216; UPDATE t2 SET c='forty-two thousand sixty' WHERE a=14217; UPDATE t2 SET c='seventy-seven thousand four hundred eleven' WHERE a=14218; UPDATE t2 SET c='thirty-three thousand seven hundred ninety-nine' WHERE a=14219; UPDATE t2 SET c='ninety-four thousand nine hundred twenty-five' WHERE a=14220; UPDATE t2 SET c='sixty-four thousand six hundred sixty-five' WHERE a=14221; UPDATE t2 SET c='forty-three thousand eight hundred seventy-two' WHERE a=14222; UPDATE t2 SET c='ten thousand six hundred forty-five' WHERE a=14223; UPDATE t2 SET c='eighty-four thousand two' WHERE a=14224; UPDATE t2 SET c='eighty-eight thousand seven hundred fifty-one' WHERE a=14225; UPDATE t2 SET c='seventy-nine thousand one hundred fourteen' WHERE a=14226; UPDATE t2 SET c='ninety-seven thousand thirty-four' WHERE a=14227; UPDATE t2 SET c='eighty-four thousand nine hundred eleven' WHERE a=14228; UPDATE t2 SET c='two thousand one hundred thirteen' WHERE a=14229; UPDATE t2 SET c='ninety-three thousand one hundred ninety-five' WHERE a=14230; UPDATE t2 SET c='forty-seven thousand seven hundred thirty-nine' WHERE a=14231; UPDATE t2 SET c='twenty-two thousand two hundred forty' WHERE a=14232; UPDATE t2 SET c='sixty-eight thousand two hundred twenty-seven' WHERE a=14233; UPDATE t2 SET c='forty-five thousand three hundred seventy-five' WHERE a=14234; UPDATE t2 SET c='twenty-seven thousand nine hundred seventy-four' WHERE a=14235; UPDATE t2 SET c='seventy-eight thousand two hundred ninety-three' WHERE a=14236; UPDATE t2 SET c='sixty-six thousand one hundred seventy-eight' WHERE a=14237; UPDATE t2 SET c='seventy-one thousand five hundred twenty-four' WHERE a=14238; UPDATE t2 SET c='forty-five thousand eighty-three' WHERE a=14239; UPDATE t2 SET c='forty thousand eight hundred fifty-three' WHERE a=14240; UPDATE t2 SET c='fifty-one thousand nineteen' WHERE a=14241; UPDATE t2 SET c='forty-nine thousand two hundred twenty-eight' WHERE a=14242; UPDATE t2 SET c='twenty-eight thousand three hundred eighty-eight' WHERE a=14243; UPDATE t2 SET c='six thousand twenty-nine' WHERE a=14244; UPDATE t2 SET c='eighty-three thousand nine hundred ninety-five' WHERE a=14245; UPDATE t2 SET c='ninety-nine thousand eight hundred thirty-seven' WHERE a=14246; UPDATE t2 SET c='seventy-two thousand eight hundred fifty-one' WHERE a=14247; UPDATE t2 SET c='eighteen thousand one hundred sixty-three' WHERE a=14248; UPDATE t2 SET c='sixty-five thousand three hundred twenty-two' WHERE a=14249; UPDATE t2 SET c='forty-seven thousand six hundred eighty-one' WHERE a=14250; UPDATE t2 SET c='twenty-two thousand four hundred forty-one' WHERE a=14251; UPDATE t2 SET c='fifty-four thousand one hundred thirteen' WHERE a=14252; UPDATE t2 SET c='twenty-seven thousand eight hundred seventeen' WHERE a=14253; UPDATE t2 SET c='seventeen thousand five hundred eighty-three' WHERE a=14254; UPDATE t2 SET c='seventeen thousand three hundred eighty-four' WHERE a=14255; UPDATE t2 SET c='seventy-two thousand four hundred twenty-nine' WHERE a=14256; UPDATE t2 SET c='thirty-two thousand two hundred eighty-seven' WHERE a=14257; UPDATE t2 SET c='forty-six thousand four hundred seventy-seven' WHERE a=14258; UPDATE t2 SET c='sixty-eight thousand two hundred forty-nine' WHERE a=14259; UPDATE t2 SET c='sixty-seven thousand four hundred twenty-three' WHERE a=14260; UPDATE t2 SET c='fifty-nine thousand six hundred ninety-two' WHERE a=14261; UPDATE t2 SET c='forty-five thousand seven hundred ninety-eight' WHERE a=14262; UPDATE t2 SET c='nine thousand three hundred ninety-two' WHERE a=14263; UPDATE t2 SET c='thirty-nine thousand three hundred fifty-three' WHERE a=14264; UPDATE t2 SET c='four thousand four hundred sixty-three' WHERE a=14265; UPDATE t2 SET c='thirteen thousand seven hundred sixty' WHERE a=14266; UPDATE t2 SET c='thirteen thousand four hundred sixty-four' WHERE a=14267; UPDATE t2 SET c='sixty-nine thousand four hundred thirty-nine' WHERE a=14268; UPDATE t2 SET c='seventy-three thousand six hundred one' WHERE a=14269; UPDATE t2 SET c='seventy-four thousand four hundred seventy-two' WHERE a=14270; UPDATE t2 SET c='sixty-three thousand eight hundred seventy-six' WHERE a=14271; UPDATE t2 SET c='fourteen thousand four hundred thirty-seven' WHERE a=14272; UPDATE t2 SET c='seven thousand nine hundred fifty-eight' WHERE a=14273; UPDATE t2 SET c='fifty-six thousand three hundred forty-three' WHERE a=14274; UPDATE t2 SET c='sixteen thousand seven hundred twenty-nine' WHERE a=14275; UPDATE t2 SET c='thirty-six thousand four hundred forty-three' WHERE a=14276; UPDATE t2 SET c='eighty-three thousand one hundred twelve' WHERE a=14277; UPDATE t2 SET c='eighty-two thousand eight hundred twenty-eight' WHERE a=14278; UPDATE t2 SET c='fifty-one thousand nine hundred twenty' WHERE a=14279; UPDATE t2 SET c='ninety-two thousand nine hundred twenty-one' WHERE a=14280; UPDATE t2 SET c='thirty-one thousand five hundred ninety-one' WHERE a=14281; UPDATE t2 SET c='twenty thousand eight hundred sixty-five' WHERE a=14282; UPDATE t2 SET c='ninety-three thousand three hundred fourteen' WHERE a=14283; UPDATE t2 SET c='thirty-one thousand four hundred sixty-eight' WHERE a=14284; UPDATE t2 SET c='forty-two thousand two hundred thirty-two' WHERE a=14285; UPDATE t2 SET c='thirty thousand three hundred eighty' WHERE a=14286; UPDATE t2 SET c='fifty-four thousand six hundred eighteen' WHERE a=14287; UPDATE t2 SET c='sixty-six thousand one hundred thirteen' WHERE a=14288; UPDATE t2 SET c='twenty-four thousand three hundred sixty-seven' WHERE a=14289; UPDATE t2 SET c='one thousand nine hundred eighteen' WHERE a=14290; UPDATE t2 SET c='thirty-eight thousand two hundred twenty-two' WHERE a=14291; UPDATE t2 SET c='eleven thousand five hundred sixty-six' WHERE a=14292; UPDATE t2 SET c='fifty-five thousand six hundred thirty-seven' WHERE a=14293; UPDATE t2 SET c='twenty-eight thousand five hundred fifty-eight' WHERE a=14294; UPDATE t2 SET c='sixty thousand three hundred thirty-six' WHERE a=14295; UPDATE t2 SET c='seventy-two thousand three hundred thirty-two' WHERE a=14296; UPDATE t2 SET c='twelve thousand two hundred eighty-three' WHERE a=14297; UPDATE t2 SET c='fifty-seven thousand eight hundred seventy-six' WHERE a=14298; UPDATE t2 SET c='ninety-five thousand one hundred forty-five' WHERE a=14299; UPDATE t2 SET c='thirty-one thousand four hundred two' WHERE a=14300; UPDATE t2 SET c='nineteen thousand one hundred fifty-five' WHERE a=14301; UPDATE t2 SET c='three thousand seven hundred fifty-nine' WHERE a=14302; UPDATE t2 SET c='eighty-seven thousand sixty-nine' WHERE a=14303; UPDATE t2 SET c='thirty-four thousand five hundred thirty-seven' WHERE a=14304; UPDATE t2 SET c='thirty-nine thousand seven hundred thirty-five' WHERE a=14305; UPDATE t2 SET c='fifty-six thousand one hundred forty-nine' WHERE a=14306; UPDATE t2 SET c='ninety-three thousand fifty-seven' WHERE a=14307; UPDATE t2 SET c='thirty thousand nine hundred forty-six' WHERE a=14308; UPDATE t2 SET c='forty-nine thousand one hundred nineteen' WHERE a=14309; UPDATE t2 SET c='sixty-six thousand four hundred forty-nine' WHERE a=14310; UPDATE t2 SET c='seventy-five thousand seven hundred' WHERE a=14311; UPDATE t2 SET c='twenty-one thousand four' WHERE a=14312; UPDATE t2 SET c='thirteen thousand four hundred eighty-one' WHERE a=14313; UPDATE t2 SET c='four thousand five hundred thirty-five' WHERE a=14314; UPDATE t2 SET c='seventy-seven thousand five hundred nine' WHERE a=14315; UPDATE t2 SET c='twenty-one thousand five hundred sixty-seven' WHERE a=14316; UPDATE t2 SET c='ten thousand fifty-nine' WHERE a=14317; UPDATE t2 SET c='three thousand two hundred twenty' WHERE a=14318; UPDATE t2 SET c='twenty-two thousand ninety-five' WHERE a=14319; UPDATE t2 SET c='five thousand thirty-four' WHERE a=14320; UPDATE t2 SET c='ninety-one thousand three hundred three' WHERE a=14321; UPDATE t2 SET c='sixteen thousand ninety-one' WHERE a=14322; UPDATE t2 SET c='fifty-three thousand one hundred twenty-three' WHERE a=14323; UPDATE t2 SET c='nineteen thousand four hundred ninety-eight' WHERE a=14324; UPDATE t2 SET c='five thousand four hundred eighty' WHERE a=14325; UPDATE t2 SET c='fifty thousand three hundred two' WHERE a=14326; UPDATE t2 SET c='thirty-one thousand eighty-eight' WHERE a=14327; UPDATE t2 SET c='eighty-one thousand five hundred ninety-seven' WHERE a=14328; UPDATE t2 SET c='seven thousand three hundred fifteen' WHERE a=14329; UPDATE t2 SET c='sixty-eight thousand seven hundred twenty-one' WHERE a=14330; UPDATE t2 SET c='forty-four thousand one hundred forty-nine' WHERE a=14331; UPDATE t2 SET c='twenty-eight thousand two hundred sixty-three' WHERE a=14332; UPDATE t2 SET c='ninety thousand six hundred fifty' WHERE a=14333; UPDATE t2 SET c='twenty thousand ninety-six' WHERE a=14334; UPDATE t2 SET c='thirty-three thousand four hundred four' WHERE a=14335; UPDATE t2 SET c='forty-seven thousand two hundred eleven' WHERE a=14336; UPDATE t2 SET c='thirty thousand three hundred ninety-four' WHERE a=14337; UPDATE t2 SET c='sixty-six thousand six hundred forty-one' WHERE a=14338; UPDATE t2 SET c='twenty-six thousand four hundred eighty-eight' WHERE a=14339; UPDATE t2 SET c='eighty-eight thousand eight hundred eight' WHERE a=14340; UPDATE t2 SET c='eighty-one thousand three hundred eighty-two' WHERE a=14341; UPDATE t2 SET c='fifty-seven thousand eight hundred eighty' WHERE a=14342; UPDATE t2 SET c='ninety-three thousand eight hundred eighty-one' WHERE a=14343; UPDATE t2 SET c='twenty-six thousand nine hundred sixty-six' WHERE a=14344; UPDATE t2 SET c='ninety-four thousand four hundred twenty-one' WHERE a=14345; UPDATE t2 SET c='ninety-five thousand nine hundred forty-six' WHERE a=14346; UPDATE t2 SET c='fourteen thousand two hundred thirty-eight' WHERE a=14347; UPDATE t2 SET c='twenty-three thousand seven hundred fifty-six' WHERE a=14348; UPDATE t2 SET c='fourteen thousand seven hundred twelve' WHERE a=14349; UPDATE t2 SET c='fifty-four thousand two hundred eighty-one' WHERE a=14350; UPDATE t2 SET c='eighty-six thousand nine hundred twenty-seven' WHERE a=14351; UPDATE t2 SET c='sixty-nine thousand three hundred thirty' WHERE a=14352; UPDATE t2 SET c='thirty-eight thousand one hundred forty-eight' WHERE a=14353; UPDATE t2 SET c='nine thousand seven hundred forty-two' WHERE a=14354; UPDATE t2 SET c='eighty-five thousand five hundred thirteen' WHERE a=14355; UPDATE t2 SET c='thirty-two thousand ninety-four' WHERE a=14356; UPDATE t2 SET c='eighty-eight thousand one hundred twenty-two' WHERE a=14357; UPDATE t2 SET c='twenty-nine thousand nine hundred thirty-five' WHERE a=14358; UPDATE t2 SET c='thirty-five thousand one hundred thirty-one' WHERE a=14359; UPDATE t2 SET c='forty-two thousand eight hundred fifty-four' WHERE a=14360; UPDATE t2 SET c='forty-six thousand seven' WHERE a=14361; UPDATE t2 SET c='sixteen thousand nine hundred twelve' WHERE a=14362; UPDATE t2 SET c='ten thousand two hundred twelve' WHERE a=14363; UPDATE t2 SET c='fifty-nine thousand six hundred thirty-six' WHERE a=14364; UPDATE t2 SET c='fifty-seven thousand seventy-five' WHERE a=14365; UPDATE t2 SET c='eight thousand four hundred sixty-six' WHERE a=14366; UPDATE t2 SET c='forty-nine thousand seventy-six' WHERE a=14367; UPDATE t2 SET c='thirty-six thousand three hundred fifty-six' WHERE a=14368; UPDATE t2 SET c='twenty-one thousand five hundred twenty' WHERE a=14369; UPDATE t2 SET c='twenty-eight thousand three hundred fifty-four' WHERE a=14370; UPDATE t2 SET c='fifty-one thousand' WHERE a=14371; UPDATE t2 SET c='one thousand eight hundred one' WHERE a=14372; UPDATE t2 SET c='thirty-three thousand nineteen' WHERE a=14373; UPDATE t2 SET c='forty-eight thousand nine hundred six' WHERE a=14374; UPDATE t2 SET c='thirty-eight thousand four hundred thirty-four' WHERE a=14375; UPDATE t2 SET c='twenty-three thousand nine hundred forty-three' WHERE a=14376; UPDATE t2 SET c='seventy-four thousand two hundred thirty-three' WHERE a=14377; UPDATE t2 SET c='seventy-two thousand one hundred thirty-seven' WHERE a=14378; UPDATE t2 SET c='sixty-six thousand seventy-two' WHERE a=14379; UPDATE t2 SET c='forty-two thousand five hundred fifty-one' WHERE a=14380; UPDATE t2 SET c='seventy thousand seven hundred thirty-three' WHERE a=14381; UPDATE t2 SET c='one thousand two hundred sixty-seven' WHERE a=14382; UPDATE t2 SET c='fifty-one thousand nine hundred thirty-seven' WHERE a=14383; UPDATE t2 SET c='fifty-eight thousand five hundred eighty' WHERE a=14384; UPDATE t2 SET c='fifty-seven thousand five hundred fifty-five' WHERE a=14385; UPDATE t2 SET c='forty-eight thousand six hundred ninety-three' WHERE a=14386; UPDATE t2 SET c='forty-four thousand four hundred seventy-three' WHERE a=14387; UPDATE t2 SET c='thirty-six thousand eight hundred seventeen' WHERE a=14388; UPDATE t2 SET c='fifteen thousand eight hundred seventy-one' WHERE a=14389; UPDATE t2 SET c='forty thousand seven hundred thirty' WHERE a=14390; UPDATE t2 SET c='eighty-three thousand four hundred seventy-six' WHERE a=14391; UPDATE t2 SET c='forty-seven thousand four hundred ten' WHERE a=14392; UPDATE t2 SET c='fifty-four thousand six hundred sixty' WHERE a=14393; UPDATE t2 SET c='forty-nine thousand two hundred eight' WHERE a=14394; UPDATE t2 SET c='seventy-three thousand one hundred seventy-three' WHERE a=14395; UPDATE t2 SET c='sixteen thousand five hundred twenty-one' WHERE a=14396; UPDATE t2 SET c='seventy-one thousand four hundred three' WHERE a=14397; UPDATE t2 SET c='thirty-four thousand twelve' WHERE a=14398; UPDATE t2 SET c='forty-three thousand seven hundred eighty-one' WHERE a=14399; UPDATE t2 SET c='seventy-five thousand seven hundred ninety' WHERE a=14400; UPDATE t2 SET c='forty-eight thousand three hundred seventy-four' WHERE a=14401; UPDATE t2 SET c='sixty-five thousand fifty-six' WHERE a=14402; UPDATE t2 SET c='twenty-seven thousand seven hundred eighty-four' WHERE a=14403; UPDATE t2 SET c='eighteen thousand five hundred forty-five' WHERE a=14404; UPDATE t2 SET c='fifty-three thousand seven hundred twenty-four' WHERE a=14405; UPDATE t2 SET c='fifty-three thousand five hundred eight' WHERE a=14406; UPDATE t2 SET c='sixty-four thousand ninety-five' WHERE a=14407; UPDATE t2 SET c='eighty-eight thousand one hundred fifty' WHERE a=14408; UPDATE t2 SET c='forty-nine thousand six hundred forty-three' WHERE a=14409; UPDATE t2 SET c='sixty-eight thousand six hundred eighty-nine' WHERE a=14410; UPDATE t2 SET c='eight thousand three' WHERE a=14411; UPDATE t2 SET c='four thousand six hundred twenty-six' WHERE a=14412; UPDATE t2 SET c='seventy-nine thousand one hundred forty-six' WHERE a=14413; UPDATE t2 SET c='eighty-five thousand nine hundred fifty-three' WHERE a=14414; UPDATE t2 SET c='forty-five thousand eight hundred sixty-eight' WHERE a=14415; UPDATE t2 SET c='four thousand four hundred four' WHERE a=14416; UPDATE t2 SET c='forty-nine thousand one hundred three' WHERE a=14417; UPDATE t2 SET c='sixty-eight thousand five hundred fifty-three' WHERE a=14418; UPDATE t2 SET c='nine thousand seven hundred sixty-seven' WHERE a=14419; UPDATE t2 SET c='fourteen thousand twelve' WHERE a=14420; UPDATE t2 SET c='thirteen thousand three hundred ninety-eight' WHERE a=14421; UPDATE t2 SET c='fifty-four thousand six hundred ninety-eight' WHERE a=14422; UPDATE t2 SET c='fifty-two thousand one hundred ninety-six' WHERE a=14423; UPDATE t2 SET c='thirty-one thousand nine hundred fifty' WHERE a=14424; UPDATE t2 SET c='seventy-eight thousand one hundred twenty' WHERE a=14425; UPDATE t2 SET c='sixty-four thousand eight hundred forty-one' WHERE a=14426; UPDATE t2 SET c='eighty-three thousand eighty-four' WHERE a=14427; UPDATE t2 SET c='nineteen thousand one hundred sixty-seven' WHERE a=14428; UPDATE t2 SET c='eighty-two thousand two hundred eighteen' WHERE a=14429; UPDATE t2 SET c='fifty-seven thousand eighty' WHERE a=14430; UPDATE t2 SET c='twenty-four thousand five hundred thirty-six' WHERE a=14431; UPDATE t2 SET c='eighty thousand six hundred fifty' WHERE a=14432; UPDATE t2 SET c='thirty thousand one hundred three' WHERE a=14433; UPDATE t2 SET c='thirty-one thousand five hundred eight' WHERE a=14434; UPDATE t2 SET c='eighty-seven thousand two hundred fifteen' WHERE a=14435; UPDATE t2 SET c='twenty-five thousand two hundred seventy-seven' WHERE a=14436; UPDATE t2 SET c='fifty-five thousand two hundred fourteen' WHERE a=14437; UPDATE t2 SET c='forty-nine thousand four hundred thirty-seven' WHERE a=14438; UPDATE t2 SET c='fifty-nine thousand one hundred four' WHERE a=14439; UPDATE t2 SET c='four thousand two hundred thirteen' WHERE a=14440; UPDATE t2 SET c='ninety-nine thousand six hundred thirty-six' WHERE a=14441; UPDATE t2 SET c='four thousand seven hundred eighty-eight' WHERE a=14442; UPDATE t2 SET c='eighty-four thousand one hundred sixty-nine' WHERE a=14443; UPDATE t2 SET c='twenty-eight thousand six hundred ninety-nine' WHERE a=14444; UPDATE t2 SET c='two hundred eleven' WHERE a=14445; UPDATE t2 SET c='fifty-five thousand nine hundred forty-six' WHERE a=14446; UPDATE t2 SET c='fifty-four thousand two hundred twenty-nine' WHERE a=14447; UPDATE t2 SET c='eighty-one thousand seven hundred fifty-four' WHERE a=14448; UPDATE t2 SET c='seventy-four thousand nine hundred sixty-eight' WHERE a=14449; UPDATE t2 SET c='twenty-four thousand six hundred eighty-one' WHERE a=14450; UPDATE t2 SET c='ninety-six thousand nine hundred forty-three' WHERE a=14451; UPDATE t2 SET c='eleven thousand two hundred ninety-nine' WHERE a=14452; UPDATE t2 SET c='seventy-eight thousand one hundred twenty-one' WHERE a=14453; UPDATE t2 SET c='eighty-eight thousand four hundred seventy-nine' WHERE a=14454; UPDATE t2 SET c='thirty-two thousand three hundred fifty-six' WHERE a=14455; UPDATE t2 SET c='ninety-four thousand three hundred eighty-two' WHERE a=14456; UPDATE t2 SET c='seventy-five thousand one hundred forty-seven' WHERE a=14457; UPDATE t2 SET c='sixty-seven thousand two hundred fifty-eight' WHERE a=14458; UPDATE t2 SET c='thirty-four thousand five hundred thirty-five' WHERE a=14459; UPDATE t2 SET c='ninety-three thousand nine hundred thirty-nine' WHERE a=14460; UPDATE t2 SET c='eighty thousand five hundred thirty-one' WHERE a=14461; UPDATE t2 SET c='thirty-five thousand two hundred nine' WHERE a=14462; UPDATE t2 SET c='thirty-two thousand six hundred forty-eight' WHERE a=14463; UPDATE t2 SET c='seventy-three thousand seven hundred thirty-two' WHERE a=14464; UPDATE t2 SET c='twenty-two thousand eight hundred thirty-three' WHERE a=14465; UPDATE t2 SET c='forty-six thousand six hundred thirty' WHERE a=14466; UPDATE t2 SET c='sixty-two thousand two hundred seventy-nine' WHERE a=14467; UPDATE t2 SET c='thirty-three thousand seven hundred seven' WHERE a=14468; UPDATE t2 SET c='sixty-four thousand seven hundred sixty-seven' WHERE a=14469; UPDATE t2 SET c='ninety-five thousand eight hundred forty-four' WHERE a=14470; UPDATE t2 SET c='one thousand six hundred nine' WHERE a=14471; UPDATE t2 SET c='forty thousand one hundred fifty-one' WHERE a=14472; UPDATE t2 SET c='seventy-three thousand six hundred twenty-nine' WHERE a=14473; UPDATE t2 SET c='fifty-five thousand eight hundred seventy-eight' WHERE a=14474; UPDATE t2 SET c='thirty-four thousand nine hundred five' WHERE a=14475; UPDATE t2 SET c='twelve thousand nine hundred twenty-one' WHERE a=14476; UPDATE t2 SET c='forty-eight thousand six hundred twelve' WHERE a=14477; UPDATE t2 SET c='eighty-three thousand two hundred thirty-four' WHERE a=14478; UPDATE t2 SET c='eighty-nine thousand thirteen' WHERE a=14479; UPDATE t2 SET c='forty-two thousand eight hundred ninety-three' WHERE a=14480; UPDATE t2 SET c='seventy-one thousand eight hundred seventy-eight' WHERE a=14481; UPDATE t2 SET c='eighty-two thousand seven hundred eighty-two' WHERE a=14482; UPDATE t2 SET c='forty-nine thousand one hundred seven' WHERE a=14483; UPDATE t2 SET c='eighty-eight thousand one hundred eighty-three' WHERE a=14484; UPDATE t2 SET c='twenty-seven thousand three hundred fifty-one' WHERE a=14485; UPDATE t2 SET c='thirty-two thousand eight hundred sixty-six' WHERE a=14486; UPDATE t2 SET c='ninety-two thousand forty-nine' WHERE a=14487; UPDATE t2 SET c='seventy-four thousand seven hundred fifty-two' WHERE a=14488; UPDATE t2 SET c='three thousand four hundred forty-nine' WHERE a=14489; UPDATE t2 SET c='ninety-seven thousand nine hundred eighty-four' WHERE a=14490; UPDATE t2 SET c='fifty-six thousand five hundred eighty-two' WHERE a=14491; UPDATE t2 SET c='forty-four thousand five hundred eighty-four' WHERE a=14492; UPDATE t2 SET c='thirty-eight thousand one hundred seventy-nine' WHERE a=14493; UPDATE t2 SET c='nineteen thousand seven hundred ninety-three' WHERE a=14494; UPDATE t2 SET c='eighty thousand two hundred two' WHERE a=14495; UPDATE t2 SET c='seventy-seven thousand six hundred eighty-two' WHERE a=14496; UPDATE t2 SET c='forty-five thousand four hundred fourteen' WHERE a=14497; UPDATE t2 SET c='fifty-one thousand two hundred seventy-five' WHERE a=14498; UPDATE t2 SET c='sixty thousand seven hundred seventy-seven' WHERE a=14499; UPDATE t2 SET c='eighty-three thousand four hundred forty-seven' WHERE a=14500; UPDATE t2 SET c='fifteen thousand four hundred fifty-six' WHERE a=14501; UPDATE t2 SET c='ninety-five thousand six hundred sixteen' WHERE a=14502; UPDATE t2 SET c='thirty-six thousand five hundred one' WHERE a=14503; UPDATE t2 SET c='one thousand six hundred eighty-five' WHERE a=14504; UPDATE t2 SET c='four thousand one hundred one' WHERE a=14505; UPDATE t2 SET c='eleven thousand two hundred forty-three' WHERE a=14506; UPDATE t2 SET c='seventy-six thousand eight hundred thirty-five' WHERE a=14507; UPDATE t2 SET c='twenty-five thousand four hundred seventeen' WHERE a=14508; UPDATE t2 SET c='forty-seven thousand five hundred fourteen' WHERE a=14509; UPDATE t2 SET c='sixty-nine thousand eight hundred ten' WHERE a=14510; UPDATE t2 SET c='three thousand eight hundred forty-two' WHERE a=14511; UPDATE t2 SET c='ninety-five thousand seventy-eight' WHERE a=14512; UPDATE t2 SET c='twelve thousand eight hundred seventy-eight' WHERE a=14513; UPDATE t2 SET c='thirty-three thousand two hundred sixty-seven' WHERE a=14514; UPDATE t2 SET c='seventy-seven thousand three hundred ninety-six' WHERE a=14515; UPDATE t2 SET c='eighty-nine thousand four hundred fifty-four' WHERE a=14516; UPDATE t2 SET c='twenty-four thousand five hundred ninety-five' WHERE a=14517; UPDATE t2 SET c='eighty-four thousand eight hundred fifty-five' WHERE a=14518; UPDATE t2 SET c='eighty-seven thousand one hundred seven' WHERE a=14519; UPDATE t2 SET c='eighty-six thousand four hundred twenty-nine' WHERE a=14520; UPDATE t2 SET c='seventy-four thousand five hundred seventy-three' WHERE a=14521; UPDATE t2 SET c='twenty-nine thousand five hundred eighty-six' WHERE a=14522; UPDATE t2 SET c='thirty-two thousand twenty-four' WHERE a=14523; UPDATE t2 SET c='ninety-two thousand two hundred six' WHERE a=14524; UPDATE t2 SET c='twenty thousand three hundred eleven' WHERE a=14525; UPDATE t2 SET c='forty-three thousand three hundred fifty-four' WHERE a=14526; UPDATE t2 SET c='nine thousand four hundred seventy-nine' WHERE a=14527; UPDATE t2 SET c='nineteen thousand nine hundred sixty-six' WHERE a=14528; UPDATE t2 SET c='twenty-five thousand eight hundred eighty-one' WHERE a=14529; UPDATE t2 SET c='thirty-five thousand ninety-six' WHERE a=14530; UPDATE t2 SET c='sixty-seven thousand six hundred eight' WHERE a=14531; UPDATE t2 SET c='twenty-four thousand six hundred sixty-four' WHERE a=14532; UPDATE t2 SET c='ninety-three thousand eight hundred sixty-two' WHERE a=14533; UPDATE t2 SET c='twenty thousand seven hundred ninety-four' WHERE a=14534; UPDATE t2 SET c='sixty-two thousand one hundred ninety-five' WHERE a=14535; UPDATE t2 SET c='thirty-seven thousand one hundred seventy-six' WHERE a=14536; UPDATE t2 SET c='two thousand seven hundred forty-nine' WHERE a=14537; UPDATE t2 SET c='fifty-seven thousand nine hundred eight' WHERE a=14538; UPDATE t2 SET c='forty-seven thousand three hundred fourteen' WHERE a=14539; UPDATE t2 SET c='sixty-six thousand six hundred forty-three' WHERE a=14540; UPDATE t2 SET c='eighty-nine thousand two hundred two' WHERE a=14541; UPDATE t2 SET c='fifty-three thousand seven hundred eighty-two' WHERE a=14542; UPDATE t2 SET c='seventeen thousand one hundred fifty-six' WHERE a=14543; UPDATE t2 SET c='thirty-seven thousand nine hundred thirty-three' WHERE a=14544; UPDATE t2 SET c='sixty-four thousand one hundred forty-eight' WHERE a=14545; UPDATE t2 SET c='thirty-nine thousand three hundred sixty-four' WHERE a=14546; UPDATE t2 SET c='twenty-one thousand six hundred sixty-one' WHERE a=14547; UPDATE t2 SET c='thirty-four thousand one hundred thirteen' WHERE a=14548; UPDATE t2 SET c='ninety-one thousand eight hundred seventy-two' WHERE a=14549; UPDATE t2 SET c='thirty-five thousand three hundred twenty-two' WHERE a=14550; UPDATE t2 SET c='eighty-six thousand one hundred twenty-eight' WHERE a=14551; UPDATE t2 SET c='sixty-four thousand four hundred sixty-one' WHERE a=14552; UPDATE t2 SET c='forty-seven thousand nine hundred sixty-five' WHERE a=14553; UPDATE t2 SET c='thirty-six thousand forty-one' WHERE a=14554; UPDATE t2 SET c='thirty-eight thousand thirty-five' WHERE a=14555; UPDATE t2 SET c='eighty-eight thousand fifty-three' WHERE a=14556; UPDATE t2 SET c='fifty-four thousand two hundred twenty-one' WHERE a=14557; UPDATE t2 SET c='ten thousand two hundred fifty-nine' WHERE a=14558; UPDATE t2 SET c='thirty-four thousand five hundred seventy-four' WHERE a=14559; UPDATE t2 SET c='seventy-five thousand four hundred forty-nine' WHERE a=14560; UPDATE t2 SET c='thirteen thousand nine hundred twenty-nine' WHERE a=14561; UPDATE t2 SET c='ninety-one thousand one hundred fifty-three' WHERE a=14562; UPDATE t2 SET c='fifty-five thousand seven hundred sixty-three' WHERE a=14563; UPDATE t2 SET c='thirty-three thousand four hundred thirty-nine' WHERE a=14564; UPDATE t2 SET c='twenty-eight thousand four hundred' WHERE a=14565; UPDATE t2 SET c='forty-eight thousand forty-one' WHERE a=14566; UPDATE t2 SET c='nine thousand six hundred sixty-two' WHERE a=14567; UPDATE t2 SET c='forty-three thousand eight hundred fifty-seven' WHERE a=14568; UPDATE t2 SET c='forty-five thousand five hundred fifty-one' WHERE a=14569; UPDATE t2 SET c='eighty-six thousand two hundred ninety-eight' WHERE a=14570; UPDATE t2 SET c='ninety-nine thousand five hundred seventy-eight' WHERE a=14571; UPDATE t2 SET c='twenty-nine thousand six hundred twelve' WHERE a=14572; UPDATE t2 SET c='fifty-three thousand two hundred sixty' WHERE a=14573; UPDATE t2 SET c='eighty thousand one hundred seventy-six' WHERE a=14574; UPDATE t2 SET c='ninety-three thousand one hundred fifty-seven' WHERE a=14575; UPDATE t2 SET c='sixty-seven thousand five hundred fifty-seven' WHERE a=14576; UPDATE t2 SET c='seventy-nine thousand two hundred forty-four' WHERE a=14577; UPDATE t2 SET c='five thousand nine hundred fifty-seven' WHERE a=14578; UPDATE t2 SET c='eighty-eight thousand eight hundred twenty' WHERE a=14579; UPDATE t2 SET c='fifty-three thousand eight hundred fifty-three' WHERE a=14580; UPDATE t2 SET c='fifty-four thousand six hundred fifty-five' WHERE a=14581; UPDATE t2 SET c='forty-seven thousand eight hundred forty-nine' WHERE a=14582; UPDATE t2 SET c='twenty thousand nine hundred nineteen' WHERE a=14583; UPDATE t2 SET c='sixty-four thousand seven hundred eleven' WHERE a=14584; UPDATE t2 SET c='fifty-eight thousand eight hundred twenty-one' WHERE a=14585; UPDATE t2 SET c='fifty-seven thousand eight hundred nineteen' WHERE a=14586; UPDATE t2 SET c='eighty-two thousand eight hundred two' WHERE a=14587; UPDATE t2 SET c='thirteen thousand nine hundred thirty-five' WHERE a=14588; UPDATE t2 SET c='seventy-five thousand two hundred forty-seven' WHERE a=14589; UPDATE t2 SET c='fifty-seven thousand two hundred eighty-four' WHERE a=14590; UPDATE t2 SET c='thirty-five thousand two hundred ninety-six' WHERE a=14591; UPDATE t2 SET c='thirty-one thousand two hundred sixty-seven' WHERE a=14592; UPDATE t2 SET c='sixty-two thousand two hundred ten' WHERE a=14593; UPDATE t2 SET c='seventy-nine thousand five hundred ninety-nine' WHERE a=14594; UPDATE t2 SET c='thirty-two thousand one hundred thirty-five' WHERE a=14595; UPDATE t2 SET c='twenty thousand three hundred twenty-three' WHERE a=14596; UPDATE t2 SET c='thirteen thousand three hundred eighty-two' WHERE a=14597; UPDATE t2 SET c='forty-nine thousand two hundred ninety-seven' WHERE a=14598; UPDATE t2 SET c='eighty-four thousand five hundred thirty-three' WHERE a=14599; UPDATE t2 SET c='fifty-six thousand two hundred three' WHERE a=14600; UPDATE t2 SET c='eighteen thousand three hundred fifty-three' WHERE a=14601; UPDATE t2 SET c='three thousand four hundred thirty-one' WHERE a=14602; UPDATE t2 SET c='eighteen thousand six hundred one' WHERE a=14603; UPDATE t2 SET c='eighty-nine thousand nine hundred fifty-seven' WHERE a=14604; UPDATE t2 SET c='fifty-four thousand three hundred forty-one' WHERE a=14605; UPDATE t2 SET c='seventeen thousand six hundred eighty-seven' WHERE a=14606; UPDATE t2 SET c='fifty-four thousand eight hundred ninety-one' WHERE a=14607; UPDATE t2 SET c='twenty-eight thousand six hundred ninety-four' WHERE a=14608; UPDATE t2 SET c='ninety-three thousand sixty-seven' WHERE a=14609; UPDATE t2 SET c='fifty thousand seven hundred eighty-two' WHERE a=14610; UPDATE t2 SET c='fourteen thousand three hundred twenty-two' WHERE a=14611; UPDATE t2 SET c='thirty-four thousand six hundred fifty-two' WHERE a=14612; UPDATE t2 SET c='twenty-six thousand ninety-nine' WHERE a=14613; UPDATE t2 SET c='seventy-eight thousand one hundred eighty-two' WHERE a=14614; UPDATE t2 SET c='fifty-two thousand nine hundred thirty-eight' WHERE a=14615; UPDATE t2 SET c='sixty-two thousand one hundred fifty-six' WHERE a=14616; UPDATE t2 SET c='eighty-nine thousand one hundred seventy-eight' WHERE a=14617; UPDATE t2 SET c='ninety-four thousand one hundred eighty-five' WHERE a=14618; UPDATE t2 SET c='thirty-two thousand four hundred sixty-eight' WHERE a=14619; UPDATE t2 SET c='twenty-two thousand four hundred eight' WHERE a=14620; UPDATE t2 SET c='fifteen thousand six hundred fifty-six' WHERE a=14621; UPDATE t2 SET c='thirty-seven thousand four hundred seventy-four' WHERE a=14622; UPDATE t2 SET c='fifty-seven thousand eight hundred twenty-nine' WHERE a=14623; UPDATE t2 SET c='ninety-seven thousand five hundred forty' WHERE a=14624; UPDATE t2 SET c='ninety-three thousand seven hundred ninety-four' WHERE a=14625; UPDATE t2 SET c='eight thousand four hundred twenty-one' WHERE a=14626; UPDATE t2 SET c='ninety-five thousand eighty-six' WHERE a=14627; UPDATE t2 SET c='sixty-four thousand seventy-four' WHERE a=14628; UPDATE t2 SET c='forty-four thousand nine hundred twenty-eight' WHERE a=14629; UPDATE t2 SET c='thirty-three thousand four hundred seven' WHERE a=14630; UPDATE t2 SET c='seventeen thousand five hundred twenty-one' WHERE a=14631; UPDATE t2 SET c='fifty-five thousand eight hundred ninety-seven' WHERE a=14632; UPDATE t2 SET c='ninety-five thousand one hundred sixty-seven' WHERE a=14633; UPDATE t2 SET c='three thousand seven hundred eighty' WHERE a=14634; UPDATE t2 SET c='six hundred sixty-two' WHERE a=14635; UPDATE t2 SET c='seventy-four thousand three hundred eighty-six' WHERE a=14636; UPDATE t2 SET c='thirty-six thousand three hundred fifty' WHERE a=14637; UPDATE t2 SET c='seventy thousand four hundred ninety-nine' WHERE a=14638; UPDATE t2 SET c='twelve thousand thirty-five' WHERE a=14639; UPDATE t2 SET c='fifty-five thousand six hundred ninety-nine' WHERE a=14640; UPDATE t2 SET c='twenty-two thousand three hundred sixteen' WHERE a=14641; UPDATE t2 SET c='fifty-five thousand three hundred nineteen' WHERE a=14642; UPDATE t2 SET c='nineteen thousand seven hundred forty-nine' WHERE a=14643; UPDATE t2 SET c='fourteen thousand six' WHERE a=14644; UPDATE t2 SET c='thirty-seven thousand six hundred twenty' WHERE a=14645; UPDATE t2 SET c='eighty-seven thousand two hundred seventy-one' WHERE a=14646; UPDATE t2 SET c='seventy-four thousand forty-five' WHERE a=14647; UPDATE t2 SET c='one thousand six hundred thirty-four' WHERE a=14648; UPDATE t2 SET c='eighty-two thousand five hundred sixty-four' WHERE a=14649; UPDATE t2 SET c='eighty-two thousand five hundred eighty-nine' WHERE a=14650; UPDATE t2 SET c='thirty-nine thousand four hundred forty-five' WHERE a=14651; UPDATE t2 SET c='sixty-one thousand two hundred seven' WHERE a=14652; UPDATE t2 SET c='four thousand nine hundred thirty-four' WHERE a=14653; UPDATE t2 SET c='eighty-two thousand four hundred forty-five' WHERE a=14654; UPDATE t2 SET c='eighty-five thousand eight hundred ninety-five' WHERE a=14655; UPDATE t2 SET c='eighteen thousand five hundred fifty-three' WHERE a=14656; UPDATE t2 SET c='seven thousand two hundred fifty-six' WHERE a=14657; UPDATE t2 SET c='ninety-six thousand nine hundred forty' WHERE a=14658; UPDATE t2 SET c='ninety-nine thousand four hundred sixty-four' WHERE a=14659; UPDATE t2 SET c='seventy thousand eight hundred twenty-eight' WHERE a=14660; UPDATE t2 SET c='forty-nine thousand seven hundred eighty-four' WHERE a=14661; UPDATE t2 SET c='ninety-two thousand nine hundred ninety-five' WHERE a=14662; UPDATE t2 SET c='eighty-one thousand eight hundred ten' WHERE a=14663; UPDATE t2 SET c='thirteen thousand two hundred twenty-one' WHERE a=14664; UPDATE t2 SET c='seventy-three thousand three hundred fifty-eight' WHERE a=14665; UPDATE t2 SET c='ninety-five thousand one hundred eighty-three' WHERE a=14666; UPDATE t2 SET c='sixty-eight thousand two hundred seventy-three' WHERE a=14667; UPDATE t2 SET c='twenty-one thousand one hundred thirty-one' WHERE a=14668; UPDATE t2 SET c='ninety-six thousand one hundred fifty' WHERE a=14669; UPDATE t2 SET c='three thousand eight hundred sixty-nine' WHERE a=14670; UPDATE t2 SET c='eighty-two thousand eight hundred ninety-one' WHERE a=14671; UPDATE t2 SET c='seventy-four thousand five hundred eighty-one' WHERE a=14672; UPDATE t2 SET c='forty-nine thousand eight hundred twenty-one' WHERE a=14673; UPDATE t2 SET c='fifty-two thousand three hundred fourteen' WHERE a=14674; UPDATE t2 SET c='eighty-three thousand seven hundred thirteen' WHERE a=14675; UPDATE t2 SET c='eighty-seven thousand three hundred forty-seven' WHERE a=14676; UPDATE t2 SET c='thirteen thousand six hundred fifty-six' WHERE a=14677; UPDATE t2 SET c='twelve thousand four hundred eighty-one' WHERE a=14678; UPDATE t2 SET c='two thousand four hundred ninety-one' WHERE a=14679; UPDATE t2 SET c='forty-five thousand eight hundred eight' WHERE a=14680; UPDATE t2 SET c='forty-one thousand one hundred eleven' WHERE a=14681; UPDATE t2 SET c='twenty-two thousand four hundred eighty-three' WHERE a=14682; UPDATE t2 SET c='ninety-eight thousand five hundred fifteen' WHERE a=14683; UPDATE t2 SET c='thirty-three thousand four hundred one' WHERE a=14684; UPDATE t2 SET c='sixty thousand seven hundred eighty-three' WHERE a=14685; UPDATE t2 SET c='four thousand eight hundred sixty-six' WHERE a=14686; UPDATE t2 SET c='twenty-seven thousand five hundred eighty' WHERE a=14687; UPDATE t2 SET c='seventy-eight thousand one hundred thirteen' WHERE a=14688; UPDATE t2 SET c='eight thousand fourteen' WHERE a=14689; UPDATE t2 SET c='twenty-six thousand five hundred forty-four' WHERE a=14690; UPDATE t2 SET c='forty thousand two hundred forty' WHERE a=14691; UPDATE t2 SET c='twenty-two thousand five hundred fifty-two' WHERE a=14692; UPDATE t2 SET c='forty-nine thousand eight hundred ninety-two' WHERE a=14693; UPDATE t2 SET c='two thousand nine hundred forty-one' WHERE a=14694; UPDATE t2 SET c='eighty-four thousand seven hundred ninety-eight' WHERE a=14695; UPDATE t2 SET c='two thousand three hundred forty-eight' WHERE a=14696; UPDATE t2 SET c='thirty-five thousand five hundred' WHERE a=14697; UPDATE t2 SET c='forty thousand six hundred sixty-seven' WHERE a=14698; UPDATE t2 SET c='sixty-two thousand two hundred fifty-three' WHERE a=14699; UPDATE t2 SET c='eighty-one thousand eight hundred six' WHERE a=14700; UPDATE t2 SET c='seventy-five thousand four hundred four' WHERE a=14701; UPDATE t2 SET c='twenty-four thousand two hundred thirty-five' WHERE a=14702; UPDATE t2 SET c='eight thousand seven hundred twenty-nine' WHERE a=14703; UPDATE t2 SET c='forty-four thousand two hundred fifty-eight' WHERE a=14704; UPDATE t2 SET c='eighty-three thousand two hundred' WHERE a=14705; UPDATE t2 SET c='fifty-three thousand sixty-three' WHERE a=14706; UPDATE t2 SET c='eighty thousand four hundred seventy-six' WHERE a=14707; UPDATE t2 SET c='seven thousand seven hundred fifty-eight' WHERE a=14708; UPDATE t2 SET c='eighteen thousand six hundred thirty-seven' WHERE a=14709; UPDATE t2 SET c='eighty-three thousand one hundred eleven' WHERE a=14710; UPDATE t2 SET c='ninety-two thousand two hundred fifty-seven' WHERE a=14711; UPDATE t2 SET c='ninety thousand eight hundred sixty' WHERE a=14712; UPDATE t2 SET c='twelve thousand two hundred twenty-five' WHERE a=14713; UPDATE t2 SET c='fifty-seven thousand seven hundred forty-one' WHERE a=14714; UPDATE t2 SET c='ninety-three thousand four hundred thirty-one' WHERE a=14715; UPDATE t2 SET c='seventy-two thousand five hundred ninety-nine' WHERE a=14716; UPDATE t2 SET c='thirty-three thousand one hundred five' WHERE a=14717; UPDATE t2 SET c='eighty-seven thousand nine hundred twenty-one' WHERE a=14718; UPDATE t2 SET c='forty-six thousand eight hundred eighty-seven' WHERE a=14719; UPDATE t2 SET c='twenty-one thousand one hundred seventy-three' WHERE a=14720; UPDATE t2 SET c='fifty-six thousand two hundred fifty' WHERE a=14721; UPDATE t2 SET c='twelve thousand seven hundred eighty-four' WHERE a=14722; UPDATE t2 SET c='one thousand nine hundred twenty-nine' WHERE a=14723; UPDATE t2 SET c='seventy-nine thousand seven hundred seven' WHERE a=14724; UPDATE t2 SET c='fifty-seven thousand nine hundred ninety-one' WHERE a=14725; UPDATE t2 SET c='ninety-two thousand fifty-eight' WHERE a=14726; UPDATE t2 SET c='eighteen thousand eight hundred sixty' WHERE a=14727; UPDATE t2 SET c='nine thousand three hundred' WHERE a=14728; UPDATE t2 SET c='twenty-three thousand four hundred ninety-nine' WHERE a=14729; UPDATE t2 SET c='thirty thousand two hundred nineteen' WHERE a=14730; UPDATE t2 SET c='twenty-eight thousand eight hundred fifty-seven' WHERE a=14731; UPDATE t2 SET c='ninety-one thousand six hundred eleven' WHERE a=14732; UPDATE t2 SET c='seventy-two thousand five hundred fifty-four' WHERE a=14733; UPDATE t2 SET c='thirty-seven thousand five hundred thirty-eight' WHERE a=14734; UPDATE t2 SET c='seven thousand two hundred fifty-four' WHERE a=14735; UPDATE t2 SET c='forty-three thousand six hundred sixty-two' WHERE a=14736; UPDATE t2 SET c='ten thousand one hundred eighty-four' WHERE a=14737; UPDATE t2 SET c='thirty-nine thousand seven hundred nine' WHERE a=14738; UPDATE t2 SET c='seventy-seven thousand two hundred fifty-seven' WHERE a=14739; UPDATE t2 SET c='eighteen thousand six hundred nine' WHERE a=14740; UPDATE t2 SET c='thirty-four thousand six hundred sixty-six' WHERE a=14741; UPDATE t2 SET c='one hundred fourteen' WHERE a=14742; UPDATE t2 SET c='fifty-five thousand seven hundred ninety-six' WHERE a=14743; UPDATE t2 SET c='forty thousand five hundred seventy-nine' WHERE a=14744; UPDATE t2 SET c='eighty-nine thousand nine hundred six' WHERE a=14745; UPDATE t2 SET c='eighty-five thousand five hundred sixteen' WHERE a=14746; UPDATE t2 SET c='eighty-nine thousand seven hundred twenty-three' WHERE a=14747; UPDATE t2 SET c='forty-four thousand eight hundred seventy-five' WHERE a=14748; UPDATE t2 SET c='eighty-six thousand nine hundred thirty-six' WHERE a=14749; UPDATE t2 SET c='forty-eight thousand nine hundred thirteen' WHERE a=14750; UPDATE t2 SET c='thirty thousand two hundred sixty' WHERE a=14751; UPDATE t2 SET c='eighty thousand seven hundred eight' WHERE a=14752; UPDATE t2 SET c='seventy-five thousand eight hundred seventy-one' WHERE a=14753; UPDATE t2 SET c='eleven thousand five hundred fifty-nine' WHERE a=14754; UPDATE t2 SET c='twenty-two thousand ninety-eight' WHERE a=14755; UPDATE t2 SET c='seventy-two thousand seven hundred twenty-seven' WHERE a=14756; UPDATE t2 SET c='fifty thousand eight hundred twenty' WHERE a=14757; UPDATE t2 SET c='eighty-eight thousand five hundred seventy-three' WHERE a=14758; UPDATE t2 SET c='ninety-four thousand two hundred seventy-four' WHERE a=14759; UPDATE t2 SET c='thirty-two thousand nine hundred sixty-three' WHERE a=14760; UPDATE t2 SET c='thirty-six thousand two hundred seventy-six' WHERE a=14761; UPDATE t2 SET c='thirteen thousand three hundred twenty-five' WHERE a=14762; UPDATE t2 SET c='fifty-four thousand two hundred ninety-three' WHERE a=14763; UPDATE t2 SET c='thirty thousand eight hundred seventy-seven' WHERE a=14764; UPDATE t2 SET c='thirty-four thousand three hundred ninety-two' WHERE a=14765; UPDATE t2 SET c='eighty-one thousand six hundred one' WHERE a=14766; UPDATE t2 SET c='seventy thousand one hundred seventeen' WHERE a=14767; UPDATE t2 SET c='ninety-nine thousand six hundred fifty-eight' WHERE a=14768; UPDATE t2 SET c='eighty-three thousand five hundred eleven' WHERE a=14769; UPDATE t2 SET c='seventy-six thousand five hundred ninety-eight' WHERE a=14770; UPDATE t2 SET c='thirty-four thousand eight hundred sixty-six' WHERE a=14771; UPDATE t2 SET c='twenty-nine thousand three hundred sixty-six' WHERE a=14772; UPDATE t2 SET c='sixty-eight thousand nine hundred seventy-four' WHERE a=14773; UPDATE t2 SET c='one thousand two hundred forty-three' WHERE a=14774; UPDATE t2 SET c='thirty-five thousand two hundred sixty-eight' WHERE a=14775; UPDATE t2 SET c='twenty-three thousand eight hundred eighty-six' WHERE a=14776; UPDATE t2 SET c='ninety-four thousand two hundred sixty-three' WHERE a=14777; UPDATE t2 SET c='fifty-seven thousand six hundred seventy-four' WHERE a=14778; UPDATE t2 SET c='sixty-eight thousand eight hundred seventy-six' WHERE a=14779; UPDATE t2 SET c='thirty thousand one hundred sixty-seven' WHERE a=14780; UPDATE t2 SET c='forty-nine thousand seven hundred nine' WHERE a=14781; UPDATE t2 SET c='fifty-one thousand nine hundred fifty-five' WHERE a=14782; UPDATE t2 SET c='thirteen thousand eight hundred thirty-three' WHERE a=14783; UPDATE t2 SET c='fifteen thousand one hundred seventy-four' WHERE a=14784; UPDATE t2 SET c='thirty-five thousand four hundred thirty' WHERE a=14785; UPDATE t2 SET c='thirty-eight thousand five hundred forty-four' WHERE a=14786; UPDATE t2 SET c='seventy-one thousand one hundred ninety' WHERE a=14787; UPDATE t2 SET c='forty-three thousand three hundred forty-four' WHERE a=14788; UPDATE t2 SET c='sixty-three thousand thirty-eight' WHERE a=14789; UPDATE t2 SET c='twenty thousand seven hundred fifty-eight' WHERE a=14790; UPDATE t2 SET c='fifty-one thousand two hundred fifty-three' WHERE a=14791; UPDATE t2 SET c='twenty-nine thousand eight hundred sixty-two' WHERE a=14792; UPDATE t2 SET c='six thousand two hundred seventy-six' WHERE a=14793; UPDATE t2 SET c='forty thousand six hundred nine' WHERE a=14794; UPDATE t2 SET c='twenty-nine thousand six hundred one' WHERE a=14795; UPDATE t2 SET c='ninety-eight thousand two hundred forty-one' WHERE a=14796; UPDATE t2 SET c='sixty-eight thousand five hundred forty-seven' WHERE a=14797; UPDATE t2 SET c='two hundred twenty-eight' WHERE a=14798; UPDATE t2 SET c='fourteen thousand eight hundred forty-nine' WHERE a=14799; UPDATE t2 SET c='forty-nine thousand five hundred two' WHERE a=14800; UPDATE t2 SET c='sixty-eight thousand three hundred eighty-seven' WHERE a=14801; UPDATE t2 SET c='two thousand four hundred three' WHERE a=14802; UPDATE t2 SET c='fifty-six thousand two hundred seventy-five' WHERE a=14803; UPDATE t2 SET c='seventy-seven thousand two hundred twenty' WHERE a=14804; UPDATE t2 SET c='forty-two thousand five hundred thirty-four' WHERE a=14805; UPDATE t2 SET c='seventy-five thousand nine hundred sixty-one' WHERE a=14806; UPDATE t2 SET c='forty-nine thousand nine hundred sixteen' WHERE a=14807; UPDATE t2 SET c='fifty-seven thousand nine hundred one' WHERE a=14808; UPDATE t2 SET c='ninety-five thousand seven hundred ninety-four' WHERE a=14809; UPDATE t2 SET c='five thousand nineteen' WHERE a=14810; UPDATE t2 SET c='forty-one thousand three hundred sixty-six' WHERE a=14811; UPDATE t2 SET c='seventeen thousand four hundred eight' WHERE a=14812; UPDATE t2 SET c='thirty-five thousand two hundred sixteen' WHERE a=14813; UPDATE t2 SET c='seven thousand forty-four' WHERE a=14814; UPDATE t2 SET c='twenty-seven thousand one hundred forty-six' WHERE a=14815; UPDATE t2 SET c='seven thousand seven hundred eighty-two' WHERE a=14816; UPDATE t2 SET c='ninety-six thousand seven hundred fifty-two' WHERE a=14817; UPDATE t2 SET c='sixty-seven thousand seven hundred forty-two' WHERE a=14818; UPDATE t2 SET c='seventeen thousand seven hundred fifty-five' WHERE a=14819; UPDATE t2 SET c='seventeen thousand one hundred seventy-four' WHERE a=14820; UPDATE t2 SET c='fourteen thousand two hundred fifty-three' WHERE a=14821; UPDATE t2 SET c='sixty-nine thousand seven hundred thirty-seven' WHERE a=14822; UPDATE t2 SET c='seven thousand seven hundred ninety-eight' WHERE a=14823; UPDATE t2 SET c='ninety-two thousand six hundred eighteen' WHERE a=14824; UPDATE t2 SET c='eighty-five thousand eight hundred eighty-two' WHERE a=14825; UPDATE t2 SET c='eighty-five thousand three hundred fifty' WHERE a=14826; UPDATE t2 SET c='ninety thousand four hundred eight' WHERE a=14827; UPDATE t2 SET c='eight thousand three hundred forty-nine' WHERE a=14828; UPDATE t2 SET c='ten thousand four hundred six' WHERE a=14829; UPDATE t2 SET c='sixty-one thousand twenty' WHERE a=14830; UPDATE t2 SET c='sixty-seven thousand three hundred five' WHERE a=14831; UPDATE t2 SET c='twelve thousand eight' WHERE a=14832; UPDATE t2 SET c='twenty thousand seven hundred seventy' WHERE a=14833; UPDATE t2 SET c='thirteen thousand sixty-four' WHERE a=14834; UPDATE t2 SET c='seventy-one thousand six hundred eighty-one' WHERE a=14835; UPDATE t2 SET c='eighty-seven thousand five hundred sixty-six' WHERE a=14836; UPDATE t2 SET c='fifty-nine thousand seven hundred fifty-eight' WHERE a=14837; UPDATE t2 SET c='ninety-one thousand six hundred eighteen' WHERE a=14838; UPDATE t2 SET c='ninety-six thousand seven hundred sixty-five' WHERE a=14839; UPDATE t2 SET c='four thousand forty-two' WHERE a=14840; UPDATE t2 SET c='ninety-six thousand five hundred fifty-eight' WHERE a=14841; UPDATE t2 SET c='nine thousand nine hundred twenty-four' WHERE a=14842; UPDATE t2 SET c='fifty thousand two hundred nineteen' WHERE a=14843; UPDATE t2 SET c='ninety-two thousand three hundred seventy-eight' WHERE a=14844; UPDATE t2 SET c='fifteen thousand six hundred fourteen' WHERE a=14845; UPDATE t2 SET c='ninety-nine thousand one hundred thirty-eight' WHERE a=14846; UPDATE t2 SET c='thirty-one thousand five hundred seventy-three' WHERE a=14847; UPDATE t2 SET c='fifteen thousand forty-nine' WHERE a=14848; UPDATE t2 SET c='seventy-one thousand six hundred ninety-four' WHERE a=14849; UPDATE t2 SET c='eighty-nine thousand seven hundred ninety-nine' WHERE a=14850; UPDATE t2 SET c='three hundred twelve' WHERE a=14851; UPDATE t2 SET c='twenty-three thousand nine hundred thirty-nine' WHERE a=14852; UPDATE t2 SET c='eighty-six thousand fifty-six' WHERE a=14853; UPDATE t2 SET c='seventy-six thousand nine hundred eighty' WHERE a=14854; UPDATE t2 SET c='thirteen thousand seven hundred forty-three' WHERE a=14855; UPDATE t2 SET c='seventy-one thousand five hundred sixty-six' WHERE a=14856; UPDATE t2 SET c='one thousand fifty-three' WHERE a=14857; UPDATE t2 SET c='eighty-nine thousand three hundred twenty-eight' WHERE a=14858; UPDATE t2 SET c='sixty-two thousand seven hundred ninety-three' WHERE a=14859; UPDATE t2 SET c='twenty-five thousand five hundred ninety-five' WHERE a=14860; UPDATE t2 SET c='forty-nine thousand five hundred fifty-eight' WHERE a=14861; UPDATE t2 SET c='ninety-nine thousand seven hundred fourteen' WHERE a=14862; UPDATE t2 SET c='seven thousand thirty-five' WHERE a=14863; UPDATE t2 SET c='thirty-eight thousand four hundred sixty-four' WHERE a=14864; UPDATE t2 SET c='sixty-three thousand six hundred fifty-four' WHERE a=14865; UPDATE t2 SET c='fifty-nine thousand two hundred seventy-seven' WHERE a=14866; UPDATE t2 SET c='sixty-one thousand eight hundred twelve' WHERE a=14867; UPDATE t2 SET c='fifty-five thousand two hundred twelve' WHERE a=14868; UPDATE t2 SET c='ninety-two thousand three hundred sixty-three' WHERE a=14869; UPDATE t2 SET c='thirty-seven thousand thirty-nine' WHERE a=14870; UPDATE t2 SET c='twenty-five thousand eight hundred eighty-eight' WHERE a=14871; UPDATE t2 SET c='six thousand nine hundred seventy-one' WHERE a=14872; UPDATE t2 SET c='forty-nine thousand eight hundred twenty-six' WHERE a=14873; UPDATE t2 SET c='three thousand two hundred seventy-nine' WHERE a=14874; UPDATE t2 SET c='twelve thousand nine hundred forty-three' WHERE a=14875; UPDATE t2 SET c='thirteen thousand six hundred seventy-six' WHERE a=14876; UPDATE t2 SET c='sixteen thousand two hundred ninety-two' WHERE a=14877; UPDATE t2 SET c='eight thousand six hundred eighty' WHERE a=14878; UPDATE t2 SET c='four thousand five hundred four' WHERE a=14879; UPDATE t2 SET c='forty-seven thousand nine hundred seventy-nine' WHERE a=14880; UPDATE t2 SET c='sixty-nine thousand seven hundred thirty' WHERE a=14881; UPDATE t2 SET c='ninety-seven thousand seven hundred fifty-two' WHERE a=14882; UPDATE t2 SET c='eighty-five thousand five hundred nineteen' WHERE a=14883; UPDATE t2 SET c='seventy-nine thousand six hundred three' WHERE a=14884; UPDATE t2 SET c='seven thousand nine hundred twenty-two' WHERE a=14885; UPDATE t2 SET c='twenty-nine thousand four hundred fourteen' WHERE a=14886; UPDATE t2 SET c='fifty thousand seven hundred fifty-seven' WHERE a=14887; UPDATE t2 SET c='seventy-seven thousand sixty-six' WHERE a=14888; UPDATE t2 SET c='forty-six thousand six hundred eighty-two' WHERE a=14889; UPDATE t2 SET c='two thousand forty-one' WHERE a=14890; UPDATE t2 SET c='forty-six thousand two hundred twenty' WHERE a=14891; UPDATE t2 SET c='seventy-eight thousand nine hundred ninety-seven' WHERE a=14892; UPDATE t2 SET c='sixteen thousand three hundred sixty-four' WHERE a=14893; UPDATE t2 SET c='thirty-one thousand three hundred forty-two' WHERE a=14894; UPDATE t2 SET c='seventy-nine thousand one hundred ninety-five' WHERE a=14895; UPDATE t2 SET c='seventy-two thousand fifteen' WHERE a=14896; UPDATE t2 SET c='sixty-four thousand eight hundred ninety-seven' WHERE a=14897; UPDATE t2 SET c='fifty-three thousand two hundred fifty-four' WHERE a=14898; UPDATE t2 SET c='sixteen thousand six hundred nine' WHERE a=14899; UPDATE t2 SET c='fifty thousand two hundred thirty-eight' WHERE a=14900; UPDATE t2 SET c='ninety-two thousand six hundred ninety-three' WHERE a=14901; UPDATE t2 SET c='twenty-eight thousand nine hundred six' WHERE a=14902; UPDATE t2 SET c='forty-one thousand eight hundred fifty-nine' WHERE a=14903; UPDATE t2 SET c='thirty thousand nine hundred twenty-three' WHERE a=14904; UPDATE t2 SET c='eighty-eight thousand two hundred fifty-eight' WHERE a=14905; UPDATE t2 SET c='sixty-four thousand one hundred six' WHERE a=14906; UPDATE t2 SET c='nineteen thousand eight hundred thirty-seven' WHERE a=14907; UPDATE t2 SET c='twenty-four thousand eight hundred' WHERE a=14908; UPDATE t2 SET c='eighty-five thousand six hundred thirty-nine' WHERE a=14909; UPDATE t2 SET c='one thousand sixty-four' WHERE a=14910; UPDATE t2 SET c='forty-eight thousand eight hundred fourteen' WHERE a=14911; UPDATE t2 SET c='one thousand six hundred fifty-six' WHERE a=14912; UPDATE t2 SET c='forty-eight thousand seven hundred fifty-four' WHERE a=14913; UPDATE t2 SET c='twelve thousand five hundred fifty-two' WHERE a=14914; UPDATE t2 SET c='one thousand six hundred seventy-eight' WHERE a=14915; UPDATE t2 SET c='twenty-five thousand eight hundred forty-five' WHERE a=14916; UPDATE t2 SET c='ninety-five thousand one hundred forty-five' WHERE a=14917; UPDATE t2 SET c='thirty-one thousand fifty' WHERE a=14918; UPDATE t2 SET c='twelve thousand three hundred twenty' WHERE a=14919; UPDATE t2 SET c='forty thousand seven hundred twenty-nine' WHERE a=14920; UPDATE t2 SET c='twenty-five thousand five hundred seventy-seven' WHERE a=14921; UPDATE t2 SET c='one thousand six hundred ninety' WHERE a=14922; UPDATE t2 SET c='one thousand six hundred eighteen' WHERE a=14923; UPDATE t2 SET c='sixty-two thousand eight hundred ninety-five' WHERE a=14924; UPDATE t2 SET c='fifty-two thousand four hundred ninety-eight' WHERE a=14925; UPDATE t2 SET c='ninety-three thousand eight hundred ninety-three' WHERE a=14926; UPDATE t2 SET c='five thousand eighty-eight' WHERE a=14927; UPDATE t2 SET c='sixteen thousand two hundred sixty-three' WHERE a=14928; UPDATE t2 SET c='thirty-three thousand eight hundred twenty-nine' WHERE a=14929; UPDATE t2 SET c='fifteen thousand eight hundred forty' WHERE a=14930; UPDATE t2 SET c='twenty-five thousand seven hundred thirty-eight' WHERE a=14931; UPDATE t2 SET c='twelve thousand six hundred twenty-nine' WHERE a=14932; UPDATE t2 SET c='twenty-two thousand one hundred five' WHERE a=14933; UPDATE t2 SET c='fifty-nine thousand four hundred fifty-three' WHERE a=14934; UPDATE t2 SET c='sixty-six thousand nine hundred forty-nine' WHERE a=14935; UPDATE t2 SET c='thirty-six thousand four hundred fifty-one' WHERE a=14936; UPDATE t2 SET c='thirteen thousand twelve' WHERE a=14937; UPDATE t2 SET c='ninety-six thousand eight hundred' WHERE a=14938; UPDATE t2 SET c='fifty-two thousand four hundred fifty-three' WHERE a=14939; UPDATE t2 SET c='sixty-eight thousand six hundred ten' WHERE a=14940; UPDATE t2 SET c='thirty-seven thousand nine hundred thirty-nine' WHERE a=14941; UPDATE t2 SET c='eighty-four thousand six hundred nine' WHERE a=14942; UPDATE t2 SET c='eighty-six thousand one hundred seventy-eight' WHERE a=14943; UPDATE t2 SET c='ninety-six thousand six hundred forty-six' WHERE a=14944; UPDATE t2 SET c='twenty-seven thousand one hundred sixty-eight' WHERE a=14945; UPDATE t2 SET c='eighty-four thousand one hundred eighty-eight' WHERE a=14946; UPDATE t2 SET c='eighteen thousand three hundred twenty-nine' WHERE a=14947; UPDATE t2 SET c='ninety-two thousand ninety-two' WHERE a=14948; UPDATE t2 SET c='three thousand nine hundred forty-one' WHERE a=14949; UPDATE t2 SET c='sixty-one thousand seven hundred ninety-eight' WHERE a=14950; UPDATE t2 SET c='thirty-nine thousand nine hundred thirty' WHERE a=14951; UPDATE t2 SET c='forty-five thousand three hundred thirteen' WHERE a=14952; UPDATE t2 SET c='forty-four thousand eight hundred seventy-six' WHERE a=14953; UPDATE t2 SET c='forty-two thousand seven hundred sixty' WHERE a=14954; UPDATE t2 SET c='forty-five thousand two hundred eighty-nine' WHERE a=14955; UPDATE t2 SET c='sixty-one thousand seven hundred ninety' WHERE a=14956; UPDATE t2 SET c='eighty-three thousand nine hundred twenty-eight' WHERE a=14957; UPDATE t2 SET c='eight hundred fifty-two' WHERE a=14958; UPDATE t2 SET c='thirty-nine thousand three hundred thirty-six' WHERE a=14959; UPDATE t2 SET c='eleven thousand six hundred seven' WHERE a=14960; UPDATE t2 SET c='seven thousand four hundred seventy-one' WHERE a=14961; UPDATE t2 SET c='seventy-one thousand one hundred sixty-seven' WHERE a=14962; UPDATE t2 SET c='forty-one thousand forty-nine' WHERE a=14963; UPDATE t2 SET c='seventy-one thousand four hundred seventeen' WHERE a=14964; UPDATE t2 SET c='fifty-three thousand two hundred forty-eight' WHERE a=14965; UPDATE t2 SET c='seventy-two thousand four hundred eighty-three' WHERE a=14966; UPDATE t2 SET c='ninety-eight thousand six hundred fifty-seven' WHERE a=14967; UPDATE t2 SET c='eighty-four thousand eight hundred eighty-four' WHERE a=14968; UPDATE t2 SET c='forty-four thousand five hundred five' WHERE a=14969; UPDATE t2 SET c='ninety-four thousand one hundred seventy-two' WHERE a=14970; UPDATE t2 SET c='fifteen thousand nine hundred forty-eight' WHERE a=14971; UPDATE t2 SET c='ninety-five thousand two hundred eighty-nine' WHERE a=14972; UPDATE t2 SET c='thirty thousand two hundred seventy-two' WHERE a=14973; UPDATE t2 SET c='eighty-eight thousand six hundred eighty' WHERE a=14974; UPDATE t2 SET c='fifty-one thousand seven hundred five' WHERE a=14975; UPDATE t2 SET c='ninety-one thousand seven hundred sixty-five' WHERE a=14976; UPDATE t2 SET c='ninety-five thousand nine hundred ninety-one' WHERE a=14977; UPDATE t2 SET c='twelve thousand six hundred ninety-one' WHERE a=14978; UPDATE t2 SET c='fifty-three thousand two hundred seventy-two' WHERE a=14979; UPDATE t2 SET c='forty-one thousand three hundred fifty' WHERE a=14980; UPDATE t2 SET c='eight thousand five hundred sixty-two' WHERE a=14981; UPDATE t2 SET c='seventeen thousand eight hundred forty-six' WHERE a=14982; UPDATE t2 SET c='thirty-one thousand six hundred thirty' WHERE a=14983; UPDATE t2 SET c='twenty-five thousand nine hundred eighty-five' WHERE a=14984; UPDATE t2 SET c='ninety-five thousand two hundred twenty-five' WHERE a=14985; UPDATE t2 SET c='eighty-two thousand seven hundred ten' WHERE a=14986; UPDATE t2 SET c='five thousand three hundred twenty-five' WHERE a=14987; UPDATE t2 SET c='forty-eight thousand eight hundred seventy-eight' WHERE a=14988; UPDATE t2 SET c='forty-eight thousand eight hundred seventy-five' WHERE a=14989; UPDATE t2 SET c='six thousand one hundred ninety-six' WHERE a=14990; UPDATE t2 SET c='sixteen thousand fifty-five' WHERE a=14991; UPDATE t2 SET c='ninety-one thousand two hundred forty' WHERE a=14992; UPDATE t2 SET c='eighty-nine thousand three hundred forty-nine' WHERE a=14993; UPDATE t2 SET c='thirty-four thousand three hundred forty-six' WHERE a=14994; UPDATE t2 SET c='fifty thousand three hundred seventy-six' WHERE a=14995; UPDATE t2 SET c='eleven thousand one hundred sixty-seven' WHERE a=14996; UPDATE t2 SET c='forty-three thousand seventy-nine' WHERE a=14997; UPDATE t2 SET c='thirty-one thousand four hundred fourteen' WHERE a=14998; UPDATE t2 SET c='forty-one thousand eight hundred forty-three' WHERE a=14999; UPDATE t2 SET c='eighty-six thousand four hundred forty-one' WHERE a=15000; UPDATE t2 SET c='eight thousand two hundred four' WHERE a=15001; UPDATE t2 SET c='nineteen thousand one hundred eighty' WHERE a=15002; UPDATE t2 SET c='ninety-two thousand four hundred fifty-four' WHERE a=15003; UPDATE t2 SET c='twenty-one thousand three hundred fourteen' WHERE a=15004; UPDATE t2 SET c='eighty-five thousand three hundred thirty-four' WHERE a=15005; UPDATE t2 SET c='ninety-three thousand three hundred thirty-nine' WHERE a=15006; UPDATE t2 SET c='forty-one thousand one hundred thirty-six' WHERE a=15007; UPDATE t2 SET c='sixty thousand six hundred twenty-five' WHERE a=15008; UPDATE t2 SET c='forty-three thousand eight hundred thirty-three' WHERE a=15009; UPDATE t2 SET c='forty-six thousand one hundred sixty-four' WHERE a=15010; UPDATE t2 SET c='sixty-five thousand two hundred forty-five' WHERE a=15011; UPDATE t2 SET c='thirty thousand four hundred fifty-one' WHERE a=15012; UPDATE t2 SET c='fifty-two thousand nine hundred twenty-seven' WHERE a=15013; UPDATE t2 SET c='ninety thousand' WHERE a=15014; UPDATE t2 SET c='forty-seven thousand eight hundred eighty-one' WHERE a=15015; UPDATE t2 SET c='sixteen thousand nine hundred twelve' WHERE a=15016; UPDATE t2 SET c='seven thousand two hundred ten' WHERE a=15017; UPDATE t2 SET c='forty-nine thousand three hundred forty-two' WHERE a=15018; UPDATE t2 SET c='thirty-two thousand six hundred thirty-two' WHERE a=15019; UPDATE t2 SET c='nineteen thousand one hundred forty-five' WHERE a=15020; UPDATE t2 SET c='twenty-three thousand two hundred seventeen' WHERE a=15021; UPDATE t2 SET c='thirteen thousand five hundred twenty-three' WHERE a=15022; UPDATE t2 SET c='thirty-seven thousand four hundred twenty-one' WHERE a=15023; UPDATE t2 SET c='thirty-one thousand two hundred eighty-six' WHERE a=15024; UPDATE t2 SET c='ninety thousand five hundred fifty' WHERE a=15025; UPDATE t2 SET c='sixty-five thousand one hundred forty-three' WHERE a=15026; UPDATE t2 SET c='seventy-eight thousand five hundred sixty-one' WHERE a=15027; UPDATE t2 SET c='twenty-one thousand nine hundred fifty' WHERE a=15028; UPDATE t2 SET c='eighty-nine thousand twenty-seven' WHERE a=15029; UPDATE t2 SET c='fifty thousand one hundred fifty-eight' WHERE a=15030; UPDATE t2 SET c='four thousand sixty-seven' WHERE a=15031; UPDATE t2 SET c='forty-one thousand eight hundred twenty-one' WHERE a=15032; UPDATE t2 SET c='eleven thousand nine hundred sixty-six' WHERE a=15033; UPDATE t2 SET c='twenty-two thousand seven hundred seventy-nine' WHERE a=15034; UPDATE t2 SET c='forty-two thousand five hundred thirty-one' WHERE a=15035; UPDATE t2 SET c='fifty-one thousand three hundred four' WHERE a=15036; UPDATE t2 SET c='thirty-six thousand seventy-three' WHERE a=15037; UPDATE t2 SET c='thirteen thousand one hundred thirty-nine' WHERE a=15038; UPDATE t2 SET c='fifty-six thousand seven hundred nineteen' WHERE a=15039; UPDATE t2 SET c='twenty-six thousand three hundred forty-two' WHERE a=15040; UPDATE t2 SET c='seventy-eight thousand two hundred forty-three' WHERE a=15041; UPDATE t2 SET c='thirty thousand four hundred eighty-four' WHERE a=15042; UPDATE t2 SET c='forty-four thousand six hundred sixty-two' WHERE a=15043; UPDATE t2 SET c='ten thousand seven hundred ninety' WHERE a=15044; UPDATE t2 SET c='sixty-three thousand three hundred ninety-six' WHERE a=15045; UPDATE t2 SET c='thirty-seven thousand seven hundred forty-eight' WHERE a=15046; UPDATE t2 SET c='sixty thousand nine hundred twelve' WHERE a=15047; UPDATE t2 SET c='sixty-nine thousand one hundred sixty-six' WHERE a=15048; UPDATE t2 SET c='ninety-eight thousand four hundred eighty-nine' WHERE a=15049; UPDATE t2 SET c='seventy thousand two hundred twenty-three' WHERE a=15050; UPDATE t2 SET c='sixty-one thousand eight hundred seventy' WHERE a=15051; UPDATE t2 SET c='seventy-nine thousand seven hundred seventy-nine' WHERE a=15052; UPDATE t2 SET c='eighty thousand three hundred sixty-two' WHERE a=15053; UPDATE t2 SET c='twenty-two thousand seven hundred one' WHERE a=15054; UPDATE t2 SET c='forty-nine thousand one hundred sixty-nine' WHERE a=15055; UPDATE t2 SET c='sixty-one thousand six hundred eleven' WHERE a=15056; UPDATE t2 SET c='twenty-one thousand three hundred forty-two' WHERE a=15057; UPDATE t2 SET c='eight thousand four hundred sixty-nine' WHERE a=15058; UPDATE t2 SET c='fifteen thousand one hundred seventeen' WHERE a=15059; UPDATE t2 SET c='fifty-seven thousand three hundred twenty-six' WHERE a=15060; UPDATE t2 SET c='twenty-two thousand eight hundred fourteen' WHERE a=15061; UPDATE t2 SET c='twenty-six thousand five hundred sixty-nine' WHERE a=15062; UPDATE t2 SET c='sixty-four thousand one hundred ten' WHERE a=15063; UPDATE t2 SET c='forty-four thousand three hundred forty-five' WHERE a=15064; UPDATE t2 SET c='forty-eight thousand seven hundred seventy-six' WHERE a=15065; UPDATE t2 SET c='forty-five thousand eight hundred ninety-one' WHERE a=15066; UPDATE t2 SET c='sixty-six thousand one hundred forty-three' WHERE a=15067; UPDATE t2 SET c='seventy-six thousand four hundred forty-four' WHERE a=15068; UPDATE t2 SET c='nineteen thousand eight hundred eighty-seven' WHERE a=15069; UPDATE t2 SET c='forty-nine thousand nine hundred thirty-one' WHERE a=15070; UPDATE t2 SET c='sixty-nine thousand seven hundred eighty-eight' WHERE a=15071; UPDATE t2 SET c='twenty-seven thousand eight hundred eleven' WHERE a=15072; UPDATE t2 SET c='forty-three thousand four hundred fifty-four' WHERE a=15073; UPDATE t2 SET c='thirty-three thousand seven hundred eighty-nine' WHERE a=15074; UPDATE t2 SET c='ninety-four thousand five' WHERE a=15075; UPDATE t2 SET c='seventy-four thousand five hundred sixty-eight' WHERE a=15076; UPDATE t2 SET c='five hundred seventy' WHERE a=15077; UPDATE t2 SET c='forty-three thousand four hundred fifty-seven' WHERE a=15078; UPDATE t2 SET c='eighty-four thousand sixty-eight' WHERE a=15079; UPDATE t2 SET c='ninety-nine thousand seven hundred sixty-seven' WHERE a=15080; UPDATE t2 SET c='three thousand six hundred sixty-eight' WHERE a=15081; UPDATE t2 SET c='twenty-eight thousand seven hundred three' WHERE a=15082; UPDATE t2 SET c='seventy-five thousand seven hundred ninety-three' WHERE a=15083; UPDATE t2 SET c='eight thousand five hundred ninety-eight' WHERE a=15084; UPDATE t2 SET c='eighty-one thousand twenty' WHERE a=15085; UPDATE t2 SET c='eighty-seven thousand six hundred fifty-one' WHERE a=15086; UPDATE t2 SET c='nine thousand three hundred fifteen' WHERE a=15087; UPDATE t2 SET c='nineteen thousand four hundred forty-eight' WHERE a=15088; UPDATE t2 SET c='twenty-three thousand eight hundred forty-one' WHERE a=15089; UPDATE t2 SET c='eighty-one thousand two hundred three' WHERE a=15090; UPDATE t2 SET c='eighty-two thousand two hundred sixty-five' WHERE a=15091; UPDATE t2 SET c='fourteen thousand three hundred eighty-five' WHERE a=15092; UPDATE t2 SET c='sixty-six thousand seven hundred twenty-six' WHERE a=15093; UPDATE t2 SET c='two hundred eight' WHERE a=15094; UPDATE t2 SET c='forty thousand fifty-four' WHERE a=15095; UPDATE t2 SET c='eighty-three thousand seven hundred thirty-two' WHERE a=15096; UPDATE t2 SET c='seventy-four thousand six hundred nine' WHERE a=15097; UPDATE t2 SET c='fifteen thousand six hundred fifty-nine' WHERE a=15098; UPDATE t2 SET c='fifty-three thousand eight hundred twenty-five' WHERE a=15099; UPDATE t2 SET c='eighteen thousand six hundred three' WHERE a=15100; UPDATE t2 SET c='eighty-eight thousand three hundred six' WHERE a=15101; UPDATE t2 SET c='fifty thousand two hundred twenty-eight' WHERE a=15102; UPDATE t2 SET c='fifty-five thousand seven hundred ninety-four' WHERE a=15103; UPDATE t2 SET c='eighty-four thousand one hundred seventeen' WHERE a=15104; UPDATE t2 SET c='six thousand nine hundred eighty-six' WHERE a=15105; UPDATE t2 SET c='seventy-four thousand five hundred forty' WHERE a=15106; UPDATE t2 SET c='thirty-five thousand three hundred forty-eight' WHERE a=15107; UPDATE t2 SET c='ninety thousand three hundred twenty-two' WHERE a=15108; UPDATE t2 SET c='forty-nine thousand nine hundred twelve' WHERE a=15109; UPDATE t2 SET c='fifty-five thousand three hundred eight' WHERE a=15110; UPDATE t2 SET c='sixty-six thousand seven hundred forty-four' WHERE a=15111; UPDATE t2 SET c='seventy thousand seven hundred twenty-five' WHERE a=15112; UPDATE t2 SET c='ninety-seven thousand nine hundred seventy-one' WHERE a=15113; UPDATE t2 SET c='eighteen thousand eight hundred six' WHERE a=15114; UPDATE t2 SET c='forty-seven thousand six hundred fifty-six' WHERE a=15115; UPDATE t2 SET c='forty-seven thousand five hundred sixteen' WHERE a=15116; UPDATE t2 SET c='thirty-two thousand three hundred sixteen' WHERE a=15117; UPDATE t2 SET c='eight thousand three hundred ninety-three' WHERE a=15118; UPDATE t2 SET c='sixteen thousand two hundred seventy-eight' WHERE a=15119; UPDATE t2 SET c='ninety-nine thousand four hundred ten' WHERE a=15120; UPDATE t2 SET c='forty thousand six hundred sixty-four' WHERE a=15121; UPDATE t2 SET c='seventeen thousand one hundred fifty-one' WHERE a=15122; UPDATE t2 SET c='forty-five thousand two hundred seventy-three' WHERE a=15123; UPDATE t2 SET c='ninety-seven thousand one hundred seventy-nine' WHERE a=15124; UPDATE t2 SET c='fifty-eight thousand three' WHERE a=15125; UPDATE t2 SET c='fifty-seven thousand three hundred thirty-nine' WHERE a=15126; UPDATE t2 SET c='nineteen thousand eight hundred fourteen' WHERE a=15127; UPDATE t2 SET c='sixty-seven thousand nine hundred eighty-two' WHERE a=15128; UPDATE t2 SET c='ninety-two thousand eight hundred fifty-nine' WHERE a=15129; UPDATE t2 SET c='fifty-one thousand one hundred eighty-three' WHERE a=15130; UPDATE t2 SET c='ninety thousand fifty-one' WHERE a=15131; UPDATE t2 SET c='fifty-one thousand five hundred thirty-one' WHERE a=15132; UPDATE t2 SET c='twenty thousand eight hundred twenty-three' WHERE a=15133; UPDATE t2 SET c='thirty-four thousand four hundred seventeen' WHERE a=15134; UPDATE t2 SET c='eighty-five thousand two hundred six' WHERE a=15135; UPDATE t2 SET c='forty-one thousand two hundred twenty-nine' WHERE a=15136; UPDATE t2 SET c='seven thousand two hundred sixteen' WHERE a=15137; UPDATE t2 SET c='eighty-three thousand five hundred sixty' WHERE a=15138; UPDATE t2 SET c='fifty-two thousand six hundred forty-four' WHERE a=15139; UPDATE t2 SET c='ninety-nine thousand three hundred forty-three' WHERE a=15140; UPDATE t2 SET c='one thousand six hundred thirty-two' WHERE a=15141; UPDATE t2 SET c='ninety-five thousand nine hundred seventy-eight' WHERE a=15142; UPDATE t2 SET c='thirty-six thousand six hundred thirty-seven' WHERE a=15143; UPDATE t2 SET c='thirty thousand nine hundred fifty-four' WHERE a=15144; UPDATE t2 SET c='thirty-two thousand two hundred fifty-four' WHERE a=15145; UPDATE t2 SET c='twenty-six thousand five hundred eighty-three' WHERE a=15146; UPDATE t2 SET c='sixty-three thousand three hundred six' WHERE a=15147; UPDATE t2 SET c='eighty-three thousand four hundred eighteen' WHERE a=15148; UPDATE t2 SET c='fifty-two thousand nine hundred fifty-eight' WHERE a=15149; UPDATE t2 SET c='one thousand four hundred fifty-six' WHERE a=15150; UPDATE t2 SET c='eight thousand five hundred ninety-one' WHERE a=15151; UPDATE t2 SET c='ninety-five thousand seven hundred twenty-one' WHERE a=15152; UPDATE t2 SET c='eighty-seven thousand eight hundred forty' WHERE a=15153; UPDATE t2 SET c='fifty-four thousand one hundred forty-one' WHERE a=15154; UPDATE t2 SET c='eighty-nine thousand five hundred seven' WHERE a=15155; UPDATE t2 SET c='four thousand eighty' WHERE a=15156; UPDATE t2 SET c='eighty-eight thousand five hundred two' WHERE a=15157; UPDATE t2 SET c='thirty-three thousand six hundred forty' WHERE a=15158; UPDATE t2 SET c='six thousand eight hundred thirty-two' WHERE a=15159; UPDATE t2 SET c='thirty-two thousand seven hundred one' WHERE a=15160; UPDATE t2 SET c='sixty thousand three hundred thirteen' WHERE a=15161; UPDATE t2 SET c='sixty-six thousand three hundred seventy-eight' WHERE a=15162; UPDATE t2 SET c='sixty-eight thousand seven hundred sixty-two' WHERE a=15163; UPDATE t2 SET c='forty-three thousand one hundred nine' WHERE a=15164; UPDATE t2 SET c='ninety-six thousand four hundred nine' WHERE a=15165; UPDATE t2 SET c='sixty-nine thousand six hundred seventy-three' WHERE a=15166; UPDATE t2 SET c='fifty-one thousand six hundred thirty-four' WHERE a=15167; UPDATE t2 SET c='seventy thousand six hundred forty-seven' WHERE a=15168; UPDATE t2 SET c='seventeen thousand six hundred eighty-seven' WHERE a=15169; UPDATE t2 SET c='eight thousand twenty-six' WHERE a=15170; UPDATE t2 SET c='ninety-nine thousand nine hundred ninety-three' WHERE a=15171; UPDATE t2 SET c='sixty-seven thousand thirty-six' WHERE a=15172; UPDATE t2 SET c='twenty-six thousand fourteen' WHERE a=15173; UPDATE t2 SET c='eighty-four thousand forty-four' WHERE a=15174; UPDATE t2 SET c='thirteen thousand eight hundred forty-six' WHERE a=15175; UPDATE t2 SET c='ninety-two thousand forty-nine' WHERE a=15176; UPDATE t2 SET c='twenty-seven thousand nine hundred eighty-three' WHERE a=15177; UPDATE t2 SET c='eighty-two thousand six hundred ninety' WHERE a=15178; UPDATE t2 SET c='fifty-seven thousand thirty-nine' WHERE a=15179; UPDATE t2 SET c='twenty-two thousand ninety-seven' WHERE a=15180; UPDATE t2 SET c='sixty-seven thousand nine hundred eighty-five' WHERE a=15181; UPDATE t2 SET c='thirty thousand eight hundred fifty-one' WHERE a=15182; UPDATE t2 SET c='three thousand five hundred ninety-two' WHERE a=15183; UPDATE t2 SET c='sixty-three thousand seven hundred forty-five' WHERE a=15184; UPDATE t2 SET c='seventy-three thousand three hundred eighty-one' WHERE a=15185; UPDATE t2 SET c='sixty-six thousand one hundred thirty-nine' WHERE a=15186; UPDATE t2 SET c='fifty-one thousand nine hundred forty-one' WHERE a=15187; UPDATE t2 SET c='fifteen thousand two hundred eighty-five' WHERE a=15188; UPDATE t2 SET c='one thousand nine hundred fifty-four' WHERE a=15189; UPDATE t2 SET c='fifty-eight thousand four hundred eighty-seven' WHERE a=15190; UPDATE t2 SET c='ninety-nine thousand six hundred ninety-one' WHERE a=15191; UPDATE t2 SET c='twenty-one thousand four hundred fourteen' WHERE a=15192; UPDATE t2 SET c='twenty-eight thousand one hundred fifty-five' WHERE a=15193; UPDATE t2 SET c='thirty thousand two hundred sixty-four' WHERE a=15194; UPDATE t2 SET c='eighty-five thousand eight hundred thirty-five' WHERE a=15195; UPDATE t2 SET c='eight thousand one hundred eighty-four' WHERE a=15196; UPDATE t2 SET c='ninety-eight thousand four hundred thirty' WHERE a=15197; UPDATE t2 SET c='fifteen thousand two hundred ninety-nine' WHERE a=15198; UPDATE t2 SET c='thirty-four thousand five hundred thirty-two' WHERE a=15199; UPDATE t2 SET c='sixty-seven thousand seven hundred twenty-three' WHERE a=15200; UPDATE t2 SET c='eighty thousand one hundred fifty-eight' WHERE a=15201; UPDATE t2 SET c='forty-five thousand two hundred ninety-three' WHERE a=15202; UPDATE t2 SET c='eighty-four thousand four hundred sixty-six' WHERE a=15203; UPDATE t2 SET c='fourteen thousand four hundred eighty-four' WHERE a=15204; UPDATE t2 SET c='twenty-seven thousand eighty' WHERE a=15205; UPDATE t2 SET c='seventy-three thousand two hundred thirty-five' WHERE a=15206; UPDATE t2 SET c='nine thousand seven hundred two' WHERE a=15207; UPDATE t2 SET c='fifty-five thousand eight hundred forty-six' WHERE a=15208; UPDATE t2 SET c='twenty-eight thousand five hundred seventy-four' WHERE a=15209; UPDATE t2 SET c='thirty-eight thousand eight hundred nine' WHERE a=15210; UPDATE t2 SET c='fifty-two thousand four hundred sixty-three' WHERE a=15211; UPDATE t2 SET c='eight thousand five hundred seven' WHERE a=15212; UPDATE t2 SET c='seventy thousand eight hundred fifty-five' WHERE a=15213; UPDATE t2 SET c='fifty-six thousand six hundred fifty-five' WHERE a=15214; UPDATE t2 SET c='fifty-nine thousand nine hundred twenty-one' WHERE a=15215; UPDATE t2 SET c='thirteen thousand nine hundred forty-one' WHERE a=15216; UPDATE t2 SET c='thirty-three thousand seventeen' WHERE a=15217; UPDATE t2 SET c='eighty-nine thousand three hundred' WHERE a=15218; UPDATE t2 SET c='forty-nine thousand six hundred sixty-eight' WHERE a=15219; UPDATE t2 SET c='sixty-nine thousand one hundred nineteen' WHERE a=15220; UPDATE t2 SET c='thirty-eight thousand one hundred two' WHERE a=15221; UPDATE t2 SET c='ninety-six thousand one hundred fifteen' WHERE a=15222; UPDATE t2 SET c='ninety-one thousand seven hundred seventy-one' WHERE a=15223; UPDATE t2 SET c='thirty-six thousand one hundred ninety-six' WHERE a=15224; UPDATE t2 SET c='twenty-seven thousand four hundred thirty-nine' WHERE a=15225; UPDATE t2 SET c='seventy-three thousand three hundred thirty-four' WHERE a=15226; UPDATE t2 SET c='sixteen thousand six hundred sixty-nine' WHERE a=15227; UPDATE t2 SET c='fifty-two thousand nine hundred thirty-two' WHERE a=15228; UPDATE t2 SET c='ten thousand one hundred twenty-nine' WHERE a=15229; UPDATE t2 SET c='seventy-seven thousand seven hundred fourteen' WHERE a=15230; UPDATE t2 SET c='ninety-nine thousand one hundred fifty-two' WHERE a=15231; UPDATE t2 SET c='seventy-five thousand three hundred forty' WHERE a=15232; UPDATE t2 SET c='fifty-six thousand nine hundred four' WHERE a=15233; UPDATE t2 SET c='twelve thousand five hundred thirty-nine' WHERE a=15234; UPDATE t2 SET c='eighty-two thousand nine hundred seventy-two' WHERE a=15235; UPDATE t2 SET c='ninety-five thousand nine hundred thirty-six' WHERE a=15236; UPDATE t2 SET c='fifty thousand two hundred eight' WHERE a=15237; UPDATE t2 SET c='thirteen thousand eight hundred seventy-six' WHERE a=15238; UPDATE t2 SET c='six thousand three hundred twelve' WHERE a=15239; UPDATE t2 SET c='sixty-six thousand eight hundred seventy' WHERE a=15240; UPDATE t2 SET c='twenty-four thousand five hundred eighty-three' WHERE a=15241; UPDATE t2 SET c='forty thousand thirty-seven' WHERE a=15242; UPDATE t2 SET c='ninety-eight thousand thirty-one' WHERE a=15243; UPDATE t2 SET c='seven thousand seven hundred twenty-two' WHERE a=15244; UPDATE t2 SET c='ninety-eight thousand four hundred twenty-nine' WHERE a=15245; UPDATE t2 SET c='thirty-three thousand nine hundred ninety-six' WHERE a=15246; UPDATE t2 SET c='twenty-eight thousand six hundred fifty-four' WHERE a=15247; UPDATE t2 SET c='seventy-eight thousand two hundred thirty-three' WHERE a=15248; UPDATE t2 SET c='sixty-five thousand eight hundred fifty-eight' WHERE a=15249; UPDATE t2 SET c='ninety-two thousand two hundred thirty-nine' WHERE a=15250; UPDATE t2 SET c='thirty-seven thousand eight hundred forty-four' WHERE a=15251; UPDATE t2 SET c='forty-six thousand four hundred forty-six' WHERE a=15252; UPDATE t2 SET c='ninety thousand five hundred thirty-nine' WHERE a=15253; UPDATE t2 SET c='twenty-eight thousand two hundred ninety-five' WHERE a=15254; UPDATE t2 SET c='fifty-three thousand three hundred thirty-one' WHERE a=15255; UPDATE t2 SET c='twelve thousand six hundred eighty' WHERE a=15256; UPDATE t2 SET c='seventeen thousand eight hundred twenty-eight' WHERE a=15257; UPDATE t2 SET c='sixty thousand nine hundred twelve' WHERE a=15258; UPDATE t2 SET c='forty-seven thousand two hundred sixty-seven' WHERE a=15259; UPDATE t2 SET c='seventy-two thousand three hundred seventy-two' WHERE a=15260; UPDATE t2 SET c='forty-four thousand one hundred ninety-four' WHERE a=15261; UPDATE t2 SET c='thirty-four thousand nine hundred thirty-three' WHERE a=15262; UPDATE t2 SET c='fifty-five thousand four hundred ninety-three' WHERE a=15263; UPDATE t2 SET c='sixty-two thousand five hundred forty-three' WHERE a=15264; UPDATE t2 SET c='sixty-five thousand one hundred twenty-two' WHERE a=15265; UPDATE t2 SET c='forty-six thousand two hundred sixty-two' WHERE a=15266; UPDATE t2 SET c='fifty-three thousand eight hundred fourteen' WHERE a=15267; UPDATE t2 SET c='sixty thousand four hundred twenty-nine' WHERE a=15268; UPDATE t2 SET c='sixty-four thousand three hundred seven' WHERE a=15269; UPDATE t2 SET c='eighty-three thousand one hundred ninety-six' WHERE a=15270; UPDATE t2 SET c='forty-one thousand seven hundred eleven' WHERE a=15271; UPDATE t2 SET c='ninety-eight thousand one hundred forty-one' WHERE a=15272; UPDATE t2 SET c='thirty-six thousand one hundred fifty-two' WHERE a=15273; UPDATE t2 SET c='twenty-seven thousand eight hundred forty-two' WHERE a=15274; UPDATE t2 SET c='thirty thousand six hundred thirty-five' WHERE a=15275; UPDATE t2 SET c='fifty-two thousand seven hundred forty-one' WHERE a=15276; UPDATE t2 SET c='twenty thousand six hundred ninety-three' WHERE a=15277; UPDATE t2 SET c='ninety-three thousand three hundred thirty-three' WHERE a=15278; UPDATE t2 SET c='nine thousand two hundred forty-four' WHERE a=15279; UPDATE t2 SET c='thirty-five thousand nine hundred fifty-nine' WHERE a=15280; UPDATE t2 SET c='fifty-six thousand seven hundred ninety-three' WHERE a=15281; UPDATE t2 SET c='seventy thousand nine hundred twenty-one' WHERE a=15282; UPDATE t2 SET c='fifty-four thousand two hundred thirty-nine' WHERE a=15283; UPDATE t2 SET c='ninety-two thousand seven hundred forty' WHERE a=15284; UPDATE t2 SET c='ninety-eight thousand three hundred four' WHERE a=15285; UPDATE t2 SET c='twenty-two thousand two hundred eighty-eight' WHERE a=15286; UPDATE t2 SET c='twenty-six thousand three hundred seventy-one' WHERE a=15287; UPDATE t2 SET c='sixty-five thousand three hundred forty-four' WHERE a=15288; UPDATE t2 SET c='seventy-one thousand three hundred forty-four' WHERE a=15289; UPDATE t2 SET c='forty-five thousand one hundred seven' WHERE a=15290; UPDATE t2 SET c='ten thousand four hundred sixty-eight' WHERE a=15291; UPDATE t2 SET c='thirty-two thousand six hundred forty-four' WHERE a=15292; UPDATE t2 SET c='sixty-five thousand five hundred fifty-two' WHERE a=15293; UPDATE t2 SET c='ninety-one thousand six hundred thirty-six' WHERE a=15294; UPDATE t2 SET c='fifty-three thousand three' WHERE a=15295; UPDATE t2 SET c='twenty-one thousand seven hundred ninety-seven' WHERE a=15296; UPDATE t2 SET c='ninety-six thousand seven hundred ninety-two' WHERE a=15297; UPDATE t2 SET c='eighty-three thousand nine hundred seven' WHERE a=15298; UPDATE t2 SET c='nine thousand two hundred eighty-nine' WHERE a=15299; UPDATE t2 SET c='seventy-five thousand two hundred twenty-three' WHERE a=15300; UPDATE t2 SET c='five thousand seven hundred forty-two' WHERE a=15301; UPDATE t2 SET c='eighty-four thousand seven hundred forty-three' WHERE a=15302; UPDATE t2 SET c='sixty thousand three hundred forty-one' WHERE a=15303; UPDATE t2 SET c='fifty-three thousand sixty-three' WHERE a=15304; UPDATE t2 SET c='ninety-six thousand five hundred twenty-seven' WHERE a=15305; UPDATE t2 SET c='seventy-six thousand five hundred twenty-nine' WHERE a=15306; UPDATE t2 SET c='thirty thousand five hundred seventy-seven' WHERE a=15307; UPDATE t2 SET c='ninety-nine thousand forty-five' WHERE a=15308; UPDATE t2 SET c='twenty-four thousand one hundred ninety-eight' WHERE a=15309; UPDATE t2 SET c='three thousand' WHERE a=15310; UPDATE t2 SET c='eleven thousand five hundred fourteen' WHERE a=15311; UPDATE t2 SET c='eighty-seven thousand sixty-one' WHERE a=15312; UPDATE t2 SET c='seventeen thousand seven hundred twelve' WHERE a=15313; UPDATE t2 SET c='twenty thousand three hundred fifty-four' WHERE a=15314; UPDATE t2 SET c='seventeen thousand five hundred sixty-two' WHERE a=15315; UPDATE t2 SET c='thirty-five thousand eight hundred eleven' WHERE a=15316; UPDATE t2 SET c='seven thousand seven hundred fifty-three' WHERE a=15317; UPDATE t2 SET c='forty-seven thousand four hundred ninety' WHERE a=15318; UPDATE t2 SET c='forty-four thousand nine hundred two' WHERE a=15319; UPDATE t2 SET c='seventeen thousand five hundred thirty-two' WHERE a=15320; UPDATE t2 SET c='eighty thousand seven hundred fifty-one' WHERE a=15321; UPDATE t2 SET c='thirty thousand four hundred ninety' WHERE a=15322; UPDATE t2 SET c='four thousand one hundred eleven' WHERE a=15323; UPDATE t2 SET c='sixty-one thousand two hundred thirty-eight' WHERE a=15324; UPDATE t2 SET c='forty-seven thousand six hundred forty-five' WHERE a=15325; UPDATE t2 SET c='fifteen thousand three hundred sixty' WHERE a=15326; UPDATE t2 SET c='fifteen thousand four hundred four' WHERE a=15327; UPDATE t2 SET c='fifty-six thousand eight hundred sixty-nine' WHERE a=15328; UPDATE t2 SET c='three thousand six hundred nineteen' WHERE a=15329; UPDATE t2 SET c='eighty-eight thousand eighty-eight' WHERE a=15330; UPDATE t2 SET c='forty-three thousand four hundred seventy-seven' WHERE a=15331; UPDATE t2 SET c='fifty-seven thousand eight hundred ninety-eight' WHERE a=15332; UPDATE t2 SET c='thirty-six thousand three hundred eighty' WHERE a=15333; UPDATE t2 SET c='fifty-six thousand four hundred thirty-two' WHERE a=15334; UPDATE t2 SET c='ninety-nine thousand nine hundred forty-nine' WHERE a=15335; UPDATE t2 SET c='eight thousand two hundred eighty-five' WHERE a=15336; UPDATE t2 SET c='three hundred three' WHERE a=15337; UPDATE t2 SET c='seventy-three thousand nine hundred forty-three' WHERE a=15338; UPDATE t2 SET c='eighty-two thousand six hundred twenty' WHERE a=15339; UPDATE t2 SET c='six thousand nine hundred thirty-one' WHERE a=15340; UPDATE t2 SET c='one hundred three' WHERE a=15341; UPDATE t2 SET c='forty-five thousand two hundred forty-five' WHERE a=15342; UPDATE t2 SET c='sixty-two thousand one hundred twelve' WHERE a=15343; UPDATE t2 SET c='sixty-nine thousand thirteen' WHERE a=15344; UPDATE t2 SET c='forty thousand eight hundred twenty-three' WHERE a=15345; UPDATE t2 SET c='four thousand two hundred sixty-four' WHERE a=15346; UPDATE t2 SET c='thirty-one thousand seventy-two' WHERE a=15347; UPDATE t2 SET c='thirty-eight thousand seven hundred twenty' WHERE a=15348; UPDATE t2 SET c='sixty-one thousand one hundred thirty-nine' WHERE a=15349; UPDATE t2 SET c='sixty thousand eight hundred twenty-three' WHERE a=15350; UPDATE t2 SET c='thirty-six thousand nine hundred twenty-eight' WHERE a=15351; UPDATE t2 SET c='twenty-four thousand four hundred fifty' WHERE a=15352; UPDATE t2 SET c='twenty-three thousand nine hundred six' WHERE a=15353; UPDATE t2 SET c='twelve thousand one hundred eighty-three' WHERE a=15354; UPDATE t2 SET c='four thousand two hundred twelve' WHERE a=15355; UPDATE t2 SET c='fifteen thousand nine hundred thirty' WHERE a=15356; UPDATE t2 SET c='fifty-nine thousand eight hundred thirty-nine' WHERE a=15357; UPDATE t2 SET c='eighty-four thousand seven hundred' WHERE a=15358; UPDATE t2 SET c='seventy-six thousand six hundred twenty-eight' WHERE a=15359; UPDATE t2 SET c='twenty-nine thousand three hundred one' WHERE a=15360; UPDATE t2 SET c='seventy-eight thousand four hundred sixty-three' WHERE a=15361; UPDATE t2 SET c='ninety-six thousand three hundred fifty-eight' WHERE a=15362; UPDATE t2 SET c='two thousand nine hundred seven' WHERE a=15363; UPDATE t2 SET c='ninety-three thousand two hundred sixty-three' WHERE a=15364; UPDATE t2 SET c='forty-nine thousand seven hundred forty' WHERE a=15365; UPDATE t2 SET c='eight thousand six hundred thirty-three' WHERE a=15366; UPDATE t2 SET c='fifty-three thousand seven hundred nine' WHERE a=15367; UPDATE t2 SET c='eleven thousand two hundred ninety-six' WHERE a=15368; UPDATE t2 SET c='ten thousand eight hundred ninety-six' WHERE a=15369; UPDATE t2 SET c='seventy-four thousand one hundred forty-six' WHERE a=15370; UPDATE t2 SET c='eighty-nine thousand seven hundred seventy-one' WHERE a=15371; UPDATE t2 SET c='four thousand two hundred one' WHERE a=15372; UPDATE t2 SET c='sixty-eight thousand one hundred thirty-one' WHERE a=15373; UPDATE t2 SET c='seventeen thousand eight hundred fifty-seven' WHERE a=15374; UPDATE t2 SET c='twenty-four thousand three hundred thirty-five' WHERE a=15375; UPDATE t2 SET c='fifty-one thousand one hundred eleven' WHERE a=15376; UPDATE t2 SET c='forty-four thousand nine hundred ninety-three' WHERE a=15377; UPDATE t2 SET c='forty-three thousand thirty-three' WHERE a=15378; UPDATE t2 SET c='ninety-one thousand one hundred fifty-eight' WHERE a=15379; UPDATE t2 SET c='eight thousand three hundred twelve' WHERE a=15380; UPDATE t2 SET c='ninety thousand five hundred thirteen' WHERE a=15381; UPDATE t2 SET c='forty-two thousand eight hundred seventy' WHERE a=15382; UPDATE t2 SET c='twenty-seven thousand four hundred eighteen' WHERE a=15383; UPDATE t2 SET c='sixty-one thousand one hundred forty-eight' WHERE a=15384; UPDATE t2 SET c='seventy-two thousand seven hundred fifty-two' WHERE a=15385; UPDATE t2 SET c='twenty-eight thousand one hundred forty-eight' WHERE a=15386; UPDATE t2 SET c='eighty-six thousand one hundred twenty-one' WHERE a=15387; UPDATE t2 SET c='eighty-four thousand one hundred sixty-six' WHERE a=15388; UPDATE t2 SET c='seventeen thousand five hundred ninety-two' WHERE a=15389; UPDATE t2 SET c='nine thousand fifty-five' WHERE a=15390; UPDATE t2 SET c='forty-six thousand five hundred eleven' WHERE a=15391; UPDATE t2 SET c='seventy-three thousand five hundred ninety' WHERE a=15392; UPDATE t2 SET c='forty-eight thousand eight hundred eighty-three' WHERE a=15393; UPDATE t2 SET c='forty-four thousand seventy-six' WHERE a=15394; UPDATE t2 SET c='eighteen thousand eight hundred eighty-eight' WHERE a=15395; UPDATE t2 SET c='twenty-six thousand two hundred fifty' WHERE a=15396; UPDATE t2 SET c='thirty thousand five hundred forty' WHERE a=15397; UPDATE t2 SET c='eighty-six thousand five hundred nine' WHERE a=15398; UPDATE t2 SET c='ninety-seven thousand seven hundred eighty-four' WHERE a=15399; UPDATE t2 SET c='thirty thousand five hundred sixty-four' WHERE a=15400; UPDATE t2 SET c='forty-seven thousand eight hundred seven' WHERE a=15401; UPDATE t2 SET c='twelve thousand six hundred fifty' WHERE a=15402; UPDATE t2 SET c='seventeen thousand seventy-five' WHERE a=15403; UPDATE t2 SET c='three thousand three' WHERE a=15404; UPDATE t2 SET c='eighty-seven thousand five hundred twenty-six' WHERE a=15405; UPDATE t2 SET c='eighty-nine thousand six hundred twenty' WHERE a=15406; UPDATE t2 SET c='forty-nine thousand eight hundred sixty-four' WHERE a=15407; UPDATE t2 SET c='thirty-two thousand nine hundred eight' WHERE a=15408; UPDATE t2 SET c='fifty thousand eight hundred eighty-two' WHERE a=15409; UPDATE t2 SET c='ten thousand five hundred seventy-two' WHERE a=15410; UPDATE t2 SET c='thirty-four thousand four hundred twenty-eight' WHERE a=15411; UPDATE t2 SET c='nine thousand seven hundred twenty-one' WHERE a=15412; UPDATE t2 SET c='eighteen thousand three hundred eighty-two' WHERE a=15413; UPDATE t2 SET c='fifty-two thousand two hundred eighty-three' WHERE a=15414; UPDATE t2 SET c='twenty-five thousand nine hundred fifty-five' WHERE a=15415; UPDATE t2 SET c='ninety-seven thousand eight hundred seventy-eight' WHERE a=15416; UPDATE t2 SET c='thirty-two thousand four hundred ninety-four' WHERE a=15417; UPDATE t2 SET c='forty-four thousand nine hundred eighty-four' WHERE a=15418; UPDATE t2 SET c='sixty-two thousand six hundred sixty-two' WHERE a=15419; UPDATE t2 SET c='fifty-eight thousand five hundred twenty-four' WHERE a=15420; UPDATE t2 SET c='fifty-eight thousand three hundred forty-seven' WHERE a=15421; UPDATE t2 SET c='seven thousand one hundred eighty-four' WHERE a=15422; UPDATE t2 SET c='sixty-nine thousand three hundred three' WHERE a=15423; UPDATE t2 SET c='sixty thousand one hundred seventy' WHERE a=15424; UPDATE t2 SET c='thirty-six thousand six hundred thirty' WHERE a=15425; UPDATE t2 SET c='thirteen thousand one hundred eighty-seven' WHERE a=15426; UPDATE t2 SET c='twenty-five thousand three hundred eighty-three' WHERE a=15427; UPDATE t2 SET c='fourteen thousand eight hundred thirty-one' WHERE a=15428; UPDATE t2 SET c='eighty thousand seven hundred sixty-six' WHERE a=15429; UPDATE t2 SET c='twenty thousand two hundred ninety-six' WHERE a=15430; UPDATE t2 SET c='eighty-seven thousand two hundred thirty-two' WHERE a=15431; UPDATE t2 SET c='sixty-one thousand fifty-two' WHERE a=15432; UPDATE t2 SET c='nineteen thousand nine hundred fifty-two' WHERE a=15433; UPDATE t2 SET c='ninety-five thousand six hundred fourteen' WHERE a=15434; UPDATE t2 SET c='fifty-three thousand three hundred eighty-seven' WHERE a=15435; UPDATE t2 SET c='four thousand nine hundred five' WHERE a=15436; UPDATE t2 SET c='nine thousand one hundred twenty-five' WHERE a=15437; UPDATE t2 SET c='eighty-one thousand four hundred thirteen' WHERE a=15438; UPDATE t2 SET c='forty thousand four hundred eighty' WHERE a=15439; UPDATE t2 SET c='ninety-four thousand four hundred eighty-one' WHERE a=15440; UPDATE t2 SET c='ninety-two thousand twenty-eight' WHERE a=15441; UPDATE t2 SET c='one thousand five hundred thirty-four' WHERE a=15442; UPDATE t2 SET c='three thousand eight hundred ninety-four' WHERE a=15443; UPDATE t2 SET c='twenty-seven thousand nine hundred ninety-five' WHERE a=15444; UPDATE t2 SET c='thirteen thousand six hundred twenty-four' WHERE a=15445; UPDATE t2 SET c='sixty-four thousand seven hundred twenty-seven' WHERE a=15446; UPDATE t2 SET c='eighteen thousand two hundred two' WHERE a=15447; UPDATE t2 SET c='sixty-three thousand five hundred thirty' WHERE a=15448; UPDATE t2 SET c='sixty-one thousand eighty-three' WHERE a=15449; UPDATE t2 SET c='twenty-four thousand two hundred seventy-three' WHERE a=15450; UPDATE t2 SET c='forty-six thousand one hundred thirty' WHERE a=15451; UPDATE t2 SET c='sixty-eight thousand seven hundred fifteen' WHERE a=15452; UPDATE t2 SET c='one thousand forty-three' WHERE a=15453; UPDATE t2 SET c='seventy-four thousand six hundred sixty-seven' WHERE a=15454; UPDATE t2 SET c='six thousand three hundred seven' WHERE a=15455; UPDATE t2 SET c='sixty-four thousand five hundred twenty' WHERE a=15456; UPDATE t2 SET c='twenty-two thousand seven hundred ninety-seven' WHERE a=15457; UPDATE t2 SET c='sixty-five thousand five hundred eighty-three' WHERE a=15458; UPDATE t2 SET c='thirty-seven thousand nine hundred twenty-three' WHERE a=15459; UPDATE t2 SET c='eighty-eight thousand eight hundred seventy' WHERE a=15460; UPDATE t2 SET c='eighty-three thousand six hundred twenty-eight' WHERE a=15461; UPDATE t2 SET c='ninety-seven thousand seven hundred seventy-nine' WHERE a=15462; UPDATE t2 SET c='ninety-one thousand nine hundred eighty-four' WHERE a=15463; UPDATE t2 SET c='fifty thousand nine hundred eighty-two' WHERE a=15464; UPDATE t2 SET c='ninety-eight thousand eight hundred fifty-five' WHERE a=15465; UPDATE t2 SET c='seventy-eight thousand five hundred sixty-six' WHERE a=15466; UPDATE t2 SET c='thirty-eight thousand seven hundred thirty-nine' WHERE a=15467; UPDATE t2 SET c='two thousand four hundred twelve' WHERE a=15468; UPDATE t2 SET c='eighty-six thousand nine hundred seventy-seven' WHERE a=15469; UPDATE t2 SET c='sixty-four thousand eight hundred fifty' WHERE a=15470; UPDATE t2 SET c='ninety-eight thousand six hundred ninety-four' WHERE a=15471; UPDATE t2 SET c='eighty-nine thousand nine hundred fifty-seven' WHERE a=15472; UPDATE t2 SET c='thirty-two thousand seven hundred seventy-six' WHERE a=15473; UPDATE t2 SET c='ninety-one thousand nine hundred forty-nine' WHERE a=15474; UPDATE t2 SET c='twenty-six thousand one hundred forty-eight' WHERE a=15475; UPDATE t2 SET c='ninety-five thousand seven hundred ninety-nine' WHERE a=15476; UPDATE t2 SET c='eight thousand seven hundred thirty-seven' WHERE a=15477; UPDATE t2 SET c='seventy-five thousand four hundred forty-nine' WHERE a=15478; UPDATE t2 SET c='sixty-three thousand seven hundred fifty-three' WHERE a=15479; UPDATE t2 SET c='ninety-eight thousand one hundred six' WHERE a=15480; UPDATE t2 SET c='twenty-two thousand five hundred ten' WHERE a=15481; UPDATE t2 SET c='fifty-three thousand eighty-six' WHERE a=15482; UPDATE t2 SET c='thirty-six thousand five hundred forty-three' WHERE a=15483; UPDATE t2 SET c='eighteen thousand eight hundred sixty-four' WHERE a=15484; UPDATE t2 SET c='seven thousand three hundred ninety' WHERE a=15485; UPDATE t2 SET c='thirty-eight thousand six hundred thirteen' WHERE a=15486; UPDATE t2 SET c='ninety-five thousand six hundred thirty-two' WHERE a=15487; UPDATE t2 SET c='forty-nine thousand six hundred sixty-seven' WHERE a=15488; UPDATE t2 SET c='twenty-eight thousand four hundred three' WHERE a=15489; UPDATE t2 SET c='fifty-five thousand one hundred forty-six' WHERE a=15490; UPDATE t2 SET c='fifty-four thousand five hundred ninety-eight' WHERE a=15491; UPDATE t2 SET c='ninety-seven thousand six hundred four' WHERE a=15492; UPDATE t2 SET c='five thousand three hundred sixteen' WHERE a=15493; UPDATE t2 SET c='thirty-five thousand nineteen' WHERE a=15494; UPDATE t2 SET c='seventy-nine thousand three hundred' WHERE a=15495; UPDATE t2 SET c='eight thousand five hundred forty-seven' WHERE a=15496; UPDATE t2 SET c='thirty-eight thousand one hundred seventy-eight' WHERE a=15497; UPDATE t2 SET c='eighty-nine thousand ninety-two' WHERE a=15498; UPDATE t2 SET c='ninety-five thousand nine hundred eighteen' WHERE a=15499; UPDATE t2 SET c='sixty thousand two hundred nine' WHERE a=15500; UPDATE t2 SET c='eighty-two thousand ninety-three' WHERE a=15501; UPDATE t2 SET c='seventy-five thousand twenty-eight' WHERE a=15502; UPDATE t2 SET c='seventy-three thousand eight hundred twenty-seven' WHERE a=15503; UPDATE t2 SET c='seventeen thousand one hundred seventy-five' WHERE a=15504; UPDATE t2 SET c='ninety thousand two hundred sixty-three' WHERE a=15505; UPDATE t2 SET c='eighty-four thousand seven hundred seventy-seven' WHERE a=15506; UPDATE t2 SET c='eighty-eight thousand nine hundred sixty-six' WHERE a=15507; UPDATE t2 SET c='seventy thousand two hundred forty-three' WHERE a=15508; UPDATE t2 SET c='one thousand six hundred nineteen' WHERE a=15509; UPDATE t2 SET c='thirty-three thousand nine hundred sixty-eight' WHERE a=15510; UPDATE t2 SET c='thirteen thousand seventy-two' WHERE a=15511; UPDATE t2 SET c='seventy-seven thousand seven' WHERE a=15512; UPDATE t2 SET c='thirty-five thousand nine hundred thirty-three' WHERE a=15513; UPDATE t2 SET c='thirty-six thousand twelve' WHERE a=15514; UPDATE t2 SET c='ninety-six thousand eight hundred eight' WHERE a=15515; UPDATE t2 SET c='thirty thousand one hundred thirty-four' WHERE a=15516; UPDATE t2 SET c='nine thousand eighty-eight' WHERE a=15517; UPDATE t2 SET c='sixteen thousand seven hundred forty-seven' WHERE a=15518; UPDATE t2 SET c='seventy-nine thousand nine hundred twenty-four' WHERE a=15519; UPDATE t2 SET c='seventy-two thousand eight hundred fifty' WHERE a=15520; UPDATE t2 SET c='fourteen thousand two hundred one' WHERE a=15521; UPDATE t2 SET c='one thousand eight hundred sixty-six' WHERE a=15522; UPDATE t2 SET c='twelve thousand seven hundred fifty-six' WHERE a=15523; UPDATE t2 SET c='seventy-two thousand three hundred seventy-six' WHERE a=15524; UPDATE t2 SET c='seven thousand six hundred twenty-two' WHERE a=15525; UPDATE t2 SET c='forty-six thousand eight hundred thirty-nine' WHERE a=15526; UPDATE t2 SET c='ninety-one thousand one hundred fifty-nine' WHERE a=15527; UPDATE t2 SET c='ninety-seven thousand five hundred twelve' WHERE a=15528; UPDATE t2 SET c='sixty-five thousand one hundred thirteen' WHERE a=15529; UPDATE t2 SET c='sixty-three thousand one hundred fifty' WHERE a=15530; UPDATE t2 SET c='fifty-seven thousand five hundred seventy-seven' WHERE a=15531; UPDATE t2 SET c='thirty-five thousand seven hundred sixteen' WHERE a=15532; UPDATE t2 SET c='fifteen thousand two hundred ninety-two' WHERE a=15533; UPDATE t2 SET c='ninety-nine thousand eight hundred four' WHERE a=15534; UPDATE t2 SET c='eighty-nine thousand nine hundred fifty' WHERE a=15535; UPDATE t2 SET c='twenty-three thousand eighty-three' WHERE a=15536; UPDATE t2 SET c='forty thousand seven hundred seventy-seven' WHERE a=15537; UPDATE t2 SET c='fifty-five thousand one hundred five' WHERE a=15538; UPDATE t2 SET c='seventy-seven thousand nine hundred eighteen' WHERE a=15539; UPDATE t2 SET c='forty-nine thousand nine hundred forty-six' WHERE a=15540; UPDATE t2 SET c='eighteen thousand nine hundred seven' WHERE a=15541; UPDATE t2 SET c='ninety-nine thousand six hundred three' WHERE a=15542; UPDATE t2 SET c='ninety thousand twenty-nine' WHERE a=15543; UPDATE t2 SET c='fifty-six thousand five hundred sixty-three' WHERE a=15544; UPDATE t2 SET c='eighty-seven thousand four hundred eighty' WHERE a=15545; UPDATE t2 SET c='thirty thousand five hundred sixty-six' WHERE a=15546; UPDATE t2 SET c='forty-one thousand four hundred three' WHERE a=15547; UPDATE t2 SET c='sixty-two thousand one hundred three' WHERE a=15548; UPDATE t2 SET c='seventy thousand nine hundred thirty-nine' WHERE a=15549; UPDATE t2 SET c='eighty-one thousand four hundred sixty-eight' WHERE a=15550; UPDATE t2 SET c='ninety thousand seventy-three' WHERE a=15551; UPDATE t2 SET c='sixty-one thousand eight hundred sixty-eight' WHERE a=15552; UPDATE t2 SET c='forty-seven thousand three hundred thirty-five' WHERE a=15553; UPDATE t2 SET c='seventy-three thousand seven hundred thirty-three' WHERE a=15554; UPDATE t2 SET c='forty-nine thousand five hundred one' WHERE a=15555; UPDATE t2 SET c='six thousand six hundred seventy' WHERE a=15556; UPDATE t2 SET c='twenty-one thousand two hundred fifty-two' WHERE a=15557; UPDATE t2 SET c='thirty-five thousand two hundred fifty-nine' WHERE a=15558; UPDATE t2 SET c='ninety-six thousand five hundred fifty-three' WHERE a=15559; UPDATE t2 SET c='ninety-seven thousand fifty-nine' WHERE a=15560; UPDATE t2 SET c='forty-four thousand thirty' WHERE a=15561; UPDATE t2 SET c='eighty-two thousand eighty-five' WHERE a=15562; UPDATE t2 SET c='twenty-two thousand five hundred sixty-four' WHERE a=15563; UPDATE t2 SET c='fifty thousand one hundred forty-two' WHERE a=15564; UPDATE t2 SET c='fifty-nine thousand five hundred seventy-one' WHERE a=15565; UPDATE t2 SET c='twenty-three thousand two hundred two' WHERE a=15566; UPDATE t2 SET c='ninety-four thousand eight hundred eighty-nine' WHERE a=15567; UPDATE t2 SET c='seventy-six thousand four hundred seventy-four' WHERE a=15568; UPDATE t2 SET c='nineteen thousand nine hundred thirty-four' WHERE a=15569; UPDATE t2 SET c='sixty-three thousand seven hundred seventy-nine' WHERE a=15570; UPDATE t2 SET c='thirty-five thousand four hundred twenty-one' WHERE a=15571; UPDATE t2 SET c='eight thousand two hundred forty-four' WHERE a=15572; UPDATE t2 SET c='twenty-three thousand six hundred twenty-three' WHERE a=15573; UPDATE t2 SET c='ninety-eight thousand five hundred ninety-six' WHERE a=15574; UPDATE t2 SET c='thirty-nine thousand nine hundred twenty-one' WHERE a=15575; UPDATE t2 SET c='seventy-six thousand nine hundred thirty-five' WHERE a=15576; UPDATE t2 SET c='thirty-seven thousand five hundred eighty-one' WHERE a=15577; UPDATE t2 SET c='seventy-four thousand two hundred eighty-seven' WHERE a=15578; UPDATE t2 SET c='sixty-nine thousand thirty-nine' WHERE a=15579; UPDATE t2 SET c='seventy-two thousand seven hundred sixty-three' WHERE a=15580; UPDATE t2 SET c='thirty thousand nine hundred thirty-eight' WHERE a=15581; UPDATE t2 SET c='sixty thousand one hundred ninety-eight' WHERE a=15582; UPDATE t2 SET c='twenty-eight thousand nine hundred seventy-eight' WHERE a=15583; UPDATE t2 SET c='sixty-nine thousand six hundred seven' WHERE a=15584; UPDATE t2 SET c='sixty thousand six hundred seventy-nine' WHERE a=15585; UPDATE t2 SET c='twelve thousand six hundred forty-one' WHERE a=15586; UPDATE t2 SET c='thirty-three thousand eight hundred ninety-nine' WHERE a=15587; UPDATE t2 SET c='forty-four thousand eight hundred seventy-five' WHERE a=15588; UPDATE t2 SET c='seventy-nine thousand nine hundred fifty-six' WHERE a=15589; UPDATE t2 SET c='forty-two thousand one hundred two' WHERE a=15590; UPDATE t2 SET c='thirty-eight thousand seven hundred twelve' WHERE a=15591; UPDATE t2 SET c='twenty-one thousand two hundred sixty-one' WHERE a=15592; UPDATE t2 SET c='sixty-three thousand seven hundred ninety-three' WHERE a=15593; UPDATE t2 SET c='twenty thousand six hundred four' WHERE a=15594; UPDATE t2 SET c='seventy-nine thousand four hundred eighty-seven' WHERE a=15595; UPDATE t2 SET c='seventy-one thousand seven hundred twenty-one' WHERE a=15596; UPDATE t2 SET c='seventy-five thousand eight' WHERE a=15597; UPDATE t2 SET c='sixty-nine thousand four hundred seventy-nine' WHERE a=15598; UPDATE t2 SET c='seventy thousand seven hundred eighty-two' WHERE a=15599; UPDATE t2 SET c='twenty-four thousand one hundred fifty-four' WHERE a=15600; UPDATE t2 SET c='sixty thousand six hundred twenty-six' WHERE a=15601; UPDATE t2 SET c='two thousand seven hundred seventy-five' WHERE a=15602; UPDATE t2 SET c='two thousand seven hundred forty-seven' WHERE a=15603; UPDATE t2 SET c='seventy-one thousand five hundred fifty-eight' WHERE a=15604; UPDATE t2 SET c='sixty-six thousand nine hundred thirty-seven' WHERE a=15605; UPDATE t2 SET c='fifty-nine thousand three hundred seventy-six' WHERE a=15606; UPDATE t2 SET c='seventy-three thousand six hundred sixty-three' WHERE a=15607; UPDATE t2 SET c='twenty-two thousand nine hundred ninety' WHERE a=15608; UPDATE t2 SET c='fifty-four thousand three hundred fifty-four' WHERE a=15609; UPDATE t2 SET c='thirty thousand eight hundred eighty-three' WHERE a=15610; UPDATE t2 SET c='seventy thousand seven hundred seventy-nine' WHERE a=15611; UPDATE t2 SET c='forty-three thousand three hundred thirty-two' WHERE a=15612; UPDATE t2 SET c='thirty-two thousand five hundred twenty-seven' WHERE a=15613; UPDATE t2 SET c='eighty-five thousand twenty-three' WHERE a=15614; UPDATE t2 SET c='one thousand eight hundred twelve' WHERE a=15615; UPDATE t2 SET c='thirty-six thousand twenty-eight' WHERE a=15616; UPDATE t2 SET c='sixty-two thousand three hundred fifty-two' WHERE a=15617; UPDATE t2 SET c='forty-five thousand five hundred sixty-one' WHERE a=15618; UPDATE t2 SET c='two thousand nine hundred thirty-nine' WHERE a=15619; UPDATE t2 SET c='five hundred thirty' WHERE a=15620; UPDATE t2 SET c='fifty-six thousand nine hundred seventy-five' WHERE a=15621; UPDATE t2 SET c='seventy thousand nine hundred sixty-three' WHERE a=15622; UPDATE t2 SET c='five thousand nine hundred twenty-five' WHERE a=15623; UPDATE t2 SET c='seventy-six thousand one hundred forty' WHERE a=15624; UPDATE t2 SET c='eighty thousand two hundred thirteen' WHERE a=15625; UPDATE t2 SET c='ninety-one thousand four hundred six' WHERE a=15626; UPDATE t2 SET c='ninety-nine thousand four hundred three' WHERE a=15627; UPDATE t2 SET c='sixty-eight thousand two hundred thirty-three' WHERE a=15628; UPDATE t2 SET c='seven thousand nine hundred sixty-three' WHERE a=15629; UPDATE t2 SET c='forty-five thousand seven hundred four' WHERE a=15630; UPDATE t2 SET c='eighty-three thousand sixteen' WHERE a=15631; UPDATE t2 SET c='seventy-five thousand three hundred fifty-three' WHERE a=15632; UPDATE t2 SET c='thirty-nine thousand four hundred thirty-six' WHERE a=15633; UPDATE t2 SET c='fifty thousand three' WHERE a=15634; UPDATE t2 SET c='seventy-two thousand nine hundred forty-nine' WHERE a=15635; UPDATE t2 SET c='sixty-five thousand five hundred two' WHERE a=15636; UPDATE t2 SET c='thirty-one thousand nine hundred thirty-six' WHERE a=15637; UPDATE t2 SET c='seventy-five thousand seven hundred forty-eight' WHERE a=15638; UPDATE t2 SET c='twenty-three thousand six hundred sixty-nine' WHERE a=15639; UPDATE t2 SET c='seventy-two thousand eight hundred ninety-seven' WHERE a=15640; UPDATE t2 SET c='nine thousand sixty-seven' WHERE a=15641; UPDATE t2 SET c='two thousand four hundred twenty-two' WHERE a=15642; UPDATE t2 SET c='sixty-three thousand five hundred ten' WHERE a=15643; UPDATE t2 SET c='forty-eight thousand twenty' WHERE a=15644; UPDATE t2 SET c='seventy-two thousand six hundred ninety-three' WHERE a=15645; UPDATE t2 SET c='eighty-nine thousand one hundred twenty-eight' WHERE a=15646; UPDATE t2 SET c='nineteen thousand nine hundred eighty-six' WHERE a=15647; UPDATE t2 SET c='twenty-five thousand seventy' WHERE a=15648; UPDATE t2 SET c='eighty-six thousand three hundred seven' WHERE a=15649; UPDATE t2 SET c='ninety-nine thousand six hundred ninety-six' WHERE a=15650; UPDATE t2 SET c='thirty-four thousand three hundred one' WHERE a=15651; UPDATE t2 SET c='eighty-four thousand seventy-two' WHERE a=15652; UPDATE t2 SET c='twenty-six thousand three hundred seventy-two' WHERE a=15653; UPDATE t2 SET c='fifty-six thousand one hundred eighty-nine' WHERE a=15654; UPDATE t2 SET c='thirty-six thousand eight hundred seventy-nine' WHERE a=15655; UPDATE t2 SET c='thirty-five thousand nine hundred ninety-eight' WHERE a=15656; UPDATE t2 SET c='fifty-four thousand sixty-eight' WHERE a=15657; UPDATE t2 SET c='eighty-three thousand three hundred ninety-nine' WHERE a=15658; UPDATE t2 SET c='sixty-four thousand eight hundred seventy-three' WHERE a=15659; UPDATE t2 SET c='fifty-nine thousand five hundred twelve' WHERE a=15660; UPDATE t2 SET c='seven thousand seven hundred fifty-seven' WHERE a=15661; UPDATE t2 SET c='seventy-four thousand six hundred forty-eight' WHERE a=15662; UPDATE t2 SET c='thirty-four thousand six hundred fifty' WHERE a=15663; UPDATE t2 SET c='fifty-two thousand eight hundred thirty-five' WHERE a=15664; UPDATE t2 SET c='seventy-four thousand one hundred four' WHERE a=15665; UPDATE t2 SET c='fifty-three thousand six hundred ninety-one' WHERE a=15666; UPDATE t2 SET c='thirty-one thousand eight hundred twenty-two' WHERE a=15667; UPDATE t2 SET c='seventy-six thousand four hundred ninety-nine' WHERE a=15668; UPDATE t2 SET c='fifty-four thousand eight hundred thirty-six' WHERE a=15669; UPDATE t2 SET c='five thousand two hundred sixty-six' WHERE a=15670; UPDATE t2 SET c='forty-six thousand eight hundred eighty' WHERE a=15671; UPDATE t2 SET c='thirty-eight thousand one hundred one' WHERE a=15672; UPDATE t2 SET c='fifty-eight thousand two hundred twenty-four' WHERE a=15673; UPDATE t2 SET c='six thousand nine hundred thirty-five' WHERE a=15674; UPDATE t2 SET c='ninety thousand seven hundred seventy-three' WHERE a=15675; UPDATE t2 SET c='sixty-four thousand two hundred two' WHERE a=15676; UPDATE t2 SET c='eighteen thousand four hundred fifty-nine' WHERE a=15677; UPDATE t2 SET c='seventy-nine thousand two hundred ten' WHERE a=15678; UPDATE t2 SET c='twenty thousand nine hundred forty-two' WHERE a=15679; UPDATE t2 SET c='sixty-seven thousand ninety-four' WHERE a=15680; UPDATE t2 SET c='eighty-two thousand seven hundred fifty-one' WHERE a=15681; UPDATE t2 SET c='forty-seven thousand nine hundred one' WHERE a=15682; UPDATE t2 SET c='twenty thousand two hundred fifty' WHERE a=15683; UPDATE t2 SET c='ninety-four thousand five hundred sixty-seven' WHERE a=15684; UPDATE t2 SET c='fifty-two thousand sixty' WHERE a=15685; UPDATE t2 SET c='eighty-one thousand seven hundred twenty-seven' WHERE a=15686; UPDATE t2 SET c='twenty-two thousand one hundred seventy-seven' WHERE a=15687; UPDATE t2 SET c='sixty-five thousand three hundred one' WHERE a=15688; UPDATE t2 SET c='four thousand three hundred forty-four' WHERE a=15689; UPDATE t2 SET c='three thousand five hundred sixty-three' WHERE a=15690; UPDATE t2 SET c='nineteen thousand nine hundred twenty-five' WHERE a=15691; UPDATE t2 SET c='ninety-nine thousand five hundred forty-two' WHERE a=15692; UPDATE t2 SET c='seventy-four thousand five hundred twenty-nine' WHERE a=15693; UPDATE t2 SET c='three thousand four hundred fifty-four' WHERE a=15694; UPDATE t2 SET c='twenty-eight thousand three hundred forty' WHERE a=15695; UPDATE t2 SET c='seventy-seven thousand six hundred eighty-six' WHERE a=15696; UPDATE t2 SET c='forty-five thousand three hundred twenty-one' WHERE a=15697; UPDATE t2 SET c='eighty thousand sixty-three' WHERE a=15698; UPDATE t2 SET c='seventy-eight thousand nine hundred thirty-six' WHERE a=15699; UPDATE t2 SET c='eighty-six thousand six hundred eighty-seven' WHERE a=15700; UPDATE t2 SET c='forty-seven thousand seven hundred ten' WHERE a=15701; UPDATE t2 SET c='forty-five thousand forty-eight' WHERE a=15702; UPDATE t2 SET c='three thousand nine hundred seventy-eight' WHERE a=15703; UPDATE t2 SET c='forty thousand three hundred fifty-four' WHERE a=15704; UPDATE t2 SET c='sixty-five thousand two hundred nineteen' WHERE a=15705; UPDATE t2 SET c='thirty-four thousand two hundred ninety-eight' WHERE a=15706; UPDATE t2 SET c='seventy-four thousand three hundred sixty-five' WHERE a=15707; UPDATE t2 SET c='fifty-five thousand four hundred twenty-two' WHERE a=15708; UPDATE t2 SET c='sixty-four thousand six hundred forty-three' WHERE a=15709; UPDATE t2 SET c='fifty-two thousand six hundred eighty-two' WHERE a=15710; UPDATE t2 SET c='twenty-six thousand five hundred twenty-six' WHERE a=15711; UPDATE t2 SET c='eighty-four thousand one hundred seven' WHERE a=15712; UPDATE t2 SET c='ninety-one thousand four hundred forty-two' WHERE a=15713; UPDATE t2 SET c='ninety thousand twenty-eight' WHERE a=15714; UPDATE t2 SET c='forty-one thousand seven hundred forty-two' WHERE a=15715; UPDATE t2 SET c='twenty-five thousand two hundred ninety-six' WHERE a=15716; UPDATE t2 SET c='seventy-six thousand seventeen' WHERE a=15717; UPDATE t2 SET c='twenty thousand seven hundred sixty-three' WHERE a=15718; UPDATE t2 SET c='sixty-four thousand four hundred forty-seven' WHERE a=15719; UPDATE t2 SET c='eleven thousand ninety-one' WHERE a=15720; UPDATE t2 SET c='fifteen thousand four hundred fifty-five' WHERE a=15721; UPDATE t2 SET c='nine thousand eight hundred seventy-eight' WHERE a=15722; UPDATE t2 SET c='twenty-nine thousand one hundred eighty-seven' WHERE a=15723; UPDATE t2 SET c='seventy thousand forty-two' WHERE a=15724; UPDATE t2 SET c='thirty-five thousand seven hundred fifty-two' WHERE a=15725; UPDATE t2 SET c='forty-two thousand nine hundred ninety-two' WHERE a=15726; UPDATE t2 SET c='twenty-five thousand twelve' WHERE a=15727; UPDATE t2 SET c='eighty-two thousand four hundred six' WHERE a=15728; UPDATE t2 SET c='forty-three thousand nine hundred sixty' WHERE a=15729; UPDATE t2 SET c='twenty-six thousand eight hundred twelve' WHERE a=15730; UPDATE t2 SET c='thirteen thousand ninety-seven' WHERE a=15731; UPDATE t2 SET c='forty-four thousand six hundred fifty-one' WHERE a=15732; UPDATE t2 SET c='fifty-one thousand three' WHERE a=15733; UPDATE t2 SET c='thirty-eight thousand five hundred eighty-one' WHERE a=15734; UPDATE t2 SET c='sixty-four thousand seven hundred seventy' WHERE a=15735; UPDATE t2 SET c='ninety thousand five hundred seventy' WHERE a=15736; UPDATE t2 SET c='seventeen thousand one hundred fifty' WHERE a=15737; UPDATE t2 SET c='forty-six thousand nine hundred eighty-four' WHERE a=15738; UPDATE t2 SET c='sixty thousand fifty-six' WHERE a=15739; UPDATE t2 SET c='twenty-six thousand one hundred twenty-three' WHERE a=15740; UPDATE t2 SET c='three thousand seven hundred nineteen' WHERE a=15741; UPDATE t2 SET c='eighty-eight thousand twenty-two' WHERE a=15742; UPDATE t2 SET c='five thousand three hundred three' WHERE a=15743; UPDATE t2 SET c='ninety-four thousand four hundred eighty-two' WHERE a=15744; UPDATE t2 SET c='ninety-eight thousand six hundred ninety-seven' WHERE a=15745; UPDATE t2 SET c='eighty-six thousand six hundred twenty-eight' WHERE a=15746; UPDATE t2 SET c='two thousand three hundred ninety-nine' WHERE a=15747; UPDATE t2 SET c='thirty-seven thousand nine hundred seventy' WHERE a=15748; UPDATE t2 SET c='fifty-three thousand seven hundred twelve' WHERE a=15749; UPDATE t2 SET c='fifty-seven thousand two hundred twelve' WHERE a=15750; UPDATE t2 SET c='sixty thousand nine hundred twenty' WHERE a=15751; UPDATE t2 SET c='eight thousand one hundred fifty-five' WHERE a=15752; UPDATE t2 SET c='sixty-three thousand eight hundred fifty-six' WHERE a=15753; UPDATE t2 SET c='twenty-one thousand three hundred thirty-six' WHERE a=15754; UPDATE t2 SET c='three thousand two hundred sixty-one' WHERE a=15755; UPDATE t2 SET c='forty-two thousand thirty-six' WHERE a=15756; UPDATE t2 SET c='ten thousand four hundred ninety' WHERE a=15757; UPDATE t2 SET c='fifty-seven thousand fifty-two' WHERE a=15758; UPDATE t2 SET c='fifty-six thousand one hundred ninety-six' WHERE a=15759; UPDATE t2 SET c='seventy-five thousand three hundred twenty-four' WHERE a=15760; UPDATE t2 SET c='sixty-nine thousand four hundred fifty-eight' WHERE a=15761; UPDATE t2 SET c='sixty-seven thousand three hundred forty-seven' WHERE a=15762; UPDATE t2 SET c='three thousand eight hundred sixty-six' WHERE a=15763; UPDATE t2 SET c='fifty-one thousand seven hundred forty-three' WHERE a=15764; UPDATE t2 SET c='thirty thousand nine hundred ninety-four' WHERE a=15765; UPDATE t2 SET c='twenty-six thousand four hundred seventy-one' WHERE a=15766; UPDATE t2 SET c='eighty-seven thousand nine hundred ninety-seven' WHERE a=15767; UPDATE t2 SET c='thirty-nine thousand eighty-five' WHERE a=15768; UPDATE t2 SET c='twenty-five thousand twenty-seven' WHERE a=15769; UPDATE t2 SET c='thirty-nine thousand five hundred seventy-three' WHERE a=15770; UPDATE t2 SET c='forty-one thousand seven hundred thirty' WHERE a=15771; UPDATE t2 SET c='ninety-five thousand one hundred fifty-five' WHERE a=15772; UPDATE t2 SET c='sixty-four thousand eight hundred twenty-six' WHERE a=15773; UPDATE t2 SET c='fifty-two thousand eighty-eight' WHERE a=15774; UPDATE t2 SET c='forty-three thousand seven hundred fifty-two' WHERE a=15775; UPDATE t2 SET c='seventy-seven thousand seven hundred forty-one' WHERE a=15776; UPDATE t2 SET c='ninety-two thousand three hundred sixty-four' WHERE a=15777; UPDATE t2 SET c='fifty-nine thousand one hundred sixty-five' WHERE a=15778; UPDATE t2 SET c='twenty-three thousand ninety-four' WHERE a=15779; UPDATE t2 SET c='ninety-four thousand five hundred two' WHERE a=15780; UPDATE t2 SET c='thirty-six thousand one hundred fifty-nine' WHERE a=15781; UPDATE t2 SET c='thirteen thousand seven hundred eighty-two' WHERE a=15782; UPDATE t2 SET c='sixty-six thousand ninety-eight' WHERE a=15783; UPDATE t2 SET c='ninety-six thousand seven hundred fifty-five' WHERE a=15784; UPDATE t2 SET c='eighty-two thousand nine hundred eighty' WHERE a=15785; UPDATE t2 SET c='forty-four thousand seven hundred fifty' WHERE a=15786; UPDATE t2 SET c='sixteen thousand eighteen' WHERE a=15787; UPDATE t2 SET c='forty-six thousand nine hundred four' WHERE a=15788; UPDATE t2 SET c='fifty-nine thousand two hundred five' WHERE a=15789; UPDATE t2 SET c='forty-six thousand four hundred seventy-one' WHERE a=15790; UPDATE t2 SET c='eighty-nine thousand one hundred sixty-one' WHERE a=15791; UPDATE t2 SET c='eighty-two thousand two' WHERE a=15792; UPDATE t2 SET c='sixty-four thousand six hundred two' WHERE a=15793; UPDATE t2 SET c='sixty-nine thousand forty-seven' WHERE a=15794; UPDATE t2 SET c='forty-one thousand nine hundred thirty-one' WHERE a=15795; UPDATE t2 SET c='seventy-nine thousand one hundred forty-seven' WHERE a=15796; UPDATE t2 SET c='ninety-nine thousand nine hundred eighty-seven' WHERE a=15797; UPDATE t2 SET c='eighty-eight thousand six hundred fifteen' WHERE a=15798; UPDATE t2 SET c='thirteen thousand forty-four' WHERE a=15799; UPDATE t2 SET c='nine thousand nineteen' WHERE a=15800; UPDATE t2 SET c='forty-five thousand four hundred forty-seven' WHERE a=15801; UPDATE t2 SET c='eighty-two thousand three hundred fifty-four' WHERE a=15802; UPDATE t2 SET c='fifty-six thousand five hundred sixty' WHERE a=15803; UPDATE t2 SET c='thirty-eight thousand eight hundred six' WHERE a=15804; UPDATE t2 SET c='twenty-six thousand nine hundred eighty-nine' WHERE a=15805; UPDATE t2 SET c='ten thousand nine hundred seventy-six' WHERE a=15806; UPDATE t2 SET c='thirty-seven thousand five hundred thirty-two' WHERE a=15807; UPDATE t2 SET c='four thousand one hundred seventy-seven' WHERE a=15808; UPDATE t2 SET c='sixty thousand nine hundred ninety-seven' WHERE a=15809; UPDATE t2 SET c='forty-six thousand three hundred eighty-six' WHERE a=15810; UPDATE t2 SET c='ninety-nine thousand four hundred one' WHERE a=15811; UPDATE t2 SET c='seven thousand seven hundred five' WHERE a=15812; UPDATE t2 SET c='forty thousand seven hundred ninety-three' WHERE a=15813; UPDATE t2 SET c='seventy-two thousand seven hundred fifty-four' WHERE a=15814; UPDATE t2 SET c='thirty-four thousand four hundred eighty' WHERE a=15815; UPDATE t2 SET c='eighty-five thousand five hundred sixty-eight' WHERE a=15816; UPDATE t2 SET c='seventy-four thousand three hundred sixteen' WHERE a=15817; UPDATE t2 SET c='sixty-eight thousand five hundred eighty-eight' WHERE a=15818; UPDATE t2 SET c='sixty thousand seven hundred seventy-seven' WHERE a=15819; UPDATE t2 SET c='fifty-four thousand sixty-two' WHERE a=15820; UPDATE t2 SET c='thirty thousand nine hundred nineteen' WHERE a=15821; UPDATE t2 SET c='six thousand eight hundred fifty-one' WHERE a=15822; UPDATE t2 SET c='forty-six thousand fifty-four' WHERE a=15823; UPDATE t2 SET c='sixty-four thousand three hundred nine' WHERE a=15824; UPDATE t2 SET c='thirty-six thousand four hundred fourteen' WHERE a=15825; UPDATE t2 SET c='ninety-five thousand twenty-one' WHERE a=15826; UPDATE t2 SET c='sixteen thousand five hundred eighty-two' WHERE a=15827; UPDATE t2 SET c='four thousand seven hundred seventy-seven' WHERE a=15828; UPDATE t2 SET c='sixty-two thousand four hundred eighty-five' WHERE a=15829; UPDATE t2 SET c='thirty-four thousand eight hundred eighty-five' WHERE a=15830; UPDATE t2 SET c='seventy-two thousand sixty-one' WHERE a=15831; UPDATE t2 SET c='sixty-six thousand two hundred thirty-nine' WHERE a=15832; UPDATE t2 SET c='thirty-three thousand two hundred eleven' WHERE a=15833; UPDATE t2 SET c='nine thousand six hundred thirty-one' WHERE a=15834; UPDATE t2 SET c='seventy-one thousand five hundred eighty-seven' WHERE a=15835; UPDATE t2 SET c='twenty-two thousand two hundred twenty-eight' WHERE a=15836; UPDATE t2 SET c='eighty-three thousand seven hundred twenty-two' WHERE a=15837; UPDATE t2 SET c='eighty-three thousand five hundred seventy-two' WHERE a=15838; UPDATE t2 SET c='ninety-one thousand one hundred ninety-seven' WHERE a=15839; UPDATE t2 SET c='sixty-seven thousand six hundred thirty-three' WHERE a=15840; UPDATE t2 SET c='ninety-six thousand seven hundred eighty-seven' WHERE a=15841; UPDATE t2 SET c='nineteen thousand five hundred seventy-six' WHERE a=15842; UPDATE t2 SET c='seventy-five thousand two hundred fifty-three' WHERE a=15843; UPDATE t2 SET c='eighty-four thousand two hundred thirty-two' WHERE a=15844; UPDATE t2 SET c='twenty-seven thousand four hundred six' WHERE a=15845; UPDATE t2 SET c='seventy-six thousand five hundred thirty-two' WHERE a=15846; UPDATE t2 SET c='twenty-five thousand six hundred fifty-one' WHERE a=15847; UPDATE t2 SET c='forty-six thousand six hundred twenty-nine' WHERE a=15848; UPDATE t2 SET c='fifteen thousand twenty-eight' WHERE a=15849; UPDATE t2 SET c='thirty-nine thousand three hundred thirty' WHERE a=15850; UPDATE t2 SET c='forty-six thousand five hundred sixty-six' WHERE a=15851; UPDATE t2 SET c='fifty-two thousand two hundred eighty-two' WHERE a=15852; UPDATE t2 SET c='eighty-nine thousand five hundred ninety-five' WHERE a=15853; UPDATE t2 SET c='thirty-seven thousand three hundred fifty-two' WHERE a=15854; UPDATE t2 SET c='twenty-seven thousand four hundred sixty-two' WHERE a=15855; UPDATE t2 SET c='sixty-seven thousand two hundred sixty' WHERE a=15856; UPDATE t2 SET c='twenty-one thousand eight hundred eighty-five' WHERE a=15857; UPDATE t2 SET c='thirty-one thousand six hundred ninety-seven' WHERE a=15858; UPDATE t2 SET c='eleven thousand two hundred twenty-four' WHERE a=15859; UPDATE t2 SET c='sixty-four thousand fifty-six' WHERE a=15860; UPDATE t2 SET c='eleven thousand seven hundred twenty' WHERE a=15861; UPDATE t2 SET c='thirty-one thousand eighty-two' WHERE a=15862; UPDATE t2 SET c='fifty-one thousand six' WHERE a=15863; UPDATE t2 SET c='eighty-three thousand four hundred fifty-three' WHERE a=15864; UPDATE t2 SET c='ninety thousand eight hundred seventy-one' WHERE a=15865; UPDATE t2 SET c='eight thousand five hundred eighty-nine' WHERE a=15866; UPDATE t2 SET c='forty-four thousand eight hundred seventy-six' WHERE a=15867; UPDATE t2 SET c='seven thousand three hundred fifty-four' WHERE a=15868; UPDATE t2 SET c='forty-nine thousand two hundred forty-five' WHERE a=15869; UPDATE t2 SET c='thirty-seven thousand five hundred eighty-eight' WHERE a=15870; UPDATE t2 SET c='eighty-four thousand three hundred fifty-seven' WHERE a=15871; UPDATE t2 SET c='six thousand eight hundred fifty-two' WHERE a=15872; UPDATE t2 SET c='eighty thousand eight hundred seven' WHERE a=15873; UPDATE t2 SET c='seventy-one thousand seven hundred fifty' WHERE a=15874; UPDATE t2 SET c='forty-three thousand forty-three' WHERE a=15875; UPDATE t2 SET c='ninety-seven thousand eight hundred twenty-eight' WHERE a=15876; UPDATE t2 SET c='seventy-seven thousand nine hundred seven' WHERE a=15877; UPDATE t2 SET c='eighty-one thousand four hundred thirty-nine' WHERE a=15878; UPDATE t2 SET c='seventy-seven thousand five hundred eighteen' WHERE a=15879; UPDATE t2 SET c='one thousand three hundred sixty-five' WHERE a=15880; UPDATE t2 SET c='twenty-one thousand nine hundred seventy' WHERE a=15881; UPDATE t2 SET c='eighty-seven thousand nine hundred seventy-eight' WHERE a=15882; UPDATE t2 SET c='forty-one thousand five hundred thirty-two' WHERE a=15883; UPDATE t2 SET c='fifty-two thousand five hundred eighteen' WHERE a=15884; UPDATE t2 SET c='eighty-two thousand three hundred sixty-four' WHERE a=15885; UPDATE t2 SET c='seventy-one thousand eight hundred eleven' WHERE a=15886; UPDATE t2 SET c='fifty-nine thousand three hundred ninety-three' WHERE a=15887; UPDATE t2 SET c='fifty thousand nine hundred eighty-three' WHERE a=15888; UPDATE t2 SET c='ninety-two thousand six hundred' WHERE a=15889; UPDATE t2 SET c='sixty-six thousand five hundred four' WHERE a=15890; UPDATE t2 SET c='forty-nine thousand three hundred ten' WHERE a=15891; UPDATE t2 SET c='forty thousand nine hundred thirty-six' WHERE a=15892; UPDATE t2 SET c='ninety-eight thousand one hundred forty-six' WHERE a=15893; UPDATE t2 SET c='sixty-eight thousand one hundred ten' WHERE a=15894; UPDATE t2 SET c='one thousand one hundred twenty-four' WHERE a=15895; UPDATE t2 SET c='fifty thousand seven hundred fifty' WHERE a=15896; UPDATE t2 SET c='twenty-three thousand seven hundred seventy-seven' WHERE a=15897; UPDATE t2 SET c='eighty-nine thousand four hundred fifteen' WHERE a=15898; UPDATE t2 SET c='thirty-three thousand five hundred seventeen' WHERE a=15899; UPDATE t2 SET c='forty-six thousand nine hundred thirteen' WHERE a=15900; UPDATE t2 SET c='fifty-three thousand five hundred ten' WHERE a=15901; UPDATE t2 SET c='thirty-seven thousand two hundred eighty-eight' WHERE a=15902; UPDATE t2 SET c='thirty-six thousand six hundred nine' WHERE a=15903; UPDATE t2 SET c='twenty thousand seven hundred forty-three' WHERE a=15904; UPDATE t2 SET c='thirty-four thousand four hundred fifty-nine' WHERE a=15905; UPDATE t2 SET c='forty-seven thousand four hundred fourteen' WHERE a=15906; UPDATE t2 SET c='fifty-seven thousand five hundred fifty-nine' WHERE a=15907; UPDATE t2 SET c='fifty-five thousand seven hundred five' WHERE a=15908; UPDATE t2 SET c='eleven thousand eight hundred ninety-one' WHERE a=15909; UPDATE t2 SET c='ten thousand six hundred forty-nine' WHERE a=15910; UPDATE t2 SET c='thirty-two thousand three hundred forty-seven' WHERE a=15911; UPDATE t2 SET c='fifty-eight thousand one hundred nine' WHERE a=15912; UPDATE t2 SET c='ninety-two thousand five hundred ninety-eight' WHERE a=15913; UPDATE t2 SET c='thirty-six thousand one hundred twenty-six' WHERE a=15914; UPDATE t2 SET c='twenty-one thousand eight hundred ninety-nine' WHERE a=15915; UPDATE t2 SET c='seventy-two thousand six hundred seventy' WHERE a=15916; UPDATE t2 SET c='thirteen thousand four hundred seventeen' WHERE a=15917; UPDATE t2 SET c='thirty-seven thousand ninety-two' WHERE a=15918; UPDATE t2 SET c='seventy thousand seven hundred seventy-three' WHERE a=15919; UPDATE t2 SET c='twenty-nine thousand eight hundred sixty-eight' WHERE a=15920; UPDATE t2 SET c='forty-three thousand ninety-three' WHERE a=15921; UPDATE t2 SET c='eighty-seven thousand five hundred eighty' WHERE a=15922; UPDATE t2 SET c='seventy thousand one hundred eighty-six' WHERE a=15923; UPDATE t2 SET c='four thousand nine hundred eighty-eight' WHERE a=15924; UPDATE t2 SET c='ninety-two thousand six hundred ninety-six' WHERE a=15925; UPDATE t2 SET c='sixteen thousand four hundred fifty-four' WHERE a=15926; UPDATE t2 SET c='sixty-one thousand five hundred fifty-six' WHERE a=15927; UPDATE t2 SET c='fifty thousand seven hundred sixty-three' WHERE a=15928; UPDATE t2 SET c='twenty-six thousand three hundred forty-two' WHERE a=15929; UPDATE t2 SET c='twelve thousand thirty-five' WHERE a=15930; UPDATE t2 SET c='seventy-five thousand three hundred ninety-eight' WHERE a=15931; UPDATE t2 SET c='ten thousand eight hundred forty-six' WHERE a=15932; UPDATE t2 SET c='six thousand five hundred sixty-five' WHERE a=15933; UPDATE t2 SET c='twenty-two thousand five hundred fifty-three' WHERE a=15934; UPDATE t2 SET c='nineteen thousand four hundred fifty-two' WHERE a=15935; UPDATE t2 SET c='forty-eight thousand five hundred fifty-four' WHERE a=15936; UPDATE t2 SET c='seven thousand five hundred sixty-four' WHERE a=15937; UPDATE t2 SET c='fifty thousand eight hundred ninety' WHERE a=15938; UPDATE t2 SET c='fifty-four thousand seven hundred eight' WHERE a=15939; UPDATE t2 SET c='forty-eight thousand seven hundred seventy-nine' WHERE a=15940; UPDATE t2 SET c='eighty thousand four hundred' WHERE a=15941; UPDATE t2 SET c='seventy-eight thousand nine hundred seventy-four' WHERE a=15942; UPDATE t2 SET c='forty-six thousand seven hundred eighty-six' WHERE a=15943; UPDATE t2 SET c='ninety-seven thousand six hundred sixty-eight' WHERE a=15944; UPDATE t2 SET c='sixty-seven thousand nine hundred forty-eight' WHERE a=15945; UPDATE t2 SET c='twenty-nine thousand five hundred fifty-four' WHERE a=15946; UPDATE t2 SET c='forty-four thousand five hundred twenty-nine' WHERE a=15947; UPDATE t2 SET c='seventy-one thousand eight hundred nine' WHERE a=15948; UPDATE t2 SET c='sixty-nine thousand eight hundred fifty' WHERE a=15949; UPDATE t2 SET c='twenty-five thousand two hundred fifty-eight' WHERE a=15950; UPDATE t2 SET c='seventy-three thousand three hundred forty' WHERE a=15951; UPDATE t2 SET c='fifty-seven thousand five hundred twenty' WHERE a=15952; UPDATE t2 SET c='twenty-five thousand two hundred fifty' WHERE a=15953; UPDATE t2 SET c='seventeen thousand five hundred twenty-five' WHERE a=15954; UPDATE t2 SET c='nine hundred seven' WHERE a=15955; UPDATE t2 SET c='forty-five thousand five hundred thirty-two' WHERE a=15956; UPDATE t2 SET c='twelve thousand nine hundred nineteen' WHERE a=15957; UPDATE t2 SET c='eighty thousand nine hundred eighty-three' WHERE a=15958; UPDATE t2 SET c='twenty-one thousand one hundred forty' WHERE a=15959; UPDATE t2 SET c='twenty-three thousand nine hundred forty-four' WHERE a=15960; UPDATE t2 SET c='seventy-eight thousand two hundred twelve' WHERE a=15961; UPDATE t2 SET c='ninety-nine thousand six hundred fifteen' WHERE a=15962; UPDATE t2 SET c='thirteen thousand two hundred fifty-one' WHERE a=15963; UPDATE t2 SET c='seventy-one thousand one hundred eighteen' WHERE a=15964; UPDATE t2 SET c='twenty-two thousand seven hundred sixty-one' WHERE a=15965; UPDATE t2 SET c='fifty-five thousand six hundred sixty-three' WHERE a=15966; UPDATE t2 SET c='forty-five thousand four hundred twenty-nine' WHERE a=15967; UPDATE t2 SET c='fifty thousand five hundred sixty-five' WHERE a=15968; UPDATE t2 SET c='ninety-eight thousand six hundred twenty' WHERE a=15969; UPDATE t2 SET c='fifty-two thousand seven hundred twenty' WHERE a=15970; UPDATE t2 SET c='forty thousand five hundred fifty-five' WHERE a=15971; UPDATE t2 SET c='sixty-two thousand two hundred forty-seven' WHERE a=15972; UPDATE t2 SET c='forty-six thousand three hundred fifty-nine' WHERE a=15973; UPDATE t2 SET c='twenty-seven thousand three hundred seven' WHERE a=15974; UPDATE t2 SET c='fifty-three thousand seven hundred twenty' WHERE a=15975; UPDATE t2 SET c='ninety-five thousand four hundred sixty-six' WHERE a=15976; UPDATE t2 SET c='eighty-six thousand one hundred seventy-nine' WHERE a=15977; UPDATE t2 SET c='fifty-five thousand nine hundred twenty-eight' WHERE a=15978; UPDATE t2 SET c='fifty thousand four hundred seventeen' WHERE a=15979; UPDATE t2 SET c='ten thousand eight hundred seventy-four' WHERE a=15980; UPDATE t2 SET c='ninety-two thousand nineteen' WHERE a=15981; UPDATE t2 SET c='twenty-one thousand seven hundred seventy' WHERE a=15982; UPDATE t2 SET c='seven thousand three hundred thirty-eight' WHERE a=15983; UPDATE t2 SET c='seventy-six thousand seventy-eight' WHERE a=15984; UPDATE t2 SET c='thirty-five thousand six hundred thirty-seven' WHERE a=15985; UPDATE t2 SET c='eighty thousand five hundred ten' WHERE a=15986; UPDATE t2 SET c='fifty-four thousand eight hundred ninety-nine' WHERE a=15987; UPDATE t2 SET c='ninety-five thousand six hundred twenty-five' WHERE a=15988; UPDATE t2 SET c='forty-three thousand eight hundred forty-seven' WHERE a=15989; UPDATE t2 SET c='sixty-eight thousand six hundred seventy-nine' WHERE a=15990; UPDATE t2 SET c='fifty-five thousand four hundred forty-six' WHERE a=15991; UPDATE t2 SET c='ninety-eight thousand seven hundred ten' WHERE a=15992; UPDATE t2 SET c='seventy-one thousand five hundred eighty-eight' WHERE a=15993; UPDATE t2 SET c='four thousand seventy-four' WHERE a=15994; UPDATE t2 SET c='eighty-five thousand four hundred twenty-six' WHERE a=15995; UPDATE t2 SET c='ninety thousand seven hundred thirty-two' WHERE a=15996; UPDATE t2 SET c='fifty-four thousand sixty-four' WHERE a=15997; UPDATE t2 SET c='ninety-seven thousand one hundred' WHERE a=15998; UPDATE t2 SET c='ninety-one thousand six hundred forty-six' WHERE a=15999; UPDATE t2 SET c='two thousand five hundred seventy-seven' WHERE a=16000; UPDATE t2 SET c='eighty-one thousand three hundred forty' WHERE a=16001; UPDATE t2 SET c='eighty-five thousand eight hundred twenty-five' WHERE a=16002; UPDATE t2 SET c='fifty-one thousand six hundred thirty-five' WHERE a=16003; UPDATE t2 SET c='thirteen thousand eight hundred nineteen' WHERE a=16004; UPDATE t2 SET c='seventy-seven thousand seven hundred forty' WHERE a=16005; UPDATE t2 SET c='seventy-six thousand seven hundred twenty-two' WHERE a=16006; UPDATE t2 SET c='fifty-one thousand three hundred forty-seven' WHERE a=16007; UPDATE t2 SET c='twenty-five thousand four hundred forty' WHERE a=16008; UPDATE t2 SET c='forty thousand eight hundred thirty-one' WHERE a=16009; UPDATE t2 SET c='nineteen thousand three hundred sixty-seven' WHERE a=16010; UPDATE t2 SET c='twenty-eight thousand one hundred ninety-five' WHERE a=16011; UPDATE t2 SET c='fifty-four thousand one hundred nine' WHERE a=16012; UPDATE t2 SET c='thirty-four thousand two hundred sixty-eight' WHERE a=16013; UPDATE t2 SET c='twenty-three thousand six hundred seventy-nine' WHERE a=16014; UPDATE t2 SET c='fifty-three thousand one hundred seventy-five' WHERE a=16015; UPDATE t2 SET c='fifty-three thousand four hundred fifty-two' WHERE a=16016; UPDATE t2 SET c='thirty-three thousand nine hundred one' WHERE a=16017; UPDATE t2 SET c='seventy-five thousand three hundred eighty-five' WHERE a=16018; UPDATE t2 SET c='sixty-one thousand three hundred eighty-three' WHERE a=16019; UPDATE t2 SET c='thirty-two thousand one hundred thirteen' WHERE a=16020; UPDATE t2 SET c='seventy-seven thousand sixty-nine' WHERE a=16021; UPDATE t2 SET c='fifty-five thousand twenty-seven' WHERE a=16022; UPDATE t2 SET c='fifty-nine thousand nine hundred thirteen' WHERE a=16023; UPDATE t2 SET c='twenty-nine thousand five hundred fifty-five' WHERE a=16024; UPDATE t2 SET c='forty-seven thousand eight hundred thirty-three' WHERE a=16025; UPDATE t2 SET c='thirty-six thousand two hundred seventy' WHERE a=16026; UPDATE t2 SET c='seventy-six thousand seven hundred sixty-five' WHERE a=16027; UPDATE t2 SET c='ninety-seven thousand five hundred twenty-seven' WHERE a=16028; UPDATE t2 SET c='fifty thousand one hundred eighty-nine' WHERE a=16029; UPDATE t2 SET c='eighty-nine thousand one hundred fifty-eight' WHERE a=16030; UPDATE t2 SET c='fifty-eight thousand sixty-three' WHERE a=16031; UPDATE t2 SET c='ninety thousand five hundred eighty-two' WHERE a=16032; UPDATE t2 SET c='eighty-five thousand eight hundred seventy-five' WHERE a=16033; UPDATE t2 SET c='fifty-eight thousand two hundred sixty-five' WHERE a=16034; UPDATE t2 SET c='sixty-five thousand ninety-one' WHERE a=16035; UPDATE t2 SET c='six thousand three hundred thirty-six' WHERE a=16036; UPDATE t2 SET c='fifty-six thousand two hundred twenty-seven' WHERE a=16037; UPDATE t2 SET c='seventy-one thousand one hundred ninety-eight' WHERE a=16038; UPDATE t2 SET c='thirty-eight thousand four hundred forty-seven' WHERE a=16039; UPDATE t2 SET c='twenty-eight thousand seven hundred seventy' WHERE a=16040; UPDATE t2 SET c='eighty-five thousand three hundred five' WHERE a=16041; UPDATE t2 SET c='seventy-four thousand two hundred thirty-six' WHERE a=16042; UPDATE t2 SET c='fifty-seven thousand one hundred sixty-two' WHERE a=16043; UPDATE t2 SET c='four hundred sixty-three' WHERE a=16044; UPDATE t2 SET c='nine thousand six hundred sixty-eight' WHERE a=16045; UPDATE t2 SET c='thirty thousand three hundred ninety-four' WHERE a=16046; UPDATE t2 SET c='thirty-five thousand seventy-one' WHERE a=16047; UPDATE t2 SET c='seventy-three thousand nine hundred nineteen' WHERE a=16048; UPDATE t2 SET c='thirty-six thousand three hundred twenty-six' WHERE a=16049; UPDATE t2 SET c='sixty-seven thousand one hundred thirty-six' WHERE a=16050; UPDATE t2 SET c='forty-seven thousand nine hundred sixty' WHERE a=16051; UPDATE t2 SET c='thirty-seven thousand thirty-two' WHERE a=16052; UPDATE t2 SET c='sixty-two thousand six hundred sixty-eight' WHERE a=16053; UPDATE t2 SET c='fifty-one thousand two' WHERE a=16054; UPDATE t2 SET c='ninety-seven thousand seven hundred eighty-five' WHERE a=16055; UPDATE t2 SET c='seven thousand six hundred fifteen' WHERE a=16056; UPDATE t2 SET c='seventy-five thousand eight hundred six' WHERE a=16057; UPDATE t2 SET c='forty-eight thousand forty-four' WHERE a=16058; UPDATE t2 SET c='eighty-four thousand two hundred forty-six' WHERE a=16059; UPDATE t2 SET c='thirty-seven thousand five hundred seven' WHERE a=16060; UPDATE t2 SET c='twenty-two thousand eight hundred sixty-three' WHERE a=16061; UPDATE t2 SET c='thirty-seven thousand nine hundred fifty-two' WHERE a=16062; UPDATE t2 SET c='sixty-six thousand eight hundred one' WHERE a=16063; UPDATE t2 SET c='eighty-three thousand three hundred eighty-six' WHERE a=16064; UPDATE t2 SET c='seventy-three thousand two hundred thirty-nine' WHERE a=16065; UPDATE t2 SET c='ninety-five thousand six hundred twenty-two' WHERE a=16066; UPDATE t2 SET c='twenty thousand one hundred fifty-one' WHERE a=16067; UPDATE t2 SET c='forty-nine thousand eight hundred nineteen' WHERE a=16068; UPDATE t2 SET c='forty-nine thousand nine hundred sixty' WHERE a=16069; UPDATE t2 SET c='fifty-one thousand seven hundred forty-five' WHERE a=16070; UPDATE t2 SET c='sixty-six thousand six hundred fifty-three' WHERE a=16071; UPDATE t2 SET c='fifty-nine thousand six hundred seventy-three' WHERE a=16072; UPDATE t2 SET c='three thousand two hundred twenty-two' WHERE a=16073; UPDATE t2 SET c='fifty-one thousand forty-three' WHERE a=16074; UPDATE t2 SET c='fifty-seven thousand nine hundred sixty-six' WHERE a=16075; UPDATE t2 SET c='fifty thousand nine hundred twenty-seven' WHERE a=16076; UPDATE t2 SET c='seventy thousand nine hundred twelve' WHERE a=16077; UPDATE t2 SET c='forty-six thousand four' WHERE a=16078; UPDATE t2 SET c='eleven thousand seven hundred seventy-four' WHERE a=16079; UPDATE t2 SET c='seventy thousand two hundred sixty-three' WHERE a=16080; UPDATE t2 SET c='four thousand eight hundred ninety-four' WHERE a=16081; UPDATE t2 SET c='eighty-four thousand eight hundred seventy-six' WHERE a=16082; UPDATE t2 SET c='eighty-three thousand four hundred sixty-six' WHERE a=16083; UPDATE t2 SET c='ninety-eight thousand eight hundred eighty-five' WHERE a=16084; UPDATE t2 SET c='ten thousand three hundred ninety-seven' WHERE a=16085; UPDATE t2 SET c='forty-six thousand five hundred twenty-eight' WHERE a=16086; UPDATE t2 SET c='thirty-three thousand twenty-three' WHERE a=16087; UPDATE t2 SET c='forty-five thousand two hundred thirty-nine' WHERE a=16088; UPDATE t2 SET c='sixteen thousand four hundred eighty-nine' WHERE a=16089; UPDATE t2 SET c='eighty-six thousand thirty' WHERE a=16090; UPDATE t2 SET c='thirteen thousand two hundred ninety-eight' WHERE a=16091; UPDATE t2 SET c='two thousand three hundred twenty-seven' WHERE a=16092; UPDATE t2 SET c='eighty-three thousand ninety-eight' WHERE a=16093; UPDATE t2 SET c='fifty-one thousand seven hundred sixty-seven' WHERE a=16094; UPDATE t2 SET c='seventy-six thousand five hundred thirty-nine' WHERE a=16095; UPDATE t2 SET c='thirty-three thousand three hundred twenty-six' WHERE a=16096; UPDATE t2 SET c='sixty-five thousand seven hundred eighteen' WHERE a=16097; UPDATE t2 SET c='twelve thousand eight hundred seventy-seven' WHERE a=16098; UPDATE t2 SET c='eighty-two thousand seven hundred fifty-four' WHERE a=16099; UPDATE t2 SET c='seventeen thousand six hundred ninety-three' WHERE a=16100; UPDATE t2 SET c='sixty-five thousand five hundred forty' WHERE a=16101; UPDATE t2 SET c='sixty-two thousand one hundred ninety-nine' WHERE a=16102; UPDATE t2 SET c='twenty-nine thousand one hundred twelve' WHERE a=16103; UPDATE t2 SET c='forty-three thousand six hundred twenty-one' WHERE a=16104; UPDATE t2 SET c='thirty-six thousand seven hundred ninety-four' WHERE a=16105; UPDATE t2 SET c='eighty-five thousand four hundred sixty-nine' WHERE a=16106; UPDATE t2 SET c='forty-eight thousand five hundred eighty-two' WHERE a=16107; UPDATE t2 SET c='twenty-eight thousand seven hundred twenty-three' WHERE a=16108; UPDATE t2 SET c='sixty-six thousand nine hundred twenty-five' WHERE a=16109; UPDATE t2 SET c='fifty-one thousand one hundred fifty-one' WHERE a=16110; UPDATE t2 SET c='eighty-four thousand two hundred forty-one' WHERE a=16111; UPDATE t2 SET c='forty thousand one hundred seventy-six' WHERE a=16112; UPDATE t2 SET c='ninety-two thousand six hundred thirty-six' WHERE a=16113; UPDATE t2 SET c='eighty-two thousand two hundred ninety-four' WHERE a=16114; UPDATE t2 SET c='three thousand six hundred twenty-seven' WHERE a=16115; UPDATE t2 SET c='three thousand seven hundred ninety-five' WHERE a=16116; UPDATE t2 SET c='thirty-eight thousand five hundred ninety-two' WHERE a=16117; UPDATE t2 SET c='sixty-one thousand eighty-seven' WHERE a=16118; UPDATE t2 SET c='nineteen thousand five hundred seventeen' WHERE a=16119; UPDATE t2 SET c='nine thousand two hundred seventy-six' WHERE a=16120; UPDATE t2 SET c='eighty-six thousand six hundred thirty' WHERE a=16121; UPDATE t2 SET c='ninety-five thousand eight hundred forty-four' WHERE a=16122; UPDATE t2 SET c='fifty-nine thousand nine hundred forty-eight' WHERE a=16123; UPDATE t2 SET c='ninety-six thousand one hundred five' WHERE a=16124; UPDATE t2 SET c='seventy thousand seven hundred forty-nine' WHERE a=16125; UPDATE t2 SET c='eighty-seven thousand four hundred forty-nine' WHERE a=16126; UPDATE t2 SET c='eighty-seven thousand four hundred twelve' WHERE a=16127; UPDATE t2 SET c='twenty-three thousand two hundred ninety-three' WHERE a=16128; UPDATE t2 SET c='seventy-six thousand seven hundred eighty-one' WHERE a=16129; UPDATE t2 SET c='fifty-six thousand seven hundred ten' WHERE a=16130; UPDATE t2 SET c='seventy-five thousand eight hundred fifty-three' WHERE a=16131; UPDATE t2 SET c='forty-seven thousand one hundred forty-three' WHERE a=16132; UPDATE t2 SET c='thirteen thousand two hundred fifty-six' WHERE a=16133; UPDATE t2 SET c='eighty-two thousand nine hundred sixty-five' WHERE a=16134; UPDATE t2 SET c='thirty-one thousand one hundred one' WHERE a=16135; UPDATE t2 SET c='sixty-three thousand five hundred forty-eight' WHERE a=16136; UPDATE t2 SET c='seventy-five thousand thirty-two' WHERE a=16137; UPDATE t2 SET c='six thousand six hundred seventy-nine' WHERE a=16138; UPDATE t2 SET c='sixty-eight thousand six hundred twenty-four' WHERE a=16139; UPDATE t2 SET c='sixty-two thousand five hundred nineteen' WHERE a=16140; UPDATE t2 SET c='ninety-two thousand one hundred sixty-seven' WHERE a=16141; UPDATE t2 SET c='thirty-seven thousand two hundred forty-six' WHERE a=16142; UPDATE t2 SET c='seventy-seven thousand eighty-nine' WHERE a=16143; UPDATE t2 SET c='twenty-one thousand one hundred eighty-four' WHERE a=16144; UPDATE t2 SET c='seven thousand seven hundred seventy' WHERE a=16145; UPDATE t2 SET c='nine thousand eight hundred sixty-nine' WHERE a=16146; UPDATE t2 SET c='seventy-three thousand seven hundred twenty' WHERE a=16147; UPDATE t2 SET c='fifty-one thousand nine hundred four' WHERE a=16148; UPDATE t2 SET c='eighty-eight thousand eight hundred ninety-five' WHERE a=16149; UPDATE t2 SET c='thirty-six thousand one hundred four' WHERE a=16150; UPDATE t2 SET c='forty thousand one hundred fifty-seven' WHERE a=16151; UPDATE t2 SET c='forty-seven thousand one hundred sixty-eight' WHERE a=16152; UPDATE t2 SET c='five hundred three' WHERE a=16153; UPDATE t2 SET c='forty-one thousand two hundred thirty-eight' WHERE a=16154; UPDATE t2 SET c='eighty-eight thousand seven hundred fifty-five' WHERE a=16155; UPDATE t2 SET c='fifty-eight thousand eighty-one' WHERE a=16156; UPDATE t2 SET c='thirty-three thousand seven hundred sixty' WHERE a=16157; UPDATE t2 SET c='seventy-eight thousand three hundred ninety-three' WHERE a=16158; UPDATE t2 SET c='sixty-four thousand three hundred ninety-seven' WHERE a=16159; UPDATE t2 SET c='seventy-seven thousand nine hundred thirty-six' WHERE a=16160; UPDATE t2 SET c='eighty-eight thousand one hundred eleven' WHERE a=16161; UPDATE t2 SET c='fifty-four thousand nine hundred thirty-three' WHERE a=16162; UPDATE t2 SET c='sixty-two thousand six hundred forty' WHERE a=16163; UPDATE t2 SET c='fifty-four thousand four hundred sixty-two' WHERE a=16164; UPDATE t2 SET c='thirty-three thousand four hundred ten' WHERE a=16165; UPDATE t2 SET c='thirty-five thousand eight hundred thirty-six' WHERE a=16166; UPDATE t2 SET c='eleven thousand five hundred twenty' WHERE a=16167; UPDATE t2 SET c='thirty-one thousand five hundred forty-six' WHERE a=16168; UPDATE t2 SET c='fifty-six thousand two hundred ninety-one' WHERE a=16169; UPDATE t2 SET c='forty-five thousand two hundred twelve' WHERE a=16170; UPDATE t2 SET c='twenty-three thousand five hundred seventy-six' WHERE a=16171; UPDATE t2 SET c='one thousand forty-seven' WHERE a=16172; UPDATE t2 SET c='eighteen thousand fifty-four' WHERE a=16173; UPDATE t2 SET c='eighteen thousand two hundred forty-two' WHERE a=16174; UPDATE t2 SET c='forty-one thousand six hundred fifty-six' WHERE a=16175; UPDATE t2 SET c='twenty-nine thousand ninety-six' WHERE a=16176; UPDATE t2 SET c='seventy-seven thousand three hundred twenty-three' WHERE a=16177; UPDATE t2 SET c='sixty-eight thousand one hundred seventy-four' WHERE a=16178; UPDATE t2 SET c='forty-three thousand eight hundred sixty-one' WHERE a=16179; UPDATE t2 SET c='forty thousand seven hundred forty-three' WHERE a=16180; UPDATE t2 SET c='forty-three thousand two hundred seventy-nine' WHERE a=16181; UPDATE t2 SET c='fourteen thousand two hundred eight' WHERE a=16182; UPDATE t2 SET c='sixty-eight thousand five hundred seventy-two' WHERE a=16183; UPDATE t2 SET c='seventy-eight thousand three hundred thirty-one' WHERE a=16184; UPDATE t2 SET c='thirty-six thousand seven hundred twenty-five' WHERE a=16185; UPDATE t2 SET c='thirty-two thousand seven hundred eighteen' WHERE a=16186; UPDATE t2 SET c='twenty-six thousand four hundred forty-nine' WHERE a=16187; UPDATE t2 SET c='eighty-five thousand five hundred eighty-five' WHERE a=16188; UPDATE t2 SET c='forty-nine thousand seven hundred ninety-four' WHERE a=16189; UPDATE t2 SET c='forty-three thousand seven hundred eighty-three' WHERE a=16190; UPDATE t2 SET c='seventy-nine thousand three hundred thirty-three' WHERE a=16191; UPDATE t2 SET c='twenty-seven thousand four hundred seventy-nine' WHERE a=16192; UPDATE t2 SET c='eighty-two thousand two hundred sixteen' WHERE a=16193; UPDATE t2 SET c='eighty-four thousand six hundred eighty-three' WHERE a=16194; UPDATE t2 SET c='fifty-six thousand five hundred fifty-four' WHERE a=16195; UPDATE t2 SET c='forty-six thousand eighty-four' WHERE a=16196; UPDATE t2 SET c='sixty-four thousand seven hundred forty-two' WHERE a=16197; UPDATE t2 SET c='sixty-five thousand four hundred thirty-seven' WHERE a=16198; UPDATE t2 SET c='fifty thousand five hundred sixty-two' WHERE a=16199; UPDATE t2 SET c='twelve thousand three hundred sixty-eight' WHERE a=16200; UPDATE t2 SET c='nineteen thousand seven hundred forty-eight' WHERE a=16201; UPDATE t2 SET c='ninety thousand nine hundred fifty-one' WHERE a=16202; UPDATE t2 SET c='seventy-nine thousand one hundred twenty-two' WHERE a=16203; UPDATE t2 SET c='sixty-seven thousand nine hundred fifty-one' WHERE a=16204; UPDATE t2 SET c='eighty-eight thousand three hundred nineteen' WHERE a=16205; UPDATE t2 SET c='fifty-six thousand seventy-three' WHERE a=16206; UPDATE t2 SET c='twenty-one thousand six hundred ninety-seven' WHERE a=16207; UPDATE t2 SET c='seventy-one thousand one hundred sixty-nine' WHERE a=16208; UPDATE t2 SET c='fifty thousand eight hundred twenty-one' WHERE a=16209; UPDATE t2 SET c='seventy-two thousand three hundred thirty' WHERE a=16210; UPDATE t2 SET c='eighty-eight thousand five hundred fifty-eight' WHERE a=16211; UPDATE t2 SET c='twenty-two thousand eight hundred ninety-two' WHERE a=16212; UPDATE t2 SET c='thirty-eight thousand four hundred six' WHERE a=16213; UPDATE t2 SET c='ninety-one thousand four hundred twenty' WHERE a=16214; UPDATE t2 SET c='forty-one thousand fifty-seven' WHERE a=16215; UPDATE t2 SET c='ninety-seven thousand one hundred forty' WHERE a=16216; UPDATE t2 SET c='ninety-seven thousand two hundred ninety-eight' WHERE a=16217; UPDATE t2 SET c='sixty-nine thousand four hundred thirty-four' WHERE a=16218; UPDATE t2 SET c='ninety-nine thousand eight hundred six' WHERE a=16219; UPDATE t2 SET c='thirty-two thousand one hundred seventeen' WHERE a=16220; UPDATE t2 SET c='fifty-five thousand five hundred twenty' WHERE a=16221; UPDATE t2 SET c='thirty-eight thousand two hundred nineteen' WHERE a=16222; UPDATE t2 SET c='fifty-two thousand nine hundred fifty-five' WHERE a=16223; UPDATE t2 SET c='seventy-seven thousand three hundred ninety-eight' WHERE a=16224; UPDATE t2 SET c='ninety-one thousand eight hundred seventeen' WHERE a=16225; UPDATE t2 SET c='eighty-six thousand six hundred forty-three' WHERE a=16226; UPDATE t2 SET c='seventy-nine thousand four hundred twenty-six' WHERE a=16227; UPDATE t2 SET c='ninety-five thousand seven hundred seventy-seven' WHERE a=16228; UPDATE t2 SET c='fifty-four thousand three hundred thirteen' WHERE a=16229; UPDATE t2 SET c='forty-one thousand five hundred fifty-eight' WHERE a=16230; UPDATE t2 SET c='ninety-one thousand one hundred eighty' WHERE a=16231; UPDATE t2 SET c='fourteen thousand four hundred thirty-seven' WHERE a=16232; UPDATE t2 SET c='ninety-three thousand seven hundred forty-four' WHERE a=16233; UPDATE t2 SET c='fifty-eight thousand six hundred eighty-eight' WHERE a=16234; UPDATE t2 SET c='eighty-three thousand sixty' WHERE a=16235; UPDATE t2 SET c='seventy-nine thousand seven hundred ninety-five' WHERE a=16236; UPDATE t2 SET c='ninety-six thousand two hundred seventy-five' WHERE a=16237; UPDATE t2 SET c='seventy-three thousand seventy-six' WHERE a=16238; UPDATE t2 SET c='sixty-eight thousand six hundred nine' WHERE a=16239; UPDATE t2 SET c='forty-two thousand five hundred twenty-three' WHERE a=16240; UPDATE t2 SET c='eight thousand four hundred thirty-six' WHERE a=16241; UPDATE t2 SET c='sixty-three thousand one hundred thirty-two' WHERE a=16242; UPDATE t2 SET c='thirty-seven thousand nine hundred forty-five' WHERE a=16243; UPDATE t2 SET c='sixty-eight thousand nine hundred fifty-seven' WHERE a=16244; UPDATE t2 SET c='sixty-five thousand nine hundred eighty-two' WHERE a=16245; UPDATE t2 SET c='forty-eight thousand four hundred twenty-eight' WHERE a=16246; UPDATE t2 SET c='four thousand seven hundred forty-four' WHERE a=16247; UPDATE t2 SET c='thirty-seven thousand ninety-seven' WHERE a=16248; UPDATE t2 SET c='eighty-six thousand four hundred forty' WHERE a=16249; UPDATE t2 SET c='eleven thousand nine hundred six' WHERE a=16250; UPDATE t2 SET c='sixty-six thousand two hundred twenty-three' WHERE a=16251; UPDATE t2 SET c='sixty-two thousand four hundred sixty-six' WHERE a=16252; UPDATE t2 SET c='twenty thousand eight hundred forty-six' WHERE a=16253; UPDATE t2 SET c='ninety-two thousand five hundred fifty-seven' WHERE a=16254; UPDATE t2 SET c='fifty-eight thousand one hundred fifteen' WHERE a=16255; UPDATE t2 SET c='six thousand six hundred twenty-four' WHERE a=16256; UPDATE t2 SET c='ninety-eight thousand two hundred eighty-one' WHERE a=16257; UPDATE t2 SET c='eighty-two thousand seven hundred sixty-eight' WHERE a=16258; UPDATE t2 SET c='five thousand three' WHERE a=16259; UPDATE t2 SET c='ninety-one thousand four hundred forty-four' WHERE a=16260; UPDATE t2 SET c='eighty thousand seven hundred twenty-eight' WHERE a=16261; UPDATE t2 SET c='seventy-nine thousand one hundred forty-two' WHERE a=16262; UPDATE t2 SET c='twenty-nine thousand one hundred ninety' WHERE a=16263; UPDATE t2 SET c='eighty-five thousand six hundred nine' WHERE a=16264; UPDATE t2 SET c='thirty-nine thousand eight hundred eighty-six' WHERE a=16265; UPDATE t2 SET c='thirty-three thousand three hundred forty-six' WHERE a=16266; UPDATE t2 SET c='ninety-nine thousand nine hundred thirty-seven' WHERE a=16267; UPDATE t2 SET c='four thousand nine hundred seventeen' WHERE a=16268; UPDATE t2 SET c='thirty-four thousand two hundred eighty-three' WHERE a=16269; UPDATE t2 SET c='twenty-six thousand five hundred forty-eight' WHERE a=16270; UPDATE t2 SET c='ninety-two thousand two hundred eighty-eight' WHERE a=16271; UPDATE t2 SET c='ten thousand one hundred twenty-three' WHERE a=16272; UPDATE t2 SET c='twenty-eight thousand two hundred two' WHERE a=16273; UPDATE t2 SET c='eighty-six thousand one hundred thirteen' WHERE a=16274; UPDATE t2 SET c='fifty-one thousand eight hundred fifty-nine' WHERE a=16275; UPDATE t2 SET c='eighty-five thousand twenty-two' WHERE a=16276; UPDATE t2 SET c='seventy-two thousand eight hundred seven' WHERE a=16277; UPDATE t2 SET c='five thousand six hundred nine' WHERE a=16278; UPDATE t2 SET c='twelve thousand five hundred twenty-four' WHERE a=16279; UPDATE t2 SET c='fourteen thousand eight hundred eleven' WHERE a=16280; UPDATE t2 SET c='fifty-eight thousand one hundred eighty-seven' WHERE a=16281; UPDATE t2 SET c='ninety-six thousand nine hundred fifty-two' WHERE a=16282; UPDATE t2 SET c='seventy-five thousand nine hundred twenty-eight' WHERE a=16283; UPDATE t2 SET c='forty-one thousand eight hundred twenty-eight' WHERE a=16284; UPDATE t2 SET c='sixty-six thousand four hundred ninety-three' WHERE a=16285; UPDATE t2 SET c='fifty-three thousand three hundred twelve' WHERE a=16286; UPDATE t2 SET c='ninety-two thousand eight hundred twenty-two' WHERE a=16287; UPDATE t2 SET c='seventy-four thousand six hundred one' WHERE a=16288; UPDATE t2 SET c='eighty-nine thousand five hundred seventy-three' WHERE a=16289; UPDATE t2 SET c='forty-seven thousand five hundred ninety-eight' WHERE a=16290; UPDATE t2 SET c='thirty-six thousand seven hundred ten' WHERE a=16291; UPDATE t2 SET c='twenty-four thousand three hundred ninety-seven' WHERE a=16292; UPDATE t2 SET c='thirty-five thousand six hundred sixty' WHERE a=16293; UPDATE t2 SET c='eighteen thousand one hundred ninety-one' WHERE a=16294; UPDATE t2 SET c='sixty-two thousand eighty' WHERE a=16295; UPDATE t2 SET c='fifty-one thousand one hundred forty-three' WHERE a=16296; UPDATE t2 SET c='ninety-six thousand nine hundred twenty-eight' WHERE a=16297; UPDATE t2 SET c='eighty-six thousand six hundred seventy-nine' WHERE a=16298; UPDATE t2 SET c='ninety-three thousand four hundred fifty-seven' WHERE a=16299; UPDATE t2 SET c='eighty-five thousand three hundred fifty-three' WHERE a=16300; UPDATE t2 SET c='thirty-five thousand six hundred one' WHERE a=16301; UPDATE t2 SET c='twenty-two thousand three hundred sixty-one' WHERE a=16302; UPDATE t2 SET c='seventy-four thousand nine hundred sixty-six' WHERE a=16303; UPDATE t2 SET c='eighty-seven thousand eight hundred seventy-six' WHERE a=16304; UPDATE t2 SET c='fifty-two thousand nine hundred eighteen' WHERE a=16305; UPDATE t2 SET c='sixty-two thousand seven hundred seventy-four' WHERE a=16306; UPDATE t2 SET c='forty-six thousand four hundred thirty-one' WHERE a=16307; UPDATE t2 SET c='ninety-one thousand nineteen' WHERE a=16308; UPDATE t2 SET c='eighteen thousand thirteen' WHERE a=16309; UPDATE t2 SET c='nine thousand two hundred fifty-seven' WHERE a=16310; UPDATE t2 SET c='eighty-one thousand one hundred sixty-one' WHERE a=16311; UPDATE t2 SET c='forty thousand three hundred thirty-eight' WHERE a=16312; UPDATE t2 SET c='twenty-nine thousand nine hundred ten' WHERE a=16313; UPDATE t2 SET c='thirteen thousand fifty-two' WHERE a=16314; UPDATE t2 SET c='nineteen thousand nine hundred forty-three' WHERE a=16315; UPDATE t2 SET c='ninety-eight thousand one hundred forty-seven' WHERE a=16316; UPDATE t2 SET c='sixteen thousand one hundred' WHERE a=16317; UPDATE t2 SET c='sixty-four thousand eight hundred eighty-five' WHERE a=16318; UPDATE t2 SET c='fifty-one thousand eight hundred sixty-three' WHERE a=16319; UPDATE t2 SET c='fifty-eight thousand five hundred ninety-eight' WHERE a=16320; UPDATE t2 SET c='eighty-one thousand nine hundred thirty-eight' WHERE a=16321; UPDATE t2 SET c='fifty-eight thousand six hundred sixty-nine' WHERE a=16322; UPDATE t2 SET c='seventy thousand five hundred fifteen' WHERE a=16323; UPDATE t2 SET c='ninety thousand seven hundred thirty-four' WHERE a=16324; UPDATE t2 SET c='fifty-two thousand five hundred ninety-six' WHERE a=16325; UPDATE t2 SET c='fifty-two thousand two hundred seventy-nine' WHERE a=16326; UPDATE t2 SET c='eighty-eight thousand six hundred one' WHERE a=16327; UPDATE t2 SET c='sixty-five thousand six hundred thirty-three' WHERE a=16328; UPDATE t2 SET c='ninety thousand seven hundred thirty-four' WHERE a=16329; UPDATE t2 SET c='sixteen thousand three hundred twenty-one' WHERE a=16330; UPDATE t2 SET c='ninety-six thousand five hundred seventeen' WHERE a=16331; UPDATE t2 SET c='eighty-one thousand two hundred ninety-six' WHERE a=16332; UPDATE t2 SET c='seventeen thousand four hundred forty-five' WHERE a=16333; UPDATE t2 SET c='ninety-six thousand two hundred ninety-four' WHERE a=16334; UPDATE t2 SET c='forty-two thousand two hundred thirty-eight' WHERE a=16335; UPDATE t2 SET c='thirty-six thousand one hundred fifty-three' WHERE a=16336; UPDATE t2 SET c='eighty thousand four hundred seventy-three' WHERE a=16337; UPDATE t2 SET c='fifty-five thousand five hundred thirty-nine' WHERE a=16338; UPDATE t2 SET c='sixty-five thousand eight hundred ninety-one' WHERE a=16339; UPDATE t2 SET c='ninety-three thousand seven hundred eighty-three' WHERE a=16340; UPDATE t2 SET c='seventy-seven thousand twenty-five' WHERE a=16341; UPDATE t2 SET c='sixty-three thousand five hundred fifty-two' WHERE a=16342; UPDATE t2 SET c='four thousand three hundred seventy-eight' WHERE a=16343; UPDATE t2 SET c='ninety-five thousand nine hundred twenty-three' WHERE a=16344; UPDATE t2 SET c='sixty thousand three hundred eighty-three' WHERE a=16345; UPDATE t2 SET c='sixty-five thousand eighty-nine' WHERE a=16346; UPDATE t2 SET c='twenty-three thousand seven hundred nineteen' WHERE a=16347; UPDATE t2 SET c='seventy-nine thousand four hundred seventy-seven' WHERE a=16348; UPDATE t2 SET c='forty-two thousand seven hundred ninety-five' WHERE a=16349; UPDATE t2 SET c='seventy-three thousand five hundred seventy-four' WHERE a=16350; UPDATE t2 SET c='eight thousand nine hundred sixty-two' WHERE a=16351; UPDATE t2 SET c='thirty-three thousand one hundred eighty-two' WHERE a=16352; UPDATE t2 SET c='sixty-eight thousand seven hundred thirty-six' WHERE a=16353; UPDATE t2 SET c='forty-three thousand four hundred five' WHERE a=16354; UPDATE t2 SET c='eighty-five thousand four hundred sixty-two' WHERE a=16355; UPDATE t2 SET c='ninety-seven thousand eight hundred sixteen' WHERE a=16356; UPDATE t2 SET c='thirteen thousand nine hundred forty' WHERE a=16357; UPDATE t2 SET c='ninety-one thousand eight hundred seven' WHERE a=16358; UPDATE t2 SET c='eighty-eight thousand two hundred forty-six' WHERE a=16359; UPDATE t2 SET c='forty thousand four hundred seven' WHERE a=16360; UPDATE t2 SET c='fifty-nine thousand seven hundred ninety-nine' WHERE a=16361; UPDATE t2 SET c='eighty-three thousand six hundred seventy-seven' WHERE a=16362; UPDATE t2 SET c='forty-seven thousand eighteen' WHERE a=16363; UPDATE t2 SET c='one thousand one hundred ninety-six' WHERE a=16364; UPDATE t2 SET c='seventeen thousand one hundred twenty-six' WHERE a=16365; UPDATE t2 SET c='eighty-one thousand fifty-two' WHERE a=16366; UPDATE t2 SET c='ninety-four thousand seven hundred ninety-one' WHERE a=16367; UPDATE t2 SET c='twenty-six thousand six hundred fifty' WHERE a=16368; UPDATE t2 SET c='seventy-six thousand eight hundred forty-one' WHERE a=16369; UPDATE t2 SET c='twenty-eight thousand eight hundred twenty-six' WHERE a=16370; UPDATE t2 SET c='forty-five thousand six hundred sixty-two' WHERE a=16371; UPDATE t2 SET c='thirty-nine thousand twenty-four' WHERE a=16372; UPDATE t2 SET c='seventy-five thousand seven hundred forty-five' WHERE a=16373; UPDATE t2 SET c='sixty-four thousand seven hundred seventy-two' WHERE a=16374; UPDATE t2 SET c='twenty-two thousand seven hundred eighty-six' WHERE a=16375; UPDATE t2 SET c='sixty-nine thousand five hundred twenty-five' WHERE a=16376; UPDATE t2 SET c='thirty-six thousand three hundred ninety-eight' WHERE a=16377; UPDATE t2 SET c='five thousand five hundred twenty-one' WHERE a=16378; UPDATE t2 SET c='seventy-eight thousand thirty-eight' WHERE a=16379; UPDATE t2 SET c='sixty-three thousand eight hundred thirty-eight' WHERE a=16380; UPDATE t2 SET c='sixty-one thousand nine hundred four' WHERE a=16381; UPDATE t2 SET c='eighty thousand seven hundred eight' WHERE a=16382; UPDATE t2 SET c='eighty-four thousand nine hundred ninety-three' WHERE a=16383; UPDATE t2 SET c='twenty thousand three hundred ninety-one' WHERE a=16384; UPDATE t2 SET c='forty-six thousand nine hundred sixty-seven' WHERE a=16385; UPDATE t2 SET c='eighty thousand two hundred thirty-five' WHERE a=16386; UPDATE t2 SET c='fifty-one thousand four hundred fifty-six' WHERE a=16387; UPDATE t2 SET c='twenty-two thousand five hundred ninety-three' WHERE a=16388; UPDATE t2 SET c='thirty-four thousand four hundred forty-three' WHERE a=16389; UPDATE t2 SET c='fifty-three thousand eight hundred eleven' WHERE a=16390; UPDATE t2 SET c='eighty-eight thousand nine hundred ninety-seven' WHERE a=16391; UPDATE t2 SET c='eighteen thousand four hundred twenty-seven' WHERE a=16392; UPDATE t2 SET c='thirty-six thousand two hundred eleven' WHERE a=16393; UPDATE t2 SET c='twenty-seven thousand two hundred ten' WHERE a=16394; UPDATE t2 SET c='fifty-one thousand ninety-eight' WHERE a=16395; UPDATE t2 SET c='seventy-eight thousand seven hundred sixteen' WHERE a=16396; UPDATE t2 SET c='forty-three thousand eight hundred twenty-two' WHERE a=16397; UPDATE t2 SET c='eighteen thousand one hundred twenty-seven' WHERE a=16398; UPDATE t2 SET c='twenty-seven thousand one hundred sixty-eight' WHERE a=16399; UPDATE t2 SET c='five thousand four hundred eighteen' WHERE a=16400; UPDATE t2 SET c='thirty-nine thousand six hundred thirty-eight' WHERE a=16401; UPDATE t2 SET c='three thousand six hundred forty-one' WHERE a=16402; UPDATE t2 SET c='thirty-eight thousand three hundred fifty-seven' WHERE a=16403; UPDATE t2 SET c='thirty-four thousand nine hundred seventy-seven' WHERE a=16404; UPDATE t2 SET c='thirty-five thousand five hundred ninety-seven' WHERE a=16405; UPDATE t2 SET c='seven thousand six hundred eighteen' WHERE a=16406; UPDATE t2 SET c='eighty-eight thousand two hundred eighty-seven' WHERE a=16407; UPDATE t2 SET c='five thousand five hundred nineteen' WHERE a=16408; UPDATE t2 SET c='three thousand eighty-six' WHERE a=16409; UPDATE t2 SET c='five thousand three hundred nine' WHERE a=16410; UPDATE t2 SET c='ten thousand seven hundred two' WHERE a=16411; UPDATE t2 SET c='sixty-eight thousand seven hundred ninety-six' WHERE a=16412; UPDATE t2 SET c='four thousand two hundred eleven' WHERE a=16413; UPDATE t2 SET c='ninety-five thousand six hundred forty-five' WHERE a=16414; UPDATE t2 SET c='thirty-three thousand five hundred thirty-two' WHERE a=16415; UPDATE t2 SET c='seventy-four thousand one hundred nineteen' WHERE a=16416; UPDATE t2 SET c='seventy thousand twenty-three' WHERE a=16417; UPDATE t2 SET c='eighty-two thousand ninety-four' WHERE a=16418; UPDATE t2 SET c='forty thousand two hundred sixty-seven' WHERE a=16419; UPDATE t2 SET c='eighty-six thousand one hundred fifty-two' WHERE a=16420; UPDATE t2 SET c='eighty-two thousand five hundred seventy-four' WHERE a=16421; UPDATE t2 SET c='seventy-eight thousand fifty-four' WHERE a=16422; UPDATE t2 SET c='seventy-four thousand two hundred eighty-four' WHERE a=16423; UPDATE t2 SET c='thirteen thousand two hundred thirty-nine' WHERE a=16424; UPDATE t2 SET c='fifty-six thousand two hundred forty-three' WHERE a=16425; UPDATE t2 SET c='thirty-two thousand nine hundred twenty-five' WHERE a=16426; UPDATE t2 SET c='sixty-two thousand one hundred eighty-four' WHERE a=16427; UPDATE t2 SET c='thirty-eight thousand two hundred fifty-one' WHERE a=16428; UPDATE t2 SET c='sixty-nine thousand seven hundred twenty-five' WHERE a=16429; UPDATE t2 SET c='fifty-three thousand two hundred fifty-four' WHERE a=16430; UPDATE t2 SET c='eighty-five thousand four hundred eighty-five' WHERE a=16431; UPDATE t2 SET c='eleven thousand one hundred eighty-nine' WHERE a=16432; UPDATE t2 SET c='sixty-three thousand four hundred sixty-eight' WHERE a=16433; UPDATE t2 SET c='fifteen thousand seven hundred eighty-nine' WHERE a=16434; UPDATE t2 SET c='fifty-seven thousand one hundred thirty-seven' WHERE a=16435; UPDATE t2 SET c='fifty-six thousand six hundred forty-six' WHERE a=16436; UPDATE t2 SET c='eighty-one thousand sixty' WHERE a=16437; UPDATE t2 SET c='fourteen thousand four hundred sixty-one' WHERE a=16438; UPDATE t2 SET c='forty-four thousand seven hundred seventy-eight' WHERE a=16439; UPDATE t2 SET c='seventy-eight thousand three hundred fifty-two' WHERE a=16440; UPDATE t2 SET c='fifty thousand seven hundred thirteen' WHERE a=16441; UPDATE t2 SET c='seven thousand seven hundred nine' WHERE a=16442; UPDATE t2 SET c='eighty-six thousand five hundred thirty-three' WHERE a=16443; UPDATE t2 SET c='one thousand three hundred forty-two' WHERE a=16444; UPDATE t2 SET c='thirty-seven thousand six hundred fifty-five' WHERE a=16445; UPDATE t2 SET c='ninety-one thousand nine hundred fourteen' WHERE a=16446; UPDATE t2 SET c='four thousand sixty-two' WHERE a=16447; UPDATE t2 SET c='eighty-two thousand eight hundred fifty-three' WHERE a=16448; UPDATE t2 SET c='forty-nine thousand six hundred' WHERE a=16449; UPDATE t2 SET c='fifty-seven thousand six hundred fifty' WHERE a=16450; UPDATE t2 SET c='eighty-two thousand five hundred forty-four' WHERE a=16451; UPDATE t2 SET c='eight thousand five hundred sixty-five' WHERE a=16452; UPDATE t2 SET c='ninety thousand three hundred three' WHERE a=16453; UPDATE t2 SET c='eighty-eight thousand two hundred sixty' WHERE a=16454; UPDATE t2 SET c='seventy-six thousand eight hundred thirty-five' WHERE a=16455; UPDATE t2 SET c='forty-one thousand three hundred ninety-eight' WHERE a=16456; UPDATE t2 SET c='forty-nine thousand five hundred seventeen' WHERE a=16457; UPDATE t2 SET c='sixty-nine thousand six hundred eighty-seven' WHERE a=16458; UPDATE t2 SET c='thirty-one thousand nine hundred thirty-four' WHERE a=16459; UPDATE t2 SET c='seven hundred forty-four' WHERE a=16460; UPDATE t2 SET c='sixteen thousand seven hundred twenty-nine' WHERE a=16461; UPDATE t2 SET c='fifty-nine thousand nine hundred three' WHERE a=16462; UPDATE t2 SET c='seventy-seven thousand one hundred thirty-six' WHERE a=16463; UPDATE t2 SET c='seventy-six thousand two hundred sixty-seven' WHERE a=16464; UPDATE t2 SET c='ninety-nine thousand nine hundred forty-four' WHERE a=16465; UPDATE t2 SET c='eighty-five thousand six hundred fifty-four' WHERE a=16466; UPDATE t2 SET c='thirty-nine thousand five hundred fifty-eight' WHERE a=16467; UPDATE t2 SET c='fifty-six thousand six hundred two' WHERE a=16468; UPDATE t2 SET c='ninety-four thousand six hundred one' WHERE a=16469; UPDATE t2 SET c='sixty-six thousand three hundred fifty-four' WHERE a=16470; UPDATE t2 SET c='six thousand one hundred ninety-two' WHERE a=16471; UPDATE t2 SET c='thirty-four thousand five hundred two' WHERE a=16472; UPDATE t2 SET c='nineteen thousand six hundred sixty-four' WHERE a=16473; UPDATE t2 SET c='five thousand nine hundred eighty-six' WHERE a=16474; UPDATE t2 SET c='ninety-four thousand forty-nine' WHERE a=16475; UPDATE t2 SET c='nineteen thousand five hundred eighty-two' WHERE a=16476; UPDATE t2 SET c='eighteen thousand six hundred ninety-eight' WHERE a=16477; UPDATE t2 SET c='thirty-six thousand six hundred eighty-one' WHERE a=16478; UPDATE t2 SET c='seventy-nine thousand six hundred sixty-six' WHERE a=16479; UPDATE t2 SET c='twenty thousand four hundred forty-one' WHERE a=16480; UPDATE t2 SET c='thirty-five thousand eight hundred ninety-four' WHERE a=16481; UPDATE t2 SET c='ninety-eight thousand six hundred twenty-two' WHERE a=16482; UPDATE t2 SET c='six thousand three hundred ten' WHERE a=16483; UPDATE t2 SET c='thirty-five thousand seven hundred twenty-one' WHERE a=16484; UPDATE t2 SET c='fifty-three thousand nine hundred three' WHERE a=16485; UPDATE t2 SET c='four thousand eight hundred eighty-one' WHERE a=16486; UPDATE t2 SET c='sixty-four thousand thirty-eight' WHERE a=16487; UPDATE t2 SET c='twenty-seven thousand two hundred ninety-five' WHERE a=16488; UPDATE t2 SET c='fifteen thousand four hundred seventy-two' WHERE a=16489; UPDATE t2 SET c='fifty-three thousand six hundred two' WHERE a=16490; UPDATE t2 SET c='four thousand nine hundred nineteen' WHERE a=16491; UPDATE t2 SET c='ninety-one thousand one hundred thirteen' WHERE a=16492; UPDATE t2 SET c='fifty-nine thousand three hundred thirty-one' WHERE a=16493; UPDATE t2 SET c='eighty-one thousand sixty-three' WHERE a=16494; UPDATE t2 SET c='thirty-five thousand six hundred ninety-five' WHERE a=16495; UPDATE t2 SET c='seventy-two thousand three hundred thirty-one' WHERE a=16496; UPDATE t2 SET c='thirty-seven thousand three hundred forty-four' WHERE a=16497; UPDATE t2 SET c='seven thousand six' WHERE a=16498; UPDATE t2 SET c='eighty-nine thousand eight hundred seventeen' WHERE a=16499; UPDATE t2 SET c='fifty-four thousand three hundred forty-five' WHERE a=16500; UPDATE t2 SET c='fifty-three thousand one hundred thirty-three' WHERE a=16501; UPDATE t2 SET c='twenty-nine thousand two hundred ninety-six' WHERE a=16502; UPDATE t2 SET c='eighty-seven thousand eighty-nine' WHERE a=16503; UPDATE t2 SET c='ninety-nine thousand two hundred fifty-four' WHERE a=16504; UPDATE t2 SET c='seventeen thousand four hundred six' WHERE a=16505; UPDATE t2 SET c='eleven thousand two hundred seventy' WHERE a=16506; UPDATE t2 SET c='ninety-eight thousand eight hundred sixty-five' WHERE a=16507; UPDATE t2 SET c='fifty-one thousand six hundred thirty-three' WHERE a=16508; UPDATE t2 SET c='seventy-one thousand seventy-two' WHERE a=16509; UPDATE t2 SET c='ninety-five thousand seven hundred ninety-eight' WHERE a=16510; UPDATE t2 SET c='eighty thousand six hundred three' WHERE a=16511; UPDATE t2 SET c='sixty-five thousand nine hundred seventeen' WHERE a=16512; UPDATE t2 SET c='eighty-three thousand eight hundred twenty-three' WHERE a=16513; UPDATE t2 SET c='sixty-three thousand seven hundred sixty-six' WHERE a=16514; UPDATE t2 SET c='twenty-four thousand seven hundred thirty-seven' WHERE a=16515; UPDATE t2 SET c='eight thousand nine hundred thirty-three' WHERE a=16516; UPDATE t2 SET c='sixty-nine thousand six hundred thirty-two' WHERE a=16517; UPDATE t2 SET c='eighty-nine thousand nine hundred eighty-five' WHERE a=16518; UPDATE t2 SET c='forty-three thousand three hundred eighty-six' WHERE a=16519; UPDATE t2 SET c='fifty-nine thousand two hundred thirty-seven' WHERE a=16520; UPDATE t2 SET c='nine thousand nine hundred fifty-two' WHERE a=16521; UPDATE t2 SET c='twenty thousand seven hundred ninety-three' WHERE a=16522; UPDATE t2 SET c='forty thousand two hundred nineteen' WHERE a=16523; UPDATE t2 SET c='nine thousand three hundred sixteen' WHERE a=16524; UPDATE t2 SET c='forty-six thousand eighty-two' WHERE a=16525; UPDATE t2 SET c='forty-three thousand two hundred seventeen' WHERE a=16526; UPDATE t2 SET c='thirty-eight thousand eight hundred four' WHERE a=16527; UPDATE t2 SET c='ninety-nine thousand four hundred ninety-eight' WHERE a=16528; UPDATE t2 SET c='seventy-eight thousand two hundred forty-three' WHERE a=16529; UPDATE t2 SET c='eighty-nine thousand forty-one' WHERE a=16530; UPDATE t2 SET c='seventy-three thousand six hundred twenty' WHERE a=16531; UPDATE t2 SET c='twenty-seven thousand six hundred seventy-nine' WHERE a=16532; UPDATE t2 SET c='forty-one thousand six hundred thirty-eight' WHERE a=16533; UPDATE t2 SET c='seventy-eight thousand two hundred nineteen' WHERE a=16534; UPDATE t2 SET c='ninety-four' WHERE a=16535; UPDATE t2 SET c='seventy-nine thousand six hundred ninety' WHERE a=16536; UPDATE t2 SET c='one thousand six hundred ninety-nine' WHERE a=16537; UPDATE t2 SET c='sixty-seven thousand five hundred twenty-nine' WHERE a=16538; UPDATE t2 SET c='twenty-two thousand three hundred thirty-six' WHERE a=16539; UPDATE t2 SET c='thirty-two thousand eight hundred sixty-five' WHERE a=16540; UPDATE t2 SET c='seventy thousand six hundred sixty-four' WHERE a=16541; UPDATE t2 SET c='fifteen thousand nine hundred fifty-four' WHERE a=16542; UPDATE t2 SET c='forty-five thousand two hundred ninety-one' WHERE a=16543; UPDATE t2 SET c='twenty-nine thousand five hundred eighty-seven' WHERE a=16544; UPDATE t2 SET c='sixty-two thousand thirty-six' WHERE a=16545; UPDATE t2 SET c='twelve thousand seven hundred thirty-six' WHERE a=16546; UPDATE t2 SET c='fifty thousand eight hundred fifty' WHERE a=16547; UPDATE t2 SET c='twelve thousand five hundred eighty-four' WHERE a=16548; UPDATE t2 SET c='fifty-five thousand four hundred forty-eight' WHERE a=16549; UPDATE t2 SET c='forty-nine thousand five hundred forty-four' WHERE a=16550; UPDATE t2 SET c='thirty-eight thousand seven hundred sixteen' WHERE a=16551; UPDATE t2 SET c='fifty-nine thousand four hundred nine' WHERE a=16552; UPDATE t2 SET c='twenty-four thousand nine hundred sixty-eight' WHERE a=16553; UPDATE t2 SET c='eighty-two thousand nine hundred twenty-five' WHERE a=16554; UPDATE t2 SET c='forty-one thousand four hundred fifty' WHERE a=16555; UPDATE t2 SET c='seven thousand eight hundred sixty-seven' WHERE a=16556; UPDATE t2 SET c='twenty-nine thousand five hundred ninety-nine' WHERE a=16557; UPDATE t2 SET c='twenty-five thousand eight hundred eight' WHERE a=16558; UPDATE t2 SET c='ninety-two thousand nine' WHERE a=16559; UPDATE t2 SET c='fifty-eight thousand seven hundred two' WHERE a=16560; UPDATE t2 SET c='two thousand eight' WHERE a=16561; UPDATE t2 SET c='eighty-two thousand one hundred forty-six' WHERE a=16562; UPDATE t2 SET c='five hundred thirty-seven' WHERE a=16563; UPDATE t2 SET c='nine thousand five hundred thirty-nine' WHERE a=16564; UPDATE t2 SET c='twenty-one thousand' WHERE a=16565; UPDATE t2 SET c='fifty-two thousand four hundred forty-seven' WHERE a=16566; UPDATE t2 SET c='forty-three thousand six hundred fourteen' WHERE a=16567; UPDATE t2 SET c='seventy-three thousand one hundred nine' WHERE a=16568; UPDATE t2 SET c='seventy-five thousand eight hundred ninety-nine' WHERE a=16569; UPDATE t2 SET c='seventy-seven thousand four hundred three' WHERE a=16570; UPDATE t2 SET c='sixty-nine thousand six hundred seventy-nine' WHERE a=16571; UPDATE t2 SET c='ninety-two thousand six hundred one' WHERE a=16572; UPDATE t2 SET c='forty-four thousand four hundred one' WHERE a=16573; UPDATE t2 SET c='thirty-three thousand six hundred seventy-six' WHERE a=16574; UPDATE t2 SET c='twenty-three thousand eight hundred thirty-nine' WHERE a=16575; UPDATE t2 SET c='forty-one thousand seven hundred thirty-eight' WHERE a=16576; UPDATE t2 SET c='twenty thousand two hundred two' WHERE a=16577; UPDATE t2 SET c='fifty-six thousand four hundred thirty' WHERE a=16578; UPDATE t2 SET c='twenty-three thousand two hundred eighty-eight' WHERE a=16579; UPDATE t2 SET c='forty-five thousand seventy-two' WHERE a=16580; UPDATE t2 SET c='seventeen thousand two hundred twenty-four' WHERE a=16581; UPDATE t2 SET c='sixty-three thousand three hundred thirty-four' WHERE a=16582; UPDATE t2 SET c='ninety-two thousand five hundred forty-two' WHERE a=16583; UPDATE t2 SET c='eighty thousand six hundred forty' WHERE a=16584; UPDATE t2 SET c='fifty-six thousand six hundred forty-eight' WHERE a=16585; UPDATE t2 SET c='forty-six thousand three hundred two' WHERE a=16586; UPDATE t2 SET c='seventy-four thousand one hundred fifty-six' WHERE a=16587; UPDATE t2 SET c='eight thousand seven hundred sixty-two' WHERE a=16588; UPDATE t2 SET c='sixty-seven thousand nine hundred forty-nine' WHERE a=16589; UPDATE t2 SET c='twenty-two thousand three hundred three' WHERE a=16590; UPDATE t2 SET c='eighty-five thousand two hundred forty-five' WHERE a=16591; UPDATE t2 SET c='two thousand nine hundred twenty-two' WHERE a=16592; UPDATE t2 SET c='twenty thousand seven hundred fifty-five' WHERE a=16593; UPDATE t2 SET c='thirty-eight thousand four hundred eighty-one' WHERE a=16594; UPDATE t2 SET c='thirty-one thousand six hundred fifty-six' WHERE a=16595; UPDATE t2 SET c='ninety-six thousand eight hundred eighty-seven' WHERE a=16596; UPDATE t2 SET c='two thousand seven hundred fifty-three' WHERE a=16597; UPDATE t2 SET c='ninety-nine thousand four hundred fifty' WHERE a=16598; UPDATE t2 SET c='eighty-six thousand four hundred eighty-six' WHERE a=16599; UPDATE t2 SET c='thirty-nine thousand nine hundred ninety-one' WHERE a=16600; UPDATE t2 SET c='sixty-nine thousand three hundred sixty-four' WHERE a=16601; UPDATE t2 SET c='sixty thousand four hundred eighteen' WHERE a=16602; UPDATE t2 SET c='thirteen thousand one hundred twenty-five' WHERE a=16603; UPDATE t2 SET c='sixty-five thousand four hundred forty-eight' WHERE a=16604; UPDATE t2 SET c='seventy-three thousand forty-seven' WHERE a=16605; UPDATE t2 SET c='thirty-two thousand' WHERE a=16606; UPDATE t2 SET c='ninety-one thousand one hundred twenty-four' WHERE a=16607; UPDATE t2 SET c='seventy-eight thousand two hundred six' WHERE a=16608; UPDATE t2 SET c='two thousand eight hundred seventeen' WHERE a=16609; UPDATE t2 SET c='forty-six thousand eighty-seven' WHERE a=16610; UPDATE t2 SET c='seventy-seven thousand seventy-six' WHERE a=16611; UPDATE t2 SET c='sixty-four thousand eight hundred sixty-one' WHERE a=16612; UPDATE t2 SET c='four thousand one hundred six' WHERE a=16613; UPDATE t2 SET c='fifty-five thousand four hundred fifty-eight' WHERE a=16614; UPDATE t2 SET c='ninety-four thousand seven hundred twenty-three' WHERE a=16615; UPDATE t2 SET c='eighty-two thousand five hundred fifty-seven' WHERE a=16616; UPDATE t2 SET c='eighty-one thousand seven hundred forty-nine' WHERE a=16617; UPDATE t2 SET c='sixty-four thousand seven hundred seventy-two' WHERE a=16618; UPDATE t2 SET c='thirty-four thousand nine hundred fifty-three' WHERE a=16619; UPDATE t2 SET c='ninety-eight thousand eight hundred forty' WHERE a=16620; UPDATE t2 SET c='twenty-seven thousand three hundred sixty-five' WHERE a=16621; UPDATE t2 SET c='seventeen thousand six hundred ninety-two' WHERE a=16622; UPDATE t2 SET c='fourteen thousand one hundred three' WHERE a=16623; UPDATE t2 SET c='eighty-six thousand three hundred seventeen' WHERE a=16624; UPDATE t2 SET c='eighty-three thousand nine hundred fifty-eight' WHERE a=16625; UPDATE t2 SET c='forty-seven thousand eight hundred eighteen' WHERE a=16626; UPDATE t2 SET c='twenty thousand five hundred seven' WHERE a=16627; UPDATE t2 SET c='forty-five thousand four hundred forty-seven' WHERE a=16628; UPDATE t2 SET c='twenty-six thousand five hundred seventy-five' WHERE a=16629; UPDATE t2 SET c='ninety-six thousand six hundred thirty-three' WHERE a=16630; UPDATE t2 SET c='forty-two thousand nine hundred thirty-one' WHERE a=16631; UPDATE t2 SET c='fifty-one thousand three hundred seventy-four' WHERE a=16632; UPDATE t2 SET c='fifty-seven thousand seven hundred ninety-four' WHERE a=16633; UPDATE t2 SET c='twenty-six thousand eight hundred thirty-seven' WHERE a=16634; UPDATE t2 SET c='forty-two thousand seven hundred seventy-three' WHERE a=16635; UPDATE t2 SET c='forty-four thousand one hundred eighty-nine' WHERE a=16636; UPDATE t2 SET c='ninety-one thousand six hundred eighteen' WHERE a=16637; UPDATE t2 SET c='forty-one thousand one hundred thirty-two' WHERE a=16638; UPDATE t2 SET c='eighty-nine thousand five hundred fifty-one' WHERE a=16639; UPDATE t2 SET c='eighty thousand two hundred thirty-five' WHERE a=16640; UPDATE t2 SET c='fifty-five thousand one hundred forty-eight' WHERE a=16641; UPDATE t2 SET c='ninety thousand seven hundred seventy-three' WHERE a=16642; UPDATE t2 SET c='thirty-four thousand one hundred three' WHERE a=16643; UPDATE t2 SET c='eighty-nine thousand two hundred fifty-two' WHERE a=16644; UPDATE t2 SET c='fifty-six thousand six hundred eighty-five' WHERE a=16645; UPDATE t2 SET c='twenty-one thousand four hundred seventy-six' WHERE a=16646; UPDATE t2 SET c='nine thousand five hundred sixty-three' WHERE a=16647; UPDATE t2 SET c='sixty-five thousand nine hundred sixty-six' WHERE a=16648; UPDATE t2 SET c='four hundred thirty-seven' WHERE a=16649; UPDATE t2 SET c='eighty-seven thousand one hundred seventy-four' WHERE a=16650; UPDATE t2 SET c='twenty-six thousand six hundred forty-three' WHERE a=16651; UPDATE t2 SET c='forty-four thousand six hundred thirteen' WHERE a=16652; UPDATE t2 SET c='eighty-seven thousand five hundred eighteen' WHERE a=16653; UPDATE t2 SET c='twenty thousand six hundred fifty-two' WHERE a=16654; UPDATE t2 SET c='seventy-eight thousand eight hundred eighty-eight' WHERE a=16655; UPDATE t2 SET c='fifty-four thousand nine hundred forty-one' WHERE a=16656; UPDATE t2 SET c='one thousand seven hundred eleven' WHERE a=16657; UPDATE t2 SET c='five thousand five hundred forty-six' WHERE a=16658; UPDATE t2 SET c='four thousand one hundred thirty-four' WHERE a=16659; UPDATE t2 SET c='fifty-one thousand one hundred seventy-one' WHERE a=16660; UPDATE t2 SET c='sixty-three thousand eleven' WHERE a=16661; UPDATE t2 SET c='fifteen thousand one hundred three' WHERE a=16662; UPDATE t2 SET c='nine thousand six hundred twenty-nine' WHERE a=16663; UPDATE t2 SET c='ninety-eight thousand four hundred eighty' WHERE a=16664; UPDATE t2 SET c='thirty-six thousand three hundred four' WHERE a=16665; UPDATE t2 SET c='seventy-seven thousand eight hundred forty-one' WHERE a=16666; UPDATE t2 SET c='fourteen thousand ninety-nine' WHERE a=16667; UPDATE t2 SET c='eighty-eight thousand one hundred twenty-four' WHERE a=16668; UPDATE t2 SET c='eighty-five thousand nine hundred eight' WHERE a=16669; UPDATE t2 SET c='seventy-four thousand one hundred thirty-eight' WHERE a=16670; UPDATE t2 SET c='thirty-two thousand seven hundred ninety-two' WHERE a=16671; UPDATE t2 SET c='thirty-three thousand eleven' WHERE a=16672; UPDATE t2 SET c='fifty-one thousand ninety-one' WHERE a=16673; UPDATE t2 SET c='seventy-one thousand six hundred eighty-one' WHERE a=16674; UPDATE t2 SET c='ninety-five thousand three hundred sixty' WHERE a=16675; UPDATE t2 SET c='fifty-five thousand two hundred seventy-seven' WHERE a=16676; UPDATE t2 SET c='twenty-one thousand six hundred seventy-one' WHERE a=16677; UPDATE t2 SET c='eighty-two thousand seven hundred sixty-three' WHERE a=16678; UPDATE t2 SET c='sixty-four thousand eight hundred twenty-five' WHERE a=16679; UPDATE t2 SET c='twenty-five thousand seven hundred ninety-seven' WHERE a=16680; UPDATE t2 SET c='nine thousand sixty-two' WHERE a=16681; UPDATE t2 SET c='nineteen thousand one hundred sixty-nine' WHERE a=16682; UPDATE t2 SET c='seventy-three thousand seven hundred one' WHERE a=16683; UPDATE t2 SET c='twenty-three thousand four hundred fifteen' WHERE a=16684; UPDATE t2 SET c='ninety-one thousand nine hundred thirty-three' WHERE a=16685; UPDATE t2 SET c='forty-eight thousand eight hundred seventy-seven' WHERE a=16686; UPDATE t2 SET c='sixty-nine thousand two hundred fifty-nine' WHERE a=16687; UPDATE t2 SET c='forty-two thousand nine hundred thirty-eight' WHERE a=16688; UPDATE t2 SET c='seventy-five thousand seven hundred thirty' WHERE a=16689; UPDATE t2 SET c='eighty-nine thousand four hundred twenty-three' WHERE a=16690; UPDATE t2 SET c='eighty-two thousand two hundred seventy-five' WHERE a=16691; UPDATE t2 SET c='ninety-three thousand eight hundred twenty-seven' WHERE a=16692; UPDATE t2 SET c='fifty-nine thousand nine hundred fifty-five' WHERE a=16693; UPDATE t2 SET c='thirty-nine thousand seven hundred eighty-four' WHERE a=16694; UPDATE t2 SET c='sixty-six thousand one hundred ten' WHERE a=16695; UPDATE t2 SET c='sixty-one thousand one hundred eighteen' WHERE a=16696; UPDATE t2 SET c='seventy-one thousand three hundred seventy-nine' WHERE a=16697; UPDATE t2 SET c='ninety-eight thousand three hundred thirty-two' WHERE a=16698; UPDATE t2 SET c='seventy-eight thousand eighteen' WHERE a=16699; UPDATE t2 SET c='fifty-eight thousand seven hundred twenty-eight' WHERE a=16700; UPDATE t2 SET c='seventy-five thousand three hundred sixty-two' WHERE a=16701; UPDATE t2 SET c='fifty-eight thousand seventy-two' WHERE a=16702; UPDATE t2 SET c='forty-six thousand one hundred four' WHERE a=16703; UPDATE t2 SET c='nine thousand six hundred eighty-one' WHERE a=16704; UPDATE t2 SET c='sixty-two thousand one hundred sixty-six' WHERE a=16705; UPDATE t2 SET c='thirty-seven thousand one hundred eighty-four' WHERE a=16706; UPDATE t2 SET c='fifty-three thousand four hundred thirty-five' WHERE a=16707; UPDATE t2 SET c='nineteen thousand seven hundred ninety-five' WHERE a=16708; UPDATE t2 SET c='thirty-four thousand one hundred forty-seven' WHERE a=16709; UPDATE t2 SET c='fifty thousand six hundred twenty-two' WHERE a=16710; UPDATE t2 SET c='eighty-three thousand seven hundred forty' WHERE a=16711; UPDATE t2 SET c='ninety thousand four hundred twenty-one' WHERE a=16712; UPDATE t2 SET c='eighty-seven thousand one hundred sixty-one' WHERE a=16713; UPDATE t2 SET c='ninety-six thousand four hundred forty-two' WHERE a=16714; UPDATE t2 SET c='ninety-eight thousand eight hundred forty-four' WHERE a=16715; UPDATE t2 SET c='forty-six thousand eight hundred eighty-seven' WHERE a=16716; UPDATE t2 SET c='thirty-six thousand nine hundred sixty-three' WHERE a=16717; UPDATE t2 SET c='thirty-eight thousand eighteen' WHERE a=16718; UPDATE t2 SET c='thirty-six thousand one hundred nine' WHERE a=16719; UPDATE t2 SET c='fifty-two thousand four hundred seventy-one' WHERE a=16720; UPDATE t2 SET c='seventy-five thousand three hundred eleven' WHERE a=16721; UPDATE t2 SET c='ten thousand one hundred seventeen' WHERE a=16722; UPDATE t2 SET c='forty-four thousand two hundred fifty-three' WHERE a=16723; UPDATE t2 SET c='twelve thousand three hundred fifty-one' WHERE a=16724; UPDATE t2 SET c='ninety-seven thousand four hundred seventy-five' WHERE a=16725; UPDATE t2 SET c='seventy-one thousand five hundred eighty-three' WHERE a=16726; UPDATE t2 SET c='six thousand two hundred seventy-seven' WHERE a=16727; UPDATE t2 SET c='eighty-three thousand six hundred twenty-eight' WHERE a=16728; UPDATE t2 SET c='five thousand nine hundred' WHERE a=16729; UPDATE t2 SET c='seventy-seven thousand eight hundred fifty-two' WHERE a=16730; UPDATE t2 SET c='eighty-five thousand five hundred thirty-six' WHERE a=16731; UPDATE t2 SET c='sixty-seven thousand nine hundred ninety-seven' WHERE a=16732; UPDATE t2 SET c='seventy-eight thousand seven hundred thirty-seven' WHERE a=16733; UPDATE t2 SET c='seventy-two thousand eight hundred fifty-one' WHERE a=16734; UPDATE t2 SET c='six hundred seventy-five' WHERE a=16735; UPDATE t2 SET c='twenty-nine thousand nine hundred sixty-three' WHERE a=16736; UPDATE t2 SET c='seventy thousand eighty-seven' WHERE a=16737; UPDATE t2 SET c='fifty-two thousand five hundred sixteen' WHERE a=16738; UPDATE t2 SET c='ninety-three thousand nine hundred twenty-seven' WHERE a=16739; UPDATE t2 SET c='nine thousand eight hundred thirty-seven' WHERE a=16740; UPDATE t2 SET c='twenty-four thousand eight hundred thirty-six' WHERE a=16741; UPDATE t2 SET c='sixty-five thousand three hundred twenty-five' WHERE a=16742; UPDATE t2 SET c='forty-eight thousand ten' WHERE a=16743; UPDATE t2 SET c='sixty thousand seven hundred ninety-five' WHERE a=16744; UPDATE t2 SET c='thirty-nine thousand nine hundred seventy-four' WHERE a=16745; UPDATE t2 SET c='thirty-four thousand six hundred twenty-two' WHERE a=16746; UPDATE t2 SET c='eighty thousand two hundred' WHERE a=16747; UPDATE t2 SET c='five thousand eight hundred fourteen' WHERE a=16748; UPDATE t2 SET c='twenty-one thousand seventy-six' WHERE a=16749; UPDATE t2 SET c='seventy-five thousand forty-five' WHERE a=16750; UPDATE t2 SET c='sixty-five thousand sixty-three' WHERE a=16751; UPDATE t2 SET c='seventy-eight thousand thirty-seven' WHERE a=16752; UPDATE t2 SET c='ninety-six thousand five hundred twenty-five' WHERE a=16753; UPDATE t2 SET c='sixty-eight thousand seven hundred seventy-four' WHERE a=16754; UPDATE t2 SET c='nineteen thousand fifteen' WHERE a=16755; UPDATE t2 SET c='seventy-three thousand six hundred eighty-five' WHERE a=16756; UPDATE t2 SET c='fifteen thousand twenty-one' WHERE a=16757; UPDATE t2 SET c='sixty-nine thousand eight hundred fifty-seven' WHERE a=16758; UPDATE t2 SET c='forty-two thousand two hundred' WHERE a=16759; UPDATE t2 SET c='six thousand nine hundred' WHERE a=16760; UPDATE t2 SET c='eighty-eight thousand nine hundred seventy-six' WHERE a=16761; UPDATE t2 SET c='six thousand two hundred fifty-five' WHERE a=16762; UPDATE t2 SET c='seven thousand four hundred sixty' WHERE a=16763; UPDATE t2 SET c='seventy-one thousand nine hundred fifty-two' WHERE a=16764; UPDATE t2 SET c='ninety-three thousand two hundred twelve' WHERE a=16765; UPDATE t2 SET c='forty-five thousand seven hundred thirty-seven' WHERE a=16766; UPDATE t2 SET c='twenty-two thousand eight hundred thirty-eight' WHERE a=16767; UPDATE t2 SET c='fifty-eight thousand seven hundred twenty' WHERE a=16768; UPDATE t2 SET c='eighty-two thousand five hundred eighty-nine' WHERE a=16769; UPDATE t2 SET c='fifteen thousand seven hundred fifty-two' WHERE a=16770; UPDATE t2 SET c='eighty thousand nine hundred sixty-nine' WHERE a=16771; UPDATE t2 SET c='ten thousand one hundred twenty-two' WHERE a=16772; UPDATE t2 SET c='eighty thousand two hundred thirty-two' WHERE a=16773; UPDATE t2 SET c='sixty-five thousand three hundred seventy-one' WHERE a=16774; UPDATE t2 SET c='forty-six thousand seven hundred nine' WHERE a=16775; UPDATE t2 SET c='ninety-two thousand seven hundred eighty-three' WHERE a=16776; UPDATE t2 SET c='ninety-one thousand five hundred seventy-four' WHERE a=16777; UPDATE t2 SET c='fifty-seven thousand five hundred ninety-nine' WHERE a=16778; UPDATE t2 SET c='fifty-five thousand eight hundred ninety-three' WHERE a=16779; UPDATE t2 SET c='fifty-two thousand seven hundred ninety-five' WHERE a=16780; UPDATE t2 SET c='eighty-six thousand five hundred eighty-three' WHERE a=16781; UPDATE t2 SET c='sixty-five thousand nine hundred forty-nine' WHERE a=16782; UPDATE t2 SET c='eighty-nine thousand seven hundred fifty-six' WHERE a=16783; UPDATE t2 SET c='six hundred seventy-five' WHERE a=16784; UPDATE t2 SET c='eighteen thousand two hundred sixty-three' WHERE a=16785; UPDATE t2 SET c='ten thousand nine hundred nine' WHERE a=16786; UPDATE t2 SET c='ninety-eight thousand one hundred thirty-five' WHERE a=16787; UPDATE t2 SET c='sixty-two thousand one hundred fifty-three' WHERE a=16788; UPDATE t2 SET c='eighty thousand twenty-three' WHERE a=16789; UPDATE t2 SET c='six thousand one hundred twenty-nine' WHERE a=16790; UPDATE t2 SET c='eighty-two thousand three hundred fifteen' WHERE a=16791; UPDATE t2 SET c='forty thousand six hundred seventeen' WHERE a=16792; UPDATE t2 SET c='eighty-seven thousand six hundred eighty-nine' WHERE a=16793; UPDATE t2 SET c='eight thousand two hundred thirty-five' WHERE a=16794; UPDATE t2 SET c='nineteen thousand nine hundred eighty-five' WHERE a=16795; UPDATE t2 SET c='seventy-seven thousand seven hundred fifty-seven' WHERE a=16796; UPDATE t2 SET c='eighty-two thousand eight hundred' WHERE a=16797; UPDATE t2 SET c='eighteen thousand five hundred twenty' WHERE a=16798; UPDATE t2 SET c='thirty-two thousand nine hundred five' WHERE a=16799; UPDATE t2 SET c='fifty-two thousand eight hundred eighteen' WHERE a=16800; UPDATE t2 SET c='forty-five thousand nine hundred ninety-five' WHERE a=16801; UPDATE t2 SET c='sixty-five thousand five hundred ninety' WHERE a=16802; UPDATE t2 SET c='eight thousand one hundred seventy-two' WHERE a=16803; UPDATE t2 SET c='thirty-seven thousand two hundred ninety' WHERE a=16804; UPDATE t2 SET c='fifty thousand seven hundred one' WHERE a=16805; UPDATE t2 SET c='eleven thousand two hundred sixty-three' WHERE a=16806; UPDATE t2 SET c='twenty-four thousand nine hundred eleven' WHERE a=16807; UPDATE t2 SET c='seventy-two thousand five hundred eighty-eight' WHERE a=16808; UPDATE t2 SET c='thirty-nine thousand nine hundred forty-one' WHERE a=16809; UPDATE t2 SET c='four thousand four hundred seventy-two' WHERE a=16810; UPDATE t2 SET c='two thousand one hundred sixty' WHERE a=16811; UPDATE t2 SET c='twenty-six thousand eight hundred twenty-one' WHERE a=16812; UPDATE t2 SET c='twenty-eight thousand three hundred seventy-six' WHERE a=16813; UPDATE t2 SET c='eighty-nine thousand two hundred five' WHERE a=16814; UPDATE t2 SET c='thirty-six thousand nine hundred twenty-two' WHERE a=16815; UPDATE t2 SET c='five hundred eighty-one' WHERE a=16816; UPDATE t2 SET c='twenty-eight thousand nine hundred forty-eight' WHERE a=16817; UPDATE t2 SET c='twenty-seven thousand seven hundred fifty-two' WHERE a=16818; UPDATE t2 SET c='sixty-nine thousand four hundred twenty-seven' WHERE a=16819; UPDATE t2 SET c='forty-one thousand seven hundred thirty-seven' WHERE a=16820; UPDATE t2 SET c='nineteen thousand three hundred ninety-eight' WHERE a=16821; UPDATE t2 SET c='sixty-four thousand five hundred twenty-two' WHERE a=16822; UPDATE t2 SET c='sixty thousand nine hundred thirty-six' WHERE a=16823; UPDATE t2 SET c='forty-three thousand three hundred eighty-four' WHERE a=16824; UPDATE t2 SET c='eighteen thousand seven hundred sixty-three' WHERE a=16825; UPDATE t2 SET c='nineteen thousand two hundred forty-one' WHERE a=16826; UPDATE t2 SET c='thirty thousand three hundred sixty-two' WHERE a=16827; UPDATE t2 SET c='fifty-four thousand two hundred forty-three' WHERE a=16828; UPDATE t2 SET c='seventy thousand nineteen' WHERE a=16829; UPDATE t2 SET c='seventy thousand five hundred ninety-nine' WHERE a=16830; UPDATE t2 SET c='ninety thousand three hundred fifty-eight' WHERE a=16831; UPDATE t2 SET c='eleven thousand nine hundred fifty-five' WHERE a=16832; UPDATE t2 SET c='thirty-six thousand nine hundred fifty-six' WHERE a=16833; UPDATE t2 SET c='thirty-seven thousand fifty-nine' WHERE a=16834; UPDATE t2 SET c='thirty-seven thousand thirty-eight' WHERE a=16835; UPDATE t2 SET c='sixty-four thousand nine hundred ninety-three' WHERE a=16836; UPDATE t2 SET c='twenty-seven thousand three hundred forty-seven' WHERE a=16837; UPDATE t2 SET c='seventy-six thousand two hundred sixty-one' WHERE a=16838; UPDATE t2 SET c='seventy-three thousand four hundred forty-two' WHERE a=16839; UPDATE t2 SET c='seventy-six thousand nine hundred four' WHERE a=16840; UPDATE t2 SET c='eighteen thousand four hundred thirty-three' WHERE a=16841; UPDATE t2 SET c='thirty-seven thousand nine hundred fifty-four' WHERE a=16842; UPDATE t2 SET c='seventy-two thousand one hundred sixty-seven' WHERE a=16843; UPDATE t2 SET c='twenty-seven thousand nine hundred sixty-five' WHERE a=16844; UPDATE t2 SET c='twenty-six thousand eight hundred twenty-five' WHERE a=16845; UPDATE t2 SET c='fifteen thousand five hundred twenty-five' WHERE a=16846; UPDATE t2 SET c='eighty-three thousand fourteen' WHERE a=16847; UPDATE t2 SET c='six thousand one hundred seventeen' WHERE a=16848; UPDATE t2 SET c='eighty-four thousand nine hundred eleven' WHERE a=16849; UPDATE t2 SET c='ninety-two thousand three hundred five' WHERE a=16850; UPDATE t2 SET c='fifty thousand seventy-five' WHERE a=16851; UPDATE t2 SET c='eighty-nine thousand two hundred twelve' WHERE a=16852; UPDATE t2 SET c='fifty-one thousand one hundred sixty-four' WHERE a=16853; UPDATE t2 SET c='nineteen thousand one hundred seventeen' WHERE a=16854; UPDATE t2 SET c='sixty thousand four hundred thirty-five' WHERE a=16855; UPDATE t2 SET c='eighty-five thousand three hundred fifty-four' WHERE a=16856; UPDATE t2 SET c='four thousand three hundred seventy-three' WHERE a=16857; UPDATE t2 SET c='twenty thousand five hundred fifty-seven' WHERE a=16858; UPDATE t2 SET c='sixteen thousand six hundred fifty-two' WHERE a=16859; UPDATE t2 SET c='seventy-nine thousand two hundred eighty-two' WHERE a=16860; UPDATE t2 SET c='thirty-two thousand sixty-two' WHERE a=16861; UPDATE t2 SET c='forty-four thousand eight hundred sixty-four' WHERE a=16862; UPDATE t2 SET c='twenty-four thousand five hundred twenty-three' WHERE a=16863; UPDATE t2 SET c='thirty-four thousand five hundred nine' WHERE a=16864; UPDATE t2 SET c='fifteen thousand nine hundred twenty-three' WHERE a=16865; UPDATE t2 SET c='sixteen thousand five hundred forty-six' WHERE a=16866; UPDATE t2 SET c='thirty-nine thousand four hundred seventy-three' WHERE a=16867; UPDATE t2 SET c='eighty-one thousand four hundred eighteen' WHERE a=16868; UPDATE t2 SET c='fourteen thousand five hundred fifty-one' WHERE a=16869; UPDATE t2 SET c='twenty-three thousand three hundred fifty-seven' WHERE a=16870; UPDATE t2 SET c='thirty-eight thousand one hundred twenty-eight' WHERE a=16871; UPDATE t2 SET c='sixty-eight thousand nine hundred fifty' WHERE a=16872; UPDATE t2 SET c='one thousand six hundred forty-four' WHERE a=16873; UPDATE t2 SET c='thirty-two thousand five hundred sixty-two' WHERE a=16874; UPDATE t2 SET c='ninety-seven thousand seventy-five' WHERE a=16875; UPDATE t2 SET c='twenty-three thousand eight hundred seventy-one' WHERE a=16876; UPDATE t2 SET c='fifty thousand seven hundred ninety-five' WHERE a=16877; UPDATE t2 SET c='ninety thousand nine hundred twenty-nine' WHERE a=16878; UPDATE t2 SET c='fifty thousand eight hundred fifteen' WHERE a=16879; UPDATE t2 SET c='fifty-two thousand six hundred thirty-five' WHERE a=16880; UPDATE t2 SET c='ninety-three thousand seven hundred thirty-nine' WHERE a=16881; UPDATE t2 SET c='seventeen thousand seven hundred fifty-eight' WHERE a=16882; UPDATE t2 SET c='forty-eight thousand two hundred fourteen' WHERE a=16883; UPDATE t2 SET c='sixty thousand eight hundred ten' WHERE a=16884; UPDATE t2 SET c='fifty-nine thousand seven hundred eighteen' WHERE a=16885; UPDATE t2 SET c='three thousand seven hundred sixty-three' WHERE a=16886; UPDATE t2 SET c='six thousand eight hundred ninety-one' WHERE a=16887; UPDATE t2 SET c='eighty-four thousand one hundred forty-nine' WHERE a=16888; UPDATE t2 SET c='fifty-two thousand fifteen' WHERE a=16889; UPDATE t2 SET c='twenty-eight thousand one hundred seventy-eight' WHERE a=16890; UPDATE t2 SET c='thirty-two thousand nine hundred sixty-one' WHERE a=16891; UPDATE t2 SET c='ninety-four thousand eight hundred six' WHERE a=16892; UPDATE t2 SET c='ninety-nine thousand two hundred ninety-five' WHERE a=16893; UPDATE t2 SET c='seventy-eight thousand nine hundred thirty-seven' WHERE a=16894; UPDATE t2 SET c='twenty-nine thousand five hundred thirty-one' WHERE a=16895; UPDATE t2 SET c='seventy-five thousand nine hundred' WHERE a=16896; UPDATE t2 SET c='twenty-five thousand three hundred' WHERE a=16897; UPDATE t2 SET c='fifty-four thousand seventeen' WHERE a=16898; UPDATE t2 SET c='twenty-nine thousand nine hundred sixty' WHERE a=16899; UPDATE t2 SET c='forty-three thousand two hundred eighty-eight' WHERE a=16900; UPDATE t2 SET c='seventy-seven thousand three hundred seventy-eight' WHERE a=16901; UPDATE t2 SET c='one hundred forty-nine' WHERE a=16902; UPDATE t2 SET c='sixty-six thousand eight hundred eighteen' WHERE a=16903; UPDATE t2 SET c='fifty-four thousand three hundred thirty-nine' WHERE a=16904; UPDATE t2 SET c='ninety-four thousand nine hundred eighty-six' WHERE a=16905; UPDATE t2 SET c='eighty-one thousand four hundred ninety-five' WHERE a=16906; UPDATE t2 SET c='fifty-five thousand nine hundred eighty-six' WHERE a=16907; UPDATE t2 SET c='seventeen thousand nine hundred fifty-seven' WHERE a=16908; UPDATE t2 SET c='thirteen thousand three hundred seventeen' WHERE a=16909; UPDATE t2 SET c='ninety-eight thousand nine hundred forty-four' WHERE a=16910; UPDATE t2 SET c='sixty-one thousand three hundred forty-six' WHERE a=16911; UPDATE t2 SET c='seventy-eight thousand one hundred eighty-nine' WHERE a=16912; UPDATE t2 SET c='sixteen thousand twenty-seven' WHERE a=16913; UPDATE t2 SET c='fifty-five thousand six hundred ninety' WHERE a=16914; UPDATE t2 SET c='twelve thousand six hundred eight' WHERE a=16915; UPDATE t2 SET c='seventy thousand thirty-three' WHERE a=16916; UPDATE t2 SET c='eight thousand seven hundred ninety-six' WHERE a=16917; UPDATE t2 SET c='seventy-five thousand nine hundred eighty-one' WHERE a=16918; UPDATE t2 SET c='eighty-six thousand six hundred seventy-two' WHERE a=16919; UPDATE t2 SET c='eighty thousand nine hundred eighty' WHERE a=16920; UPDATE t2 SET c='sixty-five thousand six hundred twelve' WHERE a=16921; UPDATE t2 SET c='thirty thousand three hundred twenty-four' WHERE a=16922; UPDATE t2 SET c='twenty-four thousand nine hundred ninety' WHERE a=16923; UPDATE t2 SET c='thirty-five thousand one hundred twelve' WHERE a=16924; UPDATE t2 SET c='forty thousand twenty-two' WHERE a=16925; UPDATE t2 SET c='twenty-seven thousand four hundred forty-five' WHERE a=16926; UPDATE t2 SET c='ninety-four thousand seven hundred forty-nine' WHERE a=16927; UPDATE t2 SET c='eighty-nine thousand six hundred forty-six' WHERE a=16928; UPDATE t2 SET c='thirty-seven thousand six hundred five' WHERE a=16929; UPDATE t2 SET c='fifty-seven thousand one hundred sixty-three' WHERE a=16930; UPDATE t2 SET c='thirty-nine thousand seven hundred thirty-two' WHERE a=16931; UPDATE t2 SET c='seventy-one thousand eight hundred forty-seven' WHERE a=16932; UPDATE t2 SET c='forty-one thousand seven hundred thirty-one' WHERE a=16933; UPDATE t2 SET c='thirty-six thousand four hundred sixty-two' WHERE a=16934; UPDATE t2 SET c='forty thousand two hundred seventy-one' WHERE a=16935; UPDATE t2 SET c='seventy-five thousand one hundred fifty-one' WHERE a=16936; UPDATE t2 SET c='eighty-six thousand eight hundred sixty-eight' WHERE a=16937; UPDATE t2 SET c='seventy-four thousand forty-four' WHERE a=16938; UPDATE t2 SET c='twelve thousand nine hundred ninety-five' WHERE a=16939; UPDATE t2 SET c='thirty-six thousand six hundred eighty-six' WHERE a=16940; UPDATE t2 SET c='seventeen thousand five hundred nine' WHERE a=16941; UPDATE t2 SET c='sixty-nine thousand eight hundred nine' WHERE a=16942; UPDATE t2 SET c='ninety-seven thousand two hundred ninety-seven' WHERE a=16943; UPDATE t2 SET c='eighty-five thousand six hundred three' WHERE a=16944; UPDATE t2 SET c='ninety-four thousand six hundred fifty-seven' WHERE a=16945; UPDATE t2 SET c='sixty-seven thousand eight hundred forty-three' WHERE a=16946; UPDATE t2 SET c='ninety-three thousand three hundred fourteen' WHERE a=16947; UPDATE t2 SET c='ninety-one thousand six hundred seventy-five' WHERE a=16948; UPDATE t2 SET c='ninety-four thousand six hundred ninety' WHERE a=16949; UPDATE t2 SET c='one thousand eight hundred thirty-nine' WHERE a=16950; UPDATE t2 SET c='twenty-five thousand six hundred eighty-six' WHERE a=16951; UPDATE t2 SET c='forty-eight thousand four hundred eighty-five' WHERE a=16952; UPDATE t2 SET c='forty-nine thousand three hundred twelve' WHERE a=16953; UPDATE t2 SET c='ninety-six thousand thirty' WHERE a=16954; UPDATE t2 SET c='one thousand four hundred five' WHERE a=16955; UPDATE t2 SET c='seventy-four thousand one hundred thirteen' WHERE a=16956; UPDATE t2 SET c='one thousand seven hundred two' WHERE a=16957; UPDATE t2 SET c='eighty-three thousand ninety-three' WHERE a=16958; UPDATE t2 SET c='eighty-seven thousand four hundred seventy' WHERE a=16959; UPDATE t2 SET c='forty-nine thousand eight hundred twenty-two' WHERE a=16960; UPDATE t2 SET c='twenty thousand seven hundred thirty-one' WHERE a=16961; UPDATE t2 SET c='thirteen thousand seven hundred thirty-four' WHERE a=16962; UPDATE t2 SET c='fifty-seven thousand nine hundred twenty-five' WHERE a=16963; UPDATE t2 SET c='twenty-six thousand two hundred forty-four' WHERE a=16964; UPDATE t2 SET c='fifty-one thousand eight hundred eighty-three' WHERE a=16965; UPDATE t2 SET c='fourteen thousand five hundred seven' WHERE a=16966; UPDATE t2 SET c='twenty-nine thousand nine hundred thirty-two' WHERE a=16967; UPDATE t2 SET c='seventy-six thousand sixty-one' WHERE a=16968; UPDATE t2 SET c='seventy-two thousand three hundred sixteen' WHERE a=16969; UPDATE t2 SET c='seventy thousand four hundred eighty-seven' WHERE a=16970; UPDATE t2 SET c='one thousand fifty-eight' WHERE a=16971; UPDATE t2 SET c='fifty-seven thousand one hundred seventy-eight' WHERE a=16972; UPDATE t2 SET c='sixty-seven thousand three hundred fifty-nine' WHERE a=16973; UPDATE t2 SET c='eleven thousand four hundred thirty-six' WHERE a=16974; UPDATE t2 SET c='seventy-five thousand two hundred eighty-eight' WHERE a=16975; UPDATE t2 SET c='ninety-eight thousand five hundred sixty-two' WHERE a=16976; UPDATE t2 SET c='sixty-three thousand one hundred ninety-two' WHERE a=16977; UPDATE t2 SET c='seventy thousand six hundred eighty-nine' WHERE a=16978; UPDATE t2 SET c='fifty-four thousand two hundred one' WHERE a=16979; UPDATE t2 SET c='ninety-five thousand six hundred nineteen' WHERE a=16980; UPDATE t2 SET c='eighty-two thousand three hundred forty-three' WHERE a=16981; UPDATE t2 SET c='sixty-four thousand five hundred four' WHERE a=16982; UPDATE t2 SET c='ninety-nine thousand seven hundred seventeen' WHERE a=16983; UPDATE t2 SET c='forty-four thousand one hundred nineteen' WHERE a=16984; UPDATE t2 SET c='ten thousand three hundred seventy-three' WHERE a=16985; UPDATE t2 SET c='fifty-three thousand eight hundred forty-one' WHERE a=16986; UPDATE t2 SET c='eighty-seven thousand one hundred sixty-one' WHERE a=16987; UPDATE t2 SET c='sixty-three thousand seven hundred eighty-eight' WHERE a=16988; UPDATE t2 SET c='forty-three thousand forty-three' WHERE a=16989; UPDATE t2 SET c='forty-four thousand three hundred forty-nine' WHERE a=16990; UPDATE t2 SET c='thirty-one thousand seven hundred eighteen' WHERE a=16991; UPDATE t2 SET c='forty-seven thousand three hundred ninety' WHERE a=16992; UPDATE t2 SET c='ninety-seven thousand two hundred forty-seven' WHERE a=16993; UPDATE t2 SET c='sixty-four thousand seven hundred forty-nine' WHERE a=16994; UPDATE t2 SET c='sixty-six thousand four hundred forty-three' WHERE a=16995; UPDATE t2 SET c='twenty-four thousand three hundred ninety-four' WHERE a=16996; UPDATE t2 SET c='seventy thousand two hundred twenty-six' WHERE a=16997; UPDATE t2 SET c='fifty-five thousand three hundred fifty-two' WHERE a=16998; UPDATE t2 SET c='fourteen thousand nine hundred seventy-nine' WHERE a=16999; UPDATE t2 SET c='sixty-five thousand forty-seven' WHERE a=17000; UPDATE t2 SET c='forty thousand nine hundred sixty-seven' WHERE a=17001; UPDATE t2 SET c='sixty thousand nine hundred eighty-four' WHERE a=17002; UPDATE t2 SET c='forty thousand seventy-one' WHERE a=17003; UPDATE t2 SET c='four thousand one hundred fifty-eight' WHERE a=17004; UPDATE t2 SET c='twenty-six thousand nine hundred seventy-four' WHERE a=17005; UPDATE t2 SET c='seventy-eight thousand three hundred seventeen' WHERE a=17006; UPDATE t2 SET c='twenty-nine thousand three hundred eighty-four' WHERE a=17007; UPDATE t2 SET c='forty-eight thousand seven hundred sixty-four' WHERE a=17008; UPDATE t2 SET c='fifty-four thousand eighty-nine' WHERE a=17009; UPDATE t2 SET c='forty thousand two hundred seventy-three' WHERE a=17010; UPDATE t2 SET c='thirty-one thousand one hundred nine' WHERE a=17011; UPDATE t2 SET c='forty-eight thousand eight hundred ninety-two' WHERE a=17012; UPDATE t2 SET c='fifty-nine thousand eight hundred sixteen' WHERE a=17013; UPDATE t2 SET c='thirty-five thousand eight hundred fifty-two' WHERE a=17014; UPDATE t2 SET c='twenty-seven thousand three hundred forty-four' WHERE a=17015; UPDATE t2 SET c='one thousand one hundred fifty-one' WHERE a=17016; UPDATE t2 SET c='six thousand six hundred eighty-one' WHERE a=17017; UPDATE t2 SET c='forty-eight thousand seven hundred sixty' WHERE a=17018; UPDATE t2 SET c='three thousand five hundred ninety-three' WHERE a=17019; UPDATE t2 SET c='sixty-five thousand six hundred eighteen' WHERE a=17020; UPDATE t2 SET c='ninety thousand three hundred sixty-six' WHERE a=17021; UPDATE t2 SET c='eighty-four thousand four hundred thirty-two' WHERE a=17022; UPDATE t2 SET c='fifteen thousand five hundred seventy-two' WHERE a=17023; UPDATE t2 SET c='seventy-eight thousand three hundred five' WHERE a=17024; UPDATE t2 SET c='seventy-five thousand twenty-one' WHERE a=17025; UPDATE t2 SET c='fifty-nine thousand eight hundred eighty-eight' WHERE a=17026; UPDATE t2 SET c='eighty-six thousand three hundred eighty-two' WHERE a=17027; UPDATE t2 SET c='ninety-four thousand seven hundred thirty-two' WHERE a=17028; UPDATE t2 SET c='eighty-three thousand two hundred thirty-nine' WHERE a=17029; UPDATE t2 SET c='seventy thousand two hundred forty-three' WHERE a=17030; UPDATE t2 SET c='sixty-seven thousand seven hundred ninety-three' WHERE a=17031; UPDATE t2 SET c='ninety-three thousand two hundred forty-five' WHERE a=17032; UPDATE t2 SET c='four thousand five hundred eighty-seven' WHERE a=17033; UPDATE t2 SET c='one thousand seven hundred ninety-five' WHERE a=17034; UPDATE t2 SET c='fourteen thousand seven hundred sixty-nine' WHERE a=17035; UPDATE t2 SET c='twenty-seven thousand nine hundred thirty' WHERE a=17036; UPDATE t2 SET c='forty thousand five hundred seven' WHERE a=17037; UPDATE t2 SET c='thirty-eight thousand ninety-seven' WHERE a=17038; UPDATE t2 SET c='eighteen thousand six hundred ten' WHERE a=17039; UPDATE t2 SET c='fifty-two thousand three hundred twenty-one' WHERE a=17040; UPDATE t2 SET c='thirty-six thousand two hundred ninety-eight' WHERE a=17041; UPDATE t2 SET c='four hundred eight' WHERE a=17042; UPDATE t2 SET c='twenty-four thousand five hundred thirty-eight' WHERE a=17043; UPDATE t2 SET c='ninety-eight thousand five hundred thirty' WHERE a=17044; UPDATE t2 SET c='ninety-seven thousand eight hundred eighty-one' WHERE a=17045; UPDATE t2 SET c='seventy-seven thousand five hundred fifty-three' WHERE a=17046; UPDATE t2 SET c='eighty-five thousand six hundred one' WHERE a=17047; UPDATE t2 SET c='four thousand six hundred thirty-six' WHERE a=17048; UPDATE t2 SET c='seventy-six thousand one hundred forty-seven' WHERE a=17049; UPDATE t2 SET c='seventy-four thousand ninety-five' WHERE a=17050; UPDATE t2 SET c='three thousand five hundred seventy-eight' WHERE a=17051; UPDATE t2 SET c='one thousand five hundred ninety-nine' WHERE a=17052; UPDATE t2 SET c='sixty-three thousand two hundred seventy-one' WHERE a=17053; UPDATE t2 SET c='fifty-six thousand two hundred eighty' WHERE a=17054; UPDATE t2 SET c='ninety-six thousand twenty-eight' WHERE a=17055; UPDATE t2 SET c='thirty-four thousand one hundred sixty-eight' WHERE a=17056; UPDATE t2 SET c='seventy-six thousand three hundred five' WHERE a=17057; UPDATE t2 SET c='seventy-seven thousand six hundred eighty-seven' WHERE a=17058; UPDATE t2 SET c='seventy-one thousand nine hundred twelve' WHERE a=17059; UPDATE t2 SET c='five thousand eight hundred sixteen' WHERE a=17060; UPDATE t2 SET c='seventy-three thousand four hundred forty-nine' WHERE a=17061; UPDATE t2 SET c='forty-six thousand six hundred ninety-five' WHERE a=17062; UPDATE t2 SET c='eighty-two thousand six hundred two' WHERE a=17063; UPDATE t2 SET c='sixty-seven thousand two hundred seventy' WHERE a=17064; UPDATE t2 SET c='sixty-eight thousand four hundred sixty-eight' WHERE a=17065; UPDATE t2 SET c='twenty-seven thousand nine hundred ninety-six' WHERE a=17066; UPDATE t2 SET c='eighty-five thousand one hundred fourteen' WHERE a=17067; UPDATE t2 SET c='sixteen thousand five hundred thirty-nine' WHERE a=17068; UPDATE t2 SET c='seventy-one thousand seven hundred eight' WHERE a=17069; UPDATE t2 SET c='eighty-six thousand three hundred twenty-eight' WHERE a=17070; UPDATE t2 SET c='eighty-two thousand nine hundred thirty-two' WHERE a=17071; UPDATE t2 SET c='five thousand one hundred twenty-two' WHERE a=17072; UPDATE t2 SET c='forty-three thousand four hundred thirty-four' WHERE a=17073; UPDATE t2 SET c='seventy-six thousand seven hundred forty-eight' WHERE a=17074; UPDATE t2 SET c='six thousand six hundred twenty-four' WHERE a=17075; UPDATE t2 SET c='seventeen thousand three hundred forty' WHERE a=17076; UPDATE t2 SET c='twenty-eight thousand three hundred seventy-nine' WHERE a=17077; UPDATE t2 SET c='forty-four thousand two hundred sixty-seven' WHERE a=17078; UPDATE t2 SET c='thirteen thousand six hundred seventy-four' WHERE a=17079; UPDATE t2 SET c='sixteen thousand eight hundred forty-three' WHERE a=17080; UPDATE t2 SET c='sixty-six thousand two hundred sixty-seven' WHERE a=17081; UPDATE t2 SET c='sixty-one thousand nine hundred ninety-one' WHERE a=17082; UPDATE t2 SET c='fifty-one thousand three hundred twenty-nine' WHERE a=17083; UPDATE t2 SET c='ninety-six thousand nine hundred three' WHERE a=17084; UPDATE t2 SET c='ten thousand eight hundred sixty-six' WHERE a=17085; UPDATE t2 SET c='thirty-two thousand three hundred fifty-four' WHERE a=17086; UPDATE t2 SET c='forty-nine thousand eight hundred seventy-one' WHERE a=17087; UPDATE t2 SET c='thirty-six thousand one hundred fifty-two' WHERE a=17088; UPDATE t2 SET c='fifty-two thousand seven hundred eighty' WHERE a=17089; UPDATE t2 SET c='thirty-one thousand forty-seven' WHERE a=17090; UPDATE t2 SET c='ten thousand two hundred eighty-four' WHERE a=17091; UPDATE t2 SET c='fifteen thousand four hundred eighty-eight' WHERE a=17092; UPDATE t2 SET c='sixty-eight thousand five hundred thirty-eight' WHERE a=17093; UPDATE t2 SET c='sixty-four thousand nine hundred seventy-four' WHERE a=17094; UPDATE t2 SET c='sixty-nine thousand five hundred ninety-one' WHERE a=17095; UPDATE t2 SET c='thirty-two thousand six hundred forty-four' WHERE a=17096; UPDATE t2 SET c='twenty-five thousand five hundred eight' WHERE a=17097; UPDATE t2 SET c='fifty thousand four hundred twenty-seven' WHERE a=17098; UPDATE t2 SET c='eighty-eight thousand three hundred seventeen' WHERE a=17099; UPDATE t2 SET c='twenty-two thousand four hundred ninety-two' WHERE a=17100; UPDATE t2 SET c='thirteen thousand nine hundred forty-six' WHERE a=17101; UPDATE t2 SET c='seventy-five thousand two hundred thirty-two' WHERE a=17102; UPDATE t2 SET c='ninety-eight thousand two hundred eighty' WHERE a=17103; UPDATE t2 SET c='twenty thousand ninety' WHERE a=17104; UPDATE t2 SET c='sixty-three thousand four hundred sixty-eight' WHERE a=17105; UPDATE t2 SET c='forty-seven thousand eight hundred fifty-seven' WHERE a=17106; UPDATE t2 SET c='seventeen thousand four hundred fifty-nine' WHERE a=17107; UPDATE t2 SET c='seventy-nine thousand seven hundred thirty-six' WHERE a=17108; UPDATE t2 SET c='seventy-two thousand five hundred sixty-four' WHERE a=17109; UPDATE t2 SET c='twenty thousand five hundred ten' WHERE a=17110; UPDATE t2 SET c='thirty-nine thousand one hundred thirty-one' WHERE a=17111; UPDATE t2 SET c='thirty-eight thousand six hundred forty-one' WHERE a=17112; UPDATE t2 SET c='ninety-six thousand four hundred sixty-one' WHERE a=17113; UPDATE t2 SET c='forty-nine thousand ninety-seven' WHERE a=17114; UPDATE t2 SET c='eighty-one thousand four hundred seventy-eight' WHERE a=17115; UPDATE t2 SET c='sixteen thousand eight hundred sixty-four' WHERE a=17116; UPDATE t2 SET c='ninety-five thousand seven hundred ten' WHERE a=17117; UPDATE t2 SET c='seventy-nine thousand eight hundred seventy-six' WHERE a=17118; UPDATE t2 SET c='ninety-nine thousand six hundred fifty-two' WHERE a=17119; UPDATE t2 SET c='sixty thousand one hundred forty-nine' WHERE a=17120; UPDATE t2 SET c='ninety thousand four hundred forty-eight' WHERE a=17121; UPDATE t2 SET c='thirty-two thousand seven hundred sixty-one' WHERE a=17122; UPDATE t2 SET c='eighty-six thousand three hundred twenty-five' WHERE a=17123; UPDATE t2 SET c='thirty thousand eight hundred nine' WHERE a=17124; UPDATE t2 SET c='eighty-seven thousand nine hundred sixty-seven' WHERE a=17125; UPDATE t2 SET c='seven thousand eight hundred thirty-three' WHERE a=17126; UPDATE t2 SET c='ninety-seven thousand three hundred sixty-eight' WHERE a=17127; UPDATE t2 SET c='nineteen thousand one hundred eight' WHERE a=17128; UPDATE t2 SET c='seventy-one thousand six hundred eight' WHERE a=17129; UPDATE t2 SET c='forty-nine thousand one hundred forty-one' WHERE a=17130; UPDATE t2 SET c='forty-three thousand eight hundred sixty-six' WHERE a=17131; UPDATE t2 SET c='sixty-one thousand nine hundred forty-six' WHERE a=17132; UPDATE t2 SET c='forty-two thousand six hundred fifty-eight' WHERE a=17133; UPDATE t2 SET c='twenty-nine thousand eight hundred forty-four' WHERE a=17134; UPDATE t2 SET c='sixty-two thousand one hundred eighty-five' WHERE a=17135; UPDATE t2 SET c='fifty-nine thousand two hundred forty-five' WHERE a=17136; UPDATE t2 SET c='fifty-one thousand three hundred' WHERE a=17137; UPDATE t2 SET c='eighty-seven thousand seven hundred thirty-two' WHERE a=17138; UPDATE t2 SET c='twenty-one thousand ninety-three' WHERE a=17139; UPDATE t2 SET c='ninety-three thousand eight hundred fifty-eight' WHERE a=17140; UPDATE t2 SET c='thirty-three thousand three hundred twelve' WHERE a=17141; UPDATE t2 SET c='forty-seven thousand nine hundred thirty-four' WHERE a=17142; UPDATE t2 SET c='seventeen thousand seven hundred twenty-one' WHERE a=17143; UPDATE t2 SET c='seventy-four thousand nine hundred ninety-four' WHERE a=17144; UPDATE t2 SET c='sixty-four thousand four hundred sixty-nine' WHERE a=17145; UPDATE t2 SET c='eighty thousand nine hundred thirty-one' WHERE a=17146; UPDATE t2 SET c='ten thousand four hundred ninety' WHERE a=17147; UPDATE t2 SET c='eleven thousand eight hundred twenty' WHERE a=17148; UPDATE t2 SET c='sixty-six thousand eight hundred fourteen' WHERE a=17149; UPDATE t2 SET c='fifty-four thousand five hundred sixty-three' WHERE a=17150; UPDATE t2 SET c='sixty thousand two hundred twenty-seven' WHERE a=17151; UPDATE t2 SET c='ninety-four thousand seven hundred sixty-four' WHERE a=17152; UPDATE t2 SET c='fifty-four thousand six hundred fifty-four' WHERE a=17153; UPDATE t2 SET c='twenty-two thousand two hundred sixty-three' WHERE a=17154; UPDATE t2 SET c='fifteen thousand two hundred fifty-two' WHERE a=17155; UPDATE t2 SET c='thirty-seven thousand one hundred forty-seven' WHERE a=17156; UPDATE t2 SET c='sixty-two thousand seven hundred forty-six' WHERE a=17157; UPDATE t2 SET c='one thousand two hundred twenty-two' WHERE a=17158; UPDATE t2 SET c='fifty-six thousand three hundred fourteen' WHERE a=17159; UPDATE t2 SET c='ten thousand eight hundred eighty-two' WHERE a=17160; UPDATE t2 SET c='sixty-one thousand seven hundred fifty-three' WHERE a=17161; UPDATE t2 SET c='forty-one thousand six hundred forty-five' WHERE a=17162; UPDATE t2 SET c='sixty-three thousand nine hundred seventy' WHERE a=17163; UPDATE t2 SET c='five thousand five hundred seventy-one' WHERE a=17164; UPDATE t2 SET c='seventy-four thousand three hundred eight' WHERE a=17165; UPDATE t2 SET c='thirty-two thousand three hundred eighty-seven' WHERE a=17166; UPDATE t2 SET c='two hundred sixty-eight' WHERE a=17167; UPDATE t2 SET c='ninety-seven thousand one hundred eighty-seven' WHERE a=17168; UPDATE t2 SET c='seventy thousand five hundred eighty-seven' WHERE a=17169; UPDATE t2 SET c='ninety-three thousand four hundred forty-three' WHERE a=17170; UPDATE t2 SET c='fifty-six thousand one hundred thirty-nine' WHERE a=17171; UPDATE t2 SET c='seven hundred twenty-nine' WHERE a=17172; UPDATE t2 SET c='thirty-five thousand one hundred thirty-six' WHERE a=17173; UPDATE t2 SET c='one thousand six hundred forty-six' WHERE a=17174; UPDATE t2 SET c='thirteen thousand ninety-four' WHERE a=17175; UPDATE t2 SET c='thirty-six thousand one hundred sixty-six' WHERE a=17176; UPDATE t2 SET c='seventy-eight thousand six hundred seven' WHERE a=17177; UPDATE t2 SET c='sixty-one thousand six hundred forty-nine' WHERE a=17178; UPDATE t2 SET c='seventy thousand eight hundred sixteen' WHERE a=17179; UPDATE t2 SET c='thirty-six thousand six hundred forty-three' WHERE a=17180; UPDATE t2 SET c='thirty-one thousand three hundred seventy-six' WHERE a=17181; UPDATE t2 SET c='seventeen thousand six hundred twenty-six' WHERE a=17182; UPDATE t2 SET c='seventy-nine thousand four hundred seventy-two' WHERE a=17183; UPDATE t2 SET c='forty-six thousand one hundred nineteen' WHERE a=17184; UPDATE t2 SET c='twenty-one thousand nine hundred thirty-six' WHERE a=17185; UPDATE t2 SET c='two thousand six hundred seventy-two' WHERE a=17186; UPDATE t2 SET c='twenty-nine thousand five hundred thirty-two' WHERE a=17187; UPDATE t2 SET c='seventeen thousand six hundred twenty-eight' WHERE a=17188; UPDATE t2 SET c='seven hundred two' WHERE a=17189; UPDATE t2 SET c='eighty-three thousand seven hundred thirty-two' WHERE a=17190; UPDATE t2 SET c='ninety-eight thousand seven hundred thirty-six' WHERE a=17191; UPDATE t2 SET c='seventy-three thousand three hundred sixty' WHERE a=17192; UPDATE t2 SET c='twenty-five thousand five hundred forty-one' WHERE a=17193; UPDATE t2 SET c='seventy-seven thousand three hundred ninety-nine' WHERE a=17194; UPDATE t2 SET c='seventy-two thousand one hundred one' WHERE a=17195; UPDATE t2 SET c='seventy thousand six hundred thirty-seven' WHERE a=17196; UPDATE t2 SET c='thirty thousand one hundred ninety-six' WHERE a=17197; UPDATE t2 SET c='twenty-six thousand four hundred sixty-three' WHERE a=17198; UPDATE t2 SET c='four thousand four hundred thirty-nine' WHERE a=17199; UPDATE t2 SET c='fifty-six thousand ninety' WHERE a=17200; UPDATE t2 SET c='eighty-two thousand thirty' WHERE a=17201; UPDATE t2 SET c='eighty-seven thousand nine hundred sixty-two' WHERE a=17202; UPDATE t2 SET c='seventy-four thousand eight hundred fifty-eight' WHERE a=17203; UPDATE t2 SET c='ninety thousand thirty-three' WHERE a=17204; UPDATE t2 SET c='sixty-five thousand five hundred twenty' WHERE a=17205; UPDATE t2 SET c='fifty-five thousand three hundred seventy-nine' WHERE a=17206; UPDATE t2 SET c='sixty-nine thousand one hundred eighteen' WHERE a=17207; UPDATE t2 SET c='forty-one thousand eight hundred fifty-seven' WHERE a=17208; UPDATE t2 SET c='thirty-two thousand five hundred ninety-two' WHERE a=17209; UPDATE t2 SET c='ninety thousand four hundred twenty' WHERE a=17210; UPDATE t2 SET c='sixty thousand seven hundred eighty-nine' WHERE a=17211; UPDATE t2 SET c='thirty-five thousand nineteen' WHERE a=17212; UPDATE t2 SET c='seventy-five thousand seven hundred thirty-one' WHERE a=17213; UPDATE t2 SET c='forty-eight thousand five hundred fifty-two' WHERE a=17214; UPDATE t2 SET c='eight thousand one hundred sixty-three' WHERE a=17215; UPDATE t2 SET c='eighty-four thousand nine hundred eighty-three' WHERE a=17216; UPDATE t2 SET c='eighty-nine thousand one hundred fifty-one' WHERE a=17217; UPDATE t2 SET c='eighty-eight thousand five hundred forty-eight' WHERE a=17218; UPDATE t2 SET c='fifty-one thousand six hundred seventy-two' WHERE a=17219; UPDATE t2 SET c='twenty-six thousand three hundred sixty-two' WHERE a=17220; UPDATE t2 SET c='fifty-one thousand eighty-seven' WHERE a=17221; UPDATE t2 SET c='sixty-three thousand six hundred twenty-eight' WHERE a=17222; UPDATE t2 SET c='forty-two thousand nine hundred fifty' WHERE a=17223; UPDATE t2 SET c='twelve thousand three hundred eighty-three' WHERE a=17224; UPDATE t2 SET c='forty-six thousand two hundred eighty-eight' WHERE a=17225; UPDATE t2 SET c='fifty thousand eighty-seven' WHERE a=17226; UPDATE t2 SET c='twenty-three thousand eight hundred seventy-five' WHERE a=17227; UPDATE t2 SET c='sixty-two thousand one hundred fifty' WHERE a=17228; UPDATE t2 SET c='eighteen thousand two hundred seventy-one' WHERE a=17229; UPDATE t2 SET c='eighty-six thousand fifty-two' WHERE a=17230; UPDATE t2 SET c='fifty-six thousand one hundred ninety-eight' WHERE a=17231; UPDATE t2 SET c='eleven thousand nine hundred six' WHERE a=17232; UPDATE t2 SET c='thirteen thousand nine hundred forty-seven' WHERE a=17233; UPDATE t2 SET c='seventy-one thousand nine hundred eighty' WHERE a=17234; UPDATE t2 SET c='eighty thousand five hundred ninety-two' WHERE a=17235; UPDATE t2 SET c='seventeen thousand eighty-nine' WHERE a=17236; UPDATE t2 SET c='ninety-nine thousand seven hundred ninety' WHERE a=17237; UPDATE t2 SET c='fifty-four thousand four hundred eight' WHERE a=17238; UPDATE t2 SET c='thirty-six thousand two hundred forty-eight' WHERE a=17239; UPDATE t2 SET c='eighty-six thousand four hundred seventy' WHERE a=17240; UPDATE t2 SET c='sixty-one thousand eight hundred eighty-five' WHERE a=17241; UPDATE t2 SET c='seventeen thousand seven hundred sixty' WHERE a=17242; UPDATE t2 SET c='fifty-five thousand nine hundred thirty' WHERE a=17243; UPDATE t2 SET c='seventy-five thousand two hundred thirty-four' WHERE a=17244; UPDATE t2 SET c='ninety-four thousand four hundred fifty-seven' WHERE a=17245; UPDATE t2 SET c='sixty thousand three hundred ninety-one' WHERE a=17246; UPDATE t2 SET c='seventy-five thousand one hundred ninety-two' WHERE a=17247; UPDATE t2 SET c='thirty-two thousand seven hundred seventy-five' WHERE a=17248; UPDATE t2 SET c='eleven thousand sixty-one' WHERE a=17249; UPDATE t2 SET c='fifty thousand one hundred thirty-five' WHERE a=17250; UPDATE t2 SET c='eighty-six thousand two hundred ninety-three' WHERE a=17251; UPDATE t2 SET c='thirty-nine thousand eight hundred thirty-three' WHERE a=17252; UPDATE t2 SET c='twenty-two thousand two hundred eighty-three' WHERE a=17253; UPDATE t2 SET c='fifty-seven thousand five hundred twenty-seven' WHERE a=17254; UPDATE t2 SET c='sixty-two thousand three hundred eighty-two' WHERE a=17255; UPDATE t2 SET c='twenty-seven thousand eight hundred forty-five' WHERE a=17256; UPDATE t2 SET c='thirty thousand four hundred eighty-five' WHERE a=17257; UPDATE t2 SET c='eighty-four thousand seven hundred thirty-seven' WHERE a=17258; UPDATE t2 SET c='sixty-four thousand eighty' WHERE a=17259; UPDATE t2 SET c='two thousand two hundred ninety-three' WHERE a=17260; UPDATE t2 SET c='one thousand five hundred seventeen' WHERE a=17261; UPDATE t2 SET c='twenty-six thousand four hundred eighty-nine' WHERE a=17262; UPDATE t2 SET c='sixty-six thousand four hundred fifty-three' WHERE a=17263; UPDATE t2 SET c='forty-two thousand five hundred forty-six' WHERE a=17264; UPDATE t2 SET c='eighty-two thousand four hundred nine' WHERE a=17265; UPDATE t2 SET c='twenty-seven thousand one hundred ninety-three' WHERE a=17266; UPDATE t2 SET c='seventy-seven thousand four hundred eighty-six' WHERE a=17267; UPDATE t2 SET c='eighteen thousand ninety-four' WHERE a=17268; UPDATE t2 SET c='fifty-one thousand four hundred thirty-three' WHERE a=17269; UPDATE t2 SET c='seven thousand four hundred forty-nine' WHERE a=17270; UPDATE t2 SET c='seventy-four thousand seven hundred seventy-two' WHERE a=17271; UPDATE t2 SET c='ninety-three thousand four hundred five' WHERE a=17272; UPDATE t2 SET c='eighty-four thousand six hundred one' WHERE a=17273; UPDATE t2 SET c='eighteen thousand five hundred thirteen' WHERE a=17274; UPDATE t2 SET c='eighty-four thousand four hundred sixty-six' WHERE a=17275; UPDATE t2 SET c='sixty-five thousand seven' WHERE a=17276; UPDATE t2 SET c='thirty-eight thousand eight hundred forty-five' WHERE a=17277; UPDATE t2 SET c='twenty-four thousand five hundred ninety-two' WHERE a=17278; UPDATE t2 SET c='seventy thousand sixty-four' WHERE a=17279; UPDATE t2 SET c='thirty-seven thousand sixty-eight' WHERE a=17280; UPDATE t2 SET c='ninety-six thousand sixty-nine' WHERE a=17281; UPDATE t2 SET c='seventy-five thousand eight hundred eighty-two' WHERE a=17282; UPDATE t2 SET c='thirty-six thousand one hundred thirty-five' WHERE a=17283; UPDATE t2 SET c='eighty-three thousand eighty-one' WHERE a=17284; UPDATE t2 SET c='eighty-eight thousand seven hundred sixteen' WHERE a=17285; UPDATE t2 SET c='sixty-one thousand thirty' WHERE a=17286; UPDATE t2 SET c='forty-nine thousand eight hundred forty-six' WHERE a=17287; UPDATE t2 SET c='twenty-four thousand one hundred thirty-seven' WHERE a=17288; UPDATE t2 SET c='twenty-four thousand nine hundred twenty-seven' WHERE a=17289; UPDATE t2 SET c='fifty-four thousand seven hundred forty-seven' WHERE a=17290; UPDATE t2 SET c='seventy-one thousand three hundred forty-three' WHERE a=17291; UPDATE t2 SET c='nine thousand three hundred forty-two' WHERE a=17292; UPDATE t2 SET c='seven thousand three hundred one' WHERE a=17293; UPDATE t2 SET c='eighty-two thousand sixty-seven' WHERE a=17294; UPDATE t2 SET c='forty-five thousand seven hundred twelve' WHERE a=17295; UPDATE t2 SET c='ninety-six thousand ninety-two' WHERE a=17296; UPDATE t2 SET c='one thousand one hundred fifty' WHERE a=17297; UPDATE t2 SET c='seventy-nine thousand eight hundred twenty-nine' WHERE a=17298; UPDATE t2 SET c='eighty-one thousand seven hundred sixty-nine' WHERE a=17299; UPDATE t2 SET c='ninety-two thousand one hundred seventy-six' WHERE a=17300; UPDATE t2 SET c='twenty-one thousand eight hundred thirteen' WHERE a=17301; UPDATE t2 SET c='twenty-three thousand seven hundred sixteen' WHERE a=17302; UPDATE t2 SET c='sixty-six thousand ninety-one' WHERE a=17303; UPDATE t2 SET c='seventy-four thousand four hundred forty-nine' WHERE a=17304; UPDATE t2 SET c='seventy-five thousand one hundred eighty-eight' WHERE a=17305; UPDATE t2 SET c='forty-five thousand nine hundred eighty-nine' WHERE a=17306; UPDATE t2 SET c='twenty-seven thousand seven hundred sixty-two' WHERE a=17307; UPDATE t2 SET c='twenty-two thousand nine' WHERE a=17308; UPDATE t2 SET c='four thousand eight hundred thirty-two' WHERE a=17309; UPDATE t2 SET c='nine thousand seven hundred forty-two' WHERE a=17310; UPDATE t2 SET c='forty-one thousand one hundred thirty-five' WHERE a=17311; UPDATE t2 SET c='seventy-two thousand five hundred sixty-eight' WHERE a=17312; UPDATE t2 SET c='sixty-four thousand one hundred sixty-six' WHERE a=17313; UPDATE t2 SET c='thirty-nine thousand nine hundred fifty-six' WHERE a=17314; UPDATE t2 SET c='sixty-eight thousand four hundred eighty-two' WHERE a=17315; UPDATE t2 SET c='thirty-two thousand three hundred ninety-two' WHERE a=17316; UPDATE t2 SET c='ninety-six thousand five hundred thirty-three' WHERE a=17317; UPDATE t2 SET c='forty-four thousand one hundred seventy-eight' WHERE a=17318; UPDATE t2 SET c='one thousand seven hundred twenty' WHERE a=17319; UPDATE t2 SET c='three thousand eight hundred twenty-nine' WHERE a=17320; UPDATE t2 SET c='eighty thousand nine hundred forty' WHERE a=17321; UPDATE t2 SET c='eight hundred thirty-five' WHERE a=17322; UPDATE t2 SET c='twenty-seven thousand nine hundred seventy-six' WHERE a=17323; UPDATE t2 SET c='twenty-one thousand six hundred ninety-seven' WHERE a=17324; UPDATE t2 SET c='eleven thousand three hundred ninety-seven' WHERE a=17325; UPDATE t2 SET c='twelve thousand three hundred eighty-one' WHERE a=17326; UPDATE t2 SET c='two thousand eight hundred forty' WHERE a=17327; UPDATE t2 SET c='nineteen thousand five hundred twenty-one' WHERE a=17328; UPDATE t2 SET c='forty-five thousand seventy-nine' WHERE a=17329; UPDATE t2 SET c='fifty thousand one hundred sixty' WHERE a=17330; UPDATE t2 SET c='sixty-three thousand nine hundred eleven' WHERE a=17331; UPDATE t2 SET c='twenty thousand one hundred sixty-nine' WHERE a=17332; UPDATE t2 SET c='thirty-seven thousand ninety-nine' WHERE a=17333; UPDATE t2 SET c='fifty-nine thousand nine hundred seventy-seven' WHERE a=17334; UPDATE t2 SET c='forty-seven thousand six hundred forty-four' WHERE a=17335; UPDATE t2 SET c='forty-eight thousand nine hundred seventy-eight' WHERE a=17336; UPDATE t2 SET c='eighty-two thousand six hundred seventeen' WHERE a=17337; UPDATE t2 SET c='thirty-three thousand four hundred ten' WHERE a=17338; UPDATE t2 SET c='forty-three' WHERE a=17339; UPDATE t2 SET c='fifty-eight thousand seven hundred ninety-seven' WHERE a=17340; UPDATE t2 SET c='two thousand seven hundred fifty-nine' WHERE a=17341; UPDATE t2 SET c='twenty-eight thousand seven hundred fifty-eight' WHERE a=17342; UPDATE t2 SET c='fifty-three thousand seven hundred seven' WHERE a=17343; UPDATE t2 SET c='twenty thousand six hundred seventy-three' WHERE a=17344; UPDATE t2 SET c='forty-six thousand eight hundred seven' WHERE a=17345; UPDATE t2 SET c='one thousand eight hundred thirty-six' WHERE a=17346; UPDATE t2 SET c='eighty-five thousand seven hundred nine' WHERE a=17347; UPDATE t2 SET c='eighty-seven thousand seven hundred seventy-nine' WHERE a=17348; UPDATE t2 SET c='eighty-seven thousand two hundred seventy-three' WHERE a=17349; UPDATE t2 SET c='two thousand nine hundred eighty-seven' WHERE a=17350; UPDATE t2 SET c='thirty-eight thousand two hundred twenty-one' WHERE a=17351; UPDATE t2 SET c='eighty-four thousand six hundred seventy-three' WHERE a=17352; UPDATE t2 SET c='seventy-three thousand five hundred twenty-nine' WHERE a=17353; UPDATE t2 SET c='seventy-one thousand six hundred eighty-nine' WHERE a=17354; UPDATE t2 SET c='sixty-three thousand nine hundred fifty-six' WHERE a=17355; UPDATE t2 SET c='one thousand six hundred eleven' WHERE a=17356; UPDATE t2 SET c='fifteen thousand forty-four' WHERE a=17357; UPDATE t2 SET c='thirty-eight thousand two hundred seventy-nine' WHERE a=17358; UPDATE t2 SET c='sixty-two thousand one hundred fifty' WHERE a=17359; UPDATE t2 SET c='seventy-nine thousand four hundred fifty' WHERE a=17360; UPDATE t2 SET c='seventeen thousand five hundred eight' WHERE a=17361; UPDATE t2 SET c='seventy-four thousand three hundred ninety' WHERE a=17362; UPDATE t2 SET c='fifty-two thousand eight hundred one' WHERE a=17363; UPDATE t2 SET c='seven thousand eight hundred sixty-nine' WHERE a=17364; UPDATE t2 SET c='sixty-one thousand four hundred ninety-two' WHERE a=17365; UPDATE t2 SET c='nineteen thousand one hundred seventy-five' WHERE a=17366; UPDATE t2 SET c='ninety-one thousand six hundred seven' WHERE a=17367; UPDATE t2 SET c='seventy-one thousand four hundred ten' WHERE a=17368; UPDATE t2 SET c='ninety-eight thousand four hundred ninety-seven' WHERE a=17369; UPDATE t2 SET c='six thousand eight hundred sixty-two' WHERE a=17370; UPDATE t2 SET c='three thousand four hundred eighteen' WHERE a=17371; UPDATE t2 SET c='thirty-four thousand nine hundred thirty-six' WHERE a=17372; UPDATE t2 SET c='sixty-eight thousand three hundred fifty' WHERE a=17373; UPDATE t2 SET c='twenty-six thousand sixty' WHERE a=17374; UPDATE t2 SET c='thirty-one thousand three hundred fifty' WHERE a=17375; UPDATE t2 SET c='forty-three thousand one hundred forty-three' WHERE a=17376; UPDATE t2 SET c='six thousand eight hundred fifty-five' WHERE a=17377; UPDATE t2 SET c='eighty-six thousand eight hundred' WHERE a=17378; UPDATE t2 SET c='seventy thousand four hundred fifty-three' WHERE a=17379; UPDATE t2 SET c='twenty thousand four hundred four' WHERE a=17380; UPDATE t2 SET c='twenty-six thousand three hundred fifty-two' WHERE a=17381; UPDATE t2 SET c='six thousand five hundred fifty-seven' WHERE a=17382; UPDATE t2 SET c='fifty-eight thousand six hundred ninety-six' WHERE a=17383; UPDATE t2 SET c='sixty-five thousand eight hundred' WHERE a=17384; UPDATE t2 SET c='thirty thousand two hundred eighty-one' WHERE a=17385; UPDATE t2 SET c='forty-eight thousand six hundred thirty-two' WHERE a=17386; UPDATE t2 SET c='ninety-three thousand four hundred forty-five' WHERE a=17387; UPDATE t2 SET c='fifty-one thousand one hundred fifty-six' WHERE a=17388; UPDATE t2 SET c='eighty-two thousand four hundred ninety-seven' WHERE a=17389; UPDATE t2 SET c='twenty-one thousand four hundred ninety-five' WHERE a=17390; UPDATE t2 SET c='eleven thousand sixty-eight' WHERE a=17391; UPDATE t2 SET c='thirty-three thousand six hundred ninety-six' WHERE a=17392; UPDATE t2 SET c='eighty-four thousand twenty-six' WHERE a=17393; UPDATE t2 SET c='forty-two thousand seven hundred ninety-nine' WHERE a=17394; UPDATE t2 SET c='thirteen thousand ten' WHERE a=17395; UPDATE t2 SET c='sixty-nine thousand eight hundred three' WHERE a=17396; UPDATE t2 SET c='thirty-nine thousand sixty-seven' WHERE a=17397; UPDATE t2 SET c='ninety-eight thousand four hundred thirty-nine' WHERE a=17398; UPDATE t2 SET c='forty-nine thousand five hundred ten' WHERE a=17399; UPDATE t2 SET c='sixteen thousand six hundred fifty-eight' WHERE a=17400; UPDATE t2 SET c='ninety-five thousand six hundred eighty-one' WHERE a=17401; UPDATE t2 SET c='fifty-six thousand one hundred sixty-four' WHERE a=17402; UPDATE t2 SET c='forty-nine thousand five hundred ninety-two' WHERE a=17403; UPDATE t2 SET c='seventy-one thousand three hundred ten' WHERE a=17404; UPDATE t2 SET c='thirty-two thousand fifty-three' WHERE a=17405; UPDATE t2 SET c='ninety-nine thousand three hundred sixty-one' WHERE a=17406; UPDATE t2 SET c='twenty-two thousand two hundred eighty-four' WHERE a=17407; UPDATE t2 SET c='fifty-six thousand ten' WHERE a=17408; UPDATE t2 SET c='thirty-two thousand one hundred twenty-nine' WHERE a=17409; UPDATE t2 SET c='fifty-four thousand six hundred fifty-six' WHERE a=17410; UPDATE t2 SET c='forty-two thousand eight hundred seventy-nine' WHERE a=17411; UPDATE t2 SET c='eighty-six thousand fifty-seven' WHERE a=17412; UPDATE t2 SET c='forty-five thousand eight hundred twenty-seven' WHERE a=17413; UPDATE t2 SET c='sixty thousand four hundred forty-eight' WHERE a=17414; UPDATE t2 SET c='seventy-five thousand six hundred seventy-three' WHERE a=17415; UPDATE t2 SET c='fifty-six thousand two hundred ninety-six' WHERE a=17416; UPDATE t2 SET c='seventy-five thousand nine hundred thirty-six' WHERE a=17417; UPDATE t2 SET c='ninety thousand six hundred seventy' WHERE a=17418; UPDATE t2 SET c='forty-three thousand nine hundred seventy-one' WHERE a=17419; UPDATE t2 SET c='seventy-eight thousand one hundred five' WHERE a=17420; UPDATE t2 SET c='twenty-five thousand four hundred eighty-five' WHERE a=17421; UPDATE t2 SET c='forty-eight thousand eight hundred thirteen' WHERE a=17422; UPDATE t2 SET c='twenty-three thousand eight hundred seventy-eight' WHERE a=17423; UPDATE t2 SET c='forty-three thousand eight hundred forty-seven' WHERE a=17424; UPDATE t2 SET c='ninety-three thousand five hundred thirty-two' WHERE a=17425; UPDATE t2 SET c='forty-seven thousand four hundred thirty-five' WHERE a=17426; UPDATE t2 SET c='ninety-nine thousand eight hundred thirty-nine' WHERE a=17427; UPDATE t2 SET c='eighty thousand seven hundred fifty-six' WHERE a=17428; UPDATE t2 SET c='nine thousand thirty' WHERE a=17429; UPDATE t2 SET c='eighty-seven thousand seven hundred seventy-four' WHERE a=17430; UPDATE t2 SET c='ninety thousand four hundred ninety-six' WHERE a=17431; UPDATE t2 SET c='thirty-three thousand seven hundred seventy-one' WHERE a=17432; UPDATE t2 SET c='eighty-five thousand six hundred eighty-one' WHERE a=17433; UPDATE t2 SET c='seventy-one thousand seven hundred ninety-one' WHERE a=17434; UPDATE t2 SET c='eleven thousand two hundred sixty-nine' WHERE a=17435; UPDATE t2 SET c='fifteen thousand five hundred four' WHERE a=17436; UPDATE t2 SET c='seventy-six thousand four hundred twenty-seven' WHERE a=17437; UPDATE t2 SET c='ninety-nine thousand nine hundred forty-seven' WHERE a=17438; UPDATE t2 SET c='forty-one thousand six hundred sixty-four' WHERE a=17439; UPDATE t2 SET c='forty-eight thousand four hundred forty-eight' WHERE a=17440; UPDATE t2 SET c='nine thousand eight hundred ninety-eight' WHERE a=17441; UPDATE t2 SET c='seventy-seven thousand five hundred two' WHERE a=17442; UPDATE t2 SET c='forty-seven thousand one hundred sixty-one' WHERE a=17443; UPDATE t2 SET c='seventy-two thousand six hundred twenty' WHERE a=17444; UPDATE t2 SET c='fifty-eight thousand nine hundred fourteen' WHERE a=17445; UPDATE t2 SET c='fifty-two thousand nine hundred ten' WHERE a=17446; UPDATE t2 SET c='ninety-one thousand three hundred fifty-eight' WHERE a=17447; UPDATE t2 SET c='sixty-nine thousand thirty-three' WHERE a=17448; UPDATE t2 SET c='seventy-eight thousand seven' WHERE a=17449; UPDATE t2 SET c='seventy-eight thousand five hundred sixty-eight' WHERE a=17450; UPDATE t2 SET c='two thousand four hundred thirty-five' WHERE a=17451; UPDATE t2 SET c='eighty-two thousand eight hundred twenty-five' WHERE a=17452; UPDATE t2 SET c='five thousand three hundred sixty-five' WHERE a=17453; UPDATE t2 SET c='forty-nine thousand two hundred seventy-three' WHERE a=17454; UPDATE t2 SET c='forty-five thousand five hundred eight' WHERE a=17455; UPDATE t2 SET c='sixty thousand five hundred fifty-seven' WHERE a=17456; UPDATE t2 SET c='fifty-seven thousand two hundred seventy-four' WHERE a=17457; UPDATE t2 SET c='sixteen thousand four hundred six' WHERE a=17458; UPDATE t2 SET c='thirteen thousand six hundred seventy-nine' WHERE a=17459; UPDATE t2 SET c='ninety-one thousand eight hundred seven' WHERE a=17460; UPDATE t2 SET c='ninety-three thousand eight hundred fifty-three' WHERE a=17461; UPDATE t2 SET c='eighteen thousand five hundred fifty-seven' WHERE a=17462; UPDATE t2 SET c='seventy-four thousand three hundred eighty-nine' WHERE a=17463; UPDATE t2 SET c='eighty thousand three hundred seventy-seven' WHERE a=17464; UPDATE t2 SET c='thirty-nine thousand two hundred seventy-five' WHERE a=17465; UPDATE t2 SET c='fifty-two thousand six hundred three' WHERE a=17466; UPDATE t2 SET c='twenty-two thousand one hundred' WHERE a=17467; UPDATE t2 SET c='ninety-four thousand seven hundred four' WHERE a=17468; UPDATE t2 SET c='seventy-three thousand seven hundred thirty-six' WHERE a=17469; UPDATE t2 SET c='sixty-two thousand nine hundred eighty-five' WHERE a=17470; UPDATE t2 SET c='seventy-five thousand five hundred eighty-six' WHERE a=17471; UPDATE t2 SET c='fifty-six thousand thirty-six' WHERE a=17472; UPDATE t2 SET c='forty-eight thousand six hundred nine' WHERE a=17473; UPDATE t2 SET c='thirty-six thousand three hundred eighteen' WHERE a=17474; UPDATE t2 SET c='twenty-two thousand seven hundred twenty-three' WHERE a=17475; UPDATE t2 SET c='ninety-two thousand seven hundred forty-four' WHERE a=17476; UPDATE t2 SET c='seventy-two thousand nine hundred eighty-two' WHERE a=17477; UPDATE t2 SET c='sixty-six thousand nine hundred fifty-five' WHERE a=17478; UPDATE t2 SET c='twenty-six thousand five hundred seventeen' WHERE a=17479; UPDATE t2 SET c='twenty-three thousand nine hundred twenty-three' WHERE a=17480; UPDATE t2 SET c='ninety-two thousand three hundred thirty-six' WHERE a=17481; UPDATE t2 SET c='seventy-six thousand three hundred eighty-five' WHERE a=17482; UPDATE t2 SET c='eighteen thousand six hundred nineteen' WHERE a=17483; UPDATE t2 SET c='forty-six thousand five hundred thirty-eight' WHERE a=17484; UPDATE t2 SET c='seventy-six thousand eight hundred ninety' WHERE a=17485; UPDATE t2 SET c='seventy-two thousand nine hundred seventy-four' WHERE a=17486; UPDATE t2 SET c='thirty thousand three hundred five' WHERE a=17487; UPDATE t2 SET c='four thousand three hundred forty-seven' WHERE a=17488; UPDATE t2 SET c='ninety-four thousand nine hundred sixty-two' WHERE a=17489; UPDATE t2 SET c='twenty-one thousand six hundred seventy-three' WHERE a=17490; UPDATE t2 SET c='five thousand two hundred seven' WHERE a=17491; UPDATE t2 SET c='ten thousand nine hundred eighty-five' WHERE a=17492; UPDATE t2 SET c='forty-four thousand three hundred twenty-three' WHERE a=17493; UPDATE t2 SET c='eight thousand eight hundred twenty-seven' WHERE a=17494; UPDATE t2 SET c='twenty-nine thousand eight hundred thirty' WHERE a=17495; UPDATE t2 SET c='fifty-one thousand eight hundred forty-one' WHERE a=17496; UPDATE t2 SET c='twenty-seven thousand nine hundred twenty-eight' WHERE a=17497; UPDATE t2 SET c='thirty-five thousand three hundred twenty-seven' WHERE a=17498; UPDATE t2 SET c='eleven thousand eight hundred thirty-five' WHERE a=17499; UPDATE t2 SET c='ninety-eight thousand fifteen' WHERE a=17500; UPDATE t2 SET c='ninety-two thousand five hundred thirty' WHERE a=17501; UPDATE t2 SET c='three thousand five hundred sixteen' WHERE a=17502; UPDATE t2 SET c='four thousand five hundred twenty-two' WHERE a=17503; UPDATE t2 SET c='fifty-four thousand three hundred eighty-four' WHERE a=17504; UPDATE t2 SET c='forty-nine thousand six hundred thirty-six' WHERE a=17505; UPDATE t2 SET c='twenty thousand three hundred thirteen' WHERE a=17506; UPDATE t2 SET c='five thousand eighty-two' WHERE a=17507; UPDATE t2 SET c='forty-six thousand five hundred thirty-nine' WHERE a=17508; UPDATE t2 SET c='seven thousand seven hundred twenty-nine' WHERE a=17509; UPDATE t2 SET c='thirty-eight thousand five hundred sixty-five' WHERE a=17510; UPDATE t2 SET c='thirty-four thousand three hundred six' WHERE a=17511; UPDATE t2 SET c='seventy-seven thousand nine hundred thirty-nine' WHERE a=17512; UPDATE t2 SET c='twenty-six thousand four hundred seventy-five' WHERE a=17513; UPDATE t2 SET c='fifty-three thousand five hundred eight' WHERE a=17514; UPDATE t2 SET c='seventy-six thousand five hundred eighty-five' WHERE a=17515; UPDATE t2 SET c='thirty-two thousand one hundred sixty-one' WHERE a=17516; UPDATE t2 SET c='fifty-eight thousand thirty-nine' WHERE a=17517; UPDATE t2 SET c='sixty-five thousand seventeen' WHERE a=17518; UPDATE t2 SET c='fifty-nine thousand seven hundred seventy-nine' WHERE a=17519; UPDATE t2 SET c='eighty-nine thousand four hundred fifteen' WHERE a=17520; UPDATE t2 SET c='ten thousand five hundred forty-three' WHERE a=17521; UPDATE t2 SET c='nineteen thousand one hundred ninety-four' WHERE a=17522; UPDATE t2 SET c='eighty-eight thousand three hundred sixteen' WHERE a=17523; UPDATE t2 SET c='eighty-two thousand six hundred thirty-four' WHERE a=17524; UPDATE t2 SET c='twenty-five thousand one hundred twenty' WHERE a=17525; UPDATE t2 SET c='fifty-two thousand two hundred thirty-three' WHERE a=17526; UPDATE t2 SET c='fourteen thousand eight hundred fifty' WHERE a=17527; UPDATE t2 SET c='eighty-four thousand two hundred ninety-seven' WHERE a=17528; UPDATE t2 SET c='twenty-seven thousand five hundred eleven' WHERE a=17529; UPDATE t2 SET c='eighty thousand nine hundred sixty-five' WHERE a=17530; UPDATE t2 SET c='two thousand four hundred thirty-two' WHERE a=17531; UPDATE t2 SET c='sixty-six thousand three hundred fifty-five' WHERE a=17532; UPDATE t2 SET c='fifty-four thousand fifty' WHERE a=17533; UPDATE t2 SET c='seventy-one thousand seven hundred eighty' WHERE a=17534; UPDATE t2 SET c='thirty-nine thousand three hundred forty-three' WHERE a=17535; UPDATE t2 SET c='eighty-nine thousand four hundred fifty-seven' WHERE a=17536; UPDATE t2 SET c='ninety-nine thousand five hundred sixty-six' WHERE a=17537; UPDATE t2 SET c='ten thousand four hundred seventy-eight' WHERE a=17538; UPDATE t2 SET c='eighty-five thousand three hundred ten' WHERE a=17539; UPDATE t2 SET c='ninety-seven thousand five hundred fourteen' WHERE a=17540; UPDATE t2 SET c='fifty-five thousand five hundred twenty-four' WHERE a=17541; UPDATE t2 SET c='forty-six thousand nine hundred eighty-three' WHERE a=17542; UPDATE t2 SET c='fifty-nine thousand nine hundred forty-five' WHERE a=17543; UPDATE t2 SET c='nineteen thousand two hundred sixty-four' WHERE a=17544; UPDATE t2 SET c='forty-five thousand two hundred forty-five' WHERE a=17545; UPDATE t2 SET c='sixty-eight thousand two hundred fifty-two' WHERE a=17546; UPDATE t2 SET c='ten thousand thirty' WHERE a=17547; UPDATE t2 SET c='fifty-eight thousand five hundred twelve' WHERE a=17548; UPDATE t2 SET c='seventy-four thousand two hundred sixty-eight' WHERE a=17549; UPDATE t2 SET c='sixty-three thousand five hundred fifty-one' WHERE a=17550; UPDATE t2 SET c='forty-six thousand four hundred thirty-six' WHERE a=17551; UPDATE t2 SET c='fourteen thousand eighty-seven' WHERE a=17552; UPDATE t2 SET c='two thousand three hundred sixty-four' WHERE a=17553; UPDATE t2 SET c='eighty-four thousand fifty-four' WHERE a=17554; UPDATE t2 SET c='twenty-three thousand nine hundred thirty-two' WHERE a=17555; UPDATE t2 SET c='eighty-two thousand one hundred fifty-five' WHERE a=17556; UPDATE t2 SET c='forty-four thousand four hundred seventy-seven' WHERE a=17557; UPDATE t2 SET c='eighty-three thousand two' WHERE a=17558; UPDATE t2 SET c='fifty-six thousand five hundred sixty-five' WHERE a=17559; UPDATE t2 SET c='sixty-eight thousand two hundred seventy-four' WHERE a=17560; UPDATE t2 SET c='forty-one thousand seven hundred seventy-one' WHERE a=17561; UPDATE t2 SET c='twenty-three thousand five hundred seventy-three' WHERE a=17562; UPDATE t2 SET c='six thousand five hundred twenty-two' WHERE a=17563; UPDATE t2 SET c='thirty-eight thousand five hundred ninety-seven' WHERE a=17564; UPDATE t2 SET c='twenty-eight thousand eight hundred ninety-one' WHERE a=17565; UPDATE t2 SET c='two thousand two' WHERE a=17566; UPDATE t2 SET c='twenty-two thousand three hundred forty-seven' WHERE a=17567; UPDATE t2 SET c='five thousand four hundred thirty-four' WHERE a=17568; UPDATE t2 SET c='fifty-four thousand four hundred ninety-five' WHERE a=17569; UPDATE t2 SET c='fourteen thousand five hundred ninety-six' WHERE a=17570; UPDATE t2 SET c='ninety-three thousand two hundred two' WHERE a=17571; UPDATE t2 SET c='thirteen thousand one hundred twelve' WHERE a=17572; UPDATE t2 SET c='thirteen thousand eight hundred twelve' WHERE a=17573; UPDATE t2 SET c='ninety thousand nine hundred seventy-five' WHERE a=17574; UPDATE t2 SET c='eighty-eight thousand eight hundred twenty-one' WHERE a=17575; UPDATE t2 SET c='fifty-six thousand twenty-two' WHERE a=17576; UPDATE t2 SET c='fourteen thousand one hundred twenty' WHERE a=17577; UPDATE t2 SET c='seventy-nine thousand eight hundred seventeen' WHERE a=17578; UPDATE t2 SET c='fifty-one thousand four hundred ninety-one' WHERE a=17579; UPDATE t2 SET c='sixty-nine thousand four hundred four' WHERE a=17580; UPDATE t2 SET c='sixty-four thousand three hundred thirty-one' WHERE a=17581; UPDATE t2 SET c='eighty-eight thousand fifty-four' WHERE a=17582; UPDATE t2 SET c='twenty-five thousand four hundred two' WHERE a=17583; UPDATE t2 SET c='sixty-seven thousand seven hundred eighty-five' WHERE a=17584; UPDATE t2 SET c='nineteen thousand six hundred eleven' WHERE a=17585; UPDATE t2 SET c='seventy-six thousand seven hundred eight' WHERE a=17586; UPDATE t2 SET c='fifty-eight thousand seven hundred forty-nine' WHERE a=17587; UPDATE t2 SET c='two hundred twenty-two' WHERE a=17588; UPDATE t2 SET c='ninety-four thousand eight hundred seventy-five' WHERE a=17589; UPDATE t2 SET c='sixty-seven thousand one hundred fourteen' WHERE a=17590; UPDATE t2 SET c='sixty-one thousand four hundred one' WHERE a=17591; UPDATE t2 SET c='fifty-five thousand ninety-three' WHERE a=17592; UPDATE t2 SET c='forty-seven thousand eight hundred seventy-five' WHERE a=17593; UPDATE t2 SET c='seventy-eight thousand thirteen' WHERE a=17594; UPDATE t2 SET c='forty-nine thousand three hundred eighty-five' WHERE a=17595; UPDATE t2 SET c='thirty-three thousand seven hundred twenty-seven' WHERE a=17596; UPDATE t2 SET c='thirty-two thousand three hundred sixty-five' WHERE a=17597; UPDATE t2 SET c='eighty-nine thousand six hundred forty-seven' WHERE a=17598; UPDATE t2 SET c='sixteen thousand one hundred ninety-six' WHERE a=17599; UPDATE t2 SET c='eighty-five thousand two hundred thirty-eight' WHERE a=17600; UPDATE t2 SET c='ninety-two thousand eight hundred fifty-five' WHERE a=17601; UPDATE t2 SET c='forty-six thousand three hundred twenty-nine' WHERE a=17602; UPDATE t2 SET c='fifty-nine thousand four hundred sixty-seven' WHERE a=17603; UPDATE t2 SET c='twenty-four thousand nine hundred sixty' WHERE a=17604; UPDATE t2 SET c='ninety thousand six hundred sixty-seven' WHERE a=17605; UPDATE t2 SET c='seventy-five thousand two hundred twenty-nine' WHERE a=17606; UPDATE t2 SET c='two thousand three hundred fifty-two' WHERE a=17607; UPDATE t2 SET c='forty-two thousand six hundred eighteen' WHERE a=17608; UPDATE t2 SET c='ninety-four thousand four hundred forty-one' WHERE a=17609; UPDATE t2 SET c='fifty-three thousand six hundred thirty-one' WHERE a=17610; UPDATE t2 SET c='three thousand seven hundred sixty-eight' WHERE a=17611; UPDATE t2 SET c='sixty-eight thousand one hundred seventy' WHERE a=17612; UPDATE t2 SET c='seventy-five thousand nine hundred fifty-four' WHERE a=17613; UPDATE t2 SET c='eighty-three thousand four hundred ninety-eight' WHERE a=17614; UPDATE t2 SET c='fifty-six thousand fifty-five' WHERE a=17615; UPDATE t2 SET c='eighteen thousand one hundred nineteen' WHERE a=17616; UPDATE t2 SET c='eighty-two thousand seven hundred fifty-nine' WHERE a=17617; UPDATE t2 SET c='eighty thousand eight hundred thirty-eight' WHERE a=17618; UPDATE t2 SET c='ninety-six thousand six hundred six' WHERE a=17619; UPDATE t2 SET c='twenty-five thousand two hundred eighty-seven' WHERE a=17620; UPDATE t2 SET c='fifty-three thousand two hundred eight' WHERE a=17621; UPDATE t2 SET c='sixty-seven thousand thirty-one' WHERE a=17622; UPDATE t2 SET c='sixty-one thousand two hundred sixty-six' WHERE a=17623; UPDATE t2 SET c='ninety-two thousand seven hundred thirteen' WHERE a=17624; UPDATE t2 SET c='forty-two thousand eight hundred twenty-nine' WHERE a=17625; UPDATE t2 SET c='forty-nine thousand two hundred ninety-nine' WHERE a=17626; UPDATE t2 SET c='seventy-nine thousand eight hundred ninety-one' WHERE a=17627; UPDATE t2 SET c='eighty-seven thousand nine hundred ninety-six' WHERE a=17628; UPDATE t2 SET c='thirty-seven thousand nine hundred fifty-six' WHERE a=17629; UPDATE t2 SET c='forty-one thousand four hundred ninety-five' WHERE a=17630; UPDATE t2 SET c='seven thousand sixty-six' WHERE a=17631; UPDATE t2 SET c='forty-two thousand ninety-eight' WHERE a=17632; UPDATE t2 SET c='eighty-one thousand eight hundred fifty-two' WHERE a=17633; UPDATE t2 SET c='nineteen thousand nine hundred eighty-four' WHERE a=17634; UPDATE t2 SET c='eleven thousand six hundred nine' WHERE a=17635; UPDATE t2 SET c='twenty-six thousand one hundred twelve' WHERE a=17636; UPDATE t2 SET c='seventy-six thousand seven hundred sixty-eight' WHERE a=17637; UPDATE t2 SET c='fourteen thousand five hundred nine' WHERE a=17638; UPDATE t2 SET c='six thousand four hundred sixteen' WHERE a=17639; UPDATE t2 SET c='thirteen thousand two hundred sixty-five' WHERE a=17640; UPDATE t2 SET c='seventy-four thousand two hundred eighty-three' WHERE a=17641; UPDATE t2 SET c='thirty thousand seven hundred thirty-seven' WHERE a=17642; UPDATE t2 SET c='ninety-six thousand one hundred seventy-six' WHERE a=17643; UPDATE t2 SET c='forty-two thousand three hundred five' WHERE a=17644; UPDATE t2 SET c='twenty-eight thousand three hundred forty-seven' WHERE a=17645; UPDATE t2 SET c='seventy-three thousand five hundred ninety-seven' WHERE a=17646; UPDATE t2 SET c='sixty-six thousand two hundred seventy-seven' WHERE a=17647; UPDATE t2 SET c='twelve thousand seven hundred twenty-eight' WHERE a=17648; UPDATE t2 SET c='sixty-four thousand nine hundred thirty-nine' WHERE a=17649; UPDATE t2 SET c='ninety-six thousand seven hundred fifteen' WHERE a=17650; UPDATE t2 SET c='forty-nine thousand five hundred eighty-two' WHERE a=17651; UPDATE t2 SET c='fourteen thousand seven hundred eighty' WHERE a=17652; UPDATE t2 SET c='thirty-five thousand two hundred twenty-eight' WHERE a=17653; UPDATE t2 SET c='eighty-one thousand thirty-three' WHERE a=17654; UPDATE t2 SET c='twenty-one thousand nine hundred fifty-one' WHERE a=17655; UPDATE t2 SET c='sixteen thousand nine hundred seventy-three' WHERE a=17656; UPDATE t2 SET c='eighty-six thousand three hundred fifty-seven' WHERE a=17657; UPDATE t2 SET c='eighty-seven thousand two hundred seventy-six' WHERE a=17658; UPDATE t2 SET c='eight thousand one hundred fifty-six' WHERE a=17659; UPDATE t2 SET c='forty-six thousand three hundred seventy-eight' WHERE a=17660; UPDATE t2 SET c='forty-five thousand nine hundred sixty-three' WHERE a=17661; UPDATE t2 SET c='eighty-one thousand seven hundred sixty-nine' WHERE a=17662; UPDATE t2 SET c='ninety thousand one hundred eighty-one' WHERE a=17663; UPDATE t2 SET c='thirty-two thousand five hundred twelve' WHERE a=17664; UPDATE t2 SET c='eighty-one thousand three hundred thirty-two' WHERE a=17665; UPDATE t2 SET c='eighty-three thousand six hundred thirty-eight' WHERE a=17666; UPDATE t2 SET c='seventy-one thousand nine hundred thirty-two' WHERE a=17667; UPDATE t2 SET c='fifteen thousand seven hundred eighty-six' WHERE a=17668; UPDATE t2 SET c='thirty-two thousand seven hundred ninety-one' WHERE a=17669; UPDATE t2 SET c='fifty-five thousand forty-seven' WHERE a=17670; UPDATE t2 SET c='eighty-four thousand eight hundred ninety-three' WHERE a=17671; UPDATE t2 SET c='forty-three thousand seven hundred forty-nine' WHERE a=17672; UPDATE t2 SET c='fifty-five thousand two hundred seventy-eight' WHERE a=17673; UPDATE t2 SET c='ninety-one thousand two hundred six' WHERE a=17674; UPDATE t2 SET c='seventy thousand one hundred fifteen' WHERE a=17675; UPDATE t2 SET c='eighty-three thousand two hundred ninety-nine' WHERE a=17676; UPDATE t2 SET c='seventy-six thousand four hundred sixty-five' WHERE a=17677; UPDATE t2 SET c='forty-nine thousand four hundred forty' WHERE a=17678; UPDATE t2 SET c='seventy-eight thousand four hundred sixty-six' WHERE a=17679; UPDATE t2 SET c='sixty-two thousand nineteen' WHERE a=17680; UPDATE t2 SET c='seventy-two thousand ninety-two' WHERE a=17681; UPDATE t2 SET c='seventy thousand three hundred eighty-six' WHERE a=17682; UPDATE t2 SET c='ninety-five thousand six hundred twenty-seven' WHERE a=17683; UPDATE t2 SET c='forty-eight thousand six hundred seventy-seven' WHERE a=17684; UPDATE t2 SET c='fifty thousand eight hundred eight' WHERE a=17685; UPDATE t2 SET c='fourteen thousand two hundred ninety-one' WHERE a=17686; UPDATE t2 SET c='four thousand one hundred forty-six' WHERE a=17687; UPDATE t2 SET c='eighty-eight thousand seven hundred twenty-seven' WHERE a=17688; UPDATE t2 SET c='thirty thousand twenty-four' WHERE a=17689; UPDATE t2 SET c='thirty thousand seven hundred sixty-seven' WHERE a=17690; UPDATE t2 SET c='ninety-five thousand seven hundred nine' WHERE a=17691; UPDATE t2 SET c='sixty-three thousand nine hundred fifty-seven' WHERE a=17692; UPDATE t2 SET c='five thousand seven hundred fifty-three' WHERE a=17693; UPDATE t2 SET c='eighty-three thousand one hundred fifty-six' WHERE a=17694; UPDATE t2 SET c='fifteen thousand six hundred eighty-five' WHERE a=17695; UPDATE t2 SET c='sixty-two thousand four hundred seventy-one' WHERE a=17696; UPDATE t2 SET c='forty thousand nine hundred fifty-two' WHERE a=17697; UPDATE t2 SET c='sixteen thousand six hundred ninety-five' WHERE a=17698; UPDATE t2 SET c='fifty-eight thousand five hundred twenty-seven' WHERE a=17699; UPDATE t2 SET c='forty-five thousand two hundred thirteen' WHERE a=17700; UPDATE t2 SET c='twenty-one thousand five hundred sixty-five' WHERE a=17701; UPDATE t2 SET c='twenty-two thousand six hundred five' WHERE a=17702; UPDATE t2 SET c='thirty-eight thousand four hundred seventy-one' WHERE a=17703; UPDATE t2 SET c='forty-nine thousand four hundred ninety-two' WHERE a=17704; UPDATE t2 SET c='forty-two thousand two hundred twelve' WHERE a=17705; UPDATE t2 SET c='thirty-seven thousand two hundred ninety-five' WHERE a=17706; UPDATE t2 SET c='eighty-two thousand six hundred thirty-three' WHERE a=17707; UPDATE t2 SET c='fifty-nine thousand one hundred six' WHERE a=17708; UPDATE t2 SET c='sixty-one thousand three hundred thirteen' WHERE a=17709; UPDATE t2 SET c='thirty-eight thousand five hundred ninety' WHERE a=17710; UPDATE t2 SET c='nine thousand three hundred seventy-nine' WHERE a=17711; UPDATE t2 SET c='ninety-three thousand one hundred fifty-five' WHERE a=17712; UPDATE t2 SET c='sixty-nine thousand five hundred eighty-seven' WHERE a=17713; UPDATE t2 SET c='thirty-five thousand six hundred sixty-one' WHERE a=17714; UPDATE t2 SET c='sixty-eight thousand eighty-four' WHERE a=17715; UPDATE t2 SET c='ninety-seven thousand eight hundred thirteen' WHERE a=17716; UPDATE t2 SET c='eighty-one thousand eight hundred eighty-eight' WHERE a=17717; UPDATE t2 SET c='sixty-five thousand three hundred two' WHERE a=17718; UPDATE t2 SET c='ninety-three thousand four hundred fifty-four' WHERE a=17719; UPDATE t2 SET c='twenty-four thousand six hundred twelve' WHERE a=17720; UPDATE t2 SET c='twenty-six thousand eight hundred eighteen' WHERE a=17721; UPDATE t2 SET c='ten thousand seven hundred thirty-eight' WHERE a=17722; UPDATE t2 SET c='ninety-five thousand six hundred eighty-nine' WHERE a=17723; UPDATE t2 SET c='three thousand six hundred fourteen' WHERE a=17724; UPDATE t2 SET c='twenty-eight thousand four hundred fourteen' WHERE a=17725; UPDATE t2 SET c='ninety-five thousand three hundred thirteen' WHERE a=17726; UPDATE t2 SET c='forty-eight thousand nine hundred eighty-six' WHERE a=17727; UPDATE t2 SET c='thirty thousand three hundred fifteen' WHERE a=17728; UPDATE t2 SET c='fifty thousand thirty-four' WHERE a=17729; UPDATE t2 SET c='fifty-one thousand eight hundred fifty-eight' WHERE a=17730; UPDATE t2 SET c='twenty-five thousand five hundred fifteen' WHERE a=17731; UPDATE t2 SET c='eighty-nine thousand nine hundred seventy-eight' WHERE a=17732; UPDATE t2 SET c='seventy thousand four hundred sixty-two' WHERE a=17733; UPDATE t2 SET c='fifty-seven thousand three hundred fifty' WHERE a=17734; UPDATE t2 SET c='twenty-nine thousand six hundred sixteen' WHERE a=17735; UPDATE t2 SET c='forty-six thousand eight hundred forty' WHERE a=17736; UPDATE t2 SET c='seventy thousand four hundred nineteen' WHERE a=17737; UPDATE t2 SET c='nine thousand six hundred sixty-seven' WHERE a=17738; UPDATE t2 SET c='eighty-two thousand nine hundred fifteen' WHERE a=17739; UPDATE t2 SET c='seven thousand nine hundred ninety-four' WHERE a=17740; UPDATE t2 SET c='five thousand one hundred ninety-three' WHERE a=17741; UPDATE t2 SET c='two thousand four hundred seventy' WHERE a=17742; UPDATE t2 SET c='twenty-five thousand seven hundred forty-one' WHERE a=17743; UPDATE t2 SET c='thirteen thousand nine hundred sixty-seven' WHERE a=17744; UPDATE t2 SET c='thirty-three thousand four hundred twenty-nine' WHERE a=17745; UPDATE t2 SET c='seven thousand nine hundred fifty-two' WHERE a=17746; UPDATE t2 SET c='four thousand two hundred thirty-two' WHERE a=17747; UPDATE t2 SET c='ninety thousand four hundred forty-five' WHERE a=17748; UPDATE t2 SET c='twelve thousand fifteen' WHERE a=17749; UPDATE t2 SET c='seventy thousand eight hundred forty-nine' WHERE a=17750; UPDATE t2 SET c='seventy thousand three hundred two' WHERE a=17751; UPDATE t2 SET c='ninety-six thousand five hundred forty-one' WHERE a=17752; UPDATE t2 SET c='ten thousand seven hundred forty-five' WHERE a=17753; UPDATE t2 SET c='sixty-three thousand six hundred fifty' WHERE a=17754; UPDATE t2 SET c='sixty-eight thousand eight hundred thirty-six' WHERE a=17755; UPDATE t2 SET c='sixty-five thousand three hundred twenty-two' WHERE a=17756; UPDATE t2 SET c='ninety-four thousand four hundred ninety-nine' WHERE a=17757; UPDATE t2 SET c='eighty-one thousand nine hundred seventy-three' WHERE a=17758; UPDATE t2 SET c='ninety-five thousand three hundred thirty' WHERE a=17759; UPDATE t2 SET c='forty-three thousand four hundred forty-four' WHERE a=17760; UPDATE t2 SET c='thirty-one thousand nine hundred twenty-five' WHERE a=17761; UPDATE t2 SET c='seven thousand three hundred thirty-five' WHERE a=17762; UPDATE t2 SET c='eighty-eight thousand eight hundred sixty-seven' WHERE a=17763; UPDATE t2 SET c='eighty-five thousand five hundred fifty-nine' WHERE a=17764; UPDATE t2 SET c='forty-seven thousand one hundred forty-six' WHERE a=17765; UPDATE t2 SET c='twenty-three thousand three hundred seventy-four' WHERE a=17766; UPDATE t2 SET c='fifty-seven thousand six hundred sixty-two' WHERE a=17767; UPDATE t2 SET c='twenty-two thousand four hundred fifty-nine' WHERE a=17768; UPDATE t2 SET c='forty-three thousand eight hundred twenty-seven' WHERE a=17769; UPDATE t2 SET c='fifty-nine thousand seven hundred thirty-two' WHERE a=17770; UPDATE t2 SET c='forty-three thousand two hundred fifty-five' WHERE a=17771; UPDATE t2 SET c='eighty-five thousand seven hundred thirty' WHERE a=17772; UPDATE t2 SET c='eighty-nine thousand eight hundred thirty-four' WHERE a=17773; UPDATE t2 SET c='one thousand nine hundred fifty-eight' WHERE a=17774; UPDATE t2 SET c='forty-two thousand four hundred six' WHERE a=17775; UPDATE t2 SET c='forty-five thousand four hundred thirty-one' WHERE a=17776; UPDATE t2 SET c='ten thousand five hundred fourteen' WHERE a=17777; UPDATE t2 SET c='eighty-three thousand seventy-two' WHERE a=17778; UPDATE t2 SET c='sixty-five thousand four hundred fourteen' WHERE a=17779; UPDATE t2 SET c='seventy-seven thousand one hundred sixty-one' WHERE a=17780; UPDATE t2 SET c='seventy-nine thousand seven hundred ninety-three' WHERE a=17781; UPDATE t2 SET c='nine thousand eight hundred ninety-one' WHERE a=17782; UPDATE t2 SET c='five thousand three hundred forty-one' WHERE a=17783; UPDATE t2 SET c='sixty-two thousand four hundred sixty-seven' WHERE a=17784; UPDATE t2 SET c='ninety-four thousand four hundred twenty-five' WHERE a=17785; UPDATE t2 SET c='forty-six thousand fifty-nine' WHERE a=17786; UPDATE t2 SET c='one thousand eight hundred sixty' WHERE a=17787; UPDATE t2 SET c='seventy-five thousand fifteen' WHERE a=17788; UPDATE t2 SET c='fifty-six thousand seven hundred sixty-one' WHERE a=17789; UPDATE t2 SET c='fifty thousand two hundred eighty-five' WHERE a=17790; UPDATE t2 SET c='twenty-three thousand six hundred ninety-seven' WHERE a=17791; UPDATE t2 SET c='eighty-four thousand eight hundred forty-three' WHERE a=17792; UPDATE t2 SET c='forty-one thousand two hundred sixty-four' WHERE a=17793; UPDATE t2 SET c='fifty-five thousand seven hundred fifty-two' WHERE a=17794; UPDATE t2 SET c='seventy-five thousand four hundred eighty-six' WHERE a=17795; UPDATE t2 SET c='thirty-three thousand three hundred seventy-three' WHERE a=17796; UPDATE t2 SET c='twenty-nine thousand five' WHERE a=17797; UPDATE t2 SET c='six thousand seven hundred fifty-six' WHERE a=17798; UPDATE t2 SET c='sixty-one thousand one' WHERE a=17799; UPDATE t2 SET c='fifty-nine thousand three hundred eighty' WHERE a=17800; UPDATE t2 SET c='twenty thousand nine hundred eighty-nine' WHERE a=17801; UPDATE t2 SET c='eighty-three thousand two hundred fifty' WHERE a=17802; UPDATE t2 SET c='thirty-two thousand eight hundred fifty-five' WHERE a=17803; UPDATE t2 SET c='forty-eight thousand six hundred forty-three' WHERE a=17804; UPDATE t2 SET c='eighty-four thousand seven hundred nineteen' WHERE a=17805; UPDATE t2 SET c='five thousand four hundred fifteen' WHERE a=17806; UPDATE t2 SET c='ninety-four thousand one hundred fourteen' WHERE a=17807; UPDATE t2 SET c='fifty-three thousand four hundred forty-three' WHERE a=17808; UPDATE t2 SET c='nineteen thousand three hundred twenty' WHERE a=17809; UPDATE t2 SET c='twenty-two thousand three hundred thirty-five' WHERE a=17810; UPDATE t2 SET c='fifty-five thousand sixteen' WHERE a=17811; UPDATE t2 SET c='one thousand four hundred fifty-two' WHERE a=17812; UPDATE t2 SET c='seventy-three thousand four hundred seventy-two' WHERE a=17813; UPDATE t2 SET c='thirty-seven thousand four hundred sixty-seven' WHERE a=17814; UPDATE t2 SET c='twenty-eight thousand six hundred twenty-seven' WHERE a=17815; UPDATE t2 SET c='eight thousand three hundred twenty-six' WHERE a=17816; UPDATE t2 SET c='ninety-one thousand six hundred twenty-one' WHERE a=17817; UPDATE t2 SET c='fifty-four thousand two hundred eighty-nine' WHERE a=17818; UPDATE t2 SET c='sixty-seven thousand seven hundred sixty-five' WHERE a=17819; UPDATE t2 SET c='thirty-five thousand two hundred five' WHERE a=17820; UPDATE t2 SET c='sixty-three thousand eight hundred' WHERE a=17821; UPDATE t2 SET c='nine hundred thirty-three' WHERE a=17822; UPDATE t2 SET c='thirty-four thousand one hundred eighty-three' WHERE a=17823; UPDATE t2 SET c='eight thousand three hundred ninety-eight' WHERE a=17824; UPDATE t2 SET c='forty-nine thousand nine hundred fifty-two' WHERE a=17825; UPDATE t2 SET c='thirty-one thousand six hundred thirty-five' WHERE a=17826; UPDATE t2 SET c='fifty-nine thousand three hundred forty-two' WHERE a=17827; UPDATE t2 SET c='sixty thousand forty-seven' WHERE a=17828; UPDATE t2 SET c='eight thousand one hundred fifty-five' WHERE a=17829; UPDATE t2 SET c='nineteen thousand three hundred eighty-seven' WHERE a=17830; UPDATE t2 SET c='thirty-seven thousand eighty-seven' WHERE a=17831; UPDATE t2 SET c='eighty-four thousand three hundred eighty-five' WHERE a=17832; UPDATE t2 SET c='sixty-nine thousand thirty-nine' WHERE a=17833; UPDATE t2 SET c='seventy-eight thousand five hundred twelve' WHERE a=17834; UPDATE t2 SET c='eighteen thousand eighty' WHERE a=17835; UPDATE t2 SET c='forty-three thousand nine' WHERE a=17836; UPDATE t2 SET c='three thousand nine hundred thirty-nine' WHERE a=17837; UPDATE t2 SET c='sixty-nine thousand six hundred eighty-two' WHERE a=17838; UPDATE t2 SET c='thirty-nine thousand two hundred sixty-five' WHERE a=17839; UPDATE t2 SET c='fifty-seven thousand seven hundred eighty-three' WHERE a=17840; UPDATE t2 SET c='thirty-four thousand nine hundred thirty-five' WHERE a=17841; UPDATE t2 SET c='eighteen thousand five hundred twenty-four' WHERE a=17842; UPDATE t2 SET c='sixty-eight thousand sixty-nine' WHERE a=17843; UPDATE t2 SET c='sixty-six thousand four hundred forty-four' WHERE a=17844; UPDATE t2 SET c='ninety-five thousand nine hundred five' WHERE a=17845; UPDATE t2 SET c='eighty-three thousand five hundred sixty-one' WHERE a=17846; UPDATE t2 SET c='ninety-two thousand two hundred fifty-five' WHERE a=17847; UPDATE t2 SET c='twenty-three thousand eight hundred eighty-two' WHERE a=17848; UPDATE t2 SET c='forty-eight thousand four hundred eighty-seven' WHERE a=17849; UPDATE t2 SET c='thirty-three thousand three hundred five' WHERE a=17850; UPDATE t2 SET c='thirty-six thousand one hundred fifty-four' WHERE a=17851; UPDATE t2 SET c='forty-three thousand two hundred six' WHERE a=17852; UPDATE t2 SET c='twenty-six thousand seven hundred seven' WHERE a=17853; UPDATE t2 SET c='twenty-nine thousand nine hundred fourteen' WHERE a=17854; UPDATE t2 SET c='ninety thousand nine hundred thirty-seven' WHERE a=17855; UPDATE t2 SET c='fifty-three thousand seventy-four' WHERE a=17856; UPDATE t2 SET c='thirteen thousand two hundred forty-two' WHERE a=17857; UPDATE t2 SET c='seventy-nine thousand nine hundred twelve' WHERE a=17858; UPDATE t2 SET c='ninety-three thousand eight hundred sixty-three' WHERE a=17859; UPDATE t2 SET c='eighteen thousand one hundred seventy-six' WHERE a=17860; UPDATE t2 SET c='ninety-seven thousand nine hundred sixty' WHERE a=17861; UPDATE t2 SET c='twenty-eight thousand eight hundred thirty-three' WHERE a=17862; UPDATE t2 SET c='thirty-four thousand eighteen' WHERE a=17863; UPDATE t2 SET c='twenty-eight thousand three hundred sixty-nine' WHERE a=17864; UPDATE t2 SET c='twenty-four thousand four hundred fifty-four' WHERE a=17865; UPDATE t2 SET c='twenty-nine thousand nine hundred eighty-one' WHERE a=17866; UPDATE t2 SET c='fifty-seven thousand six hundred eighty-three' WHERE a=17867; UPDATE t2 SET c='forty-eight thousand one hundred seventy-seven' WHERE a=17868; UPDATE t2 SET c='seventy-two thousand one hundred fifteen' WHERE a=17869; UPDATE t2 SET c='seventy-three thousand eight hundred nineteen' WHERE a=17870; UPDATE t2 SET c='twenty-five thousand three hundred' WHERE a=17871; UPDATE t2 SET c='sixty-four thousand thirty-four' WHERE a=17872; UPDATE t2 SET c='forty-seven thousand two hundred eighteen' WHERE a=17873; UPDATE t2 SET c='eighty-one thousand two hundred ninety-seven' WHERE a=17874; UPDATE t2 SET c='thirty thousand five hundred sixty-seven' WHERE a=17875; UPDATE t2 SET c='ninety-nine thousand eight hundred eleven' WHERE a=17876; UPDATE t2 SET c='forty-five thousand two hundred eleven' WHERE a=17877; UPDATE t2 SET c='forty-one thousand three hundred ninety-eight' WHERE a=17878; UPDATE t2 SET c='eighty-eight thousand six hundred twenty-seven' WHERE a=17879; UPDATE t2 SET c='sixty-two thousand three hundred ninety-nine' WHERE a=17880; UPDATE t2 SET c='ninety-four thousand five hundred forty-five' WHERE a=17881; UPDATE t2 SET c='twelve thousand one hundred twenty-three' WHERE a=17882; UPDATE t2 SET c='twenty-seven thousand five hundred sixty-four' WHERE a=17883; UPDATE t2 SET c='thirty-four thousand seventy-two' WHERE a=17884; UPDATE t2 SET c='seventy-four thousand three hundred fifty-six' WHERE a=17885; UPDATE t2 SET c='eighty-six thousand two hundred fifty-four' WHERE a=17886; UPDATE t2 SET c='sixty-one thousand forty' WHERE a=17887; UPDATE t2 SET c='seventy-two thousand three hundred thirty-one' WHERE a=17888; UPDATE t2 SET c='forty-four thousand two hundred seventy-nine' WHERE a=17889; UPDATE t2 SET c='seventy-four thousand four hundred six' WHERE a=17890; UPDATE t2 SET c='sixty-four thousand eight hundred eighty-eight' WHERE a=17891; UPDATE t2 SET c='sixty-seven thousand two hundred thirty-two' WHERE a=17892; UPDATE t2 SET c='twenty-seven thousand four hundred twenty-four' WHERE a=17893; UPDATE t2 SET c='forty-five thousand two hundred seventy-two' WHERE a=17894; UPDATE t2 SET c='eighty-four thousand eight hundred twenty-one' WHERE a=17895; UPDATE t2 SET c='seventy thousand two hundred six' WHERE a=17896; UPDATE t2 SET c='thirty-four thousand six hundred ninety' WHERE a=17897; UPDATE t2 SET c='fifty-three thousand three hundred three' WHERE a=17898; UPDATE t2 SET c='fifty-five thousand nine hundred thirty-one' WHERE a=17899; UPDATE t2 SET c='twenty-two thousand four hundred seventy-one' WHERE a=17900; UPDATE t2 SET c='forty-three thousand one hundred ninety-five' WHERE a=17901; UPDATE t2 SET c='twelve thousand two hundred sixty-five' WHERE a=17902; UPDATE t2 SET c='twenty-five thousand seven hundred twenty' WHERE a=17903; UPDATE t2 SET c='sixty-three thousand three hundred thirty-eight' WHERE a=17904; UPDATE t2 SET c='ninety-two thousand four hundred twenty' WHERE a=17905; UPDATE t2 SET c='fifty thousand four hundred twenty-six' WHERE a=17906; UPDATE t2 SET c='thirty-nine thousand eight hundred forty-four' WHERE a=17907; UPDATE t2 SET c='thirty-six thousand three hundred seventy-six' WHERE a=17908; UPDATE t2 SET c='sixty-five thousand forty-one' WHERE a=17909; UPDATE t2 SET c='eleven thousand eighteen' WHERE a=17910; UPDATE t2 SET c='twenty-five thousand eight hundred eighty-one' WHERE a=17911; UPDATE t2 SET c='ninety-eight thousand one hundred forty-four' WHERE a=17912; UPDATE t2 SET c='seventy-two thousand five hundred fifty-four' WHERE a=17913; UPDATE t2 SET c='twelve thousand one hundred sixty-two' WHERE a=17914; UPDATE t2 SET c='thirty-eight thousand nine hundred seventy-one' WHERE a=17915; UPDATE t2 SET c='twenty-five thousand five hundred eighteen' WHERE a=17916; UPDATE t2 SET c='fifty-nine thousand four hundred seventy-four' WHERE a=17917; UPDATE t2 SET c='twenty thousand two hundred thirty-nine' WHERE a=17918; UPDATE t2 SET c='seventy-two thousand sixteen' WHERE a=17919; UPDATE t2 SET c='seven thousand seven hundred eighty-two' WHERE a=17920; UPDATE t2 SET c='forty-six thousand one hundred seventy-one' WHERE a=17921; UPDATE t2 SET c='forty-six thousand five hundred six' WHERE a=17922; UPDATE t2 SET c='thirty thousand sixteen' WHERE a=17923; UPDATE t2 SET c='forty-two thousand ninety' WHERE a=17924; UPDATE t2 SET c='sixty thousand six hundred ninety-six' WHERE a=17925; UPDATE t2 SET c='fifty-four thousand one' WHERE a=17926; UPDATE t2 SET c='thirty-five thousand two hundred sixty-one' WHERE a=17927; UPDATE t2 SET c='sixteen thousand three hundred twenty' WHERE a=17928; UPDATE t2 SET c='ninety-eight thousand four hundred twenty-one' WHERE a=17929; UPDATE t2 SET c='sixteen thousand six hundred ninety-two' WHERE a=17930; UPDATE t2 SET c='fifty-four thousand five hundred ninety-eight' WHERE a=17931; UPDATE t2 SET c='thirty-three thousand two hundred twenty-seven' WHERE a=17932; UPDATE t2 SET c='twenty-eight thousand three' WHERE a=17933; UPDATE t2 SET c='forty-eight thousand seven hundred twenty-seven' WHERE a=17934; UPDATE t2 SET c='seventy-five thousand one hundred seventy-six' WHERE a=17935; UPDATE t2 SET c='fifty-two thousand one hundred forty-nine' WHERE a=17936; UPDATE t2 SET c='thirty-five thousand nine hundred eleven' WHERE a=17937; UPDATE t2 SET c='seven thousand two hundred seventeen' WHERE a=17938; UPDATE t2 SET c='ninety-five thousand four hundred forty-nine' WHERE a=17939; UPDATE t2 SET c='six thousand eighty-six' WHERE a=17940; UPDATE t2 SET c='eighty-three thousand one hundred thirty' WHERE a=17941; UPDATE t2 SET c='nineteen thousand thirty-six' WHERE a=17942; UPDATE t2 SET c='fifty-eight thousand nine hundred seventy-seven' WHERE a=17943; UPDATE t2 SET c='eighteen thousand three hundred sixty-four' WHERE a=17944; UPDATE t2 SET c='seventy-one thousand six hundred four' WHERE a=17945; UPDATE t2 SET c='eighty-five thousand twenty-one' WHERE a=17946; UPDATE t2 SET c='fifteen thousand eight hundred eighty' WHERE a=17947; UPDATE t2 SET c='seventy-three thousand six hundred eighty-eight' WHERE a=17948; UPDATE t2 SET c='seventy-five thousand one hundred fifty-nine' WHERE a=17949; UPDATE t2 SET c='nine thousand ninety-eight' WHERE a=17950; UPDATE t2 SET c='eighty-six thousand six hundred forty-six' WHERE a=17951; UPDATE t2 SET c='forty-three thousand four hundred fifty-one' WHERE a=17952; UPDATE t2 SET c='eighty-six thousand fourteen' WHERE a=17953; UPDATE t2 SET c='sixty-one thousand three hundred six' WHERE a=17954; UPDATE t2 SET c='eighty-two thousand six hundred eight' WHERE a=17955; UPDATE t2 SET c='eighty-two thousand three hundred' WHERE a=17956; UPDATE t2 SET c='sixty-three thousand three hundred thirty-three' WHERE a=17957; UPDATE t2 SET c='fifty-one thousand four hundred ninety-six' WHERE a=17958; UPDATE t2 SET c='eleven thousand fifty-five' WHERE a=17959; UPDATE t2 SET c='fifty-eight thousand two hundred forty-four' WHERE a=17960; UPDATE t2 SET c='twenty-two thousand twenty-six' WHERE a=17961; UPDATE t2 SET c='twenty-one thousand five hundred seven' WHERE a=17962; UPDATE t2 SET c='twenty-four thousand two hundred twenty-five' WHERE a=17963; UPDATE t2 SET c='nineteen thousand seven hundred eighty-five' WHERE a=17964; UPDATE t2 SET c='forty-five thousand three hundred twenty-seven' WHERE a=17965; UPDATE t2 SET c='ninety-seven thousand two hundred eighty-four' WHERE a=17966; UPDATE t2 SET c='sixty thousand six hundred forty-four' WHERE a=17967; UPDATE t2 SET c='seventy-one thousand twelve' WHERE a=17968; UPDATE t2 SET c='fifty-four thousand two hundred forty-three' WHERE a=17969; UPDATE t2 SET c='seventeen thousand fifty' WHERE a=17970; UPDATE t2 SET c='seventy-seven thousand eight hundred seven' WHERE a=17971; UPDATE t2 SET c='sixty-nine thousand four hundred fifteen' WHERE a=17972; UPDATE t2 SET c='forty-six thousand nine hundred eighty-two' WHERE a=17973; UPDATE t2 SET c='one thousand three hundred forty-one' WHERE a=17974; UPDATE t2 SET c='sixty thousand seven hundred twenty-six' WHERE a=17975; UPDATE t2 SET c='twenty-two thousand one hundred eighteen' WHERE a=17976; UPDATE t2 SET c='sixteen thousand three hundred twenty-five' WHERE a=17977; UPDATE t2 SET c='seventy-two thousand four hundred five' WHERE a=17978; UPDATE t2 SET c='twenty-three thousand nine hundred eighty' WHERE a=17979; UPDATE t2 SET c='twenty-five thousand four hundred eighty-three' WHERE a=17980; UPDATE t2 SET c='two hundred twelve' WHERE a=17981; UPDATE t2 SET c='seven thousand sixty-four' WHERE a=17982; UPDATE t2 SET c='seventy-four thousand nine hundred fourteen' WHERE a=17983; UPDATE t2 SET c='thirty-eight thousand one hundred fifty-seven' WHERE a=17984; UPDATE t2 SET c='thirty thousand nine hundred forty-five' WHERE a=17985; UPDATE t2 SET c='eighty-two thousand one hundred sixty-three' WHERE a=17986; UPDATE t2 SET c='eight thousand seven hundred ninety-five' WHERE a=17987; UPDATE t2 SET c='eighty thousand nine hundred eight' WHERE a=17988; UPDATE t2 SET c='seventy-five thousand five hundred seventy-seven' WHERE a=17989; UPDATE t2 SET c='thirty-nine thousand seven hundred sixty-eight' WHERE a=17990; UPDATE t2 SET c='thirty-six thousand nineteen' WHERE a=17991; UPDATE t2 SET c='forty-three thousand one hundred seventy-nine' WHERE a=17992; UPDATE t2 SET c='ninety thousand six hundred seven' WHERE a=17993; UPDATE t2 SET c='nine thousand five hundred eighty-five' WHERE a=17994; UPDATE t2 SET c='thirty-nine thousand four hundred thirty-eight' WHERE a=17995; UPDATE t2 SET c='sixteen thousand one hundred thirteen' WHERE a=17996; UPDATE t2 SET c='eighty-eight thousand four hundred ninety-one' WHERE a=17997; UPDATE t2 SET c='fifty-two thousand six hundred sixty-eight' WHERE a=17998; UPDATE t2 SET c='fifty-five thousand five hundred ninety-two' WHERE a=17999; UPDATE t2 SET c='one hundred eighty-nine' WHERE a=18000; UPDATE t2 SET c='forty-eight thousand three hundred forty-one' WHERE a=18001; UPDATE t2 SET c='sixty-six thousand one hundred eighty-nine' WHERE a=18002; UPDATE t2 SET c='thirty thousand five hundred thirty-three' WHERE a=18003; UPDATE t2 SET c='seventy-five thousand three hundred seventy-three' WHERE a=18004; UPDATE t2 SET c='thirty-eight thousand seven hundred nineteen' WHERE a=18005; UPDATE t2 SET c='ninety-five thousand seven hundred six' WHERE a=18006; UPDATE t2 SET c='sixty-two thousand four hundred fifty-one' WHERE a=18007; UPDATE t2 SET c='sixty-three thousand eight hundred ninety-nine' WHERE a=18008; UPDATE t2 SET c='fifty-four thousand four hundred seventy' WHERE a=18009; UPDATE t2 SET c='forty-nine thousand seven hundred ninety-seven' WHERE a=18010; UPDATE t2 SET c='ninety-nine thousand eight hundred seventy-one' WHERE a=18011; UPDATE t2 SET c='sixty-six thousand three hundred fifty' WHERE a=18012; UPDATE t2 SET c='twenty-six thousand nine hundred eighty-eight' WHERE a=18013; UPDATE t2 SET c='fifty-eight thousand fifty-one' WHERE a=18014; UPDATE t2 SET c='eleven thousand three hundred sixty-three' WHERE a=18015; UPDATE t2 SET c='forty thousand two hundred thirty-six' WHERE a=18016; UPDATE t2 SET c='fifteen thousand thirty-one' WHERE a=18017; UPDATE t2 SET c='fifty-one thousand three hundred seventy-nine' WHERE a=18018; UPDATE t2 SET c='eighty-six thousand three hundred forty-three' WHERE a=18019; UPDATE t2 SET c='thirty-one thousand twenty-nine' WHERE a=18020; UPDATE t2 SET c='thirteen thousand eight hundred seventy-three' WHERE a=18021; UPDATE t2 SET c='forty-six thousand two hundred forty-four' WHERE a=18022; UPDATE t2 SET c='twenty-six thousand nine hundred forty-five' WHERE a=18023; UPDATE t2 SET c='thirteen thousand seven hundred five' WHERE a=18024; UPDATE t2 SET c='twenty-eight thousand two hundred ninety-eight' WHERE a=18025; UPDATE t2 SET c='seventy-two thousand six hundred ninety-nine' WHERE a=18026; UPDATE t2 SET c='twenty-eight thousand five hundred four' WHERE a=18027; UPDATE t2 SET c='nineteen thousand sixty-seven' WHERE a=18028; UPDATE t2 SET c='seventy-five thousand eight hundred seventy-nine' WHERE a=18029; UPDATE t2 SET c='thirty-six thousand two hundred seventy-five' WHERE a=18030; UPDATE t2 SET c='eighty thousand three hundred thirty-four' WHERE a=18031; UPDATE t2 SET c='three thousand two hundred eighty-nine' WHERE a=18032; UPDATE t2 SET c='sixty-nine thousand eight hundred forty-six' WHERE a=18033; UPDATE t2 SET c='twenty-nine thousand nine hundred seventy-seven' WHERE a=18034; UPDATE t2 SET c='thirty thousand seven hundred six' WHERE a=18035; UPDATE t2 SET c='forty-six thousand nine hundred thirty-one' WHERE a=18036; UPDATE t2 SET c='seventy-two thousand one hundred fifty-seven' WHERE a=18037; UPDATE t2 SET c='seventeen thousand three hundred eight' WHERE a=18038; UPDATE t2 SET c='fifty-six thousand ninety-three' WHERE a=18039; UPDATE t2 SET c='ninety-three thousand fifty-five' WHERE a=18040; UPDATE t2 SET c='eighty-five thousand three hundred sixty-three' WHERE a=18041; UPDATE t2 SET c='seven thousand three hundred seventy-eight' WHERE a=18042; UPDATE t2 SET c='sixty thousand five hundred thirty-eight' WHERE a=18043; UPDATE t2 SET c='fifty thousand four hundred forty' WHERE a=18044; UPDATE t2 SET c='twenty-four thousand five hundred eighty-eight' WHERE a=18045; UPDATE t2 SET c='ninety-one thousand four hundred twenty-four' WHERE a=18046; UPDATE t2 SET c='sixty-eight thousand two hundred sixty-five' WHERE a=18047; UPDATE t2 SET c='seven thousand eight hundred eighty-seven' WHERE a=18048; UPDATE t2 SET c='fifty-eight thousand seventy-eight' WHERE a=18049; UPDATE t2 SET c='sixty-nine thousand six hundred sixty-five' WHERE a=18050; UPDATE t2 SET c='ninety-nine thousand one hundred ninety-nine' WHERE a=18051; UPDATE t2 SET c='eighty thousand three hundred thirty-two' WHERE a=18052; UPDATE t2 SET c='twelve thousand one hundred fifty-four' WHERE a=18053; UPDATE t2 SET c='fifty-two thousand four hundred forty-nine' WHERE a=18054; UPDATE t2 SET c='forty-six thousand eight hundred thirty-six' WHERE a=18055; UPDATE t2 SET c='twenty-seven thousand six hundred nine' WHERE a=18056; UPDATE t2 SET c='fifteen thousand nine hundred thirty-three' WHERE a=18057; UPDATE t2 SET c='fifty-six thousand one hundred seventy-two' WHERE a=18058; UPDATE t2 SET c='nine thousand eight hundred eighteen' WHERE a=18059; UPDATE t2 SET c='seventy thousand two hundred ninety-two' WHERE a=18060; UPDATE t2 SET c='fifty-eight thousand five hundred seventy-five' WHERE a=18061; UPDATE t2 SET c='seventy-four thousand two hundred sixteen' WHERE a=18062; UPDATE t2 SET c='eighty-one thousand two hundred seventy-one' WHERE a=18063; UPDATE t2 SET c='two thousand thirty-one' WHERE a=18064; UPDATE t2 SET c='forty-seven thousand six hundred nine' WHERE a=18065; UPDATE t2 SET c='seventy-eight thousand nine hundred thirty-seven' WHERE a=18066; UPDATE t2 SET c='sixty-five thousand five hundred seventy-six' WHERE a=18067; UPDATE t2 SET c='ninety-two thousand one hundred fifty' WHERE a=18068; UPDATE t2 SET c='eighteen thousand eight hundred sixty' WHERE a=18069; UPDATE t2 SET c='fifty-eight thousand five hundred ninety-seven' WHERE a=18070; UPDATE t2 SET c='thirty-seven thousand three hundred fifty-five' WHERE a=18071; UPDATE t2 SET c='eighteen thousand four hundred forty-two' WHERE a=18072; UPDATE t2 SET c='fifty-seven thousand six hundred thirty-six' WHERE a=18073; UPDATE t2 SET c='twenty-eight thousand one hundred sixty-one' WHERE a=18074; UPDATE t2 SET c='forty-four thousand nine hundred ninety-five' WHERE a=18075; UPDATE t2 SET c='ninety-two thousand six hundred forty-three' WHERE a=18076; UPDATE t2 SET c='thirty-three thousand seven hundred seventy' WHERE a=18077; UPDATE t2 SET c='seventy-three thousand fourteen' WHERE a=18078; UPDATE t2 SET c='one thousand forty-two' WHERE a=18079; UPDATE t2 SET c='twenty-one thousand four hundred thirty-seven' WHERE a=18080; UPDATE t2 SET c='sixty-six thousand six hundred five' WHERE a=18081; UPDATE t2 SET c='eighty-nine thousand seven hundred twenty-six' WHERE a=18082; UPDATE t2 SET c='one thousand six hundred twenty-seven' WHERE a=18083; UPDATE t2 SET c='sixty-one thousand eighty-four' WHERE a=18084; UPDATE t2 SET c='sixty-one thousand four hundred ninety-seven' WHERE a=18085; UPDATE t2 SET c='fifty-eight thousand four hundred fifty-six' WHERE a=18086; UPDATE t2 SET c='twenty-seven thousand five hundred seventeen' WHERE a=18087; UPDATE t2 SET c='twenty-one thousand four hundred sixty-seven' WHERE a=18088; UPDATE t2 SET c='twenty-eight thousand one hundred' WHERE a=18089; UPDATE t2 SET c='thirty-one thousand three hundred twenty-six' WHERE a=18090; UPDATE t2 SET c='six thousand five hundred forty-three' WHERE a=18091; UPDATE t2 SET c='twenty-eight thousand four' WHERE a=18092; UPDATE t2 SET c='ninety-four thousand five hundred nine' WHERE a=18093; UPDATE t2 SET c='seventy-six thousand three hundred forty-seven' WHERE a=18094; UPDATE t2 SET c='sixty-six thousand seven hundred twenty-two' WHERE a=18095; UPDATE t2 SET c='forty-two thousand five hundred ninety' WHERE a=18096; UPDATE t2 SET c='thirty-eight thousand seven hundred eighteen' WHERE a=18097; UPDATE t2 SET c='sixty-eight thousand four hundred nine' WHERE a=18098; UPDATE t2 SET c='eighty-three thousand nine hundred twenty-three' WHERE a=18099; UPDATE t2 SET c='twenty-two thousand two hundred eighty-eight' WHERE a=18100; UPDATE t2 SET c='sixty-eight thousand one hundred fifty-three' WHERE a=18101; UPDATE t2 SET c='eighty-seven thousand two hundred' WHERE a=18102; UPDATE t2 SET c='seventy-eight thousand fifty-three' WHERE a=18103; UPDATE t2 SET c='eighty-five thousand three hundred twenty-four' WHERE a=18104; UPDATE t2 SET c='thirty-two thousand seven hundred forty-five' WHERE a=18105; UPDATE t2 SET c='sixty-two thousand eight hundred three' WHERE a=18106; UPDATE t2 SET c='thirty-six thousand two hundred fifteen' WHERE a=18107; UPDATE t2 SET c='sixty thousand eight hundred seventeen' WHERE a=18108; UPDATE t2 SET c='eighteen thousand two hundred fifty-one' WHERE a=18109; UPDATE t2 SET c='ninety-two thousand four hundred fifteen' WHERE a=18110; UPDATE t2 SET c='sixty-four thousand twenty-four' WHERE a=18111; UPDATE t2 SET c='eighty-one thousand nine' WHERE a=18112; UPDATE t2 SET c='forty thousand nine hundred five' WHERE a=18113; UPDATE t2 SET c='fifty-two thousand nine hundred seventy-five' WHERE a=18114; UPDATE t2 SET c='sixty-six thousand seventy' WHERE a=18115; UPDATE t2 SET c='eighty-seven thousand twenty' WHERE a=18116; UPDATE t2 SET c='fourteen thousand ninety-five' WHERE a=18117; UPDATE t2 SET c='seventy-seven thousand six hundred sixty-seven' WHERE a=18118; UPDATE t2 SET c='eighty-one thousand seven hundred eighty-three' WHERE a=18119; UPDATE t2 SET c='eighty-nine thousand two hundred sixty-two' WHERE a=18120; UPDATE t2 SET c='four thousand five hundred seventy-four' WHERE a=18121; UPDATE t2 SET c='four thousand four hundred sixty-one' WHERE a=18122; UPDATE t2 SET c='eighty-three thousand two hundred eighteen' WHERE a=18123; UPDATE t2 SET c='nine thousand five hundred eighty-seven' WHERE a=18124; UPDATE t2 SET c='eight thousand eight hundred sixteen' WHERE a=18125; UPDATE t2 SET c='nine thousand two hundred five' WHERE a=18126; UPDATE t2 SET c='sixty-four thousand two hundred thirty-four' WHERE a=18127; UPDATE t2 SET c='thirty thousand seven hundred six' WHERE a=18128; UPDATE t2 SET c='seven thousand five hundred fifty-four' WHERE a=18129; UPDATE t2 SET c='four thousand two hundred' WHERE a=18130; UPDATE t2 SET c='fifty-four thousand four hundred ninety-nine' WHERE a=18131; UPDATE t2 SET c='eighty-two thousand four hundred fifty-seven' WHERE a=18132; UPDATE t2 SET c='nine thousand four hundred fifty-five' WHERE a=18133; UPDATE t2 SET c='eighty-five thousand nine hundred thirty' WHERE a=18134; UPDATE t2 SET c='thirty-four thousand four hundred thirty-eight' WHERE a=18135; UPDATE t2 SET c='fourteen thousand six hundred fifteen' WHERE a=18136; UPDATE t2 SET c='eighty-four thousand three hundred three' WHERE a=18137; UPDATE t2 SET c='twenty-eight thousand four hundred seven' WHERE a=18138; UPDATE t2 SET c='eighteen thousand five hundred forty-nine' WHERE a=18139; UPDATE t2 SET c='eighteen thousand nine hundred sixty-six' WHERE a=18140; UPDATE t2 SET c='sixty-five thousand four hundred thirty-eight' WHERE a=18141; UPDATE t2 SET c='eleven thousand twenty-four' WHERE a=18142; UPDATE t2 SET c='ninety-nine thousand seven hundred forty-six' WHERE a=18143; UPDATE t2 SET c='sixty-seven thousand one hundred six' WHERE a=18144; UPDATE t2 SET c='five thousand nine' WHERE a=18145; UPDATE t2 SET c='fifty-eight thousand seven hundred' WHERE a=18146; UPDATE t2 SET c='eighty-two thousand seven hundred thirty-eight' WHERE a=18147; UPDATE t2 SET c='thirteen thousand eight hundred forty-seven' WHERE a=18148; UPDATE t2 SET c='ten thousand eight hundred ninety-seven' WHERE a=18149; UPDATE t2 SET c='seventy-one thousand forty-four' WHERE a=18150; UPDATE t2 SET c='eighty-nine thousand eight hundred eighteen' WHERE a=18151; UPDATE t2 SET c='eighty-five thousand eight hundred fifty-four' WHERE a=18152; UPDATE t2 SET c='forty-two thousand one hundred ninety-nine' WHERE a=18153; UPDATE t2 SET c='forty-one thousand five hundred fifty-eight' WHERE a=18154; UPDATE t2 SET c='seventy-one thousand six hundred three' WHERE a=18155; UPDATE t2 SET c='seventy-eight thousand three hundred fifty-eight' WHERE a=18156; UPDATE t2 SET c='seventy-nine thousand nine hundred sixty' WHERE a=18157; UPDATE t2 SET c='fifty-four thousand four hundred seventy-one' WHERE a=18158; UPDATE t2 SET c='fifty-four thousand three hundred forty-seven' WHERE a=18159; UPDATE t2 SET c='fifty-four thousand four hundred twenty-one' WHERE a=18160; UPDATE t2 SET c='nineteen thousand nine hundred forty-nine' WHERE a=18161; UPDATE t2 SET c='sixty-four thousand seven hundred eighty-two' WHERE a=18162; UPDATE t2 SET c='fifty thousand nine hundred sixty-seven' WHERE a=18163; UPDATE t2 SET c='eleven thousand seven hundred forty-eight' WHERE a=18164; UPDATE t2 SET c='seventy-one thousand forty' WHERE a=18165; UPDATE t2 SET c='sixty-seven thousand six hundred eighty-three' WHERE a=18166; UPDATE t2 SET c='thirty thousand seven hundred two' WHERE a=18167; UPDATE t2 SET c='sixty-six thousand one hundred seventy-seven' WHERE a=18168; UPDATE t2 SET c='thirty-nine thousand six hundred thirty-three' WHERE a=18169; UPDATE t2 SET c='seventeen thousand two hundred sixty-four' WHERE a=18170; UPDATE t2 SET c='forty-seven thousand five hundred six' WHERE a=18171; UPDATE t2 SET c='sixty-nine thousand one hundred thirty' WHERE a=18172; UPDATE t2 SET c='sixty-six thousand three hundred forty-nine' WHERE a=18173; UPDATE t2 SET c='seventeen thousand six hundred sixty-two' WHERE a=18174; UPDATE t2 SET c='sixty-eight thousand one hundred eighty-two' WHERE a=18175; UPDATE t2 SET c='fourteen thousand seven hundred nineteen' WHERE a=18176; UPDATE t2 SET c='thirty-five thousand five hundred twenty-four' WHERE a=18177; UPDATE t2 SET c='sixty-five thousand one hundred three' WHERE a=18178; UPDATE t2 SET c='thirteen thousand eight hundred seventy-five' WHERE a=18179; UPDATE t2 SET c='eleven thousand nine hundred ten' WHERE a=18180; UPDATE t2 SET c='twenty-six thousand nine hundred forty-seven' WHERE a=18181; UPDATE t2 SET c='thirteen thousand six hundred seventy-nine' WHERE a=18182; UPDATE t2 SET c='ninety thousand eight hundred fifty-seven' WHERE a=18183; UPDATE t2 SET c='forty-seven thousand five hundred thirty-seven' WHERE a=18184; UPDATE t2 SET c='seventeen thousand forty-three' WHERE a=18185; UPDATE t2 SET c='ninety-nine thousand six hundred twenty-seven' WHERE a=18186; UPDATE t2 SET c='fifty thousand seven hundred twenty-two' WHERE a=18187; UPDATE t2 SET c='thirty-three thousand five hundred sixty-six' WHERE a=18188; UPDATE t2 SET c='seventy-one thousand one hundred nineteen' WHERE a=18189; UPDATE t2 SET c='eighty-eight thousand nine hundred ninety-six' WHERE a=18190; UPDATE t2 SET c='eighty-five thousand' WHERE a=18191; UPDATE t2 SET c='seventy thousand three hundred seventy-five' WHERE a=18192; UPDATE t2 SET c='sixty-nine thousand forty-six' WHERE a=18193; UPDATE t2 SET c='thirty-four thousand seven hundred six' WHERE a=18194; UPDATE t2 SET c='eighteen thousand two hundred thirty-eight' WHERE a=18195; UPDATE t2 SET c='thirty thousand four hundred fifty-three' WHERE a=18196; UPDATE t2 SET c='one thousand seven hundred forty-six' WHERE a=18197; UPDATE t2 SET c='eleven thousand four' WHERE a=18198; UPDATE t2 SET c='twenty-eight thousand eight hundred two' WHERE a=18199; UPDATE t2 SET c='seventy-eight thousand five hundred thirty-two' WHERE a=18200; UPDATE t2 SET c='fifty-nine thousand three hundred seventy-one' WHERE a=18201; UPDATE t2 SET c='thirty-five thousand eight hundred sixty' WHERE a=18202; UPDATE t2 SET c='fifty-seven thousand nine hundred thirteen' WHERE a=18203; UPDATE t2 SET c='sixty-six thousand eight hundred seventy-eight' WHERE a=18204; UPDATE t2 SET c='forty-six thousand seven hundred nineteen' WHERE a=18205; UPDATE t2 SET c='sixty-four thousand five hundred eighty-nine' WHERE a=18206; UPDATE t2 SET c='eighty-nine thousand two hundred fifty-four' WHERE a=18207; UPDATE t2 SET c='forty-two thousand one hundred sixty-six' WHERE a=18208; UPDATE t2 SET c='seventy-six thousand nine hundred twenty-seven' WHERE a=18209; UPDATE t2 SET c='one thousand six hundred sixty-seven' WHERE a=18210; UPDATE t2 SET c='nine hundred ninety-two' WHERE a=18211; UPDATE t2 SET c='thirty-two thousand five hundred thirty' WHERE a=18212; UPDATE t2 SET c='thirty thousand three hundred' WHERE a=18213; UPDATE t2 SET c='seventy-nine thousand six hundred forty-eight' WHERE a=18214; UPDATE t2 SET c='ninety-four thousand two hundred forty-nine' WHERE a=18215; UPDATE t2 SET c='sixty-three thousand two hundred thirty-three' WHERE a=18216; UPDATE t2 SET c='sixty-six thousand eight hundred eighty-three' WHERE a=18217; UPDATE t2 SET c='eighty-six thousand five hundred fifty-three' WHERE a=18218; UPDATE t2 SET c='sixteen thousand seven hundred fifty-six' WHERE a=18219; UPDATE t2 SET c='seventy-eight thousand one hundred eighty-two' WHERE a=18220; UPDATE t2 SET c='seventy-six thousand sixty-four' WHERE a=18221; UPDATE t2 SET c='twenty thousand two hundred sixty-one' WHERE a=18222; UPDATE t2 SET c='five thousand five hundred ninety-eight' WHERE a=18223; UPDATE t2 SET c='seventy-six thousand three hundred ninety-one' WHERE a=18224; UPDATE t2 SET c='ninety-eight thousand four hundred thirty' WHERE a=18225; UPDATE t2 SET c='sixty-four thousand three hundred thirty-three' WHERE a=18226; UPDATE t2 SET c='seven thousand seven hundred ninety-one' WHERE a=18227; UPDATE t2 SET c='eighty-three thousand nine hundred ninety' WHERE a=18228; UPDATE t2 SET c='seventy-five thousand nine hundred sixty-three' WHERE a=18229; UPDATE t2 SET c='sixty-two thousand five hundred sixty-five' WHERE a=18230; UPDATE t2 SET c='twelve thousand one' WHERE a=18231; UPDATE t2 SET c='fifty-two thousand one hundred forty-seven' WHERE a=18232; UPDATE t2 SET c='ninety thousand two hundred twenty-two' WHERE a=18233; UPDATE t2 SET c='seventy-seven thousand six hundred fifty-two' WHERE a=18234; UPDATE t2 SET c='seventy-two thousand three hundred sixty-five' WHERE a=18235; UPDATE t2 SET c='thirty-four thousand two hundred fourteen' WHERE a=18236; UPDATE t2 SET c='forty-six thousand one hundred ninety-one' WHERE a=18237; UPDATE t2 SET c='ninety-four thousand eight hundred sixty-one' WHERE a=18238; UPDATE t2 SET c='fifty-four thousand six hundred ninety-one' WHERE a=18239; UPDATE t2 SET c='thirty thousand seven hundred thirteen' WHERE a=18240; UPDATE t2 SET c='eighty-nine thousand one hundred sixty-two' WHERE a=18241; UPDATE t2 SET c='eighteen thousand seven hundred fifty-five' WHERE a=18242; UPDATE t2 SET c='fifty-six thousand eight hundred twenty-one' WHERE a=18243; UPDATE t2 SET c='forty-eight thousand one hundred thirty-five' WHERE a=18244; UPDATE t2 SET c='forty-three thousand one hundred thirty-two' WHERE a=18245; UPDATE t2 SET c='sixty-three thousand eight hundred twenty-one' WHERE a=18246; UPDATE t2 SET c='twenty-nine thousand three hundred forty-one' WHERE a=18247; UPDATE t2 SET c='seventy-nine thousand five hundred twenty-two' WHERE a=18248; UPDATE t2 SET c='eighty-three thousand two hundred fifty-six' WHERE a=18249; UPDATE t2 SET c='five thousand nine hundred eighty-one' WHERE a=18250; UPDATE t2 SET c='twenty-two thousand five hundred seventy-five' WHERE a=18251; UPDATE t2 SET c='two thousand four hundred ninety-six' WHERE a=18252; UPDATE t2 SET c='thirty-three thousand one hundred one' WHERE a=18253; UPDATE t2 SET c='ten thousand nine hundred twenty-six' WHERE a=18254; UPDATE t2 SET c='thirty-nine thousand nine hundred fifty-two' WHERE a=18255; UPDATE t2 SET c='thirty-three thousand nine hundred ninety-five' WHERE a=18256; UPDATE t2 SET c='forty-five thousand six hundred nine' WHERE a=18257; UPDATE t2 SET c='ninety-seven thousand one hundred sixty-one' WHERE a=18258; UPDATE t2 SET c='eight thousand four hundred fifty-six' WHERE a=18259; UPDATE t2 SET c='ninety-three thousand two hundred forty-seven' WHERE a=18260; UPDATE t2 SET c='twenty-four thousand five hundred thirty-five' WHERE a=18261; UPDATE t2 SET c='twenty-seven thousand three hundred seventy-eight' WHERE a=18262; UPDATE t2 SET c='forty-two thousand seven hundred forty-five' WHERE a=18263; UPDATE t2 SET c='fifty-four thousand nine hundred twenty-two' WHERE a=18264; UPDATE t2 SET c='fifty-two thousand seven hundred fifty-two' WHERE a=18265; UPDATE t2 SET c='seventy-four thousand six hundred eighteen' WHERE a=18266; UPDATE t2 SET c='eighteen thousand eighty-two' WHERE a=18267; UPDATE t2 SET c='ninety-eight thousand nine hundred seventy-eight' WHERE a=18268; UPDATE t2 SET c='fifty thousand two hundred nineteen' WHERE a=18269; UPDATE t2 SET c='forty-nine thousand eight hundred twenty-three' WHERE a=18270; UPDATE t2 SET c='thirty-four thousand eight hundred eighty-four' WHERE a=18271; UPDATE t2 SET c='thirty-seven thousand nine hundred seventy-nine' WHERE a=18272; UPDATE t2 SET c='thirty-four thousand three hundred seventy-seven' WHERE a=18273; UPDATE t2 SET c='eighty-eight thousand six hundred forty-two' WHERE a=18274; UPDATE t2 SET c='eleven thousand two hundred seventeen' WHERE a=18275; UPDATE t2 SET c='eighty-three thousand two hundred forty-seven' WHERE a=18276; UPDATE t2 SET c='thirty-four thousand nine hundred ninety' WHERE a=18277; UPDATE t2 SET c='ninety-five thousand seven hundred ninety-eight' WHERE a=18278; UPDATE t2 SET c='ninety-two thousand one hundred twenty-two' WHERE a=18279; UPDATE t2 SET c='twelve thousand seven hundred ninety-four' WHERE a=18280; UPDATE t2 SET c='seventy thousand eight hundred eighty' WHERE a=18281; UPDATE t2 SET c='forty-five thousand two hundred eighteen' WHERE a=18282; UPDATE t2 SET c='seventy-four thousand seven hundred fifty-nine' WHERE a=18283; UPDATE t2 SET c='sixty-four thousand sixty-six' WHERE a=18284; UPDATE t2 SET c='seventy-two thousand two hundred ten' WHERE a=18285; UPDATE t2 SET c='one hundred fifty-nine' WHERE a=18286; UPDATE t2 SET c='thirty-five thousand six' WHERE a=18287; UPDATE t2 SET c='seventy-two thousand five hundred eighty-six' WHERE a=18288; UPDATE t2 SET c='nine thousand three hundred eleven' WHERE a=18289; UPDATE t2 SET c='forty-three thousand three hundred sixty-eight' WHERE a=18290; UPDATE t2 SET c='forty-three thousand eight hundred thirty-five' WHERE a=18291; UPDATE t2 SET c='eleven thousand seven hundred fifty-six' WHERE a=18292; UPDATE t2 SET c='ninety-two thousand two hundred fifty-one' WHERE a=18293; UPDATE t2 SET c='nine thousand four hundred sixty-four' WHERE a=18294; UPDATE t2 SET c='ninety-six thousand three hundred seventy-two' WHERE a=18295; UPDATE t2 SET c='fifty-nine thousand two hundred eighty-one' WHERE a=18296; UPDATE t2 SET c='eighty-three thousand five hundred forty-seven' WHERE a=18297; UPDATE t2 SET c='forty thousand fifty-one' WHERE a=18298; UPDATE t2 SET c='eighteen thousand twenty-eight' WHERE a=18299; UPDATE t2 SET c='nineteen thousand one hundred fifty-five' WHERE a=18300; UPDATE t2 SET c='thirty-three thousand two hundred' WHERE a=18301; UPDATE t2 SET c='thirty-eight thousand nine hundred thirty-five' WHERE a=18302; UPDATE t2 SET c='forty-five thousand sixteen' WHERE a=18303; UPDATE t2 SET c='twenty-five thousand eight hundred' WHERE a=18304; UPDATE t2 SET c='ten thousand five hundred nine' WHERE a=18305; UPDATE t2 SET c='two thousand nine hundred sixty-one' WHERE a=18306; UPDATE t2 SET c='fifty-eight thousand two hundred twenty' WHERE a=18307; UPDATE t2 SET c='sixteen thousand two hundred ninety-eight' WHERE a=18308; UPDATE t2 SET c='fifty-eight thousand two hundred fifty-six' WHERE a=18309; UPDATE t2 SET c='thirty-one thousand five hundred eighty-two' WHERE a=18310; UPDATE t2 SET c='sixty-six thousand forty-three' WHERE a=18311; UPDATE t2 SET c='ninety-seven thousand one hundred sixty-five' WHERE a=18312; UPDATE t2 SET c='ninety-six thousand eight hundred forty-seven' WHERE a=18313; UPDATE t2 SET c='fourteen thousand three hundred sixty-one' WHERE a=18314; UPDATE t2 SET c='fifty-two thousand four hundred sixty-six' WHERE a=18315; UPDATE t2 SET c='ninety-four thousand eighty-eight' WHERE a=18316; UPDATE t2 SET c='ninety-one thousand four hundred four' WHERE a=18317; UPDATE t2 SET c='seventy-five thousand ninety' WHERE a=18318; UPDATE t2 SET c='sixty thousand seven hundred seventy-six' WHERE a=18319; UPDATE t2 SET c='eighty-one thousand five hundred nineteen' WHERE a=18320; UPDATE t2 SET c='five thousand nine hundred eighty-six' WHERE a=18321; UPDATE t2 SET c='two hundred ninety-six' WHERE a=18322; UPDATE t2 SET c='four thousand two hundred sixty-one' WHERE a=18323; UPDATE t2 SET c='forty-six thousand nine hundred fifty-five' WHERE a=18324; UPDATE t2 SET c='five thousand eight hundred sixty' WHERE a=18325; UPDATE t2 SET c='ninety thousand four hundred sixty-six' WHERE a=18326; UPDATE t2 SET c='fifty-two thousand seven hundred seventy-one' WHERE a=18327; UPDATE t2 SET c='twenty-three thousand seven hundred forty' WHERE a=18328; UPDATE t2 SET c='fifty thousand three hundred thirty-two' WHERE a=18329; UPDATE t2 SET c='eighty-eight thousand eight hundred sixty-nine' WHERE a=18330; UPDATE t2 SET c='ninety-two thousand one hundred fifty-four' WHERE a=18331; UPDATE t2 SET c='twenty-nine thousand four hundred thirty-six' WHERE a=18332; UPDATE t2 SET c='ninety-seven thousand one hundred ninety-eight' WHERE a=18333; UPDATE t2 SET c='eleven thousand one' WHERE a=18334; UPDATE t2 SET c='thirty-one thousand nine hundred twenty-eight' WHERE a=18335; UPDATE t2 SET c='fifty-one thousand two hundred twenty-four' WHERE a=18336; UPDATE t2 SET c='thirty-three thousand two hundred ninety-one' WHERE a=18337; UPDATE t2 SET c='twenty-three thousand eight hundred eighty-six' WHERE a=18338; UPDATE t2 SET c='ninety-eight thousand eight hundred forty-four' WHERE a=18339; UPDATE t2 SET c='five thousand one hundred twenty-five' WHERE a=18340; UPDATE t2 SET c='seventy-six thousand nine hundred twenty-four' WHERE a=18341; UPDATE t2 SET c='seventy-one thousand nine hundred fifty-one' WHERE a=18342; UPDATE t2 SET c='sixty-eight thousand five hundred eight' WHERE a=18343; UPDATE t2 SET c='five thousand three hundred twenty-eight' WHERE a=18344; UPDATE t2 SET c='fifty-three thousand eight hundred sixty' WHERE a=18345; UPDATE t2 SET c='fifteen thousand six' WHERE a=18346; UPDATE t2 SET c='ninety-five thousand five hundred ninety-eight' WHERE a=18347; UPDATE t2 SET c='ninety-six thousand five hundred eighty-seven' WHERE a=18348; UPDATE t2 SET c='sixteen thousand two hundred sixty-three' WHERE a=18349; UPDATE t2 SET c='one thousand eight hundred sixty-seven' WHERE a=18350; UPDATE t2 SET c='seventy-six thousand twenty-nine' WHERE a=18351; UPDATE t2 SET c='ninety-seven thousand eight hundred sixty-seven' WHERE a=18352; UPDATE t2 SET c='twenty-eight thousand six hundred sixty-one' WHERE a=18353; UPDATE t2 SET c='fifteen thousand nine hundred sixty-seven' WHERE a=18354; UPDATE t2 SET c='sixty-five thousand sixty-five' WHERE a=18355; UPDATE t2 SET c='one thousand eight hundred twenty-four' WHERE a=18356; UPDATE t2 SET c='sixty-seven thousand two hundred ninety-seven' WHERE a=18357; UPDATE t2 SET c='sixty-one thousand eight hundred thirty-five' WHERE a=18358; UPDATE t2 SET c='fifty-one thousand seven hundred twenty-four' WHERE a=18359; UPDATE t2 SET c='ninety thousand six hundred twenty-nine' WHERE a=18360; UPDATE t2 SET c='forty thousand fourteen' WHERE a=18361; UPDATE t2 SET c='fifty-seven thousand two hundred seventy-nine' WHERE a=18362; UPDATE t2 SET c='eighty-eight thousand five hundred ninety-six' WHERE a=18363; UPDATE t2 SET c='fifty-four thousand four hundred thirty-six' WHERE a=18364; UPDATE t2 SET c='twenty-three thousand six hundred sixty-six' WHERE a=18365; UPDATE t2 SET c='ninety-eight thousand three hundred forty-six' WHERE a=18366; UPDATE t2 SET c='eighty-eight thousand twelve' WHERE a=18367; UPDATE t2 SET c='seventy-seven thousand nine hundred six' WHERE a=18368; UPDATE t2 SET c='twenty-seven thousand one hundred sixty-eight' WHERE a=18369; UPDATE t2 SET c='sixty-four thousand four hundred sixty-six' WHERE a=18370; UPDATE t2 SET c='forty-six thousand seven hundred twenty-seven' WHERE a=18371; UPDATE t2 SET c='four thousand five hundred fifty-one' WHERE a=18372; UPDATE t2 SET c='fifty-eight thousand seven hundred sixty-five' WHERE a=18373; UPDATE t2 SET c='forty-three thousand one hundred thirty-seven' WHERE a=18374; UPDATE t2 SET c='ten thousand nine hundred ninety' WHERE a=18375; UPDATE t2 SET c='ninety-eight thousand three hundred fifty-three' WHERE a=18376; UPDATE t2 SET c='eleven thousand seven hundred four' WHERE a=18377; UPDATE t2 SET c='fifty-six thousand six hundred seventy-five' WHERE a=18378; UPDATE t2 SET c='twelve thousand nine hundred eighty-three' WHERE a=18379; UPDATE t2 SET c='eleven thousand six' WHERE a=18380; UPDATE t2 SET c='sixty-nine thousand seven hundred fifty-seven' WHERE a=18381; UPDATE t2 SET c='thirty-three thousand seven hundred nineteen' WHERE a=18382; UPDATE t2 SET c='forty-nine thousand twenty-one' WHERE a=18383; UPDATE t2 SET c='twenty thousand four hundred sixty-eight' WHERE a=18384; UPDATE t2 SET c='forty-one thousand eight hundred thirty-four' WHERE a=18385; UPDATE t2 SET c='fifty-seven thousand five hundred ninety' WHERE a=18386; UPDATE t2 SET c='seventy-one thousand four hundred thirty-two' WHERE a=18387; UPDATE t2 SET c='twenty-two thousand eight hundred forty-six' WHERE a=18388; UPDATE t2 SET c='twenty-six thousand four hundred forty-six' WHERE a=18389; UPDATE t2 SET c='seventy-six thousand fifty-nine' WHERE a=18390; UPDATE t2 SET c='seventeen thousand five hundred sixty-six' WHERE a=18391; UPDATE t2 SET c='sixty-seven thousand seven hundred eleven' WHERE a=18392; UPDATE t2 SET c='thirty-two thousand three hundred twenty-two' WHERE a=18393; UPDATE t2 SET c='forty-eight thousand seven hundred thirty-four' WHERE a=18394; UPDATE t2 SET c='ninety thousand six hundred sixty-seven' WHERE a=18395; UPDATE t2 SET c='sixty-four thousand nine hundred five' WHERE a=18396; UPDATE t2 SET c='eighty-four thousand two hundred eighty-two' WHERE a=18397; UPDATE t2 SET c='seventy-eight thousand two hundred twenty-two' WHERE a=18398; UPDATE t2 SET c='ninety-two thousand three hundred eight' WHERE a=18399; UPDATE t2 SET c='twenty-seven thousand five hundred ninety-three' WHERE a=18400; UPDATE t2 SET c='thirty-three thousand thirty-two' WHERE a=18401; UPDATE t2 SET c='twenty-eight thousand five hundred eighty-one' WHERE a=18402; UPDATE t2 SET c='fifty-seven thousand three hundred thirteen' WHERE a=18403; UPDATE t2 SET c='twenty-five thousand eight hundred sixty-six' WHERE a=18404; UPDATE t2 SET c='fifty-four thousand nine hundred eighty-two' WHERE a=18405; UPDATE t2 SET c='twenty-seven thousand five hundred eighty-seven' WHERE a=18406; UPDATE t2 SET c='sixteen thousand two hundred ninety-seven' WHERE a=18407; UPDATE t2 SET c='sixteen thousand seven hundred thirty-one' WHERE a=18408; UPDATE t2 SET c='fifty-six thousand four hundred ninety-five' WHERE a=18409; UPDATE t2 SET c='six thousand seven hundred thirty' WHERE a=18410; UPDATE t2 SET c='ninety-nine thousand five hundred eighty-nine' WHERE a=18411; UPDATE t2 SET c='eighty thousand five hundred five' WHERE a=18412; UPDATE t2 SET c='twenty-seven thousand six hundred ninety-one' WHERE a=18413; UPDATE t2 SET c='twenty-one thousand seven hundred twenty-seven' WHERE a=18414; UPDATE t2 SET c='seventy-four thousand four hundred nine' WHERE a=18415; UPDATE t2 SET c='thirty thousand three hundred thirty-five' WHERE a=18416; UPDATE t2 SET c='seven thousand four hundred nineteen' WHERE a=18417; UPDATE t2 SET c='seventy-three thousand six hundred thirty-two' WHERE a=18418; UPDATE t2 SET c='eight thousand two hundred eighty-one' WHERE a=18419; UPDATE t2 SET c='sixty-seven thousand ninety-five' WHERE a=18420; UPDATE t2 SET c='six thousand four hundred one' WHERE a=18421; UPDATE t2 SET c='forty-seven thousand nine hundred fifty-seven' WHERE a=18422; UPDATE t2 SET c='twenty-eight thousand four hundred sixty-four' WHERE a=18423; UPDATE t2 SET c='fifty-four thousand five hundred six' WHERE a=18424; UPDATE t2 SET c='seventy-seven thousand six hundred forty-five' WHERE a=18425; UPDATE t2 SET c='twenty-nine thousand two hundred four' WHERE a=18426; UPDATE t2 SET c='eight thousand four hundred six' WHERE a=18427; UPDATE t2 SET c='three thousand nine hundred eighty-two' WHERE a=18428; UPDATE t2 SET c='seventy-seven thousand nine hundred fifty-four' WHERE a=18429; UPDATE t2 SET c='twelve thousand six hundred ninety' WHERE a=18430; UPDATE t2 SET c='eighty-one thousand sixty-seven' WHERE a=18431; UPDATE t2 SET c='thirty-nine thousand seven hundred fifty-six' WHERE a=18432; UPDATE t2 SET c='twenty-three thousand seven hundred forty-two' WHERE a=18433; UPDATE t2 SET c='fifty-seven thousand nine hundred sixty-two' WHERE a=18434; UPDATE t2 SET c='ten thousand seven hundred ninety-eight' WHERE a=18435; UPDATE t2 SET c='thirty-one thousand six hundred thirty-seven' WHERE a=18436; UPDATE t2 SET c='twenty-four thousand six hundred eleven' WHERE a=18437; UPDATE t2 SET c='eighty thousand four hundred seventy-nine' WHERE a=18438; UPDATE t2 SET c='twenty-seven thousand three hundred fifty-five' WHERE a=18439; UPDATE t2 SET c='sixty-eight thousand two hundred thirty-one' WHERE a=18440; UPDATE t2 SET c='five hundred twenty-five' WHERE a=18441; UPDATE t2 SET c='ninety-one thousand one hundred ninety-four' WHERE a=18442; UPDATE t2 SET c='one thousand nineteen' WHERE a=18443; UPDATE t2 SET c='five thousand five hundred ninety-three' WHERE a=18444; UPDATE t2 SET c='fourteen thousand four hundred fifteen' WHERE a=18445; UPDATE t2 SET c='forty-one thousand seven hundred thirty-nine' WHERE a=18446; UPDATE t2 SET c='ninety-one thousand one hundred twenty-three' WHERE a=18447; UPDATE t2 SET c='seventeen thousand two hundred seven' WHERE a=18448; UPDATE t2 SET c='fifty-seven thousand seven hundred fifteen' WHERE a=18449; UPDATE t2 SET c='eighty-four thousand three hundred eighty-one' WHERE a=18450; UPDATE t2 SET c='ninety-four thousand two hundred forty-two' WHERE a=18451; UPDATE t2 SET c='three thousand three hundred sixty-three' WHERE a=18452; UPDATE t2 SET c='thirty-three thousand two hundred thirty-six' WHERE a=18453; UPDATE t2 SET c='thirty-eight thousand thirty-nine' WHERE a=18454; UPDATE t2 SET c='seventeen thousand three hundred eighty-five' WHERE a=18455; UPDATE t2 SET c='thirty-two thousand six hundred sixty' WHERE a=18456; UPDATE t2 SET c='seventy-six thousand five hundred eighty-nine' WHERE a=18457; UPDATE t2 SET c='one thousand two hundred forty-one' WHERE a=18458; UPDATE t2 SET c='twenty thousand four hundred twenty-eight' WHERE a=18459; UPDATE t2 SET c='fifty-eight thousand two hundred eighty-three' WHERE a=18460; UPDATE t2 SET c='thirty-four thousand two hundred sixty-one' WHERE a=18461; UPDATE t2 SET c='eight thousand seven' WHERE a=18462; UPDATE t2 SET c='fifty-three thousand nine hundred forty-three' WHERE a=18463; UPDATE t2 SET c='sixty-seven thousand six hundred ninety-eight' WHERE a=18464; UPDATE t2 SET c='fifty-three thousand nine hundred twenty-three' WHERE a=18465; UPDATE t2 SET c='fifty-six thousand eighty-six' WHERE a=18466; UPDATE t2 SET c='two thousand six hundred sixteen' WHERE a=18467; UPDATE t2 SET c='fifty-seven thousand nine hundred ninety' WHERE a=18468; UPDATE t2 SET c='twelve thousand seventy-four' WHERE a=18469; UPDATE t2 SET c='thirteen thousand twenty-nine' WHERE a=18470; UPDATE t2 SET c='seventy-three thousand six hundred eighteen' WHERE a=18471; UPDATE t2 SET c='seventy thousand eight hundred seventy-five' WHERE a=18472; UPDATE t2 SET c='ninety-two thousand seventy-one' WHERE a=18473; UPDATE t2 SET c='eighty thousand one hundred sixty-four' WHERE a=18474; UPDATE t2 SET c='sixty-four thousand one hundred sixty-four' WHERE a=18475; UPDATE t2 SET c='forty-four thousand one hundred six' WHERE a=18476; UPDATE t2 SET c='fifty-two thousand seven hundred seventy' WHERE a=18477; UPDATE t2 SET c='seventy-eight thousand eighty-three' WHERE a=18478; UPDATE t2 SET c='forty-eight thousand one hundred four' WHERE a=18479; UPDATE t2 SET c='twelve thousand one hundred ninety-two' WHERE a=18480; UPDATE t2 SET c='thirteen thousand sixteen' WHERE a=18481; UPDATE t2 SET c='ninety-one thousand four hundred thirty-five' WHERE a=18482; UPDATE t2 SET c='fifty-seven thousand two hundred twenty-four' WHERE a=18483; UPDATE t2 SET c='seventy-five thousand four hundred fifty' WHERE a=18484; UPDATE t2 SET c='forty-six thousand seven hundred fifty-nine' WHERE a=18485; UPDATE t2 SET c='seventy-two thousand six hundred fifty-five' WHERE a=18486; UPDATE t2 SET c='four thousand seven hundred sixty' WHERE a=18487; UPDATE t2 SET c='sixty-five thousand six hundred eighty-nine' WHERE a=18488; UPDATE t2 SET c='ninety-nine thousand fifty' WHERE a=18489; UPDATE t2 SET c='fifty-seven thousand eight hundred eighty-four' WHERE a=18490; UPDATE t2 SET c='ninety-nine thousand eighty-four' WHERE a=18491; UPDATE t2 SET c='forty-five thousand four hundred eighty-five' WHERE a=18492; UPDATE t2 SET c='forty thousand nine hundred sixty-five' WHERE a=18493; UPDATE t2 SET c='eleven thousand four hundred forty-six' WHERE a=18494; UPDATE t2 SET c='seventy-four thousand three hundred forty' WHERE a=18495; UPDATE t2 SET c='forty-three thousand seven hundred seventy-six' WHERE a=18496; UPDATE t2 SET c='forty-three thousand nine hundred sixty' WHERE a=18497; UPDATE t2 SET c='seventy-six thousand nine hundred seventy-four' WHERE a=18498; UPDATE t2 SET c='fifty-seven thousand six hundred three' WHERE a=18499; UPDATE t2 SET c='fifty-four thousand three hundred twenty-two' WHERE a=18500; UPDATE t2 SET c='forty-seven thousand three hundred twenty-five' WHERE a=18501; UPDATE t2 SET c='thirty-five thousand twenty-seven' WHERE a=18502; UPDATE t2 SET c='fifty-one thousand four hundred four' WHERE a=18503; UPDATE t2 SET c='three thousand seven hundred eighty-two' WHERE a=18504; UPDATE t2 SET c='forty-one thousand seven hundred forty-one' WHERE a=18505; UPDATE t2 SET c='thirty-three thousand five hundred ninety-three' WHERE a=18506; UPDATE t2 SET c='twenty-one thousand nine hundred thirty-four' WHERE a=18507; UPDATE t2 SET c='sixty thousand seven hundred thirty-seven' WHERE a=18508; UPDATE t2 SET c='sixty-four thousand two hundred eighty-one' WHERE a=18509; UPDATE t2 SET c='seventy-four thousand four hundred nineteen' WHERE a=18510; UPDATE t2 SET c='sixty-eight thousand six hundred fifty-three' WHERE a=18511; UPDATE t2 SET c='twenty-six thousand one hundred sixty-six' WHERE a=18512; UPDATE t2 SET c='sixteen thousand one hundred seventy-five' WHERE a=18513; UPDATE t2 SET c='ninety-six thousand seven hundred seventy-seven' WHERE a=18514; UPDATE t2 SET c='seventy-seven thousand six hundred twenty' WHERE a=18515; UPDATE t2 SET c='eighty thousand seven hundred thirty-four' WHERE a=18516; UPDATE t2 SET c='sixty-one thousand seven hundred sixty-nine' WHERE a=18517; UPDATE t2 SET c='fifty-nine thousand two hundred forty-one' WHERE a=18518; UPDATE t2 SET c='twenty-five thousand two hundred twenty-one' WHERE a=18519; UPDATE t2 SET c='ninety-two thousand one hundred sixty-two' WHERE a=18520; UPDATE t2 SET c='thirty-three thousand seven hundred forty-seven' WHERE a=18521; UPDATE t2 SET c='sixty-eight thousand three hundred seven' WHERE a=18522; UPDATE t2 SET c='fifty-three thousand six hundred thirty-eight' WHERE a=18523; UPDATE t2 SET c='seventy-one thousand seven hundred seventy-five' WHERE a=18524; UPDATE t2 SET c='eighty thousand four hundred seventy-eight' WHERE a=18525; UPDATE t2 SET c='sixty-six thousand two hundred sixty-six' WHERE a=18526; UPDATE t2 SET c='thirteen thousand five hundred fifty-eight' WHERE a=18527; UPDATE t2 SET c='eighty-eight thousand seven hundred eighty-two' WHERE a=18528; UPDATE t2 SET c='sixty-five thousand six hundred fifty-eight' WHERE a=18529; UPDATE t2 SET c='sixty-six thousand eighty-one' WHERE a=18530; UPDATE t2 SET c='forty-one thousand nine hundred seventy-five' WHERE a=18531; UPDATE t2 SET c='twelve thousand six hundred twenty-three' WHERE a=18532; UPDATE t2 SET c='sixty-one thousand fifty-eight' WHERE a=18533; UPDATE t2 SET c='ten thousand two hundred seventy-three' WHERE a=18534; UPDATE t2 SET c='ten thousand twenty-four' WHERE a=18535; UPDATE t2 SET c='fifty-nine thousand five hundred forty-four' WHERE a=18536; UPDATE t2 SET c='ninety-eight thousand seven hundred one' WHERE a=18537; UPDATE t2 SET c='thirty-seven thousand one hundred twenty-four' WHERE a=18538; UPDATE t2 SET c='twenty-nine thousand eight hundred one' WHERE a=18539; UPDATE t2 SET c='ninety thousand four hundred fourteen' WHERE a=18540; UPDATE t2 SET c='thirty-three thousand nine hundred seventy-six' WHERE a=18541; UPDATE t2 SET c='eleven thousand two hundred twenty-seven' WHERE a=18542; UPDATE t2 SET c='ninety-one thousand three hundred thirty-seven' WHERE a=18543; UPDATE t2 SET c='eight thousand seven hundred fifty-seven' WHERE a=18544; UPDATE t2 SET c='eighty-eight thousand three hundred seventy-eight' WHERE a=18545; UPDATE t2 SET c='fifty-four thousand seven hundred eighty-three' WHERE a=18546; UPDATE t2 SET c='fifty-one thousand eight hundred ninety' WHERE a=18547; UPDATE t2 SET c='eighteen thousand eight hundred fifty-five' WHERE a=18548; UPDATE t2 SET c='seventy-three thousand four hundred forty-two' WHERE a=18549; UPDATE t2 SET c='forty-one thousand six hundred twenty-four' WHERE a=18550; UPDATE t2 SET c='ninety-seven thousand four hundred thirty-six' WHERE a=18551; UPDATE t2 SET c='twenty thousand one hundred thirty-six' WHERE a=18552; UPDATE t2 SET c='sixty-seven thousand five hundred forty-nine' WHERE a=18553; UPDATE t2 SET c='forty-three thousand nine hundred twenty-one' WHERE a=18554; UPDATE t2 SET c='ninety-nine thousand six hundred seven' WHERE a=18555; UPDATE t2 SET c='eighty-seven thousand two hundred forty-seven' WHERE a=18556; UPDATE t2 SET c='forty-seven thousand nine hundred thirty-nine' WHERE a=18557; UPDATE t2 SET c='seventy-one thousand one hundred seventy-seven' WHERE a=18558; UPDATE t2 SET c='forty-eight thousand four hundred fourteen' WHERE a=18559; UPDATE t2 SET c='thirty-four thousand two hundred eighty-two' WHERE a=18560; UPDATE t2 SET c='fourteen thousand one hundred twenty-seven' WHERE a=18561; UPDATE t2 SET c='fifty-three thousand two hundred thirty-seven' WHERE a=18562; UPDATE t2 SET c='sixty-eight thousand four hundred nine' WHERE a=18563; UPDATE t2 SET c='ninety-five thousand seventy-nine' WHERE a=18564; UPDATE t2 SET c='forty-two thousand seven hundred six' WHERE a=18565; UPDATE t2 SET c='forty thousand eight hundred twenty-two' WHERE a=18566; UPDATE t2 SET c='sixty-four thousand seven hundred thirty-nine' WHERE a=18567; UPDATE t2 SET c='seventeen thousand one hundred forty-one' WHERE a=18568; UPDATE t2 SET c='seventy-seven thousand seven' WHERE a=18569; UPDATE t2 SET c='nineteen thousand five hundred ninety-three' WHERE a=18570; UPDATE t2 SET c='one thousand five hundred sixty-four' WHERE a=18571; UPDATE t2 SET c='five thousand five hundred twenty-three' WHERE a=18572; UPDATE t2 SET c='seventy-nine thousand one hundred eight' WHERE a=18573; UPDATE t2 SET c='thirty-eight thousand two hundred eighty-six' WHERE a=18574; UPDATE t2 SET c='twenty-one thousand four hundred ten' WHERE a=18575; UPDATE t2 SET c='thirty-five thousand three hundred eighty-two' WHERE a=18576; UPDATE t2 SET c='sixty-seven thousand two hundred sixty-three' WHERE a=18577; UPDATE t2 SET c='fifty-nine thousand five hundred thirty-two' WHERE a=18578; UPDATE t2 SET c='fifty-nine thousand four hundred fifty-eight' WHERE a=18579; UPDATE t2 SET c='nine hundred eighty-five' WHERE a=18580; UPDATE t2 SET c='seventy-one thousand six hundred eighty-three' WHERE a=18581; UPDATE t2 SET c='ninety-six thousand nine hundred sixty-nine' WHERE a=18582; UPDATE t2 SET c='eighty-three thousand ninety-seven' WHERE a=18583; UPDATE t2 SET c='ninety-four thousand seven hundred eighty-one' WHERE a=18584; UPDATE t2 SET c='thirty thousand twelve' WHERE a=18585; UPDATE t2 SET c='twelve thousand four hundred thirty-two' WHERE a=18586; UPDATE t2 SET c='six thousand nine hundred twenty-eight' WHERE a=18587; UPDATE t2 SET c='ninety-two thousand forty-seven' WHERE a=18588; UPDATE t2 SET c='twenty-seven thousand eight hundred ten' WHERE a=18589; UPDATE t2 SET c='twenty thousand two hundred forty-six' WHERE a=18590; UPDATE t2 SET c='forty-eight thousand four hundred thirty-three' WHERE a=18591; UPDATE t2 SET c='thirty-five thousand two hundred forty' WHERE a=18592; UPDATE t2 SET c='twenty-nine thousand four hundred ninety-five' WHERE a=18593; UPDATE t2 SET c='twelve thousand nine hundred forty-one' WHERE a=18594; UPDATE t2 SET c='ten thousand six hundred thirty-five' WHERE a=18595; UPDATE t2 SET c='ten thousand eight hundred ninety-six' WHERE a=18596; UPDATE t2 SET c='fifty-six thousand five hundred ninety-nine' WHERE a=18597; UPDATE t2 SET c='eighty-seven thousand five hundred nine' WHERE a=18598; UPDATE t2 SET c='seventy-three thousand one hundred fifty-five' WHERE a=18599; UPDATE t2 SET c='forty-nine thousand nine hundred fifty-eight' WHERE a=18600; UPDATE t2 SET c='two thousand two hundred seventy-nine' WHERE a=18601; UPDATE t2 SET c='three thousand three hundred twenty-four' WHERE a=18602; UPDATE t2 SET c='sixteen thousand seven hundred sixty-seven' WHERE a=18603; UPDATE t2 SET c='seventy-six thousand two hundred twenty-four' WHERE a=18604; UPDATE t2 SET c='forty-six thousand thirty-nine' WHERE a=18605; UPDATE t2 SET c='fifty-three thousand one hundred eighty-eight' WHERE a=18606; UPDATE t2 SET c='twenty-four thousand seven hundred eighty-six' WHERE a=18607; UPDATE t2 SET c='eleven thousand two hundred two' WHERE a=18608; UPDATE t2 SET c='ninety-nine thousand four hundred forty' WHERE a=18609; UPDATE t2 SET c='seventeen thousand seven hundred fifty-six' WHERE a=18610; UPDATE t2 SET c='seventy-four thousand six hundred seventy-seven' WHERE a=18611; UPDATE t2 SET c='seventy-nine thousand seven hundred twenty' WHERE a=18612; UPDATE t2 SET c='ninety-nine thousand six hundred eighteen' WHERE a=18613; UPDATE t2 SET c='seventeen thousand two hundred thirty-nine' WHERE a=18614; UPDATE t2 SET c='twenty-nine thousand seventy-six' WHERE a=18615; UPDATE t2 SET c='eleven thousand one hundred thirty-nine' WHERE a=18616; UPDATE t2 SET c='ninety-six thousand two hundred eighty-six' WHERE a=18617; UPDATE t2 SET c='forty-seven thousand one hundred twenty-two' WHERE a=18618; UPDATE t2 SET c='seventy-one thousand seven hundred nine' WHERE a=18619; UPDATE t2 SET c='fifty-two thousand sixty-six' WHERE a=18620; UPDATE t2 SET c='sixty thousand two hundred seventy-two' WHERE a=18621; UPDATE t2 SET c='thirty-three thousand five hundred ninety-seven' WHERE a=18622; UPDATE t2 SET c='fifty-four thousand three hundred ninety-five' WHERE a=18623; UPDATE t2 SET c='seventy-nine thousand three hundred sixty' WHERE a=18624; UPDATE t2 SET c='seventy-seven thousand one hundred forty-six' WHERE a=18625; UPDATE t2 SET c='seventy-five thousand three hundred seven' WHERE a=18626; UPDATE t2 SET c='twenty-four thousand eight hundred twelve' WHERE a=18627; UPDATE t2 SET c='nine thousand three hundred forty-three' WHERE a=18628; UPDATE t2 SET c='thirteen thousand five hundred forty-two' WHERE a=18629; UPDATE t2 SET c='five thousand two hundred forty-nine' WHERE a=18630; UPDATE t2 SET c='thirty thousand nine hundred ninety' WHERE a=18631; UPDATE t2 SET c='eleven thousand three hundred ninety-nine' WHERE a=18632; UPDATE t2 SET c='ninety thousand six hundred seventeen' WHERE a=18633; UPDATE t2 SET c='eighty-five thousand two hundred fifty-eight' WHERE a=18634; UPDATE t2 SET c='forty-eight thousand three hundred twenty-seven' WHERE a=18635; UPDATE t2 SET c='ninety thousand eight hundred seventy-two' WHERE a=18636; UPDATE t2 SET c='ninety-eight thousand four hundred eighty-eight' WHERE a=18637; UPDATE t2 SET c='six thousand one hundred sixty-five' WHERE a=18638; UPDATE t2 SET c='ten thousand seven hundred eighty-three' WHERE a=18639; UPDATE t2 SET c='eighty-nine thousand nine hundred fifty-four' WHERE a=18640; UPDATE t2 SET c='forty-four thousand six hundred eighty-two' WHERE a=18641; UPDATE t2 SET c='twenty-eight thousand eight hundred thirty-three' WHERE a=18642; UPDATE t2 SET c='ninety-nine thousand one hundred seventy' WHERE a=18643; UPDATE t2 SET c='nine thousand six hundred seventy-one' WHERE a=18644; UPDATE t2 SET c='seventeen thousand five hundred fifty' WHERE a=18645; UPDATE t2 SET c='ninety-six thousand seven hundred thirty-two' WHERE a=18646; UPDATE t2 SET c='eighty-four thousand five hundred twenty-eight' WHERE a=18647; UPDATE t2 SET c='sixty-five thousand six hundred twenty-two' WHERE a=18648; UPDATE t2 SET c='fifty thousand nine hundred ninety-six' WHERE a=18649; UPDATE t2 SET c='seven thousand five hundred seventy-one' WHERE a=18650; UPDATE t2 SET c='twenty-one thousand nine hundred thirty-two' WHERE a=18651; UPDATE t2 SET c='twenty-eight thousand two hundred forty-six' WHERE a=18652; UPDATE t2 SET c='ninety thousand six hundred sixty-two' WHERE a=18653; UPDATE t2 SET c='seventy-six thousand thirty-five' WHERE a=18654; UPDATE t2 SET c='twenty-six thousand nine hundred one' WHERE a=18655; UPDATE t2 SET c='thirty-three thousand eight hundred fifty-nine' WHERE a=18656; UPDATE t2 SET c='eighty-eight thousand five hundred thirty-four' WHERE a=18657; UPDATE t2 SET c='thirty-seven thousand one' WHERE a=18658; UPDATE t2 SET c='six thousand four hundred seventy-five' WHERE a=18659; UPDATE t2 SET c='ninety-eight thousand nine hundred three' WHERE a=18660; UPDATE t2 SET c='forty-one thousand four hundred sixty-one' WHERE a=18661; UPDATE t2 SET c='eighty-three thousand seventy-one' WHERE a=18662; UPDATE t2 SET c='eighty thousand seven hundred forty-three' WHERE a=18663; UPDATE t2 SET c='ten thousand one hundred thirty-nine' WHERE a=18664; UPDATE t2 SET c='nine thousand five hundred six' WHERE a=18665; UPDATE t2 SET c='forty-one thousand eight hundred thirty-three' WHERE a=18666; UPDATE t2 SET c='sixty-seven thousand eight hundred forty-nine' WHERE a=18667; UPDATE t2 SET c='fourteen thousand four hundred nineteen' WHERE a=18668; UPDATE t2 SET c='seventy-eight thousand one hundred ten' WHERE a=18669; UPDATE t2 SET c='thirty-four thousand ninety' WHERE a=18670; UPDATE t2 SET c='four thousand seven hundred six' WHERE a=18671; UPDATE t2 SET c='thirty-five thousand four hundred sixty-three' WHERE a=18672; UPDATE t2 SET c='sixty-six thousand eight hundred seventy-eight' WHERE a=18673; UPDATE t2 SET c='forty-six thousand four hundred eighty-nine' WHERE a=18674; UPDATE t2 SET c='sixty-four thousand eight hundred twenty-six' WHERE a=18675; UPDATE t2 SET c='thirty-eight thousand seven hundred eighteen' WHERE a=18676; UPDATE t2 SET c='thirty-four thousand three hundred twenty' WHERE a=18677; UPDATE t2 SET c='ten thousand eight hundred seventeen' WHERE a=18678; UPDATE t2 SET c='eight hundred ninety-one' WHERE a=18679; UPDATE t2 SET c='five thousand nine hundred sixty-one' WHERE a=18680; UPDATE t2 SET c='fifty-two thousand seven hundred six' WHERE a=18681; UPDATE t2 SET c='thirty-three thousand nine hundred forty-five' WHERE a=18682; UPDATE t2 SET c='ninety-seven thousand one hundred thirty-five' WHERE a=18683; UPDATE t2 SET c='fifty-three thousand three hundred forty-seven' WHERE a=18684; UPDATE t2 SET c='twenty-six thousand five hundred sixty-one' WHERE a=18685; UPDATE t2 SET c='forty thousand four hundred thirty-four' WHERE a=18686; UPDATE t2 SET c='seventy-seven thousand five hundred seventy-two' WHERE a=18687; UPDATE t2 SET c='six thousand one hundred fifty-seven' WHERE a=18688; UPDATE t2 SET c='fifty-nine thousand three hundred seventeen' WHERE a=18689; UPDATE t2 SET c='nineteen thousand nine hundred seventy' WHERE a=18690; UPDATE t2 SET c='forty-seven thousand seven hundred eighty' WHERE a=18691; UPDATE t2 SET c='thirty-three thousand one hundred forty-six' WHERE a=18692; UPDATE t2 SET c='four thousand five hundred forty-two' WHERE a=18693; UPDATE t2 SET c='ninety-six thousand two hundred twenty-five' WHERE a=18694; UPDATE t2 SET c='twelve thousand nine hundred thirty-three' WHERE a=18695; UPDATE t2 SET c='nineteen thousand eight hundred seventy-nine' WHERE a=18696; UPDATE t2 SET c='seventy-seven thousand eight hundred thirty-four' WHERE a=18697; UPDATE t2 SET c='sixty-one thousand five hundred sixty-two' WHERE a=18698; UPDATE t2 SET c='eighty-five thousand six hundred seventeen' WHERE a=18699; UPDATE t2 SET c='sixty-five thousand seven hundred fifty' WHERE a=18700; UPDATE t2 SET c='seventy-two thousand five hundred sixty-two' WHERE a=18701; UPDATE t2 SET c='thirty thousand eleven' WHERE a=18702; UPDATE t2 SET c='seventy-four thousand eighteen' WHERE a=18703; UPDATE t2 SET c='sixty-eight thousand three hundred fifty-seven' WHERE a=18704; UPDATE t2 SET c='two thousand nine hundred twenty-eight' WHERE a=18705; UPDATE t2 SET c='sixty-five thousand nine hundred fifty-eight' WHERE a=18706; UPDATE t2 SET c='sixty-five thousand nine hundred eighty-six' WHERE a=18707; UPDATE t2 SET c='seventy-four thousand nine hundred forty-six' WHERE a=18708; UPDATE t2 SET c='eighty-nine thousand sixty-four' WHERE a=18709; UPDATE t2 SET c='sixty-four thousand four hundred ninety' WHERE a=18710; UPDATE t2 SET c='seventy-five thousand three hundred four' WHERE a=18711; UPDATE t2 SET c='ten thousand eight hundred ninety-nine' WHERE a=18712; UPDATE t2 SET c='seventy-one thousand five hundred forty-eight' WHERE a=18713; UPDATE t2 SET c='eighty-four thousand nine hundred thirty-five' WHERE a=18714; UPDATE t2 SET c='sixty-four thousand seven hundred thirty-three' WHERE a=18715; UPDATE t2 SET c='fifty-seven thousand three hundred twenty-six' WHERE a=18716; UPDATE t2 SET c='fourteen thousand nine hundred thirty-one' WHERE a=18717; UPDATE t2 SET c='twenty-two thousand nine hundred fifty-three' WHERE a=18718; UPDATE t2 SET c='sixty-four thousand sixty-nine' WHERE a=18719; UPDATE t2 SET c='ten thousand three hundred fifty-four' WHERE a=18720; UPDATE t2 SET c='thirty-three thousand six hundred twenty-eight' WHERE a=18721; UPDATE t2 SET c='sixty-five thousand one hundred thirty-nine' WHERE a=18722; UPDATE t2 SET c='ninety thousand eight hundred eighty-two' WHERE a=18723; UPDATE t2 SET c='fifty-two thousand three hundred ninety-seven' WHERE a=18724; UPDATE t2 SET c='seventy-five thousand four hundred thirty-seven' WHERE a=18725; UPDATE t2 SET c='twenty-three thousand six hundred ninety-six' WHERE a=18726; UPDATE t2 SET c='eleven thousand three hundred seventy' WHERE a=18727; UPDATE t2 SET c='thirty-seven thousand two hundred seventy-three' WHERE a=18728; UPDATE t2 SET c='sixty thousand seven hundred thirty-five' WHERE a=18729; UPDATE t2 SET c='seven thousand seven hundred thirty-seven' WHERE a=18730; UPDATE t2 SET c='one hundred forty-three' WHERE a=18731; UPDATE t2 SET c='seventy-nine thousand six hundred sixty-seven' WHERE a=18732; UPDATE t2 SET c='thirty-two thousand seven hundred three' WHERE a=18733; UPDATE t2 SET c='twenty-one thousand nine hundred forty-two' WHERE a=18734; UPDATE t2 SET c='seventy-three thousand two hundred eighty-eight' WHERE a=18735; UPDATE t2 SET c='three hundred ninety-seven' WHERE a=18736; UPDATE t2 SET c='nineteen thousand one hundred fifty-five' WHERE a=18737; UPDATE t2 SET c='fifty-three thousand four hundred four' WHERE a=18738; UPDATE t2 SET c='thirty thousand two hundred seventy-seven' WHERE a=18739; UPDATE t2 SET c='five thousand seven hundred ninety-six' WHERE a=18740; UPDATE t2 SET c='eighty thousand nine hundred ninety-nine' WHERE a=18741; UPDATE t2 SET c='eighty-five thousand one hundred eighty-seven' WHERE a=18742; UPDATE t2 SET c='sixty-four thousand nine hundred fifty-two' WHERE a=18743; UPDATE t2 SET c='forty-two thousand four hundred ninety-four' WHERE a=18744; UPDATE t2 SET c='ninety-six thousand thirty-seven' WHERE a=18745; UPDATE t2 SET c='eighty-six thousand sixty-six' WHERE a=18746; UPDATE t2 SET c='nineteen thousand seven hundred ten' WHERE a=18747; UPDATE t2 SET c='thirty-six thousand six hundred forty-seven' WHERE a=18748; UPDATE t2 SET c='thirty-eight thousand six hundred eighty-two' WHERE a=18749; UPDATE t2 SET c='thirty thousand six' WHERE a=18750; UPDATE t2 SET c='one thousand four hundred forty-five' WHERE a=18751; UPDATE t2 SET c='seventy-one thousand six hundred seventeen' WHERE a=18752; UPDATE t2 SET c='sixty-seven thousand one hundred sixty-five' WHERE a=18753; UPDATE t2 SET c='fifty-three thousand five hundred twenty-seven' WHERE a=18754; UPDATE t2 SET c='fifty-seven thousand nine hundred two' WHERE a=18755; UPDATE t2 SET c='forty-seven thousand seven hundred ninety-eight' WHERE a=18756; UPDATE t2 SET c='twenty thousand five hundred ten' WHERE a=18757; UPDATE t2 SET c='seventy-one thousand eight hundred fourteen' WHERE a=18758; UPDATE t2 SET c='four thousand three hundred thirty-nine' WHERE a=18759; UPDATE t2 SET c='eighty-five thousand six' WHERE a=18760; UPDATE t2 SET c='seventy-eight thousand five hundred eighteen' WHERE a=18761; UPDATE t2 SET c='twenty-four thousand nine hundred sixty-two' WHERE a=18762; UPDATE t2 SET c='thirty-seven thousand one hundred thirty-seven' WHERE a=18763; UPDATE t2 SET c='ninety-two thousand four hundred twenty-nine' WHERE a=18764; UPDATE t2 SET c='seventy-nine thousand one hundred one' WHERE a=18765; UPDATE t2 SET c='twenty-three thousand nine hundred thirty-three' WHERE a=18766; UPDATE t2 SET c='fifty-one thousand eight hundred forty-two' WHERE a=18767; UPDATE t2 SET c='nine thousand five hundred eighty-four' WHERE a=18768; UPDATE t2 SET c='sixty-one thousand two hundred eighty' WHERE a=18769; UPDATE t2 SET c='thirty-seven thousand six hundred sixty-three' WHERE a=18770; UPDATE t2 SET c='fifty-seven thousand eight hundred forty-nine' WHERE a=18771; UPDATE t2 SET c='forty-three thousand five hundred fifty-seven' WHERE a=18772; UPDATE t2 SET c='sixty thousand eight hundred' WHERE a=18773; UPDATE t2 SET c='thirty-three thousand one hundred ninety-two' WHERE a=18774; UPDATE t2 SET c='ninety-two thousand six hundred eighty-one' WHERE a=18775; UPDATE t2 SET c='eight hundred eighty-one' WHERE a=18776; UPDATE t2 SET c='ninety-seven thousand sixty-one' WHERE a=18777; UPDATE t2 SET c='eighty-five thousand two hundred forty-one' WHERE a=18778; UPDATE t2 SET c='ten thousand sixty-five' WHERE a=18779; UPDATE t2 SET c='fifty-one thousand one hundred seventy-nine' WHERE a=18780; UPDATE t2 SET c='sixteen thousand two hundred six' WHERE a=18781; UPDATE t2 SET c='one thousand sixty-nine' WHERE a=18782; UPDATE t2 SET c='twenty-nine thousand five hundred forty-eight' WHERE a=18783; UPDATE t2 SET c='eighty-eight thousand seven hundred fifty-two' WHERE a=18784; UPDATE t2 SET c='six thousand seven hundred twenty-nine' WHERE a=18785; UPDATE t2 SET c='fifty-three thousand five hundred seventy-seven' WHERE a=18786; UPDATE t2 SET c='fifty thousand nine hundred twenty-one' WHERE a=18787; UPDATE t2 SET c='fifty-nine thousand sixty-two' WHERE a=18788; UPDATE t2 SET c='eighty-eight thousand six hundred three' WHERE a=18789; UPDATE t2 SET c='ninety-four thousand six hundred seventy-four' WHERE a=18790; UPDATE t2 SET c='two thousand nine hundred twenty-one' WHERE a=18791; UPDATE t2 SET c='sixty-three thousand seven hundred thirty-six' WHERE a=18792; UPDATE t2 SET c='forty-eight thousand one hundred eighty' WHERE a=18793; UPDATE t2 SET c='ninety-one thousand two hundred ten' WHERE a=18794; UPDATE t2 SET c='twenty-four thousand two hundred seven' WHERE a=18795; UPDATE t2 SET c='ninety-one thousand six hundred six' WHERE a=18796; UPDATE t2 SET c='forty-one thousand three hundred sixty-three' WHERE a=18797; UPDATE t2 SET c='fifty-nine thousand one hundred twenty-four' WHERE a=18798; UPDATE t2 SET c='fifty-three thousand four hundred forty-two' WHERE a=18799; UPDATE t2 SET c='fifty-six thousand one hundred five' WHERE a=18800; UPDATE t2 SET c='ninety-two thousand eight hundred thirty-five' WHERE a=18801; UPDATE t2 SET c='twenty-four thousand two hundred eighty' WHERE a=18802; UPDATE t2 SET c='eighty-six thousand five hundred seventy-eight' WHERE a=18803; UPDATE t2 SET c='forty-four thousand one hundred twenty-five' WHERE a=18804; UPDATE t2 SET c='fifty-nine thousand one hundred sixty' WHERE a=18805; UPDATE t2 SET c='thirty thousand four hundred fifty' WHERE a=18806; UPDATE t2 SET c='twelve thousand eight hundred fifty-three' WHERE a=18807; UPDATE t2 SET c='forty-seven thousand eight hundred sixty-nine' WHERE a=18808; UPDATE t2 SET c='seventy-five thousand six hundred seventeen' WHERE a=18809; UPDATE t2 SET c='ninety-eight thousand three hundred fifty-eight' WHERE a=18810; UPDATE t2 SET c='seventy-nine thousand one hundred sixty-six' WHERE a=18811; UPDATE t2 SET c='forty-nine thousand six hundred fifteen' WHERE a=18812; UPDATE t2 SET c='ninety-one thousand eight hundred sixty-three' WHERE a=18813; UPDATE t2 SET c='sixty thousand five hundred twenty-two' WHERE a=18814; UPDATE t2 SET c='ninety-four thousand two hundred forty-six' WHERE a=18815; UPDATE t2 SET c='eight thousand eight hundred eighty-nine' WHERE a=18816; UPDATE t2 SET c='eighty-seven thousand six hundred sixty-nine' WHERE a=18817; UPDATE t2 SET c='ninety-one thousand two hundred one' WHERE a=18818; UPDATE t2 SET c='sixty-seven thousand three hundred forty-two' WHERE a=18819; UPDATE t2 SET c='eighty thousand twenty-nine' WHERE a=18820; UPDATE t2 SET c='ninety-four thousand six hundred fifty-eight' WHERE a=18821; UPDATE t2 SET c='fifteen thousand nine hundred forty-seven' WHERE a=18822; UPDATE t2 SET c='forty-one thousand six hundred one' WHERE a=18823; UPDATE t2 SET c='thirty-seven thousand sixty' WHERE a=18824; UPDATE t2 SET c='eighty-nine thousand four hundred twelve' WHERE a=18825; UPDATE t2 SET c='three hundred forty-two' WHERE a=18826; UPDATE t2 SET c='nineteen thousand three hundred sixty' WHERE a=18827; UPDATE t2 SET c='thirty-five thousand seven hundred fifty-four' WHERE a=18828; UPDATE t2 SET c='sixty-eight thousand four hundred eighty-four' WHERE a=18829; UPDATE t2 SET c='twenty-eight thousand sixty-seven' WHERE a=18830; UPDATE t2 SET c='sixty-one thousand four hundred seventy-eight' WHERE a=18831; UPDATE t2 SET c='ninety-four thousand eight hundred thirty-three' WHERE a=18832; UPDATE t2 SET c='twenty-one thousand four hundred seventy-nine' WHERE a=18833; UPDATE t2 SET c='eighty-four thousand eight hundred fifty-two' WHERE a=18834; UPDATE t2 SET c='ninety thousand nine hundred fifty-four' WHERE a=18835; UPDATE t2 SET c='sixty-eight thousand five hundred eighty-eight' WHERE a=18836; UPDATE t2 SET c='fourteen thousand two' WHERE a=18837; UPDATE t2 SET c='twenty-four thousand nine hundred seventy-nine' WHERE a=18838; UPDATE t2 SET c='forty-one thousand five hundred nineteen' WHERE a=18839; UPDATE t2 SET c='twenty-nine thousand three hundred ninety-three' WHERE a=18840; UPDATE t2 SET c='twelve thousand one' WHERE a=18841; UPDATE t2 SET c='fifty-five thousand one hundred fourteen' WHERE a=18842; UPDATE t2 SET c='eleven thousand one hundred fifty-four' WHERE a=18843; UPDATE t2 SET c='fifty-six thousand seventy-one' WHERE a=18844; UPDATE t2 SET c='twenty-one thousand seven hundred thirty-seven' WHERE a=18845; UPDATE t2 SET c='seven thousand nine hundred fourteen' WHERE a=18846; UPDATE t2 SET c='forty-nine thousand one hundred eighty-three' WHERE a=18847; UPDATE t2 SET c='sixty-seven thousand two hundred eighty-nine' WHERE a=18848; UPDATE t2 SET c='sixty-nine thousand nine hundred ninety-eight' WHERE a=18849; UPDATE t2 SET c='twenty-one thousand one hundred ninety' WHERE a=18850; UPDATE t2 SET c='five thousand three hundred nineteen' WHERE a=18851; UPDATE t2 SET c='twenty thousand eight hundred ninety-five' WHERE a=18852; UPDATE t2 SET c='fifty-four thousand six hundred eleven' WHERE a=18853; UPDATE t2 SET c='thirty-six thousand three hundred sixty-five' WHERE a=18854; UPDATE t2 SET c='sixty-seven thousand four hundred forty-seven' WHERE a=18855; UPDATE t2 SET c='eighty-four thousand one hundred sixteen' WHERE a=18856; UPDATE t2 SET c='eighty-eight thousand forty' WHERE a=18857; UPDATE t2 SET c='forty-four thousand two hundred six' WHERE a=18858; UPDATE t2 SET c='four thousand two hundred thirty-nine' WHERE a=18859; UPDATE t2 SET c='six thousand three hundred thirty-one' WHERE a=18860; UPDATE t2 SET c='seventy-five thousand nine hundred twenty-eight' WHERE a=18861; UPDATE t2 SET c='eighty-five thousand eighty-six' WHERE a=18862; UPDATE t2 SET c='forty-four thousand six hundred sixty-nine' WHERE a=18863; UPDATE t2 SET c='fifty-eight thousand nine hundred twenty-five' WHERE a=18864; UPDATE t2 SET c='thirty-one thousand nine hundred seventy-one' WHERE a=18865; UPDATE t2 SET c='ninety-one thousand sixty-nine' WHERE a=18866; UPDATE t2 SET c='seventy thousand seven hundred eighty' WHERE a=18867; UPDATE t2 SET c='seventy-two thousand eight hundred forty-two' WHERE a=18868; UPDATE t2 SET c='fifty-five thousand five hundred eighty-seven' WHERE a=18869; UPDATE t2 SET c='eighteen thousand twenty-four' WHERE a=18870; UPDATE t2 SET c='forty-six thousand fifty-seven' WHERE a=18871; UPDATE t2 SET c='ninety-six thousand eight hundred ninety' WHERE a=18872; UPDATE t2 SET c='one thousand two hundred seventy-eight' WHERE a=18873; UPDATE t2 SET c='sixty-three thousand nine hundred fifty-three' WHERE a=18874; UPDATE t2 SET c='forty-four thousand six hundred sixty-one' WHERE a=18875; UPDATE t2 SET c='twenty-seven thousand one hundred ninety-three' WHERE a=18876; UPDATE t2 SET c='fourteen thousand one hundred eighty-nine' WHERE a=18877; UPDATE t2 SET c='five thousand nine hundred fifty-seven' WHERE a=18878; UPDATE t2 SET c='twenty-six thousand one hundred forty-eight' WHERE a=18879; UPDATE t2 SET c='twenty-five thousand six hundred forty-eight' WHERE a=18880; UPDATE t2 SET c='twenty-three thousand five hundred sixty' WHERE a=18881; UPDATE t2 SET c='ninety-six thousand two hundred eight' WHERE a=18882; UPDATE t2 SET c='sixty-two thousand two hundred eighty-seven' WHERE a=18883; UPDATE t2 SET c='twenty-five thousand three hundred eight' WHERE a=18884; UPDATE t2 SET c='sixty-nine thousand five hundred eighty-two' WHERE a=18885; UPDATE t2 SET c='thirty-five thousand one hundred nine' WHERE a=18886; UPDATE t2 SET c='thirty-three thousand five hundred ninety-eight' WHERE a=18887; UPDATE t2 SET c='twenty-three thousand eighty-seven' WHERE a=18888; UPDATE t2 SET c='forty-five thousand four hundred thirteen' WHERE a=18889; UPDATE t2 SET c='seven thousand two hundred ninety-eight' WHERE a=18890; UPDATE t2 SET c='thirteen thousand eight hundred sixty-seven' WHERE a=18891; UPDATE t2 SET c='five thousand nine hundred seventy-four' WHERE a=18892; UPDATE t2 SET c='seven hundred two' WHERE a=18893; UPDATE t2 SET c='forty-nine thousand five hundred forty-nine' WHERE a=18894; UPDATE t2 SET c='twenty-seven thousand two hundred fifty-two' WHERE a=18895; UPDATE t2 SET c='eight thousand three hundred twenty-four' WHERE a=18896; UPDATE t2 SET c='fifty-seven thousand four hundred forty-eight' WHERE a=18897; UPDATE t2 SET c='eighty thousand five hundred seventy-two' WHERE a=18898; UPDATE t2 SET c='twenty-six thousand three hundred thirty-six' WHERE a=18899; UPDATE t2 SET c='eighty-three thousand two hundred thirty-two' WHERE a=18900; UPDATE t2 SET c='three thousand two hundred twenty-three' WHERE a=18901; UPDATE t2 SET c='sixty-three thousand one hundred twenty-three' WHERE a=18902; UPDATE t2 SET c='seventeen thousand one hundred thirty-two' WHERE a=18903; UPDATE t2 SET c='sixty thousand twenty-three' WHERE a=18904; UPDATE t2 SET c='seventeen thousand four hundred seventy-eight' WHERE a=18905; UPDATE t2 SET c='ninety-nine thousand three hundred twenty-nine' WHERE a=18906; UPDATE t2 SET c='twenty-four thousand eighty-five' WHERE a=18907; UPDATE t2 SET c='forty-nine thousand three hundred sixty-eight' WHERE a=18908; UPDATE t2 SET c='fourteen thousand four hundred eighty-three' WHERE a=18909; UPDATE t2 SET c='thirty-six thousand five hundred seventeen' WHERE a=18910; UPDATE t2 SET c='twenty-four thousand four hundred thirty-eight' WHERE a=18911; UPDATE t2 SET c='forty-four thousand four hundred twenty-three' WHERE a=18912; UPDATE t2 SET c='sixty-one thousand eight hundred five' WHERE a=18913; UPDATE t2 SET c='seventy-three thousand eight hundred forty-three' WHERE a=18914; UPDATE t2 SET c='seventy-five thousand six hundred eighty' WHERE a=18915; UPDATE t2 SET c='sixty-five thousand thirty-seven' WHERE a=18916; UPDATE t2 SET c='fifty-two thousand seven hundred eighty' WHERE a=18917; UPDATE t2 SET c='thirty-six thousand four hundred ten' WHERE a=18918; UPDATE t2 SET c='ninety-two thousand nine hundred forty-two' WHERE a=18919; UPDATE t2 SET c='fifteen thousand six hundred ninety' WHERE a=18920; UPDATE t2 SET c='ninety-six thousand seven hundred forty-one' WHERE a=18921; UPDATE t2 SET c='fifteen thousand two hundred ten' WHERE a=18922; UPDATE t2 SET c='fifty-three thousand seven hundred forty-seven' WHERE a=18923; UPDATE t2 SET c='eighty-nine thousand five hundred seventy-eight' WHERE a=18924; UPDATE t2 SET c='fifty-five thousand two hundred sixty-seven' WHERE a=18925; UPDATE t2 SET c='thirty-one thousand five hundred eighty-six' WHERE a=18926; UPDATE t2 SET c='sixty-seven thousand thirty-six' WHERE a=18927; UPDATE t2 SET c='sixty-nine thousand three hundred thirty-eight' WHERE a=18928; UPDATE t2 SET c='thirty-five thousand twenty-six' WHERE a=18929; UPDATE t2 SET c='ninety-one thousand two hundred forty' WHERE a=18930; UPDATE t2 SET c='thirty-one thousand five hundred thirty' WHERE a=18931; UPDATE t2 SET c='sixty thousand seven hundred forty-seven' WHERE a=18932; UPDATE t2 SET c='six thousand six hundred fifty-eight' WHERE a=18933; UPDATE t2 SET c='eighty-nine thousand five hundred twenty-eight' WHERE a=18934; UPDATE t2 SET c='sixty-two thousand five hundred twenty' WHERE a=18935; UPDATE t2 SET c='sixty-six thousand seven hundred sixty-three' WHERE a=18936; UPDATE t2 SET c='forty-one thousand five hundred forty-seven' WHERE a=18937; UPDATE t2 SET c='nine thousand five hundred ninety-seven' WHERE a=18938; UPDATE t2 SET c='ninety-two thousand eight hundred sixty-seven' WHERE a=18939; UPDATE t2 SET c='ninety-five thousand nine hundred seventy-one' WHERE a=18940; UPDATE t2 SET c='four thousand five hundred seventy-six' WHERE a=18941; UPDATE t2 SET c='thirty-four thousand forty-eight' WHERE a=18942; UPDATE t2 SET c='seventy-four thousand seven hundred twelve' WHERE a=18943; UPDATE t2 SET c='three thousand seven hundred ninety-three' WHERE a=18944; UPDATE t2 SET c='fifty-one thousand six hundred sixty-three' WHERE a=18945; UPDATE t2 SET c='thirty-four thousand eight hundred eighty-two' WHERE a=18946; UPDATE t2 SET c='twenty-six thousand two hundred eighty-two' WHERE a=18947; UPDATE t2 SET c='thirty-five thousand eight hundred thirty-six' WHERE a=18948; UPDATE t2 SET c='seventy-three thousand two hundred seventy-four' WHERE a=18949; UPDATE t2 SET c='thirty-nine thousand five hundred fifty-one' WHERE a=18950; UPDATE t2 SET c='ninety-seven thousand seven hundred forty-two' WHERE a=18951; UPDATE t2 SET c='thirty-nine thousand two hundred eighty-three' WHERE a=18952; UPDATE t2 SET c='eighty-four thousand five hundred twenty-one' WHERE a=18953; UPDATE t2 SET c='thirty-four thousand two hundred eleven' WHERE a=18954; UPDATE t2 SET c='thirty-five thousand five hundred fifty-two' WHERE a=18955; UPDATE t2 SET c='fifty-one thousand five hundred eight' WHERE a=18956; UPDATE t2 SET c='eighty-one thousand eighty' WHERE a=18957; UPDATE t2 SET c='thirty-one thousand two hundred fifty-two' WHERE a=18958; UPDATE t2 SET c='ninety-one thousand four hundred forty-one' WHERE a=18959; UPDATE t2 SET c='forty-three thousand eight hundred' WHERE a=18960; UPDATE t2 SET c='ninety-eight thousand six hundred eighty-five' WHERE a=18961; UPDATE t2 SET c='thirty-nine thousand six hundred sixty-six' WHERE a=18962; UPDATE t2 SET c='ninety-three thousand six hundred eighty-six' WHERE a=18963; UPDATE t2 SET c='ninety-eight thousand two hundred ninety-nine' WHERE a=18964; UPDATE t2 SET c='eighty thousand five hundred forty-six' WHERE a=18965; UPDATE t2 SET c='five thousand three hundred ninety' WHERE a=18966; UPDATE t2 SET c='twenty-five thousand eighty-six' WHERE a=18967; UPDATE t2 SET c='sixty-five thousand four hundred eighty-four' WHERE a=18968; UPDATE t2 SET c='thirty thousand sixty-one' WHERE a=18969; UPDATE t2 SET c='seventy thousand four hundred forty' WHERE a=18970; UPDATE t2 SET c='seventy-five thousand nine hundred fifty-five' WHERE a=18971; UPDATE t2 SET c='twenty-nine thousand three hundred twenty-six' WHERE a=18972; UPDATE t2 SET c='forty-five thousand nine hundred ninety-four' WHERE a=18973; UPDATE t2 SET c='fifty-three thousand five hundred nineteen' WHERE a=18974; UPDATE t2 SET c='nine thousand one hundred eleven' WHERE a=18975; UPDATE t2 SET c='thirty-four thousand three hundred seventy' WHERE a=18976; UPDATE t2 SET c='thirty-four thousand eight hundred six' WHERE a=18977; UPDATE t2 SET c='fifty-nine thousand nine hundred one' WHERE a=18978; UPDATE t2 SET c='three thousand six hundred ten' WHERE a=18979; UPDATE t2 SET c='twenty thousand five hundred twenty-seven' WHERE a=18980; UPDATE t2 SET c='fifty-three thousand five hundred two' WHERE a=18981; UPDATE t2 SET c='forty thousand two hundred ten' WHERE a=18982; UPDATE t2 SET c='sixty-nine thousand two hundred thirty-six' WHERE a=18983; UPDATE t2 SET c='forty-three thousand four hundred twenty-seven' WHERE a=18984; UPDATE t2 SET c='fifty-four thousand five hundred eighty-four' WHERE a=18985; UPDATE t2 SET c='sixty-one thousand nine hundred fifty-six' WHERE a=18986; UPDATE t2 SET c='eighty-six thousand six hundred twenty-five' WHERE a=18987; UPDATE t2 SET c='forty-nine thousand seven hundred fifty-six' WHERE a=18988; UPDATE t2 SET c='seventy-seven thousand seventy-nine' WHERE a=18989; UPDATE t2 SET c='forty-five thousand six hundred ninety-two' WHERE a=18990; UPDATE t2 SET c='thirty-seven thousand one hundred ninety-three' WHERE a=18991; UPDATE t2 SET c='twelve thousand two hundred forty-six' WHERE a=18992; UPDATE t2 SET c='thirty-eight thousand eighty-six' WHERE a=18993; UPDATE t2 SET c='fifty-four thousand four hundred forty-three' WHERE a=18994; UPDATE t2 SET c='sixty-five thousand forty-four' WHERE a=18995; UPDATE t2 SET c='sixty-eight thousand eight hundred twelve' WHERE a=18996; UPDATE t2 SET c='twenty-four thousand seven hundred two' WHERE a=18997; UPDATE t2 SET c='eighty-six thousand three hundred fifty-four' WHERE a=18998; UPDATE t2 SET c='forty-two thousand two hundred fifty-eight' WHERE a=18999; UPDATE t2 SET c='twenty-five thousand nine hundred twenty-five' WHERE a=19000; UPDATE t2 SET c='twenty-four thousand three hundred eighty-two' WHERE a=19001; UPDATE t2 SET c='forty-five thousand four hundred forty-nine' WHERE a=19002; UPDATE t2 SET c='eighty-five thousand six hundred thirty-eight' WHERE a=19003; UPDATE t2 SET c='eighteen thousand nine hundred eighty' WHERE a=19004; UPDATE t2 SET c='twenty-three thousand three hundred fifty-one' WHERE a=19005; UPDATE t2 SET c='seventy-eight thousand two hundred twenty-five' WHERE a=19006; UPDATE t2 SET c='sixty-nine thousand eight hundred thirty-seven' WHERE a=19007; UPDATE t2 SET c='thirty-nine thousand two hundred sixty-nine' WHERE a=19008; UPDATE t2 SET c='forty-seven thousand seven hundred eighty-five' WHERE a=19009; UPDATE t2 SET c='ninety-one thousand six hundred sixty-three' WHERE a=19010; UPDATE t2 SET c='thirty-nine thousand one hundred forty-five' WHERE a=19011; UPDATE t2 SET c='sixty-four thousand three hundred fifty-five' WHERE a=19012; UPDATE t2 SET c='fourteen thousand three hundred ten' WHERE a=19013; UPDATE t2 SET c='one thousand one hundred seventy-one' WHERE a=19014; UPDATE t2 SET c='eleven thousand four hundred fifteen' WHERE a=19015; UPDATE t2 SET c='ninety-four thousand one hundred fifty-one' WHERE a=19016; UPDATE t2 SET c='eleven thousand two hundred' WHERE a=19017; UPDATE t2 SET c='ten thousand two hundred four' WHERE a=19018; UPDATE t2 SET c='seventy-five thousand two hundred sixty' WHERE a=19019; UPDATE t2 SET c='thirty-five thousand seven hundred thirty-six' WHERE a=19020; UPDATE t2 SET c='eighty-six thousand one hundred twenty-two' WHERE a=19021; UPDATE t2 SET c='sixty-three thousand nine hundred eighteen' WHERE a=19022; UPDATE t2 SET c='fifteen thousand seven hundred twenty-one' WHERE a=19023; UPDATE t2 SET c='two thousand one hundred sixty-two' WHERE a=19024; UPDATE t2 SET c='fifty-seven thousand six hundred seventy-three' WHERE a=19025; UPDATE t2 SET c='forty thousand two hundred twelve' WHERE a=19026; UPDATE t2 SET c='forty thousand eight hundred fifty-five' WHERE a=19027; UPDATE t2 SET c='ninety-six thousand seven hundred eighty-nine' WHERE a=19028; UPDATE t2 SET c='twenty thousand thirty-four' WHERE a=19029; UPDATE t2 SET c='fifty-five thousand two hundred eighty-nine' WHERE a=19030; UPDATE t2 SET c='fifty-seven thousand five hundred sixteen' WHERE a=19031; UPDATE t2 SET c='thirteen thousand three hundred thirty-six' WHERE a=19032; UPDATE t2 SET c='forty-nine thousand five hundred eighty-two' WHERE a=19033; UPDATE t2 SET c='twenty-three thousand nine hundred fifty-five' WHERE a=19034; UPDATE t2 SET c='twenty-two thousand five hundred eighty-two' WHERE a=19035; UPDATE t2 SET c='ninety-eight thousand three hundred fifty-eight' WHERE a=19036; UPDATE t2 SET c='seventy-one thousand two hundred eighty-three' WHERE a=19037; UPDATE t2 SET c='two thousand two hundred sixteen' WHERE a=19038; UPDATE t2 SET c='thirty-four thousand two hundred six' WHERE a=19039; UPDATE t2 SET c='fifteen thousand six hundred fifty-six' WHERE a=19040; UPDATE t2 SET c='seventy-two thousand seven hundred thirty-eight' WHERE a=19041; UPDATE t2 SET c='thirty-six thousand nine hundred four' WHERE a=19042; UPDATE t2 SET c='thirty-one thousand six hundred sixteen' WHERE a=19043; UPDATE t2 SET c='thirty-four thousand eight hundred twenty' WHERE a=19044; UPDATE t2 SET c='two thousand seventy-nine' WHERE a=19045; UPDATE t2 SET c='fifteen thousand five hundred twenty-one' WHERE a=19046; UPDATE t2 SET c='ninety thousand seven hundred forty-two' WHERE a=19047; UPDATE t2 SET c='sixty-nine thousand six hundred five' WHERE a=19048; UPDATE t2 SET c='thirty-one thousand four hundred fifty-nine' WHERE a=19049; UPDATE t2 SET c='twenty-three thousand three hundred twenty-eight' WHERE a=19050; UPDATE t2 SET c='sixty-five thousand two hundred one' WHERE a=19051; UPDATE t2 SET c='two thousand six hundred eighty-four' WHERE a=19052; UPDATE t2 SET c='forty-one thousand three hundred eight' WHERE a=19053; UPDATE t2 SET c='forty-one thousand four hundred twenty-nine' WHERE a=19054; UPDATE t2 SET c='ninety-seven thousand seven hundred forty-eight' WHERE a=19055; UPDATE t2 SET c='seventy-five thousand eight hundred seventy-one' WHERE a=19056; UPDATE t2 SET c='eleven thousand forty-six' WHERE a=19057; UPDATE t2 SET c='ninety-seven thousand six hundred nine' WHERE a=19058; UPDATE t2 SET c='fifty-seven thousand four hundred fifty-three' WHERE a=19059; UPDATE t2 SET c='thirty-two thousand sixty-two' WHERE a=19060; UPDATE t2 SET c='fifty-four thousand twenty' WHERE a=19061; UPDATE t2 SET c='sixty thousand eight hundred forty-four' WHERE a=19062; UPDATE t2 SET c='sixty-seven thousand eight hundred eighty' WHERE a=19063; UPDATE t2 SET c='seven thousand nine hundred fifteen' WHERE a=19064; UPDATE t2 SET c='nine thousand five hundred ninety-seven' WHERE a=19065; UPDATE t2 SET c='forty thousand one hundred twelve' WHERE a=19066; UPDATE t2 SET c='four thousand nine hundred seventy-seven' WHERE a=19067; UPDATE t2 SET c='sixty-five thousand five hundred thirty-nine' WHERE a=19068; UPDATE t2 SET c='ninety-eight thousand three hundred twenty-five' WHERE a=19069; UPDATE t2 SET c='thirty-six thousand six hundred forty-seven' WHERE a=19070; UPDATE t2 SET c='sixty thousand seven hundred twenty-one' WHERE a=19071; UPDATE t2 SET c='forty thousand four hundred eleven' WHERE a=19072; UPDATE t2 SET c='sixty-nine thousand five hundred ninety-three' WHERE a=19073; UPDATE t2 SET c='thirty-three thousand four hundred ninety-eight' WHERE a=19074; UPDATE t2 SET c='twenty-eight thousand nine hundred six' WHERE a=19075; UPDATE t2 SET c='ninety-six thousand one hundred nineteen' WHERE a=19076; UPDATE t2 SET c='twenty-five thousand six hundred two' WHERE a=19077; UPDATE t2 SET c='seventy-eight thousand nine hundred fifty-six' WHERE a=19078; UPDATE t2 SET c='thirty-two thousand one hundred thirty' WHERE a=19079; UPDATE t2 SET c='eighty-nine thousand three hundred sixty-five' WHERE a=19080; UPDATE t2 SET c='fifty-two thousand four hundred sixty-six' WHERE a=19081; UPDATE t2 SET c='ninety-six thousand three hundred twenty-six' WHERE a=19082; UPDATE t2 SET c='twenty-eight thousand seven hundred twenty-four' WHERE a=19083; UPDATE t2 SET c='thirty-one thousand five hundred five' WHERE a=19084; UPDATE t2 SET c='ninety thousand four hundred sixty-two' WHERE a=19085; UPDATE t2 SET c='thirty-four thousand nine hundred eighty-three' WHERE a=19086; UPDATE t2 SET c='forty-five thousand five hundred fifty-one' WHERE a=19087; UPDATE t2 SET c='eight thousand three hundred thirty-six' WHERE a=19088; UPDATE t2 SET c='forty thousand five hundred fifty-three' WHERE a=19089; UPDATE t2 SET c='sixty-three thousand six hundred seventy-eight' WHERE a=19090; UPDATE t2 SET c='eighty-four thousand five hundred ninety-two' WHERE a=19091; UPDATE t2 SET c='forty-nine thousand five hundred eighty-five' WHERE a=19092; UPDATE t2 SET c='seventy-six thousand seven hundred fifty' WHERE a=19093; UPDATE t2 SET c='ninety-nine thousand six hundred sixteen' WHERE a=19094; UPDATE t2 SET c='eighty thousand nine hundred ninety-four' WHERE a=19095; UPDATE t2 SET c='fifty-three thousand nine hundred ninety-seven' WHERE a=19096; UPDATE t2 SET c='eighty-seven thousand three hundred thirty-seven' WHERE a=19097; UPDATE t2 SET c='seventy-three thousand one hundred fifteen' WHERE a=19098; UPDATE t2 SET c='eighty-three thousand sixty-five' WHERE a=19099; UPDATE t2 SET c='ninety-seven thousand four hundred ten' WHERE a=19100; UPDATE t2 SET c='seventy thousand nine hundred sixty-two' WHERE a=19101; UPDATE t2 SET c='ninety-six thousand six hundred seventy-five' WHERE a=19102; UPDATE t2 SET c='ninety-one thousand thirty-seven' WHERE a=19103; UPDATE t2 SET c='seventy-six thousand seven hundred thirty' WHERE a=19104; UPDATE t2 SET c='fourteen thousand seventy' WHERE a=19105; UPDATE t2 SET c='eighty-five thousand seven hundred sixteen' WHERE a=19106; UPDATE t2 SET c='seventy-nine thousand one hundred eleven' WHERE a=19107; UPDATE t2 SET c='thirty-four thousand eight hundred sixty-three' WHERE a=19108; UPDATE t2 SET c='thirty-one thousand two hundred forty' WHERE a=19109; UPDATE t2 SET c='twenty-five thousand three hundred eighty-seven' WHERE a=19110; UPDATE t2 SET c='thirty-seven thousand nine hundred sixty-three' WHERE a=19111; UPDATE t2 SET c='twenty thousand nine hundred sixty-five' WHERE a=19112; UPDATE t2 SET c='eighty-three thousand sixty-nine' WHERE a=19113; UPDATE t2 SET c='ninety-one thousand seventeen' WHERE a=19114; UPDATE t2 SET c='seventy-five thousand four hundred seventy-seven' WHERE a=19115; UPDATE t2 SET c='sixty-one thousand fourteen' WHERE a=19116; UPDATE t2 SET c='seventy-three thousand one hundred fourteen' WHERE a=19117; UPDATE t2 SET c='fifty-four thousand one hundred fifty-eight' WHERE a=19118; UPDATE t2 SET c='forty thousand seven hundred five' WHERE a=19119; UPDATE t2 SET c='seventy-six thousand three hundred forty-eight' WHERE a=19120; UPDATE t2 SET c='thirty-four thousand eight hundred sixty-eight' WHERE a=19121; UPDATE t2 SET c='fifty-eight thousand nine hundred three' WHERE a=19122; UPDATE t2 SET c='twenty-nine thousand four hundred forty' WHERE a=19123; UPDATE t2 SET c='nine thousand four hundred eighty-four' WHERE a=19124; UPDATE t2 SET c='ninety thousand two hundred fifty-six' WHERE a=19125; UPDATE t2 SET c='fifty-seven thousand one hundred sixty-five' WHERE a=19126; UPDATE t2 SET c='sixty-nine thousand eight hundred ninety' WHERE a=19127; UPDATE t2 SET c='eighty thousand four hundred sixteen' WHERE a=19128; UPDATE t2 SET c='four thousand eight hundred thirty-five' WHERE a=19129; UPDATE t2 SET c='forty-six thousand one hundred ninety-four' WHERE a=19130; UPDATE t2 SET c='seventy thousand one hundred fifteen' WHERE a=19131; UPDATE t2 SET c='fifty-five thousand three hundred eighty-one' WHERE a=19132; UPDATE t2 SET c='sixty-six thousand three hundred sixty-five' WHERE a=19133; UPDATE t2 SET c='twenty-one thousand six hundred seventy-three' WHERE a=19134; UPDATE t2 SET c='eighty-one thousand three hundred twenty-one' WHERE a=19135; UPDATE t2 SET c='seventy-nine thousand three hundred ninety-six' WHERE a=19136; UPDATE t2 SET c='eighty-six thousand twenty-three' WHERE a=19137; UPDATE t2 SET c='seventy-one thousand one hundred twenty-nine' WHERE a=19138; UPDATE t2 SET c='twenty-five thousand fifty' WHERE a=19139; UPDATE t2 SET c='fifty-nine thousand two hundred twenty-five' WHERE a=19140; UPDATE t2 SET c='seventeen thousand six hundred eighty-six' WHERE a=19141; UPDATE t2 SET c='fifty-two thousand six hundred twenty-nine' WHERE a=19142; UPDATE t2 SET c='thirty-two thousand one hundred eighty-one' WHERE a=19143; UPDATE t2 SET c='sixty-five thousand seven hundred thirty-two' WHERE a=19144; UPDATE t2 SET c='eighty-six thousand two hundred' WHERE a=19145; UPDATE t2 SET c='ninety-three thousand nine hundred twenty-seven' WHERE a=19146; UPDATE t2 SET c='nineteen thousand two hundred eighty' WHERE a=19147; UPDATE t2 SET c='fifty-six thousand two hundred twenty-eight' WHERE a=19148; UPDATE t2 SET c='seventy-four thousand nine hundred sixty-one' WHERE a=19149; UPDATE t2 SET c='fifty-nine thousand three hundred forty-eight' WHERE a=19150; UPDATE t2 SET c='sixty-six thousand two hundred sixty-one' WHERE a=19151; UPDATE t2 SET c='sixty-five thousand two hundred ten' WHERE a=19152; UPDATE t2 SET c='one thousand six hundred twenty-nine' WHERE a=19153; UPDATE t2 SET c='forty-two thousand nine hundred ninety-eight' WHERE a=19154; UPDATE t2 SET c='eight thousand three hundred thirty' WHERE a=19155; UPDATE t2 SET c='twenty-eight thousand seven hundred eighty-one' WHERE a=19156; UPDATE t2 SET c='seven thousand sixty-eight' WHERE a=19157; UPDATE t2 SET c='forty-four thousand five hundred forty-eight' WHERE a=19158; UPDATE t2 SET c='seventy-one thousand seven hundred thirty-five' WHERE a=19159; UPDATE t2 SET c='seven thousand one hundred fifteen' WHERE a=19160; UPDATE t2 SET c='thirty-six thousand three hundred twenty-nine' WHERE a=19161; UPDATE t2 SET c='seventy-six thousand two hundred seventy-five' WHERE a=19162; UPDATE t2 SET c='thirty-five thousand forty-two' WHERE a=19163; UPDATE t2 SET c='ninety thousand three hundred thirty-one' WHERE a=19164; UPDATE t2 SET c='ninety-seven thousand eight hundred fifty-four' WHERE a=19165; UPDATE t2 SET c='eighty thousand nine hundred fifty' WHERE a=19166; UPDATE t2 SET c='seventy-three thousand three hundred ninety-eight' WHERE a=19167; UPDATE t2 SET c='nineteen thousand one hundred forty-five' WHERE a=19168; UPDATE t2 SET c='eighty-nine thousand two hundred eighty-two' WHERE a=19169; UPDATE t2 SET c='eighty-one thousand one hundred twenty-one' WHERE a=19170; UPDATE t2 SET c='twenty-seven thousand nine hundred sixty-three' WHERE a=19171; UPDATE t2 SET c='seventy-six thousand two hundred seventy-six' WHERE a=19172; UPDATE t2 SET c='forty-five thousand eight hundred seventy-seven' WHERE a=19173; UPDATE t2 SET c='fifty-four thousand one hundred fifteen' WHERE a=19174; UPDATE t2 SET c='thirty-eight thousand four hundred thirty-five' WHERE a=19175; UPDATE t2 SET c='twenty thousand six hundred eight' WHERE a=19176; UPDATE t2 SET c='fifty-five thousand eighty' WHERE a=19177; UPDATE t2 SET c='nineteen thousand fifty-one' WHERE a=19178; UPDATE t2 SET c='eighty-three thousand eight hundred ninety-seven' WHERE a=19179; UPDATE t2 SET c='forty-seven thousand ninety-two' WHERE a=19180; UPDATE t2 SET c='ninety-four thousand five hundred forty-two' WHERE a=19181; UPDATE t2 SET c='thirty-six thousand seven hundred twenty-six' WHERE a=19182; UPDATE t2 SET c='forty-three thousand three hundred ten' WHERE a=19183; UPDATE t2 SET c='nine thousand three hundred eighty-five' WHERE a=19184; UPDATE t2 SET c='thirty-eight thousand one hundred seventy-five' WHERE a=19185; UPDATE t2 SET c='thirty thousand four hundred twenty-one' WHERE a=19186; UPDATE t2 SET c='sixty-eight thousand three hundred eighty' WHERE a=19187; UPDATE t2 SET c='forty-one thousand nine hundred ninety-five' WHERE a=19188; UPDATE t2 SET c='ninety-three thousand nine hundred sixty-three' WHERE a=19189; UPDATE t2 SET c='ninety-nine thousand fifteen' WHERE a=19190; UPDATE t2 SET c='seventy-six thousand two hundred ninety-seven' WHERE a=19191; UPDATE t2 SET c='one thousand seven hundred sixty-four' WHERE a=19192; UPDATE t2 SET c='nine thousand eight hundred eighty' WHERE a=19193; UPDATE t2 SET c='ninety-seven thousand four hundred three' WHERE a=19194; UPDATE t2 SET c='sixty-eight thousand seven hundred ten' WHERE a=19195; UPDATE t2 SET c='sixty-seven thousand two hundred thirty-seven' WHERE a=19196; UPDATE t2 SET c='six hundred thirty-seven' WHERE a=19197; UPDATE t2 SET c='forty thousand eight hundred twenty-five' WHERE a=19198; UPDATE t2 SET c='eighty thousand three hundred fifty-five' WHERE a=19199; UPDATE t2 SET c='fifty thousand two hundred twelve' WHERE a=19200; UPDATE t2 SET c='fifty-one thousand three hundred thirty-two' WHERE a=19201; UPDATE t2 SET c='twelve thousand six hundred thirty' WHERE a=19202; UPDATE t2 SET c='fifty thousand fifty-one' WHERE a=19203; UPDATE t2 SET c='twenty-five thousand one hundred six' WHERE a=19204; UPDATE t2 SET c='twenty-nine thousand four hundred ninety-five' WHERE a=19205; UPDATE t2 SET c='five thousand seven hundred sixty-five' WHERE a=19206; UPDATE t2 SET c='fifty-six thousand eight hundred thirty-one' WHERE a=19207; UPDATE t2 SET c='sixty-seven thousand six hundred fifty-eight' WHERE a=19208; UPDATE t2 SET c='twenty thousand two hundred thirty-three' WHERE a=19209; UPDATE t2 SET c='seventy-two thousand three hundred ninety-five' WHERE a=19210; UPDATE t2 SET c='twenty-nine thousand five hundred seven' WHERE a=19211; UPDATE t2 SET c='ninety-five thousand six hundred fifty-six' WHERE a=19212; UPDATE t2 SET c='ninety-six thousand one hundred fifty-two' WHERE a=19213; UPDATE t2 SET c='twenty-six thousand three hundred sixty-six' WHERE a=19214; UPDATE t2 SET c='twelve thousand two hundred eight' WHERE a=19215; UPDATE t2 SET c='thirty-eight thousand four hundred eighty-six' WHERE a=19216; UPDATE t2 SET c='ten thousand four hundred seventy-three' WHERE a=19217; UPDATE t2 SET c='forty-six thousand five hundred sixty' WHERE a=19218; UPDATE t2 SET c='sixty-five thousand thirteen' WHERE a=19219; UPDATE t2 SET c='ninety-seven thousand two hundred ninety-four' WHERE a=19220; UPDATE t2 SET c='eighty-nine thousand nine hundred eighty-six' WHERE a=19221; UPDATE t2 SET c='thirty-three thousand one hundred fourteen' WHERE a=19222; UPDATE t2 SET c='thirty-one thousand sixty-two' WHERE a=19223; UPDATE t2 SET c='ninety-five thousand three hundred eighty-two' WHERE a=19224; UPDATE t2 SET c='forty-five thousand eight hundred twenty-one' WHERE a=19225; UPDATE t2 SET c='forty-nine thousand one hundred one' WHERE a=19226; UPDATE t2 SET c='thirty-two thousand six hundred thirteen' WHERE a=19227; UPDATE t2 SET c='sixty-eight thousand one hundred fifty-five' WHERE a=19228; UPDATE t2 SET c='thirteen thousand six hundred seventy' WHERE a=19229; UPDATE t2 SET c='fifty-six thousand two hundred fifty-six' WHERE a=19230; UPDATE t2 SET c='seventy-five thousand seven hundred twenty-two' WHERE a=19231; UPDATE t2 SET c='twenty-three thousand nine hundred forty-seven' WHERE a=19232; UPDATE t2 SET c='three thousand one hundred thirty-eight' WHERE a=19233; UPDATE t2 SET c='ninety-four thousand twenty-two' WHERE a=19234; UPDATE t2 SET c='sixty-four thousand nine hundred five' WHERE a=19235; UPDATE t2 SET c='eighty-six thousand eight hundred twenty-seven' WHERE a=19236; UPDATE t2 SET c='forty-nine thousand eight hundred seventy' WHERE a=19237; UPDATE t2 SET c='nineteen thousand two hundred five' WHERE a=19238; UPDATE t2 SET c='fifty-three thousand one hundred ninety' WHERE a=19239; UPDATE t2 SET c='nineteen thousand six hundred sixty-one' WHERE a=19240; UPDATE t2 SET c='sixty-six thousand four hundred forty' WHERE a=19241; UPDATE t2 SET c='ninety thousand six hundred thirty-three' WHERE a=19242; UPDATE t2 SET c='twenty-seven thousand eight hundred forty-eight' WHERE a=19243; UPDATE t2 SET c='sixty-one thousand six hundred thirty-six' WHERE a=19244; UPDATE t2 SET c='seventeen thousand two hundred forty-nine' WHERE a=19245; UPDATE t2 SET c='sixty-one thousand two hundred forty-two' WHERE a=19246; UPDATE t2 SET c='eighty-three thousand two hundred twenty' WHERE a=19247; UPDATE t2 SET c='nineteen thousand five hundred twenty-three' WHERE a=19248; UPDATE t2 SET c='eighty-nine thousand nine hundred sixty-nine' WHERE a=19249; UPDATE t2 SET c='twenty-four thousand twenty-seven' WHERE a=19250; UPDATE t2 SET c='ninety-nine thousand two hundred seven' WHERE a=19251; UPDATE t2 SET c='forty-seven thousand twenty-four' WHERE a=19252; UPDATE t2 SET c='eighty-four thousand one hundred fifty-eight' WHERE a=19253; UPDATE t2 SET c='ninety-nine thousand three hundred sixty-six' WHERE a=19254; UPDATE t2 SET c='ninety-nine thousand seven hundred eighty-nine' WHERE a=19255; UPDATE t2 SET c='twenty-seven thousand nine hundred sixty-six' WHERE a=19256; UPDATE t2 SET c='eleven thousand seven hundred ninety-seven' WHERE a=19257; UPDATE t2 SET c='twenty thousand six hundred forty-one' WHERE a=19258; UPDATE t2 SET c='thirty-one thousand eight hundred forty-four' WHERE a=19259; UPDATE t2 SET c='sixty-three thousand six hundred eighty-four' WHERE a=19260; UPDATE t2 SET c='ninety thousand eight hundred seventy' WHERE a=19261; UPDATE t2 SET c='eight thousand one hundred sixty-two' WHERE a=19262; UPDATE t2 SET c='thirty-three thousand five hundred twenty-two' WHERE a=19263; UPDATE t2 SET c='seventy-one thousand five hundred ten' WHERE a=19264; UPDATE t2 SET c='ninety-seven thousand sixty-five' WHERE a=19265; UPDATE t2 SET c='sixty-five thousand one hundred fifty-nine' WHERE a=19266; UPDATE t2 SET c='one thousand eight hundred seven' WHERE a=19267; UPDATE t2 SET c='fifteen thousand three hundred seventy-six' WHERE a=19268; UPDATE t2 SET c='sixty-four thousand seven hundred eighty-four' WHERE a=19269; UPDATE t2 SET c='eighty-eight thousand nine hundred six' WHERE a=19270; UPDATE t2 SET c='fifty-eight thousand eight hundred eighty-eight' WHERE a=19271; UPDATE t2 SET c='eighty-three thousand eight hundred sixty' WHERE a=19272; UPDATE t2 SET c='twenty-two thousand eight hundred ninety-three' WHERE a=19273; UPDATE t2 SET c='sixty-seven thousand five hundred eighty-six' WHERE a=19274; UPDATE t2 SET c='fifty-seven thousand one hundred fifty-one' WHERE a=19275; UPDATE t2 SET c='forty-nine thousand eight hundred seventy-two' WHERE a=19276; UPDATE t2 SET c='forty-three thousand five hundred forty-seven' WHERE a=19277; UPDATE t2 SET c='seventy-one thousand three hundred ninety-five' WHERE a=19278; UPDATE t2 SET c='seventy-six thousand three hundred thirty-two' WHERE a=19279; UPDATE t2 SET c='two thousand thirteen' WHERE a=19280; UPDATE t2 SET c='sixty-one thousand eight hundred fifty-five' WHERE a=19281; UPDATE t2 SET c='seventy-three thousand fifty-seven' WHERE a=19282; UPDATE t2 SET c='forty-three thousand eighty-two' WHERE a=19283; UPDATE t2 SET c='nine thousand eight hundred eighty-nine' WHERE a=19284; UPDATE t2 SET c='thirty-seven thousand two hundred thirty-eight' WHERE a=19285; UPDATE t2 SET c='seventeen thousand three hundred eighty-five' WHERE a=19286; UPDATE t2 SET c='thirty-six' WHERE a=19287; UPDATE t2 SET c='forty-five thousand six hundred fifty-seven' WHERE a=19288; UPDATE t2 SET c='forty-two thousand one hundred forty-six' WHERE a=19289; UPDATE t2 SET c='seventy-six thousand four hundred twenty' WHERE a=19290; UPDATE t2 SET c='fifty-two thousand four hundred eleven' WHERE a=19291; UPDATE t2 SET c='sixty-one thousand five hundred eighty-seven' WHERE a=19292; UPDATE t2 SET c='seventy-seven thousand nine hundred thirty-four' WHERE a=19293; UPDATE t2 SET c='sixty-nine thousand six hundred forty-five' WHERE a=19294; UPDATE t2 SET c='fifty-three thousand five hundred fifty' WHERE a=19295; UPDATE t2 SET c='thirty-five thousand eight hundred thirty-nine' WHERE a=19296; UPDATE t2 SET c='seven thousand eight hundred thirty-six' WHERE a=19297; UPDATE t2 SET c='thirty thousand nine hundred thirty-six' WHERE a=19298; UPDATE t2 SET c='nine thousand two hundred eighty-one' WHERE a=19299; UPDATE t2 SET c='seventy-four thousand thirty-four' WHERE a=19300; UPDATE t2 SET c='nine thousand five hundred thirty-seven' WHERE a=19301; UPDATE t2 SET c='seventy-two thousand two hundred eighty-eight' WHERE a=19302; UPDATE t2 SET c='seventy-four thousand four hundred seventy-five' WHERE a=19303; UPDATE t2 SET c='twenty-six thousand five hundred eighty-four' WHERE a=19304; UPDATE t2 SET c='fifty-seven thousand five hundred fifty-three' WHERE a=19305; UPDATE t2 SET c='thirty-three thousand three hundred eleven' WHERE a=19306; UPDATE t2 SET c='eight thousand one hundred seventy-seven' WHERE a=19307; UPDATE t2 SET c='ninety-eight thousand five hundred three' WHERE a=19308; UPDATE t2 SET c='eighty-two thousand two hundred eighty-five' WHERE a=19309; UPDATE t2 SET c='seventy-four thousand eight hundred fifteen' WHERE a=19310; UPDATE t2 SET c='eighty-seven thousand one' WHERE a=19311; UPDATE t2 SET c='seventy-seven thousand eight hundred seventy-seven' WHERE a=19312; UPDATE t2 SET c='fifty-one thousand one hundred twenty-two' WHERE a=19313; UPDATE t2 SET c='thirty-seven thousand six hundred seventy-seven' WHERE a=19314; UPDATE t2 SET c='seventy-one thousand two hundred twenty-three' WHERE a=19315; UPDATE t2 SET c='ninety-one thousand five hundred eighty-three' WHERE a=19316; UPDATE t2 SET c='forty-two thousand nine hundred seventy-one' WHERE a=19317; UPDATE t2 SET c='thirty-six thousand five hundred ninety-five' WHERE a=19318; UPDATE t2 SET c='thirty-five thousand seven hundred thirteen' WHERE a=19319; UPDATE t2 SET c='thirty-six thousand forty-four' WHERE a=19320; UPDATE t2 SET c='forty-five thousand two hundred fifty-five' WHERE a=19321; UPDATE t2 SET c='seventy-eight thousand five hundred eighty-four' WHERE a=19322; UPDATE t2 SET c='thirty-eight thousand five hundred two' WHERE a=19323; UPDATE t2 SET c='thirty-five thousand six hundred eighteen' WHERE a=19324; UPDATE t2 SET c='thirty-one thousand six hundred twenty-two' WHERE a=19325; UPDATE t2 SET c='four thousand one hundred twenty-four' WHERE a=19326; UPDATE t2 SET c='forty-six thousand three hundred seventy-six' WHERE a=19327; UPDATE t2 SET c='eighty-seven thousand six hundred eighty-seven' WHERE a=19328; UPDATE t2 SET c='ninety-one thousand two hundred sixteen' WHERE a=19329; UPDATE t2 SET c='fifty-six thousand eight hundred three' WHERE a=19330; UPDATE t2 SET c='thirty-two thousand one hundred fifty-one' WHERE a=19331; UPDATE t2 SET c='forty-four thousand three hundred seventy-three' WHERE a=19332; UPDATE t2 SET c='ninety-seven thousand two hundred fifty-nine' WHERE a=19333; UPDATE t2 SET c='sixteen thousand six hundred forty-eight' WHERE a=19334; UPDATE t2 SET c='thirty-four thousand two hundred twenty' WHERE a=19335; UPDATE t2 SET c='ninety-seven thousand two hundred ninety-nine' WHERE a=19336; UPDATE t2 SET c='forty-six thousand six hundred fifty-four' WHERE a=19337; UPDATE t2 SET c='ninety thousand seven hundred seventy-nine' WHERE a=19338; UPDATE t2 SET c='five thousand six hundred seventy-four' WHERE a=19339; UPDATE t2 SET c='eighty-two thousand nine hundred twelve' WHERE a=19340; UPDATE t2 SET c='nineteen thousand three hundred seventy-four' WHERE a=19341; UPDATE t2 SET c='ninety-eight thousand two hundred ninety-nine' WHERE a=19342; UPDATE t2 SET c='sixty-five thousand nine hundred forty-four' WHERE a=19343; UPDATE t2 SET c='fifty-eight thousand seven hundred thirty-one' WHERE a=19344; UPDATE t2 SET c='sixty thousand eight hundred sixty-four' WHERE a=19345; UPDATE t2 SET c='fifty-six thousand three hundred thirty-nine' WHERE a=19346; UPDATE t2 SET c='forty-seven thousand forty-nine' WHERE a=19347; UPDATE t2 SET c='ninety-nine thousand seven hundred ninety-six' WHERE a=19348; UPDATE t2 SET c='sixty-five thousand one hundred twenty-five' WHERE a=19349; UPDATE t2 SET c='seventy-six thousand eight hundred ninety-six' WHERE a=19350; UPDATE t2 SET c='eighty-three thousand three hundred sixty-four' WHERE a=19351; UPDATE t2 SET c='nine thousand five hundred seventy-five' WHERE a=19352; UPDATE t2 SET c='ninety-three thousand seven hundred nineteen' WHERE a=19353; UPDATE t2 SET c='fifty-six thousand seven hundred eighty-four' WHERE a=19354; UPDATE t2 SET c='seventy-one thousand nine hundred sixty-six' WHERE a=19355; UPDATE t2 SET c='fifty thousand one hundred ninety-four' WHERE a=19356; UPDATE t2 SET c='seventy-eight thousand eight hundred ninety-six' WHERE a=19357; UPDATE t2 SET c='twenty-six thousand five hundred thirty-seven' WHERE a=19358; UPDATE t2 SET c='forty-two thousand six hundred seventy-six' WHERE a=19359; UPDATE t2 SET c='ten thousand one hundred eighty-five' WHERE a=19360; UPDATE t2 SET c='eighty-eight thousand six hundred twenty-three' WHERE a=19361; UPDATE t2 SET c='fifty-four thousand one hundred sixty-three' WHERE a=19362; UPDATE t2 SET c='seven thousand four hundred nine' WHERE a=19363; UPDATE t2 SET c='eighty-five thousand seven hundred ninety-four' WHERE a=19364; UPDATE t2 SET c='thirty-nine thousand five hundred sixteen' WHERE a=19365; UPDATE t2 SET c='eighty-six thousand nine hundred eight' WHERE a=19366; UPDATE t2 SET c='four thousand seven hundred eighty-seven' WHERE a=19367; UPDATE t2 SET c='twenty-nine thousand eight hundred forty-nine' WHERE a=19368; UPDATE t2 SET c='fifty-two thousand seven hundred seventy-eight' WHERE a=19369; UPDATE t2 SET c='seventy-five thousand seven hundred twenty-four' WHERE a=19370; UPDATE t2 SET c='twenty-three thousand three hundred seventy-four' WHERE a=19371; UPDATE t2 SET c='forty-nine thousand nine hundred sixty' WHERE a=19372; UPDATE t2 SET c='sixty thousand eight hundred ten' WHERE a=19373; UPDATE t2 SET c='thirty-seven thousand seven hundred eighty-seven' WHERE a=19374; UPDATE t2 SET c='thirty-six thousand three hundred thirteen' WHERE a=19375; UPDATE t2 SET c='thirty-four thousand four hundred twenty-eight' WHERE a=19376; UPDATE t2 SET c='seventy-six thousand seven hundred seventy-four' WHERE a=19377; UPDATE t2 SET c='twelve thousand six hundred three' WHERE a=19378; UPDATE t2 SET c='thirty-four thousand three hundred sixty-six' WHERE a=19379; UPDATE t2 SET c='sixteen thousand six hundred ninety-one' WHERE a=19380; UPDATE t2 SET c='ninety-five thousand seven hundred five' WHERE a=19381; UPDATE t2 SET c='fifty-three thousand seven hundred sixty-five' WHERE a=19382; UPDATE t2 SET c='thirty-five thousand seven hundred ninety-seven' WHERE a=19383; UPDATE t2 SET c='eighty-eight thousand four hundred seventeen' WHERE a=19384; UPDATE t2 SET c='nine thousand two hundred three' WHERE a=19385; UPDATE t2 SET c='eighty-nine thousand one hundred thirty-two' WHERE a=19386; UPDATE t2 SET c='twenty-seven thousand one hundred seventy-nine' WHERE a=19387; UPDATE t2 SET c='sixty-eight thousand one' WHERE a=19388; UPDATE t2 SET c='eighty-four thousand three hundred sixteen' WHERE a=19389; UPDATE t2 SET c='forty-six thousand seven hundred fifty-seven' WHERE a=19390; UPDATE t2 SET c='twenty-seven thousand one hundred forty-nine' WHERE a=19391; UPDATE t2 SET c='eighty-five thousand one hundred twenty-seven' WHERE a=19392; UPDATE t2 SET c='nineteen thousand eight hundred thirty-five' WHERE a=19393; UPDATE t2 SET c='thirty-five thousand five hundred forty-four' WHERE a=19394; UPDATE t2 SET c='twenty-five thousand nine hundred eighty-five' WHERE a=19395; UPDATE t2 SET c='sixty-five thousand nine hundred eighty-nine' WHERE a=19396; UPDATE t2 SET c='thirty-six thousand two hundred sixty-five' WHERE a=19397; UPDATE t2 SET c='sixty-seven thousand eight hundred twenty' WHERE a=19398; UPDATE t2 SET c='two thousand five hundred seventy-nine' WHERE a=19399; UPDATE t2 SET c='sixteen thousand four hundred ninety-six' WHERE a=19400; UPDATE t2 SET c='one hundred thirty-eight' WHERE a=19401; UPDATE t2 SET c='forty-two thousand eight hundred ninety-four' WHERE a=19402; UPDATE t2 SET c='sixty-two thousand five hundred fourteen' WHERE a=19403; UPDATE t2 SET c='fifty-three thousand four hundred six' WHERE a=19404; UPDATE t2 SET c='twenty-four thousand six hundred nineteen' WHERE a=19405; UPDATE t2 SET c='ninety-one thousand fifty-nine' WHERE a=19406; UPDATE t2 SET c='seventy-eight thousand five hundred fifty-two' WHERE a=19407; UPDATE t2 SET c='twelve thousand seven hundred fifty-six' WHERE a=19408; UPDATE t2 SET c='thirty-seven thousand five hundred ten' WHERE a=19409; UPDATE t2 SET c='thirty-one thousand three hundred sixty-five' WHERE a=19410; UPDATE t2 SET c='thirty thousand eight hundred six' WHERE a=19411; UPDATE t2 SET c='twenty-two thousand seven hundred sixty-three' WHERE a=19412; UPDATE t2 SET c='sixty-six thousand nine hundred thirteen' WHERE a=19413; UPDATE t2 SET c='seven thousand three hundred fifty-one' WHERE a=19414; UPDATE t2 SET c='thirteen thousand nine hundred five' WHERE a=19415; UPDATE t2 SET c='thirty-nine thousand seventy-eight' WHERE a=19416; UPDATE t2 SET c='twenty-eight thousand six hundred seven' WHERE a=19417; UPDATE t2 SET c='thirty-six thousand six hundred eighty-nine' WHERE a=19418; UPDATE t2 SET c='thirty thousand five hundred two' WHERE a=19419; UPDATE t2 SET c='ninety-two thousand three hundred forty-six' WHERE a=19420; UPDATE t2 SET c='eighty-two thousand seven hundred seventy-three' WHERE a=19421; UPDATE t2 SET c='twenty-seven thousand forty-two' WHERE a=19422; UPDATE t2 SET c='forty-three thousand eight hundred seventy-seven' WHERE a=19423; UPDATE t2 SET c='sixty-seven thousand three hundred one' WHERE a=19424; UPDATE t2 SET c='thirty-five thousand eight hundred eighty' WHERE a=19425; UPDATE t2 SET c='twenty-one thousand seven hundred eighty-one' WHERE a=19426; UPDATE t2 SET c='thirty-two thousand five hundred thirteen' WHERE a=19427; UPDATE t2 SET c='fifty-six thousand nine hundred fifty-one' WHERE a=19428; UPDATE t2 SET c='forty-five thousand four hundred thirty-seven' WHERE a=19429; UPDATE t2 SET c='seventy thousand five hundred ninety-eight' WHERE a=19430; UPDATE t2 SET c='thirteen thousand sixty-five' WHERE a=19431; UPDATE t2 SET c='seventy-five thousand seven hundred thirty-eight' WHERE a=19432; UPDATE t2 SET c='sixty-five thousand nine hundred sixty-two' WHERE a=19433; UPDATE t2 SET c='one thousand six hundred ninety-nine' WHERE a=19434; UPDATE t2 SET c='fifty-three thousand four hundred thirty-two' WHERE a=19435; UPDATE t2 SET c='thirty-two thousand six hundred eighty-six' WHERE a=19436; UPDATE t2 SET c='sixty-four thousand seven hundred twenty-three' WHERE a=19437; UPDATE t2 SET c='ninety-two thousand nine hundred fifty-three' WHERE a=19438; UPDATE t2 SET c='thirty-three thousand six hundred twenty-nine' WHERE a=19439; UPDATE t2 SET c='fifty-four thousand seven hundred ninety-one' WHERE a=19440; UPDATE t2 SET c='fifty-nine thousand nine hundred seventeen' WHERE a=19441; UPDATE t2 SET c='twenty-one thousand nine hundred eight' WHERE a=19442; UPDATE t2 SET c='forty-three thousand eight hundred sixty-nine' WHERE a=19443; UPDATE t2 SET c='sixty-five thousand two hundred fifty-six' WHERE a=19444; UPDATE t2 SET c='fifty-six thousand nine hundred twenty-six' WHERE a=19445; UPDATE t2 SET c='twenty-eight thousand one hundred eighty-six' WHERE a=19446; UPDATE t2 SET c='thirty-five thousand eight hundred forty-one' WHERE a=19447; UPDATE t2 SET c='three thousand five hundred twenty-eight' WHERE a=19448; UPDATE t2 SET c='ninety-one thousand seven hundred twenty-one' WHERE a=19449; UPDATE t2 SET c='ninety-five thousand fourteen' WHERE a=19450; UPDATE t2 SET c='ninety-four thousand thirty-six' WHERE a=19451; UPDATE t2 SET c='ninety-eight thousand eight hundred eighty-one' WHERE a=19452; UPDATE t2 SET c='sixty-three thousand seven hundred forty-three' WHERE a=19453; UPDATE t2 SET c='fifty-three thousand seven hundred ninety-one' WHERE a=19454; UPDATE t2 SET c='eighty-eight thousand three hundred twenty-five' WHERE a=19455; UPDATE t2 SET c='seventy-nine thousand four hundred sixty-two' WHERE a=19456; UPDATE t2 SET c='twenty-eight thousand five hundred seventy-six' WHERE a=19457; UPDATE t2 SET c='thirty thousand four hundred ninety-four' WHERE a=19458; UPDATE t2 SET c='three thousand three hundred eighty-nine' WHERE a=19459; UPDATE t2 SET c='forty-four thousand one hundred sixty-three' WHERE a=19460; UPDATE t2 SET c='one thousand sixty-eight' WHERE a=19461; UPDATE t2 SET c='eighty-three thousand five hundred forty-eight' WHERE a=19462; UPDATE t2 SET c='fifteen thousand five hundred sixty-three' WHERE a=19463; UPDATE t2 SET c='eighty thousand four hundred thirty-eight' WHERE a=19464; UPDATE t2 SET c='forty-five thousand one hundred fifty-six' WHERE a=19465; UPDATE t2 SET c='twenty-five thousand six hundred thirty-six' WHERE a=19466; UPDATE t2 SET c='one thousand five hundred thirty-six' WHERE a=19467; UPDATE t2 SET c='eighty-nine thousand six hundred thirty-nine' WHERE a=19468; UPDATE t2 SET c='twenty-one thousand six hundred ninety-three' WHERE a=19469; UPDATE t2 SET c='eighty-six thousand seven hundred fifty-three' WHERE a=19470; UPDATE t2 SET c='ninety-six thousand three hundred thirteen' WHERE a=19471; UPDATE t2 SET c='ninety-two thousand nine hundred five' WHERE a=19472; UPDATE t2 SET c='fifty-six thousand one hundred fifty-three' WHERE a=19473; UPDATE t2 SET c='forty-six thousand four hundred seven' WHERE a=19474; UPDATE t2 SET c='ninety-eight thousand eight hundred forty-one' WHERE a=19475; UPDATE t2 SET c='seventy-eight thousand three hundred sixty-one' WHERE a=19476; UPDATE t2 SET c='ninety-eight thousand six hundred fifteen' WHERE a=19477; UPDATE t2 SET c='ninety-seven thousand two hundred sixteen' WHERE a=19478; UPDATE t2 SET c='ninety-seven thousand one' WHERE a=19479; UPDATE t2 SET c='eighty-four thousand five hundred fifty-four' WHERE a=19480; UPDATE t2 SET c='seventy-six thousand fifty-nine' WHERE a=19481; UPDATE t2 SET c='twelve thousand five hundred sixteen' WHERE a=19482; UPDATE t2 SET c='forty-six thousand eight hundred three' WHERE a=19483; UPDATE t2 SET c='three thousand nine hundred seventy-four' WHERE a=19484; UPDATE t2 SET c='seventy-three thousand ninety-three' WHERE a=19485; UPDATE t2 SET c='seventy-nine thousand five hundred seventy-three' WHERE a=19486; UPDATE t2 SET c='seventy-six thousand five hundred forty-two' WHERE a=19487; UPDATE t2 SET c='ninety-five thousand fifty-four' WHERE a=19488; UPDATE t2 SET c='thirty-seven thousand sixty-seven' WHERE a=19489; UPDATE t2 SET c='thirty-three thousand six hundred fifty-three' WHERE a=19490; UPDATE t2 SET c='eighty-one thousand nine hundred' WHERE a=19491; UPDATE t2 SET c='ninety thousand seven hundred seventy-eight' WHERE a=19492; UPDATE t2 SET c='twenty-three thousand three hundred nineteen' WHERE a=19493; UPDATE t2 SET c='fifty-one thousand seven hundred nine' WHERE a=19494; UPDATE t2 SET c='twenty-nine thousand eleven' WHERE a=19495; UPDATE t2 SET c='ninety-five thousand seven hundred twenty-seven' WHERE a=19496; UPDATE t2 SET c='fifty-four thousand two hundred sixty' WHERE a=19497; UPDATE t2 SET c='seventy-three thousand six hundred fifty' WHERE a=19498; UPDATE t2 SET c='twenty-five thousand eight hundred eighty-five' WHERE a=19499; UPDATE t2 SET c='eighty-eight thousand three hundred sixty' WHERE a=19500; UPDATE t2 SET c='thirty-one thousand six hundred twelve' WHERE a=19501; UPDATE t2 SET c='fifty-nine thousand seven hundred fifty-four' WHERE a=19502; UPDATE t2 SET c='forty-four thousand six hundred ninety-four' WHERE a=19503; UPDATE t2 SET c='twenty-nine thousand nine hundred eighty-eight' WHERE a=19504; UPDATE t2 SET c='twenty-eight thousand one hundred sixty-one' WHERE a=19505; UPDATE t2 SET c='sixty-two thousand eight hundred four' WHERE a=19506; UPDATE t2 SET c='twenty-nine thousand eight hundred six' WHERE a=19507; UPDATE t2 SET c='eighty-six thousand eight hundred sixty-nine' WHERE a=19508; UPDATE t2 SET c='ninety thousand five hundred twenty-nine' WHERE a=19509; UPDATE t2 SET c='sixty-nine thousand five hundred sixty-four' WHERE a=19510; UPDATE t2 SET c='thirty-six thousand two hundred ten' WHERE a=19511; UPDATE t2 SET c='twelve thousand four hundred forty-five' WHERE a=19512; UPDATE t2 SET c='fifty-five thousand five hundred forty-two' WHERE a=19513; UPDATE t2 SET c='seventy-eight thousand one hundred seventy' WHERE a=19514; UPDATE t2 SET c='sixty-eight thousand nine hundred seventy-eight' WHERE a=19515; UPDATE t2 SET c='forty-three thousand eighty-five' WHERE a=19516; UPDATE t2 SET c='ninety-four thousand eight hundred eighty-five' WHERE a=19517; UPDATE t2 SET c='seventy-seven thousand seven hundred ninety-one' WHERE a=19518; UPDATE t2 SET c='twenty-six thousand six hundred seventy-six' WHERE a=19519; UPDATE t2 SET c='ninety-six thousand four hundred fifteen' WHERE a=19520; UPDATE t2 SET c='ninety-eight thousand forty' WHERE a=19521; UPDATE t2 SET c='forty thousand four hundred fifty-two' WHERE a=19522; UPDATE t2 SET c='sixty-nine thousand seven hundred nine' WHERE a=19523; UPDATE t2 SET c='eighty-nine thousand six hundred ninety' WHERE a=19524; UPDATE t2 SET c='ninety-two thousand five hundred thirty-five' WHERE a=19525; UPDATE t2 SET c='sixty-eight thousand two hundred fifteen' WHERE a=19526; UPDATE t2 SET c='seventy-one thousand six hundred seventy-seven' WHERE a=19527; UPDATE t2 SET c='forty-one thousand two hundred eighty-seven' WHERE a=19528; UPDATE t2 SET c='five thousand eight hundred seventy-eight' WHERE a=19529; UPDATE t2 SET c='eighty-five thousand nineteen' WHERE a=19530; UPDATE t2 SET c='eleven thousand five hundred thirty-four' WHERE a=19531; UPDATE t2 SET c='eleven thousand eight hundred five' WHERE a=19532; UPDATE t2 SET c='eight thousand seven hundred fifty-five' WHERE a=19533; UPDATE t2 SET c='fifty-eight thousand six hundred eighty-three' WHERE a=19534; UPDATE t2 SET c='eighty-eight thousand seven hundred sixteen' WHERE a=19535; UPDATE t2 SET c='eighty-three thousand seventeen' WHERE a=19536; UPDATE t2 SET c='ten thousand six hundred seventy-eight' WHERE a=19537; UPDATE t2 SET c='seventeen thousand four hundred twenty-five' WHERE a=19538; UPDATE t2 SET c='eighteen thousand two hundred eighty-nine' WHERE a=19539; UPDATE t2 SET c='eighty-two thousand two hundred thirty' WHERE a=19540; UPDATE t2 SET c='fifty-five thousand three hundred ninety-eight' WHERE a=19541; UPDATE t2 SET c='seven thousand two hundred eighteen' WHERE a=19542; UPDATE t2 SET c='seventy-three thousand five hundred fifty-nine' WHERE a=19543; UPDATE t2 SET c='forty thousand seven hundred twenty-five' WHERE a=19544; UPDATE t2 SET c='nine thousand eight hundred fifty-seven' WHERE a=19545; UPDATE t2 SET c='thirty-one thousand nine hundred forty' WHERE a=19546; UPDATE t2 SET c='eighteen thousand five hundred one' WHERE a=19547; UPDATE t2 SET c='seven thousand six hundred eighty-four' WHERE a=19548; UPDATE t2 SET c='forty-nine thousand five hundred sixty-eight' WHERE a=19549; UPDATE t2 SET c='fourteen thousand six hundred sixty-seven' WHERE a=19550; UPDATE t2 SET c='fifty-three thousand two hundred forty-one' WHERE a=19551; UPDATE t2 SET c='forty thousand five hundred sixty-nine' WHERE a=19552; UPDATE t2 SET c='thirty-three thousand four hundred forty-three' WHERE a=19553; UPDATE t2 SET c='nine thousand thirty-seven' WHERE a=19554; UPDATE t2 SET c='forty-seven thousand eight hundred fifty-four' WHERE a=19555; UPDATE t2 SET c='ten thousand five hundred seven' WHERE a=19556; UPDATE t2 SET c='seventeen thousand ninety-nine' WHERE a=19557; UPDATE t2 SET c='seventy-nine thousand three hundred twenty-six' WHERE a=19558; UPDATE t2 SET c='forty-four thousand one hundred twenty-nine' WHERE a=19559; UPDATE t2 SET c='twenty-seven thousand four hundred thirty-nine' WHERE a=19560; UPDATE t2 SET c='twenty-four thousand five hundred twelve' WHERE a=19561; UPDATE t2 SET c='twenty-nine thousand four hundred sixty-one' WHERE a=19562; UPDATE t2 SET c='eighty-eight thousand five hundred sixty-seven' WHERE a=19563; UPDATE t2 SET c='sixty-eight thousand eight hundred one' WHERE a=19564; UPDATE t2 SET c='fifty-four thousand one hundred seventy-two' WHERE a=19565; UPDATE t2 SET c='six thousand four hundred eighty' WHERE a=19566; UPDATE t2 SET c='fifty-four thousand nine hundred twenty' WHERE a=19567; UPDATE t2 SET c='thirty-two thousand four hundred eight' WHERE a=19568; UPDATE t2 SET c='ten thousand eight hundred nineteen' WHERE a=19569; UPDATE t2 SET c='ninety thousand nine hundred forty-two' WHERE a=19570; UPDATE t2 SET c='seventeen thousand seventy-five' WHERE a=19571; UPDATE t2 SET c='sixty thousand eighty-six' WHERE a=19572; UPDATE t2 SET c='fifty-three thousand eight hundred twenty-two' WHERE a=19573; UPDATE t2 SET c='forty-six thousand one hundred eighty-six' WHERE a=19574; UPDATE t2 SET c='seven thousand four hundred twenty-two' WHERE a=19575; UPDATE t2 SET c='twenty-seven thousand eight hundred thirty' WHERE a=19576; UPDATE t2 SET c='thirty-eight thousand six' WHERE a=19577; UPDATE t2 SET c='forty-seven thousand six hundred sixty' WHERE a=19578; UPDATE t2 SET c='ninety-six thousand nine hundred thirty-eight' WHERE a=19579; UPDATE t2 SET c='three thousand three hundred twenty' WHERE a=19580; UPDATE t2 SET c='thirty-five thousand one hundred sixty-eight' WHERE a=19581; UPDATE t2 SET c='ninety-four thousand five hundred forty-four' WHERE a=19582; UPDATE t2 SET c='eighty-six thousand four hundred fifty-six' WHERE a=19583; UPDATE t2 SET c='two thousand eight hundred eight' WHERE a=19584; UPDATE t2 SET c='thirty-two thousand seven hundred fifty-one' WHERE a=19585; UPDATE t2 SET c='fifty-eight thousand eight hundred nine' WHERE a=19586; UPDATE t2 SET c='fifty-five thousand forty-four' WHERE a=19587; UPDATE t2 SET c='twenty thousand one hundred eighty-eight' WHERE a=19588; UPDATE t2 SET c='fifty-nine thousand fifty-nine' WHERE a=19589; UPDATE t2 SET c='fourteen thousand six hundred ninety-nine' WHERE a=19590; UPDATE t2 SET c='ninety-six thousand fifty-nine' WHERE a=19591; UPDATE t2 SET c='thirty-five thousand three hundred thirty' WHERE a=19592; UPDATE t2 SET c='thirty-three thousand seventy-one' WHERE a=19593; UPDATE t2 SET c='fifty thousand nine hundred ninety-one' WHERE a=19594; UPDATE t2 SET c='ninety-seven thousand nine hundred one' WHERE a=19595; UPDATE t2 SET c='sixty-eight thousand nine hundred eighty-six' WHERE a=19596; UPDATE t2 SET c='sixty-seven thousand four hundred thirteen' WHERE a=19597; UPDATE t2 SET c='seventeen thousand two hundred ninety-eight' WHERE a=19598; UPDATE t2 SET c='seventy-seven thousand nine hundred twenty-one' WHERE a=19599; UPDATE t2 SET c='fifty-six thousand two hundred forty-three' WHERE a=19600; UPDATE t2 SET c='forty thousand four hundred twenty-eight' WHERE a=19601; UPDATE t2 SET c='sixteen thousand two hundred sixty-five' WHERE a=19602; UPDATE t2 SET c='twelve thousand seven hundred thirty-six' WHERE a=19603; UPDATE t2 SET c='eighty-six thousand twenty-nine' WHERE a=19604; UPDATE t2 SET c='fifty-seven thousand nine hundred thirty-six' WHERE a=19605; UPDATE t2 SET c='seventy-eight thousand seventy' WHERE a=19606; UPDATE t2 SET c='eighty-three thousand five hundred thirty-one' WHERE a=19607; UPDATE t2 SET c='eight thousand four hundred seventy-eight' WHERE a=19608; UPDATE t2 SET c='thirty-four thousand two hundred eighty-eight' WHERE a=19609; UPDATE t2 SET c='fifty-one thousand seven hundred thirty-one' WHERE a=19610; UPDATE t2 SET c='seventy-four thousand eight hundred seventy-seven' WHERE a=19611; UPDATE t2 SET c='seventy thousand one hundred ninety-one' WHERE a=19612; UPDATE t2 SET c='eighty-three thousand eight hundred forty' WHERE a=19613; UPDATE t2 SET c='sixty-three thousand three hundred seventy-three' WHERE a=19614; UPDATE t2 SET c='twenty-five thousand four hundred six' WHERE a=19615; UPDATE t2 SET c='seventy-nine thousand eight hundred thirty-nine' WHERE a=19616; UPDATE t2 SET c='thirty-six thousand eighty-nine' WHERE a=19617; UPDATE t2 SET c='three thousand two hundred eighty-two' WHERE a=19618; UPDATE t2 SET c='fifty-one thousand three hundred eighty-six' WHERE a=19619; UPDATE t2 SET c='one thousand eight hundred ninety-eight' WHERE a=19620; UPDATE t2 SET c='seventy-two thousand two hundred one' WHERE a=19621; UPDATE t2 SET c='seventy-four thousand four hundred seventy-eight' WHERE a=19622; UPDATE t2 SET c='forty-seven thousand three hundred seventy-five' WHERE a=19623; UPDATE t2 SET c='sixty thousand eight hundred thirty-seven' WHERE a=19624; UPDATE t2 SET c='thirty-six thousand three hundred eighteen' WHERE a=19625; UPDATE t2 SET c='forty-one thousand one hundred eighty' WHERE a=19626; UPDATE t2 SET c='three thousand eight hundred sixty-eight' WHERE a=19627; UPDATE t2 SET c='forty-one thousand one hundred eleven' WHERE a=19628; UPDATE t2 SET c='thirty-two thousand five hundred eighteen' WHERE a=19629; UPDATE t2 SET c='six thousand five hundred seventy-one' WHERE a=19630; UPDATE t2 SET c='eighty-seven thousand one hundred ninety-nine' WHERE a=19631; UPDATE t2 SET c='sixty-nine thousand sixty' WHERE a=19632; UPDATE t2 SET c='forty-nine thousand two hundred four' WHERE a=19633; UPDATE t2 SET c='twenty-eight thousand four hundred twenty-nine' WHERE a=19634; UPDATE t2 SET c='sixty-six thousand three hundred ten' WHERE a=19635; UPDATE t2 SET c='eighty-six thousand eight hundred sixty-five' WHERE a=19636; UPDATE t2 SET c='thirty-six thousand four hundred fifty-four' WHERE a=19637; UPDATE t2 SET c='forty-seven thousand six hundred thirty-six' WHERE a=19638; UPDATE t2 SET c='sixty-three thousand thirty-nine' WHERE a=19639; UPDATE t2 SET c='eleven thousand seven hundred eighty-two' WHERE a=19640; UPDATE t2 SET c='eighty-nine thousand two hundred thirty-four' WHERE a=19641; UPDATE t2 SET c='ninety-five thousand eight hundred ninety-one' WHERE a=19642; UPDATE t2 SET c='seventy-three thousand nine hundred forty' WHERE a=19643; UPDATE t2 SET c='thirty-nine thousand eight hundred thirty-four' WHERE a=19644; UPDATE t2 SET c='ninety-six thousand nine hundred fifty-eight' WHERE a=19645; UPDATE t2 SET c='twenty-one thousand five hundred fifty-six' WHERE a=19646; UPDATE t2 SET c='fifteen thousand six hundred fifty-three' WHERE a=19647; UPDATE t2 SET c='sixty-six thousand six hundred twenty-six' WHERE a=19648; UPDATE t2 SET c='seventy thousand nine hundred fifty-five' WHERE a=19649; UPDATE t2 SET c='nineteen thousand five hundred twenty' WHERE a=19650; UPDATE t2 SET c='seventy-seven thousand nine hundred forty-one' WHERE a=19651; UPDATE t2 SET c='fifty thousand five hundred thirty-eight' WHERE a=19652; UPDATE t2 SET c='three thousand six hundred twenty' WHERE a=19653; UPDATE t2 SET c='twelve thousand one hundred fifteen' WHERE a=19654; UPDATE t2 SET c='twenty-eight thousand eight hundred thirty-seven' WHERE a=19655; UPDATE t2 SET c='ninety-three thousand seven hundred eighty-six' WHERE a=19656; UPDATE t2 SET c='seventy-seven thousand two hundred ninety-four' WHERE a=19657; UPDATE t2 SET c='ninety-nine thousand four hundred seventeen' WHERE a=19658; UPDATE t2 SET c='thirty-five thousand sixty-three' WHERE a=19659; UPDATE t2 SET c='eighty-three thousand three hundred seventeen' WHERE a=19660; UPDATE t2 SET c='sixty thousand eight hundred sixty-three' WHERE a=19661; UPDATE t2 SET c='eighty-eight thousand forty-four' WHERE a=19662; UPDATE t2 SET c='five thousand three hundred fifty-four' WHERE a=19663; UPDATE t2 SET c='sixty-one thousand one hundred fifty-eight' WHERE a=19664; UPDATE t2 SET c='sixty-five thousand seven hundred twenty-eight' WHERE a=19665; UPDATE t2 SET c='ninety-seven thousand three hundred seventy-three' WHERE a=19666; UPDATE t2 SET c='two thousand thirty-five' WHERE a=19667; UPDATE t2 SET c='sixty-one thousand one hundred ninety-one' WHERE a=19668; UPDATE t2 SET c='twenty-five thousand nine hundred ninety-two' WHERE a=19669; UPDATE t2 SET c='sixty-three thousand five hundred thirty-three' WHERE a=19670; UPDATE t2 SET c='two thousand nine hundred eighty-six' WHERE a=19671; UPDATE t2 SET c='fifty-two thousand six hundred seventy-three' WHERE a=19672; UPDATE t2 SET c='forty-eight thousand four hundred fifty-eight' WHERE a=19673; UPDATE t2 SET c='eighty-six thousand two hundred seventy-one' WHERE a=19674; UPDATE t2 SET c='fifteen thousand seven hundred two' WHERE a=19675; UPDATE t2 SET c='eighty-three thousand one hundred sixty-five' WHERE a=19676; UPDATE t2 SET c='fifty-nine thousand two hundred ten' WHERE a=19677; UPDATE t2 SET c='forty-two thousand seven hundred ninety' WHERE a=19678; UPDATE t2 SET c='fourteen thousand one hundred twenty' WHERE a=19679; UPDATE t2 SET c='thirty-one thousand eight hundred fourteen' WHERE a=19680; UPDATE t2 SET c='two thousand ninety-five' WHERE a=19681; UPDATE t2 SET c='sixty-three thousand four hundred forty-one' WHERE a=19682; UPDATE t2 SET c='twenty-two thousand two hundred seventy' WHERE a=19683; UPDATE t2 SET c='sixteen thousand eight hundred seventy-nine' WHERE a=19684; UPDATE t2 SET c='thirty-one thousand one hundred' WHERE a=19685; UPDATE t2 SET c='fifteen thousand six hundred thirty-two' WHERE a=19686; UPDATE t2 SET c='twenty thousand nine hundred forty-one' WHERE a=19687; UPDATE t2 SET c='ten thousand eight hundred fifty' WHERE a=19688; UPDATE t2 SET c='ninety-six thousand four hundred twenty-nine' WHERE a=19689; UPDATE t2 SET c='ninety-seven thousand four hundred sixty-nine' WHERE a=19690; UPDATE t2 SET c='ninety-four thousand one hundred twenty-four' WHERE a=19691; UPDATE t2 SET c='thirty-three thousand eight hundred fifty-eight' WHERE a=19692; UPDATE t2 SET c='forty-five thousand seven hundred sixty-seven' WHERE a=19693; UPDATE t2 SET c='nine thousand three hundred seventy' WHERE a=19694; UPDATE t2 SET c='fifteen thousand one hundred ninety-three' WHERE a=19695; UPDATE t2 SET c='fifty-five thousand four hundred four' WHERE a=19696; UPDATE t2 SET c='seventy-one thousand eight hundred ninety-four' WHERE a=19697; UPDATE t2 SET c='sixty-eight thousand three hundred ninety-two' WHERE a=19698; UPDATE t2 SET c='ninety-two thousand two hundred thirteen' WHERE a=19699; UPDATE t2 SET c='forty-six thousand four hundred seventy-nine' WHERE a=19700; UPDATE t2 SET c='ninety-eight thousand five hundred five' WHERE a=19701; UPDATE t2 SET c='eight thousand nine hundred forty-nine' WHERE a=19702; UPDATE t2 SET c='sixty-seven thousand five hundred seventy-five' WHERE a=19703; UPDATE t2 SET c='eighty-five thousand five hundred eighty-seven' WHERE a=19704; UPDATE t2 SET c='thirty-nine thousand eight hundred ninety-one' WHERE a=19705; UPDATE t2 SET c='fifty-five thousand nine hundred fifty' WHERE a=19706; UPDATE t2 SET c='fifty-four thousand six hundred four' WHERE a=19707; UPDATE t2 SET c='three thousand three hundred twenty-two' WHERE a=19708; UPDATE t2 SET c='thirty-three thousand six hundred twenty-five' WHERE a=19709; UPDATE t2 SET c='eighty-eight thousand five hundred thirteen' WHERE a=19710; UPDATE t2 SET c='seventy-two thousand seven hundred fifty-five' WHERE a=19711; UPDATE t2 SET c='forty-four thousand eighty-three' WHERE a=19712; UPDATE t2 SET c='thirty-two thousand one hundred thirteen' WHERE a=19713; UPDATE t2 SET c='five thousand seven hundred ninety-seven' WHERE a=19714; UPDATE t2 SET c='fourteen thousand three hundred seventeen' WHERE a=19715; UPDATE t2 SET c='seventy-three thousand eight hundred thirty-one' WHERE a=19716; UPDATE t2 SET c='thirty-seven thousand three hundred ninety-seven' WHERE a=19717; UPDATE t2 SET c='eight thousand nine hundred thirty' WHERE a=19718; UPDATE t2 SET c='twenty-four thousand eight hundred ninety-six' WHERE a=19719; UPDATE t2 SET c='thirty-six thousand fifty-four' WHERE a=19720; UPDATE t2 SET c='seventy-three thousand eight hundred eighty-two' WHERE a=19721; UPDATE t2 SET c='eleven thousand six hundred sixty-four' WHERE a=19722; UPDATE t2 SET c='sixty-two thousand four hundred fifty-eight' WHERE a=19723; UPDATE t2 SET c='sixty thousand one hundred forty-eight' WHERE a=19724; UPDATE t2 SET c='fifty-six thousand eighty-seven' WHERE a=19725; UPDATE t2 SET c='twelve thousand one hundred eighty-eight' WHERE a=19726; UPDATE t2 SET c='twenty-two thousand nine hundred sixty-nine' WHERE a=19727; UPDATE t2 SET c='ninety-three thousand ninety-seven' WHERE a=19728; UPDATE t2 SET c='ninety-six thousand two hundred fifty-four' WHERE a=19729; UPDATE t2 SET c='seventy-four thousand one hundred fifteen' WHERE a=19730; UPDATE t2 SET c='thirty-five thousand eight hundred fifty-seven' WHERE a=19731; UPDATE t2 SET c='ninety thousand one hundred eighty-four' WHERE a=19732; UPDATE t2 SET c='thirty-seven thousand three hundred fifty' WHERE a=19733; UPDATE t2 SET c='thirty-two thousand nine hundred fifty' WHERE a=19734; UPDATE t2 SET c='eighty-six thousand six hundred nineteen' WHERE a=19735; UPDATE t2 SET c='thirteen thousand six hundred fifteen' WHERE a=19736; UPDATE t2 SET c='twenty-five thousand nine hundred eighty-three' WHERE a=19737; UPDATE t2 SET c='seventy-five thousand six hundred sixteen' WHERE a=19738; UPDATE t2 SET c='sixty-four thousand nine hundred ninety-four' WHERE a=19739; UPDATE t2 SET c='thirty-one thousand two hundred eighty' WHERE a=19740; UPDATE t2 SET c='fifty-one thousand three hundred eighty-two' WHERE a=19741; UPDATE t2 SET c='seventy-six thousand six hundred forty-six' WHERE a=19742; UPDATE t2 SET c='eighty-four thousand seven hundred forty-two' WHERE a=19743; UPDATE t2 SET c='thirty-nine thousand one hundred eight' WHERE a=19744; UPDATE t2 SET c='ninety-nine thousand four hundred fifty-eight' WHERE a=19745; UPDATE t2 SET c='forty-four thousand eight hundred ninety-three' WHERE a=19746; UPDATE t2 SET c='sixty-eight thousand two hundred thirty-one' WHERE a=19747; UPDATE t2 SET c='two thousand three hundred one' WHERE a=19748; UPDATE t2 SET c='fifty-two thousand six hundred nineteen' WHERE a=19749; UPDATE t2 SET c='sixty-one thousand eight hundred eighty-five' WHERE a=19750; UPDATE t2 SET c='twelve thousand two hundred eighty-four' WHERE a=19751; UPDATE t2 SET c='twenty-seven thousand eight hundred ninety-four' WHERE a=19752; UPDATE t2 SET c='twenty-eight thousand seven hundred two' WHERE a=19753; UPDATE t2 SET c='eighty-seven thousand one hundred sixty-nine' WHERE a=19754; UPDATE t2 SET c='thirty-seven thousand seven hundred seventy-seven' WHERE a=19755; UPDATE t2 SET c='forty-nine thousand eight hundred twenty-five' WHERE a=19756; UPDATE t2 SET c='seventy-four thousand five hundred sixty' WHERE a=19757; UPDATE t2 SET c='twenty-two thousand four hundred ninety-eight' WHERE a=19758; UPDATE t2 SET c='thirty-six thousand one hundred ninety-eight' WHERE a=19759; UPDATE t2 SET c='sixty-seven thousand two hundred eighty-eight' WHERE a=19760; UPDATE t2 SET c='sixty thousand eight hundred six' WHERE a=19761; UPDATE t2 SET c='thirty-four thousand five hundred forty-five' WHERE a=19762; UPDATE t2 SET c='sixty-eight thousand nine hundred sixteen' WHERE a=19763; UPDATE t2 SET c='eighty-seven thousand three hundred fifty-seven' WHERE a=19764; UPDATE t2 SET c='ten thousand five hundred twenty-two' WHERE a=19765; UPDATE t2 SET c='eighteen thousand three hundred thirty' WHERE a=19766; UPDATE t2 SET c='forty-four thousand one hundred four' WHERE a=19767; UPDATE t2 SET c='eighty-three thousand one hundred twenty-two' WHERE a=19768; UPDATE t2 SET c='fifty-two thousand nine hundred seventy-seven' WHERE a=19769; UPDATE t2 SET c='thirty-one thousand one hundred ninety-two' WHERE a=19770; UPDATE t2 SET c='eighty-nine thousand four hundred five' WHERE a=19771; UPDATE t2 SET c='seventy-one thousand six hundred seventeen' WHERE a=19772; UPDATE t2 SET c='sixty-three thousand one hundred fifty-two' WHERE a=19773; UPDATE t2 SET c='eighty-eight thousand two hundred fifty-five' WHERE a=19774; UPDATE t2 SET c='forty-three thousand seven hundred seventy-two' WHERE a=19775; UPDATE t2 SET c='thirty-eight thousand twelve' WHERE a=19776; UPDATE t2 SET c='seventy-nine thousand four hundred eighty-three' WHERE a=19777; UPDATE t2 SET c='fifty thousand four hundred eighty-seven' WHERE a=19778; UPDATE t2 SET c='eighty-five thousand three hundred seventy-five' WHERE a=19779; UPDATE t2 SET c='ninety-seven thousand three hundred thirty-four' WHERE a=19780; UPDATE t2 SET c='eighty-nine thousand four hundred fourteen' WHERE a=19781; UPDATE t2 SET c='forty thousand fifty-nine' WHERE a=19782; UPDATE t2 SET c='fifty-seven thousand five hundred eight' WHERE a=19783; UPDATE t2 SET c='sixty-six thousand two hundred forty-six' WHERE a=19784; UPDATE t2 SET c='thirty-six thousand nine hundred fifty-six' WHERE a=19785; UPDATE t2 SET c='fifty-three thousand three hundred seven' WHERE a=19786; UPDATE t2 SET c='thirty-nine thousand seven hundred thirty-six' WHERE a=19787; UPDATE t2 SET c='seventy-six thousand four hundred forty-two' WHERE a=19788; UPDATE t2 SET c='one thousand five hundred forty-six' WHERE a=19789; UPDATE t2 SET c='sixty-eight thousand one hundred fifteen' WHERE a=19790; UPDATE t2 SET c='forty-eight thousand seven hundred seventy-three' WHERE a=19791; UPDATE t2 SET c='forty-six thousand three hundred eighty-five' WHERE a=19792; UPDATE t2 SET c='sixty thousand four hundred seventy-nine' WHERE a=19793; UPDATE t2 SET c='forty-seven thousand eight hundred seventy-three' WHERE a=19794; UPDATE t2 SET c='fifty-four thousand five hundred fifty-four' WHERE a=19795; UPDATE t2 SET c='forty-six thousand seven hundred forty-three' WHERE a=19796; UPDATE t2 SET c='eighteen thousand three hundred twenty-seven' WHERE a=19797; UPDATE t2 SET c='seventy-nine thousand six hundred sixty-nine' WHERE a=19798; UPDATE t2 SET c='eight thousand nine hundred forty-seven' WHERE a=19799; UPDATE t2 SET c='thirty-seven thousand one hundred twenty-one' WHERE a=19800; UPDATE t2 SET c='forty-three thousand five hundred eighty-one' WHERE a=19801; UPDATE t2 SET c='thirty-eight thousand eight hundred ninety' WHERE a=19802; UPDATE t2 SET c='sixty-five thousand four hundred ninety-seven' WHERE a=19803; UPDATE t2 SET c='sixty-one thousand eight hundred seventy-nine' WHERE a=19804; UPDATE t2 SET c='forty-nine thousand seven hundred eighty-seven' WHERE a=19805; UPDATE t2 SET c='eighty thousand six hundred ninety-two' WHERE a=19806; UPDATE t2 SET c='fifty-three thousand one hundred eighty-two' WHERE a=19807; UPDATE t2 SET c='twenty-six thousand five hundred fifteen' WHERE a=19808; UPDATE t2 SET c='fifty-eight thousand three hundred sixty-six' WHERE a=19809; UPDATE t2 SET c='sixty-two thousand one hundred fifty' WHERE a=19810; UPDATE t2 SET c='twenty-five thousand nine hundred twenty-six' WHERE a=19811; UPDATE t2 SET c='sixteen thousand ninety-two' WHERE a=19812; UPDATE t2 SET c='one thousand three hundred twenty-nine' WHERE a=19813; UPDATE t2 SET c='ninety-four thousand one hundred fifty' WHERE a=19814; UPDATE t2 SET c='three thousand forty-five' WHERE a=19815; UPDATE t2 SET c='seventy-five thousand three hundred forty-five' WHERE a=19816; UPDATE t2 SET c='sixty-eight thousand eight hundred ten' WHERE a=19817; UPDATE t2 SET c='sixteen thousand five hundred fifty-seven' WHERE a=19818; UPDATE t2 SET c='eighty-seven thousand three hundred thirty-four' WHERE a=19819; UPDATE t2 SET c='sixty-one thousand one hundred eighteen' WHERE a=19820; UPDATE t2 SET c='twenty-nine thousand six hundred eighty-four' WHERE a=19821; UPDATE t2 SET c='ninety-five thousand nine hundred seventy-seven' WHERE a=19822; UPDATE t2 SET c='fifty thousand four hundred eighty-five' WHERE a=19823; UPDATE t2 SET c='ninety-three thousand five hundred twenty-two' WHERE a=19824; UPDATE t2 SET c='forty-one thousand four hundred seven' WHERE a=19825; UPDATE t2 SET c='nineteen thousand seven hundred twelve' WHERE a=19826; UPDATE t2 SET c='five thousand six hundred four' WHERE a=19827; UPDATE t2 SET c='ten thousand five hundred five' WHERE a=19828; UPDATE t2 SET c='eight thousand four hundred eight' WHERE a=19829; UPDATE t2 SET c='one thousand eight hundred forty-five' WHERE a=19830; UPDATE t2 SET c='thirty-six thousand nine hundred eighty-one' WHERE a=19831; UPDATE t2 SET c='thirty-four thousand seven hundred fifty' WHERE a=19832; UPDATE t2 SET c='sixty-eight thousand five hundred forty-three' WHERE a=19833; UPDATE t2 SET c='forty-two thousand two hundred ninety-one' WHERE a=19834; UPDATE t2 SET c='eighty thousand eight hundred twenty-seven' WHERE a=19835; UPDATE t2 SET c='forty thousand three hundred thirty-three' WHERE a=19836; UPDATE t2 SET c='thirty thousand eight hundred ninety-four' WHERE a=19837; UPDATE t2 SET c='sixty-eight thousand one hundred seventy-eight' WHERE a=19838; UPDATE t2 SET c='ninety-three thousand seven hundred sixty' WHERE a=19839; UPDATE t2 SET c='seventy-nine thousand one hundred sixty-one' WHERE a=19840; UPDATE t2 SET c='thirty thousand one hundred fifteen' WHERE a=19841; UPDATE t2 SET c='ninety thousand four hundred seventy-two' WHERE a=19842; UPDATE t2 SET c='fifty-five thousand three hundred eighteen' WHERE a=19843; UPDATE t2 SET c='ninety-five thousand one hundred forty-six' WHERE a=19844; UPDATE t2 SET c='eighty-six thousand twenty-six' WHERE a=19845; UPDATE t2 SET c='ninety-three thousand five hundred thirty' WHERE a=19846; UPDATE t2 SET c='thirteen thousand sixty-four' WHERE a=19847; UPDATE t2 SET c='thirty-seven thousand nine hundred seventeen' WHERE a=19848; UPDATE t2 SET c='eighty-two thousand five hundred nine' WHERE a=19849; UPDATE t2 SET c='thirteen thousand four hundred forty' WHERE a=19850; UPDATE t2 SET c='nine thousand five hundred twenty-six' WHERE a=19851; UPDATE t2 SET c='ninety-nine thousand four hundred six' WHERE a=19852; UPDATE t2 SET c='fifty-four thousand eight hundred thirty-nine' WHERE a=19853; UPDATE t2 SET c='seventy-eight thousand four hundred sixty' WHERE a=19854; UPDATE t2 SET c='seventy-three thousand three' WHERE a=19855; UPDATE t2 SET c='twenty-five thousand six hundred forty' WHERE a=19856; UPDATE t2 SET c='thirty-eight thousand five hundred eighty' WHERE a=19857; UPDATE t2 SET c='eighty-nine thousand one hundred forty-four' WHERE a=19858; UPDATE t2 SET c='thirteen thousand twenty' WHERE a=19859; UPDATE t2 SET c='thirty thousand seven hundred forty-nine' WHERE a=19860; UPDATE t2 SET c='seventy thousand four hundred ninety-six' WHERE a=19861; UPDATE t2 SET c='ninety-six thousand eight hundred forty' WHERE a=19862; UPDATE t2 SET c='sixty-one thousand seven hundred twenty-three' WHERE a=19863; UPDATE t2 SET c='ninety-one thousand eight hundred twenty-eight' WHERE a=19864; UPDATE t2 SET c='fifty-five thousand three hundred fifteen' WHERE a=19865; UPDATE t2 SET c='forty-five thousand eight hundred seventy-four' WHERE a=19866; UPDATE t2 SET c='fifty thousand seven hundred sixty-five' WHERE a=19867; UPDATE t2 SET c='eighty-two thousand five hundred twelve' WHERE a=19868; UPDATE t2 SET c='forty-one thousand four hundred eighty-four' WHERE a=19869; UPDATE t2 SET c='forty-eight thousand seven hundred ninety-eight' WHERE a=19870; UPDATE t2 SET c='fifty-five thousand one hundred four' WHERE a=19871; UPDATE t2 SET c='twenty-four thousand nine hundred ninety' WHERE a=19872; UPDATE t2 SET c='seventy-nine thousand eight hundred eighty-five' WHERE a=19873; UPDATE t2 SET c='thirty-five thousand two hundred fifty-three' WHERE a=19874; UPDATE t2 SET c='eighty-three thousand nine hundred thirty-four' WHERE a=19875; UPDATE t2 SET c='seventy-two thousand one hundred thirty-two' WHERE a=19876; UPDATE t2 SET c='thirty-four thousand twenty-three' WHERE a=19877; UPDATE t2 SET c='fifty-eight thousand six hundred thirty' WHERE a=19878; UPDATE t2 SET c='sixteen thousand two hundred sixty-seven' WHERE a=19879; UPDATE t2 SET c='twenty-nine thousand four hundred ninety-five' WHERE a=19880; UPDATE t2 SET c='forty thousand one hundred sixty' WHERE a=19881; UPDATE t2 SET c='eighty thousand three hundred fifty-four' WHERE a=19882; UPDATE t2 SET c='fifty-one thousand two hundred seventy-one' WHERE a=19883; UPDATE t2 SET c='twelve thousand six hundred seventy-two' WHERE a=19884; UPDATE t2 SET c='eight thousand one hundred five' WHERE a=19885; UPDATE t2 SET c='thirty-one thousand nine hundred fifteen' WHERE a=19886; UPDATE t2 SET c='eighty-two thousand two hundred eighty-three' WHERE a=19887; UPDATE t2 SET c='four thousand eight hundred fifty-four' WHERE a=19888; UPDATE t2 SET c='eighty-five thousand eight hundred fifteen' WHERE a=19889; UPDATE t2 SET c='forty thousand six hundred fifty-two' WHERE a=19890; UPDATE t2 SET c='thirty-four thousand four hundred eighty-three' WHERE a=19891; UPDATE t2 SET c='five thousand nine hundred eleven' WHERE a=19892; UPDATE t2 SET c='eighty-one thousand five hundred forty-one' WHERE a=19893; UPDATE t2 SET c='nineteen thousand six hundred fifty-four' WHERE a=19894; UPDATE t2 SET c='sixty-four thousand four hundred seventy-four' WHERE a=19895; UPDATE t2 SET c='twenty-three thousand thirty-four' WHERE a=19896; UPDATE t2 SET c='fifty-three thousand seven hundred seventy-nine' WHERE a=19897; UPDATE t2 SET c='forty-four thousand nine hundred forty-five' WHERE a=19898; UPDATE t2 SET c='ninety-six thousand five hundred eighty' WHERE a=19899; UPDATE t2 SET c='eighty-three thousand three' WHERE a=19900; UPDATE t2 SET c='twenty-four thousand five' WHERE a=19901; UPDATE t2 SET c='two thousand nine hundred two' WHERE a=19902; UPDATE t2 SET c='six thousand nine hundred' WHERE a=19903; UPDATE t2 SET c='thirty-eight thousand one hundred sixty-three' WHERE a=19904; UPDATE t2 SET c='twenty-seven thousand seven hundred fifty-four' WHERE a=19905; UPDATE t2 SET c='fifty-one thousand seven hundred eighty-two' WHERE a=19906; UPDATE t2 SET c='eighty-three thousand eight hundred sixty' WHERE a=19907; UPDATE t2 SET c='eleven thousand six hundred sixteen' WHERE a=19908; UPDATE t2 SET c='seventy-eight thousand sixteen' WHERE a=19909; UPDATE t2 SET c='eighty thousand three hundred ninety-three' WHERE a=19910; UPDATE t2 SET c='forty-eight thousand eight hundred ninety-three' WHERE a=19911; UPDATE t2 SET c='fifty thousand two hundred ninety-nine' WHERE a=19912; UPDATE t2 SET c='forty thousand two hundred forty-four' WHERE a=19913; UPDATE t2 SET c='ninety-eight thousand four hundred fifty-four' WHERE a=19914; UPDATE t2 SET c='fifty-five thousand eight hundred two' WHERE a=19915; UPDATE t2 SET c='ninety-eight thousand nine hundred ninety-nine' WHERE a=19916; UPDATE t2 SET c='seventy thousand eight hundred thirty-three' WHERE a=19917; UPDATE t2 SET c='sixty-five thousand six hundred seventy-eight' WHERE a=19918; UPDATE t2 SET c='fifty-two thousand four hundred fifty-five' WHERE a=19919; UPDATE t2 SET c='sixty-nine thousand one hundred thirty-nine' WHERE a=19920; UPDATE t2 SET c='fifty-seven thousand five hundred forty-six' WHERE a=19921; UPDATE t2 SET c='ninety-nine thousand three hundred eighty-one' WHERE a=19922; UPDATE t2 SET c='thirty-one thousand seven hundred seventy-four' WHERE a=19923; UPDATE t2 SET c='seventy-seven thousand three hundred seventy-one' WHERE a=19924; UPDATE t2 SET c='ninety-nine thousand two hundred sixty-two' WHERE a=19925; UPDATE t2 SET c='six thousand three hundred fifteen' WHERE a=19926; UPDATE t2 SET c='sixty-four thousand two hundred six' WHERE a=19927; UPDATE t2 SET c='eighty-eight thousand one hundred seventy-five' WHERE a=19928; UPDATE t2 SET c='fifty-one thousand one hundred thirty-five' WHERE a=19929; UPDATE t2 SET c='ninety thousand eighty-two' WHERE a=19930; UPDATE t2 SET c='forty-seven thousand two hundred forty-eight' WHERE a=19931; UPDATE t2 SET c='eighty-seven thousand five hundred ninety-one' WHERE a=19932; UPDATE t2 SET c='seventy-nine thousand one hundred fifty' WHERE a=19933; UPDATE t2 SET c='sixty thousand thirty-four' WHERE a=19934; UPDATE t2 SET c='fifty-four thousand four hundred seventy-eight' WHERE a=19935; UPDATE t2 SET c='five thousand forty-nine' WHERE a=19936; UPDATE t2 SET c='twenty-six thousand eight hundred eleven' WHERE a=19937; UPDATE t2 SET c='seventy-two thousand eight hundred seventeen' WHERE a=19938; UPDATE t2 SET c='thirty-two thousand six hundred ninety-one' WHERE a=19939; UPDATE t2 SET c='thirty-two thousand nine hundred two' WHERE a=19940; UPDATE t2 SET c='fourteen thousand two hundred twenty-one' WHERE a=19941; UPDATE t2 SET c='seventy-two thousand five hundred fifty-seven' WHERE a=19942; UPDATE t2 SET c='eighteen thousand two hundred ninety-seven' WHERE a=19943; UPDATE t2 SET c='forty-four thousand seven hundred sixty-seven' WHERE a=19944; UPDATE t2 SET c='forty thousand two hundred seventy-two' WHERE a=19945; UPDATE t2 SET c='sixty-three thousand eight hundred eighty-seven' WHERE a=19946; UPDATE t2 SET c='twenty-nine thousand seven hundred ninety-seven' WHERE a=19947; UPDATE t2 SET c='eight thousand three hundred nineteen' WHERE a=19948; UPDATE t2 SET c='eleven thousand nine hundred sixty-five' WHERE a=19949; UPDATE t2 SET c='fifty-three thousand nine hundred fifty-seven' WHERE a=19950; UPDATE t2 SET c='forty-three thousand two hundred ninety-eight' WHERE a=19951; UPDATE t2 SET c='forty-three thousand eight hundred seven' WHERE a=19952; UPDATE t2 SET c='twenty-three thousand eight hundred sixty-nine' WHERE a=19953; UPDATE t2 SET c='twelve thousand one hundred thirteen' WHERE a=19954; UPDATE t2 SET c='ninety-nine thousand eight hundred eighteen' WHERE a=19955; UPDATE t2 SET c='fifteen thousand two hundred forty-seven' WHERE a=19956; UPDATE t2 SET c='seventeen thousand one hundred ninety-nine' WHERE a=19957; UPDATE t2 SET c='twenty-three thousand one hundred forty-six' WHERE a=19958; UPDATE t2 SET c='thirty-two thousand seventy-one' WHERE a=19959; UPDATE t2 SET c='eleven thousand one hundred thirty-seven' WHERE a=19960; UPDATE t2 SET c='seventy-eight thousand eight hundred twelve' WHERE a=19961; UPDATE t2 SET c='thirteen thousand one hundred eighty-eight' WHERE a=19962; UPDATE t2 SET c='sixty-one thousand three hundred thirty-four' WHERE a=19963; UPDATE t2 SET c='ninety-nine thousand one hundred seventy-nine' WHERE a=19964; UPDATE t2 SET c='fourteen thousand three hundred eight' WHERE a=19965; UPDATE t2 SET c='thirty-nine thousand two hundred forty' WHERE a=19966; UPDATE t2 SET c='eighty-two thousand two hundred eighty-three' WHERE a=19967; UPDATE t2 SET c='eighty-eight thousand nine hundred thirty' WHERE a=19968; UPDATE t2 SET c='twenty-two thousand one hundred seventy-seven' WHERE a=19969; UPDATE t2 SET c='twenty-seven thousand five hundred eighty-six' WHERE a=19970; UPDATE t2 SET c='two thousand three hundred twenty-nine' WHERE a=19971; UPDATE t2 SET c='twenty-two thousand six hundred ninety-seven' WHERE a=19972; UPDATE t2 SET c='eighty-four thousand eight hundred twenty-five' WHERE a=19973; UPDATE t2 SET c='six thousand six hundred sixty-six' WHERE a=19974; UPDATE t2 SET c='forty-nine thousand seven hundred seven' WHERE a=19975; UPDATE t2 SET c='twenty-nine thousand two hundred eighty-nine' WHERE a=19976; UPDATE t2 SET c='eighty-nine thousand five hundred sixty' WHERE a=19977; UPDATE t2 SET c='eighty-nine thousand six hundred forty-seven' WHERE a=19978; UPDATE t2 SET c='fifty-nine thousand nine hundred forty-nine' WHERE a=19979; UPDATE t2 SET c='seventy-nine thousand ninety-five' WHERE a=19980; UPDATE t2 SET c='seven thousand seven hundred ninety-four' WHERE a=19981; UPDATE t2 SET c='twenty-seven thousand four hundred thirty-three' WHERE a=19982; UPDATE t2 SET c='ninety-five thousand five hundred eighty-three' WHERE a=19983; UPDATE t2 SET c='seventy-nine thousand nine hundred forty-five' WHERE a=19984; UPDATE t2 SET c='four thousand sixty-six' WHERE a=19985; UPDATE t2 SET c='seventeen thousand three hundred twenty-two' WHERE a=19986; UPDATE t2 SET c='ninety-two thousand four hundred sixty-four' WHERE a=19987; UPDATE t2 SET c='seventy-six thousand nine hundred nine' WHERE a=19988; UPDATE t2 SET c='seventy-two thousand two hundred twenty-four' WHERE a=19989; UPDATE t2 SET c='ninety-three thousand six hundred sixteen' WHERE a=19990; UPDATE t2 SET c='ninety-five thousand seven hundred twenty-three' WHERE a=19991; UPDATE t2 SET c='ninety-nine thousand twenty-two' WHERE a=19992; UPDATE t2 SET c='twenty thousand four hundred eighty-six' WHERE a=19993; UPDATE t2 SET c='seventeen thousand three hundred eighty-seven' WHERE a=19994; UPDATE t2 SET c='forty-two thousand two hundred twenty-five' WHERE a=19995; UPDATE t2 SET c='eighty-seven thousand forty-nine' WHERE a=19996; UPDATE t2 SET c='sixteen thousand sixty-three' WHERE a=19997; UPDATE t2 SET c='thirty-eight thousand one hundred sixty-two' WHERE a=19998; UPDATE t2 SET c='eleven thousand two hundred eighty-five' WHERE a=19999; UPDATE t2 SET c='seventy thousand nine hundred forty-one' WHERE a=20000; UPDATE t2 SET c='sixteen thousand nine hundred thirty-two' WHERE a=20001; UPDATE t2 SET c='fifty-one thousand nine hundred nineteen' WHERE a=20002; UPDATE t2 SET c='twelve thousand five hundred sixty' WHERE a=20003; UPDATE t2 SET c='seventy-four thousand eight hundred forty-two' WHERE a=20004; UPDATE t2 SET c='fifty-seven thousand one hundred forty-eight' WHERE a=20005; UPDATE t2 SET c='thirty-eight thousand one hundred thirty-seven' WHERE a=20006; UPDATE t2 SET c='forty thousand four hundred forty-six' WHERE a=20007; UPDATE t2 SET c='five thousand six hundred fifty-two' WHERE a=20008; UPDATE t2 SET c='seventy-one thousand one hundred seventy-six' WHERE a=20009; UPDATE t2 SET c='fifty-five thousand five hundred fifty-two' WHERE a=20010; UPDATE t2 SET c='forty-one thousand six hundred twenty-two' WHERE a=20011; UPDATE t2 SET c='ninety-seven thousand four hundred twenty-nine' WHERE a=20012; UPDATE t2 SET c='forty-nine thousand one' WHERE a=20013; UPDATE t2 SET c='two thousand thirty-seven' WHERE a=20014; UPDATE t2 SET c='ninety thousand eight hundred seventy-seven' WHERE a=20015; UPDATE t2 SET c='ninety-four thousand eight hundred nine' WHERE a=20016; UPDATE t2 SET c='seventy-six thousand nine hundred thirty-six' WHERE a=20017; UPDATE t2 SET c='seventy-three thousand one hundred sixty-three' WHERE a=20018; UPDATE t2 SET c='twenty-two thousand four hundred twenty-three' WHERE a=20019; UPDATE t2 SET c='two thousand three hundred fifty-two' WHERE a=20020; UPDATE t2 SET c='ninety-six thousand three hundred sixty-eight' WHERE a=20021; UPDATE t2 SET c='ninety-two thousand six hundred fifteen' WHERE a=20022; UPDATE t2 SET c='thirty-eight thousand three hundred eighty-two' WHERE a=20023; UPDATE t2 SET c='seventy-six thousand one hundred forty-two' WHERE a=20024; UPDATE t2 SET c='forty-one thousand twenty-six' WHERE a=20025; UPDATE t2 SET c='forty thousand seven hundred ninety-nine' WHERE a=20026; UPDATE t2 SET c='thirteen thousand three hundred ninety-seven' WHERE a=20027; UPDATE t2 SET c='twenty-one thousand seven hundred sixty-three' WHERE a=20028; UPDATE t2 SET c='thirty-one thousand one hundred ninety' WHERE a=20029; UPDATE t2 SET c='sixty-two thousand five hundred ninety-six' WHERE a=20030; UPDATE t2 SET c='forty-seven thousand two hundred ninety' WHERE a=20031; UPDATE t2 SET c='seventy-eight thousand three hundred eighty-seven' WHERE a=20032; UPDATE t2 SET c='seventy-three thousand one hundred forty-nine' WHERE a=20033; UPDATE t2 SET c='eighty-four thousand two hundred fifty-nine' WHERE a=20034; UPDATE t2 SET c='sixty thousand eight hundred forty-one' WHERE a=20035; UPDATE t2 SET c='eighteen thousand four hundred twenty-two' WHERE a=20036; UPDATE t2 SET c='seventy-six thousand one hundred forty-four' WHERE a=20037; UPDATE t2 SET c='sixty-five thousand three hundred thirty-four' WHERE a=20038; UPDATE t2 SET c='five thousand six hundred thirty-nine' WHERE a=20039; UPDATE t2 SET c='thirty-eight thousand eight hundred ninety-six' WHERE a=20040; UPDATE t2 SET c='seven thousand eight hundred thirty-eight' WHERE a=20041; UPDATE t2 SET c='sixty-three thousand two hundred eighty-eight' WHERE a=20042; UPDATE t2 SET c='thirty-four thousand two hundred ninety-seven' WHERE a=20043; UPDATE t2 SET c='five thousand nine hundred eighty-three' WHERE a=20044; UPDATE t2 SET c='eighty-three thousand four hundred thirty-two' WHERE a=20045; UPDATE t2 SET c='seventeen thousand nine hundred eighty-seven' WHERE a=20046; UPDATE t2 SET c='five thousand three hundred thirty-three' WHERE a=20047; UPDATE t2 SET c='fifty-nine thousand three hundred sixty-three' WHERE a=20048; UPDATE t2 SET c='thirty-seven thousand eight hundred four' WHERE a=20049; UPDATE t2 SET c='sixteen thousand two hundred thirty-nine' WHERE a=20050; UPDATE t2 SET c='five thousand one hundred' WHERE a=20051; UPDATE t2 SET c='forty-eight thousand nine' WHERE a=20052; UPDATE t2 SET c='fifty-two thousand five' WHERE a=20053; UPDATE t2 SET c='eighty-nine thousand eight hundred seventy-four' WHERE a=20054; UPDATE t2 SET c='fifty-two thousand seven hundred five' WHERE a=20055; UPDATE t2 SET c='twelve thousand seven hundred thirteen' WHERE a=20056; UPDATE t2 SET c='eighty-eight thousand one hundred eighty-six' WHERE a=20057; UPDATE t2 SET c='eighty-two thousand four hundred thirty-seven' WHERE a=20058; UPDATE t2 SET c='seventy-six thousand twenty-one' WHERE a=20059; UPDATE t2 SET c='forty-two thousand nine hundred seventeen' WHERE a=20060; UPDATE t2 SET c='ninety thousand nine hundred sixty-three' WHERE a=20061; UPDATE t2 SET c='fifty thousand eight hundred seventy-nine' WHERE a=20062; UPDATE t2 SET c='forty-one thousand one hundred seventy-one' WHERE a=20063; UPDATE t2 SET c='sixty thousand two hundred forty-five' WHERE a=20064; UPDATE t2 SET c='twenty thousand three hundred eighty-one' WHERE a=20065; UPDATE t2 SET c='fifty-one thousand six hundred forty-three' WHERE a=20066; UPDATE t2 SET c='seventy thousand nine hundred four' WHERE a=20067; UPDATE t2 SET c='two thousand one hundred thirty-six' WHERE a=20068; UPDATE t2 SET c='seventy-six thousand two hundred seven' WHERE a=20069; UPDATE t2 SET c='sixty-two thousand four hundred twenty-two' WHERE a=20070; UPDATE t2 SET c='fifty-six thousand nine hundred eighty-six' WHERE a=20071; UPDATE t2 SET c='sixty-one thousand eight hundred forty-one' WHERE a=20072; UPDATE t2 SET c='thirteen thousand four hundred twenty-seven' WHERE a=20073; UPDATE t2 SET c='ten thousand one hundred sixty' WHERE a=20074; UPDATE t2 SET c='sixty thousand seven hundred fifty-seven' WHERE a=20075; UPDATE t2 SET c='seventy-six thousand four hundred ninety-five' WHERE a=20076; UPDATE t2 SET c='sixty-eight thousand six hundred twenty-eight' WHERE a=20077; UPDATE t2 SET c='eighty-four thousand eight hundred thirty' WHERE a=20078; UPDATE t2 SET c='sixty-six thousand seven hundred nine' WHERE a=20079; UPDATE t2 SET c='sixty-nine thousand nine hundred fifty-four' WHERE a=20080; UPDATE t2 SET c='eighty-four thousand three hundred thirty-six' WHERE a=20081; UPDATE t2 SET c='seventy-one thousand five hundred seventy-five' WHERE a=20082; UPDATE t2 SET c='twenty-four thousand three hundred sixty-nine' WHERE a=20083; UPDATE t2 SET c='ten thousand nine hundred nineteen' WHERE a=20084; UPDATE t2 SET c='twenty-seven thousand twenty' WHERE a=20085; UPDATE t2 SET c='twenty thousand seven hundred one' WHERE a=20086; UPDATE t2 SET c='thirteen thousand one hundred eighty-six' WHERE a=20087; UPDATE t2 SET c='ninety-one thousand four hundred seventy-three' WHERE a=20088; UPDATE t2 SET c='eighty-one thousand four hundred seventeen' WHERE a=20089; UPDATE t2 SET c='sixty-eight thousand two hundred ninety' WHERE a=20090; UPDATE t2 SET c='eight thousand two hundred thirty-nine' WHERE a=20091; UPDATE t2 SET c='fifty-four thousand seven hundred fifty-seven' WHERE a=20092; UPDATE t2 SET c='fifty-five thousand three hundred thirty-five' WHERE a=20093; UPDATE t2 SET c='forty-seven thousand two hundred forty-nine' WHERE a=20094; UPDATE t2 SET c='seventy-four thousand one hundred' WHERE a=20095; UPDATE t2 SET c='eighty-six thousand five hundred sixty-three' WHERE a=20096; UPDATE t2 SET c='eight thousand five hundred ninety-four' WHERE a=20097; UPDATE t2 SET c='thirty-three thousand one hundred forty-six' WHERE a=20098; UPDATE t2 SET c='forty-eight thousand four hundred ninety-eight' WHERE a=20099; UPDATE t2 SET c='thirty-seven thousand six hundred eighty-four' WHERE a=20100; UPDATE t2 SET c='seventy-four thousand seven hundred seven' WHERE a=20101; UPDATE t2 SET c='forty-six thousand eight hundred forty-two' WHERE a=20102; UPDATE t2 SET c='eighteen thousand nineteen' WHERE a=20103; UPDATE t2 SET c='thirty thousand one hundred seventeen' WHERE a=20104; UPDATE t2 SET c='eight thousand four hundred one' WHERE a=20105; UPDATE t2 SET c='eleven thousand ninety-eight' WHERE a=20106; UPDATE t2 SET c='thirty-eight thousand one hundred thirty-four' WHERE a=20107; UPDATE t2 SET c='eight hundred fifty-two' WHERE a=20108; UPDATE t2 SET c='eighty-four thousand seven hundred fifty-eight' WHERE a=20109; UPDATE t2 SET c='eleven thousand twelve' WHERE a=20110; UPDATE t2 SET c='six thousand eight hundred seven' WHERE a=20111; UPDATE t2 SET c='thirty-seven thousand three hundred six' WHERE a=20112; UPDATE t2 SET c='thirty-five thousand seven hundred forty-nine' WHERE a=20113; UPDATE t2 SET c='ninety-six thousand seven hundred seven' WHERE a=20114; UPDATE t2 SET c='twenty-three thousand one hundred forty-nine' WHERE a=20115; UPDATE t2 SET c='fourteen thousand forty' WHERE a=20116; UPDATE t2 SET c='sixty-seven thousand six hundred ninety-three' WHERE a=20117; UPDATE t2 SET c='twenty-three thousand five hundred eighty' WHERE a=20118; UPDATE t2 SET c='twenty thousand one hundred eighty-seven' WHERE a=20119; UPDATE t2 SET c='fifty-seven thousand one hundred sixty-six' WHERE a=20120; UPDATE t2 SET c='sixty-six thousand three hundred seventy-seven' WHERE a=20121; UPDATE t2 SET c='twenty-six thousand one hundred sixty-four' WHERE a=20122; UPDATE t2 SET c='eighteen thousand nine hundred seven' WHERE a=20123; UPDATE t2 SET c='fifty-seven thousand two hundred forty-seven' WHERE a=20124; UPDATE t2 SET c='eighteen thousand two hundred seventy-nine' WHERE a=20125; UPDATE t2 SET c='twenty-three thousand three hundred eighty' WHERE a=20126; UPDATE t2 SET c='sixty-five thousand two hundred seventy-eight' WHERE a=20127; UPDATE t2 SET c='forty thousand five hundred twenty-one' WHERE a=20128; UPDATE t2 SET c='twenty-one thousand eight hundred sixty' WHERE a=20129; UPDATE t2 SET c='seventy thousand three hundred fourteen' WHERE a=20130; UPDATE t2 SET c='twenty-six thousand nine hundred fifty-six' WHERE a=20131; UPDATE t2 SET c='sixty-four thousand two hundred sixty' WHERE a=20132; UPDATE t2 SET c='twenty-four thousand eight hundred ninety-seven' WHERE a=20133; UPDATE t2 SET c='forty-four thousand six hundred ninety-one' WHERE a=20134; UPDATE t2 SET c='sixty-one thousand twenty' WHERE a=20135; UPDATE t2 SET c='fifty-three thousand three hundred fifty-six' WHERE a=20136; UPDATE t2 SET c='forty-one thousand six hundred thirty-one' WHERE a=20137; UPDATE t2 SET c='ninety-eight thousand six hundred ninety-seven' WHERE a=20138; UPDATE t2 SET c='seventy-five thousand thirty-six' WHERE a=20139; UPDATE t2 SET c='sixty thousand nine hundred fifty-five' WHERE a=20140; UPDATE t2 SET c='seventy-eight thousand six hundred eighty-seven' WHERE a=20141; UPDATE t2 SET c='thirty-one thousand fifty-six' WHERE a=20142; UPDATE t2 SET c='seventy-five thousand five hundred six' WHERE a=20143; UPDATE t2 SET c='twenty-one thousand four hundred seventy-one' WHERE a=20144; UPDATE t2 SET c='seventy-three thousand one hundred eight' WHERE a=20145; UPDATE t2 SET c='sixty-two thousand six hundred ninety' WHERE a=20146; UPDATE t2 SET c='forty-nine thousand nine hundred twenty' WHERE a=20147; UPDATE t2 SET c='thirty-seven thousand five hundred thirty-six' WHERE a=20148; UPDATE t2 SET c='sixteen thousand five hundred ninety-nine' WHERE a=20149; UPDATE t2 SET c='forty thousand twenty-five' WHERE a=20150; UPDATE t2 SET c='ninety-six thousand five hundred fifty-one' WHERE a=20151; UPDATE t2 SET c='ninety-six thousand seventy-seven' WHERE a=20152; UPDATE t2 SET c='forty thousand one hundred sixty-six' WHERE a=20153; UPDATE t2 SET c='ninety thousand three hundred fifty-five' WHERE a=20154; UPDATE t2 SET c='fifty-one thousand seven hundred ninety-three' WHERE a=20155; UPDATE t2 SET c='sixty-one thousand six hundred sixty-three' WHERE a=20156; UPDATE t2 SET c='sixty-nine thousand eight hundred seventy-five' WHERE a=20157; UPDATE t2 SET c='forty-four thousand two hundred five' WHERE a=20158; UPDATE t2 SET c='eighty-two thousand one hundred thirty-two' WHERE a=20159; UPDATE t2 SET c='eighty-six thousand five' WHERE a=20160; UPDATE t2 SET c='thirty-four thousand nine hundred thirty-nine' WHERE a=20161; UPDATE t2 SET c='sixty-three thousand four hundred thirty-five' WHERE a=20162; UPDATE t2 SET c='forty thousand two hundred nine' WHERE a=20163; UPDATE t2 SET c='seventy thousand nine hundred fifty-four' WHERE a=20164; UPDATE t2 SET c='ninety-one thousand one hundred forty-eight' WHERE a=20165; UPDATE t2 SET c='forty-eight thousand one hundred eighty-four' WHERE a=20166; UPDATE t2 SET c='ninety-eight thousand two hundred thirty-three' WHERE a=20167; UPDATE t2 SET c='thirty-one thousand two hundred twenty' WHERE a=20168; UPDATE t2 SET c='nineteen thousand eight hundred eighteen' WHERE a=20169; UPDATE t2 SET c='fifty-three thousand three hundred eleven' WHERE a=20170; UPDATE t2 SET c='twenty-one thousand two hundred two' WHERE a=20171; UPDATE t2 SET c='twenty-five thousand seven hundred forty-seven' WHERE a=20172; UPDATE t2 SET c='twenty-five thousand two hundred fifty-nine' WHERE a=20173; UPDATE t2 SET c='sixteen thousand five hundred' WHERE a=20174; UPDATE t2 SET c='eleven thousand eight hundred seventy-seven' WHERE a=20175; UPDATE t2 SET c='six thousand three hundred two' WHERE a=20176; UPDATE t2 SET c='thirty-six thousand six hundred nineteen' WHERE a=20177; UPDATE t2 SET c='sixteen thousand two hundred eighteen' WHERE a=20178; UPDATE t2 SET c='twenty-four thousand eight hundred two' WHERE a=20179; UPDATE t2 SET c='one thousand six hundred ninety-seven' WHERE a=20180; UPDATE t2 SET c='forty-three thousand one hundred seventy-seven' WHERE a=20181; UPDATE t2 SET c='eighteen thousand eight hundred twenty-four' WHERE a=20182; UPDATE t2 SET c='thirteen thousand two hundred eighty-eight' WHERE a=20183; UPDATE t2 SET c='six thousand five hundred two' WHERE a=20184; UPDATE t2 SET c='ninety-three thousand one hundred nineteen' WHERE a=20185; UPDATE t2 SET c='eighty-four thousand five hundred twenty' WHERE a=20186; UPDATE t2 SET c='eighty-one thousand three hundred twenty-nine' WHERE a=20187; UPDATE t2 SET c='fourteen thousand three hundred ten' WHERE a=20188; UPDATE t2 SET c='forty-seven thousand three hundred thirty-one' WHERE a=20189; UPDATE t2 SET c='fourteen thousand three hundred eighty-six' WHERE a=20190; UPDATE t2 SET c='twenty-six thousand three hundred ninety-one' WHERE a=20191; UPDATE t2 SET c='ninety-three thousand eighty-seven' WHERE a=20192; UPDATE t2 SET c='ten thousand eight hundred fifty-eight' WHERE a=20193; UPDATE t2 SET c='thirty-one thousand two hundred twenty' WHERE a=20194; UPDATE t2 SET c='eighty-eight thousand three hundred twenty-three' WHERE a=20195; UPDATE t2 SET c='thirty-four thousand five hundred two' WHERE a=20196; UPDATE t2 SET c='one thousand nine hundred twenty-three' WHERE a=20197; UPDATE t2 SET c='nine thousand eight hundred thirty-four' WHERE a=20198; UPDATE t2 SET c='seventy-seven thousand five hundred forty-seven' WHERE a=20199; UPDATE t2 SET c='ninety-four thousand six hundred eighty-seven' WHERE a=20200; UPDATE t2 SET c='thirty-five thousand five hundred sixty-seven' WHERE a=20201; UPDATE t2 SET c='twenty-five thousand five hundred seven' WHERE a=20202; UPDATE t2 SET c='fifty-eight thousand eight hundred eleven' WHERE a=20203; UPDATE t2 SET c='seventy-seven thousand five hundred seventy-five' WHERE a=20204; UPDATE t2 SET c='seven thousand nine hundred fifty-three' WHERE a=20205; UPDATE t2 SET c='eighty-one thousand seven hundred thirty-five' WHERE a=20206; UPDATE t2 SET c='forty thousand two hundred thirty-nine' WHERE a=20207; UPDATE t2 SET c='fifteen thousand sixty-eight' WHERE a=20208; UPDATE t2 SET c='forty-four thousand ten' WHERE a=20209; UPDATE t2 SET c='thirty-one thousand six hundred thirty' WHERE a=20210; UPDATE t2 SET c='forty thousand six hundred seventy-seven' WHERE a=20211; UPDATE t2 SET c='seventy-three thousand eight hundred' WHERE a=20212; UPDATE t2 SET c='forty-one thousand nine hundred twenty-one' WHERE a=20213; UPDATE t2 SET c='ninety-five thousand nine hundred four' WHERE a=20214; UPDATE t2 SET c='eighty-six thousand nine hundred eighty-one' WHERE a=20215; UPDATE t2 SET c='forty-nine thousand five hundred forty-six' WHERE a=20216; UPDATE t2 SET c='eighty-eight thousand eight hundred sixteen' WHERE a=20217; UPDATE t2 SET c='thirty-one thousand four hundred fifty-three' WHERE a=20218; UPDATE t2 SET c='forty-one thousand seven hundred eighty' WHERE a=20219; UPDATE t2 SET c='forty-three thousand nine hundred ninety' WHERE a=20220; UPDATE t2 SET c='twenty-six thousand one hundred eighty-nine' WHERE a=20221; UPDATE t2 SET c='thirty-eight thousand two hundred fourteen' WHERE a=20222; UPDATE t2 SET c='twenty-nine thousand six hundred twenty-seven' WHERE a=20223; UPDATE t2 SET c='eighty-five thousand six hundred seventy-six' WHERE a=20224; UPDATE t2 SET c='forty-eight thousand four hundred fifty-six' WHERE a=20225; UPDATE t2 SET c='thirty-eight thousand five hundred ninety' WHERE a=20226; UPDATE t2 SET c='fifty-four thousand one hundred two' WHERE a=20227; UPDATE t2 SET c='sixteen thousand two hundred ninety-one' WHERE a=20228; UPDATE t2 SET c='thirty-two thousand seven hundred forty-one' WHERE a=20229; UPDATE t2 SET c='eighty-six thousand two hundred twenty' WHERE a=20230; UPDATE t2 SET c='twelve thousand seven hundred fifty-three' WHERE a=20231; UPDATE t2 SET c='fifty-one thousand four hundred forty-one' WHERE a=20232; UPDATE t2 SET c='forty-three thousand six hundred twenty-seven' WHERE a=20233; UPDATE t2 SET c='twenty thousand seven hundred forty-eight' WHERE a=20234; UPDATE t2 SET c='thirty-seven thousand three hundred thirty-six' WHERE a=20235; UPDATE t2 SET c='eighty-eight thousand eight hundred twenty-one' WHERE a=20236; UPDATE t2 SET c='thirteen thousand six hundred sixty-two' WHERE a=20237; UPDATE t2 SET c='fifty-one thousand two hundred seven' WHERE a=20238; UPDATE t2 SET c='six thousand two hundred ninety-six' WHERE a=20239; UPDATE t2 SET c='three thousand seven hundred seventy-two' WHERE a=20240; UPDATE t2 SET c='sixty-nine thousand five hundred ninety-one' WHERE a=20241; UPDATE t2 SET c='eighty-seven thousand nine hundred fifteen' WHERE a=20242; UPDATE t2 SET c='thirty-seven thousand four hundred forty-four' WHERE a=20243; UPDATE t2 SET c='nine thousand five hundred seventy-two' WHERE a=20244; UPDATE t2 SET c='thirteen thousand eight hundred eighty-five' WHERE a=20245; UPDATE t2 SET c='forty thousand one hundred thirty-two' WHERE a=20246; UPDATE t2 SET c='forty-two thousand four hundred eighty-nine' WHERE a=20247; UPDATE t2 SET c='nine thousand five hundred ninety-six' WHERE a=20248; UPDATE t2 SET c='thirty-two thousand three hundred eight' WHERE a=20249; UPDATE t2 SET c='twenty-two thousand ninety-four' WHERE a=20250; UPDATE t2 SET c='eighty-nine thousand four hundred sixty-three' WHERE a=20251; UPDATE t2 SET c='twenty-four thousand five hundred fifty' WHERE a=20252; UPDATE t2 SET c='sixty-five thousand five hundred seventy-seven' WHERE a=20253; UPDATE t2 SET c='forty-two thousand two hundred eight' WHERE a=20254; UPDATE t2 SET c='one thousand five' WHERE a=20255; UPDATE t2 SET c='sixteen thousand eight hundred eighty-eight' WHERE a=20256; UPDATE t2 SET c='eighty-seven thousand three hundred nineteen' WHERE a=20257; UPDATE t2 SET c='seventy-seven thousand three hundred eighty-three' WHERE a=20258; UPDATE t2 SET c='thirty-one thousand eight hundred sixty-five' WHERE a=20259; UPDATE t2 SET c='five thousand nine hundred seventy-six' WHERE a=20260; UPDATE t2 SET c='three hundred forty' WHERE a=20261; UPDATE t2 SET c='fourteen thousand twenty-three' WHERE a=20262; UPDATE t2 SET c='sixty thousand four hundred thirty-nine' WHERE a=20263; UPDATE t2 SET c='eighty-nine thousand eight hundred sixty-two' WHERE a=20264; UPDATE t2 SET c='thirty-six thousand two hundred thirty-six' WHERE a=20265; UPDATE t2 SET c='thirty-seven thousand six hundred forty-seven' WHERE a=20266; UPDATE t2 SET c='ninety-one thousand nine hundred sixty-five' WHERE a=20267; UPDATE t2 SET c='thirty-six thousand four hundred' WHERE a=20268; UPDATE t2 SET c='seventy-one thousand seven hundred eighty-three' WHERE a=20269; UPDATE t2 SET c='forty-seven thousand one hundred eighty-one' WHERE a=20270; UPDATE t2 SET c='ninety-one thousand four hundred forty-two' WHERE a=20271; UPDATE t2 SET c='fifty-six thousand four hundred seventy-six' WHERE a=20272; UPDATE t2 SET c='eighty-nine thousand six hundred fifty' WHERE a=20273; UPDATE t2 SET c='thirty-one thousand two hundred fifty' WHERE a=20274; UPDATE t2 SET c='eighty-three thousand four hundred seventy-two' WHERE a=20275; UPDATE t2 SET c='fifty-three thousand seven hundred fifty-one' WHERE a=20276; UPDATE t2 SET c='two thousand seven hundred two' WHERE a=20277; UPDATE t2 SET c='eighty-one thousand thirty-six' WHERE a=20278; UPDATE t2 SET c='ten thousand eight hundred thirty' WHERE a=20279; UPDATE t2 SET c='sixty-two thousand eight hundred eighty-eight' WHERE a=20280; UPDATE t2 SET c='sixty-one thousand four hundred ninety-three' WHERE a=20281; UPDATE t2 SET c='forty-two thousand three hundred forty' WHERE a=20282; UPDATE t2 SET c='eighty-nine thousand one hundred nine' WHERE a=20283; UPDATE t2 SET c='thirty-nine thousand one hundred eighty-seven' WHERE a=20284; UPDATE t2 SET c='sixty-three thousand eight hundred forty-six' WHERE a=20285; UPDATE t2 SET c='seventy-three thousand two hundred twenty-five' WHERE a=20286; UPDATE t2 SET c='seventy-eight thousand ninety-seven' WHERE a=20287; UPDATE t2 SET c='twenty-five thousand four hundred seven' WHERE a=20288; UPDATE t2 SET c='thirty-four thousand eight hundred ten' WHERE a=20289; UPDATE t2 SET c='twenty-seven thousand seven' WHERE a=20290; UPDATE t2 SET c='ninety-eight thousand one hundred fifty-five' WHERE a=20291; UPDATE t2 SET c='twenty-five thousand four hundred fifty-six' WHERE a=20292; UPDATE t2 SET c='fifty-six thousand one hundred twenty-eight' WHERE a=20293; UPDATE t2 SET c='four thousand four hundred seventy-one' WHERE a=20294; UPDATE t2 SET c='forty thousand seven hundred fifteen' WHERE a=20295; UPDATE t2 SET c='fifty-one thousand three hundred twenty-six' WHERE a=20296; UPDATE t2 SET c='fifty-two thousand four hundred seventy-one' WHERE a=20297; UPDATE t2 SET c='eighty-four thousand two hundred sixty-four' WHERE a=20298; UPDATE t2 SET c='twenty-nine thousand two hundred ninety-two' WHERE a=20299; UPDATE t2 SET c='eighty-two thousand eight hundred thirty-three' WHERE a=20300; UPDATE t2 SET c='seventy-three thousand nine hundred sixteen' WHERE a=20301; UPDATE t2 SET c='thirty-four thousand six hundred thirty-four' WHERE a=20302; UPDATE t2 SET c='forty-eight thousand five hundred thirty-nine' WHERE a=20303; UPDATE t2 SET c='sixty-nine thousand nine hundred one' WHERE a=20304; UPDATE t2 SET c='seventeen thousand two hundred twenty-three' WHERE a=20305; UPDATE t2 SET c='sixty-three thousand twenty-two' WHERE a=20306; UPDATE t2 SET c='seventy-five thousand five hundred forty-eight' WHERE a=20307; UPDATE t2 SET c='fifty-nine thousand six hundred seventy-six' WHERE a=20308; UPDATE t2 SET c='twenty-one thousand three hundred eighty-four' WHERE a=20309; UPDATE t2 SET c='fifty-six thousand forty-nine' WHERE a=20310; UPDATE t2 SET c='two thousand three hundred seventeen' WHERE a=20311; UPDATE t2 SET c='eighty-five thousand nine hundred thirty-nine' WHERE a=20312; UPDATE t2 SET c='forty-six thousand four hundred eighty-one' WHERE a=20313; UPDATE t2 SET c='ten thousand nine hundred ninety-five' WHERE a=20314; UPDATE t2 SET c='fifty-one thousand eight hundred thirty-seven' WHERE a=20315; UPDATE t2 SET c='ninety-nine thousand two hundred seventeen' WHERE a=20316; UPDATE t2 SET c='fifty-two thousand eighty-one' WHERE a=20317; UPDATE t2 SET c='seventy-nine thousand six hundred ninety-three' WHERE a=20318; UPDATE t2 SET c='sixty-four thousand six hundred twenty-five' WHERE a=20319; UPDATE t2 SET c='forty-nine thousand three hundred forty-nine' WHERE a=20320; UPDATE t2 SET c='eighty-five thousand two hundred ten' WHERE a=20321; UPDATE t2 SET c='fifty-seven thousand six hundred eighty-one' WHERE a=20322; UPDATE t2 SET c='seventy-one thousand six hundred thirty-five' WHERE a=20323; UPDATE t2 SET c='fifteen thousand one hundred forty-four' WHERE a=20324; UPDATE t2 SET c='sixty-four thousand nine hundred sixty-eight' WHERE a=20325; UPDATE t2 SET c='sixty-nine thousand seven hundred thirteen' WHERE a=20326; UPDATE t2 SET c='twenty-eight thousand eight hundred sixteen' WHERE a=20327; UPDATE t2 SET c='forty-six thousand one hundred twenty-eight' WHERE a=20328; UPDATE t2 SET c='seventy-six thousand six hundred eighty-nine' WHERE a=20329; UPDATE t2 SET c='thirty-three thousand six hundred seventy-two' WHERE a=20330; UPDATE t2 SET c='fifty-four thousand' WHERE a=20331; UPDATE t2 SET c='fourteen thousand forty-seven' WHERE a=20332; UPDATE t2 SET c='five thousand nine hundred twelve' WHERE a=20333; UPDATE t2 SET c='thirteen thousand six hundred thirty-two' WHERE a=20334; UPDATE t2 SET c='sixty-six thousand five hundred ninety-seven' WHERE a=20335; UPDATE t2 SET c='ninety-four thousand five hundred twenty-four' WHERE a=20336; UPDATE t2 SET c='sixty-nine thousand seven hundred thirty-one' WHERE a=20337; UPDATE t2 SET c='three thousand nine hundred eighty-four' WHERE a=20338; UPDATE t2 SET c='one thousand nine hundred thirty-four' WHERE a=20339; UPDATE t2 SET c='forty-four thousand five hundred twenty-nine' WHERE a=20340; UPDATE t2 SET c='two thousand three hundred sixty-four' WHERE a=20341; UPDATE t2 SET c='forty-five thousand three hundred fifty-seven' WHERE a=20342; UPDATE t2 SET c='eighty-two thousand seven hundred thirty-six' WHERE a=20343; UPDATE t2 SET c='eleven thousand two hundred ninety-nine' WHERE a=20344; UPDATE t2 SET c='ninety-two thousand seventy-six' WHERE a=20345; UPDATE t2 SET c='seventy-three thousand six hundred eighty-six' WHERE a=20346; UPDATE t2 SET c='ninety-seven thousand eight hundred forty' WHERE a=20347; UPDATE t2 SET c='ninety-nine thousand seven hundred forty-seven' WHERE a=20348; UPDATE t2 SET c='forty-four thousand five hundred ninety' WHERE a=20349; UPDATE t2 SET c='ninety-four thousand forty-one' WHERE a=20350; UPDATE t2 SET c='forty-nine thousand one hundred ninety' WHERE a=20351; UPDATE t2 SET c='thirteen thousand eight hundred ninety-four' WHERE a=20352; UPDATE t2 SET c='forty thousand five hundred eight' WHERE a=20353; UPDATE t2 SET c='thirty-nine thousand sixty-five' WHERE a=20354; UPDATE t2 SET c='thirty-two thousand five hundred twenty-six' WHERE a=20355; UPDATE t2 SET c='four thousand two hundred twenty-six' WHERE a=20356; UPDATE t2 SET c='five thousand three hundred fifty-six' WHERE a=20357; UPDATE t2 SET c='fifty-seven thousand seven hundred ninety-four' WHERE a=20358; UPDATE t2 SET c='ninety thousand four hundred ninety-eight' WHERE a=20359; UPDATE t2 SET c='ninety-six thousand three' WHERE a=20360; UPDATE t2 SET c='twenty thousand five hundred fifty-nine' WHERE a=20361; UPDATE t2 SET c='two thousand ninety-five' WHERE a=20362; UPDATE t2 SET c='ninety-four thousand eight hundred eighty-one' WHERE a=20363; UPDATE t2 SET c='thirty-seven thousand nine hundred twenty-three' WHERE a=20364; UPDATE t2 SET c='thirty-four thousand seven hundred thirty-six' WHERE a=20365; UPDATE t2 SET c='ninety-five thousand three hundred seventy-seven' WHERE a=20366; UPDATE t2 SET c='four thousand nine' WHERE a=20367; UPDATE t2 SET c='eighty-seven thousand nine hundred ten' WHERE a=20368; UPDATE t2 SET c='eighteen thousand thirty-six' WHERE a=20369; UPDATE t2 SET c='forty-seven thousand one hundred eighty-six' WHERE a=20370; UPDATE t2 SET c='eighty-three thousand nine hundred seventy-one' WHERE a=20371; UPDATE t2 SET c='sixty-five thousand nine hundred eighty-nine' WHERE a=20372; UPDATE t2 SET c='twenty thousand nine hundred thirty-seven' WHERE a=20373; UPDATE t2 SET c='fifty-one thousand four hundred ninety-five' WHERE a=20374; UPDATE t2 SET c='twenty thousand seven hundred eighty-two' WHERE a=20375; UPDATE t2 SET c='one thousand nine hundred sixty' WHERE a=20376; UPDATE t2 SET c='thirty-six thousand six hundred ninety-two' WHERE a=20377; UPDATE t2 SET c='one thousand six hundred sixteen' WHERE a=20378; UPDATE t2 SET c='ninety-four thousand four hundred fifteen' WHERE a=20379; UPDATE t2 SET c='twenty-two thousand four hundred eighty' WHERE a=20380; UPDATE t2 SET c='forty-one thousand eight hundred ninety-eight' WHERE a=20381; UPDATE t2 SET c='two thousand two hundred forty-two' WHERE a=20382; UPDATE t2 SET c='forty-seven thousand two hundred two' WHERE a=20383; UPDATE t2 SET c='nine thousand twenty-nine' WHERE a=20384; UPDATE t2 SET c='sixteen thousand five hundred twenty-one' WHERE a=20385; UPDATE t2 SET c='forty-two thousand four hundred five' WHERE a=20386; UPDATE t2 SET c='sixty-nine thousand two hundred thirty-four' WHERE a=20387; UPDATE t2 SET c='eighty thousand three hundred eleven' WHERE a=20388; UPDATE t2 SET c='ninety-one thousand five hundred thirty-two' WHERE a=20389; UPDATE t2 SET c='sixty-eight thousand one hundred fifty-six' WHERE a=20390; UPDATE t2 SET c='thirty-three thousand five hundred thirty-three' WHERE a=20391; UPDATE t2 SET c='ninety-one thousand six hundred seventy-two' WHERE a=20392; UPDATE t2 SET c='eighty thousand five hundred thirty-five' WHERE a=20393; UPDATE t2 SET c='thirty-four thousand eight hundred seventy-seven' WHERE a=20394; UPDATE t2 SET c='forty-six thousand seven hundred one' WHERE a=20395; UPDATE t2 SET c='ninety-two thousand six hundred fourteen' WHERE a=20396; UPDATE t2 SET c='eighty-six thousand seven hundred fifty-two' WHERE a=20397; UPDATE t2 SET c='forty-six thousand nine hundred sixty-seven' WHERE a=20398; UPDATE t2 SET c='twelve thousand eighty-four' WHERE a=20399; UPDATE t2 SET c='fifty thousand five hundred ninety-seven' WHERE a=20400; UPDATE t2 SET c='fifty-four thousand seven hundred eighty-two' WHERE a=20401; UPDATE t2 SET c='eighty-six thousand two hundred six' WHERE a=20402; UPDATE t2 SET c='ninety-nine thousand thirty-six' WHERE a=20403; UPDATE t2 SET c='forty-six thousand five hundred thirty-six' WHERE a=20404; UPDATE t2 SET c='seventy-three thousand eight hundred forty-six' WHERE a=20405; UPDATE t2 SET c='twelve thousand four hundred forty-three' WHERE a=20406; UPDATE t2 SET c='sixty-seven thousand five hundred twenty-five' WHERE a=20407; UPDATE t2 SET c='twenty-nine thousand two hundred seventy-eight' WHERE a=20408; UPDATE t2 SET c='fifty-nine thousand seven hundred forty-seven' WHERE a=20409; UPDATE t2 SET c='thirty-five thousand four hundred ninety-seven' WHERE a=20410; UPDATE t2 SET c='seven thousand two hundred ninety-nine' WHERE a=20411; UPDATE t2 SET c='fifty-nine thousand five hundred seventy-four' WHERE a=20412; UPDATE t2 SET c='thirty thousand two hundred twenty-eight' WHERE a=20413; UPDATE t2 SET c='fifty-one thousand two' WHERE a=20414; UPDATE t2 SET c='thirty-one thousand two hundred fifty-nine' WHERE a=20415; UPDATE t2 SET c='twenty-six thousand nine hundred twenty-six' WHERE a=20416; UPDATE t2 SET c='forty-one thousand seven' WHERE a=20417; UPDATE t2 SET c='twenty-six thousand five' WHERE a=20418; UPDATE t2 SET c='sixty-two thousand eight hundred ninety-five' WHERE a=20419; UPDATE t2 SET c='ninety-five thousand eight hundred sixty-one' WHERE a=20420; UPDATE t2 SET c='thirty-five thousand nine hundred four' WHERE a=20421; UPDATE t2 SET c='forty-one thousand one hundred eighty' WHERE a=20422; UPDATE t2 SET c='thirty-six thousand three hundred thirty-six' WHERE a=20423; UPDATE t2 SET c='ninety-three thousand eight hundred fifty-two' WHERE a=20424; UPDATE t2 SET c='seventy-three thousand seven hundred seventy-one' WHERE a=20425; UPDATE t2 SET c='fifty-eight thousand nine hundred twelve' WHERE a=20426; UPDATE t2 SET c='eighty-six thousand three hundred twenty-three' WHERE a=20427; UPDATE t2 SET c='fifty-eight thousand eight hundred twenty-two' WHERE a=20428; UPDATE t2 SET c='thirty thousand seven hundred eighty-seven' WHERE a=20429; UPDATE t2 SET c='twelve thousand thirty-seven' WHERE a=20430; UPDATE t2 SET c='sixteen thousand seven hundred thirty' WHERE a=20431; UPDATE t2 SET c='twenty-five thousand four hundred eighty-two' WHERE a=20432; UPDATE t2 SET c='forty-four thousand four hundred fifteen' WHERE a=20433; UPDATE t2 SET c='sixteen thousand one hundred twenty-nine' WHERE a=20434; UPDATE t2 SET c='eight thousand one hundred seventeen' WHERE a=20435; UPDATE t2 SET c='nineteen thousand thirty' WHERE a=20436; UPDATE t2 SET c='seventy-one thousand two hundred twenty-four' WHERE a=20437; UPDATE t2 SET c='thirty-five thousand seven hundred eleven' WHERE a=20438; UPDATE t2 SET c='seven thousand seventeen' WHERE a=20439; UPDATE t2 SET c='eighty-five thousand four hundred seventy-one' WHERE a=20440; UPDATE t2 SET c='thirty-six thousand three hundred ninety-nine' WHERE a=20441; UPDATE t2 SET c='ninety-three thousand three hundred seventy-nine' WHERE a=20442; UPDATE t2 SET c='forty-nine thousand six hundred seventy-four' WHERE a=20443; UPDATE t2 SET c='one thousand six hundred seventy-seven' WHERE a=20444; UPDATE t2 SET c='sixty-nine thousand four hundred twenty-five' WHERE a=20445; UPDATE t2 SET c='ninety-eight thousand six hundred sixty-five' WHERE a=20446; UPDATE t2 SET c='twenty-three thousand five hundred eighty-nine' WHERE a=20447; UPDATE t2 SET c='sixty-two thousand three hundred forty-two' WHERE a=20448; UPDATE t2 SET c='sixty-three thousand six hundred sixty-five' WHERE a=20449; UPDATE t2 SET c='forty-three thousand six hundred thirty-eight' WHERE a=20450; UPDATE t2 SET c='twenty-four thousand seven hundred sixty-one' WHERE a=20451; UPDATE t2 SET c='forty-six thousand nine hundred twenty-nine' WHERE a=20452; UPDATE t2 SET c='five thousand eight hundred eighty-nine' WHERE a=20453; UPDATE t2 SET c='fifty-eight thousand seven hundred thirty-three' WHERE a=20454; UPDATE t2 SET c='sixty-six thousand one hundred twenty-one' WHERE a=20455; UPDATE t2 SET c='twenty thousand six hundred sixty-eight' WHERE a=20456; UPDATE t2 SET c='eighty-eight thousand seven hundred seventy-five' WHERE a=20457; UPDATE t2 SET c='thirty-one thousand eight hundred twenty-nine' WHERE a=20458; UPDATE t2 SET c='fifty-five thousand one hundred sixty-eight' WHERE a=20459; UPDATE t2 SET c='twenty thousand fifty' WHERE a=20460; UPDATE t2 SET c='seventy thousand three hundred eight' WHERE a=20461; UPDATE t2 SET c='fifty thousand six hundred ninety-eight' WHERE a=20462; UPDATE t2 SET c='seventy-six thousand seven hundred ninety-eight' WHERE a=20463; UPDATE t2 SET c='ten thousand nine hundred eleven' WHERE a=20464; UPDATE t2 SET c='fifty thousand four hundred ninety-six' WHERE a=20465; UPDATE t2 SET c='sixteen thousand three hundred ninety-seven' WHERE a=20466; UPDATE t2 SET c='ninety-nine thousand five hundred nine' WHERE a=20467; UPDATE t2 SET c='fifty-two thousand nine hundred eighty-two' WHERE a=20468; UPDATE t2 SET c='ninety-one thousand two hundred fifty-seven' WHERE a=20469; UPDATE t2 SET c='twenty-five thousand eight hundred seventy-one' WHERE a=20470; UPDATE t2 SET c='thirteen thousand two hundred thirty-six' WHERE a=20471; UPDATE t2 SET c='forty-two thousand eight hundred eighty-nine' WHERE a=20472; UPDATE t2 SET c='eighteen thousand six hundred eighteen' WHERE a=20473; UPDATE t2 SET c='twenty-five thousand three hundred sixty-nine' WHERE a=20474; UPDATE t2 SET c='twenty-six thousand seven hundred forty-two' WHERE a=20475; UPDATE t2 SET c='ninety-three thousand nine hundred ten' WHERE a=20476; UPDATE t2 SET c='sixty-six thousand three hundred ninety-seven' WHERE a=20477; UPDATE t2 SET c='three thousand five hundred seventy' WHERE a=20478; UPDATE t2 SET c='forty-nine thousand ninety-four' WHERE a=20479; UPDATE t2 SET c='twenty-two thousand two hundred fifty-nine' WHERE a=20480; UPDATE t2 SET c='fifty-nine thousand three hundred ninety-four' WHERE a=20481; UPDATE t2 SET c='twenty-eight thousand three hundred fifty-three' WHERE a=20482; UPDATE t2 SET c='fourteen thousand four hundred eleven' WHERE a=20483; UPDATE t2 SET c='nineteen thousand four hundred fifty-two' WHERE a=20484; UPDATE t2 SET c='sixty-nine thousand seven hundred fifty-three' WHERE a=20485; UPDATE t2 SET c='forty-eight thousand six hundred seventy-four' WHERE a=20486; UPDATE t2 SET c='eighty-two thousand two hundred ten' WHERE a=20487; UPDATE t2 SET c='eighty-seven thousand sixty-four' WHERE a=20488; UPDATE t2 SET c='twenty-three thousand six hundred fifty-four' WHERE a=20489; UPDATE t2 SET c='two thousand nine hundred fifty-six' WHERE a=20490; UPDATE t2 SET c='nine thousand two hundred fifty-six' WHERE a=20491; UPDATE t2 SET c='twenty-nine thousand eight hundred twenty-eight' WHERE a=20492; UPDATE t2 SET c='twenty-seven thousand five hundred ninety-six' WHERE a=20493; UPDATE t2 SET c='seventy-one thousand nine hundred forty-seven' WHERE a=20494; UPDATE t2 SET c='sixty-five thousand seven hundred forty' WHERE a=20495; UPDATE t2 SET c='forty-six thousand three hundred eight' WHERE a=20496; UPDATE t2 SET c='nineteen thousand nine hundred seventy-six' WHERE a=20497; UPDATE t2 SET c='twenty-three thousand eight hundred sixty-eight' WHERE a=20498; UPDATE t2 SET c='fourteen thousand two hundred seventy-nine' WHERE a=20499; UPDATE t2 SET c='sixty thousand two hundred fifty-four' WHERE a=20500; UPDATE t2 SET c='seven thousand seven hundred thirty-one' WHERE a=20501; UPDATE t2 SET c='three thousand thirty-seven' WHERE a=20502; UPDATE t2 SET c='twenty-seven thousand four hundred fifty-six' WHERE a=20503; UPDATE t2 SET c='ninety-six thousand nine hundred sixty-one' WHERE a=20504; UPDATE t2 SET c='ninety thousand six hundred forty-six' WHERE a=20505; UPDATE t2 SET c='ninety-one thousand six hundred four' WHERE a=20506; UPDATE t2 SET c='nineteen thousand four hundred eighty-nine' WHERE a=20507; UPDATE t2 SET c='eleven thousand four hundred sixty-five' WHERE a=20508; UPDATE t2 SET c='eighty-two thousand three hundred sixty-two' WHERE a=20509; UPDATE t2 SET c='eighteen thousand four hundred sixty' WHERE a=20510; UPDATE t2 SET c='eleven thousand six hundred fifty-six' WHERE a=20511; UPDATE t2 SET c='sixty-seven thousand eight hundred twenty-four' WHERE a=20512; UPDATE t2 SET c='twenty thousand four hundred twenty-six' WHERE a=20513; UPDATE t2 SET c='fifty-seven thousand four hundred sixty-three' WHERE a=20514; UPDATE t2 SET c='fifty-eight thousand seven hundred twenty-six' WHERE a=20515; UPDATE t2 SET c='ninety-seven thousand two hundred thirty-seven' WHERE a=20516; UPDATE t2 SET c='fifteen thousand eight hundred forty-eight' WHERE a=20517; UPDATE t2 SET c='ninety-eight thousand five hundred forty-two' WHERE a=20518; UPDATE t2 SET c='fourteen thousand two hundred thirty-two' WHERE a=20519; UPDATE t2 SET c='twenty-four thousand eight hundred seventy-one' WHERE a=20520; UPDATE t2 SET c='forty thousand seven hundred forty-three' WHERE a=20521; UPDATE t2 SET c='seventy-six thousand three hundred ninety-nine' WHERE a=20522; UPDATE t2 SET c='eighty-eight thousand thirty-two' WHERE a=20523; UPDATE t2 SET c='eighty-nine thousand three hundred forty-five' WHERE a=20524; UPDATE t2 SET c='thirty-six thousand twenty-five' WHERE a=20525; UPDATE t2 SET c='fifty-one thousand nine hundred seventy' WHERE a=20526; UPDATE t2 SET c='sixteen thousand six hundred twenty-five' WHERE a=20527; UPDATE t2 SET c='eighteen thousand three hundred thirty-eight' WHERE a=20528; UPDATE t2 SET c='fifty thousand eight hundred seventy-nine' WHERE a=20529; UPDATE t2 SET c='thirteen thousand nine hundred sixty-three' WHERE a=20530; UPDATE t2 SET c='eleven thousand two hundred twenty-nine' WHERE a=20531; UPDATE t2 SET c='eighty-three thousand seven hundred twenty-nine' WHERE a=20532; UPDATE t2 SET c='twenty-seven thousand nine hundred fourteen' WHERE a=20533; UPDATE t2 SET c='seventy-three thousand seven hundred twenty-six' WHERE a=20534; UPDATE t2 SET c='eighty-two thousand three hundred seventy-five' WHERE a=20535; UPDATE t2 SET c='twenty-three thousand one hundred ninety-nine' WHERE a=20536; UPDATE t2 SET c='thirty thousand eight hundred sixty-two' WHERE a=20537; UPDATE t2 SET c='twenty-nine thousand one hundred thirty-one' WHERE a=20538; UPDATE t2 SET c='nine thousand twenty-one' WHERE a=20539; UPDATE t2 SET c='forty-four thousand eight hundred twenty-seven' WHERE a=20540; UPDATE t2 SET c='seventy-nine thousand eight hundred eighty-five' WHERE a=20541; UPDATE t2 SET c='thirty-one thousand four hundred fifty-two' WHERE a=20542; UPDATE t2 SET c='ninety-four thousand seven hundred ninety-two' WHERE a=20543; UPDATE t2 SET c='fifty-eight thousand three hundred fifty-two' WHERE a=20544; UPDATE t2 SET c='eighty-five thousand one hundred twenty-four' WHERE a=20545; UPDATE t2 SET c='six thousand eight hundred ninety-three' WHERE a=20546; UPDATE t2 SET c='one thousand five hundred ninety-five' WHERE a=20547; UPDATE t2 SET c='fifty-one thousand three hundred twenty-four' WHERE a=20548; UPDATE t2 SET c='twenty-eight thousand one hundred fifty-five' WHERE a=20549; UPDATE t2 SET c='eighty-eight thousand three hundred sixty-eight' WHERE a=20550; UPDATE t2 SET c='forty-five thousand four hundred seventeen' WHERE a=20551; UPDATE t2 SET c='seventy-nine thousand nine hundred twelve' WHERE a=20552; UPDATE t2 SET c='fifty-four thousand three hundred fifty-seven' WHERE a=20553; UPDATE t2 SET c='four hundred twenty-four' WHERE a=20554; UPDATE t2 SET c='forty-four thousand seven hundred eight' WHERE a=20555; UPDATE t2 SET c='ninety thousand twenty-three' WHERE a=20556; UPDATE t2 SET c='eighteen thousand six hundred fifty-eight' WHERE a=20557; UPDATE t2 SET c='seventy-three thousand two hundred seventy-one' WHERE a=20558; UPDATE t2 SET c='forty-seven thousand three hundred twenty-four' WHERE a=20559; UPDATE t2 SET c='sixty thousand seven hundred fifty-seven' WHERE a=20560; UPDATE t2 SET c='three thousand eight hundred thirty-eight' WHERE a=20561; UPDATE t2 SET c='six thousand seventy-five' WHERE a=20562; UPDATE t2 SET c='thirty-five thousand four hundred' WHERE a=20563; UPDATE t2 SET c='forty-eight thousand one hundred ninety-one' WHERE a=20564; UPDATE t2 SET c='thirty-nine thousand three hundred twenty-seven' WHERE a=20565; UPDATE t2 SET c='eighteen thousand nine hundred sixty-seven' WHERE a=20566; UPDATE t2 SET c='eighty-two thousand eight hundred ten' WHERE a=20567; UPDATE t2 SET c='eighty-five thousand one hundred ninety-five' WHERE a=20568; UPDATE t2 SET c='eighty-six' WHERE a=20569; UPDATE t2 SET c='twenty thousand six hundred one' WHERE a=20570; UPDATE t2 SET c='thirty-seven thousand nine hundred eighteen' WHERE a=20571; UPDATE t2 SET c='eighty-six thousand seven hundred ten' WHERE a=20572; UPDATE t2 SET c='fifty-five thousand five hundred fifty-nine' WHERE a=20573; UPDATE t2 SET c='ninety-six thousand four hundred sixty-three' WHERE a=20574; UPDATE t2 SET c='ninety-eight thousand six hundred ninety' WHERE a=20575; UPDATE t2 SET c='eighty-seven thousand four hundred sixty-eight' WHERE a=20576; UPDATE t2 SET c='three thousand seven hundred fifty-six' WHERE a=20577; UPDATE t2 SET c='sixty-one thousand four hundred seven' WHERE a=20578; UPDATE t2 SET c='fifteen thousand seven hundred seventeen' WHERE a=20579; UPDATE t2 SET c='sixty thousand nine hundred twenty-five' WHERE a=20580; UPDATE t2 SET c='eighty thousand three hundred forty-one' WHERE a=20581; UPDATE t2 SET c='eighty-one thousand five hundred ninety-two' WHERE a=20582; UPDATE t2 SET c='thirty-five thousand seven hundred forty-six' WHERE a=20583; UPDATE t2 SET c='seventy-four thousand five hundred fifteen' WHERE a=20584; UPDATE t2 SET c='fifteen thousand eight hundred eighty-four' WHERE a=20585; UPDATE t2 SET c='eighty-two thousand six hundred forty' WHERE a=20586; UPDATE t2 SET c='one thousand six hundred thirty-one' WHERE a=20587; UPDATE t2 SET c='eleven thousand three hundred fifty-three' WHERE a=20588; UPDATE t2 SET c='sixteen thousand four hundred thirty' WHERE a=20589; UPDATE t2 SET c='ninety-three thousand four hundred ninety-one' WHERE a=20590; UPDATE t2 SET c='sixty thousand seven hundred thirty-four' WHERE a=20591; UPDATE t2 SET c='thirty-nine thousand one hundred thirty-five' WHERE a=20592; UPDATE t2 SET c='ten thousand two hundred thirty-eight' WHERE a=20593; UPDATE t2 SET c='twenty-seven thousand eight hundred eighty-six' WHERE a=20594; UPDATE t2 SET c='eighty-six thousand three hundred forty-seven' WHERE a=20595; UPDATE t2 SET c='sixty-five thousand nine hundred twenty-eight' WHERE a=20596; UPDATE t2 SET c='ninety-five thousand eight hundred eighty' WHERE a=20597; UPDATE t2 SET c='fifty-four thousand seven hundred fifty' WHERE a=20598; UPDATE t2 SET c='sixty-nine thousand nine hundred seventy' WHERE a=20599; UPDATE t2 SET c='eighty thousand four hundred twenty-four' WHERE a=20600; UPDATE t2 SET c='seventy thousand seven hundred sixty' WHERE a=20601; UPDATE t2 SET c='twenty thousand six hundred sixty-seven' WHERE a=20602; UPDATE t2 SET c='eleven thousand eight hundred fifty-six' WHERE a=20603; UPDATE t2 SET c='ninety-two thousand sixteen' WHERE a=20604; UPDATE t2 SET c='twenty-four thousand seventeen' WHERE a=20605; UPDATE t2 SET c='nineteen thousand three hundred fifty-nine' WHERE a=20606; UPDATE t2 SET c='twenty-seven thousand seven hundred ninety-nine' WHERE a=20607; UPDATE t2 SET c='eighty-two thousand five hundred sixty-three' WHERE a=20608; UPDATE t2 SET c='eighty thousand three hundred three' WHERE a=20609; UPDATE t2 SET c='fourteen thousand fourteen' WHERE a=20610; UPDATE t2 SET c='twelve thousand one hundred twenty-eight' WHERE a=20611; UPDATE t2 SET c='twenty-four thousand one hundred twenty-five' WHERE a=20612; UPDATE t2 SET c='seventy-nine thousand five hundred sixty-three' WHERE a=20613; UPDATE t2 SET c='seven thousand two hundred ninety' WHERE a=20614; UPDATE t2 SET c='twenty-seven thousand five hundred ninety-nine' WHERE a=20615; UPDATE t2 SET c='eighty-nine thousand three hundred two' WHERE a=20616; UPDATE t2 SET c='ten thousand eighty-eight' WHERE a=20617; UPDATE t2 SET c='thirty-eight thousand two hundred seventeen' WHERE a=20618; UPDATE t2 SET c='fourteen thousand forty-five' WHERE a=20619; UPDATE t2 SET c='fifty-one thousand seven hundred eleven' WHERE a=20620; UPDATE t2 SET c='five thousand two hundred fifteen' WHERE a=20621; UPDATE t2 SET c='thirteen thousand forty-four' WHERE a=20622; UPDATE t2 SET c='forty-eight thousand ninety-nine' WHERE a=20623; UPDATE t2 SET c='fifty-three thousand forty-nine' WHERE a=20624; UPDATE t2 SET c='eighty-three thousand four hundred' WHERE a=20625; UPDATE t2 SET c='six thousand seven hundred seventy' WHERE a=20626; UPDATE t2 SET c='thirty-three thousand three hundred ninety-eight' WHERE a=20627; UPDATE t2 SET c='forty-nine thousand five hundred ninety-three' WHERE a=20628; UPDATE t2 SET c='three thousand fifty-one' WHERE a=20629; UPDATE t2 SET c='seventy-four thousand eight hundred sixty' WHERE a=20630; UPDATE t2 SET c='three thousand five hundred thirty-three' WHERE a=20631; UPDATE t2 SET c='thirty-three thousand two hundred two' WHERE a=20632; UPDATE t2 SET c='seventy-eight thousand three hundred twenty-seven' WHERE a=20633; UPDATE t2 SET c='eighty-eight thousand three hundred fifty-four' WHERE a=20634; UPDATE t2 SET c='ninety-one thousand nine hundred fifty-six' WHERE a=20635; UPDATE t2 SET c='forty-eight thousand seven hundred sixty-eight' WHERE a=20636; UPDATE t2 SET c='seventy-six thousand seven hundred five' WHERE a=20637; UPDATE t2 SET c='thirteen thousand seventy-one' WHERE a=20638; UPDATE t2 SET c='fifty-four thousand three hundred ninety-one' WHERE a=20639; UPDATE t2 SET c='seventy-eight thousand three hundred ninety-five' WHERE a=20640; UPDATE t2 SET c='eighty thousand two hundred ten' WHERE a=20641; UPDATE t2 SET c='ninety-six thousand three hundred fourteen' WHERE a=20642; UPDATE t2 SET c='twenty-three thousand six hundred nineteen' WHERE a=20643; UPDATE t2 SET c='thirty-one thousand five hundred fifty-five' WHERE a=20644; UPDATE t2 SET c='seventy-one thousand nine hundred eighty-three' WHERE a=20645; UPDATE t2 SET c='eighty-six thousand six hundred ninety' WHERE a=20646; UPDATE t2 SET c='thirty-five thousand one hundred eighty-seven' WHERE a=20647; UPDATE t2 SET c='seventy-seven thousand forty-eight' WHERE a=20648; UPDATE t2 SET c='ten thousand six hundred forty-two' WHERE a=20649; UPDATE t2 SET c='forty-seven thousand three hundred seventy-two' WHERE a=20650; UPDATE t2 SET c='seventeen thousand seven hundred thirty-four' WHERE a=20651; UPDATE t2 SET c='sixty-six thousand three hundred sixty-one' WHERE a=20652; UPDATE t2 SET c='three thousand eight hundred five' WHERE a=20653; UPDATE t2 SET c='forty-five thousand four hundred eighty-three' WHERE a=20654; UPDATE t2 SET c='seventy-four thousand five hundred fifteen' WHERE a=20655; UPDATE t2 SET c='sixty-two thousand four hundred fifty-nine' WHERE a=20656; UPDATE t2 SET c='sixty-six thousand seven hundred eleven' WHERE a=20657; UPDATE t2 SET c='twenty-eight thousand five hundred forty-two' WHERE a=20658; UPDATE t2 SET c='eighty-one thousand twenty-four' WHERE a=20659; UPDATE t2 SET c='eight hundred seven' WHERE a=20660; UPDATE t2 SET c='five thousand two hundred forty' WHERE a=20661; UPDATE t2 SET c='ninety thousand seven hundred eighty-one' WHERE a=20662; UPDATE t2 SET c='sixty-two thousand nine hundred ninety-five' WHERE a=20663; UPDATE t2 SET c='fifty-three thousand seven hundred twenty-one' WHERE a=20664; UPDATE t2 SET c='forty-two thousand nine hundred ten' WHERE a=20665; UPDATE t2 SET c='thirty-five thousand seven hundred ninety-seven' WHERE a=20666; UPDATE t2 SET c='six thousand four hundred fifty-three' WHERE a=20667; UPDATE t2 SET c='fifty-one thousand two hundred five' WHERE a=20668; UPDATE t2 SET c='one thousand three hundred eighty-seven' WHERE a=20669; UPDATE t2 SET c='thirteen thousand eight hundred seventy' WHERE a=20670; UPDATE t2 SET c='eighty-nine thousand seventy' WHERE a=20671; UPDATE t2 SET c='eighteen thousand seven hundred twenty-three' WHERE a=20672; UPDATE t2 SET c='ninety-seven thousand four hundred eighty-four' WHERE a=20673; UPDATE t2 SET c='ninety-one thousand three hundred fifty-five' WHERE a=20674; UPDATE t2 SET c='sixty-two thousand eight hundred fifty-three' WHERE a=20675; UPDATE t2 SET c='twenty thousand nine hundred forty-seven' WHERE a=20676; UPDATE t2 SET c='twenty-six thousand eight' WHERE a=20677; UPDATE t2 SET c='seventeen thousand five hundred sixteen' WHERE a=20678; UPDATE t2 SET c='forty-seven thousand four hundred ninety-three' WHERE a=20679; UPDATE t2 SET c='forty-six thousand eighty-four' WHERE a=20680; UPDATE t2 SET c='ninety-one thousand one hundred sixty-four' WHERE a=20681; UPDATE t2 SET c='thirty-nine thousand five hundred twelve' WHERE a=20682; UPDATE t2 SET c='forty-five thousand six hundred thirty-six' WHERE a=20683; UPDATE t2 SET c='twelve thousand four hundred forty-four' WHERE a=20684; UPDATE t2 SET c='eighty-seven thousand four hundred fifty-four' WHERE a=20685; UPDATE t2 SET c='seventy-seven thousand two hundred twenty-one' WHERE a=20686; UPDATE t2 SET c='twelve thousand three hundred seventy-one' WHERE a=20687; UPDATE t2 SET c='fifty-three thousand two hundred forty-four' WHERE a=20688; UPDATE t2 SET c='nine thousand seven hundred fifty-eight' WHERE a=20689; UPDATE t2 SET c='thirty-six thousand three hundred sixty-seven' WHERE a=20690; UPDATE t2 SET c='eighty-five thousand nine hundred forty-four' WHERE a=20691; UPDATE t2 SET c='forty-five thousand four hundred thirty' WHERE a=20692; UPDATE t2 SET c='thirty-nine thousand sixty-three' WHERE a=20693; UPDATE t2 SET c='twenty-four thousand two hundred ninety-nine' WHERE a=20694; UPDATE t2 SET c='ninety-one thousand five hundred thirty-seven' WHERE a=20695; UPDATE t2 SET c='seventy-eight thousand seven hundred eighty-six' WHERE a=20696; UPDATE t2 SET c='seventy-nine thousand twenty-three' WHERE a=20697; UPDATE t2 SET c='ninety-four thousand eight hundred fifty-one' WHERE a=20698; UPDATE t2 SET c='ninety thousand four hundred seventy' WHERE a=20699; UPDATE t2 SET c='forty-six thousand five hundred six' WHERE a=20700; UPDATE t2 SET c='twenty-one thousand seven hundred forty-six' WHERE a=20701; UPDATE t2 SET c='ninety-five thousand three hundred seventy' WHERE a=20702; UPDATE t2 SET c='seventy-seven thousand eight hundred thirty-five' WHERE a=20703; UPDATE t2 SET c='ten thousand fifty-two' WHERE a=20704; UPDATE t2 SET c='sixty-one thousand nine hundred' WHERE a=20705; UPDATE t2 SET c='fifteen thousand six hundred five' WHERE a=20706; UPDATE t2 SET c='thirteen thousand four hundred forty-eight' WHERE a=20707; UPDATE t2 SET c='fifty thousand one hundred forty-two' WHERE a=20708; UPDATE t2 SET c='forty-four thousand two hundred fifty-eight' WHERE a=20709; UPDATE t2 SET c='fifty-four thousand five hundred thirty-five' WHERE a=20710; UPDATE t2 SET c='ninety-six thousand nine hundred twenty' WHERE a=20711; UPDATE t2 SET c='seventy-seven thousand seven hundred thirty-eight' WHERE a=20712; UPDATE t2 SET c='fifteen thousand one hundred eighty-one' WHERE a=20713; UPDATE t2 SET c='eighty-four thousand sixty-nine' WHERE a=20714; UPDATE t2 SET c='fifty-four thousand seven hundred thirty-two' WHERE a=20715; UPDATE t2 SET c='thirty thousand two hundred one' WHERE a=20716; UPDATE t2 SET c='fifty-seven thousand seven hundred thirty-four' WHERE a=20717; UPDATE t2 SET c='thirty-five thousand five hundred four' WHERE a=20718; UPDATE t2 SET c='thirty-four thousand nine hundred sixteen' WHERE a=20719; UPDATE t2 SET c='ninety-one thousand six hundred fifty-four' WHERE a=20720; UPDATE t2 SET c='fifty-two thousand five hundred eighty-one' WHERE a=20721; UPDATE t2 SET c='ninety-nine thousand three hundred ninety-nine' WHERE a=20722; UPDATE t2 SET c='twenty-seven thousand five hundred fifteen' WHERE a=20723; UPDATE t2 SET c='thirty-four thousand eight hundred thirty-five' WHERE a=20724; UPDATE t2 SET c='eighty thousand one hundred eight' WHERE a=20725; UPDATE t2 SET c='fifty-two thousand eight hundred sixty-six' WHERE a=20726; UPDATE t2 SET c='five thousand five hundred seventy-five' WHERE a=20727; UPDATE t2 SET c='forty-eight thousand three hundred eleven' WHERE a=20728; UPDATE t2 SET c='nineteen thousand four hundred twenty-two' WHERE a=20729; UPDATE t2 SET c='thirty-seven thousand seventy-five' WHERE a=20730; UPDATE t2 SET c='sixty-eight thousand four hundred thirty-six' WHERE a=20731; UPDATE t2 SET c='sixty-nine thousand four hundred thirty-seven' WHERE a=20732; UPDATE t2 SET c='thirty-six thousand seven hundred forty-eight' WHERE a=20733; UPDATE t2 SET c='ninety-eight thousand eight hundred eighty-nine' WHERE a=20734; UPDATE t2 SET c='forty-five thousand eight hundred forty-four' WHERE a=20735; UPDATE t2 SET c='seventy-three thousand three hundred thirty-three' WHERE a=20736; UPDATE t2 SET c='six thousand five hundred sixteen' WHERE a=20737; UPDATE t2 SET c='thirty-five thousand eight hundred ninety-nine' WHERE a=20738; UPDATE t2 SET c='seventy-two thousand nine hundred ten' WHERE a=20739; UPDATE t2 SET c='thirty-three thousand seven hundred thirty-five' WHERE a=20740; UPDATE t2 SET c='fifty-eight thousand two hundred sixty-nine' WHERE a=20741; UPDATE t2 SET c='ten thousand eight hundred eighty-four' WHERE a=20742; UPDATE t2 SET c='forty-six thousand four hundred sixteen' WHERE a=20743; UPDATE t2 SET c='thirty-seven thousand three hundred eleven' WHERE a=20744; UPDATE t2 SET c='seventy-eight thousand nine hundred ninety' WHERE a=20745; UPDATE t2 SET c='thirty-six thousand three hundred ninety-seven' WHERE a=20746; UPDATE t2 SET c='twenty-nine thousand four hundred thirty-seven' WHERE a=20747; UPDATE t2 SET c='eighty thousand four hundred seven' WHERE a=20748; UPDATE t2 SET c='fifty-four thousand five hundred seventy-five' WHERE a=20749; UPDATE t2 SET c='eighty-three thousand one hundred sixty-nine' WHERE a=20750; UPDATE t2 SET c='nine thousand one hundred ninety-three' WHERE a=20751; UPDATE t2 SET c='fifty-one thousand seven hundred thirty-four' WHERE a=20752; UPDATE t2 SET c='forty-five thousand two hundred five' WHERE a=20753; UPDATE t2 SET c='seventy-one thousand seven hundred sixteen' WHERE a=20754; UPDATE t2 SET c='forty-one thousand three hundred seventy-one' WHERE a=20755; UPDATE t2 SET c='twenty-three thousand three hundred eleven' WHERE a=20756; UPDATE t2 SET c='sixty-two thousand six hundred thirty-four' WHERE a=20757; UPDATE t2 SET c='ninety-two thousand five hundred fourteen' WHERE a=20758; UPDATE t2 SET c='eighty-three thousand three hundred thirty-seven' WHERE a=20759; UPDATE t2 SET c='seventy-five thousand four hundred eight' WHERE a=20760; UPDATE t2 SET c='seventy-nine thousand six hundred two' WHERE a=20761; UPDATE t2 SET c='fifty-two thousand five hundred seventy-one' WHERE a=20762; UPDATE t2 SET c='thirty-nine thousand five hundred thirty-seven' WHERE a=20763; UPDATE t2 SET c='ninety-four thousand two hundred thirty-three' WHERE a=20764; UPDATE t2 SET c='forty-three thousand three hundred eighteen' WHERE a=20765; UPDATE t2 SET c='seven thousand eight hundred twenty-nine' WHERE a=20766; UPDATE t2 SET c='twenty-eight thousand three hundred eighty' WHERE a=20767; UPDATE t2 SET c='sixty-four thousand nine hundred ninety-one' WHERE a=20768; UPDATE t2 SET c='seventy-two thousand seven hundred sixty-four' WHERE a=20769; UPDATE t2 SET c='sixty-nine thousand nine hundred fourteen' WHERE a=20770; UPDATE t2 SET c='twenty-six thousand one hundred seventy-three' WHERE a=20771; UPDATE t2 SET c='twenty-three thousand five hundred forty-three' WHERE a=20772; UPDATE t2 SET c='eighty-nine thousand four hundred sixty-four' WHERE a=20773; UPDATE t2 SET c='ninety-seven thousand one hundred forty-seven' WHERE a=20774; UPDATE t2 SET c='twenty-two thousand one hundred twenty-seven' WHERE a=20775; UPDATE t2 SET c='ninety-eight thousand nine hundred ninety-five' WHERE a=20776; UPDATE t2 SET c='seventy-one thousand eight hundred eighty-seven' WHERE a=20777; UPDATE t2 SET c='nineteen thousand six hundred sixty-three' WHERE a=20778; UPDATE t2 SET c='nineteen thousand five hundred sixty-nine' WHERE a=20779; UPDATE t2 SET c='eighty-four thousand eight hundred ninety-seven' WHERE a=20780; UPDATE t2 SET c='one thousand one hundred seven' WHERE a=20781; UPDATE t2 SET c='sixty-nine thousand two hundred four' WHERE a=20782; UPDATE t2 SET c='four thousand one hundred eighty-seven' WHERE a=20783; UPDATE t2 SET c='twenty-seven thousand nine hundred fifty-five' WHERE a=20784; UPDATE t2 SET c='fifty-five thousand one hundred sixty-nine' WHERE a=20785; UPDATE t2 SET c='one thousand six hundred forty-seven' WHERE a=20786; UPDATE t2 SET c='eighty-seven thousand ninety-eight' WHERE a=20787; UPDATE t2 SET c='fifty-one thousand five hundred twenty-seven' WHERE a=20788; UPDATE t2 SET c='eighty thousand five hundred sixty' WHERE a=20789; UPDATE t2 SET c='twenty-one thousand nine hundred forty-eight' WHERE a=20790; UPDATE t2 SET c='twenty thousand seven hundred fifty-nine' WHERE a=20791; UPDATE t2 SET c='eighty-six thousand one hundred thirty-five' WHERE a=20792; UPDATE t2 SET c='seven thousand four hundred seventeen' WHERE a=20793; UPDATE t2 SET c='forty-six thousand three hundred ninety-nine' WHERE a=20794; UPDATE t2 SET c='ninety-six thousand one hundred forty-nine' WHERE a=20795; UPDATE t2 SET c='sixty-two thousand one' WHERE a=20796; UPDATE t2 SET c='twenty-eight thousand five hundred seventy' WHERE a=20797; UPDATE t2 SET c='seventy-nine thousand one hundred ninety-six' WHERE a=20798; UPDATE t2 SET c='ninety-eight thousand eight hundred thirteen' WHERE a=20799; UPDATE t2 SET c='twenty-seven thousand three hundred sixty-eight' WHERE a=20800; UPDATE t2 SET c='ninety-four thousand nine hundred fifty-two' WHERE a=20801; UPDATE t2 SET c='fifty-five thousand three hundred thirty-one' WHERE a=20802; UPDATE t2 SET c='sixty thousand eight hundred seventy' WHERE a=20803; UPDATE t2 SET c='forty-nine thousand one hundred twenty-six' WHERE a=20804; UPDATE t2 SET c='thirty-seven thousand fifteen' WHERE a=20805; UPDATE t2 SET c='six thousand six hundred forty-two' WHERE a=20806; UPDATE t2 SET c='seventy-three thousand six hundred sixty-three' WHERE a=20807; UPDATE t2 SET c='fifteen thousand five hundred seventy-two' WHERE a=20808; UPDATE t2 SET c='sixty-seven thousand six hundred seventy-eight' WHERE a=20809; UPDATE t2 SET c='ninety-four thousand two hundred fifty-one' WHERE a=20810; UPDATE t2 SET c='twenty-eight thousand two hundred forty-nine' WHERE a=20811; UPDATE t2 SET c='eighty-five thousand two hundred ninety-eight' WHERE a=20812; UPDATE t2 SET c='seventy-nine thousand seven hundred thirty-one' WHERE a=20813; UPDATE t2 SET c='seventy thousand seven hundred fifty-three' WHERE a=20814; UPDATE t2 SET c='ninety-nine thousand one hundred thirty-four' WHERE a=20815; UPDATE t2 SET c='thirty-nine thousand four hundred nine' WHERE a=20816; UPDATE t2 SET c='ninety-seven thousand five hundred forty-nine' WHERE a=20817; UPDATE t2 SET c='seventy-eight thousand three hundred ninety-six' WHERE a=20818; UPDATE t2 SET c='thirty-three thousand eight hundred seventy-three' WHERE a=20819; UPDATE t2 SET c='sixty-four thousand five hundred ninety' WHERE a=20820; UPDATE t2 SET c='eight thousand nine hundred ninety-five' WHERE a=20821; UPDATE t2 SET c='four thousand six hundred fifty-seven' WHERE a=20822; UPDATE t2 SET c='twenty thousand two hundred ninety' WHERE a=20823; UPDATE t2 SET c='ninety-six thousand four hundred fifty-four' WHERE a=20824; UPDATE t2 SET c='sixty-seven thousand seven hundred twenty-eight' WHERE a=20825; UPDATE t2 SET c='three thousand seven hundred one' WHERE a=20826; UPDATE t2 SET c='thirty-six thousand eighty-five' WHERE a=20827; UPDATE t2 SET c='forty-nine thousand six hundred eighty-two' WHERE a=20828; UPDATE t2 SET c='ninety-seven thousand one hundred forty-six' WHERE a=20829; UPDATE t2 SET c='sixty-two thousand four hundred fifty-three' WHERE a=20830; UPDATE t2 SET c='sixty thousand seven hundred seventy-seven' WHERE a=20831; UPDATE t2 SET c='sixty-four thousand seven hundred thirty-nine' WHERE a=20832; UPDATE t2 SET c='forty thousand five hundred twenty-seven' WHERE a=20833; UPDATE t2 SET c='four thousand one hundred ninety-eight' WHERE a=20834; UPDATE t2 SET c='fifty-one thousand nine hundred fifty-six' WHERE a=20835; UPDATE t2 SET c='eighty-two thousand two hundred sixteen' WHERE a=20836; UPDATE t2 SET c='forty thousand four hundred ninety-seven' WHERE a=20837; UPDATE t2 SET c='thirty thousand nine hundred thirty-four' WHERE a=20838; UPDATE t2 SET c='twenty thousand five hundred fourteen' WHERE a=20839; UPDATE t2 SET c='thirty-nine thousand nine hundred eighty-nine' WHERE a=20840; UPDATE t2 SET c='twenty thousand six hundred eighty-one' WHERE a=20841; UPDATE t2 SET c='eleven thousand five hundred seventy-one' WHERE a=20842; UPDATE t2 SET c='thirty-three thousand two hundred twenty-one' WHERE a=20843; UPDATE t2 SET c='twenty-seven thousand five hundred ninety-three' WHERE a=20844; UPDATE t2 SET c='three thousand two hundred eighty-nine' WHERE a=20845; UPDATE t2 SET c='forty-seven thousand five hundred eighty-eight' WHERE a=20846; UPDATE t2 SET c='thirty-seven thousand seven hundred two' WHERE a=20847; UPDATE t2 SET c='twenty-two thousand one hundred fifty' WHERE a=20848; UPDATE t2 SET c='twenty thousand four hundred seventy' WHERE a=20849; UPDATE t2 SET c='sixty-four thousand four hundred fifty-two' WHERE a=20850; UPDATE t2 SET c='twenty-six thousand thirty-one' WHERE a=20851; UPDATE t2 SET c='fifty-six thousand eight hundred fifty-seven' WHERE a=20852; UPDATE t2 SET c='ten thousand four hundred twelve' WHERE a=20853; UPDATE t2 SET c='eleven thousand five hundred fifty-eight' WHERE a=20854; UPDATE t2 SET c='thirty-six thousand nine hundred seventy-nine' WHERE a=20855; UPDATE t2 SET c='eighty-three thousand one hundred fifty-six' WHERE a=20856; UPDATE t2 SET c='fifty-seven thousand three hundred forty-seven' WHERE a=20857; UPDATE t2 SET c='forty-four thousand four hundred seventy-five' WHERE a=20858; UPDATE t2 SET c='fifty-two thousand five hundred fourteen' WHERE a=20859; UPDATE t2 SET c='twenty-one thousand seven hundred forty-one' WHERE a=20860; UPDATE t2 SET c='forty-seven thousand four hundred ninety-one' WHERE a=20861; UPDATE t2 SET c='thirty-seven thousand five hundred thirteen' WHERE a=20862; UPDATE t2 SET c='five hundred eighty-seven' WHERE a=20863; UPDATE t2 SET c='eighty-five thousand three hundred thirty-five' WHERE a=20864; UPDATE t2 SET c='fifty-nine thousand eight hundred thirteen' WHERE a=20865; UPDATE t2 SET c='fifty-nine thousand nine hundred thirty-six' WHERE a=20866; UPDATE t2 SET c='ninety thousand one hundred seven' WHERE a=20867; UPDATE t2 SET c='forty thousand four hundred ninety-one' WHERE a=20868; UPDATE t2 SET c='thirty-three thousand nine hundred forty-eight' WHERE a=20869; UPDATE t2 SET c='three thousand seventeen' WHERE a=20870; UPDATE t2 SET c='eighty thousand eight hundred twenty-four' WHERE a=20871; UPDATE t2 SET c='eight thousand five hundred twenty-four' WHERE a=20872; UPDATE t2 SET c='ninety thousand nine hundred fifty-two' WHERE a=20873; UPDATE t2 SET c='thirty-four thousand seven hundred sixty-eight' WHERE a=20874; UPDATE t2 SET c='sixty thousand six hundred eighty-seven' WHERE a=20875; UPDATE t2 SET c='seventy-two thousand seven hundred ninety-six' WHERE a=20876; UPDATE t2 SET c='thirty thousand nine hundred ninety-nine' WHERE a=20877; UPDATE t2 SET c='fifty-six thousand six hundred sixty-two' WHERE a=20878; UPDATE t2 SET c='thirty-nine thousand sixty-one' WHERE a=20879; UPDATE t2 SET c='forty-one thousand eight hundred seventy-six' WHERE a=20880; UPDATE t2 SET c='seventy-one thousand eight hundred fourteen' WHERE a=20881; UPDATE t2 SET c='eighty-five thousand five hundred ninety' WHERE a=20882; UPDATE t2 SET c='thirty-two thousand seven hundred fifteen' WHERE a=20883; UPDATE t2 SET c='sixty-eight thousand seven hundred forty-two' WHERE a=20884; UPDATE t2 SET c='seventy thousand two hundred eighty' WHERE a=20885; UPDATE t2 SET c='thirteen thousand two hundred sixty' WHERE a=20886; UPDATE t2 SET c='twenty-three thousand four hundred sixty-five' WHERE a=20887; UPDATE t2 SET c='twenty-six thousand eight hundred twenty-one' WHERE a=20888; UPDATE t2 SET c='two thousand four hundred eighty-three' WHERE a=20889; UPDATE t2 SET c='seventy-one thousand one hundred thirty-seven' WHERE a=20890; UPDATE t2 SET c='fifty-two thousand one hundred twenty' WHERE a=20891; UPDATE t2 SET c='fourteen thousand three hundred six' WHERE a=20892; UPDATE t2 SET c='eighteen thousand two hundred five' WHERE a=20893; UPDATE t2 SET c='nineteen thousand thirty-seven' WHERE a=20894; UPDATE t2 SET c='eight thousand eight hundred eighty-nine' WHERE a=20895; UPDATE t2 SET c='two thousand eight hundred eighteen' WHERE a=20896; UPDATE t2 SET c='sixty-seven thousand two hundred forty-six' WHERE a=20897; UPDATE t2 SET c='thirty-nine thousand nine' WHERE a=20898; UPDATE t2 SET c='thirty-eight thousand one hundred thirty' WHERE a=20899; UPDATE t2 SET c='nine hundred fifteen' WHERE a=20900; UPDATE t2 SET c='forty-six thousand six hundred thirty-one' WHERE a=20901; UPDATE t2 SET c='one thousand six hundred thirty-six' WHERE a=20902; UPDATE t2 SET c='sixty-five thousand forty' WHERE a=20903; UPDATE t2 SET c='seventy-three thousand three hundred thirty-nine' WHERE a=20904; UPDATE t2 SET c='fifty-four thousand eight hundred fifty' WHERE a=20905; UPDATE t2 SET c='thirty-two thousand five hundred ninety' WHERE a=20906; UPDATE t2 SET c='forty-four thousand five hundred fifty-five' WHERE a=20907; UPDATE t2 SET c='thirty-one thousand six hundred eighty-seven' WHERE a=20908; UPDATE t2 SET c='twenty-eight thousand five hundred eight' WHERE a=20909; UPDATE t2 SET c='twenty-three thousand three hundred seventy-two' WHERE a=20910; UPDATE t2 SET c='sixteen thousand two hundred three' WHERE a=20911; UPDATE t2 SET c='eighty thousand nine hundred nine' WHERE a=20912; UPDATE t2 SET c='forty-four thousand three hundred seventy-eight' WHERE a=20913; UPDATE t2 SET c='one thousand three hundred thirty-one' WHERE a=20914; UPDATE t2 SET c='sixteen thousand five hundred ninety-six' WHERE a=20915; UPDATE t2 SET c='nineteen thousand two hundred eighty-one' WHERE a=20916; UPDATE t2 SET c='eleven thousand five hundred twenty-three' WHERE a=20917; UPDATE t2 SET c='eighty-five thousand five hundred eight' WHERE a=20918; UPDATE t2 SET c='seventy-four thousand eight hundred fifty-six' WHERE a=20919; UPDATE t2 SET c='forty-nine thousand nine hundred twenty-one' WHERE a=20920; UPDATE t2 SET c='sixty-six thousand four hundred ninety-five' WHERE a=20921; UPDATE t2 SET c='ninety-one thousand four hundred eighty-nine' WHERE a=20922; UPDATE t2 SET c='eighty-seven thousand nine hundred twenty-four' WHERE a=20923; UPDATE t2 SET c='forty-two thousand one hundred sixty-seven' WHERE a=20924; UPDATE t2 SET c='forty-five thousand seven hundred three' WHERE a=20925; UPDATE t2 SET c='fifty thousand nine hundred thirty-eight' WHERE a=20926; UPDATE t2 SET c='forty-six thousand eight hundred thirty-six' WHERE a=20927; UPDATE t2 SET c='sixty-one thousand six hundred twenty-nine' WHERE a=20928; UPDATE t2 SET c='twenty-five thousand four hundred twenty-nine' WHERE a=20929; UPDATE t2 SET c='two thousand two hundred fifty-four' WHERE a=20930; UPDATE t2 SET c='eighty-eight thousand two hundred forty-nine' WHERE a=20931; UPDATE t2 SET c='seventy-one thousand two hundred eighty-two' WHERE a=20932; UPDATE t2 SET c='fifteen thousand two hundred ninety-five' WHERE a=20933; UPDATE t2 SET c='sixty-one thousand five hundred twenty-five' WHERE a=20934; UPDATE t2 SET c='sixty thousand one hundred fourteen' WHERE a=20935; UPDATE t2 SET c='seventy-six thousand seven hundred fourteen' WHERE a=20936; UPDATE t2 SET c='twenty-two thousand two hundred forty-seven' WHERE a=20937; UPDATE t2 SET c='thirty thousand seven hundred thirty-three' WHERE a=20938; UPDATE t2 SET c='forty-six thousand seven hundred ninety-one' WHERE a=20939; UPDATE t2 SET c='ninety-three thousand eight hundred eleven' WHERE a=20940; UPDATE t2 SET c='ninety-four thousand eight hundred ten' WHERE a=20941; UPDATE t2 SET c='seventy-five thousand four hundred thirty-eight' WHERE a=20942; UPDATE t2 SET c='ninety-seven thousand two hundred fifty-nine' WHERE a=20943; UPDATE t2 SET c='seventy-nine thousand seven hundred forty-three' WHERE a=20944; UPDATE t2 SET c='seventy-eight thousand one hundred thirteen' WHERE a=20945; UPDATE t2 SET c='eighty-nine thousand six hundred fifty-four' WHERE a=20946; UPDATE t2 SET c='two thousand five hundred ninety-five' WHERE a=20947; UPDATE t2 SET c='eighty-six thousand four hundred eighty-two' WHERE a=20948; UPDATE t2 SET c='twenty-four thousand four' WHERE a=20949; UPDATE t2 SET c='fifty-eight thousand seven hundred sixty-seven' WHERE a=20950; UPDATE t2 SET c='eighty-four thousand six hundred sixty-three' WHERE a=20951; UPDATE t2 SET c='thirty-two thousand sixty-one' WHERE a=20952; UPDATE t2 SET c='twenty-two thousand four hundred forty-five' WHERE a=20953; UPDATE t2 SET c='forty-three thousand two hundred thirty-nine' WHERE a=20954; UPDATE t2 SET c='thirty-eight thousand five hundred' WHERE a=20955; UPDATE t2 SET c='fifty-one thousand seven hundred seventy-nine' WHERE a=20956; UPDATE t2 SET c='forty-eight thousand six hundred seventy' WHERE a=20957; UPDATE t2 SET c='sixty thousand six hundred twelve' WHERE a=20958; UPDATE t2 SET c='ninety-four thousand five hundred ninety-three' WHERE a=20959; UPDATE t2 SET c='sixty-six thousand nine hundred eighteen' WHERE a=20960; UPDATE t2 SET c='thirty-six thousand eight hundred sixty-two' WHERE a=20961; UPDATE t2 SET c='forty-six thousand two hundred twenty-one' WHERE a=20962; UPDATE t2 SET c='thirty-six thousand one hundred sixty-seven' WHERE a=20963; UPDATE t2 SET c='thirty-four thousand two hundred eleven' WHERE a=20964; UPDATE t2 SET c='eight thousand ninety-five' WHERE a=20965; UPDATE t2 SET c='seventy-eight thousand seventy-one' WHERE a=20966; UPDATE t2 SET c='sixty-three thousand two hundred twenty-four' WHERE a=20967; UPDATE t2 SET c='ninety-five thousand nine' WHERE a=20968; UPDATE t2 SET c='twelve thousand five hundred twenty-three' WHERE a=20969; UPDATE t2 SET c='seventy-five thousand seven hundred thirty-one' WHERE a=20970; UPDATE t2 SET c='one thousand one hundred twenty-eight' WHERE a=20971; UPDATE t2 SET c='seventy thousand seven hundred sixty-six' WHERE a=20972; UPDATE t2 SET c='sixteen thousand three hundred eleven' WHERE a=20973; UPDATE t2 SET c='seven thousand three hundred forty-nine' WHERE a=20974; UPDATE t2 SET c='fifty-five thousand five hundred two' WHERE a=20975; UPDATE t2 SET c='ninety-three thousand nine hundred eleven' WHERE a=20976; UPDATE t2 SET c='seventy-nine thousand one hundred ninety' WHERE a=20977; UPDATE t2 SET c='thirty-three thousand seven hundred thirty-seven' WHERE a=20978; UPDATE t2 SET c='fifty-eight thousand two hundred nine' WHERE a=20979; UPDATE t2 SET c='eighty-three thousand ninety-two' WHERE a=20980; UPDATE t2 SET c='fifty-two thousand seven hundred six' WHERE a=20981; UPDATE t2 SET c='sixty-one thousand three hundred sixty-three' WHERE a=20982; UPDATE t2 SET c='ninety-five thousand eight hundred fifty-one' WHERE a=20983; UPDATE t2 SET c='forty-nine thousand five hundred ninety-five' WHERE a=20984; UPDATE t2 SET c='four thousand five hundred twenty-six' WHERE a=20985; UPDATE t2 SET c='forty-three thousand seven hundred sixty-nine' WHERE a=20986; UPDATE t2 SET c='nineteen thousand two hundred one' WHERE a=20987; UPDATE t2 SET c='eighty thousand two hundred one' WHERE a=20988; UPDATE t2 SET c='fifty-three thousand seven hundred seventy-six' WHERE a=20989; UPDATE t2 SET c='fifty thousand five hundred ninety-eight' WHERE a=20990; UPDATE t2 SET c='nine thousand three hundred sixty-two' WHERE a=20991; UPDATE t2 SET c='ten thousand nine hundred seventeen' WHERE a=20992; UPDATE t2 SET c='three thousand three hundred thirty-three' WHERE a=20993; UPDATE t2 SET c='eight thousand two hundred twenty-four' WHERE a=20994; UPDATE t2 SET c='three thousand one hundred seventy-six' WHERE a=20995; UPDATE t2 SET c='four thousand six hundred fifteen' WHERE a=20996; UPDATE t2 SET c='seventy-two thousand four hundred sixty-two' WHERE a=20997; UPDATE t2 SET c='eighteen thousand three hundred thirty-two' WHERE a=20998; UPDATE t2 SET c='one thousand three hundred seventy-eight' WHERE a=20999; UPDATE t2 SET c='fifteen thousand nine hundred sixty-one' WHERE a=21000; UPDATE t2 SET c='seventy-two thousand three hundred twenty-six' WHERE a=21001; UPDATE t2 SET c='ninety-one thousand forty-three' WHERE a=21002; UPDATE t2 SET c='twenty-four thousand seven hundred thirteen' WHERE a=21003; UPDATE t2 SET c='fifty-seven thousand two hundred ninety-five' WHERE a=21004; UPDATE t2 SET c='ninety-one thousand fourteen' WHERE a=21005; UPDATE t2 SET c='thirty-six thousand five hundred eighty-seven' WHERE a=21006; UPDATE t2 SET c='forty-seven thousand one hundred seventy' WHERE a=21007; UPDATE t2 SET c='seventy-six thousand nine hundred thirty-eight' WHERE a=21008; UPDATE t2 SET c='twenty-six thousand nine hundred eighty-three' WHERE a=21009; UPDATE t2 SET c='nine thousand seven hundred sixty-seven' WHERE a=21010; UPDATE t2 SET c='seventeen thousand one hundred thirteen' WHERE a=21011; UPDATE t2 SET c='forty-four thousand two hundred ninety' WHERE a=21012; UPDATE t2 SET c='thirty thousand eight hundred nine' WHERE a=21013; UPDATE t2 SET c='twenty-seven thousand four hundred thirty-six' WHERE a=21014; UPDATE t2 SET c='four thousand eight hundred ninety-one' WHERE a=21015; UPDATE t2 SET c='forty-one thousand five hundred sixty-eight' WHERE a=21016; UPDATE t2 SET c='forty-eight thousand seven hundred sixty-two' WHERE a=21017; UPDATE t2 SET c='twenty-three thousand one hundred twenty-nine' WHERE a=21018; UPDATE t2 SET c='seventeen thousand five hundred thirty-four' WHERE a=21019; UPDATE t2 SET c='eighty-four thousand four hundred eighty-three' WHERE a=21020; UPDATE t2 SET c='fifty-three thousand two hundred thirty-six' WHERE a=21021; UPDATE t2 SET c='nineteen thousand six hundred eighty-three' WHERE a=21022; UPDATE t2 SET c='eighteen thousand nine hundred eighty-nine' WHERE a=21023; UPDATE t2 SET c='twenty-three thousand three hundred ten' WHERE a=21024; UPDATE t2 SET c='seventy-five thousand sixty-four' WHERE a=21025; UPDATE t2 SET c='seventy-five thousand two hundred fifty-five' WHERE a=21026; UPDATE t2 SET c='forty-one thousand one hundred seventy-one' WHERE a=21027; UPDATE t2 SET c='eighty-eight thousand thirty-seven' WHERE a=21028; UPDATE t2 SET c='twenty-two thousand five hundred fifty-one' WHERE a=21029; UPDATE t2 SET c='four thousand three hundred eleven' WHERE a=21030; UPDATE t2 SET c='eighty-six thousand eight hundred ninety-nine' WHERE a=21031; UPDATE t2 SET c='seventy-nine thousand two hundred eighteen' WHERE a=21032; UPDATE t2 SET c='twenty-four thousand six hundred fifty-three' WHERE a=21033; UPDATE t2 SET c='fifty thousand four hundred forty-one' WHERE a=21034; UPDATE t2 SET c='forty-three thousand fifty-nine' WHERE a=21035; UPDATE t2 SET c='fifty-six thousand six hundred nineteen' WHERE a=21036; UPDATE t2 SET c='sixty-eight thousand nine hundred seven' WHERE a=21037; UPDATE t2 SET c='forty-seven thousand four hundred eighty-five' WHERE a=21038; UPDATE t2 SET c='five thousand four hundred thirty-five' WHERE a=21039; UPDATE t2 SET c='thirty-six thousand seventy-three' WHERE a=21040; UPDATE t2 SET c='ninety-five thousand eight hundred ninety-three' WHERE a=21041; UPDATE t2 SET c='eighty-two thousand two hundred ninety' WHERE a=21042; UPDATE t2 SET c='fourteen thousand one hundred twenty-eight' WHERE a=21043; UPDATE t2 SET c='four thousand two hundred twenty-nine' WHERE a=21044; UPDATE t2 SET c='ninety-five thousand four hundred two' WHERE a=21045; UPDATE t2 SET c='forty-six thousand six hundred eighty-two' WHERE a=21046; UPDATE t2 SET c='ninety-two thousand nine hundred eighty-eight' WHERE a=21047; UPDATE t2 SET c='eighty-two thousand one hundred twenty-five' WHERE a=21048; UPDATE t2 SET c='sixty-eight thousand nine hundred eleven' WHERE a=21049; UPDATE t2 SET c='twenty-five thousand one hundred four' WHERE a=21050; UPDATE t2 SET c='ninety-one thousand nine hundred sixty-one' WHERE a=21051; UPDATE t2 SET c='seven hundred twenty-five' WHERE a=21052; UPDATE t2 SET c='twenty thousand seven hundred twenty-two' WHERE a=21053; UPDATE t2 SET c='three thousand sixty-five' WHERE a=21054; UPDATE t2 SET c='forty-four thousand four hundred ninety-eight' WHERE a=21055; UPDATE t2 SET c='ninety-six thousand six hundred forty-eight' WHERE a=21056; UPDATE t2 SET c='sixty thousand eight hundred ninety' WHERE a=21057; UPDATE t2 SET c='eighty-three thousand nine hundred thirty-nine' WHERE a=21058; UPDATE t2 SET c='one thousand one hundred twenty-two' WHERE a=21059; UPDATE t2 SET c='forty-two thousand four hundred fifteen' WHERE a=21060; UPDATE t2 SET c='six thousand eight hundred eighty-three' WHERE a=21061; UPDATE t2 SET c='ninety-four thousand seven hundred forty-four' WHERE a=21062; UPDATE t2 SET c='eighteen thousand nine hundred forty-nine' WHERE a=21063; UPDATE t2 SET c='sixty-one thousand one hundred nineteen' WHERE a=21064; UPDATE t2 SET c='thirty-eight thousand nine hundred twenty-five' WHERE a=21065; UPDATE t2 SET c='ten thousand nine hundred sixty-one' WHERE a=21066; UPDATE t2 SET c='seventy-four thousand three hundred sixty-eight' WHERE a=21067; UPDATE t2 SET c='thirty thousand one hundred thirty-six' WHERE a=21068; UPDATE t2 SET c='twenty-nine thousand five hundred sixteen' WHERE a=21069; UPDATE t2 SET c='eighty-one thousand one hundred ninety-nine' WHERE a=21070; UPDATE t2 SET c='eight thousand two hundred forty-one' WHERE a=21071; UPDATE t2 SET c='seventy-nine thousand nine hundred seventeen' WHERE a=21072; UPDATE t2 SET c='eighty thousand five hundred sixty-two' WHERE a=21073; UPDATE t2 SET c='sixty-nine thousand seven hundred six' WHERE a=21074; UPDATE t2 SET c='forty-four thousand three hundred seventy-six' WHERE a=21075; UPDATE t2 SET c='twelve thousand eight hundred ninety-four' WHERE a=21076; UPDATE t2 SET c='seventy-five thousand four hundred eighty-seven' WHERE a=21077; UPDATE t2 SET c='twenty-seven thousand six hundred thirty-seven' WHERE a=21078; UPDATE t2 SET c='nine thousand eight hundred sixty-nine' WHERE a=21079; UPDATE t2 SET c='sixty-three thousand six hundred sixty-four' WHERE a=21080; UPDATE t2 SET c='thirty-three thousand four hundred twenty-five' WHERE a=21081; UPDATE t2 SET c='eighty-seven thousand fifteen' WHERE a=21082; UPDATE t2 SET c='ninety-eight thousand four hundred ninety-six' WHERE a=21083; UPDATE t2 SET c='thirty-six thousand two hundred seventy-two' WHERE a=21084; UPDATE t2 SET c='fifty-five thousand eight hundred thirty' WHERE a=21085; UPDATE t2 SET c='eighty-six thousand five hundred thirty-seven' WHERE a=21086; UPDATE t2 SET c='sixty-three thousand one hundred thirty-four' WHERE a=21087; UPDATE t2 SET c='seventeen thousand one hundred twenty-seven' WHERE a=21088; UPDATE t2 SET c='seventy-nine thousand one hundred ninety-seven' WHERE a=21089; UPDATE t2 SET c='twenty-four thousand two hundred thirty-four' WHERE a=21090; UPDATE t2 SET c='seventy-seven thousand six hundred eighty-four' WHERE a=21091; UPDATE t2 SET c='eighty-two thousand six hundred eight' WHERE a=21092; UPDATE t2 SET c='thirty-three thousand one hundred forty-six' WHERE a=21093; UPDATE t2 SET c='sixty thousand six hundred forty-six' WHERE a=21094; UPDATE t2 SET c='nine thousand fifty-six' WHERE a=21095; UPDATE t2 SET c='seventy-eight thousand eight hundred thirty-five' WHERE a=21096; UPDATE t2 SET c='sixty-four thousand nine hundred two' WHERE a=21097; UPDATE t2 SET c='fifty-nine thousand eight hundred eighty-seven' WHERE a=21098; UPDATE t2 SET c='thirty-one thousand two hundred thirty-six' WHERE a=21099; UPDATE t2 SET c='fifteen thousand eight hundred fifty-four' WHERE a=21100; UPDATE t2 SET c='forty thousand three hundred fifty-seven' WHERE a=21101; UPDATE t2 SET c='ninety-three thousand seven hundred ninety-seven' WHERE a=21102; UPDATE t2 SET c='one thousand four hundred eighty-two' WHERE a=21103; UPDATE t2 SET c='forty-four thousand five hundred twenty-six' WHERE a=21104; UPDATE t2 SET c='fifty-nine thousand three hundred sixty-eight' WHERE a=21105; UPDATE t2 SET c='twenty-four thousand four hundred eighty-five' WHERE a=21106; UPDATE t2 SET c='five thousand six hundred sixty' WHERE a=21107; UPDATE t2 SET c='twenty thousand eight hundred twenty-eight' WHERE a=21108; UPDATE t2 SET c='ninety-one thousand nine hundred twenty-two' WHERE a=21109; UPDATE t2 SET c='seventy thousand ninety' WHERE a=21110; UPDATE t2 SET c='eight thousand six hundred ninety-seven' WHERE a=21111; UPDATE t2 SET c='sixty-eight thousand five hundred sixty-one' WHERE a=21112; UPDATE t2 SET c='twenty-seven thousand eight hundred sixty-three' WHERE a=21113; UPDATE t2 SET c='eighty-six thousand seven hundred four' WHERE a=21114; UPDATE t2 SET c='twenty-eight thousand eighty-three' WHERE a=21115; UPDATE t2 SET c='eighty-four thousand six hundred thirty-one' WHERE a=21116; UPDATE t2 SET c='sixty-seven thousand one hundred seventeen' WHERE a=21117; UPDATE t2 SET c='ninety-seven thousand one hundred ninety-six' WHERE a=21118; UPDATE t2 SET c='ninety-three thousand two hundred twenty-four' WHERE a=21119; UPDATE t2 SET c='ten thousand eight hundred thirteen' WHERE a=21120; UPDATE t2 SET c='ninety-eight thousand seven hundred forty-nine' WHERE a=21121; UPDATE t2 SET c='twenty-seven thousand one hundred thirty-seven' WHERE a=21122; UPDATE t2 SET c='thirty thousand one hundred twenty-three' WHERE a=21123; UPDATE t2 SET c='twelve thousand three hundred fifty-eight' WHERE a=21124; UPDATE t2 SET c='forty-five thousand seven hundred twenty-two' WHERE a=21125; UPDATE t2 SET c='sixty-one thousand one hundred forty' WHERE a=21126; UPDATE t2 SET c='sixty thousand six hundred twenty-three' WHERE a=21127; UPDATE t2 SET c='five thousand two hundred thirty-three' WHERE a=21128; UPDATE t2 SET c='twenty thousand eight hundred ninety-four' WHERE a=21129; UPDATE t2 SET c='twelve thousand eight hundred seventy-eight' WHERE a=21130; UPDATE t2 SET c='thirty-three thousand three hundred sixty-seven' WHERE a=21131; UPDATE t2 SET c='five thousand five hundred thirty-nine' WHERE a=21132; UPDATE t2 SET c='sixty-seven thousand five hundred thirty-five' WHERE a=21133; UPDATE t2 SET c='fourteen thousand seven hundred forty-seven' WHERE a=21134; UPDATE t2 SET c='seventy-seven thousand five hundred seventy-one' WHERE a=21135; UPDATE t2 SET c='eighty thousand six hundred forty-one' WHERE a=21136; UPDATE t2 SET c='eight hundred ten' WHERE a=21137; UPDATE t2 SET c='eighty-two thousand six hundred eighty-three' WHERE a=21138; UPDATE t2 SET c='fourteen thousand four hundred eighty-five' WHERE a=21139; UPDATE t2 SET c='sixty-four thousand one hundred eighty-four' WHERE a=21140; UPDATE t2 SET c='thirty-three thousand three hundred seventy-six' WHERE a=21141; UPDATE t2 SET c='fifty-eight thousand nine hundred nine' WHERE a=21142; UPDATE t2 SET c='two thousand one hundred ninety-two' WHERE a=21143; UPDATE t2 SET c='eighty-three thousand one hundred sixty-four' WHERE a=21144; UPDATE t2 SET c='forty-seven thousand six hundred sixty-three' WHERE a=21145; UPDATE t2 SET c='thirty-two thousand nine hundred ninety-nine' WHERE a=21146; UPDATE t2 SET c='twenty-five thousand seven hundred fifty-two' WHERE a=21147; UPDATE t2 SET c='eighty-four thousand fifty-two' WHERE a=21148; UPDATE t2 SET c='fifty-seven thousand two hundred sixty-six' WHERE a=21149; UPDATE t2 SET c='sixty-four thousand five hundred thirty-eight' WHERE a=21150; UPDATE t2 SET c='seven thousand one hundred ninety-nine' WHERE a=21151; UPDATE t2 SET c='eighty-eight thousand forty-nine' WHERE a=21152; UPDATE t2 SET c='seven thousand four hundred ten' WHERE a=21153; UPDATE t2 SET c='ninety-seven thousand six hundred thirty-seven' WHERE a=21154; UPDATE t2 SET c='thirteen thousand seven hundred thirty-eight' WHERE a=21155; UPDATE t2 SET c='twenty-two thousand seven hundred sixty-four' WHERE a=21156; UPDATE t2 SET c='eighty-eight thousand fifty' WHERE a=21157; UPDATE t2 SET c='eighty thousand five hundred seventy-nine' WHERE a=21158; UPDATE t2 SET c='thirty-seven thousand eight hundred one' WHERE a=21159; UPDATE t2 SET c='twenty-eight thousand four hundred ninety-eight' WHERE a=21160; UPDATE t2 SET c='twenty-seven thousand one hundred seven' WHERE a=21161; UPDATE t2 SET c='ninety-one thousand two hundred one' WHERE a=21162; UPDATE t2 SET c='twenty-eight thousand two hundred seventy-eight' WHERE a=21163; UPDATE t2 SET c='seventy thousand one hundred' WHERE a=21164; UPDATE t2 SET c='sixteen thousand four hundred seven' WHERE a=21165; UPDATE t2 SET c='seventy-two thousand three hundred forty-three' WHERE a=21166; UPDATE t2 SET c='seventy-one thousand six hundred sixty-two' WHERE a=21167; UPDATE t2 SET c='thirty-four thousand seven hundred sixty-five' WHERE a=21168; UPDATE t2 SET c='sixty-eight thousand four hundred thirty-two' WHERE a=21169; UPDATE t2 SET c='seventy-three thousand two hundred eighteen' WHERE a=21170; UPDATE t2 SET c='sixty-one thousand seven hundred fifty-nine' WHERE a=21171; UPDATE t2 SET c='eighty thousand fifty-nine' WHERE a=21172; UPDATE t2 SET c='seventeen thousand one hundred forty-six' WHERE a=21173; UPDATE t2 SET c='thirty-three thousand three hundred twenty-seven' WHERE a=21174; UPDATE t2 SET c='eighty thousand one hundred seven' WHERE a=21175; UPDATE t2 SET c='fourteen thousand three hundred ninety-one' WHERE a=21176; UPDATE t2 SET c='fifty-five thousand four hundred twenty-five' WHERE a=21177; UPDATE t2 SET c='fifteen thousand five hundred sixty-three' WHERE a=21178; UPDATE t2 SET c='sixty-nine thousand forty-six' WHERE a=21179; UPDATE t2 SET c='seventy-seven thousand six hundred fifty-one' WHERE a=21180; UPDATE t2 SET c='sixty-six thousand five hundred nineteen' WHERE a=21181; UPDATE t2 SET c='nineteen thousand two hundred sixty-nine' WHERE a=21182; UPDATE t2 SET c='thirty-six thousand four hundred sixty-three' WHERE a=21183; UPDATE t2 SET c='fifty-one thousand nine hundred eighty-four' WHERE a=21184; UPDATE t2 SET c='eighty thousand five hundred five' WHERE a=21185; UPDATE t2 SET c='twenty-one thousand two hundred thirty-seven' WHERE a=21186; UPDATE t2 SET c='fifty-one thousand seven hundred forty-four' WHERE a=21187; UPDATE t2 SET c='sixty-two thousand forty-four' WHERE a=21188; UPDATE t2 SET c='sixteen thousand four hundred eighty-five' WHERE a=21189; UPDATE t2 SET c='twenty-one thousand eight hundred ninety-one' WHERE a=21190; UPDATE t2 SET c='forty-four thousand eight hundred forty-one' WHERE a=21191; UPDATE t2 SET c='eighty-four thousand seven hundred eighty' WHERE a=21192; UPDATE t2 SET c='ninety-eight thousand four hundred thirty' WHERE a=21193; UPDATE t2 SET c='fifty-four thousand one hundred sixty-one' WHERE a=21194; UPDATE t2 SET c='nineteen thousand three hundred sixty-eight' WHERE a=21195; UPDATE t2 SET c='twenty-eight thousand two hundred fifty-eight' WHERE a=21196; UPDATE t2 SET c='seventy-nine thousand six hundred eighty-six' WHERE a=21197; UPDATE t2 SET c='two thousand six hundred' WHERE a=21198; UPDATE t2 SET c='thirty-seven thousand nine hundred one' WHERE a=21199; UPDATE t2 SET c='sixteen thousand four hundred twenty' WHERE a=21200; UPDATE t2 SET c='ten thousand four hundred thirteen' WHERE a=21201; UPDATE t2 SET c='forty-eight thousand two hundred' WHERE a=21202; UPDATE t2 SET c='forty-two thousand eight hundred fifty-two' WHERE a=21203; UPDATE t2 SET c='five thousand two hundred sixty-three' WHERE a=21204; UPDATE t2 SET c='sixty-nine thousand three hundred sixty-nine' WHERE a=21205; UPDATE t2 SET c='thirty-six thousand eight hundred sixty-two' WHERE a=21206; UPDATE t2 SET c='eighty-seven thousand nine hundred thirty-five' WHERE a=21207; UPDATE t2 SET c='eighty-five thousand two hundred sixty-two' WHERE a=21208; UPDATE t2 SET c='seventy-four thousand four hundred thirty-three' WHERE a=21209; UPDATE t2 SET c='thirteen thousand eight hundred ninety' WHERE a=21210; UPDATE t2 SET c='ninety-five thousand six hundred ninety-three' WHERE a=21211; UPDATE t2 SET c='twelve thousand six' WHERE a=21212; UPDATE t2 SET c='sixteen thousand five hundred eighty-one' WHERE a=21213; UPDATE t2 SET c='fifty-one thousand seven hundred forty-four' WHERE a=21214; UPDATE t2 SET c='fifty-nine thousand nine hundred fifty' WHERE a=21215; UPDATE t2 SET c='forty-three thousand five hundred seventy-three' WHERE a=21216; UPDATE t2 SET c='ninety-nine thousand two hundred fifty-two' WHERE a=21217; UPDATE t2 SET c='fifty-nine thousand three hundred twenty-eight' WHERE a=21218; UPDATE t2 SET c='fifty-seven thousand four hundred sixty-eight' WHERE a=21219; UPDATE t2 SET c='forty-seven thousand four hundred twenty-six' WHERE a=21220; UPDATE t2 SET c='fifty-nine thousand seven hundred twenty-four' WHERE a=21221; UPDATE t2 SET c='one hundred fifty-five' WHERE a=21222; UPDATE t2 SET c='ninety-seven thousand three hundred forty-four' WHERE a=21223; UPDATE t2 SET c='eighteen thousand five hundred thirty-five' WHERE a=21224; UPDATE t2 SET c='fifty-seven thousand six hundred twenty-seven' WHERE a=21225; UPDATE t2 SET c='sixty-six thousand eighty-five' WHERE a=21226; UPDATE t2 SET c='twenty-seven thousand fifteen' WHERE a=21227; UPDATE t2 SET c='seventy-eight thousand four hundred sixty-eight' WHERE a=21228; UPDATE t2 SET c='ninety-five thousand six hundred eighty-three' WHERE a=21229; UPDATE t2 SET c='ninety-six thousand three hundred seventy-two' WHERE a=21230; UPDATE t2 SET c='ninety-six thousand one hundred sixty-five' WHERE a=21231; UPDATE t2 SET c='twenty-seven thousand seven hundred eighty-five' WHERE a=21232; UPDATE t2 SET c='sixty-six thousand fifty-six' WHERE a=21233; UPDATE t2 SET c='twelve thousand two hundred forty' WHERE a=21234; UPDATE t2 SET c='sixty-eight thousand five hundred forty-six' WHERE a=21235; UPDATE t2 SET c='twenty-four thousand five hundred sixty-four' WHERE a=21236; UPDATE t2 SET c='twenty-eight thousand one hundred twenty-five' WHERE a=21237; UPDATE t2 SET c='seventy-seven thousand three hundred twenty-two' WHERE a=21238; UPDATE t2 SET c='eighty-nine thousand three hundred forty-nine' WHERE a=21239; UPDATE t2 SET c='eighty-five thousand eight hundred fifty' WHERE a=21240; UPDATE t2 SET c='eighty-seven thousand six hundred eighty-four' WHERE a=21241; UPDATE t2 SET c='forty-four thousand eight hundred fifty-two' WHERE a=21242; UPDATE t2 SET c='five thousand eighty-eight' WHERE a=21243; UPDATE t2 SET c='forty thousand four hundred four' WHERE a=21244; UPDATE t2 SET c='forty-three thousand five hundred eighty-two' WHERE a=21245; UPDATE t2 SET c='eighty-two thousand five hundred seventeen' WHERE a=21246; UPDATE t2 SET c='twenty-one thousand six hundred eighty-nine' WHERE a=21247; UPDATE t2 SET c='seventy-one thousand five hundred thirty-three' WHERE a=21248; UPDATE t2 SET c='eighty-two thousand three hundred sixty-one' WHERE a=21249; UPDATE t2 SET c='thirty-three thousand five hundred fifty-four' WHERE a=21250; UPDATE t2 SET c='twelve thousand fifty-eight' WHERE a=21251; UPDATE t2 SET c='forty-four thousand five hundred ninety-eight' WHERE a=21252; UPDATE t2 SET c='seventy-four thousand five hundred eighty-six' WHERE a=21253; UPDATE t2 SET c='twenty-seven thousand forty-seven' WHERE a=21254; UPDATE t2 SET c='forty-three thousand nine hundred fifty-nine' WHERE a=21255; UPDATE t2 SET c='twenty-eight thousand three hundred twenty-five' WHERE a=21256; UPDATE t2 SET c='twenty-five thousand one hundred twenty-one' WHERE a=21257; UPDATE t2 SET c='eight thousand one hundred ten' WHERE a=21258; UPDATE t2 SET c='forty-one thousand two hundred ninety-three' WHERE a=21259; UPDATE t2 SET c='eighty-four thousand eight hundred sixty-six' WHERE a=21260; UPDATE t2 SET c='twenty-two thousand nine hundred twelve' WHERE a=21261; UPDATE t2 SET c='sixty-seven thousand one hundred forty-nine' WHERE a=21262; UPDATE t2 SET c='fifty-six thousand seven hundred sixteen' WHERE a=21263; UPDATE t2 SET c='eighty-five thousand eight hundred seventeen' WHERE a=21264; UPDATE t2 SET c='thirty-one thousand five hundred sixty-one' WHERE a=21265; UPDATE t2 SET c='twenty-two thousand seven hundred twenty-six' WHERE a=21266; UPDATE t2 SET c='eighty-nine thousand seven hundred forty-nine' WHERE a=21267; UPDATE t2 SET c='sixty-seven thousand eleven' WHERE a=21268; UPDATE t2 SET c='forty-one thousand seven hundred fifty-nine' WHERE a=21269; UPDATE t2 SET c='sixty-two thousand nine hundred seventy-seven' WHERE a=21270; UPDATE t2 SET c='eighteen thousand four hundred thirty-seven' WHERE a=21271; UPDATE t2 SET c='sixty-five thousand sixty-four' WHERE a=21272; UPDATE t2 SET c='fifty-five thousand eighty-four' WHERE a=21273; UPDATE t2 SET c='sixty-nine thousand six hundred sixty-nine' WHERE a=21274; UPDATE t2 SET c='eighty-five thousand eight hundred nine' WHERE a=21275; UPDATE t2 SET c='seventeen thousand four hundred ninety-six' WHERE a=21276; UPDATE t2 SET c='fifty-six thousand six hundred sixty-six' WHERE a=21277; UPDATE t2 SET c='eighty-eight thousand eight hundred fifty-one' WHERE a=21278; UPDATE t2 SET c='forty-eight thousand seven hundred seven' WHERE a=21279; UPDATE t2 SET c='six thousand nine hundred sixty-five' WHERE a=21280; UPDATE t2 SET c='fourteen thousand one hundred sixty-six' WHERE a=21281; UPDATE t2 SET c='nine thousand one hundred forty-one' WHERE a=21282; UPDATE t2 SET c='sixty-two thousand three hundred forty-six' WHERE a=21283; UPDATE t2 SET c='one thousand two hundred eighty-two' WHERE a=21284; UPDATE t2 SET c='eighty-seven thousand two hundred ten' WHERE a=21285; UPDATE t2 SET c='fifteen thousand four hundred seventy' WHERE a=21286; UPDATE t2 SET c='fifty-two thousand eight hundred ninety-seven' WHERE a=21287; UPDATE t2 SET c='seventy-one thousand sixty-six' WHERE a=21288; UPDATE t2 SET c='fifty-five thousand two hundred eleven' WHERE a=21289; UPDATE t2 SET c='ninety-eight thousand forty-four' WHERE a=21290; UPDATE t2 SET c='nineteen thousand three hundred eighty-four' WHERE a=21291; UPDATE t2 SET c='forty-nine thousand eight hundred thirty-eight' WHERE a=21292; UPDATE t2 SET c='eight thousand six hundred fifty-one' WHERE a=21293; UPDATE t2 SET c='sixty-eight thousand four hundred seventy-five' WHERE a=21294; UPDATE t2 SET c='twenty-seven thousand six hundred seventy-nine' WHERE a=21295; UPDATE t2 SET c='sixty-six thousand four hundred thirty-two' WHERE a=21296; UPDATE t2 SET c='seventy-eight thousand three hundred forty-one' WHERE a=21297; UPDATE t2 SET c='sixty-six thousand five hundred forty' WHERE a=21298; UPDATE t2 SET c='ninety-six thousand six hundred thirty-seven' WHERE a=21299; UPDATE t2 SET c='sixteen thousand five hundred seventy-seven' WHERE a=21300; UPDATE t2 SET c='thirty-six thousand three hundred ninety-three' WHERE a=21301; UPDATE t2 SET c='sixty-nine thousand one hundred eighty-nine' WHERE a=21302; UPDATE t2 SET c='twenty-five thousand nine hundred four' WHERE a=21303; UPDATE t2 SET c='ninety-seven thousand four hundred twenty-nine' WHERE a=21304; UPDATE t2 SET c='fifty-three thousand five hundred fifty-six' WHERE a=21305; UPDATE t2 SET c='seventy-six thousand five hundred eighty-two' WHERE a=21306; UPDATE t2 SET c='thirty-three thousand forty-four' WHERE a=21307; UPDATE t2 SET c='six hundred sixty-one' WHERE a=21308; UPDATE t2 SET c='forty thousand two hundred thirty-two' WHERE a=21309; UPDATE t2 SET c='fifty-five thousand nine hundred sixty-one' WHERE a=21310; UPDATE t2 SET c='thirty-six thousand five hundred sixty-five' WHERE a=21311; UPDATE t2 SET c='eight thousand seven hundred eight' WHERE a=21312; UPDATE t2 SET c='twenty-three thousand six hundred ninety' WHERE a=21313; UPDATE t2 SET c='thirty-nine thousand nine hundred thirty-three' WHERE a=21314; UPDATE t2 SET c='twenty-seven thousand nine hundred ninety-eight' WHERE a=21315; UPDATE t2 SET c='twenty-one thousand six hundred seventy-two' WHERE a=21316; UPDATE t2 SET c='fifty-three thousand six hundred twenty-one' WHERE a=21317; UPDATE t2 SET c='forty-one thousand six hundred eighty' WHERE a=21318; UPDATE t2 SET c='sixty-nine thousand six hundred ninety-nine' WHERE a=21319; UPDATE t2 SET c='ninety-six thousand five hundred thirty-five' WHERE a=21320; UPDATE t2 SET c='sixty-three thousand nine hundred seventy' WHERE a=21321; UPDATE t2 SET c='nine thousand two hundred seventy-five' WHERE a=21322; UPDATE t2 SET c='thirty-eight thousand five hundred seventy-two' WHERE a=21323; UPDATE t2 SET c='seven thousand' WHERE a=21324; UPDATE t2 SET c='sixty-one thousand nine hundred sixty-two' WHERE a=21325; UPDATE t2 SET c='thirty-seven thousand five hundred fifty-nine' WHERE a=21326; UPDATE t2 SET c='forty thousand seven hundred twenty-nine' WHERE a=21327; UPDATE t2 SET c='seventy-one thousand twenty-nine' WHERE a=21328; UPDATE t2 SET c='twenty-one thousand seven hundred twenty-six' WHERE a=21329; UPDATE t2 SET c='ninety-seven thousand seven' WHERE a=21330; UPDATE t2 SET c='sixty-eight thousand nine hundred eighty-four' WHERE a=21331; UPDATE t2 SET c='ninety-nine thousand four hundred seventy-two' WHERE a=21332; UPDATE t2 SET c='forty-seven thousand eight hundred eighty-seven' WHERE a=21333; UPDATE t2 SET c='three thousand five hundred five' WHERE a=21334; UPDATE t2 SET c='thirty-three thousand eight hundred twenty' WHERE a=21335; UPDATE t2 SET c='four thousand seven hundred ninety-five' WHERE a=21336; UPDATE t2 SET c='forty-two thousand one hundred ninety-seven' WHERE a=21337; UPDATE t2 SET c='seventy-two thousand eight hundred eighty-six' WHERE a=21338; UPDATE t2 SET c='ninety-six thousand one hundred eighty-one' WHERE a=21339; UPDATE t2 SET c='eighty thousand nine hundred seventy' WHERE a=21340; UPDATE t2 SET c='seventy-eight thousand six hundred forty-three' WHERE a=21341; UPDATE t2 SET c='sixty-three thousand two hundred ninety-three' WHERE a=21342; UPDATE t2 SET c='forty-five thousand nine hundred sixty-nine' WHERE a=21343; UPDATE t2 SET c='twenty-four thousand one hundred ninety-five' WHERE a=21344; UPDATE t2 SET c='nine thousand five hundred seventy-six' WHERE a=21345; UPDATE t2 SET c='fifty-six thousand eight hundred seventy-seven' WHERE a=21346; UPDATE t2 SET c='twenty-three thousand eight hundred eighty-four' WHERE a=21347; UPDATE t2 SET c='eighty-four thousand five hundred fourteen' WHERE a=21348; UPDATE t2 SET c='fifty-five thousand eight hundred fifteen' WHERE a=21349; UPDATE t2 SET c='seven thousand nine hundred eighteen' WHERE a=21350; UPDATE t2 SET c='seventy-six thousand six hundred twenty-four' WHERE a=21351; UPDATE t2 SET c='twenty-three thousand seven hundred forty-four' WHERE a=21352; UPDATE t2 SET c='forty-five thousand three hundred forty-five' WHERE a=21353; UPDATE t2 SET c='eighty-seven thousand six hundred eighteen' WHERE a=21354; UPDATE t2 SET c='sixty-eight thousand seven hundred thirty-nine' WHERE a=21355; UPDATE t2 SET c='thirty-eight thousand six hundred seventy-six' WHERE a=21356; UPDATE t2 SET c='eighty-five thousand seven hundred fifty-eight' WHERE a=21357; UPDATE t2 SET c='ninety-seven thousand five hundred thirty-three' WHERE a=21358; UPDATE t2 SET c='fifty-seven thousand eight hundred forty-five' WHERE a=21359; UPDATE t2 SET c='seven hundred seventy-two' WHERE a=21360; UPDATE t2 SET c='one thousand six hundred one' WHERE a=21361; UPDATE t2 SET c='nineteen thousand four hundred twenty-one' WHERE a=21362; UPDATE t2 SET c='eighty-nine thousand two hundred forty-six' WHERE a=21363; UPDATE t2 SET c='ninety-two thousand four hundred eleven' WHERE a=21364; UPDATE t2 SET c='eighty-seven thousand nine hundred fifty-four' WHERE a=21365; UPDATE t2 SET c='eighty-five thousand seven hundred fifty-eight' WHERE a=21366; UPDATE t2 SET c='fifteen thousand eight hundred fifty-nine' WHERE a=21367; UPDATE t2 SET c='forty-two thousand nine hundred twenty-one' WHERE a=21368; UPDATE t2 SET c='nine thousand seven hundred fifty-three' WHERE a=21369; UPDATE t2 SET c='four thousand eight hundred eighty-nine' WHERE a=21370; UPDATE t2 SET c='forty-seven thousand five hundred ten' WHERE a=21371; UPDATE t2 SET c='forty-eight thousand eight hundred forty-seven' WHERE a=21372; UPDATE t2 SET c='twenty-one thousand eight hundred seventy-two' WHERE a=21373; UPDATE t2 SET c='fifteen thousand seven hundred forty-six' WHERE a=21374; UPDATE t2 SET c='ten thousand six hundred twenty-nine' WHERE a=21375; UPDATE t2 SET c='eighty-seven thousand one hundred thirty-three' WHERE a=21376; UPDATE t2 SET c='ninety-three thousand seven hundred eighty-six' WHERE a=21377; UPDATE t2 SET c='twenty-seven thousand one hundred sixty-one' WHERE a=21378; UPDATE t2 SET c='thirty-four thousand forty-two' WHERE a=21379; UPDATE t2 SET c='forty-five thousand four hundred sixty-three' WHERE a=21380; UPDATE t2 SET c='seventy-three thousand seven hundred forty-two' WHERE a=21381; UPDATE t2 SET c='forty-one thousand four hundred sixteen' WHERE a=21382; UPDATE t2 SET c='eighty thousand nine hundred sixty-four' WHERE a=21383; UPDATE t2 SET c='thirty-seven thousand two hundred fifty-seven' WHERE a=21384; UPDATE t2 SET c='forty-three thousand three hundred seventy-three' WHERE a=21385; UPDATE t2 SET c='four thousand eight hundred forty' WHERE a=21386; UPDATE t2 SET c='nineteen thousand six hundred ninety' WHERE a=21387; UPDATE t2 SET c='sixteen thousand four hundred forty-seven' WHERE a=21388; UPDATE t2 SET c='fifty-six thousand eight hundred fifty-two' WHERE a=21389; UPDATE t2 SET c='fifty-two thousand two hundred fifty-eight' WHERE a=21390; UPDATE t2 SET c='forty-four thousand nine hundred fourteen' WHERE a=21391; UPDATE t2 SET c='fourteen thousand twenty-eight' WHERE a=21392; UPDATE t2 SET c='ninety-three thousand four hundred sixty-seven' WHERE a=21393; UPDATE t2 SET c='forty-three thousand two hundred seventy-nine' WHERE a=21394; UPDATE t2 SET c='eleven thousand seven hundred forty' WHERE a=21395; UPDATE t2 SET c='forty-three thousand six hundred eighteen' WHERE a=21396; UPDATE t2 SET c='eighty-two thousand three hundred ninety-four' WHERE a=21397; UPDATE t2 SET c='seventy-eight thousand six hundred ninety-eight' WHERE a=21398; UPDATE t2 SET c='seventy thousand thirty-six' WHERE a=21399; UPDATE t2 SET c='seventy-seven thousand eight hundred thirty' WHERE a=21400; UPDATE t2 SET c='forty-seven thousand five' WHERE a=21401; UPDATE t2 SET c='twenty-eight thousand nine hundred sixty-seven' WHERE a=21402; UPDATE t2 SET c='nineteen thousand one hundred ninety-eight' WHERE a=21403; UPDATE t2 SET c='twenty-five thousand six hundred forty-seven' WHERE a=21404; UPDATE t2 SET c='fifty-five thousand five hundred fifty-nine' WHERE a=21405; UPDATE t2 SET c='seventy-six thousand seven hundred thirty-six' WHERE a=21406; UPDATE t2 SET c='thirty-six thousand nine hundred thirty-four' WHERE a=21407; UPDATE t2 SET c='sixty-nine thousand six hundred sixty-two' WHERE a=21408; UPDATE t2 SET c='thirty-two thousand seven hundred sixty-one' WHERE a=21409; UPDATE t2 SET c='eighty-four thousand two hundred seventy-nine' WHERE a=21410; UPDATE t2 SET c='seventy thousand one hundred sixty-five' WHERE a=21411; UPDATE t2 SET c='thirty-two thousand one hundred thirty-six' WHERE a=21412; UPDATE t2 SET c='twenty-three thousand five hundred seventy-three' WHERE a=21413; UPDATE t2 SET c='four thousand one hundred fifteen' WHERE a=21414; UPDATE t2 SET c='eighty-four thousand three hundred twenty-one' WHERE a=21415; UPDATE t2 SET c='twenty-one thousand four hundred thirteen' WHERE a=21416; UPDATE t2 SET c='ninety-one thousand four hundred fifty' WHERE a=21417; UPDATE t2 SET c='eighty-eight thousand one hundred seventy' WHERE a=21418; UPDATE t2 SET c='twenty-seven thousand nine hundred eight' WHERE a=21419; UPDATE t2 SET c='eighty-two thousand nine hundred twenty-two' WHERE a=21420; UPDATE t2 SET c='ninety-three thousand eighty-four' WHERE a=21421; UPDATE t2 SET c='twenty-one thousand eight hundred eighty-six' WHERE a=21422; UPDATE t2 SET c='seventy-one thousand eight hundred eleven' WHERE a=21423; UPDATE t2 SET c='forty-eight thousand two hundred fifty-eight' WHERE a=21424; UPDATE t2 SET c='seventeen thousand two hundred ninety-six' WHERE a=21425; UPDATE t2 SET c='seventy-two thousand seven hundred eighty-seven' WHERE a=21426; UPDATE t2 SET c='eight thousand five hundred fifty-four' WHERE a=21427; UPDATE t2 SET c='twenty-three thousand seven hundred thirty-nine' WHERE a=21428; UPDATE t2 SET c='ninety-four thousand one hundred fifteen' WHERE a=21429; UPDATE t2 SET c='ninety-seven thousand nine hundred sixty-seven' WHERE a=21430; UPDATE t2 SET c='six thousand six hundred twenty-seven' WHERE a=21431; UPDATE t2 SET c='ninety-seven thousand sixty-three' WHERE a=21432; UPDATE t2 SET c='five thousand seven hundred forty-six' WHERE a=21433; UPDATE t2 SET c='ninety-two thousand one hundred sixty-four' WHERE a=21434; UPDATE t2 SET c='eighty-one thousand twenty-two' WHERE a=21435; UPDATE t2 SET c='sixty-nine thousand nine hundred sixty' WHERE a=21436; UPDATE t2 SET c='twenty-nine thousand four hundred twenty-five' WHERE a=21437; UPDATE t2 SET c='ten thousand six hundred thirty-six' WHERE a=21438; UPDATE t2 SET c='ninety-nine thousand three hundred twenty-one' WHERE a=21439; UPDATE t2 SET c='thirty-two thousand six hundred thirty-five' WHERE a=21440; UPDATE t2 SET c='seventy thousand nine hundred forty-three' WHERE a=21441; UPDATE t2 SET c='sixty-four thousand four hundred sixty-two' WHERE a=21442; UPDATE t2 SET c='thirty-three thousand eight hundred twenty-seven' WHERE a=21443; UPDATE t2 SET c='twenty-eight thousand six hundred forty' WHERE a=21444; UPDATE t2 SET c='thirty-two thousand forty-four' WHERE a=21445; UPDATE t2 SET c='fifty-eight thousand sixty-five' WHERE a=21446; UPDATE t2 SET c='nineteen thousand eight hundred nine' WHERE a=21447; UPDATE t2 SET c='eighty-five thousand ninety-nine' WHERE a=21448; UPDATE t2 SET c='six thousand four hundred seventy-eight' WHERE a=21449; UPDATE t2 SET c='sixty-five thousand seven hundred eight' WHERE a=21450; UPDATE t2 SET c='sixty-three thousand five hundred fifty-nine' WHERE a=21451; UPDATE t2 SET c='ninety-two thousand seven hundred sixteen' WHERE a=21452; UPDATE t2 SET c='three thousand six hundred sixty-one' WHERE a=21453; UPDATE t2 SET c='twenty-four thousand six hundred eighty-eight' WHERE a=21454; UPDATE t2 SET c='thirty-three thousand four hundred seventy-five' WHERE a=21455; UPDATE t2 SET c='fifteen thousand eight hundred three' WHERE a=21456; UPDATE t2 SET c='seventy-four thousand nine hundred sixty-eight' WHERE a=21457; UPDATE t2 SET c='twenty-nine thousand three hundred eighty-six' WHERE a=21458; UPDATE t2 SET c='ninety-four thousand one hundred fifteen' WHERE a=21459; UPDATE t2 SET c='thirty-two thousand nine hundred seventy-four' WHERE a=21460; UPDATE t2 SET c='thirty-six thousand one hundred forty-five' WHERE a=21461; UPDATE t2 SET c='ninety-five thousand nine' WHERE a=21462; UPDATE t2 SET c='thirty-six thousand five hundred seventy-eight' WHERE a=21463; UPDATE t2 SET c='seventy-eight thousand seven hundred' WHERE a=21464; UPDATE t2 SET c='twenty-four thousand five hundred twenty-two' WHERE a=21465; UPDATE t2 SET c='seventy-two thousand two hundred thirty-six' WHERE a=21466; UPDATE t2 SET c='ninety-eight thousand forty-six' WHERE a=21467; UPDATE t2 SET c='sixty-six thousand seventy-six' WHERE a=21468; UPDATE t2 SET c='forty-two thousand four hundred fifty' WHERE a=21469; UPDATE t2 SET c='sixty thousand eleven' WHERE a=21470; UPDATE t2 SET c='eight thousand eight hundred seventeen' WHERE a=21471; UPDATE t2 SET c='seventy-five thousand three hundred ninety-three' WHERE a=21472; UPDATE t2 SET c='fifty-one thousand six hundred seventy-eight' WHERE a=21473; UPDATE t2 SET c='fifteen thousand three hundred sixty-one' WHERE a=21474; UPDATE t2 SET c='twenty-seven thousand five hundred eighty' WHERE a=21475; UPDATE t2 SET c='seventeen thousand nine hundred forty-three' WHERE a=21476; UPDATE t2 SET c='thirty-three thousand sixty' WHERE a=21477; UPDATE t2 SET c='ninety-two thousand nine hundred ninety-seven' WHERE a=21478; UPDATE t2 SET c='fifty-six thousand five hundred fifty-four' WHERE a=21479; UPDATE t2 SET c='forty-four thousand one hundred thirty-eight' WHERE a=21480; UPDATE t2 SET c='twenty-five thousand three hundred twenty-five' WHERE a=21481; UPDATE t2 SET c='ninety-six thousand one hundred fifty' WHERE a=21482; UPDATE t2 SET c='seventy-one thousand five hundred thirty-eight' WHERE a=21483; UPDATE t2 SET c='twenty-six thousand five hundred seventy' WHERE a=21484; UPDATE t2 SET c='eleven thousand nine hundred ninety-eight' WHERE a=21485; UPDATE t2 SET c='ninety-two thousand seven hundred thirty-one' WHERE a=21486; UPDATE t2 SET c='fourteen thousand four hundred forty-six' WHERE a=21487; UPDATE t2 SET c='fifty-one thousand three hundred eighty-seven' WHERE a=21488; UPDATE t2 SET c='forty-one thousand eight hundred eighty-four' WHERE a=21489; UPDATE t2 SET c='ninety-one thousand two hundred thirty-five' WHERE a=21490; UPDATE t2 SET c='eighty-nine thousand eight hundred seventy-three' WHERE a=21491; UPDATE t2 SET c='fifty-three thousand six hundred six' WHERE a=21492; UPDATE t2 SET c='seventy-nine thousand eight hundred fifty-one' WHERE a=21493; UPDATE t2 SET c='forty-one thousand two hundred eighty-four' WHERE a=21494; UPDATE t2 SET c='ninety-four thousand two hundred eight' WHERE a=21495; UPDATE t2 SET c='sixty-nine thousand eight hundred sixty-eight' WHERE a=21496; UPDATE t2 SET c='ninety-five thousand nine hundred eighty-three' WHERE a=21497; UPDATE t2 SET c='three thousand eight hundred thirty-eight' WHERE a=21498; UPDATE t2 SET c='forty-seven thousand eighty-six' WHERE a=21499; UPDATE t2 SET c='one thousand two hundred eighty-four' WHERE a=21500; UPDATE t2 SET c='thirteen thousand six hundred thirty-seven' WHERE a=21501; UPDATE t2 SET c='eighty-eight thousand six hundred forty-one' WHERE a=21502; UPDATE t2 SET c='thirty-four thousand four hundred eighty-nine' WHERE a=21503; UPDATE t2 SET c='fourteen thousand eight hundred two' WHERE a=21504; UPDATE t2 SET c='eighty thousand five hundred seventeen' WHERE a=21505; UPDATE t2 SET c='seventy thousand three hundred thirty-three' WHERE a=21506; UPDATE t2 SET c='twenty-eight thousand nine hundred ten' WHERE a=21507; UPDATE t2 SET c='thirty-six thousand six hundred fifty' WHERE a=21508; UPDATE t2 SET c='eighty-eight thousand two hundred ninety' WHERE a=21509; UPDATE t2 SET c='two thousand nine hundred fifty-five' WHERE a=21510; UPDATE t2 SET c='ninety-one thousand one hundred sixty-one' WHERE a=21511; UPDATE t2 SET c='eighty-two thousand seven hundred forty-five' WHERE a=21512; UPDATE t2 SET c='fifty thousand three hundred ninety-one' WHERE a=21513; UPDATE t2 SET c='forty-eight thousand six hundred forty-three' WHERE a=21514; UPDATE t2 SET c='fifty-two thousand six hundred thirteen' WHERE a=21515; UPDATE t2 SET c='eighty-five thousand two hundred' WHERE a=21516; UPDATE t2 SET c='nine thousand three hundred seventy-three' WHERE a=21517; UPDATE t2 SET c='twenty-two thousand two hundred fifty-four' WHERE a=21518; UPDATE t2 SET c='fifty thousand six hundred six' WHERE a=21519; UPDATE t2 SET c='twenty-two thousand two hundred ten' WHERE a=21520; UPDATE t2 SET c='seventy-one thousand nine' WHERE a=21521; UPDATE t2 SET c='thirty-six thousand six hundred seventy-six' WHERE a=21522; UPDATE t2 SET c='fifty-eight thousand four hundred forty-three' WHERE a=21523; UPDATE t2 SET c='thirty-seven thousand seven hundred fifty-four' WHERE a=21524; UPDATE t2 SET c='forty-seven thousand two hundred eighty-six' WHERE a=21525; UPDATE t2 SET c='sixty-one thousand six hundred seventy-nine' WHERE a=21526; UPDATE t2 SET c='sixteen thousand six hundred four' WHERE a=21527; UPDATE t2 SET c='seventy-two thousand three hundred fifty-eight' WHERE a=21528; UPDATE t2 SET c='forty-one thousand ninety-four' WHERE a=21529; UPDATE t2 SET c='thirty-nine thousand five hundred six' WHERE a=21530; UPDATE t2 SET c='forty-nine thousand three hundred seventy-three' WHERE a=21531; UPDATE t2 SET c='eighty-three thousand three hundred forty' WHERE a=21532; UPDATE t2 SET c='seventy-two thousand forty-two' WHERE a=21533; UPDATE t2 SET c='four thousand eighty-five' WHERE a=21534; UPDATE t2 SET c='fifty-five thousand one hundred seventy' WHERE a=21535; UPDATE t2 SET c='thirty-two thousand three hundred fifty-nine' WHERE a=21536; UPDATE t2 SET c='forty-four thousand two hundred twenty-nine' WHERE a=21537; UPDATE t2 SET c='eleven thousand nine hundred seventy-four' WHERE a=21538; UPDATE t2 SET c='ninety-two thousand eight hundred fourteen' WHERE a=21539; UPDATE t2 SET c='eighty-two thousand five hundred ninety-nine' WHERE a=21540; UPDATE t2 SET c='ninety-eight thousand seven hundred fifty-three' WHERE a=21541; UPDATE t2 SET c='forty thousand two hundred eighty-two' WHERE a=21542; UPDATE t2 SET c='ninety-four thousand seven hundred eleven' WHERE a=21543; UPDATE t2 SET c='sixty-nine thousand eight hundred forty' WHERE a=21544; UPDATE t2 SET c='fifty-seven thousand four hundred thirty-seven' WHERE a=21545; UPDATE t2 SET c='twenty-three thousand five hundred thirty-nine' WHERE a=21546; UPDATE t2 SET c='ninety-eight thousand five hundred seventy-five' WHERE a=21547; UPDATE t2 SET c='ninety-four thousand one hundred seventy-nine' WHERE a=21548; UPDATE t2 SET c='eighty-three thousand one hundred twenty' WHERE a=21549; UPDATE t2 SET c='eighty-eight thousand four hundred ninety-four' WHERE a=21550; UPDATE t2 SET c='sixty-eight thousand ninety-three' WHERE a=21551; UPDATE t2 SET c='ninety-three thousand two hundred seventy-nine' WHERE a=21552; UPDATE t2 SET c='thirty-two thousand one hundred sixty-two' WHERE a=21553; UPDATE t2 SET c='five thousand seven hundred fifty-eight' WHERE a=21554; UPDATE t2 SET c='forty-nine thousand two hundred eighteen' WHERE a=21555; UPDATE t2 SET c='thirty-one thousand five hundred seven' WHERE a=21556; UPDATE t2 SET c='seventeen thousand eight hundred thirty-one' WHERE a=21557; UPDATE t2 SET c='seventy-nine thousand four hundred seventy-five' WHERE a=21558; UPDATE t2 SET c='twenty thousand nine hundred twenty-one' WHERE a=21559; UPDATE t2 SET c='seventy-three thousand seven hundred fourteen' WHERE a=21560; UPDATE t2 SET c='eighty-one thousand eight hundred fifteen' WHERE a=21561; UPDATE t2 SET c='eighty thousand six hundred twenty-one' WHERE a=21562; UPDATE t2 SET c='eleven thousand six hundred sixteen' WHERE a=21563; UPDATE t2 SET c='six thousand four hundred sixty-six' WHERE a=21564; UPDATE t2 SET c='ninety thousand six hundred eleven' WHERE a=21565; UPDATE t2 SET c='eighty-five thousand three hundred thirty-four' WHERE a=21566; UPDATE t2 SET c='forty-eight thousand ninety-five' WHERE a=21567; UPDATE t2 SET c='two hundred eighty-one' WHERE a=21568; UPDATE t2 SET c='eighteen thousand ninety-five' WHERE a=21569; UPDATE t2 SET c='thirty-seven thousand six hundred three' WHERE a=21570; UPDATE t2 SET c='eighty-two thousand two hundred seventy-three' WHERE a=21571; UPDATE t2 SET c='twenty-three thousand two hundred eight' WHERE a=21572; UPDATE t2 SET c='twenty-nine thousand four hundred sixty-seven' WHERE a=21573; UPDATE t2 SET c='eighty-three thousand three hundred seventy-two' WHERE a=21574; UPDATE t2 SET c='eighty-five thousand five hundred sixty-six' WHERE a=21575; UPDATE t2 SET c='fourteen thousand six hundred fourteen' WHERE a=21576; UPDATE t2 SET c='eighty-seven thousand nine hundred eighty-seven' WHERE a=21577; UPDATE t2 SET c='thirty-nine thousand nine hundred ten' WHERE a=21578; UPDATE t2 SET c='seventy-nine thousand seven hundred thirty-five' WHERE a=21579; UPDATE t2 SET c='ninety-two thousand three hundred thirty-four' WHERE a=21580; UPDATE t2 SET c='ninety-two thousand eight hundred ninety-four' WHERE a=21581; UPDATE t2 SET c='ninety-four thousand two hundred eighty-seven' WHERE a=21582; UPDATE t2 SET c='twenty-seven thousand six hundred sixty-seven' WHERE a=21583; UPDATE t2 SET c='twenty-one thousand four hundred twelve' WHERE a=21584; UPDATE t2 SET c='fifty-nine thousand four hundred twenty-three' WHERE a=21585; UPDATE t2 SET c='twenty-nine thousand two hundred thirty-two' WHERE a=21586; UPDATE t2 SET c='ninety-four thousand six hundred forty-four' WHERE a=21587; UPDATE t2 SET c='sixty thousand two hundred fifty' WHERE a=21588; UPDATE t2 SET c='twelve thousand six hundred eighteen' WHERE a=21589; UPDATE t2 SET c='eighty-three thousand one hundred seventy-one' WHERE a=21590; UPDATE t2 SET c='forty-nine thousand fifteen' WHERE a=21591; UPDATE t2 SET c='fifty-six thousand eight hundred seventy-seven' WHERE a=21592; UPDATE t2 SET c='twenty-two thousand one hundred forty-six' WHERE a=21593; UPDATE t2 SET c='ninety-five thousand one hundred forty-eight' WHERE a=21594; UPDATE t2 SET c='nine thousand nine hundred fifty-nine' WHERE a=21595; UPDATE t2 SET c='sixty-one thousand two hundred seventy-four' WHERE a=21596; UPDATE t2 SET c='forty-nine thousand two hundred seventy-six' WHERE a=21597; UPDATE t2 SET c='sixty-seven thousand seven hundred thirty-four' WHERE a=21598; UPDATE t2 SET c='sixteen thousand two hundred ninety-eight' WHERE a=21599; UPDATE t2 SET c='eighty-eight thousand two hundred eighty' WHERE a=21600; UPDATE t2 SET c='twenty-five thousand five hundred forty-two' WHERE a=21601; UPDATE t2 SET c='twenty-three thousand six hundred sixty-two' WHERE a=21602; UPDATE t2 SET c='eighty-three thousand one hundred ninety' WHERE a=21603; UPDATE t2 SET c='fifty-nine thousand two hundred seventy-four' WHERE a=21604; UPDATE t2 SET c='twenty-seven thousand five hundred twenty-six' WHERE a=21605; UPDATE t2 SET c='forty-two thousand nine hundred fifteen' WHERE a=21606; UPDATE t2 SET c='eighty-seven thousand five hundred thirty' WHERE a=21607; UPDATE t2 SET c='thirty-five thousand five hundred thirty-three' WHERE a=21608; UPDATE t2 SET c='ninety-six thousand eight hundred sixty-three' WHERE a=21609; UPDATE t2 SET c='sixty-eight thousand two hundred seventy-five' WHERE a=21610; UPDATE t2 SET c='forty thousand six hundred fourteen' WHERE a=21611; UPDATE t2 SET c='twenty-four thousand eight hundred thirty-nine' WHERE a=21612; UPDATE t2 SET c='fifty-six thousand forty-five' WHERE a=21613; UPDATE t2 SET c='twenty-nine thousand six hundred seventy-two' WHERE a=21614; UPDATE t2 SET c='eighty-one thousand six hundred ninety-five' WHERE a=21615; UPDATE t2 SET c='fourteen thousand seven hundred eighty-one' WHERE a=21616; UPDATE t2 SET c='fifty-six thousand one hundred ninety-one' WHERE a=21617; UPDATE t2 SET c='nine thousand four hundred seventy-eight' WHERE a=21618; UPDATE t2 SET c='forty-seven thousand seven hundred thirty-four' WHERE a=21619; UPDATE t2 SET c='eighty-six thousand fifteen' WHERE a=21620; UPDATE t2 SET c='thirteen thousand five hundred sixty-two' WHERE a=21621; UPDATE t2 SET c='forty-three thousand one hundred twenty-nine' WHERE a=21622; UPDATE t2 SET c='thirty-one thousand one hundred fifty-two' WHERE a=21623; UPDATE t2 SET c='fifteen thousand nine hundred forty-seven' WHERE a=21624; UPDATE t2 SET c='twenty thousand eight hundred eighty-five' WHERE a=21625; UPDATE t2 SET c='seventy-nine thousand fifty-seven' WHERE a=21626; UPDATE t2 SET c='sixty thousand nine hundred fifty-eight' WHERE a=21627; UPDATE t2 SET c='thirteen thousand five hundred five' WHERE a=21628; UPDATE t2 SET c='fifty-four thousand six hundred twenty-three' WHERE a=21629; UPDATE t2 SET c='sixty-four thousand twenty-two' WHERE a=21630; UPDATE t2 SET c='thirty-six thousand nine hundred forty' WHERE a=21631; UPDATE t2 SET c='ninety thousand five hundred nineteen' WHERE a=21632; UPDATE t2 SET c='seventy-seven thousand one hundred sixty-four' WHERE a=21633; UPDATE t2 SET c='seventy-nine thousand eighty-four' WHERE a=21634; UPDATE t2 SET c='twelve thousand two hundred thirty-nine' WHERE a=21635; UPDATE t2 SET c='thirty-one thousand sixty-seven' WHERE a=21636; UPDATE t2 SET c='eighty-five thousand eight hundred fifty-six' WHERE a=21637; UPDATE t2 SET c='fifty-six thousand eight hundred fifty' WHERE a=21638; UPDATE t2 SET c='twenty-nine thousand four hundred thirty-seven' WHERE a=21639; UPDATE t2 SET c='twenty-four thousand four hundred twenty' WHERE a=21640; UPDATE t2 SET c='ninety thousand six hundred fifty-six' WHERE a=21641; UPDATE t2 SET c='ninety-one thousand two hundred twenty-nine' WHERE a=21642; UPDATE t2 SET c='twenty thousand five hundred ninety-one' WHERE a=21643; UPDATE t2 SET c='forty-two thousand two hundred seventy' WHERE a=21644; UPDATE t2 SET c='sixty-nine thousand six hundred forty-three' WHERE a=21645; UPDATE t2 SET c='fifty-eight thousand six hundred ninety-nine' WHERE a=21646; UPDATE t2 SET c='fifty-one thousand two hundred ninety-four' WHERE a=21647; UPDATE t2 SET c='fifty-four thousand seven hundred sixty-five' WHERE a=21648; UPDATE t2 SET c='sixty-four thousand three hundred six' WHERE a=21649; UPDATE t2 SET c='three thousand three hundred eighty-four' WHERE a=21650; UPDATE t2 SET c='fifty-two thousand two hundred forty-one' WHERE a=21651; UPDATE t2 SET c='ninety-four thousand five hundred thirty-eight' WHERE a=21652; UPDATE t2 SET c='ninety thousand six hundred nineteen' WHERE a=21653; UPDATE t2 SET c='eighty-eight thousand nine hundred sixty' WHERE a=21654; UPDATE t2 SET c='twenty-nine thousand one hundred fifty-seven' WHERE a=21655; UPDATE t2 SET c='fifty-seven thousand six hundred sixty-seven' WHERE a=21656; UPDATE t2 SET c='fifty-nine thousand nine hundred nine' WHERE a=21657; UPDATE t2 SET c='thirty-eight thousand fifty-four' WHERE a=21658; UPDATE t2 SET c='sixty-seven thousand eight' WHERE a=21659; UPDATE t2 SET c='eighty-six thousand two hundred fifty-seven' WHERE a=21660; UPDATE t2 SET c='forty-two thousand one hundred sixty-seven' WHERE a=21661; UPDATE t2 SET c='forty-nine thousand three hundred fourteen' WHERE a=21662; UPDATE t2 SET c='ninety-one thousand three hundred ninety-four' WHERE a=21663; UPDATE t2 SET c='ninety-one thousand two hundred thirteen' WHERE a=21664; UPDATE t2 SET c='fifty-eight thousand eight hundred fifty-one' WHERE a=21665; UPDATE t2 SET c='fifty-one thousand fourteen' WHERE a=21666; UPDATE t2 SET c='seventy-seven thousand forty-three' WHERE a=21667; UPDATE t2 SET c='seven thousand one hundred ninety-nine' WHERE a=21668; UPDATE t2 SET c='sixty-seven thousand seven hundred five' WHERE a=21669; UPDATE t2 SET c='three thousand one hundred fifty-eight' WHERE a=21670; UPDATE t2 SET c='sixteen thousand one hundred sixty-two' WHERE a=21671; UPDATE t2 SET c='eighty-four thousand two hundred twenty' WHERE a=21672; UPDATE t2 SET c='three thousand eighty-seven' WHERE a=21673; UPDATE t2 SET c='seventy-six thousand seventy-two' WHERE a=21674; UPDATE t2 SET c='sixty-six thousand two hundred forty-five' WHERE a=21675; UPDATE t2 SET c='seventy-three thousand two hundred fifty-five' WHERE a=21676; UPDATE t2 SET c='sixty thousand four hundred seventy-one' WHERE a=21677; UPDATE t2 SET c='ninety-six thousand eight hundred thirteen' WHERE a=21678; UPDATE t2 SET c='seven hundred fourteen' WHERE a=21679; UPDATE t2 SET c='ninety thousand four hundred ninety-five' WHERE a=21680; UPDATE t2 SET c='seventeen thousand nine hundred eleven' WHERE a=21681; UPDATE t2 SET c='twenty-two thousand eight hundred twenty-two' WHERE a=21682; UPDATE t2 SET c='seventy-two thousand two hundred thirty-nine' WHERE a=21683; UPDATE t2 SET c='ninety-nine thousand forty-three' WHERE a=21684; UPDATE t2 SET c='ninety-four thousand fourteen' WHERE a=21685; UPDATE t2 SET c='four hundred fifty-six' WHERE a=21686; UPDATE t2 SET c='twenty-six thousand nine hundred seventy-seven' WHERE a=21687; UPDATE t2 SET c='ninety-six thousand four hundred eighty-five' WHERE a=21688; UPDATE t2 SET c='seventy-four thousand six hundred seventy-six' WHERE a=21689; UPDATE t2 SET c='thirty-six thousand nine hundred seventy-three' WHERE a=21690; UPDATE t2 SET c='ninety-seven thousand four hundred eighteen' WHERE a=21691; UPDATE t2 SET c='thirty-nine thousand six hundred one' WHERE a=21692; UPDATE t2 SET c='ninety-five thousand nine hundred sixty-three' WHERE a=21693; UPDATE t2 SET c='fifty-seven thousand seven hundred ninety-three' WHERE a=21694; UPDATE t2 SET c='ninety-five thousand nine hundred thirty-one' WHERE a=21695; UPDATE t2 SET c='seventy-eight thousand six hundred two' WHERE a=21696; UPDATE t2 SET c='forty-five thousand eighty-nine' WHERE a=21697; UPDATE t2 SET c='forty-eight thousand eight hundred thirty-five' WHERE a=21698; UPDATE t2 SET c='thirty thousand six hundred eighteen' WHERE a=21699; UPDATE t2 SET c='fifty-three thousand sixty-three' WHERE a=21700; UPDATE t2 SET c='twenty-five thousand two hundred sixty-one' WHERE a=21701; UPDATE t2 SET c='sixty thousand five hundred one' WHERE a=21702; UPDATE t2 SET c='twenty-three thousand four hundred seventy-six' WHERE a=21703; UPDATE t2 SET c='twenty-two thousand forty-two' WHERE a=21704; UPDATE t2 SET c='ninety-one thousand nine hundred thirty-five' WHERE a=21705; UPDATE t2 SET c='eleven thousand eight hundred twenty-three' WHERE a=21706; UPDATE t2 SET c='thirty-nine thousand one hundred eighty-six' WHERE a=21707; UPDATE t2 SET c='seventy-four thousand one hundred forty' WHERE a=21708; UPDATE t2 SET c='twenty thousand seven hundred fifteen' WHERE a=21709; UPDATE t2 SET c='ninety-seven thousand five hundred seventy-seven' WHERE a=21710; UPDATE t2 SET c='fifty-two thousand four hundred eighteen' WHERE a=21711; UPDATE t2 SET c='ninety-one thousand seven hundred forty-six' WHERE a=21712; UPDATE t2 SET c='eighty-eight thousand three hundred ninety-five' WHERE a=21713; UPDATE t2 SET c='fifty thousand four hundred eleven' WHERE a=21714; UPDATE t2 SET c='fifty-three thousand five hundred twenty-six' WHERE a=21715; UPDATE t2 SET c='ninety-seven thousand four hundred seventy-one' WHERE a=21716; UPDATE t2 SET c='eighty-five thousand ninety-four' WHERE a=21717; UPDATE t2 SET c='thirty-two thousand eight hundred ninety' WHERE a=21718; UPDATE t2 SET c='forty-five thousand nine hundred' WHERE a=21719; UPDATE t2 SET c='eighty-four thousand three hundred forty-four' WHERE a=21720; UPDATE t2 SET c='seventy-four thousand five hundred ninety-eight' WHERE a=21721; UPDATE t2 SET c='ninety-one thousand eight hundred eighty-five' WHERE a=21722; UPDATE t2 SET c='twenty-four thousand six hundred forty-two' WHERE a=21723; UPDATE t2 SET c='fifteen thousand three hundred eighteen' WHERE a=21724; UPDATE t2 SET c='thirty-five thousand twenty-three' WHERE a=21725; UPDATE t2 SET c='twenty-three thousand eight hundred eighty-one' WHERE a=21726; UPDATE t2 SET c='forty-seven thousand eighty' WHERE a=21727; UPDATE t2 SET c='sixty-six thousand three hundred' WHERE a=21728; UPDATE t2 SET c='eighteen thousand six hundred ninety-six' WHERE a=21729; UPDATE t2 SET c='sixty-five thousand seven hundred two' WHERE a=21730; UPDATE t2 SET c='nine thousand eight hundred thirty-nine' WHERE a=21731; UPDATE t2 SET c='eighty-six thousand seven hundred seventy' WHERE a=21732; UPDATE t2 SET c='fifty-three thousand four hundred sixty-six' WHERE a=21733; UPDATE t2 SET c='thirty-eight thousand eighty-three' WHERE a=21734; UPDATE t2 SET c='eighteen thousand one hundred sixty-three' WHERE a=21735; UPDATE t2 SET c='fifty-eight thousand nine hundred twenty' WHERE a=21736; UPDATE t2 SET c='forty-four thousand six hundred sixty-eight' WHERE a=21737; UPDATE t2 SET c='eighty-five thousand four hundred seventy-seven' WHERE a=21738; UPDATE t2 SET c='fifty-six thousand eight hundred seventy-seven' WHERE a=21739; UPDATE t2 SET c='fifty-seven thousand four hundred thirty-eight' WHERE a=21740; UPDATE t2 SET c='eighty thousand seven hundred eighteen' WHERE a=21741; UPDATE t2 SET c='three thousand one' WHERE a=21742; UPDATE t2 SET c='sixty-seven thousand two hundred seventy-one' WHERE a=21743; UPDATE t2 SET c='ninety-five thousand seventy-eight' WHERE a=21744; UPDATE t2 SET c='sixty-seven thousand seven hundred sixty-six' WHERE a=21745; UPDATE t2 SET c='seven hundred sixty-three' WHERE a=21746; UPDATE t2 SET c='sixty-five thousand nine hundred sixty' WHERE a=21747; UPDATE t2 SET c='seventy thousand eight hundred seventy-six' WHERE a=21748; UPDATE t2 SET c='seventy-six thousand two hundred fifty-five' WHERE a=21749; UPDATE t2 SET c='ninety-seven thousand eight hundred four' WHERE a=21750; UPDATE t2 SET c='ninety-three thousand ninety-four' WHERE a=21751; UPDATE t2 SET c='seventy-seven thousand six hundred sixty-four' WHERE a=21752; UPDATE t2 SET c='forty-one thousand six hundred thirty-seven' WHERE a=21753; UPDATE t2 SET c='forty thousand nine hundred twelve' WHERE a=21754; UPDATE t2 SET c='eighty thousand four hundred nineteen' WHERE a=21755; UPDATE t2 SET c='fifteen thousand nine hundred fifty-nine' WHERE a=21756; UPDATE t2 SET c='seventy-seven thousand four hundred ninety-four' WHERE a=21757; UPDATE t2 SET c='ninety-one thousand three hundred thirty-seven' WHERE a=21758; UPDATE t2 SET c='seventy-eight thousand two hundred eighty-four' WHERE a=21759; UPDATE t2 SET c='fifty-three thousand seven hundred ninety-nine' WHERE a=21760; UPDATE t2 SET c='seventy-seven thousand eighty' WHERE a=21761; UPDATE t2 SET c='eighty-six thousand two hundred sixty' WHERE a=21762; UPDATE t2 SET c='fifty-seven thousand four hundred thirty-five' WHERE a=21763; UPDATE t2 SET c='twenty-five thousand seven hundred twenty-nine' WHERE a=21764; UPDATE t2 SET c='sixty-four thousand seven hundred twenty-five' WHERE a=21765; UPDATE t2 SET c='eighty-five thousand eight hundred twenty-four' WHERE a=21766; UPDATE t2 SET c='four thousand six hundred fifteen' WHERE a=21767; UPDATE t2 SET c='ninety thousand eight hundred forty-two' WHERE a=21768; UPDATE t2 SET c='four thousand six hundred seventeen' WHERE a=21769; UPDATE t2 SET c='ninety-six thousand nine hundred twenty-seven' WHERE a=21770; UPDATE t2 SET c='thirty thousand nine hundred sixty-three' WHERE a=21771; UPDATE t2 SET c='seventy-nine thousand two hundred twelve' WHERE a=21772; UPDATE t2 SET c='fifty-four thousand eight hundred twenty-one' WHERE a=21773; UPDATE t2 SET c='sixty-eight thousand seven hundred fifty-four' WHERE a=21774; UPDATE t2 SET c='seventy-five thousand one hundred thirty-nine' WHERE a=21775; UPDATE t2 SET c='twenty thousand three hundred' WHERE a=21776; UPDATE t2 SET c='sixty-two thousand six hundred forty-seven' WHERE a=21777; UPDATE t2 SET c='thirty-seven thousand eight hundred fifty-six' WHERE a=21778; UPDATE t2 SET c='twenty thousand three hundred sixteen' WHERE a=21779; UPDATE t2 SET c='fifty-seven thousand four hundred seventy-five' WHERE a=21780; UPDATE t2 SET c='fifty thousand eight hundred seventy-one' WHERE a=21781; UPDATE t2 SET c='twenty thousand four hundred eighty-one' WHERE a=21782; UPDATE t2 SET c='nine thousand eight hundred one' WHERE a=21783; UPDATE t2 SET c='ten thousand one hundred fifty-eight' WHERE a=21784; UPDATE t2 SET c='nineteen thousand eight hundred thirty-eight' WHERE a=21785; UPDATE t2 SET c='one thousand nine hundred twenty-five' WHERE a=21786; UPDATE t2 SET c='seventy-six thousand two hundred seventy-five' WHERE a=21787; UPDATE t2 SET c='twenty-five thousand six hundred fifty-nine' WHERE a=21788; UPDATE t2 SET c='thirty-three thousand seven hundred ninety-one' WHERE a=21789; UPDATE t2 SET c='forty-four thousand one hundred twenty-two' WHERE a=21790; UPDATE t2 SET c='forty-eight thousand eight hundred seventy-eight' WHERE a=21791; UPDATE t2 SET c='ninety thousand seven hundred seventy-two' WHERE a=21792; UPDATE t2 SET c='sixty-nine thousand one hundred twenty-six' WHERE a=21793; UPDATE t2 SET c='fourteen thousand four hundred eighty-one' WHERE a=21794; UPDATE t2 SET c='sixty-one thousand twenty-five' WHERE a=21795; UPDATE t2 SET c='six thousand seven hundred sixty-two' WHERE a=21796; UPDATE t2 SET c='forty-five thousand six hundred sixty-three' WHERE a=21797; UPDATE t2 SET c='forty-three thousand seven hundred seventy-three' WHERE a=21798; UPDATE t2 SET c='sixty-two thousand sixty-seven' WHERE a=21799; UPDATE t2 SET c='ninety-nine thousand nine hundred thirty-seven' WHERE a=21800; UPDATE t2 SET c='eighty-four thousand seven hundred thirty-nine' WHERE a=21801; UPDATE t2 SET c='seventy-six thousand seven hundred five' WHERE a=21802; UPDATE t2 SET c='forty thousand eight hundred twenty-five' WHERE a=21803; UPDATE t2 SET c='twelve thousand two hundred forty-eight' WHERE a=21804; UPDATE t2 SET c='thirty-three thousand two hundred sixty-eight' WHERE a=21805; UPDATE t2 SET c='fifty-six thousand three hundred twenty-two' WHERE a=21806; UPDATE t2 SET c='seventy-eight thousand two hundred two' WHERE a=21807; UPDATE t2 SET c='fifty-five thousand five hundred twenty-three' WHERE a=21808; UPDATE t2 SET c='three thousand eight hundred twenty-five' WHERE a=21809; UPDATE t2 SET c='forty-four thousand eight hundred twenty-nine' WHERE a=21810; UPDATE t2 SET c='fifty-eight thousand eight hundred eighty-four' WHERE a=21811; UPDATE t2 SET c='thirty-nine thousand three hundred sixty-three' WHERE a=21812; UPDATE t2 SET c='fifty-one thousand six hundred fifty-seven' WHERE a=21813; UPDATE t2 SET c='twenty-six thousand four hundred thirteen' WHERE a=21814; UPDATE t2 SET c='ninety-three thousand one hundred fifty-two' WHERE a=21815; UPDATE t2 SET c='twenty-two thousand eight hundred eighty-five' WHERE a=21816; UPDATE t2 SET c='seven thousand nine hundred seventy-four' WHERE a=21817; UPDATE t2 SET c='seventy-two thousand five hundred thirteen' WHERE a=21818; UPDATE t2 SET c='four hundred sixty-eight' WHERE a=21819; UPDATE t2 SET c='sixty-nine thousand one hundred thirty-six' WHERE a=21820; UPDATE t2 SET c='eighty-nine thousand six hundred eighty' WHERE a=21821; UPDATE t2 SET c='one thousand seven hundred forty-five' WHERE a=21822; UPDATE t2 SET c='four thousand three hundred forty-four' WHERE a=21823; UPDATE t2 SET c='fifty-nine thousand nine hundred eighty-one' WHERE a=21824; UPDATE t2 SET c='three thousand one hundred seventeen' WHERE a=21825; UPDATE t2 SET c='ninety-seven thousand eight hundred ninety-two' WHERE a=21826; UPDATE t2 SET c='thirty-three thousand six hundred fifty-three' WHERE a=21827; UPDATE t2 SET c='twenty thousand two hundred seventy-nine' WHERE a=21828; UPDATE t2 SET c='ninety-five thousand ninety-nine' WHERE a=21829; UPDATE t2 SET c='fifty-one thousand four hundred fifty-five' WHERE a=21830; UPDATE t2 SET c='sixty-nine thousand eight hundred' WHERE a=21831; UPDATE t2 SET c='six thousand eight hundred eighty-seven' WHERE a=21832; UPDATE t2 SET c='fifteen thousand seven hundred thirty-seven' WHERE a=21833; UPDATE t2 SET c='thirty-six thousand nine hundred' WHERE a=21834; UPDATE t2 SET c='fifty-nine thousand five hundred forty-one' WHERE a=21835; UPDATE t2 SET c='twenty-four thousand two hundred sixty-seven' WHERE a=21836; UPDATE t2 SET c='ninety-seven thousand four hundred sixty-one' WHERE a=21837; UPDATE t2 SET c='ninety-one thousand five hundred thirty-nine' WHERE a=21838; UPDATE t2 SET c='twenty-six thousand six hundred seven' WHERE a=21839; UPDATE t2 SET c='nineteen thousand five hundred thirty-five' WHERE a=21840; UPDATE t2 SET c='seventy-two thousand two hundred fifty-two' WHERE a=21841; UPDATE t2 SET c='nine hundred seventy-nine' WHERE a=21842; UPDATE t2 SET c='eighty-six thousand six hundred four' WHERE a=21843; UPDATE t2 SET c='sixty-six thousand four hundred forty-nine' WHERE a=21844; UPDATE t2 SET c='fifty-nine thousand five hundred ninety-nine' WHERE a=21845; UPDATE t2 SET c='eighty-four thousand nine hundred thirty' WHERE a=21846; UPDATE t2 SET c='seventy-eight thousand nine hundred ninety-six' WHERE a=21847; UPDATE t2 SET c='fifty-seven thousand three hundred fifty-two' WHERE a=21848; UPDATE t2 SET c='eighty-seven thousand four hundred seventy-one' WHERE a=21849; UPDATE t2 SET c='sixty-six thousand four hundred eighty' WHERE a=21850; UPDATE t2 SET c='thirty-five thousand five hundred eighty-one' WHERE a=21851; UPDATE t2 SET c='twenty-seven thousand seventy-five' WHERE a=21852; UPDATE t2 SET c='seventy-one thousand four hundred three' WHERE a=21853; UPDATE t2 SET c='eighty-eight thousand seven hundred sixty' WHERE a=21854; UPDATE t2 SET c='sixty-five thousand one hundred fifty-three' WHERE a=21855; UPDATE t2 SET c='fifteen thousand five hundred thirty-nine' WHERE a=21856; UPDATE t2 SET c='forty thousand seven hundred two' WHERE a=21857; UPDATE t2 SET c='thirty-seven thousand seven hundred twenty-six' WHERE a=21858; UPDATE t2 SET c='two thousand six hundred sixty-eight' WHERE a=21859; UPDATE t2 SET c='twenty-three thousand three hundred eighty-nine' WHERE a=21860; UPDATE t2 SET c='twenty-seven thousand twenty-three' WHERE a=21861; UPDATE t2 SET c='forty-one thousand six hundred twenty-seven' WHERE a=21862; UPDATE t2 SET c='sixty-three thousand six hundred eighty-nine' WHERE a=21863; UPDATE t2 SET c='seventy-two thousand one hundred eight' WHERE a=21864; UPDATE t2 SET c='eighty-two thousand six hundred six' WHERE a=21865; UPDATE t2 SET c='sixteen thousand five hundred twenty-nine' WHERE a=21866; UPDATE t2 SET c='sixty-eight thousand eight hundred eighty-two' WHERE a=21867; UPDATE t2 SET c='forty thousand six hundred seventy-seven' WHERE a=21868; UPDATE t2 SET c='nine thousand five hundred fourteen' WHERE a=21869; UPDATE t2 SET c='seventy-four thousand five hundred fifty-six' WHERE a=21870; UPDATE t2 SET c='forty-nine thousand two hundred eighteen' WHERE a=21871; UPDATE t2 SET c='ten thousand eight hundred thirty-three' WHERE a=21872; UPDATE t2 SET c='ten thousand three hundred twenty' WHERE a=21873; UPDATE t2 SET c='twenty-three thousand six hundred ninety-nine' WHERE a=21874; UPDATE t2 SET c='fifty-two thousand one hundred eighty-four' WHERE a=21875; UPDATE t2 SET c='seventy-one thousand two hundred ten' WHERE a=21876; UPDATE t2 SET c='six hundred forty-eight' WHERE a=21877; UPDATE t2 SET c='ninety-eight thousand seven hundred fifty' WHERE a=21878; UPDATE t2 SET c='fifty-three thousand seven hundred eighty-six' WHERE a=21879; UPDATE t2 SET c='seventy-one thousand nine hundred ninety-five' WHERE a=21880; UPDATE t2 SET c='forty-four thousand seven hundred seventy-one' WHERE a=21881; UPDATE t2 SET c='seventy-three thousand eight hundred seventy-six' WHERE a=21882; UPDATE t2 SET c='eighty-six thousand seven hundred thirty-one' WHERE a=21883; UPDATE t2 SET c='ninety-four thousand five hundred ten' WHERE a=21884; UPDATE t2 SET c='thirty-five thousand six hundred sixty-six' WHERE a=21885; UPDATE t2 SET c='fifty-nine thousand five hundred sixty-one' WHERE a=21886; UPDATE t2 SET c='ninety-eight thousand eight hundred' WHERE a=21887; UPDATE t2 SET c='thirteen thousand seven hundred ninety-five' WHERE a=21888; UPDATE t2 SET c='eighty-four thousand five hundred sixty-five' WHERE a=21889; UPDATE t2 SET c='ninety-one thousand three hundred sixty-nine' WHERE a=21890; UPDATE t2 SET c='eighty-three thousand three hundred eighty-one' WHERE a=21891; UPDATE t2 SET c='fifty-four thousand eight hundred ninety-nine' WHERE a=21892; UPDATE t2 SET c='one thousand nine hundred sixty-seven' WHERE a=21893; UPDATE t2 SET c='ten thousand two hundred ninety-five' WHERE a=21894; UPDATE t2 SET c='seventy thousand nine hundred seventy-four' WHERE a=21895; UPDATE t2 SET c='fifty-five thousand nine hundred twenty-five' WHERE a=21896; UPDATE t2 SET c='twenty-two thousand three hundred fifty' WHERE a=21897; UPDATE t2 SET c='sixty-two thousand seven hundred thirty-six' WHERE a=21898; UPDATE t2 SET c='twenty-two thousand four hundred sixty-eight' WHERE a=21899; UPDATE t2 SET c='ninety-eight thousand seventy-five' WHERE a=21900; UPDATE t2 SET c='sixty-one thousand six hundred two' WHERE a=21901; UPDATE t2 SET c='five thousand five hundred thirty-one' WHERE a=21902; UPDATE t2 SET c='thirty-one thousand three hundred eighty' WHERE a=21903; UPDATE t2 SET c='twenty thousand eight hundred ninety-seven' WHERE a=21904; UPDATE t2 SET c='thirty-six thousand five hundred forty-one' WHERE a=21905; UPDATE t2 SET c='twenty-three thousand six hundred twenty-two' WHERE a=21906; UPDATE t2 SET c='ninety-one thousand eight hundred thirty-seven' WHERE a=21907; UPDATE t2 SET c='ninety-one thousand eight hundred fifty-four' WHERE a=21908; UPDATE t2 SET c='ninety-eight thousand seven hundred fifty-four' WHERE a=21909; UPDATE t2 SET c='nine thousand four hundred sixty-eight' WHERE a=21910; UPDATE t2 SET c='nine thousand nine hundred seventeen' WHERE a=21911; UPDATE t2 SET c='forty-six thousand three hundred ninety-eight' WHERE a=21912; UPDATE t2 SET c='sixty-two thousand four hundred ninety-three' WHERE a=21913; UPDATE t2 SET c='thirty-eight thousand three hundred fifty-four' WHERE a=21914; UPDATE t2 SET c='ninety-one thousand eight hundred thirty-four' WHERE a=21915; UPDATE t2 SET c='thirty-six thousand five hundred two' WHERE a=21916; UPDATE t2 SET c='twenty thousand six hundred ninety' WHERE a=21917; UPDATE t2 SET c='eighteen thousand three hundred sixteen' WHERE a=21918; UPDATE t2 SET c='sixty-three thousand three hundred forty-two' WHERE a=21919; UPDATE t2 SET c='forty-two thousand nine hundred seventy' WHERE a=21920; UPDATE t2 SET c='eighty-two thousand seven hundred twenty-seven' WHERE a=21921; UPDATE t2 SET c='twenty thousand two hundred eighty' WHERE a=21922; UPDATE t2 SET c='ninety-one thousand nine hundred seventy-four' WHERE a=21923; UPDATE t2 SET c='seven thousand eight hundred nineteen' WHERE a=21924; UPDATE t2 SET c='forty-five thousand seven hundred sixty-nine' WHERE a=21925; UPDATE t2 SET c='eighty-two thousand two hundred ninety-five' WHERE a=21926; UPDATE t2 SET c='forty-three thousand three hundred twelve' WHERE a=21927; UPDATE t2 SET c='ninety thousand eight hundred twenty-seven' WHERE a=21928; UPDATE t2 SET c='forty-six thousand two hundred fifty-two' WHERE a=21929; UPDATE t2 SET c='seventy-eight thousand three hundred seven' WHERE a=21930; UPDATE t2 SET c='seventy-three thousand two hundred thirty-one' WHERE a=21931; UPDATE t2 SET c='fifty thousand one hundred fourteen' WHERE a=21932; UPDATE t2 SET c='seventeen thousand ninety-two' WHERE a=21933; UPDATE t2 SET c='sixty thousand four hundred nineteen' WHERE a=21934; UPDATE t2 SET c='sixty-four thousand two hundred nineteen' WHERE a=21935; UPDATE t2 SET c='ninety-eight thousand four hundred three' WHERE a=21936; UPDATE t2 SET c='thirty-six thousand eight hundred ninety-two' WHERE a=21937; UPDATE t2 SET c='ninety-four thousand one hundred sixteen' WHERE a=21938; UPDATE t2 SET c='sixty-five thousand five hundred seventy' WHERE a=21939; UPDATE t2 SET c='fifty thousand ninety-one' WHERE a=21940; UPDATE t2 SET c='three thousand nine hundred five' WHERE a=21941; UPDATE t2 SET c='eighty-one thousand eight hundred thirty-eight' WHERE a=21942; UPDATE t2 SET c='ten thousand four hundred ninety' WHERE a=21943; UPDATE t2 SET c='forty-seven thousand twenty' WHERE a=21944; UPDATE t2 SET c='five thousand two hundred ninety-eight' WHERE a=21945; UPDATE t2 SET c='seventy-seven thousand nine hundred seven' WHERE a=21946; UPDATE t2 SET c='seventy-nine thousand six hundred nine' WHERE a=21947; UPDATE t2 SET c='sixty-seven thousand eight hundred fifty-one' WHERE a=21948; UPDATE t2 SET c='seventy-six thousand sixteen' WHERE a=21949; UPDATE t2 SET c='sixty thousand two hundred eight' WHERE a=21950; UPDATE t2 SET c='seven thousand five hundred seventy-eight' WHERE a=21951; UPDATE t2 SET c='ninety-two thousand seven hundred thirteen' WHERE a=21952; UPDATE t2 SET c='thirty-four thousand eight' WHERE a=21953; UPDATE t2 SET c='eighteen thousand seven hundred one' WHERE a=21954; UPDATE t2 SET c='forty-nine thousand seven hundred seventy-nine' WHERE a=21955; UPDATE t2 SET c='fifty-three thousand three hundred twenty-three' WHERE a=21956; UPDATE t2 SET c='ninety-three thousand three hundred forty-two' WHERE a=21957; UPDATE t2 SET c='ninety-three thousand two hundred thirteen' WHERE a=21958; UPDATE t2 SET c='twenty-three thousand ninety-five' WHERE a=21959; UPDATE t2 SET c='twenty-six thousand eight hundred ninety-six' WHERE a=21960; UPDATE t2 SET c='ninety-two thousand three hundred ninety-three' WHERE a=21961; UPDATE t2 SET c='eighty-three thousand twenty-seven' WHERE a=21962; UPDATE t2 SET c='seventy-one thousand two hundred thirty-six' WHERE a=21963; UPDATE t2 SET c='three thousand seven hundred thirty-two' WHERE a=21964; UPDATE t2 SET c='nine thousand two hundred twenty-nine' WHERE a=21965; UPDATE t2 SET c='seventy-two thousand eight hundred twenty-four' WHERE a=21966; UPDATE t2 SET c='forty-four thousand forty-five' WHERE a=21967; UPDATE t2 SET c='thirty-six thousand seven hundred sixty-one' WHERE a=21968; UPDATE t2 SET c='ninety-six thousand three hundred twenty-nine' WHERE a=21969; UPDATE t2 SET c='twenty-nine thousand four hundred ninety-two' WHERE a=21970; UPDATE t2 SET c='forty-eight thousand two hundred twelve' WHERE a=21971; UPDATE t2 SET c='seventy-eight thousand five hundred sixty-four' WHERE a=21972; UPDATE t2 SET c='fifty-eight thousand five hundred fifty' WHERE a=21973; UPDATE t2 SET c='sixty-six thousand eight hundred fifty-one' WHERE a=21974; UPDATE t2 SET c='sixty-three thousand eight hundred eighty-eight' WHERE a=21975; UPDATE t2 SET c='forty-nine thousand five hundred ninety-nine' WHERE a=21976; UPDATE t2 SET c='fifty-seven thousand one hundred forty-two' WHERE a=21977; UPDATE t2 SET c='eighteen thousand five hundred fifty-eight' WHERE a=21978; UPDATE t2 SET c='fifty-nine thousand two hundred thirty-seven' WHERE a=21979; UPDATE t2 SET c='sixty-four thousand four hundred eleven' WHERE a=21980; UPDATE t2 SET c='thirty-nine thousand three hundred seventy-seven' WHERE a=21981; UPDATE t2 SET c='twenty-three thousand eight hundred seventy-three' WHERE a=21982; UPDATE t2 SET c='sixty-four thousand seven hundred seventy-one' WHERE a=21983; UPDATE t2 SET c='ninety-nine thousand three hundred twenty-nine' WHERE a=21984; UPDATE t2 SET c='thirty-eight thousand one hundred ninety-six' WHERE a=21985; UPDATE t2 SET c='thirty-two thousand eight hundred fifty-two' WHERE a=21986; UPDATE t2 SET c='eighty thousand five hundred forty-eight' WHERE a=21987; UPDATE t2 SET c='seventy-eight thousand five hundred fifty-four' WHERE a=21988; UPDATE t2 SET c='forty-three thousand six hundred twenty-three' WHERE a=21989; UPDATE t2 SET c='thirty-two thousand two hundred eighty-five' WHERE a=21990; UPDATE t2 SET c='eighty-seven thousand one hundred seventeen' WHERE a=21991; UPDATE t2 SET c='sixteen thousand nine hundred twenty' WHERE a=21992; UPDATE t2 SET c='fourteen thousand two hundred nineteen' WHERE a=21993; UPDATE t2 SET c='sixty-four thousand two hundred forty-one' WHERE a=21994; UPDATE t2 SET c='sixty-six thousand four hundred ninety-four' WHERE a=21995; UPDATE t2 SET c='eighty-four thousand four hundred three' WHERE a=21996; UPDATE t2 SET c='forty-four thousand eight hundred seventy-eight' WHERE a=21997; UPDATE t2 SET c='ninety-nine thousand four hundred thirty' WHERE a=21998; UPDATE t2 SET c='forty thousand ninety-seven' WHERE a=21999; UPDATE t2 SET c='fifty-two thousand forty-six' WHERE a=22000; UPDATE t2 SET c='ninety-one thousand nine hundred fifty-two' WHERE a=22001; UPDATE t2 SET c='thirty-three thousand fifty-three' WHERE a=22002; UPDATE t2 SET c='twenty-five thousand eight hundred ninety-four' WHERE a=22003; UPDATE t2 SET c='thirty-five thousand five hundred forty-two' WHERE a=22004; UPDATE t2 SET c='seventy thousand seven hundred seventy' WHERE a=22005; UPDATE t2 SET c='nine thousand seven hundred eighteen' WHERE a=22006; UPDATE t2 SET c='forty-four thousand two hundred sixteen' WHERE a=22007; UPDATE t2 SET c='twenty-nine thousand four hundred ninety-five' WHERE a=22008; UPDATE t2 SET c='twenty-eight thousand six hundred seventy-five' WHERE a=22009; UPDATE t2 SET c='six thousand eight hundred sixty-five' WHERE a=22010; UPDATE t2 SET c='seventeen thousand six hundred seventy-eight' WHERE a=22011; UPDATE t2 SET c='fifty thousand eight hundred seventy-one' WHERE a=22012; UPDATE t2 SET c='fifty-seven thousand four hundred eight' WHERE a=22013; UPDATE t2 SET c='four hundred twenty-five' WHERE a=22014; UPDATE t2 SET c='sixty-five thousand six' WHERE a=22015; UPDATE t2 SET c='twenty-four thousand fifty-two' WHERE a=22016; UPDATE t2 SET c='one thousand eight hundred' WHERE a=22017; UPDATE t2 SET c='thirteen thousand one hundred sixty-five' WHERE a=22018; UPDATE t2 SET c='eighty-eight thousand six hundred sixty-three' WHERE a=22019; UPDATE t2 SET c='nine thousand nine hundred ninety-two' WHERE a=22020; UPDATE t2 SET c='fifty-seven thousand four hundred fifty-six' WHERE a=22021; UPDATE t2 SET c='eighty-two thousand eight hundred seventy-nine' WHERE a=22022; UPDATE t2 SET c='eighty-eight thousand five hundred seventy-two' WHERE a=22023; UPDATE t2 SET c='ninety-four thousand four hundred eighty' WHERE a=22024; UPDATE t2 SET c='twenty thousand one hundred fifty-eight' WHERE a=22025; UPDATE t2 SET c='thirteen thousand one hundred forty-four' WHERE a=22026; UPDATE t2 SET c='thirty-six thousand eight hundred fifty-seven' WHERE a=22027; UPDATE t2 SET c='sixty-nine thousand three hundred ninety-eight' WHERE a=22028; UPDATE t2 SET c='sixty-six thousand four hundred forty-two' WHERE a=22029; UPDATE t2 SET c='fifty-three thousand eight hundred ninety-eight' WHERE a=22030; UPDATE t2 SET c='twenty-one thousand one hundred eighty-two' WHERE a=22031; UPDATE t2 SET c='thirty-six thousand five hundred fifteen' WHERE a=22032; UPDATE t2 SET c='seventy-four thousand eight hundred twenty-nine' WHERE a=22033; UPDATE t2 SET c='seventy-three thousand six hundred seventy-four' WHERE a=22034; UPDATE t2 SET c='seventeen thousand six hundred twenty-three' WHERE a=22035; UPDATE t2 SET c='sixty-seven thousand five hundred fifty-two' WHERE a=22036; UPDATE t2 SET c='six thousand two hundred forty-five' WHERE a=22037; UPDATE t2 SET c='one hundred five' WHERE a=22038; UPDATE t2 SET c='ninety-two thousand sixty-five' WHERE a=22039; UPDATE t2 SET c='sixty-two thousand eight hundred ninety-five' WHERE a=22040; UPDATE t2 SET c='sixty-three thousand four hundred eighty-three' WHERE a=22041; UPDATE t2 SET c='twenty-eight thousand seven hundred forty' WHERE a=22042; UPDATE t2 SET c='sixty-one thousand eight hundred sixty-five' WHERE a=22043; UPDATE t2 SET c='seventy thousand four hundred thirty' WHERE a=22044; UPDATE t2 SET c='twenty-eight thousand six hundred seventy-nine' WHERE a=22045; UPDATE t2 SET c='nineteen thousand two hundred ninety' WHERE a=22046; UPDATE t2 SET c='eighty-two thousand two hundred fifty-two' WHERE a=22047; UPDATE t2 SET c='twenty-eight thousand three hundred forty' WHERE a=22048; UPDATE t2 SET c='fifty-one thousand six hundred eighty-eight' WHERE a=22049; UPDATE t2 SET c='twelve thousand seven hundred ninety' WHERE a=22050; UPDATE t2 SET c='forty-five thousand four hundred thirty-eight' WHERE a=22051; UPDATE t2 SET c='twenty-four thousand four hundred eighty-two' WHERE a=22052; UPDATE t2 SET c='forty-two thousand eight hundred fifty-four' WHERE a=22053; UPDATE t2 SET c='forty-seven thousand four hundred eighty-two' WHERE a=22054; UPDATE t2 SET c='ninety-seven thousand five hundred six' WHERE a=22055; UPDATE t2 SET c='seventy thousand nine hundred ninety-seven' WHERE a=22056; UPDATE t2 SET c='ninety-seven thousand seven hundred sixty-one' WHERE a=22057; UPDATE t2 SET c='twenty-six thousand nine hundred fifty-six' WHERE a=22058; UPDATE t2 SET c='thirty-nine thousand one hundred eighty-six' WHERE a=22059; UPDATE t2 SET c='sixteen thousand two hundred two' WHERE a=22060; UPDATE t2 SET c='sixty-nine thousand eight hundred forty-two' WHERE a=22061; UPDATE t2 SET c='eighty-four thousand eight hundred forty' WHERE a=22062; UPDATE t2 SET c='four thousand seven hundred forty' WHERE a=22063; UPDATE t2 SET c='forty thousand four hundred seventy' WHERE a=22064; UPDATE t2 SET c='sixty-seven thousand three hundred thirty' WHERE a=22065; UPDATE t2 SET c='seventy-nine thousand four hundred fifty-seven' WHERE a=22066; UPDATE t2 SET c='twenty thousand four hundred eighty' WHERE a=22067; UPDATE t2 SET c='ten thousand four hundred ninety-three' WHERE a=22068; UPDATE t2 SET c='forty-eight thousand four hundred ninety' WHERE a=22069; UPDATE t2 SET c='seventy-one thousand seven hundred sixty' WHERE a=22070; UPDATE t2 SET c='seventy-three thousand nine hundred one' WHERE a=22071; UPDATE t2 SET c='thirteen thousand two hundred nineteen' WHERE a=22072; UPDATE t2 SET c='fifty-seven thousand five hundred ninety-four' WHERE a=22073; UPDATE t2 SET c='sixty-one thousand seven hundred eighty-eight' WHERE a=22074; UPDATE t2 SET c='nineteen thousand one hundred sixty-eight' WHERE a=22075; UPDATE t2 SET c='sixty-three thousand two hundred eighty-nine' WHERE a=22076; UPDATE t2 SET c='fifty thousand five hundred sixty-eight' WHERE a=22077; UPDATE t2 SET c='seventy-four thousand sixty-eight' WHERE a=22078; UPDATE t2 SET c='ninety-two thousand five hundred seventy-six' WHERE a=22079; UPDATE t2 SET c='fifty-nine thousand four hundred eighty-five' WHERE a=22080; UPDATE t2 SET c='sixty-one thousand five hundred eighty-five' WHERE a=22081; UPDATE t2 SET c='eighty-two thousand six hundred seventy-eight' WHERE a=22082; UPDATE t2 SET c='one thousand sixty-one' WHERE a=22083; UPDATE t2 SET c='thirty-nine thousand four hundred seven' WHERE a=22084; UPDATE t2 SET c='twenty-two thousand six hundred seventy-seven' WHERE a=22085; UPDATE t2 SET c='fifty-seven thousand seven hundred forty-five' WHERE a=22086; UPDATE t2 SET c='eighty-seven thousand two hundred one' WHERE a=22087; UPDATE t2 SET c='ninety-one thousand nine hundred seventy-nine' WHERE a=22088; UPDATE t2 SET c='eighty-six thousand eight hundred ninety-seven' WHERE a=22089; UPDATE t2 SET c='twenty-six thousand two hundred eighty-seven' WHERE a=22090; UPDATE t2 SET c='twenty-one thousand six hundred six' WHERE a=22091; UPDATE t2 SET c='sixty-five thousand three hundred twenty-one' WHERE a=22092; UPDATE t2 SET c='sixty-three thousand five hundred thirty' WHERE a=22093; UPDATE t2 SET c='forty-two thousand seven hundred sixty-one' WHERE a=22094; UPDATE t2 SET c='seventy-eight thousand eight hundred eighty-three' WHERE a=22095; UPDATE t2 SET c='seventy-five thousand two hundred ninety-two' WHERE a=22096; UPDATE t2 SET c='fifty-six thousand three hundred eighty-three' WHERE a=22097; UPDATE t2 SET c='forty-six thousand six hundred sixty-two' WHERE a=22098; UPDATE t2 SET c='eighty-four thousand nine hundred sixty-seven' WHERE a=22099; UPDATE t2 SET c='eighty-eight thousand six hundred sixty-six' WHERE a=22100; UPDATE t2 SET c='twenty-eight thousand three hundred' WHERE a=22101; UPDATE t2 SET c='seventy-five thousand four hundred sixty-two' WHERE a=22102; UPDATE t2 SET c='sixty-nine thousand four hundred sixty' WHERE a=22103; UPDATE t2 SET c='seventy-one thousand two hundred eighty-six' WHERE a=22104; UPDATE t2 SET c='sixty-five thousand five hundred sixty-seven' WHERE a=22105; UPDATE t2 SET c='twenty-four thousand eighty-five' WHERE a=22106; UPDATE t2 SET c='ninety-seven thousand two hundred twelve' WHERE a=22107; UPDATE t2 SET c='sixty-seven thousand six hundred thirty-five' WHERE a=22108; UPDATE t2 SET c='three thousand eight hundred twenty-three' WHERE a=22109; UPDATE t2 SET c='fifty-three thousand six hundred thirty' WHERE a=22110; UPDATE t2 SET c='thirty-four thousand four hundred seventy-one' WHERE a=22111; UPDATE t2 SET c='thirty-three thousand six hundred seventy-seven' WHERE a=22112; UPDATE t2 SET c='forty thousand seven hundred fifty-two' WHERE a=22113; UPDATE t2 SET c='two thousand eight hundred eighty' WHERE a=22114; UPDATE t2 SET c='ninety-five thousand five hundred sixty' WHERE a=22115; UPDATE t2 SET c='six hundred seventy-four' WHERE a=22116; UPDATE t2 SET c='seventy-four thousand four hundred thirty-four' WHERE a=22117; UPDATE t2 SET c='fifty-two thousand five hundred twenty-three' WHERE a=22118; UPDATE t2 SET c='ninety-four thousand seven hundred seventy-nine' WHERE a=22119; UPDATE t2 SET c='eight thousand thirty-nine' WHERE a=22120; UPDATE t2 SET c='sixteen thousand six hundred fifty-eight' WHERE a=22121; UPDATE t2 SET c='fifty-one thousand one hundred twenty-two' WHERE a=22122; UPDATE t2 SET c='forty-nine thousand one hundred fifty-three' WHERE a=22123; UPDATE t2 SET c='eighty-nine thousand eight hundred fifty-three' WHERE a=22124; UPDATE t2 SET c='fifty-two thousand nine hundred forty-five' WHERE a=22125; UPDATE t2 SET c='ninety-nine thousand two hundred fourteen' WHERE a=22126; UPDATE t2 SET c='sixty-eight thousand three hundred twenty-one' WHERE a=22127; UPDATE t2 SET c='one hundred seven' WHERE a=22128; UPDATE t2 SET c='thirty-two thousand four hundred thirty-six' WHERE a=22129; UPDATE t2 SET c='eleven thousand eight hundred eighty-two' WHERE a=22130; UPDATE t2 SET c='seventy-one thousand three hundred sixteen' WHERE a=22131; UPDATE t2 SET c='seventy-three thousand six hundred eighteen' WHERE a=22132; UPDATE t2 SET c='sixty-four thousand nine hundred ninety' WHERE a=22133; UPDATE t2 SET c='ninety-seven thousand eight hundred ninety-four' WHERE a=22134; UPDATE t2 SET c='eighty-eight thousand nine hundred ninety-eight' WHERE a=22135; UPDATE t2 SET c='seventeen thousand four hundred seventy-eight' WHERE a=22136; UPDATE t2 SET c='ninety-seven thousand seventy-two' WHERE a=22137; UPDATE t2 SET c='ninety-four thousand nine hundred one' WHERE a=22138; UPDATE t2 SET c='three thousand three hundred forty-six' WHERE a=22139; UPDATE t2 SET c='nine thousand two hundred seventy-five' WHERE a=22140; UPDATE t2 SET c='sixty-eight thousand one hundred forty-six' WHERE a=22141; UPDATE t2 SET c='forty-one thousand two hundred seventy-seven' WHERE a=22142; UPDATE t2 SET c='forty thousand four hundred six' WHERE a=22143; UPDATE t2 SET c='thirty-five thousand eight hundred eighty-one' WHERE a=22144; UPDATE t2 SET c='eighty-eight thousand seven hundred sixty-six' WHERE a=22145; UPDATE t2 SET c='forty-seven thousand two hundred ninety-nine' WHERE a=22146; UPDATE t2 SET c='sixty-six thousand nine hundred forty-eight' WHERE a=22147; UPDATE t2 SET c='eighty-eight thousand one hundred fifty-seven' WHERE a=22148; UPDATE t2 SET c='sixty-three thousand eight hundred three' WHERE a=22149; UPDATE t2 SET c='eighty-six thousand eight hundred twenty-five' WHERE a=22150; UPDATE t2 SET c='four thousand eight hundred ninety-four' WHERE a=22151; UPDATE t2 SET c='forty-nine thousand six hundred seventy-three' WHERE a=22152; UPDATE t2 SET c='four thousand two hundred eighty-four' WHERE a=22153; UPDATE t2 SET c='twenty-one thousand five hundred seventy-eight' WHERE a=22154; UPDATE t2 SET c='sixty-nine thousand six hundred eighty-three' WHERE a=22155; UPDATE t2 SET c='five hundred thirty-five' WHERE a=22156; UPDATE t2 SET c='thirty-four thousand five hundred fifty-nine' WHERE a=22157; UPDATE t2 SET c='forty thousand two hundred ninety-one' WHERE a=22158; UPDATE t2 SET c='six thousand eight hundred sixty-nine' WHERE a=22159; UPDATE t2 SET c='fifty-one thousand eight hundred fifty-nine' WHERE a=22160; UPDATE t2 SET c='sixty-four thousand four hundred sixty-seven' WHERE a=22161; UPDATE t2 SET c='ninety-eight thousand three hundred forty-one' WHERE a=22162; UPDATE t2 SET c='ninety thousand five hundred sixty-eight' WHERE a=22163; UPDATE t2 SET c='sixteen thousand eight hundred eighty-three' WHERE a=22164; UPDATE t2 SET c='fifteen thousand four hundred forty-four' WHERE a=22165; UPDATE t2 SET c='six thousand eight hundred one' WHERE a=22166; UPDATE t2 SET c='eighty-eight thousand one hundred eighty-three' WHERE a=22167; UPDATE t2 SET c='forty-seven thousand ninety-nine' WHERE a=22168; UPDATE t2 SET c='sixty-eight thousand one hundred ninety' WHERE a=22169; UPDATE t2 SET c='seven thousand six hundred seventy-eight' WHERE a=22170; UPDATE t2 SET c='fifty-seven thousand seven hundred four' WHERE a=22171; UPDATE t2 SET c='twenty-six thousand one hundred sixty-one' WHERE a=22172; UPDATE t2 SET c='seventy-six thousand six hundred forty-seven' WHERE a=22173; UPDATE t2 SET c='thirty-three thousand two hundred twenty-one' WHERE a=22174; UPDATE t2 SET c='eighty-six thousand fifty-five' WHERE a=22175; UPDATE t2 SET c='ninety-two thousand eight hundred thirty-nine' WHERE a=22176; UPDATE t2 SET c='ninety-two thousand seven hundred thirty-four' WHERE a=22177; UPDATE t2 SET c='ninety-three thousand forty-nine' WHERE a=22178; UPDATE t2 SET c='forty-nine thousand one hundred forty-five' WHERE a=22179; UPDATE t2 SET c='fourteen thousand forty-seven' WHERE a=22180; UPDATE t2 SET c='eleven thousand five hundred thirty-five' WHERE a=22181; UPDATE t2 SET c='fifty-two thousand nine hundred twenty-five' WHERE a=22182; UPDATE t2 SET c='sixty-nine thousand four hundred ninety-six' WHERE a=22183; UPDATE t2 SET c='ninety-four thousand one hundred thirty-six' WHERE a=22184; UPDATE t2 SET c='ninety-one thousand nine hundred thirteen' WHERE a=22185; UPDATE t2 SET c='thirty-nine thousand eight hundred ninety-seven' WHERE a=22186; UPDATE t2 SET c='seventy-five thousand four hundred thirty-five' WHERE a=22187; UPDATE t2 SET c='seven thousand three hundred seventy-nine' WHERE a=22188; UPDATE t2 SET c='ninety-six thousand five hundred ninety-six' WHERE a=22189; UPDATE t2 SET c='four thousand seven hundred four' WHERE a=22190; UPDATE t2 SET c='twenty-three thousand six hundred ninety-one' WHERE a=22191; UPDATE t2 SET c='ninety-nine thousand six hundred sixty-seven' WHERE a=22192; UPDATE t2 SET c='ninety-seven thousand four hundred twelve' WHERE a=22193; UPDATE t2 SET c='sixteen thousand seven hundred eight' WHERE a=22194; UPDATE t2 SET c='twenty-three thousand two hundred seventy-seven' WHERE a=22195; UPDATE t2 SET c='forty-nine thousand six hundred thirty-eight' WHERE a=22196; UPDATE t2 SET c='sixty-eight thousand eight hundred forty-six' WHERE a=22197; UPDATE t2 SET c='eighty-two thousand three hundred eighty' WHERE a=22198; UPDATE t2 SET c='fifty-six thousand one hundred forty-nine' WHERE a=22199; UPDATE t2 SET c='eighty-seven thousand one hundred ten' WHERE a=22200; UPDATE t2 SET c='ninety-eight thousand five hundred ninety-seven' WHERE a=22201; UPDATE t2 SET c='thirty-eight thousand four hundred eighty-eight' WHERE a=22202; UPDATE t2 SET c='eighty-five thousand ninety-seven' WHERE a=22203; UPDATE t2 SET c='eleven thousand fifty-six' WHERE a=22204; UPDATE t2 SET c='fourteen thousand seven hundred seventy-six' WHERE a=22205; UPDATE t2 SET c='fifty-nine thousand thirty' WHERE a=22206; UPDATE t2 SET c='fifty-six thousand eight hundred ninety-two' WHERE a=22207; UPDATE t2 SET c='forty-six thousand six hundred eighty-eight' WHERE a=22208; UPDATE t2 SET c='eighteen thousand three hundred one' WHERE a=22209; UPDATE t2 SET c='ninety-six thousand seven hundred thirty-six' WHERE a=22210; UPDATE t2 SET c='twelve thousand' WHERE a=22211; UPDATE t2 SET c='ninety-nine thousand five hundred twenty' WHERE a=22212; UPDATE t2 SET c='eighteen thousand one hundred twenty-nine' WHERE a=22213; UPDATE t2 SET c='eighty-four thousand two hundred twenty-eight' WHERE a=22214; UPDATE t2 SET c='forty-seven thousand four hundred thirty-eight' WHERE a=22215; UPDATE t2 SET c='eighty-nine thousand seven hundred ninety-one' WHERE a=22216; UPDATE t2 SET c='twenty-one thousand six hundred eighty-one' WHERE a=22217; UPDATE t2 SET c='sixty-six thousand nine hundred ninety-six' WHERE a=22218; UPDATE t2 SET c='forty-five thousand one hundred thirty-one' WHERE a=22219; UPDATE t2 SET c='sixty-seven thousand eight hundred fifteen' WHERE a=22220; UPDATE t2 SET c='seventy-two thousand ninety-seven' WHERE a=22221; UPDATE t2 SET c='forty-nine thousand two hundred twenty' WHERE a=22222; UPDATE t2 SET c='nine thousand twenty-eight' WHERE a=22223; UPDATE t2 SET c='seventeen thousand four hundred seventy-six' WHERE a=22224; UPDATE t2 SET c='five hundred four' WHERE a=22225; UPDATE t2 SET c='ten thousand nine hundred nine' WHERE a=22226; UPDATE t2 SET c='seventy thousand three hundred six' WHERE a=22227; UPDATE t2 SET c='seventy-one thousand five hundred six' WHERE a=22228; UPDATE t2 SET c='sixty-four thousand one hundred sixty-eight' WHERE a=22229; UPDATE t2 SET c='thirteen thousand two hundred' WHERE a=22230; UPDATE t2 SET c='forty-seven thousand one hundred eleven' WHERE a=22231; UPDATE t2 SET c='twenty-nine thousand three hundred sixty-five' WHERE a=22232; UPDATE t2 SET c='sixty-six thousand three hundred ninety-one' WHERE a=22233; UPDATE t2 SET c='one thousand six hundred eighty' WHERE a=22234; UPDATE t2 SET c='twelve thousand three hundred thirty-two' WHERE a=22235; UPDATE t2 SET c='sixty-two thousand six hundred seventy-two' WHERE a=22236; UPDATE t2 SET c='twenty-four thousand two hundred seventy-four' WHERE a=22237; UPDATE t2 SET c='eight thousand seven hundred fourteen' WHERE a=22238; UPDATE t2 SET c='twenty-one thousand four hundred seventy-four' WHERE a=22239; UPDATE t2 SET c='fifty-two thousand two hundred thirty-nine' WHERE a=22240; UPDATE t2 SET c='ten thousand three hundred seventy-seven' WHERE a=22241; UPDATE t2 SET c='thirty-nine thousand six hundred six' WHERE a=22242; UPDATE t2 SET c='fifty-nine thousand seven hundred fifty-five' WHERE a=22243; UPDATE t2 SET c='seventy-one thousand six hundred thirty-eight' WHERE a=22244; UPDATE t2 SET c='eighty-five thousand six hundred twenty-seven' WHERE a=22245; UPDATE t2 SET c='twenty thousand seventy-one' WHERE a=22246; UPDATE t2 SET c='sixty-five thousand seven hundred five' WHERE a=22247; UPDATE t2 SET c='sixty-two thousand two hundred eighty-one' WHERE a=22248; UPDATE t2 SET c='seventy-one thousand nine hundred seventy' WHERE a=22249; UPDATE t2 SET c='thirty-four thousand three hundred seventy-six' WHERE a=22250; UPDATE t2 SET c='sixty-six thousand six hundred three' WHERE a=22251; UPDATE t2 SET c='twelve thousand five hundred seventy-one' WHERE a=22252; UPDATE t2 SET c='seventy thousand one hundred eighty-two' WHERE a=22253; UPDATE t2 SET c='eighty-five thousand three hundred seventy-two' WHERE a=22254; UPDATE t2 SET c='sixty-three thousand nine hundred eight' WHERE a=22255; UPDATE t2 SET c='eight thousand six hundred eighty-nine' WHERE a=22256; UPDATE t2 SET c='fifty thousand three hundred forty-three' WHERE a=22257; UPDATE t2 SET c='thirty-five thousand three hundred thirty-three' WHERE a=22258; UPDATE t2 SET c='forty-nine thousand nine hundred forty-eight' WHERE a=22259; UPDATE t2 SET c='fifteen thousand one hundred eighty-eight' WHERE a=22260; UPDATE t2 SET c='twenty-one thousand nine hundred forty' WHERE a=22261; UPDATE t2 SET c='forty-eight thousand one hundred fifty-nine' WHERE a=22262; UPDATE t2 SET c='nineteen thousand eight hundred seventy-four' WHERE a=22263; UPDATE t2 SET c='three thousand two hundred twenty-seven' WHERE a=22264; UPDATE t2 SET c='seventy-one thousand five hundred seventy-three' WHERE a=22265; UPDATE t2 SET c='twelve thousand two hundred eighty-five' WHERE a=22266; UPDATE t2 SET c='eighty-five thousand one hundred three' WHERE a=22267; UPDATE t2 SET c='thirty-seven thousand nine hundred fifteen' WHERE a=22268; UPDATE t2 SET c='seventy thousand six hundred twenty-eight' WHERE a=22269; UPDATE t2 SET c='seventy-one thousand seven hundred seventy-five' WHERE a=22270; UPDATE t2 SET c='seventy-four thousand seven hundred twenty-three' WHERE a=22271; UPDATE t2 SET c='twenty-nine thousand fifty-seven' WHERE a=22272; UPDATE t2 SET c='three thousand one hundred twenty-eight' WHERE a=22273; UPDATE t2 SET c='fifty-six thousand five hundred seven' WHERE a=22274; UPDATE t2 SET c='forty-four thousand one hundred sixty-one' WHERE a=22275; UPDATE t2 SET c='forty-three thousand six hundred fifty-seven' WHERE a=22276; UPDATE t2 SET c='eleven thousand two hundred seventy-nine' WHERE a=22277; UPDATE t2 SET c='eighty-six thousand five hundred ninety' WHERE a=22278; UPDATE t2 SET c='thirty-five thousand two' WHERE a=22279; UPDATE t2 SET c='sixty-two thousand eight hundred twenty-one' WHERE a=22280; UPDATE t2 SET c='fifty-two thousand seventy-two' WHERE a=22281; UPDATE t2 SET c='fifty-six thousand two hundred fifty-seven' WHERE a=22282; UPDATE t2 SET c='sixty-four thousand seven hundred six' WHERE a=22283; UPDATE t2 SET c='seventy-three thousand ninety-seven' WHERE a=22284; UPDATE t2 SET c='ninety thousand two hundred seventy-two' WHERE a=22285; UPDATE t2 SET c='thirty-six thousand three hundred thirty-three' WHERE a=22286; UPDATE t2 SET c='fifteen thousand four hundred ninety-three' WHERE a=22287; UPDATE t2 SET c='forty-nine thousand six hundred seventy-three' WHERE a=22288; UPDATE t2 SET c='eighty-four thousand eight hundred sixty-three' WHERE a=22289; UPDATE t2 SET c='thirty thousand eighty-six' WHERE a=22290; UPDATE t2 SET c='eighty-eight thousand three hundred eighty-five' WHERE a=22291; UPDATE t2 SET c='seventeen thousand six hundred ninety-four' WHERE a=22292; UPDATE t2 SET c='forty-four thousand one hundred seventy-four' WHERE a=22293; UPDATE t2 SET c='ninety-nine thousand seven hundred forty-four' WHERE a=22294; UPDATE t2 SET c='forty-five thousand eight hundred thirteen' WHERE a=22295; UPDATE t2 SET c='sixty-eight thousand five hundred eighty-six' WHERE a=22296; UPDATE t2 SET c='ninety-two thousand five hundred eleven' WHERE a=22297; UPDATE t2 SET c='seventy-nine thousand six hundred twenty' WHERE a=22298; UPDATE t2 SET c='thirty-two thousand four hundred twenty-nine' WHERE a=22299; UPDATE t2 SET c='five hundred fifty-eight' WHERE a=22300; UPDATE t2 SET c='ninety thousand seven hundred forty-six' WHERE a=22301; UPDATE t2 SET c='eleven thousand two hundred forty' WHERE a=22302; UPDATE t2 SET c='eighty thousand five hundred thirty-six' WHERE a=22303; UPDATE t2 SET c='twenty-seven thousand three hundred four' WHERE a=22304; UPDATE t2 SET c='sixteen thousand six hundred eighty-five' WHERE a=22305; UPDATE t2 SET c='ninety thousand five hundred ninety-one' WHERE a=22306; UPDATE t2 SET c='sixty-seven thousand seven hundred seventy-four' WHERE a=22307; UPDATE t2 SET c='forty-nine thousand nine hundred thirty-eight' WHERE a=22308; UPDATE t2 SET c='seventy-three thousand one hundred thirty-two' WHERE a=22309; UPDATE t2 SET c='twenty-one thousand three hundred fifty-nine' WHERE a=22310; UPDATE t2 SET c='eight thousand six hundred thirty-five' WHERE a=22311; UPDATE t2 SET c='fifty-one thousand seven hundred five' WHERE a=22312; UPDATE t2 SET c='seventy-eight thousand seven hundred eighty-two' WHERE a=22313; UPDATE t2 SET c='twenty-six thousand seven hundred ninety-three' WHERE a=22314; UPDATE t2 SET c='sixty-nine thousand one hundred twenty-five' WHERE a=22315; UPDATE t2 SET c='sixteen thousand one hundred twenty-one' WHERE a=22316; UPDATE t2 SET c='sixteen thousand eight hundred eighty-six' WHERE a=22317; UPDATE t2 SET c='eighty-five thousand nine hundred twenty-four' WHERE a=22318; UPDATE t2 SET c='ninety-four thousand three hundred thirty-five' WHERE a=22319; UPDATE t2 SET c='seventy-two thousand fifty-four' WHERE a=22320; UPDATE t2 SET c='twenty-five thousand six hundred two' WHERE a=22321; UPDATE t2 SET c='fifty-three thousand nine hundred twelve' WHERE a=22322; UPDATE t2 SET c='thirteen thousand three hundred' WHERE a=22323; UPDATE t2 SET c='forty-three thousand forty-four' WHERE a=22324; UPDATE t2 SET c='fifty-four thousand four hundred fifty-five' WHERE a=22325; UPDATE t2 SET c='forty-one thousand eight hundred forty-five' WHERE a=22326; UPDATE t2 SET c='forty-three thousand eight hundred twenty-two' WHERE a=22327; UPDATE t2 SET c='thirty-four thousand seven hundred seventy-four' WHERE a=22328; UPDATE t2 SET c='thirty-four thousand six hundred fourteen' WHERE a=22329; UPDATE t2 SET c='twenty-five thousand two hundred four' WHERE a=22330; UPDATE t2 SET c='forty-two thousand one hundred fifty-nine' WHERE a=22331; UPDATE t2 SET c='thirty thousand four hundred six' WHERE a=22332; UPDATE t2 SET c='ninety-eight thousand two hundred thirty-five' WHERE a=22333; UPDATE t2 SET c='twenty-four thousand one hundred thirty-two' WHERE a=22334; UPDATE t2 SET c='twenty-seven thousand two hundred twenty-four' WHERE a=22335; UPDATE t2 SET c='sixty-one thousand nine hundred sixty-seven' WHERE a=22336; UPDATE t2 SET c='forty-nine thousand five hundred seventy-three' WHERE a=22337; UPDATE t2 SET c='two thousand fifty-nine' WHERE a=22338; UPDATE t2 SET c='eighty-seven thousand five hundred sixty-seven' WHERE a=22339; UPDATE t2 SET c='sixty-eight thousand nine hundred seventeen' WHERE a=22340; UPDATE t2 SET c='seventy-one thousand nine hundred eighty-two' WHERE a=22341; UPDATE t2 SET c='two thousand six hundred forty-five' WHERE a=22342; UPDATE t2 SET c='twenty-six thousand nine' WHERE a=22343; UPDATE t2 SET c='ninety-one thousand eight hundred ninety-six' WHERE a=22344; UPDATE t2 SET c='seventeen thousand five hundred seventy-five' WHERE a=22345; UPDATE t2 SET c='ninety-six thousand five hundred ten' WHERE a=22346; UPDATE t2 SET c='seventy-nine thousand nine hundred forty-nine' WHERE a=22347; UPDATE t2 SET c='seventy-six thousand five hundred sixty-eight' WHERE a=22348; UPDATE t2 SET c='eighty-three thousand one hundred six' WHERE a=22349; UPDATE t2 SET c='thirty thousand seven hundred thirty-eight' WHERE a=22350; UPDATE t2 SET c='thirty-seven thousand six hundred fourteen' WHERE a=22351; UPDATE t2 SET c='ninety-three thousand one hundred sixty-five' WHERE a=22352; UPDATE t2 SET c='seventy-seven thousand nine hundred fifty-nine' WHERE a=22353; UPDATE t2 SET c='thirty-seven thousand seven hundred eighty-two' WHERE a=22354; UPDATE t2 SET c='fifty-nine thousand eight hundred eighty-four' WHERE a=22355; UPDATE t2 SET c='forty thousand six hundred forty-one' WHERE a=22356; UPDATE t2 SET c='thirty-one thousand five hundred forty-five' WHERE a=22357; UPDATE t2 SET c='twenty-nine thousand three hundred twenty-nine' WHERE a=22358; UPDATE t2 SET c='twenty-one thousand two hundred seventy-eight' WHERE a=22359; UPDATE t2 SET c='ninety-two thousand eight hundred eighty-six' WHERE a=22360; UPDATE t2 SET c='five thousand one hundred twenty' WHERE a=22361; UPDATE t2 SET c='seventy thousand nine hundred fifty-five' WHERE a=22362; UPDATE t2 SET c='ninety-three thousand one hundred forty-nine' WHERE a=22363; UPDATE t2 SET c='fifty-six thousand five hundred fifty-one' WHERE a=22364; UPDATE t2 SET c='twenty-eight thousand six hundred forty-three' WHERE a=22365; UPDATE t2 SET c='eighty-seven thousand nine hundred forty-five' WHERE a=22366; UPDATE t2 SET c='eighty-nine thousand seven hundred twenty-five' WHERE a=22367; UPDATE t2 SET c='sixty-seven thousand five hundred two' WHERE a=22368; UPDATE t2 SET c='seventy-eight thousand four hundred fifty-one' WHERE a=22369; UPDATE t2 SET c='forty-nine thousand three hundred thirty-one' WHERE a=22370; UPDATE t2 SET c='eighty-six thousand seven hundred forty-three' WHERE a=22371; UPDATE t2 SET c='sixty-five thousand one hundred eighty-four' WHERE a=22372; UPDATE t2 SET c='forty-one thousand four hundred sixty-eight' WHERE a=22373; UPDATE t2 SET c='forty-seven thousand fifteen' WHERE a=22374; UPDATE t2 SET c='two thousand five hundred thirty-one' WHERE a=22375; UPDATE t2 SET c='nineteen thousand three hundred twenty-one' WHERE a=22376; UPDATE t2 SET c='forty-four thousand six hundred thirty-four' WHERE a=22377; UPDATE t2 SET c='ninety-six thousand nine hundred seventy-eight' WHERE a=22378; UPDATE t2 SET c='forty-one thousand six hundred ninety-two' WHERE a=22379; UPDATE t2 SET c='five thousand five hundred eighty-seven' WHERE a=22380; UPDATE t2 SET c='forty-five thousand three hundred eighty-four' WHERE a=22381; UPDATE t2 SET c='eighty-three thousand eight hundred seventy-four' WHERE a=22382; UPDATE t2 SET c='ninety-two thousand nine hundred two' WHERE a=22383; UPDATE t2 SET c='eight thousand fifty-nine' WHERE a=22384; UPDATE t2 SET c='five thousand four hundred eighty-six' WHERE a=22385; UPDATE t2 SET c='ninety-four thousand four hundred fifty-two' WHERE a=22386; UPDATE t2 SET c='twenty thousand one hundred' WHERE a=22387; UPDATE t2 SET c='eighteen thousand twelve' WHERE a=22388; UPDATE t2 SET c='twenty-eight thousand five hundred thirty-five' WHERE a=22389; UPDATE t2 SET c='seventy-one thousand three hundred twenty-nine' WHERE a=22390; UPDATE t2 SET c='sixty-three thousand two hundred thirty-seven' WHERE a=22391; UPDATE t2 SET c='thirty-three thousand six hundred five' WHERE a=22392; UPDATE t2 SET c='thirty-nine thousand twenty-seven' WHERE a=22393; UPDATE t2 SET c='twenty-one thousand forty-five' WHERE a=22394; UPDATE t2 SET c='fourteen thousand one hundred fifty-three' WHERE a=22395; UPDATE t2 SET c='fifty-three thousand five hundred ninety-eight' WHERE a=22396; UPDATE t2 SET c='thirty-seven thousand one hundred sixty-four' WHERE a=22397; UPDATE t2 SET c='sixty-six thousand two hundred thirty-four' WHERE a=22398; UPDATE t2 SET c='forty-five thousand nine hundred seventy-six' WHERE a=22399; UPDATE t2 SET c='thirty-three thousand ninety-one' WHERE a=22400; UPDATE t2 SET c='seventy-eight thousand eight hundred eighty' WHERE a=22401; UPDATE t2 SET c='forty-eight thousand five hundred ninety-three' WHERE a=22402; UPDATE t2 SET c='thirty thousand seven hundred ninety-three' WHERE a=22403; UPDATE t2 SET c='two thousand six hundred sixty-three' WHERE a=22404; UPDATE t2 SET c='forty-eight thousand one hundred eighteen' WHERE a=22405; UPDATE t2 SET c='twenty-two thousand nine hundred ninety' WHERE a=22406; UPDATE t2 SET c='twenty-five thousand six hundred seventy-seven' WHERE a=22407; UPDATE t2 SET c='ninety-two thousand one hundred thirty-four' WHERE a=22408; UPDATE t2 SET c='eight thousand nine hundred eighty-one' WHERE a=22409; UPDATE t2 SET c='forty-three thousand six hundred fifty' WHERE a=22410; UPDATE t2 SET c='twelve thousand four hundred eight' WHERE a=22411; UPDATE t2 SET c='forty-one thousand eight hundred eighteen' WHERE a=22412; UPDATE t2 SET c='seventy-one thousand seven hundred thirty-nine' WHERE a=22413; UPDATE t2 SET c='twenty-two thousand seven hundred fifty' WHERE a=22414; UPDATE t2 SET c='thirty-one thousand eight hundred ninety-four' WHERE a=22415; UPDATE t2 SET c='fifty-one thousand two hundred sixty-six' WHERE a=22416; UPDATE t2 SET c='sixty-eight thousand four hundred eighty' WHERE a=22417; UPDATE t2 SET c='thirty-seven thousand three hundred sixty-eight' WHERE a=22418; UPDATE t2 SET c='thirty-two thousand five hundred twenty-five' WHERE a=22419; UPDATE t2 SET c='thirty thousand seven hundred eighty-one' WHERE a=22420; UPDATE t2 SET c='fifty-nine thousand five hundred thirty-three' WHERE a=22421; UPDATE t2 SET c='twenty-nine thousand seven hundred fifty-four' WHERE a=22422; UPDATE t2 SET c='twenty-nine thousand three hundred fifty-six' WHERE a=22423; UPDATE t2 SET c='ninety-one thousand three hundred fifty-seven' WHERE a=22424; UPDATE t2 SET c='fifty-one thousand one hundred forty-two' WHERE a=22425; UPDATE t2 SET c='fifteen thousand four hundred ninety' WHERE a=22426; UPDATE t2 SET c='forty-four thousand five hundred forty-six' WHERE a=22427; UPDATE t2 SET c='eighty-nine thousand two hundred eighty-five' WHERE a=22428; UPDATE t2 SET c='sixty-one thousand two hundred forty-eight' WHERE a=22429; UPDATE t2 SET c='seventy-three thousand five hundred ninety-six' WHERE a=22430; UPDATE t2 SET c='two hundred eleven' WHERE a=22431; UPDATE t2 SET c='twenty-six thousand five hundred' WHERE a=22432; UPDATE t2 SET c='sixty-one thousand three hundred twenty-three' WHERE a=22433; UPDATE t2 SET c='fifty-eight thousand seven hundred sixty-eight' WHERE a=22434; UPDATE t2 SET c='thirty-three thousand seven hundred twenty-three' WHERE a=22435; UPDATE t2 SET c='eighty-six thousand six hundred sixty-one' WHERE a=22436; UPDATE t2 SET c='thirty-three thousand nine hundred six' WHERE a=22437; UPDATE t2 SET c='eighty-five thousand five hundred eighty-two' WHERE a=22438; UPDATE t2 SET c='seventeen thousand nine hundred fifty-four' WHERE a=22439; UPDATE t2 SET c='eighty-nine thousand six hundred thirty-seven' WHERE a=22440; UPDATE t2 SET c='thirty thousand six hundred seventeen' WHERE a=22441; UPDATE t2 SET c='eighty-two thousand four hundred ninety-seven' WHERE a=22442; UPDATE t2 SET c='sixty-five thousand five hundred fifteen' WHERE a=22443; UPDATE t2 SET c='sixty-two thousand ninety-nine' WHERE a=22444; UPDATE t2 SET c='fifteen thousand seven hundred twenty-one' WHERE a=22445; UPDATE t2 SET c='eighty-three thousand seven hundred twenty-six' WHERE a=22446; UPDATE t2 SET c='thirty-nine thousand twenty-seven' WHERE a=22447; UPDATE t2 SET c='sixty-four thousand five hundred ninety-four' WHERE a=22448; UPDATE t2 SET c='thirty-eight thousand one hundred fifty-nine' WHERE a=22449; UPDATE t2 SET c='forty-six thousand six hundred sixty-five' WHERE a=22450; UPDATE t2 SET c='ninety-seven thousand seven hundred fifty-eight' WHERE a=22451; UPDATE t2 SET c='ninety-seven thousand four hundred twenty-nine' WHERE a=22452; UPDATE t2 SET c='twenty-four thousand four hundred fifty-two' WHERE a=22453; UPDATE t2 SET c='forty-three thousand eight hundred seventy-four' WHERE a=22454; UPDATE t2 SET c='forty-four thousand six hundred seventy-four' WHERE a=22455; UPDATE t2 SET c='twenty thousand sixty-six' WHERE a=22456; UPDATE t2 SET c='ninety-two thousand seven hundred fifty-four' WHERE a=22457; UPDATE t2 SET c='seventy-six thousand four hundred six' WHERE a=22458; UPDATE t2 SET c='fifty-two thousand seven hundred forty-two' WHERE a=22459; UPDATE t2 SET c='thirty-four thousand eight hundred thirty' WHERE a=22460; UPDATE t2 SET c='ninety-two thousand five hundred twenty' WHERE a=22461; UPDATE t2 SET c='twelve thousand nine hundred ninety' WHERE a=22462; UPDATE t2 SET c='sixty-two thousand two hundred seventy-seven' WHERE a=22463; UPDATE t2 SET c='forty-two thousand eight hundred fourteen' WHERE a=22464; UPDATE t2 SET c='ninety-six thousand seven hundred sixty-one' WHERE a=22465; UPDATE t2 SET c='fifty-five thousand nine hundred fifty-three' WHERE a=22466; UPDATE t2 SET c='ten thousand four hundred ninety-seven' WHERE a=22467; UPDATE t2 SET c='ninety-three thousand one hundred seventy-six' WHERE a=22468; UPDATE t2 SET c='seventy-two thousand nine hundred ninety-six' WHERE a=22469; UPDATE t2 SET c='sixty-one thousand eight hundred fifty-six' WHERE a=22470; UPDATE t2 SET c='twenty-nine thousand eight hundred twenty-seven' WHERE a=22471; UPDATE t2 SET c='twenty-one thousand eight hundred twenty-nine' WHERE a=22472; UPDATE t2 SET c='nine thousand one hundred seventy-four' WHERE a=22473; UPDATE t2 SET c='nine thousand six hundred thirty' WHERE a=22474; UPDATE t2 SET c='thirty-three thousand one hundred seventy-six' WHERE a=22475; UPDATE t2 SET c='sixty-seven thousand four hundred thirty-five' WHERE a=22476; UPDATE t2 SET c='sixteen thousand sixty-six' WHERE a=22477; UPDATE t2 SET c='five thousand seventy-nine' WHERE a=22478; UPDATE t2 SET c='forty-seven thousand five hundred eighty-eight' WHERE a=22479; UPDATE t2 SET c='sixty-two thousand six hundred seventy-seven' WHERE a=22480; UPDATE t2 SET c='five thousand one hundred seventy-five' WHERE a=22481; UPDATE t2 SET c='three hundred sixty' WHERE a=22482; UPDATE t2 SET c='seventy-two thousand eight hundred ninety' WHERE a=22483; UPDATE t2 SET c='sixty-four thousand two hundred ninety-nine' WHERE a=22484; UPDATE t2 SET c='ninety-seven thousand ninety-four' WHERE a=22485; UPDATE t2 SET c='seventy-six thousand one hundred fifty-four' WHERE a=22486; UPDATE t2 SET c='fourteen thousand two hundred sixty-seven' WHERE a=22487; UPDATE t2 SET c='fifty-two thousand nine hundred five' WHERE a=22488; UPDATE t2 SET c='thirty-nine thousand six hundred fifty-three' WHERE a=22489; UPDATE t2 SET c='eighty-nine thousand two hundred ninety' WHERE a=22490; UPDATE t2 SET c='fifty-nine thousand five hundred eight' WHERE a=22491; UPDATE t2 SET c='fifty-nine thousand seven hundred ninety-seven' WHERE a=22492; UPDATE t2 SET c='six thousand four hundred sixty' WHERE a=22493; UPDATE t2 SET c='sixty-two thousand seven hundred' WHERE a=22494; UPDATE t2 SET c='eighty-five thousand two hundred seventy-seven' WHERE a=22495; UPDATE t2 SET c='seventy-six thousand nine hundred seventy-one' WHERE a=22496; UPDATE t2 SET c='fourteen thousand four hundred eighty-nine' WHERE a=22497; UPDATE t2 SET c='ninety-four thousand nine hundred thirty-nine' WHERE a=22498; UPDATE t2 SET c='fifty-seven thousand nine hundred fifty-two' WHERE a=22499; UPDATE t2 SET c='thirty-seven thousand seven hundred ninety-nine' WHERE a=22500; UPDATE t2 SET c='fifty-eight thousand five hundred eighteen' WHERE a=22501; UPDATE t2 SET c='seventy-one thousand one hundred fifty' WHERE a=22502; UPDATE t2 SET c='seventy-one thousand three hundred forty-eight' WHERE a=22503; UPDATE t2 SET c='thirty-two thousand four hundred ninety-eight' WHERE a=22504; UPDATE t2 SET c='thirty-seven thousand nine hundred eighteen' WHERE a=22505; UPDATE t2 SET c='thirty-four thousand one hundred twenty-eight' WHERE a=22506; UPDATE t2 SET c='sixty-four thousand two hundred three' WHERE a=22507; UPDATE t2 SET c='thirteen thousand one hundred twenty' WHERE a=22508; UPDATE t2 SET c='twenty-one thousand five hundred eighty-one' WHERE a=22509; UPDATE t2 SET c='seventy-seven thousand fifty-one' WHERE a=22510; UPDATE t2 SET c='thirty thousand five hundred six' WHERE a=22511; UPDATE t2 SET c='twenty thousand nine hundred fifty-four' WHERE a=22512; UPDATE t2 SET c='six thousand eight hundred eighty-three' WHERE a=22513; UPDATE t2 SET c='eighty-three thousand seven hundred eight' WHERE a=22514; UPDATE t2 SET c='forty thousand five hundred seventy-two' WHERE a=22515; UPDATE t2 SET c='seventy-nine thousand eight hundred ninety-one' WHERE a=22516; UPDATE t2 SET c='eighty-seven thousand nine hundred seven' WHERE a=22517; UPDATE t2 SET c='forty thousand seventy-eight' WHERE a=22518; UPDATE t2 SET c='thirty-three thousand six hundred fifty-five' WHERE a=22519; UPDATE t2 SET c='eighty-seven thousand five hundred four' WHERE a=22520; UPDATE t2 SET c='forty-three thousand two hundred eighty-nine' WHERE a=22521; UPDATE t2 SET c='ninety-two thousand nine hundred twenty-five' WHERE a=22522; UPDATE t2 SET c='ninety-eight thousand eight hundred three' WHERE a=22523; UPDATE t2 SET c='fifty-nine thousand nine hundred fifty' WHERE a=22524; UPDATE t2 SET c='sixty thousand four hundred six' WHERE a=22525; UPDATE t2 SET c='fifteen thousand eight hundred three' WHERE a=22526; UPDATE t2 SET c='eighty-seven thousand two hundred fifty-seven' WHERE a=22527; UPDATE t2 SET c='seventy-one thousand three hundred nineteen' WHERE a=22528; UPDATE t2 SET c='two thousand nine hundred sixty-four' WHERE a=22529; UPDATE t2 SET c='twenty-one thousand fifty-six' WHERE a=22530; UPDATE t2 SET c='ninety thousand nine hundred ninety-three' WHERE a=22531; UPDATE t2 SET c='forty-six thousand nine hundred thirty' WHERE a=22532; UPDATE t2 SET c='ten thousand seven hundred ten' WHERE a=22533; UPDATE t2 SET c='twenty-eight thousand two hundred fifty-six' WHERE a=22534; UPDATE t2 SET c='fifty-five thousand five hundred thirty-two' WHERE a=22535; UPDATE t2 SET c='thirty-six thousand five hundred ninety-three' WHERE a=22536; UPDATE t2 SET c='forty-three thousand thirty-seven' WHERE a=22537; UPDATE t2 SET c='fifty thousand two hundred twenty-three' WHERE a=22538; UPDATE t2 SET c='sixty-five thousand three hundred seventy' WHERE a=22539; UPDATE t2 SET c='twenty-four thousand four hundred twenty-six' WHERE a=22540; UPDATE t2 SET c='ninety-five thousand six hundred twenty-one' WHERE a=22541; UPDATE t2 SET c='twenty-nine thousand nine hundred eighty-one' WHERE a=22542; UPDATE t2 SET c='ninety-seven thousand seven hundred forty-four' WHERE a=22543; UPDATE t2 SET c='eighty-two thousand five hundred ninety-two' WHERE a=22544; UPDATE t2 SET c='ninety-eight thousand seven hundred ninety-two' WHERE a=22545; UPDATE t2 SET c='seventy-seven thousand seven hundred seventy-four' WHERE a=22546; UPDATE t2 SET c='seventy-three thousand four hundred fifty-nine' WHERE a=22547; UPDATE t2 SET c='seven thousand seven hundred ninety-six' WHERE a=22548; UPDATE t2 SET c='eighty-seven thousand two hundred five' WHERE a=22549; UPDATE t2 SET c='sixty thousand four hundred twenty-four' WHERE a=22550; UPDATE t2 SET c='twenty-nine thousand four hundred twenty-five' WHERE a=22551; UPDATE t2 SET c='seventy-seven thousand nine hundred eighty-five' WHERE a=22552; UPDATE t2 SET c='forty-three thousand six hundred fifty-two' WHERE a=22553; UPDATE t2 SET c='nine thousand five hundred fifty-two' WHERE a=22554; UPDATE t2 SET c='ninety-seven thousand sixty-two' WHERE a=22555; UPDATE t2 SET c='fifty-eight thousand seven hundred eighty-nine' WHERE a=22556; UPDATE t2 SET c='sixty-three thousand three hundred thirty-one' WHERE a=22557; UPDATE t2 SET c='thirty thousand six hundred eighty-three' WHERE a=22558; UPDATE t2 SET c='eighty-six thousand two hundred fifty-eight' WHERE a=22559; UPDATE t2 SET c='sixty-eight thousand seven hundred fifty-six' WHERE a=22560; UPDATE t2 SET c='seventy-eight thousand six hundred seventy-four' WHERE a=22561; UPDATE t2 SET c='twenty-seven thousand five hundred sixty-nine' WHERE a=22562; UPDATE t2 SET c='eighty thousand one hundred nine' WHERE a=22563; UPDATE t2 SET c='fifty-four thousand four hundred ninety-four' WHERE a=22564; UPDATE t2 SET c='five thousand three hundred thirty-seven' WHERE a=22565; UPDATE t2 SET c='sixty thousand three hundred ninety-one' WHERE a=22566; UPDATE t2 SET c='ninety-two thousand five hundred twenty-one' WHERE a=22567; UPDATE t2 SET c='twenty-three thousand four hundred eighty' WHERE a=22568; UPDATE t2 SET c='seventy-nine thousand one hundred seventy-seven' WHERE a=22569; UPDATE t2 SET c='ninety-four thousand nine hundred forty' WHERE a=22570; UPDATE t2 SET c='ten thousand six hundred nineteen' WHERE a=22571; UPDATE t2 SET c='eighty-eight thousand four hundred sixteen' WHERE a=22572; UPDATE t2 SET c='eighty-nine thousand nine hundred ninety' WHERE a=22573; UPDATE t2 SET c='nineteen thousand five hundred forty-one' WHERE a=22574; UPDATE t2 SET c='six thousand six hundred eight' WHERE a=22575; UPDATE t2 SET c='sixty-two thousand five hundred forty-four' WHERE a=22576; UPDATE t2 SET c='sixty-six thousand one hundred fifty-six' WHERE a=22577; UPDATE t2 SET c='five hundred sixty-nine' WHERE a=22578; UPDATE t2 SET c='forty-one thousand six hundred twenty-six' WHERE a=22579; UPDATE t2 SET c='fifty thousand thirteen' WHERE a=22580; UPDATE t2 SET c='eighty-six thousand five hundred twenty-eight' WHERE a=22581; UPDATE t2 SET c='twenty-nine thousand four hundred seventy-seven' WHERE a=22582; UPDATE t2 SET c='sixty-three thousand seven hundred twenty-five' WHERE a=22583; UPDATE t2 SET c='twenty thousand one hundred seventy-two' WHERE a=22584; UPDATE t2 SET c='eighty-four thousand eight hundred fourteen' WHERE a=22585; UPDATE t2 SET c='three thousand eight hundred thirty-five' WHERE a=22586; UPDATE t2 SET c='eleven thousand six hundred twenty-eight' WHERE a=22587; UPDATE t2 SET c='seventy-eight thousand seven hundred fifty-eight' WHERE a=22588; UPDATE t2 SET c='eighty-five thousand twenty-three' WHERE a=22589; UPDATE t2 SET c='thirty-seven thousand seven hundred eighty-five' WHERE a=22590; UPDATE t2 SET c='forty thousand two hundred sixty-two' WHERE a=22591; UPDATE t2 SET c='twenty-one thousand five hundred fourteen' WHERE a=22592; UPDATE t2 SET c='fourteen thousand seven hundred ninety-three' WHERE a=22593; UPDATE t2 SET c='seventy-two thousand eight hundred ninety-nine' WHERE a=22594; UPDATE t2 SET c='twenty-seven thousand eight hundred seventeen' WHERE a=22595; UPDATE t2 SET c='fifty-six thousand two hundred twenty-five' WHERE a=22596; UPDATE t2 SET c='eighty-seven thousand six hundred fifty-three' WHERE a=22597; UPDATE t2 SET c='thirteen thousand four hundred seventy-eight' WHERE a=22598; UPDATE t2 SET c='ninety-eight thousand two hundred fifty-two' WHERE a=22599; UPDATE t2 SET c='nine hundred twenty-nine' WHERE a=22600; UPDATE t2 SET c='fifty-one thousand four hundred sixty-two' WHERE a=22601; UPDATE t2 SET c='seventy-three thousand eight hundred forty-two' WHERE a=22602; UPDATE t2 SET c='seventy-seven thousand four hundred eighty-eight' WHERE a=22603; UPDATE t2 SET c='eighty-three thousand two hundred one' WHERE a=22604; UPDATE t2 SET c='fifty-seven thousand three hundred sixty-six' WHERE a=22605; UPDATE t2 SET c='fifty-eight thousand fifty' WHERE a=22606; UPDATE t2 SET c='forty-seven thousand six hundred ninety-two' WHERE a=22607; UPDATE t2 SET c='ninety-two thousand four hundred twenty-seven' WHERE a=22608; UPDATE t2 SET c='sixteen thousand eight hundred seven' WHERE a=22609; UPDATE t2 SET c='seventeen thousand three hundred eighty-two' WHERE a=22610; UPDATE t2 SET c='forty-three thousand three hundred thirty-four' WHERE a=22611; UPDATE t2 SET c='seventy-three thousand one hundred thirty-one' WHERE a=22612; UPDATE t2 SET c='forty-nine thousand eight hundred forty-two' WHERE a=22613; UPDATE t2 SET c='ninety-nine thousand two hundred sixty-one' WHERE a=22614; UPDATE t2 SET c='forty-six thousand nine hundred twenty-one' WHERE a=22615; UPDATE t2 SET c='five thousand four hundred fifty-eight' WHERE a=22616; UPDATE t2 SET c='forty-five thousand two hundred three' WHERE a=22617; UPDATE t2 SET c='sixty-five thousand four hundred thirty-eight' WHERE a=22618; UPDATE t2 SET c='fifty-four thousand six hundred twenty-four' WHERE a=22619; UPDATE t2 SET c='sixty-eight thousand eight hundred sixty-eight' WHERE a=22620; UPDATE t2 SET c='forty-three thousand seven hundred fifty-three' WHERE a=22621; UPDATE t2 SET c='eleven thousand four hundred thirty-six' WHERE a=22622; UPDATE t2 SET c='sixty-four thousand fifty' WHERE a=22623; UPDATE t2 SET c='thirty-two thousand two hundred ninety' WHERE a=22624; UPDATE t2 SET c='seventy-nine thousand two hundred seventy-six' WHERE a=22625; UPDATE t2 SET c='fifty-four thousand two hundred fifty-eight' WHERE a=22626; UPDATE t2 SET c='thirty-eight thousand two hundred thirty-four' WHERE a=22627; UPDATE t2 SET c='sixty-eight thousand seven hundred seventy-four' WHERE a=22628; UPDATE t2 SET c='eighty-nine thousand six hundred seventy-six' WHERE a=22629; UPDATE t2 SET c='fifty-nine thousand six hundred sixty-seven' WHERE a=22630; UPDATE t2 SET c='six thousand nine hundred seventy-seven' WHERE a=22631; UPDATE t2 SET c='twelve thousand five hundred two' WHERE a=22632; UPDATE t2 SET c='sixty-one thousand one hundred thirteen' WHERE a=22633; UPDATE t2 SET c='nineteen thousand two hundred thirty-eight' WHERE a=22634; UPDATE t2 SET c='twenty-one thousand four hundred eighteen' WHERE a=22635; UPDATE t2 SET c='twenty-seven thousand eight hundred thirteen' WHERE a=22636; UPDATE t2 SET c='ninety-six thousand seven hundred eighty-nine' WHERE a=22637; UPDATE t2 SET c='twenty-four thousand two hundred twenty-five' WHERE a=22638; UPDATE t2 SET c='fifty-three thousand two hundred fifty-six' WHERE a=22639; UPDATE t2 SET c='thirty-two thousand ninety' WHERE a=22640; UPDATE t2 SET c='sixty-two thousand six hundred twenty' WHERE a=22641; UPDATE t2 SET c='forty-eight thousand nine hundred thirty-eight' WHERE a=22642; UPDATE t2 SET c='fifty-two thousand five hundred sixty-two' WHERE a=22643; UPDATE t2 SET c='eighty-five thousand ninety-two' WHERE a=22644; UPDATE t2 SET c='ninety-one thousand five hundred fifty-eight' WHERE a=22645; UPDATE t2 SET c='fifty-eight thousand one hundred thirty-three' WHERE a=22646; UPDATE t2 SET c='fifty-three thousand forty-seven' WHERE a=22647; UPDATE t2 SET c='ninety-four thousand seven hundred fifty-four' WHERE a=22648; UPDATE t2 SET c='fifty-nine thousand four hundred ninety-four' WHERE a=22649; UPDATE t2 SET c='seven hundred seventy-four' WHERE a=22650; UPDATE t2 SET c='eighty-four thousand seven hundred thirty-five' WHERE a=22651; UPDATE t2 SET c='fifty-two thousand one hundred thirteen' WHERE a=22652; UPDATE t2 SET c='eighty thousand nine hundred fifty-eight' WHERE a=22653; UPDATE t2 SET c='seventy-five thousand four hundred eighty-one' WHERE a=22654; UPDATE t2 SET c='sixty-nine thousand eight hundred forty-six' WHERE a=22655; UPDATE t2 SET c='sixty-six thousand five hundred ninety-five' WHERE a=22656; UPDATE t2 SET c='thirty-two thousand nine hundred eighty-eight' WHERE a=22657; UPDATE t2 SET c='twenty-six thousand two hundred ninety-seven' WHERE a=22658; UPDATE t2 SET c='ninety-one thousand six hundred sixty-one' WHERE a=22659; UPDATE t2 SET c='seventy-eight thousand six hundred twenty-nine' WHERE a=22660; UPDATE t2 SET c='eighty-nine thousand ninety-one' WHERE a=22661; UPDATE t2 SET c='seventy thousand eight hundred thirty-one' WHERE a=22662; UPDATE t2 SET c='eighty-one thousand five hundred sixty-four' WHERE a=22663; UPDATE t2 SET c='seventy-seven thousand five hundred twenty-nine' WHERE a=22664; UPDATE t2 SET c='twelve thousand three hundred ninety-three' WHERE a=22665; UPDATE t2 SET c='eighty-five thousand four hundred ninety-eight' WHERE a=22666; UPDATE t2 SET c='thirty-eight thousand three' WHERE a=22667; UPDATE t2 SET c='forty-one thousand nine hundred eighty-six' WHERE a=22668; UPDATE t2 SET c='twenty-seven thousand nine hundred sixty-five' WHERE a=22669; UPDATE t2 SET c='fifty-seven thousand three hundred fifty-seven' WHERE a=22670; UPDATE t2 SET c='twenty-five thousand seven hundred ten' WHERE a=22671; UPDATE t2 SET c='fifty-nine thousand four hundred seventy-seven' WHERE a=22672; UPDATE t2 SET c='thirty-seven thousand three hundred ninety-three' WHERE a=22673; UPDATE t2 SET c='seventy-seven thousand four hundred sixty-four' WHERE a=22674; UPDATE t2 SET c='forty-four thousand nine hundred eight' WHERE a=22675; UPDATE t2 SET c='fifty-seven thousand seven hundred fourteen' WHERE a=22676; UPDATE t2 SET c='ninety-five thousand one hundred forty-eight' WHERE a=22677; UPDATE t2 SET c='forty-one thousand five hundred thirty' WHERE a=22678; UPDATE t2 SET c='sixty-five thousand eight hundred thirty-three' WHERE a=22679; UPDATE t2 SET c='ninety-nine thousand one hundred eighty-six' WHERE a=22680; UPDATE t2 SET c='twenty-five thousand sixty-three' WHERE a=22681; UPDATE t2 SET c='forty thousand two hundred seventy-five' WHERE a=22682; UPDATE t2 SET c='sixty-seven thousand forty-eight' WHERE a=22683; UPDATE t2 SET c='ninety-six thousand three hundred ninety-eight' WHERE a=22684; UPDATE t2 SET c='fourteen thousand six hundred thirty-three' WHERE a=22685; UPDATE t2 SET c='seventy-six thousand seven hundred eighty-one' WHERE a=22686; UPDATE t2 SET c='twelve thousand six hundred forty-three' WHERE a=22687; UPDATE t2 SET c='sixty-four thousand two hundred ninety-eight' WHERE a=22688; UPDATE t2 SET c='thirty-one thousand seventy-two' WHERE a=22689; UPDATE t2 SET c='sixty-five thousand six hundred ninety-one' WHERE a=22690; UPDATE t2 SET c='twenty-six thousand two hundred twenty-six' WHERE a=22691; UPDATE t2 SET c='seventy-four thousand one hundred twelve' WHERE a=22692; UPDATE t2 SET c='forty-one thousand five hundred thirteen' WHERE a=22693; UPDATE t2 SET c='thirty thousand eight hundred ten' WHERE a=22694; UPDATE t2 SET c='seventy-four thousand six hundred forty-six' WHERE a=22695; UPDATE t2 SET c='thirty-six thousand five hundred eighty-four' WHERE a=22696; UPDATE t2 SET c='thirty-five thousand three hundred seventy-nine' WHERE a=22697; UPDATE t2 SET c='thirty-five thousand seven hundred ninety' WHERE a=22698; UPDATE t2 SET c='thirteen thousand nine hundred thirty' WHERE a=22699; UPDATE t2 SET c='eighty-two thousand nine hundred thirty-six' WHERE a=22700; UPDATE t2 SET c='fifty-one thousand forty-two' WHERE a=22701; UPDATE t2 SET c='fifty-six thousand four hundred sixty' WHERE a=22702; UPDATE t2 SET c='eighteen thousand eight hundred ninety-six' WHERE a=22703; UPDATE t2 SET c='ninety-two thousand two hundred seventeen' WHERE a=22704; UPDATE t2 SET c='forty-five thousand one hundred eighty-one' WHERE a=22705; UPDATE t2 SET c='five thousand eight hundred eighty-two' WHERE a=22706; UPDATE t2 SET c='thirty-eight thousand two hundred ninety-nine' WHERE a=22707; UPDATE t2 SET c='twenty-nine thousand seven' WHERE a=22708; UPDATE t2 SET c='eighty-six thousand eight hundred thirty-two' WHERE a=22709; UPDATE t2 SET c='thirty-five thousand three hundred fifty-five' WHERE a=22710; UPDATE t2 SET c='thirty-one thousand six hundred ninety-three' WHERE a=22711; UPDATE t2 SET c='one thousand six hundred twelve' WHERE a=22712; UPDATE t2 SET c='thirty-eight thousand seven hundred sixty-three' WHERE a=22713; UPDATE t2 SET c='thirty-two thousand seven hundred nine' WHERE a=22714; UPDATE t2 SET c='eighty-four thousand nine hundred eighty-eight' WHERE a=22715; UPDATE t2 SET c='ninety-five thousand four hundred fifteen' WHERE a=22716; UPDATE t2 SET c='fifty thousand four hundred eighty-two' WHERE a=22717; UPDATE t2 SET c='two thousand seven hundred two' WHERE a=22718; UPDATE t2 SET c='nine thousand three hundred ninety-four' WHERE a=22719; UPDATE t2 SET c='thirty-two thousand nine' WHERE a=22720; UPDATE t2 SET c='one thousand eight hundred ninety-three' WHERE a=22721; UPDATE t2 SET c='sixty-one thousand two hundred four' WHERE a=22722; UPDATE t2 SET c='eighty-three thousand seven hundred sixty-nine' WHERE a=22723; UPDATE t2 SET c='twenty-four thousand six hundred forty-eight' WHERE a=22724; UPDATE t2 SET c='ninety-nine thousand two hundred fifty-five' WHERE a=22725; UPDATE t2 SET c='eighteen thousand three hundred thirty' WHERE a=22726; UPDATE t2 SET c='nineteen thousand six hundred forty-five' WHERE a=22727; UPDATE t2 SET c='ninety-four thousand four hundred eighty-one' WHERE a=22728; UPDATE t2 SET c='fifty-nine thousand eighty-six' WHERE a=22729; UPDATE t2 SET c='four thousand forty-eight' WHERE a=22730; UPDATE t2 SET c='seventy-five thousand eight hundred forty-eight' WHERE a=22731; UPDATE t2 SET c='ninety-two thousand two hundred twenty-one' WHERE a=22732; UPDATE t2 SET c='sixty-three thousand six hundred fifty-five' WHERE a=22733; UPDATE t2 SET c='fifty-two thousand four hundred ninety-eight' WHERE a=22734; UPDATE t2 SET c='fifty-six thousand seventy-two' WHERE a=22735; UPDATE t2 SET c='seventy-one thousand seven hundred thirteen' WHERE a=22736; UPDATE t2 SET c='sixty-six thousand two hundred fifteen' WHERE a=22737; UPDATE t2 SET c='forty-six thousand ten' WHERE a=22738; UPDATE t2 SET c='twenty thousand nine hundred' WHERE a=22739; UPDATE t2 SET c='twenty-three thousand three hundred thirty-six' WHERE a=22740; UPDATE t2 SET c='thirty-eight thousand eight hundred twenty-eight' WHERE a=22741; UPDATE t2 SET c='fifty thousand five hundred forty-nine' WHERE a=22742; UPDATE t2 SET c='two thousand four hundred two' WHERE a=22743; UPDATE t2 SET c='fifty-nine thousand seven hundred forty-three' WHERE a=22744; UPDATE t2 SET c='sixty-eight thousand six hundred thirty-four' WHERE a=22745; UPDATE t2 SET c='fifty-nine thousand seven hundred ninety-two' WHERE a=22746; UPDATE t2 SET c='twenty thousand six hundred six' WHERE a=22747; UPDATE t2 SET c='forty-three thousand six hundred seventy-seven' WHERE a=22748; UPDATE t2 SET c='ninety-four thousand three hundred twenty-seven' WHERE a=22749; UPDATE t2 SET c='fifty-nine thousand five hundred twenty-six' WHERE a=22750; UPDATE t2 SET c='sixty-nine thousand two hundred twenty-six' WHERE a=22751; UPDATE t2 SET c='eighty-six thousand three hundred eighty-six' WHERE a=22752; UPDATE t2 SET c='seventy-six thousand four hundred three' WHERE a=22753; UPDATE t2 SET c='four hundred twenty-five' WHERE a=22754; UPDATE t2 SET c='eighty thousand eight hundred eleven' WHERE a=22755; UPDATE t2 SET c='ninety-six thousand six hundred' WHERE a=22756; UPDATE t2 SET c='fifty thousand three hundred thirty-three' WHERE a=22757; UPDATE t2 SET c='thirty thousand three hundred twenty-nine' WHERE a=22758; UPDATE t2 SET c='seventy-eight thousand seven hundred seventeen' WHERE a=22759; UPDATE t2 SET c='eighty-three thousand eight hundred twenty-eight' WHERE a=22760; UPDATE t2 SET c='fifty thousand three hundred fifty-eight' WHERE a=22761; UPDATE t2 SET c='sixty-eight thousand three hundred twenty-three' WHERE a=22762; UPDATE t2 SET c='fifty-four thousand six hundred sixty-nine' WHERE a=22763; UPDATE t2 SET c='forty-four thousand four hundred twenty-six' WHERE a=22764; UPDATE t2 SET c='thirty-five thousand four hundred fifty-seven' WHERE a=22765; UPDATE t2 SET c='ninety-four thousand three hundred fifty-one' WHERE a=22766; UPDATE t2 SET c='seventy thousand seven hundred three' WHERE a=22767; UPDATE t2 SET c='fifty-one thousand four hundred eighty-six' WHERE a=22768; UPDATE t2 SET c='twenty-one thousand four hundred sixteen' WHERE a=22769; UPDATE t2 SET c='fifty thousand six hundred twenty-two' WHERE a=22770; UPDATE t2 SET c='seventy-six thousand three hundred twenty-three' WHERE a=22771; UPDATE t2 SET c='fifty-two thousand one hundred thirty-two' WHERE a=22772; UPDATE t2 SET c='ninety-eight thousand one hundred sixty-two' WHERE a=22773; UPDATE t2 SET c='ninety-nine thousand three hundred fifty-five' WHERE a=22774; UPDATE t2 SET c='seventy-three thousand six hundred two' WHERE a=22775; UPDATE t2 SET c='eighty-nine thousand four hundred eighty-eight' WHERE a=22776; UPDATE t2 SET c='seventy-four thousand six hundred fifteen' WHERE a=22777; UPDATE t2 SET c='twenty-nine thousand three hundred thirty-six' WHERE a=22778; UPDATE t2 SET c='seventeen thousand eight hundred forty-five' WHERE a=22779; UPDATE t2 SET c='thirty-nine thousand sixty-six' WHERE a=22780; UPDATE t2 SET c='fifty-three thousand one' WHERE a=22781; UPDATE t2 SET c='thirty-two thousand eight hundred ninety-two' WHERE a=22782; UPDATE t2 SET c='ninety-four thousand six hundred eighty-six' WHERE a=22783; UPDATE t2 SET c='seventy-three thousand two hundred one' WHERE a=22784; UPDATE t2 SET c='thirty-three thousand four hundred twenty-three' WHERE a=22785; UPDATE t2 SET c='forty-six thousand nine hundred ninety-seven' WHERE a=22786; UPDATE t2 SET c='sixty-one thousand six hundred forty-seven' WHERE a=22787; UPDATE t2 SET c='seventy-two thousand five hundred seventy-eight' WHERE a=22788; UPDATE t2 SET c='fifty thousand three hundred sixty-three' WHERE a=22789; UPDATE t2 SET c='sixty-five thousand two hundred forty-six' WHERE a=22790; UPDATE t2 SET c='sixty-seven thousand one hundred twenty-nine' WHERE a=22791; UPDATE t2 SET c='ninety-four thousand three hundred forty-one' WHERE a=22792; UPDATE t2 SET c='ninety thousand eight hundred fifty-seven' WHERE a=22793; UPDATE t2 SET c='sixteen thousand five hundred six' WHERE a=22794; UPDATE t2 SET c='ninety-five thousand eight hundred thirty-three' WHERE a=22795; UPDATE t2 SET c='forty-three thousand seven hundred eighty-three' WHERE a=22796; UPDATE t2 SET c='forty-six thousand eight hundred eleven' WHERE a=22797; UPDATE t2 SET c='seventy-seven thousand four hundred thirty-eight' WHERE a=22798; UPDATE t2 SET c='thirty-seven thousand four hundred three' WHERE a=22799; UPDATE t2 SET c='nine thousand six hundred sixty-five' WHERE a=22800; UPDATE t2 SET c='sixty-nine thousand five hundred fifty-one' WHERE a=22801; UPDATE t2 SET c='thirty thousand four hundred thirty-seven' WHERE a=22802; UPDATE t2 SET c='seventy-nine thousand seven hundred forty-seven' WHERE a=22803; UPDATE t2 SET c='fifty-one thousand one hundred eighty-seven' WHERE a=22804; UPDATE t2 SET c='twenty-seven thousand one hundred forty' WHERE a=22805; UPDATE t2 SET c='thirty-eight thousand four hundred fifty-five' WHERE a=22806; UPDATE t2 SET c='eighty-seven thousand nine hundred fifty' WHERE a=22807; UPDATE t2 SET c='ninety-four thousand six hundred forty-one' WHERE a=22808; UPDATE t2 SET c='fifty-six thousand eight hundred twenty-five' WHERE a=22809; UPDATE t2 SET c='forty-two thousand fifteen' WHERE a=22810; UPDATE t2 SET c='two thousand six hundred ten' WHERE a=22811; UPDATE t2 SET c='twenty-two thousand six hundred seventy-six' WHERE a=22812; UPDATE t2 SET c='five thousand four' WHERE a=22813; UPDATE t2 SET c='thirty-five thousand six hundred seventy-four' WHERE a=22814; UPDATE t2 SET c='ninety-five thousand nine hundred twenty-one' WHERE a=22815; UPDATE t2 SET c='ninety-seven thousand two hundred sixty-two' WHERE a=22816; UPDATE t2 SET c='forty-two thousand seven hundred eighty-three' WHERE a=22817; UPDATE t2 SET c='sixteen thousand one hundred sixty-three' WHERE a=22818; UPDATE t2 SET c='ninety-one thousand four hundred sixty-three' WHERE a=22819; UPDATE t2 SET c='seventy-four thousand six hundred sixteen' WHERE a=22820; UPDATE t2 SET c='thirty-eight thousand thirty' WHERE a=22821; UPDATE t2 SET c='fifty-one thousand eight hundred forty-six' WHERE a=22822; UPDATE t2 SET c='forty-nine thousand two hundred eighty-one' WHERE a=22823; UPDATE t2 SET c='sixty thousand five hundred fifty-one' WHERE a=22824; UPDATE t2 SET c='four thousand three hundred sixty-three' WHERE a=22825; UPDATE t2 SET c='fifty-six thousand three hundred fifty-five' WHERE a=22826; UPDATE t2 SET c='eighteen thousand four hundred' WHERE a=22827; UPDATE t2 SET c='thirty-eight thousand two hundred eighty-four' WHERE a=22828; UPDATE t2 SET c='fifty-seven thousand eight hundred eighty-eight' WHERE a=22829; UPDATE t2 SET c='eight thousand thirteen' WHERE a=22830; UPDATE t2 SET c='thirteen thousand two hundred ninety' WHERE a=22831; UPDATE t2 SET c='twenty-nine thousand nine hundred thirty-five' WHERE a=22832; UPDATE t2 SET c='twenty-one thousand five hundred ninety-five' WHERE a=22833; UPDATE t2 SET c='sixty-eight thousand six hundred five' WHERE a=22834; UPDATE t2 SET c='forty-nine thousand one hundred sixty-four' WHERE a=22835; UPDATE t2 SET c='seventy-seven thousand seven hundred seventy-nine' WHERE a=22836; UPDATE t2 SET c='fifty-four thousand three hundred twenty' WHERE a=22837; UPDATE t2 SET c='seventy-one thousand four hundred five' WHERE a=22838; UPDATE t2 SET c='forty thousand nine hundred eighty-four' WHERE a=22839; UPDATE t2 SET c='seventy-nine thousand six hundred seventy-eight' WHERE a=22840; UPDATE t2 SET c='twenty-seven thousand seven hundred eighty-four' WHERE a=22841; UPDATE t2 SET c='fifty-eight thousand two hundred thirty-four' WHERE a=22842; UPDATE t2 SET c='seventy-nine thousand three hundred ninety' WHERE a=22843; UPDATE t2 SET c='forty-five thousand five hundred twenty-six' WHERE a=22844; UPDATE t2 SET c='fifty-five thousand twenty-four' WHERE a=22845; UPDATE t2 SET c='seventy-four thousand three hundred sixty-eight' WHERE a=22846; UPDATE t2 SET c='eight hundred sixty' WHERE a=22847; UPDATE t2 SET c='ninety-seven thousand four hundred sixty-four' WHERE a=22848; UPDATE t2 SET c='twenty-nine thousand two hundred fifteen' WHERE a=22849; UPDATE t2 SET c='thirty thousand five hundred thirty-one' WHERE a=22850; UPDATE t2 SET c='nineteen thousand four hundred twenty-eight' WHERE a=22851; UPDATE t2 SET c='forty-three thousand two hundred twenty-seven' WHERE a=22852; UPDATE t2 SET c='forty-four thousand six hundred ninety-eight' WHERE a=22853; UPDATE t2 SET c='eighty-eight thousand seven hundred ninety-six' WHERE a=22854; UPDATE t2 SET c='twelve thousand three hundred forty' WHERE a=22855; UPDATE t2 SET c='forty-two thousand three hundred ninety' WHERE a=22856; UPDATE t2 SET c='sixty-three thousand five hundred fifty-four' WHERE a=22857; UPDATE t2 SET c='forty-three thousand two hundred five' WHERE a=22858; UPDATE t2 SET c='fifty thousand seven hundred four' WHERE a=22859; UPDATE t2 SET c='fifty-seven thousand five hundred eighty-five' WHERE a=22860; UPDATE t2 SET c='forty-four thousand five hundred forty-three' WHERE a=22861; UPDATE t2 SET c='eighty-four thousand seven hundred twenty-six' WHERE a=22862; UPDATE t2 SET c='sixty-eight thousand five hundred ninety-seven' WHERE a=22863; UPDATE t2 SET c='ninety-seven thousand one hundred eighty-four' WHERE a=22864; UPDATE t2 SET c='ten thousand five hundred twenty-five' WHERE a=22865; UPDATE t2 SET c='forty-three thousand forty-four' WHERE a=22866; UPDATE t2 SET c='sixty-three thousand eight hundred eighty-nine' WHERE a=22867; UPDATE t2 SET c='eighteen thousand seven hundred fifteen' WHERE a=22868; UPDATE t2 SET c='forty-four thousand four hundred sixty-five' WHERE a=22869; UPDATE t2 SET c='eighty-eight thousand two hundred thirty' WHERE a=22870; UPDATE t2 SET c='seven thousand seventy' WHERE a=22871; UPDATE t2 SET c='ninety-three thousand five hundred ninety-three' WHERE a=22872; UPDATE t2 SET c='seven thousand one hundred forty-four' WHERE a=22873; UPDATE t2 SET c='thirty-six thousand five hundred fifty-three' WHERE a=22874; UPDATE t2 SET c='seventy-one thousand seven hundred twenty-eight' WHERE a=22875; UPDATE t2 SET c='ninety-five thousand one hundred seventy-nine' WHERE a=22876; UPDATE t2 SET c='sixty-two thousand five hundred fifteen' WHERE a=22877; UPDATE t2 SET c='one thousand seven hundred sixty-three' WHERE a=22878; UPDATE t2 SET c='seventy-six thousand eight hundred seventy' WHERE a=22879; UPDATE t2 SET c='thirty-one thousand two hundred ninety-four' WHERE a=22880; UPDATE t2 SET c='sixty-two thousand nine hundred nine' WHERE a=22881; UPDATE t2 SET c='thirteen thousand six hundred seventy-one' WHERE a=22882; UPDATE t2 SET c='ninety-nine thousand four hundred sixty-nine' WHERE a=22883; UPDATE t2 SET c='thirty thousand seven hundred nine' WHERE a=22884; UPDATE t2 SET c='twelve thousand four hundred sixty-seven' WHERE a=22885; UPDATE t2 SET c='twenty-five thousand one hundred four' WHERE a=22886; UPDATE t2 SET c='thirty-eight thousand' WHERE a=22887; UPDATE t2 SET c='five thousand three hundred ninety-seven' WHERE a=22888; UPDATE t2 SET c='two thousand twenty-three' WHERE a=22889; UPDATE t2 SET c='fifty-eight thousand seven hundred seventy' WHERE a=22890; UPDATE t2 SET c='fifty-seven thousand five hundred thirty-one' WHERE a=22891; UPDATE t2 SET c='fifty-three thousand three hundred twenty-six' WHERE a=22892; UPDATE t2 SET c='eighty-two thousand eight hundred' WHERE a=22893; UPDATE t2 SET c='seventeen thousand seventy-nine' WHERE a=22894; UPDATE t2 SET c='seventy-seven thousand one hundred sixty-two' WHERE a=22895; UPDATE t2 SET c='ninety-six thousand eight hundred eighty-three' WHERE a=22896; UPDATE t2 SET c='sixty-nine thousand nine hundred sixty-nine' WHERE a=22897; UPDATE t2 SET c='ninety-two thousand nine hundred eleven' WHERE a=22898; UPDATE t2 SET c='twenty-seven thousand six hundred sixty-two' WHERE a=22899; UPDATE t2 SET c='ninety-two thousand eight hundred seventy-seven' WHERE a=22900; UPDATE t2 SET c='twenty-six thousand seven hundred seventy-nine' WHERE a=22901; UPDATE t2 SET c='twenty-one thousand forty-four' WHERE a=22902; UPDATE t2 SET c='twenty thousand seven hundred seventy-one' WHERE a=22903; UPDATE t2 SET c='fifty-one thousand five hundred eighty-nine' WHERE a=22904; UPDATE t2 SET c='twenty-nine thousand one hundred eighty-five' WHERE a=22905; UPDATE t2 SET c='sixty-six thousand seven hundred sixty-six' WHERE a=22906; UPDATE t2 SET c='ten thousand two hundred six' WHERE a=22907; UPDATE t2 SET c='forty-five thousand ninety-two' WHERE a=22908; UPDATE t2 SET c='eighty-five thousand six hundred ninety-nine' WHERE a=22909; UPDATE t2 SET c='seventy-one thousand seven hundred eighty-two' WHERE a=22910; UPDATE t2 SET c='eighty-six thousand five hundred seven' WHERE a=22911; UPDATE t2 SET c='nineteen thousand seven hundred twenty-three' WHERE a=22912; UPDATE t2 SET c='five thousand seven hundred fifty-five' WHERE a=22913; UPDATE t2 SET c='ninety-three thousand nine hundred sixty-two' WHERE a=22914; UPDATE t2 SET c='ninety thousand four hundred forty-one' WHERE a=22915; UPDATE t2 SET c='eighty-six thousand one hundred eleven' WHERE a=22916; UPDATE t2 SET c='forty-six thousand four hundred eighty-nine' WHERE a=22917; UPDATE t2 SET c='two thousand three hundred fifty-one' WHERE a=22918; UPDATE t2 SET c='ninety-five thousand four hundred ninety-four' WHERE a=22919; UPDATE t2 SET c='six thousand five hundred fifty-seven' WHERE a=22920; UPDATE t2 SET c='thirty-eight thousand eight hundred nineteen' WHERE a=22921; UPDATE t2 SET c='fifty-six thousand two hundred twenty-eight' WHERE a=22922; UPDATE t2 SET c='twenty-three thousand nine hundred thirty-six' WHERE a=22923; UPDATE t2 SET c='ninety-two thousand ten' WHERE a=22924; UPDATE t2 SET c='fifty-nine thousand one hundred thirty-eight' WHERE a=22925; UPDATE t2 SET c='ninety-three thousand six hundred twenty-one' WHERE a=22926; UPDATE t2 SET c='twenty-two thousand three hundred thirteen' WHERE a=22927; UPDATE t2 SET c='sixty-one thousand six hundred twenty-four' WHERE a=22928; UPDATE t2 SET c='eighty-six' WHERE a=22929; UPDATE t2 SET c='thirty-one thousand five hundred sixty-seven' WHERE a=22930; UPDATE t2 SET c='fifty thousand five hundred eighty-three' WHERE a=22931; UPDATE t2 SET c='sixty-four thousand seven hundred twenty-eight' WHERE a=22932; UPDATE t2 SET c='forty-six thousand six hundred sixty-two' WHERE a=22933; UPDATE t2 SET c='ninety-four thousand six hundred seventy-three' WHERE a=22934; UPDATE t2 SET c='forty-one thousand nine hundred ninety-two' WHERE a=22935; UPDATE t2 SET c='fifty-two thousand three hundred ninety-eight' WHERE a=22936; UPDATE t2 SET c='sixty-one thousand six hundred thirty' WHERE a=22937; UPDATE t2 SET c='seven thousand ninety-one' WHERE a=22938; UPDATE t2 SET c='eighty-three thousand eight hundred seventy-three' WHERE a=22939; UPDATE t2 SET c='three' WHERE a=22940; UPDATE t2 SET c='four thousand two hundred sixty-one' WHERE a=22941; UPDATE t2 SET c='ten thousand six hundred eight' WHERE a=22942; UPDATE t2 SET c='sixty-four thousand seven hundred ninety-one' WHERE a=22943; UPDATE t2 SET c='eleven thousand four hundred seventy-two' WHERE a=22944; UPDATE t2 SET c='ninety-nine thousand seven hundred forty-five' WHERE a=22945; UPDATE t2 SET c='twenty-six thousand two hundred eighteen' WHERE a=22946; UPDATE t2 SET c='one thousand two hundred sixteen' WHERE a=22947; UPDATE t2 SET c='eighty-one thousand eight hundred five' WHERE a=22948; UPDATE t2 SET c='fifty-three thousand seven hundred eighty' WHERE a=22949; UPDATE t2 SET c='ninety-five thousand nine hundred eleven' WHERE a=22950; UPDATE t2 SET c='fifty-three thousand four hundred fifty' WHERE a=22951; UPDATE t2 SET c='seventy thousand two hundred twelve' WHERE a=22952; UPDATE t2 SET c='thirty-seven thousand seventy-eight' WHERE a=22953; UPDATE t2 SET c='sixty-three thousand one hundred forty-five' WHERE a=22954; UPDATE t2 SET c='seven thousand three hundred thirty-eight' WHERE a=22955; UPDATE t2 SET c='nine thousand four hundred ninety-three' WHERE a=22956; UPDATE t2 SET c='twenty-nine thousand five hundred seventy' WHERE a=22957; UPDATE t2 SET c='thirty-seven thousand five hundred forty-four' WHERE a=22958; UPDATE t2 SET c='eighty-seven thousand six hundred one' WHERE a=22959; UPDATE t2 SET c='ninety-one thousand eight hundred' WHERE a=22960; UPDATE t2 SET c='ninety-seven thousand six hundred fifteen' WHERE a=22961; UPDATE t2 SET c='thirty-four thousand nine hundred thirty-seven' WHERE a=22962; UPDATE t2 SET c='sixty-six thousand one hundred fifty-one' WHERE a=22963; UPDATE t2 SET c='sixteen thousand eight hundred ninety-two' WHERE a=22964; UPDATE t2 SET c='nine thousand nine hundred sixty-two' WHERE a=22965; UPDATE t2 SET c='forty-four thousand five hundred fifty' WHERE a=22966; UPDATE t2 SET c='seven thousand seven hundred twenty-seven' WHERE a=22967; UPDATE t2 SET c='fifty-three thousand five hundred seventy-four' WHERE a=22968; UPDATE t2 SET c='forty-five thousand nine hundred sixty-three' WHERE a=22969; UPDATE t2 SET c='eighty-four thousand fifty-eight' WHERE a=22970; UPDATE t2 SET c='fifty-four thousand seven hundred ninety-four' WHERE a=22971; UPDATE t2 SET c='forty-three thousand six hundred thirty-nine' WHERE a=22972; UPDATE t2 SET c='sixty-one thousand seven hundred one' WHERE a=22973; UPDATE t2 SET c='seventy-one thousand two hundred eighty-eight' WHERE a=22974; UPDATE t2 SET c='forty-eight thousand six hundred ten' WHERE a=22975; UPDATE t2 SET c='sixty-nine thousand six hundred nine' WHERE a=22976; UPDATE t2 SET c='fifty-eight thousand eight hundred one' WHERE a=22977; UPDATE t2 SET c='twenty-four thousand seven hundred four' WHERE a=22978; UPDATE t2 SET c='eighty-five thousand five hundred six' WHERE a=22979; UPDATE t2 SET c='twenty-six thousand two hundred fifty-four' WHERE a=22980; UPDATE t2 SET c='seventy-three thousand three hundred thirty-nine' WHERE a=22981; UPDATE t2 SET c='fifty thousand nine hundred sixty-one' WHERE a=22982; UPDATE t2 SET c='ninety-nine thousand six hundred ninety-eight' WHERE a=22983; UPDATE t2 SET c='thirty-eight thousand one hundred thirty-one' WHERE a=22984; UPDATE t2 SET c='seventy-eight thousand five hundred seventy-six' WHERE a=22985; UPDATE t2 SET c='forty-nine thousand one hundred seventy-two' WHERE a=22986; UPDATE t2 SET c='twenty-one thousand four hundred twenty-eight' WHERE a=22987; UPDATE t2 SET c='nine thousand seven hundred twelve' WHERE a=22988; UPDATE t2 SET c='forty-eight thousand seven hundred thirty' WHERE a=22989; UPDATE t2 SET c='eighty-one thousand one hundred fifty-four' WHERE a=22990; UPDATE t2 SET c='seventy-three thousand seven hundred ninety-two' WHERE a=22991; UPDATE t2 SET c='fifty-six thousand four hundred sixty-eight' WHERE a=22992; UPDATE t2 SET c='seventy-six thousand three hundred thirty-two' WHERE a=22993; UPDATE t2 SET c='fifty-one thousand twenty' WHERE a=22994; UPDATE t2 SET c='seventy-nine thousand four hundred eight' WHERE a=22995; UPDATE t2 SET c='twenty-four thousand seven hundred seventy-eight' WHERE a=22996; UPDATE t2 SET c='twenty thousand seven hundred fifty-three' WHERE a=22997; UPDATE t2 SET c='ten thousand nine hundred forty-three' WHERE a=22998; UPDATE t2 SET c='seventeen thousand four hundred fifty-seven' WHERE a=22999; UPDATE t2 SET c='twenty-three thousand four hundred seven' WHERE a=23000; UPDATE t2 SET c='eleven thousand six hundred ninety-six' WHERE a=23001; UPDATE t2 SET c='twenty-six thousand two hundred forty-five' WHERE a=23002; UPDATE t2 SET c='ninety-five thousand four hundred seventy-six' WHERE a=23003; UPDATE t2 SET c='thirty-nine thousand three hundred sixty-six' WHERE a=23004; UPDATE t2 SET c='fifty-six thousand nine hundred ninety-nine' WHERE a=23005; UPDATE t2 SET c='seventy-eight thousand eight hundred seventy-five' WHERE a=23006; UPDATE t2 SET c='eighty-one thousand five hundred eighty-seven' WHERE a=23007; UPDATE t2 SET c='thirteen thousand three hundred twelve' WHERE a=23008; UPDATE t2 SET c='sixty thousand nine hundred ninety' WHERE a=23009; UPDATE t2 SET c='eighty-five thousand two hundred forty-three' WHERE a=23010; UPDATE t2 SET c='seventy-nine thousand eight hundred ninety-seven' WHERE a=23011; UPDATE t2 SET c='ten thousand six hundred fifty-two' WHERE a=23012; UPDATE t2 SET c='seventy-three thousand four hundred eleven' WHERE a=23013; UPDATE t2 SET c='eighty-two thousand four hundred fifty' WHERE a=23014; UPDATE t2 SET c='twelve thousand six hundred thirty-one' WHERE a=23015; UPDATE t2 SET c='nineteen thousand one hundred fifty-one' WHERE a=23016; UPDATE t2 SET c='forty-two thousand seven hundred nine' WHERE a=23017; UPDATE t2 SET c='three thousand seven hundred twenty-one' WHERE a=23018; UPDATE t2 SET c='sixty-seven thousand six hundred ninety-three' WHERE a=23019; UPDATE t2 SET c='thirty-five thousand two hundred fifty-eight' WHERE a=23020; UPDATE t2 SET c='fifty-five thousand two hundred twenty-six' WHERE a=23021; UPDATE t2 SET c='fifty-four thousand six hundred thirty-nine' WHERE a=23022; UPDATE t2 SET c='ninety-seven thousand six hundred thirteen' WHERE a=23023; UPDATE t2 SET c='twenty-seven thousand two hundred thirty-six' WHERE a=23024; UPDATE t2 SET c='forty-six thousand four hundred eleven' WHERE a=23025; UPDATE t2 SET c='six thousand five hundred twenty' WHERE a=23026; UPDATE t2 SET c='three thousand three hundred thirty-two' WHERE a=23027; UPDATE t2 SET c='ninety-two thousand forty-four' WHERE a=23028; UPDATE t2 SET c='thirty-one thousand sixty-seven' WHERE a=23029; UPDATE t2 SET c='fifty-five thousand one hundred seventy-one' WHERE a=23030; UPDATE t2 SET c='eighty-three thousand nine hundred' WHERE a=23031; UPDATE t2 SET c='forty-three thousand seven hundred sixty-nine' WHERE a=23032; UPDATE t2 SET c='seventy-four thousand three hundred six' WHERE a=23033; UPDATE t2 SET c='sixty-nine thousand eighty-five' WHERE a=23034; UPDATE t2 SET c='fifty thousand fifty-four' WHERE a=23035; UPDATE t2 SET c='eighty-five thousand two hundred thirty-six' WHERE a=23036; UPDATE t2 SET c='twenty-two thousand three hundred fifty-eight' WHERE a=23037; UPDATE t2 SET c='fifty-seven thousand nine hundred fifty-three' WHERE a=23038; UPDATE t2 SET c='sixty-eight thousand three hundred forty-two' WHERE a=23039; UPDATE t2 SET c='sixty-three thousand six hundred twenty-four' WHERE a=23040; UPDATE t2 SET c='fifty-two thousand one hundred ninety-one' WHERE a=23041; UPDATE t2 SET c='forty-five thousand seven hundred thirteen' WHERE a=23042; UPDATE t2 SET c='forty thousand fifteen' WHERE a=23043; UPDATE t2 SET c='fifty-three thousand one hundred eighty-two' WHERE a=23044; UPDATE t2 SET c='thirty-nine thousand eight hundred twenty-six' WHERE a=23045; UPDATE t2 SET c='fifty-eight thousand six hundred sixty-one' WHERE a=23046; UPDATE t2 SET c='twenty-three thousand eight hundred forty-two' WHERE a=23047; UPDATE t2 SET c='twenty-four thousand five hundred five' WHERE a=23048; UPDATE t2 SET c='fifty-four thousand one hundred twenty-nine' WHERE a=23049; UPDATE t2 SET c='sixty-eight thousand four hundred eighty' WHERE a=23050; UPDATE t2 SET c='twenty-nine thousand one hundred sixty-seven' WHERE a=23051; UPDATE t2 SET c='thirty-six thousand two hundred sixty-eight' WHERE a=23052; UPDATE t2 SET c='twenty-nine thousand seven hundred eight' WHERE a=23053; UPDATE t2 SET c='one thousand four hundred eleven' WHERE a=23054; UPDATE t2 SET c='seven thousand three hundred seventy-eight' WHERE a=23055; UPDATE t2 SET c='ninety-seven thousand two hundred two' WHERE a=23056; UPDATE t2 SET c='seventy-three thousand one hundred thirty-one' WHERE a=23057; UPDATE t2 SET c='sixty-two thousand three hundred forty-five' WHERE a=23058; UPDATE t2 SET c='sixty-five thousand eight hundred eight' WHERE a=23059; UPDATE t2 SET c='sixty-five thousand six hundred seventy-seven' WHERE a=23060; UPDATE t2 SET c='ninety-seven thousand five hundred six' WHERE a=23061; UPDATE t2 SET c='thirty-seven thousand one hundred nine' WHERE a=23062; UPDATE t2 SET c='ninety-nine thousand seven hundred six' WHERE a=23063; UPDATE t2 SET c='two thousand two hundred fifteen' WHERE a=23064; UPDATE t2 SET c='sixty thousand eight hundred ninety-five' WHERE a=23065; UPDATE t2 SET c='twenty-one thousand five hundred eighty' WHERE a=23066; UPDATE t2 SET c='twenty-five thousand nine hundred ninety-one' WHERE a=23067; UPDATE t2 SET c='seventy-one thousand one hundred sixty-two' WHERE a=23068; UPDATE t2 SET c='nineteen thousand two hundred eighty-six' WHERE a=23069; UPDATE t2 SET c='thirty-two thousand three hundred ninety-six' WHERE a=23070; UPDATE t2 SET c='twenty-one thousand three hundred nineteen' WHERE a=23071; UPDATE t2 SET c='fifty-three thousand seven hundred ninety-nine' WHERE a=23072; UPDATE t2 SET c='ninety-two thousand five hundred sixty-four' WHERE a=23073; UPDATE t2 SET c='ninety-five thousand ninety-five' WHERE a=23074; UPDATE t2 SET c='seventy-three thousand three hundred seventy-three' WHERE a=23075; UPDATE t2 SET c='forty-eight thousand two hundred ninety-nine' WHERE a=23076; UPDATE t2 SET c='twenty-five thousand nine hundred sixty-four' WHERE a=23077; UPDATE t2 SET c='seventy-three thousand six hundred sixty' WHERE a=23078; UPDATE t2 SET c='thirty-six thousand seven hundred thirty-five' WHERE a=23079; UPDATE t2 SET c='seven thousand five hundred seventy' WHERE a=23080; UPDATE t2 SET c='seven thousand two hundred thirty' WHERE a=23081; UPDATE t2 SET c='sixty-one thousand four hundred sixty-five' WHERE a=23082; UPDATE t2 SET c='forty-five thousand eight hundred thirty-three' WHERE a=23083; UPDATE t2 SET c='eighty-five thousand ninety-four' WHERE a=23084; UPDATE t2 SET c='seventy-six thousand five hundred ninety-six' WHERE a=23085; UPDATE t2 SET c='sixty-four thousand four hundred thirty-seven' WHERE a=23086; UPDATE t2 SET c='eighty thousand nine hundred sixty-five' WHERE a=23087; UPDATE t2 SET c='eighty-six thousand eight hundred twenty-one' WHERE a=23088; UPDATE t2 SET c='thirty-eight thousand one hundred eighty-seven' WHERE a=23089; UPDATE t2 SET c='sixteen thousand seventeen' WHERE a=23090; UPDATE t2 SET c='sixty thousand one hundred eighty-six' WHERE a=23091; UPDATE t2 SET c='fifty-four thousand one hundred fifty-four' WHERE a=23092; UPDATE t2 SET c='forty-three thousand four hundred seventy' WHERE a=23093; UPDATE t2 SET c='forty-six thousand seven hundred thirty-three' WHERE a=23094; UPDATE t2 SET c='fifty-six thousand nine hundred thirty-eight' WHERE a=23095; UPDATE t2 SET c='thirteen thousand four hundred forty-three' WHERE a=23096; UPDATE t2 SET c='sixty-three thousand seven hundred forty-two' WHERE a=23097; UPDATE t2 SET c='five thousand three hundred five' WHERE a=23098; UPDATE t2 SET c='fifty-three thousand nine hundred seventy-four' WHERE a=23099; UPDATE t2 SET c='sixty-two thousand thirty-eight' WHERE a=23100; UPDATE t2 SET c='ninety-four thousand four' WHERE a=23101; UPDATE t2 SET c='sixty-four thousand three hundred ninety-five' WHERE a=23102; UPDATE t2 SET c='nine thousand three hundred ninety-five' WHERE a=23103; UPDATE t2 SET c='thirty-three thousand seven hundred eighty-eight' WHERE a=23104; UPDATE t2 SET c='twenty-three thousand sixty-six' WHERE a=23105; UPDATE t2 SET c='eighty-two thousand five hundred thirty-six' WHERE a=23106; UPDATE t2 SET c='fifty-four thousand one hundred thirty-seven' WHERE a=23107; UPDATE t2 SET c='seventy thousand five hundred seventy-six' WHERE a=23108; UPDATE t2 SET c='fifty-nine thousand nine hundred ninety-seven' WHERE a=23109; UPDATE t2 SET c='thirty-seven thousand six hundred sixty-three' WHERE a=23110; UPDATE t2 SET c='fifty-seven thousand sixty-six' WHERE a=23111; UPDATE t2 SET c='eleven thousand three hundred thirty' WHERE a=23112; UPDATE t2 SET c='seventy-two thousand three hundred sixty-nine' WHERE a=23113; UPDATE t2 SET c='eighty-two thousand one hundred thirty-nine' WHERE a=23114; UPDATE t2 SET c='eighty-three thousand nine hundred thirty-one' WHERE a=23115; UPDATE t2 SET c='twenty-eight thousand three hundred ninety-six' WHERE a=23116; UPDATE t2 SET c='twenty-six thousand eight hundred twenty-six' WHERE a=23117; UPDATE t2 SET c='seventy-five thousand three hundred sixty-three' WHERE a=23118; UPDATE t2 SET c='thirty-four thousand two hundred seventy-five' WHERE a=23119; UPDATE t2 SET c='sixty-four thousand one hundred ninety-two' WHERE a=23120; UPDATE t2 SET c='twelve thousand three hundred twenty-six' WHERE a=23121; UPDATE t2 SET c='fifty-five thousand two hundred three' WHERE a=23122; UPDATE t2 SET c='sixty-three thousand four hundred ten' WHERE a=23123; UPDATE t2 SET c='seventeen thousand eight hundred fifty-one' WHERE a=23124; UPDATE t2 SET c='forty thousand eighty-one' WHERE a=23125; UPDATE t2 SET c='one thousand three hundred twenty-five' WHERE a=23126; UPDATE t2 SET c='forty-four thousand five hundred nineteen' WHERE a=23127; UPDATE t2 SET c='twenty-three thousand nine hundred fifty-nine' WHERE a=23128; UPDATE t2 SET c='ninety-nine thousand six hundred eleven' WHERE a=23129; UPDATE t2 SET c='forty-two thousand four hundred fifty-five' WHERE a=23130; UPDATE t2 SET c='seventy-two thousand five hundred ninety' WHERE a=23131; UPDATE t2 SET c='sixty-eight thousand nine hundred ninety-nine' WHERE a=23132; UPDATE t2 SET c='thirty-two thousand five hundred eight' WHERE a=23133; UPDATE t2 SET c='forty-one thousand one hundred one' WHERE a=23134; UPDATE t2 SET c='twenty-five thousand eight hundred twenty-six' WHERE a=23135; UPDATE t2 SET c='thirty-nine thousand five hundred seventy-six' WHERE a=23136; UPDATE t2 SET c='twenty-six thousand fifteen' WHERE a=23137; UPDATE t2 SET c='forty-seven thousand nine hundred nineteen' WHERE a=23138; UPDATE t2 SET c='ninety-nine thousand six hundred eleven' WHERE a=23139; UPDATE t2 SET c='forty thousand seven hundred thirty-two' WHERE a=23140; UPDATE t2 SET c='thirty-three thousand five hundred fifteen' WHERE a=23141; UPDATE t2 SET c='ninety-one thousand seventy-eight' WHERE a=23142; UPDATE t2 SET c='fifteen thousand six hundred seventy-five' WHERE a=23143; UPDATE t2 SET c='ninety-eight thousand seventy-one' WHERE a=23144; UPDATE t2 SET c='forty-one thousand two hundred twenty-six' WHERE a=23145; UPDATE t2 SET c='ninety-five thousand five hundred sixty-seven' WHERE a=23146; UPDATE t2 SET c='twenty-five thousand nine hundred forty-two' WHERE a=23147; UPDATE t2 SET c='forty-four thousand five hundred ten' WHERE a=23148; UPDATE t2 SET c='seventy-five thousand two hundred sixty-seven' WHERE a=23149; UPDATE t2 SET c='twenty-five thousand two hundred forty-two' WHERE a=23150; UPDATE t2 SET c='twenty-one thousand seven hundred forty' WHERE a=23151; UPDATE t2 SET c='four thousand five hundred forty-nine' WHERE a=23152; UPDATE t2 SET c='twenty-seven thousand eight hundred sixty-one' WHERE a=23153; UPDATE t2 SET c='twenty-one thousand seven hundred seventy-one' WHERE a=23154; UPDATE t2 SET c='eight thousand five hundred ninety-six' WHERE a=23155; UPDATE t2 SET c='forty-three thousand six hundred twenty-four' WHERE a=23156; UPDATE t2 SET c='nine thousand five hundred nine' WHERE a=23157; UPDATE t2 SET c='twenty-two thousand six hundred forty-nine' WHERE a=23158; UPDATE t2 SET c='eight thousand three hundred eighteen' WHERE a=23159; UPDATE t2 SET c='fifty-two thousand four hundred eighty-nine' WHERE a=23160; UPDATE t2 SET c='thirty-four thousand nine hundred seventy-four' WHERE a=23161; UPDATE t2 SET c='forty-five thousand five hundred forty-three' WHERE a=23162; UPDATE t2 SET c='thirty-two thousand six hundred forty-four' WHERE a=23163; UPDATE t2 SET c='eighty-two thousand three hundred twenty-six' WHERE a=23164; UPDATE t2 SET c='twenty-six thousand thirty-four' WHERE a=23165; UPDATE t2 SET c='two thousand seven hundred forty-five' WHERE a=23166; UPDATE t2 SET c='thirty-five thousand nine hundred six' WHERE a=23167; UPDATE t2 SET c='eighty thousand six hundred eighty-five' WHERE a=23168; UPDATE t2 SET c='seven thousand seven hundred eleven' WHERE a=23169; UPDATE t2 SET c='ninety-eight thousand eight hundred seven' WHERE a=23170; UPDATE t2 SET c='eighty-five thousand two hundred forty-two' WHERE a=23171; UPDATE t2 SET c='forty-three thousand two hundred four' WHERE a=23172; UPDATE t2 SET c='twenty-one thousand two hundred eighty-nine' WHERE a=23173; UPDATE t2 SET c='ninety thousand six hundred sixteen' WHERE a=23174; UPDATE t2 SET c='ninety-eight thousand three hundred four' WHERE a=23175; UPDATE t2 SET c='twenty-four thousand seven hundred ninety-one' WHERE a=23176; UPDATE t2 SET c='four thousand two hundred sixty' WHERE a=23177; UPDATE t2 SET c='twenty-eight thousand three hundred forty-one' WHERE a=23178; UPDATE t2 SET c='two thousand eight hundred thirty-one' WHERE a=23179; UPDATE t2 SET c='ninety-five thousand thirty-five' WHERE a=23180; UPDATE t2 SET c='twenty-four thousand four hundred seventy-five' WHERE a=23181; UPDATE t2 SET c='eighty-six thousand six hundred one' WHERE a=23182; UPDATE t2 SET c='eight thousand six hundred eighty' WHERE a=23183; UPDATE t2 SET c='fifty-three thousand three hundred nineteen' WHERE a=23184; UPDATE t2 SET c='ninety-three thousand eight hundred twenty-three' WHERE a=23185; UPDATE t2 SET c='seventy-one thousand one hundred forty-six' WHERE a=23186; UPDATE t2 SET c='fifty-five thousand nine hundred ninety-eight' WHERE a=23187; UPDATE t2 SET c='nine thousand five hundred fifty-five' WHERE a=23188; UPDATE t2 SET c='seventy-six thousand eight hundred thirty-seven' WHERE a=23189; UPDATE t2 SET c='sixty thousand four hundred thirty-one' WHERE a=23190; UPDATE t2 SET c='forty-five thousand forty-three' WHERE a=23191; UPDATE t2 SET c='seventy-seven thousand nine hundred eighty-two' WHERE a=23192; UPDATE t2 SET c='sixty-five thousand eight hundred eleven' WHERE a=23193; UPDATE t2 SET c='seventy-five thousand three hundred seventeen' WHERE a=23194; UPDATE t2 SET c='twenty-three thousand six hundred eight' WHERE a=23195; UPDATE t2 SET c='sixty-four thousand two hundred forty-one' WHERE a=23196; UPDATE t2 SET c='eighty-five thousand three hundred twenty-eight' WHERE a=23197; UPDATE t2 SET c='thirty-eight thousand eight hundred thirteen' WHERE a=23198; UPDATE t2 SET c='fifty-four thousand two' WHERE a=23199; UPDATE t2 SET c='thirty-nine thousand ninety-eight' WHERE a=23200; UPDATE t2 SET c='eighty-nine thousand six hundred thirty-seven' WHERE a=23201; UPDATE t2 SET c='forty-eight thousand one hundred sixty-one' WHERE a=23202; UPDATE t2 SET c='fifty-four thousand one hundred twenty-eight' WHERE a=23203; UPDATE t2 SET c='seventy-nine thousand four hundred forty-three' WHERE a=23204; UPDATE t2 SET c='forty-seven thousand six hundred ten' WHERE a=23205; UPDATE t2 SET c='forty-two thousand fifty-nine' WHERE a=23206; UPDATE t2 SET c='twenty-five thousand nine hundred sixty' WHERE a=23207; UPDATE t2 SET c='eighty-one thousand nine hundred eighty' WHERE a=23208; UPDATE t2 SET c='seventy-eight thousand two hundred six' WHERE a=23209; UPDATE t2 SET c='fifty-five thousand three hundred eighty-four' WHERE a=23210; UPDATE t2 SET c='nineteen thousand one' WHERE a=23211; UPDATE t2 SET c='thirty-three thousand eight hundred one' WHERE a=23212; UPDATE t2 SET c='ninety-five thousand nine hundred eight' WHERE a=23213; UPDATE t2 SET c='seventy-three thousand eight hundred seventy-five' WHERE a=23214; UPDATE t2 SET c='sixty thousand eight hundred twelve' WHERE a=23215; UPDATE t2 SET c='one hundred fifty-one' WHERE a=23216; UPDATE t2 SET c='ninety-five thousand four hundred ninety-eight' WHERE a=23217; UPDATE t2 SET c='eighty-seven thousand five hundred ninety-eight' WHERE a=23218; UPDATE t2 SET c='eighty-seven thousand four hundred twenty-nine' WHERE a=23219; UPDATE t2 SET c='thirty-eight thousand seven hundred five' WHERE a=23220; UPDATE t2 SET c='sixty-three thousand one hundred seventy-one' WHERE a=23221; UPDATE t2 SET c='twenty-six thousand eighty-one' WHERE a=23222; UPDATE t2 SET c='twenty-three thousand eight hundred seventy-four' WHERE a=23223; UPDATE t2 SET c='eighty thousand five hundred forty-five' WHERE a=23224; UPDATE t2 SET c='ninety thousand seven' WHERE a=23225; UPDATE t2 SET c='eighty-five thousand eight hundred eighty-seven' WHERE a=23226; UPDATE t2 SET c='twenty-eight thousand four hundred forty-seven' WHERE a=23227; UPDATE t2 SET c='sixty-nine thousand seven hundred seventy-seven' WHERE a=23228; UPDATE t2 SET c='three thousand two hundred sixty-eight' WHERE a=23229; UPDATE t2 SET c='twenty-three thousand five hundred thirty-four' WHERE a=23230; UPDATE t2 SET c='ninety-one thousand one hundred nine' WHERE a=23231; UPDATE t2 SET c='ninety-four thousand three hundred thirty-four' WHERE a=23232; UPDATE t2 SET c='forty-seven thousand three hundred one' WHERE a=23233; UPDATE t2 SET c='seventeen thousand seventeen' WHERE a=23234; UPDATE t2 SET c='sixty-three thousand five hundred forty-nine' WHERE a=23235; UPDATE t2 SET c='sixty-seven thousand eight hundred fifty-three' WHERE a=23236; UPDATE t2 SET c='fifty-two thousand five' WHERE a=23237; UPDATE t2 SET c='sixteen thousand six hundred fifty-one' WHERE a=23238; UPDATE t2 SET c='thirty-one thousand one hundred seventy-three' WHERE a=23239; UPDATE t2 SET c='ninety-one thousand five hundred sixty-two' WHERE a=23240; UPDATE t2 SET c='sixty-six thousand five hundred fifty-two' WHERE a=23241; UPDATE t2 SET c='sixteen thousand eight hundred ninety-seven' WHERE a=23242; UPDATE t2 SET c='ninety-four thousand forty-one' WHERE a=23243; UPDATE t2 SET c='ninety-five thousand three hundred ninety-one' WHERE a=23244; UPDATE t2 SET c='nineteen thousand one hundred seven' WHERE a=23245; UPDATE t2 SET c='nine thousand six hundred twenty-three' WHERE a=23246; UPDATE t2 SET c='thirty-seven thousand eight hundred ninety-four' WHERE a=23247; UPDATE t2 SET c='ninety thousand nine hundred ninety-seven' WHERE a=23248; UPDATE t2 SET c='forty-four thousand nine hundred seventeen' WHERE a=23249; UPDATE t2 SET c='forty-three thousand seven hundred fifty-three' WHERE a=23250; UPDATE t2 SET c='fifty thousand one hundred thirty-seven' WHERE a=23251; UPDATE t2 SET c='seventy thousand five hundred forty-seven' WHERE a=23252; UPDATE t2 SET c='sixty-eight thousand six hundred ninety-three' WHERE a=23253; UPDATE t2 SET c='sixty-one thousand two hundred twenty-five' WHERE a=23254; UPDATE t2 SET c='one thousand seven hundred sixteen' WHERE a=23255; UPDATE t2 SET c='fifty-three thousand four hundred forty' WHERE a=23256; UPDATE t2 SET c='eighty-five thousand four hundred eighty-two' WHERE a=23257; UPDATE t2 SET c='fourteen thousand five hundred seventy-one' WHERE a=23258; UPDATE t2 SET c='seventy-one thousand two hundred sixty-four' WHERE a=23259; UPDATE t2 SET c='eighty-nine thousand two hundred eighty-seven' WHERE a=23260; UPDATE t2 SET c='twenty-six thousand two hundred six' WHERE a=23261; UPDATE t2 SET c='thirty-eight thousand eight hundred ninety-four' WHERE a=23262; UPDATE t2 SET c='fifty-six thousand six hundred sixty' WHERE a=23263; UPDATE t2 SET c='twenty-six thousand five hundred ninety-six' WHERE a=23264; UPDATE t2 SET c='forty-four thousand four hundred seven' WHERE a=23265; UPDATE t2 SET c='fifty-four thousand four hundred thirty' WHERE a=23266; UPDATE t2 SET c='eighty-one thousand three hundred forty' WHERE a=23267; UPDATE t2 SET c='eleven thousand ninety-eight' WHERE a=23268; UPDATE t2 SET c='fifty-seven thousand eight hundred eighty-six' WHERE a=23269; UPDATE t2 SET c='four thousand six hundred forty-two' WHERE a=23270; UPDATE t2 SET c='forty-six thousand five hundred eighteen' WHERE a=23271; UPDATE t2 SET c='sixty-seven thousand two hundred twenty-seven' WHERE a=23272; UPDATE t2 SET c='seventy-six thousand three hundred sixteen' WHERE a=23273; UPDATE t2 SET c='sixty-nine thousand six hundred thirty-seven' WHERE a=23274; UPDATE t2 SET c='eight thousand three hundred forty-two' WHERE a=23275; UPDATE t2 SET c='eighty-nine thousand seven hundred twenty-three' WHERE a=23276; UPDATE t2 SET c='thirteen thousand two hundred seven' WHERE a=23277; UPDATE t2 SET c='ten thousand five hundred fifty-four' WHERE a=23278; UPDATE t2 SET c='ninety-seven thousand two hundred forty-eight' WHERE a=23279; UPDATE t2 SET c='two thousand three hundred ninety-three' WHERE a=23280; UPDATE t2 SET c='twenty-three thousand one hundred two' WHERE a=23281; UPDATE t2 SET c='sixty-nine thousand four hundred eighty-eight' WHERE a=23282; UPDATE t2 SET c='seventy-seven thousand five hundred forty-five' WHERE a=23283; UPDATE t2 SET c='seventy thousand six hundred sixteen' WHERE a=23284; UPDATE t2 SET c='fifty-seven thousand eighty-two' WHERE a=23285; UPDATE t2 SET c='six thousand eight hundred eighty-two' WHERE a=23286; UPDATE t2 SET c='twenty-one thousand seven hundred twenty-one' WHERE a=23287; UPDATE t2 SET c='thirty-three thousand six hundred forty-two' WHERE a=23288; UPDATE t2 SET c='seventy-one thousand four hundred eighty-nine' WHERE a=23289; UPDATE t2 SET c='sixty-seven thousand seven hundred thirty-five' WHERE a=23290; UPDATE t2 SET c='fifty-three thousand two hundred forty-five' WHERE a=23291; UPDATE t2 SET c='ninety-eight thousand fourteen' WHERE a=23292; UPDATE t2 SET c='fifty-one thousand five hundred thirty-eight' WHERE a=23293; UPDATE t2 SET c='eighty-four thousand nine hundred fifty-five' WHERE a=23294; UPDATE t2 SET c='six thousand four hundred three' WHERE a=23295; UPDATE t2 SET c='seventy-three thousand four hundred twenty-one' WHERE a=23296; UPDATE t2 SET c='fifty-nine thousand nine hundred eighty-one' WHERE a=23297; UPDATE t2 SET c='seventy-two thousand five hundred fifty-eight' WHERE a=23298; UPDATE t2 SET c='seventy-nine thousand three hundred fifty-eight' WHERE a=23299; UPDATE t2 SET c='thirty-eight thousand five hundred eighty-seven' WHERE a=23300; UPDATE t2 SET c='seventy-eight thousand five hundred fifty-four' WHERE a=23301; UPDATE t2 SET c='eighty-six thousand six hundred twenty-six' WHERE a=23302; UPDATE t2 SET c='sixty-nine thousand two hundred thirty-seven' WHERE a=23303; UPDATE t2 SET c='fifty-two thousand two hundred ninety-eight' WHERE a=23304; UPDATE t2 SET c='three thousand eight hundred seven' WHERE a=23305; UPDATE t2 SET c='fifty thousand six hundred eighty-four' WHERE a=23306; UPDATE t2 SET c='eight hundred ninety-four' WHERE a=23307; UPDATE t2 SET c='thirty-five thousand nine hundred ninety-seven' WHERE a=23308; UPDATE t2 SET c='seventy-one thousand one hundred twenty-six' WHERE a=23309; UPDATE t2 SET c='sixty-three thousand eighty-seven' WHERE a=23310; UPDATE t2 SET c='seventy-three thousand eight hundred sixteen' WHERE a=23311; UPDATE t2 SET c='sixty-one thousand nine hundred eighty-eight' WHERE a=23312; UPDATE t2 SET c='eighty-seven thousand two hundred seventy' WHERE a=23313; UPDATE t2 SET c='sixty-four thousand six hundred ten' WHERE a=23314; UPDATE t2 SET c='twenty-nine thousand ten' WHERE a=23315; UPDATE t2 SET c='eighteen thousand one hundred thirty-two' WHERE a=23316; UPDATE t2 SET c='forty-one thousand two hundred eighty-three' WHERE a=23317; UPDATE t2 SET c='sixty-seven thousand one hundred fifty' WHERE a=23318; UPDATE t2 SET c='seventy-seven thousand nine hundred forty-nine' WHERE a=23319; UPDATE t2 SET c='twenty-one thousand nine hundred fourteen' WHERE a=23320; UPDATE t2 SET c='eighty-five thousand forty-one' WHERE a=23321; UPDATE t2 SET c='twenty-five thousand seven hundred thirty-nine' WHERE a=23322; UPDATE t2 SET c='twelve thousand ninety-five' WHERE a=23323; UPDATE t2 SET c='seventy-eight thousand two hundred eighty-two' WHERE a=23324; UPDATE t2 SET c='forty-seven thousand twenty-eight' WHERE a=23325; UPDATE t2 SET c='twenty-four thousand eight hundred twenty-five' WHERE a=23326; UPDATE t2 SET c='thirty thousand eight hundred eighteen' WHERE a=23327; UPDATE t2 SET c='seventy thousand eight hundred twenty-two' WHERE a=23328; UPDATE t2 SET c='nine thousand two hundred forty-one' WHERE a=23329; UPDATE t2 SET c='forty-four thousand four hundred forty-seven' WHERE a=23330; UPDATE t2 SET c='ninety-seven thousand four hundred sixteen' WHERE a=23331; UPDATE t2 SET c='forty-three thousand two hundred thirty' WHERE a=23332; UPDATE t2 SET c='sixty-seven thousand two hundred fifty-nine' WHERE a=23333; UPDATE t2 SET c='ninety-four thousand four hundred fourteen' WHERE a=23334; UPDATE t2 SET c='seventy-three thousand eight hundred twenty-eight' WHERE a=23335; UPDATE t2 SET c='seventy-six thousand three hundred fifty' WHERE a=23336; UPDATE t2 SET c='twenty-four thousand two hundred fifty-eight' WHERE a=23337; UPDATE t2 SET c='sixty-three thousand nine hundred sixty-four' WHERE a=23338; UPDATE t2 SET c='sixty-two thousand six hundred seventy-nine' WHERE a=23339; UPDATE t2 SET c='sixty-one thousand four hundred eighty-one' WHERE a=23340; UPDATE t2 SET c='forty-seven thousand four' WHERE a=23341; UPDATE t2 SET c='ninety-one thousand four hundred twelve' WHERE a=23342; UPDATE t2 SET c='thirty-three thousand four hundred twenty' WHERE a=23343; UPDATE t2 SET c='sixteen thousand five hundred eighty-eight' WHERE a=23344; UPDATE t2 SET c='thirty-two thousand one hundred thirty-three' WHERE a=23345; UPDATE t2 SET c='nine thousand one hundred seventy-four' WHERE a=23346; UPDATE t2 SET c='thirteen thousand sixty-two' WHERE a=23347; UPDATE t2 SET c='eighty-one thousand sixty-eight' WHERE a=23348; UPDATE t2 SET c='forty-nine thousand nine hundred twenty-seven' WHERE a=23349; UPDATE t2 SET c='thirty-five thousand twenty-four' WHERE a=23350; UPDATE t2 SET c='eighty-eight thousand three hundred' WHERE a=23351; UPDATE t2 SET c='forty-two thousand four hundred twenty-nine' WHERE a=23352; UPDATE t2 SET c='eighty-one thousand four hundred ninety-one' WHERE a=23353; UPDATE t2 SET c='five thousand seven hundred nine' WHERE a=23354; UPDATE t2 SET c='seventy thousand seven hundred two' WHERE a=23355; UPDATE t2 SET c='seventy-seven thousand six hundred forty-two' WHERE a=23356; UPDATE t2 SET c='sixteen thousand ninety-eight' WHERE a=23357; UPDATE t2 SET c='twenty-seven thousand seven hundred twenty-seven' WHERE a=23358; UPDATE t2 SET c='eighteen thousand seven hundred sixty-five' WHERE a=23359; UPDATE t2 SET c='twenty thousand seven hundred sixty-five' WHERE a=23360; UPDATE t2 SET c='ninety-eight thousand seven hundred ninety-five' WHERE a=23361; UPDATE t2 SET c='eighty-four thousand eighty-six' WHERE a=23362; UPDATE t2 SET c='eighty-five thousand eight hundred twenty-two' WHERE a=23363; UPDATE t2 SET c='five thousand four hundred forty-eight' WHERE a=23364; UPDATE t2 SET c='fifty-eight thousand two hundred thirty' WHERE a=23365; UPDATE t2 SET c='thirty-six thousand eight hundred one' WHERE a=23366; UPDATE t2 SET c='twenty-two thousand six hundred seventy' WHERE a=23367; UPDATE t2 SET c='sixteen thousand three hundred seventy-seven' WHERE a=23368; UPDATE t2 SET c='thirty thousand one hundred seventy-three' WHERE a=23369; UPDATE t2 SET c='ninety-nine thousand four hundred seventy-seven' WHERE a=23370; UPDATE t2 SET c='forty-four thousand nine hundred sixty-one' WHERE a=23371; UPDATE t2 SET c='seventeen thousand eight hundred twenty-three' WHERE a=23372; UPDATE t2 SET c='sixty-one thousand eight hundred fifty-four' WHERE a=23373; UPDATE t2 SET c='fifty thousand eight hundred twenty-five' WHERE a=23374; UPDATE t2 SET c='forty-six thousand six hundred sixty-one' WHERE a=23375; UPDATE t2 SET c='eighty-one thousand forty-seven' WHERE a=23376; UPDATE t2 SET c='twenty-six thousand four hundred six' WHERE a=23377; UPDATE t2 SET c='sixty-nine thousand nine hundred fifty-one' WHERE a=23378; UPDATE t2 SET c='fifty-seven thousand four hundred four' WHERE a=23379; UPDATE t2 SET c='eighty-nine thousand one hundred sixty-four' WHERE a=23380; UPDATE t2 SET c='twelve thousand nine hundred eighty-eight' WHERE a=23381; UPDATE t2 SET c='ninety-seven thousand six hundred eighty-eight' WHERE a=23382; UPDATE t2 SET c='forty thousand seven hundred sixty-five' WHERE a=23383; UPDATE t2 SET c='thirteen thousand seven hundred ninety-nine' WHERE a=23384; UPDATE t2 SET c='fifty-nine thousand one hundred seventy-seven' WHERE a=23385; UPDATE t2 SET c='seventy-one thousand one hundred fifty-seven' WHERE a=23386; UPDATE t2 SET c='forty-one thousand five hundred eighty-four' WHERE a=23387; UPDATE t2 SET c='ninety-two thousand nine hundred forty-eight' WHERE a=23388; UPDATE t2 SET c='forty-eight thousand fifty-three' WHERE a=23389; UPDATE t2 SET c='ninety-nine thousand seven hundred fourteen' WHERE a=23390; UPDATE t2 SET c='ninety-one thousand eight hundred fifty-three' WHERE a=23391; UPDATE t2 SET c='forty-one thousand two hundred ninety-five' WHERE a=23392; UPDATE t2 SET c='three thousand eight hundred fifty-five' WHERE a=23393; UPDATE t2 SET c='twenty-seven thousand six hundred ten' WHERE a=23394; UPDATE t2 SET c='thirty-seven thousand twenty-eight' WHERE a=23395; UPDATE t2 SET c='eighty thousand nine hundred sixty-eight' WHERE a=23396; UPDATE t2 SET c='sixty-three thousand three hundred six' WHERE a=23397; UPDATE t2 SET c='fifty-six thousand five hundred thirty-two' WHERE a=23398; UPDATE t2 SET c='six thousand nine hundred thirty-four' WHERE a=23399; UPDATE t2 SET c='twenty-five thousand one hundred twenty-five' WHERE a=23400; UPDATE t2 SET c='forty-one thousand six hundred twenty-five' WHERE a=23401; UPDATE t2 SET c='ninety-nine thousand seven hundred twenty' WHERE a=23402; UPDATE t2 SET c='sixty-two thousand seven hundred twenty-six' WHERE a=23403; UPDATE t2 SET c='thirty-nine thousand two hundred twenty-two' WHERE a=23404; UPDATE t2 SET c='sixty-five thousand one hundred two' WHERE a=23405; UPDATE t2 SET c='three thousand five hundred seventy-seven' WHERE a=23406; UPDATE t2 SET c='thirty-seven thousand six hundred ninety-three' WHERE a=23407; UPDATE t2 SET c='thirty-seven thousand fifty-three' WHERE a=23408; UPDATE t2 SET c='six thousand five hundred forty-two' WHERE a=23409; UPDATE t2 SET c='ninety-five thousand seven hundred fifty-nine' WHERE a=23410; UPDATE t2 SET c='one thousand five hundred forty-eight' WHERE a=23411; UPDATE t2 SET c='seventy-four thousand nine hundred sixty-six' WHERE a=23412; UPDATE t2 SET c='thirty-nine thousand eight hundred eighty-one' WHERE a=23413; UPDATE t2 SET c='forty-five thousand six hundred seventy-one' WHERE a=23414; UPDATE t2 SET c='fifty-seven thousand one hundred twenty-one' WHERE a=23415; UPDATE t2 SET c='thirty thousand four hundred thirty-seven' WHERE a=23416; UPDATE t2 SET c='eight thousand eighteen' WHERE a=23417; UPDATE t2 SET c='fifty thousand three hundred seventy-four' WHERE a=23418; UPDATE t2 SET c='two thousand two hundred thirty-three' WHERE a=23419; UPDATE t2 SET c='twenty thousand forty-one' WHERE a=23420; UPDATE t2 SET c='fifty-two thousand one hundred sixty-six' WHERE a=23421; UPDATE t2 SET c='thirteen thousand two hundred seven' WHERE a=23422; UPDATE t2 SET c='seventy-nine thousand seven hundred seventy-nine' WHERE a=23423; UPDATE t2 SET c='thirty-five thousand eight hundred thirty-eight' WHERE a=23424; UPDATE t2 SET c='forty-three thousand six hundred fifty-nine' WHERE a=23425; UPDATE t2 SET c='fifty-six thousand seven hundred twenty' WHERE a=23426; UPDATE t2 SET c='fifty-one thousand four hundred thirty-three' WHERE a=23427; UPDATE t2 SET c='twenty-six thousand three hundred eighty-two' WHERE a=23428; UPDATE t2 SET c='eighty-three thousand three hundred sixty-nine' WHERE a=23429; UPDATE t2 SET c='sixty-one thousand six hundred fifty-four' WHERE a=23430; UPDATE t2 SET c='forty-nine thousand three hundred eighty-nine' WHERE a=23431; UPDATE t2 SET c='four thousand seven hundred forty-four' WHERE a=23432; UPDATE t2 SET c='sixty thousand seven' WHERE a=23433; UPDATE t2 SET c='sixty-six thousand seven hundred ninety' WHERE a=23434; UPDATE t2 SET c='fifty-two thousand three hundred forty-one' WHERE a=23435; UPDATE t2 SET c='sixty-two thousand eight hundred ninety' WHERE a=23436; UPDATE t2 SET c='forty-seven thousand three hundred ninety-eight' WHERE a=23437; UPDATE t2 SET c='twenty thousand four hundred seventy-two' WHERE a=23438; UPDATE t2 SET c='seventy-two thousand one hundred thirteen' WHERE a=23439; UPDATE t2 SET c='nine hundred sixty-five' WHERE a=23440; UPDATE t2 SET c='seventy-five thousand four' WHERE a=23441; UPDATE t2 SET c='sixty-seven thousand one hundred fifty-four' WHERE a=23442; UPDATE t2 SET c='sixty thousand eight hundred eight' WHERE a=23443; UPDATE t2 SET c='fifty-eight thousand four hundred seventy-seven' WHERE a=23444; UPDATE t2 SET c='thirty-nine thousand eight hundred eighty-one' WHERE a=23445; UPDATE t2 SET c='twenty-two thousand nine hundred eighty-four' WHERE a=23446; UPDATE t2 SET c='ninety-two thousand six hundred ninety-seven' WHERE a=23447; UPDATE t2 SET c='two thousand five hundred sixty-one' WHERE a=23448; UPDATE t2 SET c='eighty-one thousand two hundred forty-one' WHERE a=23449; UPDATE t2 SET c='sixty-four thousand eight hundred forty-eight' WHERE a=23450; UPDATE t2 SET c='forty-eight thousand six hundred eleven' WHERE a=23451; UPDATE t2 SET c='twenty-eight thousand seven hundred fifty-one' WHERE a=23452; UPDATE t2 SET c='nineteen thousand five hundred fifty-nine' WHERE a=23453; UPDATE t2 SET c='forty-nine thousand three hundred sixty-six' WHERE a=23454; UPDATE t2 SET c='eighty thousand seven hundred eighty-three' WHERE a=23455; UPDATE t2 SET c='fifty-six thousand three hundred thirty-nine' WHERE a=23456; UPDATE t2 SET c='thirty-four thousand seven hundred fifty' WHERE a=23457; UPDATE t2 SET c='nine thousand six hundred twenty-five' WHERE a=23458; UPDATE t2 SET c='eighty-two thousand six hundred ninety-eight' WHERE a=23459; UPDATE t2 SET c='thirty-two thousand one hundred thirty-one' WHERE a=23460; UPDATE t2 SET c='forty-one thousand nine hundred forty-three' WHERE a=23461; UPDATE t2 SET c='thirty-nine thousand four hundred fifty-five' WHERE a=23462; UPDATE t2 SET c='fifty-one thousand nine hundred forty-five' WHERE a=23463; UPDATE t2 SET c='thirty-one thousand eight hundred twenty-three' WHERE a=23464; UPDATE t2 SET c='seventy-nine thousand four hundred thirteen' WHERE a=23465; UPDATE t2 SET c='ninety-nine thousand three hundred seventy-five' WHERE a=23466; UPDATE t2 SET c='ninety-four thousand seven hundred thirty-six' WHERE a=23467; UPDATE t2 SET c='four hundred sixty-nine' WHERE a=23468; UPDATE t2 SET c='seventy-two thousand twenty-one' WHERE a=23469; UPDATE t2 SET c='eighty-one thousand six hundred fifty-six' WHERE a=23470; UPDATE t2 SET c='ten thousand two hundred seventeen' WHERE a=23471; UPDATE t2 SET c='fifty-five thousand thirty-seven' WHERE a=23472; UPDATE t2 SET c='ninety thousand six hundred three' WHERE a=23473; UPDATE t2 SET c='ninety-four thousand three hundred ninety-three' WHERE a=23474; UPDATE t2 SET c='ninety-nine thousand eight' WHERE a=23475; UPDATE t2 SET c='eighty-seven thousand seven hundred sixty-eight' WHERE a=23476; UPDATE t2 SET c='fifty-two thousand four hundred thirty-five' WHERE a=23477; UPDATE t2 SET c='thirty-five thousand five hundred seventy-seven' WHERE a=23478; UPDATE t2 SET c='fifty-seven thousand one hundred two' WHERE a=23479; UPDATE t2 SET c='ninety-nine thousand six hundred seventy-seven' WHERE a=23480; UPDATE t2 SET c='three thousand two hundred three' WHERE a=23481; UPDATE t2 SET c='sixteen thousand six hundred fifty-three' WHERE a=23482; UPDATE t2 SET c='seventy thousand three hundred thirty-two' WHERE a=23483; UPDATE t2 SET c='twenty-three thousand two hundred' WHERE a=23484; UPDATE t2 SET c='eighty-four thousand eight hundred eighty-one' WHERE a=23485; UPDATE t2 SET c='fifty-nine thousand nine hundred eighty-three' WHERE a=23486; UPDATE t2 SET c='ninety thousand five hundred thirty-five' WHERE a=23487; UPDATE t2 SET c='twenty-six thousand nine hundred sixty-five' WHERE a=23488; UPDATE t2 SET c='sixty-eight thousand six hundred ninety-nine' WHERE a=23489; UPDATE t2 SET c='thirty-eight thousand three hundred eighty-six' WHERE a=23490; UPDATE t2 SET c='thirty-one thousand eight hundred thirty-nine' WHERE a=23491; UPDATE t2 SET c='eighty-three thousand eight hundred seventy-six' WHERE a=23492; UPDATE t2 SET c='forty-nine thousand six hundred fifty-three' WHERE a=23493; UPDATE t2 SET c='fifty thousand five hundred seventy-three' WHERE a=23494; UPDATE t2 SET c='seventy-seven thousand three hundred eighty-seven' WHERE a=23495; UPDATE t2 SET c='sixteen thousand seven hundred twenty-five' WHERE a=23496; UPDATE t2 SET c='thirty-five thousand twenty-six' WHERE a=23497; UPDATE t2 SET c='eighty-six thousand five hundred eighty-six' WHERE a=23498; UPDATE t2 SET c='twenty-four thousand six hundred twenty-two' WHERE a=23499; UPDATE t2 SET c='two hundred fifty-five' WHERE a=23500; UPDATE t2 SET c='seventy-six thousand eight hundred seventy-six' WHERE a=23501; UPDATE t2 SET c='forty-five thousand two hundred two' WHERE a=23502; UPDATE t2 SET c='twenty thousand nine hundred fifteen' WHERE a=23503; UPDATE t2 SET c='six thousand six hundred ninety' WHERE a=23504; UPDATE t2 SET c='one thousand nine hundred fifty-three' WHERE a=23505; UPDATE t2 SET c='thirty-four thousand six hundred forty' WHERE a=23506; UPDATE t2 SET c='thirty-five thousand three hundred twenty-four' WHERE a=23507; UPDATE t2 SET c='eight thousand three hundred one' WHERE a=23508; UPDATE t2 SET c='eighty-four thousand fourteen' WHERE a=23509; UPDATE t2 SET c='eight thousand two hundred forty-five' WHERE a=23510; UPDATE t2 SET c='nineteen thousand six hundred ninety-two' WHERE a=23511; UPDATE t2 SET c='ninety-three thousand eight hundred nineteen' WHERE a=23512; UPDATE t2 SET c='seventy-six thousand seven hundred fifty-four' WHERE a=23513; UPDATE t2 SET c='ten thousand four hundred thirty-five' WHERE a=23514; UPDATE t2 SET c='fifty-seven thousand thirty-six' WHERE a=23515; UPDATE t2 SET c='eighty-nine thousand three hundred seventy-eight' WHERE a=23516; UPDATE t2 SET c='nine thousand nine hundred fifty-three' WHERE a=23517; UPDATE t2 SET c='thirty thousand seven hundred thirty-two' WHERE a=23518; UPDATE t2 SET c='ninety thousand four hundred thirty-three' WHERE a=23519; UPDATE t2 SET c='one thousand two hundred twenty-one' WHERE a=23520; UPDATE t2 SET c='twenty-one thousand six hundred thirty-four' WHERE a=23521; UPDATE t2 SET c='eighty-five thousand five hundred ninety-six' WHERE a=23522; UPDATE t2 SET c='fifty-nine thousand four hundred thirty' WHERE a=23523; UPDATE t2 SET c='seventy thousand nine hundred four' WHERE a=23524; UPDATE t2 SET c='fifty-five thousand three hundred thirty-one' WHERE a=23525; UPDATE t2 SET c='thirty-eight thousand eighty-two' WHERE a=23526; UPDATE t2 SET c='forty-one thousand five hundred twenty-eight' WHERE a=23527; UPDATE t2 SET c='twenty-nine thousand five hundred sixty-six' WHERE a=23528; UPDATE t2 SET c='eighty-two thousand eight hundred forty-nine' WHERE a=23529; UPDATE t2 SET c='fifteen thousand seven hundred fifty-two' WHERE a=23530; UPDATE t2 SET c='twenty-one thousand three hundred fifteen' WHERE a=23531; UPDATE t2 SET c='eight thousand nine hundred seventy-one' WHERE a=23532; UPDATE t2 SET c='ninety-three thousand two hundred fifteen' WHERE a=23533; UPDATE t2 SET c='eighty-six thousand six hundred ninety-five' WHERE a=23534; UPDATE t2 SET c='twenty-six thousand two hundred ninety' WHERE a=23535; UPDATE t2 SET c='seven thousand five hundred forty-three' WHERE a=23536; UPDATE t2 SET c='ninety-five thousand two hundred ninety-one' WHERE a=23537; UPDATE t2 SET c='forty-two thousand forty-nine' WHERE a=23538; UPDATE t2 SET c='thirteen thousand eight hundred twenty-six' WHERE a=23539; UPDATE t2 SET c='thirty-three thousand two hundred seventeen' WHERE a=23540; UPDATE t2 SET c='seventy-six thousand seven hundred seventy-seven' WHERE a=23541; UPDATE t2 SET c='twenty-four thousand six hundred ninety-eight' WHERE a=23542; UPDATE t2 SET c='fifty-one thousand eight hundred ninety-one' WHERE a=23543; UPDATE t2 SET c='thirty-four thousand six hundred forty-four' WHERE a=23544; UPDATE t2 SET c='three thousand seven hundred twenty-six' WHERE a=23545; UPDATE t2 SET c='twenty-three thousand nine hundred ninety-three' WHERE a=23546; UPDATE t2 SET c='forty-eight thousand four hundred seventy-six' WHERE a=23547; UPDATE t2 SET c='seventy-four thousand two hundred forty-nine' WHERE a=23548; UPDATE t2 SET c='twenty-one thousand five hundred thirty-three' WHERE a=23549; UPDATE t2 SET c='fifty-two thousand nine hundred nineteen' WHERE a=23550; UPDATE t2 SET c='one thousand one hundred eighty-six' WHERE a=23551; UPDATE t2 SET c='seventeen thousand one hundred eighteen' WHERE a=23552; UPDATE t2 SET c='six thousand one hundred thirty-three' WHERE a=23553; UPDATE t2 SET c='three thousand six hundred twenty-one' WHERE a=23554; UPDATE t2 SET c='six thousand eight hundred sixty-one' WHERE a=23555; UPDATE t2 SET c='forty-five thousand five hundred forty-five' WHERE a=23556; UPDATE t2 SET c='eighty thousand two hundred forty-one' WHERE a=23557; UPDATE t2 SET c='seventy-eight thousand four hundred eighteen' WHERE a=23558; UPDATE t2 SET c='forty thousand nine hundred fifty-seven' WHERE a=23559; UPDATE t2 SET c='fourteen thousand four hundred two' WHERE a=23560; UPDATE t2 SET c='seventy-six thousand one hundred thirteen' WHERE a=23561; UPDATE t2 SET c='forty-four thousand nine hundred ninety-three' WHERE a=23562; UPDATE t2 SET c='thirty-eight thousand eight hundred fifty-three' WHERE a=23563; UPDATE t2 SET c='seventy-seven thousand seven hundred ninety-one' WHERE a=23564; UPDATE t2 SET c='seventy-seven thousand five hundred seventeen' WHERE a=23565; UPDATE t2 SET c='forty-seven thousand two hundred forty-four' WHERE a=23566; UPDATE t2 SET c='fifteen thousand nine hundred eighty-eight' WHERE a=23567; UPDATE t2 SET c='eighty-eight thousand forty-two' WHERE a=23568; UPDATE t2 SET c='sixty-five thousand seven hundred ninety' WHERE a=23569; UPDATE t2 SET c='seventy-two thousand seven hundred twenty-three' WHERE a=23570; UPDATE t2 SET c='ninety-four thousand seven hundred' WHERE a=23571; UPDATE t2 SET c='sixty-six thousand three hundred eighty' WHERE a=23572; UPDATE t2 SET c='twenty thousand nineteen' WHERE a=23573; UPDATE t2 SET c='six hundred seventy-one' WHERE a=23574; UPDATE t2 SET c='ninety thousand nine hundred eighty' WHERE a=23575; UPDATE t2 SET c='seventy-five thousand four hundred sixty-six' WHERE a=23576; UPDATE t2 SET c='forty thousand seven hundred sixty-four' WHERE a=23577; UPDATE t2 SET c='thirty-six thousand eight hundred forty-seven' WHERE a=23578; UPDATE t2 SET c='eighty-eight thousand four hundred sixty-three' WHERE a=23579; UPDATE t2 SET c='thirty-nine thousand five hundred ninety-seven' WHERE a=23580; UPDATE t2 SET c='five hundred ninety-nine' WHERE a=23581; UPDATE t2 SET c='six thousand thirty-five' WHERE a=23582; UPDATE t2 SET c='six thousand four hundred twenty-eight' WHERE a=23583; UPDATE t2 SET c='fifty-two thousand six hundred forty-one' WHERE a=23584; UPDATE t2 SET c='thirty-one thousand six hundred seventy-six' WHERE a=23585; UPDATE t2 SET c='fifty-eight thousand four hundred forty-two' WHERE a=23586; UPDATE t2 SET c='fifty thousand seven hundred twenty-two' WHERE a=23587; UPDATE t2 SET c='sixty-five thousand nine hundred fifty' WHERE a=23588; UPDATE t2 SET c='sixty-six thousand nine hundred seventy-six' WHERE a=23589; UPDATE t2 SET c='thirty-eight thousand one hundred forty-nine' WHERE a=23590; UPDATE t2 SET c='thirty-eight thousand two hundred ninety-six' WHERE a=23591; UPDATE t2 SET c='seventy-one thousand three hundred nine' WHERE a=23592; UPDATE t2 SET c='sixty-one thousand seven hundred sixty-two' WHERE a=23593; UPDATE t2 SET c='forty-five thousand six hundred twenty-three' WHERE a=23594; UPDATE t2 SET c='fifty-one thousand nine hundred thirty-six' WHERE a=23595; UPDATE t2 SET c='forty-one thousand two hundred forty-nine' WHERE a=23596; UPDATE t2 SET c='two thousand seven hundred eleven' WHERE a=23597; UPDATE t2 SET c='seventy-two thousand eight hundred sixty' WHERE a=23598; UPDATE t2 SET c='fourteen thousand five hundred thirty-one' WHERE a=23599; UPDATE t2 SET c='twenty thousand nine hundred fifty-nine' WHERE a=23600; UPDATE t2 SET c='eighty-nine thousand one hundred thirty-six' WHERE a=23601; UPDATE t2 SET c='forty-four thousand three hundred seventy-two' WHERE a=23602; UPDATE t2 SET c='sixty-six thousand nine hundred sixty-seven' WHERE a=23603; UPDATE t2 SET c='ninety-two thousand five hundred ninety-five' WHERE a=23604; UPDATE t2 SET c='eighty thousand forty-seven' WHERE a=23605; UPDATE t2 SET c='twenty-three thousand seven hundred fifty-five' WHERE a=23606; UPDATE t2 SET c='ninety-six thousand two hundred seventy-two' WHERE a=23607; UPDATE t2 SET c='six thousand four hundred fifteen' WHERE a=23608; UPDATE t2 SET c='sixty-three thousand four hundred' WHERE a=23609; UPDATE t2 SET c='eighty-eight thousand eight hundred fourteen' WHERE a=23610; UPDATE t2 SET c='sixty-seven thousand four hundred eighty-two' WHERE a=23611; UPDATE t2 SET c='sixty-four thousand sixty-eight' WHERE a=23612; UPDATE t2 SET c='twenty-nine thousand three hundred ninety-two' WHERE a=23613; UPDATE t2 SET c='ninety-nine thousand sixty-five' WHERE a=23614; UPDATE t2 SET c='twenty-eight thousand six hundred six' WHERE a=23615; UPDATE t2 SET c='ninety thousand five hundred ninety-nine' WHERE a=23616; UPDATE t2 SET c='five thousand five hundred fifty-six' WHERE a=23617; UPDATE t2 SET c='sixty-two thousand ninety-seven' WHERE a=23618; UPDATE t2 SET c='sixty-five thousand seven hundred sixty-nine' WHERE a=23619; UPDATE t2 SET c='eighty-seven thousand four hundred sixty-four' WHERE a=23620; UPDATE t2 SET c='fifty-seven thousand eight hundred seventy-seven' WHERE a=23621; UPDATE t2 SET c='twenty-one thousand one hundred forty-six' WHERE a=23622; UPDATE t2 SET c='thirteen thousand three hundred four' WHERE a=23623; UPDATE t2 SET c='one thousand seven hundred eighteen' WHERE a=23624; UPDATE t2 SET c='forty-five thousand seven hundred sixty-two' WHERE a=23625; UPDATE t2 SET c='thirty-nine thousand one hundred eight' WHERE a=23626; UPDATE t2 SET c='nine thousand two hundred thirty' WHERE a=23627; UPDATE t2 SET c='forty-six thousand nine hundred one' WHERE a=23628; UPDATE t2 SET c='seventy thousand nine hundred forty' WHERE a=23629; UPDATE t2 SET c='eleven thousand eight hundred twenty-eight' WHERE a=23630; UPDATE t2 SET c='sixty-one thousand five hundred thirty-eight' WHERE a=23631; UPDATE t2 SET c='seventy thousand two hundred eighty-five' WHERE a=23632; UPDATE t2 SET c='forty-seven thousand three hundred eighty-eight' WHERE a=23633; UPDATE t2 SET c='sixteen thousand three hundred forty-one' WHERE a=23634; UPDATE t2 SET c='thirty thousand three hundred seventeen' WHERE a=23635; UPDATE t2 SET c='thirty thousand seven hundred fifty-two' WHERE a=23636; UPDATE t2 SET c='thirty thousand eight hundred forty-seven' WHERE a=23637; UPDATE t2 SET c='twelve thousand seven hundred seventy-five' WHERE a=23638; UPDATE t2 SET c='twelve thousand one hundred ninety-five' WHERE a=23639; UPDATE t2 SET c='sixty-seven thousand nine hundred sixty' WHERE a=23640; UPDATE t2 SET c='fifty-four thousand one hundred ninety-nine' WHERE a=23641; UPDATE t2 SET c='seventeen thousand twenty' WHERE a=23642; UPDATE t2 SET c='seventy-one thousand four hundred eight' WHERE a=23643; UPDATE t2 SET c='fifty-eight thousand one hundred twenty-one' WHERE a=23644; UPDATE t2 SET c='sixty-eight thousand five hundred fifty' WHERE a=23645; UPDATE t2 SET c='fifty-seven thousand one hundred forty-one' WHERE a=23646; UPDATE t2 SET c='fifty-one thousand two hundred sixty' WHERE a=23647; UPDATE t2 SET c='fifty-four thousand nine hundred thirty-six' WHERE a=23648; UPDATE t2 SET c='thirty thousand seven hundred fifty-four' WHERE a=23649; UPDATE t2 SET c='eighty-two thousand seven hundred nine' WHERE a=23650; UPDATE t2 SET c='thirty-five thousand ninety-six' WHERE a=23651; UPDATE t2 SET c='forty-four thousand one hundred sixty-one' WHERE a=23652; UPDATE t2 SET c='three thousand nine hundred thirty-seven' WHERE a=23653; UPDATE t2 SET c='thirty-seven thousand nine hundred fifty' WHERE a=23654; UPDATE t2 SET c='ninety-four thousand three hundred ninety-four' WHERE a=23655; UPDATE t2 SET c='four thousand two hundred two' WHERE a=23656; UPDATE t2 SET c='ninety-five thousand one hundred seventy-four' WHERE a=23657; UPDATE t2 SET c='ten thousand eighty-seven' WHERE a=23658; UPDATE t2 SET c='twenty-seven thousand three hundred six' WHERE a=23659; UPDATE t2 SET c='seven thousand seven hundred fifty-four' WHERE a=23660; UPDATE t2 SET c='forty-eight thousand two hundred eighty-four' WHERE a=23661; UPDATE t2 SET c='sixty-four thousand four hundred fifteen' WHERE a=23662; UPDATE t2 SET c='fifty-nine thousand seven hundred seventy-nine' WHERE a=23663; UPDATE t2 SET c='six hundred seventy-five' WHERE a=23664; UPDATE t2 SET c='sixty-one thousand nine hundred eighty-one' WHERE a=23665; UPDATE t2 SET c='eighty-three thousand six hundred nine' WHERE a=23666; UPDATE t2 SET c='forty-four thousand two hundred eighty-four' WHERE a=23667; UPDATE t2 SET c='twenty-three thousand nine hundred thirty-eight' WHERE a=23668; UPDATE t2 SET c='eighty-four thousand three hundred' WHERE a=23669; UPDATE t2 SET c='forty-four thousand nine hundred fifty-six' WHERE a=23670; UPDATE t2 SET c='sixty-three thousand eight hundred twelve' WHERE a=23671; UPDATE t2 SET c='ninety thousand four hundred fifty' WHERE a=23672; UPDATE t2 SET c='seventy-two thousand six hundred seventy-four' WHERE a=23673; UPDATE t2 SET c='thirty-nine thousand ninety-two' WHERE a=23674; UPDATE t2 SET c='one thousand three hundred eighty-five' WHERE a=23675; UPDATE t2 SET c='fifty-seven thousand nine hundred forty-eight' WHERE a=23676; UPDATE t2 SET c='ten thousand eight hundred thirty-two' WHERE a=23677; UPDATE t2 SET c='twenty-two thousand nine hundred twenty-three' WHERE a=23678; UPDATE t2 SET c='sixty-three thousand eight hundred fifteen' WHERE a=23679; UPDATE t2 SET c='ninety-three thousand eight hundred thirty-two' WHERE a=23680; UPDATE t2 SET c='sixty thousand seven hundred seventy-four' WHERE a=23681; UPDATE t2 SET c='sixty-two thousand nineteen' WHERE a=23682; UPDATE t2 SET c='forty-eight thousand seven hundred eighty' WHERE a=23683; UPDATE t2 SET c='fifteen thousand nine hundred ten' WHERE a=23684; UPDATE t2 SET c='seventy-nine thousand fifty-one' WHERE a=23685; UPDATE t2 SET c='fifty-three thousand six hundred seventy-four' WHERE a=23686; UPDATE t2 SET c='twenty-five thousand five hundred ten' WHERE a=23687; UPDATE t2 SET c='five thousand twelve' WHERE a=23688; UPDATE t2 SET c='forty-four thousand six hundred seventy-four' WHERE a=23689; UPDATE t2 SET c='twenty thousand one hundred thirteen' WHERE a=23690; UPDATE t2 SET c='seventy-six thousand sixty-eight' WHERE a=23691; UPDATE t2 SET c='ninety-four thousand nine hundred forty-two' WHERE a=23692; UPDATE t2 SET c='thirteen thousand five hundred sixty-four' WHERE a=23693; UPDATE t2 SET c='eighty thousand four hundred forty-eight' WHERE a=23694; UPDATE t2 SET c='five thousand six hundred eighty-four' WHERE a=23695; UPDATE t2 SET c='thirty-four thousand four hundred thirty-two' WHERE a=23696; UPDATE t2 SET c='sixty-five thousand one hundred thirty' WHERE a=23697; UPDATE t2 SET c='sixty-eight thousand seven hundred thirty-nine' WHERE a=23698; UPDATE t2 SET c='seventy-one thousand eight hundred forty-six' WHERE a=23699; UPDATE t2 SET c='fifty-nine thousand three hundred twenty-three' WHERE a=23700; UPDATE t2 SET c='two thousand forty-eight' WHERE a=23701; UPDATE t2 SET c='thirty-nine thousand seven hundred sixty-eight' WHERE a=23702; UPDATE t2 SET c='eighty-four thousand fifty-eight' WHERE a=23703; UPDATE t2 SET c='thirty-four thousand seven hundred' WHERE a=23704; UPDATE t2 SET c='thirty-eight thousand nine hundred seventy-five' WHERE a=23705; UPDATE t2 SET c='eighty-eight thousand six hundred seventy-one' WHERE a=23706; UPDATE t2 SET c='twenty-two thousand nine hundred thirty-eight' WHERE a=23707; UPDATE t2 SET c='twenty-nine thousand six hundred sixty-six' WHERE a=23708; UPDATE t2 SET c='nineteen thousand one hundred eighty-one' WHERE a=23709; UPDATE t2 SET c='sixty-nine thousand forty-nine' WHERE a=23710; UPDATE t2 SET c='seventy-one thousand ninety-seven' WHERE a=23711; UPDATE t2 SET c='three thousand two hundred thirty-four' WHERE a=23712; UPDATE t2 SET c='ninety-eight thousand eight hundred thirty-seven' WHERE a=23713; UPDATE t2 SET c='seventy-seven thousand five hundred eighty-one' WHERE a=23714; UPDATE t2 SET c='eighteen thousand seven hundred forty-three' WHERE a=23715; UPDATE t2 SET c='fifty-two thousand six hundred fifty-five' WHERE a=23716; UPDATE t2 SET c='twenty-six thousand two hundred sixty-eight' WHERE a=23717; UPDATE t2 SET c='fifty-two thousand five hundred forty-seven' WHERE a=23718; UPDATE t2 SET c='forty-one thousand five hundred two' WHERE a=23719; UPDATE t2 SET c='nine thousand thirty-one' WHERE a=23720; UPDATE t2 SET c='ninety-eight thousand four hundred twenty-three' WHERE a=23721; UPDATE t2 SET c='ninety-two thousand three hundred seventy-four' WHERE a=23722; UPDATE t2 SET c='seventy-two thousand four hundred twenty-three' WHERE a=23723; UPDATE t2 SET c='seventy-two thousand seventy-nine' WHERE a=23724; UPDATE t2 SET c='seventy-eight thousand one hundred eight' WHERE a=23725; UPDATE t2 SET c='sixty-four thousand five hundred seven' WHERE a=23726; UPDATE t2 SET c='sixty-six thousand seven hundred twenty-two' WHERE a=23727; UPDATE t2 SET c='one thousand seven hundred twelve' WHERE a=23728; UPDATE t2 SET c='twenty thousand seven hundred seventeen' WHERE a=23729; UPDATE t2 SET c='fifty-seven thousand nine hundred sixty-seven' WHERE a=23730; UPDATE t2 SET c='eighty-five thousand sixty' WHERE a=23731; UPDATE t2 SET c='forty-two thousand six hundred seven' WHERE a=23732; UPDATE t2 SET c='forty-nine thousand sixty-one' WHERE a=23733; UPDATE t2 SET c='thirty-four thousand five hundred seventy-two' WHERE a=23734; UPDATE t2 SET c='fifty-eight thousand nine hundred ninety-seven' WHERE a=23735; UPDATE t2 SET c='sixty-four thousand six hundred twelve' WHERE a=23736; UPDATE t2 SET c='fifty-four thousand seven hundred sixty-eight' WHERE a=23737; UPDATE t2 SET c='eighty-six thousand two hundred forty-five' WHERE a=23738; UPDATE t2 SET c='sixty-nine thousand four hundred sixty-three' WHERE a=23739; UPDATE t2 SET c='eighty-six thousand eight hundred fifty-one' WHERE a=23740; UPDATE t2 SET c='forty thousand nine hundred sixty-five' WHERE a=23741; UPDATE t2 SET c='ninety-five thousand seven hundred ninety-eight' WHERE a=23742; UPDATE t2 SET c='fifteen thousand nine hundred four' WHERE a=23743; UPDATE t2 SET c='forty-three thousand eight hundred forty-nine' WHERE a=23744; UPDATE t2 SET c='fifty-four thousand three' WHERE a=23745; UPDATE t2 SET c='eighty thousand twenty-three' WHERE a=23746; UPDATE t2 SET c='twelve thousand three hundred ninety-six' WHERE a=23747; UPDATE t2 SET c='forty-four thousand four hundred forty-four' WHERE a=23748; UPDATE t2 SET c='fifty-nine thousand eight hundred forty-five' WHERE a=23749; UPDATE t2 SET c='ninety-one thousand four hundred fifty-seven' WHERE a=23750; UPDATE t2 SET c='eighty-two thousand three hundred eighty-one' WHERE a=23751; UPDATE t2 SET c='seventy-five thousand three hundred eleven' WHERE a=23752; UPDATE t2 SET c='fifty-one thousand nine hundred thirty-six' WHERE a=23753; UPDATE t2 SET c='ninety-five thousand six hundred twenty-six' WHERE a=23754; UPDATE t2 SET c='sixty-five thousand nine hundred two' WHERE a=23755; UPDATE t2 SET c='seventeen thousand one hundred sixteen' WHERE a=23756; UPDATE t2 SET c='two hundred four' WHERE a=23757; UPDATE t2 SET c='sixty-one thousand nine hundred sixty' WHERE a=23758; UPDATE t2 SET c='forty-nine thousand four hundred sixty-nine' WHERE a=23759; UPDATE t2 SET c='twenty-two thousand two hundred forty' WHERE a=23760; UPDATE t2 SET c='thirty-six thousand three hundred sixty' WHERE a=23761; UPDATE t2 SET c='sixteen thousand eight hundred thirty' WHERE a=23762; UPDATE t2 SET c='nine hundred thirty-six' WHERE a=23763; UPDATE t2 SET c='fifty-eight thousand one hundred twenty-eight' WHERE a=23764; UPDATE t2 SET c='eighty-four thousand one hundred sixty-two' WHERE a=23765; UPDATE t2 SET c='seventy-one thousand two hundred fifty-two' WHERE a=23766; UPDATE t2 SET c='ninety-four thousand three hundred ninety-two' WHERE a=23767; UPDATE t2 SET c='eighty-two thousand twenty-seven' WHERE a=23768; UPDATE t2 SET c='twenty-seven thousand' WHERE a=23769; UPDATE t2 SET c='forty-nine thousand four' WHERE a=23770; UPDATE t2 SET c='sixty-six thousand fifty-two' WHERE a=23771; UPDATE t2 SET c='thirty-nine thousand nine hundred forty-one' WHERE a=23772; UPDATE t2 SET c='seven thousand six hundred eighty-six' WHERE a=23773; UPDATE t2 SET c='fifty thousand forty-four' WHERE a=23774; UPDATE t2 SET c='thirty-five thousand six hundred twenty' WHERE a=23775; UPDATE t2 SET c='eight thousand one hundred four' WHERE a=23776; UPDATE t2 SET c='seventy-five thousand five hundred ninety-three' WHERE a=23777; UPDATE t2 SET c='thirty-two thousand five hundred fifty-three' WHERE a=23778; UPDATE t2 SET c='ninety-four thousand six hundred ten' WHERE a=23779; UPDATE t2 SET c='eighty-five thousand seven hundred seventy-eight' WHERE a=23780; UPDATE t2 SET c='seventeen thousand four hundred forty-four' WHERE a=23781; UPDATE t2 SET c='twenty-eight thousand seven hundred sixty-five' WHERE a=23782; UPDATE t2 SET c='eighty-two thousand nine hundred seventy-six' WHERE a=23783; UPDATE t2 SET c='seventy-three thousand five' WHERE a=23784; UPDATE t2 SET c='eighty-five thousand six hundred sixty-six' WHERE a=23785; UPDATE t2 SET c='thirty thousand seven hundred two' WHERE a=23786; UPDATE t2 SET c='eighty-three thousand four hundred twenty-four' WHERE a=23787; UPDATE t2 SET c='ten thousand four hundred forty-two' WHERE a=23788; UPDATE t2 SET c='fifty-five thousand two hundred forty-six' WHERE a=23789; UPDATE t2 SET c='seventy-five thousand two hundred twenty-four' WHERE a=23790; UPDATE t2 SET c='ten thousand two hundred fifty-six' WHERE a=23791; UPDATE t2 SET c='ninety-four thousand two hundred ninety-nine' WHERE a=23792; UPDATE t2 SET c='fifty-eight thousand six hundred fifty-seven' WHERE a=23793; UPDATE t2 SET c='seventy-five thousand six hundred ninety-six' WHERE a=23794; UPDATE t2 SET c='fifty-one thousand five hundred ten' WHERE a=23795; UPDATE t2 SET c='sixty-seven thousand six hundred twenty-five' WHERE a=23796; UPDATE t2 SET c='thirty-nine thousand four hundred fifty-two' WHERE a=23797; UPDATE t2 SET c='four thousand six hundred seventeen' WHERE a=23798; UPDATE t2 SET c='ninety-six thousand eight hundred sixty-five' WHERE a=23799; UPDATE t2 SET c='nine thousand one hundred forty-seven' WHERE a=23800; UPDATE t2 SET c='ninety-seven thousand nine hundred thirty-nine' WHERE a=23801; UPDATE t2 SET c='twelve thousand nine hundred eighty-nine' WHERE a=23802; UPDATE t2 SET c='eighty-eight thousand six hundred sixty-six' WHERE a=23803; UPDATE t2 SET c='forty-eight thousand twenty-eight' WHERE a=23804; UPDATE t2 SET c='sixty-eight thousand seventy-three' WHERE a=23805; UPDATE t2 SET c='sixty-two thousand sixty-six' WHERE a=23806; UPDATE t2 SET c='nine thousand six hundred fourteen' WHERE a=23807; UPDATE t2 SET c='sixty-four thousand thirty-two' WHERE a=23808; UPDATE t2 SET c='thirty-two thousand six hundred eighty-one' WHERE a=23809; UPDATE t2 SET c='eighty-five thousand six hundred nineteen' WHERE a=23810; UPDATE t2 SET c='eighty-three thousand five hundred seventy-five' WHERE a=23811; UPDATE t2 SET c='eight thousand nine hundred twenty-seven' WHERE a=23812; UPDATE t2 SET c='two thousand one hundred forty-seven' WHERE a=23813; UPDATE t2 SET c='forty-eight thousand three hundred eighteen' WHERE a=23814; UPDATE t2 SET c='forty-six thousand five hundred five' WHERE a=23815; UPDATE t2 SET c='sixty-five thousand one hundred six' WHERE a=23816; UPDATE t2 SET c='fifty-eight thousand nine hundred fifteen' WHERE a=23817; UPDATE t2 SET c='fifty-eight thousand nine hundred seventy-four' WHERE a=23818; UPDATE t2 SET c='ten thousand six hundred fifteen' WHERE a=23819; UPDATE t2 SET c='twenty-three thousand eight hundred eighty-two' WHERE a=23820; UPDATE t2 SET c='forty-seven thousand thirty-one' WHERE a=23821; UPDATE t2 SET c='ninety-three thousand six' WHERE a=23822; UPDATE t2 SET c='forty-one thousand five hundred sixty-seven' WHERE a=23823; UPDATE t2 SET c='ninety-nine thousand four hundred eighty-one' WHERE a=23824; UPDATE t2 SET c='eighty-six thousand seven hundred sixty-five' WHERE a=23825; UPDATE t2 SET c='fifty-three thousand one hundred seventy-five' WHERE a=23826; UPDATE t2 SET c='thirty-seven thousand one hundred eight' WHERE a=23827; UPDATE t2 SET c='six thousand nine hundred sixty-one' WHERE a=23828; UPDATE t2 SET c='eight thousand thirty' WHERE a=23829; UPDATE t2 SET c='sixty-three thousand eight hundred thirty-eight' WHERE a=23830; UPDATE t2 SET c='seventy-eight thousand one hundred twenty' WHERE a=23831; UPDATE t2 SET c='seventy-four thousand five hundred ninety-five' WHERE a=23832; UPDATE t2 SET c='nine thousand five hundred two' WHERE a=23833; UPDATE t2 SET c='sixty-seven thousand eighty-one' WHERE a=23834; UPDATE t2 SET c='fifty-one thousand nine hundred forty-two' WHERE a=23835; UPDATE t2 SET c='fifty-eight thousand six hundred' WHERE a=23836; UPDATE t2 SET c='seventy-two thousand two hundred forty-one' WHERE a=23837; UPDATE t2 SET c='nine thousand seven hundred fifteen' WHERE a=23838; UPDATE t2 SET c='thirty-one thousand four hundred fifty' WHERE a=23839; UPDATE t2 SET c='ten thousand forty-eight' WHERE a=23840; UPDATE t2 SET c='thirty-nine thousand eight hundred thirteen' WHERE a=23841; UPDATE t2 SET c='ninety-two thousand eleven' WHERE a=23842; UPDATE t2 SET c='fifteen thousand one hundred ninety-seven' WHERE a=23843; UPDATE t2 SET c='sixty-eight thousand five hundred eighty-four' WHERE a=23844; UPDATE t2 SET c='seventeen thousand two hundred twenty-seven' WHERE a=23845; UPDATE t2 SET c='four thousand nine hundred sixty-four' WHERE a=23846; UPDATE t2 SET c='ten thousand twenty-two' WHERE a=23847; UPDATE t2 SET c='fifty thousand three hundred fifty-eight' WHERE a=23848; UPDATE t2 SET c='seventeen thousand five hundred twenty-eight' WHERE a=23849; UPDATE t2 SET c='forty thousand eight hundred fifty-two' WHERE a=23850; UPDATE t2 SET c='five thousand three hundred twenty-one' WHERE a=23851; UPDATE t2 SET c='twenty-three thousand two hundred twenty-one' WHERE a=23852; UPDATE t2 SET c='thirty-one thousand one hundred fifty-eight' WHERE a=23853; UPDATE t2 SET c='two thousand six hundred seventy-three' WHERE a=23854; UPDATE t2 SET c='fifty-seven thousand six hundred seventeen' WHERE a=23855; UPDATE t2 SET c='ninety thousand nine hundred twenty-one' WHERE a=23856; UPDATE t2 SET c='forty-five thousand nine hundred fifty-five' WHERE a=23857; UPDATE t2 SET c='eighty-eight thousand three hundred fifty-three' WHERE a=23858; UPDATE t2 SET c='eighty-four thousand two hundred forty-two' WHERE a=23859; UPDATE t2 SET c='eighty-eight thousand five hundred four' WHERE a=23860; UPDATE t2 SET c='eighty-three thousand nine hundred nineteen' WHERE a=23861; UPDATE t2 SET c='thirty-three thousand two hundred twenty-nine' WHERE a=23862; UPDATE t2 SET c='twenty-nine thousand seven hundred thirty-two' WHERE a=23863; UPDATE t2 SET c='eighteen thousand six hundred ninety-two' WHERE a=23864; UPDATE t2 SET c='forty-three thousand four hundred twenty-one' WHERE a=23865; UPDATE t2 SET c='fifty-three thousand four hundred sixty-one' WHERE a=23866; UPDATE t2 SET c='eighty thousand five hundred fifty-seven' WHERE a=23867; UPDATE t2 SET c='sixty-eight thousand eight hundred twenty-seven' WHERE a=23868; UPDATE t2 SET c='forty-one thousand five hundred ninety-one' WHERE a=23869; UPDATE t2 SET c='ninety-two thousand six hundred ninety-eight' WHERE a=23870; UPDATE t2 SET c='fifty-four thousand three hundred twenty-two' WHERE a=23871; UPDATE t2 SET c='fifty-one thousand twenty-three' WHERE a=23872; UPDATE t2 SET c='ninety-seven thousand two hundred sixty-five' WHERE a=23873; UPDATE t2 SET c='twenty-three thousand three hundred forty-eight' WHERE a=23874; UPDATE t2 SET c='fourteen thousand six hundred thirty-six' WHERE a=23875; UPDATE t2 SET c='twenty-one thousand two hundred fifty-seven' WHERE a=23876; UPDATE t2 SET c='fifty-two thousand five hundred seventy' WHERE a=23877; UPDATE t2 SET c='seventeen thousand seven hundred twenty-nine' WHERE a=23878; UPDATE t2 SET c='forty-three thousand seven hundred three' WHERE a=23879; UPDATE t2 SET c='sixty-seven thousand three hundred seventy-six' WHERE a=23880; UPDATE t2 SET c='eighty-four thousand nine hundred four' WHERE a=23881; UPDATE t2 SET c='two thousand eight hundred ninety-two' WHERE a=23882; UPDATE t2 SET c='nineteen thousand six hundred eight' WHERE a=23883; UPDATE t2 SET c='twenty-eight thousand one hundred seventy-six' WHERE a=23884; UPDATE t2 SET c='sixty-three thousand seven hundred seventy-five' WHERE a=23885; UPDATE t2 SET c='forty thousand six hundred twenty-three' WHERE a=23886; UPDATE t2 SET c='ten thousand seven hundred ninety-two' WHERE a=23887; UPDATE t2 SET c='sixty-nine thousand two hundred seventy-two' WHERE a=23888; UPDATE t2 SET c='thirty-nine thousand two hundred thirty-one' WHERE a=23889; UPDATE t2 SET c='ninety-five thousand five hundred twenty-five' WHERE a=23890; UPDATE t2 SET c='ninety-six thousand four hundred sixty-nine' WHERE a=23891; UPDATE t2 SET c='thirteen thousand seven hundred ninety-one' WHERE a=23892; UPDATE t2 SET c='twenty-eight thousand one hundred twenty-four' WHERE a=23893; UPDATE t2 SET c='sixty-four thousand three hundred thirty-five' WHERE a=23894; UPDATE t2 SET c='sixty-four thousand five hundred five' WHERE a=23895; UPDATE t2 SET c='eighty-eight thousand five hundred ninety-six' WHERE a=23896; UPDATE t2 SET c='seven hundred sixty-eight' WHERE a=23897; UPDATE t2 SET c='thirty-four thousand one hundred ninety-three' WHERE a=23898; UPDATE t2 SET c='thirty-seven thousand seven hundred one' WHERE a=23899; UPDATE t2 SET c='twenty-one thousand three hundred ten' WHERE a=23900; UPDATE t2 SET c='eighteen thousand two hundred four' WHERE a=23901; UPDATE t2 SET c='sixty-seven thousand two hundred thirty-four' WHERE a=23902; UPDATE t2 SET c='sixty-eight thousand eight hundred sixty-four' WHERE a=23903; UPDATE t2 SET c='thirty thousand eight hundred ninety-two' WHERE a=23904; UPDATE t2 SET c='eight thousand nine hundred seventy-four' WHERE a=23905; UPDATE t2 SET c='fifty-nine thousand one hundred ninety-one' WHERE a=23906; UPDATE t2 SET c='thirty-four thousand five hundred seventy-eight' WHERE a=23907; UPDATE t2 SET c='eighty-five thousand twenty-two' WHERE a=23908; UPDATE t2 SET c='sixty-nine thousand five hundred twenty-two' WHERE a=23909; UPDATE t2 SET c='ninety-three thousand sixty-eight' WHERE a=23910; UPDATE t2 SET c='eighty-six thousand three hundred twenty-three' WHERE a=23911; UPDATE t2 SET c='seventy-seven thousand five hundred eighty-four' WHERE a=23912; UPDATE t2 SET c='seven thousand thirty-six' WHERE a=23913; UPDATE t2 SET c='thirty-five thousand nine hundred sixty-nine' WHERE a=23914; UPDATE t2 SET c='twenty-two thousand seven hundred one' WHERE a=23915; UPDATE t2 SET c='twenty-three thousand nine hundred ninety-three' WHERE a=23916; UPDATE t2 SET c='three thousand three hundred eighty' WHERE a=23917; UPDATE t2 SET c='forty-five thousand sixty-eight' WHERE a=23918; UPDATE t2 SET c='nine thousand one hundred thirty-five' WHERE a=23919; UPDATE t2 SET c='nineteen thousand four hundred sixty-one' WHERE a=23920; UPDATE t2 SET c='fifty thousand four hundred seventy-eight' WHERE a=23921; UPDATE t2 SET c='eighty-two thousand one hundred fifty-four' WHERE a=23922; UPDATE t2 SET c='ninety-nine thousand five hundred forty-five' WHERE a=23923; UPDATE t2 SET c='seventy-five thousand eighty-eight' WHERE a=23924; UPDATE t2 SET c='sixteen thousand nine hundred fourteen' WHERE a=23925; UPDATE t2 SET c='nineteen thousand eight hundred seventy-nine' WHERE a=23926; UPDATE t2 SET c='eleven thousand seven hundred twelve' WHERE a=23927; UPDATE t2 SET c='ninety-four thousand eight hundred thirty-nine' WHERE a=23928; UPDATE t2 SET c='thirty-two thousand one hundred forty-two' WHERE a=23929; UPDATE t2 SET c='eighty-six thousand one hundred thirty-one' WHERE a=23930; UPDATE t2 SET c='forty thousand eight hundred fifty-eight' WHERE a=23931; UPDATE t2 SET c='seventy-one thousand eight hundred thirty' WHERE a=23932; UPDATE t2 SET c='seventy-five thousand five hundred ninety-two' WHERE a=23933; UPDATE t2 SET c='ninety-one thousand seven hundred three' WHERE a=23934; UPDATE t2 SET c='forty-one thousand nine hundred fourteen' WHERE a=23935; UPDATE t2 SET c='twelve thousand six hundred twenty-one' WHERE a=23936; UPDATE t2 SET c='forty-three thousand three hundred sixty-one' WHERE a=23937; UPDATE t2 SET c='forty-one thousand six hundred five' WHERE a=23938; UPDATE t2 SET c='seventy-six thousand nine hundred thirty-seven' WHERE a=23939; UPDATE t2 SET c='eighty-three thousand five hundred eighteen' WHERE a=23940; UPDATE t2 SET c='seventeen thousand eight hundred eighty-one' WHERE a=23941; UPDATE t2 SET c='twenty-eight thousand two hundred seventy-one' WHERE a=23942; UPDATE t2 SET c='three thousand seven hundred fifty-eight' WHERE a=23943; UPDATE t2 SET c='forty-three thousand four hundred twenty-five' WHERE a=23944; UPDATE t2 SET c='two thousand five hundred forty-three' WHERE a=23945; UPDATE t2 SET c='seventy-one thousand seven hundred forty-four' WHERE a=23946; UPDATE t2 SET c='thirteen thousand eight hundred seventy-nine' WHERE a=23947; UPDATE t2 SET c='forty-one thousand sixty-five' WHERE a=23948; UPDATE t2 SET c='fifty-four thousand five hundred sixty-one' WHERE a=23949; UPDATE t2 SET c='fifty-five thousand nine hundred nineteen' WHERE a=23950; UPDATE t2 SET c='ninety-one thousand six hundred twelve' WHERE a=23951; UPDATE t2 SET c='eighty-eight thousand seven hundred forty-three' WHERE a=23952; UPDATE t2 SET c='fifty-two thousand three hundred thirty-five' WHERE a=23953; UPDATE t2 SET c='forty-two thousand eighty-two' WHERE a=23954; UPDATE t2 SET c='thirty-seven thousand three hundred eighty-eight' WHERE a=23955; UPDATE t2 SET c='forty-eight thousand six hundred forty-one' WHERE a=23956; UPDATE t2 SET c='seven thousand six hundred fifty-six' WHERE a=23957; UPDATE t2 SET c='twenty-three thousand three hundred fifty-six' WHERE a=23958; UPDATE t2 SET c='eighty-two thousand three hundred sixty-seven' WHERE a=23959; UPDATE t2 SET c='thirty-two thousand four hundred eighty-five' WHERE a=23960; UPDATE t2 SET c='sixty-six thousand seven hundred sixty-four' WHERE a=23961; UPDATE t2 SET c='eighty-two thousand nine hundred seven' WHERE a=23962; UPDATE t2 SET c='sixty-three thousand six hundred ninety-three' WHERE a=23963; UPDATE t2 SET c='eighty-seven thousand eight hundred seventy-three' WHERE a=23964; UPDATE t2 SET c='eighty-eight thousand four hundred thirty-four' WHERE a=23965; UPDATE t2 SET c='sixty-four thousand two hundred' WHERE a=23966; UPDATE t2 SET c='forty-four thousand one hundred seventy-three' WHERE a=23967; UPDATE t2 SET c='forty-seven thousand seven hundred twenty-five' WHERE a=23968; UPDATE t2 SET c='ten thousand forty-two' WHERE a=23969; UPDATE t2 SET c='twenty-nine thousand seven hundred sixty-five' WHERE a=23970; UPDATE t2 SET c='six thousand nine hundred seventy-three' WHERE a=23971; UPDATE t2 SET c='ninety-two thousand twenty-five' WHERE a=23972; UPDATE t2 SET c='ninety-one thousand seven hundred eighty-one' WHERE a=23973; UPDATE t2 SET c='twenty-four thousand two hundred sixty-six' WHERE a=23974; UPDATE t2 SET c='eighty-six thousand seven hundred thirty-nine' WHERE a=23975; UPDATE t2 SET c='six thousand nine hundred forty-four' WHERE a=23976; UPDATE t2 SET c='sixty-eight thousand four hundred forty-six' WHERE a=23977; UPDATE t2 SET c='forty-six thousand three hundred sixty' WHERE a=23978; UPDATE t2 SET c='eighty-five thousand five hundred eighty-one' WHERE a=23979; UPDATE t2 SET c='forty-one thousand three hundred sixty-nine' WHERE a=23980; UPDATE t2 SET c='ninety-six thousand six hundred sixty-two' WHERE a=23981; UPDATE t2 SET c='fourteen thousand two hundred seventy-six' WHERE a=23982; UPDATE t2 SET c='sixty-one thousand four hundred eighty-nine' WHERE a=23983; UPDATE t2 SET c='ninety-six thousand five hundred five' WHERE a=23984; UPDATE t2 SET c='fifteen thousand three hundred fifty-six' WHERE a=23985; UPDATE t2 SET c='eighty-five thousand five hundred ninety-two' WHERE a=23986; UPDATE t2 SET c='forty-seven thousand seven hundred seventy-nine' WHERE a=23987; UPDATE t2 SET c='thirty-eight thousand sixty-one' WHERE a=23988; UPDATE t2 SET c='ninety-two thousand five hundred sixty-seven' WHERE a=23989; UPDATE t2 SET c='eighteen thousand three hundred eighteen' WHERE a=23990; UPDATE t2 SET c='thirteen thousand nine hundred thirty-nine' WHERE a=23991; UPDATE t2 SET c='seventy-three thousand nine hundred thirty-four' WHERE a=23992; UPDATE t2 SET c='seventy-six thousand two hundred sixty-three' WHERE a=23993; UPDATE t2 SET c='forty-one thousand two hundred twenty-one' WHERE a=23994; UPDATE t2 SET c='eighty thousand one hundred one' WHERE a=23995; UPDATE t2 SET c='forty-one thousand two hundred fifty-seven' WHERE a=23996; UPDATE t2 SET c='sixty-four thousand three hundred sixty-one' WHERE a=23997; UPDATE t2 SET c='eighteen thousand eight hundred thirty-nine' WHERE a=23998; UPDATE t2 SET c='eighty-six thousand one hundred thirty-three' WHERE a=23999; UPDATE t2 SET c='twenty-three thousand nine hundred thirty-three' WHERE a=24000; UPDATE t2 SET c='sixty thousand one hundred fifteen' WHERE a=24001; UPDATE t2 SET c='thirty thousand seven hundred forty-five' WHERE a=24002; UPDATE t2 SET c='seventy-one thousand nine hundred fifty-nine' WHERE a=24003; UPDATE t2 SET c='seventy-nine thousand five hundred fifty-seven' WHERE a=24004; UPDATE t2 SET c='twenty-five thousand one hundred thirty-one' WHERE a=24005; UPDATE t2 SET c='forty-five thousand one hundred twelve' WHERE a=24006; UPDATE t2 SET c='seventy-three thousand six' WHERE a=24007; UPDATE t2 SET c='twenty-nine thousand nine hundred thirty-eight' WHERE a=24008; UPDATE t2 SET c='ninety-eight thousand four hundred fifty-seven' WHERE a=24009; UPDATE t2 SET c='eighty thousand two hundred five' WHERE a=24010; UPDATE t2 SET c='twenty-five thousand six hundred ninety-five' WHERE a=24011; UPDATE t2 SET c='eighty-three thousand eight hundred twenty-five' WHERE a=24012; UPDATE t2 SET c='fifty thousand four hundred forty-eight' WHERE a=24013; UPDATE t2 SET c='fifteen thousand twenty-nine' WHERE a=24014; UPDATE t2 SET c='thirty-one thousand nine hundred nine' WHERE a=24015; UPDATE t2 SET c='sixty-eight thousand two hundred fifteen' WHERE a=24016; UPDATE t2 SET c='twenty-eight thousand seven hundred forty-one' WHERE a=24017; UPDATE t2 SET c='fifty-one thousand nine hundred twenty-eight' WHERE a=24018; UPDATE t2 SET c='sixty-eight thousand seventy-four' WHERE a=24019; UPDATE t2 SET c='sixty-nine thousand nine hundred seventy-six' WHERE a=24020; UPDATE t2 SET c='ninety-nine thousand five hundred seventy-six' WHERE a=24021; UPDATE t2 SET c='ninety-six thousand nine hundred seventy-five' WHERE a=24022; UPDATE t2 SET c='ninety-nine thousand six hundred forty-one' WHERE a=24023; UPDATE t2 SET c='fifty thousand three hundred thirty-five' WHERE a=24024; UPDATE t2 SET c='fifty-five thousand two hundred eighty-three' WHERE a=24025; UPDATE t2 SET c='fifty-eight thousand six hundred seventeen' WHERE a=24026; UPDATE t2 SET c='fifty-seven thousand four hundred fifty' WHERE a=24027; UPDATE t2 SET c='twenty-two thousand one hundred sixty-six' WHERE a=24028; UPDATE t2 SET c='three thousand seven hundred five' WHERE a=24029; UPDATE t2 SET c='sixteen thousand nine hundred sixteen' WHERE a=24030; UPDATE t2 SET c='ninety-seven thousand seven hundred seventy-seven' WHERE a=24031; UPDATE t2 SET c='fifty-seven thousand eight hundred three' WHERE a=24032; UPDATE t2 SET c='forty-seven thousand nine hundred sixteen' WHERE a=24033; UPDATE t2 SET c='ninety-one thousand three hundred seventy-five' WHERE a=24034; UPDATE t2 SET c='five thousand six hundred sixty-three' WHERE a=24035; UPDATE t2 SET c='eighty-three thousand nine hundred forty-eight' WHERE a=24036; UPDATE t2 SET c='twelve thousand five hundred fifty-two' WHERE a=24037; UPDATE t2 SET c='twenty-nine thousand six hundred sixty-three' WHERE a=24038; UPDATE t2 SET c='eleven thousand seven hundred sixty-eight' WHERE a=24039; UPDATE t2 SET c='twenty-nine thousand three hundred fifty-nine' WHERE a=24040; UPDATE t2 SET c='seventy-six thousand five hundred seventy-three' WHERE a=24041; UPDATE t2 SET c='seventy-eight thousand two hundred twenty-five' WHERE a=24042; UPDATE t2 SET c='twenty-three thousand eight hundred forty-seven' WHERE a=24043; UPDATE t2 SET c='sixty-six thousand seven hundred thirteen' WHERE a=24044; UPDATE t2 SET c='sixty-five thousand one hundred fifty-three' WHERE a=24045; UPDATE t2 SET c='thirty-six thousand seven hundred forty-four' WHERE a=24046; UPDATE t2 SET c='fifty-four thousand five hundred sixty-five' WHERE a=24047; UPDATE t2 SET c='fifty-seven thousand four hundred seventy-eight' WHERE a=24048; UPDATE t2 SET c='thirty thousand seventeen' WHERE a=24049; UPDATE t2 SET c='eighty-four thousand six hundred ninety-three' WHERE a=24050; UPDATE t2 SET c='seventy-four thousand five hundred eighty-five' WHERE a=24051; UPDATE t2 SET c='thirty-seven thousand eighty-three' WHERE a=24052; UPDATE t2 SET c='seventy-four thousand seven hundred eighty-one' WHERE a=24053; UPDATE t2 SET c='ten thousand one hundred sixty-four' WHERE a=24054; UPDATE t2 SET c='twenty-three thousand one hundred forty-four' WHERE a=24055; UPDATE t2 SET c='fifty-four thousand one hundred thirty' WHERE a=24056; UPDATE t2 SET c='seventy-nine thousand nine hundred thirty-six' WHERE a=24057; UPDATE t2 SET c='ninety-four thousand five hundred forty-seven' WHERE a=24058; UPDATE t2 SET c='fourteen thousand one hundred forty-six' WHERE a=24059; UPDATE t2 SET c='two thousand three hundred eighty-one' WHERE a=24060; UPDATE t2 SET c='six thousand eight hundred ninety-nine' WHERE a=24061; UPDATE t2 SET c='twenty-five thousand five hundred forty-six' WHERE a=24062; UPDATE t2 SET c='thirteen thousand forty-six' WHERE a=24063; UPDATE t2 SET c='eight thousand four hundred eighty-three' WHERE a=24064; UPDATE t2 SET c='nine thousand six hundred seventy' WHERE a=24065; UPDATE t2 SET c='ninety-one thousand three hundred ninety-seven' WHERE a=24066; UPDATE t2 SET c='forty-three thousand nine hundred eighty-six' WHERE a=24067; UPDATE t2 SET c='seventy thousand four hundred forty-three' WHERE a=24068; UPDATE t2 SET c='ninety-six thousand nine hundred thirty-five' WHERE a=24069; UPDATE t2 SET c='ten thousand two hundred fifty-three' WHERE a=24070; UPDATE t2 SET c='forty-three thousand one hundred eighty-five' WHERE a=24071; UPDATE t2 SET c='thirty-seven thousand six hundred fifty-nine' WHERE a=24072; UPDATE t2 SET c='eight thousand three hundred ninety-one' WHERE a=24073; UPDATE t2 SET c='one thousand fourteen' WHERE a=24074; UPDATE t2 SET c='eighty-one thousand three' WHERE a=24075; UPDATE t2 SET c='thirty-six thousand five hundred twenty-nine' WHERE a=24076; UPDATE t2 SET c='sixty thousand six hundred twenty-nine' WHERE a=24077; UPDATE t2 SET c='thirty-seven thousand ninety-five' WHERE a=24078; UPDATE t2 SET c='eighty-three thousand seventy-seven' WHERE a=24079; UPDATE t2 SET c='fourteen thousand four hundred sixteen' WHERE a=24080; UPDATE t2 SET c='twenty-five thousand three hundred eighty-seven' WHERE a=24081; UPDATE t2 SET c='sixty-five thousand eight hundred nineteen' WHERE a=24082; UPDATE t2 SET c='thirty-five thousand eight hundred seventy-three' WHERE a=24083; UPDATE t2 SET c='thirty-five thousand three hundred seventy-two' WHERE a=24084; UPDATE t2 SET c='sixty-four thousand two hundred ninety-nine' WHERE a=24085; UPDATE t2 SET c='twenty-one thousand five hundred eighty-eight' WHERE a=24086; UPDATE t2 SET c='seventy-five thousand twelve' WHERE a=24087; UPDATE t2 SET c='eighty-three thousand three hundred twenty' WHERE a=24088; UPDATE t2 SET c='thirty-six thousand four hundred seventy-two' WHERE a=24089; UPDATE t2 SET c='eighty-three thousand five hundred nine' WHERE a=24090; UPDATE t2 SET c='twenty-four thousand seven hundred nineteen' WHERE a=24091; UPDATE t2 SET c='eighty-nine thousand three hundred twenty-eight' WHERE a=24092; UPDATE t2 SET c='thirty-nine thousand sixty-six' WHERE a=24093; UPDATE t2 SET c='sixty thousand one hundred twenty-seven' WHERE a=24094; UPDATE t2 SET c='thirteen thousand seven hundred twelve' WHERE a=24095; UPDATE t2 SET c='seventy-nine thousand four hundred seventy-four' WHERE a=24096; UPDATE t2 SET c='thirteen thousand one hundred forty-seven' WHERE a=24097; UPDATE t2 SET c='fifty-two thousand nine hundred twenty-three' WHERE a=24098; UPDATE t2 SET c='four thousand seven hundred sixty-two' WHERE a=24099; UPDATE t2 SET c='thirty-eight thousand seven hundred thirty' WHERE a=24100; UPDATE t2 SET c='seventy-nine thousand eight hundred eighty' WHERE a=24101; UPDATE t2 SET c='eleven thousand sixteen' WHERE a=24102; UPDATE t2 SET c='fifty-six thousand one hundred five' WHERE a=24103; UPDATE t2 SET c='seven thousand three hundred eighty-six' WHERE a=24104; UPDATE t2 SET c='forty thousand five hundred eighty-nine' WHERE a=24105; UPDATE t2 SET c='eighty-seven thousand two hundred fifty-one' WHERE a=24106; UPDATE t2 SET c='sixty thousand two hundred seventy-two' WHERE a=24107; UPDATE t2 SET c='forty-four thousand four hundred seventy-seven' WHERE a=24108; UPDATE t2 SET c='fifty-eight thousand four hundred three' WHERE a=24109; UPDATE t2 SET c='thirty-three thousand eight hundred ninety-seven' WHERE a=24110; UPDATE t2 SET c='ninety-six thousand six hundred thirty-six' WHERE a=24111; UPDATE t2 SET c='three thousand three hundred seventy-four' WHERE a=24112; UPDATE t2 SET c='forty-five thousand sixty-two' WHERE a=24113; UPDATE t2 SET c='twenty-seven thousand nine hundred sixty-four' WHERE a=24114; UPDATE t2 SET c='twenty-four thousand two hundred forty-six' WHERE a=24115; UPDATE t2 SET c='thirty-two thousand six hundred sixty-two' WHERE a=24116; UPDATE t2 SET c='seventy-six thousand five hundred sixty-nine' WHERE a=24117; UPDATE t2 SET c='ninety-six thousand eighty-one' WHERE a=24118; UPDATE t2 SET c='twenty-five thousand four hundred twelve' WHERE a=24119; UPDATE t2 SET c='seventy-six thousand thirty-eight' WHERE a=24120; UPDATE t2 SET c='fifty-two thousand five hundred eighty-three' WHERE a=24121; UPDATE t2 SET c='forty-three thousand thirty' WHERE a=24122; UPDATE t2 SET c='five thousand two hundred eighty-eight' WHERE a=24123; UPDATE t2 SET c='ninety-seven thousand eight hundred eighty-seven' WHERE a=24124; UPDATE t2 SET c='forty-seven thousand two hundred thirty-six' WHERE a=24125; UPDATE t2 SET c='ninety-nine thousand six hundred two' WHERE a=24126; UPDATE t2 SET c='eight thousand nine hundred seventy-four' WHERE a=24127; UPDATE t2 SET c='forty-nine thousand five hundred four' WHERE a=24128; UPDATE t2 SET c='seventy-eight thousand two hundred thirty-eight' WHERE a=24129; UPDATE t2 SET c='ninety-two thousand eight hundred seventy' WHERE a=24130; UPDATE t2 SET c='fifty-two thousand five hundred seventy-six' WHERE a=24131; UPDATE t2 SET c='fifty-five thousand three hundred fourteen' WHERE a=24132; UPDATE t2 SET c='sixty-seven thousand three hundred thirty-nine' WHERE a=24133; UPDATE t2 SET c='fifty-five thousand one hundred ten' WHERE a=24134; UPDATE t2 SET c='sixty-five thousand nine hundred nine' WHERE a=24135; UPDATE t2 SET c='nineteen thousand two hundred eighty-seven' WHERE a=24136; UPDATE t2 SET c='thirty-two thousand two hundred seventy' WHERE a=24137; UPDATE t2 SET c='eight thousand six' WHERE a=24138; UPDATE t2 SET c='thirty-seven thousand eight hundred thirty-four' WHERE a=24139; UPDATE t2 SET c='thirty-three thousand seven hundred sixty-six' WHERE a=24140; UPDATE t2 SET c='ninety-one thousand seven hundred twenty-three' WHERE a=24141; UPDATE t2 SET c='fifty-eight thousand eight hundred twenty-six' WHERE a=24142; UPDATE t2 SET c='seventy-nine thousand ninety' WHERE a=24143; UPDATE t2 SET c='twenty-eight thousand ninety-four' WHERE a=24144; UPDATE t2 SET c='eighty-five thousand ninety-three' WHERE a=24145; UPDATE t2 SET c='forty-two thousand eight hundred forty-three' WHERE a=24146; UPDATE t2 SET c='sixty-six thousand five hundred forty-two' WHERE a=24147; UPDATE t2 SET c='fifty-seven thousand four hundred sixty-five' WHERE a=24148; UPDATE t2 SET c='thirty-one thousand seven hundred forty-seven' WHERE a=24149; UPDATE t2 SET c='eighty-seven thousand two hundred eighteen' WHERE a=24150; UPDATE t2 SET c='thirty-nine thousand six hundred seventy-three' WHERE a=24151; UPDATE t2 SET c='thirty-seven thousand eight hundred eighty-eight' WHERE a=24152; UPDATE t2 SET c='twenty-nine thousand five hundred ninety-six' WHERE a=24153; UPDATE t2 SET c='eighty-one thousand eight hundred forty-seven' WHERE a=24154; UPDATE t2 SET c='fifty-two thousand four hundred sixty-nine' WHERE a=24155; UPDATE t2 SET c='twenty-four thousand seven hundred forty-seven' WHERE a=24156; UPDATE t2 SET c='ninety-five thousand two hundred eighty-eight' WHERE a=24157; UPDATE t2 SET c='fourteen thousand one hundred sixty-one' WHERE a=24158; UPDATE t2 SET c='fifty-four thousand nine hundred three' WHERE a=24159; UPDATE t2 SET c='forty-four thousand two hundred forty-five' WHERE a=24160; UPDATE t2 SET c='eighteen thousand five hundred ninety-three' WHERE a=24161; UPDATE t2 SET c='eighty-five thousand nine hundred eighty-nine' WHERE a=24162; UPDATE t2 SET c='seventy-one thousand five hundred seventy-two' WHERE a=24163; UPDATE t2 SET c='forty-three thousand five hundred thirty-five' WHERE a=24164; UPDATE t2 SET c='sixteen thousand nine hundred seventeen' WHERE a=24165; UPDATE t2 SET c='two thousand seven hundred thirty-four' WHERE a=24166; UPDATE t2 SET c='twenty-three thousand four hundred seventy-one' WHERE a=24167; UPDATE t2 SET c='four thousand five hundred sixty-one' WHERE a=24168; UPDATE t2 SET c='thirty-three thousand seventy-seven' WHERE a=24169; UPDATE t2 SET c='thirty-nine thousand six hundred seventy-eight' WHERE a=24170; UPDATE t2 SET c='thirty-one thousand one hundred forty' WHERE a=24171; UPDATE t2 SET c='seventy-two thousand four hundred thirty-eight' WHERE a=24172; UPDATE t2 SET c='thirteen thousand one hundred thirty-eight' WHERE a=24173; UPDATE t2 SET c='thirty-nine thousand three' WHERE a=24174; UPDATE t2 SET c='one thousand three hundred twenty-two' WHERE a=24175; UPDATE t2 SET c='four thousand seven hundred eleven' WHERE a=24176; UPDATE t2 SET c='five thousand two hundred ninety-eight' WHERE a=24177; UPDATE t2 SET c='eighty-nine thousand two hundred ten' WHERE a=24178; UPDATE t2 SET c='eighty-nine thousand three hundred ninety-eight' WHERE a=24179; UPDATE t2 SET c='twenty-six thousand six hundred seventy-nine' WHERE a=24180; UPDATE t2 SET c='twenty-five thousand seven hundred twenty-seven' WHERE a=24181; UPDATE t2 SET c='nineteen thousand five hundred fifty-five' WHERE a=24182; UPDATE t2 SET c='seventy-seven thousand three hundred ninety-nine' WHERE a=24183; UPDATE t2 SET c='twenty-six thousand three hundred thirty-eight' WHERE a=24184; UPDATE t2 SET c='eighty-one thousand three hundred ninety-nine' WHERE a=24185; UPDATE t2 SET c='fifty-one thousand two hundred forty-eight' WHERE a=24186; UPDATE t2 SET c='five thousand seven hundred sixty-nine' WHERE a=24187; UPDATE t2 SET c='forty-four thousand two hundred thirty-four' WHERE a=24188; UPDATE t2 SET c='twenty-eight thousand five hundred eighty-six' WHERE a=24189; UPDATE t2 SET c='eighty-nine thousand one hundred twenty-nine' WHERE a=24190; UPDATE t2 SET c='twenty-three thousand seven hundred twenty-four' WHERE a=24191; UPDATE t2 SET c='thirty-five thousand eight hundred seven' WHERE a=24192; UPDATE t2 SET c='seven thousand five hundred fifty-four' WHERE a=24193; UPDATE t2 SET c='twenty thousand eight hundred ninety-two' WHERE a=24194; UPDATE t2 SET c='sixty-one thousand nine hundred thirteen' WHERE a=24195; UPDATE t2 SET c='two thousand six hundred sixty-five' WHERE a=24196; UPDATE t2 SET c='seven thousand three hundred sixteen' WHERE a=24197; UPDATE t2 SET c='fifty-six thousand one hundred eleven' WHERE a=24198; UPDATE t2 SET c='twenty-one thousand seven hundred ninety' WHERE a=24199; UPDATE t2 SET c='fifty thousand two hundred five' WHERE a=24200; UPDATE t2 SET c='ninety-eight thousand four hundred' WHERE a=24201; UPDATE t2 SET c='thirty-two thousand nine hundred sixty-three' WHERE a=24202; UPDATE t2 SET c='forty-seven thousand two hundred seventy-eight' WHERE a=24203; UPDATE t2 SET c='sixty-one thousand six hundred one' WHERE a=24204; UPDATE t2 SET c='sixty-three thousand eight hundred forty-six' WHERE a=24205; UPDATE t2 SET c='twenty-six thousand five hundred sixty-eight' WHERE a=24206; UPDATE t2 SET c='twenty-eight thousand ninety-two' WHERE a=24207; UPDATE t2 SET c='twenty-seven thousand five hundred forty-one' WHERE a=24208; UPDATE t2 SET c='seventy-eight thousand three hundred seventy-six' WHERE a=24209; UPDATE t2 SET c='three thousand eight hundred forty-nine' WHERE a=24210; UPDATE t2 SET c='eighty-nine thousand seven hundred five' WHERE a=24211; UPDATE t2 SET c='ninety-eight thousand one hundred sixty-one' WHERE a=24212; UPDATE t2 SET c='six thousand eighty-two' WHERE a=24213; UPDATE t2 SET c='twenty-nine thousand seven hundred seventy-seven' WHERE a=24214; UPDATE t2 SET c='twenty-two thousand one hundred fifty-six' WHERE a=24215; UPDATE t2 SET c='forty-seven thousand nine hundred fifty-three' WHERE a=24216; UPDATE t2 SET c='forty-seven thousand four hundred forty-five' WHERE a=24217; UPDATE t2 SET c='seventy-nine thousand three hundred ninety-nine' WHERE a=24218; UPDATE t2 SET c='fourteen thousand two hundred seventy-four' WHERE a=24219; UPDATE t2 SET c='ninety-four thousand eight hundred twenty-five' WHERE a=24220; UPDATE t2 SET c='forty-three thousand three hundred sixty-six' WHERE a=24221; UPDATE t2 SET c='forty-four thousand eight hundred fifty-seven' WHERE a=24222; UPDATE t2 SET c='fifty-seven thousand one hundred forty-five' WHERE a=24223; UPDATE t2 SET c='seven thousand six hundred twenty-three' WHERE a=24224; UPDATE t2 SET c='sixty-two thousand four hundred two' WHERE a=24225; UPDATE t2 SET c='sixty-one thousand four hundred ten' WHERE a=24226; UPDATE t2 SET c='forty thousand three hundred eighty-one' WHERE a=24227; UPDATE t2 SET c='eighty-one thousand three hundred forty-one' WHERE a=24228; UPDATE t2 SET c='twenty-four thousand seven hundred sixty-eight' WHERE a=24229; UPDATE t2 SET c='sixty-four thousand seven hundred forty-four' WHERE a=24230; UPDATE t2 SET c='forty-five thousand nine hundred eighty-five' WHERE a=24231; UPDATE t2 SET c='eighty-eight thousand two hundred eighty-three' WHERE a=24232; UPDATE t2 SET c='thirteen thousand nine hundred six' WHERE a=24233; UPDATE t2 SET c='three thousand four hundred fifty-five' WHERE a=24234; UPDATE t2 SET c='eighty thousand six hundred nine' WHERE a=24235; UPDATE t2 SET c='ninety-two thousand five hundred ninety-two' WHERE a=24236; UPDATE t2 SET c='forty-one thousand seven hundred fifty-four' WHERE a=24237; UPDATE t2 SET c='three hundred forty-two' WHERE a=24238; UPDATE t2 SET c='twenty-seven thousand two hundred sixty-six' WHERE a=24239; UPDATE t2 SET c='thirty-one thousand four hundred twenty-five' WHERE a=24240; UPDATE t2 SET c='eight thousand eight hundred seventy-four' WHERE a=24241; UPDATE t2 SET c='fifty-five thousand three hundred fifty-two' WHERE a=24242; UPDATE t2 SET c='twenty-five thousand two hundred seventy-four' WHERE a=24243; UPDATE t2 SET c='sixteen thousand eight hundred fifty-six' WHERE a=24244; UPDATE t2 SET c='eleven thousand nine hundred eighty-two' WHERE a=24245; UPDATE t2 SET c='five thousand eight hundred seventeen' WHERE a=24246; UPDATE t2 SET c='sixty-seven thousand five hundred' WHERE a=24247; UPDATE t2 SET c='twenty-seven thousand four hundred thirty-one' WHERE a=24248; UPDATE t2 SET c='ninety-three thousand nine hundred ninety-eight' WHERE a=24249; UPDATE t2 SET c='eighty-one thousand four hundred seventeen' WHERE a=24250; UPDATE t2 SET c='ninety-five thousand three hundred twelve' WHERE a=24251; UPDATE t2 SET c='forty-eight thousand seven' WHERE a=24252; UPDATE t2 SET c='sixty-eight thousand six hundred sixty-four' WHERE a=24253; UPDATE t2 SET c='forty-two thousand three hundred thirty-eight' WHERE a=24254; UPDATE t2 SET c='eighty-seven thousand two hundred sixty-three' WHERE a=24255; UPDATE t2 SET c='forty-three thousand three hundred eleven' WHERE a=24256; UPDATE t2 SET c='thirty-nine thousand two hundred fifty-five' WHERE a=24257; UPDATE t2 SET c='twenty-nine thousand one hundred ninety-two' WHERE a=24258; UPDATE t2 SET c='fifty thousand two hundred ninety-seven' WHERE a=24259; UPDATE t2 SET c='five hundred twenty-six' WHERE a=24260; UPDATE t2 SET c='five thousand one hundred seventy-two' WHERE a=24261; UPDATE t2 SET c='two thousand seven hundred forty-two' WHERE a=24262; UPDATE t2 SET c='ninety-eight thousand five hundred twelve' WHERE a=24263; UPDATE t2 SET c='sixty thousand six hundred fifty-one' WHERE a=24264; UPDATE t2 SET c='ninety-six thousand seven hundred seventy-seven' WHERE a=24265; UPDATE t2 SET c='thirty-seven thousand six hundred fifty-two' WHERE a=24266; UPDATE t2 SET c='seventy thousand eight hundred forty-seven' WHERE a=24267; UPDATE t2 SET c='fifty-one thousand six hundred ninety-three' WHERE a=24268; UPDATE t2 SET c='eighty-one thousand one hundred eighty' WHERE a=24269; UPDATE t2 SET c='sixty-eight thousand six hundred sixty-two' WHERE a=24270; UPDATE t2 SET c='sixty-seven thousand five hundred twelve' WHERE a=24271; UPDATE t2 SET c='fifty-four thousand two hundred eighteen' WHERE a=24272; UPDATE t2 SET c='ninety-eight thousand four hundred seventy-seven' WHERE a=24273; UPDATE t2 SET c='thirty-three thousand nine hundred four' WHERE a=24274; UPDATE t2 SET c='six thousand nine hundred fifty-eight' WHERE a=24275; UPDATE t2 SET c='ten thousand forty-eight' WHERE a=24276; UPDATE t2 SET c='eighty-one thousand nine hundred seventy-seven' WHERE a=24277; UPDATE t2 SET c='ninety thousand two hundred sixty-eight' WHERE a=24278; UPDATE t2 SET c='twenty-seven thousand one hundred three' WHERE a=24279; UPDATE t2 SET c='ninety-six thousand six hundred seventy-four' WHERE a=24280; UPDATE t2 SET c='sixty-seven thousand ninety' WHERE a=24281; UPDATE t2 SET c='twenty thousand four hundred twenty-one' WHERE a=24282; UPDATE t2 SET c='seventy-five thousand eight hundred ninety-nine' WHERE a=24283; UPDATE t2 SET c='ninety-nine thousand three hundred sixty-four' WHERE a=24284; UPDATE t2 SET c='one thousand six hundred thirty-nine' WHERE a=24285; UPDATE t2 SET c='sixteen thousand nine hundred eighty-one' WHERE a=24286; UPDATE t2 SET c='thirty-six thousand one hundred eighty-nine' WHERE a=24287; UPDATE t2 SET c='seven thousand nine hundred eighty-six' WHERE a=24288; UPDATE t2 SET c='eighty-five thousand two hundred twenty-seven' WHERE a=24289; UPDATE t2 SET c='thirty-eight thousand nine hundred seventy-nine' WHERE a=24290; UPDATE t2 SET c='ninety-six thousand six hundred eight' WHERE a=24291; UPDATE t2 SET c='fifty-six thousand four hundred fifty-eight' WHERE a=24292; UPDATE t2 SET c='eighty-one thousand seven hundred seventy-five' WHERE a=24293; UPDATE t2 SET c='twenty thousand one hundred thirty-four' WHERE a=24294; UPDATE t2 SET c='ninety-six thousand four hundred fifty-four' WHERE a=24295; UPDATE t2 SET c='eighty-three thousand four hundred twenty-four' WHERE a=24296; UPDATE t2 SET c='ninety-nine thousand five hundred ninety-six' WHERE a=24297; UPDATE t2 SET c='thirty-four thousand two hundred fifty-seven' WHERE a=24298; UPDATE t2 SET c='ninety-five thousand six hundred seven' WHERE a=24299; UPDATE t2 SET c='eighteen thousand ninety-four' WHERE a=24300; UPDATE t2 SET c='sixty-eight thousand seven hundred ninety-five' WHERE a=24301; UPDATE t2 SET c='ninety-nine thousand one hundred eighty-six' WHERE a=24302; UPDATE t2 SET c='seventy-seven thousand three hundred sixty-eight' WHERE a=24303; UPDATE t2 SET c='eighty-three thousand four hundred thirty-seven' WHERE a=24304; UPDATE t2 SET c='forty-six thousand seven hundred twenty' WHERE a=24305; UPDATE t2 SET c='fifteen thousand nine hundred fifty-seven' WHERE a=24306; UPDATE t2 SET c='eighty-five thousand nine hundred ninety-nine' WHERE a=24307; UPDATE t2 SET c='nineteen thousand eight hundred ninety-four' WHERE a=24308; UPDATE t2 SET c='twelve thousand one hundred eighty-three' WHERE a=24309; UPDATE t2 SET c='thirty-two thousand four hundred ninety-eight' WHERE a=24310; UPDATE t2 SET c='seventy-eight thousand one hundred sixty' WHERE a=24311; UPDATE t2 SET c='seventy-three thousand two hundred forty' WHERE a=24312; UPDATE t2 SET c='forty-five thousand four hundred thirty-six' WHERE a=24313; UPDATE t2 SET c='thirty-three thousand nine hundred nineteen' WHERE a=24314; UPDATE t2 SET c='nineteen thousand four hundred eighty-four' WHERE a=24315; UPDATE t2 SET c='fifty-seven thousand one hundred sixty-eight' WHERE a=24316; UPDATE t2 SET c='thirty-three thousand seven hundred forty-one' WHERE a=24317; UPDATE t2 SET c='thirty-one thousand nine hundred twelve' WHERE a=24318; UPDATE t2 SET c='forty-nine thousand six hundred eighty-seven' WHERE a=24319; UPDATE t2 SET c='ninety-nine thousand nine hundred seventy-seven' WHERE a=24320; UPDATE t2 SET c='seventy thousand four hundred eighty-five' WHERE a=24321; UPDATE t2 SET c='seventy-nine thousand five hundred eighty-two' WHERE a=24322; UPDATE t2 SET c='sixteen thousand four hundred sixty-one' WHERE a=24323; UPDATE t2 SET c='fifty-seven thousand two hundred sixty-nine' WHERE a=24324; UPDATE t2 SET c='six thousand eighty-four' WHERE a=24325; UPDATE t2 SET c='twenty-eight thousand five hundred seventy-nine' WHERE a=24326; UPDATE t2 SET c='seventeen thousand ninety-one' WHERE a=24327; UPDATE t2 SET c='seventy-eight thousand two hundred eighty-three' WHERE a=24328; UPDATE t2 SET c='fifty-four thousand nine hundred eleven' WHERE a=24329; UPDATE t2 SET c='seven thousand five hundred ninety-five' WHERE a=24330; UPDATE t2 SET c='sixty-seven thousand two hundred ninety-eight' WHERE a=24331; UPDATE t2 SET c='forty-four thousand four hundred sixty-nine' WHERE a=24332; UPDATE t2 SET c='forty-seven thousand two hundred ninety-eight' WHERE a=24333; UPDATE t2 SET c='seventy thousand seven hundred seventeen' WHERE a=24334; UPDATE t2 SET c='nine thousand seven hundred thirty-one' WHERE a=24335; UPDATE t2 SET c='ninety-eight thousand five hundred thirty-four' WHERE a=24336; UPDATE t2 SET c='six thousand four hundred eighty-nine' WHERE a=24337; UPDATE t2 SET c='ninety-four thousand three hundred thirty-three' WHERE a=24338; UPDATE t2 SET c='thirty-nine thousand four hundred seven' WHERE a=24339; UPDATE t2 SET c='seventy-eight thousand one hundred twenty-two' WHERE a=24340; UPDATE t2 SET c='seventy thousand six hundred thirty-four' WHERE a=24341; UPDATE t2 SET c='thirty-two thousand nine hundred one' WHERE a=24342; UPDATE t2 SET c='eighty-six thousand ninety-eight' WHERE a=24343; UPDATE t2 SET c='sixty-two thousand five hundred eighty-seven' WHERE a=24344; UPDATE t2 SET c='sixty thousand seven hundred thirty-one' WHERE a=24345; UPDATE t2 SET c='eighteen thousand eight hundred forty-three' WHERE a=24346; UPDATE t2 SET c='forty-one thousand nine hundred thirty' WHERE a=24347; UPDATE t2 SET c='two thousand eight hundred fifty-four' WHERE a=24348; UPDATE t2 SET c='seventy-nine thousand five hundred nine' WHERE a=24349; UPDATE t2 SET c='thirty-six thousand four hundred thirty-six' WHERE a=24350; UPDATE t2 SET c='twenty-six thousand four hundred three' WHERE a=24351; UPDATE t2 SET c='one thousand five hundred twenty-one' WHERE a=24352; UPDATE t2 SET c='ninety-six thousand three hundred seventy-two' WHERE a=24353; UPDATE t2 SET c='fifty-four thousand three hundred ninety-five' WHERE a=24354; UPDATE t2 SET c='ninety thousand two hundred seventy-nine' WHERE a=24355; UPDATE t2 SET c='ninety-three thousand one hundred fifty-five' WHERE a=24356; UPDATE t2 SET c='ninety-four thousand three hundred two' WHERE a=24357; UPDATE t2 SET c='eleven thousand two hundred eighty-eight' WHERE a=24358; UPDATE t2 SET c='sixty-eight thousand four hundred forty-three' WHERE a=24359; UPDATE t2 SET c='fifty-one thousand nine hundred thirty-six' WHERE a=24360; UPDATE t2 SET c='fifty-nine thousand ninety' WHERE a=24361; UPDATE t2 SET c='fifty-four thousand five hundred ninety-five' WHERE a=24362; UPDATE t2 SET c='twenty-two thousand nine hundred eight' WHERE a=24363; UPDATE t2 SET c='twelve thousand eight hundred sixty-nine' WHERE a=24364; UPDATE t2 SET c='ninety-four thousand nine hundred seventy-nine' WHERE a=24365; UPDATE t2 SET c='fifty thousand four hundred six' WHERE a=24366; UPDATE t2 SET c='eighty-four thousand one hundred eighty-six' WHERE a=24367; UPDATE t2 SET c='thirteen thousand two hundred eighty-five' WHERE a=24368; UPDATE t2 SET c='seventy-one thousand six hundred fifty-three' WHERE a=24369; UPDATE t2 SET c='seventy thousand six hundred eighty-nine' WHERE a=24370; UPDATE t2 SET c='thirty-four thousand nine hundred ninety' WHERE a=24371; UPDATE t2 SET c='thirty-four thousand five hundred fifty-six' WHERE a=24372; UPDATE t2 SET c='ninety-four thousand four hundred five' WHERE a=24373; UPDATE t2 SET c='ninety-eight thousand eighteen' WHERE a=24374; UPDATE t2 SET c='thirty-seven thousand sixty-eight' WHERE a=24375; UPDATE t2 SET c='thirty-two thousand nine hundred eighty-five' WHERE a=24376; UPDATE t2 SET c='twenty-eight thousand eight hundred thirty-six' WHERE a=24377; UPDATE t2 SET c='fifty-two thousand six hundred forty-five' WHERE a=24378; UPDATE t2 SET c='eighty-one thousand four hundred ninety-six' WHERE a=24379; UPDATE t2 SET c='twenty-one thousand two hundred thirty-one' WHERE a=24380; UPDATE t2 SET c='twenty-two thousand one hundred sixty-six' WHERE a=24381; UPDATE t2 SET c='six hundred ninety' WHERE a=24382; UPDATE t2 SET c='forty-one thousand eight hundred eighty-four' WHERE a=24383; UPDATE t2 SET c='twenty-nine thousand one hundred forty-seven' WHERE a=24384; UPDATE t2 SET c='fifty-one thousand ten' WHERE a=24385; UPDATE t2 SET c='seventy thousand four hundred eighty-four' WHERE a=24386; UPDATE t2 SET c='ninety-two thousand four hundred twenty' WHERE a=24387; UPDATE t2 SET c='ninety-two thousand nine hundred eighty-six' WHERE a=24388; UPDATE t2 SET c='six thousand nine hundred twenty-two' WHERE a=24389; UPDATE t2 SET c='sixteen thousand two hundred fifty-two' WHERE a=24390; UPDATE t2 SET c='thirty thousand eight hundred ninety-one' WHERE a=24391; UPDATE t2 SET c='thirty thousand seven hundred eighty-one' WHERE a=24392; UPDATE t2 SET c='thirty-three thousand four hundred fifty-six' WHERE a=24393; UPDATE t2 SET c='seventy-seven thousand seven hundred forty-four' WHERE a=24394; UPDATE t2 SET c='twenty-eight thousand three hundred ninety-two' WHERE a=24395; UPDATE t2 SET c='sixteen thousand three hundred thirty-four' WHERE a=24396; UPDATE t2 SET c='seventy-seven thousand one hundred seventy' WHERE a=24397; UPDATE t2 SET c='twenty-eight thousand four hundred twenty-five' WHERE a=24398; UPDATE t2 SET c='ninety-eight thousand sixty' WHERE a=24399; UPDATE t2 SET c='forty-four thousand four hundred sixty-nine' WHERE a=24400; UPDATE t2 SET c='eight thousand three hundred fifty-eight' WHERE a=24401; UPDATE t2 SET c='forty-eight thousand seven hundred thirty-five' WHERE a=24402; UPDATE t2 SET c='fifty-four thousand ninety-two' WHERE a=24403; UPDATE t2 SET c='three thousand four hundred thirty-five' WHERE a=24404; UPDATE t2 SET c='nine thousand six hundred eighty-seven' WHERE a=24405; UPDATE t2 SET c='twenty-five thousand nine hundred forty-nine' WHERE a=24406; UPDATE t2 SET c='ten thousand four hundred thirty-seven' WHERE a=24407; UPDATE t2 SET c='thirty-six thousand four hundred fifty' WHERE a=24408; UPDATE t2 SET c='seventy-eight thousand nine hundred thirty-four' WHERE a=24409; UPDATE t2 SET c='eighty-one thousand seven hundred five' WHERE a=24410; UPDATE t2 SET c='ninety-four thousand one hundred sixty' WHERE a=24411; UPDATE t2 SET c='eighty-one thousand five hundred eighty-seven' WHERE a=24412; UPDATE t2 SET c='sixty-three thousand two hundred eleven' WHERE a=24413; UPDATE t2 SET c='thirty-six thousand nine hundred twenty-one' WHERE a=24414; UPDATE t2 SET c='thirty-two thousand six hundred fifty-five' WHERE a=24415; UPDATE t2 SET c='twenty-nine thousand fifty' WHERE a=24416; UPDATE t2 SET c='forty-four thousand five hundred forty-five' WHERE a=24417; UPDATE t2 SET c='thirty-five thousand seven hundred forty-one' WHERE a=24418; UPDATE t2 SET c='forty-five thousand seven hundred seventy-five' WHERE a=24419; UPDATE t2 SET c='seventy thousand one hundred seventy-nine' WHERE a=24420; UPDATE t2 SET c='forty-five thousand sixty-six' WHERE a=24421; UPDATE t2 SET c='eighty-seven thousand one hundred four' WHERE a=24422; UPDATE t2 SET c='eighty-three thousand twenty-two' WHERE a=24423; UPDATE t2 SET c='twenty-four thousand eight hundred forty' WHERE a=24424; UPDATE t2 SET c='seventy thousand two hundred fifty-six' WHERE a=24425; UPDATE t2 SET c='thirty-one thousand six hundred ninety-seven' WHERE a=24426; UPDATE t2 SET c='twenty-six thousand three hundred twenty' WHERE a=24427; UPDATE t2 SET c='thirteen thousand seven hundred sixty-one' WHERE a=24428; UPDATE t2 SET c='two thousand eight hundred eighty-eight' WHERE a=24429; UPDATE t2 SET c='sixty-seven thousand four hundred eighty-five' WHERE a=24430; UPDATE t2 SET c='eighty thousand nine hundred sixty-eight' WHERE a=24431; UPDATE t2 SET c='eighty-one thousand five hundred seventy-nine' WHERE a=24432; UPDATE t2 SET c='thirty-five thousand one hundred forty-one' WHERE a=24433; UPDATE t2 SET c='eighty-nine thousand one hundred ninety-eight' WHERE a=24434; UPDATE t2 SET c='forty-five thousand five hundred eighty-four' WHERE a=24435; UPDATE t2 SET c='fifty thousand four hundred sixty-five' WHERE a=24436; UPDATE t2 SET c='one hundred thirty-four' WHERE a=24437; UPDATE t2 SET c='seventeen thousand two hundred eight' WHERE a=24438; UPDATE t2 SET c='ninety-two thousand nine hundred ninety-three' WHERE a=24439; UPDATE t2 SET c='thirty-six thousand eighty-four' WHERE a=24440; UPDATE t2 SET c='thirteen thousand five hundred thirty-four' WHERE a=24441; UPDATE t2 SET c='twenty-eight thousand one hundred forty' WHERE a=24442; UPDATE t2 SET c='eighty-six thousand seven hundred sixty-five' WHERE a=24443; UPDATE t2 SET c='sixty-one thousand five hundred seventy-seven' WHERE a=24444; UPDATE t2 SET c='fifty-seven thousand four hundred seventy-six' WHERE a=24445; UPDATE t2 SET c='thirty thousand seven hundred thirty-six' WHERE a=24446; UPDATE t2 SET c='seventy-seven thousand three hundred eighty-three' WHERE a=24447; UPDATE t2 SET c='forty-six thousand seven hundred twenty-three' WHERE a=24448; UPDATE t2 SET c='thirty-two thousand three hundred forty-three' WHERE a=24449; UPDATE t2 SET c='seventeen thousand nine hundred sixty-four' WHERE a=24450; UPDATE t2 SET c='thirty-one thousand six' WHERE a=24451; UPDATE t2 SET c='thirty-nine thousand eight hundred five' WHERE a=24452; UPDATE t2 SET c='thirty-seven thousand six hundred seventy-one' WHERE a=24453; UPDATE t2 SET c='thirty-seven thousand one hundred twenty' WHERE a=24454; UPDATE t2 SET c='one thousand five hundred forty-three' WHERE a=24455; UPDATE t2 SET c='sixty-one thousand ninety' WHERE a=24456; UPDATE t2 SET c='ninety-one thousand eighty-six' WHERE a=24457; UPDATE t2 SET c='eighty-five thousand seventy-four' WHERE a=24458; UPDATE t2 SET c='eighty-seven thousand three hundred thirty-four' WHERE a=24459; UPDATE t2 SET c='twenty-eight thousand three hundred thirty-eight' WHERE a=24460; UPDATE t2 SET c='fifty-two thousand twenty-six' WHERE a=24461; UPDATE t2 SET c='seventy-three thousand nine hundred fifty-five' WHERE a=24462; UPDATE t2 SET c='seventy-one thousand thirteen' WHERE a=24463; UPDATE t2 SET c='forty-six thousand six hundred thirty-two' WHERE a=24464; UPDATE t2 SET c='fifty-nine thousand six hundred eighteen' WHERE a=24465; UPDATE t2 SET c='twenty-one thousand two hundred twenty-seven' WHERE a=24466; UPDATE t2 SET c='thirty thousand two hundred sixty-four' WHERE a=24467; UPDATE t2 SET c='sixteen thousand one hundred eleven' WHERE a=24468; UPDATE t2 SET c='ninety-seven thousand forty-three' WHERE a=24469; UPDATE t2 SET c='sixty-one thousand four hundred seven' WHERE a=24470; UPDATE t2 SET c='forty-seven thousand eight hundred forty-six' WHERE a=24471; UPDATE t2 SET c='seventy-six thousand fifty-seven' WHERE a=24472; UPDATE t2 SET c='seventy-one thousand eight hundred fifteen' WHERE a=24473; UPDATE t2 SET c='twelve thousand eight hundred thirty-nine' WHERE a=24474; UPDATE t2 SET c='ninety-eight thousand four hundred ninety-four' WHERE a=24475; UPDATE t2 SET c='sixty thousand one hundred fifty-seven' WHERE a=24476; UPDATE t2 SET c='eighty-four thousand seven hundred seventy-three' WHERE a=24477; UPDATE t2 SET c='forty-nine thousand four hundred thirty-two' WHERE a=24478; UPDATE t2 SET c='sixteen thousand thirty-two' WHERE a=24479; UPDATE t2 SET c='forty-six thousand five hundred eighty-six' WHERE a=24480; UPDATE t2 SET c='ninety-four thousand two hundred fifty-three' WHERE a=24481; UPDATE t2 SET c='eighty-eight thousand one hundred twenty-four' WHERE a=24482; UPDATE t2 SET c='ninety-five thousand eight hundred thirty-one' WHERE a=24483; UPDATE t2 SET c='thirty-four thousand four hundred sixty-eight' WHERE a=24484; UPDATE t2 SET c='forty-five thousand three hundred eighty-one' WHERE a=24485; UPDATE t2 SET c='six thousand seven hundred ninety-nine' WHERE a=24486; UPDATE t2 SET c='sixty-two thousand eight hundred forty-one' WHERE a=24487; UPDATE t2 SET c='twenty-two thousand six hundred eighteen' WHERE a=24488; UPDATE t2 SET c='sixty-four thousand eight hundred eighteen' WHERE a=24489; UPDATE t2 SET c='eighty-nine thousand three hundred fifty-three' WHERE a=24490; UPDATE t2 SET c='one thousand one hundred seventy-five' WHERE a=24491; UPDATE t2 SET c='fifty-five thousand three hundred thirty-six' WHERE a=24492; UPDATE t2 SET c='eighty-eight thousand eight hundred seventy-four' WHERE a=24493; UPDATE t2 SET c='thirty-five thousand one hundred thirty-nine' WHERE a=24494; UPDATE t2 SET c='ninety-eight thousand one hundred four' WHERE a=24495; UPDATE t2 SET c='ninety-five thousand four hundred fifty-six' WHERE a=24496; UPDATE t2 SET c='twenty-three thousand five hundred forty-seven' WHERE a=24497; UPDATE t2 SET c='fifty-three thousand four hundred ninety-nine' WHERE a=24498; UPDATE t2 SET c='eighty-four thousand three hundred forty-six' WHERE a=24499; UPDATE t2 SET c='sixty-nine thousand four hundred two' WHERE a=24500; UPDATE t2 SET c='thirty-one thousand six hundred seventy-six' WHERE a=24501; UPDATE t2 SET c='fifty-two thousand four hundred seventy-one' WHERE a=24502; UPDATE t2 SET c='ninety-four thousand one hundred twenty' WHERE a=24503; UPDATE t2 SET c='ninety-one thousand nine hundred thirty-five' WHERE a=24504; UPDATE t2 SET c='eight thousand six hundred nineteen' WHERE a=24505; UPDATE t2 SET c='sixty-six thousand one hundred thirty-eight' WHERE a=24506; UPDATE t2 SET c='fifty-four thousand nine hundred ninety-five' WHERE a=24507; UPDATE t2 SET c='eighty-one thousand four hundred seventy-two' WHERE a=24508; UPDATE t2 SET c='ninety thousand three hundred sixty-two' WHERE a=24509; UPDATE t2 SET c='nineteen thousand three hundred forty-five' WHERE a=24510; UPDATE t2 SET c='sixteen thousand three hundred fifty-nine' WHERE a=24511; UPDATE t2 SET c='fifty thousand nine hundred seventy-five' WHERE a=24512; UPDATE t2 SET c='sixty-nine thousand eight hundred sixty-seven' WHERE a=24513; UPDATE t2 SET c='twenty-six thousand three hundred thirty-seven' WHERE a=24514; UPDATE t2 SET c='eighty-nine thousand three hundred six' WHERE a=24515; UPDATE t2 SET c='ninety-six thousand three hundred eighty-two' WHERE a=24516; UPDATE t2 SET c='twenty-six thousand seven hundred five' WHERE a=24517; UPDATE t2 SET c='sixty-four thousand four hundred thirty-three' WHERE a=24518; UPDATE t2 SET c='ninety-two thousand five hundred seventy' WHERE a=24519; UPDATE t2 SET c='forty-six thousand fifty-six' WHERE a=24520; UPDATE t2 SET c='eighteen thousand two hundred eighty-six' WHERE a=24521; UPDATE t2 SET c='thirty-two thousand ninety-seven' WHERE a=24522; UPDATE t2 SET c='fifty thousand nine hundred eighty-five' WHERE a=24523; UPDATE t2 SET c='ninety-seven thousand eight hundred thirty' WHERE a=24524; UPDATE t2 SET c='eighty-six thousand five hundred eighty-three' WHERE a=24525; UPDATE t2 SET c='fifty-nine thousand nine hundred twenty-one' WHERE a=24526; UPDATE t2 SET c='twenty-five thousand five hundred thirteen' WHERE a=24527; UPDATE t2 SET c='seventy-seven thousand one hundred thirty-five' WHERE a=24528; UPDATE t2 SET c='ten thousand one hundred twenty-six' WHERE a=24529; UPDATE t2 SET c='fifty-one thousand five hundred sixty-nine' WHERE a=24530; UPDATE t2 SET c='eighty-eight thousand nine hundred fifty-one' WHERE a=24531; UPDATE t2 SET c='ninety-one thousand one hundred seventeen' WHERE a=24532; UPDATE t2 SET c='twenty-three thousand eight hundred seventy-one' WHERE a=24533; UPDATE t2 SET c='seventy-five thousand nine hundred seventy-four' WHERE a=24534; UPDATE t2 SET c='eighty-nine thousand nine hundred ninety-seven' WHERE a=24535; UPDATE t2 SET c='ninety thousand three hundred ninety-seven' WHERE a=24536; UPDATE t2 SET c='thirty-one thousand nine hundred thirty-nine' WHERE a=24537; UPDATE t2 SET c='fifty thousand five hundred twelve' WHERE a=24538; UPDATE t2 SET c='sixty-six thousand six hundred sixty-four' WHERE a=24539; UPDATE t2 SET c='fifty thousand two hundred sixteen' WHERE a=24540; UPDATE t2 SET c='seventy-nine thousand seven hundred eleven' WHERE a=24541; UPDATE t2 SET c='thirty-three thousand seven hundred twenty' WHERE a=24542; UPDATE t2 SET c='seventy-seven thousand nine hundred twenty-six' WHERE a=24543; UPDATE t2 SET c='eighteen thousand five hundred seventy' WHERE a=24544; UPDATE t2 SET c='eleven thousand nine hundred fifty-nine' WHERE a=24545; UPDATE t2 SET c='eight thousand six hundred twenty-six' WHERE a=24546; UPDATE t2 SET c='thirty-six thousand six hundred two' WHERE a=24547; UPDATE t2 SET c='thirty-nine thousand sixty' WHERE a=24548; UPDATE t2 SET c='ninety-six thousand seven hundred forty-nine' WHERE a=24549; UPDATE t2 SET c='eighty-seven thousand five hundred sixty-three' WHERE a=24550; UPDATE t2 SET c='sixty-eight thousand fifty-nine' WHERE a=24551; UPDATE t2 SET c='fifty-two thousand four hundred fifteen' WHERE a=24552; UPDATE t2 SET c='fifty thousand forty-one' WHERE a=24553; UPDATE t2 SET c='twenty-two thousand six hundred thirty-eight' WHERE a=24554; UPDATE t2 SET c='fifty-seven thousand four hundred six' WHERE a=24555; UPDATE t2 SET c='seven thousand seven hundred sixty-two' WHERE a=24556; UPDATE t2 SET c='fifty-eight thousand eight hundred fifty-eight' WHERE a=24557; UPDATE t2 SET c='fifty-nine thousand five hundred eighty-nine' WHERE a=24558; UPDATE t2 SET c='three thousand six hundred thirty-two' WHERE a=24559; UPDATE t2 SET c='sixty-nine thousand two hundred twenty-eight' WHERE a=24560; UPDATE t2 SET c='twelve thousand one hundred sixty-seven' WHERE a=24561; UPDATE t2 SET c='eighty-seven thousand three hundred two' WHERE a=24562; UPDATE t2 SET c='forty-six thousand seven hundred fifty-seven' WHERE a=24563; UPDATE t2 SET c='ninety-nine thousand eight hundred fifteen' WHERE a=24564; UPDATE t2 SET c='sixty-two thousand one hundred eighty-nine' WHERE a=24565; UPDATE t2 SET c='fifty-eight thousand forty-six' WHERE a=24566; UPDATE t2 SET c='thirty-five thousand two hundred seventy-three' WHERE a=24567; UPDATE t2 SET c='thirty-five thousand seven hundred fifty-three' WHERE a=24568; UPDATE t2 SET c='seventy-four thousand six hundred sixty-nine' WHERE a=24569; UPDATE t2 SET c='eighty-seven thousand four hundred ninety-nine' WHERE a=24570; UPDATE t2 SET c='thirty-six thousand fourteen' WHERE a=24571; UPDATE t2 SET c='eighty-four thousand eighty-one' WHERE a=24572; UPDATE t2 SET c='eighty thousand seven hundred eighty-eight' WHERE a=24573; UPDATE t2 SET c='thirty thousand eighty-five' WHERE a=24574; UPDATE t2 SET c='forty-two thousand one hundred five' WHERE a=24575; UPDATE t2 SET c='eight thousand nine' WHERE a=24576; UPDATE t2 SET c='sixty-one thousand five hundred seventy-five' WHERE a=24577; UPDATE t2 SET c='eight thousand twenty-four' WHERE a=24578; UPDATE t2 SET c='thirty-one thousand two hundred ninety-six' WHERE a=24579; UPDATE t2 SET c='thirty-seven thousand five hundred fifty-eight' WHERE a=24580; UPDATE t2 SET c='seventy-nine thousand twenty-four' WHERE a=24581; UPDATE t2 SET c='twenty-two thousand nine hundred fifty-one' WHERE a=24582; UPDATE t2 SET c='five thousand nine hundred eighty-one' WHERE a=24583; UPDATE t2 SET c='sixty-seven thousand six hundred forty-nine' WHERE a=24584; UPDATE t2 SET c='fifty-one thousand two hundred eighty-five' WHERE a=24585; UPDATE t2 SET c='sixty-nine thousand five hundred eighty-three' WHERE a=24586; UPDATE t2 SET c='two thousand seven hundred sixty-five' WHERE a=24587; UPDATE t2 SET c='eighty-three thousand two hundred twelve' WHERE a=24588; UPDATE t2 SET c='fifty-three thousand one hundred eighty-six' WHERE a=24589; UPDATE t2 SET c='fifty-five thousand seven hundred fifty-four' WHERE a=24590; UPDATE t2 SET c='seventy-seven thousand eight hundred forty-five' WHERE a=24591; UPDATE t2 SET c='eighty-eight thousand nine hundred fifty-eight' WHERE a=24592; UPDATE t2 SET c='fifty-four thousand two hundred fifty-three' WHERE a=24593; UPDATE t2 SET c='forty thousand thirty-four' WHERE a=24594; UPDATE t2 SET c='eighty-eight thousand two hundred thirty' WHERE a=24595; UPDATE t2 SET c='thirty thousand eight hundred forty-two' WHERE a=24596; UPDATE t2 SET c='seventy-three thousand two hundred fifty-five' WHERE a=24597; UPDATE t2 SET c='five thousand three hundred thirty-three' WHERE a=24598; UPDATE t2 SET c='eighty-three thousand twenty-three' WHERE a=24599; UPDATE t2 SET c='sixty-nine thousand five hundred eleven' WHERE a=24600; UPDATE t2 SET c='forty thousand eight hundred twenty' WHERE a=24601; UPDATE t2 SET c='ninety-eight thousand sixty-one' WHERE a=24602; UPDATE t2 SET c='twenty-four thousand three hundred forty-one' WHERE a=24603; UPDATE t2 SET c='sixty-six thousand six hundred forty-four' WHERE a=24604; UPDATE t2 SET c='eighty-two thousand three hundred sixty-six' WHERE a=24605; UPDATE t2 SET c='sixty-four thousand four hundred twenty-eight' WHERE a=24606; UPDATE t2 SET c='eleven thousand two hundred fifty' WHERE a=24607; UPDATE t2 SET c='seventy-six thousand nine hundred sixty-four' WHERE a=24608; UPDATE t2 SET c='forty-four thousand' WHERE a=24609; UPDATE t2 SET c='ninety thousand one hundred two' WHERE a=24610; UPDATE t2 SET c='thirty-four thousand one hundred sixty-seven' WHERE a=24611; UPDATE t2 SET c='five thousand seven hundred two' WHERE a=24612; UPDATE t2 SET c='thirteen thousand nine hundred fifty-nine' WHERE a=24613; UPDATE t2 SET c='thirty-five thousand four hundred ten' WHERE a=24614; UPDATE t2 SET c='eighty-three thousand three hundred fifty' WHERE a=24615; UPDATE t2 SET c='sixty-six thousand eight hundred seventy-two' WHERE a=24616; UPDATE t2 SET c='seventy-six thousand two hundred fourteen' WHERE a=24617; UPDATE t2 SET c='twenty-five thousand ninety-five' WHERE a=24618; UPDATE t2 SET c='seventeen thousand one hundred thirty-five' WHERE a=24619; UPDATE t2 SET c='twenty-six thousand five hundred eighty-five' WHERE a=24620; UPDATE t2 SET c='nineteen thousand seven hundred eighteen' WHERE a=24621; UPDATE t2 SET c='eighty-five thousand four hundred sixty-six' WHERE a=24622; UPDATE t2 SET c='eighty-two thousand six hundred sixty-three' WHERE a=24623; UPDATE t2 SET c='twenty-seven thousand two hundred nineteen' WHERE a=24624; UPDATE t2 SET c='eight thousand seventy-eight' WHERE a=24625; UPDATE t2 SET c='eight thousand three hundred sixty-five' WHERE a=24626; UPDATE t2 SET c='seventy-four thousand nine hundred twenty-eight' WHERE a=24627; UPDATE t2 SET c='seventy-eight thousand six hundred eight' WHERE a=24628; UPDATE t2 SET c='fifty-two thousand seventy-three' WHERE a=24629; UPDATE t2 SET c='thirty-six thousand three hundred seven' WHERE a=24630; UPDATE t2 SET c='sixty-one thousand eight hundred forty-four' WHERE a=24631; UPDATE t2 SET c='eighty-seven thousand seven hundred seventy-two' WHERE a=24632; UPDATE t2 SET c='twenty-five thousand three hundred sixty-two' WHERE a=24633; UPDATE t2 SET c='forty thousand three hundred fifteen' WHERE a=24634; UPDATE t2 SET c='ninety-three thousand two hundred forty-seven' WHERE a=24635; UPDATE t2 SET c='two thousand twenty-eight' WHERE a=24636; UPDATE t2 SET c='forty-two thousand six hundred thirty-eight' WHERE a=24637; UPDATE t2 SET c='sixty-four thousand five hundred one' WHERE a=24638; UPDATE t2 SET c='forty-two thousand four hundred twenty-four' WHERE a=24639; UPDATE t2 SET c='twenty-seven thousand three hundred ninety' WHERE a=24640; UPDATE t2 SET c='thirty-nine thousand seven hundred fifty-five' WHERE a=24641; UPDATE t2 SET c='thirty-seven thousand four hundred ten' WHERE a=24642; UPDATE t2 SET c='four thousand five hundred thirty-nine' WHERE a=24643; UPDATE t2 SET c='thirty-two thousand six hundred seventy-six' WHERE a=24644; UPDATE t2 SET c='eighty-eight thousand two hundred thirty' WHERE a=24645; UPDATE t2 SET c='fifty-two thousand seven hundred twenty-eight' WHERE a=24646; UPDATE t2 SET c='eighty-three thousand seven hundred eighty-four' WHERE a=24647; UPDATE t2 SET c='sixty-three thousand nine hundred eighty-six' WHERE a=24648; UPDATE t2 SET c='five thousand two' WHERE a=24649; UPDATE t2 SET c='sixty-one thousand three hundred thirty-two' WHERE a=24650; UPDATE t2 SET c='eighteen thousand five hundred fifty-eight' WHERE a=24651; UPDATE t2 SET c='sixty thousand seven hundred sixty-five' WHERE a=24652; UPDATE t2 SET c='nine thousand three hundred seventy-eight' WHERE a=24653; UPDATE t2 SET c='four thousand eight hundred fifty-six' WHERE a=24654; UPDATE t2 SET c='seventy thousand four hundred eighty-three' WHERE a=24655; UPDATE t2 SET c='fifty-three thousand two hundred seventy-seven' WHERE a=24656; UPDATE t2 SET c='sixty-eight thousand six hundred sixty-five' WHERE a=24657; UPDATE t2 SET c='eleven thousand three hundred seventeen' WHERE a=24658; UPDATE t2 SET c='seventy-one thousand one hundred forty-nine' WHERE a=24659; UPDATE t2 SET c='thirty-eight thousand two hundred sixty-seven' WHERE a=24660; UPDATE t2 SET c='fifty thousand one hundred thirty-three' WHERE a=24661; UPDATE t2 SET c='ninety-two thousand three hundred thirty-nine' WHERE a=24662; UPDATE t2 SET c='twenty-three thousand eight hundred sixty-eight' WHERE a=24663; UPDATE t2 SET c='two thousand five hundred eighty-six' WHERE a=24664; UPDATE t2 SET c='eight thousand six hundred ninety' WHERE a=24665; UPDATE t2 SET c='forty-seven thousand nine hundred ten' WHERE a=24666; UPDATE t2 SET c='eighty-six thousand six hundred sixty-one' WHERE a=24667; UPDATE t2 SET c='eighty-two thousand eight hundred fifty-nine' WHERE a=24668; UPDATE t2 SET c='ninety-five thousand three hundred ten' WHERE a=24669; UPDATE t2 SET c='seventy-four thousand one hundred fifty-two' WHERE a=24670; UPDATE t2 SET c='forty-six thousand seven hundred thirty-two' WHERE a=24671; UPDATE t2 SET c='twenty-two thousand eighty-five' WHERE a=24672; UPDATE t2 SET c='three hundred sixty-eight' WHERE a=24673; UPDATE t2 SET c='ninety thousand nine hundred sixty-eight' WHERE a=24674; UPDATE t2 SET c='eighty-four thousand two hundred seventeen' WHERE a=24675; UPDATE t2 SET c='nineteen thousand twenty-three' WHERE a=24676; UPDATE t2 SET c='fourteen thousand six hundred three' WHERE a=24677; UPDATE t2 SET c='seventy-four thousand seven hundred thirty-eight' WHERE a=24678; UPDATE t2 SET c='forty-seven thousand four hundred ninety-nine' WHERE a=24679; UPDATE t2 SET c='seventy-three thousand eight hundred ninety-eight' WHERE a=24680; UPDATE t2 SET c='sixty-four thousand nine hundred seventeen' WHERE a=24681; UPDATE t2 SET c='one thousand nine hundred eight' WHERE a=24682; UPDATE t2 SET c='fifty-five thousand two hundred twenty-nine' WHERE a=24683; UPDATE t2 SET c='ten thousand nine hundred thirty-two' WHERE a=24684; UPDATE t2 SET c='eighty-four thousand nine hundred six' WHERE a=24685; UPDATE t2 SET c='seventy-eight thousand four hundred two' WHERE a=24686; UPDATE t2 SET c='four thousand eight hundred fifteen' WHERE a=24687; UPDATE t2 SET c='twenty-three thousand four hundred seven' WHERE a=24688; UPDATE t2 SET c='seventy-six thousand nine hundred six' WHERE a=24689; UPDATE t2 SET c='seventy-four thousand seven hundred two' WHERE a=24690; UPDATE t2 SET c='eighty thousand nine hundred forty-four' WHERE a=24691; UPDATE t2 SET c='seventy-four thousand five hundred fifty-five' WHERE a=24692; UPDATE t2 SET c='seventy-one thousand two hundred twenty-seven' WHERE a=24693; UPDATE t2 SET c='twenty-seven thousand nine hundred sixty-four' WHERE a=24694; UPDATE t2 SET c='fifty-six thousand three hundred seventy-two' WHERE a=24695; UPDATE t2 SET c='ninety-eight thousand nine hundred forty-eight' WHERE a=24696; UPDATE t2 SET c='seven thousand six hundred eighty-two' WHERE a=24697; UPDATE t2 SET c='seven thousand one hundred seventeen' WHERE a=24698; UPDATE t2 SET c='seventy-eight thousand two hundred forty-five' WHERE a=24699; UPDATE t2 SET c='sixty-nine thousand six hundred ninety' WHERE a=24700; UPDATE t2 SET c='twenty-nine thousand three hundred eighty-five' WHERE a=24701; UPDATE t2 SET c='ninety-three thousand seven hundred ninety-three' WHERE a=24702; UPDATE t2 SET c='eighty-nine thousand six hundred twenty-three' WHERE a=24703; UPDATE t2 SET c='thirty-eight thousand five hundred seventy-three' WHERE a=24704; UPDATE t2 SET c='seventy-three thousand seventy-five' WHERE a=24705; UPDATE t2 SET c='sixty-eight thousand twenty-six' WHERE a=24706; UPDATE t2 SET c='thirty-one thousand six hundred sixty-five' WHERE a=24707; UPDATE t2 SET c='eighty thousand three hundred ninety-nine' WHERE a=24708; UPDATE t2 SET c='forty-two thousand three hundred fifty-three' WHERE a=24709; UPDATE t2 SET c='four thousand three hundred thirty' WHERE a=24710; UPDATE t2 SET c='fourteen thousand eight hundred ninety-one' WHERE a=24711; UPDATE t2 SET c='thirty-six thousand one hundred forty-eight' WHERE a=24712; UPDATE t2 SET c='seventy-one thousand six hundred twelve' WHERE a=24713; UPDATE t2 SET c='eight thousand one hundred ninety-three' WHERE a=24714; UPDATE t2 SET c='fifty-three thousand six hundred seventy-six' WHERE a=24715; UPDATE t2 SET c='seventy-two thousand five hundred ninety-seven' WHERE a=24716; UPDATE t2 SET c='fifty-nine thousand two hundred twenty-seven' WHERE a=24717; UPDATE t2 SET c='sixty-eight thousand six hundred thirty-three' WHERE a=24718; UPDATE t2 SET c='thirty-eight thousand eight hundred sixty-two' WHERE a=24719; UPDATE t2 SET c='one thousand one hundred ninety-eight' WHERE a=24720; UPDATE t2 SET c='seventy-four thousand one hundred seventy-seven' WHERE a=24721; UPDATE t2 SET c='twenty-three thousand six hundred sixty-seven' WHERE a=24722; UPDATE t2 SET c='forty-seven thousand nine hundred sixty-eight' WHERE a=24723; UPDATE t2 SET c='sixty thousand five hundred thirty-four' WHERE a=24724; UPDATE t2 SET c='twenty-six thousand four hundred twenty-nine' WHERE a=24725; UPDATE t2 SET c='seventy-eight thousand six hundred twenty-nine' WHERE a=24726; UPDATE t2 SET c='forty-eight thousand six hundred ninety-three' WHERE a=24727; UPDATE t2 SET c='fifty-seven thousand one hundred seventy-five' WHERE a=24728; UPDATE t2 SET c='seventy-eight thousand one hundred forty-seven' WHERE a=24729; UPDATE t2 SET c='one thousand five hundred forty-seven' WHERE a=24730; UPDATE t2 SET c='ninety thousand nine hundred ninety-six' WHERE a=24731; UPDATE t2 SET c='thirty-seven thousand six hundred sixteen' WHERE a=24732; UPDATE t2 SET c='eighty-six thousand six' WHERE a=24733; UPDATE t2 SET c='ten thousand two hundred twenty-three' WHERE a=24734; UPDATE t2 SET c='fifty-three thousand five hundred two' WHERE a=24735; UPDATE t2 SET c='eighty-four thousand six hundred seven' WHERE a=24736; UPDATE t2 SET c='fifty-one thousand two hundred eighty' WHERE a=24737; UPDATE t2 SET c='thirty-six thousand four hundred twenty-seven' WHERE a=24738; UPDATE t2 SET c='forty-four thousand four hundred fourteen' WHERE a=24739; UPDATE t2 SET c='forty-seven thousand one hundred forty-six' WHERE a=24740; UPDATE t2 SET c='nine thousand seven hundred thirty-three' WHERE a=24741; UPDATE t2 SET c='forty-three thousand six hundred fifty-two' WHERE a=24742; UPDATE t2 SET c='ninety-seven thousand seven hundred ten' WHERE a=24743; UPDATE t2 SET c='sixty-nine thousand five hundred two' WHERE a=24744; UPDATE t2 SET c='thirty-four thousand seven hundred fifty-four' WHERE a=24745; UPDATE t2 SET c='seventy-four thousand two hundred fifty-one' WHERE a=24746; UPDATE t2 SET c='sixty-one thousand seven hundred nineteen' WHERE a=24747; UPDATE t2 SET c='forty-eight thousand eight hundred eighty-four' WHERE a=24748; UPDATE t2 SET c='twenty thousand fifty-three' WHERE a=24749; UPDATE t2 SET c='fifty-six thousand two hundred forty' WHERE a=24750; UPDATE t2 SET c='eighty-two thousand ninety-eight' WHERE a=24751; UPDATE t2 SET c='ninety thousand seven hundred sixty-eight' WHERE a=24752; UPDATE t2 SET c='twenty-eight thousand one hundred nineteen' WHERE a=24753; UPDATE t2 SET c='eighty-one thousand eighty-eight' WHERE a=24754; UPDATE t2 SET c='ninety-two thousand six hundred thirty-eight' WHERE a=24755; UPDATE t2 SET c='ninety-two thousand nine hundred thirty-two' WHERE a=24756; UPDATE t2 SET c='twenty-four thousand two hundred thirty-eight' WHERE a=24757; UPDATE t2 SET c='eighty-seven thousand four hundred thirty-eight' WHERE a=24758; UPDATE t2 SET c='sixty-eight thousand eight hundred seventy-four' WHERE a=24759; UPDATE t2 SET c='fifty-three thousand three hundred sixty-one' WHERE a=24760; UPDATE t2 SET c='fifty thousand one hundred sixty-nine' WHERE a=24761; UPDATE t2 SET c='thirty-five thousand nine hundred ninety-two' WHERE a=24762; UPDATE t2 SET c='thirty-six thousand twenty-four' WHERE a=24763; UPDATE t2 SET c='sixty-two thousand one hundred sixty-three' WHERE a=24764; UPDATE t2 SET c='fifty-three thousand seven hundred forty-one' WHERE a=24765; UPDATE t2 SET c='thirty-one thousand one hundred eighty-six' WHERE a=24766; UPDATE t2 SET c='fifty-seven thousand five hundred twenty-three' WHERE a=24767; UPDATE t2 SET c='thirty-nine thousand one hundred sixty-five' WHERE a=24768; UPDATE t2 SET c='forty-six thousand one hundred sixty' WHERE a=24769; UPDATE t2 SET c='fourteen thousand nine hundred seventy-four' WHERE a=24770; UPDATE t2 SET c='fifty-seven thousand one hundred thirty-six' WHERE a=24771; UPDATE t2 SET c='ninety-nine thousand two hundred six' WHERE a=24772; UPDATE t2 SET c='seventy thousand one hundred fourteen' WHERE a=24773; UPDATE t2 SET c='ninety-eight thousand nine hundred forty-three' WHERE a=24774; UPDATE t2 SET c='eighty thousand ninety-four' WHERE a=24775; UPDATE t2 SET c='eight thousand two hundred seventy-eight' WHERE a=24776; UPDATE t2 SET c='eighty-four thousand five hundred thirty-seven' WHERE a=24777; UPDATE t2 SET c='twenty-eight thousand eight hundred seventy-five' WHERE a=24778; UPDATE t2 SET c='seventy-eight thousand four hundred sixty-four' WHERE a=24779; UPDATE t2 SET c='nine thousand six hundred thirty' WHERE a=24780; UPDATE t2 SET c='thirty-four thousand nine hundred thirty' WHERE a=24781; UPDATE t2 SET c='sixty-eight' WHERE a=24782; UPDATE t2 SET c='thirty-eight thousand seventy-three' WHERE a=24783; UPDATE t2 SET c='seventy-six thousand sixty-six' WHERE a=24784; UPDATE t2 SET c='thirty-two thousand nine hundred sixty-three' WHERE a=24785; UPDATE t2 SET c='seven thousand two hundred eighty-five' WHERE a=24786; UPDATE t2 SET c='nine thousand nine hundred one' WHERE a=24787; UPDATE t2 SET c='twelve thousand seven hundred' WHERE a=24788; UPDATE t2 SET c='ninety-three thousand six hundred eighty-four' WHERE a=24789; UPDATE t2 SET c='nine thousand four hundred twenty-five' WHERE a=24790; UPDATE t2 SET c='sixty-three thousand two hundred thirty-two' WHERE a=24791; UPDATE t2 SET c='twenty-six thousand two hundred sixty-nine' WHERE a=24792; UPDATE t2 SET c='ninety-eight thousand four hundred ninety-eight' WHERE a=24793; UPDATE t2 SET c='sixteen thousand nine' WHERE a=24794; UPDATE t2 SET c='one thousand two hundred seventy-seven' WHERE a=24795; UPDATE t2 SET c='eighteen thousand four hundred ninety-seven' WHERE a=24796; UPDATE t2 SET c='eighty-eight thousand nine hundred eighty-eight' WHERE a=24797; UPDATE t2 SET c='forty-four thousand nine hundred fifty-five' WHERE a=24798; UPDATE t2 SET c='fifty-five thousand twenty-three' WHERE a=24799; UPDATE t2 SET c='ninety-two thousand five hundred nineteen' WHERE a=24800; UPDATE t2 SET c='eleven thousand one hundred thirty' WHERE a=24801; UPDATE t2 SET c='thirty-seven thousand five hundred fifty-nine' WHERE a=24802; UPDATE t2 SET c='thirteen thousand three hundred twelve' WHERE a=24803; UPDATE t2 SET c='nine hundred seventy' WHERE a=24804; UPDATE t2 SET c='twenty-eight thousand three hundred sixty-three' WHERE a=24805; UPDATE t2 SET c='ninety-four thousand three hundred seventy-three' WHERE a=24806; UPDATE t2 SET c='twenty-nine thousand seven hundred eighty-four' WHERE a=24807; UPDATE t2 SET c='twenty-one thousand eighty-nine' WHERE a=24808; UPDATE t2 SET c='one thousand two hundred thirty-three' WHERE a=24809; UPDATE t2 SET c='ninety-three thousand three hundred four' WHERE a=24810; UPDATE t2 SET c='forty-one thousand five hundred ninety-one' WHERE a=24811; UPDATE t2 SET c='seventy-eight thousand nine hundred sixty' WHERE a=24812; UPDATE t2 SET c='fourteen thousand three hundred seventy-two' WHERE a=24813; UPDATE t2 SET c='thirty thousand nine hundred sixty' WHERE a=24814; UPDATE t2 SET c='thirty-six thousand nine hundred forty-eight' WHERE a=24815; UPDATE t2 SET c='ninety thousand one hundred twenty-four' WHERE a=24816; UPDATE t2 SET c='five thousand six hundred thirteen' WHERE a=24817; UPDATE t2 SET c='sixty-two thousand six hundred thirteen' WHERE a=24818; UPDATE t2 SET c='thirty-two thousand two hundred sixty-six' WHERE a=24819; UPDATE t2 SET c='seventeen thousand forty-six' WHERE a=24820; UPDATE t2 SET c='fifty-five thousand three hundred four' WHERE a=24821; UPDATE t2 SET c='ninety thousand five hundred eighty-five' WHERE a=24822; UPDATE t2 SET c='twenty-eight thousand one hundred ten' WHERE a=24823; UPDATE t2 SET c='fifty-eight thousand four hundred ninety' WHERE a=24824; UPDATE t2 SET c='thirty-eight thousand nine hundred eighty-seven' WHERE a=24825; UPDATE t2 SET c='ninety-nine thousand one hundred seventy-six' WHERE a=24826; UPDATE t2 SET c='twenty-six thousand four hundred sixty-one' WHERE a=24827; UPDATE t2 SET c='eighty-seven thousand seven hundred twenty' WHERE a=24828; UPDATE t2 SET c='eighteen thousand eight hundred ninety-eight' WHERE a=24829; UPDATE t2 SET c='forty-six thousand six hundred thirty-one' WHERE a=24830; UPDATE t2 SET c='seventy-five thousand seven hundred fifty-six' WHERE a=24831; UPDATE t2 SET c='ninety-nine thousand six hundred seventy-eight' WHERE a=24832; UPDATE t2 SET c='fifty-nine thousand six hundred sixty-nine' WHERE a=24833; UPDATE t2 SET c='twenty-nine thousand eight hundred twenty-four' WHERE a=24834; UPDATE t2 SET c='eighty-five thousand nine hundred seventy-two' WHERE a=24835; UPDATE t2 SET c='twelve thousand two hundred forty-one' WHERE a=24836; UPDATE t2 SET c='twenty-seven thousand four hundred sixty-one' WHERE a=24837; UPDATE t2 SET c='one thousand eight hundred thirty-six' WHERE a=24838; UPDATE t2 SET c='sixty-one thousand seven hundred twenty-six' WHERE a=24839; UPDATE t2 SET c='fifty-six thousand seven hundred twenty-eight' WHERE a=24840; UPDATE t2 SET c='nineteen thousand nine hundred thirty-three' WHERE a=24841; UPDATE t2 SET c='twenty-nine thousand six hundred' WHERE a=24842; UPDATE t2 SET c='forty-five thousand nine hundred ten' WHERE a=24843; UPDATE t2 SET c='thirty-seven thousand nine hundred ninety-three' WHERE a=24844; UPDATE t2 SET c='twenty-five thousand sixty-eight' WHERE a=24845; UPDATE t2 SET c='ninety-two thousand seven hundred twenty-one' WHERE a=24846; UPDATE t2 SET c='forty thousand seven hundred twenty-one' WHERE a=24847; UPDATE t2 SET c='forty-nine thousand seven hundred eighty-two' WHERE a=24848; UPDATE t2 SET c='ninety-five thousand five hundred ninety-seven' WHERE a=24849; UPDATE t2 SET c='ninety-one thousand nine hundred twenty-three' WHERE a=24850; UPDATE t2 SET c='seventy-seven thousand four hundred fifty-four' WHERE a=24851; UPDATE t2 SET c='fifteen thousand four hundred fifty' WHERE a=24852; UPDATE t2 SET c='eight thousand three hundred thirty-six' WHERE a=24853; UPDATE t2 SET c='seven thousand eight hundred twenty-one' WHERE a=24854; UPDATE t2 SET c='ninety-six thousand two hundred forty-five' WHERE a=24855; UPDATE t2 SET c='eighty thousand seven hundred sixteen' WHERE a=24856; UPDATE t2 SET c='twenty-three thousand five hundred four' WHERE a=24857; UPDATE t2 SET c='fifty thousand eight hundred thirty-one' WHERE a=24858; UPDATE t2 SET c='sixty-eight thousand five hundred fifty-three' WHERE a=24859; UPDATE t2 SET c='fifteen thousand six hundred eighty-three' WHERE a=24860; UPDATE t2 SET c='sixty-nine thousand one hundred thirty-three' WHERE a=24861; UPDATE t2 SET c='eighty-six thousand five hundred twenty-four' WHERE a=24862; UPDATE t2 SET c='ninety-three thousand eight hundred forty-nine' WHERE a=24863; UPDATE t2 SET c='seventy thousand sixteen' WHERE a=24864; UPDATE t2 SET c='eighteen thousand six hundred fifty-nine' WHERE a=24865; UPDATE t2 SET c='eighty-eight thousand eighty-one' WHERE a=24866; UPDATE t2 SET c='fifty-one thousand one hundred forty-two' WHERE a=24867; UPDATE t2 SET c='sixty-nine thousand seventy' WHERE a=24868; UPDATE t2 SET c='ten thousand four hundred twenty-three' WHERE a=24869; UPDATE t2 SET c='sixty-one thousand eight hundred twenty-two' WHERE a=24870; UPDATE t2 SET c='eighty-nine thousand nine hundred eighty' WHERE a=24871; UPDATE t2 SET c='forty-seven thousand three hundred thirty' WHERE a=24872; UPDATE t2 SET c='seventy-eight thousand five hundred twenty-five' WHERE a=24873; UPDATE t2 SET c='twenty-seven thousand four hundred six' WHERE a=24874; UPDATE t2 SET c='forty thousand eight hundred fifty' WHERE a=24875; UPDATE t2 SET c='fifty-six thousand one hundred sixty' WHERE a=24876; UPDATE t2 SET c='sixteen thousand one hundred sixty-one' WHERE a=24877; UPDATE t2 SET c='sixty-one thousand two hundred fifty-seven' WHERE a=24878; UPDATE t2 SET c='ninety-eight thousand eight hundred six' WHERE a=24879; UPDATE t2 SET c='eighty-six thousand twenty-five' WHERE a=24880; UPDATE t2 SET c='thirty-nine thousand four hundred seventy-two' WHERE a=24881; UPDATE t2 SET c='eight hundred thirty-three' WHERE a=24882; UPDATE t2 SET c='six thousand eight hundred nine' WHERE a=24883; UPDATE t2 SET c='eighty-one thousand nine hundred seventeen' WHERE a=24884; UPDATE t2 SET c='ninety-three thousand four hundred ninety-five' WHERE a=24885; UPDATE t2 SET c='twenty thousand two hundred twenty-four' WHERE a=24886; UPDATE t2 SET c='ninety-one thousand nine hundred thirty' WHERE a=24887; UPDATE t2 SET c='thirty-two thousand eight hundred seventy-three' WHERE a=24888; UPDATE t2 SET c='twenty-five thousand six hundred eighty-two' WHERE a=24889; UPDATE t2 SET c='fifty-eight thousand eight hundred thirty-three' WHERE a=24890; UPDATE t2 SET c='sixty-seven thousand four hundred eighty-six' WHERE a=24891; UPDATE t2 SET c='ninety-nine thousand seven hundred forty-nine' WHERE a=24892; UPDATE t2 SET c='forty-three thousand five hundred twenty-one' WHERE a=24893; UPDATE t2 SET c='twenty thousand five hundred seventy-five' WHERE a=24894; UPDATE t2 SET c='seven thousand one hundred sixteen' WHERE a=24895; UPDATE t2 SET c='four hundred sixty-six' WHERE a=24896; UPDATE t2 SET c='ninety-two thousand forty' WHERE a=24897; UPDATE t2 SET c='forty-six thousand two hundred seventy-four' WHERE a=24898; UPDATE t2 SET c='twenty-eight thousand five hundred seventy-three' WHERE a=24899; UPDATE t2 SET c='thirteen thousand three hundred eighty-nine' WHERE a=24900; UPDATE t2 SET c='thirty-four thousand six hundred forty-three' WHERE a=24901; UPDATE t2 SET c='fifty-five thousand seven hundred twenty' WHERE a=24902; UPDATE t2 SET c='eighty-two thousand six hundred sixty' WHERE a=24903; UPDATE t2 SET c='twelve thousand eight hundred thirty-eight' WHERE a=24904; UPDATE t2 SET c='eighty-seven thousand eight hundred forty-four' WHERE a=24905; UPDATE t2 SET c='seventy thousand nine hundred nineteen' WHERE a=24906; UPDATE t2 SET c='seventeen thousand eight hundred twelve' WHERE a=24907; UPDATE t2 SET c='ninety-eight thousand eight hundred seventy-four' WHERE a=24908; UPDATE t2 SET c='seventeen thousand one hundred eighty-two' WHERE a=24909; UPDATE t2 SET c='eighty-one thousand seven hundred eighty-seven' WHERE a=24910; UPDATE t2 SET c='eighty-six thousand eight hundred twenty-three' WHERE a=24911; UPDATE t2 SET c='forty-four thousand four hundred seventeen' WHERE a=24912; UPDATE t2 SET c='fifteen thousand six hundred seventeen' WHERE a=24913; UPDATE t2 SET c='ninety-four thousand ninety-seven' WHERE a=24914; UPDATE t2 SET c='ninety-four thousand five hundred twelve' WHERE a=24915; UPDATE t2 SET c='thirty-three thousand two hundred sixty-eight' WHERE a=24916; UPDATE t2 SET c='sixty-eight thousand three hundred four' WHERE a=24917; UPDATE t2 SET c='ninety-one thousand eight hundred sixty' WHERE a=24918; UPDATE t2 SET c='twenty-eight thousand seven hundred eighty-seven' WHERE a=24919; UPDATE t2 SET c='seventy-eight thousand five hundred eighty-nine' WHERE a=24920; UPDATE t2 SET c='ninety-six thousand three hundred thirty-one' WHERE a=24921; UPDATE t2 SET c='eighty thousand six hundred four' WHERE a=24922; UPDATE t2 SET c='eleven thousand seven hundred twenty-nine' WHERE a=24923; UPDATE t2 SET c='twenty-four thousand nine hundred forty-eight' WHERE a=24924; UPDATE t2 SET c='seventy-two thousand three hundred twenty-four' WHERE a=24925; UPDATE t2 SET c='forty-seven thousand one hundred one' WHERE a=24926; UPDATE t2 SET c='eleven thousand seven hundred fifty' WHERE a=24927; UPDATE t2 SET c='twenty-six thousand eight hundred thirty-eight' WHERE a=24928; UPDATE t2 SET c='eighty-five thousand sixty-five' WHERE a=24929; UPDATE t2 SET c='fifty-six thousand three hundred ninety-five' WHERE a=24930; UPDATE t2 SET c='sixty-four thousand eight hundred twenty-eight' WHERE a=24931; UPDATE t2 SET c='ninety-seven thousand three hundred twenty-five' WHERE a=24932; UPDATE t2 SET c='eighty-five thousand three hundred four' WHERE a=24933; UPDATE t2 SET c='seventy thousand three hundred forty-three' WHERE a=24934; UPDATE t2 SET c='eighty thousand three hundred four' WHERE a=24935; UPDATE t2 SET c='forty-three thousand four hundred forty-six' WHERE a=24936; UPDATE t2 SET c='eighty-one thousand six hundred twelve' WHERE a=24937; UPDATE t2 SET c='sixty-five thousand six hundred fifty-six' WHERE a=24938; UPDATE t2 SET c='eighty-seven thousand four hundred forty' WHERE a=24939; UPDATE t2 SET c='seventy-eight thousand eight hundred ninety-two' WHERE a=24940; UPDATE t2 SET c='fifty-six thousand three hundred six' WHERE a=24941; UPDATE t2 SET c='forty-five thousand seven hundred seven' WHERE a=24942; UPDATE t2 SET c='eighty-one thousand nine hundred seventy-three' WHERE a=24943; UPDATE t2 SET c='thirty-two thousand five hundred ninety-five' WHERE a=24944; UPDATE t2 SET c='forty-six thousand seven hundred ninety-five' WHERE a=24945; UPDATE t2 SET c='ninety-eight thousand two hundred fifty-one' WHERE a=24946; UPDATE t2 SET c='ninety thousand six hundred thirty-eight' WHERE a=24947; UPDATE t2 SET c='twenty thousand six hundred four' WHERE a=24948; UPDATE t2 SET c='ninety-two thousand seven hundred seventy' WHERE a=24949; UPDATE t2 SET c='sixty-one thousand eight hundred thirty-eight' WHERE a=24950; UPDATE t2 SET c='six thousand seven hundred sixty-three' WHERE a=24951; UPDATE t2 SET c='seventy-seven thousand two hundred sixty-eight' WHERE a=24952; UPDATE t2 SET c='sixty-four thousand nine hundred eighty-three' WHERE a=24953; UPDATE t2 SET c='seventeen thousand ninety' WHERE a=24954; UPDATE t2 SET c='six thousand two hundred fifty' WHERE a=24955; UPDATE t2 SET c='ninety-six thousand three hundred forty-six' WHERE a=24956; UPDATE t2 SET c='one thousand six hundred ninety-six' WHERE a=24957; UPDATE t2 SET c='sixty-nine thousand four hundred sixty-two' WHERE a=24958; UPDATE t2 SET c='three thousand five hundred fifty-two' WHERE a=24959; UPDATE t2 SET c='fifty-five thousand three hundred seventy-five' WHERE a=24960; UPDATE t2 SET c='seventy-seven thousand seven hundred forty-nine' WHERE a=24961; UPDATE t2 SET c='thirty thousand four hundred sixteen' WHERE a=24962; UPDATE t2 SET c='ninety-seven thousand four hundred fifty-four' WHERE a=24963; UPDATE t2 SET c='fifty-five thousand four hundred twelve' WHERE a=24964; UPDATE t2 SET c='seventy-three thousand six hundred fifty' WHERE a=24965; UPDATE t2 SET c='fifty-seven thousand fifty-eight' WHERE a=24966; UPDATE t2 SET c='forty-three thousand four hundred eighty' WHERE a=24967; UPDATE t2 SET c='six thousand nine hundred fifty-nine' WHERE a=24968; UPDATE t2 SET c='ninety-nine thousand four hundred twenty-four' WHERE a=24969; UPDATE t2 SET c='ninety-three thousand five hundred sixteen' WHERE a=24970; UPDATE t2 SET c='sixty-five thousand seven hundred thirty-one' WHERE a=24971; UPDATE t2 SET c='thirty-four thousand eight hundred' WHERE a=24972; UPDATE t2 SET c='forty-four thousand nine hundred sixty-two' WHERE a=24973; UPDATE t2 SET c='fifty thousand four hundred eighty-two' WHERE a=24974; UPDATE t2 SET c='twenty-six thousand four hundred twenty-one' WHERE a=24975; UPDATE t2 SET c='forty-six thousand three hundred one' WHERE a=24976; UPDATE t2 SET c='seventy-eight thousand five hundred seventy-seven' WHERE a=24977; UPDATE t2 SET c='fifty-two thousand five hundred forty-three' WHERE a=24978; UPDATE t2 SET c='eighteen thousand two hundred four' WHERE a=24979; UPDATE t2 SET c='seventy-six thousand one hundred seventy-four' WHERE a=24980; UPDATE t2 SET c='eight thousand six hundred twenty-four' WHERE a=24981; UPDATE t2 SET c='forty thousand nine hundred eighty-five' WHERE a=24982; UPDATE t2 SET c='seventy-seven thousand thirty-seven' WHERE a=24983; UPDATE t2 SET c='forty thousand seventy-eight' WHERE a=24984; UPDATE t2 SET c='thirty-eight thousand six hundred sixteen' WHERE a=24985; UPDATE t2 SET c='ninety-nine thousand five hundred seventy' WHERE a=24986; UPDATE t2 SET c='seventy-six thousand eight hundred sixty-six' WHERE a=24987; UPDATE t2 SET c='ninety-six thousand ninety-two' WHERE a=24988; UPDATE t2 SET c='one thousand seven hundred eighty-six' WHERE a=24989; UPDATE t2 SET c='eighty-six thousand eight hundred eighty' WHERE a=24990; UPDATE t2 SET c='fifty-four thousand one hundred thirty-three' WHERE a=24991; UPDATE t2 SET c='three thousand two hundred seventy-five' WHERE a=24992; UPDATE t2 SET c='eighty-five thousand five hundred forty-five' WHERE a=24993; UPDATE t2 SET c='forty-two thousand four hundred forty-nine' WHERE a=24994; UPDATE t2 SET c='thirty-three thousand eight hundred eighty-one' WHERE a=24995; UPDATE t2 SET c='ninety-seven thousand seven hundred sixty' WHERE a=24996; UPDATE t2 SET c='eighty-seven thousand nine hundred eighty-two' WHERE a=24997; UPDATE t2 SET c='twenty-six thousand nine hundred forty' WHERE a=24998; UPDATE t2 SET c='eighty-one thousand fifty-eight' WHERE a=24999; UPDATE t2 SET c='sixty-one thousand one hundred fifteen' WHERE a=25000; COMMIT; ================================================ FILE: packages/benchmark/src/benchmark11.sql ================================================ BEGIN; INSERT INTO t1 SELECT b,a,c FROM t2; INSERT INTO t2 SELECT b,a,c FROM t1; COMMIT; ================================================ FILE: packages/benchmark/src/benchmark12.sql ================================================ DELETE FROM t2 WHERE c LIKE '%fifty%'; ================================================ FILE: packages/benchmark/src/benchmark13.sql ================================================ DELETE FROM t2 WHERE a>10 AND a<20000; ================================================ FILE: packages/benchmark/src/benchmark14.sql ================================================ INSERT INTO t2 SELECT * FROM t1; ================================================ FILE: packages/benchmark/src/benchmark15.sql ================================================ BEGIN; DELETE FROM t1; INSERT INTO t1 VALUES(1, 69001, 'sixty-nine thousand one'); INSERT INTO t1 VALUES(2, 14653, 'fourteen thousand six hundred fifty-three'); INSERT INTO t1 VALUES(3, 30574, 'thirty thousand five hundred seventy-four'); INSERT INTO t1 VALUES(4, 25718, 'twenty-five thousand seven hundred eighteen'); INSERT INTO t1 VALUES(5, 2863, 'two thousand eight hundred sixty-three'); INSERT INTO t1 VALUES(6, 72899, 'seventy-two thousand eight hundred ninety-nine'); INSERT INTO t1 VALUES(7, 66050, 'sixty-six thousand fifty'); INSERT INTO t1 VALUES(8, 73320, 'seventy-three thousand three hundred twenty'); INSERT INTO t1 VALUES(9, 17829, 'seventeen thousand eight hundred twenty-nine'); INSERT INTO t1 VALUES(10, 21838, 'twenty-one thousand eight hundred thirty-eight'); INSERT INTO t1 VALUES(11, 36089, 'thirty-six thousand eighty-nine'); INSERT INTO t1 VALUES(12, 54188, 'fifty-four thousand one hundred eighty-eight'); INSERT INTO t1 VALUES(13, 90001, 'ninety thousand one'); INSERT INTO t1 VALUES(14, 53754, 'fifty-three thousand seven hundred fifty-four'); INSERT INTO t1 VALUES(15, 64370, 'sixty-four thousand three hundred seventy'); INSERT INTO t1 VALUES(16, 12131, 'twelve thousand one hundred thirty-one'); INSERT INTO t1 VALUES(17, 946, 'nine hundred forty-six'); INSERT INTO t1 VALUES(18, 62211, 'sixty-two thousand two hundred eleven'); INSERT INTO t1 VALUES(19, 63063, 'sixty-three thousand sixty-three'); INSERT INTO t1 VALUES(20, 30284, 'thirty thousand two hundred eighty-four'); INSERT INTO t1 VALUES(21, 5779, 'five thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(22, 53669, 'fifty-three thousand six hundred sixty-nine'); INSERT INTO t1 VALUES(23, 11205, 'eleven thousand two hundred five'); INSERT INTO t1 VALUES(24, 76512, 'seventy-six thousand five hundred twelve'); INSERT INTO t1 VALUES(25, 45771, 'forty-five thousand seven hundred seventy-one'); INSERT INTO t1 VALUES(26, 12290, 'twelve thousand two hundred ninety'); INSERT INTO t1 VALUES(27, 15009, 'fifteen thousand nine'); INSERT INTO t1 VALUES(28, 85391, 'eighty-five thousand three hundred ninety-one'); INSERT INTO t1 VALUES(29, 65676, 'sixty-five thousand six hundred seventy-six'); INSERT INTO t1 VALUES(30, 1170, 'one thousand one hundred seventy'); INSERT INTO t1 VALUES(31, 45091, 'forty-five thousand ninety-one'); INSERT INTO t1 VALUES(32, 13611, 'thirteen thousand six hundred eleven'); INSERT INTO t1 VALUES(33, 46489, 'forty-six thousand four hundred eighty-nine'); INSERT INTO t1 VALUES(34, 94980, 'ninety-four thousand nine hundred eighty'); INSERT INTO t1 VALUES(35, 20777, 'twenty thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(36, 33664, 'thirty-three thousand six hundred sixty-four'); INSERT INTO t1 VALUES(37, 43647, 'forty-three thousand six hundred forty-seven'); INSERT INTO t1 VALUES(38, 73943, 'seventy-three thousand nine hundred forty-three'); INSERT INTO t1 VALUES(39, 56644, 'fifty-six thousand six hundred forty-four'); INSERT INTO t1 VALUES(40, 5285, 'five thousand two hundred eighty-five'); INSERT INTO t1 VALUES(41, 88365, 'eighty-eight thousand three hundred sixty-five'); INSERT INTO t1 VALUES(42, 6335, 'six thousand three hundred thirty-five'); INSERT INTO t1 VALUES(43, 64757, 'sixty-four thousand seven hundred fifty-seven'); INSERT INTO t1 VALUES(44, 68039, 'sixty-eight thousand thirty-nine'); INSERT INTO t1 VALUES(45, 12783, 'twelve thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(46, 95070, 'ninety-five thousand seventy'); INSERT INTO t1 VALUES(47, 59393, 'fifty-nine thousand three hundred ninety-three'); INSERT INTO t1 VALUES(48, 26292, 'twenty-six thousand two hundred ninety-two'); INSERT INTO t1 VALUES(49, 66434, 'sixty-six thousand four hundred thirty-four'); INSERT INTO t1 VALUES(50, 32576, 'thirty-two thousand five hundred seventy-six'); INSERT INTO t1 VALUES(51, 15417, 'fifteen thousand four hundred seventeen'); INSERT INTO t1 VALUES(52, 43974, 'forty-three thousand nine hundred seventy-four'); INSERT INTO t1 VALUES(53, 81598, 'eighty-one thousand five hundred ninety-eight'); INSERT INTO t1 VALUES(54, 78187, 'seventy-eight thousand one hundred eighty-seven'); INSERT INTO t1 VALUES(55, 96628, 'ninety-six thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(56, 49006, 'forty-nine thousand six'); INSERT INTO t1 VALUES(57, 12369, 'twelve thousand three hundred sixty-nine'); INSERT INTO t1 VALUES(58, 64270, 'sixty-four thousand two hundred seventy'); INSERT INTO t1 VALUES(59, 99754, 'ninety-nine thousand seven hundred fifty-four'); INSERT INTO t1 VALUES(60, 94486, 'ninety-four thousand four hundred eighty-six'); INSERT INTO t1 VALUES(61, 58321, 'fifty-eight thousand three hundred twenty-one'); INSERT INTO t1 VALUES(62, 23071, 'twenty-three thousand seventy-one'); INSERT INTO t1 VALUES(63, 42113, 'forty-two thousand one hundred thirteen'); INSERT INTO t1 VALUES(64, 85726, 'eighty-five thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(65, 9111, 'nine thousand one hundred eleven'); INSERT INTO t1 VALUES(66, 79820, 'seventy-nine thousand eight hundred twenty'); INSERT INTO t1 VALUES(67, 84887, 'eighty-four thousand eight hundred eighty-seven'); INSERT INTO t1 VALUES(68, 86050, 'eighty-six thousand fifty'); INSERT INTO t1 VALUES(69, 84385, 'eighty-four thousand three hundred eighty-five'); INSERT INTO t1 VALUES(70, 72979, 'seventy-two thousand nine hundred seventy-nine'); INSERT INTO t1 VALUES(71, 85471, 'eighty-five thousand four hundred seventy-one'); INSERT INTO t1 VALUES(72, 2460, 'two thousand four hundred sixty'); INSERT INTO t1 VALUES(73, 50142, 'fifty thousand one hundred forty-two'); INSERT INTO t1 VALUES(74, 41831, 'forty-one thousand eight hundred thirty-one'); INSERT INTO t1 VALUES(75, 64085, 'sixty-four thousand eighty-five'); INSERT INTO t1 VALUES(76, 50549, 'fifty thousand five hundred forty-nine'); INSERT INTO t1 VALUES(77, 8477, 'eight thousand four hundred seventy-seven'); INSERT INTO t1 VALUES(78, 65346, 'sixty-five thousand three hundred forty-six'); INSERT INTO t1 VALUES(79, 35600, 'thirty-five thousand six hundred'); INSERT INTO t1 VALUES(80, 84509, 'eighty-four thousand five hundred nine'); INSERT INTO t1 VALUES(81, 44272, 'forty-four thousand two hundred seventy-two'); INSERT INTO t1 VALUES(82, 40910, 'forty thousand nine hundred ten'); INSERT INTO t1 VALUES(83, 68905, 'sixty-eight thousand nine hundred five'); INSERT INTO t1 VALUES(84, 58308, 'fifty-eight thousand three hundred eight'); INSERT INTO t1 VALUES(85, 98614, 'ninety-eight thousand six hundred fourteen'); INSERT INTO t1 VALUES(86, 66893, 'sixty-six thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(87, 45259, 'forty-five thousand two hundred fifty-nine'); INSERT INTO t1 VALUES(88, 45738, 'forty-five thousand seven hundred thirty-eight'); INSERT INTO t1 VALUES(89, 28790, 'twenty-eight thousand seven hundred ninety'); INSERT INTO t1 VALUES(90, 15870, 'fifteen thousand eight hundred seventy'); INSERT INTO t1 VALUES(91, 15553, 'fifteen thousand five hundred fifty-three'); INSERT INTO t1 VALUES(92, 18727, 'eighteen thousand seven hundred twenty-seven'); INSERT INTO t1 VALUES(93, 99780, 'ninety-nine thousand seven hundred eighty'); INSERT INTO t1 VALUES(94, 20175, 'twenty thousand one hundred seventy-five'); INSERT INTO t1 VALUES(95, 37815, 'thirty-seven thousand eight hundred fifteen'); INSERT INTO t1 VALUES(96, 49076, 'forty-nine thousand seventy-six'); INSERT INTO t1 VALUES(97, 91467, 'ninety-one thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(98, 12723, 'twelve thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(99, 20586, 'twenty thousand five hundred eighty-six'); INSERT INTO t1 VALUES(100, 98441, 'ninety-eight thousand four hundred forty-one'); INSERT INTO t1 VALUES(101, 21269, 'twenty-one thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(102, 15851, 'fifteen thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(103, 23631, 'twenty-three thousand six hundred thirty-one'); INSERT INTO t1 VALUES(104, 37614, 'thirty-seven thousand six hundred fourteen'); INSERT INTO t1 VALUES(105, 51841, 'fifty-one thousand eight hundred forty-one'); INSERT INTO t1 VALUES(106, 56415, 'fifty-six thousand four hundred fifteen'); INSERT INTO t1 VALUES(107, 83629, 'eighty-three thousand six hundred twenty-nine'); INSERT INTO t1 VALUES(108, 4149, 'four thousand one hundred forty-nine'); INSERT INTO t1 VALUES(109, 95878, 'ninety-five thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(110, 30052, 'thirty thousand fifty-two'); INSERT INTO t1 VALUES(111, 42365, 'forty-two thousand three hundred sixty-five'); INSERT INTO t1 VALUES(112, 12243, 'twelve thousand two hundred forty-three'); INSERT INTO t1 VALUES(113, 89704, 'eighty-nine thousand seven hundred four'); INSERT INTO t1 VALUES(114, 15685, 'fifteen thousand six hundred eighty-five'); INSERT INTO t1 VALUES(115, 74876, 'seventy-four thousand eight hundred seventy-six'); INSERT INTO t1 VALUES(116, 81982, 'eighty-one thousand nine hundred eighty-two'); INSERT INTO t1 VALUES(117, 70408, 'seventy thousand four hundred eight'); INSERT INTO t1 VALUES(118, 39118, 'thirty-nine thousand one hundred eighteen'); INSERT INTO t1 VALUES(119, 7463, 'seven thousand four hundred sixty-three'); INSERT INTO t1 VALUES(120, 11126, 'eleven thousand one hundred twenty-six'); INSERT INTO t1 VALUES(121, 44536, 'forty-four thousand five hundred thirty-six'); INSERT INTO t1 VALUES(122, 23272, 'twenty-three thousand two hundred seventy-two'); INSERT INTO t1 VALUES(123, 62647, 'sixty-two thousand six hundred forty-seven'); INSERT INTO t1 VALUES(124, 77351, 'seventy-seven thousand three hundred fifty-one'); INSERT INTO t1 VALUES(125, 48704, 'forty-eight thousand seven hundred four'); INSERT INTO t1 VALUES(126, 36835, 'thirty-six thousand eight hundred thirty-five'); INSERT INTO t1 VALUES(127, 98373, 'ninety-eight thousand three hundred seventy-three'); INSERT INTO t1 VALUES(128, 40970, 'forty thousand nine hundred seventy'); INSERT INTO t1 VALUES(129, 19215, 'nineteen thousand two hundred fifteen'); INSERT INTO t1 VALUES(130, 82574, 'eighty-two thousand five hundred seventy-four'); INSERT INTO t1 VALUES(131, 71468, 'seventy-one thousand four hundred sixty-eight'); INSERT INTO t1 VALUES(132, 48750, 'forty-eight thousand seven hundred fifty'); INSERT INTO t1 VALUES(133, 53120, 'fifty-three thousand one hundred twenty'); INSERT INTO t1 VALUES(134, 7206, 'seven thousand two hundred six'); INSERT INTO t1 VALUES(135, 77245, 'seventy-seven thousand two hundred forty-five'); INSERT INTO t1 VALUES(136, 27430, 'twenty-seven thousand four hundred thirty'); INSERT INTO t1 VALUES(137, 38889, 'thirty-eight thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(138, 74000, 'seventy-four thousand'); INSERT INTO t1 VALUES(139, 36740, 'thirty-six thousand seven hundred forty'); INSERT INTO t1 VALUES(140, 66935, 'sixty-six thousand nine hundred thirty-five'); INSERT INTO t1 VALUES(141, 37679, 'thirty-seven thousand six hundred seventy-nine'); INSERT INTO t1 VALUES(142, 92517, 'ninety-two thousand five hundred seventeen'); INSERT INTO t1 VALUES(143, 25292, 'twenty-five thousand two hundred ninety-two'); INSERT INTO t1 VALUES(144, 74710, 'seventy-four thousand seven hundred ten'); INSERT INTO t1 VALUES(145, 88388, 'eighty-eight thousand three hundred eighty-eight'); INSERT INTO t1 VALUES(146, 20074, 'twenty thousand seventy-four'); INSERT INTO t1 VALUES(147, 17161, 'seventeen thousand one hundred sixty-one'); INSERT INTO t1 VALUES(148, 28976, 'twenty-eight thousand nine hundred seventy-six'); INSERT INTO t1 VALUES(149, 52361, 'fifty-two thousand three hundred sixty-one'); INSERT INTO t1 VALUES(150, 25123, 'twenty-five thousand one hundred twenty-three'); INSERT INTO t1 VALUES(151, 40662, 'forty thousand six hundred sixty-two'); INSERT INTO t1 VALUES(152, 19958, 'nineteen thousand nine hundred fifty-eight'); INSERT INTO t1 VALUES(153, 14521, 'fourteen thousand five hundred twenty-one'); INSERT INTO t1 VALUES(154, 64516, 'sixty-four thousand five hundred sixteen'); INSERT INTO t1 VALUES(155, 90893, 'ninety thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(156, 64617, 'sixty-four thousand six hundred seventeen'); INSERT INTO t1 VALUES(157, 82000, 'eighty-two thousand'); INSERT INTO t1 VALUES(158, 63053, 'sixty-three thousand fifty-three'); INSERT INTO t1 VALUES(159, 23609, 'twenty-three thousand six hundred nine'); INSERT INTO t1 VALUES(160, 37626, 'thirty-seven thousand six hundred twenty-six'); INSERT INTO t1 VALUES(161, 31628, 'thirty-one thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(162, 66488, 'sixty-six thousand four hundred eighty-eight'); INSERT INTO t1 VALUES(163, 92157, 'ninety-two thousand one hundred fifty-seven'); INSERT INTO t1 VALUES(164, 73816, 'seventy-three thousand eight hundred sixteen'); INSERT INTO t1 VALUES(165, 788, 'seven hundred eighty-eight'); INSERT INTO t1 VALUES(166, 38704, 'thirty-eight thousand seven hundred four'); INSERT INTO t1 VALUES(167, 13663, 'thirteen thousand six hundred sixty-three'); INSERT INTO t1 VALUES(168, 64363, 'sixty-four thousand three hundred sixty-three'); INSERT INTO t1 VALUES(169, 17421, 'seventeen thousand four hundred twenty-one'); INSERT INTO t1 VALUES(170, 24719, 'twenty-four thousand seven hundred nineteen'); INSERT INTO t1 VALUES(171, 74905, 'seventy-four thousand nine hundred five'); INSERT INTO t1 VALUES(172, 57491, 'fifty-seven thousand four hundred ninety-one'); INSERT INTO t1 VALUES(173, 83887, 'eighty-three thousand eight hundred eighty-seven'); INSERT INTO t1 VALUES(174, 53820, 'fifty-three thousand eight hundred twenty'); INSERT INTO t1 VALUES(175, 99686, 'ninety-nine thousand six hundred eighty-six'); INSERT INTO t1 VALUES(176, 13566, 'thirteen thousand five hundred sixty-six'); INSERT INTO t1 VALUES(177, 84105, 'eighty-four thousand one hundred five'); INSERT INTO t1 VALUES(178, 27865, 'twenty-seven thousand eight hundred sixty-five'); INSERT INTO t1 VALUES(179, 65236, 'sixty-five thousand two hundred thirty-six'); INSERT INTO t1 VALUES(180, 68943, 'sixty-eight thousand nine hundred forty-three'); INSERT INTO t1 VALUES(181, 95512, 'ninety-five thousand five hundred twelve'); INSERT INTO t1 VALUES(182, 37288, 'thirty-seven thousand two hundred eighty-eight'); INSERT INTO t1 VALUES(183, 40598, 'forty thousand five hundred ninety-eight'); INSERT INTO t1 VALUES(184, 95736, 'ninety-five thousand seven hundred thirty-six'); INSERT INTO t1 VALUES(185, 36298, 'thirty-six thousand two hundred ninety-eight'); INSERT INTO t1 VALUES(186, 88598, 'eighty-eight thousand five hundred ninety-eight'); INSERT INTO t1 VALUES(187, 43804, 'forty-three thousand eight hundred four'); INSERT INTO t1 VALUES(188, 43530, 'forty-three thousand five hundred thirty'); INSERT INTO t1 VALUES(189, 11998, 'eleven thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(190, 78630, 'seventy-eight thousand six hundred thirty'); INSERT INTO t1 VALUES(191, 33724, 'thirty-three thousand seven hundred twenty-four'); INSERT INTO t1 VALUES(192, 65897, 'sixty-five thousand eight hundred ninety-seven'); INSERT INTO t1 VALUES(193, 52823, 'fifty-two thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(194, 85968, 'eighty-five thousand nine hundred sixty-eight'); INSERT INTO t1 VALUES(195, 27380, 'twenty-seven thousand three hundred eighty'); INSERT INTO t1 VALUES(196, 29347, 'twenty-nine thousand three hundred forty-seven'); INSERT INTO t1 VALUES(197, 40056, 'forty thousand fifty-six'); INSERT INTO t1 VALUES(198, 95155, 'ninety-five thousand one hundred fifty-five'); INSERT INTO t1 VALUES(199, 5809, 'five thousand eight hundred nine'); INSERT INTO t1 VALUES(200, 36227, 'thirty-six thousand two hundred twenty-seven'); INSERT INTO t1 VALUES(201, 41328, 'forty-one thousand three hundred twenty-eight'); INSERT INTO t1 VALUES(202, 79952, 'seventy-nine thousand nine hundred fifty-two'); INSERT INTO t1 VALUES(203, 4654, 'four thousand six hundred fifty-four'); INSERT INTO t1 VALUES(204, 72453, 'seventy-two thousand four hundred fifty-three'); INSERT INTO t1 VALUES(205, 50233, 'fifty thousand two hundred thirty-three'); INSERT INTO t1 VALUES(206, 40443, 'forty thousand four hundred forty-three'); INSERT INTO t1 VALUES(207, 24410, 'twenty-four thousand four hundred ten'); INSERT INTO t1 VALUES(208, 56928, 'fifty-six thousand nine hundred twenty-eight'); INSERT INTO t1 VALUES(209, 86493, 'eighty-six thousand four hundred ninety-three'); INSERT INTO t1 VALUES(210, 44012, 'forty-four thousand twelve'); INSERT INTO t1 VALUES(211, 49968, 'forty-nine thousand nine hundred sixty-eight'); INSERT INTO t1 VALUES(212, 31076, 'thirty-one thousand seventy-six'); INSERT INTO t1 VALUES(213, 11672, 'eleven thousand six hundred seventy-two'); INSERT INTO t1 VALUES(214, 49858, 'forty-nine thousand eight hundred fifty-eight'); INSERT INTO t1 VALUES(215, 91036, 'ninety-one thousand thirty-six'); INSERT INTO t1 VALUES(216, 69225, 'sixty-nine thousand two hundred twenty-five'); INSERT INTO t1 VALUES(217, 72681, 'seventy-two thousand six hundred eighty-one'); INSERT INTO t1 VALUES(218, 88900, 'eighty-eight thousand nine hundred'); INSERT INTO t1 VALUES(219, 23257, 'twenty-three thousand two hundred fifty-seven'); INSERT INTO t1 VALUES(220, 69699, 'sixty-nine thousand six hundred ninety-nine'); INSERT INTO t1 VALUES(221, 84544, 'eighty-four thousand five hundred forty-four'); INSERT INTO t1 VALUES(222, 47903, 'forty-seven thousand nine hundred three'); INSERT INTO t1 VALUES(223, 54368, 'fifty-four thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(224, 87640, 'eighty-seven thousand six hundred forty'); INSERT INTO t1 VALUES(225, 85367, 'eighty-five thousand three hundred sixty-seven'); INSERT INTO t1 VALUES(226, 26988, 'twenty-six thousand nine hundred eighty-eight'); INSERT INTO t1 VALUES(227, 45133, 'forty-five thousand one hundred thirty-three'); INSERT INTO t1 VALUES(228, 37005, 'thirty-seven thousand five'); INSERT INTO t1 VALUES(229, 95846, 'ninety-five thousand eight hundred forty-six'); INSERT INTO t1 VALUES(230, 53925, 'fifty-three thousand nine hundred twenty-five'); INSERT INTO t1 VALUES(231, 70273, 'seventy thousand two hundred seventy-three'); INSERT INTO t1 VALUES(232, 75295, 'seventy-five thousand two hundred ninety-five'); INSERT INTO t1 VALUES(233, 43952, 'forty-three thousand nine hundred fifty-two'); INSERT INTO t1 VALUES(234, 83266, 'eighty-three thousand two hundred sixty-six'); INSERT INTO t1 VALUES(235, 22861, 'twenty-two thousand eight hundred sixty-one'); INSERT INTO t1 VALUES(236, 58701, 'fifty-eight thousand seven hundred one'); INSERT INTO t1 VALUES(237, 81079, 'eighty-one thousand seventy-nine'); INSERT INTO t1 VALUES(238, 58821, 'fifty-eight thousand eight hundred twenty-one'); INSERT INTO t1 VALUES(239, 51566, 'fifty-one thousand five hundred sixty-six'); INSERT INTO t1 VALUES(240, 31581, 'thirty-one thousand five hundred eighty-one'); INSERT INTO t1 VALUES(241, 84682, 'eighty-four thousand six hundred eighty-two'); INSERT INTO t1 VALUES(242, 67541, 'sixty-seven thousand five hundred forty-one'); INSERT INTO t1 VALUES(243, 98676, 'ninety-eight thousand six hundred seventy-six'); INSERT INTO t1 VALUES(244, 61174, 'sixty-one thousand one hundred seventy-four'); INSERT INTO t1 VALUES(245, 47444, 'forty-seven thousand four hundred forty-four'); INSERT INTO t1 VALUES(246, 13077, 'thirteen thousand seventy-seven'); INSERT INTO t1 VALUES(247, 33058, 'thirty-three thousand fifty-eight'); INSERT INTO t1 VALUES(248, 18047, 'eighteen thousand forty-seven'); INSERT INTO t1 VALUES(249, 24666, 'twenty-four thousand six hundred sixty-six'); INSERT INTO t1 VALUES(250, 85339, 'eighty-five thousand three hundred thirty-nine'); INSERT INTO t1 VALUES(251, 27349, 'twenty-seven thousand three hundred forty-nine'); INSERT INTO t1 VALUES(252, 48646, 'forty-eight thousand six hundred forty-six'); INSERT INTO t1 VALUES(253, 87697, 'eighty-seven thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(254, 59028, 'fifty-nine thousand twenty-eight'); INSERT INTO t1 VALUES(255, 90200, 'ninety thousand two hundred'); INSERT INTO t1 VALUES(256, 22076, 'twenty-two thousand seventy-six'); INSERT INTO t1 VALUES(257, 96572, 'ninety-six thousand five hundred seventy-two'); INSERT INTO t1 VALUES(258, 81344, 'eighty-one thousand three hundred forty-four'); INSERT INTO t1 VALUES(259, 60728, 'sixty thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(260, 42784, 'forty-two thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(261, 67944, 'sixty-seven thousand nine hundred forty-four'); INSERT INTO t1 VALUES(262, 89078, 'eighty-nine thousand seventy-eight'); INSERT INTO t1 VALUES(263, 27721, 'twenty-seven thousand seven hundred twenty-one'); INSERT INTO t1 VALUES(264, 30300, 'thirty thousand three hundred'); INSERT INTO t1 VALUES(265, 86377, 'eighty-six thousand three hundred seventy-seven'); INSERT INTO t1 VALUES(266, 2769, 'two thousand seven hundred sixty-nine'); INSERT INTO t1 VALUES(267, 348, 'three hundred forty-eight'); INSERT INTO t1 VALUES(268, 15645, 'fifteen thousand six hundred forty-five'); INSERT INTO t1 VALUES(269, 46745, 'forty-six thousand seven hundred forty-five'); INSERT INTO t1 VALUES(270, 98874, 'ninety-eight thousand eight hundred seventy-four'); INSERT INTO t1 VALUES(271, 8959, 'eight thousand nine hundred fifty-nine'); INSERT INTO t1 VALUES(272, 4662, 'four thousand six hundred sixty-two'); INSERT INTO t1 VALUES(273, 3031, 'three thousand thirty-one'); INSERT INTO t1 VALUES(274, 14795, 'fourteen thousand seven hundred ninety-five'); INSERT INTO t1 VALUES(275, 89615, 'eighty-nine thousand six hundred fifteen'); INSERT INTO t1 VALUES(276, 38151, 'thirty-eight thousand one hundred fifty-one'); INSERT INTO t1 VALUES(277, 9577, 'nine thousand five hundred seventy-seven'); INSERT INTO t1 VALUES(278, 21690, 'twenty-one thousand six hundred ninety'); INSERT INTO t1 VALUES(279, 95976, 'ninety-five thousand nine hundred seventy-six'); INSERT INTO t1 VALUES(280, 13228, 'thirteen thousand two hundred twenty-eight'); INSERT INTO t1 VALUES(281, 56557, 'fifty-six thousand five hundred fifty-seven'); INSERT INTO t1 VALUES(282, 34745, 'thirty-four thousand seven hundred forty-five'); INSERT INTO t1 VALUES(283, 88947, 'eighty-eight thousand nine hundred forty-seven'); INSERT INTO t1 VALUES(284, 53802, 'fifty-three thousand eight hundred two'); INSERT INTO t1 VALUES(285, 99862, 'ninety-nine thousand eight hundred sixty-two'); INSERT INTO t1 VALUES(286, 43756, 'forty-three thousand seven hundred fifty-six'); INSERT INTO t1 VALUES(287, 45904, 'forty-five thousand nine hundred four'); INSERT INTO t1 VALUES(288, 86592, 'eighty-six thousand five hundred ninety-two'); INSERT INTO t1 VALUES(289, 63957, 'sixty-three thousand nine hundred fifty-seven'); INSERT INTO t1 VALUES(290, 73086, 'seventy-three thousand eighty-six'); INSERT INTO t1 VALUES(291, 64839, 'sixty-four thousand eight hundred thirty-nine'); INSERT INTO t1 VALUES(292, 85481, 'eighty-five thousand four hundred eighty-one'); INSERT INTO t1 VALUES(293, 60233, 'sixty thousand two hundred thirty-three'); INSERT INTO t1 VALUES(294, 77494, 'seventy-seven thousand four hundred ninety-four'); INSERT INTO t1 VALUES(295, 13588, 'thirteen thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(296, 99448, 'ninety-nine thousand four hundred forty-eight'); INSERT INTO t1 VALUES(297, 12544, 'twelve thousand five hundred forty-four'); INSERT INTO t1 VALUES(298, 86883, 'eighty-six thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(299, 25199, 'twenty-five thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(300, 4490, 'four thousand four hundred ninety'); INSERT INTO t1 VALUES(301, 80345, 'eighty thousand three hundred forty-five'); INSERT INTO t1 VALUES(302, 26880, 'twenty-six thousand eight hundred eighty'); INSERT INTO t1 VALUES(303, 78029, 'seventy-eight thousand twenty-nine'); INSERT INTO t1 VALUES(304, 81387, 'eighty-one thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(305, 73053, 'seventy-three thousand fifty-three'); INSERT INTO t1 VALUES(306, 97799, 'ninety-seven thousand seven hundred ninety-nine'); INSERT INTO t1 VALUES(307, 93677, 'ninety-three thousand six hundred seventy-seven'); INSERT INTO t1 VALUES(308, 37416, 'thirty-seven thousand four hundred sixteen'); INSERT INTO t1 VALUES(309, 86296, 'eighty-six thousand two hundred ninety-six'); INSERT INTO t1 VALUES(310, 73078, 'seventy-three thousand seventy-eight'); INSERT INTO t1 VALUES(311, 16249, 'sixteen thousand two hundred forty-nine'); INSERT INTO t1 VALUES(312, 91237, 'ninety-one thousand two hundred thirty-seven'); INSERT INTO t1 VALUES(313, 60649, 'sixty thousand six hundred forty-nine'); INSERT INTO t1 VALUES(314, 44095, 'forty-four thousand ninety-five'); INSERT INTO t1 VALUES(315, 86807, 'eighty-six thousand eight hundred seven'); INSERT INTO t1 VALUES(316, 39392, 'thirty-nine thousand three hundred ninety-two'); INSERT INTO t1 VALUES(317, 14697, 'fourteen thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(318, 12005, 'twelve thousand five'); INSERT INTO t1 VALUES(319, 2472, 'two thousand four hundred seventy-two'); INSERT INTO t1 VALUES(320, 50236, 'fifty thousand two hundred thirty-six'); INSERT INTO t1 VALUES(321, 83552, 'eighty-three thousand five hundred fifty-two'); INSERT INTO t1 VALUES(322, 73455, 'seventy-three thousand four hundred fifty-five'); INSERT INTO t1 VALUES(323, 41303, 'forty-one thousand three hundred three'); INSERT INTO t1 VALUES(324, 59226, 'fifty-nine thousand two hundred twenty-six'); INSERT INTO t1 VALUES(325, 58564, 'fifty-eight thousand five hundred sixty-four'); INSERT INTO t1 VALUES(326, 16794, 'sixteen thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(327, 14497, 'fourteen thousand four hundred ninety-seven'); INSERT INTO t1 VALUES(328, 16811, 'sixteen thousand eight hundred eleven'); INSERT INTO t1 VALUES(329, 69921, 'sixty-nine thousand nine hundred twenty-one'); INSERT INTO t1 VALUES(330, 2151, 'two thousand one hundred fifty-one'); INSERT INTO t1 VALUES(331, 60008, 'sixty thousand eight'); INSERT INTO t1 VALUES(332, 72246, 'seventy-two thousand two hundred forty-six'); INSERT INTO t1 VALUES(333, 38119, 'thirty-eight thousand one hundred nineteen'); INSERT INTO t1 VALUES(334, 93975, 'ninety-three thousand nine hundred seventy-five'); INSERT INTO t1 VALUES(335, 50570, 'fifty thousand five hundred seventy'); INSERT INTO t1 VALUES(336, 32897, 'thirty-two thousand eight hundred ninety-seven'); INSERT INTO t1 VALUES(337, 89603, 'eighty-nine thousand six hundred three'); INSERT INTO t1 VALUES(338, 63077, 'sixty-three thousand seventy-seven'); INSERT INTO t1 VALUES(339, 54175, 'fifty-four thousand one hundred seventy-five'); INSERT INTO t1 VALUES(340, 76056, 'seventy-six thousand fifty-six'); INSERT INTO t1 VALUES(341, 88771, 'eighty-eight thousand seven hundred seventy-one'); INSERT INTO t1 VALUES(342, 82397, 'eighty-two thousand three hundred ninety-seven'); INSERT INTO t1 VALUES(343, 68160, 'sixty-eight thousand one hundred sixty'); INSERT INTO t1 VALUES(344, 73036, 'seventy-three thousand thirty-six'); INSERT INTO t1 VALUES(345, 33628, 'thirty-three thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(346, 21487, 'twenty-one thousand four hundred eighty-seven'); INSERT INTO t1 VALUES(347, 28885, 'twenty-eight thousand eight hundred eighty-five'); INSERT INTO t1 VALUES(348, 15628, 'fifteen thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(349, 79726, 'seventy-nine thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(350, 58705, 'fifty-eight thousand seven hundred five'); INSERT INTO t1 VALUES(351, 25717, 'twenty-five thousand seven hundred seventeen'); INSERT INTO t1 VALUES(352, 69374, 'sixty-nine thousand three hundred seventy-four'); INSERT INTO t1 VALUES(353, 2334, 'two thousand three hundred thirty-four'); INSERT INTO t1 VALUES(354, 99223, 'ninety-nine thousand two hundred twenty-three'); INSERT INTO t1 VALUES(355, 80823, 'eighty thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(356, 80820, 'eighty thousand eight hundred twenty'); INSERT INTO t1 VALUES(357, 70859, 'seventy thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(358, 89991, 'eighty-nine thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(359, 35796, 'thirty-five thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(360, 30262, 'thirty thousand two hundred sixty-two'); INSERT INTO t1 VALUES(361, 96721, 'ninety-six thousand seven hundred twenty-one'); INSERT INTO t1 VALUES(362, 84626, 'eighty-four thousand six hundred twenty-six'); INSERT INTO t1 VALUES(363, 83672, 'eighty-three thousand six hundred seventy-two'); INSERT INTO t1 VALUES(364, 84842, 'eighty-four thousand eight hundred forty-two'); INSERT INTO t1 VALUES(365, 79746, 'seventy-nine thousand seven hundred forty-six'); INSERT INTO t1 VALUES(366, 30735, 'thirty thousand seven hundred thirty-five'); INSERT INTO t1 VALUES(367, 39894, 'thirty-nine thousand eight hundred ninety-four'); INSERT INTO t1 VALUES(368, 42943, 'forty-two thousand nine hundred forty-three'); INSERT INTO t1 VALUES(369, 78551, 'seventy-eight thousand five hundred fifty-one'); INSERT INTO t1 VALUES(370, 22890, 'twenty-two thousand eight hundred ninety'); INSERT INTO t1 VALUES(371, 26704, 'twenty-six thousand seven hundred four'); INSERT INTO t1 VALUES(372, 13502, 'thirteen thousand five hundred two'); INSERT INTO t1 VALUES(373, 52651, 'fifty-two thousand six hundred fifty-one'); INSERT INTO t1 VALUES(374, 85254, 'eighty-five thousand two hundred fifty-four'); INSERT INTO t1 VALUES(375, 38872, 'thirty-eight thousand eight hundred seventy-two'); INSERT INTO t1 VALUES(376, 47510, 'forty-seven thousand five hundred ten'); INSERT INTO t1 VALUES(377, 60713, 'sixty thousand seven hundred thirteen'); INSERT INTO t1 VALUES(378, 22697, 'twenty-two thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(379, 16563, 'sixteen thousand five hundred sixty-three'); INSERT INTO t1 VALUES(380, 62479, 'sixty-two thousand four hundred seventy-nine'); INSERT INTO t1 VALUES(381, 16641, 'sixteen thousand six hundred forty-one'); INSERT INTO t1 VALUES(382, 26910, 'twenty-six thousand nine hundred ten'); INSERT INTO t1 VALUES(383, 37857, 'thirty-seven thousand eight hundred fifty-seven'); INSERT INTO t1 VALUES(384, 26669, 'twenty-six thousand six hundred sixty-nine'); INSERT INTO t1 VALUES(385, 30689, 'thirty thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(386, 85353, 'eighty-five thousand three hundred fifty-three'); INSERT INTO t1 VALUES(387, 35963, 'thirty-five thousand nine hundred sixty-three'); INSERT INTO t1 VALUES(388, 33507, 'thirty-three thousand five hundred seven'); INSERT INTO t1 VALUES(389, 17324, 'seventeen thousand three hundred twenty-four'); INSERT INTO t1 VALUES(390, 72872, 'seventy-two thousand eight hundred seventy-two'); INSERT INTO t1 VALUES(391, 66620, 'sixty-six thousand six hundred twenty'); INSERT INTO t1 VALUES(392, 76756, 'seventy-six thousand seven hundred fifty-six'); INSERT INTO t1 VALUES(393, 55018, 'fifty-five thousand eighteen'); INSERT INTO t1 VALUES(394, 51718, 'fifty-one thousand seven hundred eighteen'); INSERT INTO t1 VALUES(395, 51859, 'fifty-one thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(396, 3087, 'three thousand eighty-seven'); INSERT INTO t1 VALUES(397, 79425, 'seventy-nine thousand four hundred twenty-five'); INSERT INTO t1 VALUES(398, 75402, 'seventy-five thousand four hundred two'); INSERT INTO t1 VALUES(399, 60540, 'sixty thousand five hundred forty'); INSERT INTO t1 VALUES(400, 39580, 'thirty-nine thousand five hundred eighty'); INSERT INTO t1 VALUES(401, 25385, 'twenty-five thousand three hundred eighty-five'); INSERT INTO t1 VALUES(402, 54214, 'fifty-four thousand two hundred fourteen'); INSERT INTO t1 VALUES(403, 97098, 'ninety-seven thousand ninety-eight'); INSERT INTO t1 VALUES(404, 16077, 'sixteen thousand seventy-seven'); INSERT INTO t1 VALUES(405, 58284, 'fifty-eight thousand two hundred eighty-four'); INSERT INTO t1 VALUES(406, 86168, 'eighty-six thousand one hundred sixty-eight'); INSERT INTO t1 VALUES(407, 7212, 'seven thousand two hundred twelve'); INSERT INTO t1 VALUES(408, 71834, 'seventy-one thousand eight hundred thirty-four'); INSERT INTO t1 VALUES(409, 96037, 'ninety-six thousand thirty-seven'); INSERT INTO t1 VALUES(410, 86119, 'eighty-six thousand one hundred nineteen'); INSERT INTO t1 VALUES(411, 64344, 'sixty-four thousand three hundred forty-four'); INSERT INTO t1 VALUES(412, 27415, 'twenty-seven thousand four hundred fifteen'); INSERT INTO t1 VALUES(413, 28712, 'twenty-eight thousand seven hundred twelve'); INSERT INTO t1 VALUES(414, 76386, 'seventy-six thousand three hundred eighty-six'); INSERT INTO t1 VALUES(415, 60160, 'sixty thousand one hundred sixty'); INSERT INTO t1 VALUES(416, 20616, 'twenty thousand six hundred sixteen'); INSERT INTO t1 VALUES(417, 68129, 'sixty-eight thousand one hundred twenty-nine'); INSERT INTO t1 VALUES(418, 39355, 'thirty-nine thousand three hundred fifty-five'); INSERT INTO t1 VALUES(419, 13220, 'thirteen thousand two hundred twenty'); INSERT INTO t1 VALUES(420, 48729, 'forty-eight thousand seven hundred twenty-nine'); INSERT INTO t1 VALUES(421, 55172, 'fifty-five thousand one hundred seventy-two'); INSERT INTO t1 VALUES(422, 11682, 'eleven thousand six hundred eighty-two'); INSERT INTO t1 VALUES(423, 99481, 'ninety-nine thousand four hundred eighty-one'); INSERT INTO t1 VALUES(424, 15130, 'fifteen thousand one hundred thirty'); INSERT INTO t1 VALUES(425, 45552, 'forty-five thousand five hundred fifty-two'); INSERT INTO t1 VALUES(426, 17206, 'seventeen thousand two hundred six'); INSERT INTO t1 VALUES(427, 715, 'seven hundred fifteen'); INSERT INTO t1 VALUES(428, 48541, 'forty-eight thousand five hundred forty-one'); INSERT INTO t1 VALUES(429, 52774, 'fifty-two thousand seven hundred seventy-four'); INSERT INTO t1 VALUES(430, 55686, 'fifty-five thousand six hundred eighty-six'); INSERT INTO t1 VALUES(431, 32891, 'thirty-two thousand eight hundred ninety-one'); INSERT INTO t1 VALUES(432, 41219, 'forty-one thousand two hundred nineteen'); INSERT INTO t1 VALUES(433, 8989, 'eight thousand nine hundred eighty-nine'); INSERT INTO t1 VALUES(434, 66011, 'sixty-six thousand eleven'); INSERT INTO t1 VALUES(435, 81080, 'eighty-one thousand eighty'); INSERT INTO t1 VALUES(436, 62563, 'sixty-two thousand five hundred sixty-three'); INSERT INTO t1 VALUES(437, 37710, 'thirty-seven thousand seven hundred ten'); INSERT INTO t1 VALUES(438, 80535, 'eighty thousand five hundred thirty-five'); INSERT INTO t1 VALUES(439, 49267, 'forty-nine thousand two hundred sixty-seven'); INSERT INTO t1 VALUES(440, 44842, 'forty-four thousand eight hundred forty-two'); INSERT INTO t1 VALUES(441, 63606, 'sixty-three thousand six hundred six'); INSERT INTO t1 VALUES(442, 18279, 'eighteen thousand two hundred seventy-nine'); INSERT INTO t1 VALUES(443, 94697, 'ninety-four thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(444, 38895, 'thirty-eight thousand eight hundred ninety-five'); INSERT INTO t1 VALUES(445, 98821, 'ninety-eight thousand eight hundred twenty-one'); INSERT INTO t1 VALUES(446, 10495, 'ten thousand four hundred ninety-five'); INSERT INTO t1 VALUES(447, 10575, 'ten thousand five hundred seventy-five'); INSERT INTO t1 VALUES(448, 43738, 'forty-three thousand seven hundred thirty-eight'); INSERT INTO t1 VALUES(449, 73200, 'seventy-three thousand two hundred'); INSERT INTO t1 VALUES(450, 64676, 'sixty-four thousand six hundred seventy-six'); INSERT INTO t1 VALUES(451, 40917, 'forty thousand nine hundred seventeen'); INSERT INTO t1 VALUES(452, 68543, 'sixty-eight thousand five hundred forty-three'); INSERT INTO t1 VALUES(453, 43751, 'forty-three thousand seven hundred fifty-one'); INSERT INTO t1 VALUES(454, 31377, 'thirty-one thousand three hundred seventy-seven'); INSERT INTO t1 VALUES(455, 31155, 'thirty-one thousand one hundred fifty-five'); INSERT INTO t1 VALUES(456, 4541, 'four thousand five hundred forty-one'); INSERT INTO t1 VALUES(457, 47686, 'forty-seven thousand six hundred eighty-six'); INSERT INTO t1 VALUES(458, 1589, 'one thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(459, 79872, 'seventy-nine thousand eight hundred seventy-two'); INSERT INTO t1 VALUES(460, 72459, 'seventy-two thousand four hundred fifty-nine'); INSERT INTO t1 VALUES(461, 92986, 'ninety-two thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(462, 14387, 'fourteen thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(463, 76933, 'seventy-six thousand nine hundred thirty-three'); INSERT INTO t1 VALUES(464, 75622, 'seventy-five thousand six hundred twenty-two'); INSERT INTO t1 VALUES(465, 80138, 'eighty thousand one hundred thirty-eight'); INSERT INTO t1 VALUES(466, 91072, 'ninety-one thousand seventy-two'); INSERT INTO t1 VALUES(467, 92256, 'ninety-two thousand two hundred fifty-six'); INSERT INTO t1 VALUES(468, 53384, 'fifty-three thousand three hundred eighty-four'); INSERT INTO t1 VALUES(469, 19663, 'nineteen thousand six hundred sixty-three'); INSERT INTO t1 VALUES(470, 55777, 'fifty-five thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(471, 19695, 'nineteen thousand six hundred ninety-five'); INSERT INTO t1 VALUES(472, 51634, 'fifty-one thousand six hundred thirty-four'); INSERT INTO t1 VALUES(473, 26528, 'twenty-six thousand five hundred twenty-eight'); INSERT INTO t1 VALUES(474, 47875, 'forty-seven thousand eight hundred seventy-five'); INSERT INTO t1 VALUES(475, 9239, 'nine thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(476, 47218, 'forty-seven thousand two hundred eighteen'); INSERT INTO t1 VALUES(477, 93779, 'ninety-three thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(478, 2660, 'two thousand six hundred sixty'); INSERT INTO t1 VALUES(479, 97406, 'ninety-seven thousand four hundred six'); INSERT INTO t1 VALUES(480, 70348, 'seventy thousand three hundred forty-eight'); INSERT INTO t1 VALUES(481, 66034, 'sixty-six thousand thirty-four'); INSERT INTO t1 VALUES(482, 37544, 'thirty-seven thousand five hundred forty-four'); INSERT INTO t1 VALUES(483, 34129, 'thirty-four thousand one hundred twenty-nine'); INSERT INTO t1 VALUES(484, 9952, 'nine thousand nine hundred fifty-two'); INSERT INTO t1 VALUES(485, 65654, 'sixty-five thousand six hundred fifty-four'); INSERT INTO t1 VALUES(486, 81512, 'eighty-one thousand five hundred twelve'); INSERT INTO t1 VALUES(487, 54746, 'fifty-four thousand seven hundred forty-six'); INSERT INTO t1 VALUES(488, 64936, 'sixty-four thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(489, 67581, 'sixty-seven thousand five hundred eighty-one'); INSERT INTO t1 VALUES(490, 83118, 'eighty-three thousand one hundred eighteen'); INSERT INTO t1 VALUES(491, 38823, 'thirty-eight thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(492, 7042, 'seven thousand forty-two'); INSERT INTO t1 VALUES(493, 11522, 'eleven thousand five hundred twenty-two'); INSERT INTO t1 VALUES(494, 8441, 'eight thousand four hundred forty-one'); INSERT INTO t1 VALUES(495, 5120, 'five thousand one hundred twenty'); INSERT INTO t1 VALUES(496, 96272, 'ninety-six thousand two hundred seventy-two'); INSERT INTO t1 VALUES(497, 53513, 'fifty-three thousand five hundred thirteen'); INSERT INTO t1 VALUES(498, 33940, 'thirty-three thousand nine hundred forty'); INSERT INTO t1 VALUES(499, 73734, 'seventy-three thousand seven hundred thirty-four'); INSERT INTO t1 VALUES(500, 16177, 'sixteen thousand one hundred seventy-seven'); INSERT INTO t1 VALUES(501, 86036, 'eighty-six thousand thirty-six'); INSERT INTO t1 VALUES(502, 30530, 'thirty thousand five hundred thirty'); INSERT INTO t1 VALUES(503, 16316, 'sixteen thousand three hundred sixteen'); INSERT INTO t1 VALUES(504, 28560, 'twenty-eight thousand five hundred sixty'); INSERT INTO t1 VALUES(505, 85929, 'eighty-five thousand nine hundred twenty-nine'); INSERT INTO t1 VALUES(506, 18503, 'eighteen thousand five hundred three'); INSERT INTO t1 VALUES(507, 72281, 'seventy-two thousand two hundred eighty-one'); INSERT INTO t1 VALUES(508, 58618, 'fifty-eight thousand six hundred eighteen'); INSERT INTO t1 VALUES(509, 7853, 'seven thousand eight hundred fifty-three'); INSERT INTO t1 VALUES(510, 29964, 'twenty-nine thousand nine hundred sixty-four'); INSERT INTO t1 VALUES(511, 24561, 'twenty-four thousand five hundred sixty-one'); INSERT INTO t1 VALUES(512, 95025, 'ninety-five thousand twenty-five'); INSERT INTO t1 VALUES(513, 28269, 'twenty-eight thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(514, 8823, 'eight thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(515, 50469, 'fifty thousand four hundred sixty-nine'); INSERT INTO t1 VALUES(516, 13585, 'thirteen thousand five hundred eighty-five'); INSERT INTO t1 VALUES(517, 25357, 'twenty-five thousand three hundred fifty-seven'); INSERT INTO t1 VALUES(518, 78916, 'seventy-eight thousand nine hundred sixteen'); INSERT INTO t1 VALUES(519, 16824, 'sixteen thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(520, 56142, 'fifty-six thousand one hundred forty-two'); INSERT INTO t1 VALUES(521, 56019, 'fifty-six thousand nineteen'); INSERT INTO t1 VALUES(522, 43, 'forty-three'); INSERT INTO t1 VALUES(523, 2397, 'two thousand three hundred ninety-seven'); INSERT INTO t1 VALUES(524, 74672, 'seventy-four thousand six hundred seventy-two'); INSERT INTO t1 VALUES(525, 23212, 'twenty-three thousand two hundred twelve'); INSERT INTO t1 VALUES(526, 86249, 'eighty-six thousand two hundred forty-nine'); INSERT INTO t1 VALUES(527, 13881, 'thirteen thousand eight hundred eighty-one'); INSERT INTO t1 VALUES(528, 82726, 'eighty-two thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(529, 52533, 'fifty-two thousand five hundred thirty-three'); INSERT INTO t1 VALUES(530, 54536, 'fifty-four thousand five hundred thirty-six'); INSERT INTO t1 VALUES(531, 56314, 'fifty-six thousand three hundred fourteen'); INSERT INTO t1 VALUES(532, 26385, 'twenty-six thousand three hundred eighty-five'); INSERT INTO t1 VALUES(533, 13221, 'thirteen thousand two hundred twenty-one'); INSERT INTO t1 VALUES(534, 9924, 'nine thousand nine hundred twenty-four'); INSERT INTO t1 VALUES(535, 17334, 'seventeen thousand three hundred thirty-four'); INSERT INTO t1 VALUES(536, 42403, 'forty-two thousand four hundred three'); INSERT INTO t1 VALUES(537, 94782, 'ninety-four thousand seven hundred eighty-two'); INSERT INTO t1 VALUES(538, 36047, 'thirty-six thousand forty-seven'); INSERT INTO t1 VALUES(539, 91977, 'ninety-one thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(540, 85296, 'eighty-five thousand two hundred ninety-six'); INSERT INTO t1 VALUES(541, 36403, 'thirty-six thousand four hundred three'); INSERT INTO t1 VALUES(542, 45820, 'forty-five thousand eight hundred twenty'); INSERT INTO t1 VALUES(543, 53225, 'fifty-three thousand two hundred twenty-five'); INSERT INTO t1 VALUES(544, 30463, 'thirty thousand four hundred sixty-three'); INSERT INTO t1 VALUES(545, 44203, 'forty-four thousand two hundred three'); INSERT INTO t1 VALUES(546, 20268, 'twenty thousand two hundred sixty-eight'); INSERT INTO t1 VALUES(547, 32351, 'thirty-two thousand three hundred fifty-one'); INSERT INTO t1 VALUES(548, 2830, 'two thousand eight hundred thirty'); INSERT INTO t1 VALUES(549, 50370, 'fifty thousand three hundred seventy'); INSERT INTO t1 VALUES(550, 19133, 'nineteen thousand one hundred thirty-three'); INSERT INTO t1 VALUES(551, 38784, 'thirty-eight thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(552, 97703, 'ninety-seven thousand seven hundred three'); INSERT INTO t1 VALUES(553, 51086, 'fifty-one thousand eighty-six'); INSERT INTO t1 VALUES(554, 86768, 'eighty-six thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(555, 11300, 'eleven thousand three hundred'); INSERT INTO t1 VALUES(556, 46246, 'forty-six thousand two hundred forty-six'); INSERT INTO t1 VALUES(557, 61115, 'sixty-one thousand one hundred fifteen'); INSERT INTO t1 VALUES(558, 83157, 'eighty-three thousand one hundred fifty-seven'); INSERT INTO t1 VALUES(559, 6944, 'six thousand nine hundred forty-four'); INSERT INTO t1 VALUES(560, 44423, 'forty-four thousand four hundred twenty-three'); INSERT INTO t1 VALUES(561, 76382, 'seventy-six thousand three hundred eighty-two'); INSERT INTO t1 VALUES(562, 45914, 'forty-five thousand nine hundred fourteen'); INSERT INTO t1 VALUES(563, 31095, 'thirty-one thousand ninety-five'); INSERT INTO t1 VALUES(564, 82598, 'eighty-two thousand five hundred ninety-eight'); INSERT INTO t1 VALUES(565, 50503, 'fifty thousand five hundred three'); INSERT INTO t1 VALUES(566, 73840, 'seventy-three thousand eight hundred forty'); INSERT INTO t1 VALUES(567, 93509, 'ninety-three thousand five hundred nine'); INSERT INTO t1 VALUES(568, 14384, 'fourteen thousand three hundred eighty-four'); INSERT INTO t1 VALUES(569, 78275, 'seventy-eight thousand two hundred seventy-five'); INSERT INTO t1 VALUES(570, 41077, 'forty-one thousand seventy-seven'); INSERT INTO t1 VALUES(571, 78723, 'seventy-eight thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(572, 61236, 'sixty-one thousand two hundred thirty-six'); INSERT INTO t1 VALUES(573, 51876, 'fifty-one thousand eight hundred seventy-six'); INSERT INTO t1 VALUES(574, 34937, 'thirty-four thousand nine hundred thirty-seven'); INSERT INTO t1 VALUES(575, 61033, 'sixty-one thousand thirty-three'); INSERT INTO t1 VALUES(576, 99302, 'ninety-nine thousand three hundred two'); INSERT INTO t1 VALUES(577, 38302, 'thirty-eight thousand three hundred two'); INSERT INTO t1 VALUES(578, 72896, 'seventy-two thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(579, 36628, 'thirty-six thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(580, 42704, 'forty-two thousand seven hundred four'); INSERT INTO t1 VALUES(581, 64936, 'sixty-four thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(582, 89893, 'eighty-nine thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(583, 5897, 'five thousand eight hundred ninety-seven'); INSERT INTO t1 VALUES(584, 83645, 'eighty-three thousand six hundred forty-five'); INSERT INTO t1 VALUES(585, 22698, 'twenty-two thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(586, 45782, 'forty-five thousand seven hundred eighty-two'); INSERT INTO t1 VALUES(587, 69956, 'sixty-nine thousand nine hundred fifty-six'); INSERT INTO t1 VALUES(588, 98635, 'ninety-eight thousand six hundred thirty-five'); INSERT INTO t1 VALUES(589, 91767, 'ninety-one thousand seven hundred sixty-seven'); INSERT INTO t1 VALUES(590, 43906, 'forty-three thousand nine hundred six'); INSERT INTO t1 VALUES(591, 79011, 'seventy-nine thousand eleven'); INSERT INTO t1 VALUES(592, 39700, 'thirty-nine thousand seven hundred'); INSERT INTO t1 VALUES(593, 87166, 'eighty-seven thousand one hundred sixty-six'); INSERT INTO t1 VALUES(594, 48372, 'forty-eight thousand three hundred seventy-two'); INSERT INTO t1 VALUES(595, 8964, 'eight thousand nine hundred sixty-four'); INSERT INTO t1 VALUES(596, 40048, 'forty thousand forty-eight'); INSERT INTO t1 VALUES(597, 46283, 'forty-six thousand two hundred eighty-three'); INSERT INTO t1 VALUES(598, 40794, 'forty thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(599, 64970, 'sixty-four thousand nine hundred seventy'); INSERT INTO t1 VALUES(600, 55199, 'fifty-five thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(601, 30775, 'thirty thousand seven hundred seventy-five'); INSERT INTO t1 VALUES(602, 25746, 'twenty-five thousand seven hundred forty-six'); INSERT INTO t1 VALUES(603, 85247, 'eighty-five thousand two hundred forty-seven'); INSERT INTO t1 VALUES(604, 38705, 'thirty-eight thousand seven hundred five'); INSERT INTO t1 VALUES(605, 93520, 'ninety-three thousand five hundred twenty'); INSERT INTO t1 VALUES(606, 49552, 'forty-nine thousand five hundred fifty-two'); INSERT INTO t1 VALUES(607, 36015, 'thirty-six thousand fifteen'); INSERT INTO t1 VALUES(608, 68523, 'sixty-eight thousand five hundred twenty-three'); INSERT INTO t1 VALUES(609, 38011, 'thirty-eight thousand eleven'); INSERT INTO t1 VALUES(610, 45485, 'forty-five thousand four hundred eighty-five'); INSERT INTO t1 VALUES(611, 5878, 'five thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(612, 4661, 'four thousand six hundred sixty-one'); INSERT INTO t1 VALUES(613, 93542, 'ninety-three thousand five hundred forty-two'); INSERT INTO t1 VALUES(614, 98403, 'ninety-eight thousand four hundred three'); INSERT INTO t1 VALUES(615, 72480, 'seventy-two thousand four hundred eighty'); INSERT INTO t1 VALUES(616, 44651, 'forty-four thousand six hundred fifty-one'); INSERT INTO t1 VALUES(617, 86431, 'eighty-six thousand four hundred thirty-one'); INSERT INTO t1 VALUES(618, 64298, 'sixty-four thousand two hundred ninety-eight'); INSERT INTO t1 VALUES(619, 25967, 'twenty-five thousand nine hundred sixty-seven'); INSERT INTO t1 VALUES(620, 69815, 'sixty-nine thousand eight hundred fifteen'); INSERT INTO t1 VALUES(621, 81744, 'eighty-one thousand seven hundred forty-four'); INSERT INTO t1 VALUES(622, 7391, 'seven thousand three hundred ninety-one'); INSERT INTO t1 VALUES(623, 82812, 'eighty-two thousand eight hundred twelve'); INSERT INTO t1 VALUES(624, 74354, 'seventy-four thousand three hundred fifty-four'); INSERT INTO t1 VALUES(625, 25717, 'twenty-five thousand seven hundred seventeen'); INSERT INTO t1 VALUES(626, 4708, 'four thousand seven hundred eight'); INSERT INTO t1 VALUES(627, 68328, 'sixty-eight thousand three hundred twenty-eight'); INSERT INTO t1 VALUES(628, 9503, 'nine thousand five hundred three'); INSERT INTO t1 VALUES(629, 13169, 'thirteen thousand one hundred sixty-nine'); INSERT INTO t1 VALUES(630, 45277, 'forty-five thousand two hundred seventy-seven'); INSERT INTO t1 VALUES(631, 25998, 'twenty-five thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(632, 79413, 'seventy-nine thousand four hundred thirteen'); INSERT INTO t1 VALUES(633, 48286, 'forty-eight thousand two hundred eighty-six'); INSERT INTO t1 VALUES(634, 51960, 'fifty-one thousand nine hundred sixty'); INSERT INTO t1 VALUES(635, 85401, 'eighty-five thousand four hundred one'); INSERT INTO t1 VALUES(636, 5474, 'five thousand four hundred seventy-four'); INSERT INTO t1 VALUES(637, 51779, 'fifty-one thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(638, 79740, 'seventy-nine thousand seven hundred forty'); INSERT INTO t1 VALUES(639, 21339, 'twenty-one thousand three hundred thirty-nine'); INSERT INTO t1 VALUES(640, 997, 'nine hundred ninety-seven'); INSERT INTO t1 VALUES(641, 80349, 'eighty thousand three hundred forty-nine'); INSERT INTO t1 VALUES(642, 96611, 'ninety-six thousand six hundred eleven'); INSERT INTO t1 VALUES(643, 43066, 'forty-three thousand sixty-six'); INSERT INTO t1 VALUES(644, 22570, 'twenty-two thousand five hundred seventy'); INSERT INTO t1 VALUES(645, 80297, 'eighty thousand two hundred ninety-seven'); INSERT INTO t1 VALUES(646, 25962, 'twenty-five thousand nine hundred sixty-two'); INSERT INTO t1 VALUES(647, 2557, 'two thousand five hundred fifty-seven'); INSERT INTO t1 VALUES(648, 79141, 'seventy-nine thousand one hundred forty-one'); INSERT INTO t1 VALUES(649, 78860, 'seventy-eight thousand eight hundred sixty'); INSERT INTO t1 VALUES(650, 91460, 'ninety-one thousand four hundred sixty'); INSERT INTO t1 VALUES(651, 83788, 'eighty-three thousand seven hundred eighty-eight'); INSERT INTO t1 VALUES(652, 52289, 'fifty-two thousand two hundred eighty-nine'); INSERT INTO t1 VALUES(653, 59404, 'fifty-nine thousand four hundred four'); INSERT INTO t1 VALUES(654, 71309, 'seventy-one thousand three hundred nine'); INSERT INTO t1 VALUES(655, 50204, 'fifty thousand two hundred four'); INSERT INTO t1 VALUES(656, 4763, 'four thousand seven hundred sixty-three'); INSERT INTO t1 VALUES(657, 29232, 'twenty-nine thousand two hundred thirty-two'); INSERT INTO t1 VALUES(658, 89333, 'eighty-nine thousand three hundred thirty-three'); INSERT INTO t1 VALUES(659, 64784, 'sixty-four thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(660, 49553, 'forty-nine thousand five hundred fifty-three'); INSERT INTO t1 VALUES(661, 90976, 'ninety thousand nine hundred seventy-six'); INSERT INTO t1 VALUES(662, 83265, 'eighty-three thousand two hundred sixty-five'); INSERT INTO t1 VALUES(663, 25572, 'twenty-five thousand five hundred seventy-two'); INSERT INTO t1 VALUES(664, 24938, 'twenty-four thousand nine hundred thirty-eight'); INSERT INTO t1 VALUES(665, 13432, 'thirteen thousand four hundred thirty-two'); INSERT INTO t1 VALUES(666, 34300, 'thirty-four thousand three hundred'); INSERT INTO t1 VALUES(667, 33811, 'thirty-three thousand eight hundred eleven'); INSERT INTO t1 VALUES(668, 50937, 'fifty thousand nine hundred thirty-seven'); INSERT INTO t1 VALUES(669, 74146, 'seventy-four thousand one hundred forty-six'); INSERT INTO t1 VALUES(670, 69446, 'sixty-nine thousand four hundred forty-six'); INSERT INTO t1 VALUES(671, 80654, 'eighty thousand six hundred fifty-four'); INSERT INTO t1 VALUES(672, 96777, 'ninety-six thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(673, 18023, 'eighteen thousand twenty-three'); INSERT INTO t1 VALUES(674, 92904, 'ninety-two thousand nine hundred four'); INSERT INTO t1 VALUES(675, 59712, 'fifty-nine thousand seven hundred twelve'); INSERT INTO t1 VALUES(676, 36037, 'thirty-six thousand thirty-seven'); INSERT INTO t1 VALUES(677, 48997, 'forty-eight thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(678, 60218, 'sixty thousand two hundred eighteen'); INSERT INTO t1 VALUES(679, 82108, 'eighty-two thousand one hundred eight'); INSERT INTO t1 VALUES(680, 69426, 'sixty-nine thousand four hundred twenty-six'); INSERT INTO t1 VALUES(681, 61325, 'sixty-one thousand three hundred twenty-five'); INSERT INTO t1 VALUES(682, 11668, 'eleven thousand six hundred sixty-eight'); INSERT INTO t1 VALUES(683, 69572, 'sixty-nine thousand five hundred seventy-two'); INSERT INTO t1 VALUES(684, 8565, 'eight thousand five hundred sixty-five'); INSERT INTO t1 VALUES(685, 27600, 'twenty-seven thousand six hundred'); INSERT INTO t1 VALUES(686, 45325, 'forty-five thousand three hundred twenty-five'); INSERT INTO t1 VALUES(687, 39031, 'thirty-nine thousand thirty-one'); INSERT INTO t1 VALUES(688, 63396, 'sixty-three thousand three hundred ninety-six'); INSERT INTO t1 VALUES(689, 67243, 'sixty-seven thousand two hundred forty-three'); INSERT INTO t1 VALUES(690, 64709, 'sixty-four thousand seven hundred nine'); INSERT INTO t1 VALUES(691, 16998, 'sixteen thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(692, 8963, 'eight thousand nine hundred sixty-three'); INSERT INTO t1 VALUES(693, 13668, 'thirteen thousand six hundred sixty-eight'); INSERT INTO t1 VALUES(694, 67794, 'sixty-seven thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(695, 8764, 'eight thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(696, 13190, 'thirteen thousand one hundred ninety'); INSERT INTO t1 VALUES(697, 40131, 'forty thousand one hundred thirty-one'); INSERT INTO t1 VALUES(698, 51903, 'fifty-one thousand nine hundred three'); INSERT INTO t1 VALUES(699, 36798, 'thirty-six thousand seven hundred ninety-eight'); INSERT INTO t1 VALUES(700, 72372, 'seventy-two thousand three hundred seventy-two'); INSERT INTO t1 VALUES(701, 14647, 'fourteen thousand six hundred forty-seven'); INSERT INTO t1 VALUES(702, 68723, 'sixty-eight thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(703, 35989, 'thirty-five thousand nine hundred eighty-nine'); INSERT INTO t1 VALUES(704, 90077, 'ninety thousand seventy-seven'); INSERT INTO t1 VALUES(705, 38750, 'thirty-eight thousand seven hundred fifty'); INSERT INTO t1 VALUES(706, 98516, 'ninety-eight thousand five hundred sixteen'); INSERT INTO t1 VALUES(707, 57950, 'fifty-seven thousand nine hundred fifty'); INSERT INTO t1 VALUES(708, 21024, 'twenty-one thousand twenty-four'); INSERT INTO t1 VALUES(709, 86474, 'eighty-six thousand four hundred seventy-four'); INSERT INTO t1 VALUES(710, 93968, 'ninety-three thousand nine hundred sixty-eight'); INSERT INTO t1 VALUES(711, 55883, 'fifty-five thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(712, 93848, 'ninety-three thousand eight hundred forty-eight'); INSERT INTO t1 VALUES(713, 34206, 'thirty-four thousand two hundred six'); INSERT INTO t1 VALUES(714, 46397, 'forty-six thousand three hundred ninety-seven'); INSERT INTO t1 VALUES(715, 59959, 'fifty-nine thousand nine hundred fifty-nine'); INSERT INTO t1 VALUES(716, 12097, 'twelve thousand ninety-seven'); INSERT INTO t1 VALUES(717, 7797, 'seven thousand seven hundred ninety-seven'); INSERT INTO t1 VALUES(718, 70674, 'seventy thousand six hundred seventy-four'); INSERT INTO t1 VALUES(719, 85402, 'eighty-five thousand four hundred two'); INSERT INTO t1 VALUES(720, 96486, 'ninety-six thousand four hundred eighty-six'); INSERT INTO t1 VALUES(721, 32790, 'thirty-two thousand seven hundred ninety'); INSERT INTO t1 VALUES(722, 98920, 'ninety-eight thousand nine hundred twenty'); INSERT INTO t1 VALUES(723, 35357, 'thirty-five thousand three hundred fifty-seven'); INSERT INTO t1 VALUES(724, 41402, 'forty-one thousand four hundred two'); INSERT INTO t1 VALUES(725, 34161, 'thirty-four thousand one hundred sixty-one'); INSERT INTO t1 VALUES(726, 30762, 'thirty thousand seven hundred sixty-two'); INSERT INTO t1 VALUES(727, 32850, 'thirty-two thousand eight hundred fifty'); INSERT INTO t1 VALUES(728, 646, 'six hundred forty-six'); INSERT INTO t1 VALUES(729, 13543, 'thirteen thousand five hundred forty-three'); INSERT INTO t1 VALUES(730, 46958, 'forty-six thousand nine hundred fifty-eight'); INSERT INTO t1 VALUES(731, 33021, 'thirty-three thousand twenty-one'); INSERT INTO t1 VALUES(732, 66196, 'sixty-six thousand one hundred ninety-six'); INSERT INTO t1 VALUES(733, 13354, 'thirteen thousand three hundred fifty-four'); INSERT INTO t1 VALUES(734, 10676, 'ten thousand six hundred seventy-six'); INSERT INTO t1 VALUES(735, 73514, 'seventy-three thousand five hundred fourteen'); INSERT INTO t1 VALUES(736, 92566, 'ninety-two thousand five hundred sixty-six'); INSERT INTO t1 VALUES(737, 64703, 'sixty-four thousand seven hundred three'); INSERT INTO t1 VALUES(738, 47991, 'forty-seven thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(739, 27244, 'twenty-seven thousand two hundred forty-four'); INSERT INTO t1 VALUES(740, 64520, 'sixty-four thousand five hundred twenty'); INSERT INTO t1 VALUES(741, 69103, 'sixty-nine thousand one hundred three'); INSERT INTO t1 VALUES(742, 65450, 'sixty-five thousand four hundred fifty'); INSERT INTO t1 VALUES(743, 16922, 'sixteen thousand nine hundred twenty-two'); INSERT INTO t1 VALUES(744, 17346, 'seventeen thousand three hundred forty-six'); INSERT INTO t1 VALUES(745, 71356, 'seventy-one thousand three hundred fifty-six'); INSERT INTO t1 VALUES(746, 13993, 'thirteen thousand nine hundred ninety-three'); INSERT INTO t1 VALUES(747, 93096, 'ninety-three thousand ninety-six'); INSERT INTO t1 VALUES(748, 83864, 'eighty-three thousand eight hundred sixty-four'); INSERT INTO t1 VALUES(749, 56082, 'fifty-six thousand eighty-two'); INSERT INTO t1 VALUES(750, 71357, 'seventy-one thousand three hundred fifty-seven'); INSERT INTO t1 VALUES(751, 20820, 'twenty thousand eight hundred twenty'); INSERT INTO t1 VALUES(752, 35212, 'thirty-five thousand two hundred twelve'); INSERT INTO t1 VALUES(753, 36869, 'thirty-six thousand eight hundred sixty-nine'); INSERT INTO t1 VALUES(754, 98308, 'ninety-eight thousand three hundred eight'); INSERT INTO t1 VALUES(755, 28534, 'twenty-eight thousand five hundred thirty-four'); INSERT INTO t1 VALUES(756, 13449, 'thirteen thousand four hundred forty-nine'); INSERT INTO t1 VALUES(757, 50790, 'fifty thousand seven hundred ninety'); INSERT INTO t1 VALUES(758, 72079, 'seventy-two thousand seventy-nine'); INSERT INTO t1 VALUES(759, 50542, 'fifty thousand five hundred forty-two'); INSERT INTO t1 VALUES(760, 93906, 'ninety-three thousand nine hundred six'); INSERT INTO t1 VALUES(761, 40114, 'forty thousand one hundred fourteen'); INSERT INTO t1 VALUES(762, 7438, 'seven thousand four hundred thirty-eight'); INSERT INTO t1 VALUES(763, 35356, 'thirty-five thousand three hundred fifty-six'); INSERT INTO t1 VALUES(764, 5235, 'five thousand two hundred thirty-five'); INSERT INTO t1 VALUES(765, 89549, 'eighty-nine thousand five hundred forty-nine'); INSERT INTO t1 VALUES(766, 8986, 'eight thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(767, 1744, 'one thousand seven hundred forty-four'); INSERT INTO t1 VALUES(768, 52593, 'fifty-two thousand five hundred ninety-three'); INSERT INTO t1 VALUES(769, 60964, 'sixty thousand nine hundred sixty-four'); INSERT INTO t1 VALUES(770, 33872, 'thirty-three thousand eight hundred seventy-two'); INSERT INTO t1 VALUES(771, 38564, 'thirty-eight thousand five hundred sixty-four'); INSERT INTO t1 VALUES(772, 51829, 'fifty-one thousand eight hundred twenty-nine'); INSERT INTO t1 VALUES(773, 45497, 'forty-five thousand four hundred ninety-seven'); INSERT INTO t1 VALUES(774, 39019, 'thirty-nine thousand nineteen'); INSERT INTO t1 VALUES(775, 70227, 'seventy thousand two hundred twenty-seven'); INSERT INTO t1 VALUES(776, 60554, 'sixty thousand five hundred fifty-four'); INSERT INTO t1 VALUES(777, 61434, 'sixty-one thousand four hundred thirty-four'); INSERT INTO t1 VALUES(778, 73964, 'seventy-three thousand nine hundred sixty-four'); INSERT INTO t1 VALUES(779, 97432, 'ninety-seven thousand four hundred thirty-two'); INSERT INTO t1 VALUES(780, 36245, 'thirty-six thousand two hundred forty-five'); INSERT INTO t1 VALUES(781, 56133, 'fifty-six thousand one hundred thirty-three'); INSERT INTO t1 VALUES(782, 92245, 'ninety-two thousand two hundred forty-five'); INSERT INTO t1 VALUES(783, 53788, 'fifty-three thousand seven hundred eighty-eight'); INSERT INTO t1 VALUES(784, 50188, 'fifty thousand one hundred eighty-eight'); INSERT INTO t1 VALUES(785, 56809, 'fifty-six thousand eight hundred nine'); INSERT INTO t1 VALUES(786, 36260, 'thirty-six thousand two hundred sixty'); INSERT INTO t1 VALUES(787, 95979, 'ninety-five thousand nine hundred seventy-nine'); INSERT INTO t1 VALUES(788, 9796, 'nine thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(789, 44337, 'forty-four thousand three hundred thirty-seven'); INSERT INTO t1 VALUES(790, 66951, 'sixty-six thousand nine hundred fifty-one'); INSERT INTO t1 VALUES(791, 65628, 'sixty-five thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(792, 25087, 'twenty-five thousand eighty-seven'); INSERT INTO t1 VALUES(793, 81266, 'eighty-one thousand two hundred sixty-six'); INSERT INTO t1 VALUES(794, 39828, 'thirty-nine thousand eight hundred twenty-eight'); INSERT INTO t1 VALUES(795, 23770, 'twenty-three thousand seven hundred seventy'); INSERT INTO t1 VALUES(796, 53435, 'fifty-three thousand four hundred thirty-five'); INSERT INTO t1 VALUES(797, 7766, 'seven thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(798, 32226, 'thirty-two thousand two hundred twenty-six'); INSERT INTO t1 VALUES(799, 974, 'nine hundred seventy-four'); INSERT INTO t1 VALUES(800, 1063, 'one thousand sixty-three'); INSERT INTO t1 VALUES(801, 9700, 'nine thousand seven hundred'); INSERT INTO t1 VALUES(802, 49439, 'forty-nine thousand four hundred thirty-nine'); INSERT INTO t1 VALUES(803, 6791, 'six thousand seven hundred ninety-one'); INSERT INTO t1 VALUES(804, 17430, 'seventeen thousand four hundred thirty'); INSERT INTO t1 VALUES(805, 19477, 'nineteen thousand four hundred seventy-seven'); INSERT INTO t1 VALUES(806, 53160, 'fifty-three thousand one hundred sixty'); INSERT INTO t1 VALUES(807, 73531, 'seventy-three thousand five hundred thirty-one'); INSERT INTO t1 VALUES(808, 41027, 'forty-one thousand twenty-seven'); INSERT INTO t1 VALUES(809, 3556, 'three thousand five hundred fifty-six'); INSERT INTO t1 VALUES(810, 3779, 'three thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(811, 81233, 'eighty-one thousand two hundred thirty-three'); INSERT INTO t1 VALUES(812, 28200, 'twenty-eight thousand two hundred'); INSERT INTO t1 VALUES(813, 34574, 'thirty-four thousand five hundred seventy-four'); INSERT INTO t1 VALUES(814, 21899, 'twenty-one thousand eight hundred ninety-nine'); INSERT INTO t1 VALUES(815, 26123, 'twenty-six thousand one hundred twenty-three'); INSERT INTO t1 VALUES(816, 54056, 'fifty-four thousand fifty-six'); INSERT INTO t1 VALUES(817, 51709, 'fifty-one thousand seven hundred nine'); INSERT INTO t1 VALUES(818, 83040, 'eighty-three thousand forty'); INSERT INTO t1 VALUES(819, 51595, 'fifty-one thousand five hundred ninety-five'); INSERT INTO t1 VALUES(820, 47567, 'forty-seven thousand five hundred sixty-seven'); INSERT INTO t1 VALUES(821, 79810, 'seventy-nine thousand eight hundred ten'); INSERT INTO t1 VALUES(822, 95156, 'ninety-five thousand one hundred fifty-six'); INSERT INTO t1 VALUES(823, 21070, 'twenty-one thousand seventy'); INSERT INTO t1 VALUES(824, 21005, 'twenty-one thousand five'); INSERT INTO t1 VALUES(825, 62049, 'sixty-two thousand forty-nine'); INSERT INTO t1 VALUES(826, 40500, 'forty thousand five hundred'); INSERT INTO t1 VALUES(827, 8986, 'eight thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(828, 97050, 'ninety-seven thousand fifty'); INSERT INTO t1 VALUES(829, 1342, 'one thousand three hundred forty-two'); INSERT INTO t1 VALUES(830, 70601, 'seventy thousand six hundred one'); INSERT INTO t1 VALUES(831, 47967, 'forty-seven thousand nine hundred sixty-seven'); INSERT INTO t1 VALUES(832, 17857, 'seventeen thousand eight hundred fifty-seven'); INSERT INTO t1 VALUES(833, 29476, 'twenty-nine thousand four hundred seventy-six'); INSERT INTO t1 VALUES(834, 71793, 'seventy-one thousand seven hundred ninety-three'); INSERT INTO t1 VALUES(835, 90082, 'ninety thousand eighty-two'); INSERT INTO t1 VALUES(836, 71437, 'seventy-one thousand four hundred thirty-seven'); INSERT INTO t1 VALUES(837, 83075, 'eighty-three thousand seventy-five'); INSERT INTO t1 VALUES(838, 76758, 'seventy-six thousand seven hundred fifty-eight'); INSERT INTO t1 VALUES(839, 64646, 'sixty-four thousand six hundred forty-six'); INSERT INTO t1 VALUES(840, 3252, 'three thousand two hundred fifty-two'); INSERT INTO t1 VALUES(841, 40949, 'forty thousand nine hundred forty-nine'); INSERT INTO t1 VALUES(842, 74652, 'seventy-four thousand six hundred fifty-two'); INSERT INTO t1 VALUES(843, 82824, 'eighty-two thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(844, 25339, 'twenty-five thousand three hundred thirty-nine'); INSERT INTO t1 VALUES(845, 89079, 'eighty-nine thousand seventy-nine'); INSERT INTO t1 VALUES(846, 31116, 'thirty-one thousand one hundred sixteen'); INSERT INTO t1 VALUES(847, 60449, 'sixty thousand four hundred forty-nine'); INSERT INTO t1 VALUES(848, 54968, 'fifty-four thousand nine hundred sixty-eight'); INSERT INTO t1 VALUES(849, 82844, 'eighty-two thousand eight hundred forty-four'); INSERT INTO t1 VALUES(850, 51994, 'fifty-one thousand nine hundred ninety-four'); INSERT INTO t1 VALUES(851, 92512, 'ninety-two thousand five hundred twelve'); INSERT INTO t1 VALUES(852, 84151, 'eighty-four thousand one hundred fifty-one'); INSERT INTO t1 VALUES(853, 94764, 'ninety-four thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(854, 1566, 'one thousand five hundred sixty-six'); INSERT INTO t1 VALUES(855, 40287, 'forty thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(856, 87550, 'eighty-seven thousand five hundred fifty'); INSERT INTO t1 VALUES(857, 85822, 'eighty-five thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(858, 50252, 'fifty thousand two hundred fifty-two'); INSERT INTO t1 VALUES(859, 26462, 'twenty-six thousand four hundred sixty-two'); INSERT INTO t1 VALUES(860, 43816, 'forty-three thousand eight hundred sixteen'); INSERT INTO t1 VALUES(861, 4236, 'four thousand two hundred thirty-six'); INSERT INTO t1 VALUES(862, 46969, 'forty-six thousand nine hundred sixty-nine'); INSERT INTO t1 VALUES(863, 10906, 'ten thousand nine hundred six'); INSERT INTO t1 VALUES(864, 59491, 'fifty-nine thousand four hundred ninety-one'); INSERT INTO t1 VALUES(865, 41550, 'forty-one thousand five hundred fifty'); INSERT INTO t1 VALUES(866, 6385, 'six thousand three hundred eighty-five'); INSERT INTO t1 VALUES(867, 45666, 'forty-five thousand six hundred sixty-six'); INSERT INTO t1 VALUES(868, 31625, 'thirty-one thousand six hundred twenty-five'); INSERT INTO t1 VALUES(869, 75575, 'seventy-five thousand five hundred seventy-five'); INSERT INTO t1 VALUES(870, 74483, 'seventy-four thousand four hundred eighty-three'); INSERT INTO t1 VALUES(871, 65764, 'sixty-five thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(872, 67932, 'sixty-seven thousand nine hundred thirty-two'); INSERT INTO t1 VALUES(873, 48500, 'forty-eight thousand five hundred'); INSERT INTO t1 VALUES(874, 79822, 'seventy-nine thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(875, 93046, 'ninety-three thousand forty-six'); INSERT INTO t1 VALUES(876, 59820, 'fifty-nine thousand eight hundred twenty'); INSERT INTO t1 VALUES(877, 95523, 'ninety-five thousand five hundred twenty-three'); INSERT INTO t1 VALUES(878, 87558, 'eighty-seven thousand five hundred fifty-eight'); INSERT INTO t1 VALUES(879, 16264, 'sixteen thousand two hundred sixty-four'); INSERT INTO t1 VALUES(880, 82456, 'eighty-two thousand four hundred fifty-six'); INSERT INTO t1 VALUES(881, 32313, 'thirty-two thousand three hundred thirteen'); INSERT INTO t1 VALUES(882, 43641, 'forty-three thousand six hundred forty-one'); INSERT INTO t1 VALUES(883, 79366, 'seventy-nine thousand three hundred sixty-six'); INSERT INTO t1 VALUES(884, 414, 'four hundred fourteen'); INSERT INTO t1 VALUES(885, 24604, 'twenty-four thousand six hundred four'); INSERT INTO t1 VALUES(886, 58904, 'fifty-eight thousand nine hundred four'); INSERT INTO t1 VALUES(887, 55867, 'fifty-five thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(888, 38123, 'thirty-eight thousand one hundred twenty-three'); INSERT INTO t1 VALUES(889, 69259, 'sixty-nine thousand two hundred fifty-nine'); INSERT INTO t1 VALUES(890, 16693, 'sixteen thousand six hundred ninety-three'); INSERT INTO t1 VALUES(891, 41404, 'forty-one thousand four hundred four'); INSERT INTO t1 VALUES(892, 51409, 'fifty-one thousand four hundred nine'); INSERT INTO t1 VALUES(893, 48734, 'forty-eight thousand seven hundred thirty-four'); INSERT INTO t1 VALUES(894, 14495, 'fourteen thousand four hundred ninety-five'); INSERT INTO t1 VALUES(895, 40190, 'forty thousand one hundred ninety'); INSERT INTO t1 VALUES(896, 28596, 'twenty-eight thousand five hundred ninety-six'); INSERT INTO t1 VALUES(897, 75923, 'seventy-five thousand nine hundred twenty-three'); INSERT INTO t1 VALUES(898, 40860, 'forty thousand eight hundred sixty'); INSERT INTO t1 VALUES(899, 88234, 'eighty-eight thousand two hundred thirty-four'); INSERT INTO t1 VALUES(900, 9134, 'nine thousand one hundred thirty-four'); INSERT INTO t1 VALUES(901, 68814, 'sixty-eight thousand eight hundred fourteen'); INSERT INTO t1 VALUES(902, 57773, 'fifty-seven thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(903, 7138, 'seven thousand one hundred thirty-eight'); INSERT INTO t1 VALUES(904, 98866, 'ninety-eight thousand eight hundred sixty-six'); INSERT INTO t1 VALUES(905, 1995, 'one thousand nine hundred ninety-five'); INSERT INTO t1 VALUES(906, 45812, 'forty-five thousand eight hundred twelve'); INSERT INTO t1 VALUES(907, 89770, 'eighty-nine thousand seven hundred seventy'); INSERT INTO t1 VALUES(908, 67915, 'sixty-seven thousand nine hundred fifteen'); INSERT INTO t1 VALUES(909, 84256, 'eighty-four thousand two hundred fifty-six'); INSERT INTO t1 VALUES(910, 76864, 'seventy-six thousand eight hundred sixty-four'); INSERT INTO t1 VALUES(911, 63411, 'sixty-three thousand four hundred eleven'); INSERT INTO t1 VALUES(912, 23383, 'twenty-three thousand three hundred eighty-three'); INSERT INTO t1 VALUES(913, 7053, 'seven thousand fifty-three'); INSERT INTO t1 VALUES(914, 9991, 'nine thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(915, 6123, 'six thousand one hundred twenty-three'); INSERT INTO t1 VALUES(916, 66232, 'sixty-six thousand two hundred thirty-two'); INSERT INTO t1 VALUES(917, 82454, 'eighty-two thousand four hundred fifty-four'); INSERT INTO t1 VALUES(918, 34767, 'thirty-four thousand seven hundred sixty-seven'); INSERT INTO t1 VALUES(919, 56716, 'fifty-six thousand seven hundred sixteen'); INSERT INTO t1 VALUES(920, 7389, 'seven thousand three hundred eighty-nine'); INSERT INTO t1 VALUES(921, 4115, 'four thousand one hundred fifteen'); INSERT INTO t1 VALUES(922, 66506, 'sixty-six thousand five hundred six'); INSERT INTO t1 VALUES(923, 13775, 'thirteen thousand seven hundred seventy-five'); INSERT INTO t1 VALUES(924, 95452, 'ninety-five thousand four hundred fifty-two'); INSERT INTO t1 VALUES(925, 34817, 'thirty-four thousand eight hundred seventeen'); INSERT INTO t1 VALUES(926, 30686, 'thirty thousand six hundred eighty-six'); INSERT INTO t1 VALUES(927, 84709, 'eighty-four thousand seven hundred nine'); INSERT INTO t1 VALUES(928, 69884, 'sixty-nine thousand eight hundred eighty-four'); INSERT INTO t1 VALUES(929, 71066, 'seventy-one thousand sixty-six'); INSERT INTO t1 VALUES(930, 33781, 'thirty-three thousand seven hundred eighty-one'); INSERT INTO t1 VALUES(931, 4034, 'four thousand thirty-four'); INSERT INTO t1 VALUES(932, 95633, 'ninety-five thousand six hundred thirty-three'); INSERT INTO t1 VALUES(933, 62549, 'sixty-two thousand five hundred forty-nine'); INSERT INTO t1 VALUES(934, 68079, 'sixty-eight thousand seventy-nine'); INSERT INTO t1 VALUES(935, 65589, 'sixty-five thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(936, 80329, 'eighty thousand three hundred twenty-nine'); INSERT INTO t1 VALUES(937, 20603, 'twenty thousand six hundred three'); INSERT INTO t1 VALUES(938, 27765, 'twenty-seven thousand seven hundred sixty-five'); INSERT INTO t1 VALUES(939, 96323, 'ninety-six thousand three hundred twenty-three'); INSERT INTO t1 VALUES(940, 31742, 'thirty-one thousand seven hundred forty-two'); INSERT INTO t1 VALUES(941, 90777, 'ninety thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(942, 57423, 'fifty-seven thousand four hundred twenty-three'); INSERT INTO t1 VALUES(943, 10588, 'ten thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(944, 47411, 'forty-seven thousand four hundred eleven'); INSERT INTO t1 VALUES(945, 42419, 'forty-two thousand four hundred nineteen'); INSERT INTO t1 VALUES(946, 57111, 'fifty-seven thousand one hundred eleven'); INSERT INTO t1 VALUES(947, 27962, 'twenty-seven thousand nine hundred sixty-two'); INSERT INTO t1 VALUES(948, 78437, 'seventy-eight thousand four hundred thirty-seven'); INSERT INTO t1 VALUES(949, 40388, 'forty thousand three hundred eighty-eight'); INSERT INTO t1 VALUES(950, 90827, 'ninety thousand eight hundred twenty-seven'); INSERT INTO t1 VALUES(951, 82664, 'eighty-two thousand six hundred sixty-four'); INSERT INTO t1 VALUES(952, 54684, 'fifty-four thousand six hundred eighty-four'); INSERT INTO t1 VALUES(953, 67228, 'sixty-seven thousand two hundred twenty-eight'); INSERT INTO t1 VALUES(954, 1266, 'one thousand two hundred sixty-six'); INSERT INTO t1 VALUES(955, 1305, 'one thousand three hundred five'); INSERT INTO t1 VALUES(956, 61947, 'sixty-one thousand nine hundred forty-seven'); INSERT INTO t1 VALUES(957, 69565, 'sixty-nine thousand five hundred sixty-five'); INSERT INTO t1 VALUES(958, 81703, 'eighty-one thousand seven hundred three'); INSERT INTO t1 VALUES(959, 8201, 'eight thousand two hundred one'); INSERT INTO t1 VALUES(960, 13521, 'thirteen thousand five hundred twenty-one'); INSERT INTO t1 VALUES(961, 10637, 'ten thousand six hundred thirty-seven'); INSERT INTO t1 VALUES(962, 84495, 'eighty-four thousand four hundred ninety-five'); INSERT INTO t1 VALUES(963, 72043, 'seventy-two thousand forty-three'); INSERT INTO t1 VALUES(964, 10124, 'ten thousand one hundred twenty-four'); INSERT INTO t1 VALUES(965, 9875, 'nine thousand eight hundred seventy-five'); INSERT INTO t1 VALUES(966, 49117, 'forty-nine thousand one hundred seventeen'); INSERT INTO t1 VALUES(967, 59177, 'fifty-nine thousand one hundred seventy-seven'); INSERT INTO t1 VALUES(968, 53854, 'fifty-three thousand eight hundred fifty-four'); INSERT INTO t1 VALUES(969, 38398, 'thirty-eight thousand three hundred ninety-eight'); INSERT INTO t1 VALUES(970, 32550, 'thirty-two thousand five hundred fifty'); INSERT INTO t1 VALUES(971, 79118, 'seventy-nine thousand one hundred eighteen'); INSERT INTO t1 VALUES(972, 76090, 'seventy-six thousand ninety'); INSERT INTO t1 VALUES(973, 75142, 'seventy-five thousand one hundred forty-two'); INSERT INTO t1 VALUES(974, 43773, 'forty-three thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(975, 66901, 'sixty-six thousand nine hundred one'); INSERT INTO t1 VALUES(976, 94257, 'ninety-four thousand two hundred fifty-seven'); INSERT INTO t1 VALUES(977, 39347, 'thirty-nine thousand three hundred forty-seven'); INSERT INTO t1 VALUES(978, 77594, 'seventy-seven thousand five hundred ninety-four'); INSERT INTO t1 VALUES(979, 33525, 'thirty-three thousand five hundred twenty-five'); INSERT INTO t1 VALUES(980, 79212, 'seventy-nine thousand two hundred twelve'); INSERT INTO t1 VALUES(981, 1805, 'one thousand eight hundred five'); INSERT INTO t1 VALUES(982, 14938, 'fourteen thousand nine hundred thirty-eight'); INSERT INTO t1 VALUES(983, 57138, 'fifty-seven thousand one hundred thirty-eight'); INSERT INTO t1 VALUES(984, 34579, 'thirty-four thousand five hundred seventy-nine'); INSERT INTO t1 VALUES(985, 17027, 'seventeen thousand twenty-seven'); INSERT INTO t1 VALUES(986, 22915, 'twenty-two thousand nine hundred fifteen'); INSERT INTO t1 VALUES(987, 97214, 'ninety-seven thousand two hundred fourteen'); INSERT INTO t1 VALUES(988, 10395, 'ten thousand three hundred ninety-five'); INSERT INTO t1 VALUES(989, 98923, 'ninety-eight thousand nine hundred twenty-three'); INSERT INTO t1 VALUES(990, 7613, 'seven thousand six hundred thirteen'); INSERT INTO t1 VALUES(991, 99863, 'ninety-nine thousand eight hundred sixty-three'); INSERT INTO t1 VALUES(992, 51952, 'fifty-one thousand nine hundred fifty-two'); INSERT INTO t1 VALUES(993, 4740, 'four thousand seven hundred forty'); INSERT INTO t1 VALUES(994, 67441, 'sixty-seven thousand four hundred forty-one'); INSERT INTO t1 VALUES(995, 90701, 'ninety thousand seven hundred one'); INSERT INTO t1 VALUES(996, 44195, 'forty-four thousand one hundred ninety-five'); INSERT INTO t1 VALUES(997, 84299, 'eighty-four thousand two hundred ninety-nine'); INSERT INTO t1 VALUES(998, 53113, 'fifty-three thousand one hundred thirteen'); INSERT INTO t1 VALUES(999, 89010, 'eighty-nine thousand ten'); INSERT INTO t1 VALUES(1000, 93931, 'ninety-three thousand nine hundred thirty-one'); INSERT INTO t1 VALUES(1001, 75968, 'seventy-five thousand nine hundred sixty-eight'); INSERT INTO t1 VALUES(1002, 5182, 'five thousand one hundred eighty-two'); INSERT INTO t1 VALUES(1003, 3994, 'three thousand nine hundred ninety-four'); INSERT INTO t1 VALUES(1004, 65305, 'sixty-five thousand three hundred five'); INSERT INTO t1 VALUES(1005, 10401, 'ten thousand four hundred one'); INSERT INTO t1 VALUES(1006, 60562, 'sixty thousand five hundred sixty-two'); INSERT INTO t1 VALUES(1007, 64022, 'sixty-four thousand twenty-two'); INSERT INTO t1 VALUES(1008, 75893, 'seventy-five thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(1009, 60988, 'sixty thousand nine hundred eighty-eight'); INSERT INTO t1 VALUES(1010, 31092, 'thirty-one thousand ninety-two'); INSERT INTO t1 VALUES(1011, 80331, 'eighty thousand three hundred thirty-one'); INSERT INTO t1 VALUES(1012, 42566, 'forty-two thousand five hundred sixty-six'); INSERT INTO t1 VALUES(1013, 90884, 'ninety thousand eight hundred eighty-four'); INSERT INTO t1 VALUES(1014, 82790, 'eighty-two thousand seven hundred ninety'); INSERT INTO t1 VALUES(1015, 5621, 'five thousand six hundred twenty-one'); INSERT INTO t1 VALUES(1016, 57010, 'fifty-seven thousand ten'); INSERT INTO t1 VALUES(1017, 28824, 'twenty-eight thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(1018, 87748, 'eighty-seven thousand seven hundred forty-eight'); INSERT INTO t1 VALUES(1019, 87131, 'eighty-seven thousand one hundred thirty-one'); INSERT INTO t1 VALUES(1020, 3287, 'three thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(1021, 62892, 'sixty-two thousand eight hundred ninety-two'); INSERT INTO t1 VALUES(1022, 29267, 'twenty-nine thousand two hundred sixty-seven'); INSERT INTO t1 VALUES(1023, 15422, 'fifteen thousand four hundred twenty-two'); INSERT INTO t1 VALUES(1024, 22232, 'twenty-two thousand two hundred thirty-two'); INSERT INTO t1 VALUES(1025, 96723, 'ninety-six thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(1026, 17235, 'seventeen thousand two hundred thirty-five'); INSERT INTO t1 VALUES(1027, 12560, 'twelve thousand five hundred sixty'); INSERT INTO t1 VALUES(1028, 21851, 'twenty-one thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(1029, 41401, 'forty-one thousand four hundred one'); INSERT INTO t1 VALUES(1030, 67863, 'sixty-seven thousand eight hundred sixty-three'); INSERT INTO t1 VALUES(1031, 41683, 'forty-one thousand six hundred eighty-three'); INSERT INTO t1 VALUES(1032, 28988, 'twenty-eight thousand nine hundred eighty-eight'); INSERT INTO t1 VALUES(1033, 89966, 'eighty-nine thousand nine hundred sixty-six'); INSERT INTO t1 VALUES(1034, 83669, 'eighty-three thousand six hundred sixty-nine'); INSERT INTO t1 VALUES(1035, 70889, 'seventy thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(1036, 58793, 'fifty-eight thousand seven hundred ninety-three'); INSERT INTO t1 VALUES(1037, 63210, 'sixty-three thousand two hundred ten'); INSERT INTO t1 VALUES(1038, 77126, 'seventy-seven thousand one hundred twenty-six'); INSERT INTO t1 VALUES(1039, 91350, 'ninety-one thousand three hundred fifty'); INSERT INTO t1 VALUES(1040, 28055, 'twenty-eight thousand fifty-five'); INSERT INTO t1 VALUES(1041, 76934, 'seventy-six thousand nine hundred thirty-four'); INSERT INTO t1 VALUES(1042, 38451, 'thirty-eight thousand four hundred fifty-one'); INSERT INTO t1 VALUES(1043, 83721, 'eighty-three thousand seven hundred twenty-one'); INSERT INTO t1 VALUES(1044, 25962, 'twenty-five thousand nine hundred sixty-two'); INSERT INTO t1 VALUES(1045, 12028, 'twelve thousand twenty-eight'); INSERT INTO t1 VALUES(1046, 23245, 'twenty-three thousand two hundred forty-five'); INSERT INTO t1 VALUES(1047, 95866, 'ninety-five thousand eight hundred sixty-six'); INSERT INTO t1 VALUES(1048, 87645, 'eighty-seven thousand six hundred forty-five'); INSERT INTO t1 VALUES(1049, 64286, 'sixty-four thousand two hundred eighty-six'); INSERT INTO t1 VALUES(1050, 73068, 'seventy-three thousand sixty-eight'); INSERT INTO t1 VALUES(1051, 55171, 'fifty-five thousand one hundred seventy-one'); INSERT INTO t1 VALUES(1052, 62047, 'sixty-two thousand forty-seven'); INSERT INTO t1 VALUES(1053, 51973, 'fifty-one thousand nine hundred seventy-three'); INSERT INTO t1 VALUES(1054, 76047, 'seventy-six thousand forty-seven'); INSERT INTO t1 VALUES(1055, 65795, 'sixty-five thousand seven hundred ninety-five'); INSERT INTO t1 VALUES(1056, 56032, 'fifty-six thousand thirty-two'); INSERT INTO t1 VALUES(1057, 18604, 'eighteen thousand six hundred four'); INSERT INTO t1 VALUES(1058, 10981, 'ten thousand nine hundred eighty-one'); INSERT INTO t1 VALUES(1059, 83747, 'eighty-three thousand seven hundred forty-seven'); INSERT INTO t1 VALUES(1060, 346, 'three hundred forty-six'); INSERT INTO t1 VALUES(1061, 50469, 'fifty thousand four hundred sixty-nine'); INSERT INTO t1 VALUES(1062, 99539, 'ninety-nine thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(1063, 18327, 'eighteen thousand three hundred twenty-seven'); INSERT INTO t1 VALUES(1064, 349, 'three hundred forty-nine'); INSERT INTO t1 VALUES(1065, 83768, 'eighty-three thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(1066, 66974, 'sixty-six thousand nine hundred seventy-four'); INSERT INTO t1 VALUES(1067, 38925, 'thirty-eight thousand nine hundred twenty-five'); INSERT INTO t1 VALUES(1068, 98314, 'ninety-eight thousand three hundred fourteen'); INSERT INTO t1 VALUES(1069, 34266, 'thirty-four thousand two hundred sixty-six'); INSERT INTO t1 VALUES(1070, 35612, 'thirty-five thousand six hundred twelve'); INSERT INTO t1 VALUES(1071, 73180, 'seventy-three thousand one hundred eighty'); INSERT INTO t1 VALUES(1072, 41930, 'forty-one thousand nine hundred thirty'); INSERT INTO t1 VALUES(1073, 98465, 'ninety-eight thousand four hundred sixty-five'); INSERT INTO t1 VALUES(1074, 72506, 'seventy-two thousand five hundred six'); INSERT INTO t1 VALUES(1075, 42168, 'forty-two thousand one hundred sixty-eight'); INSERT INTO t1 VALUES(1076, 75024, 'seventy-five thousand twenty-four'); INSERT INTO t1 VALUES(1077, 50490, 'fifty thousand four hundred ninety'); INSERT INTO t1 VALUES(1078, 23332, 'twenty-three thousand three hundred thirty-two'); INSERT INTO t1 VALUES(1079, 11046, 'eleven thousand forty-six'); INSERT INTO t1 VALUES(1080, 95391, 'ninety-five thousand three hundred ninety-one'); INSERT INTO t1 VALUES(1081, 75055, 'seventy-five thousand fifty-five'); INSERT INTO t1 VALUES(1082, 39666, 'thirty-nine thousand six hundred sixty-six'); INSERT INTO t1 VALUES(1083, 48828, 'forty-eight thousand eight hundred twenty-eight'); INSERT INTO t1 VALUES(1084, 77965, 'seventy-seven thousand nine hundred sixty-five'); INSERT INTO t1 VALUES(1085, 21286, 'twenty-one thousand two hundred eighty-six'); INSERT INTO t1 VALUES(1086, 92539, 'ninety-two thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(1087, 64635, 'sixty-four thousand six hundred thirty-five'); INSERT INTO t1 VALUES(1088, 47441, 'forty-seven thousand four hundred forty-one'); INSERT INTO t1 VALUES(1089, 64320, 'sixty-four thousand three hundred twenty'); INSERT INTO t1 VALUES(1090, 18676, 'eighteen thousand six hundred seventy-six'); INSERT INTO t1 VALUES(1091, 64990, 'sixty-four thousand nine hundred ninety'); INSERT INTO t1 VALUES(1092, 289, 'two hundred eighty-nine'); INSERT INTO t1 VALUES(1093, 54512, 'fifty-four thousand five hundred twelve'); INSERT INTO t1 VALUES(1094, 63137, 'sixty-three thousand one hundred thirty-seven'); INSERT INTO t1 VALUES(1095, 78129, 'seventy-eight thousand one hundred twenty-nine'); INSERT INTO t1 VALUES(1096, 27982, 'twenty-seven thousand nine hundred eighty-two'); INSERT INTO t1 VALUES(1097, 12938, 'twelve thousand nine hundred thirty-eight'); INSERT INTO t1 VALUES(1098, 9803, 'nine thousand eight hundred three'); INSERT INTO t1 VALUES(1099, 68481, 'sixty-eight thousand four hundred eighty-one'); INSERT INTO t1 VALUES(1100, 67614, 'sixty-seven thousand six hundred fourteen'); INSERT INTO t1 VALUES(1101, 34307, 'thirty-four thousand three hundred seven'); INSERT INTO t1 VALUES(1102, 64936, 'sixty-four thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(1103, 82314, 'eighty-two thousand three hundred fourteen'); INSERT INTO t1 VALUES(1104, 98999, 'ninety-eight thousand nine hundred ninety-nine'); INSERT INTO t1 VALUES(1105, 64637, 'sixty-four thousand six hundred thirty-seven'); INSERT INTO t1 VALUES(1106, 70711, 'seventy thousand seven hundred eleven'); INSERT INTO t1 VALUES(1107, 86613, 'eighty-six thousand six hundred thirteen'); INSERT INTO t1 VALUES(1108, 30688, 'thirty thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(1109, 21158, 'twenty-one thousand one hundred fifty-eight'); INSERT INTO t1 VALUES(1110, 16295, 'sixteen thousand two hundred ninety-five'); INSERT INTO t1 VALUES(1111, 79161, 'seventy-nine thousand one hundred sixty-one'); INSERT INTO t1 VALUES(1112, 30757, 'thirty thousand seven hundred fifty-seven'); INSERT INTO t1 VALUES(1113, 53063, 'fifty-three thousand sixty-three'); INSERT INTO t1 VALUES(1114, 78104, 'seventy-eight thousand one hundred four'); INSERT INTO t1 VALUES(1115, 47919, 'forty-seven thousand nine hundred nineteen'); INSERT INTO t1 VALUES(1116, 17366, 'seventeen thousand three hundred sixty-six'); INSERT INTO t1 VALUES(1117, 32565, 'thirty-two thousand five hundred sixty-five'); INSERT INTO t1 VALUES(1118, 67647, 'sixty-seven thousand six hundred forty-seven'); INSERT INTO t1 VALUES(1119, 85455, 'eighty-five thousand four hundred fifty-five'); INSERT INTO t1 VALUES(1120, 54565, 'fifty-four thousand five hundred sixty-five'); INSERT INTO t1 VALUES(1121, 45993, 'forty-five thousand nine hundred ninety-three'); INSERT INTO t1 VALUES(1122, 71129, 'seventy-one thousand one hundred twenty-nine'); INSERT INTO t1 VALUES(1123, 52005, 'fifty-two thousand five'); INSERT INTO t1 VALUES(1124, 56636, 'fifty-six thousand six hundred thirty-six'); INSERT INTO t1 VALUES(1125, 14262, 'fourteen thousand two hundred sixty-two'); INSERT INTO t1 VALUES(1126, 63328, 'sixty-three thousand three hundred twenty-eight'); INSERT INTO t1 VALUES(1127, 39842, 'thirty-nine thousand eight hundred forty-two'); INSERT INTO t1 VALUES(1128, 30389, 'thirty thousand three hundred eighty-nine'); INSERT INTO t1 VALUES(1129, 41368, 'forty-one thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(1130, 76613, 'seventy-six thousand six hundred thirteen'); INSERT INTO t1 VALUES(1131, 16393, 'sixteen thousand three hundred ninety-three'); INSERT INTO t1 VALUES(1132, 87529, 'eighty-seven thousand five hundred twenty-nine'); INSERT INTO t1 VALUES(1133, 727, 'seven hundred twenty-seven'); INSERT INTO t1 VALUES(1134, 2055, 'two thousand fifty-five'); INSERT INTO t1 VALUES(1135, 14036, 'fourteen thousand thirty-six'); INSERT INTO t1 VALUES(1136, 69027, 'sixty-nine thousand twenty-seven'); INSERT INTO t1 VALUES(1137, 82423, 'eighty-two thousand four hundred twenty-three'); INSERT INTO t1 VALUES(1138, 25443, 'twenty-five thousand four hundred forty-three'); INSERT INTO t1 VALUES(1139, 90311, 'ninety thousand three hundred eleven'); INSERT INTO t1 VALUES(1140, 25146, 'twenty-five thousand one hundred forty-six'); INSERT INTO t1 VALUES(1141, 33067, 'thirty-three thousand sixty-seven'); INSERT INTO t1 VALUES(1142, 51121, 'fifty-one thousand one hundred twenty-one'); INSERT INTO t1 VALUES(1143, 63335, 'sixty-three thousand three hundred thirty-five'); INSERT INTO t1 VALUES(1144, 17321, 'seventeen thousand three hundred twenty-one'); INSERT INTO t1 VALUES(1145, 54956, 'fifty-four thousand nine hundred fifty-six'); INSERT INTO t1 VALUES(1146, 7730, 'seven thousand seven hundred thirty'); INSERT INTO t1 VALUES(1147, 85084, 'eighty-five thousand eighty-four'); INSERT INTO t1 VALUES(1148, 86686, 'eighty-six thousand six hundred eighty-six'); INSERT INTO t1 VALUES(1149, 38280, 'thirty-eight thousand two hundred eighty'); INSERT INTO t1 VALUES(1150, 56373, 'fifty-six thousand three hundred seventy-three'); INSERT INTO t1 VALUES(1151, 40082, 'forty thousand eighty-two'); INSERT INTO t1 VALUES(1152, 6940, 'six thousand nine hundred forty'); INSERT INTO t1 VALUES(1153, 223, 'two hundred twenty-three'); INSERT INTO t1 VALUES(1154, 21513, 'twenty-one thousand five hundred thirteen'); INSERT INTO t1 VALUES(1155, 15087, 'fifteen thousand eighty-seven'); INSERT INTO t1 VALUES(1156, 8921, 'eight thousand nine hundred twenty-one'); INSERT INTO t1 VALUES(1157, 46702, 'forty-six thousand seven hundred two'); INSERT INTO t1 VALUES(1158, 48921, 'forty-eight thousand nine hundred twenty-one'); INSERT INTO t1 VALUES(1159, 41111, 'forty-one thousand one hundred eleven'); INSERT INTO t1 VALUES(1160, 74326, 'seventy-four thousand three hundred twenty-six'); INSERT INTO t1 VALUES(1161, 93401, 'ninety-three thousand four hundred one'); INSERT INTO t1 VALUES(1162, 17272, 'seventeen thousand two hundred seventy-two'); INSERT INTO t1 VALUES(1163, 19175, 'nineteen thousand one hundred seventy-five'); INSERT INTO t1 VALUES(1164, 54120, 'fifty-four thousand one hundred twenty'); INSERT INTO t1 VALUES(1165, 57677, 'fifty-seven thousand six hundred seventy-seven'); INSERT INTO t1 VALUES(1166, 68915, 'sixty-eight thousand nine hundred fifteen'); INSERT INTO t1 VALUES(1167, 67434, 'sixty-seven thousand four hundred thirty-four'); INSERT INTO t1 VALUES(1168, 33753, 'thirty-three thousand seven hundred fifty-three'); INSERT INTO t1 VALUES(1169, 35123, 'thirty-five thousand one hundred twenty-three'); INSERT INTO t1 VALUES(1170, 5643, 'five thousand six hundred forty-three'); INSERT INTO t1 VALUES(1171, 27402, 'twenty-seven thousand four hundred two'); INSERT INTO t1 VALUES(1172, 84802, 'eighty-four thousand eight hundred two'); INSERT INTO t1 VALUES(1173, 38809, 'thirty-eight thousand eight hundred nine'); INSERT INTO t1 VALUES(1174, 20172, 'twenty thousand one hundred seventy-two'); INSERT INTO t1 VALUES(1175, 39854, 'thirty-nine thousand eight hundred fifty-four'); INSERT INTO t1 VALUES(1176, 44163, 'forty-four thousand one hundred sixty-three'); INSERT INTO t1 VALUES(1177, 53204, 'fifty-three thousand two hundred four'); INSERT INTO t1 VALUES(1178, 76636, 'seventy-six thousand six hundred thirty-six'); INSERT INTO t1 VALUES(1179, 27192, 'twenty-seven thousand one hundred ninety-two'); INSERT INTO t1 VALUES(1180, 27381, 'twenty-seven thousand three hundred eighty-one'); INSERT INTO t1 VALUES(1181, 10210, 'ten thousand two hundred ten'); INSERT INTO t1 VALUES(1182, 25796, 'twenty-five thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(1183, 87185, 'eighty-seven thousand one hundred eighty-five'); INSERT INTO t1 VALUES(1184, 36170, 'thirty-six thousand one hundred seventy'); INSERT INTO t1 VALUES(1185, 41295, 'forty-one thousand two hundred ninety-five'); INSERT INTO t1 VALUES(1186, 32682, 'thirty-two thousand six hundred eighty-two'); INSERT INTO t1 VALUES(1187, 25693, 'twenty-five thousand six hundred ninety-three'); INSERT INTO t1 VALUES(1188, 37767, 'thirty-seven thousand seven hundred sixty-seven'); INSERT INTO t1 VALUES(1189, 55266, 'fifty-five thousand two hundred sixty-six'); INSERT INTO t1 VALUES(1190, 24371, 'twenty-four thousand three hundred seventy-one'); INSERT INTO t1 VALUES(1191, 53697, 'fifty-three thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(1192, 78967, 'seventy-eight thousand nine hundred sixty-seven'); INSERT INTO t1 VALUES(1193, 58686, 'fifty-eight thousand six hundred eighty-six'); INSERT INTO t1 VALUES(1194, 18073, 'eighteen thousand seventy-three'); INSERT INTO t1 VALUES(1195, 89438, 'eighty-nine thousand four hundred thirty-eight'); INSERT INTO t1 VALUES(1196, 92679, 'ninety-two thousand six hundred seventy-nine'); INSERT INTO t1 VALUES(1197, 80583, 'eighty thousand five hundred eighty-three'); INSERT INTO t1 VALUES(1198, 80414, 'eighty thousand four hundred fourteen'); INSERT INTO t1 VALUES(1199, 74413, 'seventy-four thousand four hundred thirteen'); INSERT INTO t1 VALUES(1200, 20122, 'twenty thousand one hundred twenty-two'); INSERT INTO t1 VALUES(1201, 90855, 'ninety thousand eight hundred fifty-five'); INSERT INTO t1 VALUES(1202, 63311, 'sixty-three thousand three hundred eleven'); INSERT INTO t1 VALUES(1203, 81256, 'eighty-one thousand two hundred fifty-six'); INSERT INTO t1 VALUES(1204, 19169, 'nineteen thousand one hundred sixty-nine'); INSERT INTO t1 VALUES(1205, 84675, 'eighty-four thousand six hundred seventy-five'); INSERT INTO t1 VALUES(1206, 58373, 'fifty-eight thousand three hundred seventy-three'); INSERT INTO t1 VALUES(1207, 98068, 'ninety-eight thousand sixty-eight'); INSERT INTO t1 VALUES(1208, 76448, 'seventy-six thousand four hundred forty-eight'); INSERT INTO t1 VALUES(1209, 32473, 'thirty-two thousand four hundred seventy-three'); INSERT INTO t1 VALUES(1210, 36681, 'thirty-six thousand six hundred eighty-one'); INSERT INTO t1 VALUES(1211, 26755, 'twenty-six thousand seven hundred fifty-five'); INSERT INTO t1 VALUES(1212, 82448, 'eighty-two thousand four hundred forty-eight'); INSERT INTO t1 VALUES(1213, 76199, 'seventy-six thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(1214, 7197, 'seven thousand one hundred ninety-seven'); INSERT INTO t1 VALUES(1215, 81504, 'eighty-one thousand five hundred four'); INSERT INTO t1 VALUES(1216, 46182, 'forty-six thousand one hundred eighty-two'); INSERT INTO t1 VALUES(1217, 15628, 'fifteen thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(1218, 34195, 'thirty-four thousand one hundred ninety-five'); INSERT INTO t1 VALUES(1219, 5076, 'five thousand seventy-six'); INSERT INTO t1 VALUES(1220, 57253, 'fifty-seven thousand two hundred fifty-three'); INSERT INTO t1 VALUES(1221, 59468, 'fifty-nine thousand four hundred sixty-eight'); INSERT INTO t1 VALUES(1222, 78458, 'seventy-eight thousand four hundred fifty-eight'); INSERT INTO t1 VALUES(1223, 73497, 'seventy-three thousand four hundred ninety-seven'); INSERT INTO t1 VALUES(1224, 54924, 'fifty-four thousand nine hundred twenty-four'); INSERT INTO t1 VALUES(1225, 74790, 'seventy-four thousand seven hundred ninety'); INSERT INTO t1 VALUES(1226, 63128, 'sixty-three thousand one hundred twenty-eight'); INSERT INTO t1 VALUES(1227, 28389, 'twenty-eight thousand three hundred eighty-nine'); INSERT INTO t1 VALUES(1228, 27746, 'twenty-seven thousand seven hundred forty-six'); INSERT INTO t1 VALUES(1229, 28365, 'twenty-eight thousand three hundred sixty-five'); INSERT INTO t1 VALUES(1230, 44899, 'forty-four thousand eight hundred ninety-nine'); INSERT INTO t1 VALUES(1231, 61726, 'sixty-one thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(1232, 37850, 'thirty-seven thousand eight hundred fifty'); INSERT INTO t1 VALUES(1233, 56293, 'fifty-six thousand two hundred ninety-three'); INSERT INTO t1 VALUES(1234, 33646, 'thirty-three thousand six hundred forty-six'); INSERT INTO t1 VALUES(1235, 98212, 'ninety-eight thousand two hundred twelve'); INSERT INTO t1 VALUES(1236, 60961, 'sixty thousand nine hundred sixty-one'); INSERT INTO t1 VALUES(1237, 62851, 'sixty-two thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(1238, 96187, 'ninety-six thousand one hundred eighty-seven'); INSERT INTO t1 VALUES(1239, 65862, 'sixty-five thousand eight hundred sixty-two'); INSERT INTO t1 VALUES(1240, 28055, 'twenty-eight thousand fifty-five'); INSERT INTO t1 VALUES(1241, 23400, 'twenty-three thousand four hundred'); INSERT INTO t1 VALUES(1242, 55366, 'fifty-five thousand three hundred sixty-six'); INSERT INTO t1 VALUES(1243, 88651, 'eighty-eight thousand six hundred fifty-one'); INSERT INTO t1 VALUES(1244, 32724, 'thirty-two thousand seven hundred twenty-four'); INSERT INTO t1 VALUES(1245, 905, 'nine hundred five'); INSERT INTO t1 VALUES(1246, 21749, 'twenty-one thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(1247, 79024, 'seventy-nine thousand twenty-four'); INSERT INTO t1 VALUES(1248, 33250, 'thirty-three thousand two hundred fifty'); INSERT INTO t1 VALUES(1249, 71822, 'seventy-one thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(1250, 32012, 'thirty-two thousand twelve'); INSERT INTO t1 VALUES(1251, 43030, 'forty-three thousand thirty'); INSERT INTO t1 VALUES(1252, 84637, 'eighty-four thousand six hundred thirty-seven'); INSERT INTO t1 VALUES(1253, 48203, 'forty-eight thousand two hundred three'); INSERT INTO t1 VALUES(1254, 80495, 'eighty thousand four hundred ninety-five'); INSERT INTO t1 VALUES(1255, 45881, 'forty-five thousand eight hundred eighty-one'); INSERT INTO t1 VALUES(1256, 23387, 'twenty-three thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(1257, 63538, 'sixty-three thousand five hundred thirty-eight'); INSERT INTO t1 VALUES(1258, 14902, 'fourteen thousand nine hundred two'); INSERT INTO t1 VALUES(1259, 71635, 'seventy-one thousand six hundred thirty-five'); INSERT INTO t1 VALUES(1260, 47196, 'forty-seven thousand one hundred ninety-six'); INSERT INTO t1 VALUES(1261, 31675, 'thirty-one thousand six hundred seventy-five'); INSERT INTO t1 VALUES(1262, 45972, 'forty-five thousand nine hundred seventy-two'); INSERT INTO t1 VALUES(1263, 43248, 'forty-three thousand two hundred forty-eight'); INSERT INTO t1 VALUES(1264, 68219, 'sixty-eight thousand two hundred nineteen'); INSERT INTO t1 VALUES(1265, 98494, 'ninety-eight thousand four hundred ninety-four'); INSERT INTO t1 VALUES(1266, 2760, 'two thousand seven hundred sixty'); INSERT INTO t1 VALUES(1267, 43973, 'forty-three thousand nine hundred seventy-three'); INSERT INTO t1 VALUES(1268, 63102, 'sixty-three thousand one hundred two'); INSERT INTO t1 VALUES(1269, 14851, 'fourteen thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(1270, 32167, 'thirty-two thousand one hundred sixty-seven'); INSERT INTO t1 VALUES(1271, 62848, 'sixty-two thousand eight hundred forty-eight'); INSERT INTO t1 VALUES(1272, 40008, 'forty thousand eight'); INSERT INTO t1 VALUES(1273, 99325, 'ninety-nine thousand three hundred twenty-five'); INSERT INTO t1 VALUES(1274, 38094, 'thirty-eight thousand ninety-four'); INSERT INTO t1 VALUES(1275, 59735, 'fifty-nine thousand seven hundred thirty-five'); INSERT INTO t1 VALUES(1276, 52340, 'fifty-two thousand three hundred forty'); INSERT INTO t1 VALUES(1277, 32041, 'thirty-two thousand forty-one'); INSERT INTO t1 VALUES(1278, 44215, 'forty-four thousand two hundred fifteen'); INSERT INTO t1 VALUES(1279, 95811, 'ninety-five thousand eight hundred eleven'); INSERT INTO t1 VALUES(1280, 17929, 'seventeen thousand nine hundred twenty-nine'); INSERT INTO t1 VALUES(1281, 87600, 'eighty-seven thousand six hundred'); INSERT INTO t1 VALUES(1282, 36214, 'thirty-six thousand two hundred fourteen'); INSERT INTO t1 VALUES(1283, 22282, 'twenty-two thousand two hundred eighty-two'); INSERT INTO t1 VALUES(1284, 18276, 'eighteen thousand two hundred seventy-six'); INSERT INTO t1 VALUES(1285, 2567, 'two thousand five hundred sixty-seven'); INSERT INTO t1 VALUES(1286, 62066, 'sixty-two thousand sixty-six'); INSERT INTO t1 VALUES(1287, 82273, 'eighty-two thousand two hundred seventy-three'); INSERT INTO t1 VALUES(1288, 13998, 'thirteen thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(1289, 31280, 'thirty-one thousand two hundred eighty'); INSERT INTO t1 VALUES(1290, 8891, 'eight thousand eight hundred ninety-one'); INSERT INTO t1 VALUES(1291, 56928, 'fifty-six thousand nine hundred twenty-eight'); INSERT INTO t1 VALUES(1292, 97091, 'ninety-seven thousand ninety-one'); INSERT INTO t1 VALUES(1293, 66935, 'sixty-six thousand nine hundred thirty-five'); INSERT INTO t1 VALUES(1294, 178, 'one hundred seventy-eight'); INSERT INTO t1 VALUES(1295, 9743, 'nine thousand seven hundred forty-three'); INSERT INTO t1 VALUES(1296, 16903, 'sixteen thousand nine hundred three'); INSERT INTO t1 VALUES(1297, 83847, 'eighty-three thousand eight hundred forty-seven'); INSERT INTO t1 VALUES(1298, 95790, 'ninety-five thousand seven hundred ninety'); INSERT INTO t1 VALUES(1299, 91305, 'ninety-one thousand three hundred five'); INSERT INTO t1 VALUES(1300, 24392, 'twenty-four thousand three hundred ninety-two'); INSERT INTO t1 VALUES(1301, 33704, 'thirty-three thousand seven hundred four'); INSERT INTO t1 VALUES(1302, 39323, 'thirty-nine thousand three hundred twenty-three'); INSERT INTO t1 VALUES(1303, 74734, 'seventy-four thousand seven hundred thirty-four'); INSERT INTO t1 VALUES(1304, 76309, 'seventy-six thousand three hundred nine'); INSERT INTO t1 VALUES(1305, 45284, 'forty-five thousand two hundred eighty-four'); INSERT INTO t1 VALUES(1306, 24844, 'twenty-four thousand eight hundred forty-four'); INSERT INTO t1 VALUES(1307, 94274, 'ninety-four thousand two hundred seventy-four'); INSERT INTO t1 VALUES(1308, 19953, 'nineteen thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(1309, 61085, 'sixty-one thousand eighty-five'); INSERT INTO t1 VALUES(1310, 76202, 'seventy-six thousand two hundred two'); INSERT INTO t1 VALUES(1311, 40759, 'forty thousand seven hundred fifty-nine'); INSERT INTO t1 VALUES(1312, 77565, 'seventy-seven thousand five hundred sixty-five'); INSERT INTO t1 VALUES(1313, 75589, 'seventy-five thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(1314, 86242, 'eighty-six thousand two hundred forty-two'); INSERT INTO t1 VALUES(1315, 60704, 'sixty thousand seven hundred four'); INSERT INTO t1 VALUES(1316, 27604, 'twenty-seven thousand six hundred four'); INSERT INTO t1 VALUES(1317, 86116, 'eighty-six thousand one hundred sixteen'); INSERT INTO t1 VALUES(1318, 45427, 'forty-five thousand four hundred twenty-seven'); INSERT INTO t1 VALUES(1319, 40465, 'forty thousand four hundred sixty-five'); INSERT INTO t1 VALUES(1320, 64749, 'sixty-four thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(1321, 95094, 'ninety-five thousand ninety-four'); INSERT INTO t1 VALUES(1322, 51852, 'fifty-one thousand eight hundred fifty-two'); INSERT INTO t1 VALUES(1323, 61326, 'sixty-one thousand three hundred twenty-six'); INSERT INTO t1 VALUES(1324, 69336, 'sixty-nine thousand three hundred thirty-six'); INSERT INTO t1 VALUES(1325, 20531, 'twenty thousand five hundred thirty-one'); INSERT INTO t1 VALUES(1326, 78258, 'seventy-eight thousand two hundred fifty-eight'); INSERT INTO t1 VALUES(1327, 40848, 'forty thousand eight hundred forty-eight'); INSERT INTO t1 VALUES(1328, 97949, 'ninety-seven thousand nine hundred forty-nine'); INSERT INTO t1 VALUES(1329, 40361, 'forty thousand three hundred sixty-one'); INSERT INTO t1 VALUES(1330, 17811, 'seventeen thousand eight hundred eleven'); INSERT INTO t1 VALUES(1331, 55027, 'fifty-five thousand twenty-seven'); INSERT INTO t1 VALUES(1332, 81760, 'eighty-one thousand seven hundred sixty'); INSERT INTO t1 VALUES(1333, 5234, 'five thousand two hundred thirty-four'); INSERT INTO t1 VALUES(1334, 35011, 'thirty-five thousand eleven'); INSERT INTO t1 VALUES(1335, 78742, 'seventy-eight thousand seven hundred forty-two'); INSERT INTO t1 VALUES(1336, 42629, 'forty-two thousand six hundred twenty-nine'); INSERT INTO t1 VALUES(1337, 89161, 'eighty-nine thousand one hundred sixty-one'); INSERT INTO t1 VALUES(1338, 62137, 'sixty-two thousand one hundred thirty-seven'); INSERT INTO t1 VALUES(1339, 56304, 'fifty-six thousand three hundred four'); INSERT INTO t1 VALUES(1340, 67110, 'sixty-seven thousand one hundred ten'); INSERT INTO t1 VALUES(1341, 54915, 'fifty-four thousand nine hundred fifteen'); INSERT INTO t1 VALUES(1342, 91158, 'ninety-one thousand one hundred fifty-eight'); INSERT INTO t1 VALUES(1343, 23487, 'twenty-three thousand four hundred eighty-seven'); INSERT INTO t1 VALUES(1344, 29746, 'twenty-nine thousand seven hundred forty-six'); INSERT INTO t1 VALUES(1345, 97876, 'ninety-seven thousand eight hundred seventy-six'); INSERT INTO t1 VALUES(1346, 45139, 'forty-five thousand one hundred thirty-nine'); INSERT INTO t1 VALUES(1347, 14608, 'fourteen thousand six hundred eight'); INSERT INTO t1 VALUES(1348, 81022, 'eighty-one thousand twenty-two'); INSERT INTO t1 VALUES(1349, 74749, 'seventy-four thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(1350, 60195, 'sixty thousand one hundred ninety-five'); INSERT INTO t1 VALUES(1351, 8196, 'eight thousand one hundred ninety-six'); INSERT INTO t1 VALUES(1352, 36154, 'thirty-six thousand one hundred fifty-four'); INSERT INTO t1 VALUES(1353, 96873, 'ninety-six thousand eight hundred seventy-three'); INSERT INTO t1 VALUES(1354, 1081, 'one thousand eighty-one'); INSERT INTO t1 VALUES(1355, 5271, 'five thousand two hundred seventy-one'); INSERT INTO t1 VALUES(1356, 85257, 'eighty-five thousand two hundred fifty-seven'); INSERT INTO t1 VALUES(1357, 88774, 'eighty-eight thousand seven hundred seventy-four'); INSERT INTO t1 VALUES(1358, 89559, 'eighty-nine thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(1359, 90614, 'ninety thousand six hundred fourteen'); INSERT INTO t1 VALUES(1360, 4820, 'four thousand eight hundred twenty'); INSERT INTO t1 VALUES(1361, 88051, 'eighty-eight thousand fifty-one'); INSERT INTO t1 VALUES(1362, 36491, 'thirty-six thousand four hundred ninety-one'); INSERT INTO t1 VALUES(1363, 40990, 'forty thousand nine hundred ninety'); INSERT INTO t1 VALUES(1364, 85648, 'eighty-five thousand six hundred forty-eight'); INSERT INTO t1 VALUES(1365, 1656, 'one thousand six hundred fifty-six'); INSERT INTO t1 VALUES(1366, 47140, 'forty-seven thousand one hundred forty'); INSERT INTO t1 VALUES(1367, 6461, 'six thousand four hundred sixty-one'); INSERT INTO t1 VALUES(1368, 45435, 'forty-five thousand four hundred thirty-five'); INSERT INTO t1 VALUES(1369, 61893, 'sixty-one thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(1370, 342, 'three hundred forty-two'); INSERT INTO t1 VALUES(1371, 41797, 'forty-one thousand seven hundred ninety-seven'); INSERT INTO t1 VALUES(1372, 65684, 'sixty-five thousand six hundred eighty-four'); INSERT INTO t1 VALUES(1373, 60988, 'sixty thousand nine hundred eighty-eight'); INSERT INTO t1 VALUES(1374, 83437, 'eighty-three thousand four hundred thirty-seven'); INSERT INTO t1 VALUES(1375, 17605, 'seventeen thousand six hundred five'); INSERT INTO t1 VALUES(1376, 95590, 'ninety-five thousand five hundred ninety'); INSERT INTO t1 VALUES(1377, 97023, 'ninety-seven thousand twenty-three'); INSERT INTO t1 VALUES(1378, 21381, 'twenty-one thousand three hundred eighty-one'); INSERT INTO t1 VALUES(1379, 28901, 'twenty-eight thousand nine hundred one'); INSERT INTO t1 VALUES(1380, 82225, 'eighty-two thousand two hundred twenty-five'); INSERT INTO t1 VALUES(1381, 16878, 'sixteen thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(1382, 82227, 'eighty-two thousand two hundred twenty-seven'); INSERT INTO t1 VALUES(1383, 75157, 'seventy-five thousand one hundred fifty-seven'); INSERT INTO t1 VALUES(1384, 4927, 'four thousand nine hundred twenty-seven'); INSERT INTO t1 VALUES(1385, 28969, 'twenty-eight thousand nine hundred sixty-nine'); INSERT INTO t1 VALUES(1386, 14412, 'fourteen thousand four hundred twelve'); INSERT INTO t1 VALUES(1387, 56796, 'fifty-six thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(1388, 48661, 'forty-eight thousand six hundred sixty-one'); INSERT INTO t1 VALUES(1389, 73412, 'seventy-three thousand four hundred twelve'); INSERT INTO t1 VALUES(1390, 31185, 'thirty-one thousand one hundred eighty-five'); INSERT INTO t1 VALUES(1391, 29057, 'twenty-nine thousand fifty-seven'); INSERT INTO t1 VALUES(1392, 10009, 'ten thousand nine'); INSERT INTO t1 VALUES(1393, 48977, 'forty-eight thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(1394, 97505, 'ninety-seven thousand five hundred five'); INSERT INTO t1 VALUES(1395, 9751, 'nine thousand seven hundred fifty-one'); INSERT INTO t1 VALUES(1396, 49959, 'forty-nine thousand nine hundred fifty-nine'); INSERT INTO t1 VALUES(1397, 95747, 'ninety-five thousand seven hundred forty-seven'); INSERT INTO t1 VALUES(1398, 93785, 'ninety-three thousand seven hundred eighty-five'); INSERT INTO t1 VALUES(1399, 7378, 'seven thousand three hundred seventy-eight'); INSERT INTO t1 VALUES(1400, 95521, 'ninety-five thousand five hundred twenty-one'); INSERT INTO t1 VALUES(1401, 70573, 'seventy thousand five hundred seventy-three'); INSERT INTO t1 VALUES(1402, 80074, 'eighty thousand seventy-four'); INSERT INTO t1 VALUES(1403, 27728, 'twenty-seven thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(1404, 55773, 'fifty-five thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(1405, 15262, 'fifteen thousand two hundred sixty-two'); INSERT INTO t1 VALUES(1406, 82088, 'eighty-two thousand eighty-eight'); INSERT INTO t1 VALUES(1407, 37928, 'thirty-seven thousand nine hundred twenty-eight'); INSERT INTO t1 VALUES(1408, 59951, 'fifty-nine thousand nine hundred fifty-one'); INSERT INTO t1 VALUES(1409, 99327, 'ninety-nine thousand three hundred twenty-seven'); INSERT INTO t1 VALUES(1410, 79202, 'seventy-nine thousand two hundred two'); INSERT INTO t1 VALUES(1411, 11067, 'eleven thousand sixty-seven'); INSERT INTO t1 VALUES(1412, 97937, 'ninety-seven thousand nine hundred thirty-seven'); INSERT INTO t1 VALUES(1413, 54568, 'fifty-four thousand five hundred sixty-eight'); INSERT INTO t1 VALUES(1414, 58684, 'fifty-eight thousand six hundred eighty-four'); INSERT INTO t1 VALUES(1415, 41266, 'forty-one thousand two hundred sixty-six'); INSERT INTO t1 VALUES(1416, 75078, 'seventy-five thousand seventy-eight'); INSERT INTO t1 VALUES(1417, 27706, 'twenty-seven thousand seven hundred six'); INSERT INTO t1 VALUES(1418, 39628, 'thirty-nine thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(1419, 76178, 'seventy-six thousand one hundred seventy-eight'); INSERT INTO t1 VALUES(1420, 16385, 'sixteen thousand three hundred eighty-five'); INSERT INTO t1 VALUES(1421, 78470, 'seventy-eight thousand four hundred seventy'); INSERT INTO t1 VALUES(1422, 38499, 'thirty-eight thousand four hundred ninety-nine'); INSERT INTO t1 VALUES(1423, 63833, 'sixty-three thousand eight hundred thirty-three'); INSERT INTO t1 VALUES(1424, 61168, 'sixty-one thousand one hundred sixty-eight'); INSERT INTO t1 VALUES(1425, 98593, 'ninety-eight thousand five hundred ninety-three'); INSERT INTO t1 VALUES(1426, 53160, 'fifty-three thousand one hundred sixty'); INSERT INTO t1 VALUES(1427, 91503, 'ninety-one thousand five hundred three'); INSERT INTO t1 VALUES(1428, 55010, 'fifty-five thousand ten'); INSERT INTO t1 VALUES(1429, 97440, 'ninety-seven thousand four hundred forty'); INSERT INTO t1 VALUES(1430, 42636, 'forty-two thousand six hundred thirty-six'); INSERT INTO t1 VALUES(1431, 45348, 'forty-five thousand three hundred forty-eight'); INSERT INTO t1 VALUES(1432, 32381, 'thirty-two thousand three hundred eighty-one'); INSERT INTO t1 VALUES(1433, 38140, 'thirty-eight thousand one hundred forty'); INSERT INTO t1 VALUES(1434, 50617, 'fifty thousand six hundred seventeen'); INSERT INTO t1 VALUES(1435, 81603, 'eighty-one thousand six hundred three'); INSERT INTO t1 VALUES(1436, 68985, 'sixty-eight thousand nine hundred eighty-five'); INSERT INTO t1 VALUES(1437, 38963, 'thirty-eight thousand nine hundred sixty-three'); INSERT INTO t1 VALUES(1438, 65324, 'sixty-five thousand three hundred twenty-four'); INSERT INTO t1 VALUES(1439, 94702, 'ninety-four thousand seven hundred two'); INSERT INTO t1 VALUES(1440, 34503, 'thirty-four thousand five hundred three'); INSERT INTO t1 VALUES(1441, 87332, 'eighty-seven thousand three hundred thirty-two'); INSERT INTO t1 VALUES(1442, 59926, 'fifty-nine thousand nine hundred twenty-six'); INSERT INTO t1 VALUES(1443, 25393, 'twenty-five thousand three hundred ninety-three'); INSERT INTO t1 VALUES(1444, 4805, 'four thousand eight hundred five'); INSERT INTO t1 VALUES(1445, 70875, 'seventy thousand eight hundred seventy-five'); INSERT INTO t1 VALUES(1446, 23786, 'twenty-three thousand seven hundred eighty-six'); INSERT INTO t1 VALUES(1447, 18319, 'eighteen thousand three hundred nineteen'); INSERT INTO t1 VALUES(1448, 12002, 'twelve thousand two'); INSERT INTO t1 VALUES(1449, 62715, 'sixty-two thousand seven hundred fifteen'); INSERT INTO t1 VALUES(1450, 72966, 'seventy-two thousand nine hundred sixty-six'); INSERT INTO t1 VALUES(1451, 72896, 'seventy-two thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(1452, 69840, 'sixty-nine thousand eight hundred forty'); INSERT INTO t1 VALUES(1453, 6858, 'six thousand eight hundred fifty-eight'); INSERT INTO t1 VALUES(1454, 83415, 'eighty-three thousand four hundred fifteen'); INSERT INTO t1 VALUES(1455, 5825, 'five thousand eight hundred twenty-five'); INSERT INTO t1 VALUES(1456, 46957, 'forty-six thousand nine hundred fifty-seven'); INSERT INTO t1 VALUES(1457, 9940, 'nine thousand nine hundred forty'); INSERT INTO t1 VALUES(1458, 4625, 'four thousand six hundred twenty-five'); INSERT INTO t1 VALUES(1459, 9148, 'nine thousand one hundred forty-eight'); INSERT INTO t1 VALUES(1460, 6165, 'six thousand one hundred sixty-five'); INSERT INTO t1 VALUES(1461, 73595, 'seventy-three thousand five hundred ninety-five'); INSERT INTO t1 VALUES(1462, 98558, 'ninety-eight thousand five hundred fifty-eight'); INSERT INTO t1 VALUES(1463, 52901, 'fifty-two thousand nine hundred one'); INSERT INTO t1 VALUES(1464, 9851, 'nine thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(1465, 39171, 'thirty-nine thousand one hundred seventy-one'); INSERT INTO t1 VALUES(1466, 34398, 'thirty-four thousand three hundred ninety-eight'); INSERT INTO t1 VALUES(1467, 14163, 'fourteen thousand one hundred sixty-three'); INSERT INTO t1 VALUES(1468, 19701, 'nineteen thousand seven hundred one'); INSERT INTO t1 VALUES(1469, 36281, 'thirty-six thousand two hundred eighty-one'); INSERT INTO t1 VALUES(1470, 37750, 'thirty-seven thousand seven hundred fifty'); INSERT INTO t1 VALUES(1471, 21601, 'twenty-one thousand six hundred one'); INSERT INTO t1 VALUES(1472, 10590, 'ten thousand five hundred ninety'); INSERT INTO t1 VALUES(1473, 5320, 'five thousand three hundred twenty'); INSERT INTO t1 VALUES(1474, 59452, 'fifty-nine thousand four hundred fifty-two'); INSERT INTO t1 VALUES(1475, 10728, 'ten thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(1476, 51689, 'fifty-one thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(1477, 70680, 'seventy thousand six hundred eighty'); INSERT INTO t1 VALUES(1478, 11635, 'eleven thousand six hundred thirty-five'); INSERT INTO t1 VALUES(1479, 68663, 'sixty-eight thousand six hundred sixty-three'); INSERT INTO t1 VALUES(1480, 42737, 'forty-two thousand seven hundred thirty-seven'); INSERT INTO t1 VALUES(1481, 37339, 'thirty-seven thousand three hundred thirty-nine'); INSERT INTO t1 VALUES(1482, 73285, 'seventy-three thousand two hundred eighty-five'); INSERT INTO t1 VALUES(1483, 55449, 'fifty-five thousand four hundred forty-nine'); INSERT INTO t1 VALUES(1484, 74455, 'seventy-four thousand four hundred fifty-five'); INSERT INTO t1 VALUES(1485, 70586, 'seventy thousand five hundred eighty-six'); INSERT INTO t1 VALUES(1486, 25810, 'twenty-five thousand eight hundred ten'); INSERT INTO t1 VALUES(1487, 77751, 'seventy-seven thousand seven hundred fifty-one'); INSERT INTO t1 VALUES(1488, 49211, 'forty-nine thousand two hundred eleven'); INSERT INTO t1 VALUES(1489, 90234, 'ninety thousand two hundred thirty-four'); INSERT INTO t1 VALUES(1490, 77175, 'seventy-seven thousand one hundred seventy-five'); INSERT INTO t1 VALUES(1491, 86168, 'eighty-six thousand one hundred sixty-eight'); INSERT INTO t1 VALUES(1492, 74535, 'seventy-four thousand five hundred thirty-five'); INSERT INTO t1 VALUES(1493, 81700, 'eighty-one thousand seven hundred'); INSERT INTO t1 VALUES(1494, 84430, 'eighty-four thousand four hundred thirty'); INSERT INTO t1 VALUES(1495, 48657, 'forty-eight thousand six hundred fifty-seven'); INSERT INTO t1 VALUES(1496, 21472, 'twenty-one thousand four hundred seventy-two'); INSERT INTO t1 VALUES(1497, 35453, 'thirty-five thousand four hundred fifty-three'); INSERT INTO t1 VALUES(1498, 59208, 'fifty-nine thousand two hundred eight'); INSERT INTO t1 VALUES(1499, 31814, 'thirty-one thousand eight hundred fourteen'); INSERT INTO t1 VALUES(1500, 57975, 'fifty-seven thousand nine hundred seventy-five'); INSERT INTO t1 VALUES(1501, 61591, 'sixty-one thousand five hundred ninety-one'); INSERT INTO t1 VALUES(1502, 42695, 'forty-two thousand six hundred ninety-five'); INSERT INTO t1 VALUES(1503, 10375, 'ten thousand three hundred seventy-five'); INSERT INTO t1 VALUES(1504, 40087, 'forty thousand eighty-seven'); INSERT INTO t1 VALUES(1505, 37360, 'thirty-seven thousand three hundred sixty'); INSERT INTO t1 VALUES(1506, 68368, 'sixty-eight thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(1507, 13340, 'thirteen thousand three hundred forty'); INSERT INTO t1 VALUES(1508, 59285, 'fifty-nine thousand two hundred eighty-five'); INSERT INTO t1 VALUES(1509, 26311, 'twenty-six thousand three hundred eleven'); INSERT INTO t1 VALUES(1510, 28651, 'twenty-eight thousand six hundred fifty-one'); INSERT INTO t1 VALUES(1511, 82723, 'eighty-two thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(1512, 69236, 'sixty-nine thousand two hundred thirty-six'); INSERT INTO t1 VALUES(1513, 57600, 'fifty-seven thousand six hundred'); INSERT INTO t1 VALUES(1514, 43613, 'forty-three thousand six hundred thirteen'); INSERT INTO t1 VALUES(1515, 26671, 'twenty-six thousand six hundred seventy-one'); INSERT INTO t1 VALUES(1516, 48854, 'forty-eight thousand eight hundred fifty-four'); INSERT INTO t1 VALUES(1517, 85630, 'eighty-five thousand six hundred thirty'); INSERT INTO t1 VALUES(1518, 86864, 'eighty-six thousand eight hundred sixty-four'); INSERT INTO t1 VALUES(1519, 44087, 'forty-four thousand eighty-seven'); INSERT INTO t1 VALUES(1520, 40044, 'forty thousand forty-four'); INSERT INTO t1 VALUES(1521, 48950, 'forty-eight thousand nine hundred fifty'); INSERT INTO t1 VALUES(1522, 12355, 'twelve thousand three hundred fifty-five'); INSERT INTO t1 VALUES(1523, 82602, 'eighty-two thousand six hundred two'); INSERT INTO t1 VALUES(1524, 93060, 'ninety-three thousand sixty'); INSERT INTO t1 VALUES(1525, 56443, 'fifty-six thousand four hundred forty-three'); INSERT INTO t1 VALUES(1526, 69581, 'sixty-nine thousand five hundred eighty-one'); INSERT INTO t1 VALUES(1527, 71625, 'seventy-one thousand six hundred twenty-five'); INSERT INTO t1 VALUES(1528, 92068, 'ninety-two thousand sixty-eight'); INSERT INTO t1 VALUES(1529, 75395, 'seventy-five thousand three hundred ninety-five'); INSERT INTO t1 VALUES(1530, 7940, 'seven thousand nine hundred forty'); INSERT INTO t1 VALUES(1531, 29719, 'twenty-nine thousand seven hundred nineteen'); INSERT INTO t1 VALUES(1532, 35805, 'thirty-five thousand eight hundred five'); INSERT INTO t1 VALUES(1533, 68117, 'sixty-eight thousand one hundred seventeen'); INSERT INTO t1 VALUES(1534, 57168, 'fifty-seven thousand one hundred sixty-eight'); INSERT INTO t1 VALUES(1535, 98358, 'ninety-eight thousand three hundred fifty-eight'); INSERT INTO t1 VALUES(1536, 71532, 'seventy-one thousand five hundred thirty-two'); INSERT INTO t1 VALUES(1537, 48309, 'forty-eight thousand three hundred nine'); INSERT INTO t1 VALUES(1538, 74722, 'seventy-four thousand seven hundred twenty-two'); INSERT INTO t1 VALUES(1539, 17839, 'seventeen thousand eight hundred thirty-nine'); INSERT INTO t1 VALUES(1540, 12787, 'twelve thousand seven hundred eighty-seven'); INSERT INTO t1 VALUES(1541, 90045, 'ninety thousand forty-five'); INSERT INTO t1 VALUES(1542, 9178, 'nine thousand one hundred seventy-eight'); INSERT INTO t1 VALUES(1543, 9391, 'nine thousand three hundred ninety-one'); INSERT INTO t1 VALUES(1544, 58506, 'fifty-eight thousand five hundred six'); INSERT INTO t1 VALUES(1545, 86190, 'eighty-six thousand one hundred ninety'); INSERT INTO t1 VALUES(1546, 28223, 'twenty-eight thousand two hundred twenty-three'); INSERT INTO t1 VALUES(1547, 9528, 'nine thousand five hundred twenty-eight'); INSERT INTO t1 VALUES(1548, 54651, 'fifty-four thousand six hundred fifty-one'); INSERT INTO t1 VALUES(1549, 10794, 'ten thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(1550, 72428, 'seventy-two thousand four hundred twenty-eight'); INSERT INTO t1 VALUES(1551, 55768, 'fifty-five thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(1552, 96914, 'ninety-six thousand nine hundred fourteen'); INSERT INTO t1 VALUES(1553, 16735, 'sixteen thousand seven hundred thirty-five'); INSERT INTO t1 VALUES(1554, 431, 'four hundred thirty-one'); INSERT INTO t1 VALUES(1555, 90512, 'ninety thousand five hundred twelve'); INSERT INTO t1 VALUES(1556, 29474, 'twenty-nine thousand four hundred seventy-four'); INSERT INTO t1 VALUES(1557, 93569, 'ninety-three thousand five hundred sixty-nine'); INSERT INTO t1 VALUES(1558, 32842, 'thirty-two thousand eight hundred forty-two'); INSERT INTO t1 VALUES(1559, 21793, 'twenty-one thousand seven hundred ninety-three'); INSERT INTO t1 VALUES(1560, 8455, 'eight thousand four hundred fifty-five'); INSERT INTO t1 VALUES(1561, 34655, 'thirty-four thousand six hundred fifty-five'); INSERT INTO t1 VALUES(1562, 14744, 'fourteen thousand seven hundred forty-four'); INSERT INTO t1 VALUES(1563, 46026, 'forty-six thousand twenty-six'); INSERT INTO t1 VALUES(1564, 83991, 'eighty-three thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(1565, 43905, 'forty-three thousand nine hundred five'); INSERT INTO t1 VALUES(1566, 65850, 'sixty-five thousand eight hundred fifty'); INSERT INTO t1 VALUES(1567, 61725, 'sixty-one thousand seven hundred twenty-five'); INSERT INTO t1 VALUES(1568, 7893, 'seven thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(1569, 32559, 'thirty-two thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(1570, 73248, 'seventy-three thousand two hundred forty-eight'); INSERT INTO t1 VALUES(1571, 33498, 'thirty-three thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(1572, 62169, 'sixty-two thousand one hundred sixty-nine'); INSERT INTO t1 VALUES(1573, 10144, 'ten thousand one hundred forty-four'); INSERT INTO t1 VALUES(1574, 57479, 'fifty-seven thousand four hundred seventy-nine'); INSERT INTO t1 VALUES(1575, 30830, 'thirty thousand eight hundred thirty'); INSERT INTO t1 VALUES(1576, 4473, 'four thousand four hundred seventy-three'); INSERT INTO t1 VALUES(1577, 40152, 'forty thousand one hundred fifty-two'); INSERT INTO t1 VALUES(1578, 91680, 'ninety-one thousand six hundred eighty'); INSERT INTO t1 VALUES(1579, 80625, 'eighty thousand six hundred twenty-five'); INSERT INTO t1 VALUES(1580, 48508, 'forty-eight thousand five hundred eight'); INSERT INTO t1 VALUES(1581, 84645, 'eighty-four thousand six hundred forty-five'); INSERT INTO t1 VALUES(1582, 38114, 'thirty-eight thousand one hundred fourteen'); INSERT INTO t1 VALUES(1583, 5121, 'five thousand one hundred twenty-one'); INSERT INTO t1 VALUES(1584, 72895, 'seventy-two thousand eight hundred ninety-five'); INSERT INTO t1 VALUES(1585, 58555, 'fifty-eight thousand five hundred fifty-five'); INSERT INTO t1 VALUES(1586, 16845, 'sixteen thousand eight hundred forty-five'); INSERT INTO t1 VALUES(1587, 48136, 'forty-eight thousand one hundred thirty-six'); INSERT INTO t1 VALUES(1588, 66489, 'sixty-six thousand four hundred eighty-nine'); INSERT INTO t1 VALUES(1589, 91182, 'ninety-one thousand one hundred eighty-two'); INSERT INTO t1 VALUES(1590, 50703, 'fifty thousand seven hundred three'); INSERT INTO t1 VALUES(1591, 39088, 'thirty-nine thousand eighty-eight'); INSERT INTO t1 VALUES(1592, 47003, 'forty-seven thousand three'); INSERT INTO t1 VALUES(1593, 1739, 'one thousand seven hundred thirty-nine'); INSERT INTO t1 VALUES(1594, 48712, 'forty-eight thousand seven hundred twelve'); INSERT INTO t1 VALUES(1595, 17030, 'seventeen thousand thirty'); INSERT INTO t1 VALUES(1596, 22062, 'twenty-two thousand sixty-two'); INSERT INTO t1 VALUES(1597, 1578, 'one thousand five hundred seventy-eight'); INSERT INTO t1 VALUES(1598, 65199, 'sixty-five thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(1599, 95174, 'ninety-five thousand one hundred seventy-four'); INSERT INTO t1 VALUES(1600, 78596, 'seventy-eight thousand five hundred ninety-six'); INSERT INTO t1 VALUES(1601, 13062, 'thirteen thousand sixty-two'); INSERT INTO t1 VALUES(1602, 26386, 'twenty-six thousand three hundred eighty-six'); INSERT INTO t1 VALUES(1603, 94073, 'ninety-four thousand seventy-three'); INSERT INTO t1 VALUES(1604, 81970, 'eighty-one thousand nine hundred seventy'); INSERT INTO t1 VALUES(1605, 34749, 'thirty-four thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(1606, 19997, 'nineteen thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(1607, 98468, 'ninety-eight thousand four hundred sixty-eight'); INSERT INTO t1 VALUES(1608, 90078, 'ninety thousand seventy-eight'); INSERT INTO t1 VALUES(1609, 60321, 'sixty thousand three hundred twenty-one'); INSERT INTO t1 VALUES(1610, 64275, 'sixty-four thousand two hundred seventy-five'); INSERT INTO t1 VALUES(1611, 34209, 'thirty-four thousand two hundred nine'); INSERT INTO t1 VALUES(1612, 82059, 'eighty-two thousand fifty-nine'); INSERT INTO t1 VALUES(1613, 31226, 'thirty-one thousand two hundred twenty-six'); INSERT INTO t1 VALUES(1614, 31328, 'thirty-one thousand three hundred twenty-eight'); INSERT INTO t1 VALUES(1615, 37746, 'thirty-seven thousand seven hundred forty-six'); INSERT INTO t1 VALUES(1616, 46557, 'forty-six thousand five hundred fifty-seven'); INSERT INTO t1 VALUES(1617, 63517, 'sixty-three thousand five hundred seventeen'); INSERT INTO t1 VALUES(1618, 26815, 'twenty-six thousand eight hundred fifteen'); INSERT INTO t1 VALUES(1619, 78096, 'seventy-eight thousand ninety-six'); INSERT INTO t1 VALUES(1620, 86941, 'eighty-six thousand nine hundred forty-one'); INSERT INTO t1 VALUES(1621, 42608, 'forty-two thousand six hundred eight'); INSERT INTO t1 VALUES(1622, 3767, 'three thousand seven hundred sixty-seven'); INSERT INTO t1 VALUES(1623, 45485, 'forty-five thousand four hundred eighty-five'); INSERT INTO t1 VALUES(1624, 62042, 'sixty-two thousand forty-two'); INSERT INTO t1 VALUES(1625, 43107, 'forty-three thousand one hundred seven'); INSERT INTO t1 VALUES(1626, 21740, 'twenty-one thousand seven hundred forty'); INSERT INTO t1 VALUES(1627, 34872, 'thirty-four thousand eight hundred seventy-two'); INSERT INTO t1 VALUES(1628, 40468, 'forty thousand four hundred sixty-eight'); INSERT INTO t1 VALUES(1629, 9300, 'nine thousand three hundred'); INSERT INTO t1 VALUES(1630, 2721, 'two thousand seven hundred twenty-one'); INSERT INTO t1 VALUES(1631, 28527, 'twenty-eight thousand five hundred twenty-seven'); INSERT INTO t1 VALUES(1632, 69303, 'sixty-nine thousand three hundred three'); INSERT INTO t1 VALUES(1633, 46776, 'forty-six thousand seven hundred seventy-six'); INSERT INTO t1 VALUES(1634, 55745, 'fifty-five thousand seven hundred forty-five'); INSERT INTO t1 VALUES(1635, 85356, 'eighty-five thousand three hundred fifty-six'); INSERT INTO t1 VALUES(1636, 46657, 'forty-six thousand six hundred fifty-seven'); INSERT INTO t1 VALUES(1637, 61515, 'sixty-one thousand five hundred fifteen'); INSERT INTO t1 VALUES(1638, 18104, 'eighteen thousand one hundred four'); INSERT INTO t1 VALUES(1639, 28206, 'twenty-eight thousand two hundred six'); INSERT INTO t1 VALUES(1640, 35172, 'thirty-five thousand one hundred seventy-two'); INSERT INTO t1 VALUES(1641, 10098, 'ten thousand ninety-eight'); INSERT INTO t1 VALUES(1642, 6093, 'six thousand ninety-three'); INSERT INTO t1 VALUES(1643, 74079, 'seventy-four thousand seventy-nine'); INSERT INTO t1 VALUES(1644, 36008, 'thirty-six thousand eight'); INSERT INTO t1 VALUES(1645, 88532, 'eighty-eight thousand five hundred thirty-two'); INSERT INTO t1 VALUES(1646, 30095, 'thirty thousand ninety-five'); INSERT INTO t1 VALUES(1647, 85521, 'eighty-five thousand five hundred twenty-one'); INSERT INTO t1 VALUES(1648, 21414, 'twenty-one thousand four hundred fourteen'); INSERT INTO t1 VALUES(1649, 84230, 'eighty-four thousand two hundred thirty'); INSERT INTO t1 VALUES(1650, 70085, 'seventy thousand eighty-five'); INSERT INTO t1 VALUES(1651, 6210, 'six thousand two hundred ten'); INSERT INTO t1 VALUES(1652, 64104, 'sixty-four thousand one hundred four'); INSERT INTO t1 VALUES(1653, 84896, 'eighty-four thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(1654, 65618, 'sixty-five thousand six hundred eighteen'); INSERT INTO t1 VALUES(1655, 15320, 'fifteen thousand three hundred twenty'); INSERT INTO t1 VALUES(1656, 79301, 'seventy-nine thousand three hundred one'); INSERT INTO t1 VALUES(1657, 69641, 'sixty-nine thousand six hundred forty-one'); INSERT INTO t1 VALUES(1658, 65595, 'sixty-five thousand five hundred ninety-five'); INSERT INTO t1 VALUES(1659, 99704, 'ninety-nine thousand seven hundred four'); INSERT INTO t1 VALUES(1660, 94028, 'ninety-four thousand twenty-eight'); INSERT INTO t1 VALUES(1661, 72689, 'seventy-two thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(1662, 29717, 'twenty-nine thousand seven hundred seventeen'); INSERT INTO t1 VALUES(1663, 78386, 'seventy-eight thousand three hundred eighty-six'); INSERT INTO t1 VALUES(1664, 2158, 'two thousand one hundred fifty-eight'); INSERT INTO t1 VALUES(1665, 36050, 'thirty-six thousand fifty'); INSERT INTO t1 VALUES(1666, 27600, 'twenty-seven thousand six hundred'); INSERT INTO t1 VALUES(1667, 11202, 'eleven thousand two hundred two'); INSERT INTO t1 VALUES(1668, 86246, 'eighty-six thousand two hundred forty-six'); INSERT INTO t1 VALUES(1669, 5256, 'five thousand two hundred fifty-six'); INSERT INTO t1 VALUES(1670, 5150, 'five thousand one hundred fifty'); INSERT INTO t1 VALUES(1671, 83778, 'eighty-three thousand seven hundred seventy-eight'); INSERT INTO t1 VALUES(1672, 97804, 'ninety-seven thousand eight hundred four'); INSERT INTO t1 VALUES(1673, 64152, 'sixty-four thousand one hundred fifty-two'); INSERT INTO t1 VALUES(1674, 1627, 'one thousand six hundred twenty-seven'); INSERT INTO t1 VALUES(1675, 81024, 'eighty-one thousand twenty-four'); INSERT INTO t1 VALUES(1676, 67636, 'sixty-seven thousand six hundred thirty-six'); INSERT INTO t1 VALUES(1677, 33212, 'thirty-three thousand two hundred twelve'); INSERT INTO t1 VALUES(1678, 53921, 'fifty-three thousand nine hundred twenty-one'); INSERT INTO t1 VALUES(1679, 94767, 'ninety-four thousand seven hundred sixty-seven'); INSERT INTO t1 VALUES(1680, 5053, 'five thousand fifty-three'); INSERT INTO t1 VALUES(1681, 58089, 'fifty-eight thousand eighty-nine'); INSERT INTO t1 VALUES(1682, 11991, 'eleven thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(1683, 68740, 'sixty-eight thousand seven hundred forty'); INSERT INTO t1 VALUES(1684, 78604, 'seventy-eight thousand six hundred four'); INSERT INTO t1 VALUES(1685, 89361, 'eighty-nine thousand three hundred sixty-one'); INSERT INTO t1 VALUES(1686, 21448, 'twenty-one thousand four hundred forty-eight'); INSERT INTO t1 VALUES(1687, 74483, 'seventy-four thousand four hundred eighty-three'); INSERT INTO t1 VALUES(1688, 89243, 'eighty-nine thousand two hundred forty-three'); INSERT INTO t1 VALUES(1689, 40559, 'forty thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(1690, 6857, 'six thousand eight hundred fifty-seven'); INSERT INTO t1 VALUES(1691, 22570, 'twenty-two thousand five hundred seventy'); INSERT INTO t1 VALUES(1692, 23883, 'twenty-three thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(1693, 72213, 'seventy-two thousand two hundred thirteen'); INSERT INTO t1 VALUES(1694, 89863, 'eighty-nine thousand eight hundred sixty-three'); INSERT INTO t1 VALUES(1695, 18748, 'eighteen thousand seven hundred forty-eight'); INSERT INTO t1 VALUES(1696, 39371, 'thirty-nine thousand three hundred seventy-one'); INSERT INTO t1 VALUES(1697, 9109, 'nine thousand one hundred nine'); INSERT INTO t1 VALUES(1698, 38787, 'thirty-eight thousand seven hundred eighty-seven'); INSERT INTO t1 VALUES(1699, 60954, 'sixty thousand nine hundred fifty-four'); INSERT INTO t1 VALUES(1700, 8161, 'eight thousand one hundred sixty-one'); INSERT INTO t1 VALUES(1701, 47766, 'forty-seven thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(1702, 5225, 'five thousand two hundred twenty-five'); INSERT INTO t1 VALUES(1703, 75772, 'seventy-five thousand seven hundred seventy-two'); INSERT INTO t1 VALUES(1704, 18269, 'eighteen thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(1705, 31498, 'thirty-one thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(1706, 60137, 'sixty thousand one hundred thirty-seven'); INSERT INTO t1 VALUES(1707, 27054, 'twenty-seven thousand fifty-four'); INSERT INTO t1 VALUES(1708, 94474, 'ninety-four thousand four hundred seventy-four'); INSERT INTO t1 VALUES(1709, 39799, 'thirty-nine thousand seven hundred ninety-nine'); INSERT INTO t1 VALUES(1710, 42212, 'forty-two thousand two hundred twelve'); INSERT INTO t1 VALUES(1711, 26403, 'twenty-six thousand four hundred three'); INSERT INTO t1 VALUES(1712, 62233, 'sixty-two thousand two hundred thirty-three'); INSERT INTO t1 VALUES(1713, 35236, 'thirty-five thousand two hundred thirty-six'); INSERT INTO t1 VALUES(1714, 80188, 'eighty thousand one hundred eighty-eight'); INSERT INTO t1 VALUES(1715, 10229, 'ten thousand two hundred twenty-nine'); INSERT INTO t1 VALUES(1716, 62085, 'sixty-two thousand eighty-five'); INSERT INTO t1 VALUES(1717, 44713, 'forty-four thousand seven hundred thirteen'); INSERT INTO t1 VALUES(1718, 41726, 'forty-one thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(1719, 94768, 'ninety-four thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(1720, 5591, 'five thousand five hundred ninety-one'); INSERT INTO t1 VALUES(1721, 14462, 'fourteen thousand four hundred sixty-two'); INSERT INTO t1 VALUES(1722, 8633, 'eight thousand six hundred thirty-three'); INSERT INTO t1 VALUES(1723, 57, 'fifty-seven'); INSERT INTO t1 VALUES(1724, 36452, 'thirty-six thousand four hundred fifty-two'); INSERT INTO t1 VALUES(1725, 89036, 'eighty-nine thousand thirty-six'); INSERT INTO t1 VALUES(1726, 89477, 'eighty-nine thousand four hundred seventy-seven'); INSERT INTO t1 VALUES(1727, 68247, 'sixty-eight thousand two hundred forty-seven'); INSERT INTO t1 VALUES(1728, 89001, 'eighty-nine thousand one'); INSERT INTO t1 VALUES(1729, 54145, 'fifty-four thousand one hundred forty-five'); INSERT INTO t1 VALUES(1730, 77480, 'seventy-seven thousand four hundred eighty'); INSERT INTO t1 VALUES(1731, 50906, 'fifty thousand nine hundred six'); INSERT INTO t1 VALUES(1732, 41648, 'forty-one thousand six hundred forty-eight'); INSERT INTO t1 VALUES(1733, 11316, 'eleven thousand three hundred sixteen'); INSERT INTO t1 VALUES(1734, 61340, 'sixty-one thousand three hundred forty'); INSERT INTO t1 VALUES(1735, 20526, 'twenty thousand five hundred twenty-six'); INSERT INTO t1 VALUES(1736, 91134, 'ninety-one thousand one hundred thirty-four'); INSERT INTO t1 VALUES(1737, 20976, 'twenty thousand nine hundred seventy-six'); INSERT INTO t1 VALUES(1738, 66519, 'sixty-six thousand five hundred nineteen'); INSERT INTO t1 VALUES(1739, 88318, 'eighty-eight thousand three hundred eighteen'); INSERT INTO t1 VALUES(1740, 54108, 'fifty-four thousand one hundred eight'); INSERT INTO t1 VALUES(1741, 54031, 'fifty-four thousand thirty-one'); INSERT INTO t1 VALUES(1742, 77937, 'seventy-seven thousand nine hundred thirty-seven'); INSERT INTO t1 VALUES(1743, 10328, 'ten thousand three hundred twenty-eight'); INSERT INTO t1 VALUES(1744, 80516, 'eighty thousand five hundred sixteen'); INSERT INTO t1 VALUES(1745, 44261, 'forty-four thousand two hundred sixty-one'); INSERT INTO t1 VALUES(1746, 88250, 'eighty-eight thousand two hundred fifty'); INSERT INTO t1 VALUES(1747, 52866, 'fifty-two thousand eight hundred sixty-six'); INSERT INTO t1 VALUES(1748, 25892, 'twenty-five thousand eight hundred ninety-two'); INSERT INTO t1 VALUES(1749, 98953, 'ninety-eight thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(1750, 12415, 'twelve thousand four hundred fifteen'); INSERT INTO t1 VALUES(1751, 36805, 'thirty-six thousand eight hundred five'); INSERT INTO t1 VALUES(1752, 58382, 'fifty-eight thousand three hundred eighty-two'); INSERT INTO t1 VALUES(1753, 84382, 'eighty-four thousand three hundred eighty-two'); INSERT INTO t1 VALUES(1754, 40274, 'forty thousand two hundred seventy-four'); INSERT INTO t1 VALUES(1755, 90010, 'ninety thousand ten'); INSERT INTO t1 VALUES(1756, 10509, 'ten thousand five hundred nine'); INSERT INTO t1 VALUES(1757, 5295, 'five thousand two hundred ninety-five'); INSERT INTO t1 VALUES(1758, 58724, 'fifty-eight thousand seven hundred twenty-four'); INSERT INTO t1 VALUES(1759, 99125, 'ninety-nine thousand one hundred twenty-five'); INSERT INTO t1 VALUES(1760, 78321, 'seventy-eight thousand three hundred twenty-one'); INSERT INTO t1 VALUES(1761, 38452, 'thirty-eight thousand four hundred fifty-two'); INSERT INTO t1 VALUES(1762, 5918, 'five thousand nine hundred eighteen'); INSERT INTO t1 VALUES(1763, 61900, 'sixty-one thousand nine hundred'); INSERT INTO t1 VALUES(1764, 31892, 'thirty-one thousand eight hundred ninety-two'); INSERT INTO t1 VALUES(1765, 73349, 'seventy-three thousand three hundred forty-nine'); INSERT INTO t1 VALUES(1766, 48571, 'forty-eight thousand five hundred seventy-one'); INSERT INTO t1 VALUES(1767, 49212, 'forty-nine thousand two hundred twelve'); INSERT INTO t1 VALUES(1768, 65580, 'sixty-five thousand five hundred eighty'); INSERT INTO t1 VALUES(1769, 39343, 'thirty-nine thousand three hundred forty-three'); INSERT INTO t1 VALUES(1770, 37263, 'thirty-seven thousand two hundred sixty-three'); INSERT INTO t1 VALUES(1771, 33790, 'thirty-three thousand seven hundred ninety'); INSERT INTO t1 VALUES(1772, 23592, 'twenty-three thousand five hundred ninety-two'); INSERT INTO t1 VALUES(1773, 54691, 'fifty-four thousand six hundred ninety-one'); INSERT INTO t1 VALUES(1774, 40873, 'forty thousand eight hundred seventy-three'); INSERT INTO t1 VALUES(1775, 40649, 'forty thousand six hundred forty-nine'); INSERT INTO t1 VALUES(1776, 28114, 'twenty-eight thousand one hundred fourteen'); INSERT INTO t1 VALUES(1777, 5551, 'five thousand five hundred fifty-one'); INSERT INTO t1 VALUES(1778, 96865, 'ninety-six thousand eight hundred sixty-five'); INSERT INTO t1 VALUES(1779, 94893, 'ninety-four thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(1780, 15957, 'fifteen thousand nine hundred fifty-seven'); INSERT INTO t1 VALUES(1781, 32194, 'thirty-two thousand one hundred ninety-four'); INSERT INTO t1 VALUES(1782, 57324, 'fifty-seven thousand three hundred twenty-four'); INSERT INTO t1 VALUES(1783, 73691, 'seventy-three thousand six hundred ninety-one'); INSERT INTO t1 VALUES(1784, 69747, 'sixty-nine thousand seven hundred forty-seven'); INSERT INTO t1 VALUES(1785, 91679, 'ninety-one thousand six hundred seventy-nine'); INSERT INTO t1 VALUES(1786, 12838, 'twelve thousand eight hundred thirty-eight'); INSERT INTO t1 VALUES(1787, 17389, 'seventeen thousand three hundred eighty-nine'); INSERT INTO t1 VALUES(1788, 61883, 'sixty-one thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(1789, 85070, 'eighty-five thousand seventy'); INSERT INTO t1 VALUES(1790, 13363, 'thirteen thousand three hundred sixty-three'); INSERT INTO t1 VALUES(1791, 39398, 'thirty-nine thousand three hundred ninety-eight'); INSERT INTO t1 VALUES(1792, 53565, 'fifty-three thousand five hundred sixty-five'); INSERT INTO t1 VALUES(1793, 69195, 'sixty-nine thousand one hundred ninety-five'); INSERT INTO t1 VALUES(1794, 50823, 'fifty thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(1795, 15412, 'fifteen thousand four hundred twelve'); INSERT INTO t1 VALUES(1796, 93980, 'ninety-three thousand nine hundred eighty'); INSERT INTO t1 VALUES(1797, 30817, 'thirty thousand eight hundred seventeen'); INSERT INTO t1 VALUES(1798, 99528, 'ninety-nine thousand five hundred twenty-eight'); INSERT INTO t1 VALUES(1799, 57790, 'fifty-seven thousand seven hundred ninety'); INSERT INTO t1 VALUES(1800, 40668, 'forty thousand six hundred sixty-eight'); INSERT INTO t1 VALUES(1801, 96517, 'ninety-six thousand five hundred seventeen'); INSERT INTO t1 VALUES(1802, 72152, 'seventy-two thousand one hundred fifty-two'); INSERT INTO t1 VALUES(1803, 17814, 'seventeen thousand eight hundred fourteen'); INSERT INTO t1 VALUES(1804, 6834, 'six thousand eight hundred thirty-four'); INSERT INTO t1 VALUES(1805, 15496, 'fifteen thousand four hundred ninety-six'); INSERT INTO t1 VALUES(1806, 64645, 'sixty-four thousand six hundred forty-five'); INSERT INTO t1 VALUES(1807, 40955, 'forty thousand nine hundred fifty-five'); INSERT INTO t1 VALUES(1808, 29600, 'twenty-nine thousand six hundred'); INSERT INTO t1 VALUES(1809, 93154, 'ninety-three thousand one hundred fifty-four'); INSERT INTO t1 VALUES(1810, 21117, 'twenty-one thousand one hundred seventeen'); INSERT INTO t1 VALUES(1811, 25709, 'twenty-five thousand seven hundred nine'); INSERT INTO t1 VALUES(1812, 8146, 'eight thousand one hundred forty-six'); INSERT INTO t1 VALUES(1813, 63481, 'sixty-three thousand four hundred eighty-one'); INSERT INTO t1 VALUES(1814, 5127, 'five thousand one hundred twenty-seven'); INSERT INTO t1 VALUES(1815, 34339, 'thirty-four thousand three hundred thirty-nine'); INSERT INTO t1 VALUES(1816, 99471, 'ninety-nine thousand four hundred seventy-one'); INSERT INTO t1 VALUES(1817, 25571, 'twenty-five thousand five hundred seventy-one'); INSERT INTO t1 VALUES(1818, 95394, 'ninety-five thousand three hundred ninety-four'); INSERT INTO t1 VALUES(1819, 11895, 'eleven thousand eight hundred ninety-five'); INSERT INTO t1 VALUES(1820, 53310, 'fifty-three thousand three hundred ten'); INSERT INTO t1 VALUES(1821, 15409, 'fifteen thousand four hundred nine'); INSERT INTO t1 VALUES(1822, 13068, 'thirteen thousand sixty-eight'); INSERT INTO t1 VALUES(1823, 60977, 'sixty thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(1824, 85696, 'eighty-five thousand six hundred ninety-six'); INSERT INTO t1 VALUES(1825, 75185, 'seventy-five thousand one hundred eighty-five'); INSERT INTO t1 VALUES(1826, 33008, 'thirty-three thousand eight'); INSERT INTO t1 VALUES(1827, 35765, 'thirty-five thousand seven hundred sixty-five'); INSERT INTO t1 VALUES(1828, 39078, 'thirty-nine thousand seventy-eight'); INSERT INTO t1 VALUES(1829, 75754, 'seventy-five thousand seven hundred fifty-four'); INSERT INTO t1 VALUES(1830, 66605, 'sixty-six thousand six hundred five'); INSERT INTO t1 VALUES(1831, 50018, 'fifty thousand eighteen'); INSERT INTO t1 VALUES(1832, 53, 'fifty-three'); INSERT INTO t1 VALUES(1833, 36222, 'thirty-six thousand two hundred twenty-two'); INSERT INTO t1 VALUES(1834, 23617, 'twenty-three thousand six hundred seventeen'); INSERT INTO t1 VALUES(1835, 65346, 'sixty-five thousand three hundred forty-six'); INSERT INTO t1 VALUES(1836, 89373, 'eighty-nine thousand three hundred seventy-three'); INSERT INTO t1 VALUES(1837, 82247, 'eighty-two thousand two hundred forty-seven'); INSERT INTO t1 VALUES(1838, 56783, 'fifty-six thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(1839, 31699, 'thirty-one thousand six hundred ninety-nine'); INSERT INTO t1 VALUES(1840, 90500, 'ninety thousand five hundred'); INSERT INTO t1 VALUES(1841, 5814, 'five thousand eight hundred fourteen'); INSERT INTO t1 VALUES(1842, 70783, 'seventy thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(1843, 56289, 'fifty-six thousand two hundred eighty-nine'); INSERT INTO t1 VALUES(1844, 54563, 'fifty-four thousand five hundred sixty-three'); INSERT INTO t1 VALUES(1845, 9581, 'nine thousand five hundred eighty-one'); INSERT INTO t1 VALUES(1846, 16333, 'sixteen thousand three hundred thirty-three'); INSERT INTO t1 VALUES(1847, 53931, 'fifty-three thousand nine hundred thirty-one'); INSERT INTO t1 VALUES(1848, 42614, 'forty-two thousand six hundred fourteen'); INSERT INTO t1 VALUES(1849, 33934, 'thirty-three thousand nine hundred thirty-four'); INSERT INTO t1 VALUES(1850, 12692, 'twelve thousand six hundred ninety-two'); INSERT INTO t1 VALUES(1851, 99199, 'ninety-nine thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(1852, 55981, 'fifty-five thousand nine hundred eighty-one'); INSERT INTO t1 VALUES(1853, 75956, 'seventy-five thousand nine hundred fifty-six'); INSERT INTO t1 VALUES(1854, 58650, 'fifty-eight thousand six hundred fifty'); INSERT INTO t1 VALUES(1855, 52334, 'fifty-two thousand three hundred thirty-four'); INSERT INTO t1 VALUES(1856, 38002, 'thirty-eight thousand two'); INSERT INTO t1 VALUES(1857, 24622, 'twenty-four thousand six hundred twenty-two'); INSERT INTO t1 VALUES(1858, 44374, 'forty-four thousand three hundred seventy-four'); INSERT INTO t1 VALUES(1859, 58616, 'fifty-eight thousand six hundred sixteen'); INSERT INTO t1 VALUES(1860, 71514, 'seventy-one thousand five hundred fourteen'); INSERT INTO t1 VALUES(1861, 66250, 'sixty-six thousand two hundred fifty'); INSERT INTO t1 VALUES(1862, 42565, 'forty-two thousand five hundred sixty-five'); INSERT INTO t1 VALUES(1863, 99175, 'ninety-nine thousand one hundred seventy-five'); INSERT INTO t1 VALUES(1864, 35068, 'thirty-five thousand sixty-eight'); INSERT INTO t1 VALUES(1865, 62625, 'sixty-two thousand six hundred twenty-five'); INSERT INTO t1 VALUES(1866, 68705, 'sixty-eight thousand seven hundred five'); INSERT INTO t1 VALUES(1867, 23790, 'twenty-three thousand seven hundred ninety'); INSERT INTO t1 VALUES(1868, 67381, 'sixty-seven thousand three hundred eighty-one'); INSERT INTO t1 VALUES(1869, 37053, 'thirty-seven thousand fifty-three'); INSERT INTO t1 VALUES(1870, 69299, 'sixty-nine thousand two hundred ninety-nine'); INSERT INTO t1 VALUES(1871, 96784, 'ninety-six thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(1872, 6265, 'six thousand two hundred sixty-five'); INSERT INTO t1 VALUES(1873, 47283, 'forty-seven thousand two hundred eighty-three'); INSERT INTO t1 VALUES(1874, 69166, 'sixty-nine thousand one hundred sixty-six'); INSERT INTO t1 VALUES(1875, 92163, 'ninety-two thousand one hundred sixty-three'); INSERT INTO t1 VALUES(1876, 63622, 'sixty-three thousand six hundred twenty-two'); INSERT INTO t1 VALUES(1877, 98593, 'ninety-eight thousand five hundred ninety-three'); INSERT INTO t1 VALUES(1878, 15073, 'fifteen thousand seventy-three'); INSERT INTO t1 VALUES(1879, 33287, 'thirty-three thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(1880, 26037, 'twenty-six thousand thirty-seven'); INSERT INTO t1 VALUES(1881, 32387, 'thirty-two thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(1882, 53669, 'fifty-three thousand six hundred sixty-nine'); INSERT INTO t1 VALUES(1883, 5823, 'five thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(1884, 95759, 'ninety-five thousand seven hundred fifty-nine'); INSERT INTO t1 VALUES(1885, 53420, 'fifty-three thousand four hundred twenty'); INSERT INTO t1 VALUES(1886, 89223, 'eighty-nine thousand two hundred twenty-three'); INSERT INTO t1 VALUES(1887, 4678, 'four thousand six hundred seventy-eight'); INSERT INTO t1 VALUES(1888, 75335, 'seventy-five thousand three hundred thirty-five'); INSERT INTO t1 VALUES(1889, 50793, 'fifty thousand seven hundred ninety-three'); INSERT INTO t1 VALUES(1890, 74766, 'seventy-four thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(1891, 11605, 'eleven thousand six hundred five'); INSERT INTO t1 VALUES(1892, 67438, 'sixty-seven thousand four hundred thirty-eight'); INSERT INTO t1 VALUES(1893, 45553, 'forty-five thousand five hundred fifty-three'); INSERT INTO t1 VALUES(1894, 35335, 'thirty-five thousand three hundred thirty-five'); INSERT INTO t1 VALUES(1895, 61390, 'sixty-one thousand three hundred ninety'); INSERT INTO t1 VALUES(1896, 94733, 'ninety-four thousand seven hundred thirty-three'); INSERT INTO t1 VALUES(1897, 16900, 'sixteen thousand nine hundred'); INSERT INTO t1 VALUES(1898, 35421, 'thirty-five thousand four hundred twenty-one'); INSERT INTO t1 VALUES(1899, 18961, 'eighteen thousand nine hundred sixty-one'); INSERT INTO t1 VALUES(1900, 48884, 'forty-eight thousand eight hundred eighty-four'); INSERT INTO t1 VALUES(1901, 28538, 'twenty-eight thousand five hundred thirty-eight'); INSERT INTO t1 VALUES(1902, 94230, 'ninety-four thousand two hundred thirty'); INSERT INTO t1 VALUES(1903, 46487, 'forty-six thousand four hundred eighty-seven'); INSERT INTO t1 VALUES(1904, 27449, 'twenty-seven thousand four hundred forty-nine'); INSERT INTO t1 VALUES(1905, 26838, 'twenty-six thousand eight hundred thirty-eight'); INSERT INTO t1 VALUES(1906, 49891, 'forty-nine thousand eight hundred ninety-one'); INSERT INTO t1 VALUES(1907, 10235, 'ten thousand two hundred thirty-five'); INSERT INTO t1 VALUES(1908, 98015, 'ninety-eight thousand fifteen'); INSERT INTO t1 VALUES(1909, 91019, 'ninety-one thousand nineteen'); INSERT INTO t1 VALUES(1910, 65565, 'sixty-five thousand five hundred sixty-five'); INSERT INTO t1 VALUES(1911, 49051, 'forty-nine thousand fifty-one'); INSERT INTO t1 VALUES(1912, 57788, 'fifty-seven thousand seven hundred eighty-eight'); INSERT INTO t1 VALUES(1913, 36436, 'thirty-six thousand four hundred thirty-six'); INSERT INTO t1 VALUES(1914, 64349, 'sixty-four thousand three hundred forty-nine'); INSERT INTO t1 VALUES(1915, 90040, 'ninety thousand forty'); INSERT INTO t1 VALUES(1916, 50196, 'fifty thousand one hundred ninety-six'); INSERT INTO t1 VALUES(1917, 97652, 'ninety-seven thousand six hundred fifty-two'); INSERT INTO t1 VALUES(1918, 73380, 'seventy-three thousand three hundred eighty'); INSERT INTO t1 VALUES(1919, 2058, 'two thousand fifty-eight'); INSERT INTO t1 VALUES(1920, 13469, 'thirteen thousand four hundred sixty-nine'); INSERT INTO t1 VALUES(1921, 4344, 'four thousand three hundred forty-four'); INSERT INTO t1 VALUES(1922, 27203, 'twenty-seven thousand two hundred three'); INSERT INTO t1 VALUES(1923, 42999, 'forty-two thousand nine hundred ninety-nine'); INSERT INTO t1 VALUES(1924, 8211, 'eight thousand two hundred eleven'); INSERT INTO t1 VALUES(1925, 1322, 'one thousand three hundred twenty-two'); INSERT INTO t1 VALUES(1926, 39539, 'thirty-nine thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(1927, 86855, 'eighty-six thousand eight hundred fifty-five'); INSERT INTO t1 VALUES(1928, 83286, 'eighty-three thousand two hundred eighty-six'); INSERT INTO t1 VALUES(1929, 24826, 'twenty-four thousand eight hundred twenty-six'); INSERT INTO t1 VALUES(1930, 66020, 'sixty-six thousand twenty'); INSERT INTO t1 VALUES(1931, 2534, 'two thousand five hundred thirty-four'); INSERT INTO t1 VALUES(1932, 9301, 'nine thousand three hundred one'); INSERT INTO t1 VALUES(1933, 52233, 'fifty-two thousand two hundred thirty-three'); INSERT INTO t1 VALUES(1934, 41527, 'forty-one thousand five hundred twenty-seven'); INSERT INTO t1 VALUES(1935, 57077, 'fifty-seven thousand seventy-seven'); INSERT INTO t1 VALUES(1936, 23554, 'twenty-three thousand five hundred fifty-four'); INSERT INTO t1 VALUES(1937, 65439, 'sixty-five thousand four hundred thirty-nine'); INSERT INTO t1 VALUES(1938, 98003, 'ninety-eight thousand three'); INSERT INTO t1 VALUES(1939, 29890, 'twenty-nine thousand eight hundred ninety'); INSERT INTO t1 VALUES(1940, 63910, 'sixty-three thousand nine hundred ten'); INSERT INTO t1 VALUES(1941, 26234, 'twenty-six thousand two hundred thirty-four'); INSERT INTO t1 VALUES(1942, 64618, 'sixty-four thousand six hundred eighteen'); INSERT INTO t1 VALUES(1943, 74275, 'seventy-four thousand two hundred seventy-five'); INSERT INTO t1 VALUES(1944, 54969, 'fifty-four thousand nine hundred sixty-nine'); INSERT INTO t1 VALUES(1945, 46927, 'forty-six thousand nine hundred twenty-seven'); INSERT INTO t1 VALUES(1946, 91259, 'ninety-one thousand two hundred fifty-nine'); INSERT INTO t1 VALUES(1947, 79802, 'seventy-nine thousand eight hundred two'); INSERT INTO t1 VALUES(1948, 70990, 'seventy thousand nine hundred ninety'); INSERT INTO t1 VALUES(1949, 62246, 'sixty-two thousand two hundred forty-six'); INSERT INTO t1 VALUES(1950, 78112, 'seventy-eight thousand one hundred twelve'); INSERT INTO t1 VALUES(1951, 1090, 'one thousand ninety'); INSERT INTO t1 VALUES(1952, 5196, 'five thousand one hundred ninety-six'); INSERT INTO t1 VALUES(1953, 53868, 'fifty-three thousand eight hundred sixty-eight'); INSERT INTO t1 VALUES(1954, 65249, 'sixty-five thousand two hundred forty-nine'); INSERT INTO t1 VALUES(1955, 18779, 'eighteen thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(1956, 1451, 'one thousand four hundred fifty-one'); INSERT INTO t1 VALUES(1957, 97039, 'ninety-seven thousand thirty-nine'); INSERT INTO t1 VALUES(1958, 38436, 'thirty-eight thousand four hundred thirty-six'); INSERT INTO t1 VALUES(1959, 47354, 'forty-seven thousand three hundred fifty-four'); INSERT INTO t1 VALUES(1960, 73907, 'seventy-three thousand nine hundred seven'); INSERT INTO t1 VALUES(1961, 38768, 'thirty-eight thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(1962, 81604, 'eighty-one thousand six hundred four'); INSERT INTO t1 VALUES(1963, 39665, 'thirty-nine thousand six hundred sixty-five'); INSERT INTO t1 VALUES(1964, 14586, 'fourteen thousand five hundred eighty-six'); INSERT INTO t1 VALUES(1965, 94552, 'ninety-four thousand five hundred fifty-two'); INSERT INTO t1 VALUES(1966, 27538, 'twenty-seven thousand five hundred thirty-eight'); INSERT INTO t1 VALUES(1967, 61650, 'sixty-one thousand six hundred fifty'); INSERT INTO t1 VALUES(1968, 49645, 'forty-nine thousand six hundred forty-five'); INSERT INTO t1 VALUES(1969, 90898, 'ninety thousand eight hundred ninety-eight'); INSERT INTO t1 VALUES(1970, 65710, 'sixty-five thousand seven hundred ten'); INSERT INTO t1 VALUES(1971, 44712, 'forty-four thousand seven hundred twelve'); INSERT INTO t1 VALUES(1972, 27578, 'twenty-seven thousand five hundred seventy-eight'); INSERT INTO t1 VALUES(1973, 96240, 'ninety-six thousand two hundred forty'); INSERT INTO t1 VALUES(1974, 77263, 'seventy-seven thousand two hundred sixty-three'); INSERT INTO t1 VALUES(1975, 75560, 'seventy-five thousand five hundred sixty'); INSERT INTO t1 VALUES(1976, 26053, 'twenty-six thousand fifty-three'); INSERT INTO t1 VALUES(1977, 62047, 'sixty-two thousand forty-seven'); INSERT INTO t1 VALUES(1978, 71099, 'seventy-one thousand ninety-nine'); INSERT INTO t1 VALUES(1979, 77506, 'seventy-seven thousand five hundred six'); INSERT INTO t1 VALUES(1980, 15059, 'fifteen thousand fifty-nine'); INSERT INTO t1 VALUES(1981, 21642, 'twenty-one thousand six hundred forty-two'); INSERT INTO t1 VALUES(1982, 18236, 'eighteen thousand two hundred thirty-six'); INSERT INTO t1 VALUES(1983, 21430, 'twenty-one thousand four hundred thirty'); INSERT INTO t1 VALUES(1984, 83281, 'eighty-three thousand two hundred eighty-one'); INSERT INTO t1 VALUES(1985, 65713, 'sixty-five thousand seven hundred thirteen'); INSERT INTO t1 VALUES(1986, 33900, 'thirty-three thousand nine hundred'); INSERT INTO t1 VALUES(1987, 60594, 'sixty thousand five hundred ninety-four'); INSERT INTO t1 VALUES(1988, 19507, 'nineteen thousand five hundred seven'); INSERT INTO t1 VALUES(1989, 11432, 'eleven thousand four hundred thirty-two'); INSERT INTO t1 VALUES(1990, 82606, 'eighty-two thousand six hundred six'); INSERT INTO t1 VALUES(1991, 96461, 'ninety-six thousand four hundred sixty-one'); INSERT INTO t1 VALUES(1992, 81533, 'eighty-one thousand five hundred thirty-three'); INSERT INTO t1 VALUES(1993, 26143, 'twenty-six thousand one hundred forty-three'); INSERT INTO t1 VALUES(1994, 38308, 'thirty-eight thousand three hundred eight'); INSERT INTO t1 VALUES(1995, 50209, 'fifty thousand two hundred nine'); INSERT INTO t1 VALUES(1996, 67682, 'sixty-seven thousand six hundred eighty-two'); INSERT INTO t1 VALUES(1997, 22627, 'twenty-two thousand six hundred twenty-seven'); INSERT INTO t1 VALUES(1998, 27213, 'twenty-seven thousand two hundred thirteen'); INSERT INTO t1 VALUES(1999, 43147, 'forty-three thousand one hundred forty-seven'); INSERT INTO t1 VALUES(2000, 84338, 'eighty-four thousand three hundred thirty-eight'); INSERT INTO t1 VALUES(2001, 32584, 'thirty-two thousand five hundred eighty-four'); INSERT INTO t1 VALUES(2002, 24006, 'twenty-four thousand six'); INSERT INTO t1 VALUES(2003, 77889, 'seventy-seven thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(2004, 2718, 'two thousand seven hundred eighteen'); INSERT INTO t1 VALUES(2005, 47237, 'forty-seven thousand two hundred thirty-seven'); INSERT INTO t1 VALUES(2006, 49734, 'forty-nine thousand seven hundred thirty-four'); INSERT INTO t1 VALUES(2007, 32911, 'thirty-two thousand nine hundred eleven'); INSERT INTO t1 VALUES(2008, 37698, 'thirty-seven thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(2009, 3983, 'three thousand nine hundred eighty-three'); INSERT INTO t1 VALUES(2010, 58862, 'fifty-eight thousand eight hundred sixty-two'); INSERT INTO t1 VALUES(2011, 97073, 'ninety-seven thousand seventy-three'); INSERT INTO t1 VALUES(2012, 23589, 'twenty-three thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(2013, 57491, 'fifty-seven thousand four hundred ninety-one'); INSERT INTO t1 VALUES(2014, 34374, 'thirty-four thousand three hundred seventy-four'); INSERT INTO t1 VALUES(2015, 42560, 'forty-two thousand five hundred sixty'); INSERT INTO t1 VALUES(2016, 67335, 'sixty-seven thousand three hundred thirty-five'); INSERT INTO t1 VALUES(2017, 17451, 'seventeen thousand four hundred fifty-one'); INSERT INTO t1 VALUES(2018, 32142, 'thirty-two thousand one hundred forty-two'); INSERT INTO t1 VALUES(2019, 67189, 'sixty-seven thousand one hundred eighty-nine'); INSERT INTO t1 VALUES(2020, 1272, 'one thousand two hundred seventy-two'); INSERT INTO t1 VALUES(2021, 22322, 'twenty-two thousand three hundred twenty-two'); INSERT INTO t1 VALUES(2022, 30653, 'thirty thousand six hundred fifty-three'); INSERT INTO t1 VALUES(2023, 88768, 'eighty-eight thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(2024, 36977, 'thirty-six thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(2025, 12562, 'twelve thousand five hundred sixty-two'); INSERT INTO t1 VALUES(2026, 5519, 'five thousand five hundred nineteen'); INSERT INTO t1 VALUES(2027, 28448, 'twenty-eight thousand four hundred forty-eight'); INSERT INTO t1 VALUES(2028, 6405, 'six thousand four hundred five'); INSERT INTO t1 VALUES(2029, 13197, 'thirteen thousand one hundred ninety-seven'); INSERT INTO t1 VALUES(2030, 82940, 'eighty-two thousand nine hundred forty'); INSERT INTO t1 VALUES(2031, 62586, 'sixty-two thousand five hundred eighty-six'); INSERT INTO t1 VALUES(2032, 8333, 'eight thousand three hundred thirty-three'); INSERT INTO t1 VALUES(2033, 62408, 'sixty-two thousand four hundred eight'); INSERT INTO t1 VALUES(2034, 18597, 'eighteen thousand five hundred ninety-seven'); INSERT INTO t1 VALUES(2035, 57935, 'fifty-seven thousand nine hundred thirty-five'); INSERT INTO t1 VALUES(2036, 33700, 'thirty-three thousand seven hundred'); INSERT INTO t1 VALUES(2037, 17884, 'seventeen thousand eight hundred eighty-four'); INSERT INTO t1 VALUES(2038, 819, 'eight hundred nineteen'); INSERT INTO t1 VALUES(2039, 50886, 'fifty thousand eight hundred eighty-six'); INSERT INTO t1 VALUES(2040, 63433, 'sixty-three thousand four hundred thirty-three'); INSERT INTO t1 VALUES(2041, 31774, 'thirty-one thousand seven hundred seventy-four'); INSERT INTO t1 VALUES(2042, 89091, 'eighty-nine thousand ninety-one'); INSERT INTO t1 VALUES(2043, 47676, 'forty-seven thousand six hundred seventy-six'); INSERT INTO t1 VALUES(2044, 17505, 'seventeen thousand five hundred five'); INSERT INTO t1 VALUES(2045, 14303, 'fourteen thousand three hundred three'); INSERT INTO t1 VALUES(2046, 47820, 'forty-seven thousand eight hundred twenty'); INSERT INTO t1 VALUES(2047, 34030, 'thirty-four thousand thirty'); INSERT INTO t1 VALUES(2048, 53344, 'fifty-three thousand three hundred forty-four'); INSERT INTO t1 VALUES(2049, 87145, 'eighty-seven thousand one hundred forty-five'); INSERT INTO t1 VALUES(2050, 19823, 'nineteen thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(2051, 60898, 'sixty thousand eight hundred ninety-eight'); INSERT INTO t1 VALUES(2052, 1048, 'one thousand forty-eight'); INSERT INTO t1 VALUES(2053, 14591, 'fourteen thousand five hundred ninety-one'); INSERT INTO t1 VALUES(2054, 72134, 'seventy-two thousand one hundred thirty-four'); INSERT INTO t1 VALUES(2055, 26114, 'twenty-six thousand one hundred fourteen'); INSERT INTO t1 VALUES(2056, 16760, 'sixteen thousand seven hundred sixty'); INSERT INTO t1 VALUES(2057, 33551, 'thirty-three thousand five hundred fifty-one'); INSERT INTO t1 VALUES(2058, 62061, 'sixty-two thousand sixty-one'); INSERT INTO t1 VALUES(2059, 20614, 'twenty thousand six hundred fourteen'); INSERT INTO t1 VALUES(2060, 29190, 'twenty-nine thousand one hundred ninety'); INSERT INTO t1 VALUES(2061, 6402, 'six thousand four hundred two'); INSERT INTO t1 VALUES(2062, 86573, 'eighty-six thousand five hundred seventy-three'); INSERT INTO t1 VALUES(2063, 72194, 'seventy-two thousand one hundred ninety-four'); INSERT INTO t1 VALUES(2064, 97366, 'ninety-seven thousand three hundred sixty-six'); INSERT INTO t1 VALUES(2065, 77278, 'seventy-seven thousand two hundred seventy-eight'); INSERT INTO t1 VALUES(2066, 99389, 'ninety-nine thousand three hundred eighty-nine'); INSERT INTO t1 VALUES(2067, 90879, 'ninety thousand eight hundred seventy-nine'); INSERT INTO t1 VALUES(2068, 12989, 'twelve thousand nine hundred eighty-nine'); INSERT INTO t1 VALUES(2069, 57347, 'fifty-seven thousand three hundred forty-seven'); INSERT INTO t1 VALUES(2070, 83419, 'eighty-three thousand four hundred nineteen'); INSERT INTO t1 VALUES(2071, 95879, 'ninety-five thousand eight hundred seventy-nine'); INSERT INTO t1 VALUES(2072, 58171, 'fifty-eight thousand one hundred seventy-one'); INSERT INTO t1 VALUES(2073, 80507, 'eighty thousand five hundred seven'); INSERT INTO t1 VALUES(2074, 85772, 'eighty-five thousand seven hundred seventy-two'); INSERT INTO t1 VALUES(2075, 36005, 'thirty-six thousand five'); INSERT INTO t1 VALUES(2076, 823, 'eight hundred twenty-three'); INSERT INTO t1 VALUES(2077, 86932, 'eighty-six thousand nine hundred thirty-two'); INSERT INTO t1 VALUES(2078, 45283, 'forty-five thousand two hundred eighty-three'); INSERT INTO t1 VALUES(2079, 90744, 'ninety thousand seven hundred forty-four'); INSERT INTO t1 VALUES(2080, 93349, 'ninety-three thousand three hundred forty-nine'); INSERT INTO t1 VALUES(2081, 25191, 'twenty-five thousand one hundred ninety-one'); INSERT INTO t1 VALUES(2082, 7245, 'seven thousand two hundred forty-five'); INSERT INTO t1 VALUES(2083, 69413, 'sixty-nine thousand four hundred thirteen'); INSERT INTO t1 VALUES(2084, 59792, 'fifty-nine thousand seven hundred ninety-two'); INSERT INTO t1 VALUES(2085, 29047, 'twenty-nine thousand forty-seven'); INSERT INTO t1 VALUES(2086, 47074, 'forty-seven thousand seventy-four'); INSERT INTO t1 VALUES(2087, 99312, 'ninety-nine thousand three hundred twelve'); INSERT INTO t1 VALUES(2088, 8974, 'eight thousand nine hundred seventy-four'); INSERT INTO t1 VALUES(2089, 8943, 'eight thousand nine hundred forty-three'); INSERT INTO t1 VALUES(2090, 9909, 'nine thousand nine hundred nine'); INSERT INTO t1 VALUES(2091, 43966, 'forty-three thousand nine hundred sixty-six'); INSERT INTO t1 VALUES(2092, 31968, 'thirty-one thousand nine hundred sixty-eight'); INSERT INTO t1 VALUES(2093, 13409, 'thirteen thousand four hundred nine'); INSERT INTO t1 VALUES(2094, 92395, 'ninety-two thousand three hundred ninety-five'); INSERT INTO t1 VALUES(2095, 43059, 'forty-three thousand fifty-nine'); INSERT INTO t1 VALUES(2096, 65877, 'sixty-five thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(2097, 5618, 'five thousand six hundred eighteen'); INSERT INTO t1 VALUES(2098, 92161, 'ninety-two thousand one hundred sixty-one'); INSERT INTO t1 VALUES(2099, 77692, 'seventy-seven thousand six hundred ninety-two'); INSERT INTO t1 VALUES(2100, 99492, 'ninety-nine thousand four hundred ninety-two'); INSERT INTO t1 VALUES(2101, 19443, 'nineteen thousand four hundred forty-three'); INSERT INTO t1 VALUES(2102, 41080, 'forty-one thousand eighty'); INSERT INTO t1 VALUES(2103, 93944, 'ninety-three thousand nine hundred forty-four'); INSERT INTO t1 VALUES(2104, 24834, 'twenty-four thousand eight hundred thirty-four'); INSERT INTO t1 VALUES(2105, 47394, 'forty-seven thousand three hundred ninety-four'); INSERT INTO t1 VALUES(2106, 65459, 'sixty-five thousand four hundred fifty-nine'); INSERT INTO t1 VALUES(2107, 16311, 'sixteen thousand three hundred eleven'); INSERT INTO t1 VALUES(2108, 65066, 'sixty-five thousand sixty-six'); INSERT INTO t1 VALUES(2109, 60027, 'sixty thousand twenty-seven'); INSERT INTO t1 VALUES(2110, 94432, 'ninety-four thousand four hundred thirty-two'); INSERT INTO t1 VALUES(2111, 89314, 'eighty-nine thousand three hundred fourteen'); INSERT INTO t1 VALUES(2112, 69025, 'sixty-nine thousand twenty-five'); INSERT INTO t1 VALUES(2113, 19117, 'nineteen thousand one hundred seventeen'); INSERT INTO t1 VALUES(2114, 43262, 'forty-three thousand two hundred sixty-two'); INSERT INTO t1 VALUES(2115, 17253, 'seventeen thousand two hundred fifty-three'); INSERT INTO t1 VALUES(2116, 12387, 'twelve thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(2117, 53532, 'fifty-three thousand five hundred thirty-two'); INSERT INTO t1 VALUES(2118, 99325, 'ninety-nine thousand three hundred twenty-five'); INSERT INTO t1 VALUES(2119, 12697, 'twelve thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(2120, 52006, 'fifty-two thousand six'); INSERT INTO t1 VALUES(2121, 71910, 'seventy-one thousand nine hundred ten'); INSERT INTO t1 VALUES(2122, 94517, 'ninety-four thousand five hundred seventeen'); INSERT INTO t1 VALUES(2123, 16697, 'sixteen thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(2124, 37519, 'thirty-seven thousand five hundred nineteen'); INSERT INTO t1 VALUES(2125, 56287, 'fifty-six thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(2126, 40000, 'forty thousand'); INSERT INTO t1 VALUES(2127, 47209, 'forty-seven thousand two hundred nine'); INSERT INTO t1 VALUES(2128, 42196, 'forty-two thousand one hundred ninety-six'); INSERT INTO t1 VALUES(2129, 70059, 'seventy thousand fifty-nine'); INSERT INTO t1 VALUES(2130, 72656, 'seventy-two thousand six hundred fifty-six'); INSERT INTO t1 VALUES(2131, 17395, 'seventeen thousand three hundred ninety-five'); INSERT INTO t1 VALUES(2132, 66416, 'sixty-six thousand four hundred sixteen'); INSERT INTO t1 VALUES(2133, 56705, 'fifty-six thousand seven hundred five'); INSERT INTO t1 VALUES(2134, 51940, 'fifty-one thousand nine hundred forty'); INSERT INTO t1 VALUES(2135, 60665, 'sixty thousand six hundred sixty-five'); INSERT INTO t1 VALUES(2136, 13269, 'thirteen thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(2137, 60818, 'sixty thousand eight hundred eighteen'); INSERT INTO t1 VALUES(2138, 46280, 'forty-six thousand two hundred eighty'); INSERT INTO t1 VALUES(2139, 42486, 'forty-two thousand four hundred eighty-six'); INSERT INTO t1 VALUES(2140, 95618, 'ninety-five thousand six hundred eighteen'); INSERT INTO t1 VALUES(2141, 41888, 'forty-one thousand eight hundred eighty-eight'); INSERT INTO t1 VALUES(2142, 4821, 'four thousand eight hundred twenty-one'); INSERT INTO t1 VALUES(2143, 95997, 'ninety-five thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(2144, 13602, 'thirteen thousand six hundred two'); INSERT INTO t1 VALUES(2145, 13524, 'thirteen thousand five hundred twenty-four'); INSERT INTO t1 VALUES(2146, 80737, 'eighty thousand seven hundred thirty-seven'); INSERT INTO t1 VALUES(2147, 87644, 'eighty-seven thousand six hundred forty-four'); INSERT INTO t1 VALUES(2148, 61870, 'sixty-one thousand eight hundred seventy'); INSERT INTO t1 VALUES(2149, 1495, 'one thousand four hundred ninety-five'); INSERT INTO t1 VALUES(2150, 33877, 'thirty-three thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(2151, 70578, 'seventy thousand five hundred seventy-eight'); INSERT INTO t1 VALUES(2152, 40349, 'forty thousand three hundred forty-nine'); INSERT INTO t1 VALUES(2153, 30217, 'thirty thousand two hundred seventeen'); INSERT INTO t1 VALUES(2154, 12710, 'twelve thousand seven hundred ten'); INSERT INTO t1 VALUES(2155, 37047, 'thirty-seven thousand forty-seven'); INSERT INTO t1 VALUES(2156, 92862, 'ninety-two thousand eight hundred sixty-two'); INSERT INTO t1 VALUES(2157, 89794, 'eighty-nine thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(2158, 14549, 'fourteen thousand five hundred forty-nine'); INSERT INTO t1 VALUES(2159, 3124, 'three thousand one hundred twenty-four'); INSERT INTO t1 VALUES(2160, 67600, 'sixty-seven thousand six hundred'); INSERT INTO t1 VALUES(2161, 75734, 'seventy-five thousand seven hundred thirty-four'); INSERT INTO t1 VALUES(2162, 61384, 'sixty-one thousand three hundred eighty-four'); INSERT INTO t1 VALUES(2163, 61911, 'sixty-one thousand nine hundred eleven'); INSERT INTO t1 VALUES(2164, 99488, 'ninety-nine thousand four hundred eighty-eight'); INSERT INTO t1 VALUES(2165, 81318, 'eighty-one thousand three hundred eighteen'); INSERT INTO t1 VALUES(2166, 90286, 'ninety thousand two hundred eighty-six'); INSERT INTO t1 VALUES(2167, 57603, 'fifty-seven thousand six hundred three'); INSERT INTO t1 VALUES(2168, 79432, 'seventy-nine thousand four hundred thirty-two'); INSERT INTO t1 VALUES(2169, 88218, 'eighty-eight thousand two hundred eighteen'); INSERT INTO t1 VALUES(2170, 54452, 'fifty-four thousand four hundred fifty-two'); INSERT INTO t1 VALUES(2171, 36526, 'thirty-six thousand five hundred twenty-six'); INSERT INTO t1 VALUES(2172, 66329, 'sixty-six thousand three hundred twenty-nine'); INSERT INTO t1 VALUES(2173, 10991, 'ten thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(2174, 80541, 'eighty thousand five hundred forty-one'); INSERT INTO t1 VALUES(2175, 20445, 'twenty thousand four hundred forty-five'); INSERT INTO t1 VALUES(2176, 44857, 'forty-four thousand eight hundred fifty-seven'); INSERT INTO t1 VALUES(2177, 57780, 'fifty-seven thousand seven hundred eighty'); INSERT INTO t1 VALUES(2178, 27865, 'twenty-seven thousand eight hundred sixty-five'); INSERT INTO t1 VALUES(2179, 15842, 'fifteen thousand eight hundred forty-two'); INSERT INTO t1 VALUES(2180, 40558, 'forty thousand five hundred fifty-eight'); INSERT INTO t1 VALUES(2181, 31458, 'thirty-one thousand four hundred fifty-eight'); INSERT INTO t1 VALUES(2182, 96974, 'ninety-six thousand nine hundred seventy-four'); INSERT INTO t1 VALUES(2183, 83410, 'eighty-three thousand four hundred ten'); INSERT INTO t1 VALUES(2184, 94541, 'ninety-four thousand five hundred forty-one'); INSERT INTO t1 VALUES(2185, 24669, 'twenty-four thousand six hundred sixty-nine'); INSERT INTO t1 VALUES(2186, 60160, 'sixty thousand one hundred sixty'); INSERT INTO t1 VALUES(2187, 66278, 'sixty-six thousand two hundred seventy-eight'); INSERT INTO t1 VALUES(2188, 56964, 'fifty-six thousand nine hundred sixty-four'); INSERT INTO t1 VALUES(2189, 16275, 'sixteen thousand two hundred seventy-five'); INSERT INTO t1 VALUES(2190, 88168, 'eighty-eight thousand one hundred sixty-eight'); INSERT INTO t1 VALUES(2191, 98545, 'ninety-eight thousand five hundred forty-five'); INSERT INTO t1 VALUES(2192, 79183, 'seventy-nine thousand one hundred eighty-three'); INSERT INTO t1 VALUES(2193, 81682, 'eighty-one thousand six hundred eighty-two'); INSERT INTO t1 VALUES(2194, 57766, 'fifty-seven thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(2195, 13950, 'thirteen thousand nine hundred fifty'); INSERT INTO t1 VALUES(2196, 87696, 'eighty-seven thousand six hundred ninety-six'); INSERT INTO t1 VALUES(2197, 86376, 'eighty-six thousand three hundred seventy-six'); INSERT INTO t1 VALUES(2198, 37683, 'thirty-seven thousand six hundred eighty-three'); INSERT INTO t1 VALUES(2199, 74103, 'seventy-four thousand one hundred three'); INSERT INTO t1 VALUES(2200, 10257, 'ten thousand two hundred fifty-seven'); INSERT INTO t1 VALUES(2201, 28343, 'twenty-eight thousand three hundred forty-three'); INSERT INTO t1 VALUES(2202, 60849, 'sixty thousand eight hundred forty-nine'); INSERT INTO t1 VALUES(2203, 9361, 'nine thousand three hundred sixty-one'); INSERT INTO t1 VALUES(2204, 54976, 'fifty-four thousand nine hundred seventy-six'); INSERT INTO t1 VALUES(2205, 7990, 'seven thousand nine hundred ninety'); INSERT INTO t1 VALUES(2206, 53392, 'fifty-three thousand three hundred ninety-two'); INSERT INTO t1 VALUES(2207, 90975, 'ninety thousand nine hundred seventy-five'); INSERT INTO t1 VALUES(2208, 47139, 'forty-seven thousand one hundred thirty-nine'); INSERT INTO t1 VALUES(2209, 89696, 'eighty-nine thousand six hundred ninety-six'); INSERT INTO t1 VALUES(2210, 58779, 'fifty-eight thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(2211, 64207, 'sixty-four thousand two hundred seven'); INSERT INTO t1 VALUES(2212, 57842, 'fifty-seven thousand eight hundred forty-two'); INSERT INTO t1 VALUES(2213, 27915, 'twenty-seven thousand nine hundred fifteen'); INSERT INTO t1 VALUES(2214, 95494, 'ninety-five thousand four hundred ninety-four'); INSERT INTO t1 VALUES(2215, 42037, 'forty-two thousand thirty-seven'); INSERT INTO t1 VALUES(2216, 15944, 'fifteen thousand nine hundred forty-four'); INSERT INTO t1 VALUES(2217, 26023, 'twenty-six thousand twenty-three'); INSERT INTO t1 VALUES(2218, 19083, 'nineteen thousand eighty-three'); INSERT INTO t1 VALUES(2219, 29411, 'twenty-nine thousand four hundred eleven'); INSERT INTO t1 VALUES(2220, 20499, 'twenty thousand four hundred ninety-nine'); INSERT INTO t1 VALUES(2221, 34570, 'thirty-four thousand five hundred seventy'); INSERT INTO t1 VALUES(2222, 69873, 'sixty-nine thousand eight hundred seventy-three'); INSERT INTO t1 VALUES(2223, 87765, 'eighty-seven thousand seven hundred sixty-five'); INSERT INTO t1 VALUES(2224, 10477, 'ten thousand four hundred seventy-seven'); INSERT INTO t1 VALUES(2225, 32400, 'thirty-two thousand four hundred'); INSERT INTO t1 VALUES(2226, 39016, 'thirty-nine thousand sixteen'); INSERT INTO t1 VALUES(2227, 93999, 'ninety-three thousand nine hundred ninety-nine'); INSERT INTO t1 VALUES(2228, 97828, 'ninety-seven thousand eight hundred twenty-eight'); INSERT INTO t1 VALUES(2229, 65883, 'sixty-five thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(2230, 62744, 'sixty-two thousand seven hundred forty-four'); INSERT INTO t1 VALUES(2231, 81946, 'eighty-one thousand nine hundred forty-six'); INSERT INTO t1 VALUES(2232, 12893, 'twelve thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(2233, 85908, 'eighty-five thousand nine hundred eight'); INSERT INTO t1 VALUES(2234, 6408, 'six thousand four hundred eight'); INSERT INTO t1 VALUES(2235, 79758, 'seventy-nine thousand seven hundred fifty-eight'); INSERT INTO t1 VALUES(2236, 41544, 'forty-one thousand five hundred forty-four'); INSERT INTO t1 VALUES(2237, 58853, 'fifty-eight thousand eight hundred fifty-three'); INSERT INTO t1 VALUES(2238, 55209, 'fifty-five thousand two hundred nine'); INSERT INTO t1 VALUES(2239, 1465, 'one thousand four hundred sixty-five'); INSERT INTO t1 VALUES(2240, 84837, 'eighty-four thousand eight hundred thirty-seven'); INSERT INTO t1 VALUES(2241, 63355, 'sixty-three thousand three hundred fifty-five'); INSERT INTO t1 VALUES(2242, 19415, 'nineteen thousand four hundred fifteen'); INSERT INTO t1 VALUES(2243, 31516, 'thirty-one thousand five hundred sixteen'); INSERT INTO t1 VALUES(2244, 33610, 'thirty-three thousand six hundred ten'); INSERT INTO t1 VALUES(2245, 93950, 'ninety-three thousand nine hundred fifty'); INSERT INTO t1 VALUES(2246, 21999, 'twenty-one thousand nine hundred ninety-nine'); INSERT INTO t1 VALUES(2247, 8940, 'eight thousand nine hundred forty'); INSERT INTO t1 VALUES(2248, 74503, 'seventy-four thousand five hundred three'); INSERT INTO t1 VALUES(2249, 2932, 'two thousand nine hundred thirty-two'); INSERT INTO t1 VALUES(2250, 70455, 'seventy thousand four hundred fifty-five'); INSERT INTO t1 VALUES(2251, 62804, 'sixty-two thousand eight hundred four'); INSERT INTO t1 VALUES(2252, 16963, 'sixteen thousand nine hundred sixty-three'); INSERT INTO t1 VALUES(2253, 1770, 'one thousand seven hundred seventy'); INSERT INTO t1 VALUES(2254, 67716, 'sixty-seven thousand seven hundred sixteen'); INSERT INTO t1 VALUES(2255, 94196, 'ninety-four thousand one hundred ninety-six'); INSERT INTO t1 VALUES(2256, 68072, 'sixty-eight thousand seventy-two'); INSERT INTO t1 VALUES(2257, 67302, 'sixty-seven thousand three hundred two'); INSERT INTO t1 VALUES(2258, 97465, 'ninety-seven thousand four hundred sixty-five'); INSERT INTO t1 VALUES(2259, 45332, 'forty-five thousand three hundred thirty-two'); INSERT INTO t1 VALUES(2260, 65071, 'sixty-five thousand seventy-one'); INSERT INTO t1 VALUES(2261, 69613, 'sixty-nine thousand six hundred thirteen'); INSERT INTO t1 VALUES(2262, 37572, 'thirty-seven thousand five hundred seventy-two'); INSERT INTO t1 VALUES(2263, 2542, 'two thousand five hundred forty-two'); INSERT INTO t1 VALUES(2264, 61825, 'sixty-one thousand eight hundred twenty-five'); INSERT INTO t1 VALUES(2265, 73221, 'seventy-three thousand two hundred twenty-one'); INSERT INTO t1 VALUES(2266, 22978, 'twenty-two thousand nine hundred seventy-eight'); INSERT INTO t1 VALUES(2267, 13086, 'thirteen thousand eighty-six'); INSERT INTO t1 VALUES(2268, 20686, 'twenty thousand six hundred eighty-six'); INSERT INTO t1 VALUES(2269, 8004, 'eight thousand four'); INSERT INTO t1 VALUES(2270, 90431, 'ninety thousand four hundred thirty-one'); INSERT INTO t1 VALUES(2271, 58, 'fifty-eight'); INSERT INTO t1 VALUES(2272, 20304, 'twenty thousand three hundred four'); INSERT INTO t1 VALUES(2273, 22125, 'twenty-two thousand one hundred twenty-five'); INSERT INTO t1 VALUES(2274, 94549, 'ninety-four thousand five hundred forty-nine'); INSERT INTO t1 VALUES(2275, 97808, 'ninety-seven thousand eight hundred eight'); INSERT INTO t1 VALUES(2276, 71594, 'seventy-one thousand five hundred ninety-four'); INSERT INTO t1 VALUES(2277, 43354, 'forty-three thousand three hundred fifty-four'); INSERT INTO t1 VALUES(2278, 49271, 'forty-nine thousand two hundred seventy-one'); INSERT INTO t1 VALUES(2279, 60907, 'sixty thousand nine hundred seven'); INSERT INTO t1 VALUES(2280, 2904, 'two thousand nine hundred four'); INSERT INTO t1 VALUES(2281, 97229, 'ninety-seven thousand two hundred twenty-nine'); INSERT INTO t1 VALUES(2282, 14421, 'fourteen thousand four hundred twenty-one'); INSERT INTO t1 VALUES(2283, 55245, 'fifty-five thousand two hundred forty-five'); INSERT INTO t1 VALUES(2284, 69892, 'sixty-nine thousand eight hundred ninety-two'); INSERT INTO t1 VALUES(2285, 5737, 'five thousand seven hundred thirty-seven'); INSERT INTO t1 VALUES(2286, 25062, 'twenty-five thousand sixty-two'); INSERT INTO t1 VALUES(2287, 50889, 'fifty thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(2288, 28869, 'twenty-eight thousand eight hundred sixty-nine'); INSERT INTO t1 VALUES(2289, 82860, 'eighty-two thousand eight hundred sixty'); INSERT INTO t1 VALUES(2290, 89283, 'eighty-nine thousand two hundred eighty-three'); INSERT INTO t1 VALUES(2291, 99621, 'ninety-nine thousand six hundred twenty-one'); INSERT INTO t1 VALUES(2292, 39946, 'thirty-nine thousand nine hundred forty-six'); INSERT INTO t1 VALUES(2293, 19391, 'nineteen thousand three hundred ninety-one'); INSERT INTO t1 VALUES(2294, 3698, 'three thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(2295, 78749, 'seventy-eight thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(2296, 2650, 'two thousand six hundred fifty'); INSERT INTO t1 VALUES(2297, 18805, 'eighteen thousand eight hundred five'); INSERT INTO t1 VALUES(2298, 11225, 'eleven thousand two hundred twenty-five'); INSERT INTO t1 VALUES(2299, 17736, 'seventeen thousand seven hundred thirty-six'); INSERT INTO t1 VALUES(2300, 73225, 'seventy-three thousand two hundred twenty-five'); INSERT INTO t1 VALUES(2301, 58326, 'fifty-eight thousand three hundred twenty-six'); INSERT INTO t1 VALUES(2302, 3980, 'three thousand nine hundred eighty'); INSERT INTO t1 VALUES(2303, 57258, 'fifty-seven thousand two hundred fifty-eight'); INSERT INTO t1 VALUES(2304, 52450, 'fifty-two thousand four hundred fifty'); INSERT INTO t1 VALUES(2305, 47560, 'forty-seven thousand five hundred sixty'); INSERT INTO t1 VALUES(2306, 13561, 'thirteen thousand five hundred sixty-one'); INSERT INTO t1 VALUES(2307, 62661, 'sixty-two thousand six hundred sixty-one'); INSERT INTO t1 VALUES(2308, 37651, 'thirty-seven thousand six hundred fifty-one'); INSERT INTO t1 VALUES(2309, 60017, 'sixty thousand seventeen'); INSERT INTO t1 VALUES(2310, 17392, 'seventeen thousand three hundred ninety-two'); INSERT INTO t1 VALUES(2311, 26290, 'twenty-six thousand two hundred ninety'); INSERT INTO t1 VALUES(2312, 22235, 'twenty-two thousand two hundred thirty-five'); INSERT INTO t1 VALUES(2313, 66270, 'sixty-six thousand two hundred seventy'); INSERT INTO t1 VALUES(2314, 20680, 'twenty thousand six hundred eighty'); INSERT INTO t1 VALUES(2315, 10520, 'ten thousand five hundred twenty'); INSERT INTO t1 VALUES(2316, 58415, 'fifty-eight thousand four hundred fifteen'); INSERT INTO t1 VALUES(2317, 82197, 'eighty-two thousand one hundred ninety-seven'); INSERT INTO t1 VALUES(2318, 29506, 'twenty-nine thousand five hundred six'); INSERT INTO t1 VALUES(2319, 72964, 'seventy-two thousand nine hundred sixty-four'); INSERT INTO t1 VALUES(2320, 90567, 'ninety thousand five hundred sixty-seven'); INSERT INTO t1 VALUES(2321, 45760, 'forty-five thousand seven hundred sixty'); INSERT INTO t1 VALUES(2322, 71739, 'seventy-one thousand seven hundred thirty-nine'); INSERT INTO t1 VALUES(2323, 9592, 'nine thousand five hundred ninety-two'); INSERT INTO t1 VALUES(2324, 27415, 'twenty-seven thousand four hundred fifteen'); INSERT INTO t1 VALUES(2325, 62337, 'sixty-two thousand three hundred thirty-seven'); INSERT INTO t1 VALUES(2326, 81689, 'eighty-one thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(2327, 45573, 'forty-five thousand five hundred seventy-three'); INSERT INTO t1 VALUES(2328, 68144, 'sixty-eight thousand one hundred forty-four'); INSERT INTO t1 VALUES(2329, 32860, 'thirty-two thousand eight hundred sixty'); INSERT INTO t1 VALUES(2330, 56517, 'fifty-six thousand five hundred seventeen'); INSERT INTO t1 VALUES(2331, 68861, 'sixty-eight thousand eight hundred sixty-one'); INSERT INTO t1 VALUES(2332, 41858, 'forty-one thousand eight hundred fifty-eight'); INSERT INTO t1 VALUES(2333, 78410, 'seventy-eight thousand four hundred ten'); INSERT INTO t1 VALUES(2334, 28237, 'twenty-eight thousand two hundred thirty-seven'); INSERT INTO t1 VALUES(2335, 8088, 'eight thousand eighty-eight'); INSERT INTO t1 VALUES(2336, 42499, 'forty-two thousand four hundred ninety-nine'); INSERT INTO t1 VALUES(2337, 7713, 'seven thousand seven hundred thirteen'); INSERT INTO t1 VALUES(2338, 20191, 'twenty thousand one hundred ninety-one'); INSERT INTO t1 VALUES(2339, 1775, 'one thousand seven hundred seventy-five'); INSERT INTO t1 VALUES(2340, 7129, 'seven thousand one hundred twenty-nine'); INSERT INTO t1 VALUES(2341, 11178, 'eleven thousand one hundred seventy-eight'); INSERT INTO t1 VALUES(2342, 49892, 'forty-nine thousand eight hundred ninety-two'); INSERT INTO t1 VALUES(2343, 33058, 'thirty-three thousand fifty-eight'); INSERT INTO t1 VALUES(2344, 67220, 'sixty-seven thousand two hundred twenty'); INSERT INTO t1 VALUES(2345, 58015, 'fifty-eight thousand fifteen'); INSERT INTO t1 VALUES(2346, 38057, 'thirty-eight thousand fifty-seven'); INSERT INTO t1 VALUES(2347, 4161, 'four thousand one hundred sixty-one'); INSERT INTO t1 VALUES(2348, 25537, 'twenty-five thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(2349, 41878, 'forty-one thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(2350, 83886, 'eighty-three thousand eight hundred eighty-six'); INSERT INTO t1 VALUES(2351, 98891, 'ninety-eight thousand eight hundred ninety-one'); INSERT INTO t1 VALUES(2352, 47779, 'forty-seven thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(2353, 58461, 'fifty-eight thousand four hundred sixty-one'); INSERT INTO t1 VALUES(2354, 30455, 'thirty thousand four hundred fifty-five'); INSERT INTO t1 VALUES(2355, 27043, 'twenty-seven thousand forty-three'); INSERT INTO t1 VALUES(2356, 59128, 'fifty-nine thousand one hundred twenty-eight'); INSERT INTO t1 VALUES(2357, 97822, 'ninety-seven thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(2358, 77581, 'seventy-seven thousand five hundred eighty-one'); INSERT INTO t1 VALUES(2359, 4331, 'four thousand three hundred thirty-one'); INSERT INTO t1 VALUES(2360, 8507, 'eight thousand five hundred seven'); INSERT INTO t1 VALUES(2361, 99399, 'ninety-nine thousand three hundred ninety-nine'); INSERT INTO t1 VALUES(2362, 51476, 'fifty-one thousand four hundred seventy-six'); INSERT INTO t1 VALUES(2363, 53200, 'fifty-three thousand two hundred'); INSERT INTO t1 VALUES(2364, 13266, 'thirteen thousand two hundred sixty-six'); INSERT INTO t1 VALUES(2365, 15702, 'fifteen thousand seven hundred two'); INSERT INTO t1 VALUES(2366, 11484, 'eleven thousand four hundred eighty-four'); INSERT INTO t1 VALUES(2367, 900, 'nine hundred'); INSERT INTO t1 VALUES(2368, 16150, 'sixteen thousand one hundred fifty'); INSERT INTO t1 VALUES(2369, 93615, 'ninety-three thousand six hundred fifteen'); INSERT INTO t1 VALUES(2370, 1615, 'one thousand six hundred fifteen'); INSERT INTO t1 VALUES(2371, 28996, 'twenty-eight thousand nine hundred ninety-six'); INSERT INTO t1 VALUES(2372, 56584, 'fifty-six thousand five hundred eighty-four'); INSERT INTO t1 VALUES(2373, 11800, 'eleven thousand eight hundred'); INSERT INTO t1 VALUES(2374, 37889, 'thirty-seven thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(2375, 72762, 'seventy-two thousand seven hundred sixty-two'); INSERT INTO t1 VALUES(2376, 7831, 'seven thousand eight hundred thirty-one'); INSERT INTO t1 VALUES(2377, 35280, 'thirty-five thousand two hundred eighty'); INSERT INTO t1 VALUES(2378, 50068, 'fifty thousand sixty-eight'); INSERT INTO t1 VALUES(2379, 83693, 'eighty-three thousand six hundred ninety-three'); INSERT INTO t1 VALUES(2380, 59865, 'fifty-nine thousand eight hundred sixty-five'); INSERT INTO t1 VALUES(2381, 10358, 'ten thousand three hundred fifty-eight'); INSERT INTO t1 VALUES(2382, 16362, 'sixteen thousand three hundred sixty-two'); INSERT INTO t1 VALUES(2383, 84725, 'eighty-four thousand seven hundred twenty-five'); INSERT INTO t1 VALUES(2384, 35300, 'thirty-five thousand three hundred'); INSERT INTO t1 VALUES(2385, 74518, 'seventy-four thousand five hundred eighteen'); INSERT INTO t1 VALUES(2386, 61006, 'sixty-one thousand six'); INSERT INTO t1 VALUES(2387, 12851, 'twelve thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(2388, 24086, 'twenty-four thousand eighty-six'); INSERT INTO t1 VALUES(2389, 22433, 'twenty-two thousand four hundred thirty-three'); INSERT INTO t1 VALUES(2390, 15308, 'fifteen thousand three hundred eight'); INSERT INTO t1 VALUES(2391, 79011, 'seventy-nine thousand eleven'); INSERT INTO t1 VALUES(2392, 10864, 'ten thousand eight hundred sixty-four'); INSERT INTO t1 VALUES(2393, 18549, 'eighteen thousand five hundred forty-nine'); INSERT INTO t1 VALUES(2394, 17322, 'seventeen thousand three hundred twenty-two'); INSERT INTO t1 VALUES(2395, 29213, 'twenty-nine thousand two hundred thirteen'); INSERT INTO t1 VALUES(2396, 1653, 'one thousand six hundred fifty-three'); INSERT INTO t1 VALUES(2397, 95919, 'ninety-five thousand nine hundred nineteen'); INSERT INTO t1 VALUES(2398, 26201, 'twenty-six thousand two hundred one'); INSERT INTO t1 VALUES(2399, 73906, 'seventy-three thousand nine hundred six'); INSERT INTO t1 VALUES(2400, 15889, 'fifteen thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(2401, 15530, 'fifteen thousand five hundred thirty'); INSERT INTO t1 VALUES(2402, 34907, 'thirty-four thousand nine hundred seven'); INSERT INTO t1 VALUES(2403, 22382, 'twenty-two thousand three hundred eighty-two'); INSERT INTO t1 VALUES(2404, 14112, 'fourteen thousand one hundred twelve'); INSERT INTO t1 VALUES(2405, 64721, 'sixty-four thousand seven hundred twenty-one'); INSERT INTO t1 VALUES(2406, 3153, 'three thousand one hundred fifty-three'); INSERT INTO t1 VALUES(2407, 3035, 'three thousand thirty-five'); INSERT INTO t1 VALUES(2408, 55440, 'fifty-five thousand four hundred forty'); INSERT INTO t1 VALUES(2409, 69326, 'sixty-nine thousand three hundred twenty-six'); INSERT INTO t1 VALUES(2410, 23841, 'twenty-three thousand eight hundred forty-one'); INSERT INTO t1 VALUES(2411, 15007, 'fifteen thousand seven'); INSERT INTO t1 VALUES(2412, 19219, 'nineteen thousand two hundred nineteen'); INSERT INTO t1 VALUES(2413, 51376, 'fifty-one thousand three hundred seventy-six'); INSERT INTO t1 VALUES(2414, 35692, 'thirty-five thousand six hundred ninety-two'); INSERT INTO t1 VALUES(2415, 55305, 'fifty-five thousand three hundred five'); INSERT INTO t1 VALUES(2416, 97024, 'ninety-seven thousand twenty-four'); INSERT INTO t1 VALUES(2417, 12411, 'twelve thousand four hundred eleven'); INSERT INTO t1 VALUES(2418, 39889, 'thirty-nine thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(2419, 5699, 'five thousand six hundred ninety-nine'); INSERT INTO t1 VALUES(2420, 84155, 'eighty-four thousand one hundred fifty-five'); INSERT INTO t1 VALUES(2421, 90607, 'ninety thousand six hundred seven'); INSERT INTO t1 VALUES(2422, 69467, 'sixty-nine thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(2423, 58013, 'fifty-eight thousand thirteen'); INSERT INTO t1 VALUES(2424, 3519, 'three thousand five hundred nineteen'); INSERT INTO t1 VALUES(2425, 96453, 'ninety-six thousand four hundred fifty-three'); INSERT INTO t1 VALUES(2426, 87649, 'eighty-seven thousand six hundred forty-nine'); INSERT INTO t1 VALUES(2427, 83414, 'eighty-three thousand four hundred fourteen'); INSERT INTO t1 VALUES(2428, 92843, 'ninety-two thousand eight hundred forty-three'); INSERT INTO t1 VALUES(2429, 32042, 'thirty-two thousand forty-two'); INSERT INTO t1 VALUES(2430, 12308, 'twelve thousand three hundred eight'); INSERT INTO t1 VALUES(2431, 54515, 'fifty-four thousand five hundred fifteen'); INSERT INTO t1 VALUES(2432, 2344, 'two thousand three hundred forty-four'); INSERT INTO t1 VALUES(2433, 2867, 'two thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(2434, 96731, 'ninety-six thousand seven hundred thirty-one'); INSERT INTO t1 VALUES(2435, 30907, 'thirty thousand nine hundred seven'); INSERT INTO t1 VALUES(2436, 15286, 'fifteen thousand two hundred eighty-six'); INSERT INTO t1 VALUES(2437, 11164, 'eleven thousand one hundred sixty-four'); INSERT INTO t1 VALUES(2438, 31873, 'thirty-one thousand eight hundred seventy-three'); INSERT INTO t1 VALUES(2439, 78681, 'seventy-eight thousand six hundred eighty-one'); INSERT INTO t1 VALUES(2440, 4509, 'four thousand five hundred nine'); INSERT INTO t1 VALUES(2441, 45499, 'forty-five thousand four hundred ninety-nine'); INSERT INTO t1 VALUES(2442, 49464, 'forty-nine thousand four hundred sixty-four'); INSERT INTO t1 VALUES(2443, 91260, 'ninety-one thousand two hundred sixty'); INSERT INTO t1 VALUES(2444, 30905, 'thirty thousand nine hundred five'); INSERT INTO t1 VALUES(2445, 86356, 'eighty-six thousand three hundred fifty-six'); INSERT INTO t1 VALUES(2446, 86433, 'eighty-six thousand four hundred thirty-three'); INSERT INTO t1 VALUES(2447, 48148, 'forty-eight thousand one hundred forty-eight'); INSERT INTO t1 VALUES(2448, 89993, 'eighty-nine thousand nine hundred ninety-three'); INSERT INTO t1 VALUES(2449, 56655, 'fifty-six thousand six hundred fifty-five'); INSERT INTO t1 VALUES(2450, 81280, 'eighty-one thousand two hundred eighty'); INSERT INTO t1 VALUES(2451, 79133, 'seventy-nine thousand one hundred thirty-three'); INSERT INTO t1 VALUES(2452, 75462, 'seventy-five thousand four hundred sixty-two'); INSERT INTO t1 VALUES(2453, 10338, 'ten thousand three hundred thirty-eight'); INSERT INTO t1 VALUES(2454, 23459, 'twenty-three thousand four hundred fifty-nine'); INSERT INTO t1 VALUES(2455, 51911, 'fifty-one thousand nine hundred eleven'); INSERT INTO t1 VALUES(2456, 17794, 'seventeen thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(2457, 89526, 'eighty-nine thousand five hundred twenty-six'); INSERT INTO t1 VALUES(2458, 33314, 'thirty-three thousand three hundred fourteen'); INSERT INTO t1 VALUES(2459, 52183, 'fifty-two thousand one hundred eighty-three'); INSERT INTO t1 VALUES(2460, 16504, 'sixteen thousand five hundred four'); INSERT INTO t1 VALUES(2461, 70874, 'seventy thousand eight hundred seventy-four'); INSERT INTO t1 VALUES(2462, 96805, 'ninety-six thousand eight hundred five'); INSERT INTO t1 VALUES(2463, 56528, 'fifty-six thousand five hundred twenty-eight'); INSERT INTO t1 VALUES(2464, 85960, 'eighty-five thousand nine hundred sixty'); INSERT INTO t1 VALUES(2465, 72538, 'seventy-two thousand five hundred thirty-eight'); INSERT INTO t1 VALUES(2466, 62462, 'sixty-two thousand four hundred sixty-two'); INSERT INTO t1 VALUES(2467, 49864, 'forty-nine thousand eight hundred sixty-four'); INSERT INTO t1 VALUES(2468, 61035, 'sixty-one thousand thirty-five'); INSERT INTO t1 VALUES(2469, 49017, 'forty-nine thousand seventeen'); INSERT INTO t1 VALUES(2470, 71323, 'seventy-one thousand three hundred twenty-three'); INSERT INTO t1 VALUES(2471, 55874, 'fifty-five thousand eight hundred seventy-four'); INSERT INTO t1 VALUES(2472, 10485, 'ten thousand four hundred eighty-five'); INSERT INTO t1 VALUES(2473, 9879, 'nine thousand eight hundred seventy-nine'); INSERT INTO t1 VALUES(2474, 80428, 'eighty thousand four hundred twenty-eight'); INSERT INTO t1 VALUES(2475, 14950, 'fourteen thousand nine hundred fifty'); INSERT INTO t1 VALUES(2476, 79110, 'seventy-nine thousand one hundred ten'); INSERT INTO t1 VALUES(2477, 12431, 'twelve thousand four hundred thirty-one'); INSERT INTO t1 VALUES(2478, 7210, 'seven thousand two hundred ten'); INSERT INTO t1 VALUES(2479, 54432, 'fifty-four thousand four hundred thirty-two'); INSERT INTO t1 VALUES(2480, 79469, 'seventy-nine thousand four hundred sixty-nine'); INSERT INTO t1 VALUES(2481, 91597, 'ninety-one thousand five hundred ninety-seven'); INSERT INTO t1 VALUES(2482, 66429, 'sixty-six thousand four hundred twenty-nine'); INSERT INTO t1 VALUES(2483, 59248, 'fifty-nine thousand two hundred forty-eight'); INSERT INTO t1 VALUES(2484, 64539, 'sixty-four thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(2485, 87603, 'eighty-seven thousand six hundred three'); INSERT INTO t1 VALUES(2486, 27231, 'twenty-seven thousand two hundred thirty-one'); INSERT INTO t1 VALUES(2487, 59204, 'fifty-nine thousand two hundred four'); INSERT INTO t1 VALUES(2488, 28515, 'twenty-eight thousand five hundred fifteen'); INSERT INTO t1 VALUES(2489, 50385, 'fifty thousand three hundred eighty-five'); INSERT INTO t1 VALUES(2490, 62834, 'sixty-two thousand eight hundred thirty-four'); INSERT INTO t1 VALUES(2491, 13068, 'thirteen thousand sixty-eight'); INSERT INTO t1 VALUES(2492, 63254, 'sixty-three thousand two hundred fifty-four'); INSERT INTO t1 VALUES(2493, 27861, 'twenty-seven thousand eight hundred sixty-one'); INSERT INTO t1 VALUES(2494, 6889, 'six thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(2495, 12416, 'twelve thousand four hundred sixteen'); INSERT INTO t1 VALUES(2496, 48031, 'forty-eight thousand thirty-one'); INSERT INTO t1 VALUES(2497, 19282, 'nineteen thousand two hundred eighty-two'); INSERT INTO t1 VALUES(2498, 16693, 'sixteen thousand six hundred ninety-three'); INSERT INTO t1 VALUES(2499, 74076, 'seventy-four thousand seventy-six'); INSERT INTO t1 VALUES(2500, 88162, 'eighty-eight thousand one hundred sixty-two'); INSERT INTO t1 VALUES(2501, 78640, 'seventy-eight thousand six hundred forty'); INSERT INTO t1 VALUES(2502, 81022, 'eighty-one thousand twenty-two'); INSERT INTO t1 VALUES(2503, 99539, 'ninety-nine thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(2504, 9874, 'nine thousand eight hundred seventy-four'); INSERT INTO t1 VALUES(2505, 73968, 'seventy-three thousand nine hundred sixty-eight'); INSERT INTO t1 VALUES(2506, 13400, 'thirteen thousand four hundred'); INSERT INTO t1 VALUES(2507, 66477, 'sixty-six thousand four hundred seventy-seven'); INSERT INTO t1 VALUES(2508, 533, 'five hundred thirty-three'); INSERT INTO t1 VALUES(2509, 48806, 'forty-eight thousand eight hundred six'); INSERT INTO t1 VALUES(2510, 83847, 'eighty-three thousand eight hundred forty-seven'); INSERT INTO t1 VALUES(2511, 54325, 'fifty-four thousand three hundred twenty-five'); INSERT INTO t1 VALUES(2512, 88430, 'eighty-eight thousand four hundred thirty'); INSERT INTO t1 VALUES(2513, 12820, 'twelve thousand eight hundred twenty'); INSERT INTO t1 VALUES(2514, 78692, 'seventy-eight thousand six hundred ninety-two'); INSERT INTO t1 VALUES(2515, 80277, 'eighty thousand two hundred seventy-seven'); INSERT INTO t1 VALUES(2516, 16435, 'sixteen thousand four hundred thirty-five'); INSERT INTO t1 VALUES(2517, 48009, 'forty-eight thousand nine'); INSERT INTO t1 VALUES(2518, 84351, 'eighty-four thousand three hundred fifty-one'); INSERT INTO t1 VALUES(2519, 86561, 'eighty-six thousand five hundred sixty-one'); INSERT INTO t1 VALUES(2520, 55963, 'fifty-five thousand nine hundred sixty-three'); INSERT INTO t1 VALUES(2521, 78525, 'seventy-eight thousand five hundred twenty-five'); INSERT INTO t1 VALUES(2522, 80180, 'eighty thousand one hundred eighty'); INSERT INTO t1 VALUES(2523, 55281, 'fifty-five thousand two hundred eighty-one'); INSERT INTO t1 VALUES(2524, 47920, 'forty-seven thousand nine hundred twenty'); INSERT INTO t1 VALUES(2525, 71791, 'seventy-one thousand seven hundred ninety-one'); INSERT INTO t1 VALUES(2526, 88415, 'eighty-eight thousand four hundred fifteen'); INSERT INTO t1 VALUES(2527, 98768, 'ninety-eight thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(2528, 13409, 'thirteen thousand four hundred nine'); INSERT INTO t1 VALUES(2529, 79920, 'seventy-nine thousand nine hundred twenty'); INSERT INTO t1 VALUES(2530, 58758, 'fifty-eight thousand seven hundred fifty-eight'); INSERT INTO t1 VALUES(2531, 35392, 'thirty-five thousand three hundred ninety-two'); INSERT INTO t1 VALUES(2532, 31261, 'thirty-one thousand two hundred sixty-one'); INSERT INTO t1 VALUES(2533, 78315, 'seventy-eight thousand three hundred fifteen'); INSERT INTO t1 VALUES(2534, 7461, 'seven thousand four hundred sixty-one'); INSERT INTO t1 VALUES(2535, 33520, 'thirty-three thousand five hundred twenty'); INSERT INTO t1 VALUES(2536, 49764, 'forty-nine thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(2537, 37906, 'thirty-seven thousand nine hundred six'); INSERT INTO t1 VALUES(2538, 6997, 'six thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(2539, 81872, 'eighty-one thousand eight hundred seventy-two'); INSERT INTO t1 VALUES(2540, 74836, 'seventy-four thousand eight hundred thirty-six'); INSERT INTO t1 VALUES(2541, 92051, 'ninety-two thousand fifty-one'); INSERT INTO t1 VALUES(2542, 40503, 'forty thousand five hundred three'); INSERT INTO t1 VALUES(2543, 46298, 'forty-six thousand two hundred ninety-eight'); INSERT INTO t1 VALUES(2544, 27617, 'twenty-seven thousand six hundred seventeen'); INSERT INTO t1 VALUES(2545, 29551, 'twenty-nine thousand five hundred fifty-one'); INSERT INTO t1 VALUES(2546, 7529, 'seven thousand five hundred twenty-nine'); INSERT INTO t1 VALUES(2547, 56522, 'fifty-six thousand five hundred twenty-two'); INSERT INTO t1 VALUES(2548, 5626, 'five thousand six hundred twenty-six'); INSERT INTO t1 VALUES(2549, 2254, 'two thousand two hundred fifty-four'); INSERT INTO t1 VALUES(2550, 46069, 'forty-six thousand sixty-nine'); INSERT INTO t1 VALUES(2551, 9090, 'nine thousand ninety'); INSERT INTO t1 VALUES(2552, 86773, 'eighty-six thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(2553, 99205, 'ninety-nine thousand two hundred five'); INSERT INTO t1 VALUES(2554, 20579, 'twenty thousand five hundred seventy-nine'); INSERT INTO t1 VALUES(2555, 64280, 'sixty-four thousand two hundred eighty'); INSERT INTO t1 VALUES(2556, 87563, 'eighty-seven thousand five hundred sixty-three'); INSERT INTO t1 VALUES(2557, 4312, 'four thousand three hundred twelve'); INSERT INTO t1 VALUES(2558, 6025, 'six thousand twenty-five'); INSERT INTO t1 VALUES(2559, 78763, 'seventy-eight thousand seven hundred sixty-three'); INSERT INTO t1 VALUES(2560, 26154, 'twenty-six thousand one hundred fifty-four'); INSERT INTO t1 VALUES(2561, 72939, 'seventy-two thousand nine hundred thirty-nine'); INSERT INTO t1 VALUES(2562, 99853, 'ninety-nine thousand eight hundred fifty-three'); INSERT INTO t1 VALUES(2563, 65317, 'sixty-five thousand three hundred seventeen'); INSERT INTO t1 VALUES(2564, 57917, 'fifty-seven thousand nine hundred seventeen'); INSERT INTO t1 VALUES(2565, 77517, 'seventy-seven thousand five hundred seventeen'); INSERT INTO t1 VALUES(2566, 73037, 'seventy-three thousand thirty-seven'); INSERT INTO t1 VALUES(2567, 38481, 'thirty-eight thousand four hundred eighty-one'); INSERT INTO t1 VALUES(2568, 22911, 'twenty-two thousand nine hundred eleven'); INSERT INTO t1 VALUES(2569, 63676, 'sixty-three thousand six hundred seventy-six'); INSERT INTO t1 VALUES(2570, 56928, 'fifty-six thousand nine hundred twenty-eight'); INSERT INTO t1 VALUES(2571, 36467, 'thirty-six thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(2572, 44792, 'forty-four thousand seven hundred ninety-two'); INSERT INTO t1 VALUES(2573, 92596, 'ninety-two thousand five hundred ninety-six'); INSERT INTO t1 VALUES(2574, 17935, 'seventeen thousand nine hundred thirty-five'); INSERT INTO t1 VALUES(2575, 97359, 'ninety-seven thousand three hundred fifty-nine'); INSERT INTO t1 VALUES(2576, 91776, 'ninety-one thousand seven hundred seventy-six'); INSERT INTO t1 VALUES(2577, 31009, 'thirty-one thousand nine'); INSERT INTO t1 VALUES(2578, 72743, 'seventy-two thousand seven hundred forty-three'); INSERT INTO t1 VALUES(2579, 69918, 'sixty-nine thousand nine hundred eighteen'); INSERT INTO t1 VALUES(2580, 83414, 'eighty-three thousand four hundred fourteen'); INSERT INTO t1 VALUES(2581, 92738, 'ninety-two thousand seven hundred thirty-eight'); INSERT INTO t1 VALUES(2582, 72964, 'seventy-two thousand nine hundred sixty-four'); INSERT INTO t1 VALUES(2583, 88476, 'eighty-eight thousand four hundred seventy-six'); INSERT INTO t1 VALUES(2584, 67391, 'sixty-seven thousand three hundred ninety-one'); INSERT INTO t1 VALUES(2585, 56497, 'fifty-six thousand four hundred ninety-seven'); INSERT INTO t1 VALUES(2586, 60464, 'sixty thousand four hundred sixty-four'); INSERT INTO t1 VALUES(2587, 37357, 'thirty-seven thousand three hundred fifty-seven'); INSERT INTO t1 VALUES(2588, 41958, 'forty-one thousand nine hundred fifty-eight'); INSERT INTO t1 VALUES(2589, 25032, 'twenty-five thousand thirty-two'); INSERT INTO t1 VALUES(2590, 83740, 'eighty-three thousand seven hundred forty'); INSERT INTO t1 VALUES(2591, 53590, 'fifty-three thousand five hundred ninety'); INSERT INTO t1 VALUES(2592, 71491, 'seventy-one thousand four hundred ninety-one'); INSERT INTO t1 VALUES(2593, 14785, 'fourteen thousand seven hundred eighty-five'); INSERT INTO t1 VALUES(2594, 41600, 'forty-one thousand six hundred'); INSERT INTO t1 VALUES(2595, 38531, 'thirty-eight thousand five hundred thirty-one'); INSERT INTO t1 VALUES(2596, 71601, 'seventy-one thousand six hundred one'); INSERT INTO t1 VALUES(2597, 96837, 'ninety-six thousand eight hundred thirty-seven'); INSERT INTO t1 VALUES(2598, 3363, 'three thousand three hundred sixty-three'); INSERT INTO t1 VALUES(2599, 64002, 'sixty-four thousand two'); INSERT INTO t1 VALUES(2600, 89915, 'eighty-nine thousand nine hundred fifteen'); INSERT INTO t1 VALUES(2601, 95469, 'ninety-five thousand four hundred sixty-nine'); INSERT INTO t1 VALUES(2602, 44288, 'forty-four thousand two hundred eighty-eight'); INSERT INTO t1 VALUES(2603, 85965, 'eighty-five thousand nine hundred sixty-five'); INSERT INTO t1 VALUES(2604, 91882, 'ninety-one thousand eight hundred eighty-two'); INSERT INTO t1 VALUES(2605, 513, 'five hundred thirteen'); INSERT INTO t1 VALUES(2606, 5732, 'five thousand seven hundred thirty-two'); INSERT INTO t1 VALUES(2607, 96851, 'ninety-six thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(2608, 91170, 'ninety-one thousand one hundred seventy'); INSERT INTO t1 VALUES(2609, 1228, 'one thousand two hundred twenty-eight'); INSERT INTO t1 VALUES(2610, 82357, 'eighty-two thousand three hundred fifty-seven'); INSERT INTO t1 VALUES(2611, 6670, 'six thousand six hundred seventy'); INSERT INTO t1 VALUES(2612, 26586, 'twenty-six thousand five hundred eighty-six'); INSERT INTO t1 VALUES(2613, 79482, 'seventy-nine thousand four hundred eighty-two'); INSERT INTO t1 VALUES(2614, 55343, 'fifty-five thousand three hundred forty-three'); INSERT INTO t1 VALUES(2615, 20144, 'twenty thousand one hundred forty-four'); INSERT INTO t1 VALUES(2616, 11751, 'eleven thousand seven hundred fifty-one'); INSERT INTO t1 VALUES(2617, 60610, 'sixty thousand six hundred ten'); INSERT INTO t1 VALUES(2618, 56404, 'fifty-six thousand four hundred four'); INSERT INTO t1 VALUES(2619, 80658, 'eighty thousand six hundred fifty-eight'); INSERT INTO t1 VALUES(2620, 8435, 'eight thousand four hundred thirty-five'); INSERT INTO t1 VALUES(2621, 46351, 'forty-six thousand three hundred fifty-one'); INSERT INTO t1 VALUES(2622, 99832, 'ninety-nine thousand eight hundred thirty-two'); INSERT INTO t1 VALUES(2623, 6900, 'six thousand nine hundred'); INSERT INTO t1 VALUES(2624, 7675, 'seven thousand six hundred seventy-five'); INSERT INTO t1 VALUES(2625, 55956, 'fifty-five thousand nine hundred fifty-six'); INSERT INTO t1 VALUES(2626, 37113, 'thirty-seven thousand one hundred thirteen'); INSERT INTO t1 VALUES(2627, 4972, 'four thousand nine hundred seventy-two'); INSERT INTO t1 VALUES(2628, 18256, 'eighteen thousand two hundred fifty-six'); INSERT INTO t1 VALUES(2629, 40221, 'forty thousand two hundred twenty-one'); INSERT INTO t1 VALUES(2630, 95172, 'ninety-five thousand one hundred seventy-two'); INSERT INTO t1 VALUES(2631, 92335, 'ninety-two thousand three hundred thirty-five'); INSERT INTO t1 VALUES(2632, 84250, 'eighty-four thousand two hundred fifty'); INSERT INTO t1 VALUES(2633, 62240, 'sixty-two thousand two hundred forty'); INSERT INTO t1 VALUES(2634, 83961, 'eighty-three thousand nine hundred sixty-one'); INSERT INTO t1 VALUES(2635, 43912, 'forty-three thousand nine hundred twelve'); INSERT INTO t1 VALUES(2636, 7170, 'seven thousand one hundred seventy'); INSERT INTO t1 VALUES(2637, 73714, 'seventy-three thousand seven hundred fourteen'); INSERT INTO t1 VALUES(2638, 53959, 'fifty-three thousand nine hundred fifty-nine'); INSERT INTO t1 VALUES(2639, 61730, 'sixty-one thousand seven hundred thirty'); INSERT INTO t1 VALUES(2640, 39655, 'thirty-nine thousand six hundred fifty-five'); INSERT INTO t1 VALUES(2641, 93862, 'ninety-three thousand eight hundred sixty-two'); INSERT INTO t1 VALUES(2642, 45652, 'forty-five thousand six hundred fifty-two'); INSERT INTO t1 VALUES(2643, 7056, 'seven thousand fifty-six'); INSERT INTO t1 VALUES(2644, 1046, 'one thousand forty-six'); INSERT INTO t1 VALUES(2645, 95743, 'ninety-five thousand seven hundred forty-three'); INSERT INTO t1 VALUES(2646, 70708, 'seventy thousand seven hundred eight'); INSERT INTO t1 VALUES(2647, 76902, 'seventy-six thousand nine hundred two'); INSERT INTO t1 VALUES(2648, 3525, 'three thousand five hundred twenty-five'); INSERT INTO t1 VALUES(2649, 65048, 'sixty-five thousand forty-eight'); INSERT INTO t1 VALUES(2650, 91880, 'ninety-one thousand eight hundred eighty'); INSERT INTO t1 VALUES(2651, 80301, 'eighty thousand three hundred one'); INSERT INTO t1 VALUES(2652, 25464, 'twenty-five thousand four hundred sixty-four'); INSERT INTO t1 VALUES(2653, 90215, 'ninety thousand two hundred fifteen'); INSERT INTO t1 VALUES(2654, 88511, 'eighty-eight thousand five hundred eleven'); INSERT INTO t1 VALUES(2655, 55773, 'fifty-five thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(2656, 29924, 'twenty-nine thousand nine hundred twenty-four'); INSERT INTO t1 VALUES(2657, 53921, 'fifty-three thousand nine hundred twenty-one'); INSERT INTO t1 VALUES(2658, 90428, 'ninety thousand four hundred twenty-eight'); INSERT INTO t1 VALUES(2659, 88357, 'eighty-eight thousand three hundred fifty-seven'); INSERT INTO t1 VALUES(2660, 59997, 'fifty-nine thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(2661, 17591, 'seventeen thousand five hundred ninety-one'); INSERT INTO t1 VALUES(2662, 54844, 'fifty-four thousand eight hundred forty-four'); INSERT INTO t1 VALUES(2663, 35516, 'thirty-five thousand five hundred sixteen'); INSERT INTO t1 VALUES(2664, 5025, 'five thousand twenty-five'); INSERT INTO t1 VALUES(2665, 54406, 'fifty-four thousand four hundred six'); INSERT INTO t1 VALUES(2666, 69939, 'sixty-nine thousand nine hundred thirty-nine'); INSERT INTO t1 VALUES(2667, 92861, 'ninety-two thousand eight hundred sixty-one'); INSERT INTO t1 VALUES(2668, 11765, 'eleven thousand seven hundred sixty-five'); INSERT INTO t1 VALUES(2669, 59087, 'fifty-nine thousand eighty-seven'); INSERT INTO t1 VALUES(2670, 70269, 'seventy thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(2671, 80231, 'eighty thousand two hundred thirty-one'); INSERT INTO t1 VALUES(2672, 35475, 'thirty-five thousand four hundred seventy-five'); INSERT INTO t1 VALUES(2673, 82681, 'eighty-two thousand six hundred eighty-one'); INSERT INTO t1 VALUES(2674, 2067, 'two thousand sixty-seven'); INSERT INTO t1 VALUES(2675, 49348, 'forty-nine thousand three hundred forty-eight'); INSERT INTO t1 VALUES(2676, 36543, 'thirty-six thousand five hundred forty-three'); INSERT INTO t1 VALUES(2677, 86308, 'eighty-six thousand three hundred eight'); INSERT INTO t1 VALUES(2678, 43122, 'forty-three thousand one hundred twenty-two'); INSERT INTO t1 VALUES(2679, 81938, 'eighty-one thousand nine hundred thirty-eight'); INSERT INTO t1 VALUES(2680, 24728, 'twenty-four thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(2681, 91959, 'ninety-one thousand nine hundred fifty-nine'); INSERT INTO t1 VALUES(2682, 74241, 'seventy-four thousand two hundred forty-one'); INSERT INTO t1 VALUES(2683, 48075, 'forty-eight thousand seventy-five'); INSERT INTO t1 VALUES(2684, 72660, 'seventy-two thousand six hundred sixty'); INSERT INTO t1 VALUES(2685, 33248, 'thirty-three thousand two hundred forty-eight'); INSERT INTO t1 VALUES(2686, 4872, 'four thousand eight hundred seventy-two'); INSERT INTO t1 VALUES(2687, 31241, 'thirty-one thousand two hundred forty-one'); INSERT INTO t1 VALUES(2688, 34133, 'thirty-four thousand one hundred thirty-three'); INSERT INTO t1 VALUES(2689, 60159, 'sixty thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(2690, 7162, 'seven thousand one hundred sixty-two'); INSERT INTO t1 VALUES(2691, 78309, 'seventy-eight thousand three hundred nine'); INSERT INTO t1 VALUES(2692, 50699, 'fifty thousand six hundred ninety-nine'); INSERT INTO t1 VALUES(2693, 6471, 'six thousand four hundred seventy-one'); INSERT INTO t1 VALUES(2694, 90614, 'ninety thousand six hundred fourteen'); INSERT INTO t1 VALUES(2695, 82933, 'eighty-two thousand nine hundred thirty-three'); INSERT INTO t1 VALUES(2696, 82273, 'eighty-two thousand two hundred seventy-three'); INSERT INTO t1 VALUES(2697, 25635, 'twenty-five thousand six hundred thirty-five'); INSERT INTO t1 VALUES(2698, 35610, 'thirty-five thousand six hundred ten'); INSERT INTO t1 VALUES(2699, 98912, 'ninety-eight thousand nine hundred twelve'); INSERT INTO t1 VALUES(2700, 91444, 'ninety-one thousand four hundred forty-four'); INSERT INTO t1 VALUES(2701, 1914, 'one thousand nine hundred fourteen'); INSERT INTO t1 VALUES(2702, 10589, 'ten thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(2703, 34346, 'thirty-four thousand three hundred forty-six'); INSERT INTO t1 VALUES(2704, 7228, 'seven thousand two hundred twenty-eight'); INSERT INTO t1 VALUES(2705, 1019, 'one thousand nineteen'); INSERT INTO t1 VALUES(2706, 26110, 'twenty-six thousand one hundred ten'); INSERT INTO t1 VALUES(2707, 97745, 'ninety-seven thousand seven hundred forty-five'); INSERT INTO t1 VALUES(2708, 57434, 'fifty-seven thousand four hundred thirty-four'); INSERT INTO t1 VALUES(2709, 65242, 'sixty-five thousand two hundred forty-two'); INSERT INTO t1 VALUES(2710, 65699, 'sixty-five thousand six hundred ninety-nine'); INSERT INTO t1 VALUES(2711, 19845, 'nineteen thousand eight hundred forty-five'); INSERT INTO t1 VALUES(2712, 57512, 'fifty-seven thousand five hundred twelve'); INSERT INTO t1 VALUES(2713, 14301, 'fourteen thousand three hundred one'); INSERT INTO t1 VALUES(2714, 23734, 'twenty-three thousand seven hundred thirty-four'); INSERT INTO t1 VALUES(2715, 14007, 'fourteen thousand seven'); INSERT INTO t1 VALUES(2716, 70178, 'seventy thousand one hundred seventy-eight'); INSERT INTO t1 VALUES(2717, 4880, 'four thousand eight hundred eighty'); INSERT INTO t1 VALUES(2718, 86278, 'eighty-six thousand two hundred seventy-eight'); INSERT INTO t1 VALUES(2719, 53940, 'fifty-three thousand nine hundred forty'); INSERT INTO t1 VALUES(2720, 18788, 'eighteen thousand seven hundred eighty-eight'); INSERT INTO t1 VALUES(2721, 90716, 'ninety thousand seven hundred sixteen'); INSERT INTO t1 VALUES(2722, 54836, 'fifty-four thousand eight hundred thirty-six'); INSERT INTO t1 VALUES(2723, 11911, 'eleven thousand nine hundred eleven'); INSERT INTO t1 VALUES(2724, 39450, 'thirty-nine thousand four hundred fifty'); INSERT INTO t1 VALUES(2725, 84291, 'eighty-four thousand two hundred ninety-one'); INSERT INTO t1 VALUES(2726, 72900, 'seventy-two thousand nine hundred'); INSERT INTO t1 VALUES(2727, 27958, 'twenty-seven thousand nine hundred fifty-eight'); INSERT INTO t1 VALUES(2728, 54297, 'fifty-four thousand two hundred ninety-seven'); INSERT INTO t1 VALUES(2729, 11001, 'eleven thousand one'); INSERT INTO t1 VALUES(2730, 58346, 'fifty-eight thousand three hundred forty-six'); INSERT INTO t1 VALUES(2731, 11777, 'eleven thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(2732, 46942, 'forty-six thousand nine hundred forty-two'); INSERT INTO t1 VALUES(2733, 54566, 'fifty-four thousand five hundred sixty-six'); INSERT INTO t1 VALUES(2734, 70837, 'seventy thousand eight hundred thirty-seven'); INSERT INTO t1 VALUES(2735, 63581, 'sixty-three thousand five hundred eighty-one'); INSERT INTO t1 VALUES(2736, 37599, 'thirty-seven thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(2737, 44741, 'forty-four thousand seven hundred forty-one'); INSERT INTO t1 VALUES(2738, 84546, 'eighty-four thousand five hundred forty-six'); INSERT INTO t1 VALUES(2739, 23859, 'twenty-three thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(2740, 85683, 'eighty-five thousand six hundred eighty-three'); INSERT INTO t1 VALUES(2741, 13524, 'thirteen thousand five hundred twenty-four'); INSERT INTO t1 VALUES(2742, 34650, 'thirty-four thousand six hundred fifty'); INSERT INTO t1 VALUES(2743, 62314, 'sixty-two thousand three hundred fourteen'); INSERT INTO t1 VALUES(2744, 91312, 'ninety-one thousand three hundred twelve'); INSERT INTO t1 VALUES(2745, 64279, 'sixty-four thousand two hundred seventy-nine'); INSERT INTO t1 VALUES(2746, 87514, 'eighty-seven thousand five hundred fourteen'); INSERT INTO t1 VALUES(2747, 30318, 'thirty thousand three hundred eighteen'); INSERT INTO t1 VALUES(2748, 22735, 'twenty-two thousand seven hundred thirty-five'); INSERT INTO t1 VALUES(2749, 29545, 'twenty-nine thousand five hundred forty-five'); INSERT INTO t1 VALUES(2750, 73394, 'seventy-three thousand three hundred ninety-four'); INSERT INTO t1 VALUES(2751, 80392, 'eighty thousand three hundred ninety-two'); INSERT INTO t1 VALUES(2752, 1304, 'one thousand three hundred four'); INSERT INTO t1 VALUES(2753, 1972, 'one thousand nine hundred seventy-two'); INSERT INTO t1 VALUES(2754, 33235, 'thirty-three thousand two hundred thirty-five'); INSERT INTO t1 VALUES(2755, 18744, 'eighteen thousand seven hundred forty-four'); INSERT INTO t1 VALUES(2756, 77012, 'seventy-seven thousand twelve'); INSERT INTO t1 VALUES(2757, 56610, 'fifty-six thousand six hundred ten'); INSERT INTO t1 VALUES(2758, 58529, 'fifty-eight thousand five hundred twenty-nine'); INSERT INTO t1 VALUES(2759, 57360, 'fifty-seven thousand three hundred sixty'); INSERT INTO t1 VALUES(2760, 44061, 'forty-four thousand sixty-one'); INSERT INTO t1 VALUES(2761, 66237, 'sixty-six thousand two hundred thirty-seven'); INSERT INTO t1 VALUES(2762, 6784, 'six thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(2763, 61316, 'sixty-one thousand three hundred sixteen'); INSERT INTO t1 VALUES(2764, 20221, 'twenty thousand two hundred twenty-one'); INSERT INTO t1 VALUES(2765, 36549, 'thirty-six thousand five hundred forty-nine'); INSERT INTO t1 VALUES(2766, 64468, 'sixty-four thousand four hundred sixty-eight'); INSERT INTO t1 VALUES(2767, 43869, 'forty-three thousand eight hundred sixty-nine'); INSERT INTO t1 VALUES(2768, 15308, 'fifteen thousand three hundred eight'); INSERT INTO t1 VALUES(2769, 24506, 'twenty-four thousand five hundred six'); INSERT INTO t1 VALUES(2770, 69527, 'sixty-nine thousand five hundred twenty-seven'); INSERT INTO t1 VALUES(2771, 44500, 'forty-four thousand five hundred'); INSERT INTO t1 VALUES(2772, 59079, 'fifty-nine thousand seventy-nine'); INSERT INTO t1 VALUES(2773, 20781, 'twenty thousand seven hundred eighty-one'); INSERT INTO t1 VALUES(2774, 68744, 'sixty-eight thousand seven hundred forty-four'); INSERT INTO t1 VALUES(2775, 10978, 'ten thousand nine hundred seventy-eight'); INSERT INTO t1 VALUES(2776, 8299, 'eight thousand two hundred ninety-nine'); INSERT INTO t1 VALUES(2777, 91620, 'ninety-one thousand six hundred twenty'); INSERT INTO t1 VALUES(2778, 41435, 'forty-one thousand four hundred thirty-five'); INSERT INTO t1 VALUES(2779, 99436, 'ninety-nine thousand four hundred thirty-six'); INSERT INTO t1 VALUES(2780, 36081, 'thirty-six thousand eighty-one'); INSERT INTO t1 VALUES(2781, 24092, 'twenty-four thousand ninety-two'); INSERT INTO t1 VALUES(2782, 90655, 'ninety thousand six hundred fifty-five'); INSERT INTO t1 VALUES(2783, 28667, 'twenty-eight thousand six hundred sixty-seven'); INSERT INTO t1 VALUES(2784, 81617, 'eighty-one thousand six hundred seventeen'); INSERT INTO t1 VALUES(2785, 28545, 'twenty-eight thousand five hundred forty-five'); INSERT INTO t1 VALUES(2786, 47984, 'forty-seven thousand nine hundred eighty-four'); INSERT INTO t1 VALUES(2787, 77335, 'seventy-seven thousand three hundred thirty-five'); INSERT INTO t1 VALUES(2788, 62412, 'sixty-two thousand four hundred twelve'); INSERT INTO t1 VALUES(2789, 26254, 'twenty-six thousand two hundred fifty-four'); INSERT INTO t1 VALUES(2790, 41027, 'forty-one thousand twenty-seven'); INSERT INTO t1 VALUES(2791, 57068, 'fifty-seven thousand sixty-eight'); INSERT INTO t1 VALUES(2792, 39997, 'thirty-nine thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(2793, 70968, 'seventy thousand nine hundred sixty-eight'); INSERT INTO t1 VALUES(2794, 25796, 'twenty-five thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(2795, 10287, 'ten thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(2796, 51979, 'fifty-one thousand nine hundred seventy-nine'); INSERT INTO t1 VALUES(2797, 68364, 'sixty-eight thousand three hundred sixty-four'); INSERT INTO t1 VALUES(2798, 48556, 'forty-eight thousand five hundred fifty-six'); INSERT INTO t1 VALUES(2799, 26209, 'twenty-six thousand two hundred nine'); INSERT INTO t1 VALUES(2800, 93800, 'ninety-three thousand eight hundred'); INSERT INTO t1 VALUES(2801, 73846, 'seventy-three thousand eight hundred forty-six'); INSERT INTO t1 VALUES(2802, 80377, 'eighty thousand three hundred seventy-seven'); INSERT INTO t1 VALUES(2803, 61989, 'sixty-one thousand nine hundred eighty-nine'); INSERT INTO t1 VALUES(2804, 94283, 'ninety-four thousand two hundred eighty-three'); INSERT INTO t1 VALUES(2805, 88022, 'eighty-eight thousand twenty-two'); INSERT INTO t1 VALUES(2806, 25041, 'twenty-five thousand forty-one'); INSERT INTO t1 VALUES(2807, 83727, 'eighty-three thousand seven hundred twenty-seven'); INSERT INTO t1 VALUES(2808, 93859, 'ninety-three thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(2809, 98330, 'ninety-eight thousand three hundred thirty'); INSERT INTO t1 VALUES(2810, 37232, 'thirty-seven thousand two hundred thirty-two'); INSERT INTO t1 VALUES(2811, 20612, 'twenty thousand six hundred twelve'); INSERT INTO t1 VALUES(2812, 35622, 'thirty-five thousand six hundred twenty-two'); INSERT INTO t1 VALUES(2813, 54498, 'fifty-four thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(2814, 56241, 'fifty-six thousand two hundred forty-one'); INSERT INTO t1 VALUES(2815, 69539, 'sixty-nine thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(2816, 34584, 'thirty-four thousand five hundred eighty-four'); INSERT INTO t1 VALUES(2817, 21286, 'twenty-one thousand two hundred eighty-six'); INSERT INTO t1 VALUES(2818, 81867, 'eighty-one thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(2819, 92549, 'ninety-two thousand five hundred forty-nine'); INSERT INTO t1 VALUES(2820, 34761, 'thirty-four thousand seven hundred sixty-one'); INSERT INTO t1 VALUES(2821, 23623, 'twenty-three thousand six hundred twenty-three'); INSERT INTO t1 VALUES(2822, 54534, 'fifty-four thousand five hundred thirty-four'); INSERT INTO t1 VALUES(2823, 88209, 'eighty-eight thousand two hundred nine'); INSERT INTO t1 VALUES(2824, 4275, 'four thousand two hundred seventy-five'); INSERT INTO t1 VALUES(2825, 21697, 'twenty-one thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(2826, 44522, 'forty-four thousand five hundred twenty-two'); INSERT INTO t1 VALUES(2827, 96997, 'ninety-six thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(2828, 38797, 'thirty-eight thousand seven hundred ninety-seven'); INSERT INTO t1 VALUES(2829, 13909, 'thirteen thousand nine hundred nine'); INSERT INTO t1 VALUES(2830, 31124, 'thirty-one thousand one hundred twenty-four'); INSERT INTO t1 VALUES(2831, 47155, 'forty-seven thousand one hundred fifty-five'); INSERT INTO t1 VALUES(2832, 55159, 'fifty-five thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(2833, 30840, 'thirty thousand eight hundred forty'); INSERT INTO t1 VALUES(2834, 14832, 'fourteen thousand eight hundred thirty-two'); INSERT INTO t1 VALUES(2835, 33261, 'thirty-three thousand two hundred sixty-one'); INSERT INTO t1 VALUES(2836, 1953, 'one thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(2837, 47056, 'forty-seven thousand fifty-six'); INSERT INTO t1 VALUES(2838, 39865, 'thirty-nine thousand eight hundred sixty-five'); INSERT INTO t1 VALUES(2839, 67819, 'sixty-seven thousand eight hundred nineteen'); INSERT INTO t1 VALUES(2840, 83042, 'eighty-three thousand forty-two'); INSERT INTO t1 VALUES(2841, 5950, 'five thousand nine hundred fifty'); INSERT INTO t1 VALUES(2842, 46491, 'forty-six thousand four hundred ninety-one'); INSERT INTO t1 VALUES(2843, 44768, 'forty-four thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(2844, 32746, 'thirty-two thousand seven hundred forty-six'); INSERT INTO t1 VALUES(2845, 69329, 'sixty-nine thousand three hundred twenty-nine'); INSERT INTO t1 VALUES(2846, 77198, 'seventy-seven thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(2847, 30662, 'thirty thousand six hundred sixty-two'); INSERT INTO t1 VALUES(2848, 17307, 'seventeen thousand three hundred seven'); INSERT INTO t1 VALUES(2849, 87105, 'eighty-seven thousand one hundred five'); INSERT INTO t1 VALUES(2850, 87224, 'eighty-seven thousand two hundred twenty-four'); INSERT INTO t1 VALUES(2851, 61913, 'sixty-one thousand nine hundred thirteen'); INSERT INTO t1 VALUES(2852, 97151, 'ninety-seven thousand one hundred fifty-one'); INSERT INTO t1 VALUES(2853, 46319, 'forty-six thousand three hundred nineteen'); INSERT INTO t1 VALUES(2854, 76826, 'seventy-six thousand eight hundred twenty-six'); INSERT INTO t1 VALUES(2855, 32773, 'thirty-two thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(2856, 96352, 'ninety-six thousand three hundred fifty-two'); INSERT INTO t1 VALUES(2857, 59592, 'fifty-nine thousand five hundred ninety-two'); INSERT INTO t1 VALUES(2858, 11789, 'eleven thousand seven hundred eighty-nine'); INSERT INTO t1 VALUES(2859, 87608, 'eighty-seven thousand six hundred eight'); INSERT INTO t1 VALUES(2860, 32504, 'thirty-two thousand five hundred four'); INSERT INTO t1 VALUES(2861, 52224, 'fifty-two thousand two hundred twenty-four'); INSERT INTO t1 VALUES(2862, 13033, 'thirteen thousand thirty-three'); INSERT INTO t1 VALUES(2863, 18130, 'eighteen thousand one hundred thirty'); INSERT INTO t1 VALUES(2864, 43981, 'forty-three thousand nine hundred eighty-one'); INSERT INTO t1 VALUES(2865, 31694, 'thirty-one thousand six hundred ninety-four'); INSERT INTO t1 VALUES(2866, 27764, 'twenty-seven thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(2867, 25600, 'twenty-five thousand six hundred'); INSERT INTO t1 VALUES(2868, 83350, 'eighty-three thousand three hundred fifty'); INSERT INTO t1 VALUES(2869, 8467, 'eight thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(2870, 22, 'twenty-two'); INSERT INTO t1 VALUES(2871, 97092, 'ninety-seven thousand ninety-two'); INSERT INTO t1 VALUES(2872, 92897, 'ninety-two thousand eight hundred ninety-seven'); INSERT INTO t1 VALUES(2873, 24860, 'twenty-four thousand eight hundred sixty'); INSERT INTO t1 VALUES(2874, 76684, 'seventy-six thousand six hundred eighty-four'); INSERT INTO t1 VALUES(2875, 14056, 'fourteen thousand fifty-six'); INSERT INTO t1 VALUES(2876, 58288, 'fifty-eight thousand two hundred eighty-eight'); INSERT INTO t1 VALUES(2877, 5310, 'five thousand three hundred ten'); INSERT INTO t1 VALUES(2878, 72025, 'seventy-two thousand twenty-five'); INSERT INTO t1 VALUES(2879, 19352, 'nineteen thousand three hundred fifty-two'); INSERT INTO t1 VALUES(2880, 47895, 'forty-seven thousand eight hundred ninety-five'); INSERT INTO t1 VALUES(2881, 38089, 'thirty-eight thousand eighty-nine'); INSERT INTO t1 VALUES(2882, 31143, 'thirty-one thousand one hundred forty-three'); INSERT INTO t1 VALUES(2883, 98275, 'ninety-eight thousand two hundred seventy-five'); INSERT INTO t1 VALUES(2884, 91614, 'ninety-one thousand six hundred fourteen'); INSERT INTO t1 VALUES(2885, 82264, 'eighty-two thousand two hundred sixty-four'); INSERT INTO t1 VALUES(2886, 88966, 'eighty-eight thousand nine hundred sixty-six'); INSERT INTO t1 VALUES(2887, 75719, 'seventy-five thousand seven hundred nineteen'); INSERT INTO t1 VALUES(2888, 53874, 'fifty-three thousand eight hundred seventy-four'); INSERT INTO t1 VALUES(2889, 46067, 'forty-six thousand sixty-seven'); INSERT INTO t1 VALUES(2890, 48904, 'forty-eight thousand nine hundred four'); INSERT INTO t1 VALUES(2891, 62892, 'sixty-two thousand eight hundred ninety-two'); INSERT INTO t1 VALUES(2892, 20560, 'twenty thousand five hundred sixty'); INSERT INTO t1 VALUES(2893, 41420, 'forty-one thousand four hundred twenty'); INSERT INTO t1 VALUES(2894, 97845, 'ninety-seven thousand eight hundred forty-five'); INSERT INTO t1 VALUES(2895, 54534, 'fifty-four thousand five hundred thirty-four'); INSERT INTO t1 VALUES(2896, 87467, 'eighty-seven thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(2897, 61667, 'sixty-one thousand six hundred sixty-seven'); INSERT INTO t1 VALUES(2898, 56118, 'fifty-six thousand one hundred eighteen'); INSERT INTO t1 VALUES(2899, 85435, 'eighty-five thousand four hundred thirty-five'); INSERT INTO t1 VALUES(2900, 80995, 'eighty thousand nine hundred ninety-five'); INSERT INTO t1 VALUES(2901, 44896, 'forty-four thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(2902, 99980, 'ninety-nine thousand nine hundred eighty'); INSERT INTO t1 VALUES(2903, 35394, 'thirty-five thousand three hundred ninety-four'); INSERT INTO t1 VALUES(2904, 1946, 'one thousand nine hundred forty-six'); INSERT INTO t1 VALUES(2905, 3588, 'three thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(2906, 27511, 'twenty-seven thousand five hundred eleven'); INSERT INTO t1 VALUES(2907, 48663, 'forty-eight thousand six hundred sixty-three'); INSERT INTO t1 VALUES(2908, 17795, 'seventeen thousand seven hundred ninety-five'); INSERT INTO t1 VALUES(2909, 85873, 'eighty-five thousand eight hundred seventy-three'); INSERT INTO t1 VALUES(2910, 6776, 'six thousand seven hundred seventy-six'); INSERT INTO t1 VALUES(2911, 46707, 'forty-six thousand seven hundred seven'); INSERT INTO t1 VALUES(2912, 40473, 'forty thousand four hundred seventy-three'); INSERT INTO t1 VALUES(2913, 8859, 'eight thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(2914, 69505, 'sixty-nine thousand five hundred five'); INSERT INTO t1 VALUES(2915, 74686, 'seventy-four thousand six hundred eighty-six'); INSERT INTO t1 VALUES(2916, 42648, 'forty-two thousand six hundred forty-eight'); INSERT INTO t1 VALUES(2917, 7773, 'seven thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(2918, 8441, 'eight thousand four hundred forty-one'); INSERT INTO t1 VALUES(2919, 22345, 'twenty-two thousand three hundred forty-five'); INSERT INTO t1 VALUES(2920, 53029, 'fifty-three thousand twenty-nine'); INSERT INTO t1 VALUES(2921, 89687, 'eighty-nine thousand six hundred eighty-seven'); INSERT INTO t1 VALUES(2922, 64761, 'sixty-four thousand seven hundred sixty-one'); INSERT INTO t1 VALUES(2923, 56337, 'fifty-six thousand three hundred thirty-seven'); INSERT INTO t1 VALUES(2924, 42688, 'forty-two thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(2925, 25035, 'twenty-five thousand thirty-five'); INSERT INTO t1 VALUES(2926, 78707, 'seventy-eight thousand seven hundred seven'); INSERT INTO t1 VALUES(2927, 38759, 'thirty-eight thousand seven hundred fifty-nine'); INSERT INTO t1 VALUES(2928, 14575, 'fourteen thousand five hundred seventy-five'); INSERT INTO t1 VALUES(2929, 91323, 'ninety-one thousand three hundred twenty-three'); INSERT INTO t1 VALUES(2930, 95449, 'ninety-five thousand four hundred forty-nine'); INSERT INTO t1 VALUES(2931, 76876, 'seventy-six thousand eight hundred seventy-six'); INSERT INTO t1 VALUES(2932, 88156, 'eighty-eight thousand one hundred fifty-six'); INSERT INTO t1 VALUES(2933, 96638, 'ninety-six thousand six hundred thirty-eight'); INSERT INTO t1 VALUES(2934, 25247, 'twenty-five thousand two hundred forty-seven'); INSERT INTO t1 VALUES(2935, 58527, 'fifty-eight thousand five hundred twenty-seven'); INSERT INTO t1 VALUES(2936, 33099, 'thirty-three thousand ninety-nine'); INSERT INTO t1 VALUES(2937, 74964, 'seventy-four thousand nine hundred sixty-four'); INSERT INTO t1 VALUES(2938, 8084, 'eight thousand eighty-four'); INSERT INTO t1 VALUES(2939, 39368, 'thirty-nine thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(2940, 40174, 'forty thousand one hundred seventy-four'); INSERT INTO t1 VALUES(2941, 80136, 'eighty thousand one hundred thirty-six'); INSERT INTO t1 VALUES(2942, 60471, 'sixty thousand four hundred seventy-one'); INSERT INTO t1 VALUES(2943, 26008, 'twenty-six thousand eight'); INSERT INTO t1 VALUES(2944, 51248, 'fifty-one thousand two hundred forty-eight'); INSERT INTO t1 VALUES(2945, 66944, 'sixty-six thousand nine hundred forty-four'); INSERT INTO t1 VALUES(2946, 92287, 'ninety-two thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(2947, 82791, 'eighty-two thousand seven hundred ninety-one'); INSERT INTO t1 VALUES(2948, 98422, 'ninety-eight thousand four hundred twenty-two'); INSERT INTO t1 VALUES(2949, 33222, 'thirty-three thousand two hundred twenty-two'); INSERT INTO t1 VALUES(2950, 14882, 'fourteen thousand eight hundred eighty-two'); INSERT INTO t1 VALUES(2951, 21403, 'twenty-one thousand four hundred three'); INSERT INTO t1 VALUES(2952, 63308, 'sixty-three thousand three hundred eight'); INSERT INTO t1 VALUES(2953, 40656, 'forty thousand six hundred fifty-six'); INSERT INTO t1 VALUES(2954, 11428, 'eleven thousand four hundred twenty-eight'); INSERT INTO t1 VALUES(2955, 83807, 'eighty-three thousand eight hundred seven'); INSERT INTO t1 VALUES(2956, 60876, 'sixty thousand eight hundred seventy-six'); INSERT INTO t1 VALUES(2957, 56542, 'fifty-six thousand five hundred forty-two'); INSERT INTO t1 VALUES(2958, 71539, 'seventy-one thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(2959, 10641, 'ten thousand six hundred forty-one'); INSERT INTO t1 VALUES(2960, 88819, 'eighty-eight thousand eight hundred nineteen'); INSERT INTO t1 VALUES(2961, 69239, 'sixty-nine thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(2962, 68126, 'sixty-eight thousand one hundred twenty-six'); INSERT INTO t1 VALUES(2963, 66820, 'sixty-six thousand eight hundred twenty'); INSERT INTO t1 VALUES(2964, 64866, 'sixty-four thousand eight hundred sixty-six'); INSERT INTO t1 VALUES(2965, 26325, 'twenty-six thousand three hundred twenty-five'); INSERT INTO t1 VALUES(2966, 86336, 'eighty-six thousand three hundred thirty-six'); INSERT INTO t1 VALUES(2967, 10420, 'ten thousand four hundred twenty'); INSERT INTO t1 VALUES(2968, 9553, 'nine thousand five hundred fifty-three'); INSERT INTO t1 VALUES(2969, 21637, 'twenty-one thousand six hundred thirty-seven'); INSERT INTO t1 VALUES(2970, 41903, 'forty-one thousand nine hundred three'); INSERT INTO t1 VALUES(2971, 99962, 'ninety-nine thousand nine hundred sixty-two'); INSERT INTO t1 VALUES(2972, 75769, 'seventy-five thousand seven hundred sixty-nine'); INSERT INTO t1 VALUES(2973, 60806, 'sixty thousand eight hundred six'); INSERT INTO t1 VALUES(2974, 26107, 'twenty-six thousand one hundred seven'); INSERT INTO t1 VALUES(2975, 29254, 'twenty-nine thousand two hundred fifty-four'); INSERT INTO t1 VALUES(2976, 17183, 'seventeen thousand one hundred eighty-three'); INSERT INTO t1 VALUES(2977, 47675, 'forty-seven thousand six hundred seventy-five'); INSERT INTO t1 VALUES(2978, 13767, 'thirteen thousand seven hundred sixty-seven'); INSERT INTO t1 VALUES(2979, 79748, 'seventy-nine thousand seven hundred forty-eight'); INSERT INTO t1 VALUES(2980, 41941, 'forty-one thousand nine hundred forty-one'); INSERT INTO t1 VALUES(2981, 40239, 'forty thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(2982, 70511, 'seventy thousand five hundred eleven'); INSERT INTO t1 VALUES(2983, 9352, 'nine thousand three hundred fifty-two'); INSERT INTO t1 VALUES(2984, 11430, 'eleven thousand four hundred thirty'); INSERT INTO t1 VALUES(2985, 64300, 'sixty-four thousand three hundred'); INSERT INTO t1 VALUES(2986, 95191, 'ninety-five thousand one hundred ninety-one'); INSERT INTO t1 VALUES(2987, 83780, 'eighty-three thousand seven hundred eighty'); INSERT INTO t1 VALUES(2988, 55447, 'fifty-five thousand four hundred forty-seven'); INSERT INTO t1 VALUES(2989, 50702, 'fifty thousand seven hundred two'); INSERT INTO t1 VALUES(2990, 84622, 'eighty-four thousand six hundred twenty-two'); INSERT INTO t1 VALUES(2991, 86558, 'eighty-six thousand five hundred fifty-eight'); INSERT INTO t1 VALUES(2992, 52598, 'fifty-two thousand five hundred ninety-eight'); INSERT INTO t1 VALUES(2993, 83168, 'eighty-three thousand one hundred sixty-eight'); INSERT INTO t1 VALUES(2994, 35718, 'thirty-five thousand seven hundred eighteen'); INSERT INTO t1 VALUES(2995, 62553, 'sixty-two thousand five hundred fifty-three'); INSERT INTO t1 VALUES(2996, 19984, 'nineteen thousand nine hundred eighty-four'); INSERT INTO t1 VALUES(2997, 41692, 'forty-one thousand six hundred ninety-two'); INSERT INTO t1 VALUES(2998, 84583, 'eighty-four thousand five hundred eighty-three'); INSERT INTO t1 VALUES(2999, 33234, 'thirty-three thousand two hundred thirty-four'); INSERT INTO t1 VALUES(3000, 75997, 'seventy-five thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(3001, 47808, 'forty-seven thousand eight hundred eight'); INSERT INTO t1 VALUES(3002, 32353, 'thirty-two thousand three hundred fifty-three'); INSERT INTO t1 VALUES(3003, 36056, 'thirty-six thousand fifty-six'); INSERT INTO t1 VALUES(3004, 21900, 'twenty-one thousand nine hundred'); INSERT INTO t1 VALUES(3005, 47434, 'forty-seven thousand four hundred thirty-four'); INSERT INTO t1 VALUES(3006, 68451, 'sixty-eight thousand four hundred fifty-one'); INSERT INTO t1 VALUES(3007, 17542, 'seventeen thousand five hundred forty-two'); INSERT INTO t1 VALUES(3008, 93774, 'ninety-three thousand seven hundred seventy-four'); INSERT INTO t1 VALUES(3009, 20947, 'twenty thousand nine hundred forty-seven'); INSERT INTO t1 VALUES(3010, 43629, 'forty-three thousand six hundred twenty-nine'); INSERT INTO t1 VALUES(3011, 52941, 'fifty-two thousand nine hundred forty-one'); INSERT INTO t1 VALUES(3012, 22904, 'twenty-two thousand nine hundred four'); INSERT INTO t1 VALUES(3013, 18116, 'eighteen thousand one hundred sixteen'); INSERT INTO t1 VALUES(3014, 10455, 'ten thousand four hundred fifty-five'); INSERT INTO t1 VALUES(3015, 61233, 'sixty-one thousand two hundred thirty-three'); INSERT INTO t1 VALUES(3016, 35715, 'thirty-five thousand seven hundred fifteen'); INSERT INTO t1 VALUES(3017, 99297, 'ninety-nine thousand two hundred ninety-seven'); INSERT INTO t1 VALUES(3018, 82878, 'eighty-two thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(3019, 36965, 'thirty-six thousand nine hundred sixty-five'); INSERT INTO t1 VALUES(3020, 84661, 'eighty-four thousand six hundred sixty-one'); INSERT INTO t1 VALUES(3021, 90683, 'ninety thousand six hundred eighty-three'); INSERT INTO t1 VALUES(3022, 93476, 'ninety-three thousand four hundred seventy-six'); INSERT INTO t1 VALUES(3023, 66661, 'sixty-six thousand six hundred sixty-one'); INSERT INTO t1 VALUES(3024, 25817, 'twenty-five thousand eight hundred seventeen'); INSERT INTO t1 VALUES(3025, 67874, 'sixty-seven thousand eight hundred seventy-four'); INSERT INTO t1 VALUES(3026, 85845, 'eighty-five thousand eight hundred forty-five'); INSERT INTO t1 VALUES(3027, 99071, 'ninety-nine thousand seventy-one'); INSERT INTO t1 VALUES(3028, 82884, 'eighty-two thousand eight hundred eighty-four'); INSERT INTO t1 VALUES(3029, 14816, 'fourteen thousand eight hundred sixteen'); INSERT INTO t1 VALUES(3030, 96057, 'ninety-six thousand fifty-seven'); INSERT INTO t1 VALUES(3031, 15376, 'fifteen thousand three hundred seventy-six'); INSERT INTO t1 VALUES(3032, 30500, 'thirty thousand five hundred'); INSERT INTO t1 VALUES(3033, 75412, 'seventy-five thousand four hundred twelve'); INSERT INTO t1 VALUES(3034, 67258, 'sixty-seven thousand two hundred fifty-eight'); INSERT INTO t1 VALUES(3035, 49653, 'forty-nine thousand six hundred fifty-three'); INSERT INTO t1 VALUES(3036, 28921, 'twenty-eight thousand nine hundred twenty-one'); INSERT INTO t1 VALUES(3037, 18314, 'eighteen thousand three hundred fourteen'); INSERT INTO t1 VALUES(3038, 63981, 'sixty-three thousand nine hundred eighty-one'); INSERT INTO t1 VALUES(3039, 40320, 'forty thousand three hundred twenty'); INSERT INTO t1 VALUES(3040, 6617, 'six thousand six hundred seventeen'); INSERT INTO t1 VALUES(3041, 30613, 'thirty thousand six hundred thirteen'); INSERT INTO t1 VALUES(3042, 40217, 'forty thousand two hundred seventeen'); INSERT INTO t1 VALUES(3043, 56853, 'fifty-six thousand eight hundred fifty-three'); INSERT INTO t1 VALUES(3044, 67935, 'sixty-seven thousand nine hundred thirty-five'); INSERT INTO t1 VALUES(3045, 86914, 'eighty-six thousand nine hundred fourteen'); INSERT INTO t1 VALUES(3046, 60896, 'sixty thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(3047, 5764, 'five thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(3048, 50239, 'fifty thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(3049, 31528, 'thirty-one thousand five hundred twenty-eight'); INSERT INTO t1 VALUES(3050, 91567, 'ninety-one thousand five hundred sixty-seven'); INSERT INTO t1 VALUES(3051, 53082, 'fifty-three thousand eighty-two'); INSERT INTO t1 VALUES(3052, 42954, 'forty-two thousand nine hundred fifty-four'); INSERT INTO t1 VALUES(3053, 90770, 'ninety thousand seven hundred seventy'); INSERT INTO t1 VALUES(3054, 67266, 'sixty-seven thousand two hundred sixty-six'); INSERT INTO t1 VALUES(3055, 86880, 'eighty-six thousand eight hundred eighty'); INSERT INTO t1 VALUES(3056, 66743, 'sixty-six thousand seven hundred forty-three'); INSERT INTO t1 VALUES(3057, 82115, 'eighty-two thousand one hundred fifteen'); INSERT INTO t1 VALUES(3058, 59203, 'fifty-nine thousand two hundred three'); INSERT INTO t1 VALUES(3059, 40400, 'forty thousand four hundred'); INSERT INTO t1 VALUES(3060, 65877, 'sixty-five thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(3061, 37296, 'thirty-seven thousand two hundred ninety-six'); INSERT INTO t1 VALUES(3062, 67067, 'sixty-seven thousand sixty-seven'); INSERT INTO t1 VALUES(3063, 75397, 'seventy-five thousand three hundred ninety-seven'); INSERT INTO t1 VALUES(3064, 33167, 'thirty-three thousand one hundred sixty-seven'); INSERT INTO t1 VALUES(3065, 47408, 'forty-seven thousand four hundred eight'); INSERT INTO t1 VALUES(3066, 89159, 'eighty-nine thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(3067, 12855, 'twelve thousand eight hundred fifty-five'); INSERT INTO t1 VALUES(3068, 40880, 'forty thousand eight hundred eighty'); INSERT INTO t1 VALUES(3069, 2975, 'two thousand nine hundred seventy-five'); INSERT INTO t1 VALUES(3070, 14010, 'fourteen thousand ten'); INSERT INTO t1 VALUES(3071, 82149, 'eighty-two thousand one hundred forty-nine'); INSERT INTO t1 VALUES(3072, 56607, 'fifty-six thousand six hundred seven'); INSERT INTO t1 VALUES(3073, 41564, 'forty-one thousand five hundred sixty-four'); INSERT INTO t1 VALUES(3074, 8509, 'eight thousand five hundred nine'); INSERT INTO t1 VALUES(3075, 6809, 'six thousand eight hundred nine'); INSERT INTO t1 VALUES(3076, 15028, 'fifteen thousand twenty-eight'); INSERT INTO t1 VALUES(3077, 48596, 'forty-eight thousand five hundred ninety-six'); INSERT INTO t1 VALUES(3078, 2828, 'two thousand eight hundred twenty-eight'); INSERT INTO t1 VALUES(3079, 60184, 'sixty thousand one hundred eighty-four'); INSERT INTO t1 VALUES(3080, 80079, 'eighty thousand seventy-nine'); INSERT INTO t1 VALUES(3081, 48943, 'forty-eight thousand nine hundred forty-three'); INSERT INTO t1 VALUES(3082, 78677, 'seventy-eight thousand six hundred seventy-seven'); INSERT INTO t1 VALUES(3083, 34640, 'thirty-four thousand six hundred forty'); INSERT INTO t1 VALUES(3084, 46938, 'forty-six thousand nine hundred thirty-eight'); INSERT INTO t1 VALUES(3085, 88620, 'eighty-eight thousand six hundred twenty'); INSERT INTO t1 VALUES(3086, 15941, 'fifteen thousand nine hundred forty-one'); INSERT INTO t1 VALUES(3087, 21580, 'twenty-one thousand five hundred eighty'); INSERT INTO t1 VALUES(3088, 84194, 'eighty-four thousand one hundred ninety-four'); INSERT INTO t1 VALUES(3089, 62923, 'sixty-two thousand nine hundred twenty-three'); INSERT INTO t1 VALUES(3090, 79482, 'seventy-nine thousand four hundred eighty-two'); INSERT INTO t1 VALUES(3091, 63100, 'sixty-three thousand one hundred'); INSERT INTO t1 VALUES(3092, 57057, 'fifty-seven thousand fifty-seven'); INSERT INTO t1 VALUES(3093, 31116, 'thirty-one thousand one hundred sixteen'); INSERT INTO t1 VALUES(3094, 35886, 'thirty-five thousand eight hundred eighty-six'); INSERT INTO t1 VALUES(3095, 24575, 'twenty-four thousand five hundred seventy-five'); INSERT INTO t1 VALUES(3096, 97873, 'ninety-seven thousand eight hundred seventy-three'); INSERT INTO t1 VALUES(3097, 47151, 'forty-seven thousand one hundred fifty-one'); INSERT INTO t1 VALUES(3098, 30725, 'thirty thousand seven hundred twenty-five'); INSERT INTO t1 VALUES(3099, 14514, 'fourteen thousand five hundred fourteen'); INSERT INTO t1 VALUES(3100, 84870, 'eighty-four thousand eight hundred seventy'); INSERT INTO t1 VALUES(3101, 10070, 'ten thousand seventy'); INSERT INTO t1 VALUES(3102, 80557, 'eighty thousand five hundred fifty-seven'); INSERT INTO t1 VALUES(3103, 24250, 'twenty-four thousand two hundred fifty'); INSERT INTO t1 VALUES(3104, 93539, 'ninety-three thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(3105, 46195, 'forty-six thousand one hundred ninety-five'); INSERT INTO t1 VALUES(3106, 79024, 'seventy-nine thousand twenty-four'); INSERT INTO t1 VALUES(3107, 22519, 'twenty-two thousand five hundred nineteen'); INSERT INTO t1 VALUES(3108, 65780, 'sixty-five thousand seven hundred eighty'); INSERT INTO t1 VALUES(3109, 74557, 'seventy-four thousand five hundred fifty-seven'); INSERT INTO t1 VALUES(3110, 90927, 'ninety thousand nine hundred twenty-seven'); INSERT INTO t1 VALUES(3111, 64063, 'sixty-four thousand sixty-three'); INSERT INTO t1 VALUES(3112, 46922, 'forty-six thousand nine hundred twenty-two'); INSERT INTO t1 VALUES(3113, 35351, 'thirty-five thousand three hundred fifty-one'); INSERT INTO t1 VALUES(3114, 92382, 'ninety-two thousand three hundred eighty-two'); INSERT INTO t1 VALUES(3115, 85375, 'eighty-five thousand three hundred seventy-five'); INSERT INTO t1 VALUES(3116, 19029, 'nineteen thousand twenty-nine'); INSERT INTO t1 VALUES(3117, 1584, 'one thousand five hundred eighty-four'); INSERT INTO t1 VALUES(3118, 3349, 'three thousand three hundred forty-nine'); INSERT INTO t1 VALUES(3119, 25467, 'twenty-five thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(3120, 96029, 'ninety-six thousand twenty-nine'); INSERT INTO t1 VALUES(3121, 87012, 'eighty-seven thousand twelve'); INSERT INTO t1 VALUES(3122, 98017, 'ninety-eight thousand seventeen'); INSERT INTO t1 VALUES(3123, 48174, 'forty-eight thousand one hundred seventy-four'); INSERT INTO t1 VALUES(3124, 784, 'seven hundred eighty-four'); INSERT INTO t1 VALUES(3125, 13437, 'thirteen thousand four hundred thirty-seven'); INSERT INTO t1 VALUES(3126, 4802, 'four thousand eight hundred two'); INSERT INTO t1 VALUES(3127, 47465, 'forty-seven thousand four hundred sixty-five'); INSERT INTO t1 VALUES(3128, 24874, 'twenty-four thousand eight hundred seventy-four'); INSERT INTO t1 VALUES(3129, 97082, 'ninety-seven thousand eighty-two'); INSERT INTO t1 VALUES(3130, 60764, 'sixty thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(3131, 93810, 'ninety-three thousand eight hundred ten'); INSERT INTO t1 VALUES(3132, 30233, 'thirty thousand two hundred thirty-three'); INSERT INTO t1 VALUES(3133, 19698, 'nineteen thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(3134, 41100, 'forty-one thousand one hundred'); INSERT INTO t1 VALUES(3135, 43118, 'forty-three thousand one hundred eighteen'); INSERT INTO t1 VALUES(3136, 69106, 'sixty-nine thousand one hundred six'); INSERT INTO t1 VALUES(3137, 86737, 'eighty-six thousand seven hundred thirty-seven'); INSERT INTO t1 VALUES(3138, 64907, 'sixty-four thousand nine hundred seven'); INSERT INTO t1 VALUES(3139, 39652, 'thirty-nine thousand six hundred fifty-two'); INSERT INTO t1 VALUES(3140, 88407, 'eighty-eight thousand four hundred seven'); INSERT INTO t1 VALUES(3141, 65893, 'sixty-five thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(3142, 19841, 'nineteen thousand eight hundred forty-one'); INSERT INTO t1 VALUES(3143, 83030, 'eighty-three thousand thirty'); INSERT INTO t1 VALUES(3144, 24256, 'twenty-four thousand two hundred fifty-six'); INSERT INTO t1 VALUES(3145, 75877, 'seventy-five thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(3146, 56330, 'fifty-six thousand three hundred thirty'); INSERT INTO t1 VALUES(3147, 42869, 'forty-two thousand eight hundred sixty-nine'); INSERT INTO t1 VALUES(3148, 10993, 'ten thousand nine hundred ninety-three'); INSERT INTO t1 VALUES(3149, 84509, 'eighty-four thousand five hundred nine'); INSERT INTO t1 VALUES(3150, 88843, 'eighty-eight thousand eight hundred forty-three'); INSERT INTO t1 VALUES(3151, 96659, 'ninety-six thousand six hundred fifty-nine'); INSERT INTO t1 VALUES(3152, 65105, 'sixty-five thousand one hundred five'); INSERT INTO t1 VALUES(3153, 84452, 'eighty-four thousand four hundred fifty-two'); INSERT INTO t1 VALUES(3154, 8090, 'eight thousand ninety'); INSERT INTO t1 VALUES(3155, 28271, 'twenty-eight thousand two hundred seventy-one'); INSERT INTO t1 VALUES(3156, 93653, 'ninety-three thousand six hundred fifty-three'); INSERT INTO t1 VALUES(3157, 9775, 'nine thousand seven hundred seventy-five'); INSERT INTO t1 VALUES(3158, 54940, 'fifty-four thousand nine hundred forty'); INSERT INTO t1 VALUES(3159, 34295, 'thirty-four thousand two hundred ninety-five'); INSERT INTO t1 VALUES(3160, 16142, 'sixteen thousand one hundred forty-two'); INSERT INTO t1 VALUES(3161, 63747, 'sixty-three thousand seven hundred forty-seven'); INSERT INTO t1 VALUES(3162, 82209, 'eighty-two thousand two hundred nine'); INSERT INTO t1 VALUES(3163, 21817, 'twenty-one thousand eight hundred seventeen'); INSERT INTO t1 VALUES(3164, 77795, 'seventy-seven thousand seven hundred ninety-five'); INSERT INTO t1 VALUES(3165, 16802, 'sixteen thousand eight hundred two'); INSERT INTO t1 VALUES(3166, 42390, 'forty-two thousand three hundred ninety'); INSERT INTO t1 VALUES(3167, 82059, 'eighty-two thousand fifty-nine'); INSERT INTO t1 VALUES(3168, 23070, 'twenty-three thousand seventy'); INSERT INTO t1 VALUES(3169, 15667, 'fifteen thousand six hundred sixty-seven'); INSERT INTO t1 VALUES(3170, 96879, 'ninety-six thousand eight hundred seventy-nine'); INSERT INTO t1 VALUES(3171, 28685, 'twenty-eight thousand six hundred eighty-five'); INSERT INTO t1 VALUES(3172, 82046, 'eighty-two thousand forty-six'); INSERT INTO t1 VALUES(3173, 72871, 'seventy-two thousand eight hundred seventy-one'); INSERT INTO t1 VALUES(3174, 73287, 'seventy-three thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(3175, 91098, 'ninety-one thousand ninety-eight'); INSERT INTO t1 VALUES(3176, 43797, 'forty-three thousand seven hundred ninety-seven'); INSERT INTO t1 VALUES(3177, 49050, 'forty-nine thousand fifty'); INSERT INTO t1 VALUES(3178, 78068, 'seventy-eight thousand sixty-eight'); INSERT INTO t1 VALUES(3179, 73195, 'seventy-three thousand one hundred ninety-five'); INSERT INTO t1 VALUES(3180, 46730, 'forty-six thousand seven hundred thirty'); INSERT INTO t1 VALUES(3181, 7481, 'seven thousand four hundred eighty-one'); INSERT INTO t1 VALUES(3182, 85843, 'eighty-five thousand eight hundred forty-three'); INSERT INTO t1 VALUES(3183, 86586, 'eighty-six thousand five hundred eighty-six'); INSERT INTO t1 VALUES(3184, 77436, 'seventy-seven thousand four hundred thirty-six'); INSERT INTO t1 VALUES(3185, 44135, 'forty-four thousand one hundred thirty-five'); INSERT INTO t1 VALUES(3186, 4301, 'four thousand three hundred one'); INSERT INTO t1 VALUES(3187, 76236, 'seventy-six thousand two hundred thirty-six'); INSERT INTO t1 VALUES(3188, 10528, 'ten thousand five hundred twenty-eight'); INSERT INTO t1 VALUES(3189, 74893, 'seventy-four thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(3190, 19451, 'nineteen thousand four hundred fifty-one'); INSERT INTO t1 VALUES(3191, 27544, 'twenty-seven thousand five hundred forty-four'); INSERT INTO t1 VALUES(3192, 25370, 'twenty-five thousand three hundred seventy'); INSERT INTO t1 VALUES(3193, 43252, 'forty-three thousand two hundred fifty-two'); INSERT INTO t1 VALUES(3194, 85879, 'eighty-five thousand eight hundred seventy-nine'); INSERT INTO t1 VALUES(3195, 67253, 'sixty-seven thousand two hundred fifty-three'); INSERT INTO t1 VALUES(3196, 44421, 'forty-four thousand four hundred twenty-one'); INSERT INTO t1 VALUES(3197, 43665, 'forty-three thousand six hundred sixty-five'); INSERT INTO t1 VALUES(3198, 35270, 'thirty-five thousand two hundred seventy'); INSERT INTO t1 VALUES(3199, 19089, 'nineteen thousand eighty-nine'); INSERT INTO t1 VALUES(3200, 72370, 'seventy-two thousand three hundred seventy'); INSERT INTO t1 VALUES(3201, 34666, 'thirty-four thousand six hundred sixty-six'); INSERT INTO t1 VALUES(3202, 66935, 'sixty-six thousand nine hundred thirty-five'); INSERT INTO t1 VALUES(3203, 62881, 'sixty-two thousand eight hundred eighty-one'); INSERT INTO t1 VALUES(3204, 538, 'five hundred thirty-eight'); INSERT INTO t1 VALUES(3205, 49153, 'forty-nine thousand one hundred fifty-three'); INSERT INTO t1 VALUES(3206, 1871, 'one thousand eight hundred seventy-one'); INSERT INTO t1 VALUES(3207, 37905, 'thirty-seven thousand nine hundred five'); INSERT INTO t1 VALUES(3208, 42232, 'forty-two thousand two hundred thirty-two'); INSERT INTO t1 VALUES(3209, 76830, 'seventy-six thousand eight hundred thirty'); INSERT INTO t1 VALUES(3210, 70467, 'seventy thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(3211, 12588, 'twelve thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(3212, 11668, 'eleven thousand six hundred sixty-eight'); INSERT INTO t1 VALUES(3213, 39713, 'thirty-nine thousand seven hundred thirteen'); INSERT INTO t1 VALUES(3214, 78721, 'seventy-eight thousand seven hundred twenty-one'); INSERT INTO t1 VALUES(3215, 50068, 'fifty thousand sixty-eight'); INSERT INTO t1 VALUES(3216, 3328, 'three thousand three hundred twenty-eight'); INSERT INTO t1 VALUES(3217, 9160, 'nine thousand one hundred sixty'); INSERT INTO t1 VALUES(3218, 74984, 'seventy-four thousand nine hundred eighty-four'); INSERT INTO t1 VALUES(3219, 78278, 'seventy-eight thousand two hundred seventy-eight'); INSERT INTO t1 VALUES(3220, 14282, 'fourteen thousand two hundred eighty-two'); INSERT INTO t1 VALUES(3221, 72683, 'seventy-two thousand six hundred eighty-three'); INSERT INTO t1 VALUES(3222, 2944, 'two thousand nine hundred forty-four'); INSERT INTO t1 VALUES(3223, 85336, 'eighty-five thousand three hundred thirty-six'); INSERT INTO t1 VALUES(3224, 57001, 'fifty-seven thousand one'); INSERT INTO t1 VALUES(3225, 98301, 'ninety-eight thousand three hundred one'); INSERT INTO t1 VALUES(3226, 34782, 'thirty-four thousand seven hundred eighty-two'); INSERT INTO t1 VALUES(3227, 47155, 'forty-seven thousand one hundred fifty-five'); INSERT INTO t1 VALUES(3228, 31358, 'thirty-one thousand three hundred fifty-eight'); INSERT INTO t1 VALUES(3229, 5655, 'five thousand six hundred fifty-five'); INSERT INTO t1 VALUES(3230, 9677, 'nine thousand six hundred seventy-seven'); INSERT INTO t1 VALUES(3231, 42393, 'forty-two thousand three hundred ninety-three'); INSERT INTO t1 VALUES(3232, 80760, 'eighty thousand seven hundred sixty'); INSERT INTO t1 VALUES(3233, 81758, 'eighty-one thousand seven hundred fifty-eight'); INSERT INTO t1 VALUES(3234, 17908, 'seventeen thousand nine hundred eight'); INSERT INTO t1 VALUES(3235, 62863, 'sixty-two thousand eight hundred sixty-three'); INSERT INTO t1 VALUES(3236, 41218, 'forty-one thousand two hundred eighteen'); INSERT INTO t1 VALUES(3237, 11342, 'eleven thousand three hundred forty-two'); INSERT INTO t1 VALUES(3238, 178, 'one hundred seventy-eight'); INSERT INTO t1 VALUES(3239, 25681, 'twenty-five thousand six hundred eighty-one'); INSERT INTO t1 VALUES(3240, 58424, 'fifty-eight thousand four hundred twenty-four'); INSERT INTO t1 VALUES(3241, 23585, 'twenty-three thousand five hundred eighty-five'); INSERT INTO t1 VALUES(3242, 94981, 'ninety-four thousand nine hundred eighty-one'); INSERT INTO t1 VALUES(3243, 34880, 'thirty-four thousand eight hundred eighty'); INSERT INTO t1 VALUES(3244, 19587, 'nineteen thousand five hundred eighty-seven'); INSERT INTO t1 VALUES(3245, 72507, 'seventy-two thousand five hundred seven'); INSERT INTO t1 VALUES(3246, 66336, 'sixty-six thousand three hundred thirty-six'); INSERT INTO t1 VALUES(3247, 47506, 'forty-seven thousand five hundred six'); INSERT INTO t1 VALUES(3248, 97686, 'ninety-seven thousand six hundred eighty-six'); INSERT INTO t1 VALUES(3249, 79039, 'seventy-nine thousand thirty-nine'); INSERT INTO t1 VALUES(3250, 43273, 'forty-three thousand two hundred seventy-three'); INSERT INTO t1 VALUES(3251, 97583, 'ninety-seven thousand five hundred eighty-three'); INSERT INTO t1 VALUES(3252, 10405, 'ten thousand four hundred five'); INSERT INTO t1 VALUES(3253, 59441, 'fifty-nine thousand four hundred forty-one'); INSERT INTO t1 VALUES(3254, 83488, 'eighty-three thousand four hundred eighty-eight'); INSERT INTO t1 VALUES(3255, 78494, 'seventy-eight thousand four hundred ninety-four'); INSERT INTO t1 VALUES(3256, 78642, 'seventy-eight thousand six hundred forty-two'); INSERT INTO t1 VALUES(3257, 74886, 'seventy-four thousand eight hundred eighty-six'); INSERT INTO t1 VALUES(3258, 81862, 'eighty-one thousand eight hundred sixty-two'); INSERT INTO t1 VALUES(3259, 6075, 'six thousand seventy-five'); INSERT INTO t1 VALUES(3260, 58949, 'fifty-eight thousand nine hundred forty-nine'); INSERT INTO t1 VALUES(3261, 41956, 'forty-one thousand nine hundred fifty-six'); INSERT INTO t1 VALUES(3262, 42446, 'forty-two thousand four hundred forty-six'); INSERT INTO t1 VALUES(3263, 16543, 'sixteen thousand five hundred forty-three'); INSERT INTO t1 VALUES(3264, 28332, 'twenty-eight thousand three hundred thirty-two'); INSERT INTO t1 VALUES(3265, 75283, 'seventy-five thousand two hundred eighty-three'); INSERT INTO t1 VALUES(3266, 96124, 'ninety-six thousand one hundred twenty-four'); INSERT INTO t1 VALUES(3267, 55060, 'fifty-five thousand sixty'); INSERT INTO t1 VALUES(3268, 12881, 'twelve thousand eight hundred eighty-one'); INSERT INTO t1 VALUES(3269, 676, 'six hundred seventy-six'); INSERT INTO t1 VALUES(3270, 1937, 'one thousand nine hundred thirty-seven'); INSERT INTO t1 VALUES(3271, 49105, 'forty-nine thousand one hundred five'); INSERT INTO t1 VALUES(3272, 15200, 'fifteen thousand two hundred'); INSERT INTO t1 VALUES(3273, 55309, 'fifty-five thousand three hundred nine'); INSERT INTO t1 VALUES(3274, 12893, 'twelve thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(3275, 41628, 'forty-one thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(3276, 92467, 'ninety-two thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(3277, 19911, 'nineteen thousand nine hundred eleven'); INSERT INTO t1 VALUES(3278, 78450, 'seventy-eight thousand four hundred fifty'); INSERT INTO t1 VALUES(3279, 78134, 'seventy-eight thousand one hundred thirty-four'); INSERT INTO t1 VALUES(3280, 77976, 'seventy-seven thousand nine hundred seventy-six'); INSERT INTO t1 VALUES(3281, 10489, 'ten thousand four hundred eighty-nine'); INSERT INTO t1 VALUES(3282, 96844, 'ninety-six thousand eight hundred forty-four'); INSERT INTO t1 VALUES(3283, 65952, 'sixty-five thousand nine hundred fifty-two'); INSERT INTO t1 VALUES(3284, 14191, 'fourteen thousand one hundred ninety-one'); INSERT INTO t1 VALUES(3285, 31821, 'thirty-one thousand eight hundred twenty-one'); INSERT INTO t1 VALUES(3286, 3076, 'three thousand seventy-six'); INSERT INTO t1 VALUES(3287, 48558, 'forty-eight thousand five hundred fifty-eight'); INSERT INTO t1 VALUES(3288, 50251, 'fifty thousand two hundred fifty-one'); INSERT INTO t1 VALUES(3289, 83398, 'eighty-three thousand three hundred ninety-eight'); INSERT INTO t1 VALUES(3290, 74889, 'seventy-four thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(3291, 88662, 'eighty-eight thousand six hundred sixty-two'); INSERT INTO t1 VALUES(3292, 70299, 'seventy thousand two hundred ninety-nine'); INSERT INTO t1 VALUES(3293, 40425, 'forty thousand four hundred twenty-five'); INSERT INTO t1 VALUES(3294, 79513, 'seventy-nine thousand five hundred thirteen'); INSERT INTO t1 VALUES(3295, 65317, 'sixty-five thousand three hundred seventeen'); INSERT INTO t1 VALUES(3296, 36912, 'thirty-six thousand nine hundred twelve'); INSERT INTO t1 VALUES(3297, 72499, 'seventy-two thousand four hundred ninety-nine'); INSERT INTO t1 VALUES(3298, 60991, 'sixty thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(3299, 92861, 'ninety-two thousand eight hundred sixty-one'); INSERT INTO t1 VALUES(3300, 61866, 'sixty-one thousand eight hundred sixty-six'); INSERT INTO t1 VALUES(3301, 73770, 'seventy-three thousand seven hundred seventy'); INSERT INTO t1 VALUES(3302, 61724, 'sixty-one thousand seven hundred twenty-four'); INSERT INTO t1 VALUES(3303, 29578, 'twenty-nine thousand five hundred seventy-eight'); INSERT INTO t1 VALUES(3304, 53689, 'fifty-three thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(3305, 99045, 'ninety-nine thousand forty-five'); INSERT INTO t1 VALUES(3306, 79832, 'seventy-nine thousand eight hundred thirty-two'); INSERT INTO t1 VALUES(3307, 38177, 'thirty-eight thousand one hundred seventy-seven'); INSERT INTO t1 VALUES(3308, 31284, 'thirty-one thousand two hundred eighty-four'); INSERT INTO t1 VALUES(3309, 15936, 'fifteen thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(3310, 92342, 'ninety-two thousand three hundred forty-two'); INSERT INTO t1 VALUES(3311, 4251, 'four thousand two hundred fifty-one'); INSERT INTO t1 VALUES(3312, 54240, 'fifty-four thousand two hundred forty'); INSERT INTO t1 VALUES(3313, 60521, 'sixty thousand five hundred twenty-one'); INSERT INTO t1 VALUES(3314, 23592, 'twenty-three thousand five hundred ninety-two'); INSERT INTO t1 VALUES(3315, 45747, 'forty-five thousand seven hundred forty-seven'); INSERT INTO t1 VALUES(3316, 96996, 'ninety-six thousand nine hundred ninety-six'); INSERT INTO t1 VALUES(3317, 58196, 'fifty-eight thousand one hundred ninety-six'); INSERT INTO t1 VALUES(3318, 98326, 'ninety-eight thousand three hundred twenty-six'); INSERT INTO t1 VALUES(3319, 86788, 'eighty-six thousand seven hundred eighty-eight'); INSERT INTO t1 VALUES(3320, 38114, 'thirty-eight thousand one hundred fourteen'); INSERT INTO t1 VALUES(3321, 14081, 'fourteen thousand eighty-one'); INSERT INTO t1 VALUES(3322, 78028, 'seventy-eight thousand twenty-eight'); INSERT INTO t1 VALUES(3323, 78248, 'seventy-eight thousand two hundred forty-eight'); INSERT INTO t1 VALUES(3324, 71417, 'seventy-one thousand four hundred seventeen'); INSERT INTO t1 VALUES(3325, 27411, 'twenty-seven thousand four hundred eleven'); INSERT INTO t1 VALUES(3326, 47435, 'forty-seven thousand four hundred thirty-five'); INSERT INTO t1 VALUES(3327, 34767, 'thirty-four thousand seven hundred sixty-seven'); INSERT INTO t1 VALUES(3328, 45870, 'forty-five thousand eight hundred seventy'); INSERT INTO t1 VALUES(3329, 68909, 'sixty-eight thousand nine hundred nine'); INSERT INTO t1 VALUES(3330, 76696, 'seventy-six thousand six hundred ninety-six'); INSERT INTO t1 VALUES(3331, 66028, 'sixty-six thousand twenty-eight'); INSERT INTO t1 VALUES(3332, 84600, 'eighty-four thousand six hundred'); INSERT INTO t1 VALUES(3333, 61933, 'sixty-one thousand nine hundred thirty-three'); INSERT INTO t1 VALUES(3334, 91441, 'ninety-one thousand four hundred forty-one'); INSERT INTO t1 VALUES(3335, 28191, 'twenty-eight thousand one hundred ninety-one'); INSERT INTO t1 VALUES(3336, 45747, 'forty-five thousand seven hundred forty-seven'); INSERT INTO t1 VALUES(3337, 31122, 'thirty-one thousand one hundred twenty-two'); INSERT INTO t1 VALUES(3338, 5654, 'five thousand six hundred fifty-four'); INSERT INTO t1 VALUES(3339, 88621, 'eighty-eight thousand six hundred twenty-one'); INSERT INTO t1 VALUES(3340, 28983, 'twenty-eight thousand nine hundred eighty-three'); INSERT INTO t1 VALUES(3341, 50776, 'fifty thousand seven hundred seventy-six'); INSERT INTO t1 VALUES(3342, 77415, 'seventy-seven thousand four hundred fifteen'); INSERT INTO t1 VALUES(3343, 25949, 'twenty-five thousand nine hundred forty-nine'); INSERT INTO t1 VALUES(3344, 70884, 'seventy thousand eight hundred eighty-four'); INSERT INTO t1 VALUES(3345, 84768, 'eighty-four thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(3346, 30961, 'thirty thousand nine hundred sixty-one'); INSERT INTO t1 VALUES(3347, 16110, 'sixteen thousand one hundred ten'); INSERT INTO t1 VALUES(3348, 5669, 'five thousand six hundred sixty-nine'); INSERT INTO t1 VALUES(3349, 20752, 'twenty thousand seven hundred fifty-two'); INSERT INTO t1 VALUES(3350, 3709, 'three thousand seven hundred nine'); INSERT INTO t1 VALUES(3351, 30138, 'thirty thousand one hundred thirty-eight'); INSERT INTO t1 VALUES(3352, 44341, 'forty-four thousand three hundred forty-one'); INSERT INTO t1 VALUES(3353, 60236, 'sixty thousand two hundred thirty-six'); INSERT INTO t1 VALUES(3354, 67050, 'sixty-seven thousand fifty'); INSERT INTO t1 VALUES(3355, 56343, 'fifty-six thousand three hundred forty-three'); INSERT INTO t1 VALUES(3356, 35298, 'thirty-five thousand two hundred ninety-eight'); INSERT INTO t1 VALUES(3357, 97323, 'ninety-seven thousand three hundred twenty-three'); INSERT INTO t1 VALUES(3358, 75158, 'seventy-five thousand one hundred fifty-eight'); INSERT INTO t1 VALUES(3359, 90702, 'ninety thousand seven hundred two'); INSERT INTO t1 VALUES(3360, 98797, 'ninety-eight thousand seven hundred ninety-seven'); INSERT INTO t1 VALUES(3361, 14239, 'fourteen thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(3362, 95991, 'ninety-five thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(3363, 90933, 'ninety thousand nine hundred thirty-three'); INSERT INTO t1 VALUES(3364, 30880, 'thirty thousand eight hundred eighty'); INSERT INTO t1 VALUES(3365, 5169, 'five thousand one hundred sixty-nine'); INSERT INTO t1 VALUES(3366, 46161, 'forty-six thousand one hundred sixty-one'); INSERT INTO t1 VALUES(3367, 34495, 'thirty-four thousand four hundred ninety-five'); INSERT INTO t1 VALUES(3368, 23645, 'twenty-three thousand six hundred forty-five'); INSERT INTO t1 VALUES(3369, 83659, 'eighty-three thousand six hundred fifty-nine'); INSERT INTO t1 VALUES(3370, 38991, 'thirty-eight thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(3371, 58732, 'fifty-eight thousand seven hundred thirty-two'); INSERT INTO t1 VALUES(3372, 30569, 'thirty thousand five hundred sixty-nine'); INSERT INTO t1 VALUES(3373, 5543, 'five thousand five hundred forty-three'); INSERT INTO t1 VALUES(3374, 67345, 'sixty-seven thousand three hundred forty-five'); INSERT INTO t1 VALUES(3375, 35259, 'thirty-five thousand two hundred fifty-nine'); INSERT INTO t1 VALUES(3376, 71009, 'seventy-one thousand nine'); INSERT INTO t1 VALUES(3377, 37758, 'thirty-seven thousand seven hundred fifty-eight'); INSERT INTO t1 VALUES(3378, 85733, 'eighty-five thousand seven hundred thirty-three'); INSERT INTO t1 VALUES(3379, 25073, 'twenty-five thousand seventy-three'); INSERT INTO t1 VALUES(3380, 93375, 'ninety-three thousand three hundred seventy-five'); INSERT INTO t1 VALUES(3381, 49302, 'forty-nine thousand three hundred two'); INSERT INTO t1 VALUES(3382, 8986, 'eight thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(3383, 93449, 'ninety-three thousand four hundred forty-nine'); INSERT INTO t1 VALUES(3384, 48289, 'forty-eight thousand two hundred eighty-nine'); INSERT INTO t1 VALUES(3385, 80643, 'eighty thousand six hundred forty-three'); INSERT INTO t1 VALUES(3386, 53697, 'fifty-three thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(3387, 98489, 'ninety-eight thousand four hundred eighty-nine'); INSERT INTO t1 VALUES(3388, 88491, 'eighty-eight thousand four hundred ninety-one'); INSERT INTO t1 VALUES(3389, 82287, 'eighty-two thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(3390, 49530, 'forty-nine thousand five hundred thirty'); INSERT INTO t1 VALUES(3391, 44003, 'forty-four thousand three'); INSERT INTO t1 VALUES(3392, 8214, 'eight thousand two hundred fourteen'); INSERT INTO t1 VALUES(3393, 40674, 'forty thousand six hundred seventy-four'); INSERT INTO t1 VALUES(3394, 85615, 'eighty-five thousand six hundred fifteen'); INSERT INTO t1 VALUES(3395, 32567, 'thirty-two thousand five hundred sixty-seven'); INSERT INTO t1 VALUES(3396, 59596, 'fifty-nine thousand five hundred ninety-six'); INSERT INTO t1 VALUES(3397, 71633, 'seventy-one thousand six hundred thirty-three'); INSERT INTO t1 VALUES(3398, 6595, 'six thousand five hundred ninety-five'); INSERT INTO t1 VALUES(3399, 75459, 'seventy-five thousand four hundred fifty-nine'); INSERT INTO t1 VALUES(3400, 72713, 'seventy-two thousand seven hundred thirteen'); INSERT INTO t1 VALUES(3401, 39477, 'thirty-nine thousand four hundred seventy-seven'); INSERT INTO t1 VALUES(3402, 99563, 'ninety-nine thousand five hundred sixty-three'); INSERT INTO t1 VALUES(3403, 28812, 'twenty-eight thousand eight hundred twelve'); INSERT INTO t1 VALUES(3404, 25089, 'twenty-five thousand eighty-nine'); INSERT INTO t1 VALUES(3405, 92253, 'ninety-two thousand two hundred fifty-three'); INSERT INTO t1 VALUES(3406, 81083, 'eighty-one thousand eighty-three'); INSERT INTO t1 VALUES(3407, 31893, 'thirty-one thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(3408, 84728, 'eighty-four thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(3409, 19163, 'nineteen thousand one hundred sixty-three'); INSERT INTO t1 VALUES(3410, 7230, 'seven thousand two hundred thirty'); INSERT INTO t1 VALUES(3411, 49939, 'forty-nine thousand nine hundred thirty-nine'); INSERT INTO t1 VALUES(3412, 27860, 'twenty-seven thousand eight hundred sixty'); INSERT INTO t1 VALUES(3413, 92447, 'ninety-two thousand four hundred forty-seven'); INSERT INTO t1 VALUES(3414, 84178, 'eighty-four thousand one hundred seventy-eight'); INSERT INTO t1 VALUES(3415, 61754, 'sixty-one thousand seven hundred fifty-four'); INSERT INTO t1 VALUES(3416, 78282, 'seventy-eight thousand two hundred eighty-two'); INSERT INTO t1 VALUES(3417, 63850, 'sixty-three thousand eight hundred fifty'); INSERT INTO t1 VALUES(3418, 17253, 'seventeen thousand two hundred fifty-three'); INSERT INTO t1 VALUES(3419, 87010, 'eighty-seven thousand ten'); INSERT INTO t1 VALUES(3420, 74022, 'seventy-four thousand twenty-two'); INSERT INTO t1 VALUES(3421, 44797, 'forty-four thousand seven hundred ninety-seven'); INSERT INTO t1 VALUES(3422, 51804, 'fifty-one thousand eight hundred four'); INSERT INTO t1 VALUES(3423, 85325, 'eighty-five thousand three hundred twenty-five'); INSERT INTO t1 VALUES(3424, 21189, 'twenty-one thousand one hundred eighty-nine'); INSERT INTO t1 VALUES(3425, 27904, 'twenty-seven thousand nine hundred four'); INSERT INTO t1 VALUES(3426, 55844, 'fifty-five thousand eight hundred forty-four'); INSERT INTO t1 VALUES(3427, 63648, 'sixty-three thousand six hundred forty-eight'); INSERT INTO t1 VALUES(3428, 4047, 'four thousand forty-seven'); INSERT INTO t1 VALUES(3429, 72570, 'seventy-two thousand five hundred seventy'); INSERT INTO t1 VALUES(3430, 45295, 'forty-five thousand two hundred ninety-five'); INSERT INTO t1 VALUES(3431, 61773, 'sixty-one thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(3432, 94199, 'ninety-four thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(3433, 29669, 'twenty-nine thousand six hundred sixty-nine'); INSERT INTO t1 VALUES(3434, 82102, 'eighty-two thousand one hundred two'); INSERT INTO t1 VALUES(3435, 94716, 'ninety-four thousand seven hundred sixteen'); INSERT INTO t1 VALUES(3436, 35673, 'thirty-five thousand six hundred seventy-three'); INSERT INTO t1 VALUES(3437, 85975, 'eighty-five thousand nine hundred seventy-five'); INSERT INTO t1 VALUES(3438, 69316, 'sixty-nine thousand three hundred sixteen'); INSERT INTO t1 VALUES(3439, 9446, 'nine thousand four hundred forty-six'); INSERT INTO t1 VALUES(3440, 9722, 'nine thousand seven hundred twenty-two'); INSERT INTO t1 VALUES(3441, 69913, 'sixty-nine thousand nine hundred thirteen'); INSERT INTO t1 VALUES(3442, 54317, 'fifty-four thousand three hundred seventeen'); INSERT INTO t1 VALUES(3443, 58912, 'fifty-eight thousand nine hundred twelve'); INSERT INTO t1 VALUES(3444, 79074, 'seventy-nine thousand seventy-four'); INSERT INTO t1 VALUES(3445, 15186, 'fifteen thousand one hundred eighty-six'); INSERT INTO t1 VALUES(3446, 24757, 'twenty-four thousand seven hundred fifty-seven'); INSERT INTO t1 VALUES(3447, 94590, 'ninety-four thousand five hundred ninety'); INSERT INTO t1 VALUES(3448, 276, 'two hundred seventy-six'); INSERT INTO t1 VALUES(3449, 64879, 'sixty-four thousand eight hundred seventy-nine'); INSERT INTO t1 VALUES(3450, 30214, 'thirty thousand two hundred fourteen'); INSERT INTO t1 VALUES(3451, 85267, 'eighty-five thousand two hundred sixty-seven'); INSERT INTO t1 VALUES(3452, 50211, 'fifty thousand two hundred eleven'); INSERT INTO t1 VALUES(3453, 79991, 'seventy-nine thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(3454, 70979, 'seventy thousand nine hundred seventy-nine'); INSERT INTO t1 VALUES(3455, 55887, 'fifty-five thousand eight hundred eighty-seven'); INSERT INTO t1 VALUES(3456, 83692, 'eighty-three thousand six hundred ninety-two'); INSERT INTO t1 VALUES(3457, 54229, 'fifty-four thousand two hundred twenty-nine'); INSERT INTO t1 VALUES(3458, 54089, 'fifty-four thousand eighty-nine'); INSERT INTO t1 VALUES(3459, 43578, 'forty-three thousand five hundred seventy-eight'); INSERT INTO t1 VALUES(3460, 48295, 'forty-eight thousand two hundred ninety-five'); INSERT INTO t1 VALUES(3461, 51031, 'fifty-one thousand thirty-one'); INSERT INTO t1 VALUES(3462, 33872, 'thirty-three thousand eight hundred seventy-two'); INSERT INTO t1 VALUES(3463, 67272, 'sixty-seven thousand two hundred seventy-two'); INSERT INTO t1 VALUES(3464, 70086, 'seventy thousand eighty-six'); INSERT INTO t1 VALUES(3465, 63018, 'sixty-three thousand eighteen'); INSERT INTO t1 VALUES(3466, 10581, 'ten thousand five hundred eighty-one'); INSERT INTO t1 VALUES(3467, 46454, 'forty-six thousand four hundred fifty-four'); INSERT INTO t1 VALUES(3468, 11132, 'eleven thousand one hundred thirty-two'); INSERT INTO t1 VALUES(3469, 33111, 'thirty-three thousand one hundred eleven'); INSERT INTO t1 VALUES(3470, 16668, 'sixteen thousand six hundred sixty-eight'); INSERT INTO t1 VALUES(3471, 72521, 'seventy-two thousand five hundred twenty-one'); INSERT INTO t1 VALUES(3472, 43065, 'forty-three thousand sixty-five'); INSERT INTO t1 VALUES(3473, 71537, 'seventy-one thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(3474, 51880, 'fifty-one thousand eight hundred eighty'); INSERT INTO t1 VALUES(3475, 68797, 'sixty-eight thousand seven hundred ninety-seven'); INSERT INTO t1 VALUES(3476, 57128, 'fifty-seven thousand one hundred twenty-eight'); INSERT INTO t1 VALUES(3477, 54003, 'fifty-four thousand three'); INSERT INTO t1 VALUES(3478, 49220, 'forty-nine thousand two hundred twenty'); INSERT INTO t1 VALUES(3479, 89649, 'eighty-nine thousand six hundred forty-nine'); INSERT INTO t1 VALUES(3480, 17907, 'seventeen thousand nine hundred seven'); INSERT INTO t1 VALUES(3481, 29451, 'twenty-nine thousand four hundred fifty-one'); INSERT INTO t1 VALUES(3482, 64727, 'sixty-four thousand seven hundred twenty-seven'); INSERT INTO t1 VALUES(3483, 10114, 'ten thousand one hundred fourteen'); INSERT INTO t1 VALUES(3484, 71567, 'seventy-one thousand five hundred sixty-seven'); INSERT INTO t1 VALUES(3485, 53170, 'fifty-three thousand one hundred seventy'); INSERT INTO t1 VALUES(3486, 19336, 'nineteen thousand three hundred thirty-six'); INSERT INTO t1 VALUES(3487, 40571, 'forty thousand five hundred seventy-one'); INSERT INTO t1 VALUES(3488, 88261, 'eighty-eight thousand two hundred sixty-one'); INSERT INTO t1 VALUES(3489, 68540, 'sixty-eight thousand five hundred forty'); INSERT INTO t1 VALUES(3490, 18984, 'eighteen thousand nine hundred eighty-four'); INSERT INTO t1 VALUES(3491, 22699, 'twenty-two thousand six hundred ninety-nine'); INSERT INTO t1 VALUES(3492, 54484, 'fifty-four thousand four hundred eighty-four'); INSERT INTO t1 VALUES(3493, 66750, 'sixty-six thousand seven hundred fifty'); INSERT INTO t1 VALUES(3494, 98458, 'ninety-eight thousand four hundred fifty-eight'); INSERT INTO t1 VALUES(3495, 93237, 'ninety-three thousand two hundred thirty-seven'); INSERT INTO t1 VALUES(3496, 39619, 'thirty-nine thousand six hundred nineteen'); INSERT INTO t1 VALUES(3497, 69475, 'sixty-nine thousand four hundred seventy-five'); INSERT INTO t1 VALUES(3498, 70653, 'seventy thousand six hundred fifty-three'); INSERT INTO t1 VALUES(3499, 5374, 'five thousand three hundred seventy-four'); INSERT INTO t1 VALUES(3500, 48200, 'forty-eight thousand two hundred'); INSERT INTO t1 VALUES(3501, 44142, 'forty-four thousand one hundred forty-two'); INSERT INTO t1 VALUES(3502, 10484, 'ten thousand four hundred eighty-four'); INSERT INTO t1 VALUES(3503, 83686, 'eighty-three thousand six hundred eighty-six'); INSERT INTO t1 VALUES(3504, 7298, 'seven thousand two hundred ninety-eight'); INSERT INTO t1 VALUES(3505, 57358, 'fifty-seven thousand three hundred fifty-eight'); INSERT INTO t1 VALUES(3506, 16449, 'sixteen thousand four hundred forty-nine'); INSERT INTO t1 VALUES(3507, 38249, 'thirty-eight thousand two hundred forty-nine'); INSERT INTO t1 VALUES(3508, 52669, 'fifty-two thousand six hundred sixty-nine'); INSERT INTO t1 VALUES(3509, 19362, 'nineteen thousand three hundred sixty-two'); INSERT INTO t1 VALUES(3510, 87258, 'eighty-seven thousand two hundred fifty-eight'); INSERT INTO t1 VALUES(3511, 74383, 'seventy-four thousand three hundred eighty-three'); INSERT INTO t1 VALUES(3512, 91323, 'ninety-one thousand three hundred twenty-three'); INSERT INTO t1 VALUES(3513, 86443, 'eighty-six thousand four hundred forty-three'); INSERT INTO t1 VALUES(3514, 73229, 'seventy-three thousand two hundred twenty-nine'); INSERT INTO t1 VALUES(3515, 66686, 'sixty-six thousand six hundred eighty-six'); INSERT INTO t1 VALUES(3516, 40986, 'forty thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(3517, 16521, 'sixteen thousand five hundred twenty-one'); INSERT INTO t1 VALUES(3518, 63887, 'sixty-three thousand eight hundred eighty-seven'); INSERT INTO t1 VALUES(3519, 85121, 'eighty-five thousand one hundred twenty-one'); INSERT INTO t1 VALUES(3520, 54691, 'fifty-four thousand six hundred ninety-one'); INSERT INTO t1 VALUES(3521, 85333, 'eighty-five thousand three hundred thirty-three'); INSERT INTO t1 VALUES(3522, 9057, 'nine thousand fifty-seven'); INSERT INTO t1 VALUES(3523, 96869, 'ninety-six thousand eight hundred sixty-nine'); INSERT INTO t1 VALUES(3524, 9075, 'nine thousand seventy-five'); INSERT INTO t1 VALUES(3525, 69043, 'sixty-nine thousand forty-three'); INSERT INTO t1 VALUES(3526, 51152, 'fifty-one thousand one hundred fifty-two'); INSERT INTO t1 VALUES(3527, 99884, 'ninety-nine thousand eight hundred eighty-four'); INSERT INTO t1 VALUES(3528, 53461, 'fifty-three thousand four hundred sixty-one'); INSERT INTO t1 VALUES(3529, 92518, 'ninety-two thousand five hundred eighteen'); INSERT INTO t1 VALUES(3530, 62740, 'sixty-two thousand seven hundred forty'); INSERT INTO t1 VALUES(3531, 71185, 'seventy-one thousand one hundred eighty-five'); INSERT INTO t1 VALUES(3532, 18628, 'eighteen thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(3533, 66515, 'sixty-six thousand five hundred fifteen'); INSERT INTO t1 VALUES(3534, 74021, 'seventy-four thousand twenty-one'); INSERT INTO t1 VALUES(3535, 75886, 'seventy-five thousand eight hundred eighty-six'); INSERT INTO t1 VALUES(3536, 57132, 'fifty-seven thousand one hundred thirty-two'); INSERT INTO t1 VALUES(3537, 6709, 'six thousand seven hundred nine'); INSERT INTO t1 VALUES(3538, 55091, 'fifty-five thousand ninety-one'); INSERT INTO t1 VALUES(3539, 61254, 'sixty-one thousand two hundred fifty-four'); INSERT INTO t1 VALUES(3540, 1136, 'one thousand one hundred thirty-six'); INSERT INTO t1 VALUES(3541, 86817, 'eighty-six thousand eight hundred seventeen'); INSERT INTO t1 VALUES(3542, 93826, 'ninety-three thousand eight hundred twenty-six'); INSERT INTO t1 VALUES(3543, 88069, 'eighty-eight thousand sixty-nine'); INSERT INTO t1 VALUES(3544, 94648, 'ninety-four thousand six hundred forty-eight'); INSERT INTO t1 VALUES(3545, 84084, 'eighty-four thousand eighty-four'); INSERT INTO t1 VALUES(3546, 67524, 'sixty-seven thousand five hundred twenty-four'); INSERT INTO t1 VALUES(3547, 53417, 'fifty-three thousand four hundred seventeen'); INSERT INTO t1 VALUES(3548, 46253, 'forty-six thousand two hundred fifty-three'); INSERT INTO t1 VALUES(3549, 50763, 'fifty thousand seven hundred sixty-three'); INSERT INTO t1 VALUES(3550, 5913, 'five thousand nine hundred thirteen'); INSERT INTO t1 VALUES(3551, 26997, 'twenty-six thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(3552, 35964, 'thirty-five thousand nine hundred sixty-four'); INSERT INTO t1 VALUES(3553, 87707, 'eighty-seven thousand seven hundred seven'); INSERT INTO t1 VALUES(3554, 80208, 'eighty thousand two hundred eight'); INSERT INTO t1 VALUES(3555, 32626, 'thirty-two thousand six hundred twenty-six'); INSERT INTO t1 VALUES(3556, 52770, 'fifty-two thousand seven hundred seventy'); INSERT INTO t1 VALUES(3557, 2305, 'two thousand three hundred five'); INSERT INTO t1 VALUES(3558, 64429, 'sixty-four thousand four hundred twenty-nine'); INSERT INTO t1 VALUES(3559, 71560, 'seventy-one thousand five hundred sixty'); INSERT INTO t1 VALUES(3560, 65166, 'sixty-five thousand one hundred sixty-six'); INSERT INTO t1 VALUES(3561, 4812, 'four thousand eight hundred twelve'); INSERT INTO t1 VALUES(3562, 58365, 'fifty-eight thousand three hundred sixty-five'); INSERT INTO t1 VALUES(3563, 3622, 'three thousand six hundred twenty-two'); INSERT INTO t1 VALUES(3564, 58404, 'fifty-eight thousand four hundred four'); INSERT INTO t1 VALUES(3565, 40019, 'forty thousand nineteen'); INSERT INTO t1 VALUES(3566, 39745, 'thirty-nine thousand seven hundred forty-five'); INSERT INTO t1 VALUES(3567, 94936, 'ninety-four thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(3568, 60432, 'sixty thousand four hundred thirty-two'); INSERT INTO t1 VALUES(3569, 93294, 'ninety-three thousand two hundred ninety-four'); INSERT INTO t1 VALUES(3570, 5175, 'five thousand one hundred seventy-five'); INSERT INTO t1 VALUES(3571, 85802, 'eighty-five thousand eight hundred two'); INSERT INTO t1 VALUES(3572, 71331, 'seventy-one thousand three hundred thirty-one'); INSERT INTO t1 VALUES(3573, 92447, 'ninety-two thousand four hundred forty-seven'); INSERT INTO t1 VALUES(3574, 72742, 'seventy-two thousand seven hundred forty-two'); INSERT INTO t1 VALUES(3575, 10050, 'ten thousand fifty'); INSERT INTO t1 VALUES(3576, 38627, 'thirty-eight thousand six hundred twenty-seven'); INSERT INTO t1 VALUES(3577, 25953, 'twenty-five thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(3578, 75038, 'seventy-five thousand thirty-eight'); INSERT INTO t1 VALUES(3579, 97052, 'ninety-seven thousand fifty-two'); INSERT INTO t1 VALUES(3580, 73930, 'seventy-three thousand nine hundred thirty'); INSERT INTO t1 VALUES(3581, 98131, 'ninety-eight thousand one hundred thirty-one'); INSERT INTO t1 VALUES(3582, 72161, 'seventy-two thousand one hundred sixty-one'); INSERT INTO t1 VALUES(3583, 1978, 'one thousand nine hundred seventy-eight'); INSERT INTO t1 VALUES(3584, 7380, 'seven thousand three hundred eighty'); INSERT INTO t1 VALUES(3585, 9198, 'nine thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(3586, 15560, 'fifteen thousand five hundred sixty'); INSERT INTO t1 VALUES(3587, 46657, 'forty-six thousand six hundred fifty-seven'); INSERT INTO t1 VALUES(3588, 68550, 'sixty-eight thousand five hundred fifty'); INSERT INTO t1 VALUES(3589, 88762, 'eighty-eight thousand seven hundred sixty-two'); INSERT INTO t1 VALUES(3590, 76341, 'seventy-six thousand three hundred forty-one'); INSERT INTO t1 VALUES(3591, 40775, 'forty thousand seven hundred seventy-five'); INSERT INTO t1 VALUES(3592, 18253, 'eighteen thousand two hundred fifty-three'); INSERT INTO t1 VALUES(3593, 75507, 'seventy-five thousand five hundred seven'); INSERT INTO t1 VALUES(3594, 87913, 'eighty-seven thousand nine hundred thirteen'); INSERT INTO t1 VALUES(3595, 9442, 'nine thousand four hundred forty-two'); INSERT INTO t1 VALUES(3596, 63377, 'sixty-three thousand three hundred seventy-seven'); INSERT INTO t1 VALUES(3597, 12883, 'twelve thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(3598, 98246, 'ninety-eight thousand two hundred forty-six'); INSERT INTO t1 VALUES(3599, 7995, 'seven thousand nine hundred ninety-five'); INSERT INTO t1 VALUES(3600, 85017, 'eighty-five thousand seventeen'); INSERT INTO t1 VALUES(3601, 10531, 'ten thousand five hundred thirty-one'); INSERT INTO t1 VALUES(3602, 20296, 'twenty thousand two hundred ninety-six'); INSERT INTO t1 VALUES(3603, 406, 'four hundred six'); INSERT INTO t1 VALUES(3604, 16530, 'sixteen thousand five hundred thirty'); INSERT INTO t1 VALUES(3605, 49126, 'forty-nine thousand one hundred twenty-six'); INSERT INTO t1 VALUES(3606, 57267, 'fifty-seven thousand two hundred sixty-seven'); INSERT INTO t1 VALUES(3607, 16854, 'sixteen thousand eight hundred fifty-four'); INSERT INTO t1 VALUES(3608, 8808, 'eight thousand eight hundred eight'); INSERT INTO t1 VALUES(3609, 78634, 'seventy-eight thousand six hundred thirty-four'); INSERT INTO t1 VALUES(3610, 3456, 'three thousand four hundred fifty-six'); INSERT INTO t1 VALUES(3611, 97350, 'ninety-seven thousand three hundred fifty'); INSERT INTO t1 VALUES(3612, 2076, 'two thousand seventy-six'); INSERT INTO t1 VALUES(3613, 88430, 'eighty-eight thousand four hundred thirty'); INSERT INTO t1 VALUES(3614, 26418, 'twenty-six thousand four hundred eighteen'); INSERT INTO t1 VALUES(3615, 97082, 'ninety-seven thousand eighty-two'); INSERT INTO t1 VALUES(3616, 16754, 'sixteen thousand seven hundred fifty-four'); INSERT INTO t1 VALUES(3617, 22342, 'twenty-two thousand three hundred forty-two'); INSERT INTO t1 VALUES(3618, 66168, 'sixty-six thousand one hundred sixty-eight'); INSERT INTO t1 VALUES(3619, 79729, 'seventy-nine thousand seven hundred twenty-nine'); INSERT INTO t1 VALUES(3620, 34641, 'thirty-four thousand six hundred forty-one'); INSERT INTO t1 VALUES(3621, 96338, 'ninety-six thousand three hundred thirty-eight'); INSERT INTO t1 VALUES(3622, 10599, 'ten thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(3623, 92583, 'ninety-two thousand five hundred eighty-three'); INSERT INTO t1 VALUES(3624, 30460, 'thirty thousand four hundred sixty'); INSERT INTO t1 VALUES(3625, 23825, 'twenty-three thousand eight hundred twenty-five'); INSERT INTO t1 VALUES(3626, 99470, 'ninety-nine thousand four hundred seventy'); INSERT INTO t1 VALUES(3627, 96190, 'ninety-six thousand one hundred ninety'); INSERT INTO t1 VALUES(3628, 41373, 'forty-one thousand three hundred seventy-three'); INSERT INTO t1 VALUES(3629, 88482, 'eighty-eight thousand four hundred eighty-two'); INSERT INTO t1 VALUES(3630, 11556, 'eleven thousand five hundred fifty-six'); INSERT INTO t1 VALUES(3631, 39384, 'thirty-nine thousand three hundred eighty-four'); INSERT INTO t1 VALUES(3632, 22015, 'twenty-two thousand fifteen'); INSERT INTO t1 VALUES(3633, 96697, 'ninety-six thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(3634, 32796, 'thirty-two thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(3635, 5571, 'five thousand five hundred seventy-one'); INSERT INTO t1 VALUES(3636, 74100, 'seventy-four thousand one hundred'); INSERT INTO t1 VALUES(3637, 89589, 'eighty-nine thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(3638, 99706, 'ninety-nine thousand seven hundred six'); INSERT INTO t1 VALUES(3639, 81302, 'eighty-one thousand three hundred two'); INSERT INTO t1 VALUES(3640, 35320, 'thirty-five thousand three hundred twenty'); INSERT INTO t1 VALUES(3641, 47824, 'forty-seven thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(3642, 59349, 'fifty-nine thousand three hundred forty-nine'); INSERT INTO t1 VALUES(3643, 15570, 'fifteen thousand five hundred seventy'); INSERT INTO t1 VALUES(3644, 19240, 'nineteen thousand two hundred forty'); INSERT INTO t1 VALUES(3645, 47306, 'forty-seven thousand three hundred six'); INSERT INTO t1 VALUES(3646, 68125, 'sixty-eight thousand one hundred twenty-five'); INSERT INTO t1 VALUES(3647, 88722, 'eighty-eight thousand seven hundred twenty-two'); INSERT INTO t1 VALUES(3648, 4336, 'four thousand three hundred thirty-six'); INSERT INTO t1 VALUES(3649, 21975, 'twenty-one thousand nine hundred seventy-five'); INSERT INTO t1 VALUES(3650, 43104, 'forty-three thousand one hundred four'); INSERT INTO t1 VALUES(3651, 84111, 'eighty-four thousand one hundred eleven'); INSERT INTO t1 VALUES(3652, 75749, 'seventy-five thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(3653, 54822, 'fifty-four thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(3654, 61346, 'sixty-one thousand three hundred forty-six'); INSERT INTO t1 VALUES(3655, 73400, 'seventy-three thousand four hundred'); INSERT INTO t1 VALUES(3656, 7553, 'seven thousand five hundred fifty-three'); INSERT INTO t1 VALUES(3657, 35092, 'thirty-five thousand ninety-two'); INSERT INTO t1 VALUES(3658, 85416, 'eighty-five thousand four hundred sixteen'); INSERT INTO t1 VALUES(3659, 44519, 'forty-four thousand five hundred nineteen'); INSERT INTO t1 VALUES(3660, 41417, 'forty-one thousand four hundred seventeen'); INSERT INTO t1 VALUES(3661, 60587, 'sixty thousand five hundred eighty-seven'); INSERT INTO t1 VALUES(3662, 13889, 'thirteen thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(3663, 36758, 'thirty-six thousand seven hundred fifty-eight'); INSERT INTO t1 VALUES(3664, 95910, 'ninety-five thousand nine hundred ten'); INSERT INTO t1 VALUES(3665, 34885, 'thirty-four thousand eight hundred eighty-five'); INSERT INTO t1 VALUES(3666, 5469, 'five thousand four hundred sixty-nine'); INSERT INTO t1 VALUES(3667, 11637, 'eleven thousand six hundred thirty-seven'); INSERT INTO t1 VALUES(3668, 76038, 'seventy-six thousand thirty-eight'); INSERT INTO t1 VALUES(3669, 88486, 'eighty-eight thousand four hundred eighty-six'); INSERT INTO t1 VALUES(3670, 38987, 'thirty-eight thousand nine hundred eighty-seven'); INSERT INTO t1 VALUES(3671, 76626, 'seventy-six thousand six hundred twenty-six'); INSERT INTO t1 VALUES(3672, 52445, 'fifty-two thousand four hundred forty-five'); INSERT INTO t1 VALUES(3673, 24826, 'twenty-four thousand eight hundred twenty-six'); INSERT INTO t1 VALUES(3674, 66373, 'sixty-six thousand three hundred seventy-three'); INSERT INTO t1 VALUES(3675, 43204, 'forty-three thousand two hundred four'); INSERT INTO t1 VALUES(3676, 39931, 'thirty-nine thousand nine hundred thirty-one'); INSERT INTO t1 VALUES(3677, 17375, 'seventeen thousand three hundred seventy-five'); INSERT INTO t1 VALUES(3678, 33980, 'thirty-three thousand nine hundred eighty'); INSERT INTO t1 VALUES(3679, 34893, 'thirty-four thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(3680, 36865, 'thirty-six thousand eight hundred sixty-five'); INSERT INTO t1 VALUES(3681, 96791, 'ninety-six thousand seven hundred ninety-one'); INSERT INTO t1 VALUES(3682, 70551, 'seventy thousand five hundred fifty-one'); INSERT INTO t1 VALUES(3683, 76775, 'seventy-six thousand seven hundred seventy-five'); INSERT INTO t1 VALUES(3684, 87909, 'eighty-seven thousand nine hundred nine'); INSERT INTO t1 VALUES(3685, 14582, 'fourteen thousand five hundred eighty-two'); INSERT INTO t1 VALUES(3686, 28672, 'twenty-eight thousand six hundred seventy-two'); INSERT INTO t1 VALUES(3687, 26989, 'twenty-six thousand nine hundred eighty-nine'); INSERT INTO t1 VALUES(3688, 6049, 'six thousand forty-nine'); INSERT INTO t1 VALUES(3689, 244, 'two hundred forty-four'); INSERT INTO t1 VALUES(3690, 50771, 'fifty thousand seven hundred seventy-one'); INSERT INTO t1 VALUES(3691, 57169, 'fifty-seven thousand one hundred sixty-nine'); INSERT INTO t1 VALUES(3692, 72147, 'seventy-two thousand one hundred forty-seven'); INSERT INTO t1 VALUES(3693, 48910, 'forty-eight thousand nine hundred ten'); INSERT INTO t1 VALUES(3694, 83530, 'eighty-three thousand five hundred thirty'); INSERT INTO t1 VALUES(3695, 45095, 'forty-five thousand ninety-five'); INSERT INTO t1 VALUES(3696, 58276, 'fifty-eight thousand two hundred seventy-six'); INSERT INTO t1 VALUES(3697, 21972, 'twenty-one thousand nine hundred seventy-two'); INSERT INTO t1 VALUES(3698, 45492, 'forty-five thousand four hundred ninety-two'); INSERT INTO t1 VALUES(3699, 45993, 'forty-five thousand nine hundred ninety-three'); INSERT INTO t1 VALUES(3700, 90582, 'ninety thousand five hundred eighty-two'); INSERT INTO t1 VALUES(3701, 67204, 'sixty-seven thousand two hundred four'); INSERT INTO t1 VALUES(3702, 27461, 'twenty-seven thousand four hundred sixty-one'); INSERT INTO t1 VALUES(3703, 61821, 'sixty-one thousand eight hundred twenty-one'); INSERT INTO t1 VALUES(3704, 66373, 'sixty-six thousand three hundred seventy-three'); INSERT INTO t1 VALUES(3705, 76432, 'seventy-six thousand four hundred thirty-two'); INSERT INTO t1 VALUES(3706, 81453, 'eighty-one thousand four hundred fifty-three'); INSERT INTO t1 VALUES(3707, 71699, 'seventy-one thousand six hundred ninety-nine'); INSERT INTO t1 VALUES(3708, 42182, 'forty-two thousand one hundred eighty-two'); INSERT INTO t1 VALUES(3709, 37730, 'thirty-seven thousand seven hundred thirty'); INSERT INTO t1 VALUES(3710, 17144, 'seventeen thousand one hundred forty-four'); INSERT INTO t1 VALUES(3711, 13889, 'thirteen thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(3712, 55151, 'fifty-five thousand one hundred fifty-one'); INSERT INTO t1 VALUES(3713, 25628, 'twenty-five thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(3714, 98841, 'ninety-eight thousand eight hundred forty-one'); INSERT INTO t1 VALUES(3715, 87153, 'eighty-seven thousand one hundred fifty-three'); INSERT INTO t1 VALUES(3716, 33290, 'thirty-three thousand two hundred ninety'); INSERT INTO t1 VALUES(3717, 18642, 'eighteen thousand six hundred forty-two'); INSERT INTO t1 VALUES(3718, 18252, 'eighteen thousand two hundred fifty-two'); INSERT INTO t1 VALUES(3719, 4371, 'four thousand three hundred seventy-one'); INSERT INTO t1 VALUES(3720, 79917, 'seventy-nine thousand nine hundred seventeen'); INSERT INTO t1 VALUES(3721, 40887, 'forty thousand eight hundred eighty-seven'); INSERT INTO t1 VALUES(3722, 34266, 'thirty-four thousand two hundred sixty-six'); INSERT INTO t1 VALUES(3723, 29519, 'twenty-nine thousand five hundred nineteen'); INSERT INTO t1 VALUES(3724, 20867, 'twenty thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(3725, 6934, 'six thousand nine hundred thirty-four'); INSERT INTO t1 VALUES(3726, 33751, 'thirty-three thousand seven hundred fifty-one'); INSERT INTO t1 VALUES(3727, 69072, 'sixty-nine thousand seventy-two'); INSERT INTO t1 VALUES(3728, 19523, 'nineteen thousand five hundred twenty-three'); INSERT INTO t1 VALUES(3729, 82867, 'eighty-two thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(3730, 95105, 'ninety-five thousand one hundred five'); INSERT INTO t1 VALUES(3731, 87187, 'eighty-seven thousand one hundred eighty-seven'); INSERT INTO t1 VALUES(3732, 76611, 'seventy-six thousand six hundred eleven'); INSERT INTO t1 VALUES(3733, 50749, 'fifty thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(3734, 2472, 'two thousand four hundred seventy-two'); INSERT INTO t1 VALUES(3735, 40229, 'forty thousand two hundred twenty-nine'); INSERT INTO t1 VALUES(3736, 65688, 'sixty-five thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(3737, 83565, 'eighty-three thousand five hundred sixty-five'); INSERT INTO t1 VALUES(3738, 8275, 'eight thousand two hundred seventy-five'); INSERT INTO t1 VALUES(3739, 95541, 'ninety-five thousand five hundred forty-one'); INSERT INTO t1 VALUES(3740, 1721, 'one thousand seven hundred twenty-one'); INSERT INTO t1 VALUES(3741, 73048, 'seventy-three thousand forty-eight'); INSERT INTO t1 VALUES(3742, 98700, 'ninety-eight thousand seven hundred'); INSERT INTO t1 VALUES(3743, 98380, 'ninety-eight thousand three hundred eighty'); INSERT INTO t1 VALUES(3744, 73366, 'seventy-three thousand three hundred sixty-six'); INSERT INTO t1 VALUES(3745, 97869, 'ninety-seven thousand eight hundred sixty-nine'); INSERT INTO t1 VALUES(3746, 18618, 'eighteen thousand six hundred eighteen'); INSERT INTO t1 VALUES(3747, 32492, 'thirty-two thousand four hundred ninety-two'); INSERT INTO t1 VALUES(3748, 33038, 'thirty-three thousand thirty-eight'); INSERT INTO t1 VALUES(3749, 74261, 'seventy-four thousand two hundred sixty-one'); INSERT INTO t1 VALUES(3750, 10378, 'ten thousand three hundred seventy-eight'); INSERT INTO t1 VALUES(3751, 32253, 'thirty-two thousand two hundred fifty-three'); INSERT INTO t1 VALUES(3752, 87863, 'eighty-seven thousand eight hundred sixty-three'); INSERT INTO t1 VALUES(3753, 77776, 'seventy-seven thousand seven hundred seventy-six'); INSERT INTO t1 VALUES(3754, 96427, 'ninety-six thousand four hundred twenty-seven'); INSERT INTO t1 VALUES(3755, 95686, 'ninety-five thousand six hundred eighty-six'); INSERT INTO t1 VALUES(3756, 65710, 'sixty-five thousand seven hundred ten'); INSERT INTO t1 VALUES(3757, 40498, 'forty thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(3758, 2908, 'two thousand nine hundred eight'); INSERT INTO t1 VALUES(3759, 43754, 'forty-three thousand seven hundred fifty-four'); INSERT INTO t1 VALUES(3760, 24501, 'twenty-four thousand five hundred one'); INSERT INTO t1 VALUES(3761, 77713, 'seventy-seven thousand seven hundred thirteen'); INSERT INTO t1 VALUES(3762, 7907, 'seven thousand nine hundred seven'); INSERT INTO t1 VALUES(3763, 16321, 'sixteen thousand three hundred twenty-one'); INSERT INTO t1 VALUES(3764, 44975, 'forty-four thousand nine hundred seventy-five'); INSERT INTO t1 VALUES(3765, 71917, 'seventy-one thousand nine hundred seventeen'); INSERT INTO t1 VALUES(3766, 49197, 'forty-nine thousand one hundred ninety-seven'); INSERT INTO t1 VALUES(3767, 44553, 'forty-four thousand five hundred fifty-three'); INSERT INTO t1 VALUES(3768, 84494, 'eighty-four thousand four hundred ninety-four'); INSERT INTO t1 VALUES(3769, 42371, 'forty-two thousand three hundred seventy-one'); INSERT INTO t1 VALUES(3770, 37592, 'thirty-seven thousand five hundred ninety-two'); INSERT INTO t1 VALUES(3771, 37682, 'thirty-seven thousand six hundred eighty-two'); INSERT INTO t1 VALUES(3772, 23114, 'twenty-three thousand one hundred fourteen'); INSERT INTO t1 VALUES(3773, 96232, 'ninety-six thousand two hundred thirty-two'); INSERT INTO t1 VALUES(3774, 95005, 'ninety-five thousand five'); INSERT INTO t1 VALUES(3775, 14889, 'fourteen thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(3776, 53204, 'fifty-three thousand two hundred four'); INSERT INTO t1 VALUES(3777, 26821, 'twenty-six thousand eight hundred twenty-one'); INSERT INTO t1 VALUES(3778, 64702, 'sixty-four thousand seven hundred two'); INSERT INTO t1 VALUES(3779, 42833, 'forty-two thousand eight hundred thirty-three'); INSERT INTO t1 VALUES(3780, 8734, 'eight thousand seven hundred thirty-four'); INSERT INTO t1 VALUES(3781, 45818, 'forty-five thousand eight hundred eighteen'); INSERT INTO t1 VALUES(3782, 52254, 'fifty-two thousand two hundred fifty-four'); INSERT INTO t1 VALUES(3783, 46673, 'forty-six thousand six hundred seventy-three'); INSERT INTO t1 VALUES(3784, 50764, 'fifty thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(3785, 9513, 'nine thousand five hundred thirteen'); INSERT INTO t1 VALUES(3786, 90642, 'ninety thousand six hundred forty-two'); INSERT INTO t1 VALUES(3787, 26521, 'twenty-six thousand five hundred twenty-one'); INSERT INTO t1 VALUES(3788, 93096, 'ninety-three thousand ninety-six'); INSERT INTO t1 VALUES(3789, 94350, 'ninety-four thousand three hundred fifty'); INSERT INTO t1 VALUES(3790, 76050, 'seventy-six thousand fifty'); INSERT INTO t1 VALUES(3791, 12200, 'twelve thousand two hundred'); INSERT INTO t1 VALUES(3792, 67788, 'sixty-seven thousand seven hundred eighty-eight'); INSERT INTO t1 VALUES(3793, 45786, 'forty-five thousand seven hundred eighty-six'); INSERT INTO t1 VALUES(3794, 99042, 'ninety-nine thousand forty-two'); INSERT INTO t1 VALUES(3795, 1102, 'one thousand one hundred two'); INSERT INTO t1 VALUES(3796, 10317, 'ten thousand three hundred seventeen'); INSERT INTO t1 VALUES(3797, 83766, 'eighty-three thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(3798, 32196, 'thirty-two thousand one hundred ninety-six'); INSERT INTO t1 VALUES(3799, 11859, 'eleven thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(3800, 11220, 'eleven thousand two hundred twenty'); INSERT INTO t1 VALUES(3801, 5435, 'five thousand four hundred thirty-five'); INSERT INTO t1 VALUES(3802, 79244, 'seventy-nine thousand two hundred forty-four'); INSERT INTO t1 VALUES(3803, 86440, 'eighty-six thousand four hundred forty'); INSERT INTO t1 VALUES(3804, 58007, 'fifty-eight thousand seven'); INSERT INTO t1 VALUES(3805, 59879, 'fifty-nine thousand eight hundred seventy-nine'); INSERT INTO t1 VALUES(3806, 93073, 'ninety-three thousand seventy-three'); INSERT INTO t1 VALUES(3807, 41395, 'forty-one thousand three hundred ninety-five'); INSERT INTO t1 VALUES(3808, 70064, 'seventy thousand sixty-four'); INSERT INTO t1 VALUES(3809, 76480, 'seventy-six thousand four hundred eighty'); INSERT INTO t1 VALUES(3810, 89053, 'eighty-nine thousand fifty-three'); INSERT INTO t1 VALUES(3811, 61298, 'sixty-one thousand two hundred ninety-eight'); INSERT INTO t1 VALUES(3812, 62268, 'sixty-two thousand two hundred sixty-eight'); INSERT INTO t1 VALUES(3813, 86474, 'eighty-six thousand four hundred seventy-four'); INSERT INTO t1 VALUES(3814, 99767, 'ninety-nine thousand seven hundred sixty-seven'); INSERT INTO t1 VALUES(3815, 25087, 'twenty-five thousand eighty-seven'); INSERT INTO t1 VALUES(3816, 89484, 'eighty-nine thousand four hundred eighty-four'); INSERT INTO t1 VALUES(3817, 28193, 'twenty-eight thousand one hundred ninety-three'); INSERT INTO t1 VALUES(3818, 88213, 'eighty-eight thousand two hundred thirteen'); INSERT INTO t1 VALUES(3819, 69567, 'sixty-nine thousand five hundred sixty-seven'); INSERT INTO t1 VALUES(3820, 61386, 'sixty-one thousand three hundred eighty-six'); INSERT INTO t1 VALUES(3821, 6122, 'six thousand one hundred twenty-two'); INSERT INTO t1 VALUES(3822, 29237, 'twenty-nine thousand two hundred thirty-seven'); INSERT INTO t1 VALUES(3823, 34504, 'thirty-four thousand five hundred four'); INSERT INTO t1 VALUES(3824, 2433, 'two thousand four hundred thirty-three'); INSERT INTO t1 VALUES(3825, 79539, 'seventy-nine thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(3826, 11990, 'eleven thousand nine hundred ninety'); INSERT INTO t1 VALUES(3827, 48797, 'forty-eight thousand seven hundred ninety-seven'); INSERT INTO t1 VALUES(3828, 1352, 'one thousand three hundred fifty-two'); INSERT INTO t1 VALUES(3829, 92368, 'ninety-two thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(3830, 98175, 'ninety-eight thousand one hundred seventy-five'); INSERT INTO t1 VALUES(3831, 23105, 'twenty-three thousand one hundred five'); INSERT INTO t1 VALUES(3832, 6065, 'six thousand sixty-five'); INSERT INTO t1 VALUES(3833, 75885, 'seventy-five thousand eight hundred eighty-five'); INSERT INTO t1 VALUES(3834, 63862, 'sixty-three thousand eight hundred sixty-two'); INSERT INTO t1 VALUES(3835, 78082, 'seventy-eight thousand eighty-two'); INSERT INTO t1 VALUES(3836, 12056, 'twelve thousand fifty-six'); INSERT INTO t1 VALUES(3837, 58543, 'fifty-eight thousand five hundred forty-three'); INSERT INTO t1 VALUES(3838, 52812, 'fifty-two thousand eight hundred twelve'); INSERT INTO t1 VALUES(3839, 38551, 'thirty-eight thousand five hundred fifty-one'); INSERT INTO t1 VALUES(3840, 61350, 'sixty-one thousand three hundred fifty'); INSERT INTO t1 VALUES(3841, 30937, 'thirty thousand nine hundred thirty-seven'); INSERT INTO t1 VALUES(3842, 39616, 'thirty-nine thousand six hundred sixteen'); INSERT INTO t1 VALUES(3843, 73450, 'seventy-three thousand four hundred fifty'); INSERT INTO t1 VALUES(3844, 98408, 'ninety-eight thousand four hundred eight'); INSERT INTO t1 VALUES(3845, 15848, 'fifteen thousand eight hundred forty-eight'); INSERT INTO t1 VALUES(3846, 81390, 'eighty-one thousand three hundred ninety'); INSERT INTO t1 VALUES(3847, 26513, 'twenty-six thousand five hundred thirteen'); INSERT INTO t1 VALUES(3848, 93768, 'ninety-three thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(3849, 14302, 'fourteen thousand three hundred two'); INSERT INTO t1 VALUES(3850, 11752, 'eleven thousand seven hundred fifty-two'); INSERT INTO t1 VALUES(3851, 6683, 'six thousand six hundred eighty-three'); INSERT INTO t1 VALUES(3852, 31395, 'thirty-one thousand three hundred ninety-five'); INSERT INTO t1 VALUES(3853, 6996, 'six thousand nine hundred ninety-six'); INSERT INTO t1 VALUES(3854, 87076, 'eighty-seven thousand seventy-six'); INSERT INTO t1 VALUES(3855, 94709, 'ninety-four thousand seven hundred nine'); INSERT INTO t1 VALUES(3856, 45364, 'forty-five thousand three hundred sixty-four'); INSERT INTO t1 VALUES(3857, 40264, 'forty thousand two hundred sixty-four'); INSERT INTO t1 VALUES(3858, 19242, 'nineteen thousand two hundred forty-two'); INSERT INTO t1 VALUES(3859, 45883, 'forty-five thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(3860, 23784, 'twenty-three thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(3861, 22366, 'twenty-two thousand three hundred sixty-six'); INSERT INTO t1 VALUES(3862, 38613, 'thirty-eight thousand six hundred thirteen'); INSERT INTO t1 VALUES(3863, 54181, 'fifty-four thousand one hundred eighty-one'); INSERT INTO t1 VALUES(3864, 82679, 'eighty-two thousand six hundred seventy-nine'); INSERT INTO t1 VALUES(3865, 93600, 'ninety-three thousand six hundred'); INSERT INTO t1 VALUES(3866, 79423, 'seventy-nine thousand four hundred twenty-three'); INSERT INTO t1 VALUES(3867, 96218, 'ninety-six thousand two hundred eighteen'); INSERT INTO t1 VALUES(3868, 16609, 'sixteen thousand six hundred nine'); INSERT INTO t1 VALUES(3869, 13585, 'thirteen thousand five hundred eighty-five'); INSERT INTO t1 VALUES(3870, 74276, 'seventy-four thousand two hundred seventy-six'); INSERT INTO t1 VALUES(3871, 41745, 'forty-one thousand seven hundred forty-five'); INSERT INTO t1 VALUES(3872, 11664, 'eleven thousand six hundred sixty-four'); INSERT INTO t1 VALUES(3873, 46187, 'forty-six thousand one hundred eighty-seven'); INSERT INTO t1 VALUES(3874, 6788, 'six thousand seven hundred eighty-eight'); INSERT INTO t1 VALUES(3875, 10959, 'ten thousand nine hundred fifty-nine'); INSERT INTO t1 VALUES(3876, 3395, 'three thousand three hundred ninety-five'); INSERT INTO t1 VALUES(3877, 95884, 'ninety-five thousand eight hundred eighty-four'); INSERT INTO t1 VALUES(3878, 10793, 'ten thousand seven hundred ninety-three'); INSERT INTO t1 VALUES(3879, 82977, 'eighty-two thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(3880, 87467, 'eighty-seven thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(3881, 15275, 'fifteen thousand two hundred seventy-five'); INSERT INTO t1 VALUES(3882, 17124, 'seventeen thousand one hundred twenty-four'); INSERT INTO t1 VALUES(3883, 49913, 'forty-nine thousand nine hundred thirteen'); INSERT INTO t1 VALUES(3884, 47050, 'forty-seven thousand fifty'); INSERT INTO t1 VALUES(3885, 32441, 'thirty-two thousand four hundred forty-one'); INSERT INTO t1 VALUES(3886, 93266, 'ninety-three thousand two hundred sixty-six'); INSERT INTO t1 VALUES(3887, 91864, 'ninety-one thousand eight hundred sixty-four'); INSERT INTO t1 VALUES(3888, 313, 'three hundred thirteen'); INSERT INTO t1 VALUES(3889, 47011, 'forty-seven thousand eleven'); INSERT INTO t1 VALUES(3890, 20944, 'twenty thousand nine hundred forty-four'); INSERT INTO t1 VALUES(3891, 23221, 'twenty-three thousand two hundred twenty-one'); INSERT INTO t1 VALUES(3892, 34869, 'thirty-four thousand eight hundred sixty-nine'); INSERT INTO t1 VALUES(3893, 28664, 'twenty-eight thousand six hundred sixty-four'); INSERT INTO t1 VALUES(3894, 72174, 'seventy-two thousand one hundred seventy-four'); INSERT INTO t1 VALUES(3895, 58160, 'fifty-eight thousand one hundred sixty'); INSERT INTO t1 VALUES(3896, 70441, 'seventy thousand four hundred forty-one'); INSERT INTO t1 VALUES(3897, 41607, 'forty-one thousand six hundred seven'); INSERT INTO t1 VALUES(3898, 97240, 'ninety-seven thousand two hundred forty'); INSERT INTO t1 VALUES(3899, 17742, 'seventeen thousand seven hundred forty-two'); INSERT INTO t1 VALUES(3900, 79007, 'seventy-nine thousand seven'); INSERT INTO t1 VALUES(3901, 20146, 'twenty thousand one hundred forty-six'); INSERT INTO t1 VALUES(3902, 31531, 'thirty-one thousand five hundred thirty-one'); INSERT INTO t1 VALUES(3903, 8368, 'eight thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(3904, 61917, 'sixty-one thousand nine hundred seventeen'); INSERT INTO t1 VALUES(3905, 47507, 'forty-seven thousand five hundred seven'); INSERT INTO t1 VALUES(3906, 37292, 'thirty-seven thousand two hundred ninety-two'); INSERT INTO t1 VALUES(3907, 80704, 'eighty thousand seven hundred four'); INSERT INTO t1 VALUES(3908, 46364, 'forty-six thousand three hundred sixty-four'); INSERT INTO t1 VALUES(3909, 50174, 'fifty thousand one hundred seventy-four'); INSERT INTO t1 VALUES(3910, 48855, 'forty-eight thousand eight hundred fifty-five'); INSERT INTO t1 VALUES(3911, 94444, 'ninety-four thousand four hundred forty-four'); INSERT INTO t1 VALUES(3912, 15294, 'fifteen thousand two hundred ninety-four'); INSERT INTO t1 VALUES(3913, 36813, 'thirty-six thousand eight hundred thirteen'); INSERT INTO t1 VALUES(3914, 60220, 'sixty thousand two hundred twenty'); INSERT INTO t1 VALUES(3915, 57386, 'fifty-seven thousand three hundred eighty-six'); INSERT INTO t1 VALUES(3916, 77141, 'seventy-seven thousand one hundred forty-one'); INSERT INTO t1 VALUES(3917, 559, 'five hundred fifty-nine'); INSERT INTO t1 VALUES(3918, 72758, 'seventy-two thousand seven hundred fifty-eight'); INSERT INTO t1 VALUES(3919, 55010, 'fifty-five thousand ten'); INSERT INTO t1 VALUES(3920, 98236, 'ninety-eight thousand two hundred thirty-six'); INSERT INTO t1 VALUES(3921, 85551, 'eighty-five thousand five hundred fifty-one'); INSERT INTO t1 VALUES(3922, 27679, 'twenty-seven thousand six hundred seventy-nine'); INSERT INTO t1 VALUES(3923, 52905, 'fifty-two thousand nine hundred five'); INSERT INTO t1 VALUES(3924, 31239, 'thirty-one thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(3925, 21107, 'twenty-one thousand one hundred seven'); INSERT INTO t1 VALUES(3926, 63530, 'sixty-three thousand five hundred thirty'); INSERT INTO t1 VALUES(3927, 5246, 'five thousand two hundred forty-six'); INSERT INTO t1 VALUES(3928, 56199, 'fifty-six thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(3929, 7548, 'seven thousand five hundred forty-eight'); INSERT INTO t1 VALUES(3930, 39631, 'thirty-nine thousand six hundred thirty-one'); INSERT INTO t1 VALUES(3931, 8389, 'eight thousand three hundred eighty-nine'); INSERT INTO t1 VALUES(3932, 34049, 'thirty-four thousand forty-nine'); INSERT INTO t1 VALUES(3933, 38445, 'thirty-eight thousand four hundred forty-five'); INSERT INTO t1 VALUES(3934, 4271, 'four thousand two hundred seventy-one'); INSERT INTO t1 VALUES(3935, 9796, 'nine thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(3936, 44287, 'forty-four thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(3937, 35235, 'thirty-five thousand two hundred thirty-five'); INSERT INTO t1 VALUES(3938, 59785, 'fifty-nine thousand seven hundred eighty-five'); INSERT INTO t1 VALUES(3939, 36910, 'thirty-six thousand nine hundred ten'); INSERT INTO t1 VALUES(3940, 60146, 'sixty thousand one hundred forty-six'); INSERT INTO t1 VALUES(3941, 92606, 'ninety-two thousand six hundred six'); INSERT INTO t1 VALUES(3942, 76387, 'seventy-six thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(3943, 84524, 'eighty-four thousand five hundred twenty-four'); INSERT INTO t1 VALUES(3944, 11560, 'eleven thousand five hundred sixty'); INSERT INTO t1 VALUES(3945, 67325, 'sixty-seven thousand three hundred twenty-five'); INSERT INTO t1 VALUES(3946, 28251, 'twenty-eight thousand two hundred fifty-one'); INSERT INTO t1 VALUES(3947, 61252, 'sixty-one thousand two hundred fifty-two'); INSERT INTO t1 VALUES(3948, 52744, 'fifty-two thousand seven hundred forty-four'); INSERT INTO t1 VALUES(3949, 35597, 'thirty-five thousand five hundred ninety-seven'); INSERT INTO t1 VALUES(3950, 86414, 'eighty-six thousand four hundred fourteen'); INSERT INTO t1 VALUES(3951, 1992, 'one thousand nine hundred ninety-two'); INSERT INTO t1 VALUES(3952, 16743, 'sixteen thousand seven hundred forty-three'); INSERT INTO t1 VALUES(3953, 66188, 'sixty-six thousand one hundred eighty-eight'); INSERT INTO t1 VALUES(3954, 72228, 'seventy-two thousand two hundred twenty-eight'); INSERT INTO t1 VALUES(3955, 35606, 'thirty-five thousand six hundred six'); INSERT INTO t1 VALUES(3956, 14231, 'fourteen thousand two hundred thirty-one'); INSERT INTO t1 VALUES(3957, 95307, 'ninety-five thousand three hundred seven'); INSERT INTO t1 VALUES(3958, 9511, 'nine thousand five hundred eleven'); INSERT INTO t1 VALUES(3959, 58014, 'fifty-eight thousand fourteen'); INSERT INTO t1 VALUES(3960, 60048, 'sixty thousand forty-eight'); INSERT INTO t1 VALUES(3961, 93098, 'ninety-three thousand ninety-eight'); INSERT INTO t1 VALUES(3962, 52218, 'fifty-two thousand two hundred eighteen'); INSERT INTO t1 VALUES(3963, 90026, 'ninety thousand twenty-six'); INSERT INTO t1 VALUES(3964, 91869, 'ninety-one thousand eight hundred sixty-nine'); INSERT INTO t1 VALUES(3965, 52881, 'fifty-two thousand eight hundred eighty-one'); INSERT INTO t1 VALUES(3966, 54067, 'fifty-four thousand sixty-seven'); INSERT INTO t1 VALUES(3967, 51007, 'fifty-one thousand seven'); INSERT INTO t1 VALUES(3968, 55328, 'fifty-five thousand three hundred twenty-eight'); INSERT INTO t1 VALUES(3969, 39037, 'thirty-nine thousand thirty-seven'); INSERT INTO t1 VALUES(3970, 80020, 'eighty thousand twenty'); INSERT INTO t1 VALUES(3971, 61629, 'sixty-one thousand six hundred twenty-nine'); INSERT INTO t1 VALUES(3972, 53503, 'fifty-three thousand five hundred three'); INSERT INTO t1 VALUES(3973, 82824, 'eighty-two thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(3974, 86512, 'eighty-six thousand five hundred twelve'); INSERT INTO t1 VALUES(3975, 40457, 'forty thousand four hundred fifty-seven'); INSERT INTO t1 VALUES(3976, 56502, 'fifty-six thousand five hundred two'); INSERT INTO t1 VALUES(3977, 43073, 'forty-three thousand seventy-three'); INSERT INTO t1 VALUES(3978, 46270, 'forty-six thousand two hundred seventy'); INSERT INTO t1 VALUES(3979, 10861, 'ten thousand eight hundred sixty-one'); INSERT INTO t1 VALUES(3980, 33890, 'thirty-three thousand eight hundred ninety'); INSERT INTO t1 VALUES(3981, 55937, 'fifty-five thousand nine hundred thirty-seven'); INSERT INTO t1 VALUES(3982, 68673, 'sixty-eight thousand six hundred seventy-three'); INSERT INTO t1 VALUES(3983, 45273, 'forty-five thousand two hundred seventy-three'); INSERT INTO t1 VALUES(3984, 6645, 'six thousand six hundred forty-five'); INSERT INTO t1 VALUES(3985, 70307, 'seventy thousand three hundred seven'); INSERT INTO t1 VALUES(3986, 25268, 'twenty-five thousand two hundred sixty-eight'); INSERT INTO t1 VALUES(3987, 2266, 'two thousand two hundred sixty-six'); INSERT INTO t1 VALUES(3988, 28591, 'twenty-eight thousand five hundred ninety-one'); INSERT INTO t1 VALUES(3989, 29696, 'twenty-nine thousand six hundred ninety-six'); INSERT INTO t1 VALUES(3990, 44161, 'forty-four thousand one hundred sixty-one'); INSERT INTO t1 VALUES(3991, 33114, 'thirty-three thousand one hundred fourteen'); INSERT INTO t1 VALUES(3992, 8356, 'eight thousand three hundred fifty-six'); INSERT INTO t1 VALUES(3993, 12246, 'twelve thousand two hundred forty-six'); INSERT INTO t1 VALUES(3994, 30703, 'thirty thousand seven hundred three'); INSERT INTO t1 VALUES(3995, 56298, 'fifty-six thousand two hundred ninety-eight'); INSERT INTO t1 VALUES(3996, 5587, 'five thousand five hundred eighty-seven'); INSERT INTO t1 VALUES(3997, 32706, 'thirty-two thousand seven hundred six'); INSERT INTO t1 VALUES(3998, 90396, 'ninety thousand three hundred ninety-six'); INSERT INTO t1 VALUES(3999, 53049, 'fifty-three thousand forty-nine'); INSERT INTO t1 VALUES(4000, 72794, 'seventy-two thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(4001, 19099, 'nineteen thousand ninety-nine'); INSERT INTO t1 VALUES(4002, 64021, 'sixty-four thousand twenty-one'); INSERT INTO t1 VALUES(4003, 45367, 'forty-five thousand three hundred sixty-seven'); INSERT INTO t1 VALUES(4004, 43689, 'forty-three thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(4005, 17675, 'seventeen thousand six hundred seventy-five'); INSERT INTO t1 VALUES(4006, 89877, 'eighty-nine thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(4007, 42947, 'forty-two thousand nine hundred forty-seven'); INSERT INTO t1 VALUES(4008, 39770, 'thirty-nine thousand seven hundred seventy'); INSERT INTO t1 VALUES(4009, 7643, 'seven thousand six hundred forty-three'); INSERT INTO t1 VALUES(4010, 34297, 'thirty-four thousand two hundred ninety-seven'); INSERT INTO t1 VALUES(4011, 99996, 'ninety-nine thousand nine hundred ninety-six'); INSERT INTO t1 VALUES(4012, 68507, 'sixty-eight thousand five hundred seven'); INSERT INTO t1 VALUES(4013, 64399, 'sixty-four thousand three hundred ninety-nine'); INSERT INTO t1 VALUES(4014, 69246, 'sixty-nine thousand two hundred forty-six'); INSERT INTO t1 VALUES(4015, 38551, 'thirty-eight thousand five hundred fifty-one'); INSERT INTO t1 VALUES(4016, 79503, 'seventy-nine thousand five hundred three'); INSERT INTO t1 VALUES(4017, 66588, 'sixty-six thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(4018, 44339, 'forty-four thousand three hundred thirty-nine'); INSERT INTO t1 VALUES(4019, 21838, 'twenty-one thousand eight hundred thirty-eight'); INSERT INTO t1 VALUES(4020, 6660, 'six thousand six hundred sixty'); INSERT INTO t1 VALUES(4021, 53215, 'fifty-three thousand two hundred fifteen'); INSERT INTO t1 VALUES(4022, 5994, 'five thousand nine hundred ninety-four'); INSERT INTO t1 VALUES(4023, 64280, 'sixty-four thousand two hundred eighty'); INSERT INTO t1 VALUES(4024, 63415, 'sixty-three thousand four hundred fifteen'); INSERT INTO t1 VALUES(4025, 30487, 'thirty thousand four hundred eighty-seven'); INSERT INTO t1 VALUES(4026, 483, 'four hundred eighty-three'); INSERT INTO t1 VALUES(4027, 1493, 'one thousand four hundred ninety-three'); INSERT INTO t1 VALUES(4028, 35379, 'thirty-five thousand three hundred seventy-nine'); INSERT INTO t1 VALUES(4029, 74311, 'seventy-four thousand three hundred eleven'); INSERT INTO t1 VALUES(4030, 80133, 'eighty thousand one hundred thirty-three'); INSERT INTO t1 VALUES(4031, 36637, 'thirty-six thousand six hundred thirty-seven'); INSERT INTO t1 VALUES(4032, 55419, 'fifty-five thousand four hundred nineteen'); INSERT INTO t1 VALUES(4033, 68446, 'sixty-eight thousand four hundred forty-six'); INSERT INTO t1 VALUES(4034, 38054, 'thirty-eight thousand fifty-four'); INSERT INTO t1 VALUES(4035, 96766, 'ninety-six thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(4036, 91361, 'ninety-one thousand three hundred sixty-one'); INSERT INTO t1 VALUES(4037, 33672, 'thirty-three thousand six hundred seventy-two'); INSERT INTO t1 VALUES(4038, 91103, 'ninety-one thousand one hundred three'); INSERT INTO t1 VALUES(4039, 93229, 'ninety-three thousand two hundred twenty-nine'); INSERT INTO t1 VALUES(4040, 92728, 'ninety-two thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(4041, 85829, 'eighty-five thousand eight hundred twenty-nine'); INSERT INTO t1 VALUES(4042, 27828, 'twenty-seven thousand eight hundred twenty-eight'); INSERT INTO t1 VALUES(4043, 26112, 'twenty-six thousand one hundred twelve'); INSERT INTO t1 VALUES(4044, 26029, 'twenty-six thousand twenty-nine'); INSERT INTO t1 VALUES(4045, 53492, 'fifty-three thousand four hundred ninety-two'); INSERT INTO t1 VALUES(4046, 75896, 'seventy-five thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(4047, 64940, 'sixty-four thousand nine hundred forty'); INSERT INTO t1 VALUES(4048, 34726, 'thirty-four thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(4049, 89928, 'eighty-nine thousand nine hundred twenty-eight'); INSERT INTO t1 VALUES(4050, 80576, 'eighty thousand five hundred seventy-six'); INSERT INTO t1 VALUES(4051, 12355, 'twelve thousand three hundred fifty-five'); INSERT INTO t1 VALUES(4052, 56383, 'fifty-six thousand three hundred eighty-three'); INSERT INTO t1 VALUES(4053, 6186, 'six thousand one hundred eighty-six'); INSERT INTO t1 VALUES(4054, 41800, 'forty-one thousand eight hundred'); INSERT INTO t1 VALUES(4055, 90071, 'ninety thousand seventy-one'); INSERT INTO t1 VALUES(4056, 58885, 'fifty-eight thousand eight hundred eighty-five'); INSERT INTO t1 VALUES(4057, 1045, 'one thousand forty-five'); INSERT INTO t1 VALUES(4058, 79904, 'seventy-nine thousand nine hundred four'); INSERT INTO t1 VALUES(4059, 95617, 'ninety-five thousand six hundred seventeen'); INSERT INTO t1 VALUES(4060, 34976, 'thirty-four thousand nine hundred seventy-six'); INSERT INTO t1 VALUES(4061, 19889, 'nineteen thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(4062, 4739, 'four thousand seven hundred thirty-nine'); INSERT INTO t1 VALUES(4063, 15935, 'fifteen thousand nine hundred thirty-five'); INSERT INTO t1 VALUES(4064, 13908, 'thirteen thousand nine hundred eight'); INSERT INTO t1 VALUES(4065, 59215, 'fifty-nine thousand two hundred fifteen'); INSERT INTO t1 VALUES(4066, 40588, 'forty thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(4067, 52777, 'fifty-two thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(4068, 59150, 'fifty-nine thousand one hundred fifty'); INSERT INTO t1 VALUES(4069, 91694, 'ninety-one thousand six hundred ninety-four'); INSERT INTO t1 VALUES(4070, 33531, 'thirty-three thousand five hundred thirty-one'); INSERT INTO t1 VALUES(4071, 2505, 'two thousand five hundred five'); INSERT INTO t1 VALUES(4072, 44276, 'forty-four thousand two hundred seventy-six'); INSERT INTO t1 VALUES(4073, 6488, 'six thousand four hundred eighty-eight'); INSERT INTO t1 VALUES(4074, 15160, 'fifteen thousand one hundred sixty'); INSERT INTO t1 VALUES(4075, 30114, 'thirty thousand one hundred fourteen'); INSERT INTO t1 VALUES(4076, 66501, 'sixty-six thousand five hundred one'); INSERT INTO t1 VALUES(4077, 86192, 'eighty-six thousand one hundred ninety-two'); INSERT INTO t1 VALUES(4078, 65688, 'sixty-five thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(4079, 96085, 'ninety-six thousand eighty-five'); INSERT INTO t1 VALUES(4080, 71384, 'seventy-one thousand three hundred eighty-four'); INSERT INTO t1 VALUES(4081, 27124, 'twenty-seven thousand one hundred twenty-four'); INSERT INTO t1 VALUES(4082, 55394, 'fifty-five thousand three hundred ninety-four'); INSERT INTO t1 VALUES(4083, 24491, 'twenty-four thousand four hundred ninety-one'); INSERT INTO t1 VALUES(4084, 14783, 'fourteen thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(4085, 29011, 'twenty-nine thousand eleven'); INSERT INTO t1 VALUES(4086, 88954, 'eighty-eight thousand nine hundred fifty-four'); INSERT INTO t1 VALUES(4087, 44956, 'forty-four thousand nine hundred fifty-six'); INSERT INTO t1 VALUES(4088, 53429, 'fifty-three thousand four hundred twenty-nine'); INSERT INTO t1 VALUES(4089, 74359, 'seventy-four thousand three hundred fifty-nine'); INSERT INTO t1 VALUES(4090, 52001, 'fifty-two thousand one'); INSERT INTO t1 VALUES(4091, 45565, 'forty-five thousand five hundred sixty-five'); INSERT INTO t1 VALUES(4092, 93628, 'ninety-three thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(4093, 94867, 'ninety-four thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(4094, 27584, 'twenty-seven thousand five hundred eighty-four'); INSERT INTO t1 VALUES(4095, 58674, 'fifty-eight thousand six hundred seventy-four'); INSERT INTO t1 VALUES(4096, 82871, 'eighty-two thousand eight hundred seventy-one'); INSERT INTO t1 VALUES(4097, 55035, 'fifty-five thousand thirty-five'); INSERT INTO t1 VALUES(4098, 28628, 'twenty-eight thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(4099, 36986, 'thirty-six thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(4100, 32452, 'thirty-two thousand four hundred fifty-two'); INSERT INTO t1 VALUES(4101, 27003, 'twenty-seven thousand three'); INSERT INTO t1 VALUES(4102, 22597, 'twenty-two thousand five hundred ninety-seven'); INSERT INTO t1 VALUES(4103, 58324, 'fifty-eight thousand three hundred twenty-four'); INSERT INTO t1 VALUES(4104, 42426, 'forty-two thousand four hundred twenty-six'); INSERT INTO t1 VALUES(4105, 5336, 'five thousand three hundred thirty-six'); INSERT INTO t1 VALUES(4106, 23093, 'twenty-three thousand ninety-three'); INSERT INTO t1 VALUES(4107, 64670, 'sixty-four thousand six hundred seventy'); INSERT INTO t1 VALUES(4108, 25965, 'twenty-five thousand nine hundred sixty-five'); INSERT INTO t1 VALUES(4109, 29919, 'twenty-nine thousand nine hundred nineteen'); INSERT INTO t1 VALUES(4110, 25017, 'twenty-five thousand seventeen'); INSERT INTO t1 VALUES(4111, 45366, 'forty-five thousand three hundred sixty-six'); INSERT INTO t1 VALUES(4112, 30028, 'thirty thousand twenty-eight'); INSERT INTO t1 VALUES(4113, 50047, 'fifty thousand forty-seven'); INSERT INTO t1 VALUES(4114, 58958, 'fifty-eight thousand nine hundred fifty-eight'); INSERT INTO t1 VALUES(4115, 14204, 'fourteen thousand two hundred four'); INSERT INTO t1 VALUES(4116, 94989, 'ninety-four thousand nine hundred eighty-nine'); INSERT INTO t1 VALUES(4117, 21657, 'twenty-one thousand six hundred fifty-seven'); INSERT INTO t1 VALUES(4118, 20769, 'twenty thousand seven hundred sixty-nine'); INSERT INTO t1 VALUES(4119, 56826, 'fifty-six thousand eight hundred twenty-six'); INSERT INTO t1 VALUES(4120, 50027, 'fifty thousand twenty-seven'); INSERT INTO t1 VALUES(4121, 47258, 'forty-seven thousand two hundred fifty-eight'); INSERT INTO t1 VALUES(4122, 88219, 'eighty-eight thousand two hundred nineteen'); INSERT INTO t1 VALUES(4123, 2329, 'two thousand three hundred twenty-nine'); INSERT INTO t1 VALUES(4124, 51963, 'fifty-one thousand nine hundred sixty-three'); INSERT INTO t1 VALUES(4125, 98153, 'ninety-eight thousand one hundred fifty-three'); INSERT INTO t1 VALUES(4126, 82115, 'eighty-two thousand one hundred fifteen'); INSERT INTO t1 VALUES(4127, 15846, 'fifteen thousand eight hundred forty-six'); INSERT INTO t1 VALUES(4128, 58304, 'fifty-eight thousand three hundred four'); INSERT INTO t1 VALUES(4129, 9239, 'nine thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(4130, 2227, 'two thousand two hundred twenty-seven'); INSERT INTO t1 VALUES(4131, 59539, 'fifty-nine thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(4132, 8854, 'eight thousand eight hundred fifty-four'); INSERT INTO t1 VALUES(4133, 55999, 'fifty-five thousand nine hundred ninety-nine'); INSERT INTO t1 VALUES(4134, 35504, 'thirty-five thousand five hundred four'); INSERT INTO t1 VALUES(4135, 32550, 'thirty-two thousand five hundred fifty'); INSERT INTO t1 VALUES(4136, 49099, 'forty-nine thousand ninety-nine'); INSERT INTO t1 VALUES(4137, 36557, 'thirty-six thousand five hundred fifty-seven'); INSERT INTO t1 VALUES(4138, 42436, 'forty-two thousand four hundred thirty-six'); INSERT INTO t1 VALUES(4139, 60640, 'sixty thousand six hundred forty'); INSERT INTO t1 VALUES(4140, 31467, 'thirty-one thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(4141, 40086, 'forty thousand eighty-six'); INSERT INTO t1 VALUES(4142, 50544, 'fifty thousand five hundred forty-four'); INSERT INTO t1 VALUES(4143, 6241, 'six thousand two hundred forty-one'); INSERT INTO t1 VALUES(4144, 43125, 'forty-three thousand one hundred twenty-five'); INSERT INTO t1 VALUES(4145, 62070, 'sixty-two thousand seventy'); INSERT INTO t1 VALUES(4146, 94535, 'ninety-four thousand five hundred thirty-five'); INSERT INTO t1 VALUES(4147, 17132, 'seventeen thousand one hundred thirty-two'); INSERT INTO t1 VALUES(4148, 28845, 'twenty-eight thousand eight hundred forty-five'); INSERT INTO t1 VALUES(4149, 69194, 'sixty-nine thousand one hundred ninety-four'); INSERT INTO t1 VALUES(4150, 82946, 'eighty-two thousand nine hundred forty-six'); INSERT INTO t1 VALUES(4151, 10326, 'ten thousand three hundred twenty-six'); INSERT INTO t1 VALUES(4152, 63692, 'sixty-three thousand six hundred ninety-two'); INSERT INTO t1 VALUES(4153, 50261, 'fifty thousand two hundred sixty-one'); INSERT INTO t1 VALUES(4154, 9239, 'nine thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(4155, 29463, 'twenty-nine thousand four hundred sixty-three'); INSERT INTO t1 VALUES(4156, 46890, 'forty-six thousand eight hundred ninety'); INSERT INTO t1 VALUES(4157, 62820, 'sixty-two thousand eight hundred twenty'); INSERT INTO t1 VALUES(4158, 96262, 'ninety-six thousand two hundred sixty-two'); INSERT INTO t1 VALUES(4159, 85822, 'eighty-five thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(4160, 94653, 'ninety-four thousand six hundred fifty-three'); INSERT INTO t1 VALUES(4161, 38565, 'thirty-eight thousand five hundred sixty-five'); INSERT INTO t1 VALUES(4162, 96935, 'ninety-six thousand nine hundred thirty-five'); INSERT INTO t1 VALUES(4163, 81090, 'eighty-one thousand ninety'); INSERT INTO t1 VALUES(4164, 33915, 'thirty-three thousand nine hundred fifteen'); INSERT INTO t1 VALUES(4165, 29239, 'twenty-nine thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(4166, 93164, 'ninety-three thousand one hundred sixty-four'); INSERT INTO t1 VALUES(4167, 82025, 'eighty-two thousand twenty-five'); INSERT INTO t1 VALUES(4168, 64441, 'sixty-four thousand four hundred forty-one'); INSERT INTO t1 VALUES(4169, 81406, 'eighty-one thousand four hundred six'); INSERT INTO t1 VALUES(4170, 7045, 'seven thousand forty-five'); INSERT INTO t1 VALUES(4171, 59161, 'fifty-nine thousand one hundred sixty-one'); INSERT INTO t1 VALUES(4172, 86645, 'eighty-six thousand six hundred forty-five'); INSERT INTO t1 VALUES(4173, 59085, 'fifty-nine thousand eighty-five'); INSERT INTO t1 VALUES(4174, 53939, 'fifty-three thousand nine hundred thirty-nine'); INSERT INTO t1 VALUES(4175, 99922, 'ninety-nine thousand nine hundred twenty-two'); INSERT INTO t1 VALUES(4176, 86029, 'eighty-six thousand twenty-nine'); INSERT INTO t1 VALUES(4177, 17185, 'seventeen thousand one hundred eighty-five'); INSERT INTO t1 VALUES(4178, 29103, 'twenty-nine thousand one hundred three'); INSERT INTO t1 VALUES(4179, 14187, 'fourteen thousand one hundred eighty-seven'); INSERT INTO t1 VALUES(4180, 3859, 'three thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(4181, 22155, 'twenty-two thousand one hundred fifty-five'); INSERT INTO t1 VALUES(4182, 27042, 'twenty-seven thousand forty-two'); INSERT INTO t1 VALUES(4183, 58539, 'fifty-eight thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(4184, 50035, 'fifty thousand thirty-five'); INSERT INTO t1 VALUES(4185, 73434, 'seventy-three thousand four hundred thirty-four'); INSERT INTO t1 VALUES(4186, 28363, 'twenty-eight thousand three hundred sixty-three'); INSERT INTO t1 VALUES(4187, 68010, 'sixty-eight thousand ten'); INSERT INTO t1 VALUES(4188, 42998, 'forty-two thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(4189, 80662, 'eighty thousand six hundred sixty-two'); INSERT INTO t1 VALUES(4190, 45700, 'forty-five thousand seven hundred'); INSERT INTO t1 VALUES(4191, 27793, 'twenty-seven thousand seven hundred ninety-three'); INSERT INTO t1 VALUES(4192, 33960, 'thirty-three thousand nine hundred sixty'); INSERT INTO t1 VALUES(4193, 20549, 'twenty thousand five hundred forty-nine'); INSERT INTO t1 VALUES(4194, 89154, 'eighty-nine thousand one hundred fifty-four'); INSERT INTO t1 VALUES(4195, 48103, 'forty-eight thousand one hundred three'); INSERT INTO t1 VALUES(4196, 46782, 'forty-six thousand seven hundred eighty-two'); INSERT INTO t1 VALUES(4197, 72262, 'seventy-two thousand two hundred sixty-two'); INSERT INTO t1 VALUES(4198, 44155, 'forty-four thousand one hundred fifty-five'); INSERT INTO t1 VALUES(4199, 2181, 'two thousand one hundred eighty-one'); INSERT INTO t1 VALUES(4200, 28457, 'twenty-eight thousand four hundred fifty-seven'); INSERT INTO t1 VALUES(4201, 29236, 'twenty-nine thousand two hundred thirty-six'); INSERT INTO t1 VALUES(4202, 19784, 'nineteen thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(4203, 61641, 'sixty-one thousand six hundred forty-one'); INSERT INTO t1 VALUES(4204, 55742, 'fifty-five thousand seven hundred forty-two'); INSERT INTO t1 VALUES(4205, 52304, 'fifty-two thousand three hundred four'); INSERT INTO t1 VALUES(4206, 68541, 'sixty-eight thousand five hundred forty-one'); INSERT INTO t1 VALUES(4207, 95835, 'ninety-five thousand eight hundred thirty-five'); INSERT INTO t1 VALUES(4208, 79239, 'seventy-nine thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(4209, 40946, 'forty thousand nine hundred forty-six'); INSERT INTO t1 VALUES(4210, 84513, 'eighty-four thousand five hundred thirteen'); INSERT INTO t1 VALUES(4211, 85329, 'eighty-five thousand three hundred twenty-nine'); INSERT INTO t1 VALUES(4212, 30659, 'thirty thousand six hundred fifty-nine'); INSERT INTO t1 VALUES(4213, 16052, 'sixteen thousand fifty-two'); INSERT INTO t1 VALUES(4214, 19055, 'nineteen thousand fifty-five'); INSERT INTO t1 VALUES(4215, 598, 'five hundred ninety-eight'); INSERT INTO t1 VALUES(4216, 3169, 'three thousand one hundred sixty-nine'); INSERT INTO t1 VALUES(4217, 13705, 'thirteen thousand seven hundred five'); INSERT INTO t1 VALUES(4218, 95443, 'ninety-five thousand four hundred forty-three'); INSERT INTO t1 VALUES(4219, 89960, 'eighty-nine thousand nine hundred sixty'); INSERT INTO t1 VALUES(4220, 63568, 'sixty-three thousand five hundred sixty-eight'); INSERT INTO t1 VALUES(4221, 46141, 'forty-six thousand one hundred forty-one'); INSERT INTO t1 VALUES(4222, 82680, 'eighty-two thousand six hundred eighty'); INSERT INTO t1 VALUES(4223, 82333, 'eighty-two thousand three hundred thirty-three'); INSERT INTO t1 VALUES(4224, 14323, 'fourteen thousand three hundred twenty-three'); INSERT INTO t1 VALUES(4225, 72289, 'seventy-two thousand two hundred eighty-nine'); INSERT INTO t1 VALUES(4226, 86238, 'eighty-six thousand two hundred thirty-eight'); INSERT INTO t1 VALUES(4227, 96415, 'ninety-six thousand four hundred fifteen'); INSERT INTO t1 VALUES(4228, 38834, 'thirty-eight thousand eight hundred thirty-four'); INSERT INTO t1 VALUES(4229, 98813, 'ninety-eight thousand eight hundred thirteen'); INSERT INTO t1 VALUES(4230, 20106, 'twenty thousand one hundred six'); INSERT INTO t1 VALUES(4231, 22091, 'twenty-two thousand ninety-one'); INSERT INTO t1 VALUES(4232, 26988, 'twenty-six thousand nine hundred eighty-eight'); INSERT INTO t1 VALUES(4233, 38952, 'thirty-eight thousand nine hundred fifty-two'); INSERT INTO t1 VALUES(4234, 5253, 'five thousand two hundred fifty-three'); INSERT INTO t1 VALUES(4235, 25050, 'twenty-five thousand fifty'); INSERT INTO t1 VALUES(4236, 18805, 'eighteen thousand eight hundred five'); INSERT INTO t1 VALUES(4237, 71255, 'seventy-one thousand two hundred fifty-five'); INSERT INTO t1 VALUES(4238, 85105, 'eighty-five thousand one hundred five'); INSERT INTO t1 VALUES(4239, 74322, 'seventy-four thousand three hundred twenty-two'); INSERT INTO t1 VALUES(4240, 98482, 'ninety-eight thousand four hundred eighty-two'); INSERT INTO t1 VALUES(4241, 1166, 'one thousand one hundred sixty-six'); INSERT INTO t1 VALUES(4242, 36583, 'thirty-six thousand five hundred eighty-three'); INSERT INTO t1 VALUES(4243, 71721, 'seventy-one thousand seven hundred twenty-one'); INSERT INTO t1 VALUES(4244, 29543, 'twenty-nine thousand five hundred forty-three'); INSERT INTO t1 VALUES(4245, 63775, 'sixty-three thousand seven hundred seventy-five'); INSERT INTO t1 VALUES(4246, 43592, 'forty-three thousand five hundred ninety-two'); INSERT INTO t1 VALUES(4247, 92237, 'ninety-two thousand two hundred thirty-seven'); INSERT INTO t1 VALUES(4248, 38777, 'thirty-eight thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(4249, 67410, 'sixty-seven thousand four hundred ten'); INSERT INTO t1 VALUES(4250, 36, 'thirty-six'); INSERT INTO t1 VALUES(4251, 55098, 'fifty-five thousand ninety-eight'); INSERT INTO t1 VALUES(4252, 34929, 'thirty-four thousand nine hundred twenty-nine'); INSERT INTO t1 VALUES(4253, 98308, 'ninety-eight thousand three hundred eight'); INSERT INTO t1 VALUES(4254, 18340, 'eighteen thousand three hundred forty'); INSERT INTO t1 VALUES(4255, 5189, 'five thousand one hundred eighty-nine'); INSERT INTO t1 VALUES(4256, 2783, 'two thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(4257, 80018, 'eighty thousand eighteen'); INSERT INTO t1 VALUES(4258, 94190, 'ninety-four thousand one hundred ninety'); INSERT INTO t1 VALUES(4259, 69253, 'sixty-nine thousand two hundred fifty-three'); INSERT INTO t1 VALUES(4260, 75187, 'seventy-five thousand one hundred eighty-seven'); INSERT INTO t1 VALUES(4261, 90625, 'ninety thousand six hundred twenty-five'); INSERT INTO t1 VALUES(4262, 87388, 'eighty-seven thousand three hundred eighty-eight'); INSERT INTO t1 VALUES(4263, 67421, 'sixty-seven thousand four hundred twenty-one'); INSERT INTO t1 VALUES(4264, 12501, 'twelve thousand five hundred one'); INSERT INTO t1 VALUES(4265, 28907, 'twenty-eight thousand nine hundred seven'); INSERT INTO t1 VALUES(4266, 77210, 'seventy-seven thousand two hundred ten'); INSERT INTO t1 VALUES(4267, 23134, 'twenty-three thousand one hundred thirty-four'); INSERT INTO t1 VALUES(4268, 89194, 'eighty-nine thousand one hundred ninety-four'); INSERT INTO t1 VALUES(4269, 21975, 'twenty-one thousand nine hundred seventy-five'); INSERT INTO t1 VALUES(4270, 95679, 'ninety-five thousand six hundred seventy-nine'); INSERT INTO t1 VALUES(4271, 38493, 'thirty-eight thousand four hundred ninety-three'); INSERT INTO t1 VALUES(4272, 26446, 'twenty-six thousand four hundred forty-six'); INSERT INTO t1 VALUES(4273, 36844, 'thirty-six thousand eight hundred forty-four'); INSERT INTO t1 VALUES(4274, 13726, 'thirteen thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(4275, 53052, 'fifty-three thousand fifty-two'); INSERT INTO t1 VALUES(4276, 52230, 'fifty-two thousand two hundred thirty'); INSERT INTO t1 VALUES(4277, 34535, 'thirty-four thousand five hundred thirty-five'); INSERT INTO t1 VALUES(4278, 44100, 'forty-four thousand one hundred'); INSERT INTO t1 VALUES(4279, 36111, 'thirty-six thousand one hundred eleven'); INSERT INTO t1 VALUES(4280, 62595, 'sixty-two thousand five hundred ninety-five'); INSERT INTO t1 VALUES(4281, 5046, 'five thousand forty-six'); INSERT INTO t1 VALUES(4282, 3729, 'three thousand seven hundred twenty-nine'); INSERT INTO t1 VALUES(4283, 66487, 'sixty-six thousand four hundred eighty-seven'); INSERT INTO t1 VALUES(4284, 82991, 'eighty-two thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(4285, 77239, 'seventy-seven thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(4286, 37550, 'thirty-seven thousand five hundred fifty'); INSERT INTO t1 VALUES(4287, 38215, 'thirty-eight thousand two hundred fifteen'); INSERT INTO t1 VALUES(4288, 28528, 'twenty-eight thousand five hundred twenty-eight'); INSERT INTO t1 VALUES(4289, 83387, 'eighty-three thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(4290, 50686, 'fifty thousand six hundred eighty-six'); INSERT INTO t1 VALUES(4291, 8811, 'eight thousand eight hundred eleven'); INSERT INTO t1 VALUES(4292, 64877, 'sixty-four thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(4293, 9235, 'nine thousand two hundred thirty-five'); INSERT INTO t1 VALUES(4294, 29722, 'twenty-nine thousand seven hundred twenty-two'); INSERT INTO t1 VALUES(4295, 61695, 'sixty-one thousand six hundred ninety-five'); INSERT INTO t1 VALUES(4296, 70822, 'seventy thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(4297, 78917, 'seventy-eight thousand nine hundred seventeen'); INSERT INTO t1 VALUES(4298, 77630, 'seventy-seven thousand six hundred thirty'); INSERT INTO t1 VALUES(4299, 8531, 'eight thousand five hundred thirty-one'); INSERT INTO t1 VALUES(4300, 16640, 'sixteen thousand six hundred forty'); INSERT INTO t1 VALUES(4301, 12329, 'twelve thousand three hundred twenty-nine'); INSERT INTO t1 VALUES(4302, 44621, 'forty-four thousand six hundred twenty-one'); INSERT INTO t1 VALUES(4303, 96599, 'ninety-six thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(4304, 54798, 'fifty-four thousand seven hundred ninety-eight'); INSERT INTO t1 VALUES(4305, 32616, 'thirty-two thousand six hundred sixteen'); INSERT INTO t1 VALUES(4306, 83306, 'eighty-three thousand three hundred six'); INSERT INTO t1 VALUES(4307, 34071, 'thirty-four thousand seventy-one'); INSERT INTO t1 VALUES(4308, 32482, 'thirty-two thousand four hundred eighty-two'); INSERT INTO t1 VALUES(4309, 81242, 'eighty-one thousand two hundred forty-two'); INSERT INTO t1 VALUES(4310, 71814, 'seventy-one thousand eight hundred fourteen'); INSERT INTO t1 VALUES(4311, 91235, 'ninety-one thousand two hundred thirty-five'); INSERT INTO t1 VALUES(4312, 92963, 'ninety-two thousand nine hundred sixty-three'); INSERT INTO t1 VALUES(4313, 86072, 'eighty-six thousand seventy-two'); INSERT INTO t1 VALUES(4314, 30940, 'thirty thousand nine hundred forty'); INSERT INTO t1 VALUES(4315, 85638, 'eighty-five thousand six hundred thirty-eight'); INSERT INTO t1 VALUES(4316, 81292, 'eighty-one thousand two hundred ninety-two'); INSERT INTO t1 VALUES(4317, 13385, 'thirteen thousand three hundred eighty-five'); INSERT INTO t1 VALUES(4318, 438, 'four hundred thirty-eight'); INSERT INTO t1 VALUES(4319, 24786, 'twenty-four thousand seven hundred eighty-six'); INSERT INTO t1 VALUES(4320, 63989, 'sixty-three thousand nine hundred eighty-nine'); INSERT INTO t1 VALUES(4321, 69795, 'sixty-nine thousand seven hundred ninety-five'); INSERT INTO t1 VALUES(4322, 52973, 'fifty-two thousand nine hundred seventy-three'); INSERT INTO t1 VALUES(4323, 34977, 'thirty-four thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(4324, 61889, 'sixty-one thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(4325, 50111, 'fifty thousand one hundred eleven'); INSERT INTO t1 VALUES(4326, 35659, 'thirty-five thousand six hundred fifty-nine'); INSERT INTO t1 VALUES(4327, 99502, 'ninety-nine thousand five hundred two'); INSERT INTO t1 VALUES(4328, 67187, 'sixty-seven thousand one hundred eighty-seven'); INSERT INTO t1 VALUES(4329, 58822, 'fifty-eight thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(4330, 76737, 'seventy-six thousand seven hundred thirty-seven'); INSERT INTO t1 VALUES(4331, 73627, 'seventy-three thousand six hundred twenty-seven'); INSERT INTO t1 VALUES(4332, 52084, 'fifty-two thousand eighty-four'); INSERT INTO t1 VALUES(4333, 88570, 'eighty-eight thousand five hundred seventy'); INSERT INTO t1 VALUES(4334, 94844, 'ninety-four thousand eight hundred forty-four'); INSERT INTO t1 VALUES(4335, 8684, 'eight thousand six hundred eighty-four'); INSERT INTO t1 VALUES(4336, 34319, 'thirty-four thousand three hundred nineteen'); INSERT INTO t1 VALUES(4337, 54419, 'fifty-four thousand four hundred nineteen'); INSERT INTO t1 VALUES(4338, 35967, 'thirty-five thousand nine hundred sixty-seven'); INSERT INTO t1 VALUES(4339, 77660, 'seventy-seven thousand six hundred sixty'); INSERT INTO t1 VALUES(4340, 19005, 'nineteen thousand five'); INSERT INTO t1 VALUES(4341, 41393, 'forty-one thousand three hundred ninety-three'); INSERT INTO t1 VALUES(4342, 72678, 'seventy-two thousand six hundred seventy-eight'); INSERT INTO t1 VALUES(4343, 34693, 'thirty-four thousand six hundred ninety-three'); INSERT INTO t1 VALUES(4344, 50871, 'fifty thousand eight hundred seventy-one'); INSERT INTO t1 VALUES(4345, 39347, 'thirty-nine thousand three hundred forty-seven'); INSERT INTO t1 VALUES(4346, 86855, 'eighty-six thousand eight hundred fifty-five'); INSERT INTO t1 VALUES(4347, 73145, 'seventy-three thousand one hundred forty-five'); INSERT INTO t1 VALUES(4348, 2576, 'two thousand five hundred seventy-six'); INSERT INTO t1 VALUES(4349, 8295, 'eight thousand two hundred ninety-five'); INSERT INTO t1 VALUES(4350, 46147, 'forty-six thousand one hundred forty-seven'); INSERT INTO t1 VALUES(4351, 55977, 'fifty-five thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(4352, 3372, 'three thousand three hundred seventy-two'); INSERT INTO t1 VALUES(4353, 87364, 'eighty-seven thousand three hundred sixty-four'); INSERT INTO t1 VALUES(4354, 56269, 'fifty-six thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(4355, 48197, 'forty-eight thousand one hundred ninety-seven'); INSERT INTO t1 VALUES(4356, 13313, 'thirteen thousand three hundred thirteen'); INSERT INTO t1 VALUES(4357, 2170, 'two thousand one hundred seventy'); INSERT INTO t1 VALUES(4358, 38951, 'thirty-eight thousand nine hundred fifty-one'); INSERT INTO t1 VALUES(4359, 5197, 'five thousand one hundred ninety-seven'); INSERT INTO t1 VALUES(4360, 76118, 'seventy-six thousand one hundred eighteen'); INSERT INTO t1 VALUES(4361, 15494, 'fifteen thousand four hundred ninety-four'); INSERT INTO t1 VALUES(4362, 4522, 'four thousand five hundred twenty-two'); INSERT INTO t1 VALUES(4363, 12091, 'twelve thousand ninety-one'); INSERT INTO t1 VALUES(4364, 38854, 'thirty-eight thousand eight hundred fifty-four'); INSERT INTO t1 VALUES(4365, 90046, 'ninety thousand forty-six'); INSERT INTO t1 VALUES(4366, 73735, 'seventy-three thousand seven hundred thirty-five'); INSERT INTO t1 VALUES(4367, 39442, 'thirty-nine thousand four hundred forty-two'); INSERT INTO t1 VALUES(4368, 36449, 'thirty-six thousand four hundred forty-nine'); INSERT INTO t1 VALUES(4369, 11302, 'eleven thousand three hundred two'); INSERT INTO t1 VALUES(4370, 81366, 'eighty-one thousand three hundred sixty-six'); INSERT INTO t1 VALUES(4371, 13594, 'thirteen thousand five hundred ninety-four'); INSERT INTO t1 VALUES(4372, 76789, 'seventy-six thousand seven hundred eighty-nine'); INSERT INTO t1 VALUES(4373, 71480, 'seventy-one thousand four hundred eighty'); INSERT INTO t1 VALUES(4374, 21890, 'twenty-one thousand eight hundred ninety'); INSERT INTO t1 VALUES(4375, 90100, 'ninety thousand one hundred'); INSERT INTO t1 VALUES(4376, 71914, 'seventy-one thousand nine hundred fourteen'); INSERT INTO t1 VALUES(4377, 34220, 'thirty-four thousand two hundred twenty'); INSERT INTO t1 VALUES(4378, 16556, 'sixteen thousand five hundred fifty-six'); INSERT INTO t1 VALUES(4379, 13244, 'thirteen thousand two hundred forty-four'); INSERT INTO t1 VALUES(4380, 84931, 'eighty-four thousand nine hundred thirty-one'); INSERT INTO t1 VALUES(4381, 73567, 'seventy-three thousand five hundred sixty-seven'); INSERT INTO t1 VALUES(4382, 40108, 'forty thousand one hundred eight'); INSERT INTO t1 VALUES(4383, 47243, 'forty-seven thousand two hundred forty-three'); INSERT INTO t1 VALUES(4384, 39816, 'thirty-nine thousand eight hundred sixteen'); INSERT INTO t1 VALUES(4385, 25208, 'twenty-five thousand two hundred eight'); INSERT INTO t1 VALUES(4386, 93969, 'ninety-three thousand nine hundred sixty-nine'); INSERT INTO t1 VALUES(4387, 11719, 'eleven thousand seven hundred nineteen'); INSERT INTO t1 VALUES(4388, 52673, 'fifty-two thousand six hundred seventy-three'); INSERT INTO t1 VALUES(4389, 55600, 'fifty-five thousand six hundred'); INSERT INTO t1 VALUES(4390, 47182, 'forty-seven thousand one hundred eighty-two'); INSERT INTO t1 VALUES(4391, 60823, 'sixty thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(4392, 14800, 'fourteen thousand eight hundred'); INSERT INTO t1 VALUES(4393, 77955, 'seventy-seven thousand nine hundred fifty-five'); INSERT INTO t1 VALUES(4394, 85926, 'eighty-five thousand nine hundred twenty-six'); INSERT INTO t1 VALUES(4395, 20814, 'twenty thousand eight hundred fourteen'); INSERT INTO t1 VALUES(4396, 25011, 'twenty-five thousand eleven'); INSERT INTO t1 VALUES(4397, 55664, 'fifty-five thousand six hundred sixty-four'); INSERT INTO t1 VALUES(4398, 81687, 'eighty-one thousand six hundred eighty-seven'); INSERT INTO t1 VALUES(4399, 17646, 'seventeen thousand six hundred forty-six'); INSERT INTO t1 VALUES(4400, 73010, 'seventy-three thousand ten'); INSERT INTO t1 VALUES(4401, 63769, 'sixty-three thousand seven hundred sixty-nine'); INSERT INTO t1 VALUES(4402, 90297, 'ninety thousand two hundred ninety-seven'); INSERT INTO t1 VALUES(4403, 13448, 'thirteen thousand four hundred forty-eight'); INSERT INTO t1 VALUES(4404, 42409, 'forty-two thousand four hundred nine'); INSERT INTO t1 VALUES(4405, 81932, 'eighty-one thousand nine hundred thirty-two'); INSERT INTO t1 VALUES(4406, 42948, 'forty-two thousand nine hundred forty-eight'); INSERT INTO t1 VALUES(4407, 61673, 'sixty-one thousand six hundred seventy-three'); INSERT INTO t1 VALUES(4408, 38646, 'thirty-eight thousand six hundred forty-six'); INSERT INTO t1 VALUES(4409, 16276, 'sixteen thousand two hundred seventy-six'); INSERT INTO t1 VALUES(4410, 40691, 'forty thousand six hundred ninety-one'); INSERT INTO t1 VALUES(4411, 30221, 'thirty thousand two hundred twenty-one'); INSERT INTO t1 VALUES(4412, 21102, 'twenty-one thousand one hundred two'); INSERT INTO t1 VALUES(4413, 97986, 'ninety-seven thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(4414, 82405, 'eighty-two thousand four hundred five'); INSERT INTO t1 VALUES(4415, 78001, 'seventy-eight thousand one'); INSERT INTO t1 VALUES(4416, 2903, 'two thousand nine hundred three'); INSERT INTO t1 VALUES(4417, 78695, 'seventy-eight thousand six hundred ninety-five'); INSERT INTO t1 VALUES(4418, 86867, 'eighty-six thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(4419, 4375, 'four thousand three hundred seventy-five'); INSERT INTO t1 VALUES(4420, 79719, 'seventy-nine thousand seven hundred nineteen'); INSERT INTO t1 VALUES(4421, 4516, 'four thousand five hundred sixteen'); INSERT INTO t1 VALUES(4422, 35265, 'thirty-five thousand two hundred sixty-five'); INSERT INTO t1 VALUES(4423, 90507, 'ninety thousand five hundred seven'); INSERT INTO t1 VALUES(4424, 84900, 'eighty-four thousand nine hundred'); INSERT INTO t1 VALUES(4425, 64481, 'sixty-four thousand four hundred eighty-one'); INSERT INTO t1 VALUES(4426, 80870, 'eighty thousand eight hundred seventy'); INSERT INTO t1 VALUES(4427, 91275, 'ninety-one thousand two hundred seventy-five'); INSERT INTO t1 VALUES(4428, 52462, 'fifty-two thousand four hundred sixty-two'); INSERT INTO t1 VALUES(4429, 70255, 'seventy thousand two hundred fifty-five'); INSERT INTO t1 VALUES(4430, 18420, 'eighteen thousand four hundred twenty'); INSERT INTO t1 VALUES(4431, 33198, 'thirty-three thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(4432, 92050, 'ninety-two thousand fifty'); INSERT INTO t1 VALUES(4433, 23095, 'twenty-three thousand ninety-five'); INSERT INTO t1 VALUES(4434, 72199, 'seventy-two thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(4435, 12190, 'twelve thousand one hundred ninety'); INSERT INTO t1 VALUES(4436, 97464, 'ninety-seven thousand four hundred sixty-four'); INSERT INTO t1 VALUES(4437, 69, 'sixty-nine'); INSERT INTO t1 VALUES(4438, 73361, 'seventy-three thousand three hundred sixty-one'); INSERT INTO t1 VALUES(4439, 16275, 'sixteen thousand two hundred seventy-five'); INSERT INTO t1 VALUES(4440, 89769, 'eighty-nine thousand seven hundred sixty-nine'); INSERT INTO t1 VALUES(4441, 89812, 'eighty-nine thousand eight hundred twelve'); INSERT INTO t1 VALUES(4442, 73627, 'seventy-three thousand six hundred twenty-seven'); INSERT INTO t1 VALUES(4443, 11675, 'eleven thousand six hundred seventy-five'); INSERT INTO t1 VALUES(4444, 32894, 'thirty-two thousand eight hundred ninety-four'); INSERT INTO t1 VALUES(4445, 13355, 'thirteen thousand three hundred fifty-five'); INSERT INTO t1 VALUES(4446, 37206, 'thirty-seven thousand two hundred six'); INSERT INTO t1 VALUES(4447, 61885, 'sixty-one thousand eight hundred eighty-five'); INSERT INTO t1 VALUES(4448, 2590, 'two thousand five hundred ninety'); INSERT INTO t1 VALUES(4449, 69986, 'sixty-nine thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(4450, 15123, 'fifteen thousand one hundred twenty-three'); INSERT INTO t1 VALUES(4451, 61831, 'sixty-one thousand eight hundred thirty-one'); INSERT INTO t1 VALUES(4452, 4007, 'four thousand seven'); INSERT INTO t1 VALUES(4453, 2412, 'two thousand four hundred twelve'); INSERT INTO t1 VALUES(4454, 58568, 'fifty-eight thousand five hundred sixty-eight'); INSERT INTO t1 VALUES(4455, 96392, 'ninety-six thousand three hundred ninety-two'); INSERT INTO t1 VALUES(4456, 59677, 'fifty-nine thousand six hundred seventy-seven'); INSERT INTO t1 VALUES(4457, 24514, 'twenty-four thousand five hundred fourteen'); INSERT INTO t1 VALUES(4458, 83574, 'eighty-three thousand five hundred seventy-four'); INSERT INTO t1 VALUES(4459, 74774, 'seventy-four thousand seven hundred seventy-four'); INSERT INTO t1 VALUES(4460, 79095, 'seventy-nine thousand ninety-five'); INSERT INTO t1 VALUES(4461, 77764, 'seventy-seven thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(4462, 23168, 'twenty-three thousand one hundred sixty-eight'); INSERT INTO t1 VALUES(4463, 90361, 'ninety thousand three hundred sixty-one'); INSERT INTO t1 VALUES(4464, 81735, 'eighty-one thousand seven hundred thirty-five'); INSERT INTO t1 VALUES(4465, 3721, 'three thousand seven hundred twenty-one'); INSERT INTO t1 VALUES(4466, 62533, 'sixty-two thousand five hundred thirty-three'); INSERT INTO t1 VALUES(4467, 10416, 'ten thousand four hundred sixteen'); INSERT INTO t1 VALUES(4468, 16354, 'sixteen thousand three hundred fifty-four'); INSERT INTO t1 VALUES(4469, 84543, 'eighty-four thousand five hundred forty-three'); INSERT INTO t1 VALUES(4470, 21518, 'twenty-one thousand five hundred eighteen'); INSERT INTO t1 VALUES(4471, 64956, 'sixty-four thousand nine hundred fifty-six'); INSERT INTO t1 VALUES(4472, 33205, 'thirty-three thousand two hundred five'); INSERT INTO t1 VALUES(4473, 41371, 'forty-one thousand three hundred seventy-one'); INSERT INTO t1 VALUES(4474, 3890, 'three thousand eight hundred ninety'); INSERT INTO t1 VALUES(4475, 66162, 'sixty-six thousand one hundred sixty-two'); INSERT INTO t1 VALUES(4476, 57649, 'fifty-seven thousand six hundred forty-nine'); INSERT INTO t1 VALUES(4477, 31883, 'thirty-one thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(4478, 89096, 'eighty-nine thousand ninety-six'); INSERT INTO t1 VALUES(4479, 52144, 'fifty-two thousand one hundred forty-four'); INSERT INTO t1 VALUES(4480, 62885, 'sixty-two thousand eight hundred eighty-five'); INSERT INTO t1 VALUES(4481, 5440, 'five thousand four hundred forty'); INSERT INTO t1 VALUES(4482, 72046, 'seventy-two thousand forty-six'); INSERT INTO t1 VALUES(4483, 49796, 'forty-nine thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(4484, 16292, 'sixteen thousand two hundred ninety-two'); INSERT INTO t1 VALUES(4485, 4381, 'four thousand three hundred eighty-one'); INSERT INTO t1 VALUES(4486, 16949, 'sixteen thousand nine hundred forty-nine'); INSERT INTO t1 VALUES(4487, 58059, 'fifty-eight thousand fifty-nine'); INSERT INTO t1 VALUES(4488, 37479, 'thirty-seven thousand four hundred seventy-nine'); INSERT INTO t1 VALUES(4489, 83312, 'eighty-three thousand three hundred twelve'); INSERT INTO t1 VALUES(4490, 73488, 'seventy-three thousand four hundred eighty-eight'); INSERT INTO t1 VALUES(4491, 2998, 'two thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(4492, 37564, 'thirty-seven thousand five hundred sixty-four'); INSERT INTO t1 VALUES(4493, 99338, 'ninety-nine thousand three hundred thirty-eight'); INSERT INTO t1 VALUES(4494, 76682, 'seventy-six thousand six hundred eighty-two'); INSERT INTO t1 VALUES(4495, 50335, 'fifty thousand three hundred thirty-five'); INSERT INTO t1 VALUES(4496, 94127, 'ninety-four thousand one hundred twenty-seven'); INSERT INTO t1 VALUES(4497, 23942, 'twenty-three thousand nine hundred forty-two'); INSERT INTO t1 VALUES(4498, 94934, 'ninety-four thousand nine hundred thirty-four'); INSERT INTO t1 VALUES(4499, 17030, 'seventeen thousand thirty'); INSERT INTO t1 VALUES(4500, 85613, 'eighty-five thousand six hundred thirteen'); INSERT INTO t1 VALUES(4501, 42121, 'forty-two thousand one hundred twenty-one'); INSERT INTO t1 VALUES(4502, 25182, 'twenty-five thousand one hundred eighty-two'); INSERT INTO t1 VALUES(4503, 62630, 'sixty-two thousand six hundred thirty'); INSERT INTO t1 VALUES(4504, 32441, 'thirty-two thousand four hundred forty-one'); INSERT INTO t1 VALUES(4505, 46001, 'forty-six thousand one'); INSERT INTO t1 VALUES(4506, 50930, 'fifty thousand nine hundred thirty'); INSERT INTO t1 VALUES(4507, 16463, 'sixteen thousand four hundred sixty-three'); INSERT INTO t1 VALUES(4508, 37730, 'thirty-seven thousand seven hundred thirty'); INSERT INTO t1 VALUES(4509, 30040, 'thirty thousand forty'); INSERT INTO t1 VALUES(4510, 62319, 'sixty-two thousand three hundred nineteen'); INSERT INTO t1 VALUES(4511, 85559, 'eighty-five thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(4512, 89263, 'eighty-nine thousand two hundred sixty-three'); INSERT INTO t1 VALUES(4513, 86400, 'eighty-six thousand four hundred'); INSERT INTO t1 VALUES(4514, 37894, 'thirty-seven thousand eight hundred ninety-four'); INSERT INTO t1 VALUES(4515, 88711, 'eighty-eight thousand seven hundred eleven'); INSERT INTO t1 VALUES(4516, 81284, 'eighty-one thousand two hundred eighty-four'); INSERT INTO t1 VALUES(4517, 72256, 'seventy-two thousand two hundred fifty-six'); INSERT INTO t1 VALUES(4518, 29560, 'twenty-nine thousand five hundred sixty'); INSERT INTO t1 VALUES(4519, 43800, 'forty-three thousand eight hundred'); INSERT INTO t1 VALUES(4520, 32476, 'thirty-two thousand four hundred seventy-six'); INSERT INTO t1 VALUES(4521, 2745, 'two thousand seven hundred forty-five'); INSERT INTO t1 VALUES(4522, 7305, 'seven thousand three hundred five'); INSERT INTO t1 VALUES(4523, 43356, 'forty-three thousand three hundred fifty-six'); INSERT INTO t1 VALUES(4524, 2617, 'two thousand six hundred seventeen'); INSERT INTO t1 VALUES(4525, 6228, 'six thousand two hundred twenty-eight'); INSERT INTO t1 VALUES(4526, 22054, 'twenty-two thousand fifty-four'); INSERT INTO t1 VALUES(4527, 57053, 'fifty-seven thousand fifty-three'); INSERT INTO t1 VALUES(4528, 25028, 'twenty-five thousand twenty-eight'); INSERT INTO t1 VALUES(4529, 82324, 'eighty-two thousand three hundred twenty-four'); INSERT INTO t1 VALUES(4530, 55502, 'fifty-five thousand five hundred two'); INSERT INTO t1 VALUES(4531, 32469, 'thirty-two thousand four hundred sixty-nine'); INSERT INTO t1 VALUES(4532, 14283, 'fourteen thousand two hundred eighty-three'); INSERT INTO t1 VALUES(4533, 27467, 'twenty-seven thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(4534, 79652, 'seventy-nine thousand six hundred fifty-two'); INSERT INTO t1 VALUES(4535, 45547, 'forty-five thousand five hundred forty-seven'); INSERT INTO t1 VALUES(4536, 26496, 'twenty-six thousand four hundred ninety-six'); INSERT INTO t1 VALUES(4537, 3460, 'three thousand four hundred sixty'); INSERT INTO t1 VALUES(4538, 298, 'two hundred ninety-eight'); INSERT INTO t1 VALUES(4539, 19180, 'nineteen thousand one hundred eighty'); INSERT INTO t1 VALUES(4540, 96567, 'ninety-six thousand five hundred sixty-seven'); INSERT INTO t1 VALUES(4541, 77127, 'seventy-seven thousand one hundred twenty-seven'); INSERT INTO t1 VALUES(4542, 45628, 'forty-five thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(4543, 48647, 'forty-eight thousand six hundred forty-seven'); INSERT INTO t1 VALUES(4544, 93104, 'ninety-three thousand one hundred four'); INSERT INTO t1 VALUES(4545, 28688, 'twenty-eight thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(4546, 89201, 'eighty-nine thousand two hundred one'); INSERT INTO t1 VALUES(4547, 96062, 'ninety-six thousand sixty-two'); INSERT INTO t1 VALUES(4548, 49085, 'forty-nine thousand eighty-five'); INSERT INTO t1 VALUES(4549, 24101, 'twenty-four thousand one hundred one'); INSERT INTO t1 VALUES(4550, 74842, 'seventy-four thousand eight hundred forty-two'); INSERT INTO t1 VALUES(4551, 80749, 'eighty thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(4552, 52575, 'fifty-two thousand five hundred seventy-five'); INSERT INTO t1 VALUES(4553, 34814, 'thirty-four thousand eight hundred fourteen'); INSERT INTO t1 VALUES(4554, 63019, 'sixty-three thousand nineteen'); INSERT INTO t1 VALUES(4555, 96764, 'ninety-six thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(4556, 87075, 'eighty-seven thousand seventy-five'); INSERT INTO t1 VALUES(4557, 72945, 'seventy-two thousand nine hundred forty-five'); INSERT INTO t1 VALUES(4558, 19887, 'nineteen thousand eight hundred eighty-seven'); INSERT INTO t1 VALUES(4559, 39030, 'thirty-nine thousand thirty'); INSERT INTO t1 VALUES(4560, 80749, 'eighty thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(4561, 96556, 'ninety-six thousand five hundred fifty-six'); INSERT INTO t1 VALUES(4562, 37537, 'thirty-seven thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(4563, 11115, 'eleven thousand one hundred fifteen'); INSERT INTO t1 VALUES(4564, 20674, 'twenty thousand six hundred seventy-four'); INSERT INTO t1 VALUES(4565, 45543, 'forty-five thousand five hundred forty-three'); INSERT INTO t1 VALUES(4566, 55336, 'fifty-five thousand three hundred thirty-six'); INSERT INTO t1 VALUES(4567, 28075, 'twenty-eight thousand seventy-five'); INSERT INTO t1 VALUES(4568, 45745, 'forty-five thousand seven hundred forty-five'); INSERT INTO t1 VALUES(4569, 46591, 'forty-six thousand five hundred ninety-one'); INSERT INTO t1 VALUES(4570, 19822, 'nineteen thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(4571, 72821, 'seventy-two thousand eight hundred twenty-one'); INSERT INTO t1 VALUES(4572, 12415, 'twelve thousand four hundred fifteen'); INSERT INTO t1 VALUES(4573, 44877, 'forty-four thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(4574, 14748, 'fourteen thousand seven hundred forty-eight'); INSERT INTO t1 VALUES(4575, 70451, 'seventy thousand four hundred fifty-one'); INSERT INTO t1 VALUES(4576, 81424, 'eighty-one thousand four hundred twenty-four'); INSERT INTO t1 VALUES(4577, 9178, 'nine thousand one hundred seventy-eight'); INSERT INTO t1 VALUES(4578, 16823, 'sixteen thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(4579, 86125, 'eighty-six thousand one hundred twenty-five'); INSERT INTO t1 VALUES(4580, 58448, 'fifty-eight thousand four hundred forty-eight'); INSERT INTO t1 VALUES(4581, 28433, 'twenty-eight thousand four hundred thirty-three'); INSERT INTO t1 VALUES(4582, 24244, 'twenty-four thousand two hundred forty-four'); INSERT INTO t1 VALUES(4583, 8086, 'eight thousand eighty-six'); INSERT INTO t1 VALUES(4584, 64280, 'sixty-four thousand two hundred eighty'); INSERT INTO t1 VALUES(4585, 27482, 'twenty-seven thousand four hundred eighty-two'); INSERT INTO t1 VALUES(4586, 77782, 'seventy-seven thousand seven hundred eighty-two'); INSERT INTO t1 VALUES(4587, 38899, 'thirty-eight thousand eight hundred ninety-nine'); INSERT INTO t1 VALUES(4588, 36738, 'thirty-six thousand seven hundred thirty-eight'); INSERT INTO t1 VALUES(4589, 36054, 'thirty-six thousand fifty-four'); INSERT INTO t1 VALUES(4590, 112, 'one hundred twelve'); INSERT INTO t1 VALUES(4591, 17643, 'seventeen thousand six hundred forty-three'); INSERT INTO t1 VALUES(4592, 45540, 'forty-five thousand five hundred forty'); INSERT INTO t1 VALUES(4593, 29120, 'twenty-nine thousand one hundred twenty'); INSERT INTO t1 VALUES(4594, 77869, 'seventy-seven thousand eight hundred sixty-nine'); INSERT INTO t1 VALUES(4595, 35860, 'thirty-five thousand eight hundred sixty'); INSERT INTO t1 VALUES(4596, 33832, 'thirty-three thousand eight hundred thirty-two'); INSERT INTO t1 VALUES(4597, 56234, 'fifty-six thousand two hundred thirty-four'); INSERT INTO t1 VALUES(4598, 22523, 'twenty-two thousand five hundred twenty-three'); INSERT INTO t1 VALUES(4599, 60255, 'sixty thousand two hundred fifty-five'); INSERT INTO t1 VALUES(4600, 61027, 'sixty-one thousand twenty-seven'); INSERT INTO t1 VALUES(4601, 73489, 'seventy-three thousand four hundred eighty-nine'); INSERT INTO t1 VALUES(4602, 16787, 'sixteen thousand seven hundred eighty-seven'); INSERT INTO t1 VALUES(4603, 3642, 'three thousand six hundred forty-two'); INSERT INTO t1 VALUES(4604, 7213, 'seven thousand two hundred thirteen'); INSERT INTO t1 VALUES(4605, 26343, 'twenty-six thousand three hundred forty-three'); INSERT INTO t1 VALUES(4606, 63004, 'sixty-three thousand four'); INSERT INTO t1 VALUES(4607, 15594, 'fifteen thousand five hundred ninety-four'); INSERT INTO t1 VALUES(4608, 98127, 'ninety-eight thousand one hundred twenty-seven'); INSERT INTO t1 VALUES(4609, 18302, 'eighteen thousand three hundred two'); INSERT INTO t1 VALUES(4610, 74228, 'seventy-four thousand two hundred twenty-eight'); INSERT INTO t1 VALUES(4611, 11072, 'eleven thousand seventy-two'); INSERT INTO t1 VALUES(4612, 24214, 'twenty-four thousand two hundred fourteen'); INSERT INTO t1 VALUES(4613, 13481, 'thirteen thousand four hundred eighty-one'); INSERT INTO t1 VALUES(4614, 19585, 'nineteen thousand five hundred eighty-five'); INSERT INTO t1 VALUES(4615, 55560, 'fifty-five thousand five hundred sixty'); INSERT INTO t1 VALUES(4616, 26028, 'twenty-six thousand twenty-eight'); INSERT INTO t1 VALUES(4617, 26325, 'twenty-six thousand three hundred twenty-five'); INSERT INTO t1 VALUES(4618, 5183, 'five thousand one hundred eighty-three'); INSERT INTO t1 VALUES(4619, 12754, 'twelve thousand seven hundred fifty-four'); INSERT INTO t1 VALUES(4620, 52704, 'fifty-two thousand seven hundred four'); INSERT INTO t1 VALUES(4621, 20287, 'twenty thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(4622, 33712, 'thirty-three thousand seven hundred twelve'); INSERT INTO t1 VALUES(4623, 15237, 'fifteen thousand two hundred thirty-seven'); INSERT INTO t1 VALUES(4624, 63214, 'sixty-three thousand two hundred fourteen'); INSERT INTO t1 VALUES(4625, 59761, 'fifty-nine thousand seven hundred sixty-one'); INSERT INTO t1 VALUES(4626, 25881, 'twenty-five thousand eight hundred eighty-one'); INSERT INTO t1 VALUES(4627, 26416, 'twenty-six thousand four hundred sixteen'); INSERT INTO t1 VALUES(4628, 69923, 'sixty-nine thousand nine hundred twenty-three'); INSERT INTO t1 VALUES(4629, 23787, 'twenty-three thousand seven hundred eighty-seven'); INSERT INTO t1 VALUES(4630, 30968, 'thirty thousand nine hundred sixty-eight'); INSERT INTO t1 VALUES(4631, 22540, 'twenty-two thousand five hundred forty'); INSERT INTO t1 VALUES(4632, 95694, 'ninety-five thousand six hundred ninety-four'); INSERT INTO t1 VALUES(4633, 5333, 'five thousand three hundred thirty-three'); INSERT INTO t1 VALUES(4634, 38454, 'thirty-eight thousand four hundred fifty-four'); INSERT INTO t1 VALUES(4635, 71328, 'seventy-one thousand three hundred twenty-eight'); INSERT INTO t1 VALUES(4636, 79506, 'seventy-nine thousand five hundred six'); INSERT INTO t1 VALUES(4637, 43506, 'forty-three thousand five hundred six'); INSERT INTO t1 VALUES(4638, 92516, 'ninety-two thousand five hundred sixteen'); INSERT INTO t1 VALUES(4639, 34411, 'thirty-four thousand four hundred eleven'); INSERT INTO t1 VALUES(4640, 17383, 'seventeen thousand three hundred eighty-three'); INSERT INTO t1 VALUES(4641, 93608, 'ninety-three thousand six hundred eight'); INSERT INTO t1 VALUES(4642, 19688, 'nineteen thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(4643, 66823, 'sixty-six thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(4644, 41191, 'forty-one thousand one hundred ninety-one'); INSERT INTO t1 VALUES(4645, 39651, 'thirty-nine thousand six hundred fifty-one'); INSERT INTO t1 VALUES(4646, 29956, 'twenty-nine thousand nine hundred fifty-six'); INSERT INTO t1 VALUES(4647, 26691, 'twenty-six thousand six hundred ninety-one'); INSERT INTO t1 VALUES(4648, 60453, 'sixty thousand four hundred fifty-three'); INSERT INTO t1 VALUES(4649, 31389, 'thirty-one thousand three hundred eighty-nine'); INSERT INTO t1 VALUES(4650, 71557, 'seventy-one thousand five hundred fifty-seven'); INSERT INTO t1 VALUES(4651, 87148, 'eighty-seven thousand one hundred forty-eight'); INSERT INTO t1 VALUES(4652, 47039, 'forty-seven thousand thirty-nine'); INSERT INTO t1 VALUES(4653, 67529, 'sixty-seven thousand five hundred twenty-nine'); INSERT INTO t1 VALUES(4654, 52880, 'fifty-two thousand eight hundred eighty'); INSERT INTO t1 VALUES(4655, 2214, 'two thousand two hundred fourteen'); INSERT INTO t1 VALUES(4656, 223, 'two hundred twenty-three'); INSERT INTO t1 VALUES(4657, 46272, 'forty-six thousand two hundred seventy-two'); INSERT INTO t1 VALUES(4658, 62649, 'sixty-two thousand six hundred forty-nine'); INSERT INTO t1 VALUES(4659, 3029, 'three thousand twenty-nine'); INSERT INTO t1 VALUES(4660, 51517, 'fifty-one thousand five hundred seventeen'); INSERT INTO t1 VALUES(4661, 50101, 'fifty thousand one hundred one'); INSERT INTO t1 VALUES(4662, 82730, 'eighty-two thousand seven hundred thirty'); INSERT INTO t1 VALUES(4663, 44195, 'forty-four thousand one hundred ninety-five'); INSERT INTO t1 VALUES(4664, 87695, 'eighty-seven thousand six hundred ninety-five'); INSERT INTO t1 VALUES(4665, 18000, 'eighteen thousand'); INSERT INTO t1 VALUES(4666, 62865, 'sixty-two thousand eight hundred sixty-five'); INSERT INTO t1 VALUES(4667, 81884, 'eighty-one thousand eight hundred eighty-four'); INSERT INTO t1 VALUES(4668, 54719, 'fifty-four thousand seven hundred nineteen'); INSERT INTO t1 VALUES(4669, 48270, 'forty-eight thousand two hundred seventy'); INSERT INTO t1 VALUES(4670, 29229, 'twenty-nine thousand two hundred twenty-nine'); INSERT INTO t1 VALUES(4671, 41942, 'forty-one thousand nine hundred forty-two'); INSERT INTO t1 VALUES(4672, 19455, 'nineteen thousand four hundred fifty-five'); INSERT INTO t1 VALUES(4673, 12275, 'twelve thousand two hundred seventy-five'); INSERT INTO t1 VALUES(4674, 43812, 'forty-three thousand eight hundred twelve'); INSERT INTO t1 VALUES(4675, 94906, 'ninety-four thousand nine hundred six'); INSERT INTO t1 VALUES(4676, 28963, 'twenty-eight thousand nine hundred sixty-three'); INSERT INTO t1 VALUES(4677, 97041, 'ninety-seven thousand forty-one'); INSERT INTO t1 VALUES(4678, 51525, 'fifty-one thousand five hundred twenty-five'); INSERT INTO t1 VALUES(4679, 20175, 'twenty thousand one hundred seventy-five'); INSERT INTO t1 VALUES(4680, 54637, 'fifty-four thousand six hundred thirty-seven'); INSERT INTO t1 VALUES(4681, 60318, 'sixty thousand three hundred eighteen'); INSERT INTO t1 VALUES(4682, 83591, 'eighty-three thousand five hundred ninety-one'); INSERT INTO t1 VALUES(4683, 78304, 'seventy-eight thousand three hundred four'); INSERT INTO t1 VALUES(4684, 87038, 'eighty-seven thousand thirty-eight'); INSERT INTO t1 VALUES(4685, 93463, 'ninety-three thousand four hundred sixty-three'); INSERT INTO t1 VALUES(4686, 57922, 'fifty-seven thousand nine hundred twenty-two'); INSERT INTO t1 VALUES(4687, 90454, 'ninety thousand four hundred fifty-four'); INSERT INTO t1 VALUES(4688, 67887, 'sixty-seven thousand eight hundred eighty-seven'); INSERT INTO t1 VALUES(4689, 94992, 'ninety-four thousand nine hundred ninety-two'); INSERT INTO t1 VALUES(4690, 30092, 'thirty thousand ninety-two'); INSERT INTO t1 VALUES(4691, 39925, 'thirty-nine thousand nine hundred twenty-five'); INSERT INTO t1 VALUES(4692, 98894, 'ninety-eight thousand eight hundred ninety-four'); INSERT INTO t1 VALUES(4693, 22185, 'twenty-two thousand one hundred eighty-five'); INSERT INTO t1 VALUES(4694, 55467, 'fifty-five thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(4695, 30974, 'thirty thousand nine hundred seventy-four'); INSERT INTO t1 VALUES(4696, 13329, 'thirteen thousand three hundred twenty-nine'); INSERT INTO t1 VALUES(4697, 42245, 'forty-two thousand two hundred forty-five'); INSERT INTO t1 VALUES(4698, 73620, 'seventy-three thousand six hundred twenty'); INSERT INTO t1 VALUES(4699, 55895, 'fifty-five thousand eight hundred ninety-five'); INSERT INTO t1 VALUES(4700, 38992, 'thirty-eight thousand nine hundred ninety-two'); INSERT INTO t1 VALUES(4701, 31429, 'thirty-one thousand four hundred twenty-nine'); INSERT INTO t1 VALUES(4702, 78689, 'seventy-eight thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(4703, 7182, 'seven thousand one hundred eighty-two'); INSERT INTO t1 VALUES(4704, 92551, 'ninety-two thousand five hundred fifty-one'); INSERT INTO t1 VALUES(4705, 8034, 'eight thousand thirty-four'); INSERT INTO t1 VALUES(4706, 14160, 'fourteen thousand one hundred sixty'); INSERT INTO t1 VALUES(4707, 7982, 'seven thousand nine hundred eighty-two'); INSERT INTO t1 VALUES(4708, 69649, 'sixty-nine thousand six hundred forty-nine'); INSERT INTO t1 VALUES(4709, 24814, 'twenty-four thousand eight hundred fourteen'); INSERT INTO t1 VALUES(4710, 35534, 'thirty-five thousand five hundred thirty-four'); INSERT INTO t1 VALUES(4711, 65803, 'sixty-five thousand eight hundred three'); INSERT INTO t1 VALUES(4712, 53290, 'fifty-three thousand two hundred ninety'); INSERT INTO t1 VALUES(4713, 84382, 'eighty-four thousand three hundred eighty-two'); INSERT INTO t1 VALUES(4714, 81647, 'eighty-one thousand six hundred forty-seven'); INSERT INTO t1 VALUES(4715, 95052, 'ninety-five thousand fifty-two'); INSERT INTO t1 VALUES(4716, 83463, 'eighty-three thousand four hundred sixty-three'); INSERT INTO t1 VALUES(4717, 45832, 'forty-five thousand eight hundred thirty-two'); INSERT INTO t1 VALUES(4718, 58904, 'fifty-eight thousand nine hundred four'); INSERT INTO t1 VALUES(4719, 90946, 'ninety thousand nine hundred forty-six'); INSERT INTO t1 VALUES(4720, 5559, 'five thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(4721, 70094, 'seventy thousand ninety-four'); INSERT INTO t1 VALUES(4722, 75315, 'seventy-five thousand three hundred fifteen'); INSERT INTO t1 VALUES(4723, 95182, 'ninety-five thousand one hundred eighty-two'); INSERT INTO t1 VALUES(4724, 27181, 'twenty-seven thousand one hundred eighty-one'); INSERT INTO t1 VALUES(4725, 87266, 'eighty-seven thousand two hundred sixty-six'); INSERT INTO t1 VALUES(4726, 97152, 'ninety-seven thousand one hundred fifty-two'); INSERT INTO t1 VALUES(4727, 73108, 'seventy-three thousand one hundred eight'); INSERT INTO t1 VALUES(4728, 81790, 'eighty-one thousand seven hundred ninety'); INSERT INTO t1 VALUES(4729, 23506, 'twenty-three thousand five hundred six'); INSERT INTO t1 VALUES(4730, 11411, 'eleven thousand four hundred eleven'); INSERT INTO t1 VALUES(4731, 19269, 'nineteen thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(4732, 88849, 'eighty-eight thousand eight hundred forty-nine'); INSERT INTO t1 VALUES(4733, 89848, 'eighty-nine thousand eight hundred forty-eight'); INSERT INTO t1 VALUES(4734, 57216, 'fifty-seven thousand two hundred sixteen'); INSERT INTO t1 VALUES(4735, 99567, 'ninety-nine thousand five hundred sixty-seven'); INSERT INTO t1 VALUES(4736, 60854, 'sixty thousand eight hundred fifty-four'); INSERT INTO t1 VALUES(4737, 8480, 'eight thousand four hundred eighty'); INSERT INTO t1 VALUES(4738, 62542, 'sixty-two thousand five hundred forty-two'); INSERT INTO t1 VALUES(4739, 53815, 'fifty-three thousand eight hundred fifteen'); INSERT INTO t1 VALUES(4740, 92189, 'ninety-two thousand one hundred eighty-nine'); INSERT INTO t1 VALUES(4741, 33155, 'thirty-three thousand one hundred fifty-five'); INSERT INTO t1 VALUES(4742, 29081, 'twenty-nine thousand eighty-one'); INSERT INTO t1 VALUES(4743, 72184, 'seventy-two thousand one hundred eighty-four'); INSERT INTO t1 VALUES(4744, 87359, 'eighty-seven thousand three hundred fifty-nine'); INSERT INTO t1 VALUES(4745, 60716, 'sixty thousand seven hundred sixteen'); INSERT INTO t1 VALUES(4746, 55877, 'fifty-five thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(4747, 98929, 'ninety-eight thousand nine hundred twenty-nine'); INSERT INTO t1 VALUES(4748, 76459, 'seventy-six thousand four hundred fifty-nine'); INSERT INTO t1 VALUES(4749, 85503, 'eighty-five thousand five hundred three'); INSERT INTO t1 VALUES(4750, 4674, 'four thousand six hundred seventy-four'); INSERT INTO t1 VALUES(4751, 52772, 'fifty-two thousand seven hundred seventy-two'); INSERT INTO t1 VALUES(4752, 29261, 'twenty-nine thousand two hundred sixty-one'); INSERT INTO t1 VALUES(4753, 94405, 'ninety-four thousand four hundred five'); INSERT INTO t1 VALUES(4754, 75367, 'seventy-five thousand three hundred sixty-seven'); INSERT INTO t1 VALUES(4755, 63012, 'sixty-three thousand twelve'); INSERT INTO t1 VALUES(4756, 76829, 'seventy-six thousand eight hundred twenty-nine'); INSERT INTO t1 VALUES(4757, 74750, 'seventy-four thousand seven hundred fifty'); INSERT INTO t1 VALUES(4758, 58123, 'fifty-eight thousand one hundred twenty-three'); INSERT INTO t1 VALUES(4759, 99842, 'ninety-nine thousand eight hundred forty-two'); INSERT INTO t1 VALUES(4760, 3245, 'three thousand two hundred forty-five'); INSERT INTO t1 VALUES(4761, 11922, 'eleven thousand nine hundred twenty-two'); INSERT INTO t1 VALUES(4762, 74128, 'seventy-four thousand one hundred twenty-eight'); INSERT INTO t1 VALUES(4763, 76166, 'seventy-six thousand one hundred sixty-six'); INSERT INTO t1 VALUES(4764, 81014, 'eighty-one thousand fourteen'); INSERT INTO t1 VALUES(4765, 40155, 'forty thousand one hundred fifty-five'); INSERT INTO t1 VALUES(4766, 73621, 'seventy-three thousand six hundred twenty-one'); INSERT INTO t1 VALUES(4767, 56684, 'fifty-six thousand six hundred eighty-four'); INSERT INTO t1 VALUES(4768, 16762, 'sixteen thousand seven hundred sixty-two'); INSERT INTO t1 VALUES(4769, 70218, 'seventy thousand two hundred eighteen'); INSERT INTO t1 VALUES(4770, 38033, 'thirty-eight thousand thirty-three'); INSERT INTO t1 VALUES(4771, 54826, 'fifty-four thousand eight hundred twenty-six'); INSERT INTO t1 VALUES(4772, 5337, 'five thousand three hundred thirty-seven'); INSERT INTO t1 VALUES(4773, 42832, 'forty-two thousand eight hundred thirty-two'); INSERT INTO t1 VALUES(4774, 6213, 'six thousand two hundred thirteen'); INSERT INTO t1 VALUES(4775, 79273, 'seventy-nine thousand two hundred seventy-three'); INSERT INTO t1 VALUES(4776, 86024, 'eighty-six thousand twenty-four'); INSERT INTO t1 VALUES(4777, 39177, 'thirty-nine thousand one hundred seventy-seven'); INSERT INTO t1 VALUES(4778, 4183, 'four thousand one hundred eighty-three'); INSERT INTO t1 VALUES(4779, 5785, 'five thousand seven hundred eighty-five'); INSERT INTO t1 VALUES(4780, 86512, 'eighty-six thousand five hundred twelve'); INSERT INTO t1 VALUES(4781, 74248, 'seventy-four thousand two hundred forty-eight'); INSERT INTO t1 VALUES(4782, 53540, 'fifty-three thousand five hundred forty'); INSERT INTO t1 VALUES(4783, 55751, 'fifty-five thousand seven hundred fifty-one'); INSERT INTO t1 VALUES(4784, 86292, 'eighty-six thousand two hundred ninety-two'); INSERT INTO t1 VALUES(4785, 82125, 'eighty-two thousand one hundred twenty-five'); INSERT INTO t1 VALUES(4786, 23481, 'twenty-three thousand four hundred eighty-one'); INSERT INTO t1 VALUES(4787, 1380, 'one thousand three hundred eighty'); INSERT INTO t1 VALUES(4788, 43547, 'forty-three thousand five hundred forty-seven'); INSERT INTO t1 VALUES(4789, 12525, 'twelve thousand five hundred twenty-five'); INSERT INTO t1 VALUES(4790, 78352, 'seventy-eight thousand three hundred fifty-two'); INSERT INTO t1 VALUES(4791, 93662, 'ninety-three thousand six hundred sixty-two'); INSERT INTO t1 VALUES(4792, 45011, 'forty-five thousand eleven'); INSERT INTO t1 VALUES(4793, 79472, 'seventy-nine thousand four hundred seventy-two'); INSERT INTO t1 VALUES(4794, 70947, 'seventy thousand nine hundred forty-seven'); INSERT INTO t1 VALUES(4795, 99507, 'ninety-nine thousand five hundred seven'); INSERT INTO t1 VALUES(4796, 95225, 'ninety-five thousand two hundred twenty-five'); INSERT INTO t1 VALUES(4797, 82065, 'eighty-two thousand sixty-five'); INSERT INTO t1 VALUES(4798, 64953, 'sixty-four thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(4799, 65642, 'sixty-five thousand six hundred forty-two'); INSERT INTO t1 VALUES(4800, 23437, 'twenty-three thousand four hundred thirty-seven'); INSERT INTO t1 VALUES(4801, 77763, 'seventy-seven thousand seven hundred sixty-three'); INSERT INTO t1 VALUES(4802, 50917, 'fifty thousand nine hundred seventeen'); INSERT INTO t1 VALUES(4803, 34383, 'thirty-four thousand three hundred eighty-three'); INSERT INTO t1 VALUES(4804, 94515, 'ninety-four thousand five hundred fifteen'); INSERT INTO t1 VALUES(4805, 30107, 'thirty thousand one hundred seven'); INSERT INTO t1 VALUES(4806, 64486, 'sixty-four thousand four hundred eighty-six'); INSERT INTO t1 VALUES(4807, 94781, 'ninety-four thousand seven hundred eighty-one'); INSERT INTO t1 VALUES(4808, 79292, 'seventy-nine thousand two hundred ninety-two'); INSERT INTO t1 VALUES(4809, 62750, 'sixty-two thousand seven hundred fifty'); INSERT INTO t1 VALUES(4810, 85780, 'eighty-five thousand seven hundred eighty'); INSERT INTO t1 VALUES(4811, 17220, 'seventeen thousand two hundred twenty'); INSERT INTO t1 VALUES(4812, 78299, 'seventy-eight thousand two hundred ninety-nine'); INSERT INTO t1 VALUES(4813, 37094, 'thirty-seven thousand ninety-four'); INSERT INTO t1 VALUES(4814, 50726, 'fifty thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(4815, 22276, 'twenty-two thousand two hundred seventy-six'); INSERT INTO t1 VALUES(4816, 65786, 'sixty-five thousand seven hundred eighty-six'); INSERT INTO t1 VALUES(4817, 63124, 'sixty-three thousand one hundred twenty-four'); INSERT INTO t1 VALUES(4818, 82648, 'eighty-two thousand six hundred forty-eight'); INSERT INTO t1 VALUES(4819, 22243, 'twenty-two thousand two hundred forty-three'); INSERT INTO t1 VALUES(4820, 47823, 'forty-seven thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(4821, 14155, 'fourteen thousand one hundred fifty-five'); INSERT INTO t1 VALUES(4822, 14939, 'fourteen thousand nine hundred thirty-nine'); INSERT INTO t1 VALUES(4823, 24501, 'twenty-four thousand five hundred one'); INSERT INTO t1 VALUES(4824, 96636, 'ninety-six thousand six hundred thirty-six'); INSERT INTO t1 VALUES(4825, 66089, 'sixty-six thousand eighty-nine'); INSERT INTO t1 VALUES(4826, 62383, 'sixty-two thousand three hundred eighty-three'); INSERT INTO t1 VALUES(4827, 79947, 'seventy-nine thousand nine hundred forty-seven'); INSERT INTO t1 VALUES(4828, 66649, 'sixty-six thousand six hundred forty-nine'); INSERT INTO t1 VALUES(4829, 34257, 'thirty-four thousand two hundred fifty-seven'); INSERT INTO t1 VALUES(4830, 98383, 'ninety-eight thousand three hundred eighty-three'); INSERT INTO t1 VALUES(4831, 51891, 'fifty-one thousand eight hundred ninety-one'); INSERT INTO t1 VALUES(4832, 33082, 'thirty-three thousand eighty-two'); INSERT INTO t1 VALUES(4833, 76087, 'seventy-six thousand eighty-seven'); INSERT INTO t1 VALUES(4834, 57695, 'fifty-seven thousand six hundred ninety-five'); INSERT INTO t1 VALUES(4835, 2954, 'two thousand nine hundred fifty-four'); INSERT INTO t1 VALUES(4836, 24087, 'twenty-four thousand eighty-seven'); INSERT INTO t1 VALUES(4837, 15764, 'fifteen thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(4838, 11409, 'eleven thousand four hundred nine'); INSERT INTO t1 VALUES(4839, 71831, 'seventy-one thousand eight hundred thirty-one'); INSERT INTO t1 VALUES(4840, 98522, 'ninety-eight thousand five hundred twenty-two'); INSERT INTO t1 VALUES(4841, 60169, 'sixty thousand one hundred sixty-nine'); INSERT INTO t1 VALUES(4842, 97832, 'ninety-seven thousand eight hundred thirty-two'); INSERT INTO t1 VALUES(4843, 99592, 'ninety-nine thousand five hundred ninety-two'); INSERT INTO t1 VALUES(4844, 25798, 'twenty-five thousand seven hundred ninety-eight'); INSERT INTO t1 VALUES(4845, 12152, 'twelve thousand one hundred fifty-two'); INSERT INTO t1 VALUES(4846, 78138, 'seventy-eight thousand one hundred thirty-eight'); INSERT INTO t1 VALUES(4847, 25771, 'twenty-five thousand seven hundred seventy-one'); INSERT INTO t1 VALUES(4848, 90210, 'ninety thousand two hundred ten'); INSERT INTO t1 VALUES(4849, 37288, 'thirty-seven thousand two hundred eighty-eight'); INSERT INTO t1 VALUES(4850, 92811, 'ninety-two thousand eight hundred eleven'); INSERT INTO t1 VALUES(4851, 43802, 'forty-three thousand eight hundred two'); INSERT INTO t1 VALUES(4852, 21473, 'twenty-one thousand four hundred seventy-three'); INSERT INTO t1 VALUES(4853, 62432, 'sixty-two thousand four hundred thirty-two'); INSERT INTO t1 VALUES(4854, 40722, 'forty thousand seven hundred twenty-two'); INSERT INTO t1 VALUES(4855, 65167, 'sixty-five thousand one hundred sixty-seven'); INSERT INTO t1 VALUES(4856, 17437, 'seventeen thousand four hundred thirty-seven'); INSERT INTO t1 VALUES(4857, 36541, 'thirty-six thousand five hundred forty-one'); INSERT INTO t1 VALUES(4858, 97480, 'ninety-seven thousand four hundred eighty'); INSERT INTO t1 VALUES(4859, 49377, 'forty-nine thousand three hundred seventy-seven'); INSERT INTO t1 VALUES(4860, 28958, 'twenty-eight thousand nine hundred fifty-eight'); INSERT INTO t1 VALUES(4861, 43310, 'forty-three thousand three hundred ten'); INSERT INTO t1 VALUES(4862, 16391, 'sixteen thousand three hundred ninety-one'); INSERT INTO t1 VALUES(4863, 67625, 'sixty-seven thousand six hundred twenty-five'); INSERT INTO t1 VALUES(4864, 34527, 'thirty-four thousand five hundred twenty-seven'); INSERT INTO t1 VALUES(4865, 56647, 'fifty-six thousand six hundred forty-seven'); INSERT INTO t1 VALUES(4866, 73526, 'seventy-three thousand five hundred twenty-six'); INSERT INTO t1 VALUES(4867, 16145, 'sixteen thousand one hundred forty-five'); INSERT INTO t1 VALUES(4868, 89559, 'eighty-nine thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(4869, 78318, 'seventy-eight thousand three hundred eighteen'); INSERT INTO t1 VALUES(4870, 84615, 'eighty-four thousand six hundred fifteen'); INSERT INTO t1 VALUES(4871, 27418, 'twenty-seven thousand four hundred eighteen'); INSERT INTO t1 VALUES(4872, 11750, 'eleven thousand seven hundred fifty'); INSERT INTO t1 VALUES(4873, 84545, 'eighty-four thousand five hundred forty-five'); INSERT INTO t1 VALUES(4874, 92760, 'ninety-two thousand seven hundred sixty'); INSERT INTO t1 VALUES(4875, 3374, 'three thousand three hundred seventy-four'); INSERT INTO t1 VALUES(4876, 53723, 'fifty-three thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(4877, 39422, 'thirty-nine thousand four hundred twenty-two'); INSERT INTO t1 VALUES(4878, 95276, 'ninety-five thousand two hundred seventy-six'); INSERT INTO t1 VALUES(4879, 66620, 'sixty-six thousand six hundred twenty'); INSERT INTO t1 VALUES(4880, 85432, 'eighty-five thousand four hundred thirty-two'); INSERT INTO t1 VALUES(4881, 6362, 'six thousand three hundred sixty-two'); INSERT INTO t1 VALUES(4882, 62071, 'sixty-two thousand seventy-one'); INSERT INTO t1 VALUES(4883, 70669, 'seventy thousand six hundred sixty-nine'); INSERT INTO t1 VALUES(4884, 56076, 'fifty-six thousand seventy-six'); INSERT INTO t1 VALUES(4885, 36689, 'thirty-six thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(4886, 14768, 'fourteen thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(4887, 21692, 'twenty-one thousand six hundred ninety-two'); INSERT INTO t1 VALUES(4888, 14078, 'fourteen thousand seventy-eight'); INSERT INTO t1 VALUES(4889, 60308, 'sixty thousand three hundred eight'); INSERT INTO t1 VALUES(4890, 682, 'six hundred eighty-two'); INSERT INTO t1 VALUES(4891, 11, 'eleven'); INSERT INTO t1 VALUES(4892, 78599, 'seventy-eight thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(4893, 6511, 'six thousand five hundred eleven'); INSERT INTO t1 VALUES(4894, 91329, 'ninety-one thousand three hundred twenty-nine'); INSERT INTO t1 VALUES(4895, 49767, 'forty-nine thousand seven hundred sixty-seven'); INSERT INTO t1 VALUES(4896, 86325, 'eighty-six thousand three hundred twenty-five'); INSERT INTO t1 VALUES(4897, 42924, 'forty-two thousand nine hundred twenty-four'); INSERT INTO t1 VALUES(4898, 65871, 'sixty-five thousand eight hundred seventy-one'); INSERT INTO t1 VALUES(4899, 34569, 'thirty-four thousand five hundred sixty-nine'); INSERT INTO t1 VALUES(4900, 66317, 'sixty-six thousand three hundred seventeen'); INSERT INTO t1 VALUES(4901, 1648, 'one thousand six hundred forty-eight'); INSERT INTO t1 VALUES(4902, 22486, 'twenty-two thousand four hundred eighty-six'); INSERT INTO t1 VALUES(4903, 12243, 'twelve thousand two hundred forty-three'); INSERT INTO t1 VALUES(4904, 90102, 'ninety thousand one hundred two'); INSERT INTO t1 VALUES(4905, 6406, 'six thousand four hundred six'); INSERT INTO t1 VALUES(4906, 85824, 'eighty-five thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(4907, 55138, 'fifty-five thousand one hundred thirty-eight'); INSERT INTO t1 VALUES(4908, 82534, 'eighty-two thousand five hundred thirty-four'); INSERT INTO t1 VALUES(4909, 3539, 'three thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(4910, 85659, 'eighty-five thousand six hundred fifty-nine'); INSERT INTO t1 VALUES(4911, 35053, 'thirty-five thousand fifty-three'); INSERT INTO t1 VALUES(4912, 98270, 'ninety-eight thousand two hundred seventy'); INSERT INTO t1 VALUES(4913, 25920, 'twenty-five thousand nine hundred twenty'); INSERT INTO t1 VALUES(4914, 65751, 'sixty-five thousand seven hundred fifty-one'); INSERT INTO t1 VALUES(4915, 77804, 'seventy-seven thousand eight hundred four'); INSERT INTO t1 VALUES(4916, 79740, 'seventy-nine thousand seven hundred forty'); INSERT INTO t1 VALUES(4917, 88145, 'eighty-eight thousand one hundred forty-five'); INSERT INTO t1 VALUES(4918, 14251, 'fourteen thousand two hundred fifty-one'); INSERT INTO t1 VALUES(4919, 3766, 'three thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(4920, 68871, 'sixty-eight thousand eight hundred seventy-one'); INSERT INTO t1 VALUES(4921, 14671, 'fourteen thousand six hundred seventy-one'); INSERT INTO t1 VALUES(4922, 81320, 'eighty-one thousand three hundred twenty'); INSERT INTO t1 VALUES(4923, 62408, 'sixty-two thousand four hundred eight'); INSERT INTO t1 VALUES(4924, 60393, 'sixty thousand three hundred ninety-three'); INSERT INTO t1 VALUES(4925, 44022, 'forty-four thousand twenty-two'); INSERT INTO t1 VALUES(4926, 34718, 'thirty-four thousand seven hundred eighteen'); INSERT INTO t1 VALUES(4927, 80929, 'eighty thousand nine hundred twenty-nine'); INSERT INTO t1 VALUES(4928, 87547, 'eighty-seven thousand five hundred forty-seven'); INSERT INTO t1 VALUES(4929, 58435, 'fifty-eight thousand four hundred thirty-five'); INSERT INTO t1 VALUES(4930, 96859, 'ninety-six thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(4931, 76584, 'seventy-six thousand five hundred eighty-four'); INSERT INTO t1 VALUES(4932, 70798, 'seventy thousand seven hundred ninety-eight'); INSERT INTO t1 VALUES(4933, 76727, 'seventy-six thousand seven hundred twenty-seven'); INSERT INTO t1 VALUES(4934, 10316, 'ten thousand three hundred sixteen'); INSERT INTO t1 VALUES(4935, 58254, 'fifty-eight thousand two hundred fifty-four'); INSERT INTO t1 VALUES(4936, 74206, 'seventy-four thousand two hundred six'); INSERT INTO t1 VALUES(4937, 72797, 'seventy-two thousand seven hundred ninety-seven'); INSERT INTO t1 VALUES(4938, 85501, 'eighty-five thousand five hundred one'); INSERT INTO t1 VALUES(4939, 90040, 'ninety thousand forty'); INSERT INTO t1 VALUES(4940, 69312, 'sixty-nine thousand three hundred twelve'); INSERT INTO t1 VALUES(4941, 36159, 'thirty-six thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(4942, 41774, 'forty-one thousand seven hundred seventy-four'); INSERT INTO t1 VALUES(4943, 89927, 'eighty-nine thousand nine hundred twenty-seven'); INSERT INTO t1 VALUES(4944, 13645, 'thirteen thousand six hundred forty-five'); INSERT INTO t1 VALUES(4945, 28333, 'twenty-eight thousand three hundred thirty-three'); INSERT INTO t1 VALUES(4946, 75441, 'seventy-five thousand four hundred forty-one'); INSERT INTO t1 VALUES(4947, 25143, 'twenty-five thousand one hundred forty-three'); INSERT INTO t1 VALUES(4948, 80632, 'eighty thousand six hundred thirty-two'); INSERT INTO t1 VALUES(4949, 47896, 'forty-seven thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(4950, 43277, 'forty-three thousand two hundred seventy-seven'); INSERT INTO t1 VALUES(4951, 88171, 'eighty-eight thousand one hundred seventy-one'); INSERT INTO t1 VALUES(4952, 85482, 'eighty-five thousand four hundred eighty-two'); INSERT INTO t1 VALUES(4953, 33910, 'thirty-three thousand nine hundred ten'); INSERT INTO t1 VALUES(4954, 8168, 'eight thousand one hundred sixty-eight'); INSERT INTO t1 VALUES(4955, 7870, 'seven thousand eight hundred seventy'); INSERT INTO t1 VALUES(4956, 60041, 'sixty thousand forty-one'); INSERT INTO t1 VALUES(4957, 70341, 'seventy thousand three hundred forty-one'); INSERT INTO t1 VALUES(4958, 19890, 'nineteen thousand eight hundred ninety'); INSERT INTO t1 VALUES(4959, 47365, 'forty-seven thousand three hundred sixty-five'); INSERT INTO t1 VALUES(4960, 28798, 'twenty-eight thousand seven hundred ninety-eight'); INSERT INTO t1 VALUES(4961, 9892, 'nine thousand eight hundred ninety-two'); INSERT INTO t1 VALUES(4962, 67196, 'sixty-seven thousand one hundred ninety-six'); INSERT INTO t1 VALUES(4963, 16818, 'sixteen thousand eight hundred eighteen'); INSERT INTO t1 VALUES(4964, 49219, 'forty-nine thousand two hundred nineteen'); INSERT INTO t1 VALUES(4965, 31667, 'thirty-one thousand six hundred sixty-seven'); INSERT INTO t1 VALUES(4966, 44330, 'forty-four thousand three hundred thirty'); INSERT INTO t1 VALUES(4967, 89853, 'eighty-nine thousand eight hundred fifty-three'); INSERT INTO t1 VALUES(4968, 39582, 'thirty-nine thousand five hundred eighty-two'); INSERT INTO t1 VALUES(4969, 52560, 'fifty-two thousand five hundred sixty'); INSERT INTO t1 VALUES(4970, 32308, 'thirty-two thousand three hundred eight'); INSERT INTO t1 VALUES(4971, 34148, 'thirty-four thousand one hundred forty-eight'); INSERT INTO t1 VALUES(4972, 57437, 'fifty-seven thousand four hundred thirty-seven'); INSERT INTO t1 VALUES(4973, 62652, 'sixty-two thousand six hundred fifty-two'); INSERT INTO t1 VALUES(4974, 7403, 'seven thousand four hundred three'); INSERT INTO t1 VALUES(4975, 52464, 'fifty-two thousand four hundred sixty-four'); INSERT INTO t1 VALUES(4976, 89152, 'eighty-nine thousand one hundred fifty-two'); INSERT INTO t1 VALUES(4977, 68671, 'sixty-eight thousand six hundred seventy-one'); INSERT INTO t1 VALUES(4978, 38004, 'thirty-eight thousand four'); INSERT INTO t1 VALUES(4979, 61875, 'sixty-one thousand eight hundred seventy-five'); INSERT INTO t1 VALUES(4980, 31952, 'thirty-one thousand nine hundred fifty-two'); INSERT INTO t1 VALUES(4981, 12227, 'twelve thousand two hundred twenty-seven'); INSERT INTO t1 VALUES(4982, 65683, 'sixty-five thousand six hundred eighty-three'); INSERT INTO t1 VALUES(4983, 2622, 'two thousand six hundred twenty-two'); INSERT INTO t1 VALUES(4984, 20773, 'twenty thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(4985, 23588, 'twenty-three thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(4986, 15388, 'fifteen thousand three hundred eighty-eight'); INSERT INTO t1 VALUES(4987, 16975, 'sixteen thousand nine hundred seventy-five'); INSERT INTO t1 VALUES(4988, 25573, 'twenty-five thousand five hundred seventy-three'); INSERT INTO t1 VALUES(4989, 9375, 'nine thousand three hundred seventy-five'); INSERT INTO t1 VALUES(4990, 54697, 'fifty-four thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(4991, 19726, 'nineteen thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(4992, 95603, 'ninety-five thousand six hundred three'); INSERT INTO t1 VALUES(4993, 10589, 'ten thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(4994, 12452, 'twelve thousand four hundred fifty-two'); INSERT INTO t1 VALUES(4995, 6133, 'six thousand one hundred thirty-three'); INSERT INTO t1 VALUES(4996, 98070, 'ninety-eight thousand seventy'); INSERT INTO t1 VALUES(4997, 32980, 'thirty-two thousand nine hundred eighty'); INSERT INTO t1 VALUES(4998, 88641, 'eighty-eight thousand six hundred forty-one'); INSERT INTO t1 VALUES(4999, 40778, 'forty thousand seven hundred seventy-eight'); INSERT INTO t1 VALUES(5000, 51575, 'fifty-one thousand five hundred seventy-five'); INSERT INTO t1 VALUES(5001, 69865, 'sixty-nine thousand eight hundred sixty-five'); INSERT INTO t1 VALUES(5002, 48774, 'forty-eight thousand seven hundred seventy-four'); INSERT INTO t1 VALUES(5003, 95451, 'ninety-five thousand four hundred fifty-one'); INSERT INTO t1 VALUES(5004, 31998, 'thirty-one thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(5005, 86302, 'eighty-six thousand three hundred two'); INSERT INTO t1 VALUES(5006, 4809, 'four thousand eight hundred nine'); INSERT INTO t1 VALUES(5007, 14546, 'fourteen thousand five hundred forty-six'); INSERT INTO t1 VALUES(5008, 4046, 'four thousand forty-six'); INSERT INTO t1 VALUES(5009, 75233, 'seventy-five thousand two hundred thirty-three'); INSERT INTO t1 VALUES(5010, 65068, 'sixty-five thousand sixty-eight'); INSERT INTO t1 VALUES(5011, 29651, 'twenty-nine thousand six hundred fifty-one'); INSERT INTO t1 VALUES(5012, 8108, 'eight thousand one hundred eight'); INSERT INTO t1 VALUES(5013, 60364, 'sixty thousand three hundred sixty-four'); INSERT INTO t1 VALUES(5014, 62997, 'sixty-two thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(5015, 56287, 'fifty-six thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(5016, 17458, 'seventeen thousand four hundred fifty-eight'); INSERT INTO t1 VALUES(5017, 88216, 'eighty-eight thousand two hundred sixteen'); INSERT INTO t1 VALUES(5018, 58866, 'fifty-eight thousand eight hundred sixty-six'); INSERT INTO t1 VALUES(5019, 2951, 'two thousand nine hundred fifty-one'); INSERT INTO t1 VALUES(5020, 93139, 'ninety-three thousand one hundred thirty-nine'); INSERT INTO t1 VALUES(5021, 40373, 'forty thousand three hundred seventy-three'); INSERT INTO t1 VALUES(5022, 84735, 'eighty-four thousand seven hundred thirty-five'); INSERT INTO t1 VALUES(5023, 82945, 'eighty-two thousand nine hundred forty-five'); INSERT INTO t1 VALUES(5024, 6997, 'six thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(5025, 38114, 'thirty-eight thousand one hundred fourteen'); INSERT INTO t1 VALUES(5026, 65230, 'sixty-five thousand two hundred thirty'); INSERT INTO t1 VALUES(5027, 51181, 'fifty-one thousand one hundred eighty-one'); INSERT INTO t1 VALUES(5028, 66602, 'sixty-six thousand six hundred two'); INSERT INTO t1 VALUES(5029, 86067, 'eighty-six thousand sixty-seven'); INSERT INTO t1 VALUES(5030, 83722, 'eighty-three thousand seven hundred twenty-two'); INSERT INTO t1 VALUES(5031, 22709, 'twenty-two thousand seven hundred nine'); INSERT INTO t1 VALUES(5032, 35923, 'thirty-five thousand nine hundred twenty-three'); INSERT INTO t1 VALUES(5033, 49564, 'forty-nine thousand five hundred sixty-four'); INSERT INTO t1 VALUES(5034, 27234, 'twenty-seven thousand two hundred thirty-four'); INSERT INTO t1 VALUES(5035, 84707, 'eighty-four thousand seven hundred seven'); INSERT INTO t1 VALUES(5036, 99719, 'ninety-nine thousand seven hundred nineteen'); INSERT INTO t1 VALUES(5037, 73704, 'seventy-three thousand seven hundred four'); INSERT INTO t1 VALUES(5038, 71460, 'seventy-one thousand four hundred sixty'); INSERT INTO t1 VALUES(5039, 59374, 'fifty-nine thousand three hundred seventy-four'); INSERT INTO t1 VALUES(5040, 71162, 'seventy-one thousand one hundred sixty-two'); INSERT INTO t1 VALUES(5041, 51665, 'fifty-one thousand six hundred sixty-five'); INSERT INTO t1 VALUES(5042, 27428, 'twenty-seven thousand four hundred twenty-eight'); INSERT INTO t1 VALUES(5043, 658, 'six hundred fifty-eight'); INSERT INTO t1 VALUES(5044, 78850, 'seventy-eight thousand eight hundred fifty'); INSERT INTO t1 VALUES(5045, 66534, 'sixty-six thousand five hundred thirty-four'); INSERT INTO t1 VALUES(5046, 30081, 'thirty thousand eighty-one'); INSERT INTO t1 VALUES(5047, 69557, 'sixty-nine thousand five hundred fifty-seven'); INSERT INTO t1 VALUES(5048, 13266, 'thirteen thousand two hundred sixty-six'); INSERT INTO t1 VALUES(5049, 48059, 'forty-eight thousand fifty-nine'); INSERT INTO t1 VALUES(5050, 62586, 'sixty-two thousand five hundred eighty-six'); INSERT INTO t1 VALUES(5051, 50146, 'fifty thousand one hundred forty-six'); INSERT INTO t1 VALUES(5052, 9104, 'nine thousand one hundred four'); INSERT INTO t1 VALUES(5053, 27503, 'twenty-seven thousand five hundred three'); INSERT INTO t1 VALUES(5054, 20790, 'twenty thousand seven hundred ninety'); INSERT INTO t1 VALUES(5055, 37953, 'thirty-seven thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(5056, 51305, 'fifty-one thousand three hundred five'); INSERT INTO t1 VALUES(5057, 21697, 'twenty-one thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(5058, 9731, 'nine thousand seven hundred thirty-one'); INSERT INTO t1 VALUES(5059, 1057, 'one thousand fifty-seven'); INSERT INTO t1 VALUES(5060, 34236, 'thirty-four thousand two hundred thirty-six'); INSERT INTO t1 VALUES(5061, 96761, 'ninety-six thousand seven hundred sixty-one'); INSERT INTO t1 VALUES(5062, 7220, 'seven thousand two hundred twenty'); INSERT INTO t1 VALUES(5063, 34744, 'thirty-four thousand seven hundred forty-four'); INSERT INTO t1 VALUES(5064, 79573, 'seventy-nine thousand five hundred seventy-three'); INSERT INTO t1 VALUES(5065, 51553, 'fifty-one thousand five hundred fifty-three'); INSERT INTO t1 VALUES(5066, 7497, 'seven thousand four hundred ninety-seven'); INSERT INTO t1 VALUES(5067, 81295, 'eighty-one thousand two hundred ninety-five'); INSERT INTO t1 VALUES(5068, 83888, 'eighty-three thousand eight hundred eighty-eight'); INSERT INTO t1 VALUES(5069, 80030, 'eighty thousand thirty'); INSERT INTO t1 VALUES(5070, 28902, 'twenty-eight thousand nine hundred two'); INSERT INTO t1 VALUES(5071, 44805, 'forty-four thousand eight hundred five'); INSERT INTO t1 VALUES(5072, 4211, 'four thousand two hundred eleven'); INSERT INTO t1 VALUES(5073, 66600, 'sixty-six thousand six hundred'); INSERT INTO t1 VALUES(5074, 78220, 'seventy-eight thousand two hundred twenty'); INSERT INTO t1 VALUES(5075, 10624, 'ten thousand six hundred twenty-four'); INSERT INTO t1 VALUES(5076, 9604, 'nine thousand six hundred four'); INSERT INTO t1 VALUES(5077, 40490, 'forty thousand four hundred ninety'); INSERT INTO t1 VALUES(5078, 76195, 'seventy-six thousand one hundred ninety-five'); INSERT INTO t1 VALUES(5079, 56267, 'fifty-six thousand two hundred sixty-seven'); INSERT INTO t1 VALUES(5080, 65411, 'sixty-five thousand four hundred eleven'); INSERT INTO t1 VALUES(5081, 55363, 'fifty-five thousand three hundred sixty-three'); INSERT INTO t1 VALUES(5082, 51661, 'fifty-one thousand six hundred sixty-one'); INSERT INTO t1 VALUES(5083, 52824, 'fifty-two thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(5084, 23877, 'twenty-three thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(5085, 7395, 'seven thousand three hundred ninety-five'); INSERT INTO t1 VALUES(5086, 25891, 'twenty-five thousand eight hundred ninety-one'); INSERT INTO t1 VALUES(5087, 32062, 'thirty-two thousand sixty-two'); INSERT INTO t1 VALUES(5088, 39662, 'thirty-nine thousand six hundred sixty-two'); INSERT INTO t1 VALUES(5089, 79311, 'seventy-nine thousand three hundred eleven'); INSERT INTO t1 VALUES(5090, 88399, 'eighty-eight thousand three hundred ninety-nine'); INSERT INTO t1 VALUES(5091, 14445, 'fourteen thousand four hundred forty-five'); INSERT INTO t1 VALUES(5092, 18140, 'eighteen thousand one hundred forty'); INSERT INTO t1 VALUES(5093, 2654, 'two thousand six hundred fifty-four'); INSERT INTO t1 VALUES(5094, 1396, 'one thousand three hundred ninety-six'); INSERT INTO t1 VALUES(5095, 83328, 'eighty-three thousand three hundred twenty-eight'); INSERT INTO t1 VALUES(5096, 71659, 'seventy-one thousand six hundred fifty-nine'); INSERT INTO t1 VALUES(5097, 84065, 'eighty-four thousand sixty-five'); INSERT INTO t1 VALUES(5098, 78765, 'seventy-eight thousand seven hundred sixty-five'); INSERT INTO t1 VALUES(5099, 47416, 'forty-seven thousand four hundred sixteen'); INSERT INTO t1 VALUES(5100, 38247, 'thirty-eight thousand two hundred forty-seven'); INSERT INTO t1 VALUES(5101, 66326, 'sixty-six thousand three hundred twenty-six'); INSERT INTO t1 VALUES(5102, 15537, 'fifteen thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(5103, 20176, 'twenty thousand one hundred seventy-six'); INSERT INTO t1 VALUES(5104, 8227, 'eight thousand two hundred twenty-seven'); INSERT INTO t1 VALUES(5105, 68007, 'sixty-eight thousand seven'); INSERT INTO t1 VALUES(5106, 83462, 'eighty-three thousand four hundred sixty-two'); INSERT INTO t1 VALUES(5107, 28891, 'twenty-eight thousand eight hundred ninety-one'); INSERT INTO t1 VALUES(5108, 78083, 'seventy-eight thousand eighty-three'); INSERT INTO t1 VALUES(5109, 13749, 'thirteen thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(5110, 17575, 'seventeen thousand five hundred seventy-five'); INSERT INTO t1 VALUES(5111, 99771, 'ninety-nine thousand seven hundred seventy-one'); INSERT INTO t1 VALUES(5112, 72786, 'seventy-two thousand seven hundred eighty-six'); INSERT INTO t1 VALUES(5113, 62452, 'sixty-two thousand four hundred fifty-two'); INSERT INTO t1 VALUES(5114, 24689, 'twenty-four thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(5115, 75122, 'seventy-five thousand one hundred twenty-two'); INSERT INTO t1 VALUES(5116, 55950, 'fifty-five thousand nine hundred fifty'); INSERT INTO t1 VALUES(5117, 68275, 'sixty-eight thousand two hundred seventy-five'); INSERT INTO t1 VALUES(5118, 96199, 'ninety-six thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(5119, 80579, 'eighty thousand five hundred seventy-nine'); INSERT INTO t1 VALUES(5120, 60822, 'sixty thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(5121, 34086, 'thirty-four thousand eighty-six'); INSERT INTO t1 VALUES(5122, 9588, 'nine thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(5123, 45708, 'forty-five thousand seven hundred eight'); INSERT INTO t1 VALUES(5124, 24138, 'twenty-four thousand one hundred thirty-eight'); INSERT INTO t1 VALUES(5125, 20121, 'twenty thousand one hundred twenty-one'); INSERT INTO t1 VALUES(5126, 38219, 'thirty-eight thousand two hundred nineteen'); INSERT INTO t1 VALUES(5127, 90510, 'ninety thousand five hundred ten'); INSERT INTO t1 VALUES(5128, 34525, 'thirty-four thousand five hundred twenty-five'); INSERT INTO t1 VALUES(5129, 71507, 'seventy-one thousand five hundred seven'); INSERT INTO t1 VALUES(5130, 10045, 'ten thousand forty-five'); INSERT INTO t1 VALUES(5131, 22274, 'twenty-two thousand two hundred seventy-four'); INSERT INTO t1 VALUES(5132, 80483, 'eighty thousand four hundred eighty-three'); INSERT INTO t1 VALUES(5133, 98654, 'ninety-eight thousand six hundred fifty-four'); INSERT INTO t1 VALUES(5134, 46867, 'forty-six thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(5135, 36598, 'thirty-six thousand five hundred ninety-eight'); INSERT INTO t1 VALUES(5136, 57689, 'fifty-seven thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(5137, 87356, 'eighty-seven thousand three hundred fifty-six'); INSERT INTO t1 VALUES(5138, 71671, 'seventy-one thousand six hundred seventy-one'); INSERT INTO t1 VALUES(5139, 35453, 'thirty-five thousand four hundred fifty-three'); INSERT INTO t1 VALUES(5140, 23566, 'twenty-three thousand five hundred sixty-six'); INSERT INTO t1 VALUES(5141, 37818, 'thirty-seven thousand eight hundred eighteen'); INSERT INTO t1 VALUES(5142, 74329, 'seventy-four thousand three hundred twenty-nine'); INSERT INTO t1 VALUES(5143, 49253, 'forty-nine thousand two hundred fifty-three'); INSERT INTO t1 VALUES(5144, 80901, 'eighty thousand nine hundred one'); INSERT INTO t1 VALUES(5145, 57262, 'fifty-seven thousand two hundred sixty-two'); INSERT INTO t1 VALUES(5146, 14743, 'fourteen thousand seven hundred forty-three'); INSERT INTO t1 VALUES(5147, 5143, 'five thousand one hundred forty-three'); INSERT INTO t1 VALUES(5148, 11346, 'eleven thousand three hundred forty-six'); INSERT INTO t1 VALUES(5149, 17987, 'seventeen thousand nine hundred eighty-seven'); INSERT INTO t1 VALUES(5150, 66734, 'sixty-six thousand seven hundred thirty-four'); INSERT INTO t1 VALUES(5151, 60407, 'sixty thousand four hundred seven'); INSERT INTO t1 VALUES(5152, 25696, 'twenty-five thousand six hundred ninety-six'); INSERT INTO t1 VALUES(5153, 86109, 'eighty-six thousand one hundred nine'); INSERT INTO t1 VALUES(5154, 19290, 'nineteen thousand two hundred ninety'); INSERT INTO t1 VALUES(5155, 19630, 'nineteen thousand six hundred thirty'); INSERT INTO t1 VALUES(5156, 38358, 'thirty-eight thousand three hundred fifty-eight'); INSERT INTO t1 VALUES(5157, 57446, 'fifty-seven thousand four hundred forty-six'); INSERT INTO t1 VALUES(5158, 88152, 'eighty-eight thousand one hundred fifty-two'); INSERT INTO t1 VALUES(5159, 86018, 'eighty-six thousand eighteen'); INSERT INTO t1 VALUES(5160, 62771, 'sixty-two thousand seven hundred seventy-one'); INSERT INTO t1 VALUES(5161, 12777, 'twelve thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(5162, 19538, 'nineteen thousand five hundred thirty-eight'); INSERT INTO t1 VALUES(5163, 64507, 'sixty-four thousand five hundred seven'); INSERT INTO t1 VALUES(5164, 244, 'two hundred forty-four'); INSERT INTO t1 VALUES(5165, 30075, 'thirty thousand seventy-five'); INSERT INTO t1 VALUES(5166, 8807, 'eight thousand eight hundred seven'); INSERT INTO t1 VALUES(5167, 57832, 'fifty-seven thousand eight hundred thirty-two'); INSERT INTO t1 VALUES(5168, 72229, 'seventy-two thousand two hundred twenty-nine'); INSERT INTO t1 VALUES(5169, 99913, 'ninety-nine thousand nine hundred thirteen'); INSERT INTO t1 VALUES(5170, 40863, 'forty thousand eight hundred sixty-three'); INSERT INTO t1 VALUES(5171, 70246, 'seventy thousand two hundred forty-six'); INSERT INTO t1 VALUES(5172, 22588, 'twenty-two thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(5173, 53832, 'fifty-three thousand eight hundred thirty-two'); INSERT INTO t1 VALUES(5174, 48056, 'forty-eight thousand fifty-six'); INSERT INTO t1 VALUES(5175, 11009, 'eleven thousand nine'); INSERT INTO t1 VALUES(5176, 84965, 'eighty-four thousand nine hundred sixty-five'); INSERT INTO t1 VALUES(5177, 21867, 'twenty-one thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(5178, 74869, 'seventy-four thousand eight hundred sixty-nine'); INSERT INTO t1 VALUES(5179, 60210, 'sixty thousand two hundred ten'); INSERT INTO t1 VALUES(5180, 39054, 'thirty-nine thousand fifty-four'); INSERT INTO t1 VALUES(5181, 38326, 'thirty-eight thousand three hundred twenty-six'); INSERT INTO t1 VALUES(5182, 36443, 'thirty-six thousand four hundred forty-three'); INSERT INTO t1 VALUES(5183, 48476, 'forty-eight thousand four hundred seventy-six'); INSERT INTO t1 VALUES(5184, 83269, 'eighty-three thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(5185, 97864, 'ninety-seven thousand eight hundred sixty-four'); INSERT INTO t1 VALUES(5186, 51454, 'fifty-one thousand four hundred fifty-four'); INSERT INTO t1 VALUES(5187, 76008, 'seventy-six thousand eight'); INSERT INTO t1 VALUES(5188, 7244, 'seven thousand two hundred forty-four'); INSERT INTO t1 VALUES(5189, 23234, 'twenty-three thousand two hundred thirty-four'); INSERT INTO t1 VALUES(5190, 48739, 'forty-eight thousand seven hundred thirty-nine'); INSERT INTO t1 VALUES(5191, 40019, 'forty thousand nineteen'); INSERT INTO t1 VALUES(5192, 14220, 'fourteen thousand two hundred twenty'); INSERT INTO t1 VALUES(5193, 29048, 'twenty-nine thousand forty-eight'); INSERT INTO t1 VALUES(5194, 19599, 'nineteen thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(5195, 24007, 'twenty-four thousand seven'); INSERT INTO t1 VALUES(5196, 73456, 'seventy-three thousand four hundred fifty-six'); INSERT INTO t1 VALUES(5197, 97145, 'ninety-seven thousand one hundred forty-five'); INSERT INTO t1 VALUES(5198, 10401, 'ten thousand four hundred one'); INSERT INTO t1 VALUES(5199, 46511, 'forty-six thousand five hundred eleven'); INSERT INTO t1 VALUES(5200, 17746, 'seventeen thousand seven hundred forty-six'); INSERT INTO t1 VALUES(5201, 89757, 'eighty-nine thousand seven hundred fifty-seven'); INSERT INTO t1 VALUES(5202, 63317, 'sixty-three thousand three hundred seventeen'); INSERT INTO t1 VALUES(5203, 35979, 'thirty-five thousand nine hundred seventy-nine'); INSERT INTO t1 VALUES(5204, 49984, 'forty-nine thousand nine hundred eighty-four'); INSERT INTO t1 VALUES(5205, 80772, 'eighty thousand seven hundred seventy-two'); INSERT INTO t1 VALUES(5206, 97065, 'ninety-seven thousand sixty-five'); INSERT INTO t1 VALUES(5207, 34855, 'thirty-four thousand eight hundred fifty-five'); INSERT INTO t1 VALUES(5208, 48612, 'forty-eight thousand six hundred twelve'); INSERT INTO t1 VALUES(5209, 81997, 'eighty-one thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(5210, 28739, 'twenty-eight thousand seven hundred thirty-nine'); INSERT INTO t1 VALUES(5211, 49554, 'forty-nine thousand five hundred fifty-four'); INSERT INTO t1 VALUES(5212, 45237, 'forty-five thousand two hundred thirty-seven'); INSERT INTO t1 VALUES(5213, 68553, 'sixty-eight thousand five hundred fifty-three'); INSERT INTO t1 VALUES(5214, 84721, 'eighty-four thousand seven hundred twenty-one'); INSERT INTO t1 VALUES(5215, 92537, 'ninety-two thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(5216, 78187, 'seventy-eight thousand one hundred eighty-seven'); INSERT INTO t1 VALUES(5217, 1787, 'one thousand seven hundred eighty-seven'); INSERT INTO t1 VALUES(5218, 1215, 'one thousand two hundred fifteen'); INSERT INTO t1 VALUES(5219, 34684, 'thirty-four thousand six hundred eighty-four'); INSERT INTO t1 VALUES(5220, 40014, 'forty thousand fourteen'); INSERT INTO t1 VALUES(5221, 63718, 'sixty-three thousand seven hundred eighteen'); INSERT INTO t1 VALUES(5222, 98041, 'ninety-eight thousand forty-one'); INSERT INTO t1 VALUES(5223, 17058, 'seventeen thousand fifty-eight'); INSERT INTO t1 VALUES(5224, 59580, 'fifty-nine thousand five hundred eighty'); INSERT INTO t1 VALUES(5225, 16947, 'sixteen thousand nine hundred forty-seven'); INSERT INTO t1 VALUES(5226, 37058, 'thirty-seven thousand fifty-eight'); INSERT INTO t1 VALUES(5227, 17530, 'seventeen thousand five hundred thirty'); INSERT INTO t1 VALUES(5228, 7657, 'seven thousand six hundred fifty-seven'); INSERT INTO t1 VALUES(5229, 78127, 'seventy-eight thousand one hundred twenty-seven'); INSERT INTO t1 VALUES(5230, 29000, 'twenty-nine thousand'); INSERT INTO t1 VALUES(5231, 47986, 'forty-seven thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(5232, 853, 'eight hundred fifty-three'); INSERT INTO t1 VALUES(5233, 10357, 'ten thousand three hundred fifty-seven'); INSERT INTO t1 VALUES(5234, 38598, 'thirty-eight thousand five hundred ninety-eight'); INSERT INTO t1 VALUES(5235, 43329, 'forty-three thousand three hundred twenty-nine'); INSERT INTO t1 VALUES(5236, 70858, 'seventy thousand eight hundred fifty-eight'); INSERT INTO t1 VALUES(5237, 97113, 'ninety-seven thousand one hundred thirteen'); INSERT INTO t1 VALUES(5238, 45132, 'forty-five thousand one hundred thirty-two'); INSERT INTO t1 VALUES(5239, 36809, 'thirty-six thousand eight hundred nine'); INSERT INTO t1 VALUES(5240, 23955, 'twenty-three thousand nine hundred fifty-five'); INSERT INTO t1 VALUES(5241, 90875, 'ninety thousand eight hundred seventy-five'); INSERT INTO t1 VALUES(5242, 84505, 'eighty-four thousand five hundred five'); INSERT INTO t1 VALUES(5243, 95529, 'ninety-five thousand five hundred twenty-nine'); INSERT INTO t1 VALUES(5244, 43616, 'forty-three thousand six hundred sixteen'); INSERT INTO t1 VALUES(5245, 2450, 'two thousand four hundred fifty'); INSERT INTO t1 VALUES(5246, 48027, 'forty-eight thousand twenty-seven'); INSERT INTO t1 VALUES(5247, 29365, 'twenty-nine thousand three hundred sixty-five'); INSERT INTO t1 VALUES(5248, 66737, 'sixty-six thousand seven hundred thirty-seven'); INSERT INTO t1 VALUES(5249, 1907, 'one thousand nine hundred seven'); INSERT INTO t1 VALUES(5250, 6535, 'six thousand five hundred thirty-five'); INSERT INTO t1 VALUES(5251, 8896, 'eight thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(5252, 51925, 'fifty-one thousand nine hundred twenty-five'); INSERT INTO t1 VALUES(5253, 4490, 'four thousand four hundred ninety'); INSERT INTO t1 VALUES(5254, 35342, 'thirty-five thousand three hundred forty-two'); INSERT INTO t1 VALUES(5255, 71467, 'seventy-one thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(5256, 72074, 'seventy-two thousand seventy-four'); INSERT INTO t1 VALUES(5257, 33367, 'thirty-three thousand three hundred sixty-seven'); INSERT INTO t1 VALUES(5258, 68786, 'sixty-eight thousand seven hundred eighty-six'); INSERT INTO t1 VALUES(5259, 49625, 'forty-nine thousand six hundred twenty-five'); INSERT INTO t1 VALUES(5260, 74418, 'seventy-four thousand four hundred eighteen'); INSERT INTO t1 VALUES(5261, 74442, 'seventy-four thousand four hundred forty-two'); INSERT INTO t1 VALUES(5262, 22950, 'twenty-two thousand nine hundred fifty'); INSERT INTO t1 VALUES(5263, 6802, 'six thousand eight hundred two'); INSERT INTO t1 VALUES(5264, 87028, 'eighty-seven thousand twenty-eight'); INSERT INTO t1 VALUES(5265, 10523, 'ten thousand five hundred twenty-three'); INSERT INTO t1 VALUES(5266, 64483, 'sixty-four thousand four hundred eighty-three'); INSERT INTO t1 VALUES(5267, 3044, 'three thousand forty-four'); INSERT INTO t1 VALUES(5268, 76344, 'seventy-six thousand three hundred forty-four'); INSERT INTO t1 VALUES(5269, 20726, 'twenty thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(5270, 20551, 'twenty thousand five hundred fifty-one'); INSERT INTO t1 VALUES(5271, 84525, 'eighty-four thousand five hundred twenty-five'); INSERT INTO t1 VALUES(5272, 16248, 'sixteen thousand two hundred forty-eight'); INSERT INTO t1 VALUES(5273, 95862, 'ninety-five thousand eight hundred sixty-two'); INSERT INTO t1 VALUES(5274, 35622, 'thirty-five thousand six hundred twenty-two'); INSERT INTO t1 VALUES(5275, 46731, 'forty-six thousand seven hundred thirty-one'); INSERT INTO t1 VALUES(5276, 93383, 'ninety-three thousand three hundred eighty-three'); INSERT INTO t1 VALUES(5277, 1777, 'one thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(5278, 74638, 'seventy-four thousand six hundred thirty-eight'); INSERT INTO t1 VALUES(5279, 74335, 'seventy-four thousand three hundred thirty-five'); INSERT INTO t1 VALUES(5280, 31913, 'thirty-one thousand nine hundred thirteen'); INSERT INTO t1 VALUES(5281, 34160, 'thirty-four thousand one hundred sixty'); INSERT INTO t1 VALUES(5282, 31120, 'thirty-one thousand one hundred twenty'); INSERT INTO t1 VALUES(5283, 83750, 'eighty-three thousand seven hundred fifty'); INSERT INTO t1 VALUES(5284, 67754, 'sixty-seven thousand seven hundred fifty-four'); INSERT INTO t1 VALUES(5285, 44313, 'forty-four thousand three hundred thirteen'); INSERT INTO t1 VALUES(5286, 40435, 'forty thousand four hundred thirty-five'); INSERT INTO t1 VALUES(5287, 27914, 'twenty-seven thousand nine hundred fourteen'); INSERT INTO t1 VALUES(5288, 40734, 'forty thousand seven hundred thirty-four'); INSERT INTO t1 VALUES(5289, 92944, 'ninety-two thousand nine hundred forty-four'); INSERT INTO t1 VALUES(5290, 26482, 'twenty-six thousand four hundred eighty-two'); INSERT INTO t1 VALUES(5291, 49816, 'forty-nine thousand eight hundred sixteen'); INSERT INTO t1 VALUES(5292, 12548, 'twelve thousand five hundred forty-eight'); INSERT INTO t1 VALUES(5293, 89241, 'eighty-nine thousand two hundred forty-one'); INSERT INTO t1 VALUES(5294, 70605, 'seventy thousand six hundred five'); INSERT INTO t1 VALUES(5295, 43728, 'forty-three thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(5296, 94159, 'ninety-four thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(5297, 25763, 'twenty-five thousand seven hundred sixty-three'); INSERT INTO t1 VALUES(5298, 446, 'four hundred forty-six'); INSERT INTO t1 VALUES(5299, 91250, 'ninety-one thousand two hundred fifty'); INSERT INTO t1 VALUES(5300, 19711, 'nineteen thousand seven hundred eleven'); INSERT INTO t1 VALUES(5301, 47149, 'forty-seven thousand one hundred forty-nine'); INSERT INTO t1 VALUES(5302, 90439, 'ninety thousand four hundred thirty-nine'); INSERT INTO t1 VALUES(5303, 80312, 'eighty thousand three hundred twelve'); INSERT INTO t1 VALUES(5304, 90807, 'ninety thousand eight hundred seven'); INSERT INTO t1 VALUES(5305, 97383, 'ninety-seven thousand three hundred eighty-three'); INSERT INTO t1 VALUES(5306, 80599, 'eighty thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(5307, 74922, 'seventy-four thousand nine hundred twenty-two'); INSERT INTO t1 VALUES(5308, 98275, 'ninety-eight thousand two hundred seventy-five'); INSERT INTO t1 VALUES(5309, 97645, 'ninety-seven thousand six hundred forty-five'); INSERT INTO t1 VALUES(5310, 26133, 'twenty-six thousand one hundred thirty-three'); INSERT INTO t1 VALUES(5311, 25834, 'twenty-five thousand eight hundred thirty-four'); INSERT INTO t1 VALUES(5312, 97280, 'ninety-seven thousand two hundred eighty'); INSERT INTO t1 VALUES(5313, 38098, 'thirty-eight thousand ninety-eight'); INSERT INTO t1 VALUES(5314, 29623, 'twenty-nine thousand six hundred twenty-three'); INSERT INTO t1 VALUES(5315, 28408, 'twenty-eight thousand four hundred eight'); INSERT INTO t1 VALUES(5316, 93247, 'ninety-three thousand two hundred forty-seven'); INSERT INTO t1 VALUES(5317, 85070, 'eighty-five thousand seventy'); INSERT INTO t1 VALUES(5318, 93212, 'ninety-three thousand two hundred twelve'); INSERT INTO t1 VALUES(5319, 66169, 'sixty-six thousand one hundred sixty-nine'); INSERT INTO t1 VALUES(5320, 65027, 'sixty-five thousand twenty-seven'); INSERT INTO t1 VALUES(5321, 94772, 'ninety-four thousand seven hundred seventy-two'); INSERT INTO t1 VALUES(5322, 49550, 'forty-nine thousand five hundred fifty'); INSERT INTO t1 VALUES(5323, 15605, 'fifteen thousand six hundred five'); INSERT INTO t1 VALUES(5324, 38278, 'thirty-eight thousand two hundred seventy-eight'); INSERT INTO t1 VALUES(5325, 56156, 'fifty-six thousand one hundred fifty-six'); INSERT INTO t1 VALUES(5326, 45261, 'forty-five thousand two hundred sixty-one'); INSERT INTO t1 VALUES(5327, 19385, 'nineteen thousand three hundred eighty-five'); INSERT INTO t1 VALUES(5328, 25974, 'twenty-five thousand nine hundred seventy-four'); INSERT INTO t1 VALUES(5329, 43346, 'forty-three thousand three hundred forty-six'); INSERT INTO t1 VALUES(5330, 97638, 'ninety-seven thousand six hundred thirty-eight'); INSERT INTO t1 VALUES(5331, 69588, 'sixty-nine thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(5332, 21059, 'twenty-one thousand fifty-nine'); INSERT INTO t1 VALUES(5333, 61640, 'sixty-one thousand six hundred forty'); INSERT INTO t1 VALUES(5334, 9277, 'nine thousand two hundred seventy-seven'); INSERT INTO t1 VALUES(5335, 85835, 'eighty-five thousand eight hundred thirty-five'); INSERT INTO t1 VALUES(5336, 12179, 'twelve thousand one hundred seventy-nine'); INSERT INTO t1 VALUES(5337, 74706, 'seventy-four thousand seven hundred six'); INSERT INTO t1 VALUES(5338, 21378, 'twenty-one thousand three hundred seventy-eight'); INSERT INTO t1 VALUES(5339, 41977, 'forty-one thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(5340, 77515, 'seventy-seven thousand five hundred fifteen'); INSERT INTO t1 VALUES(5341, 15893, 'fifteen thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(5342, 95405, 'ninety-five thousand four hundred five'); INSERT INTO t1 VALUES(5343, 44602, 'forty-four thousand six hundred two'); INSERT INTO t1 VALUES(5344, 92597, 'ninety-two thousand five hundred ninety-seven'); INSERT INTO t1 VALUES(5345, 19588, 'nineteen thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(5346, 17296, 'seventeen thousand two hundred ninety-six'); INSERT INTO t1 VALUES(5347, 83249, 'eighty-three thousand two hundred forty-nine'); INSERT INTO t1 VALUES(5348, 32634, 'thirty-two thousand six hundred thirty-four'); INSERT INTO t1 VALUES(5349, 53609, 'fifty-three thousand six hundred nine'); INSERT INTO t1 VALUES(5350, 88230, 'eighty-eight thousand two hundred thirty'); INSERT INTO t1 VALUES(5351, 32442, 'thirty-two thousand four hundred forty-two'); INSERT INTO t1 VALUES(5352, 62650, 'sixty-two thousand six hundred fifty'); INSERT INTO t1 VALUES(5353, 23287, 'twenty-three thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(5354, 10008, 'ten thousand eight'); INSERT INTO t1 VALUES(5355, 80306, 'eighty thousand three hundred six'); INSERT INTO t1 VALUES(5356, 96197, 'ninety-six thousand one hundred ninety-seven'); INSERT INTO t1 VALUES(5357, 36652, 'thirty-six thousand six hundred fifty-two'); INSERT INTO t1 VALUES(5358, 80706, 'eighty thousand seven hundred six'); INSERT INTO t1 VALUES(5359, 72088, 'seventy-two thousand eighty-eight'); INSERT INTO t1 VALUES(5360, 95164, 'ninety-five thousand one hundred sixty-four'); INSERT INTO t1 VALUES(5361, 21307, 'twenty-one thousand three hundred seven'); INSERT INTO t1 VALUES(5362, 35743, 'thirty-five thousand seven hundred forty-three'); INSERT INTO t1 VALUES(5363, 45921, 'forty-five thousand nine hundred twenty-one'); INSERT INTO t1 VALUES(5364, 38737, 'thirty-eight thousand seven hundred thirty-seven'); INSERT INTO t1 VALUES(5365, 20446, 'twenty thousand four hundred forty-six'); INSERT INTO t1 VALUES(5366, 19163, 'nineteen thousand one hundred sixty-three'); INSERT INTO t1 VALUES(5367, 11558, 'eleven thousand five hundred fifty-eight'); INSERT INTO t1 VALUES(5368, 69518, 'sixty-nine thousand five hundred eighteen'); INSERT INTO t1 VALUES(5369, 94315, 'ninety-four thousand three hundred fifteen'); INSERT INTO t1 VALUES(5370, 70216, 'seventy thousand two hundred sixteen'); INSERT INTO t1 VALUES(5371, 41896, 'forty-one thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(5372, 4615, 'four thousand six hundred fifteen'); INSERT INTO t1 VALUES(5373, 72540, 'seventy-two thousand five hundred forty'); INSERT INTO t1 VALUES(5374, 29464, 'twenty-nine thousand four hundred sixty-four'); INSERT INTO t1 VALUES(5375, 99238, 'ninety-nine thousand two hundred thirty-eight'); INSERT INTO t1 VALUES(5376, 60681, 'sixty thousand six hundred eighty-one'); INSERT INTO t1 VALUES(5377, 28034, 'twenty-eight thousand thirty-four'); INSERT INTO t1 VALUES(5378, 73955, 'seventy-three thousand nine hundred fifty-five'); INSERT INTO t1 VALUES(5379, 88061, 'eighty-eight thousand sixty-one'); INSERT INTO t1 VALUES(5380, 7109, 'seven thousand one hundred nine'); INSERT INTO t1 VALUES(5381, 21191, 'twenty-one thousand one hundred ninety-one'); INSERT INTO t1 VALUES(5382, 3771, 'three thousand seven hundred seventy-one'); INSERT INTO t1 VALUES(5383, 59023, 'fifty-nine thousand twenty-three'); INSERT INTO t1 VALUES(5384, 87643, 'eighty-seven thousand six hundred forty-three'); INSERT INTO t1 VALUES(5385, 52087, 'fifty-two thousand eighty-seven'); INSERT INTO t1 VALUES(5386, 98301, 'ninety-eight thousand three hundred one'); INSERT INTO t1 VALUES(5387, 55786, 'fifty-five thousand seven hundred eighty-six'); INSERT INTO t1 VALUES(5388, 43939, 'forty-three thousand nine hundred thirty-nine'); INSERT INTO t1 VALUES(5389, 60657, 'sixty thousand six hundred fifty-seven'); INSERT INTO t1 VALUES(5390, 91684, 'ninety-one thousand six hundred eighty-four'); INSERT INTO t1 VALUES(5391, 69887, 'sixty-nine thousand eight hundred eighty-seven'); INSERT INTO t1 VALUES(5392, 48410, 'forty-eight thousand four hundred ten'); INSERT INTO t1 VALUES(5393, 90888, 'ninety thousand eight hundred eighty-eight'); INSERT INTO t1 VALUES(5394, 81541, 'eighty-one thousand five hundred forty-one'); INSERT INTO t1 VALUES(5395, 98466, 'ninety-eight thousand four hundred sixty-six'); INSERT INTO t1 VALUES(5396, 70817, 'seventy thousand eight hundred seventeen'); INSERT INTO t1 VALUES(5397, 97778, 'ninety-seven thousand seven hundred seventy-eight'); INSERT INTO t1 VALUES(5398, 45738, 'forty-five thousand seven hundred thirty-eight'); INSERT INTO t1 VALUES(5399, 49340, 'forty-nine thousand three hundred forty'); INSERT INTO t1 VALUES(5400, 32693, 'thirty-two thousand six hundred ninety-three'); INSERT INTO t1 VALUES(5401, 82151, 'eighty-two thousand one hundred fifty-one'); INSERT INTO t1 VALUES(5402, 14495, 'fourteen thousand four hundred ninety-five'); INSERT INTO t1 VALUES(5403, 15433, 'fifteen thousand four hundred thirty-three'); INSERT INTO t1 VALUES(5404, 22016, 'twenty-two thousand sixteen'); INSERT INTO t1 VALUES(5405, 97753, 'ninety-seven thousand seven hundred fifty-three'); INSERT INTO t1 VALUES(5406, 49434, 'forty-nine thousand four hundred thirty-four'); INSERT INTO t1 VALUES(5407, 17703, 'seventeen thousand seven hundred three'); INSERT INTO t1 VALUES(5408, 46359, 'forty-six thousand three hundred fifty-nine'); INSERT INTO t1 VALUES(5409, 74868, 'seventy-four thousand eight hundred sixty-eight'); INSERT INTO t1 VALUES(5410, 69575, 'sixty-nine thousand five hundred seventy-five'); INSERT INTO t1 VALUES(5411, 52337, 'fifty-two thousand three hundred thirty-seven'); INSERT INTO t1 VALUES(5412, 21467, 'twenty-one thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(5413, 62892, 'sixty-two thousand eight hundred ninety-two'); INSERT INTO t1 VALUES(5414, 91107, 'ninety-one thousand one hundred seven'); INSERT INTO t1 VALUES(5415, 14440, 'fourteen thousand four hundred forty'); INSERT INTO t1 VALUES(5416, 71356, 'seventy-one thousand three hundred fifty-six'); INSERT INTO t1 VALUES(5417, 51475, 'fifty-one thousand four hundred seventy-five'); INSERT INTO t1 VALUES(5418, 11863, 'eleven thousand eight hundred sixty-three'); INSERT INTO t1 VALUES(5419, 66029, 'sixty-six thousand twenty-nine'); INSERT INTO t1 VALUES(5420, 42354, 'forty-two thousand three hundred fifty-four'); INSERT INTO t1 VALUES(5421, 78716, 'seventy-eight thousand seven hundred sixteen'); INSERT INTO t1 VALUES(5422, 35345, 'thirty-five thousand three hundred forty-five'); INSERT INTO t1 VALUES(5423, 37015, 'thirty-seven thousand fifteen'); INSERT INTO t1 VALUES(5424, 16755, 'sixteen thousand seven hundred fifty-five'); INSERT INTO t1 VALUES(5425, 30783, 'thirty thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(5426, 41601, 'forty-one thousand six hundred one'); INSERT INTO t1 VALUES(5427, 11415, 'eleven thousand four hundred fifteen'); INSERT INTO t1 VALUES(5428, 78800, 'seventy-eight thousand eight hundred'); INSERT INTO t1 VALUES(5429, 60440, 'sixty thousand four hundred forty'); INSERT INTO t1 VALUES(5430, 84845, 'eighty-four thousand eight hundred forty-five'); INSERT INTO t1 VALUES(5431, 74931, 'seventy-four thousand nine hundred thirty-one'); INSERT INTO t1 VALUES(5432, 40451, 'forty thousand four hundred fifty-one'); INSERT INTO t1 VALUES(5433, 71845, 'seventy-one thousand eight hundred forty-five'); INSERT INTO t1 VALUES(5434, 205, 'two hundred five'); INSERT INTO t1 VALUES(5435, 74773, 'seventy-four thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(5436, 19866, 'nineteen thousand eight hundred sixty-six'); INSERT INTO t1 VALUES(5437, 78785, 'seventy-eight thousand seven hundred eighty-five'); INSERT INTO t1 VALUES(5438, 54561, 'fifty-four thousand five hundred sixty-one'); INSERT INTO t1 VALUES(5439, 6605, 'six thousand six hundred five'); INSERT INTO t1 VALUES(5440, 2759, 'two thousand seven hundred fifty-nine'); INSERT INTO t1 VALUES(5441, 81216, 'eighty-one thousand two hundred sixteen'); INSERT INTO t1 VALUES(5442, 36985, 'thirty-six thousand nine hundred eighty-five'); INSERT INTO t1 VALUES(5443, 88923, 'eighty-eight thousand nine hundred twenty-three'); INSERT INTO t1 VALUES(5444, 42549, 'forty-two thousand five hundred forty-nine'); INSERT INTO t1 VALUES(5445, 85077, 'eighty-five thousand seventy-seven'); INSERT INTO t1 VALUES(5446, 18111, 'eighteen thousand one hundred eleven'); INSERT INTO t1 VALUES(5447, 74463, 'seventy-four thousand four hundred sixty-three'); INSERT INTO t1 VALUES(5448, 31752, 'thirty-one thousand seven hundred fifty-two'); INSERT INTO t1 VALUES(5449, 18366, 'eighteen thousand three hundred sixty-six'); INSERT INTO t1 VALUES(5450, 38472, 'thirty-eight thousand four hundred seventy-two'); INSERT INTO t1 VALUES(5451, 29625, 'twenty-nine thousand six hundred twenty-five'); INSERT INTO t1 VALUES(5452, 41308, 'forty-one thousand three hundred eight'); INSERT INTO t1 VALUES(5453, 2162, 'two thousand one hundred sixty-two'); INSERT INTO t1 VALUES(5454, 4085, 'four thousand eighty-five'); INSERT INTO t1 VALUES(5455, 262, 'two hundred sixty-two'); INSERT INTO t1 VALUES(5456, 10431, 'ten thousand four hundred thirty-one'); INSERT INTO t1 VALUES(5457, 43551, 'forty-three thousand five hundred fifty-one'); INSERT INTO t1 VALUES(5458, 17731, 'seventeen thousand seven hundred thirty-one'); INSERT INTO t1 VALUES(5459, 39632, 'thirty-nine thousand six hundred thirty-two'); INSERT INTO t1 VALUES(5460, 22502, 'twenty-two thousand five hundred two'); INSERT INTO t1 VALUES(5461, 66542, 'sixty-six thousand five hundred forty-two'); INSERT INTO t1 VALUES(5462, 80545, 'eighty thousand five hundred forty-five'); INSERT INTO t1 VALUES(5463, 9167, 'nine thousand one hundred sixty-seven'); INSERT INTO t1 VALUES(5464, 55918, 'fifty-five thousand nine hundred eighteen'); INSERT INTO t1 VALUES(5465, 42421, 'forty-two thousand four hundred twenty-one'); INSERT INTO t1 VALUES(5466, 20843, 'twenty thousand eight hundred forty-three'); INSERT INTO t1 VALUES(5467, 38356, 'thirty-eight thousand three hundred fifty-six'); INSERT INTO t1 VALUES(5468, 82527, 'eighty-two thousand five hundred twenty-seven'); INSERT INTO t1 VALUES(5469, 2550, 'two thousand five hundred fifty'); INSERT INTO t1 VALUES(5470, 48739, 'forty-eight thousand seven hundred thirty-nine'); INSERT INTO t1 VALUES(5471, 3237, 'three thousand two hundred thirty-seven'); INSERT INTO t1 VALUES(5472, 18202, 'eighteen thousand two hundred two'); INSERT INTO t1 VALUES(5473, 94318, 'ninety-four thousand three hundred eighteen'); INSERT INTO t1 VALUES(5474, 96206, 'ninety-six thousand two hundred six'); INSERT INTO t1 VALUES(5475, 45664, 'forty-five thousand six hundred sixty-four'); INSERT INTO t1 VALUES(5476, 11775, 'eleven thousand seven hundred seventy-five'); INSERT INTO t1 VALUES(5477, 513, 'five hundred thirteen'); INSERT INTO t1 VALUES(5478, 6587, 'six thousand five hundred eighty-seven'); INSERT INTO t1 VALUES(5479, 26273, 'twenty-six thousand two hundred seventy-three'); INSERT INTO t1 VALUES(5480, 73718, 'seventy-three thousand seven hundred eighteen'); INSERT INTO t1 VALUES(5481, 44291, 'forty-four thousand two hundred ninety-one'); INSERT INTO t1 VALUES(5482, 8929, 'eight thousand nine hundred twenty-nine'); INSERT INTO t1 VALUES(5483, 34821, 'thirty-four thousand eight hundred twenty-one'); INSERT INTO t1 VALUES(5484, 64340, 'sixty-four thousand three hundred forty'); INSERT INTO t1 VALUES(5485, 27786, 'twenty-seven thousand seven hundred eighty-six'); INSERT INTO t1 VALUES(5486, 30530, 'thirty thousand five hundred thirty'); INSERT INTO t1 VALUES(5487, 98214, 'ninety-eight thousand two hundred fourteen'); INSERT INTO t1 VALUES(5488, 91978, 'ninety-one thousand nine hundred seventy-eight'); INSERT INTO t1 VALUES(5489, 43994, 'forty-three thousand nine hundred ninety-four'); INSERT INTO t1 VALUES(5490, 34644, 'thirty-four thousand six hundred forty-four'); INSERT INTO t1 VALUES(5491, 60642, 'sixty thousand six hundred forty-two'); INSERT INTO t1 VALUES(5492, 66027, 'sixty-six thousand twenty-seven'); INSERT INTO t1 VALUES(5493, 47118, 'forty-seven thousand one hundred eighteen'); INSERT INTO t1 VALUES(5494, 24353, 'twenty-four thousand three hundred fifty-three'); INSERT INTO t1 VALUES(5495, 58211, 'fifty-eight thousand two hundred eleven'); INSERT INTO t1 VALUES(5496, 21369, 'twenty-one thousand three hundred sixty-nine'); INSERT INTO t1 VALUES(5497, 98622, 'ninety-eight thousand six hundred twenty-two'); INSERT INTO t1 VALUES(5498, 77506, 'seventy-seven thousand five hundred six'); INSERT INTO t1 VALUES(5499, 70878, 'seventy thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(5500, 85655, 'eighty-five thousand six hundred fifty-five'); INSERT INTO t1 VALUES(5501, 83787, 'eighty-three thousand seven hundred eighty-seven'); INSERT INTO t1 VALUES(5502, 41741, 'forty-one thousand seven hundred forty-one'); INSERT INTO t1 VALUES(5503, 20399, 'twenty thousand three hundred ninety-nine'); INSERT INTO t1 VALUES(5504, 15618, 'fifteen thousand six hundred eighteen'); INSERT INTO t1 VALUES(5505, 17350, 'seventeen thousand three hundred fifty'); INSERT INTO t1 VALUES(5506, 64324, 'sixty-four thousand three hundred twenty-four'); INSERT INTO t1 VALUES(5507, 50256, 'fifty thousand two hundred fifty-six'); INSERT INTO t1 VALUES(5508, 89430, 'eighty-nine thousand four hundred thirty'); INSERT INTO t1 VALUES(5509, 27599, 'twenty-seven thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(5510, 71573, 'seventy-one thousand five hundred seventy-three'); INSERT INTO t1 VALUES(5511, 74777, 'seventy-four thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(5512, 38648, 'thirty-eight thousand six hundred forty-eight'); INSERT INTO t1 VALUES(5513, 90731, 'ninety thousand seven hundred thirty-one'); INSERT INTO t1 VALUES(5514, 53076, 'fifty-three thousand seventy-six'); INSERT INTO t1 VALUES(5515, 17177, 'seventeen thousand one hundred seventy-seven'); INSERT INTO t1 VALUES(5516, 96864, 'ninety-six thousand eight hundred sixty-four'); INSERT INTO t1 VALUES(5517, 49187, 'forty-nine thousand one hundred eighty-seven'); INSERT INTO t1 VALUES(5518, 68902, 'sixty-eight thousand nine hundred two'); INSERT INTO t1 VALUES(5519, 40078, 'forty thousand seventy-eight'); INSERT INTO t1 VALUES(5520, 72986, 'seventy-two thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(5521, 80415, 'eighty thousand four hundred fifteen'); INSERT INTO t1 VALUES(5522, 3479, 'three thousand four hundred seventy-nine'); INSERT INTO t1 VALUES(5523, 70323, 'seventy thousand three hundred twenty-three'); INSERT INTO t1 VALUES(5524, 85951, 'eighty-five thousand nine hundred fifty-one'); INSERT INTO t1 VALUES(5525, 43709, 'forty-three thousand seven hundred nine'); INSERT INTO t1 VALUES(5526, 31804, 'thirty-one thousand eight hundred four'); INSERT INTO t1 VALUES(5527, 39015, 'thirty-nine thousand fifteen'); INSERT INTO t1 VALUES(5528, 28670, 'twenty-eight thousand six hundred seventy'); INSERT INTO t1 VALUES(5529, 73435, 'seventy-three thousand four hundred thirty-five'); INSERT INTO t1 VALUES(5530, 88947, 'eighty-eight thousand nine hundred forty-seven'); INSERT INTO t1 VALUES(5531, 52100, 'fifty-two thousand one hundred'); INSERT INTO t1 VALUES(5532, 76249, 'seventy-six thousand two hundred forty-nine'); INSERT INTO t1 VALUES(5533, 93671, 'ninety-three thousand six hundred seventy-one'); INSERT INTO t1 VALUES(5534, 49442, 'forty-nine thousand four hundred forty-two'); INSERT INTO t1 VALUES(5535, 95159, 'ninety-five thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(5536, 84184, 'eighty-four thousand one hundred eighty-four'); INSERT INTO t1 VALUES(5537, 98817, 'ninety-eight thousand eight hundred seventeen'); INSERT INTO t1 VALUES(5538, 51111, 'fifty-one thousand one hundred eleven'); INSERT INTO t1 VALUES(5539, 79618, 'seventy-nine thousand six hundred eighteen'); INSERT INTO t1 VALUES(5540, 64488, 'sixty-four thousand four hundred eighty-eight'); INSERT INTO t1 VALUES(5541, 57074, 'fifty-seven thousand seventy-four'); INSERT INTO t1 VALUES(5542, 21645, 'twenty-one thousand six hundred forty-five'); INSERT INTO t1 VALUES(5543, 64044, 'sixty-four thousand forty-four'); INSERT INTO t1 VALUES(5544, 8971, 'eight thousand nine hundred seventy-one'); INSERT INTO t1 VALUES(5545, 29467, 'twenty-nine thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(5546, 29207, 'twenty-nine thousand two hundred seven'); INSERT INTO t1 VALUES(5547, 25192, 'twenty-five thousand one hundred ninety-two'); INSERT INTO t1 VALUES(5548, 8007, 'eight thousand seven'); INSERT INTO t1 VALUES(5549, 42535, 'forty-two thousand five hundred thirty-five'); INSERT INTO t1 VALUES(5550, 78341, 'seventy-eight thousand three hundred forty-one'); INSERT INTO t1 VALUES(5551, 53104, 'fifty-three thousand one hundred four'); INSERT INTO t1 VALUES(5552, 68496, 'sixty-eight thousand four hundred ninety-six'); INSERT INTO t1 VALUES(5553, 64745, 'sixty-four thousand seven hundred forty-five'); INSERT INTO t1 VALUES(5554, 4371, 'four thousand three hundred seventy-one'); INSERT INTO t1 VALUES(5555, 57023, 'fifty-seven thousand twenty-three'); INSERT INTO t1 VALUES(5556, 91674, 'ninety-one thousand six hundred seventy-four'); INSERT INTO t1 VALUES(5557, 78209, 'seventy-eight thousand two hundred nine'); INSERT INTO t1 VALUES(5558, 97254, 'ninety-seven thousand two hundred fifty-four'); INSERT INTO t1 VALUES(5559, 52713, 'fifty-two thousand seven hundred thirteen'); INSERT INTO t1 VALUES(5560, 68183, 'sixty-eight thousand one hundred eighty-three'); INSERT INTO t1 VALUES(5561, 81237, 'eighty-one thousand two hundred thirty-seven'); INSERT INTO t1 VALUES(5562, 16998, 'sixteen thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(5563, 14016, 'fourteen thousand sixteen'); INSERT INTO t1 VALUES(5564, 35912, 'thirty-five thousand nine hundred twelve'); INSERT INTO t1 VALUES(5565, 56794, 'fifty-six thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(5566, 98410, 'ninety-eight thousand four hundred ten'); INSERT INTO t1 VALUES(5567, 8257, 'eight thousand two hundred fifty-seven'); INSERT INTO t1 VALUES(5568, 20988, 'twenty thousand nine hundred eighty-eight'); INSERT INTO t1 VALUES(5569, 74009, 'seventy-four thousand nine'); INSERT INTO t1 VALUES(5570, 92863, 'ninety-two thousand eight hundred sixty-three'); INSERT INTO t1 VALUES(5571, 1337, 'one thousand three hundred thirty-seven'); INSERT INTO t1 VALUES(5572, 76648, 'seventy-six thousand six hundred forty-eight'); INSERT INTO t1 VALUES(5573, 4084, 'four thousand eighty-four'); INSERT INTO t1 VALUES(5574, 27799, 'twenty-seven thousand seven hundred ninety-nine'); INSERT INTO t1 VALUES(5575, 99326, 'ninety-nine thousand three hundred twenty-six'); INSERT INTO t1 VALUES(5576, 68139, 'sixty-eight thousand one hundred thirty-nine'); INSERT INTO t1 VALUES(5577, 75563, 'seventy-five thousand five hundred sixty-three'); INSERT INTO t1 VALUES(5578, 31575, 'thirty-one thousand five hundred seventy-five'); INSERT INTO t1 VALUES(5579, 22952, 'twenty-two thousand nine hundred fifty-two'); INSERT INTO t1 VALUES(5580, 5128, 'five thousand one hundred twenty-eight'); INSERT INTO t1 VALUES(5581, 45587, 'forty-five thousand five hundred eighty-seven'); INSERT INTO t1 VALUES(5582, 94159, 'ninety-four thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(5583, 77072, 'seventy-seven thousand seventy-two'); INSERT INTO t1 VALUES(5584, 56548, 'fifty-six thousand five hundred forty-eight'); INSERT INTO t1 VALUES(5585, 76585, 'seventy-six thousand five hundred eighty-five'); INSERT INTO t1 VALUES(5586, 72619, 'seventy-two thousand six hundred nineteen'); INSERT INTO t1 VALUES(5587, 40990, 'forty thousand nine hundred ninety'); INSERT INTO t1 VALUES(5588, 97437, 'ninety-seven thousand four hundred thirty-seven'); INSERT INTO t1 VALUES(5589, 66076, 'sixty-six thousand seventy-six'); INSERT INTO t1 VALUES(5590, 18241, 'eighteen thousand two hundred forty-one'); INSERT INTO t1 VALUES(5591, 33531, 'thirty-three thousand five hundred thirty-one'); INSERT INTO t1 VALUES(5592, 88429, 'eighty-eight thousand four hundred twenty-nine'); INSERT INTO t1 VALUES(5593, 66903, 'sixty-six thousand nine hundred three'); INSERT INTO t1 VALUES(5594, 86467, 'eighty-six thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(5595, 23137, 'twenty-three thousand one hundred thirty-seven'); INSERT INTO t1 VALUES(5596, 95197, 'ninety-five thousand one hundred ninety-seven'); INSERT INTO t1 VALUES(5597, 68822, 'sixty-eight thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(5598, 32693, 'thirty-two thousand six hundred ninety-three'); INSERT INTO t1 VALUES(5599, 26893, 'twenty-six thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(5600, 10034, 'ten thousand thirty-four'); INSERT INTO t1 VALUES(5601, 98230, 'ninety-eight thousand two hundred thirty'); INSERT INTO t1 VALUES(5602, 64757, 'sixty-four thousand seven hundred fifty-seven'); INSERT INTO t1 VALUES(5603, 26147, 'twenty-six thousand one hundred forty-seven'); INSERT INTO t1 VALUES(5604, 90889, 'ninety thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(5605, 80579, 'eighty thousand five hundred seventy-nine'); INSERT INTO t1 VALUES(5606, 41960, 'forty-one thousand nine hundred sixty'); INSERT INTO t1 VALUES(5607, 73136, 'seventy-three thousand one hundred thirty-six'); INSERT INTO t1 VALUES(5608, 95952, 'ninety-five thousand nine hundred fifty-two'); INSERT INTO t1 VALUES(5609, 76791, 'seventy-six thousand seven hundred ninety-one'); INSERT INTO t1 VALUES(5610, 18989, 'eighteen thousand nine hundred eighty-nine'); INSERT INTO t1 VALUES(5611, 94904, 'ninety-four thousand nine hundred four'); INSERT INTO t1 VALUES(5612, 62297, 'sixty-two thousand two hundred ninety-seven'); INSERT INTO t1 VALUES(5613, 30490, 'thirty thousand four hundred ninety'); INSERT INTO t1 VALUES(5614, 30618, 'thirty thousand six hundred eighteen'); INSERT INTO t1 VALUES(5615, 68714, 'sixty-eight thousand seven hundred fourteen'); INSERT INTO t1 VALUES(5616, 41986, 'forty-one thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(5617, 99329, 'ninety-nine thousand three hundred twenty-nine'); INSERT INTO t1 VALUES(5618, 98580, 'ninety-eight thousand five hundred eighty'); INSERT INTO t1 VALUES(5619, 50725, 'fifty thousand seven hundred twenty-five'); INSERT INTO t1 VALUES(5620, 34862, 'thirty-four thousand eight hundred sixty-two'); INSERT INTO t1 VALUES(5621, 17047, 'seventeen thousand forty-seven'); INSERT INTO t1 VALUES(5622, 84050, 'eighty-four thousand fifty'); INSERT INTO t1 VALUES(5623, 53880, 'fifty-three thousand eight hundred eighty'); INSERT INTO t1 VALUES(5624, 89549, 'eighty-nine thousand five hundred forty-nine'); INSERT INTO t1 VALUES(5625, 52214, 'fifty-two thousand two hundred fourteen'); INSERT INTO t1 VALUES(5626, 32066, 'thirty-two thousand sixty-six'); INSERT INTO t1 VALUES(5627, 60392, 'sixty thousand three hundred ninety-two'); INSERT INTO t1 VALUES(5628, 35454, 'thirty-five thousand four hundred fifty-four'); INSERT INTO t1 VALUES(5629, 58568, 'fifty-eight thousand five hundred sixty-eight'); INSERT INTO t1 VALUES(5630, 44061, 'forty-four thousand sixty-one'); INSERT INTO t1 VALUES(5631, 17614, 'seventeen thousand six hundred fourteen'); INSERT INTO t1 VALUES(5632, 48854, 'forty-eight thousand eight hundred fifty-four'); INSERT INTO t1 VALUES(5633, 45106, 'forty-five thousand one hundred six'); INSERT INTO t1 VALUES(5634, 93491, 'ninety-three thousand four hundred ninety-one'); INSERT INTO t1 VALUES(5635, 98583, 'ninety-eight thousand five hundred eighty-three'); INSERT INTO t1 VALUES(5636, 92492, 'ninety-two thousand four hundred ninety-two'); INSERT INTO t1 VALUES(5637, 70878, 'seventy thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(5638, 47213, 'forty-seven thousand two hundred thirteen'); INSERT INTO t1 VALUES(5639, 9911, 'nine thousand nine hundred eleven'); INSERT INTO t1 VALUES(5640, 19737, 'nineteen thousand seven hundred thirty-seven'); INSERT INTO t1 VALUES(5641, 13554, 'thirteen thousand five hundred fifty-four'); INSERT INTO t1 VALUES(5642, 92538, 'ninety-two thousand five hundred thirty-eight'); INSERT INTO t1 VALUES(5643, 74524, 'seventy-four thousand five hundred twenty-four'); INSERT INTO t1 VALUES(5644, 5987, 'five thousand nine hundred eighty-seven'); INSERT INTO t1 VALUES(5645, 80587, 'eighty thousand five hundred eighty-seven'); INSERT INTO t1 VALUES(5646, 6999, 'six thousand nine hundred ninety-nine'); INSERT INTO t1 VALUES(5647, 80190, 'eighty thousand one hundred ninety'); INSERT INTO t1 VALUES(5648, 53861, 'fifty-three thousand eight hundred sixty-one'); INSERT INTO t1 VALUES(5649, 19438, 'nineteen thousand four hundred thirty-eight'); INSERT INTO t1 VALUES(5650, 92963, 'ninety-two thousand nine hundred sixty-three'); INSERT INTO t1 VALUES(5651, 76961, 'seventy-six thousand nine hundred sixty-one'); INSERT INTO t1 VALUES(5652, 72169, 'seventy-two thousand one hundred sixty-nine'); INSERT INTO t1 VALUES(5653, 87552, 'eighty-seven thousand five hundred fifty-two'); INSERT INTO t1 VALUES(5654, 21967, 'twenty-one thousand nine hundred sixty-seven'); INSERT INTO t1 VALUES(5655, 85454, 'eighty-five thousand four hundred fifty-four'); INSERT INTO t1 VALUES(5656, 73888, 'seventy-three thousand eight hundred eighty-eight'); INSERT INTO t1 VALUES(5657, 31784, 'thirty-one thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(5658, 17233, 'seventeen thousand two hundred thirty-three'); INSERT INTO t1 VALUES(5659, 92596, 'ninety-two thousand five hundred ninety-six'); INSERT INTO t1 VALUES(5660, 94905, 'ninety-four thousand nine hundred five'); INSERT INTO t1 VALUES(5661, 87031, 'eighty-seven thousand thirty-one'); INSERT INTO t1 VALUES(5662, 79555, 'seventy-nine thousand five hundred fifty-five'); INSERT INTO t1 VALUES(5663, 36560, 'thirty-six thousand five hundred sixty'); INSERT INTO t1 VALUES(5664, 72343, 'seventy-two thousand three hundred forty-three'); INSERT INTO t1 VALUES(5665, 71650, 'seventy-one thousand six hundred fifty'); INSERT INTO t1 VALUES(5666, 49455, 'forty-nine thousand four hundred fifty-five'); INSERT INTO t1 VALUES(5667, 87902, 'eighty-seven thousand nine hundred two'); INSERT INTO t1 VALUES(5668, 27882, 'twenty-seven thousand eight hundred eighty-two'); INSERT INTO t1 VALUES(5669, 4541, 'four thousand five hundred forty-one'); INSERT INTO t1 VALUES(5670, 75580, 'seventy-five thousand five hundred eighty'); INSERT INTO t1 VALUES(5671, 17774, 'seventeen thousand seven hundred seventy-four'); INSERT INTO t1 VALUES(5672, 69836, 'sixty-nine thousand eight hundred thirty-six'); INSERT INTO t1 VALUES(5673, 75315, 'seventy-five thousand three hundred fifteen'); INSERT INTO t1 VALUES(5674, 16218, 'sixteen thousand two hundred eighteen'); INSERT INTO t1 VALUES(5675, 47559, 'forty-seven thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(5676, 94727, 'ninety-four thousand seven hundred twenty-seven'); INSERT INTO t1 VALUES(5677, 37362, 'thirty-seven thousand three hundred sixty-two'); INSERT INTO t1 VALUES(5678, 60104, 'sixty thousand one hundred four'); INSERT INTO t1 VALUES(5679, 92402, 'ninety-two thousand four hundred two'); INSERT INTO t1 VALUES(5680, 6270, 'six thousand two hundred seventy'); INSERT INTO t1 VALUES(5681, 34485, 'thirty-four thousand four hundred eighty-five'); INSERT INTO t1 VALUES(5682, 92314, 'ninety-two thousand three hundred fourteen'); INSERT INTO t1 VALUES(5683, 91176, 'ninety-one thousand one hundred seventy-six'); INSERT INTO t1 VALUES(5684, 67405, 'sixty-seven thousand four hundred five'); INSERT INTO t1 VALUES(5685, 14482, 'fourteen thousand four hundred eighty-two'); INSERT INTO t1 VALUES(5686, 83107, 'eighty-three thousand one hundred seven'); INSERT INTO t1 VALUES(5687, 38007, 'thirty-eight thousand seven'); INSERT INTO t1 VALUES(5688, 98783, 'ninety-eight thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(5689, 67657, 'sixty-seven thousand six hundred fifty-seven'); INSERT INTO t1 VALUES(5690, 74801, 'seventy-four thousand eight hundred one'); INSERT INTO t1 VALUES(5691, 43063, 'forty-three thousand sixty-three'); INSERT INTO t1 VALUES(5692, 11538, 'eleven thousand five hundred thirty-eight'); INSERT INTO t1 VALUES(5693, 86556, 'eighty-six thousand five hundred fifty-six'); INSERT INTO t1 VALUES(5694, 65510, 'sixty-five thousand five hundred ten'); INSERT INTO t1 VALUES(5695, 96911, 'ninety-six thousand nine hundred eleven'); INSERT INTO t1 VALUES(5696, 27795, 'twenty-seven thousand seven hundred ninety-five'); INSERT INTO t1 VALUES(5697, 7042, 'seven thousand forty-two'); INSERT INTO t1 VALUES(5698, 99822, 'ninety-nine thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(5699, 87012, 'eighty-seven thousand twelve'); INSERT INTO t1 VALUES(5700, 45290, 'forty-five thousand two hundred ninety'); INSERT INTO t1 VALUES(5701, 83006, 'eighty-three thousand six'); INSERT INTO t1 VALUES(5702, 10222, 'ten thousand two hundred twenty-two'); INSERT INTO t1 VALUES(5703, 6442, 'six thousand four hundred forty-two'); INSERT INTO t1 VALUES(5704, 81649, 'eighty-one thousand six hundred forty-nine'); INSERT INTO t1 VALUES(5705, 57814, 'fifty-seven thousand eight hundred fourteen'); INSERT INTO t1 VALUES(5706, 53236, 'fifty-three thousand two hundred thirty-six'); INSERT INTO t1 VALUES(5707, 66815, 'sixty-six thousand eight hundred fifteen'); INSERT INTO t1 VALUES(5708, 88686, 'eighty-eight thousand six hundred eighty-six'); INSERT INTO t1 VALUES(5709, 42752, 'forty-two thousand seven hundred fifty-two'); INSERT INTO t1 VALUES(5710, 9113, 'nine thousand one hundred thirteen'); INSERT INTO t1 VALUES(5711, 59997, 'fifty-nine thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(5712, 33651, 'thirty-three thousand six hundred fifty-one'); INSERT INTO t1 VALUES(5713, 15618, 'fifteen thousand six hundred eighteen'); INSERT INTO t1 VALUES(5714, 31107, 'thirty-one thousand one hundred seven'); INSERT INTO t1 VALUES(5715, 79690, 'seventy-nine thousand six hundred ninety'); INSERT INTO t1 VALUES(5716, 96344, 'ninety-six thousand three hundred forty-four'); INSERT INTO t1 VALUES(5717, 99978, 'ninety-nine thousand nine hundred seventy-eight'); INSERT INTO t1 VALUES(5718, 37548, 'thirty-seven thousand five hundred forty-eight'); INSERT INTO t1 VALUES(5719, 60506, 'sixty thousand five hundred six'); INSERT INTO t1 VALUES(5720, 58542, 'fifty-eight thousand five hundred forty-two'); INSERT INTO t1 VALUES(5721, 87064, 'eighty-seven thousand sixty-four'); INSERT INTO t1 VALUES(5722, 46094, 'forty-six thousand ninety-four'); INSERT INTO t1 VALUES(5723, 40624, 'forty thousand six hundred twenty-four'); INSERT INTO t1 VALUES(5724, 28041, 'twenty-eight thousand forty-one'); INSERT INTO t1 VALUES(5725, 42748, 'forty-two thousand seven hundred forty-eight'); INSERT INTO t1 VALUES(5726, 15974, 'fifteen thousand nine hundred seventy-four'); INSERT INTO t1 VALUES(5727, 39812, 'thirty-nine thousand eight hundred twelve'); INSERT INTO t1 VALUES(5728, 32233, 'thirty-two thousand two hundred thirty-three'); INSERT INTO t1 VALUES(5729, 83463, 'eighty-three thousand four hundred sixty-three'); INSERT INTO t1 VALUES(5730, 22463, 'twenty-two thousand four hundred sixty-three'); INSERT INTO t1 VALUES(5731, 71074, 'seventy-one thousand seventy-four'); INSERT INTO t1 VALUES(5732, 40039, 'forty thousand thirty-nine'); INSERT INTO t1 VALUES(5733, 92469, 'ninety-two thousand four hundred sixty-nine'); INSERT INTO t1 VALUES(5734, 58535, 'fifty-eight thousand five hundred thirty-five'); INSERT INTO t1 VALUES(5735, 2928, 'two thousand nine hundred twenty-eight'); INSERT INTO t1 VALUES(5736, 94781, 'ninety-four thousand seven hundred eighty-one'); INSERT INTO t1 VALUES(5737, 32663, 'thirty-two thousand six hundred sixty-three'); INSERT INTO t1 VALUES(5738, 81166, 'eighty-one thousand one hundred sixty-six'); INSERT INTO t1 VALUES(5739, 1094, 'one thousand ninety-four'); INSERT INTO t1 VALUES(5740, 58086, 'fifty-eight thousand eighty-six'); INSERT INTO t1 VALUES(5741, 3272, 'three thousand two hundred seventy-two'); INSERT INTO t1 VALUES(5742, 8343, 'eight thousand three hundred forty-three'); INSERT INTO t1 VALUES(5743, 85473, 'eighty-five thousand four hundred seventy-three'); INSERT INTO t1 VALUES(5744, 68499, 'sixty-eight thousand four hundred ninety-nine'); INSERT INTO t1 VALUES(5745, 43043, 'forty-three thousand forty-three'); INSERT INTO t1 VALUES(5746, 28723, 'twenty-eight thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(5747, 12120, 'twelve thousand one hundred twenty'); INSERT INTO t1 VALUES(5748, 8850, 'eight thousand eight hundred fifty'); INSERT INTO t1 VALUES(5749, 3675, 'three thousand six hundred seventy-five'); INSERT INTO t1 VALUES(5750, 81481, 'eighty-one thousand four hundred eighty-one'); INSERT INTO t1 VALUES(5751, 85136, 'eighty-five thousand one hundred thirty-six'); INSERT INTO t1 VALUES(5752, 6472, 'six thousand four hundred seventy-two'); INSERT INTO t1 VALUES(5753, 64652, 'sixty-four thousand six hundred fifty-two'); INSERT INTO t1 VALUES(5754, 81159, 'eighty-one thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(5755, 75610, 'seventy-five thousand six hundred ten'); INSERT INTO t1 VALUES(5756, 67401, 'sixty-seven thousand four hundred one'); INSERT INTO t1 VALUES(5757, 69523, 'sixty-nine thousand five hundred twenty-three'); INSERT INTO t1 VALUES(5758, 85736, 'eighty-five thousand seven hundred thirty-six'); INSERT INTO t1 VALUES(5759, 53681, 'fifty-three thousand six hundred eighty-one'); INSERT INTO t1 VALUES(5760, 33289, 'thirty-three thousand two hundred eighty-nine'); INSERT INTO t1 VALUES(5761, 40711, 'forty thousand seven hundred eleven'); INSERT INTO t1 VALUES(5762, 20302, 'twenty thousand three hundred two'); INSERT INTO t1 VALUES(5763, 30482, 'thirty thousand four hundred eighty-two'); INSERT INTO t1 VALUES(5764, 4800, 'four thousand eight hundred'); INSERT INTO t1 VALUES(5765, 81936, 'eighty-one thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(5766, 71653, 'seventy-one thousand six hundred fifty-three'); INSERT INTO t1 VALUES(5767, 30258, 'thirty thousand two hundred fifty-eight'); INSERT INTO t1 VALUES(5768, 85616, 'eighty-five thousand six hundred sixteen'); INSERT INTO t1 VALUES(5769, 44991, 'forty-four thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(5770, 22149, 'twenty-two thousand one hundred forty-nine'); INSERT INTO t1 VALUES(5771, 13754, 'thirteen thousand seven hundred fifty-four'); INSERT INTO t1 VALUES(5772, 42754, 'forty-two thousand seven hundred fifty-four'); INSERT INTO t1 VALUES(5773, 70601, 'seventy thousand six hundred one'); INSERT INTO t1 VALUES(5774, 44493, 'forty-four thousand four hundred ninety-three'); INSERT INTO t1 VALUES(5775, 12271, 'twelve thousand two hundred seventy-one'); INSERT INTO t1 VALUES(5776, 26137, 'twenty-six thousand one hundred thirty-seven'); INSERT INTO t1 VALUES(5777, 63221, 'sixty-three thousand two hundred twenty-one'); INSERT INTO t1 VALUES(5778, 7043, 'seven thousand forty-three'); INSERT INTO t1 VALUES(5779, 83697, 'eighty-three thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(5780, 29932, 'twenty-nine thousand nine hundred thirty-two'); INSERT INTO t1 VALUES(5781, 35298, 'thirty-five thousand two hundred ninety-eight'); INSERT INTO t1 VALUES(5782, 55702, 'fifty-five thousand seven hundred two'); INSERT INTO t1 VALUES(5783, 1258, 'one thousand two hundred fifty-eight'); INSERT INTO t1 VALUES(5784, 11842, 'eleven thousand eight hundred forty-two'); INSERT INTO t1 VALUES(5785, 49140, 'forty-nine thousand one hundred forty'); INSERT INTO t1 VALUES(5786, 25541, 'twenty-five thousand five hundred forty-one'); INSERT INTO t1 VALUES(5787, 27019, 'twenty-seven thousand nineteen'); INSERT INTO t1 VALUES(5788, 14142, 'fourteen thousand one hundred forty-two'); INSERT INTO t1 VALUES(5789, 91385, 'ninety-one thousand three hundred eighty-five'); INSERT INTO t1 VALUES(5790, 3933, 'three thousand nine hundred thirty-three'); INSERT INTO t1 VALUES(5791, 21359, 'twenty-one thousand three hundred fifty-nine'); INSERT INTO t1 VALUES(5792, 53896, 'fifty-three thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(5793, 29044, 'twenty-nine thousand forty-four'); INSERT INTO t1 VALUES(5794, 57830, 'fifty-seven thousand eight hundred thirty'); INSERT INTO t1 VALUES(5795, 18193, 'eighteen thousand one hundred ninety-three'); INSERT INTO t1 VALUES(5796, 65368, 'sixty-five thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(5797, 27648, 'twenty-seven thousand six hundred forty-eight'); INSERT INTO t1 VALUES(5798, 734, 'seven hundred thirty-four'); INSERT INTO t1 VALUES(5799, 20535, 'twenty thousand five hundred thirty-five'); INSERT INTO t1 VALUES(5800, 3805, 'three thousand eight hundred five'); INSERT INTO t1 VALUES(5801, 31448, 'thirty-one thousand four hundred forty-eight'); INSERT INTO t1 VALUES(5802, 88702, 'eighty-eight thousand seven hundred two'); INSERT INTO t1 VALUES(5803, 81491, 'eighty-one thousand four hundred ninety-one'); INSERT INTO t1 VALUES(5804, 46089, 'forty-six thousand eighty-nine'); INSERT INTO t1 VALUES(5805, 33040, 'thirty-three thousand forty'); INSERT INTO t1 VALUES(5806, 94878, 'ninety-four thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(5807, 2521, 'two thousand five hundred twenty-one'); INSERT INTO t1 VALUES(5808, 87685, 'eighty-seven thousand six hundred eighty-five'); INSERT INTO t1 VALUES(5809, 41326, 'forty-one thousand three hundred twenty-six'); INSERT INTO t1 VALUES(5810, 77005, 'seventy-seven thousand five'); INSERT INTO t1 VALUES(5811, 7252, 'seven thousand two hundred fifty-two'); INSERT INTO t1 VALUES(5812, 26851, 'twenty-six thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(5813, 66603, 'sixty-six thousand six hundred three'); INSERT INTO t1 VALUES(5814, 3236, 'three thousand two hundred thirty-six'); INSERT INTO t1 VALUES(5815, 59904, 'fifty-nine thousand nine hundred four'); INSERT INTO t1 VALUES(5816, 96659, 'ninety-six thousand six hundred fifty-nine'); INSERT INTO t1 VALUES(5817, 61576, 'sixty-one thousand five hundred seventy-six'); INSERT INTO t1 VALUES(5818, 2728, 'two thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(5819, 99234, 'ninety-nine thousand two hundred thirty-four'); INSERT INTO t1 VALUES(5820, 61764, 'sixty-one thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(5821, 73233, 'seventy-three thousand two hundred thirty-three'); INSERT INTO t1 VALUES(5822, 81710, 'eighty-one thousand seven hundred ten'); INSERT INTO t1 VALUES(5823, 10605, 'ten thousand six hundred five'); INSERT INTO t1 VALUES(5824, 64995, 'sixty-four thousand nine hundred ninety-five'); INSERT INTO t1 VALUES(5825, 71043, 'seventy-one thousand forty-three'); INSERT INTO t1 VALUES(5826, 64243, 'sixty-four thousand two hundred forty-three'); INSERT INTO t1 VALUES(5827, 34252, 'thirty-four thousand two hundred fifty-two'); INSERT INTO t1 VALUES(5828, 431, 'four hundred thirty-one'); INSERT INTO t1 VALUES(5829, 50226, 'fifty thousand two hundred twenty-six'); INSERT INTO t1 VALUES(5830, 18354, 'eighteen thousand three hundred fifty-four'); INSERT INTO t1 VALUES(5831, 38039, 'thirty-eight thousand thirty-nine'); INSERT INTO t1 VALUES(5832, 92518, 'ninety-two thousand five hundred eighteen'); INSERT INTO t1 VALUES(5833, 39072, 'thirty-nine thousand seventy-two'); INSERT INTO t1 VALUES(5834, 51273, 'fifty-one thousand two hundred seventy-three'); INSERT INTO t1 VALUES(5835, 97456, 'ninety-seven thousand four hundred fifty-six'); INSERT INTO t1 VALUES(5836, 72655, 'seventy-two thousand six hundred fifty-five'); INSERT INTO t1 VALUES(5837, 43573, 'forty-three thousand five hundred seventy-three'); INSERT INTO t1 VALUES(5838, 9227, 'nine thousand two hundred twenty-seven'); INSERT INTO t1 VALUES(5839, 5296, 'five thousand two hundred ninety-six'); INSERT INTO t1 VALUES(5840, 19926, 'nineteen thousand nine hundred twenty-six'); INSERT INTO t1 VALUES(5841, 40602, 'forty thousand six hundred two'); INSERT INTO t1 VALUES(5842, 35750, 'thirty-five thousand seven hundred fifty'); INSERT INTO t1 VALUES(5843, 1254, 'one thousand two hundred fifty-four'); INSERT INTO t1 VALUES(5844, 11105, 'eleven thousand one hundred five'); INSERT INTO t1 VALUES(5845, 84522, 'eighty-four thousand five hundred twenty-two'); INSERT INTO t1 VALUES(5846, 52503, 'fifty-two thousand five hundred three'); INSERT INTO t1 VALUES(5847, 23768, 'twenty-three thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(5848, 44935, 'forty-four thousand nine hundred thirty-five'); INSERT INTO t1 VALUES(5849, 58539, 'fifty-eight thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(5850, 63287, 'sixty-three thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(5851, 82201, 'eighty-two thousand two hundred one'); INSERT INTO t1 VALUES(5852, 43953, 'forty-three thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(5853, 61674, 'sixty-one thousand six hundred seventy-four'); INSERT INTO t1 VALUES(5854, 16824, 'sixteen thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(5855, 90093, 'ninety thousand ninety-three'); INSERT INTO t1 VALUES(5856, 77519, 'seventy-seven thousand five hundred nineteen'); INSERT INTO t1 VALUES(5857, 32366, 'thirty-two thousand three hundred sixty-six'); INSERT INTO t1 VALUES(5858, 40815, 'forty thousand eight hundred fifteen'); INSERT INTO t1 VALUES(5859, 2676, 'two thousand six hundred seventy-six'); INSERT INTO t1 VALUES(5860, 35397, 'thirty-five thousand three hundred ninety-seven'); INSERT INTO t1 VALUES(5861, 27085, 'twenty-seven thousand eighty-five'); INSERT INTO t1 VALUES(5862, 66129, 'sixty-six thousand one hundred twenty-nine'); INSERT INTO t1 VALUES(5863, 25262, 'twenty-five thousand two hundred sixty-two'); INSERT INTO t1 VALUES(5864, 39086, 'thirty-nine thousand eighty-six'); INSERT INTO t1 VALUES(5865, 81046, 'eighty-one thousand forty-six'); INSERT INTO t1 VALUES(5866, 99430, 'ninety-nine thousand four hundred thirty'); INSERT INTO t1 VALUES(5867, 11568, 'eleven thousand five hundred sixty-eight'); INSERT INTO t1 VALUES(5868, 73204, 'seventy-three thousand two hundred four'); INSERT INTO t1 VALUES(5869, 69914, 'sixty-nine thousand nine hundred fourteen'); INSERT INTO t1 VALUES(5870, 69845, 'sixty-nine thousand eight hundred forty-five'); INSERT INTO t1 VALUES(5871, 60839, 'sixty thousand eight hundred thirty-nine'); INSERT INTO t1 VALUES(5872, 28815, 'twenty-eight thousand eight hundred fifteen'); INSERT INTO t1 VALUES(5873, 50053, 'fifty thousand fifty-three'); INSERT INTO t1 VALUES(5874, 30974, 'thirty thousand nine hundred seventy-four'); INSERT INTO t1 VALUES(5875, 62048, 'sixty-two thousand forty-eight'); INSERT INTO t1 VALUES(5876, 95174, 'ninety-five thousand one hundred seventy-four'); INSERT INTO t1 VALUES(5877, 64972, 'sixty-four thousand nine hundred seventy-two'); INSERT INTO t1 VALUES(5878, 31425, 'thirty-one thousand four hundred twenty-five'); INSERT INTO t1 VALUES(5879, 73904, 'seventy-three thousand nine hundred four'); INSERT INTO t1 VALUES(5880, 65827, 'sixty-five thousand eight hundred twenty-seven'); INSERT INTO t1 VALUES(5881, 37404, 'thirty-seven thousand four hundred four'); INSERT INTO t1 VALUES(5882, 50319, 'fifty thousand three hundred nineteen'); INSERT INTO t1 VALUES(5883, 4247, 'four thousand two hundred forty-seven'); INSERT INTO t1 VALUES(5884, 5747, 'five thousand seven hundred forty-seven'); INSERT INTO t1 VALUES(5885, 29179, 'twenty-nine thousand one hundred seventy-nine'); INSERT INTO t1 VALUES(5886, 14924, 'fourteen thousand nine hundred twenty-four'); INSERT INTO t1 VALUES(5887, 11564, 'eleven thousand five hundred sixty-four'); INSERT INTO t1 VALUES(5888, 58511, 'fifty-eight thousand five hundred eleven'); INSERT INTO t1 VALUES(5889, 5053, 'five thousand fifty-three'); INSERT INTO t1 VALUES(5890, 3785, 'three thousand seven hundred eighty-five'); INSERT INTO t1 VALUES(5891, 5222, 'five thousand two hundred twenty-two'); INSERT INTO t1 VALUES(5892, 51671, 'fifty-one thousand six hundred seventy-one'); INSERT INTO t1 VALUES(5893, 24783, 'twenty-four thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(5894, 43234, 'forty-three thousand two hundred thirty-four'); INSERT INTO t1 VALUES(5895, 15401, 'fifteen thousand four hundred one'); INSERT INTO t1 VALUES(5896, 40933, 'forty thousand nine hundred thirty-three'); INSERT INTO t1 VALUES(5897, 73857, 'seventy-three thousand eight hundred fifty-seven'); INSERT INTO t1 VALUES(5898, 98388, 'ninety-eight thousand three hundred eighty-eight'); INSERT INTO t1 VALUES(5899, 71023, 'seventy-one thousand twenty-three'); INSERT INTO t1 VALUES(5900, 79414, 'seventy-nine thousand four hundred fourteen'); INSERT INTO t1 VALUES(5901, 71149, 'seventy-one thousand one hundred forty-nine'); INSERT INTO t1 VALUES(5902, 89705, 'eighty-nine thousand seven hundred five'); INSERT INTO t1 VALUES(5903, 73221, 'seventy-three thousand two hundred twenty-one'); INSERT INTO t1 VALUES(5904, 93693, 'ninety-three thousand six hundred ninety-three'); INSERT INTO t1 VALUES(5905, 72165, 'seventy-two thousand one hundred sixty-five'); INSERT INTO t1 VALUES(5906, 81222, 'eighty-one thousand two hundred twenty-two'); INSERT INTO t1 VALUES(5907, 82277, 'eighty-two thousand two hundred seventy-seven'); INSERT INTO t1 VALUES(5908, 78684, 'seventy-eight thousand six hundred eighty-four'); INSERT INTO t1 VALUES(5909, 50509, 'fifty thousand five hundred nine'); INSERT INTO t1 VALUES(5910, 9728, 'nine thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(5911, 87942, 'eighty-seven thousand nine hundred forty-two'); INSERT INTO t1 VALUES(5912, 3477, 'three thousand four hundred seventy-seven'); INSERT INTO t1 VALUES(5913, 64149, 'sixty-four thousand one hundred forty-nine'); INSERT INTO t1 VALUES(5914, 20249, 'twenty thousand two hundred forty-nine'); INSERT INTO t1 VALUES(5915, 38612, 'thirty-eight thousand six hundred twelve'); INSERT INTO t1 VALUES(5916, 56075, 'fifty-six thousand seventy-five'); INSERT INTO t1 VALUES(5917, 96198, 'ninety-six thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(5918, 43894, 'forty-three thousand eight hundred ninety-four'); INSERT INTO t1 VALUES(5919, 80481, 'eighty thousand four hundred eighty-one'); INSERT INTO t1 VALUES(5920, 85461, 'eighty-five thousand four hundred sixty-one'); INSERT INTO t1 VALUES(5921, 99175, 'ninety-nine thousand one hundred seventy-five'); INSERT INTO t1 VALUES(5922, 9165, 'nine thousand one hundred sixty-five'); INSERT INTO t1 VALUES(5923, 2694, 'two thousand six hundred ninety-four'); INSERT INTO t1 VALUES(5924, 3922, 'three thousand nine hundred twenty-two'); INSERT INTO t1 VALUES(5925, 55446, 'fifty-five thousand four hundred forty-six'); INSERT INTO t1 VALUES(5926, 72038, 'seventy-two thousand thirty-eight'); INSERT INTO t1 VALUES(5927, 47878, 'forty-seven thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(5928, 21717, 'twenty-one thousand seven hundred seventeen'); INSERT INTO t1 VALUES(5929, 51243, 'fifty-one thousand two hundred forty-three'); INSERT INTO t1 VALUES(5930, 27692, 'twenty-seven thousand six hundred ninety-two'); INSERT INTO t1 VALUES(5931, 86212, 'eighty-six thousand two hundred twelve'); INSERT INTO t1 VALUES(5932, 98678, 'ninety-eight thousand six hundred seventy-eight'); INSERT INTO t1 VALUES(5933, 41784, 'forty-one thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(5934, 21406, 'twenty-one thousand four hundred six'); INSERT INTO t1 VALUES(5935, 7330, 'seven thousand three hundred thirty'); INSERT INTO t1 VALUES(5936, 51208, 'fifty-one thousand two hundred eight'); INSERT INTO t1 VALUES(5937, 5709, 'five thousand seven hundred nine'); INSERT INTO t1 VALUES(5938, 34464, 'thirty-four thousand four hundred sixty-four'); INSERT INTO t1 VALUES(5939, 29285, 'twenty-nine thousand two hundred eighty-five'); INSERT INTO t1 VALUES(5940, 45320, 'forty-five thousand three hundred twenty'); INSERT INTO t1 VALUES(5941, 62972, 'sixty-two thousand nine hundred seventy-two'); INSERT INTO t1 VALUES(5942, 30880, 'thirty thousand eight hundred eighty'); INSERT INTO t1 VALUES(5943, 52617, 'fifty-two thousand six hundred seventeen'); INSERT INTO t1 VALUES(5944, 96712, 'ninety-six thousand seven hundred twelve'); INSERT INTO t1 VALUES(5945, 14169, 'fourteen thousand one hundred sixty-nine'); INSERT INTO t1 VALUES(5946, 89655, 'eighty-nine thousand six hundred fifty-five'); INSERT INTO t1 VALUES(5947, 27272, 'twenty-seven thousand two hundred seventy-two'); INSERT INTO t1 VALUES(5948, 14824, 'fourteen thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(5949, 51837, 'fifty-one thousand eight hundred thirty-seven'); INSERT INTO t1 VALUES(5950, 80379, 'eighty thousand three hundred seventy-nine'); INSERT INTO t1 VALUES(5951, 58811, 'fifty-eight thousand eight hundred eleven'); INSERT INTO t1 VALUES(5952, 97797, 'ninety-seven thousand seven hundred ninety-seven'); INSERT INTO t1 VALUES(5953, 40518, 'forty thousand five hundred eighteen'); INSERT INTO t1 VALUES(5954, 26873, 'twenty-six thousand eight hundred seventy-three'); INSERT INTO t1 VALUES(5955, 28708, 'twenty-eight thousand seven hundred eight'); INSERT INTO t1 VALUES(5956, 80909, 'eighty thousand nine hundred nine'); INSERT INTO t1 VALUES(5957, 22620, 'twenty-two thousand six hundred twenty'); INSERT INTO t1 VALUES(5958, 41438, 'forty-one thousand four hundred thirty-eight'); INSERT INTO t1 VALUES(5959, 75973, 'seventy-five thousand nine hundred seventy-three'); INSERT INTO t1 VALUES(5960, 93302, 'ninety-three thousand three hundred two'); INSERT INTO t1 VALUES(5961, 13520, 'thirteen thousand five hundred twenty'); INSERT INTO t1 VALUES(5962, 86795, 'eighty-six thousand seven hundred ninety-five'); INSERT INTO t1 VALUES(5963, 15084, 'fifteen thousand eighty-four'); INSERT INTO t1 VALUES(5964, 61267, 'sixty-one thousand two hundred sixty-seven'); INSERT INTO t1 VALUES(5965, 92818, 'ninety-two thousand eight hundred eighteen'); INSERT INTO t1 VALUES(5966, 31362, 'thirty-one thousand three hundred sixty-two'); INSERT INTO t1 VALUES(5967, 81944, 'eighty-one thousand nine hundred forty-four'); INSERT INTO t1 VALUES(5968, 12683, 'twelve thousand six hundred eighty-three'); INSERT INTO t1 VALUES(5969, 84910, 'eighty-four thousand nine hundred ten'); INSERT INTO t1 VALUES(5970, 61059, 'sixty-one thousand fifty-nine'); INSERT INTO t1 VALUES(5971, 32942, 'thirty-two thousand nine hundred forty-two'); INSERT INTO t1 VALUES(5972, 12882, 'twelve thousand eight hundred eighty-two'); INSERT INTO t1 VALUES(5973, 86006, 'eighty-six thousand six'); INSERT INTO t1 VALUES(5974, 105, 'one hundred five'); INSERT INTO t1 VALUES(5975, 37199, 'thirty-seven thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(5976, 58310, 'fifty-eight thousand three hundred ten'); INSERT INTO t1 VALUES(5977, 50047, 'fifty thousand forty-seven'); INSERT INTO t1 VALUES(5978, 21168, 'twenty-one thousand one hundred sixty-eight'); INSERT INTO t1 VALUES(5979, 78266, 'seventy-eight thousand two hundred sixty-six'); INSERT INTO t1 VALUES(5980, 67576, 'sixty-seven thousand five hundred seventy-six'); INSERT INTO t1 VALUES(5981, 20865, 'twenty thousand eight hundred sixty-five'); INSERT INTO t1 VALUES(5982, 66162, 'sixty-six thousand one hundred sixty-two'); INSERT INTO t1 VALUES(5983, 72289, 'seventy-two thousand two hundred eighty-nine'); INSERT INTO t1 VALUES(5984, 89728, 'eighty-nine thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(5985, 45418, 'forty-five thousand four hundred eighteen'); INSERT INTO t1 VALUES(5986, 40699, 'forty thousand six hundred ninety-nine'); INSERT INTO t1 VALUES(5987, 93583, 'ninety-three thousand five hundred eighty-three'); INSERT INTO t1 VALUES(5988, 80833, 'eighty thousand eight hundred thirty-three'); INSERT INTO t1 VALUES(5989, 81458, 'eighty-one thousand four hundred fifty-eight'); INSERT INTO t1 VALUES(5990, 42151, 'forty-two thousand one hundred fifty-one'); INSERT INTO t1 VALUES(5991, 16424, 'sixteen thousand four hundred twenty-four'); INSERT INTO t1 VALUES(5992, 40866, 'forty thousand eight hundred sixty-six'); INSERT INTO t1 VALUES(5993, 71944, 'seventy-one thousand nine hundred forty-four'); INSERT INTO t1 VALUES(5994, 80048, 'eighty thousand forty-eight'); INSERT INTO t1 VALUES(5995, 66604, 'sixty-six thousand six hundred four'); INSERT INTO t1 VALUES(5996, 5613, 'five thousand six hundred thirteen'); INSERT INTO t1 VALUES(5997, 14891, 'fourteen thousand eight hundred ninety-one'); INSERT INTO t1 VALUES(5998, 90251, 'ninety thousand two hundred fifty-one'); INSERT INTO t1 VALUES(5999, 54381, 'fifty-four thousand three hundred eighty-one'); INSERT INTO t1 VALUES(6000, 97762, 'ninety-seven thousand seven hundred sixty-two'); INSERT INTO t1 VALUES(6001, 66556, 'sixty-six thousand five hundred fifty-six'); INSERT INTO t1 VALUES(6002, 16944, 'sixteen thousand nine hundred forty-four'); INSERT INTO t1 VALUES(6003, 30116, 'thirty thousand one hundred sixteen'); INSERT INTO t1 VALUES(6004, 97666, 'ninety-seven thousand six hundred sixty-six'); INSERT INTO t1 VALUES(6005, 67246, 'sixty-seven thousand two hundred forty-six'); INSERT INTO t1 VALUES(6006, 99417, 'ninety-nine thousand four hundred seventeen'); INSERT INTO t1 VALUES(6007, 20018, 'twenty thousand eighteen'); INSERT INTO t1 VALUES(6008, 34792, 'thirty-four thousand seven hundred ninety-two'); INSERT INTO t1 VALUES(6009, 74569, 'seventy-four thousand five hundred sixty-nine'); INSERT INTO t1 VALUES(6010, 60832, 'sixty thousand eight hundred thirty-two'); INSERT INTO t1 VALUES(6011, 31523, 'thirty-one thousand five hundred twenty-three'); INSERT INTO t1 VALUES(6012, 12575, 'twelve thousand five hundred seventy-five'); INSERT INTO t1 VALUES(6013, 66799, 'sixty-six thousand seven hundred ninety-nine'); INSERT INTO t1 VALUES(6014, 46037, 'forty-six thousand thirty-seven'); INSERT INTO t1 VALUES(6015, 71299, 'seventy-one thousand two hundred ninety-nine'); INSERT INTO t1 VALUES(6016, 89117, 'eighty-nine thousand one hundred seventeen'); INSERT INTO t1 VALUES(6017, 31704, 'thirty-one thousand seven hundred four'); INSERT INTO t1 VALUES(6018, 48649, 'forty-eight thousand six hundred forty-nine'); INSERT INTO t1 VALUES(6019, 32353, 'thirty-two thousand three hundred fifty-three'); INSERT INTO t1 VALUES(6020, 15818, 'fifteen thousand eight hundred eighteen'); INSERT INTO t1 VALUES(6021, 23521, 'twenty-three thousand five hundred twenty-one'); INSERT INTO t1 VALUES(6022, 1551, 'one thousand five hundred fifty-one'); INSERT INTO t1 VALUES(6023, 39528, 'thirty-nine thousand five hundred twenty-eight'); INSERT INTO t1 VALUES(6024, 88778, 'eighty-eight thousand seven hundred seventy-eight'); INSERT INTO t1 VALUES(6025, 16705, 'sixteen thousand seven hundred five'); INSERT INTO t1 VALUES(6026, 45429, 'forty-five thousand four hundred twenty-nine'); INSERT INTO t1 VALUES(6027, 81045, 'eighty-one thousand forty-five'); INSERT INTO t1 VALUES(6028, 40213, 'forty thousand two hundred thirteen'); INSERT INTO t1 VALUES(6029, 60661, 'sixty thousand six hundred sixty-one'); INSERT INTO t1 VALUES(6030, 19689, 'nineteen thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(6031, 9676, 'nine thousand six hundred seventy-six'); INSERT INTO t1 VALUES(6032, 44984, 'forty-four thousand nine hundred eighty-four'); INSERT INTO t1 VALUES(6033, 34965, 'thirty-four thousand nine hundred sixty-five'); INSERT INTO t1 VALUES(6034, 19035, 'nineteen thousand thirty-five'); INSERT INTO t1 VALUES(6035, 42687, 'forty-two thousand six hundred eighty-seven'); INSERT INTO t1 VALUES(6036, 68840, 'sixty-eight thousand eight hundred forty'); INSERT INTO t1 VALUES(6037, 51366, 'fifty-one thousand three hundred sixty-six'); INSERT INTO t1 VALUES(6038, 6740, 'six thousand seven hundred forty'); INSERT INTO t1 VALUES(6039, 77008, 'seventy-seven thousand eight'); INSERT INTO t1 VALUES(6040, 13699, 'thirteen thousand six hundred ninety-nine'); INSERT INTO t1 VALUES(6041, 58893, 'fifty-eight thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(6042, 69989, 'sixty-nine thousand nine hundred eighty-nine'); INSERT INTO t1 VALUES(6043, 86143, 'eighty-six thousand one hundred forty-three'); INSERT INTO t1 VALUES(6044, 71431, 'seventy-one thousand four hundred thirty-one'); INSERT INTO t1 VALUES(6045, 6232, 'six thousand two hundred thirty-two'); INSERT INTO t1 VALUES(6046, 43674, 'forty-three thousand six hundred seventy-four'); INSERT INTO t1 VALUES(6047, 68344, 'sixty-eight thousand three hundred forty-four'); INSERT INTO t1 VALUES(6048, 53156, 'fifty-three thousand one hundred fifty-six'); INSERT INTO t1 VALUES(6049, 62021, 'sixty-two thousand twenty-one'); INSERT INTO t1 VALUES(6050, 83692, 'eighty-three thousand six hundred ninety-two'); INSERT INTO t1 VALUES(6051, 52651, 'fifty-two thousand six hundred fifty-one'); INSERT INTO t1 VALUES(6052, 22981, 'twenty-two thousand nine hundred eighty-one'); INSERT INTO t1 VALUES(6053, 5349, 'five thousand three hundred forty-nine'); INSERT INTO t1 VALUES(6054, 51710, 'fifty-one thousand seven hundred ten'); INSERT INTO t1 VALUES(6055, 97423, 'ninety-seven thousand four hundred twenty-three'); INSERT INTO t1 VALUES(6056, 2635, 'two thousand six hundred thirty-five'); INSERT INTO t1 VALUES(6057, 50331, 'fifty thousand three hundred thirty-one'); INSERT INTO t1 VALUES(6058, 16875, 'sixteen thousand eight hundred seventy-five'); INSERT INTO t1 VALUES(6059, 37338, 'thirty-seven thousand three hundred thirty-eight'); INSERT INTO t1 VALUES(6060, 41883, 'forty-one thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(6061, 33015, 'thirty-three thousand fifteen'); INSERT INTO t1 VALUES(6062, 54505, 'fifty-four thousand five hundred five'); INSERT INTO t1 VALUES(6063, 92048, 'ninety-two thousand forty-eight'); INSERT INTO t1 VALUES(6064, 82076, 'eighty-two thousand seventy-six'); INSERT INTO t1 VALUES(6065, 29564, 'twenty-nine thousand five hundred sixty-four'); INSERT INTO t1 VALUES(6066, 68518, 'sixty-eight thousand five hundred eighteen'); INSERT INTO t1 VALUES(6067, 64960, 'sixty-four thousand nine hundred sixty'); INSERT INTO t1 VALUES(6068, 23509, 'twenty-three thousand five hundred nine'); INSERT INTO t1 VALUES(6069, 91806, 'ninety-one thousand eight hundred six'); INSERT INTO t1 VALUES(6070, 64944, 'sixty-four thousand nine hundred forty-four'); INSERT INTO t1 VALUES(6071, 31651, 'thirty-one thousand six hundred fifty-one'); INSERT INTO t1 VALUES(6072, 68832, 'sixty-eight thousand eight hundred thirty-two'); INSERT INTO t1 VALUES(6073, 93102, 'ninety-three thousand one hundred two'); INSERT INTO t1 VALUES(6074, 27179, 'twenty-seven thousand one hundred seventy-nine'); INSERT INTO t1 VALUES(6075, 19259, 'nineteen thousand two hundred fifty-nine'); INSERT INTO t1 VALUES(6076, 21112, 'twenty-one thousand one hundred twelve'); INSERT INTO t1 VALUES(6077, 26288, 'twenty-six thousand two hundred eighty-eight'); INSERT INTO t1 VALUES(6078, 83736, 'eighty-three thousand seven hundred thirty-six'); INSERT INTO t1 VALUES(6079, 53608, 'fifty-three thousand six hundred eight'); INSERT INTO t1 VALUES(6080, 53383, 'fifty-three thousand three hundred eighty-three'); INSERT INTO t1 VALUES(6081, 1086, 'one thousand eighty-six'); INSERT INTO t1 VALUES(6082, 21942, 'twenty-one thousand nine hundred forty-two'); INSERT INTO t1 VALUES(6083, 27373, 'twenty-seven thousand three hundred seventy-three'); INSERT INTO t1 VALUES(6084, 96883, 'ninety-six thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(6085, 54164, 'fifty-four thousand one hundred sixty-four'); INSERT INTO t1 VALUES(6086, 34958, 'thirty-four thousand nine hundred fifty-eight'); INSERT INTO t1 VALUES(6087, 40300, 'forty thousand three hundred'); INSERT INTO t1 VALUES(6088, 10401, 'ten thousand four hundred one'); INSERT INTO t1 VALUES(6089, 47354, 'forty-seven thousand three hundred fifty-four'); INSERT INTO t1 VALUES(6090, 63759, 'sixty-three thousand seven hundred fifty-nine'); INSERT INTO t1 VALUES(6091, 75959, 'seventy-five thousand nine hundred fifty-nine'); INSERT INTO t1 VALUES(6092, 18867, 'eighteen thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(6093, 95507, 'ninety-five thousand five hundred seven'); INSERT INTO t1 VALUES(6094, 50438, 'fifty thousand four hundred thirty-eight'); INSERT INTO t1 VALUES(6095, 54159, 'fifty-four thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(6096, 13209, 'thirteen thousand two hundred nine'); INSERT INTO t1 VALUES(6097, 79747, 'seventy-nine thousand seven hundred forty-seven'); INSERT INTO t1 VALUES(6098, 73853, 'seventy-three thousand eight hundred fifty-three'); INSERT INTO t1 VALUES(6099, 21777, 'twenty-one thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(6100, 56092, 'fifty-six thousand ninety-two'); INSERT INTO t1 VALUES(6101, 20085, 'twenty thousand eighty-five'); INSERT INTO t1 VALUES(6102, 70417, 'seventy thousand four hundred seventeen'); INSERT INTO t1 VALUES(6103, 59212, 'fifty-nine thousand two hundred twelve'); INSERT INTO t1 VALUES(6104, 41400, 'forty-one thousand four hundred'); INSERT INTO t1 VALUES(6105, 24815, 'twenty-four thousand eight hundred fifteen'); INSERT INTO t1 VALUES(6106, 86893, 'eighty-six thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(6107, 96794, 'ninety-six thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(6108, 27929, 'twenty-seven thousand nine hundred twenty-nine'); INSERT INTO t1 VALUES(6109, 83698, 'eighty-three thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(6110, 11692, 'eleven thousand six hundred ninety-two'); INSERT INTO t1 VALUES(6111, 24572, 'twenty-four thousand five hundred seventy-two'); INSERT INTO t1 VALUES(6112, 73593, 'seventy-three thousand five hundred ninety-three'); INSERT INTO t1 VALUES(6113, 6989, 'six thousand nine hundred eighty-nine'); INSERT INTO t1 VALUES(6114, 98645, 'ninety-eight thousand six hundred forty-five'); INSERT INTO t1 VALUES(6115, 64270, 'sixty-four thousand two hundred seventy'); INSERT INTO t1 VALUES(6116, 85749, 'eighty-five thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(6117, 22917, 'twenty-two thousand nine hundred seventeen'); INSERT INTO t1 VALUES(6118, 43775, 'forty-three thousand seven hundred seventy-five'); INSERT INTO t1 VALUES(6119, 57312, 'fifty-seven thousand three hundred twelve'); INSERT INTO t1 VALUES(6120, 16387, 'sixteen thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(6121, 84179, 'eighty-four thousand one hundred seventy-nine'); INSERT INTO t1 VALUES(6122, 11781, 'eleven thousand seven hundred eighty-one'); INSERT INTO t1 VALUES(6123, 86140, 'eighty-six thousand one hundred forty'); INSERT INTO t1 VALUES(6124, 71551, 'seventy-one thousand five hundred fifty-one'); INSERT INTO t1 VALUES(6125, 63201, 'sixty-three thousand two hundred one'); INSERT INTO t1 VALUES(6126, 66011, 'sixty-six thousand eleven'); INSERT INTO t1 VALUES(6127, 61103, 'sixty-one thousand one hundred three'); INSERT INTO t1 VALUES(6128, 89958, 'eighty-nine thousand nine hundred fifty-eight'); INSERT INTO t1 VALUES(6129, 26686, 'twenty-six thousand six hundred eighty-six'); INSERT INTO t1 VALUES(6130, 12519, 'twelve thousand five hundred nineteen'); INSERT INTO t1 VALUES(6131, 4787, 'four thousand seven hundred eighty-seven'); INSERT INTO t1 VALUES(6132, 96030, 'ninety-six thousand thirty'); INSERT INTO t1 VALUES(6133, 73207, 'seventy-three thousand two hundred seven'); INSERT INTO t1 VALUES(6134, 48277, 'forty-eight thousand two hundred seventy-seven'); INSERT INTO t1 VALUES(6135, 96032, 'ninety-six thousand thirty-two'); INSERT INTO t1 VALUES(6136, 63056, 'sixty-three thousand fifty-six'); INSERT INTO t1 VALUES(6137, 42075, 'forty-two thousand seventy-five'); INSERT INTO t1 VALUES(6138, 63940, 'sixty-three thousand nine hundred forty'); INSERT INTO t1 VALUES(6139, 62171, 'sixty-two thousand one hundred seventy-one'); INSERT INTO t1 VALUES(6140, 26680, 'twenty-six thousand six hundred eighty'); INSERT INTO t1 VALUES(6141, 75611, 'seventy-five thousand six hundred eleven'); INSERT INTO t1 VALUES(6142, 93199, 'ninety-three thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(6143, 4280, 'four thousand two hundred eighty'); INSERT INTO t1 VALUES(6144, 26074, 'twenty-six thousand seventy-four'); INSERT INTO t1 VALUES(6145, 83317, 'eighty-three thousand three hundred seventeen'); INSERT INTO t1 VALUES(6146, 12529, 'twelve thousand five hundred twenty-nine'); INSERT INTO t1 VALUES(6147, 4828, 'four thousand eight hundred twenty-eight'); INSERT INTO t1 VALUES(6148, 79041, 'seventy-nine thousand forty-one'); INSERT INTO t1 VALUES(6149, 83821, 'eighty-three thousand eight hundred twenty-one'); INSERT INTO t1 VALUES(6150, 17753, 'seventeen thousand seven hundred fifty-three'); INSERT INTO t1 VALUES(6151, 74826, 'seventy-four thousand eight hundred twenty-six'); INSERT INTO t1 VALUES(6152, 54661, 'fifty-four thousand six hundred sixty-one'); INSERT INTO t1 VALUES(6153, 6076, 'six thousand seventy-six'); INSERT INTO t1 VALUES(6154, 89661, 'eighty-nine thousand six hundred sixty-one'); INSERT INTO t1 VALUES(6155, 21980, 'twenty-one thousand nine hundred eighty'); INSERT INTO t1 VALUES(6156, 94673, 'ninety-four thousand six hundred seventy-three'); INSERT INTO t1 VALUES(6157, 33265, 'thirty-three thousand two hundred sixty-five'); INSERT INTO t1 VALUES(6158, 97246, 'ninety-seven thousand two hundred forty-six'); INSERT INTO t1 VALUES(6159, 35723, 'thirty-five thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(6160, 13267, 'thirteen thousand two hundred sixty-seven'); INSERT INTO t1 VALUES(6161, 96071, 'ninety-six thousand seventy-one'); INSERT INTO t1 VALUES(6162, 15046, 'fifteen thousand forty-six'); INSERT INTO t1 VALUES(6163, 51026, 'fifty-one thousand twenty-six'); INSERT INTO t1 VALUES(6164, 1256, 'one thousand two hundred fifty-six'); INSERT INTO t1 VALUES(6165, 48559, 'forty-eight thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(6166, 63589, 'sixty-three thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(6167, 1092, 'one thousand ninety-two'); INSERT INTO t1 VALUES(6168, 83036, 'eighty-three thousand thirty-six'); INSERT INTO t1 VALUES(6169, 77264, 'seventy-seven thousand two hundred sixty-four'); INSERT INTO t1 VALUES(6170, 98494, 'ninety-eight thousand four hundred ninety-four'); INSERT INTO t1 VALUES(6171, 58314, 'fifty-eight thousand three hundred fourteen'); INSERT INTO t1 VALUES(6172, 6026, 'six thousand twenty-six'); INSERT INTO t1 VALUES(6173, 55715, 'fifty-five thousand seven hundred fifteen'); INSERT INTO t1 VALUES(6174, 84094, 'eighty-four thousand ninety-four'); INSERT INTO t1 VALUES(6175, 90636, 'ninety thousand six hundred thirty-six'); INSERT INTO t1 VALUES(6176, 74295, 'seventy-four thousand two hundred ninety-five'); INSERT INTO t1 VALUES(6177, 44656, 'forty-four thousand six hundred fifty-six'); INSERT INTO t1 VALUES(6178, 54405, 'fifty-four thousand four hundred five'); INSERT INTO t1 VALUES(6179, 99590, 'ninety-nine thousand five hundred ninety'); INSERT INTO t1 VALUES(6180, 48529, 'forty-eight thousand five hundred twenty-nine'); INSERT INTO t1 VALUES(6181, 21598, 'twenty-one thousand five hundred ninety-eight'); INSERT INTO t1 VALUES(6182, 58610, 'fifty-eight thousand six hundred ten'); INSERT INTO t1 VALUES(6183, 75107, 'seventy-five thousand one hundred seven'); INSERT INTO t1 VALUES(6184, 781, 'seven hundred eighty-one'); INSERT INTO t1 VALUES(6185, 68474, 'sixty-eight thousand four hundred seventy-four'); INSERT INTO t1 VALUES(6186, 92810, 'ninety-two thousand eight hundred ten'); INSERT INTO t1 VALUES(6187, 81935, 'eighty-one thousand nine hundred thirty-five'); INSERT INTO t1 VALUES(6188, 33035, 'thirty-three thousand thirty-five'); INSERT INTO t1 VALUES(6189, 54285, 'fifty-four thousand two hundred eighty-five'); INSERT INTO t1 VALUES(6190, 63510, 'sixty-three thousand five hundred ten'); INSERT INTO t1 VALUES(6191, 15595, 'fifteen thousand five hundred ninety-five'); INSERT INTO t1 VALUES(6192, 89303, 'eighty-nine thousand three hundred three'); INSERT INTO t1 VALUES(6193, 53523, 'fifty-three thousand five hundred twenty-three'); INSERT INTO t1 VALUES(6194, 31742, 'thirty-one thousand seven hundred forty-two'); INSERT INTO t1 VALUES(6195, 18746, 'eighteen thousand seven hundred forty-six'); INSERT INTO t1 VALUES(6196, 34052, 'thirty-four thousand fifty-two'); INSERT INTO t1 VALUES(6197, 12911, 'twelve thousand nine hundred eleven'); INSERT INTO t1 VALUES(6198, 44513, 'forty-four thousand five hundred thirteen'); INSERT INTO t1 VALUES(6199, 42664, 'forty-two thousand six hundred sixty-four'); INSERT INTO t1 VALUES(6200, 82983, 'eighty-two thousand nine hundred eighty-three'); INSERT INTO t1 VALUES(6201, 13599, 'thirteen thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(6202, 47210, 'forty-seven thousand two hundred ten'); INSERT INTO t1 VALUES(6203, 68625, 'sixty-eight thousand six hundred twenty-five'); INSERT INTO t1 VALUES(6204, 75926, 'seventy-five thousand nine hundred twenty-six'); INSERT INTO t1 VALUES(6205, 39770, 'thirty-nine thousand seven hundred seventy'); INSERT INTO t1 VALUES(6206, 8537, 'eight thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(6207, 68772, 'sixty-eight thousand seven hundred seventy-two'); INSERT INTO t1 VALUES(6208, 36439, 'thirty-six thousand four hundred thirty-nine'); INSERT INTO t1 VALUES(6209, 41050, 'forty-one thousand fifty'); INSERT INTO t1 VALUES(6210, 6853, 'six thousand eight hundred fifty-three'); INSERT INTO t1 VALUES(6211, 89078, 'eighty-nine thousand seventy-eight'); INSERT INTO t1 VALUES(6212, 23674, 'twenty-three thousand six hundred seventy-four'); INSERT INTO t1 VALUES(6213, 73817, 'seventy-three thousand eight hundred seventeen'); INSERT INTO t1 VALUES(6214, 71850, 'seventy-one thousand eight hundred fifty'); INSERT INTO t1 VALUES(6215, 74717, 'seventy-four thousand seven hundred seventeen'); INSERT INTO t1 VALUES(6216, 73431, 'seventy-three thousand four hundred thirty-one'); INSERT INTO t1 VALUES(6217, 14021, 'fourteen thousand twenty-one'); INSERT INTO t1 VALUES(6218, 3575, 'three thousand five hundred seventy-five'); INSERT INTO t1 VALUES(6219, 44774, 'forty-four thousand seven hundred seventy-four'); INSERT INTO t1 VALUES(6220, 69778, 'sixty-nine thousand seven hundred seventy-eight'); INSERT INTO t1 VALUES(6221, 63566, 'sixty-three thousand five hundred sixty-six'); INSERT INTO t1 VALUES(6222, 80173, 'eighty thousand one hundred seventy-three'); INSERT INTO t1 VALUES(6223, 70378, 'seventy thousand three hundred seventy-eight'); INSERT INTO t1 VALUES(6224, 47493, 'forty-seven thousand four hundred ninety-three'); INSERT INTO t1 VALUES(6225, 34644, 'thirty-four thousand six hundred forty-four'); INSERT INTO t1 VALUES(6226, 27823, 'twenty-seven thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(6227, 3114, 'three thousand one hundred fourteen'); INSERT INTO t1 VALUES(6228, 32122, 'thirty-two thousand one hundred twenty-two'); INSERT INTO t1 VALUES(6229, 97322, 'ninety-seven thousand three hundred twenty-two'); INSERT INTO t1 VALUES(6230, 97281, 'ninety-seven thousand two hundred eighty-one'); INSERT INTO t1 VALUES(6231, 75664, 'seventy-five thousand six hundred sixty-four'); INSERT INTO t1 VALUES(6232, 29293, 'twenty-nine thousand two hundred ninety-three'); INSERT INTO t1 VALUES(6233, 59723, 'fifty-nine thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(6234, 80197, 'eighty thousand one hundred ninety-seven'); INSERT INTO t1 VALUES(6235, 68278, 'sixty-eight thousand two hundred seventy-eight'); INSERT INTO t1 VALUES(6236, 56468, 'fifty-six thousand four hundred sixty-eight'); INSERT INTO t1 VALUES(6237, 5715, 'five thousand seven hundred fifteen'); INSERT INTO t1 VALUES(6238, 5624, 'five thousand six hundred twenty-four'); INSERT INTO t1 VALUES(6239, 88140, 'eighty-eight thousand one hundred forty'); INSERT INTO t1 VALUES(6240, 74496, 'seventy-four thousand four hundred ninety-six'); INSERT INTO t1 VALUES(6241, 75097, 'seventy-five thousand ninety-seven'); INSERT INTO t1 VALUES(6242, 34885, 'thirty-four thousand eight hundred eighty-five'); INSERT INTO t1 VALUES(6243, 30664, 'thirty thousand six hundred sixty-four'); INSERT INTO t1 VALUES(6244, 84770, 'eighty-four thousand seven hundred seventy'); INSERT INTO t1 VALUES(6245, 58350, 'fifty-eight thousand three hundred fifty'); INSERT INTO t1 VALUES(6246, 56008, 'fifty-six thousand eight'); INSERT INTO t1 VALUES(6247, 38588, 'thirty-eight thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(6248, 6611, 'six thousand six hundred eleven'); INSERT INTO t1 VALUES(6249, 85751, 'eighty-five thousand seven hundred fifty-one'); INSERT INTO t1 VALUES(6250, 64241, 'sixty-four thousand two hundred forty-one'); INSERT INTO t1 VALUES(6251, 72257, 'seventy-two thousand two hundred fifty-seven'); INSERT INTO t1 VALUES(6252, 69116, 'sixty-nine thousand one hundred sixteen'); INSERT INTO t1 VALUES(6253, 80438, 'eighty thousand four hundred thirty-eight'); INSERT INTO t1 VALUES(6254, 20441, 'twenty thousand four hundred forty-one'); INSERT INTO t1 VALUES(6255, 83620, 'eighty-three thousand six hundred twenty'); INSERT INTO t1 VALUES(6256, 90621, 'ninety thousand six hundred twenty-one'); INSERT INTO t1 VALUES(6257, 39262, 'thirty-nine thousand two hundred sixty-two'); INSERT INTO t1 VALUES(6258, 74012, 'seventy-four thousand twelve'); INSERT INTO t1 VALUES(6259, 78372, 'seventy-eight thousand three hundred seventy-two'); INSERT INTO t1 VALUES(6260, 37579, 'thirty-seven thousand five hundred seventy-nine'); INSERT INTO t1 VALUES(6261, 83801, 'eighty-three thousand eight hundred one'); INSERT INTO t1 VALUES(6262, 34122, 'thirty-four thousand one hundred twenty-two'); INSERT INTO t1 VALUES(6263, 34250, 'thirty-four thousand two hundred fifty'); INSERT INTO t1 VALUES(6264, 54760, 'fifty-four thousand seven hundred sixty'); INSERT INTO t1 VALUES(6265, 65580, 'sixty-five thousand five hundred eighty'); INSERT INTO t1 VALUES(6266, 51092, 'fifty-one thousand ninety-two'); INSERT INTO t1 VALUES(6267, 84895, 'eighty-four thousand eight hundred ninety-five'); INSERT INTO t1 VALUES(6268, 5341, 'five thousand three hundred forty-one'); INSERT INTO t1 VALUES(6269, 26667, 'twenty-six thousand six hundred sixty-seven'); INSERT INTO t1 VALUES(6270, 83989, 'eighty-three thousand nine hundred eighty-nine'); INSERT INTO t1 VALUES(6271, 78345, 'seventy-eight thousand three hundred forty-five'); INSERT INTO t1 VALUES(6272, 91624, 'ninety-one thousand six hundred twenty-four'); INSERT INTO t1 VALUES(6273, 54510, 'fifty-four thousand five hundred ten'); INSERT INTO t1 VALUES(6274, 2041, 'two thousand forty-one'); INSERT INTO t1 VALUES(6275, 8249, 'eight thousand two hundred forty-nine'); INSERT INTO t1 VALUES(6276, 16815, 'sixteen thousand eight hundred fifteen'); INSERT INTO t1 VALUES(6277, 57435, 'fifty-seven thousand four hundred thirty-five'); INSERT INTO t1 VALUES(6278, 56575, 'fifty-six thousand five hundred seventy-five'); INSERT INTO t1 VALUES(6279, 90981, 'ninety thousand nine hundred eighty-one'); INSERT INTO t1 VALUES(6280, 51459, 'fifty-one thousand four hundred fifty-nine'); INSERT INTO t1 VALUES(6281, 62660, 'sixty-two thousand six hundred sixty'); INSERT INTO t1 VALUES(6282, 3397, 'three thousand three hundred ninety-seven'); INSERT INTO t1 VALUES(6283, 24584, 'twenty-four thousand five hundred eighty-four'); INSERT INTO t1 VALUES(6284, 41612, 'forty-one thousand six hundred twelve'); INSERT INTO t1 VALUES(6285, 31556, 'thirty-one thousand five hundred fifty-six'); INSERT INTO t1 VALUES(6286, 96549, 'ninety-six thousand five hundred forty-nine'); INSERT INTO t1 VALUES(6287, 43389, 'forty-three thousand three hundred eighty-nine'); INSERT INTO t1 VALUES(6288, 64564, 'sixty-four thousand five hundred sixty-four'); INSERT INTO t1 VALUES(6289, 77378, 'seventy-seven thousand three hundred seventy-eight'); INSERT INTO t1 VALUES(6290, 36201, 'thirty-six thousand two hundred one'); INSERT INTO t1 VALUES(6291, 89181, 'eighty-nine thousand one hundred eighty-one'); INSERT INTO t1 VALUES(6292, 67644, 'sixty-seven thousand six hundred forty-four'); INSERT INTO t1 VALUES(6293, 91084, 'ninety-one thousand eighty-four'); INSERT INTO t1 VALUES(6294, 44396, 'forty-four thousand three hundred ninety-six'); INSERT INTO t1 VALUES(6295, 36642, 'thirty-six thousand six hundred forty-two'); INSERT INTO t1 VALUES(6296, 50372, 'fifty thousand three hundred seventy-two'); INSERT INTO t1 VALUES(6297, 52752, 'fifty-two thousand seven hundred fifty-two'); INSERT INTO t1 VALUES(6298, 46968, 'forty-six thousand nine hundred sixty-eight'); INSERT INTO t1 VALUES(6299, 78286, 'seventy-eight thousand two hundred eighty-six'); INSERT INTO t1 VALUES(6300, 65662, 'sixty-five thousand six hundred sixty-two'); INSERT INTO t1 VALUES(6301, 9889, 'nine thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(6302, 25144, 'twenty-five thousand one hundred forty-four'); INSERT INTO t1 VALUES(6303, 38696, 'thirty-eight thousand six hundred ninety-six'); INSERT INTO t1 VALUES(6304, 69362, 'sixty-nine thousand three hundred sixty-two'); INSERT INTO t1 VALUES(6305, 67404, 'sixty-seven thousand four hundred four'); INSERT INTO t1 VALUES(6306, 40800, 'forty thousand eight hundred'); INSERT INTO t1 VALUES(6307, 59099, 'fifty-nine thousand ninety-nine'); INSERT INTO t1 VALUES(6308, 76688, 'seventy-six thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(6309, 26867, 'twenty-six thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(6310, 76874, 'seventy-six thousand eight hundred seventy-four'); INSERT INTO t1 VALUES(6311, 76946, 'seventy-six thousand nine hundred forty-six'); INSERT INTO t1 VALUES(6312, 76693, 'seventy-six thousand six hundred ninety-three'); INSERT INTO t1 VALUES(6313, 18074, 'eighteen thousand seventy-four'); INSERT INTO t1 VALUES(6314, 91064, 'ninety-one thousand sixty-four'); INSERT INTO t1 VALUES(6315, 28648, 'twenty-eight thousand six hundred forty-eight'); INSERT INTO t1 VALUES(6316, 38027, 'thirty-eight thousand twenty-seven'); INSERT INTO t1 VALUES(6317, 63057, 'sixty-three thousand fifty-seven'); INSERT INTO t1 VALUES(6318, 92263, 'ninety-two thousand two hundred sixty-three'); INSERT INTO t1 VALUES(6319, 25696, 'twenty-five thousand six hundred ninety-six'); INSERT INTO t1 VALUES(6320, 35529, 'thirty-five thousand five hundred twenty-nine'); INSERT INTO t1 VALUES(6321, 75167, 'seventy-five thousand one hundred sixty-seven'); INSERT INTO t1 VALUES(6322, 47213, 'forty-seven thousand two hundred thirteen'); INSERT INTO t1 VALUES(6323, 78732, 'seventy-eight thousand seven hundred thirty-two'); INSERT INTO t1 VALUES(6324, 19689, 'nineteen thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(6325, 22617, 'twenty-two thousand six hundred seventeen'); INSERT INTO t1 VALUES(6326, 69900, 'sixty-nine thousand nine hundred'); INSERT INTO t1 VALUES(6327, 73652, 'seventy-three thousand six hundred fifty-two'); INSERT INTO t1 VALUES(6328, 76415, 'seventy-six thousand four hundred fifteen'); INSERT INTO t1 VALUES(6329, 87877, 'eighty-seven thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(6330, 78207, 'seventy-eight thousand two hundred seven'); INSERT INTO t1 VALUES(6331, 58335, 'fifty-eight thousand three hundred thirty-five'); INSERT INTO t1 VALUES(6332, 54124, 'fifty-four thousand one hundred twenty-four'); INSERT INTO t1 VALUES(6333, 22703, 'twenty-two thousand seven hundred three'); INSERT INTO t1 VALUES(6334, 97491, 'ninety-seven thousand four hundred ninety-one'); INSERT INTO t1 VALUES(6335, 11295, 'eleven thousand two hundred ninety-five'); INSERT INTO t1 VALUES(6336, 29256, 'twenty-nine thousand two hundred fifty-six'); INSERT INTO t1 VALUES(6337, 38698, 'thirty-eight thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(6338, 73044, 'seventy-three thousand forty-four'); INSERT INTO t1 VALUES(6339, 99765, 'ninety-nine thousand seven hundred sixty-five'); INSERT INTO t1 VALUES(6340, 88301, 'eighty-eight thousand three hundred one'); INSERT INTO t1 VALUES(6341, 30244, 'thirty thousand two hundred forty-four'); INSERT INTO t1 VALUES(6342, 79749, 'seventy-nine thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(6343, 71802, 'seventy-one thousand eight hundred two'); INSERT INTO t1 VALUES(6344, 30418, 'thirty thousand four hundred eighteen'); INSERT INTO t1 VALUES(6345, 49616, 'forty-nine thousand six hundred sixteen'); INSERT INTO t1 VALUES(6346, 49300, 'forty-nine thousand three hundred'); INSERT INTO t1 VALUES(6347, 44312, 'forty-four thousand three hundred twelve'); INSERT INTO t1 VALUES(6348, 53302, 'fifty-three thousand three hundred two'); INSERT INTO t1 VALUES(6349, 79200, 'seventy-nine thousand two hundred'); INSERT INTO t1 VALUES(6350, 35702, 'thirty-five thousand seven hundred two'); INSERT INTO t1 VALUES(6351, 99592, 'ninety-nine thousand five hundred ninety-two'); INSERT INTO t1 VALUES(6352, 64522, 'sixty-four thousand five hundred twenty-two'); INSERT INTO t1 VALUES(6353, 86, 'eighty-six'); INSERT INTO t1 VALUES(6354, 80876, 'eighty thousand eight hundred seventy-six'); INSERT INTO t1 VALUES(6355, 99168, 'ninety-nine thousand one hundred sixty-eight'); INSERT INTO t1 VALUES(6356, 46811, 'forty-six thousand eight hundred eleven'); INSERT INTO t1 VALUES(6357, 1072, 'one thousand seventy-two'); INSERT INTO t1 VALUES(6358, 8278, 'eight thousand two hundred seventy-eight'); INSERT INTO t1 VALUES(6359, 55607, 'fifty-five thousand six hundred seven'); INSERT INTO t1 VALUES(6360, 36504, 'thirty-six thousand five hundred four'); INSERT INTO t1 VALUES(6361, 59909, 'fifty-nine thousand nine hundred nine'); INSERT INTO t1 VALUES(6362, 57992, 'fifty-seven thousand nine hundred ninety-two'); INSERT INTO t1 VALUES(6363, 23613, 'twenty-three thousand six hundred thirteen'); INSERT INTO t1 VALUES(6364, 92633, 'ninety-two thousand six hundred thirty-three'); INSERT INTO t1 VALUES(6365, 72904, 'seventy-two thousand nine hundred four'); INSERT INTO t1 VALUES(6366, 7705, 'seven thousand seven hundred five'); INSERT INTO t1 VALUES(6367, 39207, 'thirty-nine thousand two hundred seven'); INSERT INTO t1 VALUES(6368, 73654, 'seventy-three thousand six hundred fifty-four'); INSERT INTO t1 VALUES(6369, 90698, 'ninety thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(6370, 87976, 'eighty-seven thousand nine hundred seventy-six'); INSERT INTO t1 VALUES(6371, 98859, 'ninety-eight thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(6372, 41861, 'forty-one thousand eight hundred sixty-one'); INSERT INTO t1 VALUES(6373, 41215, 'forty-one thousand two hundred fifteen'); INSERT INTO t1 VALUES(6374, 73473, 'seventy-three thousand four hundred seventy-three'); INSERT INTO t1 VALUES(6375, 44368, 'forty-four thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(6376, 62850, 'sixty-two thousand eight hundred fifty'); INSERT INTO t1 VALUES(6377, 61458, 'sixty-one thousand four hundred fifty-eight'); INSERT INTO t1 VALUES(6378, 86293, 'eighty-six thousand two hundred ninety-three'); INSERT INTO t1 VALUES(6379, 39747, 'thirty-nine thousand seven hundred forty-seven'); INSERT INTO t1 VALUES(6380, 75183, 'seventy-five thousand one hundred eighty-three'); INSERT INTO t1 VALUES(6381, 60161, 'sixty thousand one hundred sixty-one'); INSERT INTO t1 VALUES(6382, 70506, 'seventy thousand five hundred six'); INSERT INTO t1 VALUES(6383, 60941, 'sixty thousand nine hundred forty-one'); INSERT INTO t1 VALUES(6384, 39578, 'thirty-nine thousand five hundred seventy-eight'); INSERT INTO t1 VALUES(6385, 70609, 'seventy thousand six hundred nine'); INSERT INTO t1 VALUES(6386, 85484, 'eighty-five thousand four hundred eighty-four'); INSERT INTO t1 VALUES(6387, 47789, 'forty-seven thousand seven hundred eighty-nine'); INSERT INTO t1 VALUES(6388, 21144, 'twenty-one thousand one hundred forty-four'); INSERT INTO t1 VALUES(6389, 78442, 'seventy-eight thousand four hundred forty-two'); INSERT INTO t1 VALUES(6390, 85009, 'eighty-five thousand nine'); INSERT INTO t1 VALUES(6391, 69987, 'sixty-nine thousand nine hundred eighty-seven'); INSERT INTO t1 VALUES(6392, 19247, 'nineteen thousand two hundred forty-seven'); INSERT INTO t1 VALUES(6393, 57089, 'fifty-seven thousand eighty-nine'); INSERT INTO t1 VALUES(6394, 4956, 'four thousand nine hundred fifty-six'); INSERT INTO t1 VALUES(6395, 25327, 'twenty-five thousand three hundred twenty-seven'); INSERT INTO t1 VALUES(6396, 13866, 'thirteen thousand eight hundred sixty-six'); INSERT INTO t1 VALUES(6397, 64720, 'sixty-four thousand seven hundred twenty'); INSERT INTO t1 VALUES(6398, 30202, 'thirty thousand two hundred two'); INSERT INTO t1 VALUES(6399, 87269, 'eighty-seven thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(6400, 19421, 'nineteen thousand four hundred twenty-one'); INSERT INTO t1 VALUES(6401, 62345, 'sixty-two thousand three hundred forty-five'); INSERT INTO t1 VALUES(6402, 61738, 'sixty-one thousand seven hundred thirty-eight'); INSERT INTO t1 VALUES(6403, 25837, 'twenty-five thousand eight hundred thirty-seven'); INSERT INTO t1 VALUES(6404, 76888, 'seventy-six thousand eight hundred eighty-eight'); INSERT INTO t1 VALUES(6405, 77261, 'seventy-seven thousand two hundred sixty-one'); INSERT INTO t1 VALUES(6406, 77246, 'seventy-seven thousand two hundred forty-six'); INSERT INTO t1 VALUES(6407, 45044, 'forty-five thousand forty-four'); INSERT INTO t1 VALUES(6408, 46395, 'forty-six thousand three hundred ninety-five'); INSERT INTO t1 VALUES(6409, 22073, 'twenty-two thousand seventy-three'); INSERT INTO t1 VALUES(6410, 45647, 'forty-five thousand six hundred forty-seven'); INSERT INTO t1 VALUES(6411, 98782, 'ninety-eight thousand seven hundred eighty-two'); INSERT INTO t1 VALUES(6412, 95995, 'ninety-five thousand nine hundred ninety-five'); INSERT INTO t1 VALUES(6413, 90916, 'ninety thousand nine hundred sixteen'); INSERT INTO t1 VALUES(6414, 67805, 'sixty-seven thousand eight hundred five'); INSERT INTO t1 VALUES(6415, 24900, 'twenty-four thousand nine hundred'); INSERT INTO t1 VALUES(6416, 75181, 'seventy-five thousand one hundred eighty-one'); INSERT INTO t1 VALUES(6417, 77366, 'seventy-seven thousand three hundred sixty-six'); INSERT INTO t1 VALUES(6418, 20206, 'twenty thousand two hundred six'); INSERT INTO t1 VALUES(6419, 15870, 'fifteen thousand eight hundred seventy'); INSERT INTO t1 VALUES(6420, 35851, 'thirty-five thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(6421, 22581, 'twenty-two thousand five hundred eighty-one'); INSERT INTO t1 VALUES(6422, 42718, 'forty-two thousand seven hundred eighteen'); INSERT INTO t1 VALUES(6423, 1868, 'one thousand eight hundred sixty-eight'); INSERT INTO t1 VALUES(6424, 93042, 'ninety-three thousand forty-two'); INSERT INTO t1 VALUES(6425, 581, 'five hundred eighty-one'); INSERT INTO t1 VALUES(6426, 45311, 'forty-five thousand three hundred eleven'); INSERT INTO t1 VALUES(6427, 24105, 'twenty-four thousand one hundred five'); INSERT INTO t1 VALUES(6428, 36553, 'thirty-six thousand five hundred fifty-three'); INSERT INTO t1 VALUES(6429, 3533, 'three thousand five hundred thirty-three'); INSERT INTO t1 VALUES(6430, 5500, 'five thousand five hundred'); INSERT INTO t1 VALUES(6431, 88211, 'eighty-eight thousand two hundred eleven'); INSERT INTO t1 VALUES(6432, 86845, 'eighty-six thousand eight hundred forty-five'); INSERT INTO t1 VALUES(6433, 46179, 'forty-six thousand one hundred seventy-nine'); INSERT INTO t1 VALUES(6434, 89033, 'eighty-nine thousand thirty-three'); INSERT INTO t1 VALUES(6435, 83573, 'eighty-three thousand five hundred seventy-three'); INSERT INTO t1 VALUES(6436, 97826, 'ninety-seven thousand eight hundred twenty-six'); INSERT INTO t1 VALUES(6437, 75421, 'seventy-five thousand four hundred twenty-one'); INSERT INTO t1 VALUES(6438, 15705, 'fifteen thousand seven hundred five'); INSERT INTO t1 VALUES(6439, 88535, 'eighty-eight thousand five hundred thirty-five'); INSERT INTO t1 VALUES(6440, 40410, 'forty thousand four hundred ten'); INSERT INTO t1 VALUES(6441, 849, 'eight hundred forty-nine'); INSERT INTO t1 VALUES(6442, 95486, 'ninety-five thousand four hundred eighty-six'); INSERT INTO t1 VALUES(6443, 52442, 'fifty-two thousand four hundred forty-two'); INSERT INTO t1 VALUES(6444, 40228, 'forty thousand two hundred twenty-eight'); INSERT INTO t1 VALUES(6445, 37958, 'thirty-seven thousand nine hundred fifty-eight'); INSERT INTO t1 VALUES(6446, 43012, 'forty-three thousand twelve'); INSERT INTO t1 VALUES(6447, 77587, 'seventy-seven thousand five hundred eighty-seven'); INSERT INTO t1 VALUES(6448, 68786, 'sixty-eight thousand seven hundred eighty-six'); INSERT INTO t1 VALUES(6449, 77629, 'seventy-seven thousand six hundred twenty-nine'); INSERT INTO t1 VALUES(6450, 28032, 'twenty-eight thousand thirty-two'); INSERT INTO t1 VALUES(6451, 18697, 'eighteen thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(6452, 36216, 'thirty-six thousand two hundred sixteen'); INSERT INTO t1 VALUES(6453, 26239, 'twenty-six thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(6454, 96458, 'ninety-six thousand four hundred fifty-eight'); INSERT INTO t1 VALUES(6455, 46662, 'forty-six thousand six hundred sixty-two'); INSERT INTO t1 VALUES(6456, 53114, 'fifty-three thousand one hundred fourteen'); INSERT INTO t1 VALUES(6457, 40794, 'forty thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(6458, 83221, 'eighty-three thousand two hundred twenty-one'); INSERT INTO t1 VALUES(6459, 80435, 'eighty thousand four hundred thirty-five'); INSERT INTO t1 VALUES(6460, 65039, 'sixty-five thousand thirty-nine'); INSERT INTO t1 VALUES(6461, 7447, 'seven thousand four hundred forty-seven'); INSERT INTO t1 VALUES(6462, 49944, 'forty-nine thousand nine hundred forty-four'); INSERT INTO t1 VALUES(6463, 92960, 'ninety-two thousand nine hundred sixty'); INSERT INTO t1 VALUES(6464, 47047, 'forty-seven thousand forty-seven'); INSERT INTO t1 VALUES(6465, 6292, 'six thousand two hundred ninety-two'); INSERT INTO t1 VALUES(6466, 2166, 'two thousand one hundred sixty-six'); INSERT INTO t1 VALUES(6467, 75009, 'seventy-five thousand nine'); INSERT INTO t1 VALUES(6468, 35621, 'thirty-five thousand six hundred twenty-one'); INSERT INTO t1 VALUES(6469, 77908, 'seventy-seven thousand nine hundred eight'); INSERT INTO t1 VALUES(6470, 35457, 'thirty-five thousand four hundred fifty-seven'); INSERT INTO t1 VALUES(6471, 31798, 'thirty-one thousand seven hundred ninety-eight'); INSERT INTO t1 VALUES(6472, 23772, 'twenty-three thousand seven hundred seventy-two'); INSERT INTO t1 VALUES(6473, 44888, 'forty-four thousand eight hundred eighty-eight'); INSERT INTO t1 VALUES(6474, 6788, 'six thousand seven hundred eighty-eight'); INSERT INTO t1 VALUES(6475, 19365, 'nineteen thousand three hundred sixty-five'); INSERT INTO t1 VALUES(6476, 84668, 'eighty-four thousand six hundred sixty-eight'); INSERT INTO t1 VALUES(6477, 95262, 'ninety-five thousand two hundred sixty-two'); INSERT INTO t1 VALUES(6478, 14317, 'fourteen thousand three hundred seventeen'); INSERT INTO t1 VALUES(6479, 62977, 'sixty-two thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(6480, 36967, 'thirty-six thousand nine hundred sixty-seven'); INSERT INTO t1 VALUES(6481, 63706, 'sixty-three thousand seven hundred six'); INSERT INTO t1 VALUES(6482, 58164, 'fifty-eight thousand one hundred sixty-four'); INSERT INTO t1 VALUES(6483, 31521, 'thirty-one thousand five hundred twenty-one'); INSERT INTO t1 VALUES(6484, 32644, 'thirty-two thousand six hundred forty-four'); INSERT INTO t1 VALUES(6485, 60359, 'sixty thousand three hundred fifty-nine'); INSERT INTO t1 VALUES(6486, 4826, 'four thousand eight hundred twenty-six'); INSERT INTO t1 VALUES(6487, 18041, 'eighteen thousand forty-one'); INSERT INTO t1 VALUES(6488, 17276, 'seventeen thousand two hundred seventy-six'); INSERT INTO t1 VALUES(6489, 11314, 'eleven thousand three hundred fourteen'); INSERT INTO t1 VALUES(6490, 79672, 'seventy-nine thousand six hundred seventy-two'); INSERT INTO t1 VALUES(6491, 48971, 'forty-eight thousand nine hundred seventy-one'); INSERT INTO t1 VALUES(6492, 9315, 'nine thousand three hundred fifteen'); INSERT INTO t1 VALUES(6493, 54703, 'fifty-four thousand seven hundred three'); INSERT INTO t1 VALUES(6494, 69359, 'sixty-nine thousand three hundred fifty-nine'); INSERT INTO t1 VALUES(6495, 80707, 'eighty thousand seven hundred seven'); INSERT INTO t1 VALUES(6496, 83672, 'eighty-three thousand six hundred seventy-two'); INSERT INTO t1 VALUES(6497, 15006, 'fifteen thousand six'); INSERT INTO t1 VALUES(6498, 10292, 'ten thousand two hundred ninety-two'); INSERT INTO t1 VALUES(6499, 18836, 'eighteen thousand eight hundred thirty-six'); INSERT INTO t1 VALUES(6500, 84300, 'eighty-four thousand three hundred'); INSERT INTO t1 VALUES(6501, 59324, 'fifty-nine thousand three hundred twenty-four'); INSERT INTO t1 VALUES(6502, 45438, 'forty-five thousand four hundred thirty-eight'); INSERT INTO t1 VALUES(6503, 32454, 'thirty-two thousand four hundred fifty-four'); INSERT INTO t1 VALUES(6504, 26878, 'twenty-six thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(6505, 28508, 'twenty-eight thousand five hundred eight'); INSERT INTO t1 VALUES(6506, 65092, 'sixty-five thousand ninety-two'); INSERT INTO t1 VALUES(6507, 71646, 'seventy-one thousand six hundred forty-six'); INSERT INTO t1 VALUES(6508, 33868, 'thirty-three thousand eight hundred sixty-eight'); INSERT INTO t1 VALUES(6509, 19281, 'nineteen thousand two hundred eighty-one'); INSERT INTO t1 VALUES(6510, 297, 'two hundred ninety-seven'); INSERT INTO t1 VALUES(6511, 43375, 'forty-three thousand three hundred seventy-five'); INSERT INTO t1 VALUES(6512, 87831, 'eighty-seven thousand eight hundred thirty-one'); INSERT INTO t1 VALUES(6513, 70988, 'seventy thousand nine hundred eighty-eight'); INSERT INTO t1 VALUES(6514, 68450, 'sixty-eight thousand four hundred fifty'); INSERT INTO t1 VALUES(6515, 45136, 'forty-five thousand one hundred thirty-six'); INSERT INTO t1 VALUES(6516, 1303, 'one thousand three hundred three'); INSERT INTO t1 VALUES(6517, 33621, 'thirty-three thousand six hundred twenty-one'); INSERT INTO t1 VALUES(6518, 27665, 'twenty-seven thousand six hundred sixty-five'); INSERT INTO t1 VALUES(6519, 22898, 'twenty-two thousand eight hundred ninety-eight'); INSERT INTO t1 VALUES(6520, 74371, 'seventy-four thousand three hundred seventy-one'); INSERT INTO t1 VALUES(6521, 3596, 'three thousand five hundred ninety-six'); INSERT INTO t1 VALUES(6522, 74725, 'seventy-four thousand seven hundred twenty-five'); INSERT INTO t1 VALUES(6523, 26039, 'twenty-six thousand thirty-nine'); INSERT INTO t1 VALUES(6524, 97083, 'ninety-seven thousand eighty-three'); INSERT INTO t1 VALUES(6525, 58167, 'fifty-eight thousand one hundred sixty-seven'); INSERT INTO t1 VALUES(6526, 97469, 'ninety-seven thousand four hundred sixty-nine'); INSERT INTO t1 VALUES(6527, 40010, 'forty thousand ten'); INSERT INTO t1 VALUES(6528, 73913, 'seventy-three thousand nine hundred thirteen'); INSERT INTO t1 VALUES(6529, 23600, 'twenty-three thousand six hundred'); INSERT INTO t1 VALUES(6530, 15064, 'fifteen thousand sixty-four'); INSERT INTO t1 VALUES(6531, 90309, 'ninety thousand three hundred nine'); INSERT INTO t1 VALUES(6532, 38533, 'thirty-eight thousand five hundred thirty-three'); INSERT INTO t1 VALUES(6533, 66822, 'sixty-six thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(6534, 80416, 'eighty thousand four hundred sixteen'); INSERT INTO t1 VALUES(6535, 56181, 'fifty-six thousand one hundred eighty-one'); INSERT INTO t1 VALUES(6536, 44722, 'forty-four thousand seven hundred twenty-two'); INSERT INTO t1 VALUES(6537, 3306, 'three thousand three hundred six'); INSERT INTO t1 VALUES(6538, 40989, 'forty thousand nine hundred eighty-nine'); INSERT INTO t1 VALUES(6539, 27387, 'twenty-seven thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(6540, 49399, 'forty-nine thousand three hundred ninety-nine'); INSERT INTO t1 VALUES(6541, 24086, 'twenty-four thousand eighty-six'); INSERT INTO t1 VALUES(6542, 7191, 'seven thousand one hundred ninety-one'); INSERT INTO t1 VALUES(6543, 97214, 'ninety-seven thousand two hundred fourteen'); INSERT INTO t1 VALUES(6544, 99188, 'ninety-nine thousand one hundred eighty-eight'); INSERT INTO t1 VALUES(6545, 85495, 'eighty-five thousand four hundred ninety-five'); INSERT INTO t1 VALUES(6546, 32045, 'thirty-two thousand forty-five'); INSERT INTO t1 VALUES(6547, 1781, 'one thousand seven hundred eighty-one'); INSERT INTO t1 VALUES(6548, 58101, 'fifty-eight thousand one hundred one'); INSERT INTO t1 VALUES(6549, 25033, 'twenty-five thousand thirty-three'); INSERT INTO t1 VALUES(6550, 80704, 'eighty thousand seven hundred four'); INSERT INTO t1 VALUES(6551, 73679, 'seventy-three thousand six hundred seventy-nine'); INSERT INTO t1 VALUES(6552, 28028, 'twenty-eight thousand twenty-eight'); INSERT INTO t1 VALUES(6553, 51823, 'fifty-one thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(6554, 42387, 'forty-two thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(6555, 34599, 'thirty-four thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(6556, 16896, 'sixteen thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(6557, 77857, 'seventy-seven thousand eight hundred fifty-seven'); INSERT INTO t1 VALUES(6558, 83547, 'eighty-three thousand five hundred forty-seven'); INSERT INTO t1 VALUES(6559, 62749, 'sixty-two thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(6560, 99924, 'ninety-nine thousand nine hundred twenty-four'); INSERT INTO t1 VALUES(6561, 82951, 'eighty-two thousand nine hundred fifty-one'); INSERT INTO t1 VALUES(6562, 81022, 'eighty-one thousand twenty-two'); INSERT INTO t1 VALUES(6563, 22793, 'twenty-two thousand seven hundred ninety-three'); INSERT INTO t1 VALUES(6564, 63088, 'sixty-three thousand eighty-eight'); INSERT INTO t1 VALUES(6565, 61980, 'sixty-one thousand nine hundred eighty'); INSERT INTO t1 VALUES(6566, 96013, 'ninety-six thousand thirteen'); INSERT INTO t1 VALUES(6567, 88398, 'eighty-eight thousand three hundred ninety-eight'); INSERT INTO t1 VALUES(6568, 63388, 'sixty-three thousand three hundred eighty-eight'); INSERT INTO t1 VALUES(6569, 9882, 'nine thousand eight hundred eighty-two'); INSERT INTO t1 VALUES(6570, 41889, 'forty-one thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(6571, 59308, 'fifty-nine thousand three hundred eight'); INSERT INTO t1 VALUES(6572, 27642, 'twenty-seven thousand six hundred forty-two'); INSERT INTO t1 VALUES(6573, 26151, 'twenty-six thousand one hundred fifty-one'); INSERT INTO t1 VALUES(6574, 91991, 'ninety-one thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(6575, 95809, 'ninety-five thousand eight hundred nine'); INSERT INTO t1 VALUES(6576, 75274, 'seventy-five thousand two hundred seventy-four'); INSERT INTO t1 VALUES(6577, 52402, 'fifty-two thousand four hundred two'); INSERT INTO t1 VALUES(6578, 43439, 'forty-three thousand four hundred thirty-nine'); INSERT INTO t1 VALUES(6579, 49921, 'forty-nine thousand nine hundred twenty-one'); INSERT INTO t1 VALUES(6580, 93898, 'ninety-three thousand eight hundred ninety-eight'); INSERT INTO t1 VALUES(6581, 72237, 'seventy-two thousand two hundred thirty-seven'); INSERT INTO t1 VALUES(6582, 38350, 'thirty-eight thousand three hundred fifty'); INSERT INTO t1 VALUES(6583, 28211, 'twenty-eight thousand two hundred eleven'); INSERT INTO t1 VALUES(6584, 99818, 'ninety-nine thousand eight hundred eighteen'); INSERT INTO t1 VALUES(6585, 55546, 'fifty-five thousand five hundred forty-six'); INSERT INTO t1 VALUES(6586, 27559, 'twenty-seven thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(6587, 39119, 'thirty-nine thousand one hundred nineteen'); INSERT INTO t1 VALUES(6588, 25306, 'twenty-five thousand three hundred six'); INSERT INTO t1 VALUES(6589, 22652, 'twenty-two thousand six hundred fifty-two'); INSERT INTO t1 VALUES(6590, 15046, 'fifteen thousand forty-six'); INSERT INTO t1 VALUES(6591, 93370, 'ninety-three thousand three hundred seventy'); INSERT INTO t1 VALUES(6592, 7582, 'seven thousand five hundred eighty-two'); INSERT INTO t1 VALUES(6593, 78790, 'seventy-eight thousand seven hundred ninety'); INSERT INTO t1 VALUES(6594, 61837, 'sixty-one thousand eight hundred thirty-seven'); INSERT INTO t1 VALUES(6595, 38786, 'thirty-eight thousand seven hundred eighty-six'); INSERT INTO t1 VALUES(6596, 7510, 'seven thousand five hundred ten'); INSERT INTO t1 VALUES(6597, 60252, 'sixty thousand two hundred fifty-two'); INSERT INTO t1 VALUES(6598, 10062, 'ten thousand sixty-two'); INSERT INTO t1 VALUES(6599, 81328, 'eighty-one thousand three hundred twenty-eight'); INSERT INTO t1 VALUES(6600, 1358, 'one thousand three hundred fifty-eight'); INSERT INTO t1 VALUES(6601, 16956, 'sixteen thousand nine hundred fifty-six'); INSERT INTO t1 VALUES(6602, 52383, 'fifty-two thousand three hundred eighty-three'); INSERT INTO t1 VALUES(6603, 15488, 'fifteen thousand four hundred eighty-eight'); INSERT INTO t1 VALUES(6604, 1589, 'one thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(6605, 43239, 'forty-three thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(6606, 87270, 'eighty-seven thousand two hundred seventy'); INSERT INTO t1 VALUES(6607, 39605, 'thirty-nine thousand six hundred five'); INSERT INTO t1 VALUES(6608, 1163, 'one thousand one hundred sixty-three'); INSERT INTO t1 VALUES(6609, 35468, 'thirty-five thousand four hundred sixty-eight'); INSERT INTO t1 VALUES(6610, 43003, 'forty-three thousand three'); INSERT INTO t1 VALUES(6611, 76320, 'seventy-six thousand three hundred twenty'); INSERT INTO t1 VALUES(6612, 37563, 'thirty-seven thousand five hundred sixty-three'); INSERT INTO t1 VALUES(6613, 77687, 'seventy-seven thousand six hundred eighty-seven'); INSERT INTO t1 VALUES(6614, 23590, 'twenty-three thousand five hundred ninety'); INSERT INTO t1 VALUES(6615, 50736, 'fifty thousand seven hundred thirty-six'); INSERT INTO t1 VALUES(6616, 2835, 'two thousand eight hundred thirty-five'); INSERT INTO t1 VALUES(6617, 90042, 'ninety thousand forty-two'); INSERT INTO t1 VALUES(6618, 40747, 'forty thousand seven hundred forty-seven'); INSERT INTO t1 VALUES(6619, 70187, 'seventy thousand one hundred eighty-seven'); INSERT INTO t1 VALUES(6620, 44024, 'forty-four thousand twenty-four'); INSERT INTO t1 VALUES(6621, 64027, 'sixty-four thousand twenty-seven'); INSERT INTO t1 VALUES(6622, 73420, 'seventy-three thousand four hundred twenty'); INSERT INTO t1 VALUES(6623, 76138, 'seventy-six thousand one hundred thirty-eight'); INSERT INTO t1 VALUES(6624, 26516, 'twenty-six thousand five hundred sixteen'); INSERT INTO t1 VALUES(6625, 35069, 'thirty-five thousand sixty-nine'); INSERT INTO t1 VALUES(6626, 54356, 'fifty-four thousand three hundred fifty-six'); INSERT INTO t1 VALUES(6627, 78623, 'seventy-eight thousand six hundred twenty-three'); INSERT INTO t1 VALUES(6628, 31258, 'thirty-one thousand two hundred fifty-eight'); INSERT INTO t1 VALUES(6629, 55607, 'fifty-five thousand six hundred seven'); INSERT INTO t1 VALUES(6630, 42885, 'forty-two thousand eight hundred eighty-five'); INSERT INTO t1 VALUES(6631, 80744, 'eighty thousand seven hundred forty-four'); INSERT INTO t1 VALUES(6632, 75472, 'seventy-five thousand four hundred seventy-two'); INSERT INTO t1 VALUES(6633, 4357, 'four thousand three hundred fifty-seven'); INSERT INTO t1 VALUES(6634, 51745, 'fifty-one thousand seven hundred forty-five'); INSERT INTO t1 VALUES(6635, 2119, 'two thousand one hundred nineteen'); INSERT INTO t1 VALUES(6636, 91843, 'ninety-one thousand eight hundred forty-three'); INSERT INTO t1 VALUES(6637, 77120, 'seventy-seven thousand one hundred twenty'); INSERT INTO t1 VALUES(6638, 20656, 'twenty thousand six hundred fifty-six'); INSERT INTO t1 VALUES(6639, 83190, 'eighty-three thousand one hundred ninety'); INSERT INTO t1 VALUES(6640, 58605, 'fifty-eight thousand six hundred five'); INSERT INTO t1 VALUES(6641, 99800, 'ninety-nine thousand eight hundred'); INSERT INTO t1 VALUES(6642, 22719, 'twenty-two thousand seven hundred nineteen'); INSERT INTO t1 VALUES(6643, 12605, 'twelve thousand six hundred five'); INSERT INTO t1 VALUES(6644, 50509, 'fifty thousand five hundred nine'); INSERT INTO t1 VALUES(6645, 59507, 'fifty-nine thousand five hundred seven'); INSERT INTO t1 VALUES(6646, 12212, 'twelve thousand two hundred twelve'); INSERT INTO t1 VALUES(6647, 95667, 'ninety-five thousand six hundred sixty-seven'); INSERT INTO t1 VALUES(6648, 4977, 'four thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(6649, 84136, 'eighty-four thousand one hundred thirty-six'); INSERT INTO t1 VALUES(6650, 47118, 'forty-seven thousand one hundred eighteen'); INSERT INTO t1 VALUES(6651, 8262, 'eight thousand two hundred sixty-two'); INSERT INTO t1 VALUES(6652, 94544, 'ninety-four thousand five hundred forty-four'); INSERT INTO t1 VALUES(6653, 16261, 'sixteen thousand two hundred sixty-one'); INSERT INTO t1 VALUES(6654, 51769, 'fifty-one thousand seven hundred sixty-nine'); INSERT INTO t1 VALUES(6655, 94679, 'ninety-four thousand six hundred seventy-nine'); INSERT INTO t1 VALUES(6656, 65739, 'sixty-five thousand seven hundred thirty-nine'); INSERT INTO t1 VALUES(6657, 29667, 'twenty-nine thousand six hundred sixty-seven'); INSERT INTO t1 VALUES(6658, 76059, 'seventy-six thousand fifty-nine'); INSERT INTO t1 VALUES(6659, 96960, 'ninety-six thousand nine hundred sixty'); INSERT INTO t1 VALUES(6660, 37265, 'thirty-seven thousand two hundred sixty-five'); INSERT INTO t1 VALUES(6661, 1375, 'one thousand three hundred seventy-five'); INSERT INTO t1 VALUES(6662, 47146, 'forty-seven thousand one hundred forty-six'); INSERT INTO t1 VALUES(6663, 81358, 'eighty-one thousand three hundred fifty-eight'); INSERT INTO t1 VALUES(6664, 38558, 'thirty-eight thousand five hundred fifty-eight'); INSERT INTO t1 VALUES(6665, 59850, 'fifty-nine thousand eight hundred fifty'); INSERT INTO t1 VALUES(6666, 21563, 'twenty-one thousand five hundred sixty-three'); INSERT INTO t1 VALUES(6667, 14524, 'fourteen thousand five hundred twenty-four'); INSERT INTO t1 VALUES(6668, 4709, 'four thousand seven hundred nine'); INSERT INTO t1 VALUES(6669, 47618, 'forty-seven thousand six hundred eighteen'); INSERT INTO t1 VALUES(6670, 85344, 'eighty-five thousand three hundred forty-four'); INSERT INTO t1 VALUES(6671, 79383, 'seventy-nine thousand three hundred eighty-three'); INSERT INTO t1 VALUES(6672, 13211, 'thirteen thousand two hundred eleven'); INSERT INTO t1 VALUES(6673, 53671, 'fifty-three thousand six hundred seventy-one'); INSERT INTO t1 VALUES(6674, 97563, 'ninety-seven thousand five hundred sixty-three'); INSERT INTO t1 VALUES(6675, 74112, 'seventy-four thousand one hundred twelve'); INSERT INTO t1 VALUES(6676, 35578, 'thirty-five thousand five hundred seventy-eight'); INSERT INTO t1 VALUES(6677, 24187, 'twenty-four thousand one hundred eighty-seven'); INSERT INTO t1 VALUES(6678, 7024, 'seven thousand twenty-four'); INSERT INTO t1 VALUES(6679, 7580, 'seven thousand five hundred eighty'); INSERT INTO t1 VALUES(6680, 56577, 'fifty-six thousand five hundred seventy-seven'); INSERT INTO t1 VALUES(6681, 71019, 'seventy-one thousand nineteen'); INSERT INTO t1 VALUES(6682, 10817, 'ten thousand eight hundred seventeen'); INSERT INTO t1 VALUES(6683, 94962, 'ninety-four thousand nine hundred sixty-two'); INSERT INTO t1 VALUES(6684, 27166, 'twenty-seven thousand one hundred sixty-six'); INSERT INTO t1 VALUES(6685, 15055, 'fifteen thousand fifty-five'); INSERT INTO t1 VALUES(6686, 46750, 'forty-six thousand seven hundred fifty'); INSERT INTO t1 VALUES(6687, 90858, 'ninety thousand eight hundred fifty-eight'); INSERT INTO t1 VALUES(6688, 78813, 'seventy-eight thousand eight hundred thirteen'); INSERT INTO t1 VALUES(6689, 70094, 'seventy thousand ninety-four'); INSERT INTO t1 VALUES(6690, 58568, 'fifty-eight thousand five hundred sixty-eight'); INSERT INTO t1 VALUES(6691, 97629, 'ninety-seven thousand six hundred twenty-nine'); INSERT INTO t1 VALUES(6692, 53349, 'fifty-three thousand three hundred forty-nine'); INSERT INTO t1 VALUES(6693, 43161, 'forty-three thousand one hundred sixty-one'); INSERT INTO t1 VALUES(6694, 80330, 'eighty thousand three hundred thirty'); INSERT INTO t1 VALUES(6695, 58268, 'fifty-eight thousand two hundred sixty-eight'); INSERT INTO t1 VALUES(6696, 53390, 'fifty-three thousand three hundred ninety'); INSERT INTO t1 VALUES(6697, 75945, 'seventy-five thousand nine hundred forty-five'); INSERT INTO t1 VALUES(6698, 28482, 'twenty-eight thousand four hundred eighty-two'); INSERT INTO t1 VALUES(6699, 32204, 'thirty-two thousand two hundred four'); INSERT INTO t1 VALUES(6700, 89729, 'eighty-nine thousand seven hundred twenty-nine'); INSERT INTO t1 VALUES(6701, 32177, 'thirty-two thousand one hundred seventy-seven'); INSERT INTO t1 VALUES(6702, 58153, 'fifty-eight thousand one hundred fifty-three'); INSERT INTO t1 VALUES(6703, 10353, 'ten thousand three hundred fifty-three'); INSERT INTO t1 VALUES(6704, 1205, 'one thousand two hundred five'); INSERT INTO t1 VALUES(6705, 24323, 'twenty-four thousand three hundred twenty-three'); INSERT INTO t1 VALUES(6706, 20289, 'twenty thousand two hundred eighty-nine'); INSERT INTO t1 VALUES(6707, 19444, 'nineteen thousand four hundred forty-four'); INSERT INTO t1 VALUES(6708, 54325, 'fifty-four thousand three hundred twenty-five'); INSERT INTO t1 VALUES(6709, 64779, 'sixty-four thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(6710, 43438, 'forty-three thousand four hundred thirty-eight'); INSERT INTO t1 VALUES(6711, 91721, 'ninety-one thousand seven hundred twenty-one'); INSERT INTO t1 VALUES(6712, 67641, 'sixty-seven thousand six hundred forty-one'); INSERT INTO t1 VALUES(6713, 72716, 'seventy-two thousand seven hundred sixteen'); INSERT INTO t1 VALUES(6714, 22118, 'twenty-two thousand one hundred eighteen'); INSERT INTO t1 VALUES(6715, 93224, 'ninety-three thousand two hundred twenty-four'); INSERT INTO t1 VALUES(6716, 13697, 'thirteen thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(6717, 54709, 'fifty-four thousand seven hundred nine'); INSERT INTO t1 VALUES(6718, 82002, 'eighty-two thousand two'); INSERT INTO t1 VALUES(6719, 30292, 'thirty thousand two hundred ninety-two'); INSERT INTO t1 VALUES(6720, 29501, 'twenty-nine thousand five hundred one'); INSERT INTO t1 VALUES(6721, 44960, 'forty-four thousand nine hundred sixty'); INSERT INTO t1 VALUES(6722, 51642, 'fifty-one thousand six hundred forty-two'); INSERT INTO t1 VALUES(6723, 12618, 'twelve thousand six hundred eighteen'); INSERT INTO t1 VALUES(6724, 6787, 'six thousand seven hundred eighty-seven'); INSERT INTO t1 VALUES(6725, 39158, 'thirty-nine thousand one hundred fifty-eight'); INSERT INTO t1 VALUES(6726, 55538, 'fifty-five thousand five hundred thirty-eight'); INSERT INTO t1 VALUES(6727, 30141, 'thirty thousand one hundred forty-one'); INSERT INTO t1 VALUES(6728, 34252, 'thirty-four thousand two hundred fifty-two'); INSERT INTO t1 VALUES(6729, 24907, 'twenty-four thousand nine hundred seven'); INSERT INTO t1 VALUES(6730, 49098, 'forty-nine thousand ninety-eight'); INSERT INTO t1 VALUES(6731, 65423, 'sixty-five thousand four hundred twenty-three'); INSERT INTO t1 VALUES(6732, 78541, 'seventy-eight thousand five hundred forty-one'); INSERT INTO t1 VALUES(6733, 17061, 'seventeen thousand sixty-one'); INSERT INTO t1 VALUES(6734, 10479, 'ten thousand four hundred seventy-nine'); INSERT INTO t1 VALUES(6735, 53892, 'fifty-three thousand eight hundred ninety-two'); INSERT INTO t1 VALUES(6736, 72766, 'seventy-two thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(6737, 3554, 'three thousand five hundred fifty-four'); INSERT INTO t1 VALUES(6738, 69312, 'sixty-nine thousand three hundred twelve'); INSERT INTO t1 VALUES(6739, 38210, 'thirty-eight thousand two hundred ten'); INSERT INTO t1 VALUES(6740, 26569, 'twenty-six thousand five hundred sixty-nine'); INSERT INTO t1 VALUES(6741, 31859, 'thirty-one thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(6742, 83701, 'eighty-three thousand seven hundred one'); INSERT INTO t1 VALUES(6743, 37555, 'thirty-seven thousand five hundred fifty-five'); INSERT INTO t1 VALUES(6744, 29849, 'twenty-nine thousand eight hundred forty-nine'); INSERT INTO t1 VALUES(6745, 23944, 'twenty-three thousand nine hundred forty-four'); INSERT INTO t1 VALUES(6746, 76995, 'seventy-six thousand nine hundred ninety-five'); INSERT INTO t1 VALUES(6747, 99633, 'ninety-nine thousand six hundred thirty-three'); INSERT INTO t1 VALUES(6748, 30368, 'thirty thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(6749, 86748, 'eighty-six thousand seven hundred forty-eight'); INSERT INTO t1 VALUES(6750, 98313, 'ninety-eight thousand three hundred thirteen'); INSERT INTO t1 VALUES(6751, 68542, 'sixty-eight thousand five hundred forty-two'); INSERT INTO t1 VALUES(6752, 72674, 'seventy-two thousand six hundred seventy-four'); INSERT INTO t1 VALUES(6753, 88948, 'eighty-eight thousand nine hundred forty-eight'); INSERT INTO t1 VALUES(6754, 8125, 'eight thousand one hundred twenty-five'); INSERT INTO t1 VALUES(6755, 67538, 'sixty-seven thousand five hundred thirty-eight'); INSERT INTO t1 VALUES(6756, 65630, 'sixty-five thousand six hundred thirty'); INSERT INTO t1 VALUES(6757, 82634, 'eighty-two thousand six hundred thirty-four'); INSERT INTO t1 VALUES(6758, 22706, 'twenty-two thousand seven hundred six'); INSERT INTO t1 VALUES(6759, 50630, 'fifty thousand six hundred thirty'); INSERT INTO t1 VALUES(6760, 28110, 'twenty-eight thousand one hundred ten'); INSERT INTO t1 VALUES(6761, 3211, 'three thousand two hundred eleven'); INSERT INTO t1 VALUES(6762, 36122, 'thirty-six thousand one hundred twenty-two'); INSERT INTO t1 VALUES(6763, 71851, 'seventy-one thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(6764, 35323, 'thirty-five thousand three hundred twenty-three'); INSERT INTO t1 VALUES(6765, 15588, 'fifteen thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(6766, 87098, 'eighty-seven thousand ninety-eight'); INSERT INTO t1 VALUES(6767, 57819, 'fifty-seven thousand eight hundred nineteen'); INSERT INTO t1 VALUES(6768, 55472, 'fifty-five thousand four hundred seventy-two'); INSERT INTO t1 VALUES(6769, 31226, 'thirty-one thousand two hundred twenty-six'); INSERT INTO t1 VALUES(6770, 24937, 'twenty-four thousand nine hundred thirty-seven'); INSERT INTO t1 VALUES(6771, 64166, 'sixty-four thousand one hundred sixty-six'); INSERT INTO t1 VALUES(6772, 7179, 'seven thousand one hundred seventy-nine'); INSERT INTO t1 VALUES(6773, 96764, 'ninety-six thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(6774, 65799, 'sixty-five thousand seven hundred ninety-nine'); INSERT INTO t1 VALUES(6775, 21617, 'twenty-one thousand six hundred seventeen'); INSERT INTO t1 VALUES(6776, 62459, 'sixty-two thousand four hundred fifty-nine'); INSERT INTO t1 VALUES(6777, 51876, 'fifty-one thousand eight hundred seventy-six'); INSERT INTO t1 VALUES(6778, 63688, 'sixty-three thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(6779, 6326, 'six thousand three hundred twenty-six'); INSERT INTO t1 VALUES(6780, 25839, 'twenty-five thousand eight hundred thirty-nine'); INSERT INTO t1 VALUES(6781, 45071, 'forty-five thousand seventy-one'); INSERT INTO t1 VALUES(6782, 45887, 'forty-five thousand eight hundred eighty-seven'); INSERT INTO t1 VALUES(6783, 70383, 'seventy thousand three hundred eighty-three'); INSERT INTO t1 VALUES(6784, 89372, 'eighty-nine thousand three hundred seventy-two'); INSERT INTO t1 VALUES(6785, 42549, 'forty-two thousand five hundred forty-nine'); INSERT INTO t1 VALUES(6786, 95111, 'ninety-five thousand one hundred eleven'); INSERT INTO t1 VALUES(6787, 46990, 'forty-six thousand nine hundred ninety'); INSERT INTO t1 VALUES(6788, 64382, 'sixty-four thousand three hundred eighty-two'); INSERT INTO t1 VALUES(6789, 2110, 'two thousand one hundred ten'); INSERT INTO t1 VALUES(6790, 821, 'eight hundred twenty-one'); INSERT INTO t1 VALUES(6791, 12838, 'twelve thousand eight hundred thirty-eight'); INSERT INTO t1 VALUES(6792, 70215, 'seventy thousand two hundred fifteen'); INSERT INTO t1 VALUES(6793, 37883, 'thirty-seven thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(6794, 36922, 'thirty-six thousand nine hundred twenty-two'); INSERT INTO t1 VALUES(6795, 99574, 'ninety-nine thousand five hundred seventy-four'); INSERT INTO t1 VALUES(6796, 90968, 'ninety thousand nine hundred sixty-eight'); INSERT INTO t1 VALUES(6797, 89336, 'eighty-nine thousand three hundred thirty-six'); INSERT INTO t1 VALUES(6798, 87759, 'eighty-seven thousand seven hundred fifty-nine'); INSERT INTO t1 VALUES(6799, 78523, 'seventy-eight thousand five hundred twenty-three'); INSERT INTO t1 VALUES(6800, 78593, 'seventy-eight thousand five hundred ninety-three'); INSERT INTO t1 VALUES(6801, 17498, 'seventeen thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(6802, 61353, 'sixty-one thousand three hundred fifty-three'); INSERT INTO t1 VALUES(6803, 81414, 'eighty-one thousand four hundred fourteen'); INSERT INTO t1 VALUES(6804, 22284, 'twenty-two thousand two hundred eighty-four'); INSERT INTO t1 VALUES(6805, 92279, 'ninety-two thousand two hundred seventy-nine'); INSERT INTO t1 VALUES(6806, 85181, 'eighty-five thousand one hundred eighty-one'); INSERT INTO t1 VALUES(6807, 67754, 'sixty-seven thousand seven hundred fifty-four'); INSERT INTO t1 VALUES(6808, 57097, 'fifty-seven thousand ninety-seven'); INSERT INTO t1 VALUES(6809, 93930, 'ninety-three thousand nine hundred thirty'); INSERT INTO t1 VALUES(6810, 21190, 'twenty-one thousand one hundred ninety'); INSERT INTO t1 VALUES(6811, 95057, 'ninety-five thousand fifty-seven'); INSERT INTO t1 VALUES(6812, 44563, 'forty-four thousand five hundred sixty-three'); INSERT INTO t1 VALUES(6813, 19216, 'nineteen thousand two hundred sixteen'); INSERT INTO t1 VALUES(6814, 36215, 'thirty-six thousand two hundred fifteen'); INSERT INTO t1 VALUES(6815, 40643, 'forty thousand six hundred forty-three'); INSERT INTO t1 VALUES(6816, 11662, 'eleven thousand six hundred sixty-two'); INSERT INTO t1 VALUES(6817, 73384, 'seventy-three thousand three hundred eighty-four'); INSERT INTO t1 VALUES(6818, 92198, 'ninety-two thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(6819, 84971, 'eighty-four thousand nine hundred seventy-one'); INSERT INTO t1 VALUES(6820, 48060, 'forty-eight thousand sixty'); INSERT INTO t1 VALUES(6821, 49523, 'forty-nine thousand five hundred twenty-three'); INSERT INTO t1 VALUES(6822, 52716, 'fifty-two thousand seven hundred sixteen'); INSERT INTO t1 VALUES(6823, 59742, 'fifty-nine thousand seven hundred forty-two'); INSERT INTO t1 VALUES(6824, 39936, 'thirty-nine thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(6825, 28728, 'twenty-eight thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(6826, 87649, 'eighty-seven thousand six hundred forty-nine'); INSERT INTO t1 VALUES(6827, 32313, 'thirty-two thousand three hundred thirteen'); INSERT INTO t1 VALUES(6828, 77819, 'seventy-seven thousand eight hundred nineteen'); INSERT INTO t1 VALUES(6829, 9094, 'nine thousand ninety-four'); INSERT INTO t1 VALUES(6830, 78662, 'seventy-eight thousand six hundred sixty-two'); INSERT INTO t1 VALUES(6831, 6159, 'six thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(6832, 52796, 'fifty-two thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(6833, 12459, 'twelve thousand four hundred fifty-nine'); INSERT INTO t1 VALUES(6834, 39884, 'thirty-nine thousand eight hundred eighty-four'); INSERT INTO t1 VALUES(6835, 74910, 'seventy-four thousand nine hundred ten'); INSERT INTO t1 VALUES(6836, 55808, 'fifty-five thousand eight hundred eight'); INSERT INTO t1 VALUES(6837, 18408, 'eighteen thousand four hundred eight'); INSERT INTO t1 VALUES(6838, 74842, 'seventy-four thousand eight hundred forty-two'); INSERT INTO t1 VALUES(6839, 73162, 'seventy-three thousand one hundred sixty-two'); INSERT INTO t1 VALUES(6840, 26433, 'twenty-six thousand four hundred thirty-three'); INSERT INTO t1 VALUES(6841, 630, 'six hundred thirty'); INSERT INTO t1 VALUES(6842, 29287, 'twenty-nine thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(6843, 3033, 'three thousand thirty-three'); INSERT INTO t1 VALUES(6844, 5537, 'five thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(6845, 11561, 'eleven thousand five hundred sixty-one'); INSERT INTO t1 VALUES(6846, 9436, 'nine thousand four hundred thirty-six'); INSERT INTO t1 VALUES(6847, 19405, 'nineteen thousand four hundred five'); INSERT INTO t1 VALUES(6848, 85120, 'eighty-five thousand one hundred twenty'); INSERT INTO t1 VALUES(6849, 6654, 'six thousand six hundred fifty-four'); INSERT INTO t1 VALUES(6850, 17880, 'seventeen thousand eight hundred eighty'); INSERT INTO t1 VALUES(6851, 83326, 'eighty-three thousand three hundred twenty-six'); INSERT INTO t1 VALUES(6852, 58398, 'fifty-eight thousand three hundred ninety-eight'); INSERT INTO t1 VALUES(6853, 71431, 'seventy-one thousand four hundred thirty-one'); INSERT INTO t1 VALUES(6854, 53333, 'fifty-three thousand three hundred thirty-three'); INSERT INTO t1 VALUES(6855, 8634, 'eight thousand six hundred thirty-four'); INSERT INTO t1 VALUES(6856, 50417, 'fifty thousand four hundred seventeen'); INSERT INTO t1 VALUES(6857, 70080, 'seventy thousand eighty'); INSERT INTO t1 VALUES(6858, 75388, 'seventy-five thousand three hundred eighty-eight'); INSERT INTO t1 VALUES(6859, 44879, 'forty-four thousand eight hundred seventy-nine'); INSERT INTO t1 VALUES(6860, 93071, 'ninety-three thousand seventy-one'); INSERT INTO t1 VALUES(6861, 84253, 'eighty-four thousand two hundred fifty-three'); INSERT INTO t1 VALUES(6862, 49375, 'forty-nine thousand three hundred seventy-five'); INSERT INTO t1 VALUES(6863, 98533, 'ninety-eight thousand five hundred thirty-three'); INSERT INTO t1 VALUES(6864, 37207, 'thirty-seven thousand two hundred seven'); INSERT INTO t1 VALUES(6865, 90814, 'ninety thousand eight hundred fourteen'); INSERT INTO t1 VALUES(6866, 43139, 'forty-three thousand one hundred thirty-nine'); INSERT INTO t1 VALUES(6867, 57896, 'fifty-seven thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(6868, 57613, 'fifty-seven thousand six hundred thirteen'); INSERT INTO t1 VALUES(6869, 28841, 'twenty-eight thousand eight hundred forty-one'); INSERT INTO t1 VALUES(6870, 67039, 'sixty-seven thousand thirty-nine'); INSERT INTO t1 VALUES(6871, 50296, 'fifty thousand two hundred ninety-six'); INSERT INTO t1 VALUES(6872, 51421, 'fifty-one thousand four hundred twenty-one'); INSERT INTO t1 VALUES(6873, 4360, 'four thousand three hundred sixty'); INSERT INTO t1 VALUES(6874, 27162, 'twenty-seven thousand one hundred sixty-two'); INSERT INTO t1 VALUES(6875, 4951, 'four thousand nine hundred fifty-one'); INSERT INTO t1 VALUES(6876, 66115, 'sixty-six thousand one hundred fifteen'); INSERT INTO t1 VALUES(6877, 39134, 'thirty-nine thousand one hundred thirty-four'); INSERT INTO t1 VALUES(6878, 88194, 'eighty-eight thousand one hundred ninety-four'); INSERT INTO t1 VALUES(6879, 6052, 'six thousand fifty-two'); INSERT INTO t1 VALUES(6880, 77924, 'seventy-seven thousand nine hundred twenty-four'); INSERT INTO t1 VALUES(6881, 9569, 'nine thousand five hundred sixty-nine'); INSERT INTO t1 VALUES(6882, 52064, 'fifty-two thousand sixty-four'); INSERT INTO t1 VALUES(6883, 45777, 'forty-five thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(6884, 55166, 'fifty-five thousand one hundred sixty-six'); INSERT INTO t1 VALUES(6885, 72978, 'seventy-two thousand nine hundred seventy-eight'); INSERT INTO t1 VALUES(6886, 56114, 'fifty-six thousand one hundred fourteen'); INSERT INTO t1 VALUES(6887, 27004, 'twenty-seven thousand four'); INSERT INTO t1 VALUES(6888, 78789, 'seventy-eight thousand seven hundred eighty-nine'); INSERT INTO t1 VALUES(6889, 95061, 'ninety-five thousand sixty-one'); INSERT INTO t1 VALUES(6890, 60819, 'sixty thousand eight hundred nineteen'); INSERT INTO t1 VALUES(6891, 39046, 'thirty-nine thousand forty-six'); INSERT INTO t1 VALUES(6892, 9837, 'nine thousand eight hundred thirty-seven'); INSERT INTO t1 VALUES(6893, 42409, 'forty-two thousand four hundred nine'); INSERT INTO t1 VALUES(6894, 73726, 'seventy-three thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(6895, 90259, 'ninety thousand two hundred fifty-nine'); INSERT INTO t1 VALUES(6896, 24288, 'twenty-four thousand two hundred eighty-eight'); INSERT INTO t1 VALUES(6897, 79446, 'seventy-nine thousand four hundred forty-six'); INSERT INTO t1 VALUES(6898, 10047, 'ten thousand forty-seven'); INSERT INTO t1 VALUES(6899, 27702, 'twenty-seven thousand seven hundred two'); INSERT INTO t1 VALUES(6900, 90746, 'ninety thousand seven hundred forty-six'); INSERT INTO t1 VALUES(6901, 74781, 'seventy-four thousand seven hundred eighty-one'); INSERT INTO t1 VALUES(6902, 81133, 'eighty-one thousand one hundred thirty-three'); INSERT INTO t1 VALUES(6903, 94386, 'ninety-four thousand three hundred eighty-six'); INSERT INTO t1 VALUES(6904, 68842, 'sixty-eight thousand eight hundred forty-two'); INSERT INTO t1 VALUES(6905, 41623, 'forty-one thousand six hundred twenty-three'); INSERT INTO t1 VALUES(6906, 33473, 'thirty-three thousand four hundred seventy-three'); INSERT INTO t1 VALUES(6907, 52116, 'fifty-two thousand one hundred sixteen'); INSERT INTO t1 VALUES(6908, 39270, 'thirty-nine thousand two hundred seventy'); INSERT INTO t1 VALUES(6909, 74631, 'seventy-four thousand six hundred thirty-one'); INSERT INTO t1 VALUES(6910, 74800, 'seventy-four thousand eight hundred'); INSERT INTO t1 VALUES(6911, 53573, 'fifty-three thousand five hundred seventy-three'); INSERT INTO t1 VALUES(6912, 38899, 'thirty-eight thousand eight hundred ninety-nine'); INSERT INTO t1 VALUES(6913, 91968, 'ninety-one thousand nine hundred sixty-eight'); INSERT INTO t1 VALUES(6914, 19260, 'nineteen thousand two hundred sixty'); INSERT INTO t1 VALUES(6915, 95021, 'ninety-five thousand twenty-one'); INSERT INTO t1 VALUES(6916, 92229, 'ninety-two thousand two hundred twenty-nine'); INSERT INTO t1 VALUES(6917, 98586, 'ninety-eight thousand five hundred eighty-six'); INSERT INTO t1 VALUES(6918, 15114, 'fifteen thousand one hundred fourteen'); INSERT INTO t1 VALUES(6919, 18424, 'eighteen thousand four hundred twenty-four'); INSERT INTO t1 VALUES(6920, 33115, 'thirty-three thousand one hundred fifteen'); INSERT INTO t1 VALUES(6921, 79149, 'seventy-nine thousand one hundred forty-nine'); INSERT INTO t1 VALUES(6922, 35707, 'thirty-five thousand seven hundred seven'); INSERT INTO t1 VALUES(6923, 53181, 'fifty-three thousand one hundred eighty-one'); INSERT INTO t1 VALUES(6924, 55152, 'fifty-five thousand one hundred fifty-two'); INSERT INTO t1 VALUES(6925, 59889, 'fifty-nine thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(6926, 36371, 'thirty-six thousand three hundred seventy-one'); INSERT INTO t1 VALUES(6927, 34855, 'thirty-four thousand eight hundred fifty-five'); INSERT INTO t1 VALUES(6928, 45769, 'forty-five thousand seven hundred sixty-nine'); INSERT INTO t1 VALUES(6929, 12207, 'twelve thousand two hundred seven'); INSERT INTO t1 VALUES(6930, 48313, 'forty-eight thousand three hundred thirteen'); INSERT INTO t1 VALUES(6931, 47830, 'forty-seven thousand eight hundred thirty'); INSERT INTO t1 VALUES(6932, 36390, 'thirty-six thousand three hundred ninety'); INSERT INTO t1 VALUES(6933, 33510, 'thirty-three thousand five hundred ten'); INSERT INTO t1 VALUES(6934, 38816, 'thirty-eight thousand eight hundred sixteen'); INSERT INTO t1 VALUES(6935, 7221, 'seven thousand two hundred twenty-one'); INSERT INTO t1 VALUES(6936, 34183, 'thirty-four thousand one hundred eighty-three'); INSERT INTO t1 VALUES(6937, 30500, 'thirty thousand five hundred'); INSERT INTO t1 VALUES(6938, 86099, 'eighty-six thousand ninety-nine'); INSERT INTO t1 VALUES(6939, 92760, 'ninety-two thousand seven hundred sixty'); INSERT INTO t1 VALUES(6940, 54986, 'fifty-four thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(6941, 86065, 'eighty-six thousand sixty-five'); INSERT INTO t1 VALUES(6942, 65675, 'sixty-five thousand six hundred seventy-five'); INSERT INTO t1 VALUES(6943, 47637, 'forty-seven thousand six hundred thirty-seven'); INSERT INTO t1 VALUES(6944, 95916, 'ninety-five thousand nine hundred sixteen'); INSERT INTO t1 VALUES(6945, 82599, 'eighty-two thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(6946, 87124, 'eighty-seven thousand one hundred twenty-four'); INSERT INTO t1 VALUES(6947, 47867, 'forty-seven thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(6948, 68932, 'sixty-eight thousand nine hundred thirty-two'); INSERT INTO t1 VALUES(6949, 99060, 'ninety-nine thousand sixty'); INSERT INTO t1 VALUES(6950, 8079, 'eight thousand seventy-nine'); INSERT INTO t1 VALUES(6951, 98688, 'ninety-eight thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(6952, 23264, 'twenty-three thousand two hundred sixty-four'); INSERT INTO t1 VALUES(6953, 21861, 'twenty-one thousand eight hundred sixty-one'); INSERT INTO t1 VALUES(6954, 15723, 'fifteen thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(6955, 54246, 'fifty-four thousand two hundred forty-six'); INSERT INTO t1 VALUES(6956, 4449, 'four thousand four hundred forty-nine'); INSERT INTO t1 VALUES(6957, 43330, 'forty-three thousand three hundred thirty'); INSERT INTO t1 VALUES(6958, 55037, 'fifty-five thousand thirty-seven'); INSERT INTO t1 VALUES(6959, 62970, 'sixty-two thousand nine hundred seventy'); INSERT INTO t1 VALUES(6960, 18791, 'eighteen thousand seven hundred ninety-one'); INSERT INTO t1 VALUES(6961, 90982, 'ninety thousand nine hundred eighty-two'); INSERT INTO t1 VALUES(6962, 98414, 'ninety-eight thousand four hundred fourteen'); INSERT INTO t1 VALUES(6963, 74839, 'seventy-four thousand eight hundred thirty-nine'); INSERT INTO t1 VALUES(6964, 25538, 'twenty-five thousand five hundred thirty-eight'); INSERT INTO t1 VALUES(6965, 49139, 'forty-nine thousand one hundred thirty-nine'); INSERT INTO t1 VALUES(6966, 61282, 'sixty-one thousand two hundred eighty-two'); INSERT INTO t1 VALUES(6967, 20645, 'twenty thousand six hundred forty-five'); INSERT INTO t1 VALUES(6968, 68356, 'sixty-eight thousand three hundred fifty-six'); INSERT INTO t1 VALUES(6969, 46392, 'forty-six thousand three hundred ninety-two'); INSERT INTO t1 VALUES(6970, 4648, 'four thousand six hundred forty-eight'); INSERT INTO t1 VALUES(6971, 93824, 'ninety-three thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(6972, 95668, 'ninety-five thousand six hundred sixty-eight'); INSERT INTO t1 VALUES(6973, 2198, 'two thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(6974, 82064, 'eighty-two thousand sixty-four'); INSERT INTO t1 VALUES(6975, 37286, 'thirty-seven thousand two hundred eighty-six'); INSERT INTO t1 VALUES(6976, 121, 'one hundred twenty-one'); INSERT INTO t1 VALUES(6977, 2019, 'two thousand nineteen'); INSERT INTO t1 VALUES(6978, 42863, 'forty-two thousand eight hundred sixty-three'); INSERT INTO t1 VALUES(6979, 71907, 'seventy-one thousand nine hundred seven'); INSERT INTO t1 VALUES(6980, 19172, 'nineteen thousand one hundred seventy-two'); INSERT INTO t1 VALUES(6981, 7343, 'seven thousand three hundred forty-three'); INSERT INTO t1 VALUES(6982, 85226, 'eighty-five thousand two hundred twenty-six'); INSERT INTO t1 VALUES(6983, 73500, 'seventy-three thousand five hundred'); INSERT INTO t1 VALUES(6984, 18428, 'eighteen thousand four hundred twenty-eight'); INSERT INTO t1 VALUES(6985, 88879, 'eighty-eight thousand eight hundred seventy-nine'); INSERT INTO t1 VALUES(6986, 28151, 'twenty-eight thousand one hundred fifty-one'); INSERT INTO t1 VALUES(6987, 55671, 'fifty-five thousand six hundred seventy-one'); INSERT INTO t1 VALUES(6988, 32604, 'thirty-two thousand six hundred four'); INSERT INTO t1 VALUES(6989, 22021, 'twenty-two thousand twenty-one'); INSERT INTO t1 VALUES(6990, 84456, 'eighty-four thousand four hundred fifty-six'); INSERT INTO t1 VALUES(6991, 88354, 'eighty-eight thousand three hundred fifty-four'); INSERT INTO t1 VALUES(6992, 41882, 'forty-one thousand eight hundred eighty-two'); INSERT INTO t1 VALUES(6993, 55635, 'fifty-five thousand six hundred thirty-five'); INSERT INTO t1 VALUES(6994, 26020, 'twenty-six thousand twenty'); INSERT INTO t1 VALUES(6995, 64164, 'sixty-four thousand one hundred sixty-four'); INSERT INTO t1 VALUES(6996, 9256, 'nine thousand two hundred fifty-six'); INSERT INTO t1 VALUES(6997, 26108, 'twenty-six thousand one hundred eight'); INSERT INTO t1 VALUES(6998, 35526, 'thirty-five thousand five hundred twenty-six'); INSERT INTO t1 VALUES(6999, 23377, 'twenty-three thousand three hundred seventy-seven'); INSERT INTO t1 VALUES(7000, 43242, 'forty-three thousand two hundred forty-two'); INSERT INTO t1 VALUES(7001, 89326, 'eighty-nine thousand three hundred twenty-six'); INSERT INTO t1 VALUES(7002, 15986, 'fifteen thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(7003, 39220, 'thirty-nine thousand two hundred twenty'); INSERT INTO t1 VALUES(7004, 48765, 'forty-eight thousand seven hundred sixty-five'); INSERT INTO t1 VALUES(7005, 61844, 'sixty-one thousand eight hundred forty-four'); INSERT INTO t1 VALUES(7006, 25492, 'twenty-five thousand four hundred ninety-two'); INSERT INTO t1 VALUES(7007, 10653, 'ten thousand six hundred fifty-three'); INSERT INTO t1 VALUES(7008, 15146, 'fifteen thousand one hundred forty-six'); INSERT INTO t1 VALUES(7009, 71673, 'seventy-one thousand six hundred seventy-three'); INSERT INTO t1 VALUES(7010, 43122, 'forty-three thousand one hundred twenty-two'); INSERT INTO t1 VALUES(7011, 69009, 'sixty-nine thousand nine'); INSERT INTO t1 VALUES(7012, 45939, 'forty-five thousand nine hundred thirty-nine'); INSERT INTO t1 VALUES(7013, 64018, 'sixty-four thousand eighteen'); INSERT INTO t1 VALUES(7014, 52343, 'fifty-two thousand three hundred forty-three'); INSERT INTO t1 VALUES(7015, 29574, 'twenty-nine thousand five hundred seventy-four'); INSERT INTO t1 VALUES(7016, 42764, 'forty-two thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(7017, 9496, 'nine thousand four hundred ninety-six'); INSERT INTO t1 VALUES(7018, 93770, 'ninety-three thousand seven hundred seventy'); INSERT INTO t1 VALUES(7019, 99334, 'ninety-nine thousand three hundred thirty-four'); INSERT INTO t1 VALUES(7020, 45434, 'forty-five thousand four hundred thirty-four'); INSERT INTO t1 VALUES(7021, 73681, 'seventy-three thousand six hundred eighty-one'); INSERT INTO t1 VALUES(7022, 40642, 'forty thousand six hundred forty-two'); INSERT INTO t1 VALUES(7023, 73020, 'seventy-three thousand twenty'); INSERT INTO t1 VALUES(7024, 79617, 'seventy-nine thousand six hundred seventeen'); INSERT INTO t1 VALUES(7025, 32215, 'thirty-two thousand two hundred fifteen'); INSERT INTO t1 VALUES(7026, 74617, 'seventy-four thousand six hundred seventeen'); INSERT INTO t1 VALUES(7027, 12934, 'twelve thousand nine hundred thirty-four'); INSERT INTO t1 VALUES(7028, 31779, 'thirty-one thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(7029, 46623, 'forty-six thousand six hundred twenty-three'); INSERT INTO t1 VALUES(7030, 3312, 'three thousand three hundred twelve'); INSERT INTO t1 VALUES(7031, 79775, 'seventy-nine thousand seven hundred seventy-five'); INSERT INTO t1 VALUES(7032, 84027, 'eighty-four thousand twenty-seven'); INSERT INTO t1 VALUES(7033, 92004, 'ninety-two thousand four'); INSERT INTO t1 VALUES(7034, 14671, 'fourteen thousand six hundred seventy-one'); INSERT INTO t1 VALUES(7035, 68045, 'sixty-eight thousand forty-five'); INSERT INTO t1 VALUES(7036, 44043, 'forty-four thousand forty-three'); INSERT INTO t1 VALUES(7037, 10474, 'ten thousand four hundred seventy-four'); INSERT INTO t1 VALUES(7038, 95447, 'ninety-five thousand four hundred forty-seven'); INSERT INTO t1 VALUES(7039, 28801, 'twenty-eight thousand eight hundred one'); INSERT INTO t1 VALUES(7040, 179, 'one hundred seventy-nine'); INSERT INTO t1 VALUES(7041, 67562, 'sixty-seven thousand five hundred sixty-two'); INSERT INTO t1 VALUES(7042, 80776, 'eighty thousand seven hundred seventy-six'); INSERT INTO t1 VALUES(7043, 69712, 'sixty-nine thousand seven hundred twelve'); INSERT INTO t1 VALUES(7044, 75407, 'seventy-five thousand four hundred seven'); INSERT INTO t1 VALUES(7045, 46166, 'forty-six thousand one hundred sixty-six'); INSERT INTO t1 VALUES(7046, 58588, 'fifty-eight thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(7047, 43718, 'forty-three thousand seven hundred eighteen'); INSERT INTO t1 VALUES(7048, 30121, 'thirty thousand one hundred twenty-one'); INSERT INTO t1 VALUES(7049, 81710, 'eighty-one thousand seven hundred ten'); INSERT INTO t1 VALUES(7050, 44905, 'forty-four thousand nine hundred five'); INSERT INTO t1 VALUES(7051, 42136, 'forty-two thousand one hundred thirty-six'); INSERT INTO t1 VALUES(7052, 68554, 'sixty-eight thousand five hundred fifty-four'); INSERT INTO t1 VALUES(7053, 34161, 'thirty-four thousand one hundred sixty-one'); INSERT INTO t1 VALUES(7054, 36953, 'thirty-six thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(7055, 90564, 'ninety thousand five hundred sixty-four'); INSERT INTO t1 VALUES(7056, 43198, 'forty-three thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(7057, 30675, 'thirty thousand six hundred seventy-five'); INSERT INTO t1 VALUES(7058, 60912, 'sixty thousand nine hundred twelve'); INSERT INTO t1 VALUES(7059, 79521, 'seventy-nine thousand five hundred twenty-one'); INSERT INTO t1 VALUES(7060, 66485, 'sixty-six thousand four hundred eighty-five'); INSERT INTO t1 VALUES(7061, 50561, 'fifty thousand five hundred sixty-one'); INSERT INTO t1 VALUES(7062, 47433, 'forty-seven thousand four hundred thirty-three'); INSERT INTO t1 VALUES(7063, 33569, 'thirty-three thousand five hundred sixty-nine'); INSERT INTO t1 VALUES(7064, 19729, 'nineteen thousand seven hundred twenty-nine'); INSERT INTO t1 VALUES(7065, 27836, 'twenty-seven thousand eight hundred thirty-six'); INSERT INTO t1 VALUES(7066, 94287, 'ninety-four thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(7067, 23115, 'twenty-three thousand one hundred fifteen'); INSERT INTO t1 VALUES(7068, 87840, 'eighty-seven thousand eight hundred forty'); INSERT INTO t1 VALUES(7069, 34100, 'thirty-four thousand one hundred'); INSERT INTO t1 VALUES(7070, 34332, 'thirty-four thousand three hundred thirty-two'); INSERT INTO t1 VALUES(7071, 38941, 'thirty-eight thousand nine hundred forty-one'); INSERT INTO t1 VALUES(7072, 91367, 'ninety-one thousand three hundred sixty-seven'); INSERT INTO t1 VALUES(7073, 53933, 'fifty-three thousand nine hundred thirty-three'); INSERT INTO t1 VALUES(7074, 48223, 'forty-eight thousand two hundred twenty-three'); INSERT INTO t1 VALUES(7075, 55787, 'fifty-five thousand seven hundred eighty-seven'); INSERT INTO t1 VALUES(7076, 94453, 'ninety-four thousand four hundred fifty-three'); INSERT INTO t1 VALUES(7077, 82216, 'eighty-two thousand two hundred sixteen'); INSERT INTO t1 VALUES(7078, 17912, 'seventeen thousand nine hundred twelve'); INSERT INTO t1 VALUES(7079, 13616, 'thirteen thousand six hundred sixteen'); INSERT INTO t1 VALUES(7080, 46718, 'forty-six thousand seven hundred eighteen'); INSERT INTO t1 VALUES(7081, 60695, 'sixty thousand six hundred ninety-five'); INSERT INTO t1 VALUES(7082, 26089, 'twenty-six thousand eighty-nine'); INSERT INTO t1 VALUES(7083, 7672, 'seven thousand six hundred seventy-two'); INSERT INTO t1 VALUES(7084, 27994, 'twenty-seven thousand nine hundred ninety-four'); INSERT INTO t1 VALUES(7085, 62653, 'sixty-two thousand six hundred fifty-three'); INSERT INTO t1 VALUES(7086, 60597, 'sixty thousand five hundred ninety-seven'); INSERT INTO t1 VALUES(7087, 62851, 'sixty-two thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(7088, 25918, 'twenty-five thousand nine hundred eighteen'); INSERT INTO t1 VALUES(7089, 13109, 'thirteen thousand one hundred nine'); INSERT INTO t1 VALUES(7090, 16308, 'sixteen thousand three hundred eight'); INSERT INTO t1 VALUES(7091, 73261, 'seventy-three thousand two hundred sixty-one'); INSERT INTO t1 VALUES(7092, 80907, 'eighty thousand nine hundred seven'); INSERT INTO t1 VALUES(7093, 13550, 'thirteen thousand five hundred fifty'); INSERT INTO t1 VALUES(7094, 73770, 'seventy-three thousand seven hundred seventy'); INSERT INTO t1 VALUES(7095, 99471, 'ninety-nine thousand four hundred seventy-one'); INSERT INTO t1 VALUES(7096, 50033, 'fifty thousand thirty-three'); INSERT INTO t1 VALUES(7097, 59912, 'fifty-nine thousand nine hundred twelve'); INSERT INTO t1 VALUES(7098, 98932, 'ninety-eight thousand nine hundred thirty-two'); INSERT INTO t1 VALUES(7099, 63933, 'sixty-three thousand nine hundred thirty-three'); INSERT INTO t1 VALUES(7100, 26495, 'twenty-six thousand four hundred ninety-five'); INSERT INTO t1 VALUES(7101, 8686, 'eight thousand six hundred eighty-six'); INSERT INTO t1 VALUES(7102, 77159, 'seventy-seven thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(7103, 79891, 'seventy-nine thousand eight hundred ninety-one'); INSERT INTO t1 VALUES(7104, 79883, 'seventy-nine thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(7105, 56301, 'fifty-six thousand three hundred one'); INSERT INTO t1 VALUES(7106, 18543, 'eighteen thousand five hundred forty-three'); INSERT INTO t1 VALUES(7107, 76106, 'seventy-six thousand one hundred six'); INSERT INTO t1 VALUES(7108, 8420, 'eight thousand four hundred twenty'); INSERT INTO t1 VALUES(7109, 65310, 'sixty-five thousand three hundred ten'); INSERT INTO t1 VALUES(7110, 86316, 'eighty-six thousand three hundred sixteen'); INSERT INTO t1 VALUES(7111, 80414, 'eighty thousand four hundred fourteen'); INSERT INTO t1 VALUES(7112, 5593, 'five thousand five hundred ninety-three'); INSERT INTO t1 VALUES(7113, 79955, 'seventy-nine thousand nine hundred fifty-five'); INSERT INTO t1 VALUES(7114, 70454, 'seventy thousand four hundred fifty-four'); INSERT INTO t1 VALUES(7115, 31408, 'thirty-one thousand four hundred eight'); INSERT INTO t1 VALUES(7116, 35948, 'thirty-five thousand nine hundred forty-eight'); INSERT INTO t1 VALUES(7117, 62936, 'sixty-two thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(7118, 17335, 'seventeen thousand three hundred thirty-five'); INSERT INTO t1 VALUES(7119, 11683, 'eleven thousand six hundred eighty-three'); INSERT INTO t1 VALUES(7120, 66028, 'sixty-six thousand twenty-eight'); INSERT INTO t1 VALUES(7121, 89986, 'eighty-nine thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(7122, 56224, 'fifty-six thousand two hundred twenty-four'); INSERT INTO t1 VALUES(7123, 73077, 'seventy-three thousand seventy-seven'); INSERT INTO t1 VALUES(7124, 68408, 'sixty-eight thousand four hundred eight'); INSERT INTO t1 VALUES(7125, 89996, 'eighty-nine thousand nine hundred ninety-six'); INSERT INTO t1 VALUES(7126, 58081, 'fifty-eight thousand eighty-one'); INSERT INTO t1 VALUES(7127, 29390, 'twenty-nine thousand three hundred ninety'); INSERT INTO t1 VALUES(7128, 7504, 'seven thousand five hundred four'); INSERT INTO t1 VALUES(7129, 62857, 'sixty-two thousand eight hundred fifty-seven'); INSERT INTO t1 VALUES(7130, 46988, 'forty-six thousand nine hundred eighty-eight'); INSERT INTO t1 VALUES(7131, 86728, 'eighty-six thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(7132, 35805, 'thirty-five thousand eight hundred five'); INSERT INTO t1 VALUES(7133, 11333, 'eleven thousand three hundred thirty-three'); INSERT INTO t1 VALUES(7134, 9987, 'nine thousand nine hundred eighty-seven'); INSERT INTO t1 VALUES(7135, 84633, 'eighty-four thousand six hundred thirty-three'); INSERT INTO t1 VALUES(7136, 50649, 'fifty thousand six hundred forty-nine'); INSERT INTO t1 VALUES(7137, 6508, 'six thousand five hundred eight'); INSERT INTO t1 VALUES(7138, 2137, 'two thousand one hundred thirty-seven'); INSERT INTO t1 VALUES(7139, 33917, 'thirty-three thousand nine hundred seventeen'); INSERT INTO t1 VALUES(7140, 38405, 'thirty-eight thousand four hundred five'); INSERT INTO t1 VALUES(7141, 12813, 'twelve thousand eight hundred thirteen'); INSERT INTO t1 VALUES(7142, 76439, 'seventy-six thousand four hundred thirty-nine'); INSERT INTO t1 VALUES(7143, 16410, 'sixteen thousand four hundred ten'); INSERT INTO t1 VALUES(7144, 20476, 'twenty thousand four hundred seventy-six'); INSERT INTO t1 VALUES(7145, 71596, 'seventy-one thousand five hundred ninety-six'); INSERT INTO t1 VALUES(7146, 88474, 'eighty-eight thousand four hundred seventy-four'); INSERT INTO t1 VALUES(7147, 45988, 'forty-five thousand nine hundred eighty-eight'); INSERT INTO t1 VALUES(7148, 705, 'seven hundred five'); INSERT INTO t1 VALUES(7149, 35623, 'thirty-five thousand six hundred twenty-three'); INSERT INTO t1 VALUES(7150, 18974, 'eighteen thousand nine hundred seventy-four'); INSERT INTO t1 VALUES(7151, 31458, 'thirty-one thousand four hundred fifty-eight'); INSERT INTO t1 VALUES(7152, 14888, 'fourteen thousand eight hundred eighty-eight'); INSERT INTO t1 VALUES(7153, 17587, 'seventeen thousand five hundred eighty-seven'); INSERT INTO t1 VALUES(7154, 27595, 'twenty-seven thousand five hundred ninety-five'); INSERT INTO t1 VALUES(7155, 8106, 'eight thousand one hundred six'); INSERT INTO t1 VALUES(7156, 13240, 'thirteen thousand two hundred forty'); INSERT INTO t1 VALUES(7157, 55504, 'fifty-five thousand five hundred four'); INSERT INTO t1 VALUES(7158, 53717, 'fifty-three thousand seven hundred seventeen'); INSERT INTO t1 VALUES(7159, 74827, 'seventy-four thousand eight hundred twenty-seven'); INSERT INTO t1 VALUES(7160, 81954, 'eighty-one thousand nine hundred fifty-four'); INSERT INTO t1 VALUES(7161, 83333, 'eighty-three thousand three hundred thirty-three'); INSERT INTO t1 VALUES(7162, 95068, 'ninety-five thousand sixty-eight'); INSERT INTO t1 VALUES(7163, 14466, 'fourteen thousand four hundred sixty-six'); INSERT INTO t1 VALUES(7164, 65831, 'sixty-five thousand eight hundred thirty-one'); INSERT INTO t1 VALUES(7165, 94966, 'ninety-four thousand nine hundred sixty-six'); INSERT INTO t1 VALUES(7166, 47802, 'forty-seven thousand eight hundred two'); INSERT INTO t1 VALUES(7167, 53228, 'fifty-three thousand two hundred twenty-eight'); INSERT INTO t1 VALUES(7168, 81156, 'eighty-one thousand one hundred fifty-six'); INSERT INTO t1 VALUES(7169, 95883, 'ninety-five thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(7170, 26167, 'twenty-six thousand one hundred sixty-seven'); INSERT INTO t1 VALUES(7171, 99575, 'ninety-nine thousand five hundred seventy-five'); INSERT INTO t1 VALUES(7172, 61617, 'sixty-one thousand six hundred seventeen'); INSERT INTO t1 VALUES(7173, 21467, 'twenty-one thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(7174, 53907, 'fifty-three thousand nine hundred seven'); INSERT INTO t1 VALUES(7175, 17209, 'seventeen thousand two hundred nine'); INSERT INTO t1 VALUES(7176, 56077, 'fifty-six thousand seventy-seven'); INSERT INTO t1 VALUES(7177, 41600, 'forty-one thousand six hundred'); INSERT INTO t1 VALUES(7178, 74434, 'seventy-four thousand four hundred thirty-four'); INSERT INTO t1 VALUES(7179, 74927, 'seventy-four thousand nine hundred twenty-seven'); INSERT INTO t1 VALUES(7180, 23701, 'twenty-three thousand seven hundred one'); INSERT INTO t1 VALUES(7181, 18960, 'eighteen thousand nine hundred sixty'); INSERT INTO t1 VALUES(7182, 60417, 'sixty thousand four hundred seventeen'); INSERT INTO t1 VALUES(7183, 21258, 'twenty-one thousand two hundred fifty-eight'); INSERT INTO t1 VALUES(7184, 77405, 'seventy-seven thousand four hundred five'); INSERT INTO t1 VALUES(7185, 93159, 'ninety-three thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(7186, 6331, 'six thousand three hundred thirty-one'); INSERT INTO t1 VALUES(7187, 62302, 'sixty-two thousand three hundred two'); INSERT INTO t1 VALUES(7188, 19954, 'nineteen thousand nine hundred fifty-four'); INSERT INTO t1 VALUES(7189, 71974, 'seventy-one thousand nine hundred seventy-four'); INSERT INTO t1 VALUES(7190, 5855, 'five thousand eight hundred fifty-five'); INSERT INTO t1 VALUES(7191, 7850, 'seven thousand eight hundred fifty'); INSERT INTO t1 VALUES(7192, 97764, 'ninety-seven thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(7193, 83222, 'eighty-three thousand two hundred twenty-two'); INSERT INTO t1 VALUES(7194, 99708, 'ninety-nine thousand seven hundred eight'); INSERT INTO t1 VALUES(7195, 79723, 'seventy-nine thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(7196, 73922, 'seventy-three thousand nine hundred twenty-two'); INSERT INTO t1 VALUES(7197, 81158, 'eighty-one thousand one hundred fifty-eight'); INSERT INTO t1 VALUES(7198, 68513, 'sixty-eight thousand five hundred thirteen'); INSERT INTO t1 VALUES(7199, 31779, 'thirty-one thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(7200, 62374, 'sixty-two thousand three hundred seventy-four'); INSERT INTO t1 VALUES(7201, 29750, 'twenty-nine thousand seven hundred fifty'); INSERT INTO t1 VALUES(7202, 26112, 'twenty-six thousand one hundred twelve'); INSERT INTO t1 VALUES(7203, 42054, 'forty-two thousand fifty-four'); INSERT INTO t1 VALUES(7204, 49429, 'forty-nine thousand four hundred twenty-nine'); INSERT INTO t1 VALUES(7205, 54725, 'fifty-four thousand seven hundred twenty-five'); INSERT INTO t1 VALUES(7206, 62162, 'sixty-two thousand one hundred sixty-two'); INSERT INTO t1 VALUES(7207, 79014, 'seventy-nine thousand fourteen'); INSERT INTO t1 VALUES(7208, 62519, 'sixty-two thousand five hundred nineteen'); INSERT INTO t1 VALUES(7209, 55054, 'fifty-five thousand fifty-four'); INSERT INTO t1 VALUES(7210, 45171, 'forty-five thousand one hundred seventy-one'); INSERT INTO t1 VALUES(7211, 18103, 'eighteen thousand one hundred three'); INSERT INTO t1 VALUES(7212, 60978, 'sixty thousand nine hundred seventy-eight'); INSERT INTO t1 VALUES(7213, 41846, 'forty-one thousand eight hundred forty-six'); INSERT INTO t1 VALUES(7214, 62113, 'sixty-two thousand one hundred thirteen'); INSERT INTO t1 VALUES(7215, 54430, 'fifty-four thousand four hundred thirty'); INSERT INTO t1 VALUES(7216, 7644, 'seven thousand six hundred forty-four'); INSERT INTO t1 VALUES(7217, 15536, 'fifteen thousand five hundred thirty-six'); INSERT INTO t1 VALUES(7218, 36538, 'thirty-six thousand five hundred thirty-eight'); INSERT INTO t1 VALUES(7219, 16581, 'sixteen thousand five hundred eighty-one'); INSERT INTO t1 VALUES(7220, 49906, 'forty-nine thousand nine hundred six'); INSERT INTO t1 VALUES(7221, 52131, 'fifty-two thousand one hundred thirty-one'); INSERT INTO t1 VALUES(7222, 7873, 'seven thousand eight hundred seventy-three'); INSERT INTO t1 VALUES(7223, 25798, 'twenty-five thousand seven hundred ninety-eight'); INSERT INTO t1 VALUES(7224, 18312, 'eighteen thousand three hundred twelve'); INSERT INTO t1 VALUES(7225, 21322, 'twenty-one thousand three hundred twenty-two'); INSERT INTO t1 VALUES(7226, 47391, 'forty-seven thousand three hundred ninety-one'); INSERT INTO t1 VALUES(7227, 8472, 'eight thousand four hundred seventy-two'); INSERT INTO t1 VALUES(7228, 2555, 'two thousand five hundred fifty-five'); INSERT INTO t1 VALUES(7229, 13930, 'thirteen thousand nine hundred thirty'); INSERT INTO t1 VALUES(7230, 84289, 'eighty-four thousand two hundred eighty-nine'); INSERT INTO t1 VALUES(7231, 83741, 'eighty-three thousand seven hundred forty-one'); INSERT INTO t1 VALUES(7232, 84653, 'eighty-four thousand six hundred fifty-three'); INSERT INTO t1 VALUES(7233, 42671, 'forty-two thousand six hundred seventy-one'); INSERT INTO t1 VALUES(7234, 672, 'six hundred seventy-two'); INSERT INTO t1 VALUES(7235, 94579, 'ninety-four thousand five hundred seventy-nine'); INSERT INTO t1 VALUES(7236, 69020, 'sixty-nine thousand twenty'); INSERT INTO t1 VALUES(7237, 95586, 'ninety-five thousand five hundred eighty-six'); INSERT INTO t1 VALUES(7238, 6851, 'six thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(7239, 30607, 'thirty thousand six hundred seven'); INSERT INTO t1 VALUES(7240, 46380, 'forty-six thousand three hundred eighty'); INSERT INTO t1 VALUES(7241, 50651, 'fifty thousand six hundred fifty-one'); INSERT INTO t1 VALUES(7242, 6083, 'six thousand eighty-three'); INSERT INTO t1 VALUES(7243, 77603, 'seventy-seven thousand six hundred three'); INSERT INTO t1 VALUES(7244, 76572, 'seventy-six thousand five hundred seventy-two'); INSERT INTO t1 VALUES(7245, 8688, 'eight thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(7246, 82117, 'eighty-two thousand one hundred seventeen'); INSERT INTO t1 VALUES(7247, 17768, 'seventeen thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(7248, 49806, 'forty-nine thousand eight hundred six'); INSERT INTO t1 VALUES(7249, 51631, 'fifty-one thousand six hundred thirty-one'); INSERT INTO t1 VALUES(7250, 24773, 'twenty-four thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(7251, 57567, 'fifty-seven thousand five hundred sixty-seven'); INSERT INTO t1 VALUES(7252, 70557, 'seventy thousand five hundred fifty-seven'); INSERT INTO t1 VALUES(7253, 63932, 'sixty-three thousand nine hundred thirty-two'); INSERT INTO t1 VALUES(7254, 51336, 'fifty-one thousand three hundred thirty-six'); INSERT INTO t1 VALUES(7255, 72683, 'seventy-two thousand six hundred eighty-three'); INSERT INTO t1 VALUES(7256, 1635, 'one thousand six hundred thirty-five'); INSERT INTO t1 VALUES(7257, 50423, 'fifty thousand four hundred twenty-three'); INSERT INTO t1 VALUES(7258, 80955, 'eighty thousand nine hundred fifty-five'); INSERT INTO t1 VALUES(7259, 96432, 'ninety-six thousand four hundred thirty-two'); INSERT INTO t1 VALUES(7260, 95473, 'ninety-five thousand four hundred seventy-three'); INSERT INTO t1 VALUES(7261, 93594, 'ninety-three thousand five hundred ninety-four'); INSERT INTO t1 VALUES(7262, 58481, 'fifty-eight thousand four hundred eighty-one'); INSERT INTO t1 VALUES(7263, 1007, 'one thousand seven'); INSERT INTO t1 VALUES(7264, 18550, 'eighteen thousand five hundred fifty'); INSERT INTO t1 VALUES(7265, 87364, 'eighty-seven thousand three hundred sixty-four'); INSERT INTO t1 VALUES(7266, 35999, 'thirty-five thousand nine hundred ninety-nine'); INSERT INTO t1 VALUES(7267, 6634, 'six thousand six hundred thirty-four'); INSERT INTO t1 VALUES(7268, 56120, 'fifty-six thousand one hundred twenty'); INSERT INTO t1 VALUES(7269, 79273, 'seventy-nine thousand two hundred seventy-three'); INSERT INTO t1 VALUES(7270, 56007, 'fifty-six thousand seven'); INSERT INTO t1 VALUES(7271, 5408, 'five thousand four hundred eight'); INSERT INTO t1 VALUES(7272, 84537, 'eighty-four thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(7273, 90179, 'ninety thousand one hundred seventy-nine'); INSERT INTO t1 VALUES(7274, 85796, 'eighty-five thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(7275, 87525, 'eighty-seven thousand five hundred twenty-five'); INSERT INTO t1 VALUES(7276, 46263, 'forty-six thousand two hundred sixty-three'); INSERT INTO t1 VALUES(7277, 94421, 'ninety-four thousand four hundred twenty-one'); INSERT INTO t1 VALUES(7278, 56210, 'fifty-six thousand two hundred ten'); INSERT INTO t1 VALUES(7279, 25962, 'twenty-five thousand nine hundred sixty-two'); INSERT INTO t1 VALUES(7280, 45198, 'forty-five thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(7281, 92526, 'ninety-two thousand five hundred twenty-six'); INSERT INTO t1 VALUES(7282, 28067, 'twenty-eight thousand sixty-seven'); INSERT INTO t1 VALUES(7283, 30228, 'thirty thousand two hundred twenty-eight'); INSERT INTO t1 VALUES(7284, 55532, 'fifty-five thousand five hundred thirty-two'); INSERT INTO t1 VALUES(7285, 48123, 'forty-eight thousand one hundred twenty-three'); INSERT INTO t1 VALUES(7286, 79431, 'seventy-nine thousand four hundred thirty-one'); INSERT INTO t1 VALUES(7287, 33769, 'thirty-three thousand seven hundred sixty-nine'); INSERT INTO t1 VALUES(7288, 77785, 'seventy-seven thousand seven hundred eighty-five'); INSERT INTO t1 VALUES(7289, 23842, 'twenty-three thousand eight hundred forty-two'); INSERT INTO t1 VALUES(7290, 23223, 'twenty-three thousand two hundred twenty-three'); INSERT INTO t1 VALUES(7291, 33242, 'thirty-three thousand two hundred forty-two'); INSERT INTO t1 VALUES(7292, 17052, 'seventeen thousand fifty-two'); INSERT INTO t1 VALUES(7293, 2660, 'two thousand six hundred sixty'); INSERT INTO t1 VALUES(7294, 15976, 'fifteen thousand nine hundred seventy-six'); INSERT INTO t1 VALUES(7295, 24588, 'twenty-four thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(7296, 75667, 'seventy-five thousand six hundred sixty-seven'); INSERT INTO t1 VALUES(7297, 88516, 'eighty-eight thousand five hundred sixteen'); INSERT INTO t1 VALUES(7298, 54849, 'fifty-four thousand eight hundred forty-nine'); INSERT INTO t1 VALUES(7299, 84588, 'eighty-four thousand five hundred eighty-eight'); INSERT INTO t1 VALUES(7300, 82111, 'eighty-two thousand one hundred eleven'); INSERT INTO t1 VALUES(7301, 89035, 'eighty-nine thousand thirty-five'); INSERT INTO t1 VALUES(7302, 17230, 'seventeen thousand two hundred thirty'); INSERT INTO t1 VALUES(7303, 70949, 'seventy thousand nine hundred forty-nine'); INSERT INTO t1 VALUES(7304, 61705, 'sixty-one thousand seven hundred five'); INSERT INTO t1 VALUES(7305, 96689, 'ninety-six thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(7306, 60559, 'sixty thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(7307, 69191, 'sixty-nine thousand one hundred ninety-one'); INSERT INTO t1 VALUES(7308, 40483, 'forty thousand four hundred eighty-three'); INSERT INTO t1 VALUES(7309, 16053, 'sixteen thousand fifty-three'); INSERT INTO t1 VALUES(7310, 85466, 'eighty-five thousand four hundred sixty-six'); INSERT INTO t1 VALUES(7311, 78546, 'seventy-eight thousand five hundred forty-six'); INSERT INTO t1 VALUES(7312, 32731, 'thirty-two thousand seven hundred thirty-one'); INSERT INTO t1 VALUES(7313, 25143, 'twenty-five thousand one hundred forty-three'); INSERT INTO t1 VALUES(7314, 17306, 'seventeen thousand three hundred six'); INSERT INTO t1 VALUES(7315, 54136, 'fifty-four thousand one hundred thirty-six'); INSERT INTO t1 VALUES(7316, 90275, 'ninety thousand two hundred seventy-five'); INSERT INTO t1 VALUES(7317, 4848, 'four thousand eight hundred forty-eight'); INSERT INTO t1 VALUES(7318, 17630, 'seventeen thousand six hundred thirty'); INSERT INTO t1 VALUES(7319, 56699, 'fifty-six thousand six hundred ninety-nine'); INSERT INTO t1 VALUES(7320, 46570, 'forty-six thousand five hundred seventy'); INSERT INTO t1 VALUES(7321, 53933, 'fifty-three thousand nine hundred thirty-three'); INSERT INTO t1 VALUES(7322, 32684, 'thirty-two thousand six hundred eighty-four'); INSERT INTO t1 VALUES(7323, 24280, 'twenty-four thousand two hundred eighty'); INSERT INTO t1 VALUES(7324, 76206, 'seventy-six thousand two hundred six'); INSERT INTO t1 VALUES(7325, 66327, 'sixty-six thousand three hundred twenty-seven'); INSERT INTO t1 VALUES(7326, 64029, 'sixty-four thousand twenty-nine'); INSERT INTO t1 VALUES(7327, 55156, 'fifty-five thousand one hundred fifty-six'); INSERT INTO t1 VALUES(7328, 43786, 'forty-three thousand seven hundred eighty-six'); INSERT INTO t1 VALUES(7329, 44238, 'forty-four thousand two hundred thirty-eight'); INSERT INTO t1 VALUES(7330, 48915, 'forty-eight thousand nine hundred fifteen'); INSERT INTO t1 VALUES(7331, 50677, 'fifty thousand six hundred seventy-seven'); INSERT INTO t1 VALUES(7332, 87305, 'eighty-seven thousand three hundred five'); INSERT INTO t1 VALUES(7333, 93253, 'ninety-three thousand two hundred fifty-three'); INSERT INTO t1 VALUES(7334, 86313, 'eighty-six thousand three hundred thirteen'); INSERT INTO t1 VALUES(7335, 38673, 'thirty-eight thousand six hundred seventy-three'); INSERT INTO t1 VALUES(7336, 61736, 'sixty-one thousand seven hundred thirty-six'); INSERT INTO t1 VALUES(7337, 65243, 'sixty-five thousand two hundred forty-three'); INSERT INTO t1 VALUES(7338, 32982, 'thirty-two thousand nine hundred eighty-two'); INSERT INTO t1 VALUES(7339, 91285, 'ninety-one thousand two hundred eighty-five'); INSERT INTO t1 VALUES(7340, 50713, 'fifty thousand seven hundred thirteen'); INSERT INTO t1 VALUES(7341, 7280, 'seven thousand two hundred eighty'); INSERT INTO t1 VALUES(7342, 99273, 'ninety-nine thousand two hundred seventy-three'); INSERT INTO t1 VALUES(7343, 6018, 'six thousand eighteen'); INSERT INTO t1 VALUES(7344, 99, 'ninety-nine'); INSERT INTO t1 VALUES(7345, 62094, 'sixty-two thousand ninety-four'); INSERT INTO t1 VALUES(7346, 13079, 'thirteen thousand seventy-nine'); INSERT INTO t1 VALUES(7347, 22284, 'twenty-two thousand two hundred eighty-four'); INSERT INTO t1 VALUES(7348, 42082, 'forty-two thousand eighty-two'); INSERT INTO t1 VALUES(7349, 64061, 'sixty-four thousand sixty-one'); INSERT INTO t1 VALUES(7350, 11897, 'eleven thousand eight hundred ninety-seven'); INSERT INTO t1 VALUES(7351, 35388, 'thirty-five thousand three hundred eighty-eight'); INSERT INTO t1 VALUES(7352, 11829, 'eleven thousand eight hundred twenty-nine'); INSERT INTO t1 VALUES(7353, 36809, 'thirty-six thousand eight hundred nine'); INSERT INTO t1 VALUES(7354, 65539, 'sixty-five thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(7355, 79054, 'seventy-nine thousand fifty-four'); INSERT INTO t1 VALUES(7356, 44317, 'forty-four thousand three hundred seventeen'); INSERT INTO t1 VALUES(7357, 24825, 'twenty-four thousand eight hundred twenty-five'); INSERT INTO t1 VALUES(7358, 62143, 'sixty-two thousand one hundred forty-three'); INSERT INTO t1 VALUES(7359, 83150, 'eighty-three thousand one hundred fifty'); INSERT INTO t1 VALUES(7360, 49689, 'forty-nine thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(7361, 98022, 'ninety-eight thousand twenty-two'); INSERT INTO t1 VALUES(7362, 6739, 'six thousand seven hundred thirty-nine'); INSERT INTO t1 VALUES(7363, 87872, 'eighty-seven thousand eight hundred seventy-two'); INSERT INTO t1 VALUES(7364, 57346, 'fifty-seven thousand three hundred forty-six'); INSERT INTO t1 VALUES(7365, 49761, 'forty-nine thousand seven hundred sixty-one'); INSERT INTO t1 VALUES(7366, 62, 'sixty-two'); INSERT INTO t1 VALUES(7367, 33337, 'thirty-three thousand three hundred thirty-seven'); INSERT INTO t1 VALUES(7368, 99440, 'ninety-nine thousand four hundred forty'); INSERT INTO t1 VALUES(7369, 65844, 'sixty-five thousand eight hundred forty-four'); INSERT INTO t1 VALUES(7370, 13449, 'thirteen thousand four hundred forty-nine'); INSERT INTO t1 VALUES(7371, 7289, 'seven thousand two hundred eighty-nine'); INSERT INTO t1 VALUES(7372, 68549, 'sixty-eight thousand five hundred forty-nine'); INSERT INTO t1 VALUES(7373, 55423, 'fifty-five thousand four hundred twenty-three'); INSERT INTO t1 VALUES(7374, 17079, 'seventeen thousand seventy-nine'); INSERT INTO t1 VALUES(7375, 68338, 'sixty-eight thousand three hundred thirty-eight'); INSERT INTO t1 VALUES(7376, 71234, 'seventy-one thousand two hundred thirty-four'); INSERT INTO t1 VALUES(7377, 46659, 'forty-six thousand six hundred fifty-nine'); INSERT INTO t1 VALUES(7378, 5933, 'five thousand nine hundred thirty-three'); INSERT INTO t1 VALUES(7379, 26086, 'twenty-six thousand eighty-six'); INSERT INTO t1 VALUES(7380, 91029, 'ninety-one thousand twenty-nine'); INSERT INTO t1 VALUES(7381, 24920, 'twenty-four thousand nine hundred twenty'); INSERT INTO t1 VALUES(7382, 83583, 'eighty-three thousand five hundred eighty-three'); INSERT INTO t1 VALUES(7383, 38731, 'thirty-eight thousand seven hundred thirty-one'); INSERT INTO t1 VALUES(7384, 30317, 'thirty thousand three hundred seventeen'); INSERT INTO t1 VALUES(7385, 48466, 'forty-eight thousand four hundred sixty-six'); INSERT INTO t1 VALUES(7386, 80255, 'eighty thousand two hundred fifty-five'); INSERT INTO t1 VALUES(7387, 80871, 'eighty thousand eight hundred seventy-one'); INSERT INTO t1 VALUES(7388, 50007, 'fifty thousand seven'); INSERT INTO t1 VALUES(7389, 55429, 'fifty-five thousand four hundred twenty-nine'); INSERT INTO t1 VALUES(7390, 21518, 'twenty-one thousand five hundred eighteen'); INSERT INTO t1 VALUES(7391, 73480, 'seventy-three thousand four hundred eighty'); INSERT INTO t1 VALUES(7392, 70286, 'seventy thousand two hundred eighty-six'); INSERT INTO t1 VALUES(7393, 22061, 'twenty-two thousand sixty-one'); INSERT INTO t1 VALUES(7394, 75626, 'seventy-five thousand six hundred twenty-six'); INSERT INTO t1 VALUES(7395, 17842, 'seventeen thousand eight hundred forty-two'); INSERT INTO t1 VALUES(7396, 93107, 'ninety-three thousand one hundred seven'); INSERT INTO t1 VALUES(7397, 93105, 'ninety-three thousand one hundred five'); INSERT INTO t1 VALUES(7398, 79558, 'seventy-nine thousand five hundred fifty-eight'); INSERT INTO t1 VALUES(7399, 17672, 'seventeen thousand six hundred seventy-two'); INSERT INTO t1 VALUES(7400, 45485, 'forty-five thousand four hundred eighty-five'); INSERT INTO t1 VALUES(7401, 14871, 'fourteen thousand eight hundred seventy-one'); INSERT INTO t1 VALUES(7402, 39590, 'thirty-nine thousand five hundred ninety'); INSERT INTO t1 VALUES(7403, 40501, 'forty thousand five hundred one'); INSERT INTO t1 VALUES(7404, 82286, 'eighty-two thousand two hundred eighty-six'); INSERT INTO t1 VALUES(7405, 47086, 'forty-seven thousand eighty-six'); INSERT INTO t1 VALUES(7406, 85673, 'eighty-five thousand six hundred seventy-three'); INSERT INTO t1 VALUES(7407, 50086, 'fifty thousand eighty-six'); INSERT INTO t1 VALUES(7408, 76306, 'seventy-six thousand three hundred six'); INSERT INTO t1 VALUES(7409, 98444, 'ninety-eight thousand four hundred forty-four'); INSERT INTO t1 VALUES(7410, 85812, 'eighty-five thousand eight hundred twelve'); INSERT INTO t1 VALUES(7411, 83769, 'eighty-three thousand seven hundred sixty-nine'); INSERT INTO t1 VALUES(7412, 54456, 'fifty-four thousand four hundred fifty-six'); INSERT INTO t1 VALUES(7413, 35560, 'thirty-five thousand five hundred sixty'); INSERT INTO t1 VALUES(7414, 77697, 'seventy-seven thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(7415, 58966, 'fifty-eight thousand nine hundred sixty-six'); INSERT INTO t1 VALUES(7416, 56609, 'fifty-six thousand six hundred nine'); INSERT INTO t1 VALUES(7417, 13976, 'thirteen thousand nine hundred seventy-six'); INSERT INTO t1 VALUES(7418, 64392, 'sixty-four thousand three hundred ninety-two'); INSERT INTO t1 VALUES(7419, 59241, 'fifty-nine thousand two hundred forty-one'); INSERT INTO t1 VALUES(7420, 62010, 'sixty-two thousand ten'); INSERT INTO t1 VALUES(7421, 44949, 'forty-four thousand nine hundred forty-nine'); INSERT INTO t1 VALUES(7422, 76879, 'seventy-six thousand eight hundred seventy-nine'); INSERT INTO t1 VALUES(7423, 86988, 'eighty-six thousand nine hundred eighty-eight'); INSERT INTO t1 VALUES(7424, 64215, 'sixty-four thousand two hundred fifteen'); INSERT INTO t1 VALUES(7425, 15242, 'fifteen thousand two hundred forty-two'); INSERT INTO t1 VALUES(7426, 25939, 'twenty-five thousand nine hundred thirty-nine'); INSERT INTO t1 VALUES(7427, 66042, 'sixty-six thousand forty-two'); INSERT INTO t1 VALUES(7428, 74761, 'seventy-four thousand seven hundred sixty-one'); INSERT INTO t1 VALUES(7429, 69746, 'sixty-nine thousand seven hundred forty-six'); INSERT INTO t1 VALUES(7430, 28761, 'twenty-eight thousand seven hundred sixty-one'); INSERT INTO t1 VALUES(7431, 11255, 'eleven thousand two hundred fifty-five'); INSERT INTO t1 VALUES(7432, 94283, 'ninety-four thousand two hundred eighty-three'); INSERT INTO t1 VALUES(7433, 10442, 'ten thousand four hundred forty-two'); INSERT INTO t1 VALUES(7434, 44615, 'forty-four thousand six hundred fifteen'); INSERT INTO t1 VALUES(7435, 65623, 'sixty-five thousand six hundred twenty-three'); INSERT INTO t1 VALUES(7436, 72292, 'seventy-two thousand two hundred ninety-two'); INSERT INTO t1 VALUES(7437, 27106, 'twenty-seven thousand one hundred six'); INSERT INTO t1 VALUES(7438, 35067, 'thirty-five thousand sixty-seven'); INSERT INTO t1 VALUES(7439, 86790, 'eighty-six thousand seven hundred ninety'); INSERT INTO t1 VALUES(7440, 19325, 'nineteen thousand three hundred twenty-five'); INSERT INTO t1 VALUES(7441, 97927, 'ninety-seven thousand nine hundred twenty-seven'); INSERT INTO t1 VALUES(7442, 62677, 'sixty-two thousand six hundred seventy-seven'); INSERT INTO t1 VALUES(7443, 59657, 'fifty-nine thousand six hundred fifty-seven'); INSERT INTO t1 VALUES(7444, 59713, 'fifty-nine thousand seven hundred thirteen'); INSERT INTO t1 VALUES(7445, 11810, 'eleven thousand eight hundred ten'); INSERT INTO t1 VALUES(7446, 14985, 'fourteen thousand nine hundred eighty-five'); INSERT INTO t1 VALUES(7447, 36893, 'thirty-six thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(7448, 4346, 'four thousand three hundred forty-six'); INSERT INTO t1 VALUES(7449, 57859, 'fifty-seven thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(7450, 7536, 'seven thousand five hundred thirty-six'); INSERT INTO t1 VALUES(7451, 38671, 'thirty-eight thousand six hundred seventy-one'); INSERT INTO t1 VALUES(7452, 66160, 'sixty-six thousand one hundred sixty'); INSERT INTO t1 VALUES(7453, 21122, 'twenty-one thousand one hundred twenty-two'); INSERT INTO t1 VALUES(7454, 35073, 'thirty-five thousand seventy-three'); INSERT INTO t1 VALUES(7455, 5510, 'five thousand five hundred ten'); INSERT INTO t1 VALUES(7456, 33410, 'thirty-three thousand four hundred ten'); INSERT INTO t1 VALUES(7457, 38101, 'thirty-eight thousand one hundred one'); INSERT INTO t1 VALUES(7458, 311, 'three hundred eleven'); INSERT INTO t1 VALUES(7459, 74692, 'seventy-four thousand six hundred ninety-two'); INSERT INTO t1 VALUES(7460, 45472, 'forty-five thousand four hundred seventy-two'); INSERT INTO t1 VALUES(7461, 40478, 'forty thousand four hundred seventy-eight'); INSERT INTO t1 VALUES(7462, 12615, 'twelve thousand six hundred fifteen'); INSERT INTO t1 VALUES(7463, 82513, 'eighty-two thousand five hundred thirteen'); INSERT INTO t1 VALUES(7464, 28187, 'twenty-eight thousand one hundred eighty-seven'); INSERT INTO t1 VALUES(7465, 57512, 'fifty-seven thousand five hundred twelve'); INSERT INTO t1 VALUES(7466, 67035, 'sixty-seven thousand thirty-five'); INSERT INTO t1 VALUES(7467, 29218, 'twenty-nine thousand two hundred eighteen'); INSERT INTO t1 VALUES(7468, 95584, 'ninety-five thousand five hundred eighty-four'); INSERT INTO t1 VALUES(7469, 90874, 'ninety thousand eight hundred seventy-four'); INSERT INTO t1 VALUES(7470, 3045, 'three thousand forty-five'); INSERT INTO t1 VALUES(7471, 57104, 'fifty-seven thousand one hundred four'); INSERT INTO t1 VALUES(7472, 67212, 'sixty-seven thousand two hundred twelve'); INSERT INTO t1 VALUES(7473, 50482, 'fifty thousand four hundred eighty-two'); INSERT INTO t1 VALUES(7474, 68746, 'sixty-eight thousand seven hundred forty-six'); INSERT INTO t1 VALUES(7475, 78221, 'seventy-eight thousand two hundred twenty-one'); INSERT INTO t1 VALUES(7476, 20660, 'twenty thousand six hundred sixty'); INSERT INTO t1 VALUES(7477, 66091, 'sixty-six thousand ninety-one'); INSERT INTO t1 VALUES(7478, 62771, 'sixty-two thousand seven hundred seventy-one'); INSERT INTO t1 VALUES(7479, 38726, 'thirty-eight thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(7480, 30762, 'thirty thousand seven hundred sixty-two'); INSERT INTO t1 VALUES(7481, 40890, 'forty thousand eight hundred ninety'); INSERT INTO t1 VALUES(7482, 7002, 'seven thousand two'); INSERT INTO t1 VALUES(7483, 5637, 'five thousand six hundred thirty-seven'); INSERT INTO t1 VALUES(7484, 17241, 'seventeen thousand two hundred forty-one'); INSERT INTO t1 VALUES(7485, 76364, 'seventy-six thousand three hundred sixty-four'); INSERT INTO t1 VALUES(7486, 85136, 'eighty-five thousand one hundred thirty-six'); INSERT INTO t1 VALUES(7487, 58799, 'fifty-eight thousand seven hundred ninety-nine'); INSERT INTO t1 VALUES(7488, 39808, 'thirty-nine thousand eight hundred eight'); INSERT INTO t1 VALUES(7489, 6252, 'six thousand two hundred fifty-two'); INSERT INTO t1 VALUES(7490, 69887, 'sixty-nine thousand eight hundred eighty-seven'); INSERT INTO t1 VALUES(7491, 72803, 'seventy-two thousand eight hundred three'); INSERT INTO t1 VALUES(7492, 53538, 'fifty-three thousand five hundred thirty-eight'); INSERT INTO t1 VALUES(7493, 25566, 'twenty-five thousand five hundred sixty-six'); INSERT INTO t1 VALUES(7494, 37120, 'thirty-seven thousand one hundred twenty'); INSERT INTO t1 VALUES(7495, 5060, 'five thousand sixty'); INSERT INTO t1 VALUES(7496, 73166, 'seventy-three thousand one hundred sixty-six'); INSERT INTO t1 VALUES(7497, 87501, 'eighty-seven thousand five hundred one'); INSERT INTO t1 VALUES(7498, 90689, 'ninety thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(7499, 78264, 'seventy-eight thousand two hundred sixty-four'); INSERT INTO t1 VALUES(7500, 4393, 'four thousand three hundred ninety-three'); INSERT INTO t1 VALUES(7501, 16035, 'sixteen thousand thirty-five'); INSERT INTO t1 VALUES(7502, 22260, 'twenty-two thousand two hundred sixty'); INSERT INTO t1 VALUES(7503, 91200, 'ninety-one thousand two hundred'); INSERT INTO t1 VALUES(7504, 9628, 'nine thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(7505, 17438, 'seventeen thousand four hundred thirty-eight'); INSERT INTO t1 VALUES(7506, 81612, 'eighty-one thousand six hundred twelve'); INSERT INTO t1 VALUES(7507, 67205, 'sixty-seven thousand two hundred five'); INSERT INTO t1 VALUES(7508, 91433, 'ninety-one thousand four hundred thirty-three'); INSERT INTO t1 VALUES(7509, 63937, 'sixty-three thousand nine hundred thirty-seven'); INSERT INTO t1 VALUES(7510, 97400, 'ninety-seven thousand four hundred'); INSERT INTO t1 VALUES(7511, 76842, 'seventy-six thousand eight hundred forty-two'); INSERT INTO t1 VALUES(7512, 50163, 'fifty thousand one hundred sixty-three'); INSERT INTO t1 VALUES(7513, 82125, 'eighty-two thousand one hundred twenty-five'); INSERT INTO t1 VALUES(7514, 13242, 'thirteen thousand two hundred forty-two'); INSERT INTO t1 VALUES(7515, 89430, 'eighty-nine thousand four hundred thirty'); INSERT INTO t1 VALUES(7516, 58578, 'fifty-eight thousand five hundred seventy-eight'); INSERT INTO t1 VALUES(7517, 19159, 'nineteen thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(7518, 58537, 'fifty-eight thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(7519, 33785, 'thirty-three thousand seven hundred eighty-five'); INSERT INTO t1 VALUES(7520, 38658, 'thirty-eight thousand six hundred fifty-eight'); INSERT INTO t1 VALUES(7521, 24698, 'twenty-four thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(7522, 16935, 'sixteen thousand nine hundred thirty-five'); INSERT INTO t1 VALUES(7523, 44927, 'forty-four thousand nine hundred twenty-seven'); INSERT INTO t1 VALUES(7524, 14910, 'fourteen thousand nine hundred ten'); INSERT INTO t1 VALUES(7525, 43467, 'forty-three thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(7526, 66148, 'sixty-six thousand one hundred forty-eight'); INSERT INTO t1 VALUES(7527, 6289, 'six thousand two hundred eighty-nine'); INSERT INTO t1 VALUES(7528, 68381, 'sixty-eight thousand three hundred eighty-one'); INSERT INTO t1 VALUES(7529, 79528, 'seventy-nine thousand five hundred twenty-eight'); INSERT INTO t1 VALUES(7530, 95498, 'ninety-five thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(7531, 86692, 'eighty-six thousand six hundred ninety-two'); INSERT INTO t1 VALUES(7532, 68567, 'sixty-eight thousand five hundred sixty-seven'); INSERT INTO t1 VALUES(7533, 63261, 'sixty-three thousand two hundred sixty-one'); INSERT INTO t1 VALUES(7534, 67247, 'sixty-seven thousand two hundred forty-seven'); INSERT INTO t1 VALUES(7535, 24308, 'twenty-four thousand three hundred eight'); INSERT INTO t1 VALUES(7536, 25766, 'twenty-five thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(7537, 16137, 'sixteen thousand one hundred thirty-seven'); INSERT INTO t1 VALUES(7538, 50406, 'fifty thousand four hundred six'); INSERT INTO t1 VALUES(7539, 97307, 'ninety-seven thousand three hundred seven'); INSERT INTO t1 VALUES(7540, 34732, 'thirty-four thousand seven hundred thirty-two'); INSERT INTO t1 VALUES(7541, 81656, 'eighty-one thousand six hundred fifty-six'); INSERT INTO t1 VALUES(7542, 17939, 'seventeen thousand nine hundred thirty-nine'); INSERT INTO t1 VALUES(7543, 97271, 'ninety-seven thousand two hundred seventy-one'); INSERT INTO t1 VALUES(7544, 70735, 'seventy thousand seven hundred thirty-five'); INSERT INTO t1 VALUES(7545, 73030, 'seventy-three thousand thirty'); INSERT INTO t1 VALUES(7546, 60500, 'sixty thousand five hundred'); INSERT INTO t1 VALUES(7547, 54813, 'fifty-four thousand eight hundred thirteen'); INSERT INTO t1 VALUES(7548, 25919, 'twenty-five thousand nine hundred nineteen'); INSERT INTO t1 VALUES(7549, 1925, 'one thousand nine hundred twenty-five'); INSERT INTO t1 VALUES(7550, 15740, 'fifteen thousand seven hundred forty'); INSERT INTO t1 VALUES(7551, 12760, 'twelve thousand seven hundred sixty'); INSERT INTO t1 VALUES(7552, 79798, 'seventy-nine thousand seven hundred ninety-eight'); INSERT INTO t1 VALUES(7553, 64465, 'sixty-four thousand four hundred sixty-five'); INSERT INTO t1 VALUES(7554, 17188, 'seventeen thousand one hundred eighty-eight'); INSERT INTO t1 VALUES(7555, 92463, 'ninety-two thousand four hundred sixty-three'); INSERT INTO t1 VALUES(7556, 58518, 'fifty-eight thousand five hundred eighteen'); INSERT INTO t1 VALUES(7557, 76551, 'seventy-six thousand five hundred fifty-one'); INSERT INTO t1 VALUES(7558, 295, 'two hundred ninety-five'); INSERT INTO t1 VALUES(7559, 46420, 'forty-six thousand four hundred twenty'); INSERT INTO t1 VALUES(7560, 35756, 'thirty-five thousand seven hundred fifty-six'); INSERT INTO t1 VALUES(7561, 6211, 'six thousand two hundred eleven'); INSERT INTO t1 VALUES(7562, 68203, 'sixty-eight thousand two hundred three'); INSERT INTO t1 VALUES(7563, 20461, 'twenty thousand four hundred sixty-one'); INSERT INTO t1 VALUES(7564, 664, 'six hundred sixty-four'); INSERT INTO t1 VALUES(7565, 31162, 'thirty-one thousand one hundred sixty-two'); INSERT INTO t1 VALUES(7566, 25874, 'twenty-five thousand eight hundred seventy-four'); INSERT INTO t1 VALUES(7567, 12640, 'twelve thousand six hundred forty'); INSERT INTO t1 VALUES(7568, 87304, 'eighty-seven thousand three hundred four'); INSERT INTO t1 VALUES(7569, 18407, 'eighteen thousand four hundred seven'); INSERT INTO t1 VALUES(7570, 51897, 'fifty-one thousand eight hundred ninety-seven'); INSERT INTO t1 VALUES(7571, 98302, 'ninety-eight thousand three hundred two'); INSERT INTO t1 VALUES(7572, 4087, 'four thousand eighty-seven'); INSERT INTO t1 VALUES(7573, 85190, 'eighty-five thousand one hundred ninety'); INSERT INTO t1 VALUES(7574, 30344, 'thirty thousand three hundred forty-four'); INSERT INTO t1 VALUES(7575, 38656, 'thirty-eight thousand six hundred fifty-six'); INSERT INTO t1 VALUES(7576, 21238, 'twenty-one thousand two hundred thirty-eight'); INSERT INTO t1 VALUES(7577, 71490, 'seventy-one thousand four hundred ninety'); INSERT INTO t1 VALUES(7578, 69567, 'sixty-nine thousand five hundred sixty-seven'); INSERT INTO t1 VALUES(7579, 35644, 'thirty-five thousand six hundred forty-four'); INSERT INTO t1 VALUES(7580, 35508, 'thirty-five thousand five hundred eight'); INSERT INTO t1 VALUES(7581, 49311, 'forty-nine thousand three hundred eleven'); INSERT INTO t1 VALUES(7582, 70030, 'seventy thousand thirty'); INSERT INTO t1 VALUES(7583, 29356, 'twenty-nine thousand three hundred fifty-six'); INSERT INTO t1 VALUES(7584, 12051, 'twelve thousand fifty-one'); INSERT INTO t1 VALUES(7585, 82812, 'eighty-two thousand eight hundred twelve'); INSERT INTO t1 VALUES(7586, 98539, 'ninety-eight thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(7587, 87049, 'eighty-seven thousand forty-nine'); INSERT INTO t1 VALUES(7588, 98444, 'ninety-eight thousand four hundred forty-four'); INSERT INTO t1 VALUES(7589, 3381, 'three thousand three hundred eighty-one'); INSERT INTO t1 VALUES(7590, 58523, 'fifty-eight thousand five hundred twenty-three'); INSERT INTO t1 VALUES(7591, 57795, 'fifty-seven thousand seven hundred ninety-five'); INSERT INTO t1 VALUES(7592, 70507, 'seventy thousand five hundred seven'); INSERT INTO t1 VALUES(7593, 94728, 'ninety-four thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(7594, 29934, 'twenty-nine thousand nine hundred thirty-four'); INSERT INTO t1 VALUES(7595, 18296, 'eighteen thousand two hundred ninety-six'); INSERT INTO t1 VALUES(7596, 99528, 'ninety-nine thousand five hundred twenty-eight'); INSERT INTO t1 VALUES(7597, 87258, 'eighty-seven thousand two hundred fifty-eight'); INSERT INTO t1 VALUES(7598, 51705, 'fifty-one thousand seven hundred five'); INSERT INTO t1 VALUES(7599, 90329, 'ninety thousand three hundred twenty-nine'); INSERT INTO t1 VALUES(7600, 60080, 'sixty thousand eighty'); INSERT INTO t1 VALUES(7601, 75801, 'seventy-five thousand eight hundred one'); INSERT INTO t1 VALUES(7602, 97316, 'ninety-seven thousand three hundred sixteen'); INSERT INTO t1 VALUES(7603, 55233, 'fifty-five thousand two hundred thirty-three'); INSERT INTO t1 VALUES(7604, 53382, 'fifty-three thousand three hundred eighty-two'); INSERT INTO t1 VALUES(7605, 31786, 'thirty-one thousand seven hundred eighty-six'); INSERT INTO t1 VALUES(7606, 95515, 'ninety-five thousand five hundred fifteen'); INSERT INTO t1 VALUES(7607, 68921, 'sixty-eight thousand nine hundred twenty-one'); INSERT INTO t1 VALUES(7608, 99027, 'ninety-nine thousand twenty-seven'); INSERT INTO t1 VALUES(7609, 66252, 'sixty-six thousand two hundred fifty-two'); INSERT INTO t1 VALUES(7610, 95703, 'ninety-five thousand seven hundred three'); INSERT INTO t1 VALUES(7611, 33353, 'thirty-three thousand three hundred fifty-three'); INSERT INTO t1 VALUES(7612, 2870, 'two thousand eight hundred seventy'); INSERT INTO t1 VALUES(7613, 35153, 'thirty-five thousand one hundred fifty-three'); INSERT INTO t1 VALUES(7614, 79641, 'seventy-nine thousand six hundred forty-one'); INSERT INTO t1 VALUES(7615, 73092, 'seventy-three thousand ninety-two'); INSERT INTO t1 VALUES(7616, 74053, 'seventy-four thousand fifty-three'); INSERT INTO t1 VALUES(7617, 40768, 'forty thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(7618, 79311, 'seventy-nine thousand three hundred eleven'); INSERT INTO t1 VALUES(7619, 10853, 'ten thousand eight hundred fifty-three'); INSERT INTO t1 VALUES(7620, 17438, 'seventeen thousand four hundred thirty-eight'); INSERT INTO t1 VALUES(7621, 3937, 'three thousand nine hundred thirty-seven'); INSERT INTO t1 VALUES(7622, 96374, 'ninety-six thousand three hundred seventy-four'); INSERT INTO t1 VALUES(7623, 17645, 'seventeen thousand six hundred forty-five'); INSERT INTO t1 VALUES(7624, 86127, 'eighty-six thousand one hundred twenty-seven'); INSERT INTO t1 VALUES(7625, 21093, 'twenty-one thousand ninety-three'); INSERT INTO t1 VALUES(7626, 504, 'five hundred four'); INSERT INTO t1 VALUES(7627, 50083, 'fifty thousand eighty-three'); INSERT INTO t1 VALUES(7628, 4942, 'four thousand nine hundred forty-two'); INSERT INTO t1 VALUES(7629, 76593, 'seventy-six thousand five hundred ninety-three'); INSERT INTO t1 VALUES(7630, 73431, 'seventy-three thousand four hundred thirty-one'); INSERT INTO t1 VALUES(7631, 89644, 'eighty-nine thousand six hundred forty-four'); INSERT INTO t1 VALUES(7632, 63719, 'sixty-three thousand seven hundred nineteen'); INSERT INTO t1 VALUES(7633, 53845, 'fifty-three thousand eight hundred forty-five'); INSERT INTO t1 VALUES(7634, 60793, 'sixty thousand seven hundred ninety-three'); INSERT INTO t1 VALUES(7635, 26368, 'twenty-six thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(7636, 65016, 'sixty-five thousand sixteen'); INSERT INTO t1 VALUES(7637, 18848, 'eighteen thousand eight hundred forty-eight'); INSERT INTO t1 VALUES(7638, 35677, 'thirty-five thousand six hundred seventy-seven'); INSERT INTO t1 VALUES(7639, 40292, 'forty thousand two hundred ninety-two'); INSERT INTO t1 VALUES(7640, 5875, 'five thousand eight hundred seventy-five'); INSERT INTO t1 VALUES(7641, 64678, 'sixty-four thousand six hundred seventy-eight'); INSERT INTO t1 VALUES(7642, 3133, 'three thousand one hundred thirty-three'); INSERT INTO t1 VALUES(7643, 39265, 'thirty-nine thousand two hundred sixty-five'); INSERT INTO t1 VALUES(7644, 14410, 'fourteen thousand four hundred ten'); INSERT INTO t1 VALUES(7645, 93195, 'ninety-three thousand one hundred ninety-five'); INSERT INTO t1 VALUES(7646, 19384, 'nineteen thousand three hundred eighty-four'); INSERT INTO t1 VALUES(7647, 80017, 'eighty thousand seventeen'); INSERT INTO t1 VALUES(7648, 82477, 'eighty-two thousand four hundred seventy-seven'); INSERT INTO t1 VALUES(7649, 83457, 'eighty-three thousand four hundred fifty-seven'); INSERT INTO t1 VALUES(7650, 97491, 'ninety-seven thousand four hundred ninety-one'); INSERT INTO t1 VALUES(7651, 29203, 'twenty-nine thousand two hundred three'); INSERT INTO t1 VALUES(7652, 27307, 'twenty-seven thousand three hundred seven'); INSERT INTO t1 VALUES(7653, 50170, 'fifty thousand one hundred seventy'); INSERT INTO t1 VALUES(7654, 71793, 'seventy-one thousand seven hundred ninety-three'); INSERT INTO t1 VALUES(7655, 21055, 'twenty-one thousand fifty-five'); INSERT INTO t1 VALUES(7656, 44504, 'forty-four thousand five hundred four'); INSERT INTO t1 VALUES(7657, 6462, 'six thousand four hundred sixty-two'); INSERT INTO t1 VALUES(7658, 82617, 'eighty-two thousand six hundred seventeen'); INSERT INTO t1 VALUES(7659, 74690, 'seventy-four thousand six hundred ninety'); INSERT INTO t1 VALUES(7660, 72421, 'seventy-two thousand four hundred twenty-one'); INSERT INTO t1 VALUES(7661, 5896, 'five thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(7662, 1054, 'one thousand fifty-four'); INSERT INTO t1 VALUES(7663, 66433, 'sixty-six thousand four hundred thirty-three'); INSERT INTO t1 VALUES(7664, 7665, 'seven thousand six hundred sixty-five'); INSERT INTO t1 VALUES(7665, 31581, 'thirty-one thousand five hundred eighty-one'); INSERT INTO t1 VALUES(7666, 87559, 'eighty-seven thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(7667, 14011, 'fourteen thousand eleven'); INSERT INTO t1 VALUES(7668, 12526, 'twelve thousand five hundred twenty-six'); INSERT INTO t1 VALUES(7669, 62648, 'sixty-two thousand six hundred forty-eight'); INSERT INTO t1 VALUES(7670, 65496, 'sixty-five thousand four hundred ninety-six'); INSERT INTO t1 VALUES(7671, 2328, 'two thousand three hundred twenty-eight'); INSERT INTO t1 VALUES(7672, 53613, 'fifty-three thousand six hundred thirteen'); INSERT INTO t1 VALUES(7673, 74137, 'seventy-four thousand one hundred thirty-seven'); INSERT INTO t1 VALUES(7674, 76232, 'seventy-six thousand two hundred thirty-two'); INSERT INTO t1 VALUES(7675, 93851, 'ninety-three thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(7676, 18011, 'eighteen thousand eleven'); INSERT INTO t1 VALUES(7677, 20150, 'twenty thousand one hundred fifty'); INSERT INTO t1 VALUES(7678, 18932, 'eighteen thousand nine hundred thirty-two'); INSERT INTO t1 VALUES(7679, 3560, 'three thousand five hundred sixty'); INSERT INTO t1 VALUES(7680, 43177, 'forty-three thousand one hundred seventy-seven'); INSERT INTO t1 VALUES(7681, 61897, 'sixty-one thousand eight hundred ninety-seven'); INSERT INTO t1 VALUES(7682, 73001, 'seventy-three thousand one'); INSERT INTO t1 VALUES(7683, 31468, 'thirty-one thousand four hundred sixty-eight'); INSERT INTO t1 VALUES(7684, 14065, 'fourteen thousand sixty-five'); INSERT INTO t1 VALUES(7685, 5212, 'five thousand two hundred twelve'); INSERT INTO t1 VALUES(7686, 63061, 'sixty-three thousand sixty-one'); INSERT INTO t1 VALUES(7687, 16719, 'sixteen thousand seven hundred nineteen'); INSERT INTO t1 VALUES(7688, 77480, 'seventy-seven thousand four hundred eighty'); INSERT INTO t1 VALUES(7689, 15936, 'fifteen thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(7690, 35694, 'thirty-five thousand six hundred ninety-four'); INSERT INTO t1 VALUES(7691, 50114, 'fifty thousand one hundred fourteen'); INSERT INTO t1 VALUES(7692, 64119, 'sixty-four thousand one hundred nineteen'); INSERT INTO t1 VALUES(7693, 30243, 'thirty thousand two hundred forty-three'); INSERT INTO t1 VALUES(7694, 59480, 'fifty-nine thousand four hundred eighty'); INSERT INTO t1 VALUES(7695, 47054, 'forty-seven thousand fifty-four'); INSERT INTO t1 VALUES(7696, 39344, 'thirty-nine thousand three hundred forty-four'); INSERT INTO t1 VALUES(7697, 91877, 'ninety-one thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(7698, 87910, 'eighty-seven thousand nine hundred ten'); INSERT INTO t1 VALUES(7699, 74942, 'seventy-four thousand nine hundred forty-two'); INSERT INTO t1 VALUES(7700, 13879, 'thirteen thousand eight hundred seventy-nine'); INSERT INTO t1 VALUES(7701, 90580, 'ninety thousand five hundred eighty'); INSERT INTO t1 VALUES(7702, 35384, 'thirty-five thousand three hundred eighty-four'); INSERT INTO t1 VALUES(7703, 53967, 'fifty-three thousand nine hundred sixty-seven'); INSERT INTO t1 VALUES(7704, 9459, 'nine thousand four hundred fifty-nine'); INSERT INTO t1 VALUES(7705, 79039, 'seventy-nine thousand thirty-nine'); INSERT INTO t1 VALUES(7706, 96565, 'ninety-six thousand five hundred sixty-five'); INSERT INTO t1 VALUES(7707, 91890, 'ninety-one thousand eight hundred ninety'); INSERT INTO t1 VALUES(7708, 87945, 'eighty-seven thousand nine hundred forty-five'); INSERT INTO t1 VALUES(7709, 71133, 'seventy-one thousand one hundred thirty-three'); INSERT INTO t1 VALUES(7710, 87725, 'eighty-seven thousand seven hundred twenty-five'); INSERT INTO t1 VALUES(7711, 36407, 'thirty-six thousand four hundred seven'); INSERT INTO t1 VALUES(7712, 12856, 'twelve thousand eight hundred fifty-six'); INSERT INTO t1 VALUES(7713, 48429, 'forty-eight thousand four hundred twenty-nine'); INSERT INTO t1 VALUES(7714, 95661, 'ninety-five thousand six hundred sixty-one'); INSERT INTO t1 VALUES(7715, 52338, 'fifty-two thousand three hundred thirty-eight'); INSERT INTO t1 VALUES(7716, 17316, 'seventeen thousand three hundred sixteen'); INSERT INTO t1 VALUES(7717, 51407, 'fifty-one thousand four hundred seven'); INSERT INTO t1 VALUES(7718, 2597, 'two thousand five hundred ninety-seven'); INSERT INTO t1 VALUES(7719, 97643, 'ninety-seven thousand six hundred forty-three'); INSERT INTO t1 VALUES(7720, 36752, 'thirty-six thousand seven hundred fifty-two'); INSERT INTO t1 VALUES(7721, 13680, 'thirteen thousand six hundred eighty'); INSERT INTO t1 VALUES(7722, 4909, 'four thousand nine hundred nine'); INSERT INTO t1 VALUES(7723, 84796, 'eighty-four thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(7724, 73543, 'seventy-three thousand five hundred forty-three'); INSERT INTO t1 VALUES(7725, 1916, 'one thousand nine hundred sixteen'); INSERT INTO t1 VALUES(7726, 31493, 'thirty-one thousand four hundred ninety-three'); INSERT INTO t1 VALUES(7727, 69357, 'sixty-nine thousand three hundred fifty-seven'); INSERT INTO t1 VALUES(7728, 75427, 'seventy-five thousand four hundred twenty-seven'); INSERT INTO t1 VALUES(7729, 51036, 'fifty-one thousand thirty-six'); INSERT INTO t1 VALUES(7730, 93792, 'ninety-three thousand seven hundred ninety-two'); INSERT INTO t1 VALUES(7731, 90679, 'ninety thousand six hundred seventy-nine'); INSERT INTO t1 VALUES(7732, 9298, 'nine thousand two hundred ninety-eight'); INSERT INTO t1 VALUES(7733, 29484, 'twenty-nine thousand four hundred eighty-four'); INSERT INTO t1 VALUES(7734, 54312, 'fifty-four thousand three hundred twelve'); INSERT INTO t1 VALUES(7735, 87150, 'eighty-seven thousand one hundred fifty'); INSERT INTO t1 VALUES(7736, 99157, 'ninety-nine thousand one hundred fifty-seven'); INSERT INTO t1 VALUES(7737, 15157, 'fifteen thousand one hundred fifty-seven'); INSERT INTO t1 VALUES(7738, 91560, 'ninety-one thousand five hundred sixty'); INSERT INTO t1 VALUES(7739, 18148, 'eighteen thousand one hundred forty-eight'); INSERT INTO t1 VALUES(7740, 8142, 'eight thousand one hundred forty-two'); INSERT INTO t1 VALUES(7741, 73128, 'seventy-three thousand one hundred twenty-eight'); INSERT INTO t1 VALUES(7742, 49695, 'forty-nine thousand six hundred ninety-five'); INSERT INTO t1 VALUES(7743, 89198, 'eighty-nine thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(7744, 71116, 'seventy-one thousand one hundred sixteen'); INSERT INTO t1 VALUES(7745, 13461, 'thirteen thousand four hundred sixty-one'); INSERT INTO t1 VALUES(7746, 83560, 'eighty-three thousand five hundred sixty'); INSERT INTO t1 VALUES(7747, 67718, 'sixty-seven thousand seven hundred eighteen'); INSERT INTO t1 VALUES(7748, 35253, 'thirty-five thousand two hundred fifty-three'); INSERT INTO t1 VALUES(7749, 4621, 'four thousand six hundred twenty-one'); INSERT INTO t1 VALUES(7750, 16037, 'sixteen thousand thirty-seven'); INSERT INTO t1 VALUES(7751, 5376, 'five thousand three hundred seventy-six'); INSERT INTO t1 VALUES(7752, 88995, 'eighty-eight thousand nine hundred ninety-five'); INSERT INTO t1 VALUES(7753, 67791, 'sixty-seven thousand seven hundred ninety-one'); INSERT INTO t1 VALUES(7754, 858, 'eight hundred fifty-eight'); INSERT INTO t1 VALUES(7755, 98985, 'ninety-eight thousand nine hundred eighty-five'); INSERT INTO t1 VALUES(7756, 52136, 'fifty-two thousand one hundred thirty-six'); INSERT INTO t1 VALUES(7757, 44069, 'forty-four thousand sixty-nine'); INSERT INTO t1 VALUES(7758, 69723, 'sixty-nine thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(7759, 23410, 'twenty-three thousand four hundred ten'); INSERT INTO t1 VALUES(7760, 55639, 'fifty-five thousand six hundred thirty-nine'); INSERT INTO t1 VALUES(7761, 82748, 'eighty-two thousand seven hundred forty-eight'); INSERT INTO t1 VALUES(7762, 87806, 'eighty-seven thousand eight hundred six'); INSERT INTO t1 VALUES(7763, 1792, 'one thousand seven hundred ninety-two'); INSERT INTO t1 VALUES(7764, 33515, 'thirty-three thousand five hundred fifteen'); INSERT INTO t1 VALUES(7765, 656, 'six hundred fifty-six'); INSERT INTO t1 VALUES(7766, 9853, 'nine thousand eight hundred fifty-three'); INSERT INTO t1 VALUES(7767, 81056, 'eighty-one thousand fifty-six'); INSERT INTO t1 VALUES(7768, 97223, 'ninety-seven thousand two hundred twenty-three'); INSERT INTO t1 VALUES(7769, 15290, 'fifteen thousand two hundred ninety'); INSERT INTO t1 VALUES(7770, 37851, 'thirty-seven thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(7771, 90678, 'ninety thousand six hundred seventy-eight'); INSERT INTO t1 VALUES(7772, 47996, 'forty-seven thousand nine hundred ninety-six'); INSERT INTO t1 VALUES(7773, 61678, 'sixty-one thousand six hundred seventy-eight'); INSERT INTO t1 VALUES(7774, 21658, 'twenty-one thousand six hundred fifty-eight'); INSERT INTO t1 VALUES(7775, 67975, 'sixty-seven thousand nine hundred seventy-five'); INSERT INTO t1 VALUES(7776, 15683, 'fifteen thousand six hundred eighty-three'); INSERT INTO t1 VALUES(7777, 68528, 'sixty-eight thousand five hundred twenty-eight'); INSERT INTO t1 VALUES(7778, 3643, 'three thousand six hundred forty-three'); INSERT INTO t1 VALUES(7779, 16183, 'sixteen thousand one hundred eighty-three'); INSERT INTO t1 VALUES(7780, 83349, 'eighty-three thousand three hundred forty-nine'); INSERT INTO t1 VALUES(7781, 46050, 'forty-six thousand fifty'); INSERT INTO t1 VALUES(7782, 72416, 'seventy-two thousand four hundred sixteen'); INSERT INTO t1 VALUES(7783, 25081, 'twenty-five thousand eighty-one'); INSERT INTO t1 VALUES(7784, 60598, 'sixty thousand five hundred ninety-eight'); INSERT INTO t1 VALUES(7785, 35348, 'thirty-five thousand three hundred forty-eight'); INSERT INTO t1 VALUES(7786, 67248, 'sixty-seven thousand two hundred forty-eight'); INSERT INTO t1 VALUES(7787, 36660, 'thirty-six thousand six hundred sixty'); INSERT INTO t1 VALUES(7788, 80794, 'eighty thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(7789, 12586, 'twelve thousand five hundred eighty-six'); INSERT INTO t1 VALUES(7790, 1660, 'one thousand six hundred sixty'); INSERT INTO t1 VALUES(7791, 31369, 'thirty-one thousand three hundred sixty-nine'); INSERT INTO t1 VALUES(7792, 88500, 'eighty-eight thousand five hundred'); INSERT INTO t1 VALUES(7793, 98688, 'ninety-eight thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(7794, 22037, 'twenty-two thousand thirty-seven'); INSERT INTO t1 VALUES(7795, 96477, 'ninety-six thousand four hundred seventy-seven'); INSERT INTO t1 VALUES(7796, 7480, 'seven thousand four hundred eighty'); INSERT INTO t1 VALUES(7797, 35142, 'thirty-five thousand one hundred forty-two'); INSERT INTO t1 VALUES(7798, 22661, 'twenty-two thousand six hundred sixty-one'); INSERT INTO t1 VALUES(7799, 76209, 'seventy-six thousand two hundred nine'); INSERT INTO t1 VALUES(7800, 81625, 'eighty-one thousand six hundred twenty-five'); INSERT INTO t1 VALUES(7801, 49886, 'forty-nine thousand eight hundred eighty-six'); INSERT INTO t1 VALUES(7802, 99323, 'ninety-nine thousand three hundred twenty-three'); INSERT INTO t1 VALUES(7803, 96735, 'ninety-six thousand seven hundred thirty-five'); INSERT INTO t1 VALUES(7804, 45311, 'forty-five thousand three hundred eleven'); INSERT INTO t1 VALUES(7805, 263, 'two hundred sixty-three'); INSERT INTO t1 VALUES(7806, 37862, 'thirty-seven thousand eight hundred sixty-two'); INSERT INTO t1 VALUES(7807, 80939, 'eighty thousand nine hundred thirty-nine'); INSERT INTO t1 VALUES(7808, 77349, 'seventy-seven thousand three hundred forty-nine'); INSERT INTO t1 VALUES(7809, 38321, 'thirty-eight thousand three hundred twenty-one'); INSERT INTO t1 VALUES(7810, 83634, 'eighty-three thousand six hundred thirty-four'); INSERT INTO t1 VALUES(7811, 28604, 'twenty-eight thousand six hundred four'); INSERT INTO t1 VALUES(7812, 39822, 'thirty-nine thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(7813, 18580, 'eighteen thousand five hundred eighty'); INSERT INTO t1 VALUES(7814, 56784, 'fifty-six thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(7815, 9627, 'nine thousand six hundred twenty-seven'); INSERT INTO t1 VALUES(7816, 99774, 'ninety-nine thousand seven hundred seventy-four'); INSERT INTO t1 VALUES(7817, 53956, 'fifty-three thousand nine hundred fifty-six'); INSERT INTO t1 VALUES(7818, 87268, 'eighty-seven thousand two hundred sixty-eight'); INSERT INTO t1 VALUES(7819, 20098, 'twenty thousand ninety-eight'); INSERT INTO t1 VALUES(7820, 24106, 'twenty-four thousand one hundred six'); INSERT INTO t1 VALUES(7821, 20464, 'twenty thousand four hundred sixty-four'); INSERT INTO t1 VALUES(7822, 90602, 'ninety thousand six hundred two'); INSERT INTO t1 VALUES(7823, 97695, 'ninety-seven thousand six hundred ninety-five'); INSERT INTO t1 VALUES(7824, 86171, 'eighty-six thousand one hundred seventy-one'); INSERT INTO t1 VALUES(7825, 97571, 'ninety-seven thousand five hundred seventy-one'); INSERT INTO t1 VALUES(7826, 8801, 'eight thousand eight hundred one'); INSERT INTO t1 VALUES(7827, 5800, 'five thousand eight hundred'); INSERT INTO t1 VALUES(7828, 28723, 'twenty-eight thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(7829, 52550, 'fifty-two thousand five hundred fifty'); INSERT INTO t1 VALUES(7830, 16270, 'sixteen thousand two hundred seventy'); INSERT INTO t1 VALUES(7831, 14306, 'fourteen thousand three hundred six'); INSERT INTO t1 VALUES(7832, 94463, 'ninety-four thousand four hundred sixty-three'); INSERT INTO t1 VALUES(7833, 23441, 'twenty-three thousand four hundred forty-one'); INSERT INTO t1 VALUES(7834, 41139, 'forty-one thousand one hundred thirty-nine'); INSERT INTO t1 VALUES(7835, 25688, 'twenty-five thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(7836, 47882, 'forty-seven thousand eight hundred eighty-two'); INSERT INTO t1 VALUES(7837, 2242, 'two thousand two hundred forty-two'); INSERT INTO t1 VALUES(7838, 74744, 'seventy-four thousand seven hundred forty-four'); INSERT INTO t1 VALUES(7839, 21882, 'twenty-one thousand eight hundred eighty-two'); INSERT INTO t1 VALUES(7840, 5128, 'five thousand one hundred twenty-eight'); INSERT INTO t1 VALUES(7841, 63, 'sixty-three'); INSERT INTO t1 VALUES(7842, 43051, 'forty-three thousand fifty-one'); INSERT INTO t1 VALUES(7843, 59497, 'fifty-nine thousand four hundred ninety-seven'); INSERT INTO t1 VALUES(7844, 35250, 'thirty-five thousand two hundred fifty'); INSERT INTO t1 VALUES(7845, 14067, 'fourteen thousand sixty-seven'); INSERT INTO t1 VALUES(7846, 98471, 'ninety-eight thousand four hundred seventy-one'); INSERT INTO t1 VALUES(7847, 32404, 'thirty-two thousand four hundred four'); INSERT INTO t1 VALUES(7848, 59310, 'fifty-nine thousand three hundred ten'); INSERT INTO t1 VALUES(7849, 13532, 'thirteen thousand five hundred thirty-two'); INSERT INTO t1 VALUES(7850, 15986, 'fifteen thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(7851, 39829, 'thirty-nine thousand eight hundred twenty-nine'); INSERT INTO t1 VALUES(7852, 89539, 'eighty-nine thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(7853, 89694, 'eighty-nine thousand six hundred ninety-four'); INSERT INTO t1 VALUES(7854, 20933, 'twenty thousand nine hundred thirty-three'); INSERT INTO t1 VALUES(7855, 73731, 'seventy-three thousand seven hundred thirty-one'); INSERT INTO t1 VALUES(7856, 96558, 'ninety-six thousand five hundred fifty-eight'); INSERT INTO t1 VALUES(7857, 19964, 'nineteen thousand nine hundred sixty-four'); INSERT INTO t1 VALUES(7858, 8060, 'eight thousand sixty'); INSERT INTO t1 VALUES(7859, 87017, 'eighty-seven thousand seventeen'); INSERT INTO t1 VALUES(7860, 13616, 'thirteen thousand six hundred sixteen'); INSERT INTO t1 VALUES(7861, 15159, 'fifteen thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(7862, 79783, 'seventy-nine thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(7863, 95370, 'ninety-five thousand three hundred seventy'); INSERT INTO t1 VALUES(7864, 30656, 'thirty thousand six hundred fifty-six'); INSERT INTO t1 VALUES(7865, 66753, 'sixty-six thousand seven hundred fifty-three'); INSERT INTO t1 VALUES(7866, 91805, 'ninety-one thousand eight hundred five'); INSERT INTO t1 VALUES(7867, 83405, 'eighty-three thousand four hundred five'); INSERT INTO t1 VALUES(7868, 83025, 'eighty-three thousand twenty-five'); INSERT INTO t1 VALUES(7869, 2923, 'two thousand nine hundred twenty-three'); INSERT INTO t1 VALUES(7870, 74455, 'seventy-four thousand four hundred fifty-five'); INSERT INTO t1 VALUES(7871, 43200, 'forty-three thousand two hundred'); INSERT INTO t1 VALUES(7872, 31782, 'thirty-one thousand seven hundred eighty-two'); INSERT INTO t1 VALUES(7873, 44085, 'forty-four thousand eighty-five'); INSERT INTO t1 VALUES(7874, 15054, 'fifteen thousand fifty-four'); INSERT INTO t1 VALUES(7875, 73665, 'seventy-three thousand six hundred sixty-five'); INSERT INTO t1 VALUES(7876, 56082, 'fifty-six thousand eighty-two'); INSERT INTO t1 VALUES(7877, 23782, 'twenty-three thousand seven hundred eighty-two'); INSERT INTO t1 VALUES(7878, 36310, 'thirty-six thousand three hundred ten'); INSERT INTO t1 VALUES(7879, 83309, 'eighty-three thousand three hundred nine'); INSERT INTO t1 VALUES(7880, 16310, 'sixteen thousand three hundred ten'); INSERT INTO t1 VALUES(7881, 541, 'five hundred forty-one'); INSERT INTO t1 VALUES(7882, 83512, 'eighty-three thousand five hundred twelve'); INSERT INTO t1 VALUES(7883, 19515, 'nineteen thousand five hundred fifteen'); INSERT INTO t1 VALUES(7884, 91044, 'ninety-one thousand forty-four'); INSERT INTO t1 VALUES(7885, 66953, 'sixty-six thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(7886, 36995, 'thirty-six thousand nine hundred ninety-five'); INSERT INTO t1 VALUES(7887, 90127, 'ninety thousand one hundred twenty-seven'); INSERT INTO t1 VALUES(7888, 41269, 'forty-one thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(7889, 63071, 'sixty-three thousand seventy-one'); INSERT INTO t1 VALUES(7890, 39034, 'thirty-nine thousand thirty-four'); INSERT INTO t1 VALUES(7891, 45572, 'forty-five thousand five hundred seventy-two'); INSERT INTO t1 VALUES(7892, 49164, 'forty-nine thousand one hundred sixty-four'); INSERT INTO t1 VALUES(7893, 37147, 'thirty-seven thousand one hundred forty-seven'); INSERT INTO t1 VALUES(7894, 23657, 'twenty-three thousand six hundred fifty-seven'); INSERT INTO t1 VALUES(7895, 78537, 'seventy-eight thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(7896, 52347, 'fifty-two thousand three hundred forty-seven'); INSERT INTO t1 VALUES(7897, 92819, 'ninety-two thousand eight hundred nineteen'); INSERT INTO t1 VALUES(7898, 31124, 'thirty-one thousand one hundred twenty-four'); INSERT INTO t1 VALUES(7899, 77575, 'seventy-seven thousand five hundred seventy-five'); INSERT INTO t1 VALUES(7900, 22526, 'twenty-two thousand five hundred twenty-six'); INSERT INTO t1 VALUES(7901, 90254, 'ninety thousand two hundred fifty-four'); INSERT INTO t1 VALUES(7902, 68394, 'sixty-eight thousand three hundred ninety-four'); INSERT INTO t1 VALUES(7903, 69752, 'sixty-nine thousand seven hundred fifty-two'); INSERT INTO t1 VALUES(7904, 96221, 'ninety-six thousand two hundred twenty-one'); INSERT INTO t1 VALUES(7905, 25934, 'twenty-five thousand nine hundred thirty-four'); INSERT INTO t1 VALUES(7906, 39689, 'thirty-nine thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(7907, 59582, 'fifty-nine thousand five hundred eighty-two'); INSERT INTO t1 VALUES(7908, 94145, 'ninety-four thousand one hundred forty-five'); INSERT INTO t1 VALUES(7909, 71324, 'seventy-one thousand three hundred twenty-four'); INSERT INTO t1 VALUES(7910, 79960, 'seventy-nine thousand nine hundred sixty'); INSERT INTO t1 VALUES(7911, 77850, 'seventy-seven thousand eight hundred fifty'); INSERT INTO t1 VALUES(7912, 48143, 'forty-eight thousand one hundred forty-three'); INSERT INTO t1 VALUES(7913, 83930, 'eighty-three thousand nine hundred thirty'); INSERT INTO t1 VALUES(7914, 77135, 'seventy-seven thousand one hundred thirty-five'); INSERT INTO t1 VALUES(7915, 27851, 'twenty-seven thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(7916, 67434, 'sixty-seven thousand four hundred thirty-four'); INSERT INTO t1 VALUES(7917, 74035, 'seventy-four thousand thirty-five'); INSERT INTO t1 VALUES(7918, 36646, 'thirty-six thousand six hundred forty-six'); INSERT INTO t1 VALUES(7919, 81402, 'eighty-one thousand four hundred two'); INSERT INTO t1 VALUES(7920, 5874, 'five thousand eight hundred seventy-four'); INSERT INTO t1 VALUES(7921, 86496, 'eighty-six thousand four hundred ninety-six'); INSERT INTO t1 VALUES(7922, 63333, 'sixty-three thousand three hundred thirty-three'); INSERT INTO t1 VALUES(7923, 82408, 'eighty-two thousand four hundred eight'); INSERT INTO t1 VALUES(7924, 88239, 'eighty-eight thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(7925, 14141, 'fourteen thousand one hundred forty-one'); INSERT INTO t1 VALUES(7926, 60345, 'sixty thousand three hundred forty-five'); INSERT INTO t1 VALUES(7927, 57719, 'fifty-seven thousand seven hundred nineteen'); INSERT INTO t1 VALUES(7928, 20454, 'twenty thousand four hundred fifty-four'); INSERT INTO t1 VALUES(7929, 34861, 'thirty-four thousand eight hundred sixty-one'); INSERT INTO t1 VALUES(7930, 14822, 'fourteen thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(7931, 27307, 'twenty-seven thousand three hundred seven'); INSERT INTO t1 VALUES(7932, 1746, 'one thousand seven hundred forty-six'); INSERT INTO t1 VALUES(7933, 19942, 'nineteen thousand nine hundred forty-two'); INSERT INTO t1 VALUES(7934, 49539, 'forty-nine thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(7935, 87971, 'eighty-seven thousand nine hundred seventy-one'); INSERT INTO t1 VALUES(7936, 56975, 'fifty-six thousand nine hundred seventy-five'); INSERT INTO t1 VALUES(7937, 47733, 'forty-seven thousand seven hundred thirty-three'); INSERT INTO t1 VALUES(7938, 29546, 'twenty-nine thousand five hundred forty-six'); INSERT INTO t1 VALUES(7939, 94395, 'ninety-four thousand three hundred ninety-five'); INSERT INTO t1 VALUES(7940, 83058, 'eighty-three thousand fifty-eight'); INSERT INTO t1 VALUES(7941, 80565, 'eighty thousand five hundred sixty-five'); INSERT INTO t1 VALUES(7942, 5824, 'five thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(7943, 56150, 'fifty-six thousand one hundred fifty'); INSERT INTO t1 VALUES(7944, 88673, 'eighty-eight thousand six hundred seventy-three'); INSERT INTO t1 VALUES(7945, 30043, 'thirty thousand forty-three'); INSERT INTO t1 VALUES(7946, 84917, 'eighty-four thousand nine hundred seventeen'); INSERT INTO t1 VALUES(7947, 44179, 'forty-four thousand one hundred seventy-nine'); INSERT INTO t1 VALUES(7948, 36742, 'thirty-six thousand seven hundred forty-two'); INSERT INTO t1 VALUES(7949, 49639, 'forty-nine thousand six hundred thirty-nine'); INSERT INTO t1 VALUES(7950, 48249, 'forty-eight thousand two hundred forty-nine'); INSERT INTO t1 VALUES(7951, 49026, 'forty-nine thousand twenty-six'); INSERT INTO t1 VALUES(7952, 66869, 'sixty-six thousand eight hundred sixty-nine'); INSERT INTO t1 VALUES(7953, 20582, 'twenty thousand five hundred eighty-two'); INSERT INTO t1 VALUES(7954, 42286, 'forty-two thousand two hundred eighty-six'); INSERT INTO t1 VALUES(7955, 98513, 'ninety-eight thousand five hundred thirteen'); INSERT INTO t1 VALUES(7956, 97681, 'ninety-seven thousand six hundred eighty-one'); INSERT INTO t1 VALUES(7957, 15705, 'fifteen thousand seven hundred five'); INSERT INTO t1 VALUES(7958, 76411, 'seventy-six thousand four hundred eleven'); INSERT INTO t1 VALUES(7959, 14285, 'fourteen thousand two hundred eighty-five'); INSERT INTO t1 VALUES(7960, 3895, 'three thousand eight hundred ninety-five'); INSERT INTO t1 VALUES(7961, 20176, 'twenty thousand one hundred seventy-six'); INSERT INTO t1 VALUES(7962, 77559, 'seventy-seven thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(7963, 42868, 'forty-two thousand eight hundred sixty-eight'); INSERT INTO t1 VALUES(7964, 50398, 'fifty thousand three hundred ninety-eight'); INSERT INTO t1 VALUES(7965, 81553, 'eighty-one thousand five hundred fifty-three'); INSERT INTO t1 VALUES(7966, 73859, 'seventy-three thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(7967, 15726, 'fifteen thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(7968, 47727, 'forty-seven thousand seven hundred twenty-seven'); INSERT INTO t1 VALUES(7969, 62444, 'sixty-two thousand four hundred forty-four'); INSERT INTO t1 VALUES(7970, 55007, 'fifty-five thousand seven'); INSERT INTO t1 VALUES(7971, 24046, 'twenty-four thousand forty-six'); INSERT INTO t1 VALUES(7972, 95041, 'ninety-five thousand forty-one'); INSERT INTO t1 VALUES(7973, 77834, 'seventy-seven thousand eight hundred thirty-four'); INSERT INTO t1 VALUES(7974, 35735, 'thirty-five thousand seven hundred thirty-five'); INSERT INTO t1 VALUES(7975, 3263, 'three thousand two hundred sixty-three'); INSERT INTO t1 VALUES(7976, 75482, 'seventy-five thousand four hundred eighty-two'); INSERT INTO t1 VALUES(7977, 70443, 'seventy thousand four hundred forty-three'); INSERT INTO t1 VALUES(7978, 32993, 'thirty-two thousand nine hundred ninety-three'); INSERT INTO t1 VALUES(7979, 59841, 'fifty-nine thousand eight hundred forty-one'); INSERT INTO t1 VALUES(7980, 41827, 'forty-one thousand eight hundred twenty-seven'); INSERT INTO t1 VALUES(7981, 60918, 'sixty thousand nine hundred eighteen'); INSERT INTO t1 VALUES(7982, 6281, 'six thousand two hundred eighty-one'); INSERT INTO t1 VALUES(7983, 4485, 'four thousand four hundred eighty-five'); INSERT INTO t1 VALUES(7984, 57724, 'fifty-seven thousand seven hundred twenty-four'); INSERT INTO t1 VALUES(7985, 57353, 'fifty-seven thousand three hundred fifty-three'); INSERT INTO t1 VALUES(7986, 66186, 'sixty-six thousand one hundred eighty-six'); INSERT INTO t1 VALUES(7987, 82465, 'eighty-two thousand four hundred sixty-five'); INSERT INTO t1 VALUES(7988, 83719, 'eighty-three thousand seven hundred nineteen'); INSERT INTO t1 VALUES(7989, 70733, 'seventy thousand seven hundred thirty-three'); INSERT INTO t1 VALUES(7990, 65495, 'sixty-five thousand four hundred ninety-five'); INSERT INTO t1 VALUES(7991, 35268, 'thirty-five thousand two hundred sixty-eight'); INSERT INTO t1 VALUES(7992, 21098, 'twenty-one thousand ninety-eight'); INSERT INTO t1 VALUES(7993, 17625, 'seventeen thousand six hundred twenty-five'); INSERT INTO t1 VALUES(7994, 11433, 'eleven thousand four hundred thirty-three'); INSERT INTO t1 VALUES(7995, 26519, 'twenty-six thousand five hundred nineteen'); INSERT INTO t1 VALUES(7996, 59470, 'fifty-nine thousand four hundred seventy'); INSERT INTO t1 VALUES(7997, 36434, 'thirty-six thousand four hundred thirty-four'); INSERT INTO t1 VALUES(7998, 3032, 'three thousand thirty-two'); INSERT INTO t1 VALUES(7999, 73646, 'seventy-three thousand six hundred forty-six'); INSERT INTO t1 VALUES(8000, 25010, 'twenty-five thousand ten'); INSERT INTO t1 VALUES(8001, 27479, 'twenty-seven thousand four hundred seventy-nine'); INSERT INTO t1 VALUES(8002, 58626, 'fifty-eight thousand six hundred twenty-six'); INSERT INTO t1 VALUES(8003, 13285, 'thirteen thousand two hundred eighty-five'); INSERT INTO t1 VALUES(8004, 20698, 'twenty thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(8005, 40559, 'forty thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(8006, 59640, 'fifty-nine thousand six hundred forty'); INSERT INTO t1 VALUES(8007, 18698, 'eighteen thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(8008, 73630, 'seventy-three thousand six hundred thirty'); INSERT INTO t1 VALUES(8009, 55143, 'fifty-five thousand one hundred forty-three'); INSERT INTO t1 VALUES(8010, 71496, 'seventy-one thousand four hundred ninety-six'); INSERT INTO t1 VALUES(8011, 84709, 'eighty-four thousand seven hundred nine'); INSERT INTO t1 VALUES(8012, 93121, 'ninety-three thousand one hundred twenty-one'); INSERT INTO t1 VALUES(8013, 67089, 'sixty-seven thousand eighty-nine'); INSERT INTO t1 VALUES(8014, 52407, 'fifty-two thousand four hundred seven'); INSERT INTO t1 VALUES(8015, 2119, 'two thousand one hundred nineteen'); INSERT INTO t1 VALUES(8016, 37773, 'thirty-seven thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(8017, 82286, 'eighty-two thousand two hundred eighty-six'); INSERT INTO t1 VALUES(8018, 39997, 'thirty-nine thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(8019, 63074, 'sixty-three thousand seventy-four'); INSERT INTO t1 VALUES(8020, 24179, 'twenty-four thousand one hundred seventy-nine'); INSERT INTO t1 VALUES(8021, 88468, 'eighty-eight thousand four hundred sixty-eight'); INSERT INTO t1 VALUES(8022, 81676, 'eighty-one thousand six hundred seventy-six'); INSERT INTO t1 VALUES(8023, 93060, 'ninety-three thousand sixty'); INSERT INTO t1 VALUES(8024, 6599, 'six thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(8025, 31521, 'thirty-one thousand five hundred twenty-one'); INSERT INTO t1 VALUES(8026, 80668, 'eighty thousand six hundred sixty-eight'); INSERT INTO t1 VALUES(8027, 71713, 'seventy-one thousand seven hundred thirteen'); INSERT INTO t1 VALUES(8028, 71062, 'seventy-one thousand sixty-two'); INSERT INTO t1 VALUES(8029, 49171, 'forty-nine thousand one hundred seventy-one'); INSERT INTO t1 VALUES(8030, 89752, 'eighty-nine thousand seven hundred fifty-two'); INSERT INTO t1 VALUES(8031, 8361, 'eight thousand three hundred sixty-one'); INSERT INTO t1 VALUES(8032, 89016, 'eighty-nine thousand sixteen'); INSERT INTO t1 VALUES(8033, 50123, 'fifty thousand one hundred twenty-three'); INSERT INTO t1 VALUES(8034, 93717, 'ninety-three thousand seven hundred seventeen'); INSERT INTO t1 VALUES(8035, 56769, 'fifty-six thousand seven hundred sixty-nine'); INSERT INTO t1 VALUES(8036, 53986, 'fifty-three thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(8037, 741, 'seven hundred forty-one'); INSERT INTO t1 VALUES(8038, 43063, 'forty-three thousand sixty-three'); INSERT INTO t1 VALUES(8039, 37717, 'thirty-seven thousand seven hundred seventeen'); INSERT INTO t1 VALUES(8040, 95326, 'ninety-five thousand three hundred twenty-six'); INSERT INTO t1 VALUES(8041, 87882, 'eighty-seven thousand eight hundred eighty-two'); INSERT INTO t1 VALUES(8042, 30085, 'thirty thousand eighty-five'); INSERT INTO t1 VALUES(8043, 2980, 'two thousand nine hundred eighty'); INSERT INTO t1 VALUES(8044, 99031, 'ninety-nine thousand thirty-one'); INSERT INTO t1 VALUES(8045, 1955, 'one thousand nine hundred fifty-five'); INSERT INTO t1 VALUES(8046, 71800, 'seventy-one thousand eight hundred'); INSERT INTO t1 VALUES(8047, 80845, 'eighty thousand eight hundred forty-five'); INSERT INTO t1 VALUES(8048, 3969, 'three thousand nine hundred sixty-nine'); INSERT INTO t1 VALUES(8049, 72095, 'seventy-two thousand ninety-five'); INSERT INTO t1 VALUES(8050, 83061, 'eighty-three thousand sixty-one'); INSERT INTO t1 VALUES(8051, 40526, 'forty thousand five hundred twenty-six'); INSERT INTO t1 VALUES(8052, 26143, 'twenty-six thousand one hundred forty-three'); INSERT INTO t1 VALUES(8053, 62515, 'sixty-two thousand five hundred fifteen'); INSERT INTO t1 VALUES(8054, 13173, 'thirteen thousand one hundred seventy-three'); INSERT INTO t1 VALUES(8055, 71132, 'seventy-one thousand one hundred thirty-two'); INSERT INTO t1 VALUES(8056, 86793, 'eighty-six thousand seven hundred ninety-three'); INSERT INTO t1 VALUES(8057, 69009, 'sixty-nine thousand nine'); INSERT INTO t1 VALUES(8058, 28250, 'twenty-eight thousand two hundred fifty'); INSERT INTO t1 VALUES(8059, 79276, 'seventy-nine thousand two hundred seventy-six'); INSERT INTO t1 VALUES(8060, 58463, 'fifty-eight thousand four hundred sixty-three'); INSERT INTO t1 VALUES(8061, 92913, 'ninety-two thousand nine hundred thirteen'); INSERT INTO t1 VALUES(8062, 49764, 'forty-nine thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(8063, 5579, 'five thousand five hundred seventy-nine'); INSERT INTO t1 VALUES(8064, 54549, 'fifty-four thousand five hundred forty-nine'); INSERT INTO t1 VALUES(8065, 1128, 'one thousand one hundred twenty-eight'); INSERT INTO t1 VALUES(8066, 29276, 'twenty-nine thousand two hundred seventy-six'); INSERT INTO t1 VALUES(8067, 57029, 'fifty-seven thousand twenty-nine'); INSERT INTO t1 VALUES(8068, 3571, 'three thousand five hundred seventy-one'); INSERT INTO t1 VALUES(8069, 55778, 'fifty-five thousand seven hundred seventy-eight'); INSERT INTO t1 VALUES(8070, 48777, 'forty-eight thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(8071, 76438, 'seventy-six thousand four hundred thirty-eight'); INSERT INTO t1 VALUES(8072, 78484, 'seventy-eight thousand four hundred eighty-four'); INSERT INTO t1 VALUES(8073, 99758, 'ninety-nine thousand seven hundred fifty-eight'); INSERT INTO t1 VALUES(8074, 2206, 'two thousand two hundred six'); INSERT INTO t1 VALUES(8075, 19978, 'nineteen thousand nine hundred seventy-eight'); INSERT INTO t1 VALUES(8076, 1249, 'one thousand two hundred forty-nine'); INSERT INTO t1 VALUES(8077, 18160, 'eighteen thousand one hundred sixty'); INSERT INTO t1 VALUES(8078, 18196, 'eighteen thousand one hundred ninety-six'); INSERT INTO t1 VALUES(8079, 80732, 'eighty thousand seven hundred thirty-two'); INSERT INTO t1 VALUES(8080, 47100, 'forty-seven thousand one hundred'); INSERT INTO t1 VALUES(8081, 9033, 'nine thousand thirty-three'); INSERT INTO t1 VALUES(8082, 96273, 'ninety-six thousand two hundred seventy-three'); INSERT INTO t1 VALUES(8083, 90507, 'ninety thousand five hundred seven'); INSERT INTO t1 VALUES(8084, 13791, 'thirteen thousand seven hundred ninety-one'); INSERT INTO t1 VALUES(8085, 16674, 'sixteen thousand six hundred seventy-four'); INSERT INTO t1 VALUES(8086, 30330, 'thirty thousand three hundred thirty'); INSERT INTO t1 VALUES(8087, 42272, 'forty-two thousand two hundred seventy-two'); INSERT INTO t1 VALUES(8088, 98098, 'ninety-eight thousand ninety-eight'); INSERT INTO t1 VALUES(8089, 80916, 'eighty thousand nine hundred sixteen'); INSERT INTO t1 VALUES(8090, 95718, 'ninety-five thousand seven hundred eighteen'); INSERT INTO t1 VALUES(8091, 85629, 'eighty-five thousand six hundred twenty-nine'); INSERT INTO t1 VALUES(8092, 41360, 'forty-one thousand three hundred sixty'); INSERT INTO t1 VALUES(8093, 60360, 'sixty thousand three hundred sixty'); INSERT INTO t1 VALUES(8094, 73361, 'seventy-three thousand three hundred sixty-one'); INSERT INTO t1 VALUES(8095, 59057, 'fifty-nine thousand fifty-seven'); INSERT INTO t1 VALUES(8096, 35336, 'thirty-five thousand three hundred thirty-six'); INSERT INTO t1 VALUES(8097, 22816, 'twenty-two thousand eight hundred sixteen'); INSERT INTO t1 VALUES(8098, 36922, 'thirty-six thousand nine hundred twenty-two'); INSERT INTO t1 VALUES(8099, 29250, 'twenty-nine thousand two hundred fifty'); INSERT INTO t1 VALUES(8100, 40915, 'forty thousand nine hundred fifteen'); INSERT INTO t1 VALUES(8101, 50961, 'fifty thousand nine hundred sixty-one'); INSERT INTO t1 VALUES(8102, 56267, 'fifty-six thousand two hundred sixty-seven'); INSERT INTO t1 VALUES(8103, 50557, 'fifty thousand five hundred fifty-seven'); INSERT INTO t1 VALUES(8104, 98933, 'ninety-eight thousand nine hundred thirty-three'); INSERT INTO t1 VALUES(8105, 69073, 'sixty-nine thousand seventy-three'); INSERT INTO t1 VALUES(8106, 32107, 'thirty-two thousand one hundred seven'); INSERT INTO t1 VALUES(8107, 18324, 'eighteen thousand three hundred twenty-four'); INSERT INTO t1 VALUES(8108, 78521, 'seventy-eight thousand five hundred twenty-one'); INSERT INTO t1 VALUES(8109, 64469, 'sixty-four thousand four hundred sixty-nine'); INSERT INTO t1 VALUES(8110, 59797, 'fifty-nine thousand seven hundred ninety-seven'); INSERT INTO t1 VALUES(8111, 2652, 'two thousand six hundred fifty-two'); INSERT INTO t1 VALUES(8112, 59663, 'fifty-nine thousand six hundred sixty-three'); INSERT INTO t1 VALUES(8113, 18215, 'eighteen thousand two hundred fifteen'); INSERT INTO t1 VALUES(8114, 13864, 'thirteen thousand eight hundred sixty-four'); INSERT INTO t1 VALUES(8115, 64953, 'sixty-four thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(8116, 12249, 'twelve thousand two hundred forty-nine'); INSERT INTO t1 VALUES(8117, 34458, 'thirty-four thousand four hundred fifty-eight'); INSERT INTO t1 VALUES(8118, 11876, 'eleven thousand eight hundred seventy-six'); INSERT INTO t1 VALUES(8119, 76788, 'seventy-six thousand seven hundred eighty-eight'); INSERT INTO t1 VALUES(8120, 80100, 'eighty thousand one hundred'); INSERT INTO t1 VALUES(8121, 60522, 'sixty thousand five hundred twenty-two'); INSERT INTO t1 VALUES(8122, 69370, 'sixty-nine thousand three hundred seventy'); INSERT INTO t1 VALUES(8123, 95232, 'ninety-five thousand two hundred thirty-two'); INSERT INTO t1 VALUES(8124, 59484, 'fifty-nine thousand four hundred eighty-four'); INSERT INTO t1 VALUES(8125, 52341, 'fifty-two thousand three hundred forty-one'); INSERT INTO t1 VALUES(8126, 358, 'three hundred fifty-eight'); INSERT INTO t1 VALUES(8127, 72762, 'seventy-two thousand seven hundred sixty-two'); INSERT INTO t1 VALUES(8128, 99191, 'ninety-nine thousand one hundred ninety-one'); INSERT INTO t1 VALUES(8129, 77103, 'seventy-seven thousand one hundred three'); INSERT INTO t1 VALUES(8130, 89140, 'eighty-nine thousand one hundred forty'); INSERT INTO t1 VALUES(8131, 39047, 'thirty-nine thousand forty-seven'); INSERT INTO t1 VALUES(8132, 29803, 'twenty-nine thousand eight hundred three'); INSERT INTO t1 VALUES(8133, 53574, 'fifty-three thousand five hundred seventy-four'); INSERT INTO t1 VALUES(8134, 29183, 'twenty-nine thousand one hundred eighty-three'); INSERT INTO t1 VALUES(8135, 63237, 'sixty-three thousand two hundred thirty-seven'); INSERT INTO t1 VALUES(8136, 64365, 'sixty-four thousand three hundred sixty-five'); INSERT INTO t1 VALUES(8137, 98023, 'ninety-eight thousand twenty-three'); INSERT INTO t1 VALUES(8138, 25085, 'twenty-five thousand eighty-five'); INSERT INTO t1 VALUES(8139, 95610, 'ninety-five thousand six hundred ten'); INSERT INTO t1 VALUES(8140, 67879, 'sixty-seven thousand eight hundred seventy-nine'); INSERT INTO t1 VALUES(8141, 1354, 'one thousand three hundred fifty-four'); INSERT INTO t1 VALUES(8142, 11017, 'eleven thousand seventeen'); INSERT INTO t1 VALUES(8143, 45440, 'forty-five thousand four hundred forty'); INSERT INTO t1 VALUES(8144, 97792, 'ninety-seven thousand seven hundred ninety-two'); INSERT INTO t1 VALUES(8145, 39693, 'thirty-nine thousand six hundred ninety-three'); INSERT INTO t1 VALUES(8146, 58430, 'fifty-eight thousand four hundred thirty'); INSERT INTO t1 VALUES(8147, 24424, 'twenty-four thousand four hundred twenty-four'); INSERT INTO t1 VALUES(8148, 88843, 'eighty-eight thousand eight hundred forty-three'); INSERT INTO t1 VALUES(8149, 32146, 'thirty-two thousand one hundred forty-six'); INSERT INTO t1 VALUES(8150, 45589, 'forty-five thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(8151, 30705, 'thirty thousand seven hundred five'); INSERT INTO t1 VALUES(8152, 28845, 'twenty-eight thousand eight hundred forty-five'); INSERT INTO t1 VALUES(8153, 9572, 'nine thousand five hundred seventy-two'); INSERT INTO t1 VALUES(8154, 37012, 'thirty-seven thousand twelve'); INSERT INTO t1 VALUES(8155, 58391, 'fifty-eight thousand three hundred ninety-one'); INSERT INTO t1 VALUES(8156, 91537, 'ninety-one thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(8157, 13257, 'thirteen thousand two hundred fifty-seven'); INSERT INTO t1 VALUES(8158, 86861, 'eighty-six thousand eight hundred sixty-one'); INSERT INTO t1 VALUES(8159, 48064, 'forty-eight thousand sixty-four'); INSERT INTO t1 VALUES(8160, 12917, 'twelve thousand nine hundred seventeen'); INSERT INTO t1 VALUES(8161, 91388, 'ninety-one thousand three hundred eighty-eight'); INSERT INTO t1 VALUES(8162, 30229, 'thirty thousand two hundred twenty-nine'); INSERT INTO t1 VALUES(8163, 58201, 'fifty-eight thousand two hundred one'); INSERT INTO t1 VALUES(8164, 22229, 'twenty-two thousand two hundred twenty-nine'); INSERT INTO t1 VALUES(8165, 14691, 'fourteen thousand six hundred ninety-one'); INSERT INTO t1 VALUES(8166, 32572, 'thirty-two thousand five hundred seventy-two'); INSERT INTO t1 VALUES(8167, 86147, 'eighty-six thousand one hundred forty-seven'); INSERT INTO t1 VALUES(8168, 49150, 'forty-nine thousand one hundred fifty'); INSERT INTO t1 VALUES(8169, 80925, 'eighty thousand nine hundred twenty-five'); INSERT INTO t1 VALUES(8170, 43991, 'forty-three thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(8171, 67285, 'sixty-seven thousand two hundred eighty-five'); INSERT INTO t1 VALUES(8172, 56602, 'fifty-six thousand six hundred two'); INSERT INTO t1 VALUES(8173, 33979, 'thirty-three thousand nine hundred seventy-nine'); INSERT INTO t1 VALUES(8174, 15087, 'fifteen thousand eighty-seven'); INSERT INTO t1 VALUES(8175, 34198, 'thirty-four thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(8176, 82781, 'eighty-two thousand seven hundred eighty-one'); INSERT INTO t1 VALUES(8177, 14971, 'fourteen thousand nine hundred seventy-one'); INSERT INTO t1 VALUES(8178, 25257, 'twenty-five thousand two hundred fifty-seven'); INSERT INTO t1 VALUES(8179, 71874, 'seventy-one thousand eight hundred seventy-four'); INSERT INTO t1 VALUES(8180, 92105, 'ninety-two thousand one hundred five'); INSERT INTO t1 VALUES(8181, 3233, 'three thousand two hundred thirty-three'); INSERT INTO t1 VALUES(8182, 48317, 'forty-eight thousand three hundred seventeen'); INSERT INTO t1 VALUES(8183, 67485, 'sixty-seven thousand four hundred eighty-five'); INSERT INTO t1 VALUES(8184, 31547, 'thirty-one thousand five hundred forty-seven'); INSERT INTO t1 VALUES(8185, 20316, 'twenty thousand three hundred sixteen'); INSERT INTO t1 VALUES(8186, 58491, 'fifty-eight thousand four hundred ninety-one'); INSERT INTO t1 VALUES(8187, 21100, 'twenty-one thousand one hundred'); INSERT INTO t1 VALUES(8188, 51450, 'fifty-one thousand four hundred fifty'); INSERT INTO t1 VALUES(8189, 98068, 'ninety-eight thousand sixty-eight'); INSERT INTO t1 VALUES(8190, 87771, 'eighty-seven thousand seven hundred seventy-one'); INSERT INTO t1 VALUES(8191, 85224, 'eighty-five thousand two hundred twenty-four'); INSERT INTO t1 VALUES(8192, 63199, 'sixty-three thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(8193, 17141, 'seventeen thousand one hundred forty-one'); INSERT INTO t1 VALUES(8194, 31880, 'thirty-one thousand eight hundred eighty'); INSERT INTO t1 VALUES(8195, 58125, 'fifty-eight thousand one hundred twenty-five'); INSERT INTO t1 VALUES(8196, 73194, 'seventy-three thousand one hundred ninety-four'); INSERT INTO t1 VALUES(8197, 90851, 'ninety thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(8198, 8138, 'eight thousand one hundred thirty-eight'); INSERT INTO t1 VALUES(8199, 4316, 'four thousand three hundred sixteen'); INSERT INTO t1 VALUES(8200, 87558, 'eighty-seven thousand five hundred fifty-eight'); INSERT INTO t1 VALUES(8201, 95961, 'ninety-five thousand nine hundred sixty-one'); INSERT INTO t1 VALUES(8202, 57143, 'fifty-seven thousand one hundred forty-three'); INSERT INTO t1 VALUES(8203, 48156, 'forty-eight thousand one hundred fifty-six'); INSERT INTO t1 VALUES(8204, 37862, 'thirty-seven thousand eight hundred sixty-two'); INSERT INTO t1 VALUES(8205, 33609, 'thirty-three thousand six hundred nine'); INSERT INTO t1 VALUES(8206, 12195, 'twelve thousand one hundred ninety-five'); INSERT INTO t1 VALUES(8207, 39055, 'thirty-nine thousand fifty-five'); INSERT INTO t1 VALUES(8208, 11540, 'eleven thousand five hundred forty'); INSERT INTO t1 VALUES(8209, 35532, 'thirty-five thousand five hundred thirty-two'); INSERT INTO t1 VALUES(8210, 39705, 'thirty-nine thousand seven hundred five'); INSERT INTO t1 VALUES(8211, 89223, 'eighty-nine thousand two hundred twenty-three'); INSERT INTO t1 VALUES(8212, 14391, 'fourteen thousand three hundred ninety-one'); INSERT INTO t1 VALUES(8213, 60858, 'sixty thousand eight hundred fifty-eight'); INSERT INTO t1 VALUES(8214, 92117, 'ninety-two thousand one hundred seventeen'); INSERT INTO t1 VALUES(8215, 83752, 'eighty-three thousand seven hundred fifty-two'); INSERT INTO t1 VALUES(8216, 35438, 'thirty-five thousand four hundred thirty-eight'); INSERT INTO t1 VALUES(8217, 55024, 'fifty-five thousand twenty-four'); INSERT INTO t1 VALUES(8218, 88639, 'eighty-eight thousand six hundred thirty-nine'); INSERT INTO t1 VALUES(8219, 36972, 'thirty-six thousand nine hundred seventy-two'); INSERT INTO t1 VALUES(8220, 83163, 'eighty-three thousand one hundred sixty-three'); INSERT INTO t1 VALUES(8221, 40225, 'forty thousand two hundred twenty-five'); INSERT INTO t1 VALUES(8222, 89060, 'eighty-nine thousand sixty'); INSERT INTO t1 VALUES(8223, 67419, 'sixty-seven thousand four hundred nineteen'); INSERT INTO t1 VALUES(8224, 14016, 'fourteen thousand sixteen'); INSERT INTO t1 VALUES(8225, 33963, 'thirty-three thousand nine hundred sixty-three'); INSERT INTO t1 VALUES(8226, 42430, 'forty-two thousand four hundred thirty'); INSERT INTO t1 VALUES(8227, 81366, 'eighty-one thousand three hundred sixty-six'); INSERT INTO t1 VALUES(8228, 23719, 'twenty-three thousand seven hundred nineteen'); INSERT INTO t1 VALUES(8229, 41672, 'forty-one thousand six hundred seventy-two'); INSERT INTO t1 VALUES(8230, 50145, 'fifty thousand one hundred forty-five'); INSERT INTO t1 VALUES(8231, 19515, 'nineteen thousand five hundred fifteen'); INSERT INTO t1 VALUES(8232, 53266, 'fifty-three thousand two hundred sixty-six'); INSERT INTO t1 VALUES(8233, 31624, 'thirty-one thousand six hundred twenty-four'); INSERT INTO t1 VALUES(8234, 5164, 'five thousand one hundred sixty-four'); INSERT INTO t1 VALUES(8235, 72246, 'seventy-two thousand two hundred forty-six'); INSERT INTO t1 VALUES(8236, 90694, 'ninety thousand six hundred ninety-four'); INSERT INTO t1 VALUES(8237, 62075, 'sixty-two thousand seventy-five'); INSERT INTO t1 VALUES(8238, 53502, 'fifty-three thousand five hundred two'); INSERT INTO t1 VALUES(8239, 73434, 'seventy-three thousand four hundred thirty-four'); INSERT INTO t1 VALUES(8240, 28967, 'twenty-eight thousand nine hundred sixty-seven'); INSERT INTO t1 VALUES(8241, 2530, 'two thousand five hundred thirty'); INSERT INTO t1 VALUES(8242, 38201, 'thirty-eight thousand two hundred one'); INSERT INTO t1 VALUES(8243, 43561, 'forty-three thousand five hundred sixty-one'); INSERT INTO t1 VALUES(8244, 45811, 'forty-five thousand eight hundred eleven'); INSERT INTO t1 VALUES(8245, 54679, 'fifty-four thousand six hundred seventy-nine'); INSERT INTO t1 VALUES(8246, 55199, 'fifty-five thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(8247, 94154, 'ninety-four thousand one hundred fifty-four'); INSERT INTO t1 VALUES(8248, 98890, 'ninety-eight thousand eight hundred ninety'); INSERT INTO t1 VALUES(8249, 61816, 'sixty-one thousand eight hundred sixteen'); INSERT INTO t1 VALUES(8250, 32545, 'thirty-two thousand five hundred forty-five'); INSERT INTO t1 VALUES(8251, 42024, 'forty-two thousand twenty-four'); INSERT INTO t1 VALUES(8252, 43155, 'forty-three thousand one hundred fifty-five'); INSERT INTO t1 VALUES(8253, 79995, 'seventy-nine thousand nine hundred ninety-five'); INSERT INTO t1 VALUES(8254, 42594, 'forty-two thousand five hundred ninety-four'); INSERT INTO t1 VALUES(8255, 96849, 'ninety-six thousand eight hundred forty-nine'); INSERT INTO t1 VALUES(8256, 66568, 'sixty-six thousand five hundred sixty-eight'); INSERT INTO t1 VALUES(8257, 41343, 'forty-one thousand three hundred forty-three'); INSERT INTO t1 VALUES(8258, 52623, 'fifty-two thousand six hundred twenty-three'); INSERT INTO t1 VALUES(8259, 33997, 'thirty-three thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(8260, 93000, 'ninety-three thousand'); INSERT INTO t1 VALUES(8261, 36529, 'thirty-six thousand five hundred twenty-nine'); INSERT INTO t1 VALUES(8262, 67420, 'sixty-seven thousand four hundred twenty'); INSERT INTO t1 VALUES(8263, 74806, 'seventy-four thousand eight hundred six'); INSERT INTO t1 VALUES(8264, 54750, 'fifty-four thousand seven hundred fifty'); INSERT INTO t1 VALUES(8265, 13239, 'thirteen thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(8266, 83927, 'eighty-three thousand nine hundred twenty-seven'); INSERT INTO t1 VALUES(8267, 17761, 'seventeen thousand seven hundred sixty-one'); INSERT INTO t1 VALUES(8268, 2368, 'two thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(8269, 7316, 'seven thousand three hundred sixteen'); INSERT INTO t1 VALUES(8270, 68027, 'sixty-eight thousand twenty-seven'); INSERT INTO t1 VALUES(8271, 68207, 'sixty-eight thousand two hundred seven'); INSERT INTO t1 VALUES(8272, 45245, 'forty-five thousand two hundred forty-five'); INSERT INTO t1 VALUES(8273, 48436, 'forty-eight thousand four hundred thirty-six'); INSERT INTO t1 VALUES(8274, 32047, 'thirty-two thousand forty-seven'); INSERT INTO t1 VALUES(8275, 85648, 'eighty-five thousand six hundred forty-eight'); INSERT INTO t1 VALUES(8276, 87489, 'eighty-seven thousand four hundred eighty-nine'); INSERT INTO t1 VALUES(8277, 97079, 'ninety-seven thousand seventy-nine'); INSERT INTO t1 VALUES(8278, 24294, 'twenty-four thousand two hundred ninety-four'); INSERT INTO t1 VALUES(8279, 1127, 'one thousand one hundred twenty-seven'); INSERT INTO t1 VALUES(8280, 57911, 'fifty-seven thousand nine hundred eleven'); INSERT INTO t1 VALUES(8281, 53131, 'fifty-three thousand one hundred thirty-one'); INSERT INTO t1 VALUES(8282, 15784, 'fifteen thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(8283, 6518, 'six thousand five hundred eighteen'); INSERT INTO t1 VALUES(8284, 47301, 'forty-seven thousand three hundred one'); INSERT INTO t1 VALUES(8285, 88470, 'eighty-eight thousand four hundred seventy'); INSERT INTO t1 VALUES(8286, 96186, 'ninety-six thousand one hundred eighty-six'); INSERT INTO t1 VALUES(8287, 78511, 'seventy-eight thousand five hundred eleven'); INSERT INTO t1 VALUES(8288, 52601, 'fifty-two thousand six hundred one'); INSERT INTO t1 VALUES(8289, 39772, 'thirty-nine thousand seven hundred seventy-two'); INSERT INTO t1 VALUES(8290, 86958, 'eighty-six thousand nine hundred fifty-eight'); INSERT INTO t1 VALUES(8291, 62096, 'sixty-two thousand ninety-six'); INSERT INTO t1 VALUES(8292, 46616, 'forty-six thousand six hundred sixteen'); INSERT INTO t1 VALUES(8293, 16013, 'sixteen thousand thirteen'); INSERT INTO t1 VALUES(8294, 57437, 'fifty-seven thousand four hundred thirty-seven'); INSERT INTO t1 VALUES(8295, 52945, 'fifty-two thousand nine hundred forty-five'); INSERT INTO t1 VALUES(8296, 7504, 'seven thousand five hundred four'); INSERT INTO t1 VALUES(8297, 66359, 'sixty-six thousand three hundred fifty-nine'); INSERT INTO t1 VALUES(8298, 21848, 'twenty-one thousand eight hundred forty-eight'); INSERT INTO t1 VALUES(8299, 9834, 'nine thousand eight hundred thirty-four'); INSERT INTO t1 VALUES(8300, 19907, 'nineteen thousand nine hundred seven'); INSERT INTO t1 VALUES(8301, 36662, 'thirty-six thousand six hundred sixty-two'); INSERT INTO t1 VALUES(8302, 20527, 'twenty thousand five hundred twenty-seven'); INSERT INTO t1 VALUES(8303, 75486, 'seventy-five thousand four hundred eighty-six'); INSERT INTO t1 VALUES(8304, 99439, 'ninety-nine thousand four hundred thirty-nine'); INSERT INTO t1 VALUES(8305, 5150, 'five thousand one hundred fifty'); INSERT INTO t1 VALUES(8306, 7427, 'seven thousand four hundred twenty-seven'); INSERT INTO t1 VALUES(8307, 6568, 'six thousand five hundred sixty-eight'); INSERT INTO t1 VALUES(8308, 1671, 'one thousand six hundred seventy-one'); INSERT INTO t1 VALUES(8309, 91293, 'ninety-one thousand two hundred ninety-three'); INSERT INTO t1 VALUES(8310, 30754, 'thirty thousand seven hundred fifty-four'); INSERT INTO t1 VALUES(8311, 17548, 'seventeen thousand five hundred forty-eight'); INSERT INTO t1 VALUES(8312, 32255, 'thirty-two thousand two hundred fifty-five'); INSERT INTO t1 VALUES(8313, 3009, 'three thousand nine'); INSERT INTO t1 VALUES(8314, 19068, 'nineteen thousand sixty-eight'); INSERT INTO t1 VALUES(8315, 98494, 'ninety-eight thousand four hundred ninety-four'); INSERT INTO t1 VALUES(8316, 3725, 'three thousand seven hundred twenty-five'); INSERT INTO t1 VALUES(8317, 506, 'five hundred six'); INSERT INTO t1 VALUES(8318, 20558, 'twenty thousand five hundred fifty-eight'); INSERT INTO t1 VALUES(8319, 9801, 'nine thousand eight hundred one'); INSERT INTO t1 VALUES(8320, 94764, 'ninety-four thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(8321, 83226, 'eighty-three thousand two hundred twenty-six'); INSERT INTO t1 VALUES(8322, 46633, 'forty-six thousand six hundred thirty-three'); INSERT INTO t1 VALUES(8323, 13944, 'thirteen thousand nine hundred forty-four'); INSERT INTO t1 VALUES(8324, 82733, 'eighty-two thousand seven hundred thirty-three'); INSERT INTO t1 VALUES(8325, 2155, 'two thousand one hundred fifty-five'); INSERT INTO t1 VALUES(8326, 36675, 'thirty-six thousand six hundred seventy-five'); INSERT INTO t1 VALUES(8327, 56733, 'fifty-six thousand seven hundred thirty-three'); INSERT INTO t1 VALUES(8328, 73771, 'seventy-three thousand seven hundred seventy-one'); INSERT INTO t1 VALUES(8329, 55822, 'fifty-five thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(8330, 84190, 'eighty-four thousand one hundred ninety'); INSERT INTO t1 VALUES(8331, 10899, 'ten thousand eight hundred ninety-nine'); INSERT INTO t1 VALUES(8332, 74670, 'seventy-four thousand six hundred seventy'); INSERT INTO t1 VALUES(8333, 41502, 'forty-one thousand five hundred two'); INSERT INTO t1 VALUES(8334, 76649, 'seventy-six thousand six hundred forty-nine'); INSERT INTO t1 VALUES(8335, 60368, 'sixty thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(8336, 3265, 'three thousand two hundred sixty-five'); INSERT INTO t1 VALUES(8337, 86270, 'eighty-six thousand two hundred seventy'); INSERT INTO t1 VALUES(8338, 15450, 'fifteen thousand four hundred fifty'); INSERT INTO t1 VALUES(8339, 4271, 'four thousand two hundred seventy-one'); INSERT INTO t1 VALUES(8340, 94266, 'ninety-four thousand two hundred sixty-six'); INSERT INTO t1 VALUES(8341, 7172, 'seven thousand one hundred seventy-two'); INSERT INTO t1 VALUES(8342, 97104, 'ninety-seven thousand one hundred four'); INSERT INTO t1 VALUES(8343, 96606, 'ninety-six thousand six hundred six'); INSERT INTO t1 VALUES(8344, 35820, 'thirty-five thousand eight hundred twenty'); INSERT INTO t1 VALUES(8345, 97848, 'ninety-seven thousand eight hundred forty-eight'); INSERT INTO t1 VALUES(8346, 37904, 'thirty-seven thousand nine hundred four'); INSERT INTO t1 VALUES(8347, 80083, 'eighty thousand eighty-three'); INSERT INTO t1 VALUES(8348, 71444, 'seventy-one thousand four hundred forty-four'); INSERT INTO t1 VALUES(8349, 11778, 'eleven thousand seven hundred seventy-eight'); INSERT INTO t1 VALUES(8350, 41361, 'forty-one thousand three hundred sixty-one'); INSERT INTO t1 VALUES(8351, 51522, 'fifty-one thousand five hundred twenty-two'); INSERT INTO t1 VALUES(8352, 83954, 'eighty-three thousand nine hundred fifty-four'); INSERT INTO t1 VALUES(8353, 4422, 'four thousand four hundred twenty-two'); INSERT INTO t1 VALUES(8354, 36420, 'thirty-six thousand four hundred twenty'); INSERT INTO t1 VALUES(8355, 95149, 'ninety-five thousand one hundred forty-nine'); INSERT INTO t1 VALUES(8356, 782, 'seven hundred eighty-two'); INSERT INTO t1 VALUES(8357, 88695, 'eighty-eight thousand six hundred ninety-five'); INSERT INTO t1 VALUES(8358, 99699, 'ninety-nine thousand six hundred ninety-nine'); INSERT INTO t1 VALUES(8359, 86103, 'eighty-six thousand one hundred three'); INSERT INTO t1 VALUES(8360, 6403, 'six thousand four hundred three'); INSERT INTO t1 VALUES(8361, 13147, 'thirteen thousand one hundred forty-seven'); INSERT INTO t1 VALUES(8362, 48280, 'forty-eight thousand two hundred eighty'); INSERT INTO t1 VALUES(8363, 90283, 'ninety thousand two hundred eighty-three'); INSERT INTO t1 VALUES(8364, 21126, 'twenty-one thousand one hundred twenty-six'); INSERT INTO t1 VALUES(8365, 51269, 'fifty-one thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(8366, 88061, 'eighty-eight thousand sixty-one'); INSERT INTO t1 VALUES(8367, 38589, 'thirty-eight thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(8368, 46768, 'forty-six thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(8369, 69339, 'sixty-nine thousand three hundred thirty-nine'); INSERT INTO t1 VALUES(8370, 62819, 'sixty-two thousand eight hundred nineteen'); INSERT INTO t1 VALUES(8371, 39063, 'thirty-nine thousand sixty-three'); INSERT INTO t1 VALUES(8372, 51602, 'fifty-one thousand six hundred two'); INSERT INTO t1 VALUES(8373, 5882, 'five thousand eight hundred eighty-two'); INSERT INTO t1 VALUES(8374, 99932, 'ninety-nine thousand nine hundred thirty-two'); INSERT INTO t1 VALUES(8375, 11937, 'eleven thousand nine hundred thirty-seven'); INSERT INTO t1 VALUES(8376, 63343, 'sixty-three thousand three hundred forty-three'); INSERT INTO t1 VALUES(8377, 38759, 'thirty-eight thousand seven hundred fifty-nine'); INSERT INTO t1 VALUES(8378, 93921, 'ninety-three thousand nine hundred twenty-one'); INSERT INTO t1 VALUES(8379, 58802, 'fifty-eight thousand eight hundred two'); INSERT INTO t1 VALUES(8380, 67137, 'sixty-seven thousand one hundred thirty-seven'); INSERT INTO t1 VALUES(8381, 20290, 'twenty thousand two hundred ninety'); INSERT INTO t1 VALUES(8382, 40506, 'forty thousand five hundred six'); INSERT INTO t1 VALUES(8383, 36085, 'thirty-six thousand eighty-five'); INSERT INTO t1 VALUES(8384, 10702, 'ten thousand seven hundred two'); INSERT INTO t1 VALUES(8385, 7659, 'seven thousand six hundred fifty-nine'); INSERT INTO t1 VALUES(8386, 92872, 'ninety-two thousand eight hundred seventy-two'); INSERT INTO t1 VALUES(8387, 49744, 'forty-nine thousand seven hundred forty-four'); INSERT INTO t1 VALUES(8388, 29784, 'twenty-nine thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(8389, 45485, 'forty-five thousand four hundred eighty-five'); INSERT INTO t1 VALUES(8390, 68716, 'sixty-eight thousand seven hundred sixteen'); INSERT INTO t1 VALUES(8391, 19142, 'nineteen thousand one hundred forty-two'); INSERT INTO t1 VALUES(8392, 78824, 'seventy-eight thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(8393, 29334, 'twenty-nine thousand three hundred thirty-four'); INSERT INTO t1 VALUES(8394, 20476, 'twenty thousand four hundred seventy-six'); INSERT INTO t1 VALUES(8395, 61604, 'sixty-one thousand six hundred four'); INSERT INTO t1 VALUES(8396, 9696, 'nine thousand six hundred ninety-six'); INSERT INTO t1 VALUES(8397, 20637, 'twenty thousand six hundred thirty-seven'); INSERT INTO t1 VALUES(8398, 55984, 'fifty-five thousand nine hundred eighty-four'); INSERT INTO t1 VALUES(8399, 1593, 'one thousand five hundred ninety-three'); INSERT INTO t1 VALUES(8400, 65413, 'sixty-five thousand four hundred thirteen'); INSERT INTO t1 VALUES(8401, 12533, 'twelve thousand five hundred thirty-three'); INSERT INTO t1 VALUES(8402, 73306, 'seventy-three thousand three hundred six'); INSERT INTO t1 VALUES(8403, 11304, 'eleven thousand three hundred four'); INSERT INTO t1 VALUES(8404, 56972, 'fifty-six thousand nine hundred seventy-two'); INSERT INTO t1 VALUES(8405, 84215, 'eighty-four thousand two hundred fifteen'); INSERT INTO t1 VALUES(8406, 34196, 'thirty-four thousand one hundred ninety-six'); INSERT INTO t1 VALUES(8407, 25609, 'twenty-five thousand six hundred nine'); INSERT INTO t1 VALUES(8408, 45688, 'forty-five thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(8409, 59901, 'fifty-nine thousand nine hundred one'); INSERT INTO t1 VALUES(8410, 17081, 'seventeen thousand eighty-one'); INSERT INTO t1 VALUES(8411, 36096, 'thirty-six thousand ninety-six'); INSERT INTO t1 VALUES(8412, 35695, 'thirty-five thousand six hundred ninety-five'); INSERT INTO t1 VALUES(8413, 17152, 'seventeen thousand one hundred fifty-two'); INSERT INTO t1 VALUES(8414, 25704, 'twenty-five thousand seven hundred four'); INSERT INTO t1 VALUES(8415, 42572, 'forty-two thousand five hundred seventy-two'); INSERT INTO t1 VALUES(8416, 27259, 'twenty-seven thousand two hundred fifty-nine'); INSERT INTO t1 VALUES(8417, 90836, 'ninety thousand eight hundred thirty-six'); INSERT INTO t1 VALUES(8418, 6939, 'six thousand nine hundred thirty-nine'); INSERT INTO t1 VALUES(8419, 38347, 'thirty-eight thousand three hundred forty-seven'); INSERT INTO t1 VALUES(8420, 73678, 'seventy-three thousand six hundred seventy-eight'); INSERT INTO t1 VALUES(8421, 95019, 'ninety-five thousand nineteen'); INSERT INTO t1 VALUES(8422, 47953, 'forty-seven thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(8423, 62524, 'sixty-two thousand five hundred twenty-four'); INSERT INTO t1 VALUES(8424, 82729, 'eighty-two thousand seven hundred twenty-nine'); INSERT INTO t1 VALUES(8425, 60257, 'sixty thousand two hundred fifty-seven'); INSERT INTO t1 VALUES(8426, 81872, 'eighty-one thousand eight hundred seventy-two'); INSERT INTO t1 VALUES(8427, 39926, 'thirty-nine thousand nine hundred twenty-six'); INSERT INTO t1 VALUES(8428, 84094, 'eighty-four thousand ninety-four'); INSERT INTO t1 VALUES(8429, 80123, 'eighty thousand one hundred twenty-three'); INSERT INTO t1 VALUES(8430, 16654, 'sixteen thousand six hundred fifty-four'); INSERT INTO t1 VALUES(8431, 38493, 'thirty-eight thousand four hundred ninety-three'); INSERT INTO t1 VALUES(8432, 98483, 'ninety-eight thousand four hundred eighty-three'); INSERT INTO t1 VALUES(8433, 84254, 'eighty-four thousand two hundred fifty-four'); INSERT INTO t1 VALUES(8434, 62035, 'sixty-two thousand thirty-five'); INSERT INTO t1 VALUES(8435, 87616, 'eighty-seven thousand six hundred sixteen'); INSERT INTO t1 VALUES(8436, 66715, 'sixty-six thousand seven hundred fifteen'); INSERT INTO t1 VALUES(8437, 10531, 'ten thousand five hundred thirty-one'); INSERT INTO t1 VALUES(8438, 42974, 'forty-two thousand nine hundred seventy-four'); INSERT INTO t1 VALUES(8439, 1198, 'one thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(8440, 7613, 'seven thousand six hundred thirteen'); INSERT INTO t1 VALUES(8441, 43155, 'forty-three thousand one hundred fifty-five'); INSERT INTO t1 VALUES(8442, 5799, 'five thousand seven hundred ninety-nine'); INSERT INTO t1 VALUES(8443, 84987, 'eighty-four thousand nine hundred eighty-seven'); INSERT INTO t1 VALUES(8444, 76510, 'seventy-six thousand five hundred ten'); INSERT INTO t1 VALUES(8445, 42076, 'forty-two thousand seventy-six'); INSERT INTO t1 VALUES(8446, 4392, 'four thousand three hundred ninety-two'); INSERT INTO t1 VALUES(8447, 55916, 'fifty-five thousand nine hundred sixteen'); INSERT INTO t1 VALUES(8448, 19890, 'nineteen thousand eight hundred ninety'); INSERT INTO t1 VALUES(8449, 20145, 'twenty thousand one hundred forty-five'); INSERT INTO t1 VALUES(8450, 58067, 'fifty-eight thousand sixty-seven'); INSERT INTO t1 VALUES(8451, 38718, 'thirty-eight thousand seven hundred eighteen'); INSERT INTO t1 VALUES(8452, 31072, 'thirty-one thousand seventy-two'); INSERT INTO t1 VALUES(8453, 30400, 'thirty thousand four hundred'); INSERT INTO t1 VALUES(8454, 80134, 'eighty thousand one hundred thirty-four'); INSERT INTO t1 VALUES(8455, 91973, 'ninety-one thousand nine hundred seventy-three'); INSERT INTO t1 VALUES(8456, 25886, 'twenty-five thousand eight hundred eighty-six'); INSERT INTO t1 VALUES(8457, 47270, 'forty-seven thousand two hundred seventy'); INSERT INTO t1 VALUES(8458, 74943, 'seventy-four thousand nine hundred forty-three'); INSERT INTO t1 VALUES(8459, 78060, 'seventy-eight thousand sixty'); INSERT INTO t1 VALUES(8460, 83421, 'eighty-three thousand four hundred twenty-one'); INSERT INTO t1 VALUES(8461, 37348, 'thirty-seven thousand three hundred forty-eight'); INSERT INTO t1 VALUES(8462, 15366, 'fifteen thousand three hundred sixty-six'); INSERT INTO t1 VALUES(8463, 14315, 'fourteen thousand three hundred fifteen'); INSERT INTO t1 VALUES(8464, 75937, 'seventy-five thousand nine hundred thirty-seven'); INSERT INTO t1 VALUES(8465, 12600, 'twelve thousand six hundred'); INSERT INTO t1 VALUES(8466, 41227, 'forty-one thousand two hundred twenty-seven'); INSERT INTO t1 VALUES(8467, 21381, 'twenty-one thousand three hundred eighty-one'); INSERT INTO t1 VALUES(8468, 1134, 'one thousand one hundred thirty-four'); INSERT INTO t1 VALUES(8469, 89927, 'eighty-nine thousand nine hundred twenty-seven'); INSERT INTO t1 VALUES(8470, 12476, 'twelve thousand four hundred seventy-six'); INSERT INTO t1 VALUES(8471, 78344, 'seventy-eight thousand three hundred forty-four'); INSERT INTO t1 VALUES(8472, 64908, 'sixty-four thousand nine hundred eight'); INSERT INTO t1 VALUES(8473, 52197, 'fifty-two thousand one hundred ninety-seven'); INSERT INTO t1 VALUES(8474, 39000, 'thirty-nine thousand'); INSERT INTO t1 VALUES(8475, 70741, 'seventy thousand seven hundred forty-one'); INSERT INTO t1 VALUES(8476, 9345, 'nine thousand three hundred forty-five'); INSERT INTO t1 VALUES(8477, 50062, 'fifty thousand sixty-two'); INSERT INTO t1 VALUES(8478, 59347, 'fifty-nine thousand three hundred forty-seven'); INSERT INTO t1 VALUES(8479, 31107, 'thirty-one thousand one hundred seven'); INSERT INTO t1 VALUES(8480, 46342, 'forty-six thousand three hundred forty-two'); INSERT INTO t1 VALUES(8481, 58200, 'fifty-eight thousand two hundred'); INSERT INTO t1 VALUES(8482, 5517, 'five thousand five hundred seventeen'); INSERT INTO t1 VALUES(8483, 31657, 'thirty-one thousand six hundred fifty-seven'); INSERT INTO t1 VALUES(8484, 621, 'six hundred twenty-one'); INSERT INTO t1 VALUES(8485, 71080, 'seventy-one thousand eighty'); INSERT INTO t1 VALUES(8486, 65225, 'sixty-five thousand two hundred twenty-five'); INSERT INTO t1 VALUES(8487, 1599, 'one thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(8488, 95615, 'ninety-five thousand six hundred fifteen'); INSERT INTO t1 VALUES(8489, 40631, 'forty thousand six hundred thirty-one'); INSERT INTO t1 VALUES(8490, 94073, 'ninety-four thousand seventy-three'); INSERT INTO t1 VALUES(8491, 42794, 'forty-two thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(8492, 67162, 'sixty-seven thousand one hundred sixty-two'); INSERT INTO t1 VALUES(8493, 61880, 'sixty-one thousand eight hundred eighty'); INSERT INTO t1 VALUES(8494, 96308, 'ninety-six thousand three hundred eight'); INSERT INTO t1 VALUES(8495, 64078, 'sixty-four thousand seventy-eight'); INSERT INTO t1 VALUES(8496, 27669, 'twenty-seven thousand six hundred sixty-nine'); INSERT INTO t1 VALUES(8497, 70764, 'seventy thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(8498, 79881, 'seventy-nine thousand eight hundred eighty-one'); INSERT INTO t1 VALUES(8499, 15720, 'fifteen thousand seven hundred twenty'); INSERT INTO t1 VALUES(8500, 57996, 'fifty-seven thousand nine hundred ninety-six'); INSERT INTO t1 VALUES(8501, 98998, 'ninety-eight thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(8502, 97406, 'ninety-seven thousand four hundred six'); INSERT INTO t1 VALUES(8503, 27060, 'twenty-seven thousand sixty'); INSERT INTO t1 VALUES(8504, 70491, 'seventy thousand four hundred ninety-one'); INSERT INTO t1 VALUES(8505, 93371, 'ninety-three thousand three hundred seventy-one'); INSERT INTO t1 VALUES(8506, 65482, 'sixty-five thousand four hundred eighty-two'); INSERT INTO t1 VALUES(8507, 32026, 'thirty-two thousand twenty-six'); INSERT INTO t1 VALUES(8508, 6613, 'six thousand six hundred thirteen'); INSERT INTO t1 VALUES(8509, 11039, 'eleven thousand thirty-nine'); INSERT INTO t1 VALUES(8510, 65925, 'sixty-five thousand nine hundred twenty-five'); INSERT INTO t1 VALUES(8511, 58508, 'fifty-eight thousand five hundred eight'); INSERT INTO t1 VALUES(8512, 282, 'two hundred eighty-two'); INSERT INTO t1 VALUES(8513, 27240, 'twenty-seven thousand two hundred forty'); INSERT INTO t1 VALUES(8514, 26041, 'twenty-six thousand forty-one'); INSERT INTO t1 VALUES(8515, 52351, 'fifty-two thousand three hundred fifty-one'); INSERT INTO t1 VALUES(8516, 73920, 'seventy-three thousand nine hundred twenty'); INSERT INTO t1 VALUES(8517, 82633, 'eighty-two thousand six hundred thirty-three'); INSERT INTO t1 VALUES(8518, 16675, 'sixteen thousand six hundred seventy-five'); INSERT INTO t1 VALUES(8519, 75676, 'seventy-five thousand six hundred seventy-six'); INSERT INTO t1 VALUES(8520, 80878, 'eighty thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(8521, 72784, 'seventy-two thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(8522, 79174, 'seventy-nine thousand one hundred seventy-four'); INSERT INTO t1 VALUES(8523, 32684, 'thirty-two thousand six hundred eighty-four'); INSERT INTO t1 VALUES(8524, 2628, 'two thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(8525, 96878, 'ninety-six thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(8526, 4622, 'four thousand six hundred twenty-two'); INSERT INTO t1 VALUES(8527, 17707, 'seventeen thousand seven hundred seven'); INSERT INTO t1 VALUES(8528, 35898, 'thirty-five thousand eight hundred ninety-eight'); INSERT INTO t1 VALUES(8529, 72117, 'seventy-two thousand one hundred seventeen'); INSERT INTO t1 VALUES(8530, 66538, 'sixty-six thousand five hundred thirty-eight'); INSERT INTO t1 VALUES(8531, 71761, 'seventy-one thousand seven hundred sixty-one'); INSERT INTO t1 VALUES(8532, 64682, 'sixty-four thousand six hundred eighty-two'); INSERT INTO t1 VALUES(8533, 76545, 'seventy-six thousand five hundred forty-five'); INSERT INTO t1 VALUES(8534, 92698, 'ninety-two thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(8535, 67358, 'sixty-seven thousand three hundred fifty-eight'); INSERT INTO t1 VALUES(8536, 38385, 'thirty-eight thousand three hundred eighty-five'); INSERT INTO t1 VALUES(8537, 93687, 'ninety-three thousand six hundred eighty-seven'); INSERT INTO t1 VALUES(8538, 4009, 'four thousand nine'); INSERT INTO t1 VALUES(8539, 61389, 'sixty-one thousand three hundred eighty-nine'); INSERT INTO t1 VALUES(8540, 62311, 'sixty-two thousand three hundred eleven'); INSERT INTO t1 VALUES(8541, 85369, 'eighty-five thousand three hundred sixty-nine'); INSERT INTO t1 VALUES(8542, 1946, 'one thousand nine hundred forty-six'); INSERT INTO t1 VALUES(8543, 34446, 'thirty-four thousand four hundred forty-six'); INSERT INTO t1 VALUES(8544, 14799, 'fourteen thousand seven hundred ninety-nine'); INSERT INTO t1 VALUES(8545, 68194, 'sixty-eight thousand one hundred ninety-four'); INSERT INTO t1 VALUES(8546, 83622, 'eighty-three thousand six hundred twenty-two'); INSERT INTO t1 VALUES(8547, 93622, 'ninety-three thousand six hundred twenty-two'); INSERT INTO t1 VALUES(8548, 55555, 'fifty-five thousand five hundred fifty-five'); INSERT INTO t1 VALUES(8549, 9431, 'nine thousand four hundred thirty-one'); INSERT INTO t1 VALUES(8550, 63543, 'sixty-three thousand five hundred forty-three'); INSERT INTO t1 VALUES(8551, 91414, 'ninety-one thousand four hundred fourteen'); INSERT INTO t1 VALUES(8552, 83234, 'eighty-three thousand two hundred thirty-four'); INSERT INTO t1 VALUES(8553, 2897, 'two thousand eight hundred ninety-seven'); INSERT INTO t1 VALUES(8554, 49155, 'forty-nine thousand one hundred fifty-five'); INSERT INTO t1 VALUES(8555, 3452, 'three thousand four hundred fifty-two'); INSERT INTO t1 VALUES(8556, 66640, 'sixty-six thousand six hundred forty'); INSERT INTO t1 VALUES(8557, 1718, 'one thousand seven hundred eighteen'); INSERT INTO t1 VALUES(8558, 16776, 'sixteen thousand seven hundred seventy-six'); INSERT INTO t1 VALUES(8559, 25667, 'twenty-five thousand six hundred sixty-seven'); INSERT INTO t1 VALUES(8560, 25612, 'twenty-five thousand six hundred twelve'); INSERT INTO t1 VALUES(8561, 75755, 'seventy-five thousand seven hundred fifty-five'); INSERT INTO t1 VALUES(8562, 904, 'nine hundred four'); INSERT INTO t1 VALUES(8563, 26901, 'twenty-six thousand nine hundred one'); INSERT INTO t1 VALUES(8564, 15031, 'fifteen thousand thirty-one'); INSERT INTO t1 VALUES(8565, 64921, 'sixty-four thousand nine hundred twenty-one'); INSERT INTO t1 VALUES(8566, 8664, 'eight thousand six hundred sixty-four'); INSERT INTO t1 VALUES(8567, 81842, 'eighty-one thousand eight hundred forty-two'); INSERT INTO t1 VALUES(8568, 46878, 'forty-six thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(8569, 25906, 'twenty-five thousand nine hundred six'); INSERT INTO t1 VALUES(8570, 8072, 'eight thousand seventy-two'); INSERT INTO t1 VALUES(8571, 48290, 'forty-eight thousand two hundred ninety'); INSERT INTO t1 VALUES(8572, 45233, 'forty-five thousand two hundred thirty-three'); INSERT INTO t1 VALUES(8573, 56852, 'fifty-six thousand eight hundred fifty-two'); INSERT INTO t1 VALUES(8574, 61015, 'sixty-one thousand fifteen'); INSERT INTO t1 VALUES(8575, 26241, 'twenty-six thousand two hundred forty-one'); INSERT INTO t1 VALUES(8576, 16009, 'sixteen thousand nine'); INSERT INTO t1 VALUES(8577, 49416, 'forty-nine thousand four hundred sixteen'); INSERT INTO t1 VALUES(8578, 55326, 'fifty-five thousand three hundred twenty-six'); INSERT INTO t1 VALUES(8579, 19009, 'nineteen thousand nine'); INSERT INTO t1 VALUES(8580, 40436, 'forty thousand four hundred thirty-six'); INSERT INTO t1 VALUES(8581, 75391, 'seventy-five thousand three hundred ninety-one'); INSERT INTO t1 VALUES(8582, 43693, 'forty-three thousand six hundred ninety-three'); INSERT INTO t1 VALUES(8583, 29349, 'twenty-nine thousand three hundred forty-nine'); INSERT INTO t1 VALUES(8584, 75536, 'seventy-five thousand five hundred thirty-six'); INSERT INTO t1 VALUES(8585, 13748, 'thirteen thousand seven hundred forty-eight'); INSERT INTO t1 VALUES(8586, 37649, 'thirty-seven thousand six hundred forty-nine'); INSERT INTO t1 VALUES(8587, 32811, 'thirty-two thousand eight hundred eleven'); INSERT INTO t1 VALUES(8588, 89805, 'eighty-nine thousand eight hundred five'); INSERT INTO t1 VALUES(8589, 10963, 'ten thousand nine hundred sixty-three'); INSERT INTO t1 VALUES(8590, 83431, 'eighty-three thousand four hundred thirty-one'); INSERT INTO t1 VALUES(8591, 83364, 'eighty-three thousand three hundred sixty-four'); INSERT INTO t1 VALUES(8592, 56609, 'fifty-six thousand six hundred nine'); INSERT INTO t1 VALUES(8593, 33225, 'thirty-three thousand two hundred twenty-five'); INSERT INTO t1 VALUES(8594, 30865, 'thirty thousand eight hundred sixty-five'); INSERT INTO t1 VALUES(8595, 68031, 'sixty-eight thousand thirty-one'); INSERT INTO t1 VALUES(8596, 40547, 'forty thousand five hundred forty-seven'); INSERT INTO t1 VALUES(8597, 41094, 'forty-one thousand ninety-four'); INSERT INTO t1 VALUES(8598, 55991, 'fifty-five thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(8599, 70823, 'seventy thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(8600, 94694, 'ninety-four thousand six hundred ninety-four'); INSERT INTO t1 VALUES(8601, 76537, 'seventy-six thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(8602, 73641, 'seventy-three thousand six hundred forty-one'); INSERT INTO t1 VALUES(8603, 27127, 'twenty-seven thousand one hundred twenty-seven'); INSERT INTO t1 VALUES(8604, 4127, 'four thousand one hundred twenty-seven'); INSERT INTO t1 VALUES(8605, 53606, 'fifty-three thousand six hundred six'); INSERT INTO t1 VALUES(8606, 80417, 'eighty thousand four hundred seventeen'); INSERT INTO t1 VALUES(8607, 15446, 'fifteen thousand four hundred forty-six'); INSERT INTO t1 VALUES(8608, 73223, 'seventy-three thousand two hundred twenty-three'); INSERT INTO t1 VALUES(8609, 45691, 'forty-five thousand six hundred ninety-one'); INSERT INTO t1 VALUES(8610, 68767, 'sixty-eight thousand seven hundred sixty-seven'); INSERT INTO t1 VALUES(8611, 49386, 'forty-nine thousand three hundred eighty-six'); INSERT INTO t1 VALUES(8612, 26270, 'twenty-six thousand two hundred seventy'); INSERT INTO t1 VALUES(8613, 86756, 'eighty-six thousand seven hundred fifty-six'); INSERT INTO t1 VALUES(8614, 37418, 'thirty-seven thousand four hundred eighteen'); INSERT INTO t1 VALUES(8615, 41824, 'forty-one thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(8616, 84530, 'eighty-four thousand five hundred thirty'); INSERT INTO t1 VALUES(8617, 25874, 'twenty-five thousand eight hundred seventy-four'); INSERT INTO t1 VALUES(8618, 32567, 'thirty-two thousand five hundred sixty-seven'); INSERT INTO t1 VALUES(8619, 32515, 'thirty-two thousand five hundred fifteen'); INSERT INTO t1 VALUES(8620, 33600, 'thirty-three thousand six hundred'); INSERT INTO t1 VALUES(8621, 73741, 'seventy-three thousand seven hundred forty-one'); INSERT INTO t1 VALUES(8622, 26971, 'twenty-six thousand nine hundred seventy-one'); INSERT INTO t1 VALUES(8623, 11610, 'eleven thousand six hundred ten'); INSERT INTO t1 VALUES(8624, 61357, 'sixty-one thousand three hundred fifty-seven'); INSERT INTO t1 VALUES(8625, 32783, 'thirty-two thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(8626, 13960, 'thirteen thousand nine hundred sixty'); INSERT INTO t1 VALUES(8627, 14267, 'fourteen thousand two hundred sixty-seven'); INSERT INTO t1 VALUES(8628, 48587, 'forty-eight thousand five hundred eighty-seven'); INSERT INTO t1 VALUES(8629, 34884, 'thirty-four thousand eight hundred eighty-four'); INSERT INTO t1 VALUES(8630, 15222, 'fifteen thousand two hundred twenty-two'); INSERT INTO t1 VALUES(8631, 87880, 'eighty-seven thousand eight hundred eighty'); INSERT INTO t1 VALUES(8632, 64396, 'sixty-four thousand three hundred ninety-six'); INSERT INTO t1 VALUES(8633, 71618, 'seventy-one thousand six hundred eighteen'); INSERT INTO t1 VALUES(8634, 89371, 'eighty-nine thousand three hundred seventy-one'); INSERT INTO t1 VALUES(8635, 19655, 'nineteen thousand six hundred fifty-five'); INSERT INTO t1 VALUES(8636, 31051, 'thirty-one thousand fifty-one'); INSERT INTO t1 VALUES(8637, 48566, 'forty-eight thousand five hundred sixty-six'); INSERT INTO t1 VALUES(8638, 97369, 'ninety-seven thousand three hundred sixty-nine'); INSERT INTO t1 VALUES(8639, 98382, 'ninety-eight thousand three hundred eighty-two'); INSERT INTO t1 VALUES(8640, 56524, 'fifty-six thousand five hundred twenty-four'); INSERT INTO t1 VALUES(8641, 92346, 'ninety-two thousand three hundred forty-six'); INSERT INTO t1 VALUES(8642, 24398, 'twenty-four thousand three hundred ninety-eight'); INSERT INTO t1 VALUES(8643, 62719, 'sixty-two thousand seven hundred nineteen'); INSERT INTO t1 VALUES(8644, 78673, 'seventy-eight thousand six hundred seventy-three'); INSERT INTO t1 VALUES(8645, 85012, 'eighty-five thousand twelve'); INSERT INTO t1 VALUES(8646, 882, 'eight hundred eighty-two'); INSERT INTO t1 VALUES(8647, 31729, 'thirty-one thousand seven hundred twenty-nine'); INSERT INTO t1 VALUES(8648, 81870, 'eighty-one thousand eight hundred seventy'); INSERT INTO t1 VALUES(8649, 69970, 'sixty-nine thousand nine hundred seventy'); INSERT INTO t1 VALUES(8650, 22099, 'twenty-two thousand ninety-nine'); INSERT INTO t1 VALUES(8651, 72459, 'seventy-two thousand four hundred fifty-nine'); INSERT INTO t1 VALUES(8652, 7886, 'seven thousand eight hundred eighty-six'); INSERT INTO t1 VALUES(8653, 47714, 'forty-seven thousand seven hundred fourteen'); INSERT INTO t1 VALUES(8654, 31019, 'thirty-one thousand nineteen'); INSERT INTO t1 VALUES(8655, 85498, 'eighty-five thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(8656, 45376, 'forty-five thousand three hundred seventy-six'); INSERT INTO t1 VALUES(8657, 38233, 'thirty-eight thousand two hundred thirty-three'); INSERT INTO t1 VALUES(8658, 53408, 'fifty-three thousand four hundred eight'); INSERT INTO t1 VALUES(8659, 57827, 'fifty-seven thousand eight hundred twenty-seven'); INSERT INTO t1 VALUES(8660, 80599, 'eighty thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(8661, 87019, 'eighty-seven thousand nineteen'); INSERT INTO t1 VALUES(8662, 89214, 'eighty-nine thousand two hundred fourteen'); INSERT INTO t1 VALUES(8663, 15743, 'fifteen thousand seven hundred forty-three'); INSERT INTO t1 VALUES(8664, 78152, 'seventy-eight thousand one hundred fifty-two'); INSERT INTO t1 VALUES(8665, 18657, 'eighteen thousand six hundred fifty-seven'); INSERT INTO t1 VALUES(8666, 72702, 'seventy-two thousand seven hundred two'); INSERT INTO t1 VALUES(8667, 41441, 'forty-one thousand four hundred forty-one'); INSERT INTO t1 VALUES(8668, 20121, 'twenty thousand one hundred twenty-one'); INSERT INTO t1 VALUES(8669, 69314, 'sixty-nine thousand three hundred fourteen'); INSERT INTO t1 VALUES(8670, 47219, 'forty-seven thousand two hundred nineteen'); INSERT INTO t1 VALUES(8671, 25109, 'twenty-five thousand one hundred nine'); INSERT INTO t1 VALUES(8672, 26825, 'twenty-six thousand eight hundred twenty-five'); INSERT INTO t1 VALUES(8673, 70221, 'seventy thousand two hundred twenty-one'); INSERT INTO t1 VALUES(8674, 38936, 'thirty-eight thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(8675, 5865, 'five thousand eight hundred sixty-five'); INSERT INTO t1 VALUES(8676, 85839, 'eighty-five thousand eight hundred thirty-nine'); INSERT INTO t1 VALUES(8677, 14046, 'fourteen thousand forty-six'); INSERT INTO t1 VALUES(8678, 39217, 'thirty-nine thousand two hundred seventeen'); INSERT INTO t1 VALUES(8679, 52099, 'fifty-two thousand ninety-nine'); INSERT INTO t1 VALUES(8680, 82628, 'eighty-two thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(8681, 3573, 'three thousand five hundred seventy-three'); INSERT INTO t1 VALUES(8682, 69047, 'sixty-nine thousand forty-seven'); INSERT INTO t1 VALUES(8683, 45750, 'forty-five thousand seven hundred fifty'); INSERT INTO t1 VALUES(8684, 69158, 'sixty-nine thousand one hundred fifty-eight'); INSERT INTO t1 VALUES(8685, 79437, 'seventy-nine thousand four hundred thirty-seven'); INSERT INTO t1 VALUES(8686, 75415, 'seventy-five thousand four hundred fifteen'); INSERT INTO t1 VALUES(8687, 88418, 'eighty-eight thousand four hundred eighteen'); INSERT INTO t1 VALUES(8688, 86518, 'eighty-six thousand five hundred eighteen'); INSERT INTO t1 VALUES(8689, 86474, 'eighty-six thousand four hundred seventy-four'); INSERT INTO t1 VALUES(8690, 25703, 'twenty-five thousand seven hundred three'); INSERT INTO t1 VALUES(8691, 57655, 'fifty-seven thousand six hundred fifty-five'); INSERT INTO t1 VALUES(8692, 66491, 'sixty-six thousand four hundred ninety-one'); INSERT INTO t1 VALUES(8693, 96370, 'ninety-six thousand three hundred seventy'); INSERT INTO t1 VALUES(8694, 50589, 'fifty thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(8695, 63020, 'sixty-three thousand twenty'); INSERT INTO t1 VALUES(8696, 57858, 'fifty-seven thousand eight hundred fifty-eight'); INSERT INTO t1 VALUES(8697, 11788, 'eleven thousand seven hundred eighty-eight'); INSERT INTO t1 VALUES(8698, 31690, 'thirty-one thousand six hundred ninety'); INSERT INTO t1 VALUES(8699, 61600, 'sixty-one thousand six hundred'); INSERT INTO t1 VALUES(8700, 48597, 'forty-eight thousand five hundred ninety-seven'); INSERT INTO t1 VALUES(8701, 40679, 'forty thousand six hundred seventy-nine'); INSERT INTO t1 VALUES(8702, 59265, 'fifty-nine thousand two hundred sixty-five'); INSERT INTO t1 VALUES(8703, 75873, 'seventy-five thousand eight hundred seventy-three'); INSERT INTO t1 VALUES(8704, 44527, 'forty-four thousand five hundred twenty-seven'); INSERT INTO t1 VALUES(8705, 69765, 'sixty-nine thousand seven hundred sixty-five'); INSERT INTO t1 VALUES(8706, 96973, 'ninety-six thousand nine hundred seventy-three'); INSERT INTO t1 VALUES(8707, 53747, 'fifty-three thousand seven hundred forty-seven'); INSERT INTO t1 VALUES(8708, 54431, 'fifty-four thousand four hundred thirty-one'); INSERT INTO t1 VALUES(8709, 10026, 'ten thousand twenty-six'); INSERT INTO t1 VALUES(8710, 53208, 'fifty-three thousand two hundred eight'); INSERT INTO t1 VALUES(8711, 10339, 'ten thousand three hundred thirty-nine'); INSERT INTO t1 VALUES(8712, 14835, 'fourteen thousand eight hundred thirty-five'); INSERT INTO t1 VALUES(8713, 68463, 'sixty-eight thousand four hundred sixty-three'); INSERT INTO t1 VALUES(8714, 83520, 'eighty-three thousand five hundred twenty'); INSERT INTO t1 VALUES(8715, 95294, 'ninety-five thousand two hundred ninety-four'); INSERT INTO t1 VALUES(8716, 30982, 'thirty thousand nine hundred eighty-two'); INSERT INTO t1 VALUES(8717, 9889, 'nine thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(8718, 61939, 'sixty-one thousand nine hundred thirty-nine'); INSERT INTO t1 VALUES(8719, 42544, 'forty-two thousand five hundred forty-four'); INSERT INTO t1 VALUES(8720, 91852, 'ninety-one thousand eight hundred fifty-two'); INSERT INTO t1 VALUES(8721, 65872, 'sixty-five thousand eight hundred seventy-two'); INSERT INTO t1 VALUES(8722, 96842, 'ninety-six thousand eight hundred forty-two'); INSERT INTO t1 VALUES(8723, 78749, 'seventy-eight thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(8724, 37733, 'thirty-seven thousand seven hundred thirty-three'); INSERT INTO t1 VALUES(8725, 57498, 'fifty-seven thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(8726, 94314, 'ninety-four thousand three hundred fourteen'); INSERT INTO t1 VALUES(8727, 75159, 'seventy-five thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(8728, 50083, 'fifty thousand eighty-three'); INSERT INTO t1 VALUES(8729, 34706, 'thirty-four thousand seven hundred six'); INSERT INTO t1 VALUES(8730, 11032, 'eleven thousand thirty-two'); INSERT INTO t1 VALUES(8731, 2999, 'two thousand nine hundred ninety-nine'); INSERT INTO t1 VALUES(8732, 92259, 'ninety-two thousand two hundred fifty-nine'); INSERT INTO t1 VALUES(8733, 47808, 'forty-seven thousand eight hundred eight'); INSERT INTO t1 VALUES(8734, 74638, 'seventy-four thousand six hundred thirty-eight'); INSERT INTO t1 VALUES(8735, 47624, 'forty-seven thousand six hundred twenty-four'); INSERT INTO t1 VALUES(8736, 7692, 'seven thousand six hundred ninety-two'); INSERT INTO t1 VALUES(8737, 18359, 'eighteen thousand three hundred fifty-nine'); INSERT INTO t1 VALUES(8738, 57751, 'fifty-seven thousand seven hundred fifty-one'); INSERT INTO t1 VALUES(8739, 40324, 'forty thousand three hundred twenty-four'); INSERT INTO t1 VALUES(8740, 26688, 'twenty-six thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(8741, 2184, 'two thousand one hundred eighty-four'); INSERT INTO t1 VALUES(8742, 87713, 'eighty-seven thousand seven hundred thirteen'); INSERT INTO t1 VALUES(8743, 98200, 'ninety-eight thousand two hundred'); INSERT INTO t1 VALUES(8744, 62643, 'sixty-two thousand six hundred forty-three'); INSERT INTO t1 VALUES(8745, 58770, 'fifty-eight thousand seven hundred seventy'); INSERT INTO t1 VALUES(8746, 25753, 'twenty-five thousand seven hundred fifty-three'); INSERT INTO t1 VALUES(8747, 4907, 'four thousand nine hundred seven'); INSERT INTO t1 VALUES(8748, 35200, 'thirty-five thousand two hundred'); INSERT INTO t1 VALUES(8749, 11141, 'eleven thousand one hundred forty-one'); INSERT INTO t1 VALUES(8750, 64256, 'sixty-four thousand two hundred fifty-six'); INSERT INTO t1 VALUES(8751, 42537, 'forty-two thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(8752, 48904, 'forty-eight thousand nine hundred four'); INSERT INTO t1 VALUES(8753, 68681, 'sixty-eight thousand six hundred eighty-one'); INSERT INTO t1 VALUES(8754, 94961, 'ninety-four thousand nine hundred sixty-one'); INSERT INTO t1 VALUES(8755, 39700, 'thirty-nine thousand seven hundred'); INSERT INTO t1 VALUES(8756, 20941, 'twenty thousand nine hundred forty-one'); INSERT INTO t1 VALUES(8757, 85464, 'eighty-five thousand four hundred sixty-four'); INSERT INTO t1 VALUES(8758, 85147, 'eighty-five thousand one hundred forty-seven'); INSERT INTO t1 VALUES(8759, 35672, 'thirty-five thousand six hundred seventy-two'); INSERT INTO t1 VALUES(8760, 68155, 'sixty-eight thousand one hundred fifty-five'); INSERT INTO t1 VALUES(8761, 59749, 'fifty-nine thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(8762, 76977, 'seventy-six thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(8763, 33485, 'thirty-three thousand four hundred eighty-five'); INSERT INTO t1 VALUES(8764, 78253, 'seventy-eight thousand two hundred fifty-three'); INSERT INTO t1 VALUES(8765, 51673, 'fifty-one thousand six hundred seventy-three'); INSERT INTO t1 VALUES(8766, 28183, 'twenty-eight thousand one hundred eighty-three'); INSERT INTO t1 VALUES(8767, 33160, 'thirty-three thousand one hundred sixty'); INSERT INTO t1 VALUES(8768, 90551, 'ninety thousand five hundred fifty-one'); INSERT INTO t1 VALUES(8769, 95160, 'ninety-five thousand one hundred sixty'); INSERT INTO t1 VALUES(8770, 28305, 'twenty-eight thousand three hundred five'); INSERT INTO t1 VALUES(8771, 76924, 'seventy-six thousand nine hundred twenty-four'); INSERT INTO t1 VALUES(8772, 26574, 'twenty-six thousand five hundred seventy-four'); INSERT INTO t1 VALUES(8773, 4549, 'four thousand five hundred forty-nine'); INSERT INTO t1 VALUES(8774, 701, 'seven hundred one'); INSERT INTO t1 VALUES(8775, 32740, 'thirty-two thousand seven hundred forty'); INSERT INTO t1 VALUES(8776, 49294, 'forty-nine thousand two hundred ninety-four'); INSERT INTO t1 VALUES(8777, 85439, 'eighty-five thousand four hundred thirty-nine'); INSERT INTO t1 VALUES(8778, 46889, 'forty-six thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(8779, 14110, 'fourteen thousand one hundred ten'); INSERT INTO t1 VALUES(8780, 51231, 'fifty-one thousand two hundred thirty-one'); INSERT INTO t1 VALUES(8781, 78981, 'seventy-eight thousand nine hundred eighty-one'); INSERT INTO t1 VALUES(8782, 71960, 'seventy-one thousand nine hundred sixty'); INSERT INTO t1 VALUES(8783, 80518, 'eighty thousand five hundred eighteen'); INSERT INTO t1 VALUES(8784, 55691, 'fifty-five thousand six hundred ninety-one'); INSERT INTO t1 VALUES(8785, 24598, 'twenty-four thousand five hundred ninety-eight'); INSERT INTO t1 VALUES(8786, 34686, 'thirty-four thousand six hundred eighty-six'); INSERT INTO t1 VALUES(8787, 91541, 'ninety-one thousand five hundred forty-one'); INSERT INTO t1 VALUES(8788, 71566, 'seventy-one thousand five hundred sixty-six'); INSERT INTO t1 VALUES(8789, 94934, 'ninety-four thousand nine hundred thirty-four'); INSERT INTO t1 VALUES(8790, 8406, 'eight thousand four hundred six'); INSERT INTO t1 VALUES(8791, 10144, 'ten thousand one hundred forty-four'); INSERT INTO t1 VALUES(8792, 64286, 'sixty-four thousand two hundred eighty-six'); INSERT INTO t1 VALUES(8793, 40614, 'forty thousand six hundred fourteen'); INSERT INTO t1 VALUES(8794, 99109, 'ninety-nine thousand one hundred nine'); INSERT INTO t1 VALUES(8795, 53610, 'fifty-three thousand six hundred ten'); INSERT INTO t1 VALUES(8796, 11270, 'eleven thousand two hundred seventy'); INSERT INTO t1 VALUES(8797, 12663, 'twelve thousand six hundred sixty-three'); INSERT INTO t1 VALUES(8798, 48236, 'forty-eight thousand two hundred thirty-six'); INSERT INTO t1 VALUES(8799, 19399, 'nineteen thousand three hundred ninety-nine'); INSERT INTO t1 VALUES(8800, 71957, 'seventy-one thousand nine hundred fifty-seven'); INSERT INTO t1 VALUES(8801, 52223, 'fifty-two thousand two hundred twenty-three'); INSERT INTO t1 VALUES(8802, 44368, 'forty-four thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(8803, 86149, 'eighty-six thousand one hundred forty-nine'); INSERT INTO t1 VALUES(8804, 68326, 'sixty-eight thousand three hundred twenty-six'); INSERT INTO t1 VALUES(8805, 1830, 'one thousand eight hundred thirty'); INSERT INTO t1 VALUES(8806, 57308, 'fifty-seven thousand three hundred eight'); INSERT INTO t1 VALUES(8807, 36276, 'thirty-six thousand two hundred seventy-six'); INSERT INTO t1 VALUES(8808, 55631, 'fifty-five thousand six hundred thirty-one'); INSERT INTO t1 VALUES(8809, 9015, 'nine thousand fifteen'); INSERT INTO t1 VALUES(8810, 72513, 'seventy-two thousand five hundred thirteen'); INSERT INTO t1 VALUES(8811, 29675, 'twenty-nine thousand six hundred seventy-five'); INSERT INTO t1 VALUES(8812, 52515, 'fifty-two thousand five hundred fifteen'); INSERT INTO t1 VALUES(8813, 22657, 'twenty-two thousand six hundred fifty-seven'); INSERT INTO t1 VALUES(8814, 57285, 'fifty-seven thousand two hundred eighty-five'); INSERT INTO t1 VALUES(8815, 53314, 'fifty-three thousand three hundred fourteen'); INSERT INTO t1 VALUES(8816, 28590, 'twenty-eight thousand five hundred ninety'); INSERT INTO t1 VALUES(8817, 20613, 'twenty thousand six hundred thirteen'); INSERT INTO t1 VALUES(8818, 99497, 'ninety-nine thousand four hundred ninety-seven'); INSERT INTO t1 VALUES(8819, 61554, 'sixty-one thousand five hundred fifty-four'); INSERT INTO t1 VALUES(8820, 34483, 'thirty-four thousand four hundred eighty-three'); INSERT INTO t1 VALUES(8821, 96089, 'ninety-six thousand eighty-nine'); INSERT INTO t1 VALUES(8822, 37177, 'thirty-seven thousand one hundred seventy-seven'); INSERT INTO t1 VALUES(8823, 880, 'eight hundred eighty'); INSERT INTO t1 VALUES(8824, 18842, 'eighteen thousand eight hundred forty-two'); INSERT INTO t1 VALUES(8825, 83168, 'eighty-three thousand one hundred sixty-eight'); INSERT INTO t1 VALUES(8826, 14575, 'fourteen thousand five hundred seventy-five'); INSERT INTO t1 VALUES(8827, 68838, 'sixty-eight thousand eight hundred thirty-eight'); INSERT INTO t1 VALUES(8828, 7458, 'seven thousand four hundred fifty-eight'); INSERT INTO t1 VALUES(8829, 58699, 'fifty-eight thousand six hundred ninety-nine'); INSERT INTO t1 VALUES(8830, 88276, 'eighty-eight thousand two hundred seventy-six'); INSERT INTO t1 VALUES(8831, 93750, 'ninety-three thousand seven hundred fifty'); INSERT INTO t1 VALUES(8832, 35251, 'thirty-five thousand two hundred fifty-one'); INSERT INTO t1 VALUES(8833, 210, 'two hundred ten'); INSERT INTO t1 VALUES(8834, 78018, 'seventy-eight thousand eighteen'); INSERT INTO t1 VALUES(8835, 6966, 'six thousand nine hundred sixty-six'); INSERT INTO t1 VALUES(8836, 16429, 'sixteen thousand four hundred twenty-nine'); INSERT INTO t1 VALUES(8837, 14358, 'fourteen thousand three hundred fifty-eight'); INSERT INTO t1 VALUES(8838, 26015, 'twenty-six thousand fifteen'); INSERT INTO t1 VALUES(8839, 39842, 'thirty-nine thousand eight hundred forty-two'); INSERT INTO t1 VALUES(8840, 68189, 'sixty-eight thousand one hundred eighty-nine'); INSERT INTO t1 VALUES(8841, 80812, 'eighty thousand eight hundred twelve'); INSERT INTO t1 VALUES(8842, 67240, 'sixty-seven thousand two hundred forty'); INSERT INTO t1 VALUES(8843, 94285, 'ninety-four thousand two hundred eighty-five'); INSERT INTO t1 VALUES(8844, 55384, 'fifty-five thousand three hundred eighty-four'); INSERT INTO t1 VALUES(8845, 98392, 'ninety-eight thousand three hundred ninety-two'); INSERT INTO t1 VALUES(8846, 82299, 'eighty-two thousand two hundred ninety-nine'); INSERT INTO t1 VALUES(8847, 35718, 'thirty-five thousand seven hundred eighteen'); INSERT INTO t1 VALUES(8848, 62221, 'sixty-two thousand two hundred twenty-one'); INSERT INTO t1 VALUES(8849, 19205, 'nineteen thousand two hundred five'); INSERT INTO t1 VALUES(8850, 88084, 'eighty-eight thousand eighty-four'); INSERT INTO t1 VALUES(8851, 74561, 'seventy-four thousand five hundred sixty-one'); INSERT INTO t1 VALUES(8852, 85752, 'eighty-five thousand seven hundred fifty-two'); INSERT INTO t1 VALUES(8853, 56172, 'fifty-six thousand one hundred seventy-two'); INSERT INTO t1 VALUES(8854, 61917, 'sixty-one thousand nine hundred seventeen'); INSERT INTO t1 VALUES(8855, 11929, 'eleven thousand nine hundred twenty-nine'); INSERT INTO t1 VALUES(8856, 69536, 'sixty-nine thousand five hundred thirty-six'); INSERT INTO t1 VALUES(8857, 55579, 'fifty-five thousand five hundred seventy-nine'); INSERT INTO t1 VALUES(8858, 66126, 'sixty-six thousand one hundred twenty-six'); INSERT INTO t1 VALUES(8859, 2556, 'two thousand five hundred fifty-six'); INSERT INTO t1 VALUES(8860, 89574, 'eighty-nine thousand five hundred seventy-four'); INSERT INTO t1 VALUES(8861, 88471, 'eighty-eight thousand four hundred seventy-one'); INSERT INTO t1 VALUES(8862, 36197, 'thirty-six thousand one hundred ninety-seven'); INSERT INTO t1 VALUES(8863, 81733, 'eighty-one thousand seven hundred thirty-three'); INSERT INTO t1 VALUES(8864, 34762, 'thirty-four thousand seven hundred sixty-two'); INSERT INTO t1 VALUES(8865, 84358, 'eighty-four thousand three hundred fifty-eight'); INSERT INTO t1 VALUES(8866, 69644, 'sixty-nine thousand six hundred forty-four'); INSERT INTO t1 VALUES(8867, 6933, 'six thousand nine hundred thirty-three'); INSERT INTO t1 VALUES(8868, 73878, 'seventy-three thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(8869, 22783, 'twenty-two thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(8870, 90731, 'ninety thousand seven hundred thirty-one'); INSERT INTO t1 VALUES(8871, 59474, 'fifty-nine thousand four hundred seventy-four'); INSERT INTO t1 VALUES(8872, 54650, 'fifty-four thousand six hundred fifty'); INSERT INTO t1 VALUES(8873, 48841, 'forty-eight thousand eight hundred forty-one'); INSERT INTO t1 VALUES(8874, 58843, 'fifty-eight thousand eight hundred forty-three'); INSERT INTO t1 VALUES(8875, 52220, 'fifty-two thousand two hundred twenty'); INSERT INTO t1 VALUES(8876, 70624, 'seventy thousand six hundred twenty-four'); INSERT INTO t1 VALUES(8877, 20497, 'twenty thousand four hundred ninety-seven'); INSERT INTO t1 VALUES(8878, 49487, 'forty-nine thousand four hundred eighty-seven'); INSERT INTO t1 VALUES(8879, 51597, 'fifty-one thousand five hundred ninety-seven'); INSERT INTO t1 VALUES(8880, 3604, 'three thousand six hundred four'); INSERT INTO t1 VALUES(8881, 88484, 'eighty-eight thousand four hundred eighty-four'); INSERT INTO t1 VALUES(8882, 89301, 'eighty-nine thousand three hundred one'); INSERT INTO t1 VALUES(8883, 82644, 'eighty-two thousand six hundred forty-four'); INSERT INTO t1 VALUES(8884, 82481, 'eighty-two thousand four hundred eighty-one'); INSERT INTO t1 VALUES(8885, 31614, 'thirty-one thousand six hundred fourteen'); INSERT INTO t1 VALUES(8886, 21406, 'twenty-one thousand four hundred six'); INSERT INTO t1 VALUES(8887, 53165, 'fifty-three thousand one hundred sixty-five'); INSERT INTO t1 VALUES(8888, 58747, 'fifty-eight thousand seven hundred forty-seven'); INSERT INTO t1 VALUES(8889, 94031, 'ninety-four thousand thirty-one'); INSERT INTO t1 VALUES(8890, 83803, 'eighty-three thousand eight hundred three'); INSERT INTO t1 VALUES(8891, 11730, 'eleven thousand seven hundred thirty'); INSERT INTO t1 VALUES(8892, 85537, 'eighty-five thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(8893, 99226, 'ninety-nine thousand two hundred twenty-six'); INSERT INTO t1 VALUES(8894, 65156, 'sixty-five thousand one hundred fifty-six'); INSERT INTO t1 VALUES(8895, 30206, 'thirty thousand two hundred six'); INSERT INTO t1 VALUES(8896, 39619, 'thirty-nine thousand six hundred nineteen'); INSERT INTO t1 VALUES(8897, 98731, 'ninety-eight thousand seven hundred thirty-one'); INSERT INTO t1 VALUES(8898, 3652, 'three thousand six hundred fifty-two'); INSERT INTO t1 VALUES(8899, 43619, 'forty-three thousand six hundred nineteen'); INSERT INTO t1 VALUES(8900, 34954, 'thirty-four thousand nine hundred fifty-four'); INSERT INTO t1 VALUES(8901, 4934, 'four thousand nine hundred thirty-four'); INSERT INTO t1 VALUES(8902, 3003, 'three thousand three'); INSERT INTO t1 VALUES(8903, 37261, 'thirty-seven thousand two hundred sixty-one'); INSERT INTO t1 VALUES(8904, 98834, 'ninety-eight thousand eight hundred thirty-four'); INSERT INTO t1 VALUES(8905, 90488, 'ninety thousand four hundred eighty-eight'); INSERT INTO t1 VALUES(8906, 2589, 'two thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(8907, 26091, 'twenty-six thousand ninety-one'); INSERT INTO t1 VALUES(8908, 69473, 'sixty-nine thousand four hundred seventy-three'); INSERT INTO t1 VALUES(8909, 29453, 'twenty-nine thousand four hundred fifty-three'); INSERT INTO t1 VALUES(8910, 92714, 'ninety-two thousand seven hundred fourteen'); INSERT INTO t1 VALUES(8911, 88619, 'eighty-eight thousand six hundred nineteen'); INSERT INTO t1 VALUES(8912, 47777, 'forty-seven thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(8913, 58762, 'fifty-eight thousand seven hundred sixty-two'); INSERT INTO t1 VALUES(8914, 63883, 'sixty-three thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(8915, 47167, 'forty-seven thousand one hundred sixty-seven'); INSERT INTO t1 VALUES(8916, 69351, 'sixty-nine thousand three hundred fifty-one'); INSERT INTO t1 VALUES(8917, 425, 'four hundred twenty-five'); INSERT INTO t1 VALUES(8918, 96008, 'ninety-six thousand eight'); INSERT INTO t1 VALUES(8919, 53852, 'fifty-three thousand eight hundred fifty-two'); INSERT INTO t1 VALUES(8920, 78781, 'seventy-eight thousand seven hundred eighty-one'); INSERT INTO t1 VALUES(8921, 56693, 'fifty-six thousand six hundred ninety-three'); INSERT INTO t1 VALUES(8922, 17364, 'seventeen thousand three hundred sixty-four'); INSERT INTO t1 VALUES(8923, 9964, 'nine thousand nine hundred sixty-four'); INSERT INTO t1 VALUES(8924, 48135, 'forty-eight thousand one hundred thirty-five'); INSERT INTO t1 VALUES(8925, 81819, 'eighty-one thousand eight hundred nineteen'); INSERT INTO t1 VALUES(8926, 96110, 'ninety-six thousand one hundred ten'); INSERT INTO t1 VALUES(8927, 27779, 'twenty-seven thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(8928, 97967, 'ninety-seven thousand nine hundred sixty-seven'); INSERT INTO t1 VALUES(8929, 79495, 'seventy-nine thousand four hundred ninety-five'); INSERT INTO t1 VALUES(8930, 71892, 'seventy-one thousand eight hundred ninety-two'); INSERT INTO t1 VALUES(8931, 12272, 'twelve thousand two hundred seventy-two'); INSERT INTO t1 VALUES(8932, 3993, 'three thousand nine hundred ninety-three'); INSERT INTO t1 VALUES(8933, 77629, 'seventy-seven thousand six hundred twenty-nine'); INSERT INTO t1 VALUES(8934, 86994, 'eighty-six thousand nine hundred ninety-four'); INSERT INTO t1 VALUES(8935, 42421, 'forty-two thousand four hundred twenty-one'); INSERT INTO t1 VALUES(8936, 57377, 'fifty-seven thousand three hundred seventy-seven'); INSERT INTO t1 VALUES(8937, 67224, 'sixty-seven thousand two hundred twenty-four'); INSERT INTO t1 VALUES(8938, 60444, 'sixty thousand four hundred forty-four'); INSERT INTO t1 VALUES(8939, 3457, 'three thousand four hundred fifty-seven'); INSERT INTO t1 VALUES(8940, 86250, 'eighty-six thousand two hundred fifty'); INSERT INTO t1 VALUES(8941, 96085, 'ninety-six thousand eighty-five'); INSERT INTO t1 VALUES(8942, 66866, 'sixty-six thousand eight hundred sixty-six'); INSERT INTO t1 VALUES(8943, 55275, 'fifty-five thousand two hundred seventy-five'); INSERT INTO t1 VALUES(8944, 79807, 'seventy-nine thousand eight hundred seven'); INSERT INTO t1 VALUES(8945, 37799, 'thirty-seven thousand seven hundred ninety-nine'); INSERT INTO t1 VALUES(8946, 77676, 'seventy-seven thousand six hundred seventy-six'); INSERT INTO t1 VALUES(8947, 61377, 'sixty-one thousand three hundred seventy-seven'); INSERT INTO t1 VALUES(8948, 78452, 'seventy-eight thousand four hundred fifty-two'); INSERT INTO t1 VALUES(8949, 77354, 'seventy-seven thousand three hundred fifty-four'); INSERT INTO t1 VALUES(8950, 23296, 'twenty-three thousand two hundred ninety-six'); INSERT INTO t1 VALUES(8951, 67611, 'sixty-seven thousand six hundred eleven'); INSERT INTO t1 VALUES(8952, 8856, 'eight thousand eight hundred fifty-six'); INSERT INTO t1 VALUES(8953, 85301, 'eighty-five thousand three hundred one'); INSERT INTO t1 VALUES(8954, 45603, 'forty-five thousand six hundred three'); INSERT INTO t1 VALUES(8955, 83552, 'eighty-three thousand five hundred fifty-two'); INSERT INTO t1 VALUES(8956, 67500, 'sixty-seven thousand five hundred'); INSERT INTO t1 VALUES(8957, 70408, 'seventy thousand four hundred eight'); INSERT INTO t1 VALUES(8958, 66487, 'sixty-six thousand four hundred eighty-seven'); INSERT INTO t1 VALUES(8959, 89129, 'eighty-nine thousand one hundred twenty-nine'); INSERT INTO t1 VALUES(8960, 52042, 'fifty-two thousand forty-two'); INSERT INTO t1 VALUES(8961, 97591, 'ninety-seven thousand five hundred ninety-one'); INSERT INTO t1 VALUES(8962, 6453, 'six thousand four hundred fifty-three'); INSERT INTO t1 VALUES(8963, 87536, 'eighty-seven thousand five hundred thirty-six'); INSERT INTO t1 VALUES(8964, 74148, 'seventy-four thousand one hundred forty-eight'); INSERT INTO t1 VALUES(8965, 60595, 'sixty thousand five hundred ninety-five'); INSERT INTO t1 VALUES(8966, 50917, 'fifty thousand nine hundred seventeen'); INSERT INTO t1 VALUES(8967, 43198, 'forty-three thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(8968, 28830, 'twenty-eight thousand eight hundred thirty'); INSERT INTO t1 VALUES(8969, 95466, 'ninety-five thousand four hundred sixty-six'); INSERT INTO t1 VALUES(8970, 84053, 'eighty-four thousand fifty-three'); INSERT INTO t1 VALUES(8971, 4692, 'four thousand six hundred ninety-two'); INSERT INTO t1 VALUES(8972, 49695, 'forty-nine thousand six hundred ninety-five'); INSERT INTO t1 VALUES(8973, 13298, 'thirteen thousand two hundred ninety-eight'); INSERT INTO t1 VALUES(8974, 44981, 'forty-four thousand nine hundred eighty-one'); INSERT INTO t1 VALUES(8975, 41475, 'forty-one thousand four hundred seventy-five'); INSERT INTO t1 VALUES(8976, 71260, 'seventy-one thousand two hundred sixty'); INSERT INTO t1 VALUES(8977, 78493, 'seventy-eight thousand four hundred ninety-three'); INSERT INTO t1 VALUES(8978, 46212, 'forty-six thousand two hundred twelve'); INSERT INTO t1 VALUES(8979, 48142, 'forty-eight thousand one hundred forty-two'); INSERT INTO t1 VALUES(8980, 58211, 'fifty-eight thousand two hundred eleven'); INSERT INTO t1 VALUES(8981, 13142, 'thirteen thousand one hundred forty-two'); INSERT INTO t1 VALUES(8982, 93488, 'ninety-three thousand four hundred eighty-eight'); INSERT INTO t1 VALUES(8983, 77180, 'seventy-seven thousand one hundred eighty'); INSERT INTO t1 VALUES(8984, 99589, 'ninety-nine thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(8985, 4102, 'four thousand one hundred two'); INSERT INTO t1 VALUES(8986, 99449, 'ninety-nine thousand four hundred forty-nine'); INSERT INTO t1 VALUES(8987, 29479, 'twenty-nine thousand four hundred seventy-nine'); INSERT INTO t1 VALUES(8988, 10558, 'ten thousand five hundred fifty-eight'); INSERT INTO t1 VALUES(8989, 1320, 'one thousand three hundred twenty'); INSERT INTO t1 VALUES(8990, 92412, 'ninety-two thousand four hundred twelve'); INSERT INTO t1 VALUES(8991, 90984, 'ninety thousand nine hundred eighty-four'); INSERT INTO t1 VALUES(8992, 97962, 'ninety-seven thousand nine hundred sixty-two'); INSERT INTO t1 VALUES(8993, 50, 'fifty'); INSERT INTO t1 VALUES(8994, 56346, 'fifty-six thousand three hundred forty-six'); INSERT INTO t1 VALUES(8995, 97462, 'ninety-seven thousand four hundred sixty-two'); INSERT INTO t1 VALUES(8996, 6764, 'six thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(8997, 64431, 'sixty-four thousand four hundred thirty-one'); INSERT INTO t1 VALUES(8998, 91146, 'ninety-one thousand one hundred forty-six'); INSERT INTO t1 VALUES(8999, 34599, 'thirty-four thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(9000, 25283, 'twenty-five thousand two hundred eighty-three'); INSERT INTO t1 VALUES(9001, 31615, 'thirty-one thousand six hundred fifteen'); INSERT INTO t1 VALUES(9002, 21853, 'twenty-one thousand eight hundred fifty-three'); INSERT INTO t1 VALUES(9003, 95123, 'ninety-five thousand one hundred twenty-three'); INSERT INTO t1 VALUES(9004, 67677, 'sixty-seven thousand six hundred seventy-seven'); INSERT INTO t1 VALUES(9005, 35087, 'thirty-five thousand eighty-seven'); INSERT INTO t1 VALUES(9006, 79790, 'seventy-nine thousand seven hundred ninety'); INSERT INTO t1 VALUES(9007, 24021, 'twenty-four thousand twenty-one'); INSERT INTO t1 VALUES(9008, 46498, 'forty-six thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(9009, 41891, 'forty-one thousand eight hundred ninety-one'); INSERT INTO t1 VALUES(9010, 49721, 'forty-nine thousand seven hundred twenty-one'); INSERT INTO t1 VALUES(9011, 55596, 'fifty-five thousand five hundred ninety-six'); INSERT INTO t1 VALUES(9012, 93659, 'ninety-three thousand six hundred fifty-nine'); INSERT INTO t1 VALUES(9013, 80420, 'eighty thousand four hundred twenty'); INSERT INTO t1 VALUES(9014, 29544, 'twenty-nine thousand five hundred forty-four'); INSERT INTO t1 VALUES(9015, 63464, 'sixty-three thousand four hundred sixty-four'); INSERT INTO t1 VALUES(9016, 79533, 'seventy-nine thousand five hundred thirty-three'); INSERT INTO t1 VALUES(9017, 65348, 'sixty-five thousand three hundred forty-eight'); INSERT INTO t1 VALUES(9018, 66977, 'sixty-six thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(9019, 14163, 'fourteen thousand one hundred sixty-three'); INSERT INTO t1 VALUES(9020, 91206, 'ninety-one thousand two hundred six'); INSERT INTO t1 VALUES(9021, 49224, 'forty-nine thousand two hundred twenty-four'); INSERT INTO t1 VALUES(9022, 79543, 'seventy-nine thousand five hundred forty-three'); INSERT INTO t1 VALUES(9023, 37417, 'thirty-seven thousand four hundred seventeen'); INSERT INTO t1 VALUES(9024, 16324, 'sixteen thousand three hundred twenty-four'); INSERT INTO t1 VALUES(9025, 2763, 'two thousand seven hundred sixty-three'); INSERT INTO t1 VALUES(9026, 75228, 'seventy-five thousand two hundred twenty-eight'); INSERT INTO t1 VALUES(9027, 94151, 'ninety-four thousand one hundred fifty-one'); INSERT INTO t1 VALUES(9028, 60686, 'sixty thousand six hundred eighty-six'); INSERT INTO t1 VALUES(9029, 62740, 'sixty-two thousand seven hundred forty'); INSERT INTO t1 VALUES(9030, 73968, 'seventy-three thousand nine hundred sixty-eight'); INSERT INTO t1 VALUES(9031, 54685, 'fifty-four thousand six hundred eighty-five'); INSERT INTO t1 VALUES(9032, 37135, 'thirty-seven thousand one hundred thirty-five'); INSERT INTO t1 VALUES(9033, 87186, 'eighty-seven thousand one hundred eighty-six'); INSERT INTO t1 VALUES(9034, 10705, 'ten thousand seven hundred five'); INSERT INTO t1 VALUES(9035, 11630, 'eleven thousand six hundred thirty'); INSERT INTO t1 VALUES(9036, 52779, 'fifty-two thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(9037, 43195, 'forty-three thousand one hundred ninety-five'); INSERT INTO t1 VALUES(9038, 21498, 'twenty-one thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(9039, 81707, 'eighty-one thousand seven hundred seven'); INSERT INTO t1 VALUES(9040, 61777, 'sixty-one thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(9041, 95233, 'ninety-five thousand two hundred thirty-three'); INSERT INTO t1 VALUES(9042, 72200, 'seventy-two thousand two hundred'); INSERT INTO t1 VALUES(9043, 52924, 'fifty-two thousand nine hundred twenty-four'); INSERT INTO t1 VALUES(9044, 33318, 'thirty-three thousand three hundred eighteen'); INSERT INTO t1 VALUES(9045, 49694, 'forty-nine thousand six hundred ninety-four'); INSERT INTO t1 VALUES(9046, 6234, 'six thousand two hundred thirty-four'); INSERT INTO t1 VALUES(9047, 50370, 'fifty thousand three hundred seventy'); INSERT INTO t1 VALUES(9048, 65729, 'sixty-five thousand seven hundred twenty-nine'); INSERT INTO t1 VALUES(9049, 14306, 'fourteen thousand three hundred six'); INSERT INTO t1 VALUES(9050, 8983, 'eight thousand nine hundred eighty-three'); INSERT INTO t1 VALUES(9051, 21977, 'twenty-one thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(9052, 22754, 'twenty-two thousand seven hundred fifty-four'); INSERT INTO t1 VALUES(9053, 64444, 'sixty-four thousand four hundred forty-four'); INSERT INTO t1 VALUES(9054, 46440, 'forty-six thousand four hundred forty'); INSERT INTO t1 VALUES(9055, 36223, 'thirty-six thousand two hundred twenty-three'); INSERT INTO t1 VALUES(9056, 8934, 'eight thousand nine hundred thirty-four'); INSERT INTO t1 VALUES(9057, 7680, 'seven thousand six hundred eighty'); INSERT INTO t1 VALUES(9058, 17683, 'seventeen thousand six hundred eighty-three'); INSERT INTO t1 VALUES(9059, 52572, 'fifty-two thousand five hundred seventy-two'); INSERT INTO t1 VALUES(9060, 87574, 'eighty-seven thousand five hundred seventy-four'); INSERT INTO t1 VALUES(9061, 34111, 'thirty-four thousand one hundred eleven'); INSERT INTO t1 VALUES(9062, 18909, 'eighteen thousand nine hundred nine'); INSERT INTO t1 VALUES(9063, 86215, 'eighty-six thousand two hundred fifteen'); INSERT INTO t1 VALUES(9064, 84824, 'eighty-four thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(9065, 49276, 'forty-nine thousand two hundred seventy-six'); INSERT INTO t1 VALUES(9066, 26668, 'twenty-six thousand six hundred sixty-eight'); INSERT INTO t1 VALUES(9067, 75857, 'seventy-five thousand eight hundred fifty-seven'); INSERT INTO t1 VALUES(9068, 99456, 'ninety-nine thousand four hundred fifty-six'); INSERT INTO t1 VALUES(9069, 57375, 'fifty-seven thousand three hundred seventy-five'); INSERT INTO t1 VALUES(9070, 26330, 'twenty-six thousand three hundred thirty'); INSERT INTO t1 VALUES(9071, 26790, 'twenty-six thousand seven hundred ninety'); INSERT INTO t1 VALUES(9072, 15334, 'fifteen thousand three hundred thirty-four'); INSERT INTO t1 VALUES(9073, 42690, 'forty-two thousand six hundred ninety'); INSERT INTO t1 VALUES(9074, 26198, 'twenty-six thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(9075, 87505, 'eighty-seven thousand five hundred five'); INSERT INTO t1 VALUES(9076, 6196, 'six thousand one hundred ninety-six'); INSERT INTO t1 VALUES(9077, 75123, 'seventy-five thousand one hundred twenty-three'); INSERT INTO t1 VALUES(9078, 70223, 'seventy thousand two hundred twenty-three'); INSERT INTO t1 VALUES(9079, 40170, 'forty thousand one hundred seventy'); INSERT INTO t1 VALUES(9080, 30460, 'thirty thousand four hundred sixty'); INSERT INTO t1 VALUES(9081, 76895, 'seventy-six thousand eight hundred ninety-five'); INSERT INTO t1 VALUES(9082, 33435, 'thirty-three thousand four hundred thirty-five'); INSERT INTO t1 VALUES(9083, 26389, 'twenty-six thousand three hundred eighty-nine'); INSERT INTO t1 VALUES(9084, 60095, 'sixty thousand ninety-five'); INSERT INTO t1 VALUES(9085, 58670, 'fifty-eight thousand six hundred seventy'); INSERT INTO t1 VALUES(9086, 68817, 'sixty-eight thousand eight hundred seventeen'); INSERT INTO t1 VALUES(9087, 48188, 'forty-eight thousand one hundred eighty-eight'); INSERT INTO t1 VALUES(9088, 28911, 'twenty-eight thousand nine hundred eleven'); INSERT INTO t1 VALUES(9089, 67075, 'sixty-seven thousand seventy-five'); INSERT INTO t1 VALUES(9090, 11433, 'eleven thousand four hundred thirty-three'); INSERT INTO t1 VALUES(9091, 62938, 'sixty-two thousand nine hundred thirty-eight'); INSERT INTO t1 VALUES(9092, 54750, 'fifty-four thousand seven hundred fifty'); INSERT INTO t1 VALUES(9093, 14236, 'fourteen thousand two hundred thirty-six'); INSERT INTO t1 VALUES(9094, 15781, 'fifteen thousand seven hundred eighty-one'); INSERT INTO t1 VALUES(9095, 25575, 'twenty-five thousand five hundred seventy-five'); INSERT INTO t1 VALUES(9096, 28818, 'twenty-eight thousand eight hundred eighteen'); INSERT INTO t1 VALUES(9097, 9151, 'nine thousand one hundred fifty-one'); INSERT INTO t1 VALUES(9098, 59512, 'fifty-nine thousand five hundred twelve'); INSERT INTO t1 VALUES(9099, 74106, 'seventy-four thousand one hundred six'); INSERT INTO t1 VALUES(9100, 82669, 'eighty-two thousand six hundred sixty-nine'); INSERT INTO t1 VALUES(9101, 61015, 'sixty-one thousand fifteen'); INSERT INTO t1 VALUES(9102, 28128, 'twenty-eight thousand one hundred twenty-eight'); INSERT INTO t1 VALUES(9103, 75150, 'seventy-five thousand one hundred fifty'); INSERT INTO t1 VALUES(9104, 9027, 'nine thousand twenty-seven'); INSERT INTO t1 VALUES(9105, 23880, 'twenty-three thousand eight hundred eighty'); INSERT INTO t1 VALUES(9106, 40274, 'forty thousand two hundred seventy-four'); INSERT INTO t1 VALUES(9107, 73115, 'seventy-three thousand one hundred fifteen'); INSERT INTO t1 VALUES(9108, 61485, 'sixty-one thousand four hundred eighty-five'); INSERT INTO t1 VALUES(9109, 25420, 'twenty-five thousand four hundred twenty'); INSERT INTO t1 VALUES(9110, 66954, 'sixty-six thousand nine hundred fifty-four'); INSERT INTO t1 VALUES(9111, 34886, 'thirty-four thousand eight hundred eighty-six'); INSERT INTO t1 VALUES(9112, 91315, 'ninety-one thousand three hundred fifteen'); INSERT INTO t1 VALUES(9113, 71897, 'seventy-one thousand eight hundred ninety-seven'); INSERT INTO t1 VALUES(9114, 20908, 'twenty thousand nine hundred eight'); INSERT INTO t1 VALUES(9115, 71760, 'seventy-one thousand seven hundred sixty'); INSERT INTO t1 VALUES(9116, 91845, 'ninety-one thousand eight hundred forty-five'); INSERT INTO t1 VALUES(9117, 50211, 'fifty thousand two hundred eleven'); INSERT INTO t1 VALUES(9118, 70079, 'seventy thousand seventy-nine'); INSERT INTO t1 VALUES(9119, 10289, 'ten thousand two hundred eighty-nine'); INSERT INTO t1 VALUES(9120, 51887, 'fifty-one thousand eight hundred eighty-seven'); INSERT INTO t1 VALUES(9121, 83097, 'eighty-three thousand ninety-seven'); INSERT INTO t1 VALUES(9122, 26234, 'twenty-six thousand two hundred thirty-four'); INSERT INTO t1 VALUES(9123, 20601, 'twenty thousand six hundred one'); INSERT INTO t1 VALUES(9124, 30266, 'thirty thousand two hundred sixty-six'); INSERT INTO t1 VALUES(9125, 98571, 'ninety-eight thousand five hundred seventy-one'); INSERT INTO t1 VALUES(9126, 40822, 'forty thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(9127, 1802, 'one thousand eight hundred two'); INSERT INTO t1 VALUES(9128, 89150, 'eighty-nine thousand one hundred fifty'); INSERT INTO t1 VALUES(9129, 70715, 'seventy thousand seven hundred fifteen'); INSERT INTO t1 VALUES(9130, 43967, 'forty-three thousand nine hundred sixty-seven'); INSERT INTO t1 VALUES(9131, 88634, 'eighty-eight thousand six hundred thirty-four'); INSERT INTO t1 VALUES(9132, 10904, 'ten thousand nine hundred four'); INSERT INTO t1 VALUES(9133, 39091, 'thirty-nine thousand ninety-one'); INSERT INTO t1 VALUES(9134, 9817, 'nine thousand eight hundred seventeen'); INSERT INTO t1 VALUES(9135, 99261, 'ninety-nine thousand two hundred sixty-one'); INSERT INTO t1 VALUES(9136, 22716, 'twenty-two thousand seven hundred sixteen'); INSERT INTO t1 VALUES(9137, 5329, 'five thousand three hundred twenty-nine'); INSERT INTO t1 VALUES(9138, 94621, 'ninety-four thousand six hundred twenty-one'); INSERT INTO t1 VALUES(9139, 98860, 'ninety-eight thousand eight hundred sixty'); INSERT INTO t1 VALUES(9140, 48049, 'forty-eight thousand forty-nine'); INSERT INTO t1 VALUES(9141, 97811, 'ninety-seven thousand eight hundred eleven'); INSERT INTO t1 VALUES(9142, 63630, 'sixty-three thousand six hundred thirty'); INSERT INTO t1 VALUES(9143, 62542, 'sixty-two thousand five hundred forty-two'); INSERT INTO t1 VALUES(9144, 62895, 'sixty-two thousand eight hundred ninety-five'); INSERT INTO t1 VALUES(9145, 93466, 'ninety-three thousand four hundred sixty-six'); INSERT INTO t1 VALUES(9146, 69876, 'sixty-nine thousand eight hundred seventy-six'); INSERT INTO t1 VALUES(9147, 3926, 'three thousand nine hundred twenty-six'); INSERT INTO t1 VALUES(9148, 7599, 'seven thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(9149, 10103, 'ten thousand one hundred three'); INSERT INTO t1 VALUES(9150, 53163, 'fifty-three thousand one hundred sixty-three'); INSERT INTO t1 VALUES(9151, 2708, 'two thousand seven hundred eight'); INSERT INTO t1 VALUES(9152, 78197, 'seventy-eight thousand one hundred ninety-seven'); INSERT INTO t1 VALUES(9153, 91219, 'ninety-one thousand two hundred nineteen'); INSERT INTO t1 VALUES(9154, 77660, 'seventy-seven thousand six hundred sixty'); INSERT INTO t1 VALUES(9155, 28410, 'twenty-eight thousand four hundred ten'); INSERT INTO t1 VALUES(9156, 28616, 'twenty-eight thousand six hundred sixteen'); INSERT INTO t1 VALUES(9157, 74226, 'seventy-four thousand two hundred twenty-six'); INSERT INTO t1 VALUES(9158, 78214, 'seventy-eight thousand two hundred fourteen'); INSERT INTO t1 VALUES(9159, 76972, 'seventy-six thousand nine hundred seventy-two'); INSERT INTO t1 VALUES(9160, 33301, 'thirty-three thousand three hundred one'); INSERT INTO t1 VALUES(9161, 11350, 'eleven thousand three hundred fifty'); INSERT INTO t1 VALUES(9162, 75938, 'seventy-five thousand nine hundred thirty-eight'); INSERT INTO t1 VALUES(9163, 38335, 'thirty-eight thousand three hundred thirty-five'); INSERT INTO t1 VALUES(9164, 25562, 'twenty-five thousand five hundred sixty-two'); INSERT INTO t1 VALUES(9165, 64909, 'sixty-four thousand nine hundred nine'); INSERT INTO t1 VALUES(9166, 12391, 'twelve thousand three hundred ninety-one'); INSERT INTO t1 VALUES(9167, 9745, 'nine thousand seven hundred forty-five'); INSERT INTO t1 VALUES(9168, 85491, 'eighty-five thousand four hundred ninety-one'); INSERT INTO t1 VALUES(9169, 39665, 'thirty-nine thousand six hundred sixty-five'); INSERT INTO t1 VALUES(9170, 38121, 'thirty-eight thousand one hundred twenty-one'); INSERT INTO t1 VALUES(9171, 18911, 'eighteen thousand nine hundred eleven'); INSERT INTO t1 VALUES(9172, 49948, 'forty-nine thousand nine hundred forty-eight'); INSERT INTO t1 VALUES(9173, 34231, 'thirty-four thousand two hundred thirty-one'); INSERT INTO t1 VALUES(9174, 17303, 'seventeen thousand three hundred three'); INSERT INTO t1 VALUES(9175, 92880, 'ninety-two thousand eight hundred eighty'); INSERT INTO t1 VALUES(9176, 12373, 'twelve thousand three hundred seventy-three'); INSERT INTO t1 VALUES(9177, 42849, 'forty-two thousand eight hundred forty-nine'); INSERT INTO t1 VALUES(9178, 65940, 'sixty-five thousand nine hundred forty'); INSERT INTO t1 VALUES(9179, 25496, 'twenty-five thousand four hundred ninety-six'); INSERT INTO t1 VALUES(9180, 22427, 'twenty-two thousand four hundred twenty-seven'); INSERT INTO t1 VALUES(9181, 62492, 'sixty-two thousand four hundred ninety-two'); INSERT INTO t1 VALUES(9182, 51703, 'fifty-one thousand seven hundred three'); INSERT INTO t1 VALUES(9183, 28441, 'twenty-eight thousand four hundred forty-one'); INSERT INTO t1 VALUES(9184, 41392, 'forty-one thousand three hundred ninety-two'); INSERT INTO t1 VALUES(9185, 23998, 'twenty-three thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(9186, 23465, 'twenty-three thousand four hundred sixty-five'); INSERT INTO t1 VALUES(9187, 86701, 'eighty-six thousand seven hundred one'); INSERT INTO t1 VALUES(9188, 3386, 'three thousand three hundred eighty-six'); INSERT INTO t1 VALUES(9189, 18479, 'eighteen thousand four hundred seventy-nine'); INSERT INTO t1 VALUES(9190, 41028, 'forty-one thousand twenty-eight'); INSERT INTO t1 VALUES(9191, 43534, 'forty-three thousand five hundred thirty-four'); INSERT INTO t1 VALUES(9192, 56910, 'fifty-six thousand nine hundred ten'); INSERT INTO t1 VALUES(9193, 50972, 'fifty thousand nine hundred seventy-two'); INSERT INTO t1 VALUES(9194, 52735, 'fifty-two thousand seven hundred thirty-five'); INSERT INTO t1 VALUES(9195, 83260, 'eighty-three thousand two hundred sixty'); INSERT INTO t1 VALUES(9196, 28559, 'twenty-eight thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(9197, 53247, 'fifty-three thousand two hundred forty-seven'); INSERT INTO t1 VALUES(9198, 50403, 'fifty thousand four hundred three'); INSERT INTO t1 VALUES(9199, 13782, 'thirteen thousand seven hundred eighty-two'); INSERT INTO t1 VALUES(9200, 78983, 'seventy-eight thousand nine hundred eighty-three'); INSERT INTO t1 VALUES(9201, 62662, 'sixty-two thousand six hundred sixty-two'); INSERT INTO t1 VALUES(9202, 56112, 'fifty-six thousand one hundred twelve'); INSERT INTO t1 VALUES(9203, 53341, 'fifty-three thousand three hundred forty-one'); INSERT INTO t1 VALUES(9204, 56046, 'fifty-six thousand forty-six'); INSERT INTO t1 VALUES(9205, 39859, 'thirty-nine thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(9206, 39345, 'thirty-nine thousand three hundred forty-five'); INSERT INTO t1 VALUES(9207, 29125, 'twenty-nine thousand one hundred twenty-five'); INSERT INTO t1 VALUES(9208, 71383, 'seventy-one thousand three hundred eighty-three'); INSERT INTO t1 VALUES(9209, 21209, 'twenty-one thousand two hundred nine'); INSERT INTO t1 VALUES(9210, 28644, 'twenty-eight thousand six hundred forty-four'); INSERT INTO t1 VALUES(9211, 2056, 'two thousand fifty-six'); INSERT INTO t1 VALUES(9212, 53504, 'fifty-three thousand five hundred four'); INSERT INTO t1 VALUES(9213, 81688, 'eighty-one thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(9214, 13042, 'thirteen thousand forty-two'); INSERT INTO t1 VALUES(9215, 74513, 'seventy-four thousand five hundred thirteen'); INSERT INTO t1 VALUES(9216, 7582, 'seven thousand five hundred eighty-two'); INSERT INTO t1 VALUES(9217, 76992, 'seventy-six thousand nine hundred ninety-two'); INSERT INTO t1 VALUES(9218, 91703, 'ninety-one thousand seven hundred three'); INSERT INTO t1 VALUES(9219, 88015, 'eighty-eight thousand fifteen'); INSERT INTO t1 VALUES(9220, 77106, 'seventy-seven thousand one hundred six'); INSERT INTO t1 VALUES(9221, 86493, 'eighty-six thousand four hundred ninety-three'); INSERT INTO t1 VALUES(9222, 63645, 'sixty-three thousand six hundred forty-five'); INSERT INTO t1 VALUES(9223, 86859, 'eighty-six thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(9224, 10078, 'ten thousand seventy-eight'); INSERT INTO t1 VALUES(9225, 43217, 'forty-three thousand two hundred seventeen'); INSERT INTO t1 VALUES(9226, 76779, 'seventy-six thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(9227, 5600, 'five thousand six hundred'); INSERT INTO t1 VALUES(9228, 55313, 'fifty-five thousand three hundred thirteen'); INSERT INTO t1 VALUES(9229, 52936, 'fifty-two thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(9230, 92046, 'ninety-two thousand forty-six'); INSERT INTO t1 VALUES(9231, 79926, 'seventy-nine thousand nine hundred twenty-six'); INSERT INTO t1 VALUES(9232, 73271, 'seventy-three thousand two hundred seventy-one'); INSERT INTO t1 VALUES(9233, 57064, 'fifty-seven thousand sixty-four'); INSERT INTO t1 VALUES(9234, 90770, 'ninety thousand seven hundred seventy'); INSERT INTO t1 VALUES(9235, 19694, 'nineteen thousand six hundred ninety-four'); INSERT INTO t1 VALUES(9236, 46097, 'forty-six thousand ninety-seven'); INSERT INTO t1 VALUES(9237, 13161, 'thirteen thousand one hundred sixty-one'); INSERT INTO t1 VALUES(9238, 66883, 'sixty-six thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(9239, 50249, 'fifty thousand two hundred forty-nine'); INSERT INTO t1 VALUES(9240, 3271, 'three thousand two hundred seventy-one'); INSERT INTO t1 VALUES(9241, 77250, 'seventy-seven thousand two hundred fifty'); INSERT INTO t1 VALUES(9242, 95729, 'ninety-five thousand seven hundred twenty-nine'); INSERT INTO t1 VALUES(9243, 24615, 'twenty-four thousand six hundred fifteen'); INSERT INTO t1 VALUES(9244, 75406, 'seventy-five thousand four hundred six'); INSERT INTO t1 VALUES(9245, 80657, 'eighty thousand six hundred fifty-seven'); INSERT INTO t1 VALUES(9246, 45909, 'forty-five thousand nine hundred nine'); INSERT INTO t1 VALUES(9247, 51913, 'fifty-one thousand nine hundred thirteen'); INSERT INTO t1 VALUES(9248, 56399, 'fifty-six thousand three hundred ninety-nine'); INSERT INTO t1 VALUES(9249, 40598, 'forty thousand five hundred ninety-eight'); INSERT INTO t1 VALUES(9250, 2367, 'two thousand three hundred sixty-seven'); INSERT INTO t1 VALUES(9251, 40913, 'forty thousand nine hundred thirteen'); INSERT INTO t1 VALUES(9252, 45408, 'forty-five thousand four hundred eight'); INSERT INTO t1 VALUES(9253, 72276, 'seventy-two thousand two hundred seventy-six'); INSERT INTO t1 VALUES(9254, 71061, 'seventy-one thousand sixty-one'); INSERT INTO t1 VALUES(9255, 92166, 'ninety-two thousand one hundred sixty-six'); INSERT INTO t1 VALUES(9256, 96531, 'ninety-six thousand five hundred thirty-one'); INSERT INTO t1 VALUES(9257, 5978, 'five thousand nine hundred seventy-eight'); INSERT INTO t1 VALUES(9258, 12250, 'twelve thousand two hundred fifty'); INSERT INTO t1 VALUES(9259, 35918, 'thirty-five thousand nine hundred eighteen'); INSERT INTO t1 VALUES(9260, 13437, 'thirteen thousand four hundred thirty-seven'); INSERT INTO t1 VALUES(9261, 90089, 'ninety thousand eighty-nine'); INSERT INTO t1 VALUES(9262, 47178, 'forty-seven thousand one hundred seventy-eight'); INSERT INTO t1 VALUES(9263, 55228, 'fifty-five thousand two hundred twenty-eight'); INSERT INTO t1 VALUES(9264, 52049, 'fifty-two thousand forty-nine'); INSERT INTO t1 VALUES(9265, 83196, 'eighty-three thousand one hundred ninety-six'); INSERT INTO t1 VALUES(9266, 8132, 'eight thousand one hundred thirty-two'); INSERT INTO t1 VALUES(9267, 66328, 'sixty-six thousand three hundred twenty-eight'); INSERT INTO t1 VALUES(9268, 30816, 'thirty thousand eight hundred sixteen'); INSERT INTO t1 VALUES(9269, 4207, 'four thousand two hundred seven'); INSERT INTO t1 VALUES(9270, 66573, 'sixty-six thousand five hundred seventy-three'); INSERT INTO t1 VALUES(9271, 12247, 'twelve thousand two hundred forty-seven'); INSERT INTO t1 VALUES(9272, 54159, 'fifty-four thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(9273, 82359, 'eighty-two thousand three hundred fifty-nine'); INSERT INTO t1 VALUES(9274, 11625, 'eleven thousand six hundred twenty-five'); INSERT INTO t1 VALUES(9275, 30885, 'thirty thousand eight hundred eighty-five'); INSERT INTO t1 VALUES(9276, 67427, 'sixty-seven thousand four hundred twenty-seven'); INSERT INTO t1 VALUES(9277, 4007, 'four thousand seven'); INSERT INTO t1 VALUES(9278, 97631, 'ninety-seven thousand six hundred thirty-one'); INSERT INTO t1 VALUES(9279, 44260, 'forty-four thousand two hundred sixty'); INSERT INTO t1 VALUES(9280, 55135, 'fifty-five thousand one hundred thirty-five'); INSERT INTO t1 VALUES(9281, 81190, 'eighty-one thousand one hundred ninety'); INSERT INTO t1 VALUES(9282, 66839, 'sixty-six thousand eight hundred thirty-nine'); INSERT INTO t1 VALUES(9283, 27934, 'twenty-seven thousand nine hundred thirty-four'); INSERT INTO t1 VALUES(9284, 18731, 'eighteen thousand seven hundred thirty-one'); INSERT INTO t1 VALUES(9285, 94208, 'ninety-four thousand two hundred eight'); INSERT INTO t1 VALUES(9286, 52814, 'fifty-two thousand eight hundred fourteen'); INSERT INTO t1 VALUES(9287, 98644, 'ninety-eight thousand six hundred forty-four'); INSERT INTO t1 VALUES(9288, 57381, 'fifty-seven thousand three hundred eighty-one'); INSERT INTO t1 VALUES(9289, 17086, 'seventeen thousand eighty-six'); INSERT INTO t1 VALUES(9290, 44729, 'forty-four thousand seven hundred twenty-nine'); INSERT INTO t1 VALUES(9291, 2639, 'two thousand six hundred thirty-nine'); INSERT INTO t1 VALUES(9292, 50145, 'fifty thousand one hundred forty-five'); INSERT INTO t1 VALUES(9293, 33091, 'thirty-three thousand ninety-one'); INSERT INTO t1 VALUES(9294, 45556, 'forty-five thousand five hundred fifty-six'); INSERT INTO t1 VALUES(9295, 77650, 'seventy-seven thousand six hundred fifty'); INSERT INTO t1 VALUES(9296, 47839, 'forty-seven thousand eight hundred thirty-nine'); INSERT INTO t1 VALUES(9297, 93115, 'ninety-three thousand one hundred fifteen'); INSERT INTO t1 VALUES(9298, 70265, 'seventy thousand two hundred sixty-five'); INSERT INTO t1 VALUES(9299, 61641, 'sixty-one thousand six hundred forty-one'); INSERT INTO t1 VALUES(9300, 85550, 'eighty-five thousand five hundred fifty'); INSERT INTO t1 VALUES(9301, 83776, 'eighty-three thousand seven hundred seventy-six'); INSERT INTO t1 VALUES(9302, 32505, 'thirty-two thousand five hundred five'); INSERT INTO t1 VALUES(9303, 9765, 'nine thousand seven hundred sixty-five'); INSERT INTO t1 VALUES(9304, 27872, 'twenty-seven thousand eight hundred seventy-two'); INSERT INTO t1 VALUES(9305, 79922, 'seventy-nine thousand nine hundred twenty-two'); INSERT INTO t1 VALUES(9306, 98100, 'ninety-eight thousand one hundred'); INSERT INTO t1 VALUES(9307, 78679, 'seventy-eight thousand six hundred seventy-nine'); INSERT INTO t1 VALUES(9308, 95257, 'ninety-five thousand two hundred fifty-seven'); INSERT INTO t1 VALUES(9309, 19705, 'nineteen thousand seven hundred five'); INSERT INTO t1 VALUES(9310, 64997, 'sixty-four thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(9311, 9415, 'nine thousand four hundred fifteen'); INSERT INTO t1 VALUES(9312, 71354, 'seventy-one thousand three hundred fifty-four'); INSERT INTO t1 VALUES(9313, 44233, 'forty-four thousand two hundred thirty-three'); INSERT INTO t1 VALUES(9314, 40455, 'forty thousand four hundred fifty-five'); INSERT INTO t1 VALUES(9315, 98999, 'ninety-eight thousand nine hundred ninety-nine'); INSERT INTO t1 VALUES(9316, 6639, 'six thousand six hundred thirty-nine'); INSERT INTO t1 VALUES(9317, 79675, 'seventy-nine thousand six hundred seventy-five'); INSERT INTO t1 VALUES(9318, 59829, 'fifty-nine thousand eight hundred twenty-nine'); INSERT INTO t1 VALUES(9319, 16217, 'sixteen thousand two hundred seventeen'); INSERT INTO t1 VALUES(9320, 42887, 'forty-two thousand eight hundred eighty-seven'); INSERT INTO t1 VALUES(9321, 34873, 'thirty-four thousand eight hundred seventy-three'); INSERT INTO t1 VALUES(9322, 72473, 'seventy-two thousand four hundred seventy-three'); INSERT INTO t1 VALUES(9323, 63394, 'sixty-three thousand three hundred ninety-four'); INSERT INTO t1 VALUES(9324, 97477, 'ninety-seven thousand four hundred seventy-seven'); INSERT INTO t1 VALUES(9325, 12286, 'twelve thousand two hundred eighty-six'); INSERT INTO t1 VALUES(9326, 99485, 'ninety-nine thousand four hundred eighty-five'); INSERT INTO t1 VALUES(9327, 39123, 'thirty-nine thousand one hundred twenty-three'); INSERT INTO t1 VALUES(9328, 68293, 'sixty-eight thousand two hundred ninety-three'); INSERT INTO t1 VALUES(9329, 43766, 'forty-three thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(9330, 83239, 'eighty-three thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(9331, 97581, 'ninety-seven thousand five hundred eighty-one'); INSERT INTO t1 VALUES(9332, 43944, 'forty-three thousand nine hundred forty-four'); INSERT INTO t1 VALUES(9333, 93403, 'ninety-three thousand four hundred three'); INSERT INTO t1 VALUES(9334, 45278, 'forty-five thousand two hundred seventy-eight'); INSERT INTO t1 VALUES(9335, 19337, 'nineteen thousand three hundred thirty-seven'); INSERT INTO t1 VALUES(9336, 31930, 'thirty-one thousand nine hundred thirty'); INSERT INTO t1 VALUES(9337, 42437, 'forty-two thousand four hundred thirty-seven'); INSERT INTO t1 VALUES(9338, 78536, 'seventy-eight thousand five hundred thirty-six'); INSERT INTO t1 VALUES(9339, 81281, 'eighty-one thousand two hundred eighty-one'); INSERT INTO t1 VALUES(9340, 80627, 'eighty thousand six hundred twenty-seven'); INSERT INTO t1 VALUES(9341, 9316, 'nine thousand three hundred sixteen'); INSERT INTO t1 VALUES(9342, 31067, 'thirty-one thousand sixty-seven'); INSERT INTO t1 VALUES(9343, 78795, 'seventy-eight thousand seven hundred ninety-five'); INSERT INTO t1 VALUES(9344, 48606, 'forty-eight thousand six hundred six'); INSERT INTO t1 VALUES(9345, 45890, 'forty-five thousand eight hundred ninety'); INSERT INTO t1 VALUES(9346, 67929, 'sixty-seven thousand nine hundred twenty-nine'); INSERT INTO t1 VALUES(9347, 65859, 'sixty-five thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(9348, 14214, 'fourteen thousand two hundred fourteen'); INSERT INTO t1 VALUES(9349, 33244, 'thirty-three thousand two hundred forty-four'); INSERT INTO t1 VALUES(9350, 24156, 'twenty-four thousand one hundred fifty-six'); INSERT INTO t1 VALUES(9351, 66176, 'sixty-six thousand one hundred seventy-six'); INSERT INTO t1 VALUES(9352, 93753, 'ninety-three thousand seven hundred fifty-three'); INSERT INTO t1 VALUES(9353, 94059, 'ninety-four thousand fifty-nine'); INSERT INTO t1 VALUES(9354, 76543, 'seventy-six thousand five hundred forty-three'); INSERT INTO t1 VALUES(9355, 34897, 'thirty-four thousand eight hundred ninety-seven'); INSERT INTO t1 VALUES(9356, 87700, 'eighty-seven thousand seven hundred'); INSERT INTO t1 VALUES(9357, 89599, 'eighty-nine thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(9358, 69225, 'sixty-nine thousand two hundred twenty-five'); INSERT INTO t1 VALUES(9359, 54500, 'fifty-four thousand five hundred'); INSERT INTO t1 VALUES(9360, 89860, 'eighty-nine thousand eight hundred sixty'); INSERT INTO t1 VALUES(9361, 73904, 'seventy-three thousand nine hundred four'); INSERT INTO t1 VALUES(9362, 41617, 'forty-one thousand six hundred seventeen'); INSERT INTO t1 VALUES(9363, 63878, 'sixty-three thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(9364, 56104, 'fifty-six thousand one hundred four'); INSERT INTO t1 VALUES(9365, 3965, 'three thousand nine hundred sixty-five'); INSERT INTO t1 VALUES(9366, 56764, 'fifty-six thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(9367, 2117, 'two thousand one hundred seventeen'); INSERT INTO t1 VALUES(9368, 23297, 'twenty-three thousand two hundred ninety-seven'); INSERT INTO t1 VALUES(9369, 12023, 'twelve thousand twenty-three'); INSERT INTO t1 VALUES(9370, 18963, 'eighteen thousand nine hundred sixty-three'); INSERT INTO t1 VALUES(9371, 17062, 'seventeen thousand sixty-two'); INSERT INTO t1 VALUES(9372, 49555, 'forty-nine thousand five hundred fifty-five'); INSERT INTO t1 VALUES(9373, 67359, 'sixty-seven thousand three hundred fifty-nine'); INSERT INTO t1 VALUES(9374, 39756, 'thirty-nine thousand seven hundred fifty-six'); INSERT INTO t1 VALUES(9375, 47012, 'forty-seven thousand twelve'); INSERT INTO t1 VALUES(9376, 76255, 'seventy-six thousand two hundred fifty-five'); INSERT INTO t1 VALUES(9377, 40509, 'forty thousand five hundred nine'); INSERT INTO t1 VALUES(9378, 74199, 'seventy-four thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(9379, 3703, 'three thousand seven hundred three'); INSERT INTO t1 VALUES(9380, 11186, 'eleven thousand one hundred eighty-six'); INSERT INTO t1 VALUES(9381, 86532, 'eighty-six thousand five hundred thirty-two'); INSERT INTO t1 VALUES(9382, 8227, 'eight thousand two hundred twenty-seven'); INSERT INTO t1 VALUES(9383, 73547, 'seventy-three thousand five hundred forty-seven'); INSERT INTO t1 VALUES(9384, 29366, 'twenty-nine thousand three hundred sixty-six'); INSERT INTO t1 VALUES(9385, 80713, 'eighty thousand seven hundred thirteen'); INSERT INTO t1 VALUES(9386, 49622, 'forty-nine thousand six hundred twenty-two'); INSERT INTO t1 VALUES(9387, 3727, 'three thousand seven hundred twenty-seven'); INSERT INTO t1 VALUES(9388, 98788, 'ninety-eight thousand seven hundred eighty-eight'); INSERT INTO t1 VALUES(9389, 27701, 'twenty-seven thousand seven hundred one'); INSERT INTO t1 VALUES(9390, 86569, 'eighty-six thousand five hundred sixty-nine'); INSERT INTO t1 VALUES(9391, 9451, 'nine thousand four hundred fifty-one'); INSERT INTO t1 VALUES(9392, 91019, 'ninety-one thousand nineteen'); INSERT INTO t1 VALUES(9393, 78862, 'seventy-eight thousand eight hundred sixty-two'); INSERT INTO t1 VALUES(9394, 35893, 'thirty-five thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(9395, 61336, 'sixty-one thousand three hundred thirty-six'); INSERT INTO t1 VALUES(9396, 7478, 'seven thousand four hundred seventy-eight'); INSERT INTO t1 VALUES(9397, 19012, 'nineteen thousand twelve'); INSERT INTO t1 VALUES(9398, 22175, 'twenty-two thousand one hundred seventy-five'); INSERT INTO t1 VALUES(9399, 6981, 'six thousand nine hundred eighty-one'); INSERT INTO t1 VALUES(9400, 93561, 'ninety-three thousand five hundred sixty-one'); INSERT INTO t1 VALUES(9401, 75376, 'seventy-five thousand three hundred seventy-six'); INSERT INTO t1 VALUES(9402, 4840, 'four thousand eight hundred forty'); INSERT INTO t1 VALUES(9403, 55815, 'fifty-five thousand eight hundred fifteen'); INSERT INTO t1 VALUES(9404, 50935, 'fifty thousand nine hundred thirty-five'); INSERT INTO t1 VALUES(9405, 43307, 'forty-three thousand three hundred seven'); INSERT INTO t1 VALUES(9406, 79838, 'seventy-nine thousand eight hundred thirty-eight'); INSERT INTO t1 VALUES(9407, 30091, 'thirty thousand ninety-one'); INSERT INTO t1 VALUES(9408, 5500, 'five thousand five hundred'); INSERT INTO t1 VALUES(9409, 51471, 'fifty-one thousand four hundred seventy-one'); INSERT INTO t1 VALUES(9410, 66900, 'sixty-six thousand nine hundred'); INSERT INTO t1 VALUES(9411, 77259, 'seventy-seven thousand two hundred fifty-nine'); INSERT INTO t1 VALUES(9412, 49807, 'forty-nine thousand eight hundred seven'); INSERT INTO t1 VALUES(9413, 75864, 'seventy-five thousand eight hundred sixty-four'); INSERT INTO t1 VALUES(9414, 84536, 'eighty-four thousand five hundred thirty-six'); INSERT INTO t1 VALUES(9415, 44604, 'forty-four thousand six hundred four'); INSERT INTO t1 VALUES(9416, 83410, 'eighty-three thousand four hundred ten'); INSERT INTO t1 VALUES(9417, 23198, 'twenty-three thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(9418, 19745, 'nineteen thousand seven hundred forty-five'); INSERT INTO t1 VALUES(9419, 35586, 'thirty-five thousand five hundred eighty-six'); INSERT INTO t1 VALUES(9420, 1654, 'one thousand six hundred fifty-four'); INSERT INTO t1 VALUES(9421, 31246, 'thirty-one thousand two hundred forty-six'); INSERT INTO t1 VALUES(9422, 22938, 'twenty-two thousand nine hundred thirty-eight'); INSERT INTO t1 VALUES(9423, 69002, 'sixty-nine thousand two'); INSERT INTO t1 VALUES(9424, 179, 'one hundred seventy-nine'); INSERT INTO t1 VALUES(9425, 18497, 'eighteen thousand four hundred ninety-seven'); INSERT INTO t1 VALUES(9426, 46079, 'forty-six thousand seventy-nine'); INSERT INTO t1 VALUES(9427, 92223, 'ninety-two thousand two hundred twenty-three'); INSERT INTO t1 VALUES(9428, 49971, 'forty-nine thousand nine hundred seventy-one'); INSERT INTO t1 VALUES(9429, 78232, 'seventy-eight thousand two hundred thirty-two'); INSERT INTO t1 VALUES(9430, 94465, 'ninety-four thousand four hundred sixty-five'); INSERT INTO t1 VALUES(9431, 11170, 'eleven thousand one hundred seventy'); INSERT INTO t1 VALUES(9432, 28811, 'twenty-eight thousand eight hundred eleven'); INSERT INTO t1 VALUES(9433, 45681, 'forty-five thousand six hundred eighty-one'); INSERT INTO t1 VALUES(9434, 63206, 'sixty-three thousand two hundred six'); INSERT INTO t1 VALUES(9435, 83758, 'eighty-three thousand seven hundred fifty-eight'); INSERT INTO t1 VALUES(9436, 8232, 'eight thousand two hundred thirty-two'); INSERT INTO t1 VALUES(9437, 99831, 'ninety-nine thousand eight hundred thirty-one'); INSERT INTO t1 VALUES(9438, 55476, 'fifty-five thousand four hundred seventy-six'); INSERT INTO t1 VALUES(9439, 72280, 'seventy-two thousand two hundred eighty'); INSERT INTO t1 VALUES(9440, 20748, 'twenty thousand seven hundred forty-eight'); INSERT INTO t1 VALUES(9441, 18852, 'eighteen thousand eight hundred fifty-two'); INSERT INTO t1 VALUES(9442, 30881, 'thirty thousand eight hundred eighty-one'); INSERT INTO t1 VALUES(9443, 56045, 'fifty-six thousand forty-five'); INSERT INTO t1 VALUES(9444, 13070, 'thirteen thousand seventy'); INSERT INTO t1 VALUES(9445, 32560, 'thirty-two thousand five hundred sixty'); INSERT INTO t1 VALUES(9446, 5456, 'five thousand four hundred fifty-six'); INSERT INTO t1 VALUES(9447, 42040, 'forty-two thousand forty'); INSERT INTO t1 VALUES(9448, 2284, 'two thousand two hundred eighty-four'); INSERT INTO t1 VALUES(9449, 50338, 'fifty thousand three hundred thirty-eight'); INSERT INTO t1 VALUES(9450, 56849, 'fifty-six thousand eight hundred forty-nine'); INSERT INTO t1 VALUES(9451, 30909, 'thirty thousand nine hundred nine'); INSERT INTO t1 VALUES(9452, 4475, 'four thousand four hundred seventy-five'); INSERT INTO t1 VALUES(9453, 45276, 'forty-five thousand two hundred seventy-six'); INSERT INTO t1 VALUES(9454, 20354, 'twenty thousand three hundred fifty-four'); INSERT INTO t1 VALUES(9455, 47206, 'forty-seven thousand two hundred six'); INSERT INTO t1 VALUES(9456, 69317, 'sixty-nine thousand three hundred seventeen'); INSERT INTO t1 VALUES(9457, 50022, 'fifty thousand twenty-two'); INSERT INTO t1 VALUES(9458, 69982, 'sixty-nine thousand nine hundred eighty-two'); INSERT INTO t1 VALUES(9459, 53998, 'fifty-three thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(9460, 79095, 'seventy-nine thousand ninety-five'); INSERT INTO t1 VALUES(9461, 97331, 'ninety-seven thousand three hundred thirty-one'); INSERT INTO t1 VALUES(9462, 13043, 'thirteen thousand forty-three'); INSERT INTO t1 VALUES(9463, 77188, 'seventy-seven thousand one hundred eighty-eight'); INSERT INTO t1 VALUES(9464, 66309, 'sixty-six thousand three hundred nine'); INSERT INTO t1 VALUES(9465, 95429, 'ninety-five thousand four hundred twenty-nine'); INSERT INTO t1 VALUES(9466, 99073, 'ninety-nine thousand seventy-three'); INSERT INTO t1 VALUES(9467, 63559, 'sixty-three thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(9468, 84590, 'eighty-four thousand five hundred ninety'); INSERT INTO t1 VALUES(9469, 80002, 'eighty thousand two'); INSERT INTO t1 VALUES(9470, 67501, 'sixty-seven thousand five hundred one'); INSERT INTO t1 VALUES(9471, 88645, 'eighty-eight thousand six hundred forty-five'); INSERT INTO t1 VALUES(9472, 96629, 'ninety-six thousand six hundred twenty-nine'); INSERT INTO t1 VALUES(9473, 36165, 'thirty-six thousand one hundred sixty-five'); INSERT INTO t1 VALUES(9474, 58357, 'fifty-eight thousand three hundred fifty-seven'); INSERT INTO t1 VALUES(9475, 5289, 'five thousand two hundred eighty-nine'); INSERT INTO t1 VALUES(9476, 4103, 'four thousand one hundred three'); INSERT INTO t1 VALUES(9477, 29215, 'twenty-nine thousand two hundred fifteen'); INSERT INTO t1 VALUES(9478, 92987, 'ninety-two thousand nine hundred eighty-seven'); INSERT INTO t1 VALUES(9479, 71216, 'seventy-one thousand two hundred sixteen'); INSERT INTO t1 VALUES(9480, 12373, 'twelve thousand three hundred seventy-three'); INSERT INTO t1 VALUES(9481, 3267, 'three thousand two hundred sixty-seven'); INSERT INTO t1 VALUES(9482, 2509, 'two thousand five hundred nine'); INSERT INTO t1 VALUES(9483, 83554, 'eighty-three thousand five hundred fifty-four'); INSERT INTO t1 VALUES(9484, 78637, 'seventy-eight thousand six hundred thirty-seven'); INSERT INTO t1 VALUES(9485, 86912, 'eighty-six thousand nine hundred twelve'); INSERT INTO t1 VALUES(9486, 89189, 'eighty-nine thousand one hundred eighty-nine'); INSERT INTO t1 VALUES(9487, 28084, 'twenty-eight thousand eighty-four'); INSERT INTO t1 VALUES(9488, 8057, 'eight thousand fifty-seven'); INSERT INTO t1 VALUES(9489, 70881, 'seventy thousand eight hundred eighty-one'); INSERT INTO t1 VALUES(9490, 21330, 'twenty-one thousand three hundred thirty'); INSERT INTO t1 VALUES(9491, 46777, 'forty-six thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(9492, 34006, 'thirty-four thousand six'); INSERT INTO t1 VALUES(9493, 50965, 'fifty thousand nine hundred sixty-five'); INSERT INTO t1 VALUES(9494, 39325, 'thirty-nine thousand three hundred twenty-five'); INSERT INTO t1 VALUES(9495, 35847, 'thirty-five thousand eight hundred forty-seven'); INSERT INTO t1 VALUES(9496, 41449, 'forty-one thousand four hundred forty-nine'); INSERT INTO t1 VALUES(9497, 69499, 'sixty-nine thousand four hundred ninety-nine'); INSERT INTO t1 VALUES(9498, 52680, 'fifty-two thousand six hundred eighty'); INSERT INTO t1 VALUES(9499, 64440, 'sixty-four thousand four hundred forty'); INSERT INTO t1 VALUES(9500, 98200, 'ninety-eight thousand two hundred'); INSERT INTO t1 VALUES(9501, 25818, 'twenty-five thousand eight hundred eighteen'); INSERT INTO t1 VALUES(9502, 40038, 'forty thousand thirty-eight'); INSERT INTO t1 VALUES(9503, 77465, 'seventy-seven thousand four hundred sixty-five'); INSERT INTO t1 VALUES(9504, 70732, 'seventy thousand seven hundred thirty-two'); INSERT INTO t1 VALUES(9505, 33742, 'thirty-three thousand seven hundred forty-two'); INSERT INTO t1 VALUES(9506, 90515, 'ninety thousand five hundred fifteen'); INSERT INTO t1 VALUES(9507, 35282, 'thirty-five thousand two hundred eighty-two'); INSERT INTO t1 VALUES(9508, 83962, 'eighty-three thousand nine hundred sixty-two'); INSERT INTO t1 VALUES(9509, 88228, 'eighty-eight thousand two hundred twenty-eight'); INSERT INTO t1 VALUES(9510, 84681, 'eighty-four thousand six hundred eighty-one'); INSERT INTO t1 VALUES(9511, 35287, 'thirty-five thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(9512, 60247, 'sixty thousand two hundred forty-seven'); INSERT INTO t1 VALUES(9513, 73962, 'seventy-three thousand nine hundred sixty-two'); INSERT INTO t1 VALUES(9514, 40602, 'forty thousand six hundred two'); INSERT INTO t1 VALUES(9515, 30809, 'thirty thousand eight hundred nine'); INSERT INTO t1 VALUES(9516, 22403, 'twenty-two thousand four hundred three'); INSERT INTO t1 VALUES(9517, 59752, 'fifty-nine thousand seven hundred fifty-two'); INSERT INTO t1 VALUES(9518, 40996, 'forty thousand nine hundred ninety-six'); INSERT INTO t1 VALUES(9519, 54891, 'fifty-four thousand eight hundred ninety-one'); INSERT INTO t1 VALUES(9520, 60149, 'sixty thousand one hundred forty-nine'); INSERT INTO t1 VALUES(9521, 16348, 'sixteen thousand three hundred forty-eight'); INSERT INTO t1 VALUES(9522, 45748, 'forty-five thousand seven hundred forty-eight'); INSERT INTO t1 VALUES(9523, 40, 'forty'); INSERT INTO t1 VALUES(9524, 23659, 'twenty-three thousand six hundred fifty-nine'); INSERT INTO t1 VALUES(9525, 91786, 'ninety-one thousand seven hundred eighty-six'); INSERT INTO t1 VALUES(9526, 82075, 'eighty-two thousand seventy-five'); INSERT INTO t1 VALUES(9527, 59704, 'fifty-nine thousand seven hundred four'); INSERT INTO t1 VALUES(9528, 83616, 'eighty-three thousand six hundred sixteen'); INSERT INTO t1 VALUES(9529, 17172, 'seventeen thousand one hundred seventy-two'); INSERT INTO t1 VALUES(9530, 4069, 'four thousand sixty-nine'); INSERT INTO t1 VALUES(9531, 4280, 'four thousand two hundred eighty'); INSERT INTO t1 VALUES(9532, 38503, 'thirty-eight thousand five hundred three'); INSERT INTO t1 VALUES(9533, 9917, 'nine thousand nine hundred seventeen'); INSERT INTO t1 VALUES(9534, 4953, 'four thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(9535, 83782, 'eighty-three thousand seven hundred eighty-two'); INSERT INTO t1 VALUES(9536, 64900, 'sixty-four thousand nine hundred'); INSERT INTO t1 VALUES(9537, 81295, 'eighty-one thousand two hundred ninety-five'); INSERT INTO t1 VALUES(9538, 7224, 'seven thousand two hundred twenty-four'); INSERT INTO t1 VALUES(9539, 418, 'four hundred eighteen'); INSERT INTO t1 VALUES(9540, 5089, 'five thousand eighty-nine'); INSERT INTO t1 VALUES(9541, 45905, 'forty-five thousand nine hundred five'); INSERT INTO t1 VALUES(9542, 46698, 'forty-six thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(9543, 89483, 'eighty-nine thousand four hundred eighty-three'); INSERT INTO t1 VALUES(9544, 12059, 'twelve thousand fifty-nine'); INSERT INTO t1 VALUES(9545, 98660, 'ninety-eight thousand six hundred sixty'); INSERT INTO t1 VALUES(9546, 32101, 'thirty-two thousand one hundred one'); INSERT INTO t1 VALUES(9547, 60349, 'sixty thousand three hundred forty-nine'); INSERT INTO t1 VALUES(9548, 39466, 'thirty-nine thousand four hundred sixty-six'); INSERT INTO t1 VALUES(9549, 16691, 'sixteen thousand six hundred ninety-one'); INSERT INTO t1 VALUES(9550, 38585, 'thirty-eight thousand five hundred eighty-five'); INSERT INTO t1 VALUES(9551, 42716, 'forty-two thousand seven hundred sixteen'); INSERT INTO t1 VALUES(9552, 84364, 'eighty-four thousand three hundred sixty-four'); INSERT INTO t1 VALUES(9553, 4876, 'four thousand eight hundred seventy-six'); INSERT INTO t1 VALUES(9554, 62498, 'sixty-two thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(9555, 21676, 'twenty-one thousand six hundred seventy-six'); INSERT INTO t1 VALUES(9556, 77154, 'seventy-seven thousand one hundred fifty-four'); INSERT INTO t1 VALUES(9557, 32940, 'thirty-two thousand nine hundred forty'); INSERT INTO t1 VALUES(9558, 35425, 'thirty-five thousand four hundred twenty-five'); INSERT INTO t1 VALUES(9559, 53295, 'fifty-three thousand two hundred ninety-five'); INSERT INTO t1 VALUES(9560, 26035, 'twenty-six thousand thirty-five'); INSERT INTO t1 VALUES(9561, 2130, 'two thousand one hundred thirty'); INSERT INTO t1 VALUES(9562, 96029, 'ninety-six thousand twenty-nine'); INSERT INTO t1 VALUES(9563, 29311, 'twenty-nine thousand three hundred eleven'); INSERT INTO t1 VALUES(9564, 26191, 'twenty-six thousand one hundred ninety-one'); INSERT INTO t1 VALUES(9565, 20112, 'twenty thousand one hundred twelve'); INSERT INTO t1 VALUES(9566, 38312, 'thirty-eight thousand three hundred twelve'); INSERT INTO t1 VALUES(9567, 27868, 'twenty-seven thousand eight hundred sixty-eight'); INSERT INTO t1 VALUES(9568, 9459, 'nine thousand four hundred fifty-nine'); INSERT INTO t1 VALUES(9569, 65492, 'sixty-five thousand four hundred ninety-two'); INSERT INTO t1 VALUES(9570, 57066, 'fifty-seven thousand sixty-six'); INSERT INTO t1 VALUES(9571, 46196, 'forty-six thousand one hundred ninety-six'); INSERT INTO t1 VALUES(9572, 14623, 'fourteen thousand six hundred twenty-three'); INSERT INTO t1 VALUES(9573, 29895, 'twenty-nine thousand eight hundred ninety-five'); INSERT INTO t1 VALUES(9574, 10761, 'ten thousand seven hundred sixty-one'); INSERT INTO t1 VALUES(9575, 72712, 'seventy-two thousand seven hundred twelve'); INSERT INTO t1 VALUES(9576, 13899, 'thirteen thousand eight hundred ninety-nine'); INSERT INTO t1 VALUES(9577, 53440, 'fifty-three thousand four hundred forty'); INSERT INTO t1 VALUES(9578, 2889, 'two thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(9579, 99221, 'ninety-nine thousand two hundred twenty-one'); INSERT INTO t1 VALUES(9580, 27159, 'twenty-seven thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(9581, 35291, 'thirty-five thousand two hundred ninety-one'); INSERT INTO t1 VALUES(9582, 90308, 'ninety thousand three hundred eight'); INSERT INTO t1 VALUES(9583, 98736, 'ninety-eight thousand seven hundred thirty-six'); INSERT INTO t1 VALUES(9584, 63442, 'sixty-three thousand four hundred forty-two'); INSERT INTO t1 VALUES(9585, 39244, 'thirty-nine thousand two hundred forty-four'); INSERT INTO t1 VALUES(9586, 64126, 'sixty-four thousand one hundred twenty-six'); INSERT INTO t1 VALUES(9587, 43618, 'forty-three thousand six hundred eighteen'); INSERT INTO t1 VALUES(9588, 83054, 'eighty-three thousand fifty-four'); INSERT INTO t1 VALUES(9589, 24785, 'twenty-four thousand seven hundred eighty-five'); INSERT INTO t1 VALUES(9590, 83076, 'eighty-three thousand seventy-six'); INSERT INTO t1 VALUES(9591, 99755, 'ninety-nine thousand seven hundred fifty-five'); INSERT INTO t1 VALUES(9592, 50850, 'fifty thousand eight hundred fifty'); INSERT INTO t1 VALUES(9593, 78176, 'seventy-eight thousand one hundred seventy-six'); INSERT INTO t1 VALUES(9594, 63792, 'sixty-three thousand seven hundred ninety-two'); INSERT INTO t1 VALUES(9595, 79387, 'seventy-nine thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(9596, 80683, 'eighty thousand six hundred eighty-three'); INSERT INTO t1 VALUES(9597, 85036, 'eighty-five thousand thirty-six'); INSERT INTO t1 VALUES(9598, 62907, 'sixty-two thousand nine hundred seven'); INSERT INTO t1 VALUES(9599, 15119, 'fifteen thousand one hundred nineteen'); INSERT INTO t1 VALUES(9600, 24617, 'twenty-four thousand six hundred seventeen'); INSERT INTO t1 VALUES(9601, 34380, 'thirty-four thousand three hundred eighty'); INSERT INTO t1 VALUES(9602, 52683, 'fifty-two thousand six hundred eighty-three'); INSERT INTO t1 VALUES(9603, 41957, 'forty-one thousand nine hundred fifty-seven'); INSERT INTO t1 VALUES(9604, 48936, 'forty-eight thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(9605, 78674, 'seventy-eight thousand six hundred seventy-four'); INSERT INTO t1 VALUES(9606, 39568, 'thirty-nine thousand five hundred sixty-eight'); INSERT INTO t1 VALUES(9607, 43493, 'forty-three thousand four hundred ninety-three'); INSERT INTO t1 VALUES(9608, 28946, 'twenty-eight thousand nine hundred forty-six'); INSERT INTO t1 VALUES(9609, 37873, 'thirty-seven thousand eight hundred seventy-three'); INSERT INTO t1 VALUES(9610, 24698, 'twenty-four thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(9611, 29593, 'twenty-nine thousand five hundred ninety-three'); INSERT INTO t1 VALUES(9612, 12105, 'twelve thousand one hundred five'); INSERT INTO t1 VALUES(9613, 16413, 'sixteen thousand four hundred thirteen'); INSERT INTO t1 VALUES(9614, 18037, 'eighteen thousand thirty-seven'); INSERT INTO t1 VALUES(9615, 23957, 'twenty-three thousand nine hundred fifty-seven'); INSERT INTO t1 VALUES(9616, 54178, 'fifty-four thousand one hundred seventy-eight'); INSERT INTO t1 VALUES(9617, 29512, 'twenty-nine thousand five hundred twelve'); INSERT INTO t1 VALUES(9618, 7511, 'seven thousand five hundred eleven'); INSERT INTO t1 VALUES(9619, 51463, 'fifty-one thousand four hundred sixty-three'); INSERT INTO t1 VALUES(9620, 77163, 'seventy-seven thousand one hundred sixty-three'); INSERT INTO t1 VALUES(9621, 46953, 'forty-six thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(9622, 6980, 'six thousand nine hundred eighty'); INSERT INTO t1 VALUES(9623, 76965, 'seventy-six thousand nine hundred sixty-five'); INSERT INTO t1 VALUES(9624, 57666, 'fifty-seven thousand six hundred sixty-six'); INSERT INTO t1 VALUES(9625, 81270, 'eighty-one thousand two hundred seventy'); INSERT INTO t1 VALUES(9626, 83196, 'eighty-three thousand one hundred ninety-six'); INSERT INTO t1 VALUES(9627, 88840, 'eighty-eight thousand eight hundred forty'); INSERT INTO t1 VALUES(9628, 51684, 'fifty-one thousand six hundred eighty-four'); INSERT INTO t1 VALUES(9629, 88963, 'eighty-eight thousand nine hundred sixty-three'); INSERT INTO t1 VALUES(9630, 16822, 'sixteen thousand eight hundred twenty-two'); INSERT INTO t1 VALUES(9631, 67318, 'sixty-seven thousand three hundred eighteen'); INSERT INTO t1 VALUES(9632, 3172, 'three thousand one hundred seventy-two'); INSERT INTO t1 VALUES(9633, 30177, 'thirty thousand one hundred seventy-seven'); INSERT INTO t1 VALUES(9634, 53803, 'fifty-three thousand eight hundred three'); INSERT INTO t1 VALUES(9635, 36650, 'thirty-six thousand six hundred fifty'); INSERT INTO t1 VALUES(9636, 99247, 'ninety-nine thousand two hundred forty-seven'); INSERT INTO t1 VALUES(9637, 21878, 'twenty-one thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(9638, 32815, 'thirty-two thousand eight hundred fifteen'); INSERT INTO t1 VALUES(9639, 6953, 'six thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(9640, 86505, 'eighty-six thousand five hundred five'); INSERT INTO t1 VALUES(9641, 16869, 'sixteen thousand eight hundred sixty-nine'); INSERT INTO t1 VALUES(9642, 88940, 'eighty-eight thousand nine hundred forty'); INSERT INTO t1 VALUES(9643, 90919, 'ninety thousand nine hundred nineteen'); INSERT INTO t1 VALUES(9644, 81340, 'eighty-one thousand three hundred forty'); INSERT INTO t1 VALUES(9645, 65498, 'sixty-five thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(9646, 25830, 'twenty-five thousand eight hundred thirty'); INSERT INTO t1 VALUES(9647, 59027, 'fifty-nine thousand twenty-seven'); INSERT INTO t1 VALUES(9648, 7665, 'seven thousand six hundred sixty-five'); INSERT INTO t1 VALUES(9649, 81972, 'eighty-one thousand nine hundred seventy-two'); INSERT INTO t1 VALUES(9650, 70908, 'seventy thousand nine hundred eight'); INSERT INTO t1 VALUES(9651, 35813, 'thirty-five thousand eight hundred thirteen'); INSERT INTO t1 VALUES(9652, 80417, 'eighty thousand four hundred seventeen'); INSERT INTO t1 VALUES(9653, 23801, 'twenty-three thousand eight hundred one'); INSERT INTO t1 VALUES(9654, 3157, 'three thousand one hundred fifty-seven'); INSERT INTO t1 VALUES(9655, 60192, 'sixty thousand one hundred ninety-two'); INSERT INTO t1 VALUES(9656, 95860, 'ninety-five thousand eight hundred sixty'); INSERT INTO t1 VALUES(9657, 81153, 'eighty-one thousand one hundred fifty-three'); INSERT INTO t1 VALUES(9658, 37506, 'thirty-seven thousand five hundred six'); INSERT INTO t1 VALUES(9659, 6260, 'six thousand two hundred sixty'); INSERT INTO t1 VALUES(9660, 52240, 'fifty-two thousand two hundred forty'); INSERT INTO t1 VALUES(9661, 37434, 'thirty-seven thousand four hundred thirty-four'); INSERT INTO t1 VALUES(9662, 33634, 'thirty-three thousand six hundred thirty-four'); INSERT INTO t1 VALUES(9663, 96510, 'ninety-six thousand five hundred ten'); INSERT INTO t1 VALUES(9664, 84615, 'eighty-four thousand six hundred fifteen'); INSERT INTO t1 VALUES(9665, 6534, 'six thousand five hundred thirty-four'); INSERT INTO t1 VALUES(9666, 12746, 'twelve thousand seven hundred forty-six'); INSERT INTO t1 VALUES(9667, 3422, 'three thousand four hundred twenty-two'); INSERT INTO t1 VALUES(9668, 30851, 'thirty thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(9669, 31767, 'thirty-one thousand seven hundred sixty-seven'); INSERT INTO t1 VALUES(9670, 2245, 'two thousand two hundred forty-five'); INSERT INTO t1 VALUES(9671, 23508, 'twenty-three thousand five hundred eight'); INSERT INTO t1 VALUES(9672, 45628, 'forty-five thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(9673, 93301, 'ninety-three thousand three hundred one'); INSERT INTO t1 VALUES(9674, 70820, 'seventy thousand eight hundred twenty'); INSERT INTO t1 VALUES(9675, 67353, 'sixty-seven thousand three hundred fifty-three'); INSERT INTO t1 VALUES(9676, 85377, 'eighty-five thousand three hundred seventy-seven'); INSERT INTO t1 VALUES(9677, 80139, 'eighty thousand one hundred thirty-nine'); INSERT INTO t1 VALUES(9678, 54208, 'fifty-four thousand two hundred eight'); INSERT INTO t1 VALUES(9679, 4245, 'four thousand two hundred forty-five'); INSERT INTO t1 VALUES(9680, 57834, 'fifty-seven thousand eight hundred thirty-four'); INSERT INTO t1 VALUES(9681, 12863, 'twelve thousand eight hundred sixty-three'); INSERT INTO t1 VALUES(9682, 9224, 'nine thousand two hundred twenty-four'); INSERT INTO t1 VALUES(9683, 91273, 'ninety-one thousand two hundred seventy-three'); INSERT INTO t1 VALUES(9684, 11757, 'eleven thousand seven hundred fifty-seven'); INSERT INTO t1 VALUES(9685, 22355, 'twenty-two thousand three hundred fifty-five'); INSERT INTO t1 VALUES(9686, 20892, 'twenty thousand eight hundred ninety-two'); INSERT INTO t1 VALUES(9687, 84447, 'eighty-four thousand four hundred forty-seven'); INSERT INTO t1 VALUES(9688, 80503, 'eighty thousand five hundred three'); INSERT INTO t1 VALUES(9689, 27445, 'twenty-seven thousand four hundred forty-five'); INSERT INTO t1 VALUES(9690, 15732, 'fifteen thousand seven hundred thirty-two'); INSERT INTO t1 VALUES(9691, 52647, 'fifty-two thousand six hundred forty-seven'); INSERT INTO t1 VALUES(9692, 41999, 'forty-one thousand nine hundred ninety-nine'); INSERT INTO t1 VALUES(9693, 32297, 'thirty-two thousand two hundred ninety-seven'); INSERT INTO t1 VALUES(9694, 63352, 'sixty-three thousand three hundred fifty-two'); INSERT INTO t1 VALUES(9695, 36485, 'thirty-six thousand four hundred eighty-five'); INSERT INTO t1 VALUES(9696, 68776, 'sixty-eight thousand seven hundred seventy-six'); INSERT INTO t1 VALUES(9697, 59569, 'fifty-nine thousand five hundred sixty-nine'); INSERT INTO t1 VALUES(9698, 94210, 'ninety-four thousand two hundred ten'); INSERT INTO t1 VALUES(9699, 11185, 'eleven thousand one hundred eighty-five'); INSERT INTO t1 VALUES(9700, 67635, 'sixty-seven thousand six hundred thirty-five'); INSERT INTO t1 VALUES(9701, 42891, 'forty-two thousand eight hundred ninety-one'); INSERT INTO t1 VALUES(9702, 72127, 'seventy-two thousand one hundred twenty-seven'); INSERT INTO t1 VALUES(9703, 21619, 'twenty-one thousand six hundred nineteen'); INSERT INTO t1 VALUES(9704, 8748, 'eight thousand seven hundred forty-eight'); INSERT INTO t1 VALUES(9705, 94983, 'ninety-four thousand nine hundred eighty-three'); INSERT INTO t1 VALUES(9706, 66603, 'sixty-six thousand six hundred three'); INSERT INTO t1 VALUES(9707, 2762, 'two thousand seven hundred sixty-two'); INSERT INTO t1 VALUES(9708, 94945, 'ninety-four thousand nine hundred forty-five'); INSERT INTO t1 VALUES(9709, 85576, 'eighty-five thousand five hundred seventy-six'); INSERT INTO t1 VALUES(9710, 92871, 'ninety-two thousand eight hundred seventy-one'); INSERT INTO t1 VALUES(9711, 51140, 'fifty-one thousand one hundred forty'); INSERT INTO t1 VALUES(9712, 65691, 'sixty-five thousand six hundred ninety-one'); INSERT INTO t1 VALUES(9713, 72961, 'seventy-two thousand nine hundred sixty-one'); INSERT INTO t1 VALUES(9714, 60063, 'sixty thousand sixty-three'); INSERT INTO t1 VALUES(9715, 36331, 'thirty-six thousand three hundred thirty-one'); INSERT INTO t1 VALUES(9716, 31518, 'thirty-one thousand five hundred eighteen'); INSERT INTO t1 VALUES(9717, 11379, 'eleven thousand three hundred seventy-nine'); INSERT INTO t1 VALUES(9718, 45798, 'forty-five thousand seven hundred ninety-eight'); INSERT INTO t1 VALUES(9719, 24758, 'twenty-four thousand seven hundred fifty-eight'); INSERT INTO t1 VALUES(9720, 12686, 'twelve thousand six hundred eighty-six'); INSERT INTO t1 VALUES(9721, 94051, 'ninety-four thousand fifty-one'); INSERT INTO t1 VALUES(9722, 58716, 'fifty-eight thousand seven hundred sixteen'); INSERT INTO t1 VALUES(9723, 4174, 'four thousand one hundred seventy-four'); INSERT INTO t1 VALUES(9724, 10796, 'ten thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(9725, 56663, 'fifty-six thousand six hundred sixty-three'); INSERT INTO t1 VALUES(9726, 83766, 'eighty-three thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(9727, 64225, 'sixty-four thousand two hundred twenty-five'); INSERT INTO t1 VALUES(9728, 67780, 'sixty-seven thousand seven hundred eighty'); INSERT INTO t1 VALUES(9729, 38118, 'thirty-eight thousand one hundred eighteen'); INSERT INTO t1 VALUES(9730, 97542, 'ninety-seven thousand five hundred forty-two'); INSERT INTO t1 VALUES(9731, 37156, 'thirty-seven thousand one hundred fifty-six'); INSERT INTO t1 VALUES(9732, 17962, 'seventeen thousand nine hundred sixty-two'); INSERT INTO t1 VALUES(9733, 77317, 'seventy-seven thousand three hundred seventeen'); INSERT INTO t1 VALUES(9734, 89128, 'eighty-nine thousand one hundred twenty-eight'); INSERT INTO t1 VALUES(9735, 55790, 'fifty-five thousand seven hundred ninety'); INSERT INTO t1 VALUES(9736, 55634, 'fifty-five thousand six hundred thirty-four'); INSERT INTO t1 VALUES(9737, 65786, 'sixty-five thousand seven hundred eighty-six'); INSERT INTO t1 VALUES(9738, 87845, 'eighty-seven thousand eight hundred forty-five'); INSERT INTO t1 VALUES(9739, 80509, 'eighty thousand five hundred nine'); INSERT INTO t1 VALUES(9740, 21447, 'twenty-one thousand four hundred forty-seven'); INSERT INTO t1 VALUES(9741, 45432, 'forty-five thousand four hundred thirty-two'); INSERT INTO t1 VALUES(9742, 14622, 'fourteen thousand six hundred twenty-two'); INSERT INTO t1 VALUES(9743, 23110, 'twenty-three thousand one hundred ten'); INSERT INTO t1 VALUES(9744, 40920, 'forty thousand nine hundred twenty'); INSERT INTO t1 VALUES(9745, 82340, 'eighty-two thousand three hundred forty'); INSERT INTO t1 VALUES(9746, 92975, 'ninety-two thousand nine hundred seventy-five'); INSERT INTO t1 VALUES(9747, 27087, 'twenty-seven thousand eighty-seven'); INSERT INTO t1 VALUES(9748, 55368, 'fifty-five thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(9749, 36509, 'thirty-six thousand five hundred nine'); INSERT INTO t1 VALUES(9750, 89587, 'eighty-nine thousand five hundred eighty-seven'); INSERT INTO t1 VALUES(9751, 58998, 'fifty-eight thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(9752, 54575, 'fifty-four thousand five hundred seventy-five'); INSERT INTO t1 VALUES(9753, 26273, 'twenty-six thousand two hundred seventy-three'); INSERT INTO t1 VALUES(9754, 83243, 'eighty-three thousand two hundred forty-three'); INSERT INTO t1 VALUES(9755, 54387, 'fifty-four thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(9756, 82971, 'eighty-two thousand nine hundred seventy-one'); INSERT INTO t1 VALUES(9757, 42062, 'forty-two thousand sixty-two'); INSERT INTO t1 VALUES(9758, 6269, 'six thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(9759, 39875, 'thirty-nine thousand eight hundred seventy-five'); INSERT INTO t1 VALUES(9760, 73179, 'seventy-three thousand one hundred seventy-nine'); INSERT INTO t1 VALUES(9761, 43935, 'forty-three thousand nine hundred thirty-five'); INSERT INTO t1 VALUES(9762, 91571, 'ninety-one thousand five hundred seventy-one'); INSERT INTO t1 VALUES(9763, 41516, 'forty-one thousand five hundred sixteen'); INSERT INTO t1 VALUES(9764, 73393, 'seventy-three thousand three hundred ninety-three'); INSERT INTO t1 VALUES(9765, 65174, 'sixty-five thousand one hundred seventy-four'); INSERT INTO t1 VALUES(9766, 67178, 'sixty-seven thousand one hundred seventy-eight'); INSERT INTO t1 VALUES(9767, 37180, 'thirty-seven thousand one hundred eighty'); INSERT INTO t1 VALUES(9768, 92776, 'ninety-two thousand seven hundred seventy-six'); INSERT INTO t1 VALUES(9769, 31653, 'thirty-one thousand six hundred fifty-three'); INSERT INTO t1 VALUES(9770, 7795, 'seven thousand seven hundred ninety-five'); INSERT INTO t1 VALUES(9771, 4060, 'four thousand sixty'); INSERT INTO t1 VALUES(9772, 74872, 'seventy-four thousand eight hundred seventy-two'); INSERT INTO t1 VALUES(9773, 26304, 'twenty-six thousand three hundred four'); INSERT INTO t1 VALUES(9774, 43355, 'forty-three thousand three hundred fifty-five'); INSERT INTO t1 VALUES(9775, 85353, 'eighty-five thousand three hundred fifty-three'); INSERT INTO t1 VALUES(9776, 56818, 'fifty-six thousand eight hundred eighteen'); INSERT INTO t1 VALUES(9777, 33758, 'thirty-three thousand seven hundred fifty-eight'); INSERT INTO t1 VALUES(9778, 89922, 'eighty-nine thousand nine hundred twenty-two'); INSERT INTO t1 VALUES(9779, 24181, 'twenty-four thousand one hundred eighty-one'); INSERT INTO t1 VALUES(9780, 47551, 'forty-seven thousand five hundred fifty-one'); INSERT INTO t1 VALUES(9781, 20085, 'twenty thousand eighty-five'); INSERT INTO t1 VALUES(9782, 21109, 'twenty-one thousand one hundred nine'); INSERT INTO t1 VALUES(9783, 36703, 'thirty-six thousand seven hundred three'); INSERT INTO t1 VALUES(9784, 61594, 'sixty-one thousand five hundred ninety-four'); INSERT INTO t1 VALUES(9785, 13773, 'thirteen thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(9786, 50366, 'fifty thousand three hundred sixty-six'); INSERT INTO t1 VALUES(9787, 5459, 'five thousand four hundred fifty-nine'); INSERT INTO t1 VALUES(9788, 21213, 'twenty-one thousand two hundred thirteen'); INSERT INTO t1 VALUES(9789, 90704, 'ninety thousand seven hundred four'); INSERT INTO t1 VALUES(9790, 49232, 'forty-nine thousand two hundred thirty-two'); INSERT INTO t1 VALUES(9791, 59226, 'fifty-nine thousand two hundred twenty-six'); INSERT INTO t1 VALUES(9792, 38703, 'thirty-eight thousand seven hundred three'); INSERT INTO t1 VALUES(9793, 96298, 'ninety-six thousand two hundred ninety-eight'); INSERT INTO t1 VALUES(9794, 87642, 'eighty-seven thousand six hundred forty-two'); INSERT INTO t1 VALUES(9795, 51473, 'fifty-one thousand four hundred seventy-three'); INSERT INTO t1 VALUES(9796, 51685, 'fifty-one thousand six hundred eighty-five'); INSERT INTO t1 VALUES(9797, 92066, 'ninety-two thousand sixty-six'); INSERT INTO t1 VALUES(9798, 53985, 'fifty-three thousand nine hundred eighty-five'); INSERT INTO t1 VALUES(9799, 93306, 'ninety-three thousand three hundred six'); INSERT INTO t1 VALUES(9800, 77972, 'seventy-seven thousand nine hundred seventy-two'); INSERT INTO t1 VALUES(9801, 24531, 'twenty-four thousand five hundred thirty-one'); INSERT INTO t1 VALUES(9802, 86554, 'eighty-six thousand five hundred fifty-four'); INSERT INTO t1 VALUES(9803, 98112, 'ninety-eight thousand one hundred twelve'); INSERT INTO t1 VALUES(9804, 54495, 'fifty-four thousand four hundred ninety-five'); INSERT INTO t1 VALUES(9805, 29302, 'twenty-nine thousand three hundred two'); INSERT INTO t1 VALUES(9806, 99772, 'ninety-nine thousand seven hundred seventy-two'); INSERT INTO t1 VALUES(9807, 42232, 'forty-two thousand two hundred thirty-two'); INSERT INTO t1 VALUES(9808, 68349, 'sixty-eight thousand three hundred forty-nine'); INSERT INTO t1 VALUES(9809, 94392, 'ninety-four thousand three hundred ninety-two'); INSERT INTO t1 VALUES(9810, 10157, 'ten thousand one hundred fifty-seven'); INSERT INTO t1 VALUES(9811, 71080, 'seventy-one thousand eighty'); INSERT INTO t1 VALUES(9812, 73226, 'seventy-three thousand two hundred twenty-six'); INSERT INTO t1 VALUES(9813, 60897, 'sixty thousand eight hundred ninety-seven'); INSERT INTO t1 VALUES(9814, 26393, 'twenty-six thousand three hundred ninety-three'); INSERT INTO t1 VALUES(9815, 62913, 'sixty-two thousand nine hundred thirteen'); INSERT INTO t1 VALUES(9816, 89066, 'eighty-nine thousand sixty-six'); INSERT INTO t1 VALUES(9817, 55629, 'fifty-five thousand six hundred twenty-nine'); INSERT INTO t1 VALUES(9818, 27627, 'twenty-seven thousand six hundred twenty-seven'); INSERT INTO t1 VALUES(9819, 22508, 'twenty-two thousand five hundred eight'); INSERT INTO t1 VALUES(9820, 8964, 'eight thousand nine hundred sixty-four'); INSERT INTO t1 VALUES(9821, 23513, 'twenty-three thousand five hundred thirteen'); INSERT INTO t1 VALUES(9822, 38119, 'thirty-eight thousand one hundred nineteen'); INSERT INTO t1 VALUES(9823, 92204, 'ninety-two thousand two hundred four'); INSERT INTO t1 VALUES(9824, 1576, 'one thousand five hundred seventy-six'); INSERT INTO t1 VALUES(9825, 19726, 'nineteen thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(9826, 6421, 'six thousand four hundred twenty-one'); INSERT INTO t1 VALUES(9827, 66726, 'sixty-six thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(9828, 26871, 'twenty-six thousand eight hundred seventy-one'); INSERT INTO t1 VALUES(9829, 60610, 'sixty thousand six hundred ten'); INSERT INTO t1 VALUES(9830, 89954, 'eighty-nine thousand nine hundred fifty-four'); INSERT INTO t1 VALUES(9831, 39883, 'thirty-nine thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(9832, 85973, 'eighty-five thousand nine hundred seventy-three'); INSERT INTO t1 VALUES(9833, 2859, 'two thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(9834, 5456, 'five thousand four hundred fifty-six'); INSERT INTO t1 VALUES(9835, 72301, 'seventy-two thousand three hundred one'); INSERT INTO t1 VALUES(9836, 15554, 'fifteen thousand five hundred fifty-four'); INSERT INTO t1 VALUES(9837, 12711, 'twelve thousand seven hundred eleven'); INSERT INTO t1 VALUES(9838, 31616, 'thirty-one thousand six hundred sixteen'); INSERT INTO t1 VALUES(9839, 83097, 'eighty-three thousand ninety-seven'); INSERT INTO t1 VALUES(9840, 82875, 'eighty-two thousand eight hundred seventy-five'); INSERT INTO t1 VALUES(9841, 74579, 'seventy-four thousand five hundred seventy-nine'); INSERT INTO t1 VALUES(9842, 68520, 'sixty-eight thousand five hundred twenty'); INSERT INTO t1 VALUES(9843, 80651, 'eighty thousand six hundred fifty-one'); INSERT INTO t1 VALUES(9844, 55638, 'fifty-five thousand six hundred thirty-eight'); INSERT INTO t1 VALUES(9845, 9277, 'nine thousand two hundred seventy-seven'); INSERT INTO t1 VALUES(9846, 85684, 'eighty-five thousand six hundred eighty-four'); INSERT INTO t1 VALUES(9847, 10985, 'ten thousand nine hundred eighty-five'); INSERT INTO t1 VALUES(9848, 24529, 'twenty-four thousand five hundred twenty-nine'); INSERT INTO t1 VALUES(9849, 6071, 'six thousand seventy-one'); INSERT INTO t1 VALUES(9850, 24013, 'twenty-four thousand thirteen'); INSERT INTO t1 VALUES(9851, 83606, 'eighty-three thousand six hundred six'); INSERT INTO t1 VALUES(9852, 95176, 'ninety-five thousand one hundred seventy-six'); INSERT INTO t1 VALUES(9853, 2198, 'two thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(9854, 78615, 'seventy-eight thousand six hundred fifteen'); INSERT INTO t1 VALUES(9855, 94004, 'ninety-four thousand four'); INSERT INTO t1 VALUES(9856, 66566, 'sixty-six thousand five hundred sixty-six'); INSERT INTO t1 VALUES(9857, 56705, 'fifty-six thousand seven hundred five'); INSERT INTO t1 VALUES(9858, 83027, 'eighty-three thousand twenty-seven'); INSERT INTO t1 VALUES(9859, 23781, 'twenty-three thousand seven hundred eighty-one'); INSERT INTO t1 VALUES(9860, 6072, 'six thousand seventy-two'); INSERT INTO t1 VALUES(9861, 46327, 'forty-six thousand three hundred twenty-seven'); INSERT INTO t1 VALUES(9862, 78566, 'seventy-eight thousand five hundred sixty-six'); INSERT INTO t1 VALUES(9863, 14342, 'fourteen thousand three hundred forty-two'); INSERT INTO t1 VALUES(9864, 97233, 'ninety-seven thousand two hundred thirty-three'); INSERT INTO t1 VALUES(9865, 43141, 'forty-three thousand one hundred forty-one'); INSERT INTO t1 VALUES(9866, 561, 'five hundred sixty-one'); INSERT INTO t1 VALUES(9867, 75663, 'seventy-five thousand six hundred sixty-three'); INSERT INTO t1 VALUES(9868, 62005, 'sixty-two thousand five'); INSERT INTO t1 VALUES(9869, 40615, 'forty thousand six hundred fifteen'); INSERT INTO t1 VALUES(9870, 20206, 'twenty thousand two hundred six'); INSERT INTO t1 VALUES(9871, 72940, 'seventy-two thousand nine hundred forty'); INSERT INTO t1 VALUES(9872, 55737, 'fifty-five thousand seven hundred thirty-seven'); INSERT INTO t1 VALUES(9873, 69134, 'sixty-nine thousand one hundred thirty-four'); INSERT INTO t1 VALUES(9874, 41445, 'forty-one thousand four hundred forty-five'); INSERT INTO t1 VALUES(9875, 14334, 'fourteen thousand three hundred thirty-four'); INSERT INTO t1 VALUES(9876, 10517, 'ten thousand five hundred seventeen'); INSERT INTO t1 VALUES(9877, 63368, 'sixty-three thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(9878, 67356, 'sixty-seven thousand three hundred fifty-six'); INSERT INTO t1 VALUES(9879, 56581, 'fifty-six thousand five hundred eighty-one'); INSERT INTO t1 VALUES(9880, 47439, 'forty-seven thousand four hundred thirty-nine'); INSERT INTO t1 VALUES(9881, 3819, 'three thousand eight hundred nineteen'); INSERT INTO t1 VALUES(9882, 704, 'seven hundred four'); INSERT INTO t1 VALUES(9883, 83922, 'eighty-three thousand nine hundred twenty-two'); INSERT INTO t1 VALUES(9884, 97132, 'ninety-seven thousand one hundred thirty-two'); INSERT INTO t1 VALUES(9885, 91851, 'ninety-one thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(9886, 76362, 'seventy-six thousand three hundred sixty-two'); INSERT INTO t1 VALUES(9887, 47556, 'forty-seven thousand five hundred fifty-six'); INSERT INTO t1 VALUES(9888, 15826, 'fifteen thousand eight hundred twenty-six'); INSERT INTO t1 VALUES(9889, 94199, 'ninety-four thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(9890, 54520, 'fifty-four thousand five hundred twenty'); INSERT INTO t1 VALUES(9891, 70694, 'seventy thousand six hundred ninety-four'); INSERT INTO t1 VALUES(9892, 97316, 'ninety-seven thousand three hundred sixteen'); INSERT INTO t1 VALUES(9893, 20959, 'twenty thousand nine hundred fifty-nine'); INSERT INTO t1 VALUES(9894, 8710, 'eight thousand seven hundred ten'); INSERT INTO t1 VALUES(9895, 44463, 'forty-four thousand four hundred sixty-three'); INSERT INTO t1 VALUES(9896, 1275, 'one thousand two hundred seventy-five'); INSERT INTO t1 VALUES(9897, 27084, 'twenty-seven thousand eighty-four'); INSERT INTO t1 VALUES(9898, 33785, 'thirty-three thousand seven hundred eighty-five'); INSERT INTO t1 VALUES(9899, 30957, 'thirty thousand nine hundred fifty-seven'); INSERT INTO t1 VALUES(9900, 88833, 'eighty-eight thousand eight hundred thirty-three'); INSERT INTO t1 VALUES(9901, 14807, 'fourteen thousand eight hundred seven'); INSERT INTO t1 VALUES(9902, 72700, 'seventy-two thousand seven hundred'); INSERT INTO t1 VALUES(9903, 69743, 'sixty-nine thousand seven hundred forty-three'); INSERT INTO t1 VALUES(9904, 2459, 'two thousand four hundred fifty-nine'); INSERT INTO t1 VALUES(9905, 54034, 'fifty-four thousand thirty-four'); INSERT INTO t1 VALUES(9906, 58952, 'fifty-eight thousand nine hundred fifty-two'); INSERT INTO t1 VALUES(9907, 46490, 'forty-six thousand four hundred ninety'); INSERT INTO t1 VALUES(9908, 21880, 'twenty-one thousand eight hundred eighty'); INSERT INTO t1 VALUES(9909, 7209, 'seven thousand two hundred nine'); INSERT INTO t1 VALUES(9910, 65591, 'sixty-five thousand five hundred ninety-one'); INSERT INTO t1 VALUES(9911, 45763, 'forty-five thousand seven hundred sixty-three'); INSERT INTO t1 VALUES(9912, 56739, 'fifty-six thousand seven hundred thirty-nine'); INSERT INTO t1 VALUES(9913, 52222, 'fifty-two thousand two hundred twenty-two'); INSERT INTO t1 VALUES(9914, 40998, 'forty thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(9915, 22936, 'twenty-two thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(9916, 46530, 'forty-six thousand five hundred thirty'); INSERT INTO t1 VALUES(9917, 20329, 'twenty thousand three hundred twenty-nine'); INSERT INTO t1 VALUES(9918, 91798, 'ninety-one thousand seven hundred ninety-eight'); INSERT INTO t1 VALUES(9919, 4067, 'four thousand sixty-seven'); INSERT INTO t1 VALUES(9920, 74979, 'seventy-four thousand nine hundred seventy-nine'); INSERT INTO t1 VALUES(9921, 57275, 'fifty-seven thousand two hundred seventy-five'); INSERT INTO t1 VALUES(9922, 40818, 'forty thousand eight hundred eighteen'); INSERT INTO t1 VALUES(9923, 88264, 'eighty-eight thousand two hundred sixty-four'); INSERT INTO t1 VALUES(9924, 48362, 'forty-eight thousand three hundred sixty-two'); INSERT INTO t1 VALUES(9925, 47804, 'forty-seven thousand eight hundred four'); INSERT INTO t1 VALUES(9926, 87158, 'eighty-seven thousand one hundred fifty-eight'); INSERT INTO t1 VALUES(9927, 19450, 'nineteen thousand four hundred fifty'); INSERT INTO t1 VALUES(9928, 51937, 'fifty-one thousand nine hundred thirty-seven'); INSERT INTO t1 VALUES(9929, 6451, 'six thousand four hundred fifty-one'); INSERT INTO t1 VALUES(9930, 62574, 'sixty-two thousand five hundred seventy-four'); INSERT INTO t1 VALUES(9931, 44975, 'forty-four thousand nine hundred seventy-five'); INSERT INTO t1 VALUES(9932, 58840, 'fifty-eight thousand eight hundred forty'); INSERT INTO t1 VALUES(9933, 40333, 'forty thousand three hundred thirty-three'); INSERT INTO t1 VALUES(9934, 79142, 'seventy-nine thousand one hundred forty-two'); INSERT INTO t1 VALUES(9935, 76413, 'seventy-six thousand four hundred thirteen'); INSERT INTO t1 VALUES(9936, 57459, 'fifty-seven thousand four hundred fifty-nine'); INSERT INTO t1 VALUES(9937, 12727, 'twelve thousand seven hundred twenty-seven'); INSERT INTO t1 VALUES(9938, 29379, 'twenty-nine thousand three hundred seventy-nine'); INSERT INTO t1 VALUES(9939, 35456, 'thirty-five thousand four hundred fifty-six'); INSERT INTO t1 VALUES(9940, 81209, 'eighty-one thousand two hundred nine'); INSERT INTO t1 VALUES(9941, 6732, 'six thousand seven hundred thirty-two'); INSERT INTO t1 VALUES(9942, 24724, 'twenty-four thousand seven hundred twenty-four'); INSERT INTO t1 VALUES(9943, 80148, 'eighty thousand one hundred forty-eight'); INSERT INTO t1 VALUES(9944, 56972, 'fifty-six thousand nine hundred seventy-two'); INSERT INTO t1 VALUES(9945, 76133, 'seventy-six thousand one hundred thirty-three'); INSERT INTO t1 VALUES(9946, 13135, 'thirteen thousand one hundred thirty-five'); INSERT INTO t1 VALUES(9947, 93395, 'ninety-three thousand three hundred ninety-five'); INSERT INTO t1 VALUES(9948, 44495, 'forty-four thousand four hundred ninety-five'); INSERT INTO t1 VALUES(9949, 59494, 'fifty-nine thousand four hundred ninety-four'); INSERT INTO t1 VALUES(9950, 13698, 'thirteen thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(9951, 69785, 'sixty-nine thousand seven hundred eighty-five'); INSERT INTO t1 VALUES(9952, 50605, 'fifty thousand six hundred five'); INSERT INTO t1 VALUES(9953, 84121, 'eighty-four thousand one hundred twenty-one'); INSERT INTO t1 VALUES(9954, 76498, 'seventy-six thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(9955, 49555, 'forty-nine thousand five hundred fifty-five'); INSERT INTO t1 VALUES(9956, 2819, 'two thousand eight hundred nineteen'); INSERT INTO t1 VALUES(9957, 22093, 'twenty-two thousand ninety-three'); INSERT INTO t1 VALUES(9958, 97649, 'ninety-seven thousand six hundred forty-nine'); INSERT INTO t1 VALUES(9959, 18159, 'eighteen thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(9960, 96365, 'ninety-six thousand three hundred sixty-five'); INSERT INTO t1 VALUES(9961, 67591, 'sixty-seven thousand five hundred ninety-one'); INSERT INTO t1 VALUES(9962, 30445, 'thirty thousand four hundred forty-five'); INSERT INTO t1 VALUES(9963, 36875, 'thirty-six thousand eight hundred seventy-five'); INSERT INTO t1 VALUES(9964, 21519, 'twenty-one thousand five hundred nineteen'); INSERT INTO t1 VALUES(9965, 40290, 'forty thousand two hundred ninety'); INSERT INTO t1 VALUES(9966, 50321, 'fifty thousand three hundred twenty-one'); INSERT INTO t1 VALUES(9967, 8325, 'eight thousand three hundred twenty-five'); INSERT INTO t1 VALUES(9968, 1993, 'one thousand nine hundred ninety-three'); INSERT INTO t1 VALUES(9969, 53468, 'fifty-three thousand four hundred sixty-eight'); INSERT INTO t1 VALUES(9970, 59265, 'fifty-nine thousand two hundred sixty-five'); INSERT INTO t1 VALUES(9971, 2758, 'two thousand seven hundred fifty-eight'); INSERT INTO t1 VALUES(9972, 13146, 'thirteen thousand one hundred forty-six'); INSERT INTO t1 VALUES(9973, 4252, 'four thousand two hundred fifty-two'); INSERT INTO t1 VALUES(9974, 76634, 'seventy-six thousand six hundred thirty-four'); INSERT INTO t1 VALUES(9975, 26490, 'twenty-six thousand four hundred ninety'); INSERT INTO t1 VALUES(9976, 24384, 'twenty-four thousand three hundred eighty-four'); INSERT INTO t1 VALUES(9977, 60768, 'sixty thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(9978, 804, 'eight hundred four'); INSERT INTO t1 VALUES(9979, 99231, 'ninety-nine thousand two hundred thirty-one'); INSERT INTO t1 VALUES(9980, 28841, 'twenty-eight thousand eight hundred forty-one'); INSERT INTO t1 VALUES(9981, 85216, 'eighty-five thousand two hundred sixteen'); INSERT INTO t1 VALUES(9982, 12386, 'twelve thousand three hundred eighty-six'); INSERT INTO t1 VALUES(9983, 49354, 'forty-nine thousand three hundred fifty-four'); INSERT INTO t1 VALUES(9984, 23671, 'twenty-three thousand six hundred seventy-one'); INSERT INTO t1 VALUES(9985, 5116, 'five thousand one hundred sixteen'); INSERT INTO t1 VALUES(9986, 67851, 'sixty-seven thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(9987, 60562, 'sixty thousand five hundred sixty-two'); INSERT INTO t1 VALUES(9988, 81810, 'eighty-one thousand eight hundred ten'); INSERT INTO t1 VALUES(9989, 40925, 'forty thousand nine hundred twenty-five'); INSERT INTO t1 VALUES(9990, 59586, 'fifty-nine thousand five hundred eighty-six'); INSERT INTO t1 VALUES(9991, 63382, 'sixty-three thousand three hundred eighty-two'); INSERT INTO t1 VALUES(9992, 42021, 'forty-two thousand twenty-one'); INSERT INTO t1 VALUES(9993, 47348, 'forty-seven thousand three hundred forty-eight'); INSERT INTO t1 VALUES(9994, 57430, 'fifty-seven thousand four hundred thirty'); INSERT INTO t1 VALUES(9995, 37541, 'thirty-seven thousand five hundred forty-one'); INSERT INTO t1 VALUES(9996, 65272, 'sixty-five thousand two hundred seventy-two'); INSERT INTO t1 VALUES(9997, 39400, 'thirty-nine thousand four hundred'); INSERT INTO t1 VALUES(9998, 72589, 'seventy-two thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(9999, 51694, 'fifty-one thousand six hundred ninety-four'); INSERT INTO t1 VALUES(10000, 57194, 'fifty-seven thousand one hundred ninety-four'); INSERT INTO t1 VALUES(10001, 28580, 'twenty-eight thousand five hundred eighty'); INSERT INTO t1 VALUES(10002, 98999, 'ninety-eight thousand nine hundred ninety-nine'); INSERT INTO t1 VALUES(10003, 46499, 'forty-six thousand four hundred ninety-nine'); INSERT INTO t1 VALUES(10004, 63555, 'sixty-three thousand five hundred fifty-five'); INSERT INTO t1 VALUES(10005, 36291, 'thirty-six thousand two hundred ninety-one'); INSERT INTO t1 VALUES(10006, 80800, 'eighty thousand eight hundred'); INSERT INTO t1 VALUES(10007, 24823, 'twenty-four thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(10008, 89003, 'eighty-nine thousand three'); INSERT INTO t1 VALUES(10009, 82565, 'eighty-two thousand five hundred sixty-five'); INSERT INTO t1 VALUES(10010, 88536, 'eighty-eight thousand five hundred thirty-six'); INSERT INTO t1 VALUES(10011, 75442, 'seventy-five thousand four hundred forty-two'); INSERT INTO t1 VALUES(10012, 20028, 'twenty thousand twenty-eight'); INSERT INTO t1 VALUES(10013, 68276, 'sixty-eight thousand two hundred seventy-six'); INSERT INTO t1 VALUES(10014, 43001, 'forty-three thousand one'); INSERT INTO t1 VALUES(10015, 45766, 'forty-five thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(10016, 8541, 'eight thousand five hundred forty-one'); INSERT INTO t1 VALUES(10017, 29296, 'twenty-nine thousand two hundred ninety-six'); INSERT INTO t1 VALUES(10018, 19756, 'nineteen thousand seven hundred fifty-six'); INSERT INTO t1 VALUES(10019, 60176, 'sixty thousand one hundred seventy-six'); INSERT INTO t1 VALUES(10020, 56495, 'fifty-six thousand four hundred ninety-five'); INSERT INTO t1 VALUES(10021, 9153, 'nine thousand one hundred fifty-three'); INSERT INTO t1 VALUES(10022, 91011, 'ninety-one thousand eleven'); INSERT INTO t1 VALUES(10023, 84750, 'eighty-four thousand seven hundred fifty'); INSERT INTO t1 VALUES(10024, 41320, 'forty-one thousand three hundred twenty'); INSERT INTO t1 VALUES(10025, 50819, 'fifty thousand eight hundred nineteen'); INSERT INTO t1 VALUES(10026, 75447, 'seventy-five thousand four hundred forty-seven'); INSERT INTO t1 VALUES(10027, 77695, 'seventy-seven thousand six hundred ninety-five'); INSERT INTO t1 VALUES(10028, 52457, 'fifty-two thousand four hundred fifty-seven'); INSERT INTO t1 VALUES(10029, 17090, 'seventeen thousand ninety'); INSERT INTO t1 VALUES(10030, 81484, 'eighty-one thousand four hundred eighty-four'); INSERT INTO t1 VALUES(10031, 2647, 'two thousand six hundred forty-seven'); INSERT INTO t1 VALUES(10032, 6892, 'six thousand eight hundred ninety-two'); INSERT INTO t1 VALUES(10033, 55577, 'fifty-five thousand five hundred seventy-seven'); INSERT INTO t1 VALUES(10034, 7455, 'seven thousand four hundred fifty-five'); INSERT INTO t1 VALUES(10035, 96193, 'ninety-six thousand one hundred ninety-three'); INSERT INTO t1 VALUES(10036, 26509, 'twenty-six thousand five hundred nine'); INSERT INTO t1 VALUES(10037, 94776, 'ninety-four thousand seven hundred seventy-six'); INSERT INTO t1 VALUES(10038, 21490, 'twenty-one thousand four hundred ninety'); INSERT INTO t1 VALUES(10039, 73739, 'seventy-three thousand seven hundred thirty-nine'); INSERT INTO t1 VALUES(10040, 81806, 'eighty-one thousand eight hundred six'); INSERT INTO t1 VALUES(10041, 32416, 'thirty-two thousand four hundred sixteen'); INSERT INTO t1 VALUES(10042, 51042, 'fifty-one thousand forty-two'); INSERT INTO t1 VALUES(10043, 88758, 'eighty-eight thousand seven hundred fifty-eight'); INSERT INTO t1 VALUES(10044, 95855, 'ninety-five thousand eight hundred fifty-five'); INSERT INTO t1 VALUES(10045, 15272, 'fifteen thousand two hundred seventy-two'); INSERT INTO t1 VALUES(10046, 96757, 'ninety-six thousand seven hundred fifty-seven'); INSERT INTO t1 VALUES(10047, 55574, 'fifty-five thousand five hundred seventy-four'); INSERT INTO t1 VALUES(10048, 95823, 'ninety-five thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(10049, 3601, 'three thousand six hundred one'); INSERT INTO t1 VALUES(10050, 70265, 'seventy thousand two hundred sixty-five'); INSERT INTO t1 VALUES(10051, 73503, 'seventy-three thousand five hundred three'); INSERT INTO t1 VALUES(10052, 91613, 'ninety-one thousand six hundred thirteen'); INSERT INTO t1 VALUES(10053, 15043, 'fifteen thousand forty-three'); INSERT INTO t1 VALUES(10054, 85894, 'eighty-five thousand eight hundred ninety-four'); INSERT INTO t1 VALUES(10055, 89779, 'eighty-nine thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(10056, 77794, 'seventy-seven thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(10057, 61258, 'sixty-one thousand two hundred fifty-eight'); INSERT INTO t1 VALUES(10058, 2541, 'two thousand five hundred forty-one'); INSERT INTO t1 VALUES(10059, 58088, 'fifty-eight thousand eighty-eight'); INSERT INTO t1 VALUES(10060, 51801, 'fifty-one thousand eight hundred one'); INSERT INTO t1 VALUES(10061, 29904, 'twenty-nine thousand nine hundred four'); INSERT INTO t1 VALUES(10062, 50362, 'fifty thousand three hundred sixty-two'); INSERT INTO t1 VALUES(10063, 76205, 'seventy-six thousand two hundred five'); INSERT INTO t1 VALUES(10064, 63424, 'sixty-three thousand four hundred twenty-four'); INSERT INTO t1 VALUES(10065, 37718, 'thirty-seven thousand seven hundred eighteen'); INSERT INTO t1 VALUES(10066, 62795, 'sixty-two thousand seven hundred ninety-five'); INSERT INTO t1 VALUES(10067, 76525, 'seventy-six thousand five hundred twenty-five'); INSERT INTO t1 VALUES(10068, 34600, 'thirty-four thousand six hundred'); INSERT INTO t1 VALUES(10069, 39727, 'thirty-nine thousand seven hundred twenty-seven'); INSERT INTO t1 VALUES(10070, 57148, 'fifty-seven thousand one hundred forty-eight'); INSERT INTO t1 VALUES(10071, 78652, 'seventy-eight thousand six hundred fifty-two'); INSERT INTO t1 VALUES(10072, 46387, 'forty-six thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(10073, 59941, 'fifty-nine thousand nine hundred forty-one'); INSERT INTO t1 VALUES(10074, 94266, 'ninety-four thousand two hundred sixty-six'); INSERT INTO t1 VALUES(10075, 26744, 'twenty-six thousand seven hundred forty-four'); INSERT INTO t1 VALUES(10076, 8327, 'eight thousand three hundred twenty-seven'); INSERT INTO t1 VALUES(10077, 85602, 'eighty-five thousand six hundred two'); INSERT INTO t1 VALUES(10078, 12122, 'twelve thousand one hundred twenty-two'); INSERT INTO t1 VALUES(10079, 69154, 'sixty-nine thousand one hundred fifty-four'); INSERT INTO t1 VALUES(10080, 60199, 'sixty thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(10081, 75686, 'seventy-five thousand six hundred eighty-six'); INSERT INTO t1 VALUES(10082, 89254, 'eighty-nine thousand two hundred fifty-four'); INSERT INTO t1 VALUES(10083, 65182, 'sixty-five thousand one hundred eighty-two'); INSERT INTO t1 VALUES(10084, 23815, 'twenty-three thousand eight hundred fifteen'); INSERT INTO t1 VALUES(10085, 3411, 'three thousand four hundred eleven'); INSERT INTO t1 VALUES(10086, 3280, 'three thousand two hundred eighty'); INSERT INTO t1 VALUES(10087, 20235, 'twenty thousand two hundred thirty-five'); INSERT INTO t1 VALUES(10088, 10895, 'ten thousand eight hundred ninety-five'); INSERT INTO t1 VALUES(10089, 40300, 'forty thousand three hundred'); INSERT INTO t1 VALUES(10090, 15307, 'fifteen thousand three hundred seven'); INSERT INTO t1 VALUES(10091, 8064, 'eight thousand sixty-four'); INSERT INTO t1 VALUES(10092, 23321, 'twenty-three thousand three hundred twenty-one'); INSERT INTO t1 VALUES(10093, 49406, 'forty-nine thousand four hundred six'); INSERT INTO t1 VALUES(10094, 41423, 'forty-one thousand four hundred twenty-three'); INSERT INTO t1 VALUES(10095, 34449, 'thirty-four thousand four hundred forty-nine'); INSERT INTO t1 VALUES(10096, 91896, 'ninety-one thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(10097, 42891, 'forty-two thousand eight hundred ninety-one'); INSERT INTO t1 VALUES(10098, 61229, 'sixty-one thousand two hundred twenty-nine'); INSERT INTO t1 VALUES(10099, 15323, 'fifteen thousand three hundred twenty-three'); INSERT INTO t1 VALUES(10100, 7543, 'seven thousand five hundred forty-three'); INSERT INTO t1 VALUES(10101, 61801, 'sixty-one thousand eight hundred one'); INSERT INTO t1 VALUES(10102, 57777, 'fifty-seven thousand seven hundred seventy-seven'); INSERT INTO t1 VALUES(10103, 86290, 'eighty-six thousand two hundred ninety'); INSERT INTO t1 VALUES(10104, 9823, 'nine thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(10105, 22520, 'twenty-two thousand five hundred twenty'); INSERT INTO t1 VALUES(10106, 66775, 'sixty-six thousand seven hundred seventy-five'); INSERT INTO t1 VALUES(10107, 25164, 'twenty-five thousand one hundred sixty-four'); INSERT INTO t1 VALUES(10108, 63767, 'sixty-three thousand seven hundred sixty-seven'); INSERT INTO t1 VALUES(10109, 36076, 'thirty-six thousand seventy-six'); INSERT INTO t1 VALUES(10110, 94297, 'ninety-four thousand two hundred ninety-seven'); INSERT INTO t1 VALUES(10111, 31929, 'thirty-one thousand nine hundred twenty-nine'); INSERT INTO t1 VALUES(10112, 90809, 'ninety thousand eight hundred nine'); INSERT INTO t1 VALUES(10113, 39018, 'thirty-nine thousand eighteen'); INSERT INTO t1 VALUES(10114, 19022, 'nineteen thousand twenty-two'); INSERT INTO t1 VALUES(10115, 9128, 'nine thousand one hundred twenty-eight'); INSERT INTO t1 VALUES(10116, 6236, 'six thousand two hundred thirty-six'); INSERT INTO t1 VALUES(10117, 52614, 'fifty-two thousand six hundred fourteen'); INSERT INTO t1 VALUES(10118, 28249, 'twenty-eight thousand two hundred forty-nine'); INSERT INTO t1 VALUES(10119, 56973, 'fifty-six thousand nine hundred seventy-three'); INSERT INTO t1 VALUES(10120, 93966, 'ninety-three thousand nine hundred sixty-six'); INSERT INTO t1 VALUES(10121, 13506, 'thirteen thousand five hundred six'); INSERT INTO t1 VALUES(10122, 5696, 'five thousand six hundred ninety-six'); INSERT INTO t1 VALUES(10123, 18710, 'eighteen thousand seven hundred ten'); INSERT INTO t1 VALUES(10124, 37897, 'thirty-seven thousand eight hundred ninety-seven'); INSERT INTO t1 VALUES(10125, 18930, 'eighteen thousand nine hundred thirty'); INSERT INTO t1 VALUES(10126, 89104, 'eighty-nine thousand one hundred four'); INSERT INTO t1 VALUES(10127, 59042, 'fifty-nine thousand forty-two'); INSERT INTO t1 VALUES(10128, 64883, 'sixty-four thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(10129, 61154, 'sixty-one thousand one hundred fifty-four'); INSERT INTO t1 VALUES(10130, 73956, 'seventy-three thousand nine hundred fifty-six'); INSERT INTO t1 VALUES(10131, 52660, 'fifty-two thousand six hundred sixty'); INSERT INTO t1 VALUES(10132, 64302, 'sixty-four thousand three hundred two'); INSERT INTO t1 VALUES(10133, 92789, 'ninety-two thousand seven hundred eighty-nine'); INSERT INTO t1 VALUES(10134, 29706, 'twenty-nine thousand seven hundred six'); INSERT INTO t1 VALUES(10135, 68090, 'sixty-eight thousand ninety'); INSERT INTO t1 VALUES(10136, 11498, 'eleven thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(10137, 22801, 'twenty-two thousand eight hundred one'); INSERT INTO t1 VALUES(10138, 63985, 'sixty-three thousand nine hundred eighty-five'); INSERT INTO t1 VALUES(10139, 75713, 'seventy-five thousand seven hundred thirteen'); INSERT INTO t1 VALUES(10140, 9506, 'nine thousand five hundred six'); INSERT INTO t1 VALUES(10141, 33583, 'thirty-three thousand five hundred eighty-three'); INSERT INTO t1 VALUES(10142, 93518, 'ninety-three thousand five hundred eighteen'); INSERT INTO t1 VALUES(10143, 29463, 'twenty-nine thousand four hundred sixty-three'); INSERT INTO t1 VALUES(10144, 35445, 'thirty-five thousand four hundred forty-five'); INSERT INTO t1 VALUES(10145, 49154, 'forty-nine thousand one hundred fifty-four'); INSERT INTO t1 VALUES(10146, 38295, 'thirty-eight thousand two hundred ninety-five'); INSERT INTO t1 VALUES(10147, 2623, 'two thousand six hundred twenty-three'); INSERT INTO t1 VALUES(10148, 41012, 'forty-one thousand twelve'); INSERT INTO t1 VALUES(10149, 83579, 'eighty-three thousand five hundred seventy-nine'); INSERT INTO t1 VALUES(10150, 55163, 'fifty-five thousand one hundred sixty-three'); INSERT INTO t1 VALUES(10151, 76301, 'seventy-six thousand three hundred one'); INSERT INTO t1 VALUES(10152, 76991, 'seventy-six thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(10153, 82057, 'eighty-two thousand fifty-seven'); INSERT INTO t1 VALUES(10154, 91873, 'ninety-one thousand eight hundred seventy-three'); INSERT INTO t1 VALUES(10155, 65795, 'sixty-five thousand seven hundred ninety-five'); INSERT INTO t1 VALUES(10156, 20846, 'twenty thousand eight hundred forty-six'); INSERT INTO t1 VALUES(10157, 17514, 'seventeen thousand five hundred fourteen'); INSERT INTO t1 VALUES(10158, 31920, 'thirty-one thousand nine hundred twenty'); INSERT INTO t1 VALUES(10159, 16528, 'sixteen thousand five hundred twenty-eight'); INSERT INTO t1 VALUES(10160, 69793, 'sixty-nine thousand seven hundred ninety-three'); INSERT INTO t1 VALUES(10161, 16046, 'sixteen thousand forty-six'); INSERT INTO t1 VALUES(10162, 91577, 'ninety-one thousand five hundred seventy-seven'); INSERT INTO t1 VALUES(10163, 71440, 'seventy-one thousand four hundred forty'); INSERT INTO t1 VALUES(10164, 25918, 'twenty-five thousand nine hundred eighteen'); INSERT INTO t1 VALUES(10165, 20327, 'twenty thousand three hundred twenty-seven'); INSERT INTO t1 VALUES(10166, 90374, 'ninety thousand three hundred seventy-four'); INSERT INTO t1 VALUES(10167, 2899, 'two thousand eight hundred ninety-nine'); INSERT INTO t1 VALUES(10168, 4924, 'four thousand nine hundred twenty-four'); INSERT INTO t1 VALUES(10169, 74927, 'seventy-four thousand nine hundred twenty-seven'); INSERT INTO t1 VALUES(10170, 89584, 'eighty-nine thousand five hundred eighty-four'); INSERT INTO t1 VALUES(10171, 9848, 'nine thousand eight hundred forty-eight'); INSERT INTO t1 VALUES(10172, 81725, 'eighty-one thousand seven hundred twenty-five'); INSERT INTO t1 VALUES(10173, 88071, 'eighty-eight thousand seventy-one'); INSERT INTO t1 VALUES(10174, 26424, 'twenty-six thousand four hundred twenty-four'); INSERT INTO t1 VALUES(10175, 53354, 'fifty-three thousand three hundred fifty-four'); INSERT INTO t1 VALUES(10176, 64200, 'sixty-four thousand two hundred'); INSERT INTO t1 VALUES(10177, 80868, 'eighty thousand eight hundred sixty-eight'); INSERT INTO t1 VALUES(10178, 96766, 'ninety-six thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(10179, 35539, 'thirty-five thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(10180, 33332, 'thirty-three thousand three hundred thirty-two'); INSERT INTO t1 VALUES(10181, 85953, 'eighty-five thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(10182, 3624, 'three thousand six hundred twenty-four'); INSERT INTO t1 VALUES(10183, 35317, 'thirty-five thousand three hundred seventeen'); INSERT INTO t1 VALUES(10184, 86568, 'eighty-six thousand five hundred sixty-eight'); INSERT INTO t1 VALUES(10185, 45880, 'forty-five thousand eight hundred eighty'); INSERT INTO t1 VALUES(10186, 94871, 'ninety-four thousand eight hundred seventy-one'); INSERT INTO t1 VALUES(10187, 99046, 'ninety-nine thousand forty-six'); INSERT INTO t1 VALUES(10188, 68161, 'sixty-eight thousand one hundred sixty-one'); INSERT INTO t1 VALUES(10189, 43527, 'forty-three thousand five hundred twenty-seven'); INSERT INTO t1 VALUES(10190, 81651, 'eighty-one thousand six hundred fifty-one'); INSERT INTO t1 VALUES(10191, 74527, 'seventy-four thousand five hundred twenty-seven'); INSERT INTO t1 VALUES(10192, 48132, 'forty-eight thousand one hundred thirty-two'); INSERT INTO t1 VALUES(10193, 86688, 'eighty-six thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(10194, 91036, 'ninety-one thousand thirty-six'); INSERT INTO t1 VALUES(10195, 76252, 'seventy-six thousand two hundred fifty-two'); INSERT INTO t1 VALUES(10196, 11262, 'eleven thousand two hundred sixty-two'); INSERT INTO t1 VALUES(10197, 8736, 'eight thousand seven hundred thirty-six'); INSERT INTO t1 VALUES(10198, 37044, 'thirty-seven thousand forty-four'); INSERT INTO t1 VALUES(10199, 67075, 'sixty-seven thousand seventy-five'); INSERT INTO t1 VALUES(10200, 85263, 'eighty-five thousand two hundred sixty-three'); INSERT INTO t1 VALUES(10201, 90863, 'ninety thousand eight hundred sixty-three'); INSERT INTO t1 VALUES(10202, 55277, 'fifty-five thousand two hundred seventy-seven'); INSERT INTO t1 VALUES(10203, 11663, 'eleven thousand six hundred sixty-three'); INSERT INTO t1 VALUES(10204, 5778, 'five thousand seven hundred seventy-eight'); INSERT INTO t1 VALUES(10205, 58214, 'fifty-eight thousand two hundred fourteen'); INSERT INTO t1 VALUES(10206, 82653, 'eighty-two thousand six hundred fifty-three'); INSERT INTO t1 VALUES(10207, 42029, 'forty-two thousand twenty-nine'); INSERT INTO t1 VALUES(10208, 14646, 'fourteen thousand six hundred forty-six'); INSERT INTO t1 VALUES(10209, 66993, 'sixty-six thousand nine hundred ninety-three'); INSERT INTO t1 VALUES(10210, 26993, 'twenty-six thousand nine hundred ninety-three'); INSERT INTO t1 VALUES(10211, 77946, 'seventy-seven thousand nine hundred forty-six'); INSERT INTO t1 VALUES(10212, 49080, 'forty-nine thousand eighty'); INSERT INTO t1 VALUES(10213, 48901, 'forty-eight thousand nine hundred one'); INSERT INTO t1 VALUES(10214, 59287, 'fifty-nine thousand two hundred eighty-seven'); INSERT INTO t1 VALUES(10215, 53441, 'fifty-three thousand four hundred forty-one'); INSERT INTO t1 VALUES(10216, 54853, 'fifty-four thousand eight hundred fifty-three'); INSERT INTO t1 VALUES(10217, 43943, 'forty-three thousand nine hundred forty-three'); INSERT INTO t1 VALUES(10218, 69650, 'sixty-nine thousand six hundred fifty'); INSERT INTO t1 VALUES(10219, 21502, 'twenty-one thousand five hundred two'); INSERT INTO t1 VALUES(10220, 25604, 'twenty-five thousand six hundred four'); INSERT INTO t1 VALUES(10221, 51366, 'fifty-one thousand three hundred sixty-six'); INSERT INTO t1 VALUES(10222, 1156, 'one thousand one hundred fifty-six'); INSERT INTO t1 VALUES(10223, 76665, 'seventy-six thousand six hundred sixty-five'); INSERT INTO t1 VALUES(10224, 18797, 'eighteen thousand seven hundred ninety-seven'); INSERT INTO t1 VALUES(10225, 52437, 'fifty-two thousand four hundred thirty-seven'); INSERT INTO t1 VALUES(10226, 70485, 'seventy thousand four hundred eighty-five'); INSERT INTO t1 VALUES(10227, 64098, 'sixty-four thousand ninety-eight'); INSERT INTO t1 VALUES(10228, 1107, 'one thousand one hundred seven'); INSERT INTO t1 VALUES(10229, 73053, 'seventy-three thousand fifty-three'); INSERT INTO t1 VALUES(10230, 79165, 'seventy-nine thousand one hundred sixty-five'); INSERT INTO t1 VALUES(10231, 17260, 'seventeen thousand two hundred sixty'); INSERT INTO t1 VALUES(10232, 35006, 'thirty-five thousand six'); INSERT INTO t1 VALUES(10233, 38845, 'thirty-eight thousand eight hundred forty-five'); INSERT INTO t1 VALUES(10234, 85912, 'eighty-five thousand nine hundred twelve'); INSERT INTO t1 VALUES(10235, 1836, 'one thousand eight hundred thirty-six'); INSERT INTO t1 VALUES(10236, 94516, 'ninety-four thousand five hundred sixteen'); INSERT INTO t1 VALUES(10237, 4729, 'four thousand seven hundred twenty-nine'); INSERT INTO t1 VALUES(10238, 20651, 'twenty thousand six hundred fifty-one'); INSERT INTO t1 VALUES(10239, 38138, 'thirty-eight thousand one hundred thirty-eight'); INSERT INTO t1 VALUES(10240, 97711, 'ninety-seven thousand seven hundred eleven'); INSERT INTO t1 VALUES(10241, 16962, 'sixteen thousand nine hundred sixty-two'); INSERT INTO t1 VALUES(10242, 54518, 'fifty-four thousand five hundred eighteen'); INSERT INTO t1 VALUES(10243, 27963, 'twenty-seven thousand nine hundred sixty-three'); INSERT INTO t1 VALUES(10244, 95447, 'ninety-five thousand four hundred forty-seven'); INSERT INTO t1 VALUES(10245, 66642, 'sixty-six thousand six hundred forty-two'); INSERT INTO t1 VALUES(10246, 5530, 'five thousand five hundred thirty'); INSERT INTO t1 VALUES(10247, 41723, 'forty-one thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(10248, 19708, 'nineteen thousand seven hundred eight'); INSERT INTO t1 VALUES(10249, 62034, 'sixty-two thousand thirty-four'); INSERT INTO t1 VALUES(10250, 4254, 'four thousand two hundred fifty-four'); INSERT INTO t1 VALUES(10251, 47412, 'forty-seven thousand four hundred twelve'); INSERT INTO t1 VALUES(10252, 19453, 'nineteen thousand four hundred fifty-three'); INSERT INTO t1 VALUES(10253, 98954, 'ninety-eight thousand nine hundred fifty-four'); INSERT INTO t1 VALUES(10254, 64405, 'sixty-four thousand four hundred five'); INSERT INTO t1 VALUES(10255, 25043, 'twenty-five thousand forty-three'); INSERT INTO t1 VALUES(10256, 64360, 'sixty-four thousand three hundred sixty'); INSERT INTO t1 VALUES(10257, 86126, 'eighty-six thousand one hundred twenty-six'); INSERT INTO t1 VALUES(10258, 23294, 'twenty-three thousand two hundred ninety-four'); INSERT INTO t1 VALUES(10259, 37521, 'thirty-seven thousand five hundred twenty-one'); INSERT INTO t1 VALUES(10260, 25456, 'twenty-five thousand four hundred fifty-six'); INSERT INTO t1 VALUES(10261, 84692, 'eighty-four thousand six hundred ninety-two'); INSERT INTO t1 VALUES(10262, 19737, 'nineteen thousand seven hundred thirty-seven'); INSERT INTO t1 VALUES(10263, 96108, 'ninety-six thousand one hundred eight'); INSERT INTO t1 VALUES(10264, 55154, 'fifty-five thousand one hundred fifty-four'); INSERT INTO t1 VALUES(10265, 71731, 'seventy-one thousand seven hundred thirty-one'); INSERT INTO t1 VALUES(10266, 25585, 'twenty-five thousand five hundred eighty-five'); INSERT INTO t1 VALUES(10267, 31239, 'thirty-one thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(10268, 67362, 'sixty-seven thousand three hundred sixty-two'); INSERT INTO t1 VALUES(10269, 30132, 'thirty thousand one hundred thirty-two'); INSERT INTO t1 VALUES(10270, 67831, 'sixty-seven thousand eight hundred thirty-one'); INSERT INTO t1 VALUES(10271, 16107, 'sixteen thousand one hundred seven'); INSERT INTO t1 VALUES(10272, 25975, 'twenty-five thousand nine hundred seventy-five'); INSERT INTO t1 VALUES(10273, 43551, 'forty-three thousand five hundred fifty-one'); INSERT INTO t1 VALUES(10274, 91783, 'ninety-one thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(10275, 41531, 'forty-one thousand five hundred thirty-one'); INSERT INTO t1 VALUES(10276, 51106, 'fifty-one thousand one hundred six'); INSERT INTO t1 VALUES(10277, 26828, 'twenty-six thousand eight hundred twenty-eight'); INSERT INTO t1 VALUES(10278, 31376, 'thirty-one thousand three hundred seventy-six'); INSERT INTO t1 VALUES(10279, 2328, 'two thousand three hundred twenty-eight'); INSERT INTO t1 VALUES(10280, 51134, 'fifty-one thousand one hundred thirty-four'); INSERT INTO t1 VALUES(10281, 75384, 'seventy-five thousand three hundred eighty-four'); INSERT INTO t1 VALUES(10282, 17388, 'seventeen thousand three hundred eighty-eight'); INSERT INTO t1 VALUES(10283, 74997, 'seventy-four thousand nine hundred ninety-seven'); INSERT INTO t1 VALUES(10284, 17623, 'seventeen thousand six hundred twenty-three'); INSERT INTO t1 VALUES(10285, 18840, 'eighteen thousand eight hundred forty'); INSERT INTO t1 VALUES(10286, 79267, 'seventy-nine thousand two hundred sixty-seven'); INSERT INTO t1 VALUES(10287, 28382, 'twenty-eight thousand three hundred eighty-two'); INSERT INTO t1 VALUES(10288, 16023, 'sixteen thousand twenty-three'); INSERT INTO t1 VALUES(10289, 65091, 'sixty-five thousand ninety-one'); INSERT INTO t1 VALUES(10290, 49944, 'forty-nine thousand nine hundred forty-four'); INSERT INTO t1 VALUES(10291, 15680, 'fifteen thousand six hundred eighty'); INSERT INTO t1 VALUES(10292, 60778, 'sixty thousand seven hundred seventy-eight'); INSERT INTO t1 VALUES(10293, 15506, 'fifteen thousand five hundred six'); INSERT INTO t1 VALUES(10294, 63423, 'sixty-three thousand four hundred twenty-three'); INSERT INTO t1 VALUES(10295, 85145, 'eighty-five thousand one hundred forty-five'); INSERT INTO t1 VALUES(10296, 84967, 'eighty-four thousand nine hundred sixty-seven'); INSERT INTO t1 VALUES(10297, 60504, 'sixty thousand five hundred four'); INSERT INTO t1 VALUES(10298, 43952, 'forty-three thousand nine hundred fifty-two'); INSERT INTO t1 VALUES(10299, 23237, 'twenty-three thousand two hundred thirty-seven'); INSERT INTO t1 VALUES(10300, 23794, 'twenty-three thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(10301, 91715, 'ninety-one thousand seven hundred fifteen'); INSERT INTO t1 VALUES(10302, 16562, 'sixteen thousand five hundred sixty-two'); INSERT INTO t1 VALUES(10303, 65194, 'sixty-five thousand one hundred ninety-four'); INSERT INTO t1 VALUES(10304, 91698, 'ninety-one thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(10305, 36082, 'thirty-six thousand eighty-two'); INSERT INTO t1 VALUES(10306, 44924, 'forty-four thousand nine hundred twenty-four'); INSERT INTO t1 VALUES(10307, 94178, 'ninety-four thousand one hundred seventy-eight'); INSERT INTO t1 VALUES(10308, 38496, 'thirty-eight thousand four hundred ninety-six'); INSERT INTO t1 VALUES(10309, 32508, 'thirty-two thousand five hundred eight'); INSERT INTO t1 VALUES(10310, 54508, 'fifty-four thousand five hundred eight'); INSERT INTO t1 VALUES(10311, 10640, 'ten thousand six hundred forty'); INSERT INTO t1 VALUES(10312, 41328, 'forty-one thousand three hundred twenty-eight'); INSERT INTO t1 VALUES(10313, 61921, 'sixty-one thousand nine hundred twenty-one'); INSERT INTO t1 VALUES(10314, 47874, 'forty-seven thousand eight hundred seventy-four'); INSERT INTO t1 VALUES(10315, 49153, 'forty-nine thousand one hundred fifty-three'); INSERT INTO t1 VALUES(10316, 51596, 'fifty-one thousand five hundred ninety-six'); INSERT INTO t1 VALUES(10317, 47376, 'forty-seven thousand three hundred seventy-six'); INSERT INTO t1 VALUES(10318, 83406, 'eighty-three thousand four hundred six'); INSERT INTO t1 VALUES(10319, 27863, 'twenty-seven thousand eight hundred sixty-three'); INSERT INTO t1 VALUES(10320, 97309, 'ninety-seven thousand three hundred nine'); INSERT INTO t1 VALUES(10321, 77693, 'seventy-seven thousand six hundred ninety-three'); INSERT INTO t1 VALUES(10322, 28906, 'twenty-eight thousand nine hundred six'); INSERT INTO t1 VALUES(10323, 47546, 'forty-seven thousand five hundred forty-six'); INSERT INTO t1 VALUES(10324, 23817, 'twenty-three thousand eight hundred seventeen'); INSERT INTO t1 VALUES(10325, 12198, 'twelve thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(10326, 23143, 'twenty-three thousand one hundred forty-three'); INSERT INTO t1 VALUES(10327, 25752, 'twenty-five thousand seven hundred fifty-two'); INSERT INTO t1 VALUES(10328, 15647, 'fifteen thousand six hundred forty-seven'); INSERT INTO t1 VALUES(10329, 70968, 'seventy thousand nine hundred sixty-eight'); INSERT INTO t1 VALUES(10330, 45562, 'forty-five thousand five hundred sixty-two'); INSERT INTO t1 VALUES(10331, 37453, 'thirty-seven thousand four hundred fifty-three'); INSERT INTO t1 VALUES(10332, 66900, 'sixty-six thousand nine hundred'); INSERT INTO t1 VALUES(10333, 55870, 'fifty-five thousand eight hundred seventy'); INSERT INTO t1 VALUES(10334, 73736, 'seventy-three thousand seven hundred thirty-six'); INSERT INTO t1 VALUES(10335, 77024, 'seventy-seven thousand twenty-four'); INSERT INTO t1 VALUES(10336, 51343, 'fifty-one thousand three hundred forty-three'); INSERT INTO t1 VALUES(10337, 82486, 'eighty-two thousand four hundred eighty-six'); INSERT INTO t1 VALUES(10338, 77619, 'seventy-seven thousand six hundred nineteen'); INSERT INTO t1 VALUES(10339, 29365, 'twenty-nine thousand three hundred sixty-five'); INSERT INTO t1 VALUES(10340, 86693, 'eighty-six thousand six hundred ninety-three'); INSERT INTO t1 VALUES(10341, 43691, 'forty-three thousand six hundred ninety-one'); INSERT INTO t1 VALUES(10342, 67516, 'sixty-seven thousand five hundred sixteen'); INSERT INTO t1 VALUES(10343, 14068, 'fourteen thousand sixty-eight'); INSERT INTO t1 VALUES(10344, 93200, 'ninety-three thousand two hundred'); INSERT INTO t1 VALUES(10345, 2248, 'two thousand two hundred forty-eight'); INSERT INTO t1 VALUES(10346, 72332, 'seventy-two thousand three hundred thirty-two'); INSERT INTO t1 VALUES(10347, 22141, 'twenty-two thousand one hundred forty-one'); INSERT INTO t1 VALUES(10348, 14075, 'fourteen thousand seventy-five'); INSERT INTO t1 VALUES(10349, 32936, 'thirty-two thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(10350, 59309, 'fifty-nine thousand three hundred nine'); INSERT INTO t1 VALUES(10351, 62421, 'sixty-two thousand four hundred twenty-one'); INSERT INTO t1 VALUES(10352, 51537, 'fifty-one thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(10353, 28848, 'twenty-eight thousand eight hundred forty-eight'); INSERT INTO t1 VALUES(10354, 84297, 'eighty-four thousand two hundred ninety-seven'); INSERT INTO t1 VALUES(10355, 48595, 'forty-eight thousand five hundred ninety-five'); INSERT INTO t1 VALUES(10356, 45285, 'forty-five thousand two hundred eighty-five'); INSERT INTO t1 VALUES(10357, 97769, 'ninety-seven thousand seven hundred sixty-nine'); INSERT INTO t1 VALUES(10358, 37815, 'thirty-seven thousand eight hundred fifteen'); INSERT INTO t1 VALUES(10359, 96884, 'ninety-six thousand eight hundred eighty-four'); INSERT INTO t1 VALUES(10360, 15556, 'fifteen thousand five hundred fifty-six'); INSERT INTO t1 VALUES(10361, 63878, 'sixty-three thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(10362, 70839, 'seventy thousand eight hundred thirty-nine'); INSERT INTO t1 VALUES(10363, 7318, 'seven thousand three hundred eighteen'); INSERT INTO t1 VALUES(10364, 50533, 'fifty thousand five hundred thirty-three'); INSERT INTO t1 VALUES(10365, 66235, 'sixty-six thousand two hundred thirty-five'); INSERT INTO t1 VALUES(10366, 60264, 'sixty thousand two hundred sixty-four'); INSERT INTO t1 VALUES(10367, 54821, 'fifty-four thousand eight hundred twenty-one'); INSERT INTO t1 VALUES(10368, 67241, 'sixty-seven thousand two hundred forty-one'); INSERT INTO t1 VALUES(10369, 95206, 'ninety-five thousand two hundred six'); INSERT INTO t1 VALUES(10370, 58735, 'fifty-eight thousand seven hundred thirty-five'); INSERT INTO t1 VALUES(10371, 25093, 'twenty-five thousand ninety-three'); INSERT INTO t1 VALUES(10372, 54443, 'fifty-four thousand four hundred forty-three'); INSERT INTO t1 VALUES(10373, 11148, 'eleven thousand one hundred forty-eight'); INSERT INTO t1 VALUES(10374, 14458, 'fourteen thousand four hundred fifty-eight'); INSERT INTO t1 VALUES(10375, 96766, 'ninety-six thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(10376, 62192, 'sixty-two thousand one hundred ninety-two'); INSERT INTO t1 VALUES(10377, 15384, 'fifteen thousand three hundred eighty-four'); INSERT INTO t1 VALUES(10378, 10774, 'ten thousand seven hundred seventy-four'); INSERT INTO t1 VALUES(10379, 43846, 'forty-three thousand eight hundred forty-six'); INSERT INTO t1 VALUES(10380, 90408, 'ninety thousand four hundred eight'); INSERT INTO t1 VALUES(10381, 34831, 'thirty-four thousand eight hundred thirty-one'); INSERT INTO t1 VALUES(10382, 67463, 'sixty-seven thousand four hundred sixty-three'); INSERT INTO t1 VALUES(10383, 9257, 'nine thousand two hundred fifty-seven'); INSERT INTO t1 VALUES(10384, 37198, 'thirty-seven thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(10385, 54097, 'fifty-four thousand ninety-seven'); INSERT INTO t1 VALUES(10386, 39129, 'thirty-nine thousand one hundred twenty-nine'); INSERT INTO t1 VALUES(10387, 25806, 'twenty-five thousand eight hundred six'); INSERT INTO t1 VALUES(10388, 19522, 'nineteen thousand five hundred twenty-two'); INSERT INTO t1 VALUES(10389, 84394, 'eighty-four thousand three hundred ninety-four'); INSERT INTO t1 VALUES(10390, 13809, 'thirteen thousand eight hundred nine'); INSERT INTO t1 VALUES(10391, 31225, 'thirty-one thousand two hundred twenty-five'); INSERT INTO t1 VALUES(10392, 19386, 'nineteen thousand three hundred eighty-six'); INSERT INTO t1 VALUES(10393, 61266, 'sixty-one thousand two hundred sixty-six'); INSERT INTO t1 VALUES(10394, 55360, 'fifty-five thousand three hundred sixty'); INSERT INTO t1 VALUES(10395, 62296, 'sixty-two thousand two hundred ninety-six'); INSERT INTO t1 VALUES(10396, 69554, 'sixty-nine thousand five hundred fifty-four'); INSERT INTO t1 VALUES(10397, 30144, 'thirty thousand one hundred forty-four'); INSERT INTO t1 VALUES(10398, 57621, 'fifty-seven thousand six hundred twenty-one'); INSERT INTO t1 VALUES(10399, 33877, 'thirty-three thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(10400, 32296, 'thirty-two thousand two hundred ninety-six'); INSERT INTO t1 VALUES(10401, 85369, 'eighty-five thousand three hundred sixty-nine'); INSERT INTO t1 VALUES(10402, 24684, 'twenty-four thousand six hundred eighty-four'); INSERT INTO t1 VALUES(10403, 41318, 'forty-one thousand three hundred eighteen'); INSERT INTO t1 VALUES(10404, 66252, 'sixty-six thousand two hundred fifty-two'); INSERT INTO t1 VALUES(10405, 54327, 'fifty-four thousand three hundred twenty-seven'); INSERT INTO t1 VALUES(10406, 93728, 'ninety-three thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(10407, 52451, 'fifty-two thousand four hundred fifty-one'); INSERT INTO t1 VALUES(10408, 32252, 'thirty-two thousand two hundred fifty-two'); INSERT INTO t1 VALUES(10409, 26802, 'twenty-six thousand eight hundred two'); INSERT INTO t1 VALUES(10410, 35783, 'thirty-five thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(10411, 42663, 'forty-two thousand six hundred sixty-three'); INSERT INTO t1 VALUES(10412, 89903, 'eighty-nine thousand nine hundred three'); INSERT INTO t1 VALUES(10413, 56939, 'fifty-six thousand nine hundred thirty-nine'); INSERT INTO t1 VALUES(10414, 58108, 'fifty-eight thousand one hundred eight'); INSERT INTO t1 VALUES(10415, 70713, 'seventy thousand seven hundred thirteen'); INSERT INTO t1 VALUES(10416, 28364, 'twenty-eight thousand three hundred sixty-four'); INSERT INTO t1 VALUES(10417, 78343, 'seventy-eight thousand three hundred forty-three'); INSERT INTO t1 VALUES(10418, 56858, 'fifty-six thousand eight hundred fifty-eight'); INSERT INTO t1 VALUES(10419, 28223, 'twenty-eight thousand two hundred twenty-three'); INSERT INTO t1 VALUES(10420, 39344, 'thirty-nine thousand three hundred forty-four'); INSERT INTO t1 VALUES(10421, 56000, 'fifty-six thousand'); INSERT INTO t1 VALUES(10422, 57200, 'fifty-seven thousand two hundred'); INSERT INTO t1 VALUES(10423, 54000, 'fifty-four thousand'); INSERT INTO t1 VALUES(10424, 90374, 'ninety thousand three hundred seventy-four'); INSERT INTO t1 VALUES(10425, 87241, 'eighty-seven thousand two hundred forty-one'); INSERT INTO t1 VALUES(10426, 91041, 'ninety-one thousand forty-one'); INSERT INTO t1 VALUES(10427, 20283, 'twenty thousand two hundred eighty-three'); INSERT INTO t1 VALUES(10428, 20709, 'twenty thousand seven hundred nine'); INSERT INTO t1 VALUES(10429, 78829, 'seventy-eight thousand eight hundred twenty-nine'); INSERT INTO t1 VALUES(10430, 4372, 'four thousand three hundred seventy-two'); INSERT INTO t1 VALUES(10431, 49099, 'forty-nine thousand ninety-nine'); INSERT INTO t1 VALUES(10432, 93065, 'ninety-three thousand sixty-five'); INSERT INTO t1 VALUES(10433, 71171, 'seventy-one thousand one hundred seventy-one'); INSERT INTO t1 VALUES(10434, 42549, 'forty-two thousand five hundred forty-nine'); INSERT INTO t1 VALUES(10435, 27017, 'twenty-seven thousand seventeen'); INSERT INTO t1 VALUES(10436, 86751, 'eighty-six thousand seven hundred fifty-one'); INSERT INTO t1 VALUES(10437, 27138, 'twenty-seven thousand one hundred thirty-eight'); INSERT INTO t1 VALUES(10438, 82559, 'eighty-two thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(10439, 47489, 'forty-seven thousand four hundred eighty-nine'); INSERT INTO t1 VALUES(10440, 84153, 'eighty-four thousand one hundred fifty-three'); INSERT INTO t1 VALUES(10441, 39475, 'thirty-nine thousand four hundred seventy-five'); INSERT INTO t1 VALUES(10442, 91342, 'ninety-one thousand three hundred forty-two'); INSERT INTO t1 VALUES(10443, 57742, 'fifty-seven thousand seven hundred forty-two'); INSERT INTO t1 VALUES(10444, 76093, 'seventy-six thousand ninety-three'); INSERT INTO t1 VALUES(10445, 14533, 'fourteen thousand five hundred thirty-three'); INSERT INTO t1 VALUES(10446, 41692, 'forty-one thousand six hundred ninety-two'); INSERT INTO t1 VALUES(10447, 76409, 'seventy-six thousand four hundred nine'); INSERT INTO t1 VALUES(10448, 25259, 'twenty-five thousand two hundred fifty-nine'); INSERT INTO t1 VALUES(10449, 28015, 'twenty-eight thousand fifteen'); INSERT INTO t1 VALUES(10450, 46882, 'forty-six thousand eight hundred eighty-two'); INSERT INTO t1 VALUES(10451, 62125, 'sixty-two thousand one hundred twenty-five'); INSERT INTO t1 VALUES(10452, 39498, 'thirty-nine thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(10453, 16375, 'sixteen thousand three hundred seventy-five'); INSERT INTO t1 VALUES(10454, 366, 'three hundred sixty-six'); INSERT INTO t1 VALUES(10455, 49826, 'forty-nine thousand eight hundred twenty-six'); INSERT INTO t1 VALUES(10456, 16615, 'sixteen thousand six hundred fifteen'); INSERT INTO t1 VALUES(10457, 70810, 'seventy thousand eight hundred ten'); INSERT INTO t1 VALUES(10458, 22783, 'twenty-two thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(10459, 81536, 'eighty-one thousand five hundred thirty-six'); INSERT INTO t1 VALUES(10460, 46889, 'forty-six thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(10461, 81677, 'eighty-one thousand six hundred seventy-seven'); INSERT INTO t1 VALUES(10462, 92648, 'ninety-two thousand six hundred forty-eight'); INSERT INTO t1 VALUES(10463, 16548, 'sixteen thousand five hundred forty-eight'); INSERT INTO t1 VALUES(10464, 91720, 'ninety-one thousand seven hundred twenty'); INSERT INTO t1 VALUES(10465, 32478, 'thirty-two thousand four hundred seventy-eight'); INSERT INTO t1 VALUES(10466, 51342, 'fifty-one thousand three hundred forty-two'); INSERT INTO t1 VALUES(10467, 90295, 'ninety thousand two hundred ninety-five'); INSERT INTO t1 VALUES(10468, 91895, 'ninety-one thousand eight hundred ninety-five'); INSERT INTO t1 VALUES(10469, 75656, 'seventy-five thousand six hundred fifty-six'); INSERT INTO t1 VALUES(10470, 84634, 'eighty-four thousand six hundred thirty-four'); INSERT INTO t1 VALUES(10471, 63427, 'sixty-three thousand four hundred twenty-seven'); INSERT INTO t1 VALUES(10472, 4723, 'four thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(10473, 74548, 'seventy-four thousand five hundred forty-eight'); INSERT INTO t1 VALUES(10474, 49181, 'forty-nine thousand one hundred eighty-one'); INSERT INTO t1 VALUES(10475, 23757, 'twenty-three thousand seven hundred fifty-seven'); INSERT INTO t1 VALUES(10476, 97934, 'ninety-seven thousand nine hundred thirty-four'); INSERT INTO t1 VALUES(10477, 26872, 'twenty-six thousand eight hundred seventy-two'); INSERT INTO t1 VALUES(10478, 37034, 'thirty-seven thousand thirty-four'); INSERT INTO t1 VALUES(10479, 53436, 'fifty-three thousand four hundred thirty-six'); INSERT INTO t1 VALUES(10480, 1302, 'one thousand three hundred two'); INSERT INTO t1 VALUES(10481, 62290, 'sixty-two thousand two hundred ninety'); INSERT INTO t1 VALUES(10482, 1358, 'one thousand three hundred fifty-eight'); INSERT INTO t1 VALUES(10483, 65278, 'sixty-five thousand two hundred seventy-eight'); INSERT INTO t1 VALUES(10484, 7980, 'seven thousand nine hundred eighty'); INSERT INTO t1 VALUES(10485, 33790, 'thirty-three thousand seven hundred ninety'); INSERT INTO t1 VALUES(10486, 32248, 'thirty-two thousand two hundred forty-eight'); INSERT INTO t1 VALUES(10487, 38282, 'thirty-eight thousand two hundred eighty-two'); INSERT INTO t1 VALUES(10488, 6176, 'six thousand one hundred seventy-six'); INSERT INTO t1 VALUES(10489, 93747, 'ninety-three thousand seven hundred forty-seven'); INSERT INTO t1 VALUES(10490, 56242, 'fifty-six thousand two hundred forty-two'); INSERT INTO t1 VALUES(10491, 94295, 'ninety-four thousand two hundred ninety-five'); INSERT INTO t1 VALUES(10492, 68486, 'sixty-eight thousand four hundred eighty-six'); INSERT INTO t1 VALUES(10493, 34229, 'thirty-four thousand two hundred twenty-nine'); INSERT INTO t1 VALUES(10494, 3293, 'three thousand two hundred ninety-three'); INSERT INTO t1 VALUES(10495, 4504, 'four thousand five hundred four'); INSERT INTO t1 VALUES(10496, 28632, 'twenty-eight thousand six hundred thirty-two'); INSERT INTO t1 VALUES(10497, 38790, 'thirty-eight thousand seven hundred ninety'); INSERT INTO t1 VALUES(10498, 87035, 'eighty-seven thousand thirty-five'); INSERT INTO t1 VALUES(10499, 36651, 'thirty-six thousand six hundred fifty-one'); INSERT INTO t1 VALUES(10500, 19730, 'nineteen thousand seven hundred thirty'); INSERT INTO t1 VALUES(10501, 16718, 'sixteen thousand seven hundred eighteen'); INSERT INTO t1 VALUES(10502, 78722, 'seventy-eight thousand seven hundred twenty-two'); INSERT INTO t1 VALUES(10503, 83953, 'eighty-three thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(10504, 63382, 'sixty-three thousand three hundred eighty-two'); INSERT INTO t1 VALUES(10505, 25135, 'twenty-five thousand one hundred thirty-five'); INSERT INTO t1 VALUES(10506, 29109, 'twenty-nine thousand one hundred nine'); INSERT INTO t1 VALUES(10507, 39209, 'thirty-nine thousand two hundred nine'); INSERT INTO t1 VALUES(10508, 15915, 'fifteen thousand nine hundred fifteen'); INSERT INTO t1 VALUES(10509, 33403, 'thirty-three thousand four hundred three'); INSERT INTO t1 VALUES(10510, 78326, 'seventy-eight thousand three hundred twenty-six'); INSERT INTO t1 VALUES(10511, 59390, 'fifty-nine thousand three hundred ninety'); INSERT INTO t1 VALUES(10512, 13292, 'thirteen thousand two hundred ninety-two'); INSERT INTO t1 VALUES(10513, 2416, 'two thousand four hundred sixteen'); INSERT INTO t1 VALUES(10514, 10734, 'ten thousand seven hundred thirty-four'); INSERT INTO t1 VALUES(10515, 69376, 'sixty-nine thousand three hundred seventy-six'); INSERT INTO t1 VALUES(10516, 33638, 'thirty-three thousand six hundred thirty-eight'); INSERT INTO t1 VALUES(10517, 62176, 'sixty-two thousand one hundred seventy-six'); INSERT INTO t1 VALUES(10518, 48737, 'forty-eight thousand seven hundred thirty-seven'); INSERT INTO t1 VALUES(10519, 6038, 'six thousand thirty-eight'); INSERT INTO t1 VALUES(10520, 98846, 'ninety-eight thousand eight hundred forty-six'); INSERT INTO t1 VALUES(10521, 67560, 'sixty-seven thousand five hundred sixty'); INSERT INTO t1 VALUES(10522, 21302, 'twenty-one thousand three hundred two'); INSERT INTO t1 VALUES(10523, 32884, 'thirty-two thousand eight hundred eighty-four'); INSERT INTO t1 VALUES(10524, 83442, 'eighty-three thousand four hundred forty-two'); INSERT INTO t1 VALUES(10525, 99394, 'ninety-nine thousand three hundred ninety-four'); INSERT INTO t1 VALUES(10526, 30752, 'thirty thousand seven hundred fifty-two'); INSERT INTO t1 VALUES(10527, 24327, 'twenty-four thousand three hundred twenty-seven'); INSERT INTO t1 VALUES(10528, 12300, 'twelve thousand three hundred'); INSERT INTO t1 VALUES(10529, 7667, 'seven thousand six hundred sixty-seven'); INSERT INTO t1 VALUES(10530, 75168, 'seventy-five thousand one hundred sixty-eight'); INSERT INTO t1 VALUES(10531, 83186, 'eighty-three thousand one hundred eighty-six'); INSERT INTO t1 VALUES(10532, 55805, 'fifty-five thousand eight hundred five'); INSERT INTO t1 VALUES(10533, 14512, 'fourteen thousand five hundred twelve'); INSERT INTO t1 VALUES(10534, 29250, 'twenty-nine thousand two hundred fifty'); INSERT INTO t1 VALUES(10535, 17088, 'seventeen thousand eighty-eight'); INSERT INTO t1 VALUES(10536, 29702, 'twenty-nine thousand seven hundred two'); INSERT INTO t1 VALUES(10537, 33326, 'thirty-three thousand three hundred twenty-six'); INSERT INTO t1 VALUES(10538, 45640, 'forty-five thousand six hundred forty'); INSERT INTO t1 VALUES(10539, 43281, 'forty-three thousand two hundred eighty-one'); INSERT INTO t1 VALUES(10540, 28638, 'twenty-eight thousand six hundred thirty-eight'); INSERT INTO t1 VALUES(10541, 7248, 'seven thousand two hundred forty-eight'); INSERT INTO t1 VALUES(10542, 22783, 'twenty-two thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(10543, 97585, 'ninety-seven thousand five hundred eighty-five'); INSERT INTO t1 VALUES(10544, 34460, 'thirty-four thousand four hundred sixty'); INSERT INTO t1 VALUES(10545, 59723, 'fifty-nine thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(10546, 98634, 'ninety-eight thousand six hundred thirty-four'); INSERT INTO t1 VALUES(10547, 87620, 'eighty-seven thousand six hundred twenty'); INSERT INTO t1 VALUES(10548, 27883, 'twenty-seven thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(10549, 54861, 'fifty-four thousand eight hundred sixty-one'); INSERT INTO t1 VALUES(10550, 32368, 'thirty-two thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(10551, 17685, 'seventeen thousand six hundred eighty-five'); INSERT INTO t1 VALUES(10552, 37192, 'thirty-seven thousand one hundred ninety-two'); INSERT INTO t1 VALUES(10553, 44316, 'forty-four thousand three hundred sixteen'); INSERT INTO t1 VALUES(10554, 43834, 'forty-three thousand eight hundred thirty-four'); INSERT INTO t1 VALUES(10555, 49891, 'forty-nine thousand eight hundred ninety-one'); INSERT INTO t1 VALUES(10556, 78843, 'seventy-eight thousand eight hundred forty-three'); INSERT INTO t1 VALUES(10557, 9979, 'nine thousand nine hundred seventy-nine'); INSERT INTO t1 VALUES(10558, 67425, 'sixty-seven thousand four hundred twenty-five'); INSERT INTO t1 VALUES(10559, 47584, 'forty-seven thousand five hundred eighty-four'); INSERT INTO t1 VALUES(10560, 68505, 'sixty-eight thousand five hundred five'); INSERT INTO t1 VALUES(10561, 75266, 'seventy-five thousand two hundred sixty-six'); INSERT INTO t1 VALUES(10562, 45621, 'forty-five thousand six hundred twenty-one'); INSERT INTO t1 VALUES(10563, 55232, 'fifty-five thousand two hundred thirty-two'); INSERT INTO t1 VALUES(10564, 86211, 'eighty-six thousand two hundred eleven'); INSERT INTO t1 VALUES(10565, 1088, 'one thousand eighty-eight'); INSERT INTO t1 VALUES(10566, 32840, 'thirty-two thousand eight hundred forty'); INSERT INTO t1 VALUES(10567, 5792, 'five thousand seven hundred ninety-two'); INSERT INTO t1 VALUES(10568, 62030, 'sixty-two thousand thirty'); INSERT INTO t1 VALUES(10569, 6802, 'six thousand eight hundred two'); INSERT INTO t1 VALUES(10570, 46502, 'forty-six thousand five hundred two'); INSERT INTO t1 VALUES(10571, 14090, 'fourteen thousand ninety'); INSERT INTO t1 VALUES(10572, 95526, 'ninety-five thousand five hundred twenty-six'); INSERT INTO t1 VALUES(10573, 6289, 'six thousand two hundred eighty-nine'); INSERT INTO t1 VALUES(10574, 23207, 'twenty-three thousand two hundred seven'); INSERT INTO t1 VALUES(10575, 15063, 'fifteen thousand sixty-three'); INSERT INTO t1 VALUES(10576, 90094, 'ninety thousand ninety-four'); INSERT INTO t1 VALUES(10577, 85139, 'eighty-five thousand one hundred thirty-nine'); INSERT INTO t1 VALUES(10578, 63464, 'sixty-three thousand four hundred sixty-four'); INSERT INTO t1 VALUES(10579, 28583, 'twenty-eight thousand five hundred eighty-three'); INSERT INTO t1 VALUES(10580, 87721, 'eighty-seven thousand seven hundred twenty-one'); INSERT INTO t1 VALUES(10581, 4356, 'four thousand three hundred fifty-six'); INSERT INTO t1 VALUES(10582, 24643, 'twenty-four thousand six hundred forty-three'); INSERT INTO t1 VALUES(10583, 90945, 'ninety thousand nine hundred forty-five'); INSERT INTO t1 VALUES(10584, 69791, 'sixty-nine thousand seven hundred ninety-one'); INSERT INTO t1 VALUES(10585, 2383, 'two thousand three hundred eighty-three'); INSERT INTO t1 VALUES(10586, 52937, 'fifty-two thousand nine hundred thirty-seven'); INSERT INTO t1 VALUES(10587, 91666, 'ninety-one thousand six hundred sixty-six'); INSERT INTO t1 VALUES(10588, 54807, 'fifty-four thousand eight hundred seven'); INSERT INTO t1 VALUES(10589, 32736, 'thirty-two thousand seven hundred thirty-six'); INSERT INTO t1 VALUES(10590, 72013, 'seventy-two thousand thirteen'); INSERT INTO t1 VALUES(10591, 10578, 'ten thousand five hundred seventy-eight'); INSERT INTO t1 VALUES(10592, 60126, 'sixty thousand one hundred twenty-six'); INSERT INTO t1 VALUES(10593, 50458, 'fifty thousand four hundred fifty-eight'); INSERT INTO t1 VALUES(10594, 13667, 'thirteen thousand six hundred sixty-seven'); INSERT INTO t1 VALUES(10595, 61625, 'sixty-one thousand six hundred twenty-five'); INSERT INTO t1 VALUES(10596, 30657, 'thirty thousand six hundred fifty-seven'); INSERT INTO t1 VALUES(10597, 42087, 'forty-two thousand eighty-seven'); INSERT INTO t1 VALUES(10598, 53681, 'fifty-three thousand six hundred eighty-one'); INSERT INTO t1 VALUES(10599, 89124, 'eighty-nine thousand one hundred twenty-four'); INSERT INTO t1 VALUES(10600, 86320, 'eighty-six thousand three hundred twenty'); INSERT INTO t1 VALUES(10601, 32275, 'thirty-two thousand two hundred seventy-five'); INSERT INTO t1 VALUES(10602, 57065, 'fifty-seven thousand sixty-five'); INSERT INTO t1 VALUES(10603, 98090, 'ninety-eight thousand ninety'); INSERT INTO t1 VALUES(10604, 43847, 'forty-three thousand eight hundred forty-seven'); INSERT INTO t1 VALUES(10605, 29163, 'twenty-nine thousand one hundred sixty-three'); INSERT INTO t1 VALUES(10606, 7137, 'seven thousand one hundred thirty-seven'); INSERT INTO t1 VALUES(10607, 91483, 'ninety-one thousand four hundred eighty-three'); INSERT INTO t1 VALUES(10608, 3969, 'three thousand nine hundred sixty-nine'); INSERT INTO t1 VALUES(10609, 10768, 'ten thousand seven hundred sixty-eight'); INSERT INTO t1 VALUES(10610, 81279, 'eighty-one thousand two hundred seventy-nine'); INSERT INTO t1 VALUES(10611, 25460, 'twenty-five thousand four hundred sixty'); INSERT INTO t1 VALUES(10612, 89829, 'eighty-nine thousand eight hundred twenty-nine'); INSERT INTO t1 VALUES(10613, 89214, 'eighty-nine thousand two hundred fourteen'); INSERT INTO t1 VALUES(10614, 52349, 'fifty-two thousand three hundred forty-nine'); INSERT INTO t1 VALUES(10615, 17904, 'seventeen thousand nine hundred four'); INSERT INTO t1 VALUES(10616, 55110, 'fifty-five thousand one hundred ten'); INSERT INTO t1 VALUES(10617, 81556, 'eighty-one thousand five hundred fifty-six'); INSERT INTO t1 VALUES(10618, 15796, 'fifteen thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(10619, 3036, 'three thousand thirty-six'); INSERT INTO t1 VALUES(10620, 80473, 'eighty thousand four hundred seventy-three'); INSERT INTO t1 VALUES(10621, 12116, 'twelve thousand one hundred sixteen'); INSERT INTO t1 VALUES(10622, 4885, 'four thousand eight hundred eighty-five'); INSERT INTO t1 VALUES(10623, 39420, 'thirty-nine thousand four hundred twenty'); INSERT INTO t1 VALUES(10624, 26840, 'twenty-six thousand eight hundred forty'); INSERT INTO t1 VALUES(10625, 41718, 'forty-one thousand seven hundred eighteen'); INSERT INTO t1 VALUES(10626, 64353, 'sixty-four thousand three hundred fifty-three'); INSERT INTO t1 VALUES(10627, 32877, 'thirty-two thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(10628, 18902, 'eighteen thousand nine hundred two'); INSERT INTO t1 VALUES(10629, 64933, 'sixty-four thousand nine hundred thirty-three'); INSERT INTO t1 VALUES(10630, 35253, 'thirty-five thousand two hundred fifty-three'); INSERT INTO t1 VALUES(10631, 39960, 'thirty-nine thousand nine hundred sixty'); INSERT INTO t1 VALUES(10632, 69788, 'sixty-nine thousand seven hundred eighty-eight'); INSERT INTO t1 VALUES(10633, 82471, 'eighty-two thousand four hundred seventy-one'); INSERT INTO t1 VALUES(10634, 23299, 'twenty-three thousand two hundred ninety-nine'); INSERT INTO t1 VALUES(10635, 44518, 'forty-four thousand five hundred eighteen'); INSERT INTO t1 VALUES(10636, 83289, 'eighty-three thousand two hundred eighty-nine'); INSERT INTO t1 VALUES(10637, 12959, 'twelve thousand nine hundred fifty-nine'); INSERT INTO t1 VALUES(10638, 62508, 'sixty-two thousand five hundred eight'); INSERT INTO t1 VALUES(10639, 35183, 'thirty-five thousand one hundred eighty-three'); INSERT INTO t1 VALUES(10640, 69241, 'sixty-nine thousand two hundred forty-one'); INSERT INTO t1 VALUES(10641, 36152, 'thirty-six thousand one hundred fifty-two'); INSERT INTO t1 VALUES(10642, 52952, 'fifty-two thousand nine hundred fifty-two'); INSERT INTO t1 VALUES(10643, 8415, 'eight thousand four hundred fifteen'); INSERT INTO t1 VALUES(10644, 75389, 'seventy-five thousand three hundred eighty-nine'); INSERT INTO t1 VALUES(10645, 3164, 'three thousand one hundred sixty-four'); INSERT INTO t1 VALUES(10646, 63037, 'sixty-three thousand thirty-seven'); INSERT INTO t1 VALUES(10647, 93929, 'ninety-three thousand nine hundred twenty-nine'); INSERT INTO t1 VALUES(10648, 81547, 'eighty-one thousand five hundred forty-seven'); INSERT INTO t1 VALUES(10649, 5456, 'five thousand four hundred fifty-six'); INSERT INTO t1 VALUES(10650, 82321, 'eighty-two thousand three hundred twenty-one'); INSERT INTO t1 VALUES(10651, 92415, 'ninety-two thousand four hundred fifteen'); INSERT INTO t1 VALUES(10652, 54122, 'fifty-four thousand one hundred twenty-two'); INSERT INTO t1 VALUES(10653, 84559, 'eighty-four thousand five hundred fifty-nine'); INSERT INTO t1 VALUES(10654, 77833, 'seventy-seven thousand eight hundred thirty-three'); INSERT INTO t1 VALUES(10655, 96560, 'ninety-six thousand five hundred sixty'); INSERT INTO t1 VALUES(10656, 34949, 'thirty-four thousand nine hundred forty-nine'); INSERT INTO t1 VALUES(10657, 12036, 'twelve thousand thirty-six'); INSERT INTO t1 VALUES(10658, 27239, 'twenty-seven thousand two hundred thirty-nine'); INSERT INTO t1 VALUES(10659, 84824, 'eighty-four thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(10660, 77815, 'seventy-seven thousand eight hundred fifteen'); INSERT INTO t1 VALUES(10661, 31557, 'thirty-one thousand five hundred fifty-seven'); INSERT INTO t1 VALUES(10662, 22811, 'twenty-two thousand eight hundred eleven'); INSERT INTO t1 VALUES(10663, 9110, 'nine thousand one hundred ten'); INSERT INTO t1 VALUES(10664, 95956, 'ninety-five thousand nine hundred fifty-six'); INSERT INTO t1 VALUES(10665, 21138, 'twenty-one thousand one hundred thirty-eight'); INSERT INTO t1 VALUES(10666, 94187, 'ninety-four thousand one hundred eighty-seven'); INSERT INTO t1 VALUES(10667, 11080, 'eleven thousand eighty'); INSERT INTO t1 VALUES(10668, 19071, 'nineteen thousand seventy-one'); INSERT INTO t1 VALUES(10669, 95137, 'ninety-five thousand one hundred thirty-seven'); INSERT INTO t1 VALUES(10670, 79742, 'seventy-nine thousand seven hundred forty-two'); INSERT INTO t1 VALUES(10671, 83178, 'eighty-three thousand one hundred seventy-eight'); INSERT INTO t1 VALUES(10672, 92831, 'ninety-two thousand eight hundred thirty-one'); INSERT INTO t1 VALUES(10673, 88885, 'eighty-eight thousand eight hundred eighty-five'); INSERT INTO t1 VALUES(10674, 28689, 'twenty-eight thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(10675, 41738, 'forty-one thousand seven hundred thirty-eight'); INSERT INTO t1 VALUES(10676, 97645, 'ninety-seven thousand six hundred forty-five'); INSERT INTO t1 VALUES(10677, 68315, 'sixty-eight thousand three hundred fifteen'); INSERT INTO t1 VALUES(10678, 20855, 'twenty thousand eight hundred fifty-five'); INSERT INTO t1 VALUES(10679, 95266, 'ninety-five thousand two hundred sixty-six'); INSERT INTO t1 VALUES(10680, 46889, 'forty-six thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(10681, 59085, 'fifty-nine thousand eighty-five'); INSERT INTO t1 VALUES(10682, 27817, 'twenty-seven thousand eight hundred seventeen'); INSERT INTO t1 VALUES(10683, 99627, 'ninety-nine thousand six hundred twenty-seven'); INSERT INTO t1 VALUES(10684, 25279, 'twenty-five thousand two hundred seventy-nine'); INSERT INTO t1 VALUES(10685, 32212, 'thirty-two thousand two hundred twelve'); INSERT INTO t1 VALUES(10686, 57434, 'fifty-seven thousand four hundred thirty-four'); INSERT INTO t1 VALUES(10687, 20739, 'twenty thousand seven hundred thirty-nine'); INSERT INTO t1 VALUES(10688, 4313, 'four thousand three hundred thirteen'); INSERT INTO t1 VALUES(10689, 53402, 'fifty-three thousand four hundred two'); INSERT INTO t1 VALUES(10690, 59917, 'fifty-nine thousand nine hundred seventeen'); INSERT INTO t1 VALUES(10691, 46716, 'forty-six thousand seven hundred sixteen'); INSERT INTO t1 VALUES(10692, 41271, 'forty-one thousand two hundred seventy-one'); INSERT INTO t1 VALUES(10693, 13051, 'thirteen thousand fifty-one'); INSERT INTO t1 VALUES(10694, 70878, 'seventy thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(10695, 73383, 'seventy-three thousand three hundred eighty-three'); INSERT INTO t1 VALUES(10696, 26048, 'twenty-six thousand forty-eight'); INSERT INTO t1 VALUES(10697, 18998, 'eighteen thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(10698, 10264, 'ten thousand two hundred sixty-four'); INSERT INTO t1 VALUES(10699, 62846, 'sixty-two thousand eight hundred forty-six'); INSERT INTO t1 VALUES(10700, 14514, 'fourteen thousand five hundred fourteen'); INSERT INTO t1 VALUES(10701, 22221, 'twenty-two thousand two hundred twenty-one'); INSERT INTO t1 VALUES(10702, 74900, 'seventy-four thousand nine hundred'); INSERT INTO t1 VALUES(10703, 10563, 'ten thousand five hundred sixty-three'); INSERT INTO t1 VALUES(10704, 18949, 'eighteen thousand nine hundred forty-nine'); INSERT INTO t1 VALUES(10705, 95105, 'ninety-five thousand one hundred five'); INSERT INTO t1 VALUES(10706, 5983, 'five thousand nine hundred eighty-three'); INSERT INTO t1 VALUES(10707, 24749, 'twenty-four thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(10708, 84493, 'eighty-four thousand four hundred ninety-three'); INSERT INTO t1 VALUES(10709, 86999, 'eighty-six thousand nine hundred ninety-nine'); INSERT INTO t1 VALUES(10710, 53698, 'fifty-three thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(10711, 86644, 'eighty-six thousand six hundred forty-four'); INSERT INTO t1 VALUES(10712, 57683, 'fifty-seven thousand six hundred eighty-three'); INSERT INTO t1 VALUES(10713, 43516, 'forty-three thousand five hundred sixteen'); INSERT INTO t1 VALUES(10714, 50879, 'fifty thousand eight hundred seventy-nine'); INSERT INTO t1 VALUES(10715, 1550, 'one thousand five hundred fifty'); INSERT INTO t1 VALUES(10716, 37513, 'thirty-seven thousand five hundred thirteen'); INSERT INTO t1 VALUES(10717, 51405, 'fifty-one thousand four hundred five'); INSERT INTO t1 VALUES(10718, 12167, 'twelve thousand one hundred sixty-seven'); INSERT INTO t1 VALUES(10719, 64332, 'sixty-four thousand three hundred thirty-two'); INSERT INTO t1 VALUES(10720, 82332, 'eighty-two thousand three hundred thirty-two'); INSERT INTO t1 VALUES(10721, 51731, 'fifty-one thousand seven hundred thirty-one'); INSERT INTO t1 VALUES(10722, 72888, 'seventy-two thousand eight hundred eighty-eight'); INSERT INTO t1 VALUES(10723, 20215, 'twenty thousand two hundred fifteen'); INSERT INTO t1 VALUES(10724, 62782, 'sixty-two thousand seven hundred eighty-two'); INSERT INTO t1 VALUES(10725, 16241, 'sixteen thousand two hundred forty-one'); INSERT INTO t1 VALUES(10726, 96359, 'ninety-six thousand three hundred fifty-nine'); INSERT INTO t1 VALUES(10727, 98429, 'ninety-eight thousand four hundred twenty-nine'); INSERT INTO t1 VALUES(10728, 56311, 'fifty-six thousand three hundred eleven'); INSERT INTO t1 VALUES(10729, 49114, 'forty-nine thousand one hundred fourteen'); INSERT INTO t1 VALUES(10730, 99936, 'ninety-nine thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(10731, 32643, 'thirty-two thousand six hundred forty-three'); INSERT INTO t1 VALUES(10732, 90813, 'ninety thousand eight hundred thirteen'); INSERT INTO t1 VALUES(10733, 74799, 'seventy-four thousand seven hundred ninety-nine'); INSERT INTO t1 VALUES(10734, 4500, 'four thousand five hundred'); INSERT INTO t1 VALUES(10735, 15242, 'fifteen thousand two hundred forty-two'); INSERT INTO t1 VALUES(10736, 42398, 'forty-two thousand three hundred ninety-eight'); INSERT INTO t1 VALUES(10737, 76599, 'seventy-six thousand five hundred ninety-nine'); INSERT INTO t1 VALUES(10738, 96217, 'ninety-six thousand two hundred seventeen'); INSERT INTO t1 VALUES(10739, 80722, 'eighty thousand seven hundred twenty-two'); INSERT INTO t1 VALUES(10740, 15274, 'fifteen thousand two hundred seventy-four'); INSERT INTO t1 VALUES(10741, 90567, 'ninety thousand five hundred sixty-seven'); INSERT INTO t1 VALUES(10742, 11330, 'eleven thousand three hundred thirty'); INSERT INTO t1 VALUES(10743, 31315, 'thirty-one thousand three hundred fifteen'); INSERT INTO t1 VALUES(10744, 45306, 'forty-five thousand three hundred six'); INSERT INTO t1 VALUES(10745, 41262, 'forty-one thousand two hundred sixty-two'); INSERT INTO t1 VALUES(10746, 57074, 'fifty-seven thousand seventy-four'); INSERT INTO t1 VALUES(10747, 52000, 'fifty-two thousand'); INSERT INTO t1 VALUES(10748, 61762, 'sixty-one thousand seven hundred sixty-two'); INSERT INTO t1 VALUES(10749, 25799, 'twenty-five thousand seven hundred ninety-nine'); INSERT INTO t1 VALUES(10750, 70916, 'seventy thousand nine hundred sixteen'); INSERT INTO t1 VALUES(10751, 89090, 'eighty-nine thousand ninety'); INSERT INTO t1 VALUES(10752, 66904, 'sixty-six thousand nine hundred four'); INSERT INTO t1 VALUES(10753, 60036, 'sixty thousand thirty-six'); INSERT INTO t1 VALUES(10754, 49730, 'forty-nine thousand seven hundred thirty'); INSERT INTO t1 VALUES(10755, 59397, 'fifty-nine thousand three hundred ninety-seven'); INSERT INTO t1 VALUES(10756, 66385, 'sixty-six thousand three hundred eighty-five'); INSERT INTO t1 VALUES(10757, 59896, 'fifty-nine thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(10758, 87689, 'eighty-seven thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(10759, 71379, 'seventy-one thousand three hundred seventy-nine'); INSERT INTO t1 VALUES(10760, 64816, 'sixty-four thousand eight hundred sixteen'); INSERT INTO t1 VALUES(10761, 12503, 'twelve thousand five hundred three'); INSERT INTO t1 VALUES(10762, 78389, 'seventy-eight thousand three hundred eighty-nine'); INSERT INTO t1 VALUES(10763, 78353, 'seventy-eight thousand three hundred fifty-three'); INSERT INTO t1 VALUES(10764, 9354, 'nine thousand three hundred fifty-four'); INSERT INTO t1 VALUES(10765, 64345, 'sixty-four thousand three hundred forty-five'); INSERT INTO t1 VALUES(10766, 11837, 'eleven thousand eight hundred thirty-seven'); INSERT INTO t1 VALUES(10767, 21734, 'twenty-one thousand seven hundred thirty-four'); INSERT INTO t1 VALUES(10768, 94695, 'ninety-four thousand six hundred ninety-five'); INSERT INTO t1 VALUES(10769, 48144, 'forty-eight thousand one hundred forty-four'); INSERT INTO t1 VALUES(10770, 48526, 'forty-eight thousand five hundred twenty-six'); INSERT INTO t1 VALUES(10771, 9288, 'nine thousand two hundred eighty-eight'); INSERT INTO t1 VALUES(10772, 29729, 'twenty-nine thousand seven hundred twenty-nine'); INSERT INTO t1 VALUES(10773, 23390, 'twenty-three thousand three hundred ninety'); INSERT INTO t1 VALUES(10774, 96093, 'ninety-six thousand ninety-three'); INSERT INTO t1 VALUES(10775, 96955, 'ninety-six thousand nine hundred fifty-five'); INSERT INTO t1 VALUES(10776, 46608, 'forty-six thousand six hundred eight'); INSERT INTO t1 VALUES(10777, 81580, 'eighty-one thousand five hundred eighty'); INSERT INTO t1 VALUES(10778, 39547, 'thirty-nine thousand five hundred forty-seven'); INSERT INTO t1 VALUES(10779, 63311, 'sixty-three thousand three hundred eleven'); INSERT INTO t1 VALUES(10780, 69091, 'sixty-nine thousand ninety-one'); INSERT INTO t1 VALUES(10781, 14018, 'fourteen thousand eighteen'); INSERT INTO t1 VALUES(10782, 8312, 'eight thousand three hundred twelve'); INSERT INTO t1 VALUES(10783, 33064, 'thirty-three thousand sixty-four'); INSERT INTO t1 VALUES(10784, 61080, 'sixty-one thousand eighty'); INSERT INTO t1 VALUES(10785, 68978, 'sixty-eight thousand nine hundred seventy-eight'); INSERT INTO t1 VALUES(10786, 58771, 'fifty-eight thousand seven hundred seventy-one'); INSERT INTO t1 VALUES(10787, 11867, 'eleven thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(10788, 2191, 'two thousand one hundred ninety-one'); INSERT INTO t1 VALUES(10789, 63469, 'sixty-three thousand four hundred sixty-nine'); INSERT INTO t1 VALUES(10790, 96149, 'ninety-six thousand one hundred forty-nine'); INSERT INTO t1 VALUES(10791, 22426, 'twenty-two thousand four hundred twenty-six'); INSERT INTO t1 VALUES(10792, 66869, 'sixty-six thousand eight hundred sixty-nine'); INSERT INTO t1 VALUES(10793, 47522, 'forty-seven thousand five hundred twenty-two'); INSERT INTO t1 VALUES(10794, 62202, 'sixty-two thousand two hundred two'); INSERT INTO t1 VALUES(10795, 22152, 'twenty-two thousand one hundred fifty-two'); INSERT INTO t1 VALUES(10796, 96885, 'ninety-six thousand eight hundred eighty-five'); INSERT INTO t1 VALUES(10797, 88877, 'eighty-eight thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(10798, 33183, 'thirty-three thousand one hundred eighty-three'); INSERT INTO t1 VALUES(10799, 33194, 'thirty-three thousand one hundred ninety-four'); INSERT INTO t1 VALUES(10800, 38503, 'thirty-eight thousand five hundred three'); INSERT INTO t1 VALUES(10801, 23378, 'twenty-three thousand three hundred seventy-eight'); INSERT INTO t1 VALUES(10802, 65338, 'sixty-five thousand three hundred thirty-eight'); INSERT INTO t1 VALUES(10803, 49623, 'forty-nine thousand six hundred twenty-three'); INSERT INTO t1 VALUES(10804, 53627, 'fifty-three thousand six hundred twenty-seven'); INSERT INTO t1 VALUES(10805, 96028, 'ninety-six thousand twenty-eight'); INSERT INTO t1 VALUES(10806, 12055, 'twelve thousand fifty-five'); INSERT INTO t1 VALUES(10807, 23547, 'twenty-three thousand five hundred forty-seven'); INSERT INTO t1 VALUES(10808, 90071, 'ninety thousand seventy-one'); INSERT INTO t1 VALUES(10809, 93342, 'ninety-three thousand three hundred forty-two'); INSERT INTO t1 VALUES(10810, 20092, 'twenty thousand ninety-two'); INSERT INTO t1 VALUES(10811, 49996, 'forty-nine thousand nine hundred ninety-six'); INSERT INTO t1 VALUES(10812, 11784, 'eleven thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(10813, 64869, 'sixty-four thousand eight hundred sixty-nine'); INSERT INTO t1 VALUES(10814, 33483, 'thirty-three thousand four hundred eighty-three'); INSERT INTO t1 VALUES(10815, 91058, 'ninety-one thousand fifty-eight'); INSERT INTO t1 VALUES(10816, 32646, 'thirty-two thousand six hundred forty-six'); INSERT INTO t1 VALUES(10817, 17269, 'seventeen thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(10818, 82328, 'eighty-two thousand three hundred twenty-eight'); INSERT INTO t1 VALUES(10819, 9053, 'nine thousand fifty-three'); INSERT INTO t1 VALUES(10820, 1815, 'one thousand eight hundred fifteen'); INSERT INTO t1 VALUES(10821, 76024, 'seventy-six thousand twenty-four'); INSERT INTO t1 VALUES(10822, 45566, 'forty-five thousand five hundred sixty-six'); INSERT INTO t1 VALUES(10823, 7681, 'seven thousand six hundred eighty-one'); INSERT INTO t1 VALUES(10824, 75631, 'seventy-five thousand six hundred thirty-one'); INSERT INTO t1 VALUES(10825, 19416, 'nineteen thousand four hundred sixteen'); INSERT INTO t1 VALUES(10826, 34508, 'thirty-four thousand five hundred eight'); INSERT INTO t1 VALUES(10827, 86188, 'eighty-six thousand one hundred eighty-eight'); INSERT INTO t1 VALUES(10828, 57730, 'fifty-seven thousand seven hundred thirty'); INSERT INTO t1 VALUES(10829, 78122, 'seventy-eight thousand one hundred twenty-two'); INSERT INTO t1 VALUES(10830, 57658, 'fifty-seven thousand six hundred fifty-eight'); INSERT INTO t1 VALUES(10831, 23935, 'twenty-three thousand nine hundred thirty-five'); INSERT INTO t1 VALUES(10832, 8509, 'eight thousand five hundred nine'); INSERT INTO t1 VALUES(10833, 41998, 'forty-one thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(10834, 22443, 'twenty-two thousand four hundred forty-three'); INSERT INTO t1 VALUES(10835, 34240, 'thirty-four thousand two hundred forty'); INSERT INTO t1 VALUES(10836, 58526, 'fifty-eight thousand five hundred twenty-six'); INSERT INTO t1 VALUES(10837, 4787, 'four thousand seven hundred eighty-seven'); INSERT INTO t1 VALUES(10838, 67129, 'sixty-seven thousand one hundred twenty-nine'); INSERT INTO t1 VALUES(10839, 62453, 'sixty-two thousand four hundred fifty-three'); INSERT INTO t1 VALUES(10840, 79586, 'seventy-nine thousand five hundred eighty-six'); INSERT INTO t1 VALUES(10841, 7493, 'seven thousand four hundred ninety-three'); INSERT INTO t1 VALUES(10842, 12259, 'twelve thousand two hundred fifty-nine'); INSERT INTO t1 VALUES(10843, 52059, 'fifty-two thousand fifty-nine'); INSERT INTO t1 VALUES(10844, 83337, 'eighty-three thousand three hundred thirty-seven'); INSERT INTO t1 VALUES(10845, 32091, 'thirty-two thousand ninety-one'); INSERT INTO t1 VALUES(10846, 11790, 'eleven thousand seven hundred ninety'); INSERT INTO t1 VALUES(10847, 98420, 'ninety-eight thousand four hundred twenty'); INSERT INTO t1 VALUES(10848, 45711, 'forty-five thousand seven hundred eleven'); INSERT INTO t1 VALUES(10849, 51695, 'fifty-one thousand six hundred ninety-five'); INSERT INTO t1 VALUES(10850, 96850, 'ninety-six thousand eight hundred fifty'); INSERT INTO t1 VALUES(10851, 98458, 'ninety-eight thousand four hundred fifty-eight'); INSERT INTO t1 VALUES(10852, 35011, 'thirty-five thousand eleven'); INSERT INTO t1 VALUES(10853, 14683, 'fourteen thousand six hundred eighty-three'); INSERT INTO t1 VALUES(10854, 96888, 'ninety-six thousand eight hundred eighty-eight'); INSERT INTO t1 VALUES(10855, 82426, 'eighty-two thousand four hundred twenty-six'); INSERT INTO t1 VALUES(10856, 11234, 'eleven thousand two hundred thirty-four'); INSERT INTO t1 VALUES(10857, 85034, 'eighty-five thousand thirty-four'); INSERT INTO t1 VALUES(10858, 81274, 'eighty-one thousand two hundred seventy-four'); INSERT INTO t1 VALUES(10859, 82230, 'eighty-two thousand two hundred thirty'); INSERT INTO t1 VALUES(10860, 85989, 'eighty-five thousand nine hundred eighty-nine'); INSERT INTO t1 VALUES(10861, 66536, 'sixty-six thousand five hundred thirty-six'); INSERT INTO t1 VALUES(10862, 33191, 'thirty-three thousand one hundred ninety-one'); INSERT INTO t1 VALUES(10863, 23539, 'twenty-three thousand five hundred thirty-nine'); INSERT INTO t1 VALUES(10864, 74767, 'seventy-four thousand seven hundred sixty-seven'); INSERT INTO t1 VALUES(10865, 88593, 'eighty-eight thousand five hundred ninety-three'); INSERT INTO t1 VALUES(10866, 93031, 'ninety-three thousand thirty-one'); INSERT INTO t1 VALUES(10867, 67221, 'sixty-seven thousand two hundred twenty-one'); INSERT INTO t1 VALUES(10868, 69105, 'sixty-nine thousand one hundred five'); INSERT INTO t1 VALUES(10869, 79347, 'seventy-nine thousand three hundred forty-seven'); INSERT INTO t1 VALUES(10870, 27148, 'twenty-seven thousand one hundred forty-eight'); INSERT INTO t1 VALUES(10871, 39436, 'thirty-nine thousand four hundred thirty-six'); INSERT INTO t1 VALUES(10872, 14979, 'fourteen thousand nine hundred seventy-nine'); INSERT INTO t1 VALUES(10873, 95073, 'ninety-five thousand seventy-three'); INSERT INTO t1 VALUES(10874, 22359, 'twenty-two thousand three hundred fifty-nine'); INSERT INTO t1 VALUES(10875, 65326, 'sixty-five thousand three hundred twenty-six'); INSERT INTO t1 VALUES(10876, 38853, 'thirty-eight thousand eight hundred fifty-three'); INSERT INTO t1 VALUES(10877, 40785, 'forty thousand seven hundred eighty-five'); INSERT INTO t1 VALUES(10878, 76787, 'seventy-six thousand seven hundred eighty-seven'); INSERT INTO t1 VALUES(10879, 23233, 'twenty-three thousand two hundred thirty-three'); INSERT INTO t1 VALUES(10880, 88496, 'eighty-eight thousand four hundred ninety-six'); INSERT INTO t1 VALUES(10881, 96468, 'ninety-six thousand four hundred sixty-eight'); INSERT INTO t1 VALUES(10882, 50236, 'fifty thousand two hundred thirty-six'); INSERT INTO t1 VALUES(10883, 27193, 'twenty-seven thousand one hundred ninety-three'); INSERT INTO t1 VALUES(10884, 461, 'four hundred sixty-one'); INSERT INTO t1 VALUES(10885, 51517, 'fifty-one thousand five hundred seventeen'); INSERT INTO t1 VALUES(10886, 66530, 'sixty-six thousand five hundred thirty'); INSERT INTO t1 VALUES(10887, 97728, 'ninety-seven thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(10888, 66902, 'sixty-six thousand nine hundred two'); INSERT INTO t1 VALUES(10889, 85268, 'eighty-five thousand two hundred sixty-eight'); INSERT INTO t1 VALUES(10890, 46403, 'forty-six thousand four hundred three'); INSERT INTO t1 VALUES(10891, 252, 'two hundred fifty-two'); INSERT INTO t1 VALUES(10892, 54126, 'fifty-four thousand one hundred twenty-six'); INSERT INTO t1 VALUES(10893, 79876, 'seventy-nine thousand eight hundred seventy-six'); INSERT INTO t1 VALUES(10894, 14464, 'fourteen thousand four hundred sixty-four'); INSERT INTO t1 VALUES(10895, 28362, 'twenty-eight thousand three hundred sixty-two'); INSERT INTO t1 VALUES(10896, 19447, 'nineteen thousand four hundred forty-seven'); INSERT INTO t1 VALUES(10897, 13730, 'thirteen thousand seven hundred thirty'); INSERT INTO t1 VALUES(10898, 97977, 'ninety-seven thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(10899, 59453, 'fifty-nine thousand four hundred fifty-three'); INSERT INTO t1 VALUES(10900, 27139, 'twenty-seven thousand one hundred thirty-nine'); INSERT INTO t1 VALUES(10901, 17937, 'seventeen thousand nine hundred thirty-seven'); INSERT INTO t1 VALUES(10902, 51267, 'fifty-one thousand two hundred sixty-seven'); INSERT INTO t1 VALUES(10903, 85070, 'eighty-five thousand seventy'); INSERT INTO t1 VALUES(10904, 29780, 'twenty-nine thousand seven hundred eighty'); INSERT INTO t1 VALUES(10905, 25436, 'twenty-five thousand four hundred thirty-six'); INSERT INTO t1 VALUES(10906, 8806, 'eight thousand eight hundred six'); INSERT INTO t1 VALUES(10907, 35180, 'thirty-five thousand one hundred eighty'); INSERT INTO t1 VALUES(10908, 3701, 'three thousand seven hundred one'); INSERT INTO t1 VALUES(10909, 97212, 'ninety-seven thousand two hundred twelve'); INSERT INTO t1 VALUES(10910, 47810, 'forty-seven thousand eight hundred ten'); INSERT INTO t1 VALUES(10911, 82542, 'eighty-two thousand five hundred forty-two'); INSERT INTO t1 VALUES(10912, 76595, 'seventy-six thousand five hundred ninety-five'); INSERT INTO t1 VALUES(10913, 50943, 'fifty thousand nine hundred forty-three'); INSERT INTO t1 VALUES(10914, 42271, 'forty-two thousand two hundred seventy-one'); INSERT INTO t1 VALUES(10915, 50961, 'fifty thousand nine hundred sixty-one'); INSERT INTO t1 VALUES(10916, 5271, 'five thousand two hundred seventy-one'); INSERT INTO t1 VALUES(10917, 66449, 'sixty-six thousand four hundred forty-nine'); INSERT INTO t1 VALUES(10918, 24572, 'twenty-four thousand five hundred seventy-two'); INSERT INTO t1 VALUES(10919, 87200, 'eighty-seven thousand two hundred'); INSERT INTO t1 VALUES(10920, 75613, 'seventy-five thousand six hundred thirteen'); INSERT INTO t1 VALUES(10921, 48748, 'forty-eight thousand seven hundred forty-eight'); INSERT INTO t1 VALUES(10922, 1894, 'one thousand eight hundred ninety-four'); INSERT INTO t1 VALUES(10923, 61788, 'sixty-one thousand seven hundred eighty-eight'); INSERT INTO t1 VALUES(10924, 12099, 'twelve thousand ninety-nine'); INSERT INTO t1 VALUES(10925, 6783, 'six thousand seven hundred eighty-three'); INSERT INTO t1 VALUES(10926, 87198, 'eighty-seven thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(10927, 59719, 'fifty-nine thousand seven hundred nineteen'); INSERT INTO t1 VALUES(10928, 66019, 'sixty-six thousand nineteen'); INSERT INTO t1 VALUES(10929, 4352, 'four thousand three hundred fifty-two'); INSERT INTO t1 VALUES(10930, 969, 'nine hundred sixty-nine'); INSERT INTO t1 VALUES(10931, 54391, 'fifty-four thousand three hundred ninety-one'); INSERT INTO t1 VALUES(10932, 94703, 'ninety-four thousand seven hundred three'); INSERT INTO t1 VALUES(10933, 75766, 'seventy-five thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(10934, 55712, 'fifty-five thousand seven hundred twelve'); INSERT INTO t1 VALUES(10935, 86909, 'eighty-six thousand nine hundred nine'); INSERT INTO t1 VALUES(10936, 42893, 'forty-two thousand eight hundred ninety-three'); INSERT INTO t1 VALUES(10937, 81367, 'eighty-one thousand three hundred sixty-seven'); INSERT INTO t1 VALUES(10938, 37186, 'thirty-seven thousand one hundred eighty-six'); INSERT INTO t1 VALUES(10939, 34100, 'thirty-four thousand one hundred'); INSERT INTO t1 VALUES(10940, 49485, 'forty-nine thousand four hundred eighty-five'); INSERT INTO t1 VALUES(10941, 5064, 'five thousand sixty-four'); INSERT INTO t1 VALUES(10942, 63099, 'sixty-three thousand ninety-nine'); INSERT INTO t1 VALUES(10943, 13226, 'thirteen thousand two hundred twenty-six'); INSERT INTO t1 VALUES(10944, 38736, 'thirty-eight thousand seven hundred thirty-six'); INSERT INTO t1 VALUES(10945, 45664, 'forty-five thousand six hundred sixty-four'); INSERT INTO t1 VALUES(10946, 16973, 'sixteen thousand nine hundred seventy-three'); INSERT INTO t1 VALUES(10947, 79317, 'seventy-nine thousand three hundred seventeen'); INSERT INTO t1 VALUES(10948, 63226, 'sixty-three thousand two hundred twenty-six'); INSERT INTO t1 VALUES(10949, 13040, 'thirteen thousand forty'); INSERT INTO t1 VALUES(10950, 80284, 'eighty thousand two hundred eighty-four'); INSERT INTO t1 VALUES(10951, 92496, 'ninety-two thousand four hundred ninety-six'); INSERT INTO t1 VALUES(10952, 58750, 'fifty-eight thousand seven hundred fifty'); INSERT INTO t1 VALUES(10953, 27269, 'twenty-seven thousand two hundred sixty-nine'); INSERT INTO t1 VALUES(10954, 49101, 'forty-nine thousand one hundred one'); INSERT INTO t1 VALUES(10955, 79100, 'seventy-nine thousand one hundred'); INSERT INTO t1 VALUES(10956, 48054, 'forty-eight thousand fifty-four'); INSERT INTO t1 VALUES(10957, 99619, 'ninety-nine thousand six hundred nineteen'); INSERT INTO t1 VALUES(10958, 57618, 'fifty-seven thousand six hundred eighteen'); INSERT INTO t1 VALUES(10959, 48220, 'forty-eight thousand two hundred twenty'); INSERT INTO t1 VALUES(10960, 63450, 'sixty-three thousand four hundred fifty'); INSERT INTO t1 VALUES(10961, 76115, 'seventy-six thousand one hundred fifteen'); INSERT INTO t1 VALUES(10962, 46025, 'forty-six thousand twenty-five'); INSERT INTO t1 VALUES(10963, 12317, 'twelve thousand three hundred seventeen'); INSERT INTO t1 VALUES(10964, 43814, 'forty-three thousand eight hundred fourteen'); INSERT INTO t1 VALUES(10965, 62183, 'sixty-two thousand one hundred eighty-three'); INSERT INTO t1 VALUES(10966, 82202, 'eighty-two thousand two hundred two'); INSERT INTO t1 VALUES(10967, 55776, 'fifty-five thousand seven hundred seventy-six'); INSERT INTO t1 VALUES(10968, 19038, 'nineteen thousand thirty-eight'); INSERT INTO t1 VALUES(10969, 22939, 'twenty-two thousand nine hundred thirty-nine'); INSERT INTO t1 VALUES(10970, 35172, 'thirty-five thousand one hundred seventy-two'); INSERT INTO t1 VALUES(10971, 54479, 'fifty-four thousand four hundred seventy-nine'); INSERT INTO t1 VALUES(10972, 55441, 'fifty-five thousand four hundred forty-one'); INSERT INTO t1 VALUES(10973, 60209, 'sixty thousand two hundred nine'); INSERT INTO t1 VALUES(10974, 1515, 'one thousand five hundred fifteen'); INSERT INTO t1 VALUES(10975, 41346, 'forty-one thousand three hundred forty-six'); INSERT INTO t1 VALUES(10976, 92456, 'ninety-two thousand four hundred fifty-six'); INSERT INTO t1 VALUES(10977, 27830, 'twenty-seven thousand eight hundred thirty'); INSERT INTO t1 VALUES(10978, 94089, 'ninety-four thousand eighty-nine'); INSERT INTO t1 VALUES(10979, 16491, 'sixteen thousand four hundred ninety-one'); INSERT INTO t1 VALUES(10980, 21499, 'twenty-one thousand four hundred ninety-nine'); INSERT INTO t1 VALUES(10981, 60678, 'sixty thousand six hundred seventy-eight'); INSERT INTO t1 VALUES(10982, 62826, 'sixty-two thousand eight hundred twenty-six'); INSERT INTO t1 VALUES(10983, 98474, 'ninety-eight thousand four hundred seventy-four'); INSERT INTO t1 VALUES(10984, 28801, 'twenty-eight thousand eight hundred one'); INSERT INTO t1 VALUES(10985, 30519, 'thirty thousand five hundred nineteen'); INSERT INTO t1 VALUES(10986, 92445, 'ninety-two thousand four hundred forty-five'); INSERT INTO t1 VALUES(10987, 7658, 'seven thousand six hundred fifty-eight'); INSERT INTO t1 VALUES(10988, 12762, 'twelve thousand seven hundred sixty-two'); INSERT INTO t1 VALUES(10989, 8920, 'eight thousand nine hundred twenty'); INSERT INTO t1 VALUES(10990, 31854, 'thirty-one thousand eight hundred fifty-four'); INSERT INTO t1 VALUES(10991, 36357, 'thirty-six thousand three hundred fifty-seven'); INSERT INTO t1 VALUES(10992, 67440, 'sixty-seven thousand four hundred forty'); INSERT INTO t1 VALUES(10993, 13413, 'thirteen thousand four hundred thirteen'); INSERT INTO t1 VALUES(10994, 3276, 'three thousand two hundred seventy-six'); INSERT INTO t1 VALUES(10995, 48137, 'forty-eight thousand one hundred thirty-seven'); INSERT INTO t1 VALUES(10996, 27490, 'twenty-seven thousand four hundred ninety'); INSERT INTO t1 VALUES(10997, 94859, 'ninety-four thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(10998, 64664, 'sixty-four thousand six hundred sixty-four'); INSERT INTO t1 VALUES(10999, 35550, 'thirty-five thousand five hundred fifty'); INSERT INTO t1 VALUES(11000, 64527, 'sixty-four thousand five hundred twenty-seven'); INSERT INTO t1 VALUES(11001, 92779, 'ninety-two thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(11002, 38952, 'thirty-eight thousand nine hundred fifty-two'); INSERT INTO t1 VALUES(11003, 27774, 'twenty-seven thousand seven hundred seventy-four'); INSERT INTO t1 VALUES(11004, 9149, 'nine thousand one hundred forty-nine'); INSERT INTO t1 VALUES(11005, 67899, 'sixty-seven thousand eight hundred ninety-nine'); INSERT INTO t1 VALUES(11006, 27931, 'twenty-seven thousand nine hundred thirty-one'); INSERT INTO t1 VALUES(11007, 25388, 'twenty-five thousand three hundred eighty-eight'); INSERT INTO t1 VALUES(11008, 68080, 'sixty-eight thousand eighty'); INSERT INTO t1 VALUES(11009, 95064, 'ninety-five thousand sixty-four'); INSERT INTO t1 VALUES(11010, 32327, 'thirty-two thousand three hundred twenty-seven'); INSERT INTO t1 VALUES(11011, 18776, 'eighteen thousand seven hundred seventy-six'); INSERT INTO t1 VALUES(11012, 95096, 'ninety-five thousand ninety-six'); INSERT INTO t1 VALUES(11013, 377, 'three hundred seventy-seven'); INSERT INTO t1 VALUES(11014, 21544, 'twenty-one thousand five hundred forty-four'); INSERT INTO t1 VALUES(11015, 6459, 'six thousand four hundred fifty-nine'); INSERT INTO t1 VALUES(11016, 81544, 'eighty-one thousand five hundred forty-four'); INSERT INTO t1 VALUES(11017, 48047, 'forty-eight thousand forty-seven'); INSERT INTO t1 VALUES(11018, 113, 'one hundred thirteen'); INSERT INTO t1 VALUES(11019, 27967, 'twenty-seven thousand nine hundred sixty-seven'); INSERT INTO t1 VALUES(11020, 26009, 'twenty-six thousand nine'); INSERT INTO t1 VALUES(11021, 30205, 'thirty thousand two hundred five'); INSERT INTO t1 VALUES(11022, 15382, 'fifteen thousand three hundred eighty-two'); INSERT INTO t1 VALUES(11023, 53473, 'fifty-three thousand four hundred seventy-three'); INSERT INTO t1 VALUES(11024, 58483, 'fifty-eight thousand four hundred eighty-three'); INSERT INTO t1 VALUES(11025, 1061, 'one thousand sixty-one'); INSERT INTO t1 VALUES(11026, 9042, 'nine thousand forty-two'); INSERT INTO t1 VALUES(11027, 68476, 'sixty-eight thousand four hundred seventy-six'); INSERT INTO t1 VALUES(11028, 95718, 'ninety-five thousand seven hundred eighteen'); INSERT INTO t1 VALUES(11029, 14828, 'fourteen thousand eight hundred twenty-eight'); INSERT INTO t1 VALUES(11030, 55449, 'fifty-five thousand four hundred forty-nine'); INSERT INTO t1 VALUES(11031, 96586, 'ninety-six thousand five hundred eighty-six'); INSERT INTO t1 VALUES(11032, 55448, 'fifty-five thousand four hundred forty-eight'); INSERT INTO t1 VALUES(11033, 32906, 'thirty-two thousand nine hundred six'); INSERT INTO t1 VALUES(11034, 88672, 'eighty-eight thousand six hundred seventy-two'); INSERT INTO t1 VALUES(11035, 80220, 'eighty thousand two hundred twenty'); INSERT INTO t1 VALUES(11036, 33798, 'thirty-three thousand seven hundred ninety-eight'); INSERT INTO t1 VALUES(11037, 79217, 'seventy-nine thousand two hundred seventeen'); INSERT INTO t1 VALUES(11038, 8086, 'eight thousand eighty-six'); INSERT INTO t1 VALUES(11039, 19442, 'nineteen thousand four hundred forty-two'); INSERT INTO t1 VALUES(11040, 9619, 'nine thousand six hundred nineteen'); INSERT INTO t1 VALUES(11041, 7271, 'seven thousand two hundred seventy-one'); INSERT INTO t1 VALUES(11042, 3628, 'three thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(11043, 47131, 'forty-seven thousand one hundred thirty-one'); INSERT INTO t1 VALUES(11044, 96042, 'ninety-six thousand forty-two'); INSERT INTO t1 VALUES(11045, 52186, 'fifty-two thousand one hundred eighty-six'); INSERT INTO t1 VALUES(11046, 93855, 'ninety-three thousand eight hundred fifty-five'); INSERT INTO t1 VALUES(11047, 26403, 'twenty-six thousand four hundred three'); INSERT INTO t1 VALUES(11048, 25784, 'twenty-five thousand seven hundred eighty-four'); INSERT INTO t1 VALUES(11049, 8047, 'eight thousand forty-seven'); INSERT INTO t1 VALUES(11050, 35213, 'thirty-five thousand two hundred thirteen'); INSERT INTO t1 VALUES(11051, 84534, 'eighty-four thousand five hundred thirty-four'); INSERT INTO t1 VALUES(11052, 79475, 'seventy-nine thousand four hundred seventy-five'); INSERT INTO t1 VALUES(11053, 80274, 'eighty thousand two hundred seventy-four'); INSERT INTO t1 VALUES(11054, 80154, 'eighty thousand one hundred fifty-four'); INSERT INTO t1 VALUES(11055, 54022, 'fifty-four thousand twenty-two'); INSERT INTO t1 VALUES(11056, 44275, 'forty-four thousand two hundred seventy-five'); INSERT INTO t1 VALUES(11057, 37656, 'thirty-seven thousand six hundred fifty-six'); INSERT INTO t1 VALUES(11058, 53886, 'fifty-three thousand eight hundred eighty-six'); INSERT INTO t1 VALUES(11059, 75561, 'seventy-five thousand five hundred sixty-one'); INSERT INTO t1 VALUES(11060, 47730, 'forty-seven thousand seven hundred thirty'); INSERT INTO t1 VALUES(11061, 7811, 'seven thousand eight hundred eleven'); INSERT INTO t1 VALUES(11062, 65177, 'sixty-five thousand one hundred seventy-seven'); INSERT INTO t1 VALUES(11063, 86952, 'eighty-six thousand nine hundred fifty-two'); INSERT INTO t1 VALUES(11064, 90950, 'ninety thousand nine hundred fifty'); INSERT INTO t1 VALUES(11065, 98933, 'ninety-eight thousand nine hundred thirty-three'); INSERT INTO t1 VALUES(11066, 62714, 'sixty-two thousand seven hundred fourteen'); INSERT INTO t1 VALUES(11067, 82637, 'eighty-two thousand six hundred thirty-seven'); INSERT INTO t1 VALUES(11068, 84277, 'eighty-four thousand two hundred seventy-seven'); INSERT INTO t1 VALUES(11069, 82932, 'eighty-two thousand nine hundred thirty-two'); INSERT INTO t1 VALUES(11070, 4205, 'four thousand two hundred five'); INSERT INTO t1 VALUES(11071, 90041, 'ninety thousand forty-one'); INSERT INTO t1 VALUES(11072, 19620, 'nineteen thousand six hundred twenty'); INSERT INTO t1 VALUES(11073, 94636, 'ninety-four thousand six hundred thirty-six'); INSERT INTO t1 VALUES(11074, 70807, 'seventy thousand eight hundred seven'); INSERT INTO t1 VALUES(11075, 53635, 'fifty-three thousand six hundred thirty-five'); INSERT INTO t1 VALUES(11076, 7729, 'seven thousand seven hundred twenty-nine'); INSERT INTO t1 VALUES(11077, 7132, 'seven thousand one hundred thirty-two'); INSERT INTO t1 VALUES(11078, 11962, 'eleven thousand nine hundred sixty-two'); INSERT INTO t1 VALUES(11079, 67382, 'sixty-seven thousand three hundred eighty-two'); INSERT INTO t1 VALUES(11080, 14206, 'fourteen thousand two hundred six'); INSERT INTO t1 VALUES(11081, 85308, 'eighty-five thousand three hundred eight'); INSERT INTO t1 VALUES(11082, 36767, 'thirty-six thousand seven hundred sixty-seven'); INSERT INTO t1 VALUES(11083, 13691, 'thirteen thousand six hundred ninety-one'); INSERT INTO t1 VALUES(11084, 34864, 'thirty-four thousand eight hundred sixty-four'); INSERT INTO t1 VALUES(11085, 97248, 'ninety-seven thousand two hundred forty-eight'); INSERT INTO t1 VALUES(11086, 88400, 'eighty-eight thousand four hundred'); INSERT INTO t1 VALUES(11087, 12959, 'twelve thousand nine hundred fifty-nine'); INSERT INTO t1 VALUES(11088, 86057, 'eighty-six thousand fifty-seven'); INSERT INTO t1 VALUES(11089, 99573, 'ninety-nine thousand five hundred seventy-three'); INSERT INTO t1 VALUES(11090, 28867, 'twenty-eight thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(11091, 77255, 'seventy-seven thousand two hundred fifty-five'); INSERT INTO t1 VALUES(11092, 99923, 'ninety-nine thousand nine hundred twenty-three'); INSERT INTO t1 VALUES(11093, 17555, 'seventeen thousand five hundred fifty-five'); INSERT INTO t1 VALUES(11094, 24207, 'twenty-four thousand two hundred seven'); INSERT INTO t1 VALUES(11095, 32197, 'thirty-two thousand one hundred ninety-seven'); INSERT INTO t1 VALUES(11096, 70874, 'seventy thousand eight hundred seventy-four'); INSERT INTO t1 VALUES(11097, 91243, 'ninety-one thousand two hundred forty-three'); INSERT INTO t1 VALUES(11098, 94226, 'ninety-four thousand two hundred twenty-six'); INSERT INTO t1 VALUES(11099, 41678, 'forty-one thousand six hundred seventy-eight'); INSERT INTO t1 VALUES(11100, 32744, 'thirty-two thousand seven hundred forty-four'); INSERT INTO t1 VALUES(11101, 76940, 'seventy-six thousand nine hundred forty'); INSERT INTO t1 VALUES(11102, 24246, 'twenty-four thousand two hundred forty-six'); INSERT INTO t1 VALUES(11103, 24799, 'twenty-four thousand seven hundred ninety-nine'); INSERT INTO t1 VALUES(11104, 82278, 'eighty-two thousand two hundred seventy-eight'); INSERT INTO t1 VALUES(11105, 8810, 'eight thousand eight hundred ten'); INSERT INTO t1 VALUES(11106, 21033, 'twenty-one thousand thirty-three'); INSERT INTO t1 VALUES(11107, 49279, 'forty-nine thousand two hundred seventy-nine'); INSERT INTO t1 VALUES(11108, 53894, 'fifty-three thousand eight hundred ninety-four'); INSERT INTO t1 VALUES(11109, 13935, 'thirteen thousand nine hundred thirty-five'); INSERT INTO t1 VALUES(11110, 90779, 'ninety thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(11111, 49789, 'forty-nine thousand seven hundred eighty-nine'); INSERT INTO t1 VALUES(11112, 27533, 'twenty-seven thousand five hundred thirty-three'); INSERT INTO t1 VALUES(11113, 31991, 'thirty-one thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(11114, 92086, 'ninety-two thousand eighty-six'); INSERT INTO t1 VALUES(11115, 17907, 'seventeen thousand nine hundred seven'); INSERT INTO t1 VALUES(11116, 40760, 'forty thousand seven hundred sixty'); INSERT INTO t1 VALUES(11117, 46154, 'forty-six thousand one hundred fifty-four'); INSERT INTO t1 VALUES(11118, 44028, 'forty-four thousand twenty-eight'); INSERT INTO t1 VALUES(11119, 82322, 'eighty-two thousand three hundred twenty-two'); INSERT INTO t1 VALUES(11120, 7652, 'seven thousand six hundred fifty-two'); INSERT INTO t1 VALUES(11121, 25012, 'twenty-five thousand twelve'); INSERT INTO t1 VALUES(11122, 62346, 'sixty-two thousand three hundred forty-six'); INSERT INTO t1 VALUES(11123, 18036, 'eighteen thousand thirty-six'); INSERT INTO t1 VALUES(11124, 63989, 'sixty-three thousand nine hundred eighty-nine'); INSERT INTO t1 VALUES(11125, 25977, 'twenty-five thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(11126, 39881, 'thirty-nine thousand eight hundred eighty-one'); INSERT INTO t1 VALUES(11127, 53450, 'fifty-three thousand four hundred fifty'); INSERT INTO t1 VALUES(11128, 14366, 'fourteen thousand three hundred sixty-six'); INSERT INTO t1 VALUES(11129, 45033, 'forty-five thousand thirty-three'); INSERT INTO t1 VALUES(11130, 84124, 'eighty-four thousand one hundred twenty-four'); INSERT INTO t1 VALUES(11131, 88830, 'eighty-eight thousand eight hundred thirty'); INSERT INTO t1 VALUES(11132, 23251, 'twenty-three thousand two hundred fifty-one'); INSERT INTO t1 VALUES(11133, 60609, 'sixty thousand six hundred nine'); INSERT INTO t1 VALUES(11134, 22197, 'twenty-two thousand one hundred ninety-seven'); INSERT INTO t1 VALUES(11135, 88007, 'eighty-eight thousand seven'); INSERT INTO t1 VALUES(11136, 9551, 'nine thousand five hundred fifty-one'); INSERT INTO t1 VALUES(11137, 974, 'nine hundred seventy-four'); INSERT INTO t1 VALUES(11138, 26064, 'twenty-six thousand sixty-four'); INSERT INTO t1 VALUES(11139, 58260, 'fifty-eight thousand two hundred sixty'); INSERT INTO t1 VALUES(11140, 2924, 'two thousand nine hundred twenty-four'); INSERT INTO t1 VALUES(11141, 18991, 'eighteen thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(11142, 45192, 'forty-five thousand one hundred ninety-two'); INSERT INTO t1 VALUES(11143, 56707, 'fifty-six thousand seven hundred seven'); INSERT INTO t1 VALUES(11144, 47479, 'forty-seven thousand four hundred seventy-nine'); INSERT INTO t1 VALUES(11145, 5210, 'five thousand two hundred ten'); INSERT INTO t1 VALUES(11146, 67744, 'sixty-seven thousand seven hundred forty-four'); INSERT INTO t1 VALUES(11147, 25182, 'twenty-five thousand one hundred eighty-two'); INSERT INTO t1 VALUES(11148, 26254, 'twenty-six thousand two hundred fifty-four'); INSERT INTO t1 VALUES(11149, 10598, 'ten thousand five hundred ninety-eight'); INSERT INTO t1 VALUES(11150, 17093, 'seventeen thousand ninety-three'); INSERT INTO t1 VALUES(11151, 57792, 'fifty-seven thousand seven hundred ninety-two'); INSERT INTO t1 VALUES(11152, 44167, 'forty-four thousand one hundred sixty-seven'); INSERT INTO t1 VALUES(11153, 39885, 'thirty-nine thousand eight hundred eighty-five'); INSERT INTO t1 VALUES(11154, 95249, 'ninety-five thousand two hundred forty-nine'); INSERT INTO t1 VALUES(11155, 58791, 'fifty-eight thousand seven hundred ninety-one'); INSERT INTO t1 VALUES(11156, 88122, 'eighty-eight thousand one hundred twenty-two'); INSERT INTO t1 VALUES(11157, 17152, 'seventeen thousand one hundred fifty-two'); INSERT INTO t1 VALUES(11158, 61458, 'sixty-one thousand four hundred fifty-eight'); INSERT INTO t1 VALUES(11159, 99723, 'ninety-nine thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(11160, 68189, 'sixty-eight thousand one hundred eighty-nine'); INSERT INTO t1 VALUES(11161, 2453, 'two thousand four hundred fifty-three'); INSERT INTO t1 VALUES(11162, 25468, 'twenty-five thousand four hundred sixty-eight'); INSERT INTO t1 VALUES(11163, 88041, 'eighty-eight thousand forty-one'); INSERT INTO t1 VALUES(11164, 58299, 'fifty-eight thousand two hundred ninety-nine'); INSERT INTO t1 VALUES(11165, 55464, 'fifty-five thousand four hundred sixty-four'); INSERT INTO t1 VALUES(11166, 56279, 'fifty-six thousand two hundred seventy-nine'); INSERT INTO t1 VALUES(11167, 75704, 'seventy-five thousand seven hundred four'); INSERT INTO t1 VALUES(11168, 67092, 'sixty-seven thousand ninety-two'); INSERT INTO t1 VALUES(11169, 55477, 'fifty-five thousand four hundred seventy-seven'); INSERT INTO t1 VALUES(11170, 40019, 'forty thousand nineteen'); INSERT INTO t1 VALUES(11171, 20332, 'twenty thousand three hundred thirty-two'); INSERT INTO t1 VALUES(11172, 59219, 'fifty-nine thousand two hundred nineteen'); INSERT INTO t1 VALUES(11173, 56986, 'fifty-six thousand nine hundred eighty-six'); INSERT INTO t1 VALUES(11174, 58139, 'fifty-eight thousand one hundred thirty-nine'); INSERT INTO t1 VALUES(11175, 79036, 'seventy-nine thousand thirty-six'); INSERT INTO t1 VALUES(11176, 68196, 'sixty-eight thousand one hundred ninety-six'); INSERT INTO t1 VALUES(11177, 84276, 'eighty-four thousand two hundred seventy-six'); INSERT INTO t1 VALUES(11178, 21341, 'twenty-one thousand three hundred forty-one'); INSERT INTO t1 VALUES(11179, 8146, 'eight thousand one hundred forty-six'); INSERT INTO t1 VALUES(11180, 69459, 'sixty-nine thousand four hundred fifty-nine'); INSERT INTO t1 VALUES(11181, 41270, 'forty-one thousand two hundred seventy'); INSERT INTO t1 VALUES(11182, 6734, 'six thousand seven hundred thirty-four'); INSERT INTO t1 VALUES(11183, 76693, 'seventy-six thousand six hundred ninety-three'); INSERT INTO t1 VALUES(11184, 66688, 'sixty-six thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(11185, 22279, 'twenty-two thousand two hundred seventy-nine'); INSERT INTO t1 VALUES(11186, 69937, 'sixty-nine thousand nine hundred thirty-seven'); INSERT INTO t1 VALUES(11187, 29281, 'twenty-nine thousand two hundred eighty-one'); INSERT INTO t1 VALUES(11188, 28208, 'twenty-eight thousand two hundred eight'); INSERT INTO t1 VALUES(11189, 50921, 'fifty thousand nine hundred twenty-one'); INSERT INTO t1 VALUES(11190, 2817, 'two thousand eight hundred seventeen'); INSERT INTO t1 VALUES(11191, 83555, 'eighty-three thousand five hundred fifty-five'); INSERT INTO t1 VALUES(11192, 97852, 'ninety-seven thousand eight hundred fifty-two'); INSERT INTO t1 VALUES(11193, 19221, 'nineteen thousand two hundred twenty-one'); INSERT INTO t1 VALUES(11194, 88185, 'eighty-eight thousand one hundred eighty-five'); INSERT INTO t1 VALUES(11195, 81275, 'eighty-one thousand two hundred seventy-five'); INSERT INTO t1 VALUES(11196, 21630, 'twenty-one thousand six hundred thirty'); INSERT INTO t1 VALUES(11197, 30455, 'thirty thousand four hundred fifty-five'); INSERT INTO t1 VALUES(11198, 33726, 'thirty-three thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(11199, 67058, 'sixty-seven thousand fifty-eight'); INSERT INTO t1 VALUES(11200, 53257, 'fifty-three thousand two hundred fifty-seven'); INSERT INTO t1 VALUES(11201, 87683, 'eighty-seven thousand six hundred eighty-three'); INSERT INTO t1 VALUES(11202, 11480, 'eleven thousand four hundred eighty'); INSERT INTO t1 VALUES(11203, 97866, 'ninety-seven thousand eight hundred sixty-six'); INSERT INTO t1 VALUES(11204, 81268, 'eighty-one thousand two hundred sixty-eight'); INSERT INTO t1 VALUES(11205, 56356, 'fifty-six thousand three hundred fifty-six'); INSERT INTO t1 VALUES(11206, 38733, 'thirty-eight thousand seven hundred thirty-three'); INSERT INTO t1 VALUES(11207, 8611, 'eight thousand six hundred eleven'); INSERT INTO t1 VALUES(11208, 67829, 'sixty-seven thousand eight hundred twenty-nine'); INSERT INTO t1 VALUES(11209, 24565, 'twenty-four thousand five hundred sixty-five'); INSERT INTO t1 VALUES(11210, 26110, 'twenty-six thousand one hundred ten'); INSERT INTO t1 VALUES(11211, 60827, 'sixty thousand eight hundred twenty-seven'); INSERT INTO t1 VALUES(11212, 6979, 'six thousand nine hundred seventy-nine'); INSERT INTO t1 VALUES(11213, 74898, 'seventy-four thousand eight hundred ninety-eight'); INSERT INTO t1 VALUES(11214, 21032, 'twenty-one thousand thirty-two'); INSERT INTO t1 VALUES(11215, 18131, 'eighteen thousand one hundred thirty-one'); INSERT INTO t1 VALUES(11216, 36306, 'thirty-six thousand three hundred six'); INSERT INTO t1 VALUES(11217, 88068, 'eighty-eight thousand sixty-eight'); INSERT INTO t1 VALUES(11218, 25037, 'twenty-five thousand thirty-seven'); INSERT INTO t1 VALUES(11219, 58925, 'fifty-eight thousand nine hundred twenty-five'); INSERT INTO t1 VALUES(11220, 14552, 'fourteen thousand five hundred fifty-two'); INSERT INTO t1 VALUES(11221, 35686, 'thirty-five thousand six hundred eighty-six'); INSERT INTO t1 VALUES(11222, 50496, 'fifty thousand four hundred ninety-six'); INSERT INTO t1 VALUES(11223, 53685, 'fifty-three thousand six hundred eighty-five'); INSERT INTO t1 VALUES(11224, 916, 'nine hundred sixteen'); INSERT INTO t1 VALUES(11225, 59429, 'fifty-nine thousand four hundred twenty-nine'); INSERT INTO t1 VALUES(11226, 36731, 'thirty-six thousand seven hundred thirty-one'); INSERT INTO t1 VALUES(11227, 77527, 'seventy-seven thousand five hundred twenty-seven'); INSERT INTO t1 VALUES(11228, 80800, 'eighty thousand eight hundred'); INSERT INTO t1 VALUES(11229, 44052, 'forty-four thousand fifty-two'); INSERT INTO t1 VALUES(11230, 46179, 'forty-six thousand one hundred seventy-nine'); INSERT INTO t1 VALUES(11231, 94669, 'ninety-four thousand six hundred sixty-nine'); INSERT INTO t1 VALUES(11232, 61298, 'sixty-one thousand two hundred ninety-eight'); INSERT INTO t1 VALUES(11233, 63076, 'sixty-three thousand seventy-six'); INSERT INTO t1 VALUES(11234, 57765, 'fifty-seven thousand seven hundred sixty-five'); INSERT INTO t1 VALUES(11235, 86540, 'eighty-six thousand five hundred forty'); INSERT INTO t1 VALUES(11236, 6967, 'six thousand nine hundred sixty-seven'); INSERT INTO t1 VALUES(11237, 70697, 'seventy thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(11238, 44963, 'forty-four thousand nine hundred sixty-three'); INSERT INTO t1 VALUES(11239, 22702, 'twenty-two thousand seven hundred two'); INSERT INTO t1 VALUES(11240, 29578, 'twenty-nine thousand five hundred seventy-eight'); INSERT INTO t1 VALUES(11241, 39063, 'thirty-nine thousand sixty-three'); INSERT INTO t1 VALUES(11242, 69544, 'sixty-nine thousand five hundred forty-four'); INSERT INTO t1 VALUES(11243, 76435, 'seventy-six thousand four hundred thirty-five'); INSERT INTO t1 VALUES(11244, 35693, 'thirty-five thousand six hundred ninety-three'); INSERT INTO t1 VALUES(11245, 45797, 'forty-five thousand seven hundred ninety-seven'); INSERT INTO t1 VALUES(11246, 7289, 'seven thousand two hundred eighty-nine'); INSERT INTO t1 VALUES(11247, 75048, 'seventy-five thousand forty-eight'); INSERT INTO t1 VALUES(11248, 53234, 'fifty-three thousand two hundred thirty-four'); INSERT INTO t1 VALUES(11249, 26498, 'twenty-six thousand four hundred ninety-eight'); INSERT INTO t1 VALUES(11250, 8314, 'eight thousand three hundred fourteen'); INSERT INTO t1 VALUES(11251, 39494, 'thirty-nine thousand four hundred ninety-four'); INSERT INTO t1 VALUES(11252, 9863, 'nine thousand eight hundred sixty-three'); INSERT INTO t1 VALUES(11253, 86654, 'eighty-six thousand six hundred fifty-four'); INSERT INTO t1 VALUES(11254, 85632, 'eighty-five thousand six hundred thirty-two'); INSERT INTO t1 VALUES(11255, 29995, 'twenty-nine thousand nine hundred ninety-five'); INSERT INTO t1 VALUES(11256, 52106, 'fifty-two thousand one hundred six'); INSERT INTO t1 VALUES(11257, 93719, 'ninety-three thousand seven hundred nineteen'); INSERT INTO t1 VALUES(11258, 18466, 'eighteen thousand four hundred sixty-six'); INSERT INTO t1 VALUES(11259, 50611, 'fifty thousand six hundred eleven'); INSERT INTO t1 VALUES(11260, 72546, 'seventy-two thousand five hundred forty-six'); INSERT INTO t1 VALUES(11261, 30987, 'thirty thousand nine hundred eighty-seven'); INSERT INTO t1 VALUES(11262, 38773, 'thirty-eight thousand seven hundred seventy-three'); INSERT INTO t1 VALUES(11263, 84911, 'eighty-four thousand nine hundred eleven'); INSERT INTO t1 VALUES(11264, 66668, 'sixty-six thousand six hundred sixty-eight'); INSERT INTO t1 VALUES(11265, 24231, 'twenty-four thousand two hundred thirty-one'); INSERT INTO t1 VALUES(11266, 52248, 'fifty-two thousand two hundred forty-eight'); INSERT INTO t1 VALUES(11267, 96804, 'ninety-six thousand eight hundred four'); INSERT INTO t1 VALUES(11268, 94729, 'ninety-four thousand seven hundred twenty-nine'); INSERT INTO t1 VALUES(11269, 68182, 'sixty-eight thousand one hundred eighty-two'); INSERT INTO t1 VALUES(11270, 90220, 'ninety thousand two hundred twenty'); INSERT INTO t1 VALUES(11271, 54073, 'fifty-four thousand seventy-three'); INSERT INTO t1 VALUES(11272, 38128, 'thirty-eight thousand one hundred twenty-eight'); INSERT INTO t1 VALUES(11273, 24565, 'twenty-four thousand five hundred sixty-five'); INSERT INTO t1 VALUES(11274, 41922, 'forty-one thousand nine hundred twenty-two'); INSERT INTO t1 VALUES(11275, 29049, 'twenty-nine thousand forty-nine'); INSERT INTO t1 VALUES(11276, 45803, 'forty-five thousand eight hundred three'); INSERT INTO t1 VALUES(11277, 48136, 'forty-eight thousand one hundred thirty-six'); INSERT INTO t1 VALUES(11278, 90524, 'ninety thousand five hundred twenty-four'); INSERT INTO t1 VALUES(11279, 45114, 'forty-five thousand one hundred fourteen'); INSERT INTO t1 VALUES(11280, 18867, 'eighteen thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(11281, 122, 'one hundred twenty-two'); INSERT INTO t1 VALUES(11282, 10418, 'ten thousand four hundred eighteen'); INSERT INTO t1 VALUES(11283, 45662, 'forty-five thousand six hundred sixty-two'); INSERT INTO t1 VALUES(11284, 50657, 'fifty thousand six hundred fifty-seven'); INSERT INTO t1 VALUES(11285, 14268, 'fourteen thousand two hundred sixty-eight'); INSERT INTO t1 VALUES(11286, 86030, 'eighty-six thousand thirty'); INSERT INTO t1 VALUES(11287, 73389, 'seventy-three thousand three hundred eighty-nine'); INSERT INTO t1 VALUES(11288, 532, 'five hundred thirty-two'); INSERT INTO t1 VALUES(11289, 94098, 'ninety-four thousand ninety-eight'); INSERT INTO t1 VALUES(11290, 46527, 'forty-six thousand five hundred twenty-seven'); INSERT INTO t1 VALUES(11291, 74486, 'seventy-four thousand four hundred eighty-six'); INSERT INTO t1 VALUES(11292, 66766, 'sixty-six thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(11293, 39703, 'thirty-nine thousand seven hundred three'); INSERT INTO t1 VALUES(11294, 39625, 'thirty-nine thousand six hundred twenty-five'); INSERT INTO t1 VALUES(11295, 15673, 'fifteen thousand six hundred seventy-three'); INSERT INTO t1 VALUES(11296, 68759, 'sixty-eight thousand seven hundred fifty-nine'); INSERT INTO t1 VALUES(11297, 49583, 'forty-nine thousand five hundred eighty-three'); INSERT INTO t1 VALUES(11298, 35809, 'thirty-five thousand eight hundred nine'); INSERT INTO t1 VALUES(11299, 14353, 'fourteen thousand three hundred fifty-three'); INSERT INTO t1 VALUES(11300, 70960, 'seventy thousand nine hundred sixty'); INSERT INTO t1 VALUES(11301, 99706, 'ninety-nine thousand seven hundred six'); INSERT INTO t1 VALUES(11302, 83540, 'eighty-three thousand five hundred forty'); INSERT INTO t1 VALUES(11303, 85107, 'eighty-five thousand one hundred seven'); INSERT INTO t1 VALUES(11304, 52445, 'fifty-two thousand four hundred forty-five'); INSERT INTO t1 VALUES(11305, 27404, 'twenty-seven thousand four hundred four'); INSERT INTO t1 VALUES(11306, 6878, 'six thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(11307, 6654, 'six thousand six hundred fifty-four'); INSERT INTO t1 VALUES(11308, 35232, 'thirty-five thousand two hundred thirty-two'); INSERT INTO t1 VALUES(11309, 71325, 'seventy-one thousand three hundred twenty-five'); INSERT INTO t1 VALUES(11310, 92010, 'ninety-two thousand ten'); INSERT INTO t1 VALUES(11311, 10799, 'ten thousand seven hundred ninety-nine'); INSERT INTO t1 VALUES(11312, 37006, 'thirty-seven thousand six'); INSERT INTO t1 VALUES(11313, 56285, 'fifty-six thousand two hundred eighty-five'); INSERT INTO t1 VALUES(11314, 37034, 'thirty-seven thousand thirty-four'); INSERT INTO t1 VALUES(11315, 70311, 'seventy thousand three hundred eleven'); INSERT INTO t1 VALUES(11316, 57065, 'fifty-seven thousand sixty-five'); INSERT INTO t1 VALUES(11317, 2826, 'two thousand eight hundred twenty-six'); INSERT INTO t1 VALUES(11318, 30897, 'thirty thousand eight hundred ninety-seven'); INSERT INTO t1 VALUES(11319, 26769, 'twenty-six thousand seven hundred sixty-nine'); INSERT INTO t1 VALUES(11320, 56432, 'fifty-six thousand four hundred thirty-two'); INSERT INTO t1 VALUES(11321, 38457, 'thirty-eight thousand four hundred fifty-seven'); INSERT INTO t1 VALUES(11322, 30443, 'thirty thousand four hundred forty-three'); INSERT INTO t1 VALUES(11323, 78854, 'seventy-eight thousand eight hundred fifty-four'); INSERT INTO t1 VALUES(11324, 59563, 'fifty-nine thousand five hundred sixty-three'); INSERT INTO t1 VALUES(11325, 14198, 'fourteen thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(11326, 8543, 'eight thousand five hundred forty-three'); INSERT INTO t1 VALUES(11327, 69920, 'sixty-nine thousand nine hundred twenty'); INSERT INTO t1 VALUES(11328, 23888, 'twenty-three thousand eight hundred eighty-eight'); INSERT INTO t1 VALUES(11329, 9638, 'nine thousand six hundred thirty-eight'); INSERT INTO t1 VALUES(11330, 90132, 'ninety thousand one hundred thirty-two'); INSERT INTO t1 VALUES(11331, 25419, 'twenty-five thousand four hundred nineteen'); INSERT INTO t1 VALUES(11332, 53976, 'fifty-three thousand nine hundred seventy-six'); INSERT INTO t1 VALUES(11333, 52034, 'fifty-two thousand thirty-four'); INSERT INTO t1 VALUES(11334, 75859, 'seventy-five thousand eight hundred fifty-nine'); INSERT INTO t1 VALUES(11335, 1936, 'one thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(11336, 72251, 'seventy-two thousand two hundred fifty-one'); INSERT INTO t1 VALUES(11337, 21530, 'twenty-one thousand five hundred thirty'); INSERT INTO t1 VALUES(11338, 70530, 'seventy thousand five hundred thirty'); INSERT INTO t1 VALUES(11339, 49688, 'forty-nine thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(11340, 1628, 'one thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(11341, 64276, 'sixty-four thousand two hundred seventy-six'); INSERT INTO t1 VALUES(11342, 51818, 'fifty-one thousand eight hundred eighteen'); INSERT INTO t1 VALUES(11343, 48572, 'forty-eight thousand five hundred seventy-two'); INSERT INTO t1 VALUES(11344, 14345, 'fourteen thousand three hundred forty-five'); INSERT INTO t1 VALUES(11345, 4234, 'four thousand two hundred thirty-four'); INSERT INTO t1 VALUES(11346, 40658, 'forty thousand six hundred fifty-eight'); INSERT INTO t1 VALUES(11347, 61932, 'sixty-one thousand nine hundred thirty-two'); INSERT INTO t1 VALUES(11348, 74747, 'seventy-four thousand seven hundred forty-seven'); INSERT INTO t1 VALUES(11349, 70021, 'seventy thousand twenty-one'); INSERT INTO t1 VALUES(11350, 5594, 'five thousand five hundred ninety-four'); INSERT INTO t1 VALUES(11351, 34113, 'thirty-four thousand one hundred thirteen'); INSERT INTO t1 VALUES(11352, 39684, 'thirty-nine thousand six hundred eighty-four'); INSERT INTO t1 VALUES(11353, 69685, 'sixty-nine thousand six hundred eighty-five'); INSERT INTO t1 VALUES(11354, 31765, 'thirty-one thousand seven hundred sixty-five'); INSERT INTO t1 VALUES(11355, 91401, 'ninety-one thousand four hundred one'); INSERT INTO t1 VALUES(11356, 48040, 'forty-eight thousand forty'); INSERT INTO t1 VALUES(11357, 48058, 'forty-eight thousand fifty-eight'); INSERT INTO t1 VALUES(11358, 87304, 'eighty-seven thousand three hundred four'); INSERT INTO t1 VALUES(11359, 61471, 'sixty-one thousand four hundred seventy-one'); INSERT INTO t1 VALUES(11360, 20749, 'twenty thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(11361, 75116, 'seventy-five thousand one hundred sixteen'); INSERT INTO t1 VALUES(11362, 94764, 'ninety-four thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(11363, 23688, 'twenty-three thousand six hundred eighty-eight'); INSERT INTO t1 VALUES(11364, 82519, 'eighty-two thousand five hundred nineteen'); INSERT INTO t1 VALUES(11365, 32313, 'thirty-two thousand three hundred thirteen'); INSERT INTO t1 VALUES(11366, 37648, 'thirty-seven thousand six hundred forty-eight'); INSERT INTO t1 VALUES(11367, 37018, 'thirty-seven thousand eighteen'); INSERT INTO t1 VALUES(11368, 75152, 'seventy-five thousand one hundred fifty-two'); INSERT INTO t1 VALUES(11369, 6854, 'six thousand eight hundred fifty-four'); INSERT INTO t1 VALUES(11370, 23796, 'twenty-three thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(11371, 64460, 'sixty-four thousand four hundred sixty'); INSERT INTO t1 VALUES(11372, 48082, 'forty-eight thousand eighty-two'); INSERT INTO t1 VALUES(11373, 77255, 'seventy-seven thousand two hundred fifty-five'); INSERT INTO t1 VALUES(11374, 33198, 'thirty-three thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(11375, 55713, 'fifty-five thousand seven hundred thirteen'); INSERT INTO t1 VALUES(11376, 71965, 'seventy-one thousand nine hundred sixty-five'); INSERT INTO t1 VALUES(11377, 13317, 'thirteen thousand three hundred seventeen'); INSERT INTO t1 VALUES(11378, 38610, 'thirty-eight thousand six hundred ten'); INSERT INTO t1 VALUES(11379, 49209, 'forty-nine thousand two hundred nine'); INSERT INTO t1 VALUES(11380, 79296, 'seventy-nine thousand two hundred ninety-six'); INSERT INTO t1 VALUES(11381, 1991, 'one thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(11382, 45703, 'forty-five thousand seven hundred three'); INSERT INTO t1 VALUES(11383, 35133, 'thirty-five thousand one hundred thirty-three'); INSERT INTO t1 VALUES(11384, 13307, 'thirteen thousand three hundred seven'); INSERT INTO t1 VALUES(11385, 19790, 'nineteen thousand seven hundred ninety'); INSERT INTO t1 VALUES(11386, 23735, 'twenty-three thousand seven hundred thirty-five'); INSERT INTO t1 VALUES(11387, 81734, 'eighty-one thousand seven hundred thirty-four'); INSERT INTO t1 VALUES(11388, 4992, 'four thousand nine hundred ninety-two'); INSERT INTO t1 VALUES(11389, 39340, 'thirty-nine thousand three hundred forty'); INSERT INTO t1 VALUES(11390, 76767, 'seventy-six thousand seven hundred sixty-seven'); INSERT INTO t1 VALUES(11391, 12744, 'twelve thousand seven hundred forty-four'); INSERT INTO t1 VALUES(11392, 80887, 'eighty thousand eight hundred eighty-seven'); INSERT INTO t1 VALUES(11393, 39213, 'thirty-nine thousand two hundred thirteen'); INSERT INTO t1 VALUES(11394, 82761, 'eighty-two thousand seven hundred sixty-one'); INSERT INTO t1 VALUES(11395, 49998, 'forty-nine thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(11396, 26146, 'twenty-six thousand one hundred forty-six'); INSERT INTO t1 VALUES(11397, 99544, 'ninety-nine thousand five hundred forty-four'); INSERT INTO t1 VALUES(11398, 59132, 'fifty-nine thousand one hundred thirty-two'); INSERT INTO t1 VALUES(11399, 87410, 'eighty-seven thousand four hundred ten'); INSERT INTO t1 VALUES(11400, 7477, 'seven thousand four hundred seventy-seven'); INSERT INTO t1 VALUES(11401, 32551, 'thirty-two thousand five hundred fifty-one'); INSERT INTO t1 VALUES(11402, 24587, 'twenty-four thousand five hundred eighty-seven'); INSERT INTO t1 VALUES(11403, 23366, 'twenty-three thousand three hundred sixty-six'); INSERT INTO t1 VALUES(11404, 6506, 'six thousand five hundred six'); INSERT INTO t1 VALUES(11405, 17234, 'seventeen thousand two hundred thirty-four'); INSERT INTO t1 VALUES(11406, 60802, 'sixty thousand eight hundred two'); INSERT INTO t1 VALUES(11407, 8453, 'eight thousand four hundred fifty-three'); INSERT INTO t1 VALUES(11408, 92668, 'ninety-two thousand six hundred sixty-eight'); INSERT INTO t1 VALUES(11409, 13407, 'thirteen thousand four hundred seven'); INSERT INTO t1 VALUES(11410, 49076, 'forty-nine thousand seventy-six'); INSERT INTO t1 VALUES(11411, 44356, 'forty-four thousand three hundred fifty-six'); INSERT INTO t1 VALUES(11412, 67733, 'sixty-seven thousand seven hundred thirty-three'); INSERT INTO t1 VALUES(11413, 5214, 'five thousand two hundred fourteen'); INSERT INTO t1 VALUES(11414, 19748, 'nineteen thousand seven hundred forty-eight'); INSERT INTO t1 VALUES(11415, 26896, 'twenty-six thousand eight hundred ninety-six'); INSERT INTO t1 VALUES(11416, 80998, 'eighty thousand nine hundred ninety-eight'); INSERT INTO t1 VALUES(11417, 73725, 'seventy-three thousand seven hundred twenty-five'); INSERT INTO t1 VALUES(11418, 26, 'twenty-six'); INSERT INTO t1 VALUES(11419, 81561, 'eighty-one thousand five hundred sixty-one'); INSERT INTO t1 VALUES(11420, 55457, 'fifty-five thousand four hundred fifty-seven'); INSERT INTO t1 VALUES(11421, 1432, 'one thousand four hundred thirty-two'); INSERT INTO t1 VALUES(11422, 24299, 'twenty-four thousand two hundred ninety-nine'); INSERT INTO t1 VALUES(11423, 86061, 'eighty-six thousand sixty-one'); INSERT INTO t1 VALUES(11424, 6949, 'six thousand nine hundred forty-nine'); INSERT INTO t1 VALUES(11425, 3537, 'three thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(11426, 71141, 'seventy-one thousand one hundred forty-one'); INSERT INTO t1 VALUES(11427, 36650, 'thirty-six thousand six hundred fifty'); INSERT INTO t1 VALUES(11428, 48794, 'forty-eight thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(11429, 81832, 'eighty-one thousand eight hundred thirty-two'); INSERT INTO t1 VALUES(11430, 15264, 'fifteen thousand two hundred sixty-four'); INSERT INTO t1 VALUES(11431, 99742, 'ninety-nine thousand seven hundred forty-two'); INSERT INTO t1 VALUES(11432, 31428, 'thirty-one thousand four hundred twenty-eight'); INSERT INTO t1 VALUES(11433, 69500, 'sixty-nine thousand five hundred'); INSERT INTO t1 VALUES(11434, 50474, 'fifty thousand four hundred seventy-four'); INSERT INTO t1 VALUES(11435, 75871, 'seventy-five thousand eight hundred seventy-one'); INSERT INTO t1 VALUES(11436, 98799, 'ninety-eight thousand seven hundred ninety-nine'); INSERT INTO t1 VALUES(11437, 96598, 'ninety-six thousand five hundred ninety-eight'); INSERT INTO t1 VALUES(11438, 70277, 'seventy thousand two hundred seventy-seven'); INSERT INTO t1 VALUES(11439, 24196, 'twenty-four thousand one hundred ninety-six'); INSERT INTO t1 VALUES(11440, 2448, 'two thousand four hundred forty-eight'); INSERT INTO t1 VALUES(11441, 2189, 'two thousand one hundred eighty-nine'); INSERT INTO t1 VALUES(11442, 77681, 'seventy-seven thousand six hundred eighty-one'); INSERT INTO t1 VALUES(11443, 33368, 'thirty-three thousand three hundred sixty-eight'); INSERT INTO t1 VALUES(11444, 89467, 'eighty-nine thousand four hundred sixty-seven'); INSERT INTO t1 VALUES(11445, 66757, 'sixty-six thousand seven hundred fifty-seven'); INSERT INTO t1 VALUES(11446, 68843, 'sixty-eight thousand eight hundred forty-three'); INSERT INTO t1 VALUES(11447, 75712, 'seventy-five thousand seven hundred twelve'); INSERT INTO t1 VALUES(11448, 93789, 'ninety-three thousand seven hundred eighty-nine'); INSERT INTO t1 VALUES(11449, 91785, 'ninety-one thousand seven hundred eighty-five'); INSERT INTO t1 VALUES(11450, 55437, 'fifty-five thousand four hundred thirty-seven'); INSERT INTO t1 VALUES(11451, 64913, 'sixty-four thousand nine hundred thirteen'); INSERT INTO t1 VALUES(11452, 61058, 'sixty-one thousand fifty-eight'); INSERT INTO t1 VALUES(11453, 72586, 'seventy-two thousand five hundred eighty-six'); INSERT INTO t1 VALUES(11454, 54008, 'fifty-four thousand eight'); INSERT INTO t1 VALUES(11455, 79964, 'seventy-nine thousand nine hundred sixty-four'); INSERT INTO t1 VALUES(11456, 65329, 'sixty-five thousand three hundred twenty-nine'); INSERT INTO t1 VALUES(11457, 11278, 'eleven thousand two hundred seventy-eight'); INSERT INTO t1 VALUES(11458, 81079, 'eighty-one thousand seventy-nine'); INSERT INTO t1 VALUES(11459, 11423, 'eleven thousand four hundred twenty-three'); INSERT INTO t1 VALUES(11460, 78609, 'seventy-eight thousand six hundred nine'); INSERT INTO t1 VALUES(11461, 81322, 'eighty-one thousand three hundred twenty-two'); INSERT INTO t1 VALUES(11462, 83008, 'eighty-three thousand eight'); INSERT INTO t1 VALUES(11463, 62030, 'sixty-two thousand thirty'); INSERT INTO t1 VALUES(11464, 76211, 'seventy-six thousand two hundred eleven'); INSERT INTO t1 VALUES(11465, 44940, 'forty-four thousand nine hundred forty'); INSERT INTO t1 VALUES(11466, 31132, 'thirty-one thousand one hundred thirty-two'); INSERT INTO t1 VALUES(11467, 451, 'four hundred fifty-one'); INSERT INTO t1 VALUES(11468, 34813, 'thirty-four thousand eight hundred thirteen'); INSERT INTO t1 VALUES(11469, 51525, 'fifty-one thousand five hundred twenty-five'); INSERT INTO t1 VALUES(11470, 19797, 'nineteen thousand seven hundred ninety-seven'); INSERT INTO t1 VALUES(11471, 30615, 'thirty thousand six hundred fifteen'); INSERT INTO t1 VALUES(11472, 87043, 'eighty-seven thousand forty-three'); INSERT INTO t1 VALUES(11473, 18596, 'eighteen thousand five hundred ninety-six'); INSERT INTO t1 VALUES(11474, 58507, 'fifty-eight thousand five hundred seven'); INSERT INTO t1 VALUES(11475, 98613, 'ninety-eight thousand six hundred thirteen'); INSERT INTO t1 VALUES(11476, 92373, 'ninety-two thousand three hundred seventy-three'); INSERT INTO t1 VALUES(11477, 11573, 'eleven thousand five hundred seventy-three'); INSERT INTO t1 VALUES(11478, 83438, 'eighty-three thousand four hundred thirty-eight'); INSERT INTO t1 VALUES(11479, 52226, 'fifty-two thousand two hundred twenty-six'); INSERT INTO t1 VALUES(11480, 78213, 'seventy-eight thousand two hundred thirteen'); INSERT INTO t1 VALUES(11481, 65564, 'sixty-five thousand five hundred sixty-four'); INSERT INTO t1 VALUES(11482, 56712, 'fifty-six thousand seven hundred twelve'); INSERT INTO t1 VALUES(11483, 9341, 'nine thousand three hundred forty-one'); INSERT INTO t1 VALUES(11484, 8238, 'eight thousand two hundred thirty-eight'); INSERT INTO t1 VALUES(11485, 34339, 'thirty-four thousand three hundred thirty-nine'); INSERT INTO t1 VALUES(11486, 41117, 'forty-one thousand one hundred seventeen'); INSERT INTO t1 VALUES(11487, 38491, 'thirty-eight thousand four hundred ninety-one'); INSERT INTO t1 VALUES(11488, 71427, 'seventy-one thousand four hundred twenty-seven'); INSERT INTO t1 VALUES(11489, 12832, 'twelve thousand eight hundred thirty-two'); INSERT INTO t1 VALUES(11490, 69566, 'sixty-nine thousand five hundred sixty-six'); INSERT INTO t1 VALUES(11491, 99369, 'ninety-nine thousand three hundred sixty-nine'); INSERT INTO t1 VALUES(11492, 36972, 'thirty-six thousand nine hundred seventy-two'); INSERT INTO t1 VALUES(11493, 13793, 'thirteen thousand seven hundred ninety-three'); INSERT INTO t1 VALUES(11494, 67336, 'sixty-seven thousand three hundred thirty-six'); INSERT INTO t1 VALUES(11495, 77008, 'seventy-seven thousand eight'); INSERT INTO t1 VALUES(11496, 84880, 'eighty-four thousand eight hundred eighty'); INSERT INTO t1 VALUES(11497, 67593, 'sixty-seven thousand five hundred ninety-three'); INSERT INTO t1 VALUES(11498, 96003, 'ninety-six thousand three'); INSERT INTO t1 VALUES(11499, 22676, 'twenty-two thousand six hundred seventy-six'); INSERT INTO t1 VALUES(11500, 45875, 'forty-five thousand eight hundred seventy-five'); INSERT INTO t1 VALUES(11501, 29428, 'twenty-nine thousand four hundred twenty-eight'); INSERT INTO t1 VALUES(11502, 71253, 'seventy-one thousand two hundred fifty-three'); INSERT INTO t1 VALUES(11503, 92119, 'ninety-two thousand one hundred nineteen'); INSERT INTO t1 VALUES(11504, 87647, 'eighty-seven thousand six hundred forty-seven'); INSERT INTO t1 VALUES(11505, 64004, 'sixty-four thousand four'); INSERT INTO t1 VALUES(11506, 22936, 'twenty-two thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(11507, 86547, 'eighty-six thousand five hundred forty-seven'); INSERT INTO t1 VALUES(11508, 24638, 'twenty-four thousand six hundred thirty-eight'); INSERT INTO t1 VALUES(11509, 14829, 'fourteen thousand eight hundred twenty-nine'); INSERT INTO t1 VALUES(11510, 2581, 'two thousand five hundred eighty-one'); INSERT INTO t1 VALUES(11511, 42525, 'forty-two thousand five hundred twenty-five'); INSERT INTO t1 VALUES(11512, 88603, 'eighty-eight thousand six hundred three'); INSERT INTO t1 VALUES(11513, 83540, 'eighty-three thousand five hundred forty'); INSERT INTO t1 VALUES(11514, 63643, 'sixty-three thousand six hundred forty-three'); INSERT INTO t1 VALUES(11515, 68500, 'sixty-eight thousand five hundred'); INSERT INTO t1 VALUES(11516, 20593, 'twenty thousand five hundred ninety-three'); INSERT INTO t1 VALUES(11517, 46867, 'forty-six thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(11518, 85328, 'eighty-five thousand three hundred twenty-eight'); INSERT INTO t1 VALUES(11519, 70571, 'seventy thousand five hundred seventy-one'); INSERT INTO t1 VALUES(11520, 86969, 'eighty-six thousand nine hundred sixty-nine'); INSERT INTO t1 VALUES(11521, 59122, 'fifty-nine thousand one hundred twenty-two'); INSERT INTO t1 VALUES(11522, 36888, 'thirty-six thousand eight hundred eighty-eight'); INSERT INTO t1 VALUES(11523, 18246, 'eighteen thousand two hundred forty-six'); INSERT INTO t1 VALUES(11524, 5735, 'five thousand seven hundred thirty-five'); INSERT INTO t1 VALUES(11525, 46945, 'forty-six thousand nine hundred forty-five'); INSERT INTO t1 VALUES(11526, 87180, 'eighty-seven thousand one hundred eighty'); INSERT INTO t1 VALUES(11527, 63162, 'sixty-three thousand one hundred sixty-two'); INSERT INTO t1 VALUES(11528, 3557, 'three thousand five hundred fifty-seven'); INSERT INTO t1 VALUES(11529, 1143, 'one thousand one hundred forty-three'); INSERT INTO t1 VALUES(11530, 80347, 'eighty thousand three hundred forty-seven'); INSERT INTO t1 VALUES(11531, 96489, 'ninety-six thousand four hundred eighty-nine'); INSERT INTO t1 VALUES(11532, 13135, 'thirteen thousand one hundred thirty-five'); INSERT INTO t1 VALUES(11533, 81471, 'eighty-one thousand four hundred seventy-one'); INSERT INTO t1 VALUES(11534, 36025, 'thirty-six thousand twenty-five'); INSERT INTO t1 VALUES(11535, 36734, 'thirty-six thousand seven hundred thirty-four'); INSERT INTO t1 VALUES(11536, 19779, 'nineteen thousand seven hundred seventy-nine'); INSERT INTO t1 VALUES(11537, 91936, 'ninety-one thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(11538, 64100, 'sixty-four thousand one hundred'); INSERT INTO t1 VALUES(11539, 62978, 'sixty-two thousand nine hundred seventy-eight'); INSERT INTO t1 VALUES(11540, 33214, 'thirty-three thousand two hundred fourteen'); INSERT INTO t1 VALUES(11541, 8158, 'eight thousand one hundred fifty-eight'); INSERT INTO t1 VALUES(11542, 60898, 'sixty thousand eight hundred ninety-eight'); INSERT INTO t1 VALUES(11543, 96915, 'ninety-six thousand nine hundred fifteen'); INSERT INTO t1 VALUES(11544, 38058, 'thirty-eight thousand fifty-eight'); INSERT INTO t1 VALUES(11545, 24141, 'twenty-four thousand one hundred forty-one'); INSERT INTO t1 VALUES(11546, 51175, 'fifty-one thousand one hundred seventy-five'); INSERT INTO t1 VALUES(11547, 79766, 'seventy-nine thousand seven hundred sixty-six'); INSERT INTO t1 VALUES(11548, 52678, 'fifty-two thousand six hundred seventy-eight'); INSERT INTO t1 VALUES(11549, 37936, 'thirty-seven thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(11550, 67188, 'sixty-seven thousand one hundred eighty-eight'); INSERT INTO t1 VALUES(11551, 44936, 'forty-four thousand nine hundred thirty-six'); INSERT INTO t1 VALUES(11552, 12388, 'twelve thousand three hundred eighty-eight'); INSERT INTO t1 VALUES(11553, 56516, 'fifty-six thousand five hundred sixteen'); INSERT INTO t1 VALUES(11554, 88663, 'eighty-eight thousand six hundred sixty-three'); INSERT INTO t1 VALUES(11555, 91183, 'ninety-one thousand one hundred eighty-three'); INSERT INTO t1 VALUES(11556, 95709, 'ninety-five thousand seven hundred nine'); INSERT INTO t1 VALUES(11557, 92700, 'ninety-two thousand seven hundred'); INSERT INTO t1 VALUES(11558, 74523, 'seventy-four thousand five hundred twenty-three'); INSERT INTO t1 VALUES(11559, 67663, 'sixty-seven thousand six hundred sixty-three'); INSERT INTO t1 VALUES(11560, 63533, 'sixty-three thousand five hundred thirty-three'); INSERT INTO t1 VALUES(11561, 60725, 'sixty thousand seven hundred twenty-five'); INSERT INTO t1 VALUES(11562, 41505, 'forty-one thousand five hundred five'); INSERT INTO t1 VALUES(11563, 34241, 'thirty-four thousand two hundred forty-one'); INSERT INTO t1 VALUES(11564, 49949, 'forty-nine thousand nine hundred forty-nine'); INSERT INTO t1 VALUES(11565, 48754, 'forty-eight thousand seven hundred fifty-four'); INSERT INTO t1 VALUES(11566, 35379, 'thirty-five thousand three hundred seventy-nine'); INSERT INTO t1 VALUES(11567, 33976, 'thirty-three thousand nine hundred seventy-six'); INSERT INTO t1 VALUES(11568, 89912, 'eighty-nine thousand nine hundred twelve'); INSERT INTO t1 VALUES(11569, 99511, 'ninety-nine thousand five hundred eleven'); INSERT INTO t1 VALUES(11570, 68737, 'sixty-eight thousand seven hundred thirty-seven'); INSERT INTO t1 VALUES(11571, 31723, 'thirty-one thousand seven hundred twenty-three'); INSERT INTO t1 VALUES(11572, 77376, 'seventy-seven thousand three hundred seventy-six'); INSERT INTO t1 VALUES(11573, 74354, 'seventy-four thousand three hundred fifty-four'); INSERT INTO t1 VALUES(11574, 30626, 'thirty thousand six hundred twenty-six'); INSERT INTO t1 VALUES(11575, 90152, 'ninety thousand one hundred fifty-two'); INSERT INTO t1 VALUES(11576, 66834, 'sixty-six thousand eight hundred thirty-four'); INSERT INTO t1 VALUES(11577, 76481, 'seventy-six thousand four hundred eighty-one'); INSERT INTO t1 VALUES(11578, 87749, 'eighty-seven thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(11579, 87278, 'eighty-seven thousand two hundred seventy-eight'); INSERT INTO t1 VALUES(11580, 2521, 'two thousand five hundred twenty-one'); INSERT INTO t1 VALUES(11581, 73369, 'seventy-three thousand three hundred sixty-nine'); INSERT INTO t1 VALUES(11582, 47184, 'forty-seven thousand one hundred eighty-four'); INSERT INTO t1 VALUES(11583, 78645, 'seventy-eight thousand six hundred forty-five'); INSERT INTO t1 VALUES(11584, 25019, 'twenty-five thousand nineteen'); INSERT INTO t1 VALUES(11585, 9841, 'nine thousand eight hundred forty-one'); INSERT INTO t1 VALUES(11586, 597, 'five hundred ninety-seven'); INSERT INTO t1 VALUES(11587, 93004, 'ninety-three thousand four'); INSERT INTO t1 VALUES(11588, 37139, 'thirty-seven thousand one hundred thirty-nine'); INSERT INTO t1 VALUES(11589, 80086, 'eighty thousand eighty-six'); INSERT INTO t1 VALUES(11590, 85399, 'eighty-five thousand three hundred ninety-nine'); INSERT INTO t1 VALUES(11591, 80460, 'eighty thousand four hundred sixty'); INSERT INTO t1 VALUES(11592, 11698, 'eleven thousand six hundred ninety-eight'); INSERT INTO t1 VALUES(11593, 86908, 'eighty-six thousand nine hundred eight'); INSERT INTO t1 VALUES(11594, 60824, 'sixty thousand eight hundred twenty-four'); INSERT INTO t1 VALUES(11595, 46088, 'forty-six thousand eighty-eight'); INSERT INTO t1 VALUES(11596, 64796, 'sixty-four thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(11597, 34624, 'thirty-four thousand six hundred twenty-four'); INSERT INTO t1 VALUES(11598, 53869, 'fifty-three thousand eight hundred sixty-nine'); INSERT INTO t1 VALUES(11599, 79049, 'seventy-nine thousand forty-nine'); INSERT INTO t1 VALUES(11600, 91212, 'ninety-one thousand two hundred twelve'); INSERT INTO t1 VALUES(11601, 8297, 'eight thousand two hundred ninety-seven'); INSERT INTO t1 VALUES(11602, 52256, 'fifty-two thousand two hundred fifty-six'); INSERT INTO t1 VALUES(11603, 52650, 'fifty-two thousand six hundred fifty'); INSERT INTO t1 VALUES(11604, 62546, 'sixty-two thousand five hundred forty-six'); INSERT INTO t1 VALUES(11605, 80398, 'eighty thousand three hundred ninety-eight'); INSERT INTO t1 VALUES(11606, 65382, 'sixty-five thousand three hundred eighty-two'); INSERT INTO t1 VALUES(11607, 64578, 'sixty-four thousand five hundred seventy-eight'); INSERT INTO t1 VALUES(11608, 58563, 'fifty-eight thousand five hundred sixty-three'); INSERT INTO t1 VALUES(11609, 74098, 'seventy-four thousand ninety-eight'); INSERT INTO t1 VALUES(11610, 71064, 'seventy-one thousand sixty-four'); INSERT INTO t1 VALUES(11611, 14240, 'fourteen thousand two hundred forty'); INSERT INTO t1 VALUES(11612, 95356, 'ninety-five thousand three hundred fifty-six'); INSERT INTO t1 VALUES(11613, 48377, 'forty-eight thousand three hundred seventy-seven'); INSERT INTO t1 VALUES(11614, 66848, 'sixty-six thousand eight hundred forty-eight'); INSERT INTO t1 VALUES(11615, 87064, 'eighty-seven thousand sixty-four'); INSERT INTO t1 VALUES(11616, 44848, 'forty-four thousand eight hundred forty-eight'); INSERT INTO t1 VALUES(11617, 56562, 'fifty-six thousand five hundred sixty-two'); INSERT INTO t1 VALUES(11618, 5526, 'five thousand five hundred twenty-six'); INSERT INTO t1 VALUES(11619, 3169, 'three thousand one hundred sixty-nine'); INSERT INTO t1 VALUES(11620, 37076, 'thirty-seven thousand seventy-six'); INSERT INTO t1 VALUES(11621, 64712, 'sixty-four thousand seven hundred twelve'); INSERT INTO t1 VALUES(11622, 34748, 'thirty-four thousand seven hundred forty-eight'); INSERT INTO t1 VALUES(11623, 78880, 'seventy-eight thousand eight hundred eighty'); INSERT INTO t1 VALUES(11624, 75589, 'seventy-five thousand five hundred eighty-nine'); INSERT INTO t1 VALUES(11625, 68060, 'sixty-eight thousand sixty'); INSERT INTO t1 VALUES(11626, 15868, 'fifteen thousand eight hundred sixty-eight'); INSERT INTO t1 VALUES(11627, 91852, 'ninety-one thousand eight hundred fifty-two'); INSERT INTO t1 VALUES(11628, 47224, 'forty-seven thousand two hundred twenty-four'); INSERT INTO t1 VALUES(11629, 550, 'five hundred fifty'); INSERT INTO t1 VALUES(11630, 69950, 'sixty-nine thousand nine hundred fifty'); INSERT INTO t1 VALUES(11631, 82055, 'eighty-two thousand fifty-five'); INSERT INTO t1 VALUES(11632, 31665, 'thirty-one thousand six hundred sixty-five'); INSERT INTO t1 VALUES(11633, 37940, 'thirty-seven thousand nine hundred forty'); INSERT INTO t1 VALUES(11634, 39839, 'thirty-nine thousand eight hundred thirty-nine'); INSERT INTO t1 VALUES(11635, 47627, 'forty-seven thousand six hundred twenty-seven'); INSERT INTO t1 VALUES(11636, 8199, 'eight thousand one hundred ninety-nine'); INSERT INTO t1 VALUES(11637, 98279, 'ninety-eight thousand two hundred seventy-nine'); INSERT INTO t1 VALUES(11638, 21606, 'twenty-one thousand six hundred six'); INSERT INTO t1 VALUES(11639, 47614, 'forty-seven thousand six hundred fourteen'); INSERT INTO t1 VALUES(11640, 72258, 'seventy-two thousand two hundred fifty-eight'); INSERT INTO t1 VALUES(11641, 78537, 'seventy-eight thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(11642, 77635, 'seventy-seven thousand six hundred thirty-five'); INSERT INTO t1 VALUES(11643, 34736, 'thirty-four thousand seven hundred thirty-six'); INSERT INTO t1 VALUES(11644, 42728, 'forty-two thousand seven hundred twenty-eight'); INSERT INTO t1 VALUES(11645, 43965, 'forty-three thousand nine hundred sixty-five'); INSERT INTO t1 VALUES(11646, 94366, 'ninety-four thousand three hundred sixty-six'); INSERT INTO t1 VALUES(11647, 57106, 'fifty-seven thousand one hundred six'); INSERT INTO t1 VALUES(11648, 14029, 'fourteen thousand twenty-nine'); INSERT INTO t1 VALUES(11649, 27271, 'twenty-seven thousand two hundred seventy-one'); INSERT INTO t1 VALUES(11650, 77395, 'seventy-seven thousand three hundred ninety-five'); INSERT INTO t1 VALUES(11651, 27877, 'twenty-seven thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(11652, 36754, 'thirty-six thousand seven hundred fifty-four'); INSERT INTO t1 VALUES(11653, 44673, 'forty-four thousand six hundred seventy-three'); INSERT INTO t1 VALUES(11654, 13235, 'thirteen thousand two hundred thirty-five'); INSERT INTO t1 VALUES(11655, 22977, 'twenty-two thousand nine hundred seventy-seven'); INSERT INTO t1 VALUES(11656, 39829, 'thirty-nine thousand eight hundred twenty-nine'); INSERT INTO t1 VALUES(11657, 72989, 'seventy-two thousand nine hundred eighty-nine'); INSERT INTO t1 VALUES(11658, 8694, 'eight thousand six hundred ninety-four'); INSERT INTO t1 VALUES(11659, 70089, 'seventy thousand eighty-nine'); INSERT INTO t1 VALUES(11660, 95286, 'ninety-five thousand two hundred eighty-six'); INSERT INTO t1 VALUES(11661, 41050, 'forty-one thousand fifty'); INSERT INTO t1 VALUES(11662, 44886, 'forty-four thousand eight hundred eighty-six'); INSERT INTO t1 VALUES(11663, 1543, 'one thousand five hundred forty-three'); INSERT INTO t1 VALUES(11664, 99237, 'ninety-nine thousand two hundred thirty-seven'); INSERT INTO t1 VALUES(11665, 26915, 'twenty-six thousand nine hundred fifteen'); INSERT INTO t1 VALUES(11666, 6181, 'six thousand one hundred eighty-one'); INSERT INTO t1 VALUES(11667, 95521, 'ninety-five thousand five hundred twenty-one'); INSERT INTO t1 VALUES(11668, 25137, 'twenty-five thousand one hundred thirty-seven'); INSERT INTO t1 VALUES(11669, 1596, 'one thousand five hundred ninety-six'); INSERT INTO t1 VALUES(11670, 79320, 'seventy-nine thousand three hundred twenty'); INSERT INTO t1 VALUES(11671, 4732, 'four thousand seven hundred thirty-two'); INSERT INTO t1 VALUES(11672, 81621, 'eighty-one thousand six hundred twenty-one'); INSERT INTO t1 VALUES(11673, 63022, 'sixty-three thousand twenty-two'); INSERT INTO t1 VALUES(11674, 61122, 'sixty-one thousand one hundred twenty-two'); INSERT INTO t1 VALUES(11675, 70956, 'seventy thousand nine hundred fifty-six'); INSERT INTO t1 VALUES(11676, 8217, 'eight thousand two hundred seventeen'); INSERT INTO t1 VALUES(11677, 10677, 'ten thousand six hundred seventy-seven'); INSERT INTO t1 VALUES(11678, 574, 'five hundred seventy-four'); INSERT INTO t1 VALUES(11679, 84658, 'eighty-four thousand six hundred fifty-eight'); INSERT INTO t1 VALUES(11680, 84748, 'eighty-four thousand seven hundred forty-eight'); INSERT INTO t1 VALUES(11681, 80802, 'eighty thousand eight hundred two'); INSERT INTO t1 VALUES(11682, 2491, 'two thousand four hundred ninety-one'); INSERT INTO t1 VALUES(11683, 68200, 'sixty-eight thousand two hundred'); INSERT INTO t1 VALUES(11684, 65450, 'sixty-five thousand four hundred fifty'); INSERT INTO t1 VALUES(11685, 84151, 'eighty-four thousand one hundred fifty-one'); INSERT INTO t1 VALUES(11686, 47815, 'forty-seven thousand eight hundred fifteen'); INSERT INTO t1 VALUES(11687, 56587, 'fifty-six thousand five hundred eighty-seven'); INSERT INTO t1 VALUES(11688, 56738, 'fifty-six thousand seven hundred thirty-eight'); INSERT INTO t1 VALUES(11689, 23860, 'twenty-three thousand eight hundred sixty'); INSERT INTO t1 VALUES(11690, 99587, 'ninety-nine thousand five hundred eighty-seven'); INSERT INTO t1 VALUES(11691, 52856, 'fifty-two thousand eight hundred fifty-six'); INSERT INTO t1 VALUES(11692, 6717, 'six thousand seven hundred seventeen'); INSERT INTO t1 VALUES(11693, 52258, 'fifty-two thousand two hundred fifty-eight'); INSERT INTO t1 VALUES(11694, 64634, 'sixty-four thousand six hundred thirty-four'); INSERT INTO t1 VALUES(11695, 46217, 'forty-six thousand two hundred seventeen'); INSERT INTO t1 VALUES(11696, 50877, 'fifty thousand eight hundred seventy-seven'); INSERT INTO t1 VALUES(11697, 1147, 'one thousand one hundred forty-seven'); INSERT INTO t1 VALUES(11698, 22156, 'twenty-two thousand one hundred fifty-six'); INSERT INTO t1 VALUES(11699, 62653, 'sixty-two thousand six hundred fifty-three'); INSERT INTO t1 VALUES(11700, 37198, 'thirty-seven thousand one hundred ninety-eight'); INSERT INTO t1 VALUES(11701, 5749, 'five thousand seven hundred forty-nine'); INSERT INTO t1 VALUES(11702, 42329, 'forty-two thousand three hundred twenty-nine'); INSERT INTO t1 VALUES(11703, 27628, 'twenty-seven thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(11704, 45001, 'forty-five thousand one'); INSERT INTO t1 VALUES(11705, 48883, 'forty-eight thousand eight hundred eighty-three'); INSERT INTO t1 VALUES(11706, 94320, 'ninety-four thousand three hundred twenty'); INSERT INTO t1 VALUES(11707, 88991, 'eighty-eight thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(11708, 74019, 'seventy-four thousand nineteen'); INSERT INTO t1 VALUES(11709, 10346, 'ten thousand three hundred forty-six'); INSERT INTO t1 VALUES(11710, 34424, 'thirty-four thousand four hundred twenty-four'); INSERT INTO t1 VALUES(11711, 13089, 'thirteen thousand eighty-nine'); INSERT INTO t1 VALUES(11712, 2674, 'two thousand six hundred seventy-four'); INSERT INTO t1 VALUES(11713, 76123, 'seventy-six thousand one hundred twenty-three'); INSERT INTO t1 VALUES(11714, 51283, 'fifty-one thousand two hundred eighty-three'); INSERT INTO t1 VALUES(11715, 3746, 'three thousand seven hundred forty-six'); INSERT INTO t1 VALUES(11716, 72574, 'seventy-two thousand five hundred seventy-four'); INSERT INTO t1 VALUES(11717, 88798, 'eighty-eight thousand seven hundred ninety-eight'); INSERT INTO t1 VALUES(11718, 73575, 'seventy-three thousand five hundred seventy-five'); INSERT INTO t1 VALUES(11719, 92114, 'ninety-two thousand one hundred fourteen'); INSERT INTO t1 VALUES(11720, 75394, 'seventy-five thousand three hundred ninety-four'); INSERT INTO t1 VALUES(11721, 36040, 'thirty-six thousand forty'); INSERT INTO t1 VALUES(11722, 71503, 'seventy-one thousand five hundred three'); INSERT INTO t1 VALUES(11723, 2315, 'two thousand three hundred fifteen'); INSERT INTO t1 VALUES(11724, 73894, 'seventy-three thousand eight hundred ninety-four'); INSERT INTO t1 VALUES(11725, 16991, 'sixteen thousand nine hundred ninety-one'); INSERT INTO t1 VALUES(11726, 14695, 'fourteen thousand six hundred ninety-five'); INSERT INTO t1 VALUES(11727, 55954, 'fifty-five thousand nine hundred fifty-four'); INSERT INTO t1 VALUES(11728, 14680, 'fourteen thousand six hundred eighty'); INSERT INTO t1 VALUES(11729, 88922, 'eighty-eight thousand nine hundred twenty-two'); INSERT INTO t1 VALUES(11730, 35046, 'thirty-five thousand forty-six'); INSERT INTO t1 VALUES(11731, 94898, 'ninety-four thousand eight hundred ninety-eight'); INSERT INTO t1 VALUES(11732, 18410, 'eighteen thousand four hundred ten'); INSERT INTO t1 VALUES(11733, 34263, 'thirty-four thousand two hundred sixty-three'); INSERT INTO t1 VALUES(11734, 35943, 'thirty-five thousand nine hundred forty-three'); INSERT INTO t1 VALUES(11735, 48366, 'forty-eight thousand three hundred sixty-six'); INSERT INTO t1 VALUES(11736, 43585, 'forty-three thousand five hundred eighty-five'); INSERT INTO t1 VALUES(11737, 26031, 'twenty-six thousand thirty-one'); INSERT INTO t1 VALUES(11738, 94746, 'ninety-four thousand seven hundred forty-six'); INSERT INTO t1 VALUES(11739, 44929, 'forty-four thousand nine hundred twenty-nine'); INSERT INTO t1 VALUES(11740, 80619, 'eighty thousand six hundred nineteen'); INSERT INTO t1 VALUES(11741, 664, 'six hundred sixty-four'); INSERT INTO t1 VALUES(11742, 88235, 'eighty-eight thousand two hundred thirty-five'); INSERT INTO t1 VALUES(11743, 55894, 'fifty-five thousand eight hundred ninety-four'); INSERT INTO t1 VALUES(11744, 39705, 'thirty-nine thousand seven hundred five'); INSERT INTO t1 VALUES(11745, 23060, 'twenty-three thousand sixty'); INSERT INTO t1 VALUES(11746, 83123, 'eighty-three thousand one hundred twenty-three'); INSERT INTO t1 VALUES(11747, 24248, 'twenty-four thousand two hundred forty-eight'); INSERT INTO t1 VALUES(11748, 91878, 'ninety-one thousand eight hundred seventy-eight'); INSERT INTO t1 VALUES(11749, 14082, 'fourteen thousand eighty-two'); INSERT INTO t1 VALUES(11750, 41756, 'forty-one thousand seven hundred fifty-six'); INSERT INTO t1 VALUES(11751, 71410, 'seventy-one thousand four hundred ten'); INSERT INTO t1 VALUES(11752, 42801, 'forty-two thousand eight hundred one'); INSERT INTO t1 VALUES(11753, 25844, 'twenty-five thousand eight hundred forty-four'); INSERT INTO t1 VALUES(11754, 60856, 'sixty thousand eight hundred fifty-six'); INSERT INTO t1 VALUES(11755, 187, 'one hundred eighty-seven'); INSERT INTO t1 VALUES(11756, 59427, 'fifty-nine thousand four hundred twenty-seven'); INSERT INTO t1 VALUES(11757, 90246, 'ninety thousand two hundred forty-six'); INSERT INTO t1 VALUES(11758, 35185, 'thirty-five thousand one hundred eighty-five'); INSERT INTO t1 VALUES(11759, 88747, 'eighty-eight thousand seven hundred forty-seven'); INSERT INTO t1 VALUES(11760, 46324, 'forty-six thousand three hundred twenty-four'); INSERT INTO t1 VALUES(11761, 17689, 'seventeen thousand six hundred eighty-nine'); INSERT INTO t1 VALUES(11762, 89573, 'eighty-nine thousand five hundred seventy-three'); INSERT INTO t1 VALUES(11763, 52264, 'fifty-two thousand two hundred sixty-four'); INSERT INTO t1 VALUES(11764, 71319, 'seventy-one thousand three hundred nineteen'); INSERT INTO t1 VALUES(11765, 67934, 'sixty-seven thousand nine hundred thirty-four'); INSERT INTO t1 VALUES(11766, 12071, 'twelve thousand seventy-one'); INSERT INTO t1 VALUES(11767, 48225, 'forty-eight thousand two hundred twenty-five'); INSERT INTO t1 VALUES(11768, 93426, 'ninety-three thousand four hundred twenty-six'); INSERT INTO t1 VALUES(11769, 8373, 'eight thousand three hundred seventy-three'); INSERT INTO t1 VALUES(11770, 5961, 'five thousand nine hundred sixty-one'); INSERT INTO t1 VALUES(11771, 45291, 'forty-five thousand two hundred ninety-one'); INSERT INTO t1 VALUES(11772, 36412, 'thirty-six thousand four hundred twelve'); INSERT INTO t1 VALUES(11773, 72929, 'seventy-two thousand nine hundred twenty-nine'); INSERT INTO t1 VALUES(11774, 47030, 'forty-seven thousand thirty'); INSERT INTO t1 VALUES(11775, 95706, 'ninety-five thousand seven hundred six'); INSERT INTO t1 VALUES(11776, 49847, 'forty-nine thousand eight hundred forty-seven'); INSERT INTO t1 VALUES(11777, 96438, 'ninety-six thousand four hundred thirty-eight'); INSERT INTO t1 VALUES(11778, 91216, 'ninety-one thousand two hundred sixteen'); INSERT INTO t1 VALUES(11779, 97092, 'ninety-seven thousand ninety-two'); INSERT INTO t1 VALUES(11780, 20907, 'twenty thousand nine hundred seven'); INSERT INTO t1 VALUES(11781, 58401, 'fifty-eight thousand four hundred one'); INSERT INTO t1 VALUES(11782, 78263, 'seventy-eight thousand two hundred sixty-three'); INSERT INTO t1 VALUES(11783, 5241, 'five thousand two hundred forty-one'); INSERT INTO t1 VALUES(11784, 61638, 'sixty-one thousand six hundred thirty-eight'); INSERT INTO t1 VALUES(11785, 58920, 'fifty-eight thousand nine hundred twenty'); INSERT INTO t1 VALUES(11786, 99261, 'ninety-nine thousand two hundred sixty-one'); INSERT INTO t1 VALUES(11787, 84327, 'eighty-four thousand three hundred twenty-seven'); INSERT INTO t1 VALUES(11788, 83127, 'eighty-three thousand one hundred twenty-seven'); INSERT INTO t1 VALUES(11789, 75563, 'seventy-five thousand five hundred sixty-three'); INSERT INTO t1 VALUES(11790, 3685, 'three thousand six hundred eighty-five'); INSERT INTO t1 VALUES(11791, 24055, 'twenty-four thousand fifty-five'); INSERT INTO t1 VALUES(11792, 85315, 'eighty-five thousand three hundred fifteen'); INSERT INTO t1 VALUES(11793, 56755, 'fifty-six thousand seven hundred fifty-five'); INSERT INTO t1 VALUES(11794, 62733, 'sixty-two thousand seven hundred thirty-three'); INSERT INTO t1 VALUES(11795, 15894, 'fifteen thousand eight hundred ninety-four'); INSERT INTO t1 VALUES(11796, 30237, 'thirty thousand two hundred thirty-seven'); INSERT INTO t1 VALUES(11797, 68439, 'sixty-eight thousand four hundred thirty-nine'); INSERT INTO t1 VALUES(11798, 34543, 'thirty-four thousand five hundred forty-three'); INSERT INTO t1 VALUES(11799, 53488, 'fifty-three thousand four hundred eighty-eight'); INSERT INTO t1 VALUES(11800, 5527, 'five thousand five hundred twenty-seven'); INSERT INTO t1 VALUES(11801, 92320, 'ninety-two thousand three hundred twenty'); INSERT INTO t1 VALUES(11802, 86043, 'eighty-six thousand forty-three'); INSERT INTO t1 VALUES(11803, 52679, 'fifty-two thousand six hundred seventy-nine'); INSERT INTO t1 VALUES(11804, 72616, 'seventy-two thousand six hundred sixteen'); INSERT INTO t1 VALUES(11805, 4901, 'four thousand nine hundred one'); INSERT INTO t1 VALUES(11806, 63430, 'sixty-three thousand four hundred thirty'); INSERT INTO t1 VALUES(11807, 83548, 'eighty-three thousand five hundred forty-eight'); INSERT INTO t1 VALUES(11808, 78796, 'seventy-eight thousand seven hundred ninety-six'); INSERT INTO t1 VALUES(11809, 11955, 'eleven thousand nine hundred fifty-five'); INSERT INTO t1 VALUES(11810, 13405, 'thirteen thousand four hundred five'); INSERT INTO t1 VALUES(11811, 80790, 'eighty thousand seven hundred ninety'); INSERT INTO t1 VALUES(11812, 94547, 'ninety-four thousand five hundred forty-seven'); INSERT INTO t1 VALUES(11813, 76038, 'seventy-six thousand thirty-eight'); INSERT INTO t1 VALUES(11814, 52697, 'fifty-two thousand six hundred ninety-seven'); INSERT INTO t1 VALUES(11815, 63858, 'sixty-three thousand eight hundred fifty-eight'); INSERT INTO t1 VALUES(11816, 42431, 'forty-two thousand four hundred thirty-one'); INSERT INTO t1 VALUES(11817, 57930, 'fifty-seven thousand nine hundred thirty'); INSERT INTO t1 VALUES(11818, 93806, 'ninety-three thousand eight hundred six'); INSERT INTO t1 VALUES(11819, 39813, 'thirty-nine thousand eight hundred thirteen'); INSERT INTO t1 VALUES(11820, 17321, 'seventeen thousand three hundred twenty-one'); INSERT INTO t1 VALUES(11821, 29719, 'twenty-nine thousand seven hundred nineteen'); INSERT INTO t1 VALUES(11822, 62650, 'sixty-two thousand six hundred fifty'); INSERT INTO t1 VALUES(11823, 56982, 'fifty-six thousand nine hundred eighty-two'); INSERT INTO t1 VALUES(11824, 54992, 'fifty-four thousand nine hundred ninety-two'); INSERT INTO t1 VALUES(11825, 48327, 'forty-eight thousand three hundred twenty-seven'); INSERT INTO t1 VALUES(11826, 30682, 'thirty thousand six hundred eighty-two'); INSERT INTO t1 VALUES(11827, 64819, 'sixty-four thousand eight hundred nineteen'); INSERT INTO t1 VALUES(11828, 34732, 'thirty-four thousand seven hundred thirty-two'); INSERT INTO t1 VALUES(11829, 53963, 'fifty-three thousand nine hundred sixty-three'); INSERT INTO t1 VALUES(11830, 61752, 'sixty-one thousand seven hundred fifty-two'); INSERT INTO t1 VALUES(11831, 30232, 'thirty thousand two hundred thirty-two'); INSERT INTO t1 VALUES(11832, 82568, 'eighty-two thousand five hundred sixty-eight'); INSERT INTO t1 VALUES(11833, 68428, 'sixty-eight thousand four hundred twenty-eight'); INSERT INTO t1 VALUES(11834, 46637, 'forty-six thousand six hundred thirty-seven'); INSERT INTO t1 VALUES(11835, 63321, 'sixty-three thousand three hundred twenty-one'); INSERT INTO t1 VALUES(11836, 71764, 'seventy-one thousand seven hundred sixty-four'); INSERT INTO t1 VALUES(11837, 62650, 'sixty-two thousand six hundred fifty'); INSERT INTO t1 VALUES(11838, 78696, 'seventy-eight thousand six hundred ninety-six'); INSERT INTO t1 VALUES(11839, 67760, 'sixty-seven thousand seven hundred sixty'); INSERT INTO t1 VALUES(11840, 64832, 'sixty-four thousand eight hundred thirty-two'); INSERT INTO t1 VALUES(11841, 63525, 'sixty-three thousand five hundred twenty-five'); INSERT INTO t1 VALUES(11842, 2622, 'two thousand six hundred twenty-two'); INSERT INTO t1 VALUES(11843, 87122, 'eighty-seven thousand one hundred twenty-two'); INSERT INTO t1 VALUES(11844, 27807, 'twenty-seven thousand eight hundred seven'); INSERT INTO t1 VALUES(11845, 94541, 'ninety-four thousand five hundred forty-one'); INSERT INTO t1 VALUES(11846, 7425, 'seven thousand four hundred twenty-five'); INSERT INTO t1 VALUES(11847, 29537, 'twenty-nine thousand five hundred thirty-seven'); INSERT INTO t1 VALUES(11848, 41706, 'forty-one thousand seven hundred six'); INSERT INTO t1 VALUES(11849, 50695, 'fifty thousand six hundred ninety-five'); INSERT INTO t1 VALUES(11850, 66898, 'sixty-six thousand eight hundred ninety-eight'); INSERT INTO t1 VALUES(11851, 52966, 'fifty-two thousand nine hundred sixty-six'); INSERT INTO t1 VALUES(11852, 29049, 'twenty-nine thousand forty-nine'); INSERT INTO t1 VALUES(11853, 66466, 'sixty-six thousand four hundred sixty-six'); INSERT INTO t1 VALUES(11854, 8541, 'eight thousand five hundred forty-one'); INSERT INTO t1 VALUES(11855, 87335, 'eighty-seven thousand three hundred thirty-five'); INSERT INTO t1 VALUES(11856, 1678, 'one thousand six hundred seventy-eight'); INSERT INTO t1 VALUES(11857, 11325, 'eleven thousand three hundred twenty-five'); INSERT INTO t1 VALUES(11858, 22612, 'twenty-two thousand six hundred twelve'); INSERT INTO t1 VALUES(11859, 98720, 'ninety-eight thousand seven hundred twenty'); INSERT INTO t1 VALUES(11860, 27605, 'twenty-seven thousand six hundred five'); INSERT INTO t1 VALUES(11861, 83302, 'eighty-three thousand three hundred two'); INSERT INTO t1 VALUES(11862, 84117, 'eighty-four thousand one hundred seventeen'); INSERT INTO t1 VALUES(11863, 44386, 'forty-four thousand three hundred eighty-six'); INSERT INTO t1 VALUES(11864, 32160, 'thirty-two thousand one hundred sixty'); INSERT INTO t1 VALUES(11865, 57855, 'fifty-seven thousand eight hundred fifty-five'); INSERT INTO t1 VALUES(11866, 37094, 'thirty-seven thousand ninety-four'); INSERT INTO t1 VALUES(11867, 49387, 'forty-nine thousand three hundred eighty-seven'); INSERT INTO t1 VALUES(11868, 10526, 'ten thousand five hundred twenty-six'); INSERT INTO t1 VALUES(11869, 60399, 'sixty thousand three hundred ninety-nine'); INSERT INTO t1 VALUES(11870, 89618, 'eighty-nine thousand six hundred eighteen'); INSERT INTO t1 VALUES(11871, 51011, 'fifty-one thousand eleven'); INSERT INTO t1 VALUES(11872, 72085, 'seventy-two thousand eighty-five'); INSERT INTO t1 VALUES(11873, 17522, 'seventeen thousand five hundred twenty-two'); INSERT INTO t1 VALUES(11874, 9794, 'nine thousand seven hundred ninety-four'); INSERT INTO t1 VALUES(11875, 16657, 'sixteen thousand six hundred fifty-seven'); INSERT INTO t1 VALUES(11876, 60667, 'sixty thousand six hundred sixty-seven'); INSERT INTO t1 VALUES(11877, 81047, 'eighty-one thousand forty-seven'); INSERT INTO t1 VALUES(11878, 44833, 'forty-four thousand eight hundred thirty-three'); INSERT INTO t1 VALUES(11879, 24224, 'twenty-four thousand two hundred twenty-four'); INSERT INTO t1 VALUES(11880, 5238, 'five thousand two hundred thirty-eight'); INSERT INTO t1 VALUES(11881, 15933, 'fifteen thousand nine hundred thirty-three'); INSERT INTO t1 VALUES(11882, 8026, 'eight thousand twenty-six'); INSERT INTO t1 VALUES(11883, 2968, 'two thousand nine hundred sixty-eight'); INSERT INTO t1 VALUES(11884, 51613, 'fifty-one thousand six hundred thirteen'); INSERT INTO t1 VALUES(11885, 28550, 'twenty-eight thousand five hundred fifty'); INSERT INTO t1 VALUES(11886, 87159, 'eighty-seven thousand one hundred fifty-nine'); INSERT INTO t1 VALUES(11887, 47648, 'forty-seven thousand six hundred forty-eight'); INSERT INTO t1 VALUES(11888, 8929, 'eight thousand nine hundred twenty-nine'); INSERT INTO t1 VALUES(11889, 55313, 'fifty-five thousand three hundred thirteen'); INSERT INTO t1 VALUES(11890, 95906, 'ninety-five thousand nine hundred six'); INSERT INTO t1 VALUES(11891, 44953, 'forty-four thousand nine hundred fifty-three'); INSERT INTO t1 VALUES(11892, 37587, 'thirty-seven thousand five hundred eighty-seven'); INSERT INTO t1 VALUES(11893, 28542, 'twenty-eight thousand five hundred forty-two'); INSERT INTO t1 VALUES(11894, 5310, 'five thousand three hundred ten'); INSERT INTO t1 VALUES(11895, 72235, 'seventy-two thousand two hundred thirty-five'); INSERT INTO t1 VALUES(11896, 18426, 'eighteen thousand four hundred twenty-six'); INSERT INTO t1 VALUES(11897, 27889, 'twenty-seven thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(11898, 90495, 'ninety thousand four hundred ninety-five'); INSERT INTO t1 VALUES(11899, 55942, 'fifty-five thousand nine hundred forty-two'); INSERT INTO t1 VALUES(11900, 52916, 'fifty-two thousand nine hundred sixteen'); INSERT INTO t1 VALUES(11901, 60890, 'sixty thousand eight hundred ninety'); INSERT INTO t1 VALUES(11902, 1851, 'one thousand eight hundred fifty-one'); INSERT INTO t1 VALUES(11903, 51889, 'fifty-one thousand eight hundred eighty-nine'); INSERT INTO t1 VALUES(11904, 89174, 'eighty-nine thousand one hundred seventy-four'); INSERT INTO t1 VALUES(11905, 72454, 'seventy-two thousand four hundred fifty-four'); INSERT INTO t1 VALUES(11906, 126, 'one hundred twenty-six'); INSERT INTO t1 VALUES(11907, 42333, 'forty-two thousand three hundred thirty-three'); INSERT INTO t1 VALUES(11908, 93471, 'ninety-three thousand four hundred seventy-one'); INSERT INTO t1 VALUES(11909, 7928, 'seven thousand nine hundred twenty-eight'); INSERT INTO t1 VALUES(11910, 56746, 'fifty-six thousand seven hundred forty-six'); INSERT INTO t1 VALUES(11911, 69550, 'sixty-nine thousand five hundred fifty'); INSERT INTO t1 VALUES(11912, 5707, 'five thousand seven hundred seven'); INSERT INTO t1 VALUES(11913, 3704, 'three thousand seven hundred four'); INSERT INTO t1 VALUES(11914, 98586, 'ninety-eight thousand five hundred eighty-six'); INSERT INTO t1 VALUES(11915, 19052, 'nineteen thousand fifty-two'); INSERT INTO t1 VALUES(11916, 75628, 'seventy-five thousand six hundred twenty-eight'); INSERT INTO t1 VALUES(11917, 92925, 'ninety-two thousand nine hundred twenty-five'); INSERT INTO t1 VALUES(11918, 67032, 'sixty-seven thousand thirty-two'); INSERT INTO t1 VALUES(11919, 35948, 'thirty-five thousand nine hundred forty-eight'); INSERT INTO t1 VALUES(11920, 67641, 'sixty-seven thousand six hundred forty-one'); INSERT INTO t1 VALUES(11921, 33974, 'thirty-three thousand nine hundred seventy-four'); INSERT INTO t1 VALUES(11922, 8672, 'eight thousand six hundred seventy-two'); INSERT INTO t1 VALUES(11923, 28849, 'twenty-eight thousand eight hundred forty-nine'); INSERT INTO t1 VALUES(11924, 33303, 'thirty-three thousand three hundred three'); INSERT INTO t1 VALUES(11925, 4867, 'four thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(11926, 804, 'eight hundred four'); INSERT INTO t1 VALUES(11927, 45611, 'forty-five thousand six hundred eleven'); INSERT INTO t1 VALUES(11928, 96447, 'ninety-six thousand four hundred forty-seven'); INSERT INTO t1 VALUES(11929, 65358, 'sixty-five thousand three hundred fifty-eight'); INSERT INTO t1 VALUES(11930, 95849, 'ninety-five thousand eight hundred forty-nine'); INSERT INTO t1 VALUES(11931, 63071, 'sixty-three thousand seventy-one'); INSERT INTO t1 VALUES(11932, 41250, 'forty-one thousand two hundred fifty'); INSERT INTO t1 VALUES(11933, 90107, 'ninety thousand one hundred seven'); INSERT INTO t1 VALUES(11934, 71830, 'seventy-one thousand eight hundred thirty'); INSERT INTO t1 VALUES(11935, 19829, 'nineteen thousand eight hundred twenty-nine'); INSERT INTO t1 VALUES(11936, 77454, 'seventy-seven thousand four hundred fifty-four'); INSERT INTO t1 VALUES(11937, 87350, 'eighty-seven thousand three hundred fifty'); INSERT INTO t1 VALUES(11938, 29357, 'twenty-nine thousand three hundred fifty-seven'); INSERT INTO t1 VALUES(11939, 66264, 'sixty-six thousand two hundred sixty-four'); INSERT INTO t1 VALUES(11940, 48050, 'forty-eight thousand fifty'); INSERT INTO t1 VALUES(11941, 42879, 'forty-two thousand eight hundred seventy-nine'); INSERT INTO t1 VALUES(11942, 63347, 'sixty-three thousand three hundred forty-seven'); INSERT INTO t1 VALUES(11943, 87374, 'eighty-seven thousand three hundred seventy-four'); INSERT INTO t1 VALUES(11944, 52867, 'fifty-two thousand eight hundred sixty-seven'); INSERT INTO t1 VALUES(11945, 26887, 'twenty-six thousand eight hundred eighty-seven'); INSERT INTO t1 VALUES(11946, 33935, 'thirty-three thousand nine hundred thirty-five'); INSERT INTO t1 VALUES(11947, 2726, 'two thousand seven hundred twenty-six'); INSERT INTO t1 VALUES(11948, 1034, 'one thousand thirty-four'); INSERT INTO t1 VALUES(11949, 19102, 'nineteen thousand one hundred two'); INSERT INTO t1 VALUES(11950, 61401, 'sixty-one thousand four hundred one'); INSERT INTO t1 VALUES(11951, 30823, 'thirty thousand eight hundred twenty-three'); INSERT INTO t1 VALUES(11952, 71869, 'seventy-one thousand eight hundred sixty-nine'); INSERT INTO t1 VALUES(11953, 58422, 'fifty-eight thousand four hundred twenty-two'); INSERT INTO t1 VALUES(11954, 93573, 'ninety-three thousand five hundred seventy-three'); INSERT INTO t1 VALUES(11955, 5147, 'five thousand one hundred forty-seven'); INSERT INTO t1 VALUES(11956, 10338, 'ten thousand three hundred thirty-eight'); INSERT INTO t1 VALUES(11957, 20946, 'twenty thousand nine hundred forty-six'); INSERT INTO t1 VALUES(11958, 61577, 'sixty-one thousand five hundred seventy-seven'); INSERT INTO t1 VALUES(11959, 20631, 'twenty thousand six hundred thirty-one'); INSERT INTO t1 VALUES(11960, 21317, 'twenty-one thousand three hundred seventeen'); INSERT INTO t1 VALUES(11961, 19033, 'nineteen thousand thirty-three'); INSERT INTO t1 VALUES(11962, 7981, 'seven thousand nine hundred eighty-one'); INSERT INTO t1 VALUES(11963, 74832, 'seventy-four thousand eight hundred thirty-two'); INSERT INTO t1 VALUES(11964, 14805, 'fourteen thousand eight hundred five'); INSERT INTO t1 VALUES(11965, 77751, 'seventy-seven thousand seven hundred fifty-one'); INSERT INTO t1 VALUES(11966, 35682, 'thirty-five thousand six hundred eighty-two'); INSERT INTO t1 VALUES(11967, 89082, 'eighty-nine thousand eighty-two'); INSERT INTO t1 VALUES(11968, 94988, 'ninety-four thousand nine hundred eighty-eight'); INSERT INTO t1 VALUES(11969, 60020, 'sixty thousand twenty'); INSERT INTO t1 VALUES(11970, 77027, 'seventy-seven thousand twenty-seven'); INSERT INTO t1 VALUES(11971, 2549, 'two thousand five hundred forty-nine'); INSERT INTO t1 VALUES(11972, 29916, 'twenty-nine thousand nine hundred sixteen'); INSERT INTO t1 VALUES(11973, 40946, 'forty thousand nine hundred forty-six'); INSERT INTO t1 VALUES(11974, 29975, 'twenty-nine thousand nine hundred seventy-five'); INSERT INTO t1 VALUES(11975, 97687, 'ninety-seven thousand six hundred eighty-seven'); INSERT INTO t1 VALUES(11976, 491, 'four hundred ninety-one'); INSERT INTO t1 VALUES(11977, 13073, 'thirteen thousand seventy-three'); INSERT INTO t1 VALUES(11978, 41042, 'forty-one thousand forty-two'); INSERT INTO t1 VALUES(11979, 88538, 'eighty-eight thousand five hundred thirty-eight'); INSERT INTO t1 VALUES(11980, 69388, 'sixty-nine thousand three hundred eighty-eight'); INSERT INTO t1 VALUES(11981, 76158, 'seventy-six thousand one hundred fifty-eight'); INSERT INTO t1 VALUES(11982, 22654, 'twenty-two thousand six hundred fifty-four'); INSERT INTO t1 VALUES(11983, 31131, 'thirty-one thousand one hundred thirty-one'); INSERT INTO t1 VALUES(11984, 70333, 'seventy thousand three hundred thirty-three'); INSERT INTO t1 VALUES(11985, 76208, 'seventy-six thousand two hundred eight'); INSERT INTO t1 VALUES(11986, 85041, 'eighty-five thousand forty-one'); INSERT INTO t1 VALUES(11987, 53416, 'fifty-three thousand four hundred sixteen'); INSERT INTO t1 VALUES(11988, 22833, 'twenty-two thousand eight hundred thirty-three'); INSERT INTO t1 VALUES(11989, 72025, 'seventy-two thousand twenty-five'); INSERT INTO t1 VALUES(11990, 374, 'three hundred seventy-four'); INSERT INTO t1 VALUES(11991, 86772, 'eighty-six thousand seven hundred seventy-two'); INSERT INTO t1 VALUES(11992, 79006, 'seventy-nine thousand six'); INSERT INTO t1 VALUES(11993, 14691, 'fourteen thousand six hundred ninety-one'); INSERT INTO t1 VALUES(11994, 90790, 'ninety thousand seven hundred ninety'); INSERT INTO t1 VALUES(11995, 31367, 'thirty-one thousand three hundred sixty-seven'); INSERT INTO t1 VALUES(11996, 42736, 'forty-two thousand seven hundred thirty-six'); INSERT INTO t1 VALUES(11997, 53203, 'fifty-three thousand two hundred three'); INSERT INTO t1 VALUES(11998, 19835, 'nineteen thousand eight hundred thirty-five'); INSERT INTO t1 VALUES(11999, 30334, 'thirty thousand three hundred thirty-four'); INSERT INTO t1 VALUES(12000, 48086, 'forty-eight thousand eighty-six'); COMMIT; ================================================ FILE: packages/benchmark/src/benchmark16.sql ================================================ DROP TABLE t1; DROP TABLE t2; DROP TABLE t3; ================================================ FILE: packages/benchmark/src/benchmark2.1.sql ================================================ BEGIN; CREATE TABLE t2_1(a INTEGER, b INTEGER, c VARCHAR(100)); INSERT INTO t2_1 VALUES (1, 90584, 'ninety thousand five hundred eighty-four'), (2, 42558, 'forty-two thousand five hundred fifty-eight'), (3, 5904, 'five thousand nine hundred four'), (4, 27011, 'twenty-seven thousand eleven'), (5, 97728, 'ninety-seven thousand seven hundred twenty-eight'), (6, 46615, 'forty-six thousand six hundred fifteen'), (7, 28853, 'twenty-eight thousand eight hundred fifty-three'), (8, 94539, 'ninety-four thousand five hundred thirty-nine'), (9, 84536, 'eighty-four thousand five hundred thirty-six'), (10, 72680, 'seventy-two thousand six hundred eighty'), (11, 93381, 'ninety-three thousand three hundred eighty-one'), (12, 17138, 'seventeen thousand one hundred thirty-eight'), (13, 29965, 'twenty-nine thousand nine hundred sixty-five'), (14, 69407, 'sixty-nine thousand four hundred seven'), (15, 61421, 'sixty-one thousand four hundred twenty-one'), (16, 81239, 'eighty-one thousand two hundred thirty-nine'), (17, 59865, 'fifty-nine thousand eight hundred sixty-five'), (18, 588, 'five hundred eighty-eight'), (19, 84152, 'eighty-four thousand one hundred fifty-two'), (20, 84124, 'eighty-four thousand one hundred twenty-four'), (21, 12969, 'twelve thousand nine hundred sixty-nine'), (22, 7253, 'seven thousand two hundred fifty-three'), (23, 42485, 'forty-two thousand four hundred eighty-five'), (24, 3762, 'three thousand seven hundred sixty-two'), (25, 78100, 'seventy-eight thousand one hundred'), (26, 84160, 'eighty-four thousand one hundred sixty'), (27, 43453, 'forty-three thousand four hundred fifty-three'), (28, 71890, 'seventy-one thousand eight hundred ninety'), (29, 33038, 'thirty-three thousand thirty-eight'), (30, 49437, 'forty-nine thousand four hundred thirty-seven'), (31, 96549, 'ninety-six thousand five hundred forty-nine'), (32, 23171, 'twenty-three thousand one hundred seventy-one'), (33, 62381, 'sixty-two thousand three hundred eighty-one'), (34, 90815, 'ninety thousand eight hundred fifteen'), (35, 26487, 'twenty-six thousand four hundred eighty-seven'), (36, 43321, 'forty-three thousand three hundred twenty-one'), (37, 89020, 'eighty-nine thousand twenty'), (38, 33474, 'thirty-three thousand four hundred seventy-four'), (39, 72198, 'seventy-two thousand one hundred ninety-eight'), (40, 71417, 'seventy-one thousand four hundred seventeen'), (41, 89777, 'eighty-nine thousand seven hundred seventy-seven'), (42, 97169, 'ninety-seven thousand one hundred sixty-nine'), (43, 55191, 'fifty-five thousand one hundred ninety-one'), (44, 73842, 'seventy-three thousand eight hundred forty-two'), (45, 70227, 'seventy thousand two hundred twenty-seven'), (46, 65573, 'sixty-five thousand five hundred seventy-three'), (47, 73518, 'seventy-three thousand five hundred eighteen'), (48, 68505, 'sixty-eight thousand five hundred five'), (49, 57185, 'fifty-seven thousand one hundred eighty-five'), (50, 23871, 'twenty-three thousand eight hundred seventy-one'), (51, 89925, 'eighty-nine thousand nine hundred twenty-five'), (52, 2387, 'two thousand three hundred eighty-seven'), (53, 17526, 'seventeen thousand five hundred twenty-six'), (54, 13016, 'thirteen thousand sixteen'), (55, 74881, 'seventy-four thousand eight hundred eighty-one'), (56, 59286, 'fifty-nine thousand two hundred eighty-six'), (57, 19244, 'nineteen thousand two hundred forty-four'), (58, 4267, 'four thousand two hundred sixty-seven'), (59, 94748, 'ninety-four thousand seven hundred forty-eight'), (60, 75557, 'seventy-five thousand five hundred fifty-seven'), (61, 48280, 'forty-eight thousand two hundred eighty'), (62, 42957, 'forty-two thousand nine hundred fifty-seven'), (63, 87398, 'eighty-seven thousand three hundred ninety-eight'), (64, 58372, 'fifty-eight thousand three hundred seventy-two'), (65, 53877, 'fifty-three thousand eight hundred seventy-seven'), (66, 37922, 'thirty-seven thousand nine hundred twenty-two'), (67, 19265, 'nineteen thousand two hundred sixty-five'), (68, 44548, 'forty-four thousand five hundred forty-eight'), (69, 90517, 'ninety thousand five hundred seventeen'), (70, 49280, 'forty-nine thousand two hundred eighty'), (71, 78587, 'seventy-eight thousand five hundred eighty-seven'), (72, 50027, 'fifty thousand twenty-seven'), (73, 17279, 'seventeen thousand two hundred seventy-nine'), (74, 81786, 'eighty-one thousand seven hundred eighty-six'), (75, 59408, 'fifty-nine thousand four hundred eight'), (76, 12302, 'twelve thousand three hundred two'), (77, 19245, 'nineteen thousand two hundred forty-five'), (78, 79712, 'seventy-nine thousand seven hundred twelve'), (79, 39038, 'thirty-nine thousand thirty-eight'), (80, 54293, 'fifty-four thousand two hundred ninety-three'), (81, 38489, 'thirty-eight thousand four hundred eighty-nine'), (82, 76089, 'seventy-six thousand eighty-nine'), (83, 77661, 'seventy-seven thousand six hundred sixty-one'), (84, 47148, 'forty-seven thousand one hundred forty-eight'), (85, 11042, 'eleven thousand forty-two'), (86, 56823, 'fifty-six thousand eight hundred twenty-three'), (87, 45667, 'forty-five thousand six hundred sixty-seven'), (88, 85403, 'eighty-five thousand four hundred three'), (89, 70399, 'seventy thousand three hundred ninety-nine'), (90, 70436, 'seventy thousand four hundred thirty-six'), (91, 83893, 'eighty-three thousand eight hundred ninety-three'), (92, 47320, 'forty-seven thousand three hundred twenty'), (93, 99216, 'ninety-nine thousand two hundred sixteen'), (94, 90347, 'ninety thousand three hundred forty-seven'), (95, 63626, 'sixty-three thousand six hundred twenty-six'), (96, 28133, 'twenty-eight thousand one hundred thirty-three'), (97, 10588, 'ten thousand five hundred eighty-eight'), (98, 93243, 'ninety-three thousand two hundred forty-three'), (99, 52352, 'fifty-two thousand three hundred fifty-two'), (100, 66472, 'sixty-six thousand four hundred seventy-two'), (101, 70637, 'seventy thousand six hundred thirty-seven'), (102, 99984, 'ninety-nine thousand nine hundred eighty-four'), (103, 55281, 'fifty-five thousand two hundred eighty-one'), (104, 57112, 'fifty-seven thousand one hundred twelve'), (105, 69335, 'sixty-nine thousand three hundred thirty-five'), (106, 76289, 'seventy-six thousand two hundred eighty-nine'), (107, 58904, 'fifty-eight thousand nine hundred four'), (108, 83931, 'eighty-three thousand nine hundred thirty-one'), (109, 96752, 'ninety-six thousand seven hundred fifty-two'), (110, 93887, 'ninety-three thousand eight hundred eighty-seven'), (111, 53694, 'fifty-three thousand six hundred ninety-four'), (112, 59470, 'fifty-nine thousand four hundred seventy'), (113, 72610, 'seventy-two thousand six hundred ten'), (114, 4752, 'four thousand seven hundred fifty-two'), (115, 79581, 'seventy-nine thousand five hundred eighty-one'), (116, 10668, 'ten thousand six hundred sixty-eight'), (117, 56097, 'fifty-six thousand ninety-seven'), (118, 97324, 'ninety-seven thousand three hundred twenty-four'), (119, 28333, 'twenty-eight thousand three hundred thirty-three'), (120, 79763, 'seventy-nine thousand seven hundred sixty-three'), (121, 73271, 'seventy-three thousand two hundred seventy-one'), (122, 19112, 'nineteen thousand one hundred twelve'), (123, 40795, 'forty thousand seven hundred ninety-five'), (124, 88896, 'eighty-eight thousand eight hundred ninety-six'), (125, 18106, 'eighteen thousand one hundred six'), (126, 35583, 'thirty-five thousand five hundred eighty-three'), (127, 74961, 'seventy-four thousand nine hundred sixty-one'), (128, 39442, 'thirty-nine thousand four hundred forty-two'), (129, 29082, 'twenty-nine thousand eighty-two'), (130, 91292, 'ninety-one thousand two hundred ninety-two'), (131, 99874, 'ninety-nine thousand eight hundred seventy-four'), (132, 21091, 'twenty-one thousand ninety-one'), (133, 38291, 'thirty-eight thousand two hundred ninety-one'), (134, 16583, 'sixteen thousand five hundred eighty-three'), (135, 28219, 'twenty-eight thousand two hundred nineteen'), (136, 26561, 'twenty-six thousand five hundred sixty-one'), (137, 96379, 'ninety-six thousand three hundred seventy-nine'), (138, 86575, 'eighty-six thousand five hundred seventy-five'), (139, 3153, 'three thousand one hundred fifty-three'), (140, 19351, 'nineteen thousand three hundred fifty-one'), (141, 27410, 'twenty-seven thousand four hundred ten'), (142, 48253, 'forty-eight thousand two hundred fifty-three'), (143, 73697, 'seventy-three thousand six hundred ninety-seven'), (144, 72343, 'seventy-two thousand three hundred forty-three'), (145, 36637, 'thirty-six thousand six hundred thirty-seven'), (146, 95428, 'ninety-five thousand four hundred twenty-eight'), (147, 82618, 'eighty-two thousand six hundred eighteen'), (148, 21906, 'twenty-one thousand nine hundred six'), (149, 42253, 'forty-two thousand two hundred fifty-three'), (150, 27764, 'twenty-seven thousand seven hundred sixty-four'), (151, 39773, 'thirty-nine thousand seven hundred seventy-three'), (152, 59859, 'fifty-nine thousand eight hundred fifty-nine'), (153, 53478, 'fifty-three thousand four hundred seventy-eight'), (154, 67737, 'sixty-seven thousand seven hundred thirty-seven'), (155, 11285, 'eleven thousand two hundred eighty-five'), (156, 16564, 'sixteen thousand five hundred sixty-four'), (157, 60721, 'sixty thousand seven hundred twenty-one'), (158, 41942, 'forty-one thousand nine hundred forty-two'), (159, 54386, 'fifty-four thousand three hundred eighty-six'), (160, 31102, 'thirty-one thousand one hundred two'), (161, 21277, 'twenty-one thousand two hundred seventy-seven'), (162, 13172, 'thirteen thousand one hundred seventy-two'), (163, 19591, 'nineteen thousand five hundred ninety-one'), (164, 14293, 'fourteen thousand two hundred ninety-three'), (165, 40877, 'forty thousand eight hundred seventy-seven'), (166, 79358, 'seventy-nine thousand three hundred fifty-eight'), (167, 20675, 'twenty thousand six hundred seventy-five'), (168, 1769, 'one thousand seven hundred sixty-nine'), (169, 1677, 'one thousand six hundred seventy-seven'), (170, 32205, 'thirty-two thousand two hundred five'), (171, 81540, 'eighty-one thousand five hundred forty'), (172, 5710, 'five thousand seven hundred ten'), (173, 62299, 'sixty-two thousand two hundred ninety-nine'), (174, 85032, 'eighty-five thousand thirty-two'), (175, 3662, 'three thousand six hundred sixty-two'), (176, 58615, 'fifty-eight thousand six hundred fifteen'), (177, 13614, 'thirteen thousand six hundred fourteen'), (178, 62699, 'sixty-two thousand six hundred ninety-nine'), (179, 71236, 'seventy-one thousand two hundred thirty-six'), (180, 88169, 'eighty-eight thousand one hundred sixty-nine'), (181, 65385, 'sixty-five thousand three hundred eighty-five'), (182, 99267, 'ninety-nine thousand two hundred sixty-seven'), (183, 12606, 'twelve thousand six hundred six'), (184, 30770, 'thirty thousand seven hundred seventy'), (185, 62402, 'sixty-two thousand four hundred two'), (186, 31565, 'thirty-one thousand five hundred sixty-five'), (187, 3692, 'three thousand six hundred ninety-two'), (188, 7186, 'seven thousand one hundred eighty-six'), (189, 99676, 'ninety-nine thousand six hundred seventy-six'), (190, 76164, 'seventy-six thousand one hundred sixty-four'), (191, 9515, 'nine thousand five hundred fifteen'), (192, 45987, 'forty-five thousand nine hundred eighty-seven'), (193, 82888, 'eighty-two thousand eight hundred eighty-eight'), (194, 6768, 'six thousand seven hundred sixty-eight'), (195, 40789, 'forty thousand seven hundred eighty-nine'), (196, 10644, 'ten thousand six hundred forty-four'), (197, 64882, 'sixty-four thousand eight hundred eighty-two'), (198, 89204, 'eighty-nine thousand two hundred four'), (199, 31531, 'thirty-one thousand five hundred thirty-one'), (200, 84135, 'eighty-four thousand one hundred thirty-five'), (201, 40452, 'forty thousand four hundred fifty-two'), (202, 65812, 'sixty-five thousand eight hundred twelve'), (203, 87428, 'eighty-seven thousand four hundred twenty-eight'), (204, 81611, 'eighty-one thousand six hundred eleven'), (205, 35606, 'thirty-five thousand six hundred six'), (206, 44800, 'forty-four thousand eight hundred'), (207, 90307, 'ninety thousand three hundred seven'), (208, 49767, 'forty-nine thousand seven hundred sixty-seven'), (209, 63135, 'sixty-three thousand one hundred thirty-five'), (210, 7874, 'seven thousand eight hundred seventy-four'), (211, 56052, 'fifty-six thousand fifty-two'), (212, 14101, 'fourteen thousand one hundred one'), (213, 73904, 'seventy-three thousand nine hundred four'), (214, 82013, 'eighty-two thousand thirteen'), (215, 30917, 'thirty thousand nine hundred seventeen'), (216, 43369, 'forty-three thousand three hundred sixty-nine'), (217, 85482, 'eighty-five thousand four hundred eighty-two'), (218, 74531, 'seventy-four thousand five hundred thirty-one'), (219, 68304, 'sixty-eight thousand three hundred four'), (220, 3826, 'three thousand eight hundred twenty-six'), (221, 47165, 'forty-seven thousand one hundred sixty-five'), (222, 92990, 'ninety-two thousand nine hundred ninety'), (223, 79000, 'seventy-nine thousand'), (224, 58652, 'fifty-eight thousand six hundred fifty-two'), (225, 48526, 'forty-eight thousand five hundred twenty-six'), (226, 43307, 'forty-three thousand three hundred seven'), (227, 23772, 'twenty-three thousand seven hundred seventy-two'), (228, 58846, 'fifty-eight thousand eight hundred forty-six'), (229, 87291, 'eighty-seven thousand two hundred ninety-one'), (230, 83004, 'eighty-three thousand four'), (231, 42004, 'forty-two thousand four'), (232, 49969, 'forty-nine thousand nine hundred sixty-nine'), (233, 23476, 'twenty-three thousand four hundred seventy-six'), (234, 79448, 'seventy-nine thousand four hundred forty-eight'), (235, 50218, 'fifty thousand two hundred eighteen'), (236, 77955, 'seventy-seven thousand nine hundred fifty-five'), (237, 38504, 'thirty-eight thousand five hundred four'), (238, 15753, 'fifteen thousand seven hundred fifty-three'), (239, 6575, 'six thousand five hundred seventy-five'), (240, 55802, 'fifty-five thousand eight hundred two'), (241, 80168, 'eighty thousand one hundred sixty-eight'), (242, 92770, 'ninety-two thousand seven hundred seventy'), (243, 55401, 'fifty-five thousand four hundred one'), (244, 78571, 'seventy-eight thousand five hundred seventy-one'), (245, 35837, 'thirty-five thousand eight hundred thirty-seven'), (246, 31224, 'thirty-one thousand two hundred twenty-four'), (247, 89769, 'eighty-nine thousand seven hundred sixty-nine'), (248, 20314, 'twenty thousand three hundred fourteen'), (249, 71697, 'seventy-one thousand six hundred ninety-seven'), (250, 22149, 'twenty-two thousand one hundred forty-nine'), (251, 23262, 'twenty-three thousand two hundred sixty-two'), (252, 7116, 'seven thousand one hundred sixteen'), (253, 25847, 'twenty-five thousand eight hundred forty-seven'), (254, 91292, 'ninety-one thousand two hundred ninety-two'), (255, 7915, 'seven thousand nine hundred fifteen'), (256, 85245, 'eighty-five thousand two hundred forty-five'), (257, 94332, 'ninety-four thousand three hundred thirty-two'), (258, 39481, 'thirty-nine thousand four hundred eighty-one'), (259, 5269, 'five thousand two hundred sixty-nine'), (260, 22338, 'twenty-two thousand three hundred thirty-eight'), (261, 74180, 'seventy-four thousand one hundred eighty'), (262, 49430, 'forty-nine thousand four hundred thirty'), (263, 51365, 'fifty-one thousand three hundred sixty-five'), (264, 54313, 'fifty-four thousand three hundred thirteen'), (265, 13136, 'thirteen thousand one hundred thirty-six'), (266, 83576, 'eighty-three thousand five hundred seventy-six'), (267, 78663, 'seventy-eight thousand six hundred sixty-three'), (268, 47700, 'forty-seven thousand seven hundred'), (269, 34175, 'thirty-four thousand one hundred seventy-five'), (270, 83792, 'eighty-three thousand seven hundred ninety-two'), (271, 24469, 'twenty-four thousand four hundred sixty-nine'), (272, 79780, 'seventy-nine thousand seven hundred eighty'), (273, 68160, 'sixty-eight thousand one hundred sixty'), (274, 24719, 'twenty-four thousand seven hundred nineteen'), (275, 90627, 'ninety thousand six hundred twenty-seven'), (276, 68384, 'sixty-eight thousand three hundred eighty-four'), (277, 2097, 'two thousand ninety-seven'), (278, 91419, 'ninety-one thousand four hundred nineteen'), (279, 490, 'four hundred ninety'), (280, 41320, 'forty-one thousand three hundred twenty'), (281, 85136, 'eighty-five thousand one hundred thirty-six'), (282, 58013, 'fifty-eight thousand thirteen'), (283, 64490, 'sixty-four thousand four hundred ninety'), (284, 14584, 'fourteen thousand five hundred eighty-four'), (285, 45558, 'forty-five thousand five hundred fifty-eight'), (286, 36464, 'thirty-six thousand four hundred sixty-four'), (287, 9044, 'nine thousand forty-four'), (288, 50280, 'fifty thousand two hundred eighty'), (289, 18306, 'eighteen thousand three hundred six'), (290, 78730, 'seventy-eight thousand seven hundred thirty'), (291, 44272, 'forty-four thousand two hundred seventy-two'), (292, 43960, 'forty-three thousand nine hundred sixty'), (293, 3488, 'three thousand four hundred eighty-eight'), (294, 80135, 'eighty thousand one hundred thirty-five'), (295, 74156, 'seventy-four thousand one hundred fifty-six'), (296, 2359, 'two thousand three hundred fifty-nine'), (297, 18621, 'eighteen thousand six hundred twenty-one'), (298, 93144, 'ninety-three thousand one hundred forty-four'), (299, 57458, 'fifty-seven thousand four hundred fifty-eight'), (300, 72223, 'seventy-two thousand two hundred twenty-three'), (301, 73494, 'seventy-three thousand four hundred ninety-four'), (302, 24982, 'twenty-four thousand nine hundred eighty-two'), (303, 17264, 'seventeen thousand two hundred sixty-four'), (304, 41967, 'forty-one thousand nine hundred sixty-seven'), (305, 97163, 'ninety-seven thousand one hundred sixty-three'), (306, 89452, 'eighty-nine thousand four hundred fifty-two'), (307, 20167, 'twenty thousand one hundred sixty-seven'), (308, 39685, 'thirty-nine thousand six hundred eighty-five'), (309, 93786, 'ninety-three thousand seven hundred eighty-six'), (310, 1083, 'one thousand eighty-three'), (311, 91893, 'ninety-one thousand eight hundred ninety-three'), (312, 73800, 'seventy-three thousand eight hundred'), (313, 24798, 'twenty-four thousand seven hundred ninety-eight'), (314, 48791, 'forty-eight thousand seven hundred ninety-one'), (315, 90826, 'ninety thousand eight hundred twenty-six'), (316, 99175, 'ninety-nine thousand one hundred seventy-five'), (317, 24893, 'twenty-four thousand eight hundred ninety-three'), (318, 43840, 'forty-three thousand eight hundred forty'), (319, 98875, 'ninety-eight thousand eight hundred seventy-five'), (320, 63936, 'sixty-three thousand nine hundred thirty-six'), (321, 42855, 'forty-two thousand eight hundred fifty-five'), (322, 47833, 'forty-seven thousand eight hundred thirty-three'), (323, 36163, 'thirty-six thousand one hundred sixty-three'), (324, 49870, 'forty-nine thousand eight hundred seventy'), (325, 81463, 'eighty-one thousand four hundred sixty-three'), (326, 29346, 'twenty-nine thousand three hundred forty-six'), (327, 66164, 'sixty-six thousand one hundred sixty-four'), (328, 13407, 'thirteen thousand four hundred seven'), (329, 3831, 'three thousand eight hundred thirty-one'), (330, 47325, 'forty-seven thousand three hundred twenty-five'), (331, 55698, 'fifty-five thousand six hundred ninety-eight'), (332, 78457, 'seventy-eight thousand four hundred fifty-seven'), (333, 42971, 'forty-two thousand nine hundred seventy-one'), (334, 23741, 'twenty-three thousand seven hundred forty-one'), (335, 5185, 'five thousand one hundred eighty-five'), (336, 5746, 'five thousand seven hundred forty-six'), (337, 25097, 'twenty-five thousand ninety-seven'), (338, 95283, 'ninety-five thousand two hundred eighty-three'), (339, 96875, 'ninety-six thousand eight hundred seventy-five'), (340, 98629, 'ninety-eight thousand six hundred twenty-nine'), (341, 41267, 'forty-one thousand two hundred sixty-seven'), (342, 98055, 'ninety-eight thousand fifty-five'), (343, 73830, 'seventy-three thousand eight hundred thirty'), (344, 34985, 'thirty-four thousand nine hundred eighty-five'), (345, 24661, 'twenty-four thousand six hundred sixty-one'), (346, 44424, 'forty-four thousand four hundred twenty-four'), (347, 74252, 'seventy-four thousand two hundred fifty-two'), (348, 9490, 'nine thousand four hundred ninety'), (349, 8125, 'eight thousand one hundred twenty-five'), (350, 39204, 'thirty-nine thousand two hundred four'), (351, 43098, 'forty-three thousand ninety-eight'), (352, 96899, 'ninety-six thousand eight hundred ninety-nine'), (353, 80442, 'eighty thousand four hundred forty-two'), (354, 7697, 'seven thousand six hundred ninety-seven'), (355, 92162, 'ninety-two thousand one hundred sixty-two'), (356, 79651, 'seventy-nine thousand six hundred fifty-one'), (357, 81206, 'eighty-one thousand two hundred six'), (358, 6508, 'six thousand five hundred eight'), (359, 3635, 'three thousand six hundred thirty-five'), (360, 66733, 'sixty-six thousand seven hundred thirty-three'), (361, 13695, 'thirteen thousand six hundred ninety-five'), (362, 17014, 'seventeen thousand fourteen'), (363, 57870, 'fifty-seven thousand eight hundred seventy'), (364, 23851, 'twenty-three thousand eight hundred fifty-one'), (365, 69139, 'sixty-nine thousand one hundred thirty-nine'), (366, 14381, 'fourteen thousand three hundred eighty-one'), (367, 39789, 'thirty-nine thousand seven hundred eighty-nine'), (368, 54204, 'fifty-four thousand two hundred four'), (369, 31110, 'thirty-one thousand one hundred ten'), (370, 30301, 'thirty thousand three hundred one'), (371, 96378, 'ninety-six thousand three hundred seventy-eight'), (372, 30520, 'thirty thousand five hundred twenty'), (373, 49432, 'forty-nine thousand four hundred thirty-two'), (374, 11167, 'eleven thousand one hundred sixty-seven'), (375, 23567, 'twenty-three thousand five hundred sixty-seven'), (376, 39142, 'thirty-nine thousand one hundred forty-two'), (377, 45535, 'forty-five thousand five hundred thirty-five'), (378, 60086, 'sixty thousand eighty-six'), (379, 96700, 'ninety-six thousand seven hundred'), (380, 51609, 'fifty-one thousand six hundred nine'), (381, 19465, 'nineteen thousand four hundred sixty-five'), (382, 97496, 'ninety-seven thousand four hundred ninety-six'), (383, 40693, 'forty thousand six hundred ninety-three'), (384, 90384, 'ninety thousand three hundred eighty-four'), (385, 37018, 'thirty-seven thousand eighteen'), (386, 33373, 'thirty-three thousand three hundred seventy-three'), (387, 18129, 'eighteen thousand one hundred twenty-nine'), (388, 87088, 'eighty-seven thousand eighty-eight'), (389, 38982, 'thirty-eight thousand nine hundred eighty-two'), (390, 68852, 'sixty-eight thousand eight hundred fifty-two'), (391, 67805, 'sixty-seven thousand eight hundred five'), (392, 85035, 'eighty-five thousand thirty-five'), (393, 83196, 'eighty-three thousand one hundred ninety-six'), (394, 66916, 'sixty-six thousand nine hundred sixteen'), (395, 62729, 'sixty-two thousand seven hundred twenty-nine'), (396, 40572, 'forty thousand five hundred seventy-two'), (397, 99281, 'ninety-nine thousand two hundred eighty-one'), (398, 13442, 'thirteen thousand four hundred forty-two'), (399, 62851, 'sixty-two thousand eight hundred fifty-one'), (400, 88668, 'eighty-eight thousand six hundred sixty-eight'), (401, 39319, 'thirty-nine thousand three hundred nineteen'), (402, 54573, 'fifty-four thousand five hundred seventy-three'), (403, 69094, 'sixty-nine thousand ninety-four'), (404, 22750, 'twenty-two thousand seven hundred fifty'), (405, 958, 'nine hundred fifty-eight'), (406, 37812, 'thirty-seven thousand eight hundred twelve'), (407, 27408, 'twenty-seven thousand four hundred eight'), (408, 102, 'one hundred two'), (409, 98842, 'ninety-eight thousand eight hundred forty-two'), (410, 46101, 'forty-six thousand one hundred one'), (411, 47116, 'forty-seven thousand one hundred sixteen'), (412, 83820, 'eighty-three thousand eight hundred twenty'), (413, 11037, 'eleven thousand thirty-seven'), (414, 63954, 'sixty-three thousand nine hundred fifty-four'), (415, 4143, 'four thousand one hundred forty-three'), (416, 92284, 'ninety-two thousand two hundred eighty-four'), (417, 13726, 'thirteen thousand seven hundred twenty-six'), (418, 19093, 'nineteen thousand ninety-three'), (419, 5647, 'five thousand six hundred forty-seven'), (420, 59306, 'fifty-nine thousand three hundred six'), (421, 74912, 'seventy-four thousand nine hundred twelve'), (422, 57291, 'fifty-seven thousand two hundred ninety-one'), (423, 88070, 'eighty-eight thousand seventy'), (424, 17250, 'seventeen thousand two hundred fifty'), (425, 33763, 'thirty-three thousand seven hundred sixty-three'), (426, 92165, 'ninety-two thousand one hundred sixty-five'), (427, 71691, 'seventy-one thousand six hundred ninety-one'), (428, 15409, 'fifteen thousand four hundred nine'), (429, 78545, 'seventy-eight thousand five hundred forty-five'), (430, 35754, 'thirty-five thousand seven hundred fifty-four'), (431, 11936, 'eleven thousand nine hundred thirty-six'), (432, 5900, 'five thousand nine hundred'), (433, 74035, 'seventy-four thousand thirty-five'), (434, 79581, 'seventy-nine thousand five hundred eighty-one'), (435, 75744, 'seventy-five thousand seven hundred forty-four'), (436, 63940, 'sixty-three thousand nine hundred forty'), (437, 23980, 'twenty-three thousand nine hundred eighty'), (438, 22051, 'twenty-two thousand fifty-one'), (439, 93445, 'ninety-three thousand four hundred forty-five'), (440, 34736, 'thirty-four thousand seven hundred thirty-six'), (441, 31454, 'thirty-one thousand four hundred fifty-four'), (442, 40844, 'forty thousand eight hundred forty-four'), (443, 70304, 'seventy thousand three hundred four'), (444, 10837, 'ten thousand eight hundred thirty-seven'), (445, 99631, 'ninety-nine thousand six hundred thirty-one'), (446, 72804, 'seventy-two thousand eight hundred four'), (447, 92850, 'ninety-two thousand eight hundred fifty'), (448, 63508, 'sixty-three thousand five hundred eight'), (449, 25706, 'twenty-five thousand seven hundred six'), (450, 87944, 'eighty-seven thousand nine hundred forty-four'), (451, 23517, 'twenty-three thousand five hundred seventeen'), (452, 68961, 'sixty-eight thousand nine hundred sixty-one'), (453, 74788, 'seventy-four thousand seven hundred eighty-eight'), (454, 16124, 'sixteen thousand one hundred twenty-four'), (455, 93887, 'ninety-three thousand eight hundred eighty-seven'), (456, 85421, 'eighty-five thousand four hundred twenty-one'), (457, 91515, 'ninety-one thousand five hundred fifteen'), (458, 15437, 'fifteen thousand four hundred thirty-seven'), (459, 37400, 'thirty-seven thousand four hundred'), (460, 5002, 'five thousand two'), (461, 79204, 'seventy-nine thousand two hundred four'), (462, 39588, 'thirty-nine thousand five hundred eighty-eight'), (463, 19821, 'nineteen thousand eight hundred twenty-one'), (464, 23933, 'twenty-three thousand nine hundred thirty-three'), (465, 17986, 'seventeen thousand nine hundred eighty-six'), (466, 34801, 'thirty-four thousand eight hundred one'), (467, 63154, 'sixty-three thousand one hundred fifty-four'), (468, 76240, 'seventy-six thousand two hundred forty'), (469, 92334, 'ninety-two thousand three hundred thirty-four'), (470, 32094, 'thirty-two thousand ninety-four'), (471, 52504, 'fifty-two thousand five hundred four'), (472, 89226, 'eighty-nine thousand two hundred twenty-six'), (473, 32433, 'thirty-two thousand four hundred thirty-three'), (474, 68219, 'sixty-eight thousand two hundred nineteen'), (475, 22845, 'twenty-two thousand eight hundred forty-five'), (476, 9138, 'nine thousand one hundred thirty-eight'), (477, 56540, 'fifty-six thousand five hundred forty'), (478, 60269, 'sixty thousand two hundred sixty-nine'), (479, 62693, 'sixty-two thousand six hundred ninety-three'), (480, 31550, 'thirty-one thousand five hundred fifty'), (481, 23224, 'twenty-three thousand two hundred twenty-four'), (482, 37671, 'thirty-seven thousand six hundred seventy-one'), (483, 60275, 'sixty thousand two hundred seventy-five'), (484, 89470, 'eighty-nine thousand four hundred seventy'), (485, 67806, 'sixty-seven thousand eight hundred six'), (486, 45933, 'forty-five thousand nine hundred thirty-three'), (487, 34486, 'thirty-four thousand four hundred eighty-six'), (488, 32311, 'thirty-two thousand three hundred eleven'), (489, 27956, 'twenty-seven thousand nine hundred fifty-six'), (490, 3525, 'three thousand five hundred twenty-five'), (491, 97535, 'ninety-seven thousand five hundred thirty-five'), (492, 25332, 'twenty-five thousand three hundred thirty-two'), (493, 32005, 'thirty-two thousand five'), (494, 62842, 'sixty-two thousand eight hundred forty-two'), (495, 97388, 'ninety-seven thousand three hundred eighty-eight'), (496, 9955, 'nine thousand nine hundred fifty-five'), (497, 16659, 'sixteen thousand six hundred fifty-nine'), (498, 36808, 'thirty-six thousand eight hundred eight'), (499, 96556, 'ninety-six thousand five hundred fifty-six'), (500, 97611, 'ninety-seven thousand six hundred eleven'), (501, 94797, 'ninety-four thousand seven hundred ninety-seven'), (502, 55526, 'fifty-five thousand five hundred twenty-six'), (503, 67993, 'sixty-seven thousand nine hundred ninety-three'), (504, 9578, 'nine thousand five hundred seventy-eight'), (505, 66639, 'sixty-six thousand six hundred thirty-nine'), (506, 34736, 'thirty-four thousand seven hundred thirty-six'), (507, 99062, 'ninety-nine thousand sixty-two'), (508, 34421, 'thirty-four thousand four hundred twenty-one'), (509, 2808, 'two thousand eight hundred eight'), (510, 95578, 'ninety-five thousand five hundred seventy-eight'), (511, 59698, 'fifty-nine thousand six hundred ninety-eight'), (512, 48398, 'forty-eight thousand three hundred ninety-eight'), (513, 70979, 'seventy thousand nine hundred seventy-nine'), (514, 78429, 'seventy-eight thousand four hundred twenty-nine'), (515, 54267, 'fifty-four thousand two hundred sixty-seven'), (516, 23592, 'twenty-three thousand five hundred ninety-two'), (517, 54855, 'fifty-four thousand eight hundred fifty-five'), (518, 84027, 'eighty-four thousand twenty-seven'), (519, 65748, 'sixty-five thousand seven hundred forty-eight'), (520, 41536, 'forty-one thousand five hundred thirty-six'), (521, 18689, 'eighteen thousand six hundred eighty-nine'), (522, 95009, 'ninety-five thousand nine'), (523, 67827, 'sixty-seven thousand eight hundred twenty-seven'), (524, 73315, 'seventy-three thousand three hundred fifteen'), (525, 69894, 'sixty-nine thousand eight hundred ninety-four'), (526, 31763, 'thirty-one thousand seven hundred sixty-three'), (527, 95172, 'ninety-five thousand one hundred seventy-two'), (528, 66494, 'sixty-six thousand four hundred ninety-four'), (529, 22046, 'twenty-two thousand forty-six'), (530, 88566, 'eighty-eight thousand five hundred sixty-six'), (531, 67887, 'sixty-seven thousand eight hundred eighty-seven'), (532, 40199, 'forty thousand one hundred ninety-nine'), (533, 59247, 'fifty-nine thousand two hundred forty-seven'), (534, 68531, 'sixty-eight thousand five hundred thirty-one'), (535, 28157, 'twenty-eight thousand one hundred fifty-seven'), (536, 40723, 'forty thousand seven hundred twenty-three'), (537, 99214, 'ninety-nine thousand two hundred fourteen'), (538, 3380, 'three thousand three hundred eighty'), (539, 71751, 'seventy-one thousand seven hundred fifty-one'), (540, 71340, 'seventy-one thousand three hundred forty'), (541, 96992, 'ninety-six thousand nine hundred ninety-two'), (542, 89052, 'eighty-nine thousand fifty-two'), (543, 60936, 'sixty thousand nine hundred thirty-six'), (544, 75893, 'seventy-five thousand eight hundred ninety-three'), (545, 48708, 'forty-eight thousand seven hundred eight'), (546, 14104, 'fourteen thousand one hundred four'), (547, 45315, 'forty-five thousand three hundred fifteen'), (548, 95566, 'ninety-five thousand five hundred sixty-six'), (549, 35437, 'thirty-five thousand four hundred thirty-seven'), (550, 25022, 'twenty-five thousand twenty-two'), (551, 79698, 'seventy-nine thousand six hundred ninety-eight'), (552, 35072, 'thirty-five thousand seventy-two'), (553, 45001, 'forty-five thousand one'), (554, 34803, 'thirty-four thousand eight hundred three'), (555, 26429, 'twenty-six thousand four hundred twenty-nine'), (556, 59919, 'fifty-nine thousand nine hundred nineteen'), (557, 74425, 'seventy-four thousand four hundred twenty-five'), (558, 71306, 'seventy-one thousand three hundred six'), (559, 70169, 'seventy thousand one hundred sixty-nine'), (560, 45716, 'forty-five thousand seven hundred sixteen'), (561, 47751, 'forty-seven thousand seven hundred fifty-one'), (562, 69698, 'sixty-nine thousand six hundred ninety-eight'), (563, 40521, 'forty thousand five hundred twenty-one'), (564, 73632, 'seventy-three thousand six hundred thirty-two'), (565, 31778, 'thirty-one thousand seven hundred seventy-eight'), (566, 78531, 'seventy-eight thousand five hundred thirty-one'), (567, 44561, 'forty-four thousand five hundred sixty-one'), (568, 60621, 'sixty thousand six hundred twenty-one'), (569, 34958, 'thirty-four thousand nine hundred fifty-eight'), (570, 12259, 'twelve thousand two hundred fifty-nine'), (571, 65727, 'sixty-five thousand seven hundred twenty-seven'), (572, 95688, 'ninety-five thousand six hundred eighty-eight'), (573, 81733, 'eighty-one thousand seven hundred thirty-three'), (574, 74957, 'seventy-four thousand nine hundred fifty-seven'), (575, 72542, 'seventy-two thousand five hundred forty-two'), (576, 89103, 'eighty-nine thousand one hundred three'), (577, 86180, 'eighty-six thousand one hundred eighty'), (578, 37290, 'thirty-seven thousand two hundred ninety'), (579, 21170, 'twenty-one thousand one hundred seventy'), (580, 82597, 'eighty-two thousand five hundred ninety-seven'), (581, 84482, 'eighty-four thousand four hundred eighty-two'), (582, 37952, 'thirty-seven thousand nine hundred fifty-two'), (583, 86729, 'eighty-six thousand seven hundred twenty-nine'), (584, 94676, 'ninety-four thousand six hundred seventy-six'), (585, 73021, 'seventy-three thousand twenty-one'), (586, 48024, 'forty-eight thousand twenty-four'), (587, 13143, 'thirteen thousand one hundred forty-three'), (588, 38531, 'thirty-eight thousand five hundred thirty-one'), (589, 2489, 'two thousand four hundred eighty-nine'), (590, 73416, 'seventy-three thousand four hundred sixteen'), (591, 73717, 'seventy-three thousand seven hundred seventeen'), (592, 34965, 'thirty-four thousand nine hundred sixty-five'), (593, 62107, 'sixty-two thousand one hundred seven'), (594, 56695, 'fifty-six thousand six hundred ninety-five'), (595, 9354, 'nine thousand three hundred fifty-four'), (596, 85230, 'eighty-five thousand two hundred thirty'), (597, 74110, 'seventy-four thousand one hundred ten'), (598, 11003, 'eleven thousand three'), (599, 78616, 'seventy-eight thousand six hundred sixteen'), (600, 94802, 'ninety-four thousand eight hundred two'), (601, 82730, 'eighty-two thousand seven hundred thirty'), (602, 8566, 'eight thousand five hundred sixty-six'), (603, 99148, 'ninety-nine thousand one hundred forty-eight'), (604, 3426, 'three thousand four hundred twenty-six'), (605, 18875, 'eighteen thousand eight hundred seventy-five'), (606, 60437, 'sixty thousand four hundred thirty-seven'), (607, 54616, 'fifty-four thousand six hundred sixteen'), (608, 9202, 'nine thousand two hundred two'), (609, 59573, 'fifty-nine thousand five hundred seventy-three'), (610, 89791, 'eighty-nine thousand seven hundred ninety-one'), (611, 55268, 'fifty-five thousand two hundred sixty-eight'), (612, 98308, 'ninety-eight thousand three hundred eight'), (613, 17680, 'seventeen thousand six hundred eighty'), (614, 55025, 'fifty-five thousand twenty-five'), (615, 77294, 'seventy-seven thousand two hundred ninety-four'), (616, 81062, 'eighty-one thousand sixty-two'), (617, 13052, 'thirteen thousand fifty-two'), (618, 91235, 'ninety-one thousand two hundred thirty-five'), (619, 66678, 'sixty-six thousand six hundred seventy-eight'), (620, 56918, 'fifty-six thousand nine hundred eighteen'), (621, 60166, 'sixty thousand one hundred sixty-six'), (622, 75728, 'seventy-five thousand seven hundred twenty-eight'), (623, 51475, 'fifty-one thousand four hundred seventy-five'), (624, 18607, 'eighteen thousand six hundred seven'), (625, 70530, 'seventy thousand five hundred thirty'), (626, 99088, 'ninety-nine thousand eighty-eight'), (627, 27360, 'twenty-seven thousand three hundred sixty'), (628, 14766, 'fourteen thousand seven hundred sixty-six'), (629, 38102, 'thirty-eight thousand one hundred two'), (630, 6368, 'six thousand three hundred sixty-eight'), (631, 44679, 'forty-four thousand six hundred seventy-nine'), (632, 83040, 'eighty-three thousand forty'), (633, 51321, 'fifty-one thousand three hundred twenty-one'), (634, 98071, 'ninety-eight thousand seventy-one'), (635, 90424, 'ninety thousand four hundred twenty-four'), (636, 70779, 'seventy thousand seven hundred seventy-nine'), (637, 30261, 'thirty thousand two hundred sixty-one'), (638, 96814, 'ninety-six thousand eight hundred fourteen'), (639, 64637, 'sixty-four thousand six hundred thirty-seven'), (640, 21467, 'twenty-one thousand four hundred sixty-seven'), (641, 49675, 'forty-nine thousand six hundred seventy-five'), (642, 49154, 'forty-nine thousand one hundred fifty-four'), (643, 31544, 'thirty-one thousand five hundred forty-four'), (644, 71290, 'seventy-one thousand two hundred ninety'), (645, 8215, 'eight thousand two hundred fifteen'), (646, 15898, 'fifteen thousand eight hundred ninety-eight'), (647, 42066, 'forty-two thousand sixty-six'), (648, 35652, 'thirty-five thousand six hundred fifty-two'), (649, 31326, 'thirty-one thousand three hundred twenty-six'), (650, 63793, 'sixty-three thousand seven hundred ninety-three'), (651, 67657, 'sixty-seven thousand six hundred fifty-seven'), (652, 39223, 'thirty-nine thousand two hundred twenty-three'), (653, 13251, 'thirteen thousand two hundred fifty-one'), (654, 21579, 'twenty-one thousand five hundred seventy-nine'), (655, 83396, 'eighty-three thousand three hundred ninety-six'), (656, 99715, 'ninety-nine thousand seven hundred fifteen'), (657, 16217, 'sixteen thousand two hundred seventeen'), (658, 66339, 'sixty-six thousand three hundred thirty-nine'), (659, 57575, 'fifty-seven thousand five hundred seventy-five'), (660, 70206, 'seventy thousand two hundred six'), (661, 87963, 'eighty-seven thousand nine hundred sixty-three'), (662, 17579, 'seventeen thousand five hundred seventy-nine'), (663, 87565, 'eighty-seven thousand five hundred sixty-five'), (664, 86056, 'eighty-six thousand fifty-six'), (665, 2494, 'two thousand four hundred ninety-four'), (666, 91906, 'ninety-one thousand nine hundred six'), (667, 89821, 'eighty-nine thousand eight hundred twenty-one'), (668, 30479, 'thirty thousand four hundred seventy-nine'), (669, 73187, 'seventy-three thousand one hundred eighty-seven'), (670, 16142, 'sixteen thousand one hundred forty-two'), (671, 81278, 'eighty-one thousand two hundred seventy-eight'), (672, 74626, 'seventy-four thousand six hundred twenty-six'), (673, 11136, 'eleven thousand one hundred thirty-six'), (674, 77760, 'seventy-seven thousand seven hundred sixty'), (675, 40761, 'forty thousand seven hundred sixty-one'), (676, 77786, 'seventy-seven thousand seven hundred eighty-six'), (677, 78878, 'seventy-eight thousand eight hundred seventy-eight'), (678, 82966, 'eighty-two thousand nine hundred sixty-six'), (679, 38243, 'thirty-eight thousand two hundred forty-three'), (680, 18097, 'eighteen thousand ninety-seven'), (681, 61339, 'sixty-one thousand three hundred thirty-nine'), (682, 27517, 'twenty-seven thousand five hundred seventeen'), (683, 40926, 'forty thousand nine hundred twenty-six'), (684, 90996, 'ninety thousand nine hundred ninety-six'), (685, 51691, 'fifty-one thousand six hundred ninety-one'), (686, 2081, 'two thousand eighty-one'), (687, 95518, 'ninety-five thousand five hundred eighteen'), (688, 84035, 'eighty-four thousand thirty-five'), (689, 61083, 'sixty-one thousand eighty-three'), (690, 66953, 'sixty-six thousand nine hundred fifty-three'), (691, 48888, 'forty-eight thousand eight hundred eighty-eight'), (692, 3728, 'three thousand seven hundred twenty-eight'), (693, 88539, 'eighty-eight thousand five hundred thirty-nine'), (694, 24939, 'twenty-four thousand nine hundred thirty-nine'), (695, 12290, 'twelve thousand two hundred ninety'), (696, 99242, 'ninety-nine thousand two hundred forty-two'), (697, 32165, 'thirty-two thousand one hundred sixty-five'), (698, 47862, 'forty-seven thousand eight hundred sixty-two'), (699, 64618, 'sixty-four thousand six hundred eighteen'), (700, 2534, 'two thousand five hundred thirty-four'), (701, 43705, 'forty-three thousand seven hundred five'), (702, 86086, 'eighty-six thousand eighty-six'), (703, 78321, 'seventy-eight thousand three hundred twenty-one'), (704, 30355, 'thirty thousand three hundred fifty-five'), (705, 78108, 'seventy-eight thousand one hundred eight'), (706, 32327, 'thirty-two thousand three hundred twenty-seven'), (707, 66279, 'sixty-six thousand two hundred seventy-nine'), (708, 99518, 'ninety-nine thousand five hundred eighteen'), (709, 70079, 'seventy thousand seventy-nine'), (710, 36441, 'thirty-six thousand four hundred forty-one'), (711, 2341, 'two thousand three hundred forty-one'), (712, 29186, 'twenty-nine thousand one hundred eighty-six'), (713, 43661, 'forty-three thousand six hundred sixty-one'), (714, 87058, 'eighty-seven thousand fifty-eight'), (715, 99743, 'ninety-nine thousand seven hundred forty-three'), (716, 89460, 'eighty-nine thousand four hundred sixty'), (717, 6777, 'six thousand seven hundred seventy-seven'), (718, 12820, 'twelve thousand eight hundred twenty'), (719, 1827, 'one thousand eight hundred twenty-seven'), (720, 5091, 'five thousand ninety-one'), (721, 78763, 'seventy-eight thousand seven hundred sixty-three'), (722, 56599, 'fifty-six thousand five hundred ninety-nine'), (723, 80592, 'eighty thousand five hundred ninety-two'), (724, 30909, 'thirty thousand nine hundred nine'), (725, 19797, 'nineteen thousand seven hundred ninety-seven'), (726, 62768, 'sixty-two thousand seven hundred sixty-eight'), (727, 94376, 'ninety-four thousand three hundred seventy-six'), (728, 83601, 'eighty-three thousand six hundred one'), (729, 42990, 'forty-two thousand nine hundred ninety'), (730, 7502, 'seven thousand five hundred two'), (731, 53674, 'fifty-three thousand six hundred seventy-four'), (732, 23843, 'twenty-three thousand eight hundred forty-three'), (733, 4838, 'four thousand eight hundred thirty-eight'), (734, 4619, 'four thousand six hundred nineteen'), (735, 59210, 'fifty-nine thousand two hundred ten'), (736, 66035, 'sixty-six thousand thirty-five'), (737, 45307, 'forty-five thousand three hundred seven'), (738, 3816, 'three thousand eight hundred sixteen'), (739, 57908, 'fifty-seven thousand nine hundred eight'), (740, 63148, 'sixty-three thousand one hundred forty-eight'), (741, 62717, 'sixty-two thousand seven hundred seventeen'), (742, 71595, 'seventy-one thousand five hundred ninety-five'), (743, 44054, 'forty-four thousand fifty-four'), (744, 69909, 'sixty-nine thousand nine hundred nine'), (745, 91551, 'ninety-one thousand five hundred fifty-one'), (746, 98216, 'ninety-eight thousand two hundred sixteen'), (747, 48437, 'forty-eight thousand four hundred thirty-seven'), (748, 15086, 'fifteen thousand eighty-six'), (749, 63624, 'sixty-three thousand six hundred twenty-four'), (750, 57772, 'fifty-seven thousand seven hundred seventy-two'), (751, 44176, 'forty-four thousand one hundred seventy-six'), (752, 45849, 'forty-five thousand eight hundred forty-nine'), (753, 99996, 'ninety-nine thousand nine hundred ninety-six'), (754, 95877, 'ninety-five thousand eight hundred seventy-seven'), (755, 2437, 'two thousand four hundred thirty-seven'), (756, 20052, 'twenty thousand fifty-two'), (757, 71853, 'seventy-one thousand eight hundred fifty-three'), (758, 29391, 'twenty-nine thousand three hundred ninety-one'), (759, 44050, 'forty-four thousand fifty'), (760, 99141, 'ninety-nine thousand one hundred forty-one'), (761, 23689, 'twenty-three thousand six hundred eighty-nine'), (762, 11569, 'eleven thousand five hundred sixty-nine'), (763, 24481, 'twenty-four thousand four hundred eighty-one'), (764, 78451, 'seventy-eight thousand four hundred fifty-one'), (765, 76265, 'seventy-six thousand two hundred sixty-five'), (766, 88798, 'eighty-eight thousand seven hundred ninety-eight'), (767, 88853, 'eighty-eight thousand eight hundred fifty-three'), (768, 38634, 'thirty-eight thousand six hundred thirty-four'), (769, 68397, 'sixty-eight thousand three hundred ninety-seven'), (770, 68598, 'sixty-eight thousand five hundred ninety-eight'), (771, 83836, 'eighty-three thousand eight hundred thirty-six'), (772, 40637, 'forty thousand six hundred thirty-seven'), (773, 19114, 'nineteen thousand one hundred fourteen'), (774, 37463, 'thirty-seven thousand four hundred sixty-three'), (775, 97655, 'ninety-seven thousand six hundred fifty-five'), (776, 95507, 'ninety-five thousand five hundred seven'), (777, 11003, 'eleven thousand three'), (778, 69608, 'sixty-nine thousand six hundred eight'), (779, 51461, 'fifty-one thousand four hundred sixty-one'), (780, 20959, 'twenty thousand nine hundred fifty-nine'), (781, 76235, 'seventy-six thousand two hundred thirty-five'), (782, 95620, 'ninety-five thousand six hundred twenty'), (783, 29170, 'twenty-nine thousand one hundred seventy'), (784, 22082, 'twenty-two thousand eighty-two'), (785, 68667, 'sixty-eight thousand six hundred sixty-seven'), (786, 33338, 'thirty-three thousand three hundred thirty-eight'), (787, 90234, 'ninety thousand two hundred thirty-four'), (788, 65669, 'sixty-five thousand six hundred sixty-nine'), (789, 38078, 'thirty-eight thousand seventy-eight'), (790, 87264, 'eighty-seven thousand two hundred sixty-four'), (791, 97614, 'ninety-seven thousand six hundred fourteen'), (792, 59817, 'fifty-nine thousand eight hundred seventeen'), (793, 5196, 'five thousand one hundred ninety-six'), (794, 42525, 'forty-two thousand five hundred twenty-five'), (795, 75267, 'seventy-five thousand two hundred sixty-seven'), (796, 59459, 'fifty-nine thousand four hundred fifty-nine'), (797, 17927, 'seventeen thousand nine hundred twenty-seven'), (798, 23710, 'twenty-three thousand seven hundred ten'), (799, 23131, 'twenty-three thousand one hundred thirty-one'), (800, 98268, 'ninety-eight thousand two hundred sixty-eight'), (801, 52084, 'fifty-two thousand eighty-four'), (802, 6664, 'six thousand six hundred sixty-four'), (803, 18164, 'eighteen thousand one hundred sixty-four'), (804, 15805, 'fifteen thousand eight hundred five'), (805, 60170, 'sixty thousand one hundred seventy'), (806, 38797, 'thirty-eight thousand seven hundred ninety-seven'), (807, 6962, 'six thousand nine hundred sixty-two'), (808, 54909, 'fifty-four thousand nine hundred nine'), (809, 81064, 'eighty-one thousand sixty-four'), (810, 75341, 'seventy-five thousand three hundred forty-one'), (811, 3138, 'three thousand one hundred thirty-eight'), (812, 37465, 'thirty-seven thousand four hundred sixty-five'), (813, 20556, 'twenty thousand five hundred fifty-six'), (814, 9894, 'nine thousand eight hundred ninety-four'), (815, 45227, 'forty-five thousand two hundred twenty-seven'), (816, 47065, 'forty-seven thousand sixty-five'), (817, 48475, 'forty-eight thousand four hundred seventy-five'), (818, 87766, 'eighty-seven thousand seven hundred sixty-six'), (819, 32488, 'thirty-two thousand four hundred eighty-eight'), (820, 80760, 'eighty thousand seven hundred sixty'), (821, 72788, 'seventy-two thousand seven hundred eighty-eight'), (822, 27462, 'twenty-seven thousand four hundred sixty-two'), (823, 95835, 'ninety-five thousand eight hundred thirty-five'), (824, 52238, 'fifty-two thousand two hundred thirty-eight'), (825, 83682, 'eighty-three thousand six hundred eighty-two'), (826, 71799, 'seventy-one thousand seven hundred ninety-nine'), (827, 2127, 'two thousand one hundred twenty-seven'), (828, 75416, 'seventy-five thousand four hundred sixteen'), (829, 76242, 'seventy-six thousand two hundred forty-two'), (830, 76930, 'seventy-six thousand nine hundred thirty'), (831, 46819, 'forty-six thousand eight hundred nineteen'), (832, 59100, 'fifty-nine thousand one hundred'), (833, 8369, 'eight thousand three hundred sixty-nine'), (834, 97501, 'ninety-seven thousand five hundred one'), (835, 47736, 'forty-seven thousand seven hundred thirty-six'), (836, 15478, 'fifteen thousand four hundred seventy-eight'), (837, 14813, 'fourteen thousand eight hundred thirteen'), (838, 94605, 'ninety-four thousand six hundred five'), (839, 13218, 'thirteen thousand two hundred eighteen'), (840, 41949, 'forty-one thousand nine hundred forty-nine'), (841, 21369, 'twenty-one thousand three hundred sixty-nine'), (842, 78744, 'seventy-eight thousand seven hundred forty-four'), (843, 8213, 'eight thousand two hundred thirteen'), (844, 8523, 'eight thousand five hundred twenty-three'), (845, 68301, 'sixty-eight thousand three hundred one'), (846, 9328, 'nine thousand three hundred twenty-eight'), (847, 25488, 'twenty-five thousand four hundred eighty-eight'), (848, 2392, 'two thousand three hundred ninety-two'), (849, 10572, 'ten thousand five hundred seventy-two'), (850, 93297, 'ninety-three thousand two hundred ninety-seven'), (851, 31561, 'thirty-one thousand five hundred sixty-one'), (852, 48403, 'forty-eight thousand four hundred three'), (853, 43405, 'forty-three thousand four hundred five'), (854, 52536, 'fifty-two thousand five hundred thirty-six'), (855, 99828, 'ninety-nine thousand eight hundred twenty-eight'), (856, 43458, 'forty-three thousand four hundred fifty-eight'), (857, 10517, 'ten thousand five hundred seventeen'), (858, 38607, 'thirty-eight thousand six hundred seven'), (859, 81719, 'eighty-one thousand seven hundred nineteen'), (860, 95780, 'ninety-five thousand seven hundred eighty'), (861, 1119, 'one thousand one hundred nineteen'), (862, 42558, 'forty-two thousand five hundred fifty-eight'), (863, 43669, 'forty-three thousand six hundred sixty-nine'), (864, 89209, 'eighty-nine thousand two hundred nine'), (865, 33358, 'thirty-three thousand three hundred fifty-eight'), (866, 59069, 'fifty-nine thousand sixty-nine'), (867, 13210, 'thirteen thousand two hundred ten'), (868, 72938, 'seventy-two thousand nine hundred thirty-eight'), (869, 99845, 'ninety-nine thousand eight hundred forty-five'), (870, 92956, 'ninety-two thousand nine hundred fifty-six'), (871, 54213, 'fifty-four thousand two hundred thirteen'), (872, 9395, 'nine thousand three hundred ninety-five'), (873, 80128, 'eighty thousand one hundred twenty-eight'), (874, 57995, 'fifty-seven thousand nine hundred ninety-five'), (875, 6483, 'six thousand four hundred eighty-three'), (876, 3506, 'three thousand five hundred six'), (877, 1641, 'one thousand six hundred forty-one'), (878, 13790, 'thirteen thousand seven hundred ninety'), (879, 18154, 'eighteen thousand one hundred fifty-four'), (880, 24625, 'twenty-four thousand six hundred twenty-five'), (881, 5708, 'five thousand seven hundred eight'), (882, 1038, 'one thousand thirty-eight'), (883, 33150, 'thirty-three thousand one hundred fifty'), (884, 43327, 'forty-three thousand three hundred twenty-seven'), (885, 53736, 'fifty-three thousand seven hundred thirty-six'), (886, 24084, 'twenty-four thousand eighty-four'), (887, 23309, 'twenty-three thousand three hundred nine'), (888, 85039, 'eighty-five thousand thirty-nine'), (889, 18294, 'eighteen thousand two hundred ninety-four'), (890, 79266, 'seventy-nine thousand two hundred sixty-six'), (891, 14951, 'fourteen thousand nine hundred fifty-one'), (892, 99565, 'ninety-nine thousand five hundred sixty-five'), (893, 45968, 'forty-five thousand nine hundred sixty-eight'), (894, 65624, 'sixty-five thousand six hundred twenty-four'), (895, 89551, 'eighty-nine thousand five hundred fifty-one'), (896, 25780, 'twenty-five thousand seven hundred eighty'), (897, 39132, 'thirty-nine thousand one hundred thirty-two'), (898, 82475, 'eighty-two thousand four hundred seventy-five'), (899, 44023, 'forty-four thousand twenty-three'), (900, 79229, 'seventy-nine thousand two hundred twenty-nine'), (901, 36320, 'thirty-six thousand three hundred twenty'), (902, 99536, 'ninety-nine thousand five hundred thirty-six'), (903, 92326, 'ninety-two thousand three hundred twenty-six'), (904, 53945, 'fifty-three thousand nine hundred forty-five'), (905, 84917, 'eighty-four thousand nine hundred seventeen'), (906, 53411, 'fifty-three thousand four hundred eleven'), (907, 67719, 'sixty-seven thousand seven hundred nineteen'), (908, 72065, 'seventy-two thousand sixty-five'), (909, 6847, 'six thousand eight hundred forty-seven'), (910, 48807, 'forty-eight thousand eight hundred seven'), (911, 478, 'four hundred seventy-eight'), (912, 90285, 'ninety thousand two hundred eighty-five'), (913, 60170, 'sixty thousand one hundred seventy'), (914, 64492, 'sixty-four thousand four hundred ninety-two'), (915, 21371, 'twenty-one thousand three hundred seventy-one'), (916, 77422, 'seventy-seven thousand four hundred twenty-two'), (917, 62537, 'sixty-two thousand five hundred thirty-seven'), (918, 82323, 'eighty-two thousand three hundred twenty-three'), (919, 79842, 'seventy-nine thousand eight hundred forty-two'), (920, 84346, 'eighty-four thousand three hundred forty-six'), (921, 43102, 'forty-three thousand one hundred two'), (922, 88617, 'eighty-eight thousand six hundred seventeen'), (923, 53762, 'fifty-three thousand seven hundred sixty-two'), (924, 46121, 'forty-six thousand one hundred twenty-one'), (925, 41029, 'forty-one thousand twenty-nine'), (926, 39186, 'thirty-nine thousand one hundred eighty-six'), (927, 50573, 'fifty thousand five hundred seventy-three'), (928, 13263, 'thirteen thousand two hundred sixty-three'), (929, 2703, 'two thousand seven hundred three'), (930, 34926, 'thirty-four thousand nine hundred twenty-six'), (931, 46293, 'forty-six thousand two hundred ninety-three'), (932, 64806, 'sixty-four thousand eight hundred six'), (933, 97369, 'ninety-seven thousand three hundred sixty-nine'), (934, 61719, 'sixty-one thousand seven hundred nineteen'), (935, 6760, 'six thousand seven hundred sixty'), (936, 77065, 'seventy-seven thousand sixty-five'), (937, 32514, 'thirty-two thousand five hundred fourteen'), (938, 33417, 'thirty-three thousand four hundred seventeen'), (939, 59607, 'fifty-nine thousand six hundred seven'), (940, 26987, 'twenty-six thousand nine hundred eighty-seven'), (941, 78753, 'seventy-eight thousand seven hundred fifty-three'), (942, 15316, 'fifteen thousand three hundred sixteen'), (943, 27249, 'twenty-seven thousand two hundred forty-nine'), (944, 33011, 'thirty-three thousand eleven'), (945, 30349, 'thirty thousand three hundred forty-nine'), (946, 16474, 'sixteen thousand four hundred seventy-four'), (947, 91550, 'ninety-one thousand five hundred fifty'), (948, 7229, 'seven thousand two hundred twenty-nine'), (949, 55591, 'fifty-five thousand five hundred ninety-one'), (950, 6494, 'six thousand four hundred ninety-four'), (951, 61726, 'sixty-one thousand seven hundred twenty-six'), (952, 43401, 'forty-three thousand four hundred one'), (953, 35417, 'thirty-five thousand four hundred seventeen'), (954, 81064, 'eighty-one thousand sixty-four'), (955, 98029, 'ninety-eight thousand twenty-nine'), (956, 99459, 'ninety-nine thousand four hundred fifty-nine'), (957, 47659, 'forty-seven thousand six hundred fifty-nine'), (958, 90562, 'ninety thousand five hundred sixty-two'), (959, 98996, 'ninety-eight thousand nine hundred ninety-six'), (960, 36814, 'thirty-six thousand eight hundred fourteen'), (961, 41743, 'forty-one thousand seven hundred forty-three'), (962, 49352, 'forty-nine thousand three hundred fifty-two'), (963, 2867, 'two thousand eight hundred sixty-seven'), (964, 77404, 'seventy-seven thousand four hundred four'), (965, 52039, 'fifty-two thousand thirty-nine'), (966, 50787, 'fifty thousand seven hundred eighty-seven'), (967, 72745, 'seventy-two thousand seven hundred forty-five'), (968, 38373, 'thirty-eight thousand three hundred seventy-three'), (969, 9880, 'nine thousand eight hundred eighty'), (970, 23368, 'twenty-three thousand three hundred sixty-eight'), (971, 21878, 'twenty-one thousand eight hundred seventy-eight'), (972, 24879, 'twenty-four thousand eight hundred seventy-nine'), (973, 85139, 'eighty-five thousand one hundred thirty-nine'), (974, 92663, 'ninety-two thousand six hundred sixty-three'), (975, 80314, 'eighty thousand three hundred fourteen'), (976, 68791, 'sixty-eight thousand seven hundred ninety-one'), (977, 86587, 'eighty-six thousand five hundred eighty-seven'), (978, 84276, 'eighty-four thousand two hundred seventy-six'), (979, 2611, 'two thousand six hundred eleven'), (980, 51394, 'fifty-one thousand three hundred ninety-four'), (981, 41718, 'forty-one thousand seven hundred eighteen'), (982, 74790, 'seventy-four thousand seven hundred ninety'), (983, 3722, 'three thousand seven hundred twenty-two'), (984, 51099, 'fifty-one thousand ninety-nine'), (985, 43465, 'forty-three thousand four hundred sixty-five'), (986, 80609, 'eighty thousand six hundred nine'), (987, 10740, 'ten thousand seven hundred forty'), (988, 46965, 'forty-six thousand nine hundred sixty-five'), (989, 69448, 'sixty-nine thousand four hundred forty-eight'), (990, 7629, 'seven thousand six hundred twenty-nine'), (991, 32001, 'thirty-two thousand one'), (992, 97403, 'ninety-seven thousand four hundred three'), (993, 38424, 'thirty-eight thousand four hundred twenty-four'), (994, 91197, 'ninety-one thousand one hundred ninety-seven'), (995, 18954, 'eighteen thousand nine hundred fifty-four'), (996, 63716, 'sixty-three thousand seven hundred sixteen'), (997, 47127, 'forty-seven thousand one hundred twenty-seven'), (998, 35979, 'thirty-five thousand nine hundred seventy-nine'), (999, 73385, 'seventy-three thousand three hundred eighty-five'), (1000, 22356, 'twenty-two thousand three hundred fifty-six'), (1001, 55538, 'fifty-five thousand five hundred thirty-eight'), (1002, 81376, 'eighty-one thousand three hundred seventy-six'), (1003, 86313, 'eighty-six thousand three hundred thirteen'), (1004, 49542, 'forty-nine thousand five hundred forty-two'), (1005, 74987, 'seventy-four thousand nine hundred eighty-seven'), (1006, 80722, 'eighty thousand seven hundred twenty-two'), (1007, 62298, 'sixty-two thousand two hundred ninety-eight'), (1008, 93119, 'ninety-three thousand one hundred nineteen'), (1009, 37378, 'thirty-seven thousand three hundred seventy-eight'), (1010, 80392, 'eighty thousand three hundred ninety-two'), (1011, 47524, 'forty-seven thousand five hundred twenty-four'), (1012, 68714, 'sixty-eight thousand seven hundred fourteen'), (1013, 95384, 'ninety-five thousand three hundred eighty-four'), (1014, 79821, 'seventy-nine thousand eight hundred twenty-one'), (1015, 65915, 'sixty-five thousand nine hundred fifteen'), (1016, 89567, 'eighty-nine thousand five hundred sixty-seven'), (1017, 6173, 'six thousand one hundred seventy-three'), (1018, 78190, 'seventy-eight thousand one hundred ninety'), (1019, 49620, 'forty-nine thousand six hundred twenty'), (1020, 314, 'three hundred fourteen'), (1021, 77071, 'seventy-seven thousand seventy-one'), (1022, 34897, 'thirty-four thousand eight hundred ninety-seven'), (1023, 50194, 'fifty thousand one hundred ninety-four'), (1024, 3962, 'three thousand nine hundred sixty-two'), (1025, 12995, 'twelve thousand nine hundred ninety-five'), (1026, 16574, 'sixteen thousand five hundred seventy-four'), (1027, 13011, 'thirteen thousand eleven'), (1028, 26129, 'twenty-six thousand one hundred twenty-nine'), (1029, 25946, 'twenty-five thousand nine hundred forty-six'), (1030, 48646, 'forty-eight thousand six hundred forty-six'), (1031, 12877, 'twelve thousand eight hundred seventy-seven'), (1032, 54792, 'fifty-four thousand seven hundred ninety-two'), (1033, 16323, 'sixteen thousand three hundred twenty-three'), (1034, 96597, 'ninety-six thousand five hundred ninety-seven'), (1035, 12817, 'twelve thousand eight hundred seventeen'), (1036, 17757, 'seventeen thousand seven hundred fifty-seven'), (1037, 20670, 'twenty thousand six hundred seventy'), (1038, 43032, 'forty-three thousand thirty-two'), (1039, 20753, 'twenty thousand seven hundred fifty-three'), (1040, 34704, 'thirty-four thousand seven hundred four'), (1041, 59068, 'fifty-nine thousand sixty-eight'), (1042, 92839, 'ninety-two thousand eight hundred thirty-nine'), (1043, 63337, 'sixty-three thousand three hundred thirty-seven'), (1044, 13702, 'thirteen thousand seven hundred two'), (1045, 8161, 'eight thousand one hundred sixty-one'), (1046, 36141, 'thirty-six thousand one hundred forty-one'), (1047, 74493, 'seventy-four thousand four hundred ninety-three'), (1048, 93265, 'ninety-three thousand two hundred sixty-five'), (1049, 40870, 'forty thousand eight hundred seventy'), (1050, 90720, 'ninety thousand seven hundred twenty'), (1051, 37822, 'thirty-seven thousand eight hundred twenty-two'), (1052, 37372, 'thirty-seven thousand three hundred seventy-two'), (1053, 83340, 'eighty-three thousand three hundred forty'), (1054, 65993, 'sixty-five thousand nine hundred ninety-three'), (1055, 63063, 'sixty-three thousand sixty-three'), (1056, 96964, 'ninety-six thousand nine hundred sixty-four'), (1057, 12363, 'twelve thousand three hundred sixty-three'), (1058, 76130, 'seventy-six thousand one hundred thirty'), (1059, 74871, 'seventy-four thousand eight hundred seventy-one'), (1060, 72127, 'seventy-two thousand one hundred twenty-seven'), (1061, 58419, 'fifty-eight thousand four hundred nineteen'), (1062, 55160, 'fifty-five thousand one hundred sixty'), (1063, 12066, 'twelve thousand sixty-six'), (1064, 60646, 'sixty thousand six hundred forty-six'), (1065, 38295, 'thirty-eight thousand two hundred ninety-five'), (1066, 89409, 'eighty-nine thousand four hundred nine'), (1067, 65373, 'sixty-five thousand three hundred seventy-three'), (1068, 30345, 'thirty thousand three hundred forty-five'), (1069, 2527, 'two thousand five hundred twenty-seven'), (1070, 19833, 'nineteen thousand eight hundred thirty-three'), (1071, 22166, 'twenty-two thousand one hundred sixty-six'), (1072, 45403, 'forty-five thousand four hundred three'), (1073, 13171, 'thirteen thousand one hundred seventy-one'), (1074, 36873, 'thirty-six thousand eight hundred seventy-three'), (1075, 50278, 'fifty thousand two hundred seventy-eight'), (1076, 61903, 'sixty-one thousand nine hundred three'), (1077, 9080, 'nine thousand eighty'), (1078, 27901, 'twenty-seven thousand nine hundred one'), (1079, 49117, 'forty-nine thousand one hundred seventeen'), (1080, 22201, 'twenty-two thousand two hundred one'), (1081, 32329, 'thirty-two thousand three hundred twenty-nine'), (1082, 54240, 'fifty-four thousand two hundred forty'), (1083, 86819, 'eighty-six thousand eight hundred nineteen'), (1084, 46365, 'forty-six thousand three hundred sixty-five'), (1085, 78771, 'seventy-eight thousand seven hundred seventy-one'), (1086, 17448, 'seventeen thousand four hundred forty-eight'), (1087, 31391, 'thirty-one thousand three hundred ninety-one'), (1088, 29459, 'twenty-nine thousand four hundred fifty-nine'), (1089, 71702, 'seventy-one thousand seven hundred two'), (1090, 61800, 'sixty-one thousand eight hundred'), (1091, 63785, 'sixty-three thousand seven hundred eighty-five'), (1092, 77760, 'seventy-seven thousand seven hundred sixty'), (1093, 41542, 'forty-one thousand five hundred forty-two'), (1094, 90620, 'ninety thousand six hundred twenty'), (1095, 28478, 'twenty-eight thousand four hundred seventy-eight'), (1096, 91651, 'ninety-one thousand six hundred fifty-one'), (1097, 65602, 'sixty-five thousand six hundred two'), (1098, 78515, 'seventy-eight thousand five hundred fifteen'), (1099, 88720, 'eighty-eight thousand seven hundred twenty'), (1100, 28984, 'twenty-eight thousand nine hundred eighty-four'), (1101, 1688, 'one thousand six hundred eighty-eight'), (1102, 12137, 'twelve thousand one hundred thirty-seven'), (1103, 5562, 'five thousand five hundred sixty-two'), (1104, 79483, 'seventy-nine thousand four hundred eighty-three'), (1105, 82573, 'eighty-two thousand five hundred seventy-three'), (1106, 9763, 'nine thousand seven hundred sixty-three'), (1107, 32211, 'thirty-two thousand two hundred eleven'), (1108, 4207, 'four thousand two hundred seven'), (1109, 81396, 'eighty-one thousand three hundred ninety-six'), (1110, 43204, 'forty-three thousand two hundred four'), (1111, 44071, 'forty-four thousand seventy-one'), (1112, 43680, 'forty-three thousand six hundred eighty'), (1113, 17553, 'seventeen thousand five hundred fifty-three'), (1114, 8265, 'eight thousand two hundred sixty-five'), (1115, 77411, 'seventy-seven thousand four hundred eleven'), (1116, 40530, 'forty thousand five hundred thirty'), (1117, 38298, 'thirty-eight thousand two hundred ninety-eight'), (1118, 77618, 'seventy-seven thousand six hundred eighteen'), (1119, 78116, 'seventy-eight thousand one hundred sixteen'), (1120, 71376, 'seventy-one thousand three hundred seventy-six'), (1121, 24103, 'twenty-four thousand one hundred three'), (1122, 54423, 'fifty-four thousand four hundred twenty-three'), (1123, 68801, 'sixty-eight thousand eight hundred one'), (1124, 15256, 'fifteen thousand two hundred fifty-six'), (1125, 20268, 'twenty thousand two hundred sixty-eight'), (1126, 16855, 'sixteen thousand eight hundred fifty-five'), (1127, 70035, 'seventy thousand thirty-five'), (1128, 89172, 'eighty-nine thousand one hundred seventy-two'), (1129, 98060, 'ninety-eight thousand sixty'), (1130, 54557, 'fifty-four thousand five hundred fifty-seven'), (1131, 68504, 'sixty-eight thousand five hundred four'), (1132, 55531, 'fifty-five thousand five hundred thirty-one'), (1133, 50161, 'fifty thousand one hundred sixty-one'), (1134, 97767, 'ninety-seven thousand seven hundred sixty-seven'), (1135, 35200, 'thirty-five thousand two hundred'), (1136, 43320, 'forty-three thousand three hundred twenty'), (1137, 49341, 'forty-nine thousand three hundred forty-one'), (1138, 97800, 'ninety-seven thousand eight hundred'), (1139, 12026, 'twelve thousand twenty-six'), (1140, 40365, 'forty thousand three hundred sixty-five'), (1141, 78130, 'seventy-eight thousand one hundred thirty'), (1142, 71407, 'seventy-one thousand four hundred seven'), (1143, 88110, 'eighty-eight thousand one hundred ten'), (1144, 70075, 'seventy thousand seventy-five'), (1145, 39803, 'thirty-nine thousand eight hundred three'), (1146, 36025, 'thirty-six thousand twenty-five'), (1147, 95120, 'ninety-five thousand one hundred twenty'), (1148, 61068, 'sixty-one thousand sixty-eight'), (1149, 96036, 'ninety-six thousand thirty-six'), (1150, 63963, 'sixty-three thousand nine hundred sixty-three'), (1151, 94898, 'ninety-four thousand eight hundred ninety-eight'), (1152, 49063, 'forty-nine thousand sixty-three'), (1153, 33733, 'thirty-three thousand seven hundred thirty-three'), (1154, 584, 'five hundred eighty-four'), (1155, 6973, 'six thousand nine hundred seventy-three'), (1156, 70539, 'seventy thousand five hundred thirty-nine'), (1157, 56452, 'fifty-six thousand four hundred fifty-two'), (1158, 5590, 'five thousand five hundred ninety'), (1159, 15730, 'fifteen thousand seven hundred thirty'), (1160, 77308, 'seventy-seven thousand three hundred eight'), (1161, 86753, 'eighty-six thousand seven hundred fifty-three'), (1162, 38210, 'thirty-eight thousand two hundred ten'), (1163, 77635, 'seventy-seven thousand six hundred thirty-five'), (1164, 14535, 'fourteen thousand five hundred thirty-five'), (1165, 68957, 'sixty-eight thousand nine hundred fifty-seven'), (1166, 19623, 'nineteen thousand six hundred twenty-three'), (1167, 5643, 'five thousand six hundred forty-three'), (1168, 77798, 'seventy-seven thousand seven hundred ninety-eight'), (1169, 69501, 'sixty-nine thousand five hundred one'), (1170, 61192, 'sixty-one thousand one hundred ninety-two'), (1171, 83736, 'eighty-three thousand seven hundred thirty-six'), (1172, 82633, 'eighty-two thousand six hundred thirty-three'), (1173, 50539, 'fifty thousand five hundred thirty-nine'), (1174, 87416, 'eighty-seven thousand four hundred sixteen'), (1175, 56737, 'fifty-six thousand seven hundred thirty-seven'), (1176, 33997, 'thirty-three thousand nine hundred ninety-seven'), (1177, 37921, 'thirty-seven thousand nine hundred twenty-one'), (1178, 10244, 'ten thousand two hundred forty-four'), (1179, 9407, 'nine thousand four hundred seven'), (1180, 70784, 'seventy thousand seven hundred eighty-four'), (1181, 47705, 'forty-seven thousand seven hundred five'), (1182, 20852, 'twenty thousand eight hundred fifty-two'), (1183, 78176, 'seventy-eight thousand one hundred seventy-six'), (1184, 32410, 'thirty-two thousand four hundred ten'), (1185, 39737, 'thirty-nine thousand seven hundred thirty-seven'), (1186, 5142, 'five thousand one hundred forty-two'), (1187, 35867, 'thirty-five thousand eight hundred sixty-seven'), (1188, 52773, 'fifty-two thousand seven hundred seventy-three'), (1189, 29699, 'twenty-nine thousand six hundred ninety-nine'), (1190, 38185, 'thirty-eight thousand one hundred eighty-five'), (1191, 17648, 'seventeen thousand six hundred forty-eight'), (1192, 31242, 'thirty-one thousand two hundred forty-two'), (1193, 61161, 'sixty-one thousand one hundred sixty-one'), (1194, 1135, 'one thousand one hundred thirty-five'), (1195, 61402, 'sixty-one thousand four hundred two'), (1196, 44607, 'forty-four thousand six hundred seven'), (1197, 66253, 'sixty-six thousand two hundred fifty-three'), (1198, 53684, 'fifty-three thousand six hundred eighty-four'), (1199, 81819, 'eighty-one thousand eight hundred nineteen'), (1200, 56896, 'fifty-six thousand eight hundred ninety-six'), (1201, 24164, 'twenty-four thousand one hundred sixty-four'), (1202, 15088, 'fifteen thousand eighty-eight'), (1203, 52962, 'fifty-two thousand nine hundred sixty-two'), (1204, 200, 'two hundred'), (1205, 26958, 'twenty-six thousand nine hundred fifty-eight'), (1206, 91112, 'ninety-one thousand one hundred twelve'), (1207, 48779, 'forty-eight thousand seven hundred seventy-nine'), (1208, 55622, 'fifty-five thousand six hundred twenty-two'), (1209, 34562, 'thirty-four thousand five hundred sixty-two'), (1210, 88798, 'eighty-eight thousand seven hundred ninety-eight'), (1211, 84915, 'eighty-four thousand nine hundred fifteen'), (1212, 33609, 'thirty-three thousand six hundred nine'), (1213, 37211, 'thirty-seven thousand two hundred eleven'), (1214, 55843, 'fifty-five thousand eight hundred forty-three'), (1215, 53764, 'fifty-three thousand seven hundred sixty-four'), (1216, 88733, 'eighty-eight thousand seven hundred thirty-three'), (1217, 5799, 'five thousand seven hundred ninety-nine'), (1218, 92517, 'ninety-two thousand five hundred seventeen'), (1219, 91708, 'ninety-one thousand seven hundred eight'), (1220, 19304, 'nineteen thousand three hundred four'), (1221, 5130, 'five thousand one hundred thirty'), (1222, 20649, 'twenty thousand six hundred forty-nine'), (1223, 56010, 'fifty-six thousand ten'), (1224, 61798, 'sixty-one thousand seven hundred ninety-eight'), (1225, 65913, 'sixty-five thousand nine hundred thirteen'), (1226, 81863, 'eighty-one thousand eight hundred sixty-three'), (1227, 43903, 'forty-three thousand nine hundred three'), (1228, 2201, 'two thousand two hundred one'), (1229, 74772, 'seventy-four thousand seven hundred seventy-two'), (1230, 60641, 'sixty thousand six hundred forty-one'), (1231, 59217, 'fifty-nine thousand two hundred seventeen'), (1232, 47443, 'forty-seven thousand four hundred forty-three'), (1233, 62292, 'sixty-two thousand two hundred ninety-two'), (1234, 51084, 'fifty-one thousand eighty-four'), (1235, 34890, 'thirty-four thousand eight hundred ninety'), (1236, 66948, 'sixty-six thousand nine hundred forty-eight'), (1237, 7314, 'seven thousand three hundred fourteen'), (1238, 7328, 'seven thousand three hundred twenty-eight'), (1239, 50586, 'fifty thousand five hundred eighty-six'), (1240, 81060, 'eighty-one thousand sixty'), (1241, 11213, 'eleven thousand two hundred thirteen'), (1242, 80152, 'eighty thousand one hundred fifty-two'), (1243, 89587, 'eighty-nine thousand five hundred eighty-seven'), (1244, 83826, 'eighty-three thousand eight hundred twenty-six'), (1245, 64098, 'sixty-four thousand ninety-eight'), (1246, 77926, 'seventy-seven thousand nine hundred twenty-six'), (1247, 47897, 'forty-seven thousand eight hundred ninety-seven'), (1248, 98123, 'ninety-eight thousand one hundred twenty-three'), (1249, 33848, 'thirty-three thousand eight hundred forty-eight'), (1250, 35650, 'thirty-five thousand six hundred fifty'), (1251, 3746, 'three thousand seven hundred forty-six'), (1252, 23209, 'twenty-three thousand two hundred nine'), (1253, 92159, 'ninety-two thousand one hundred fifty-nine'), (1254, 16517, 'sixteen thousand five hundred seventeen'), (1255, 51307, 'fifty-one thousand three hundred seven'), (1256, 52257, 'fifty-two thousand two hundred fifty-seven'), (1257, 35091, 'thirty-five thousand ninety-one'), (1258, 75176, 'seventy-five thousand one hundred seventy-six'), (1259, 13954, 'thirteen thousand nine hundred fifty-four'), (1260, 25101, 'twenty-five thousand one hundred one'), (1261, 36297, 'thirty-six thousand two hundred ninety-seven'), (1262, 6364, 'six thousand three hundred sixty-four'), (1263, 2388, 'two thousand three hundred eighty-eight'), (1264, 30295, 'thirty thousand two hundred ninety-five'), (1265, 42865, 'forty-two thousand eight hundred sixty-five'), (1266, 9279, 'nine thousand two hundred seventy-nine'), (1267, 60930, 'sixty thousand nine hundred thirty'), (1268, 36524, 'thirty-six thousand five hundred twenty-four'), (1269, 24362, 'twenty-four thousand three hundred sixty-two'), (1270, 17401, 'seventeen thousand four hundred one'), (1271, 71411, 'seventy-one thousand four hundred eleven'), (1272, 31655, 'thirty-one thousand six hundred fifty-five'), (1273, 5122, 'five thousand one hundred twenty-two'), (1274, 52284, 'fifty-two thousand two hundred eighty-four'), (1275, 19329, 'nineteen thousand three hundred twenty-nine'), (1276, 13660, 'thirteen thousand six hundred sixty'), (1277, 1131, 'one thousand one hundred thirty-one'), (1278, 25081, 'twenty-five thousand eighty-one'), (1279, 55153, 'fifty-five thousand one hundred fifty-three'), (1280, 8973, 'eight thousand nine hundred seventy-three'), (1281, 58069, 'fifty-eight thousand sixty-nine'), (1282, 79100, 'seventy-nine thousand one hundred'), (1283, 48768, 'forty-eight thousand seven hundred sixty-eight'), (1284, 60150, 'sixty thousand one hundred fifty'), (1285, 66552, 'sixty-six thousand five hundred fifty-two'), (1286, 23579, 'twenty-three thousand five hundred seventy-nine'), (1287, 18058, 'eighteen thousand fifty-eight'), (1288, 61810, 'sixty-one thousand eight hundred ten'), (1289, 75622, 'seventy-five thousand six hundred twenty-two'), (1290, 5557, 'five thousand five hundred fifty-seven'), (1291, 90854, 'ninety thousand eight hundred fifty-four'), (1292, 87039, 'eighty-seven thousand thirty-nine'), (1293, 8757, 'eight thousand seven hundred fifty-seven'), (1294, 76493, 'seventy-six thousand four hundred ninety-three'), (1295, 33508, 'thirty-three thousand five hundred eight'), (1296, 15425, 'fifteen thousand four hundred twenty-five'), (1297, 10447, 'ten thousand four hundred forty-seven'), (1298, 93718, 'ninety-three thousand seven hundred eighteen'), (1299, 60922, 'sixty thousand nine hundred twenty-two'), (1300, 11712, 'eleven thousand seven hundred twelve'), (1301, 56828, 'fifty-six thousand eight hundred twenty-eight'), (1302, 91211, 'ninety-one thousand two hundred eleven'), (1303, 3637, 'three thousand six hundred thirty-seven'), (1304, 8958, 'eight thousand nine hundred fifty-eight'), (1305, 88592, 'eighty-eight thousand five hundred ninety-two'), (1306, 7217, 'seven thousand two hundred seventeen'), (1307, 58735, 'fifty-eight thousand seven hundred thirty-five'), (1308, 95778, 'ninety-five thousand seven hundred seventy-eight'), (1309, 48851, 'forty-eight thousand eight hundred fifty-one'), (1310, 69104, 'sixty-nine thousand one hundred four'), (1311, 41151, 'forty-one thousand one hundred fifty-one'), (1312, 92769, 'ninety-two thousand seven hundred sixty-nine'), (1313, 23517, 'twenty-three thousand five hundred seventeen'), (1314, 3893, 'three thousand eight hundred ninety-three'), (1315, 60575, 'sixty thousand five hundred seventy-five'), (1316, 7296, 'seven thousand two hundred ninety-six'), (1317, 70279, 'seventy thousand two hundred seventy-nine'), (1318, 49134, 'forty-nine thousand one hundred thirty-four'), (1319, 72590, 'seventy-two thousand five hundred ninety'), (1320, 81718, 'eighty-one thousand seven hundred eighteen'), (1321, 94520, 'ninety-four thousand five hundred twenty'), (1322, 90116, 'ninety thousand one hundred sixteen'), (1323, 21056, 'twenty-one thousand fifty-six'), (1324, 97610, 'ninety-seven thousand six hundred ten'), (1325, 2826, 'two thousand eight hundred twenty-six'), (1326, 14063, 'fourteen thousand sixty-three'), (1327, 6031, 'six thousand thirty-one'), (1328, 65228, 'sixty-five thousand two hundred twenty-eight'), (1329, 83287, 'eighty-three thousand two hundred eighty-seven'), (1330, 11688, 'eleven thousand six hundred eighty-eight'), (1331, 75854, 'seventy-five thousand eight hundred fifty-four'), (1332, 4682, 'four thousand six hundred eighty-two'), (1333, 26055, 'twenty-six thousand fifty-five'), (1334, 73188, 'seventy-three thousand one hundred eighty-eight'), (1335, 92308, 'ninety-two thousand three hundred eight'), (1336, 21226, 'twenty-one thousand two hundred twenty-six'), (1337, 67369, 'sixty-seven thousand three hundred sixty-nine'), (1338, 59051, 'fifty-nine thousand fifty-one'), (1339, 69586, 'sixty-nine thousand five hundred eighty-six'), (1340, 74749, 'seventy-four thousand seven hundred forty-nine'), (1341, 93121, 'ninety-three thousand one hundred twenty-one'), (1342, 16000, 'sixteen thousand'), (1343, 44870, 'forty-four thousand eight hundred seventy'), (1344, 5040, 'five thousand forty'), (1345, 33434, 'thirty-three thousand four hundred thirty-four'), (1346, 47321, 'forty-seven thousand three hundred twenty-one'), (1347, 55639, 'fifty-five thousand six hundred thirty-nine'), (1348, 22157, 'twenty-two thousand one hundred fifty-seven'), (1349, 17189, 'seventeen thousand one hundred eighty-nine'), (1350, 77408, 'seventy-seven thousand four hundred eight'), (1351, 41344, 'forty-one thousand three hundred forty-four'), (1352, 67958, 'sixty-seven thousand nine hundred fifty-eight'), (1353, 48189, 'forty-eight thousand one hundred eighty-nine'), (1354, 6938, 'six thousand nine hundred thirty-eight'), (1355, 36616, 'thirty-six thousand six hundred sixteen'), (1356, 23947, 'twenty-three thousand nine hundred forty-seven'), (1357, 16580, 'sixteen thousand five hundred eighty'), (1358, 33653, 'thirty-three thousand six hundred fifty-three'), (1359, 86494, 'eighty-six thousand four hundred ninety-four'), (1360, 8035, 'eight thousand thirty-five'), (1361, 81163, 'eighty-one thousand one hundred sixty-three'), (1362, 39688, 'thirty-nine thousand six hundred eighty-eight'), (1363, 23191, 'twenty-three thousand one hundred ninety-one'), (1364, 30756, 'thirty thousand seven hundred fifty-six'), (1365, 60955, 'sixty thousand nine hundred fifty-five'), (1366, 37666, 'thirty-seven thousand six hundred sixty-six'), (1367, 32124, 'thirty-two thousand one hundred twenty-four'), (1368, 37601, 'thirty-seven thousand six hundred one'), (1369, 31697, 'thirty-one thousand six hundred ninety-seven'), (1370, 70414, 'seventy thousand four hundred fourteen'), (1371, 83186, 'eighty-three thousand one hundred eighty-six'), (1372, 43212, 'forty-three thousand two hundred twelve'), (1373, 43706, 'forty-three thousand seven hundred six'), (1374, 74425, 'seventy-four thousand four hundred twenty-five'), (1375, 30805, 'thirty thousand eight hundred five'), (1376, 50862, 'fifty thousand eight hundred sixty-two'), (1377, 78835, 'seventy-eight thousand eight hundred thirty-five'), (1378, 13974, 'thirteen thousand nine hundred seventy-four'), (1379, 9088, 'nine thousand eighty-eight'), (1380, 83685, 'eighty-three thousand six hundred eighty-five'), (1381, 42925, 'forty-two thousand nine hundred twenty-five'), (1382, 52684, 'fifty-two thousand six hundred eighty-four'), (1383, 51846, 'fifty-one thousand eight hundred forty-six'), (1384, 54278, 'fifty-four thousand two hundred seventy-eight'), (1385, 15094, 'fifteen thousand ninety-four'), (1386, 10119, 'ten thousand one hundred nineteen'), (1387, 65471, 'sixty-five thousand four hundred seventy-one'), (1388, 94045, 'ninety-four thousand forty-five'), (1389, 64522, 'sixty-four thousand five hundred twenty-two'), (1390, 16108, 'sixteen thousand one hundred eight'), (1391, 98475, 'ninety-eight thousand four hundred seventy-five'), (1392, 14889, 'fourteen thousand eight hundred eighty-nine'), (1393, 85081, 'eighty-five thousand eighty-one'), (1394, 18339, 'eighteen thousand three hundred thirty-nine'), (1395, 55412, 'fifty-five thousand four hundred twelve'), (1396, 67410, 'sixty-seven thousand four hundred ten'), (1397, 59049, 'fifty-nine thousand forty-nine'), (1398, 42667, 'forty-two thousand six hundred sixty-seven'), (1399, 81480, 'eighty-one thousand four hundred eighty'), (1400, 44376, 'forty-four thousand three hundred seventy-six'), (1401, 17086, 'seventeen thousand eighty-six'), (1402, 42743, 'forty-two thousand seven hundred forty-three'), (1403, 82977, 'eighty-two thousand nine hundred seventy-seven'), (1404, 89291, 'eighty-nine thousand two hundred ninety-one'), (1405, 91647, 'ninety-one thousand six hundred forty-seven'), (1406, 42961, 'forty-two thousand nine hundred sixty-one'), (1407, 93206, 'ninety-three thousand two hundred six'), (1408, 2809, 'two thousand eight hundred nine'), (1409, 33098, 'thirty-three thousand ninety-eight'), (1410, 4394, 'four thousand three hundred ninety-four'), (1411, 27538, 'twenty-seven thousand five hundred thirty-eight'), (1412, 70688, 'seventy thousand six hundred eighty-eight'), (1413, 1847, 'one thousand eight hundred forty-seven'), (1414, 64114, 'sixty-four thousand one hundred fourteen'), (1415, 23317, 'twenty-three thousand three hundred seventeen'), (1416, 74072, 'seventy-four thousand seventy-two'), (1417, 43940, 'forty-three thousand nine hundred forty'), (1418, 81265, 'eighty-one thousand two hundred sixty-five'), (1419, 23520, 'twenty-three thousand five hundred twenty'), (1420, 42393, 'forty-two thousand three hundred ninety-three'), (1421, 69297, 'sixty-nine thousand two hundred ninety-seven'), (1422, 30522, 'thirty thousand five hundred twenty-two'), (1423, 19990, 'nineteen thousand nine hundred ninety'), (1424, 21630, 'twenty-one thousand six hundred thirty'), (1425, 27250, 'twenty-seven thousand two hundred fifty'), (1426, 30634, 'thirty thousand six hundred thirty-four'), (1427, 40678, 'forty thousand six hundred seventy-eight'), (1428, 7137, 'seven thousand one hundred thirty-seven'), (1429, 31894, 'thirty-one thousand eight hundred ninety-four'), (1430, 33397, 'thirty-three thousand three hundred ninety-seven'), (1431, 82540, 'eighty-two thousand five hundred forty'), (1432, 58521, 'fifty-eight thousand five hundred twenty-one'), (1433, 86494, 'eighty-six thousand four hundred ninety-four'), (1434, 21138, 'twenty-one thousand one hundred thirty-eight'), (1435, 4279, 'four thousand two hundred seventy-nine'), (1436, 87476, 'eighty-seven thousand four hundred seventy-six'), (1437, 2346, 'two thousand three hundred forty-six'), (1438, 55613, 'fifty-five thousand six hundred thirteen'), (1439, 62273, 'sixty-two thousand two hundred seventy-three'), (1440, 89495, 'eighty-nine thousand four hundred ninety-five'), (1441, 36912, 'thirty-six thousand nine hundred twelve'), (1442, 97370, 'ninety-seven thousand three hundred seventy'), (1443, 99718, 'ninety-nine thousand seven hundred eighteen'), (1444, 22755, 'twenty-two thousand seven hundred fifty-five'), (1445, 25884, 'twenty-five thousand eight hundred eighty-four'), (1446, 60650, 'sixty thousand six hundred fifty'), (1447, 63431, 'sixty-three thousand four hundred thirty-one'), (1448, 99037, 'ninety-nine thousand thirty-seven'), (1449, 46683, 'forty-six thousand six hundred eighty-three'), (1450, 18230, 'eighteen thousand two hundred thirty'), (1451, 6169, 'six thousand one hundred sixty-nine'), (1452, 93756, 'ninety-three thousand seven hundred fifty-six'), (1453, 82602, 'eighty-two thousand six hundred two'), (1454, 91464, 'ninety-one thousand four hundred sixty-four'), (1455, 6999, 'six thousand nine hundred ninety-nine'), (1456, 62243, 'sixty-two thousand two hundred forty-three'), (1457, 76853, 'seventy-six thousand eight hundred fifty-three'), (1458, 34140, 'thirty-four thousand one hundred forty'), (1459, 66544, 'sixty-six thousand five hundred forty-four'), (1460, 28978, 'twenty-eight thousand nine hundred seventy-eight'), (1461, 60082, 'sixty thousand eighty-two'), (1462, 3594, 'three thousand five hundred ninety-four'), (1463, 98376, 'ninety-eight thousand three hundred seventy-six'), (1464, 74838, 'seventy-four thousand eight hundred thirty-eight'), (1465, 67943, 'sixty-seven thousand nine hundred forty-three'), (1466, 46797, 'forty-six thousand seven hundred ninety-seven'), (1467, 65802, 'sixty-five thousand eight hundred two'), (1468, 16924, 'sixteen thousand nine hundred twenty-four'), (1469, 20053, 'twenty thousand fifty-three'), (1470, 79931, 'seventy-nine thousand nine hundred thirty-one'), (1471, 49998, 'forty-nine thousand nine hundred ninety-eight'), (1472, 14258, 'fourteen thousand two hundred fifty-eight'), (1473, 51696, 'fifty-one thousand six hundred ninety-six'), (1474, 87223, 'eighty-seven thousand two hundred twenty-three'), (1475, 55248, 'fifty-five thousand two hundred forty-eight'), (1476, 40943, 'forty thousand nine hundred forty-three'), (1477, 70434, 'seventy thousand four hundred thirty-four'), (1478, 80312, 'eighty thousand three hundred twelve'), (1479, 69166, 'sixty-nine thousand one hundred sixty-six'), (1480, 30197, 'thirty thousand one hundred ninety-seven'), (1481, 25526, 'twenty-five thousand five hundred twenty-six'), (1482, 20189, 'twenty thousand one hundred eighty-nine'), (1483, 32036, 'thirty-two thousand thirty-six'), (1484, 86152, 'eighty-six thousand one hundred fifty-two'), (1485, 35840, 'thirty-five thousand eight hundred forty'), (1486, 3784, 'three thousand seven hundred eighty-four'), (1487, 30652, 'thirty thousand six hundred fifty-two'), (1488, 76979, 'seventy-six thousand nine hundred seventy-nine'), (1489, 51493, 'fifty-one thousand four hundred ninety-three'), (1490, 78349, 'seventy-eight thousand three hundred forty-nine'), (1491, 99378, 'ninety-nine thousand three hundred seventy-eight'), (1492, 9773, 'nine thousand seven hundred seventy-three'), (1493, 15186, 'fifteen thousand one hundred eighty-six'), (1494, 47773, 'forty-seven thousand seven hundred seventy-three'), (1495, 56151, 'fifty-six thousand one hundred fifty-one'), (1496, 15131, 'fifteen thousand one hundred thirty-one'), (1497, 84587, 'eighty-four thousand five hundred eighty-seven'), (1498, 66398, 'sixty-six thousand three hundred ninety-eight'), (1499, 32783, 'thirty-two thousand seven hundred eighty-three'), (1500, 52117, 'fifty-two thousand one hundred seventeen'), (1501, 72385, 'seventy-two thousand three hundred eighty-five'), (1502, 583, 'five hundred eighty-three'), (1503, 46991, 'forty-six thousand nine hundred ninety-one'), (1504, 70432, 'seventy thousand four hundred thirty-two'), (1505, 29874, 'twenty-nine thousand eight hundred seventy-four'), (1506, 80205, 'eighty thousand two hundred five'), (1507, 74951, 'seventy-four thousand nine hundred fifty-one'), (1508, 20681, 'twenty thousand six hundred eighty-one'), (1509, 8802, 'eight thousand eight hundred two'), (1510, 56901, 'fifty-six thousand nine hundred one'), (1511, 78776, 'seventy-eight thousand seven hundred seventy-six'), (1512, 61720, 'sixty-one thousand seven hundred twenty'), (1513, 46839, 'forty-six thousand eight hundred thirty-nine'), (1514, 60429, 'sixty thousand four hundred twenty-nine'), (1515, 6138, 'six thousand one hundred thirty-eight'), (1516, 2198, 'two thousand one hundred ninety-eight'), (1517, 14553, 'fourteen thousand five hundred fifty-three'), (1518, 9480, 'nine thousand four hundred eighty'), (1519, 22985, 'twenty-two thousand nine hundred eighty-five'), (1520, 66863, 'sixty-six thousand eight hundred sixty-three'), (1521, 22034, 'twenty-two thousand thirty-four'), (1522, 86911, 'eighty-six thousand nine hundred eleven'), (1523, 23221, 'twenty-three thousand two hundred twenty-one'), (1524, 96124, 'ninety-six thousand one hundred twenty-four'), (1525, 13993, 'thirteen thousand nine hundred ninety-three'), (1526, 97899, 'ninety-seven thousand eight hundred ninety-nine'), (1527, 15403, 'fifteen thousand four hundred three'), (1528, 36095, 'thirty-six thousand ninety-five'), (1529, 42817, 'forty-two thousand eight hundred seventeen'), (1530, 42984, 'forty-two thousand nine hundred eighty-four'), (1531, 68757, 'sixty-eight thousand seven hundred fifty-seven'), (1532, 55896, 'fifty-five thousand eight hundred ninety-six'), (1533, 53311, 'fifty-three thousand three hundred eleven'), (1534, 30057, 'thirty thousand fifty-seven'), (1535, 703, 'seven hundred three'), (1536, 70141, 'seventy thousand one hundred forty-one'), (1537, 3513, 'three thousand five hundred thirteen'), (1538, 96348, 'ninety-six thousand three hundred forty-eight'), (1539, 90443, 'ninety thousand four hundred forty-three'), (1540, 98539, 'ninety-eight thousand five hundred thirty-nine'), (1541, 34909, 'thirty-four thousand nine hundred nine'), (1542, 10888, 'ten thousand eight hundred eighty-eight'), (1543, 22597, 'twenty-two thousand five hundred ninety-seven'), (1544, 72622, 'seventy-two thousand six hundred twenty-two'), (1545, 8099, 'eight thousand ninety-nine'), (1546, 8945, 'eight thousand nine hundred forty-five'), (1547, 85120, 'eighty-five thousand one hundred twenty'), (1548, 3750, 'three thousand seven hundred fifty'), (1549, 98350, 'ninety-eight thousand three hundred fifty'), (1550, 50321, 'fifty thousand three hundred twenty-one'), (1551, 20989, 'twenty thousand nine hundred eighty-nine'), (1552, 74006, 'seventy-four thousand six'), (1553, 53809, 'fifty-three thousand eight hundred nine'), (1554, 95808, 'ninety-five thousand eight hundred eight'), (1555, 19023, 'nineteen thousand twenty-three'), (1556, 94637, 'ninety-four thousand six hundred thirty-seven'), (1557, 34282, 'thirty-four thousand two hundred eighty-two'), (1558, 76004, 'seventy-six thousand four'), (1559, 41024, 'forty-one thousand twenty-four'), (1560, 83730, 'eighty-three thousand seven hundred thirty'), (1561, 42788, 'forty-two thousand seven hundred eighty-eight'), (1562, 98008, 'ninety-eight thousand eight'), (1563, 81276, 'eighty-one thousand two hundred seventy-six'), (1564, 46661, 'forty-six thousand six hundred sixty-one'), (1565, 41606, 'forty-one thousand six hundred six'), (1566, 71937, 'seventy-one thousand nine hundred thirty-seven'), (1567, 64977, 'sixty-four thousand nine hundred seventy-seven'), (1568, 717, 'seven hundred seventeen'), (1569, 79266, 'seventy-nine thousand two hundred sixty-six'), (1570, 2784, 'two thousand seven hundred eighty-four'), (1571, 64149, 'sixty-four thousand one hundred forty-nine'), (1572, 46225, 'forty-six thousand two hundred twenty-five'), (1573, 54485, 'fifty-four thousand four hundred eighty-five'), (1574, 834, 'eight hundred thirty-four'), (1575, 87256, 'eighty-seven thousand two hundred fifty-six'), (1576, 50253, 'fifty thousand two hundred fifty-three'), (1577, 8079, 'eight thousand seventy-nine'), (1578, 13348, 'thirteen thousand three hundred forty-eight'), (1579, 96299, 'ninety-six thousand two hundred ninety-nine'), (1580, 11791, 'eleven thousand seven hundred ninety-one'), (1581, 52010, 'fifty-two thousand ten'), (1582, 75972, 'seventy-five thousand nine hundred seventy-two'), (1583, 48694, 'forty-eight thousand six hundred ninety-four'), (1584, 47825, 'forty-seven thousand eight hundred twenty-five'), (1585, 16316, 'sixteen thousand three hundred sixteen'), (1586, 36091, 'thirty-six thousand ninety-one'), (1587, 12935, 'twelve thousand nine hundred thirty-five'), (1588, 73502, 'seventy-three thousand five hundred two'), (1589, 95386, 'ninety-five thousand three hundred eighty-six'), (1590, 40717, 'forty thousand seven hundred seventeen'), (1591, 64368, 'sixty-four thousand three hundred sixty-eight'), (1592, 13031, 'thirteen thousand thirty-one'), (1593, 20833, 'twenty thousand eight hundred thirty-three'), (1594, 42830, 'forty-two thousand eight hundred thirty'), (1595, 48552, 'forty-eight thousand five hundred fifty-two'), (1596, 25080, 'twenty-five thousand eighty'), (1597, 82047, 'eighty-two thousand forty-seven'), (1598, 17153, 'seventeen thousand one hundred fifty-three'), (1599, 11760, 'eleven thousand seven hundred sixty'), (1600, 77741, 'seventy-seven thousand seven hundred forty-one'), (1601, 33160, 'thirty-three thousand one hundred sixty'), (1602, 59277, 'fifty-nine thousand two hundred seventy-seven'), (1603, 46466, 'forty-six thousand four hundred sixty-six'), (1604, 30377, 'thirty thousand three hundred seventy-seven'), (1605, 56, 'fifty-six'), (1606, 7002, 'seven thousand two'), (1607, 42546, 'forty-two thousand five hundred forty-six'), (1608, 74812, 'seventy-four thousand eight hundred twelve'), (1609, 34393, 'thirty-four thousand three hundred ninety-three'), (1610, 17906, 'seventeen thousand nine hundred six'), (1611, 88345, 'eighty-eight thousand three hundred forty-five'), (1612, 89151, 'eighty-nine thousand one hundred fifty-one'), (1613, 61801, 'sixty-one thousand eight hundred one'), (1614, 91028, 'ninety-one thousand twenty-eight'), (1615, 21377, 'twenty-one thousand three hundred seventy-seven'), (1616, 28960, 'twenty-eight thousand nine hundred sixty'), (1617, 19222, 'nineteen thousand two hundred twenty-two'), (1618, 57618, 'fifty-seven thousand six hundred eighteen'), (1619, 76240, 'seventy-six thousand two hundred forty'), (1620, 20780, 'twenty thousand seven hundred eighty'), (1621, 8716, 'eight thousand seven hundred sixteen'), (1622, 46543, 'forty-six thousand five hundred forty-three'), (1623, 10892, 'ten thousand eight hundred ninety-two'), (1624, 17440, 'seventeen thousand four hundred forty'), (1625, 56921, 'fifty-six thousand nine hundred twenty-one'), (1626, 1696, 'one thousand six hundred ninety-six'), (1627, 16761, 'sixteen thousand seven hundred sixty-one'), (1628, 37810, 'thirty-seven thousand eight hundred ten'), (1629, 44518, 'forty-four thousand five hundred eighteen'), (1630, 67520, 'sixty-seven thousand five hundred twenty'), (1631, 40923, 'forty thousand nine hundred twenty-three'), (1632, 18314, 'eighteen thousand three hundred fourteen'), (1633, 90127, 'ninety thousand one hundred twenty-seven'), (1634, 79059, 'seventy-nine thousand fifty-nine'), (1635, 626, 'six hundred twenty-six'), (1636, 80537, 'eighty thousand five hundred thirty-seven'), (1637, 83954, 'eighty-three thousand nine hundred fifty-four'), (1638, 17794, 'seventeen thousand seven hundred ninety-four'), (1639, 68525, 'sixty-eight thousand five hundred twenty-five'), (1640, 61471, 'sixty-one thousand four hundred seventy-one'), (1641, 39712, 'thirty-nine thousand seven hundred twelve'), (1642, 60313, 'sixty thousand three hundred thirteen'), (1643, 90492, 'ninety thousand four hundred ninety-two'), (1644, 1376, 'one thousand three hundred seventy-six'), (1645, 99046, 'ninety-nine thousand forty-six'), (1646, 50354, 'fifty thousand three hundred fifty-four'), (1647, 79651, 'seventy-nine thousand six hundred fifty-one'), (1648, 46094, 'forty-six thousand ninety-four'), (1649, 42593, 'forty-two thousand five hundred ninety-three'), (1650, 98973, 'ninety-eight thousand nine hundred seventy-three'), (1651, 53889, 'fifty-three thousand eight hundred eighty-nine'), (1652, 930, 'nine hundred thirty'), (1653, 49895, 'forty-nine thousand eight hundred ninety-five'), (1654, 82975, 'eighty-two thousand nine hundred seventy-five'), (1655, 7731, 'seven thousand seven hundred thirty-one'), (1656, 12858, 'twelve thousand eight hundred fifty-eight'), (1657, 26697, 'twenty-six thousand six hundred ninety-seven'), (1658, 86891, 'eighty-six thousand eight hundred ninety-one'), (1659, 19521, 'nineteen thousand five hundred twenty-one'), (1660, 95678, 'ninety-five thousand six hundred seventy-eight'), (1661, 59728, 'fifty-nine thousand seven hundred twenty-eight'), (1662, 68585, 'sixty-eight thousand five hundred eighty-five'), (1663, 75485, 'seventy-five thousand four hundred eighty-five'), (1664, 11566, 'eleven thousand five hundred sixty-six'), (1665, 23271, 'twenty-three thousand two hundred seventy-one'), (1666, 9462, 'nine thousand four hundred sixty-two'), (1667, 8978, 'eight thousand nine hundred seventy-eight'), (1668, 39776, 'thirty-nine thousand seven hundred seventy-six'), (1669, 19840, 'nineteen thousand eight hundred forty'), (1670, 50040, 'fifty thousand forty'), (1671, 81105, 'eighty-one thousand one hundred five'), (1672, 81690, 'eighty-one thousand six hundred ninety'), (1673, 47205, 'forty-seven thousand two hundred five'), (1674, 26859, 'twenty-six thousand eight hundred fifty-nine'), (1675, 27273, 'twenty-seven thousand two hundred seventy-three'), (1676, 3770, 'three thousand seven hundred seventy'), (1677, 57118, 'fifty-seven thousand one hundred eighteen'), (1678, 5830, 'five thousand eight hundred thirty'), (1679, 44010, 'forty-four thousand ten'), (1680, 107, 'one hundred seven'), (1681, 54866, 'fifty-four thousand eight hundred sixty-six'), (1682, 45623, 'forty-five thousand six hundred twenty-three'), (1683, 12938, 'twelve thousand nine hundred thirty-eight'), (1684, 84644, 'eighty-four thousand six hundred forty-four'), (1685, 81116, 'eighty-one thousand one hundred sixteen'), (1686, 6557, 'six thousand five hundred fifty-seven'), (1687, 504, 'five hundred four'), (1688, 41242, 'forty-one thousand two hundred forty-two'), (1689, 40898, 'forty thousand eight hundred ninety-eight'), (1690, 37987, 'thirty-seven thousand nine hundred eighty-seven'), (1691, 91906, 'ninety-one thousand nine hundred six'), (1692, 74068, 'seventy-four thousand sixty-eight'), (1693, 47393, 'forty-seven thousand three hundred ninety-three'), (1694, 70527, 'seventy thousand five hundred twenty-seven'), (1695, 91711, 'ninety-one thousand seven hundred eleven'), (1696, 85846, 'eighty-five thousand eight hundred forty-six'), (1697, 49866, 'forty-nine thousand eight hundred sixty-six'), (1698, 78048, 'seventy-eight thousand forty-eight'), (1699, 46897, 'forty-six thousand eight hundred ninety-seven'), (1700, 43123, 'forty-three thousand one hundred twenty-three'), (1701, 83377, 'eighty-three thousand three hundred seventy-seven'), (1702, 84298, 'eighty-four thousand two hundred ninety-eight'), (1703, 13970, 'thirteen thousand nine hundred seventy'), (1704, 57265, 'fifty-seven thousand two hundred sixty-five'), (1705, 67777, 'sixty-seven thousand seven hundred seventy-seven'), (1706, 616, 'six hundred sixteen'), (1707, 40764, 'forty thousand seven hundred sixty-four'), (1708, 85767, 'eighty-five thousand seven hundred sixty-seven'), (1709, 41836, 'forty-one thousand eight hundred thirty-six'), (1710, 79865, 'seventy-nine thousand eight hundred sixty-five'), (1711, 96742, 'ninety-six thousand seven hundred forty-two'), (1712, 80228, 'eighty thousand two hundred twenty-eight'), (1713, 44642, 'forty-four thousand six hundred forty-two'), (1714, 70499, 'seventy thousand four hundred ninety-nine'), (1715, 80722, 'eighty thousand seven hundred twenty-two'), (1716, 84267, 'eighty-four thousand two hundred sixty-seven'), (1717, 99256, 'ninety-nine thousand two hundred fifty-six'), (1718, 50812, 'fifty thousand eight hundred twelve'), (1719, 30175, 'thirty thousand one hundred seventy-five'), (1720, 94760, 'ninety-four thousand seven hundred sixty'), (1721, 43410, 'forty-three thousand four hundred ten'), (1722, 67951, 'sixty-seven thousand nine hundred fifty-one'), (1723, 46523, 'forty-six thousand five hundred twenty-three'), (1724, 23389, 'twenty-three thousand three hundred eighty-nine'), (1725, 14110, 'fourteen thousand one hundred ten'), (1726, 45909, 'forty-five thousand nine hundred nine'), (1727, 65009, 'sixty-five thousand nine'), (1728, 8080, 'eight thousand eighty'), (1729, 86931, 'eighty-six thousand nine hundred thirty-one'), (1730, 85738, 'eighty-five thousand seven hundred thirty-eight'), (1731, 16610, 'sixteen thousand six hundred ten'), (1732, 6929, 'six thousand nine hundred twenty-nine'), (1733, 47186, 'forty-seven thousand one hundred eighty-six'), (1734, 91792, 'ninety-one thousand seven hundred ninety-two'), (1735, 96935, 'ninety-six thousand nine hundred thirty-five'), (1736, 71196, 'seventy-one thousand one hundred ninety-six'), (1737, 23429, 'twenty-three thousand four hundred twenty-nine'), (1738, 72247, 'seventy-two thousand two hundred forty-seven'), (1739, 44134, 'forty-four thousand one hundred thirty-four'), (1740, 52925, 'fifty-two thousand nine hundred twenty-five'), (1741, 23227, 'twenty-three thousand two hundred twenty-seven'), (1742, 6111, 'six thousand one hundred eleven'), (1743, 51254, 'fifty-one thousand two hundred fifty-four'), (1744, 39973, 'thirty-nine thousand nine hundred seventy-three'), (1745, 46941, 'forty-six thousand nine hundred forty-one'), (1746, 82749, 'eighty-two thousand seven hundred forty-nine'), (1747, 27151, 'twenty-seven thousand one hundred fifty-one'), (1748, 51344, 'fifty-one thousand three hundred forty-four'), (1749, 62547, 'sixty-two thousand five hundred forty-seven'), (1750, 397, 'three hundred ninety-seven'), (1751, 65470, 'sixty-five thousand four hundred seventy'), (1752, 66363, 'sixty-six thousand three hundred sixty-three'), (1753, 40795, 'forty thousand seven hundred ninety-five'), (1754, 67431, 'sixty-seven thousand four hundred thirty-one'), (1755, 41954, 'forty-one thousand nine hundred fifty-four'), (1756, 39502, 'thirty-nine thousand five hundred two'), (1757, 39775, 'thirty-nine thousand seven hundred seventy-five'), (1758, 90717, 'ninety thousand seven hundred seventeen'), (1759, 35053, 'thirty-five thousand fifty-three'), (1760, 11842, 'eleven thousand eight hundred forty-two'), (1761, 81134, 'eighty-one thousand one hundred thirty-four'), (1762, 75647, 'seventy-five thousand six hundred forty-seven'), (1763, 48715, 'forty-eight thousand seven hundred fifteen'), (1764, 50246, 'fifty thousand two hundred forty-six'), (1765, 74361, 'seventy-four thousand three hundred sixty-one'), (1766, 26463, 'twenty-six thousand four hundred sixty-three'), (1767, 85668, 'eighty-five thousand six hundred sixty-eight'), (1768, 65693, 'sixty-five thousand six hundred ninety-three'), (1769, 62536, 'sixty-two thousand five hundred thirty-six'), (1770, 95905, 'ninety-five thousand nine hundred five'), (1771, 73166, 'seventy-three thousand one hundred sixty-six'), (1772, 59477, 'fifty-nine thousand four hundred seventy-seven'), (1773, 1476, 'one thousand four hundred seventy-six'), (1774, 66052, 'sixty-six thousand fifty-two'), (1775, 62223, 'sixty-two thousand two hundred twenty-three'), (1776, 22572, 'twenty-two thousand five hundred seventy-two'), (1777, 15621, 'fifteen thousand six hundred twenty-one'), (1778, 92966, 'ninety-two thousand nine hundred sixty-six'), (1779, 52093, 'fifty-two thousand ninety-three'), (1780, 5553, 'five thousand five hundred fifty-three'), (1781, 10448, 'ten thousand four hundred forty-eight'), (1782, 98571, 'ninety-eight thousand five hundred seventy-one'), (1783, 74699, 'seventy-four thousand six hundred ninety-nine'), (1784, 98871, 'ninety-eight thousand eight hundred seventy-one'), (1785, 94583, 'ninety-four thousand five hundred eighty-three'), (1786, 43498, 'forty-three thousand four hundred ninety-eight'), (1787, 23619, 'twenty-three thousand six hundred nineteen'), (1788, 54118, 'fifty-four thousand one hundred eighteen'), (1789, 16473, 'sixteen thousand four hundred seventy-three'), (1790, 50287, 'fifty thousand two hundred eighty-seven'), (1791, 31482, 'thirty-one thousand four hundred eighty-two'), (1792, 17518, 'seventeen thousand five hundred eighteen'), (1793, 67865, 'sixty-seven thousand eight hundred sixty-five'), (1794, 89160, 'eighty-nine thousand one hundred sixty'), (1795, 36122, 'thirty-six thousand one hundred twenty-two'), (1796, 93188, 'ninety-three thousand one hundred eighty-eight'), (1797, 44637, 'forty-four thousand six hundred thirty-seven'), (1798, 89043, 'eighty-nine thousand forty-three'), (1799, 6372, 'six thousand three hundred seventy-two'), (1800, 93720, 'ninety-three thousand seven hundred twenty'), (1801, 29153, 'twenty-nine thousand one hundred fifty-three'), (1802, 50586, 'fifty thousand five hundred eighty-six'), (1803, 92688, 'ninety-two thousand six hundred eighty-eight'), (1804, 56748, 'fifty-six thousand seven hundred forty-eight'), (1805, 50236, 'fifty thousand two hundred thirty-six'), (1806, 57142, 'fifty-seven thousand one hundred forty-two'), (1807, 37675, 'thirty-seven thousand six hundred seventy-five'), (1808, 84293, 'eighty-four thousand two hundred ninety-three'), (1809, 60980, 'sixty thousand nine hundred eighty'), (1810, 60251, 'sixty thousand two hundred fifty-one'), (1811, 59472, 'fifty-nine thousand four hundred seventy-two'), (1812, 64149, 'sixty-four thousand one hundred forty-nine'), (1813, 77768, 'seventy-seven thousand seven hundred sixty-eight'), (1814, 98618, 'ninety-eight thousand six hundred eighteen'), (1815, 56268, 'fifty-six thousand two hundred sixty-eight'), (1816, 62427, 'sixty-two thousand four hundred twenty-seven'), (1817, 28993, 'twenty-eight thousand nine hundred ninety-three'), (1818, 61428, 'sixty-one thousand four hundred twenty-eight'), (1819, 49443, 'forty-nine thousand four hundred forty-three'), (1820, 58730, 'fifty-eight thousand seven hundred thirty'), (1821, 40898, 'forty thousand eight hundred ninety-eight'), (1822, 12437, 'twelve thousand four hundred thirty-seven'), (1823, 72890, 'seventy-two thousand eight hundred ninety'), (1824, 8711, 'eight thousand seven hundred eleven'), (1825, 59677, 'fifty-nine thousand six hundred seventy-seven'), (1826, 80103, 'eighty thousand one hundred three'), (1827, 40508, 'forty thousand five hundred eight'), (1828, 97476, 'ninety-seven thousand four hundred seventy-six'), (1829, 43339, 'forty-three thousand three hundred thirty-nine'), (1830, 14865, 'fourteen thousand eight hundred sixty-five'), (1831, 81064, 'eighty-one thousand sixty-four'), (1832, 48666, 'forty-eight thousand six hundred sixty-six'), (1833, 81245, 'eighty-one thousand two hundred forty-five'), (1834, 74794, 'seventy-four thousand seven hundred ninety-four'), (1835, 31588, 'thirty-one thousand five hundred eighty-eight'), (1836, 22954, 'twenty-two thousand nine hundred fifty-four'), (1837, 39485, 'thirty-nine thousand four hundred eighty-five'), (1838, 51863, 'fifty-one thousand eight hundred sixty-three'), (1839, 6271, 'six thousand two hundred seventy-one'), (1840, 58099, 'fifty-eight thousand ninety-nine'), (1841, 47285, 'forty-seven thousand two hundred eighty-five'), (1842, 69965, 'sixty-nine thousand nine hundred sixty-five'), (1843, 69698, 'sixty-nine thousand six hundred ninety-eight'), (1844, 94547, 'ninety-four thousand five hundred forty-seven'), (1845, 4271, 'four thousand two hundred seventy-one'), (1846, 68855, 'sixty-eight thousand eight hundred fifty-five'), (1847, 66926, 'sixty-six thousand nine hundred twenty-six'), (1848, 36352, 'thirty-six thousand three hundred fifty-two'), (1849, 81428, 'eighty-one thousand four hundred twenty-eight'), (1850, 96278, 'ninety-six thousand two hundred seventy-eight'), (1851, 77034, 'seventy-seven thousand thirty-four'), (1852, 63118, 'sixty-three thousand one hundred eighteen'), (1853, 79693, 'seventy-nine thousand six hundred ninety-three'), (1854, 95874, 'ninety-five thousand eight hundred seventy-four'), (1855, 97169, 'ninety-seven thousand one hundred sixty-nine'), (1856, 81843, 'eighty-one thousand eight hundred forty-three'), (1857, 33201, 'thirty-three thousand two hundred one'), (1858, 88509, 'eighty-eight thousand five hundred nine'), (1859, 77410, 'seventy-seven thousand four hundred ten'), (1860, 52629, 'fifty-two thousand six hundred twenty-nine'), (1861, 57234, 'fifty-seven thousand two hundred thirty-four'), (1862, 11373, 'eleven thousand three hundred seventy-three'), (1863, 83775, 'eighty-three thousand seven hundred seventy-five'), (1864, 22455, 'twenty-two thousand four hundred fifty-five'), (1865, 99903, 'ninety-nine thousand nine hundred three'), (1866, 67182, 'sixty-seven thousand one hundred eighty-two'), (1867, 79194, 'seventy-nine thousand one hundred ninety-four'), (1868, 38445, 'thirty-eight thousand four hundred forty-five'), (1869, 3916, 'three thousand nine hundred sixteen'), (1870, 77123, 'seventy-seven thousand one hundred twenty-three'), (1871, 39560, 'thirty-nine thousand five hundred sixty'), (1872, 72667, 'seventy-two thousand six hundred sixty-seven'), (1873, 69460, 'sixty-nine thousand four hundred sixty'), (1874, 86336, 'eighty-six thousand three hundred thirty-six'), (1875, 54783, 'fifty-four thousand seven hundred eighty-three'), (1876, 34851, 'thirty-four thousand eight hundred fifty-one'), (1877, 12818, 'twelve thousand eight hundred eighteen'), (1878, 42534, 'forty-two thousand five hundred thirty-four'), (1879, 90531, 'ninety thousand five hundred thirty-one'), (1880, 83545, 'eighty-three thousand five hundred forty-five'), (1881, 41895, 'forty-one thousand eight hundred ninety-five'), (1882, 16357, 'sixteen thousand three hundred fifty-seven'), (1883, 48074, 'forty-eight thousand seventy-four'), (1884, 65554, 'sixty-five thousand five hundred fifty-four'), (1885, 19168, 'nineteen thousand one hundred sixty-eight'), (1886, 20457, 'twenty thousand four hundred fifty-seven'), (1887, 67074, 'sixty-seven thousand seventy-four'), (1888, 60826, 'sixty thousand eight hundred twenty-six'), (1889, 89749, 'eighty-nine thousand seven hundred forty-nine'), (1890, 87651, 'eighty-seven thousand six hundred fifty-one'), (1891, 53525, 'fifty-three thousand five hundred twenty-five'), (1892, 63667, 'sixty-three thousand six hundred sixty-seven'), (1893, 34728, 'thirty-four thousand seven hundred twenty-eight'), (1894, 30650, 'thirty thousand six hundred fifty'), (1895, 38017, 'thirty-eight thousand seventeen'), (1896, 15204, 'fifteen thousand two hundred four'), (1897, 89639, 'eighty-nine thousand six hundred thirty-nine'), (1898, 57891, 'fifty-seven thousand eight hundred ninety-one'), (1899, 47672, 'forty-seven thousand six hundred seventy-two'), (1900, 35597, 'thirty-five thousand five hundred ninety-seven'), (1901, 75875, 'seventy-five thousand eight hundred seventy-five'), (1902, 25536, 'twenty-five thousand five hundred thirty-six'), (1903, 39855, 'thirty-nine thousand eight hundred fifty-five'), (1904, 36141, 'thirty-six thousand one hundred forty-one'), (1905, 72263, 'seventy-two thousand two hundred sixty-three'), (1906, 61262, 'sixty-one thousand two hundred sixty-two'), (1907, 90989, 'ninety thousand nine hundred eighty-nine'), (1908, 7384, 'seven thousand three hundred eighty-four'), (1909, 97486, 'ninety-seven thousand four hundred eighty-six'), (1910, 63833, 'sixty-three thousand eight hundred thirty-three'), (1911, 84418, 'eighty-four thousand four hundred eighteen'), (1912, 1412, 'one thousand four hundred twelve'), (1913, 70670, 'seventy thousand six hundred seventy'), (1914, 69714, 'sixty-nine thousand seven hundred fourteen'), (1915, 9088, 'nine thousand eighty-eight'), (1916, 78087, 'seventy-eight thousand eighty-seven'), (1917, 63997, 'sixty-three thousand nine hundred ninety-seven'), (1918, 46926, 'forty-six thousand nine hundred twenty-six'), (1919, 20635, 'twenty thousand six hundred thirty-five'), (1920, 83870, 'eighty-three thousand eight hundred seventy'), (1921, 64450, 'sixty-four thousand four hundred fifty'), (1922, 52555, 'fifty-two thousand five hundred fifty-five'), (1923, 82175, 'eighty-two thousand one hundred seventy-five'), (1924, 55189, 'fifty-five thousand one hundred eighty-nine'), (1925, 76696, 'seventy-six thousand six hundred ninety-six'), (1926, 32209, 'thirty-two thousand two hundred nine'), (1927, 72411, 'seventy-two thousand four hundred eleven'), (1928, 70851, 'seventy thousand eight hundred fifty-one'), (1929, 60118, 'sixty thousand one hundred eighteen'), (1930, 2840, 'two thousand eight hundred forty'), (1931, 24262, 'twenty-four thousand two hundred sixty-two'), (1932, 79709, 'seventy-nine thousand seven hundred nine'), (1933, 80918, 'eighty thousand nine hundred eighteen'), (1934, 74325, 'seventy-four thousand three hundred twenty-five'), (1935, 80878, 'eighty thousand eight hundred seventy-eight'), (1936, 65269, 'sixty-five thousand two hundred sixty-nine'), (1937, 35093, 'thirty-five thousand ninety-three'), (1938, 75048, 'seventy-five thousand forty-eight'), (1939, 98306, 'ninety-eight thousand three hundred six'), (1940, 70784, 'seventy thousand seven hundred eighty-four'), (1941, 63270, 'sixty-three thousand two hundred seventy'), (1942, 30152, 'thirty thousand one hundred fifty-two'), (1943, 19394, 'nineteen thousand three hundred ninety-four'), (1944, 55571, 'fifty-five thousand five hundred seventy-one'), (1945, 73532, 'seventy-three thousand five hundred thirty-two'), (1946, 26695, 'twenty-six thousand six hundred ninety-five'), (1947, 51444, 'fifty-one thousand four hundred forty-four'), (1948, 90130, 'ninety thousand one hundred thirty'), (1949, 26980, 'twenty-six thousand nine hundred eighty'), (1950, 80759, 'eighty thousand seven hundred fifty-nine'), (1951, 35243, 'thirty-five thousand two hundred forty-three'), (1952, 40496, 'forty thousand four hundred ninety-six'), (1953, 13009, 'thirteen thousand nine'), (1954, 84010, 'eighty-four thousand ten'), (1955, 42338, 'forty-two thousand three hundred thirty-eight'), (1956, 74408, 'seventy-four thousand four hundred eight'), (1957, 7379, 'seven thousand three hundred seventy-nine'), (1958, 53430, 'fifty-three thousand four hundred thirty'), (1959, 12777, 'twelve thousand seven hundred seventy-seven'), (1960, 46692, 'forty-six thousand six hundred ninety-two'), (1961, 2252, 'two thousand two hundred fifty-two'), (1962, 53478, 'fifty-three thousand four hundred seventy-eight'), (1963, 36601, 'thirty-six thousand six hundred one'), (1964, 78479, 'seventy-eight thousand four hundred seventy-nine'), (1965, 95051, 'ninety-five thousand fifty-one'), (1966, 50334, 'fifty thousand three hundred thirty-four'), (1967, 11478, 'eleven thousand four hundred seventy-eight'), (1968, 6230, 'six thousand two hundred thirty'), (1969, 9474, 'nine thousand four hundred seventy-four'), (1970, 22551, 'twenty-two thousand five hundred fifty-one'), (1971, 18731, 'eighteen thousand seven hundred thirty-one'), (1972, 87356, 'eighty-seven thousand three hundred fifty-six'), (1973, 31204, 'thirty-one thousand two hundred four'), (1974, 70236, 'seventy thousand two hundred thirty-six'), (1975, 90756, 'ninety thousand seven hundred fifty-six'), (1976, 31003, 'thirty-one thousand three'), (1977, 72791, 'seventy-two thousand seven hundred ninety-one'), (1978, 71381, 'seventy-one thousand three hundred eighty-one'), (1979, 95904, 'ninety-five thousand nine hundred four'), (1980, 8694, 'eight thousand six hundred ninety-four'), (1981, 6275, 'six thousand two hundred seventy-five'), (1982, 59694, 'fifty-nine thousand six hundred ninety-four'), (1983, 47519, 'forty-seven thousand five hundred nineteen'), (1984, 94880, 'ninety-four thousand eight hundred eighty'), (1985, 40892, 'forty thousand eight hundred ninety-two'), (1986, 71479, 'seventy-one thousand four hundred seventy-nine'), (1987, 64232, 'sixty-four thousand two hundred thirty-two'), (1988, 32742, 'thirty-two thousand seven hundred forty-two'), (1989, 90228, 'ninety thousand two hundred twenty-eight'), (1990, 70201, 'seventy thousand two hundred one'), (1991, 6076, 'six thousand seventy-six'), (1992, 73314, 'seventy-three thousand three hundred fourteen'), (1993, 98832, 'ninety-eight thousand eight hundred thirty-two'), (1994, 71299, 'seventy-one thousand two hundred ninety-nine'), (1995, 53494, 'fifty-three thousand four hundred ninety-four'), (1996, 90494, 'ninety thousand four hundred ninety-four'), (1997, 20872, 'twenty thousand eight hundred seventy-two'), (1998, 57121, 'fifty-seven thousand one hundred twenty-one'), (1999, 69191, 'sixty-nine thousand one hundred ninety-one'), (2000, 86770, 'eighty-six thousand seven hundred seventy'), (2001, 3752, 'three thousand seven hundred fifty-two'), (2002, 96753, 'ninety-six thousand seven hundred fifty-three'), (2003, 89259, 'eighty-nine thousand two hundred fifty-nine'), (2004, 87880, 'eighty-seven thousand eight hundred eighty'), (2005, 3264, 'three thousand two hundred sixty-four'), (2006, 12245, 'twelve thousand two hundred forty-five'), (2007, 20809, 'twenty thousand eight hundred nine'), (2008, 90643, 'ninety thousand six hundred forty-three'), (2009, 27602, 'twenty-seven thousand six hundred two'), (2010, 44882, 'forty-four thousand eight hundred eighty-two'), (2011, 85915, 'eighty-five thousand nine hundred fifteen'), (2012, 4239, 'four thousand two hundred thirty-nine'), (2013, 23915, 'twenty-three thousand nine hundred fifteen'), (2014, 50728, 'fifty thousand seven hundred twenty-eight'), (2015, 56336, 'fifty-six thousand three hundred thirty-six'), (2016, 35419, 'thirty-five thousand four hundred nineteen'), (2017, 31335, 'thirty-one thousand three hundred thirty-five'), (2018, 44501, 'forty-four thousand five hundred one'), (2019, 85963, 'eighty-five thousand nine hundred sixty-three'), (2020, 32132, 'thirty-two thousand one hundred thirty-two'), (2021, 58756, 'fifty-eight thousand seven hundred fifty-six'), (2022, 72895, 'seventy-two thousand eight hundred ninety-five'), (2023, 61577, 'sixty-one thousand five hundred seventy-seven'), (2024, 60470, 'sixty thousand four hundred seventy'), (2025, 13247, 'thirteen thousand two hundred forty-seven'), (2026, 80738, 'eighty thousand seven hundred thirty-eight'), (2027, 47364, 'forty-seven thousand three hundred sixty-four'), (2028, 71398, 'seventy-one thousand three hundred ninety-eight'), (2029, 11309, 'eleven thousand three hundred nine'), (2030, 22150, 'twenty-two thousand one hundred fifty'), (2031, 32179, 'thirty-two thousand one hundred seventy-nine'), (2032, 56661, 'fifty-six thousand six hundred sixty-one'), (2033, 64991, 'sixty-four thousand nine hundred ninety-one'), (2034, 61813, 'sixty-one thousand eight hundred thirteen'), (2035, 58145, 'fifty-eight thousand one hundred forty-five'), (2036, 24919, 'twenty-four thousand nine hundred nineteen'), (2037, 88079, 'eighty-eight thousand seventy-nine'), (2038, 87582, 'eighty-seven thousand five hundred eighty-two'), (2039, 68372, 'sixty-eight thousand three hundred seventy-two'), (2040, 43188, 'forty-three thousand one hundred eighty-eight'), (2041, 9546, 'nine thousand five hundred forty-six'), (2042, 91577, 'ninety-one thousand five hundred seventy-seven'), (2043, 80437, 'eighty thousand four hundred thirty-seven'), (2044, 44514, 'forty-four thousand five hundred fourteen'), (2045, 64110, 'sixty-four thousand one hundred ten'), (2046, 66779, 'sixty-six thousand seven hundred seventy-nine'), (2047, 29449, 'twenty-nine thousand four hundred forty-nine'), (2048, 27665, 'twenty-seven thousand six hundred sixty-five'), (2049, 43531, 'forty-three thousand five hundred thirty-one'), (2050, 34298, 'thirty-four thousand two hundred ninety-eight'), (2051, 18662, 'eighteen thousand six hundred sixty-two'), (2052, 7015, 'seven thousand fifteen'), (2053, 20067, 'twenty thousand sixty-seven'), (2054, 55314, 'fifty-five thousand three hundred fourteen'), (2055, 39696, 'thirty-nine thousand six hundred ninety-six'), (2056, 63429, 'sixty-three thousand four hundred twenty-nine'), (2057, 38900, 'thirty-eight thousand nine hundred'), (2058, 30312, 'thirty thousand three hundred twelve'), (2059, 39502, 'thirty-nine thousand five hundred two'), (2060, 60364, 'sixty thousand three hundred sixty-four'), (2061, 51299, 'fifty-one thousand two hundred ninety-nine'), (2062, 37865, 'thirty-seven thousand eight hundred sixty-five'), (2063, 7407, 'seven thousand four hundred seven'), (2064, 9582, 'nine thousand five hundred eighty-two'), (2065, 58152, 'fifty-eight thousand one hundred fifty-two'), (2066, 79602, 'seventy-nine thousand six hundred two'), (2067, 90566, 'ninety thousand five hundred sixty-six'), (2068, 41424, 'forty-one thousand four hundred twenty-four'), (2069, 67171, 'sixty-seven thousand one hundred seventy-one'), (2070, 52445, 'fifty-two thousand four hundred forty-five'), (2071, 81457, 'eighty-one thousand four hundred fifty-seven'), (2072, 85944, 'eighty-five thousand nine hundred forty-four'), (2073, 99560, 'ninety-nine thousand five hundred sixty'), (2074, 1276, 'one thousand two hundred seventy-six'), (2075, 72906, 'seventy-two thousand nine hundred six'), (2076, 24124, 'twenty-four thousand one hundred twenty-four'), (2077, 14401, 'fourteen thousand four hundred one'), (2078, 18253, 'eighteen thousand two hundred fifty-three'), (2079, 35572, 'thirty-five thousand five hundred seventy-two'), (2080, 71690, 'seventy-one thousand six hundred ninety'), (2081, 39705, 'thirty-nine thousand seven hundred five'), (2082, 82133, 'eighty-two thousand one hundred thirty-three'), (2083, 86963, 'eighty-six thousand nine hundred sixty-three'), (2084, 42539, 'forty-two thousand five hundred thirty-nine'), (2085, 85308, 'eighty-five thousand three hundred eight'), (2086, 6880, 'six thousand eight hundred eighty'), (2087, 71638, 'seventy-one thousand six hundred thirty-eight'), (2088, 49157, 'forty-nine thousand one hundred fifty-seven'), (2089, 60099, 'sixty thousand ninety-nine'), (2090, 35743, 'thirty-five thousand seven hundred forty-three'), (2091, 45104, 'forty-five thousand one hundred four'), (2092, 77407, 'seventy-seven thousand four hundred seven'), (2093, 1195, 'one thousand one hundred ninety-five'), (2094, 26211, 'twenty-six thousand two hundred eleven'), (2095, 54913, 'fifty-four thousand nine hundred thirteen'), (2096, 3, 'three'), (2097, 18998, 'eighteen thousand nine hundred ninety-eight'), (2098, 20280, 'twenty thousand two hundred eighty'), (2099, 57239, 'fifty-seven thousand two hundred thirty-nine'), (2100, 90306, 'ninety thousand three hundred six'), (2101, 10035, 'ten thousand thirty-five'), (2102, 69872, 'sixty-nine thousand eight hundred seventy-two'), (2103, 88639, 'eighty-eight thousand six hundred thirty-nine'), (2104, 58066, 'fifty-eight thousand sixty-six'), (2105, 93758, 'ninety-three thousand seven hundred fifty-eight'), (2106, 87206, 'eighty-seven thousand two hundred six'), (2107, 24001, 'twenty-four thousand one'), (2108, 69318, 'sixty-nine thousand three hundred eighteen'), (2109, 67822, 'sixty-seven thousand eight hundred twenty-two'), (2110, 89055, 'eighty-nine thousand fifty-five'), (2111, 2312, 'two thousand three hundred twelve'), (2112, 67472, 'sixty-seven thousand four hundred seventy-two'), (2113, 2197, 'two thousand one hundred ninety-seven'), (2114, 51272, 'fifty-one thousand two hundred seventy-two'), (2115, 10536, 'ten thousand five hundred thirty-six'), (2116, 36248, 'thirty-six thousand two hundred forty-eight'), (2117, 74010, 'seventy-four thousand ten'), (2118, 67864, 'sixty-seven thousand eight hundred sixty-four'), (2119, 83737, 'eighty-three thousand seven hundred thirty-seven'), (2120, 47560, 'forty-seven thousand five hundred sixty'), (2121, 93387, 'ninety-three thousand three hundred eighty-seven'), (2122, 70188, 'seventy thousand one hundred eighty-eight'), (2123, 91976, 'ninety-one thousand nine hundred seventy-six'), (2124, 69804, 'sixty-nine thousand eight hundred four'), (2125, 6141, 'six thousand one hundred forty-one'), (2126, 41284, 'forty-one thousand two hundred eighty-four'), (2127, 89238, 'eighty-nine thousand two hundred thirty-eight'), (2128, 5069, 'five thousand sixty-nine'), (2129, 40242, 'forty thousand two hundred forty-two'), (2130, 82623, 'eighty-two thousand six hundred twenty-three'), (2131, 21387, 'twenty-one thousand three hundred eighty-seven'), (2132, 13746, 'thirteen thousand seven hundred forty-six'), (2133, 61939, 'sixty-one thousand nine hundred thirty-nine'), (2134, 64398, 'sixty-four thousand three hundred ninety-eight'), (2135, 21549, 'twenty-one thousand five hundred forty-nine'), (2136, 97911, 'ninety-seven thousand nine hundred eleven'), (2137, 35818, 'thirty-five thousand eight hundred eighteen'), (2138, 51233, 'fifty-one thousand two hundred thirty-three'), (2139, 33356, 'thirty-three thousand three hundred fifty-six'), (2140, 38959, 'thirty-eight thousand nine hundred fifty-nine'), (2141, 58251, 'fifty-eight thousand two hundred fifty-one'), (2142, 9259, 'nine thousand two hundred fifty-nine'), (2143, 53169, 'fifty-three thousand one hundred sixty-nine'), (2144, 49251, 'forty-nine thousand two hundred fifty-one'), (2145, 43461, 'forty-three thousand four hundred sixty-one'), (2146, 34150, 'thirty-four thousand one hundred fifty'), (2147, 55577, 'fifty-five thousand five hundred seventy-seven'), (2148, 63376, 'sixty-three thousand three hundred seventy-six'), (2149, 25029, 'twenty-five thousand twenty-nine'), (2150, 28149, 'twenty-eight thousand one hundred forty-nine'), (2151, 28311, 'twenty-eight thousand three hundred eleven'), (2152, 5249, 'five thousand two hundred forty-nine'), (2153, 85526, 'eighty-five thousand five hundred twenty-six'), (2154, 43414, 'forty-three thousand four hundred fourteen'), (2155, 47719, 'forty-seven thousand seven hundred nineteen'), (2156, 39694, 'thirty-nine thousand six hundred ninety-four'), (2157, 32096, 'thirty-two thousand ninety-six'), (2158, 27455, 'twenty-seven thousand four hundred fifty-five'), (2159, 61155, 'sixty-one thousand one hundred fifty-five'), (2160, 9475, 'nine thousand four hundred seventy-five'), (2161, 43672, 'forty-three thousand six hundred seventy-two'), (2162, 56556, 'fifty-six thousand five hundred fifty-six'), (2163, 36973, 'thirty-six thousand nine hundred seventy-three'), (2164, 85094, 'eighty-five thousand ninety-four'), (2165, 68290, 'sixty-eight thousand two hundred ninety'), (2166, 27193, 'twenty-seven thousand one hundred ninety-three'), (2167, 31592, 'thirty-one thousand five hundred ninety-two'), (2168, 51130, 'fifty-one thousand one hundred thirty'), (2169, 74563, 'seventy-four thousand five hundred sixty-three'), (2170, 15013, 'fifteen thousand thirteen'), (2171, 80523, 'eighty thousand five hundred twenty-three'), (2172, 22, 'twenty-two'), (2173, 95473, 'ninety-five thousand four hundred seventy-three'), (2174, 93807, 'ninety-three thousand eight hundred seven'), (2175, 42106, 'forty-two thousand one hundred six'), (2176, 78199, 'seventy-eight thousand one hundred ninety-nine'), (2177, 5356, 'five thousand three hundred fifty-six'), (2178, 19195, 'nineteen thousand one hundred ninety-five'), (2179, 80433, 'eighty thousand four hundred thirty-three'), (2180, 62456, 'sixty-two thousand four hundred fifty-six'), (2181, 85223, 'eighty-five thousand two hundred twenty-three'), (2182, 72599, 'seventy-two thousand five hundred ninety-nine'), (2183, 97420, 'ninety-seven thousand four hundred twenty'), (2184, 27856, 'twenty-seven thousand eight hundred fifty-six'), (2185, 95101, 'ninety-five thousand one hundred one'), (2186, 8371, 'eight thousand three hundred seventy-one'), (2187, 14046, 'fourteen thousand forty-six'), (2188, 6270, 'six thousand two hundred seventy'), (2189, 46201, 'forty-six thousand two hundred one'), (2190, 78681, 'seventy-eight thousand six hundred eighty-one'), (2191, 32539, 'thirty-two thousand five hundred thirty-nine'), (2192, 95630, 'ninety-five thousand six hundred thirty'), (2193, 99263, 'ninety-nine thousand two hundred sixty-three'), (2194, 80471, 'eighty thousand four hundred seventy-one'), (2195, 36378, 'thirty-six thousand three hundred seventy-eight'), (2196, 36099, 'thirty-six thousand ninety-nine'), (2197, 64056, 'sixty-four thousand fifty-six'), (2198, 7431, 'seven thousand four hundred thirty-one'), (2199, 48623, 'forty-eight thousand six hundred twenty-three'), (2200, 29058, 'twenty-nine thousand fifty-eight'), (2201, 24829, 'twenty-four thousand eight hundred twenty-nine'), (2202, 65681, 'sixty-five thousand six hundred eighty-one'), (2203, 33971, 'thirty-three thousand nine hundred seventy-one'), (2204, 57254, 'fifty-seven thousand two hundred fifty-four'), (2205, 96450, 'ninety-six thousand four hundred fifty'), (2206, 71274, 'seventy-one thousand two hundred seventy-four'), (2207, 61255, 'sixty-one thousand two hundred fifty-five'), (2208, 86567, 'eighty-six thousand five hundred sixty-seven'), (2209, 26341, 'twenty-six thousand three hundred forty-one'), (2210, 35651, 'thirty-five thousand six hundred fifty-one'), (2211, 29930, 'twenty-nine thousand nine hundred thirty'), (2212, 8986, 'eight thousand nine hundred eighty-six'), (2213, 70650, 'seventy thousand six hundred fifty'), (2214, 25365, 'twenty-five thousand three hundred sixty-five'), (2215, 50253, 'fifty thousand two hundred fifty-three'), (2216, 22647, 'twenty-two thousand six hundred forty-seven'), (2217, 5939, 'five thousand nine hundred thirty-nine'), (2218, 21467, 'twenty-one thousand four hundred sixty-seven'), (2219, 60173, 'sixty thousand one hundred seventy-three'), (2220, 65345, 'sixty-five thousand three hundred forty-five'), (2221, 17820, 'seventeen thousand eight hundred twenty'), (2222, 65933, 'sixty-five thousand nine hundred thirty-three'), (2223, 10228, 'ten thousand two hundred twenty-eight'), (2224, 32722, 'thirty-two thousand seven hundred twenty-two'), (2225, 19795, 'nineteen thousand seven hundred ninety-five'), (2226, 41464, 'forty-one thousand four hundred sixty-four'), (2227, 65388, 'sixty-five thousand three hundred eighty-eight'), (2228, 19735, 'nineteen thousand seven hundred thirty-five'), (2229, 45011, 'forty-five thousand eleven'), (2230, 37315, 'thirty-seven thousand three hundred fifteen'), (2231, 53420, 'fifty-three thousand four hundred twenty'), (2232, 13137, 'thirteen thousand one hundred thirty-seven'), (2233, 89350, 'eighty-nine thousand three hundred fifty'), (2234, 11233, 'eleven thousand two hundred thirty-three'), (2235, 64599, 'sixty-four thousand five hundred ninety-nine'), (2236, 22046, 'twenty-two thousand forty-six'), (2237, 98274, 'ninety-eight thousand two hundred seventy-four'), (2238, 72470, 'seventy-two thousand four hundred seventy'), (2239, 587, 'five hundred eighty-seven'), (2240, 75875, 'seventy-five thousand eight hundred seventy-five'), (2241, 29684, 'twenty-nine thousand six hundred eighty-four'), (2242, 89957, 'eighty-nine thousand nine hundred fifty-seven'), (2243, 37141, 'thirty-seven thousand one hundred forty-one'), (2244, 42203, 'forty-two thousand two hundred three'), (2245, 7109, 'seven thousand one hundred nine'), (2246, 3368, 'three thousand three hundred sixty-eight'), (2247, 12747, 'twelve thousand seven hundred forty-seven'), (2248, 3344, 'three thousand three hundred forty-four'), (2249, 70493, 'seventy thousand four hundred ninety-three'), (2250, 74214, 'seventy-four thousand two hundred fourteen'), (2251, 36198, 'thirty-six thousand one hundred ninety-eight'), (2252, 86536, 'eighty-six thousand five hundred thirty-six'), (2253, 15696, 'fifteen thousand six hundred ninety-six'), (2254, 35018, 'thirty-five thousand eighteen'), (2255, 67545, 'sixty-seven thousand five hundred forty-five'), (2256, 31493, 'thirty-one thousand four hundred ninety-three'), (2257, 98082, 'ninety-eight thousand eighty-two'), (2258, 19480, 'nineteen thousand four hundred eighty'), (2259, 64459, 'sixty-four thousand four hundred fifty-nine'), (2260, 56855, 'fifty-six thousand eight hundred fifty-five'), (2261, 90207, 'ninety thousand two hundred seven'), (2262, 33924, 'thirty-three thousand nine hundred twenty-four'), (2263, 97787, 'ninety-seven thousand seven hundred eighty-seven'), (2264, 9831, 'nine thousand eight hundred thirty-one'), (2265, 96341, 'ninety-six thousand three hundred forty-one'), (2266, 94285, 'ninety-four thousand two hundred eighty-five'), (2267, 38535, 'thirty-eight thousand five hundred thirty-five'), (2268, 18406, 'eighteen thousand four hundred six'), (2269, 41884, 'forty-one thousand eight hundred eighty-four'), (2270, 27215, 'twenty-seven thousand two hundred fifteen'), (2271, 78374, 'seventy-eight thousand three hundred seventy-four'), (2272, 70693, 'seventy thousand six hundred ninety-three'), (2273, 96026, 'ninety-six thousand twenty-six'), (2274, 87994, 'eighty-seven thousand nine hundred ninety-four'), (2275, 45819, 'forty-five thousand eight hundred nineteen'), (2276, 52336, 'fifty-two thousand three hundred thirty-six'), (2277, 37564, 'thirty-seven thousand five hundred sixty-four'), (2278, 90518, 'ninety thousand five hundred eighteen'), (2279, 6198, 'six thousand one hundred ninety-eight'), (2280, 64602, 'sixty-four thousand six hundred two'), (2281, 74861, 'seventy-four thousand eight hundred sixty-one'), (2282, 99850, 'ninety-nine thousand eight hundred fifty'), (2283, 93344, 'ninety-three thousand three hundred forty-four'), (2284, 83943, 'eighty-three thousand nine hundred forty-three'), (2285, 89998, 'eighty-nine thousand nine hundred ninety-eight'), (2286, 27925, 'twenty-seven thousand nine hundred twenty-five'), (2287, 78320, 'seventy-eight thousand three hundred twenty'), (2288, 6201, 'six thousand two hundred one'), (2289, 41579, 'forty-one thousand five hundred seventy-nine'), (2290, 70654, 'seventy thousand six hundred fifty-four'), (2291, 44328, 'forty-four thousand three hundred twenty-eight'), (2292, 70637, 'seventy thousand six hundred thirty-seven'), (2293, 51584, 'fifty-one thousand five hundred eighty-four'), (2294, 40019, 'forty thousand nineteen'), (2295, 4733, 'four thousand seven hundred thirty-three'), (2296, 63893, 'sixty-three thousand eight hundred ninety-three'), (2297, 21551, 'twenty-one thousand five hundred fifty-one'), (2298, 72776, 'seventy-two thousand seven hundred seventy-six'), (2299, 73771, 'seventy-three thousand seven hundred seventy-one'), (2300, 26461, 'twenty-six thousand four hundred sixty-one'), (2301, 51916, 'fifty-one thousand nine hundred sixteen'), (2302, 7470, 'seven thousand four hundred seventy'), (2303, 26176, 'twenty-six thousand one hundred seventy-six'), (2304, 28194, 'twenty-eight thousand one hundred ninety-four'), (2305, 71326, 'seventy-one thousand three hundred twenty-six'), (2306, 19033, 'nineteen thousand thirty-three'), (2307, 10179, 'ten thousand one hundred seventy-nine'), (2308, 51575, 'fifty-one thousand five hundred seventy-five'), (2309, 37690, 'thirty-seven thousand six hundred ninety'), (2310, 15021, 'fifteen thousand twenty-one'), (2311, 47954, 'forty-seven thousand nine hundred fifty-four'), (2312, 99373, 'ninety-nine thousand three hundred seventy-three'), (2313, 60636, 'sixty thousand six hundred thirty-six'), (2314, 40008, 'forty thousand eight'), (2315, 23115, 'twenty-three thousand one hundred fifteen'), (2316, 83784, 'eighty-three thousand seven hundred eighty-four'), (2317, 97564, 'ninety-seven thousand five hundred sixty-four'), (2318, 23192, 'twenty-three thousand one hundred ninety-two'), (2319, 35700, 'thirty-five thousand seven hundred'), (2320, 23968, 'twenty-three thousand nine hundred sixty-eight'), (2321, 30846, 'thirty thousand eight hundred forty-six'), (2322, 97968, 'ninety-seven thousand nine hundred sixty-eight'), (2323, 15842, 'fifteen thousand eight hundred forty-two'), (2324, 13572, 'thirteen thousand five hundred seventy-two'), (2325, 17630, 'seventeen thousand six hundred thirty'), (2326, 74055, 'seventy-four thousand fifty-five'), (2327, 25273, 'twenty-five thousand two hundred seventy-three'), (2328, 39041, 'thirty-nine thousand forty-one'), (2329, 11972, 'eleven thousand nine hundred seventy-two'), (2330, 33519, 'thirty-three thousand five hundred nineteen'), (2331, 35065, 'thirty-five thousand sixty-five'), (2332, 65148, 'sixty-five thousand one hundred forty-eight'), (2333, 60959, 'sixty thousand nine hundred fifty-nine'), (2334, 96394, 'ninety-six thousand three hundred ninety-four'), (2335, 64307, 'sixty-four thousand three hundred seven'), (2336, 45596, 'forty-five thousand five hundred ninety-six'), (2337, 94741, 'ninety-four thousand seven hundred forty-one'), (2338, 315, 'three hundred fifteen'), (2339, 92997, 'ninety-two thousand nine hundred ninety-seven'), (2340, 61307, 'sixty-one thousand three hundred seven'), (2341, 25247, 'twenty-five thousand two hundred forty-seven'), (2342, 43658, 'forty-three thousand six hundred fifty-eight'), (2343, 76134, 'seventy-six thousand one hundred thirty-four'), (2344, 8727, 'eight thousand seven hundred twenty-seven'), (2345, 82124, 'eighty-two thousand one hundred twenty-four'), (2346, 94208, 'ninety-four thousand two hundred eight'), (2347, 83546, 'eighty-three thousand five hundred forty-six'), (2348, 80575, 'eighty thousand five hundred seventy-five'), (2349, 96566, 'ninety-six thousand five hundred sixty-six'), (2350, 52045, 'fifty-two thousand forty-five'), (2351, 37304, 'thirty-seven thousand three hundred four'), (2352, 53861, 'fifty-three thousand eight hundred sixty-one'), (2353, 40200, 'forty thousand two hundred'), (2354, 67604, 'sixty-seven thousand six hundred four'), (2355, 72285, 'seventy-two thousand two hundred eighty-five'), (2356, 60117, 'sixty thousand one hundred seventeen'), (2357, 28125, 'twenty-eight thousand one hundred twenty-five'), (2358, 97088, 'ninety-seven thousand eighty-eight'), (2359, 73809, 'seventy-three thousand eight hundred nine'), (2360, 89593, 'eighty-nine thousand five hundred ninety-three'), (2361, 80981, 'eighty thousand nine hundred eighty-one'), (2362, 38214, 'thirty-eight thousand two hundred fourteen'), (2363, 63465, 'sixty-three thousand four hundred sixty-five'), (2364, 46151, 'forty-six thousand one hundred fifty-one'), (2365, 66353, 'sixty-six thousand three hundred fifty-three'), (2366, 27544, 'twenty-seven thousand five hundred forty-four'), (2367, 13517, 'thirteen thousand five hundred seventeen'), (2368, 43298, 'forty-three thousand two hundred ninety-eight'), (2369, 3013, 'three thousand thirteen'), (2370, 43673, 'forty-three thousand six hundred seventy-three'), (2371, 89406, 'eighty-nine thousand four hundred six'), (2372, 16649, 'sixteen thousand six hundred forty-nine'), (2373, 58159, 'fifty-eight thousand one hundred fifty-nine'), (2374, 72424, 'seventy-two thousand four hundred twenty-four'), (2375, 28780, 'twenty-eight thousand seven hundred eighty'), (2376, 15716, 'fifteen thousand seven hundred sixteen'), (2377, 91549, 'ninety-one thousand five hundred forty-nine'), (2378, 83986, 'eighty-three thousand nine hundred eighty-six'), (2379, 29747, 'twenty-nine thousand seven hundred forty-seven'), (2380, 82477, 'eighty-two thousand four hundred seventy-seven'), (2381, 80074, 'eighty thousand seventy-four'), (2382, 96058, 'ninety-six thousand fifty-eight'), (2383, 89571, 'eighty-nine thousand five hundred seventy-one'), (2384, 26561, 'twenty-six thousand five hundred sixty-one'), (2385, 32468, 'thirty-two thousand four hundred sixty-eight'), (2386, 16669, 'sixteen thousand six hundred sixty-nine'), (2387, 41302, 'forty-one thousand three hundred two'), (2388, 75807, 'seventy-five thousand eight hundred seven'), (2389, 28804, 'twenty-eight thousand eight hundred four'), (2390, 36879, 'thirty-six thousand eight hundred seventy-nine'), (2391, 96669, 'ninety-six thousand six hundred sixty-nine'), (2392, 90342, 'ninety thousand three hundred forty-two'), (2393, 7542, 'seven thousand five hundred forty-two'), (2394, 47970, 'forty-seven thousand nine hundred seventy'), (2395, 92076, 'ninety-two thousand seventy-six'), (2396, 39852, 'thirty-nine thousand eight hundred fifty-two'), (2397, 38803, 'thirty-eight thousand eight hundred three'), (2398, 19442, 'nineteen thousand four hundred forty-two'), (2399, 78578, 'seventy-eight thousand five hundred seventy-eight'), (2400, 74903, 'seventy-four thousand nine hundred three'), (2401, 87725, 'eighty-seven thousand seven hundred twenty-five'), (2402, 87059, 'eighty-seven thousand fifty-nine'), (2403, 15772, 'fifteen thousand seven hundred seventy-two'), (2404, 17631, 'seventeen thousand six hundred thirty-one'), (2405, 15798, 'fifteen thousand seven hundred ninety-eight'), (2406, 43104, 'forty-three thousand one hundred four'), (2407, 1195, 'one thousand one hundred ninety-five'), (2408, 43211, 'forty-three thousand two hundred eleven'), (2409, 73078, 'seventy-three thousand seventy-eight'), (2410, 23976, 'twenty-three thousand nine hundred seventy-six'), (2411, 63319, 'sixty-three thousand three hundred nineteen'), (2412, 89991, 'eighty-nine thousand nine hundred ninety-one'), (2413, 71907, 'seventy-one thousand nine hundred seven'), (2414, 45419, 'forty-five thousand four hundred nineteen'), (2415, 51615, 'fifty-one thousand six hundred fifteen'), (2416, 28240, 'twenty-eight thousand two hundred forty'), (2417, 55834, 'fifty-five thousand eight hundred thirty-four'), (2418, 77916, 'seventy-seven thousand nine hundred sixteen'), (2419, 81683, 'eighty-one thousand six hundred eighty-three'), (2420, 56127, 'fifty-six thousand one hundred twenty-seven'), (2421, 11304, 'eleven thousand three hundred four'), (2422, 48279, 'forty-eight thousand two hundred seventy-nine'), (2423, 93430, 'ninety-three thousand four hundred thirty'), (2424, 85293, 'eighty-five thousand two hundred ninety-three'), (2425, 71015, 'seventy-one thousand fifteen'), (2426, 69462, 'sixty-nine thousand four hundred sixty-two'), (2427, 27337, 'twenty-seven thousand three hundred thirty-seven'), (2428, 12663, 'twelve thousand six hundred sixty-three'), (2429, 20226, 'twenty thousand two hundred twenty-six'), (2430, 52823, 'fifty-two thousand eight hundred twenty-three'), (2431, 13894, 'thirteen thousand eight hundred ninety-four'), (2432, 15928, 'fifteen thousand nine hundred twenty-eight'), (2433, 98981, 'ninety-eight thousand nine hundred eighty-one'), (2434, 90676, 'ninety thousand six hundred seventy-six'), (2435, 42296, 'forty-two thousand two hundred ninety-six'), (2436, 22083, 'twenty-two thousand eighty-three'), (2437, 75853, 'seventy-five thousand eight hundred fifty-three'), (2438, 18942, 'eighteen thousand nine hundred forty-two'), (2439, 81482, 'eighty-one thousand four hundred eighty-two'), (2440, 1246, 'one thousand two hundred forty-six'), (2441, 61614, 'sixty-one thousand six hundred fourteen'), (2442, 31021, 'thirty-one thousand twenty-one'), (2443, 98151, 'ninety-eight thousand one hundred fifty-one'), (2444, 6676, 'six thousand six hundred seventy-six'), (2445, 45247, 'forty-five thousand two hundred forty-seven'), (2446, 54998, 'fifty-four thousand nine hundred ninety-eight'), (2447, 16592, 'sixteen thousand five hundred ninety-two'), (2448, 35662, 'thirty-five thousand six hundred sixty-two'), (2449, 76092, 'seventy-six thousand ninety-two'), (2450, 52, 'fifty-two'), (2451, 29506, 'twenty-nine thousand five hundred six'), (2452, 851, 'eight hundred fifty-one'), (2453, 40062, 'forty thousand sixty-two'), (2454, 28317, 'twenty-eight thousand three hundred seventeen'), (2455, 37254, 'thirty-seven thousand two hundred fifty-four'), (2456, 36890, 'thirty-six thousand eight hundred ninety'), (2457, 19283, 'nineteen thousand two hundred eighty-three'), (2458, 36251, 'thirty-six thousand two hundred fifty-one'), (2459, 67984, 'sixty-seven thousand nine hundred eighty-four'), (2460, 67460, 'sixty-seven thousand four hundred sixty'), (2461, 76465, 'seventy-six thousand four hundred sixty-five'), (2462, 50543, 'fifty thousand five hundred forty-three'), (2463, 51509, 'fifty-one thousand five hundred nine'), (2464, 98584, 'ninety-eight thousand five hundred eighty-four'), (2465, 4214, 'four thousand two hundred fourteen'), (2466, 93388, 'ninety-three thousand three hundred eighty-eight'), (2467, 62723, 'sixty-two thousand seven hundred twenty-three'), (2468, 59784, 'fifty-nine thousand seven hundred eighty-four'), (2469, 39638, 'thirty-nine thousand six hundred thirty-eight'), (2470, 15730, 'fifteen thousand seven hundred thirty'), (2471, 96301, 'ninety-six thousand three hundred one'), (2472, 22050, 'twenty-two thousand fifty'), (2473, 1017, 'one thousand seventeen'), (2474, 24030, 'twenty-four thousand thirty'), (2475, 38099, 'thirty-eight thousand ninety-nine'), (2476, 32218, 'thirty-two thousand two hundred eighteen'), (2477, 20023, 'twenty thousand twenty-three'), (2478, 44951, 'forty-four thousand nine hundred fifty-one'), (2479, 72567, 'seventy-two thousand five hundred sixty-seven'), (2480, 31626, 'thirty-one thousand six hundred twenty-six'), (2481, 72593, 'seventy-two thousand five hundred ninety-three'), (2482, 54291, 'fifty-four thousand two hundred ninety-one'), (2483, 83063, 'eighty-three thousand sixty-three'), (2484, 13836, 'thirteen thousand eight hundred thirty-six'), (2485, 41860, 'forty-one thousand eight hundred sixty'), (2486, 89723, 'eighty-nine thousand seven hundred twenty-three'), (2487, 14732, 'fourteen thousand seven hundred thirty-two'), (2488, 15002, 'fifteen thousand two'), (2489, 92065, 'ninety-two thousand sixty-five'), (2490, 40067, 'forty thousand sixty-seven'), (2491, 57828, 'fifty-seven thousand eight hundred twenty-eight'), (2492, 85335, 'eighty-five thousand three hundred thirty-five'), (2493, 10602, 'ten thousand six hundred two'), (2494, 1476, 'one thousand four hundred seventy-six'), (2495, 93934, 'ninety-three thousand nine hundred thirty-four'), (2496, 78768, 'seventy-eight thousand seven hundred sixty-eight'), (2497, 71835, 'seventy-one thousand eight hundred thirty-five'), (2498, 55943, 'fifty-five thousand nine hundred forty-three'), (2499, 33941, 'thirty-three thousand nine hundred forty-one'), (2500, 94279, 'ninety-four thousand two hundred seventy-nine'), (2501, 15291, 'fifteen thousand two hundred ninety-one'), (2502, 41682, 'forty-one thousand six hundred eighty-two'), (2503, 81048, 'eighty-one thousand forty-eight'), (2504, 87177, 'eighty-seven thousand one hundred seventy-seven'), (2505, 6726, 'six thousand seven hundred twenty-six'), (2506, 75433, 'seventy-five thousand four hundred thirty-three'), (2507, 50001, 'fifty thousand one'), (2508, 65321, 'sixty-five thousand three hundred twenty-one'), (2509, 95932, 'ninety-five thousand nine hundred thirty-two'), (2510, 50745, 'fifty thousand seven hundred forty-five'), (2511, 44178, 'forty-four thousand one hundred seventy-eight'), (2512, 4666, 'four thousand six hundred sixty-six'), (2513, 86217, 'eighty-six thousand two hundred seventeen'), (2514, 29911, 'twenty-nine thousand nine hundred eleven'), (2515, 32937, 'thirty-two thousand nine hundred thirty-seven'), (2516, 53630, 'fifty-three thousand six hundred thirty'), (2517, 2615, 'two thousand six hundred fifteen'), (2518, 2368, 'two thousand three hundred sixty-eight'), (2519, 29127, 'twenty-nine thousand one hundred twenty-seven'), (2520, 5200, 'five thousand two hundred'), (2521, 59612, 'fifty-nine thousand six hundred twelve'), (2522, 28958, 'twenty-eight thousand nine hundred fifty-eight'), (2523, 5703, 'five thousand seven hundred three'), (2524, 80642, 'eighty thousand six hundred forty-two'), (2525, 45690, 'forty-five thousand six hundred ninety'), (2526, 49569, 'forty-nine thousand five hundred sixty-nine'), (2527, 7904, 'seven thousand nine hundred four'), (2528, 11110, 'eleven thousand one hundred ten'), (2529, 98775, 'ninety-eight thousand seven hundred seventy-five'), (2530, 20170, 'twenty thousand one hundred seventy'), (2531, 17019, 'seventeen thousand nineteen'), (2532, 96331, 'ninety-six thousand three hundred thirty-one'), (2533, 65337, 'sixty-five thousand three hundred thirty-seven'), (2534, 38354, 'thirty-eight thousand three hundred fifty-four'), (2535, 60268, 'sixty thousand two hundred sixty-eight'), (2536, 30622, 'thirty thousand six hundred twenty-two'), (2537, 32805, 'thirty-two thousand eight hundred five'), (2538, 49165, 'forty-nine thousand one hundred sixty-five'), (2539, 84538, 'eighty-four thousand five hundred thirty-eight'), (2540, 32316, 'thirty-two thousand three hundred sixteen'), (2541, 57707, 'fifty-seven thousand seven hundred seven'), (2542, 95842, 'ninety-five thousand eight hundred forty-two'), (2543, 14067, 'fourteen thousand sixty-seven'), (2544, 45424, 'forty-five thousand four hundred twenty-four'), (2545, 13272, 'thirteen thousand two hundred seventy-two'), (2546, 94806, 'ninety-four thousand eight hundred six'), (2547, 56695, 'fifty-six thousand six hundred ninety-five'), (2548, 41079, 'forty-one thousand seventy-nine'), (2549, 73507, 'seventy-three thousand five hundred seven'), (2550, 49289, 'forty-nine thousand two hundred eighty-nine'), (2551, 16669, 'sixteen thousand six hundred sixty-nine'), (2552, 53495, 'fifty-three thousand four hundred ninety-five'), (2553, 33072, 'thirty-three thousand seventy-two'), (2554, 6951, 'six thousand nine hundred fifty-one'), (2555, 77249, 'seventy-seven thousand two hundred forty-nine'), (2556, 33756, 'thirty-three thousand seven hundred fifty-six'), (2557, 95757, 'ninety-five thousand seven hundred fifty-seven'), (2558, 60092, 'sixty thousand ninety-two'), (2559, 61249, 'sixty-one thousand two hundred forty-nine'), (2560, 34995, 'thirty-four thousand nine hundred ninety-five'), (2561, 83682, 'eighty-three thousand six hundred eighty-two'), (2562, 57389, 'fifty-seven thousand three hundred eighty-nine'), (2563, 12038, 'twelve thousand thirty-eight'), (2564, 25346, 'twenty-five thousand three hundred forty-six'), (2565, 21634, 'twenty-one thousand six hundred thirty-four'), (2566, 90352, 'ninety thousand three hundred fifty-two'), (2567, 908, 'nine hundred eight'), (2568, 29124, 'twenty-nine thousand one hundred twenty-four'), (2569, 13884, 'thirteen thousand eight hundred eighty-four'), (2570, 53757, 'fifty-three thousand seven hundred fifty-seven'), (2571, 76121, 'seventy-six thousand one hundred twenty-one'), (2572, 71727, 'seventy-one thousand seven hundred twenty-seven'), (2573, 45927, 'forty-five thousand nine hundred twenty-seven'), (2574, 28338, 'twenty-eight thousand three hundred thirty-eight'), (2575, 89504, 'eighty-nine thousand five hundred four'), (2576, 73450, 'seventy-three thousand four hundred fifty'), (2577, 19716, 'nineteen thousand seven hundred sixteen'), (2578, 99347, 'ninety-nine thousand three hundred forty-seven'), (2579, 22889, 'twenty-two thousand eight hundred eighty-nine'), (2580, 68280, 'sixty-eight thousand two hundred eighty'), (2581, 13069, 'thirteen thousand sixty-nine'), (2582, 13040, 'thirteen thousand forty'), (2583, 24883, 'twenty-four thousand eight hundred eighty-three'), (2584, 84595, 'eighty-four thousand five hundred ninety-five'), (2585, 42369, 'forty-two thousand three hundred sixty-nine'), (2586, 32863, 'thirty-two thousand eight hundred sixty-three'), (2587, 61898, 'sixty-one thousand eight hundred ninety-eight'), (2588, 80829, 'eighty thousand eight hundred twenty-nine'), (2589, 17682, 'seventeen thousand six hundred eighty-two'), (2590, 83951, 'eighty-three thousand nine hundred fifty-one'), (2591, 97139, 'ninety-seven thousand one hundred thirty-nine'), (2592, 62950, 'sixty-two thousand nine hundred fifty'), (2593, 39594, 'thirty-nine thousand five hundred ninety-four'), (2594, 64139, 'sixty-four thousand one hundred thirty-nine'), (2595, 8325, 'eight thousand three hundred twenty-five'), (2596, 71097, 'seventy-one thousand ninety-seven'), (2597, 49802, 'forty-nine thousand eight hundred two'), (2598, 23014, 'twenty-three thousand fourteen'), (2599, 39450, 'thirty-nine thousand four hundred fifty'), (2600, 23316, 'twenty-three thousand three hundred sixteen'), (2601, 44319, 'forty-four thousand three hundred nineteen'), (2602, 82480, 'eighty-two thousand four hundred eighty'), (2603, 35403, 'thirty-five thousand four hundred three'), (2604, 13285, 'thirteen thousand two hundred eighty-five'), (2605, 6978, 'six thousand nine hundred seventy-eight'), (2606, 85095, 'eighty-five thousand ninety-five'), (2607, 33866, 'thirty-three thousand eight hundred sixty-six'), (2608, 30115, 'thirty thousand one hundred fifteen'), (2609, 92129, 'ninety-two thousand one hundred twenty-nine'), (2610, 32864, 'thirty-two thousand eight hundred sixty-four'), (2611, 29670, 'twenty-nine thousand six hundred seventy'), (2612, 75952, 'seventy-five thousand nine hundred fifty-two'), (2613, 70948, 'seventy thousand nine hundred forty-eight'), (2614, 36324, 'thirty-six thousand three hundred twenty-four'), (2615, 61684, 'sixty-one thousand six hundred eighty-four'), (2616, 85960, 'eighty-five thousand nine hundred sixty'), (2617, 42441, 'forty-two thousand four hundred forty-one'), (2618, 87302, 'eighty-seven thousand three hundred two'), (2619, 72994, 'seventy-two thousand nine hundred ninety-four'), (2620, 86981, 'eighty-six thousand nine hundred eighty-one'), (2621, 67309, 'sixty-seven thousand three hundred nine'), (2622, 22682, 'twenty-two thousand six hundred eighty-two'), (2623, 91063, 'ninety-one thousand sixty-three'), (2624, 42158, 'forty-two thousand one hundred fifty-eight'), (2625, 6380, 'six thousand three hundred eighty'), (2626, 83922, 'eighty-three thousand nine hundred twenty-two'), (2627, 44702, 'forty-four thousand seven hundred two'), (2628, 45893, 'forty-five thousand eight hundred ninety-three'), (2629, 91811, 'ninety-one thousand eight hundred eleven'), (2630, 79655, 'seventy-nine thousand six hundred fifty-five'), (2631, 96322, 'ninety-six thousand three hundred twenty-two'), (2632, 48453, 'forty-eight thousand four hundred fifty-three'), (2633, 37766, 'thirty-seven thousand seven hundred sixty-six'), (2634, 66372, 'sixty-six thousand three hundred seventy-two'), (2635, 43911, 'forty-three thousand nine hundred eleven'), (2636, 82376, 'eighty-two thousand three hundred seventy-six'), (2637, 74097, 'seventy-four thousand ninety-seven'), (2638, 98451, 'ninety-eight thousand four hundred fifty-one'), (2639, 56275, 'fifty-six thousand two hundred seventy-five'), (2640, 58468, 'fifty-eight thousand four hundred sixty-eight'), (2641, 41716, 'forty-one thousand seven hundred sixteen'), (2642, 29306, 'twenty-nine thousand three hundred six'), (2643, 9307, 'nine thousand three hundred seven'), (2644, 96633, 'ninety-six thousand six hundred thirty-three'), (2645, 25678, 'twenty-five thousand six hundred seventy-eight'), (2646, 58125, 'fifty-eight thousand one hundred twenty-five'), (2647, 36684, 'thirty-six thousand six hundred eighty-four'), (2648, 63443, 'sixty-three thousand four hundred forty-three'), (2649, 95563, 'ninety-five thousand five hundred sixty-three'), (2650, 88490, 'eighty-eight thousand four hundred ninety'), (2651, 83347, 'eighty-three thousand three hundred forty-seven'), (2652, 18205, 'eighteen thousand two hundred five'), (2653, 86323, 'eighty-six thousand three hundred twenty-three'), (2654, 49008, 'forty-nine thousand eight'), (2655, 75828, 'seventy-five thousand eight hundred twenty-eight'), (2656, 92087, 'ninety-two thousand eighty-seven'), (2657, 91487, 'ninety-one thousand four hundred eighty-seven'), (2658, 19227, 'nineteen thousand two hundred twenty-seven'), (2659, 78893, 'seventy-eight thousand eight hundred ninety-three'), (2660, 89026, 'eighty-nine thousand twenty-six'), (2661, 21292, 'twenty-one thousand two hundred ninety-two'), (2662, 77487, 'seventy-seven thousand four hundred eighty-seven'), (2663, 30740, 'thirty thousand seven hundred forty'), (2664, 46554, 'forty-six thousand five hundred fifty-four'), (2665, 23977, 'twenty-three thousand nine hundred seventy-seven'), (2666, 41773, 'forty-one thousand seven hundred seventy-three'), (2667, 76832, 'seventy-six thousand eight hundred thirty-two'), (2668, 26031, 'twenty-six thousand thirty-one'), (2669, 9187, 'nine thousand one hundred eighty-seven'), (2670, 79422, 'seventy-nine thousand four hundred twenty-two'), (2671, 43130, 'forty-three thousand one hundred thirty'), (2672, 98721, 'ninety-eight thousand seven hundred twenty-one'), (2673, 43493, 'forty-three thousand four hundred ninety-three'), (2674, 59120, 'fifty-nine thousand one hundred twenty'), (2675, 34743, 'thirty-four thousand seven hundred forty-three'), (2676, 5477, 'five thousand four hundred seventy-seven'), (2677, 95338, 'ninety-five thousand three hundred thirty-eight'), (2678, 29313, 'twenty-nine thousand three hundred thirteen'), (2679, 25089, 'twenty-five thousand eighty-nine'), (2680, 97859, 'ninety-seven thousand eight hundred fifty-nine'), (2681, 54424, 'fifty-four thousand four hundred twenty-four'), (2682, 51457, 'fifty-one thousand four hundred fifty-seven'), (2683, 33256, 'thirty-three thousand two hundred fifty-six'), (2684, 801, 'eight hundred one'), (2685, 31887, 'thirty-one thousand eight hundred eighty-seven'), (2686, 69467, 'sixty-nine thousand four hundred sixty-seven'), (2687, 1670, 'one thousand six hundred seventy'), (2688, 52565, 'fifty-two thousand five hundred sixty-five'), (2689, 53710, 'fifty-three thousand seven hundred ten'), (2690, 59890, 'fifty-nine thousand eight hundred ninety'), (2691, 58219, 'fifty-eight thousand two hundred nineteen'), (2692, 32988, 'thirty-two thousand nine hundred eighty-eight'), (2693, 94147, 'ninety-four thousand one hundred forty-seven'), (2694, 12093, 'twelve thousand ninety-three'), (2695, 35191, 'thirty-five thousand one hundred ninety-one'), (2696, 99851, 'ninety-nine thousand eight hundred fifty-one'), (2697, 80461, 'eighty thousand four hundred sixty-one'), (2698, 16576, 'sixteen thousand five hundred seventy-six'), (2699, 41877, 'forty-one thousand eight hundred seventy-seven'), (2700, 2675, 'two thousand six hundred seventy-five'), (2701, 1536, 'one thousand five hundred thirty-six'), (2702, 37067, 'thirty-seven thousand sixty-seven'), (2703, 30725, 'thirty thousand seven hundred twenty-five'), (2704, 94221, 'ninety-four thousand two hundred twenty-one'), (2705, 88398, 'eighty-eight thousand three hundred ninety-eight'), (2706, 22793, 'twenty-two thousand seven hundred ninety-three'), (2707, 7612, 'seven thousand six hundred twelve'), (2708, 58746, 'fifty-eight thousand seven hundred forty-six'), (2709, 33773, 'thirty-three thousand seven hundred seventy-three'), (2710, 99090, 'ninety-nine thousand ninety'), (2711, 47291, 'forty-seven thousand two hundred ninety-one'), (2712, 883, 'eight hundred eighty-three'), (2713, 65894, 'sixty-five thousand eight hundred ninety-four'), (2714, 83157, 'eighty-three thousand one hundred fifty-seven'), (2715, 48742, 'forty-eight thousand seven hundred forty-two'), (2716, 49917, 'forty-nine thousand nine hundred seventeen'), (2717, 86447, 'eighty-six thousand four hundred forty-seven'), (2718, 65548, 'sixty-five thousand five hundred forty-eight'), (2719, 3034, 'three thousand thirty-four'), (2720, 6189, 'six thousand one hundred eighty-nine'), (2721, 57782, 'fifty-seven thousand seven hundred eighty-two'), (2722, 67960, 'sixty-seven thousand nine hundred sixty'), (2723, 10192, 'ten thousand one hundred ninety-two'), (2724, 56062, 'fifty-six thousand sixty-two'), (2725, 9848, 'nine thousand eight hundred forty-eight'), (2726, 64339, 'sixty-four thousand three hundred thirty-nine'), (2727, 50834, 'fifty thousand eight hundred thirty-four'), (2728, 14544, 'fourteen thousand five hundred forty-four'), (2729, 8374, 'eight thousand three hundred seventy-four'), (2730, 93240, 'ninety-three thousand two hundred forty'), (2731, 36156, 'thirty-six thousand one hundred fifty-six'), (2732, 41744, 'forty-one thousand seven hundred forty-four'), (2733, 94738, 'ninety-four thousand seven hundred thirty-eight'), (2734, 17004, 'seventeen thousand four'), (2735, 85268, 'eighty-five thousand two hundred sixty-eight'), (2736, 84170, 'eighty-four thousand one hundred seventy'), (2737, 45120, 'forty-five thousand one hundred twenty'), (2738, 92340, 'ninety-two thousand three hundred forty'), (2739, 47942, 'forty-seven thousand nine hundred forty-two'), (2740, 70442, 'seventy thousand four hundred forty-two'), (2741, 86519, 'eighty-six thousand five hundred nineteen'), (2742, 56135, 'fifty-six thousand one hundred thirty-five'), (2743, 12326, 'twelve thousand three hundred twenty-six'), (2744, 50839, 'fifty thousand eight hundred thirty-nine'), (2745, 43007, 'forty-three thousand seven'), (2746, 97445, 'ninety-seven thousand four hundred forty-five'), (2747, 29497, 'twenty-nine thousand four hundred ninety-seven'), (2748, 90283, 'ninety thousand two hundred eighty-three'), (2749, 62830, 'sixty-two thousand eight hundred thirty'), (2750, 12938, 'twelve thousand nine hundred thirty-eight'), (2751, 38030, 'thirty-eight thousand thirty'), (2752, 58329, 'fifty-eight thousand three hundred twenty-nine'), (2753, 62846, 'sixty-two thousand eight hundred forty-six'), (2754, 63402, 'sixty-three thousand four hundred two'), (2755, 61888, 'sixty-one thousand eight hundred eighty-eight'), (2756, 30259, 'thirty thousand two hundred fifty-nine'), (2757, 78508, 'seventy-eight thousand five hundred eight'), (2758, 19596, 'nineteen thousand five hundred ninety-six'), (2759, 95602, 'ninety-five thousand six hundred two'), (2760, 50707, 'fifty thousand seven hundred seven'), (2761, 20331, 'twenty thousand three hundred thirty-one'), (2762, 59725, 'fifty-nine thousand seven hundred twenty-five'), (2763, 84974, 'eighty-four thousand nine hundred seventy-four'), (2764, 83930, 'eighty-three thousand nine hundred thirty'), (2765, 2319, 'two thousand three hundred nineteen'), (2766, 35416, 'thirty-five thousand four hundred sixteen'), (2767, 79852, 'seventy-nine thousand eight hundred fifty-two'), (2768, 28726, 'twenty-eight thousand seven hundred twenty-six'), (2769, 82891, 'eighty-two thousand eight hundred ninety-one'), (2770, 56494, 'fifty-six thousand four hundred ninety-four'), (2771, 12517, 'twelve thousand five hundred seventeen'), (2772, 55267, 'fifty-five thousand two hundred sixty-seven'), (2773, 49822, 'forty-nine thousand eight hundred twenty-two'), (2774, 23222, 'twenty-three thousand two hundred twenty-two'), (2775, 62918, 'sixty-two thousand nine hundred eighteen'), (2776, 74851, 'seventy-four thousand eight hundred fifty-one'), (2777, 59567, 'fifty-nine thousand five hundred sixty-seven'), (2778, 63039, 'sixty-three thousand thirty-nine'), (2779, 20437, 'twenty thousand four hundred thirty-seven'), (2780, 28309, 'twenty-eight thousand three hundred nine'), (2781, 7846, 'seven thousand eight hundred forty-six'), (2782, 69927, 'sixty-nine thousand nine hundred twenty-seven'), (2783, 40390, 'forty thousand three hundred ninety'), (2784, 12522, 'twelve thousand five hundred twenty-two'), (2785, 26130, 'twenty-six thousand one hundred thirty'), (2786, 90941, 'ninety thousand nine hundred forty-one'), (2787, 84617, 'eighty-four thousand six hundred seventeen'), (2788, 74245, 'seventy-four thousand two hundred forty-five'), (2789, 71727, 'seventy-one thousand seven hundred twenty-seven'), (2790, 97787, 'ninety-seven thousand seven hundred eighty-seven'), (2791, 54779, 'fifty-four thousand seven hundred seventy-nine'), (2792, 5189, 'five thousand one hundred eighty-nine'), (2793, 79474, 'seventy-nine thousand four hundred seventy-four'), (2794, 39272, 'thirty-nine thousand two hundred seventy-two'), (2795, 98320, 'ninety-eight thousand three hundred twenty'), (2796, 82818, 'eighty-two thousand eight hundred eighteen'), (2797, 24549, 'twenty-four thousand five hundred forty-nine'), (2798, 11815, 'eleven thousand eight hundred fifteen'), (2799, 86821, 'eighty-six thousand eight hundred twenty-one'), (2800, 38136, 'thirty-eight thousand one hundred thirty-six'), (2801, 84869, 'eighty-four thousand eight hundred sixty-nine'), (2802, 59161, 'fifty-nine thousand one hundred sixty-one'), (2803, 41018, 'forty-one thousand eighteen'), (2804, 676, 'six hundred seventy-six'), (2805, 13822, 'thirteen thousand eight hundred twenty-two'), (2806, 58913, 'fifty-eight thousand nine hundred thirteen'), (2807, 74789, 'seventy-four thousand seven hundred eighty-nine'), (2808, 82984, 'eighty-two thousand nine hundred eighty-four'), (2809, 61949, 'sixty-one thousand nine hundred forty-nine'), (2810, 81568, 'eighty-one thousand five hundred sixty-eight'), (2811, 46679, 'forty-six thousand six hundred seventy-nine'), (2812, 95766, 'ninety-five thousand seven hundred sixty-six'), (2813, 86952, 'eighty-six thousand nine hundred fifty-two'), (2814, 87132, 'eighty-seven thousand one hundred thirty-two'), (2815, 36084, 'thirty-six thousand eighty-four'), (2816, 7501, 'seven thousand five hundred one'), (2817, 70059, 'seventy thousand fifty-nine'), (2818, 65378, 'sixty-five thousand three hundred seventy-eight'), (2819, 97106, 'ninety-seven thousand one hundred six'), (2820, 22396, 'twenty-two thousand three hundred ninety-six'), (2821, 61705, 'sixty-one thousand seven hundred five'), (2822, 75344, 'seventy-five thousand three hundred forty-four'), (2823, 89444, 'eighty-nine thousand four hundred forty-four'), (2824, 74330, 'seventy-four thousand three hundred thirty'), (2825, 22938, 'twenty-two thousand nine hundred thirty-eight'), (2826, 30324, 'thirty thousand three hundred twenty-four'), (2827, 53687, 'fifty-three thousand six hundred eighty-seven'), (2828, 26628, 'twenty-six thousand six hundred twenty-eight'), (2829, 62886, 'sixty-two thousand eight hundred eighty-six'), (2830, 4714, 'four thousand seven hundred fourteen'), (2831, 31562, 'thirty-one thousand five hundred sixty-two'), (2832, 75798, 'seventy-five thousand seven hundred ninety-eight'), (2833, 30888, 'thirty thousand eight hundred eighty-eight'), (2834, 27929, 'twenty-seven thousand nine hundred twenty-nine'), (2835, 76758, 'seventy-six thousand seven hundred fifty-eight'), (2836, 23586, 'twenty-three thousand five hundred eighty-six'), (2837, 22704, 'twenty-two thousand seven hundred four'), (2838, 88191, 'eighty-eight thousand one hundred ninety-one'), (2839, 96482, 'ninety-six thousand four hundred eighty-two'), (2840, 51547, 'fifty-one thousand five hundred forty-seven'), (2841, 95984, 'ninety-five thousand nine hundred eighty-four'), (2842, 64342, 'sixty-four thousand three hundred forty-two'), (2843, 89357, 'eighty-nine thousand three hundred fifty-seven'), (2844, 14916, 'fourteen thousand nine hundred sixteen'), (2845, 95624, 'ninety-five thousand six hundred twenty-four'), (2846, 54191, 'fifty-four thousand one hundred ninety-one'), (2847, 52927, 'fifty-two thousand nine hundred twenty-seven'), (2848, 13841, 'thirteen thousand eight hundred forty-one'), (2849, 63983, 'sixty-three thousand nine hundred eighty-three'), (2850, 49712, 'forty-nine thousand seven hundred twelve'), (2851, 40343, 'forty thousand three hundred forty-three'), (2852, 11081, 'eleven thousand eighty-one'), (2853, 70945, 'seventy thousand nine hundred forty-five'), (2854, 34152, 'thirty-four thousand one hundred fifty-two'), (2855, 25394, 'twenty-five thousand three hundred ninety-four'), (2856, 75268, 'seventy-five thousand two hundred sixty-eight'), (2857, 91244, 'ninety-one thousand two hundred forty-four'), (2858, 55951, 'fifty-five thousand nine hundred fifty-one'), (2859, 69088, 'sixty-nine thousand eighty-eight'), (2860, 56537, 'fifty-six thousand five hundred thirty-seven'), (2861, 30024, 'thirty thousand twenty-four'), (2862, 9283, 'nine thousand two hundred eighty-three'), (2863, 92553, 'ninety-two thousand five hundred fifty-three'), (2864, 59970, 'fifty-nine thousand nine hundred seventy'), (2865, 99232, 'ninety-nine thousand two hundred thirty-two'), (2866, 82397, 'eighty-two thousand three hundred ninety-seven'), (2867, 95482, 'ninety-five thousand four hundred eighty-two'), (2868, 10275, 'ten thousand two hundred seventy-five'), (2869, 36196, 'thirty-six thousand one hundred ninety-six'), (2870, 11444, 'eleven thousand four hundred forty-four'), (2871, 83835, 'eighty-three thousand eight hundred thirty-five'), (2872, 74554, 'seventy-four thousand five hundred fifty-four'), (2873, 64832, 'sixty-four thousand eight hundred thirty-two'), (2874, 17103, 'seventeen thousand one hundred three'), (2875, 69875, 'sixty-nine thousand eight hundred seventy-five'), (2876, 28025, 'twenty-eight thousand twenty-five'), (2877, 7865, 'seven thousand eight hundred sixty-five'), (2878, 65144, 'sixty-five thousand one hundred forty-four'), (2879, 87598, 'eighty-seven thousand five hundred ninety-eight'), (2880, 20568, 'twenty thousand five hundred sixty-eight'), (2881, 94521, 'ninety-four thousand five hundred twenty-one'), (2882, 64094, 'sixty-four thousand ninety-four'), (2883, 98433, 'ninety-eight thousand four hundred thirty-three'), (2884, 41316, 'forty-one thousand three hundred sixteen'), (2885, 7100, 'seven thousand one hundred'), (2886, 47901, 'forty-seven thousand nine hundred one'), (2887, 30308, 'thirty thousand three hundred eight'), (2888, 79929, 'seventy-nine thousand nine hundred twenty-nine'), (2889, 56038, 'fifty-six thousand thirty-eight'), (2890, 95473, 'ninety-five thousand four hundred seventy-three'), (2891, 45780, 'forty-five thousand seven hundred eighty'), (2892, 69065, 'sixty-nine thousand sixty-five'), (2893, 66273, 'sixty-six thousand two hundred seventy-three'), (2894, 44563, 'forty-four thousand five hundred sixty-three'), (2895, 58999, 'fifty-eight thousand nine hundred ninety-nine'), (2896, 5527, 'five thousand five hundred twenty-seven'), (2897, 45586, 'forty-five thousand five hundred eighty-six'), (2898, 89539, 'eighty-nine thousand five hundred thirty-nine'), (2899, 30454, 'thirty thousand four hundred fifty-four'), (2900, 6674, 'six thousand six hundred seventy-four'), (2901, 92605, 'ninety-two thousand six hundred five'), (2902, 55570, 'fifty-five thousand five hundred seventy'), (2903, 6162, 'six thousand one hundred sixty-two'), (2904, 10969, 'ten thousand nine hundred sixty-nine'), (2905, 89354, 'eighty-nine thousand three hundred fifty-four'), (2906, 25114, 'twenty-five thousand one hundred fourteen'), (2907, 69084, 'sixty-nine thousand eighty-four'), (2908, 56522, 'fifty-six thousand five hundred twenty-two'), (2909, 86596, 'eighty-six thousand five hundred ninety-six'), (2910, 26888, 'twenty-six thousand eight hundred eighty-eight'), (2911, 66491, 'sixty-six thousand four hundred ninety-one'), (2912, 92173, 'ninety-two thousand one hundred seventy-three'), (2913, 99166, 'ninety-nine thousand one hundred sixty-six'), (2914, 48223, 'forty-eight thousand two hundred twenty-three'), (2915, 79492, 'seventy-nine thousand four hundred ninety-two'), (2916, 86920, 'eighty-six thousand nine hundred twenty'), (2917, 19417, 'nineteen thousand four hundred seventeen'), (2918, 69327, 'sixty-nine thousand three hundred twenty-seven'), (2919, 93837, 'ninety-three thousand eight hundred thirty-seven'), (2920, 1199, 'one thousand one hundred ninety-nine'), (2921, 5761, 'five thousand seven hundred sixty-one'), (2922, 34693, 'thirty-four thousand six hundred ninety-three'), (2923, 88188, 'eighty-eight thousand one hundred eighty-eight'), (2924, 81504, 'eighty-one thousand five hundred four'), (2925, 15327, 'fifteen thousand three hundred twenty-seven'), (2926, 68540, 'sixty-eight thousand five hundred forty'), (2927, 41482, 'forty-one thousand four hundred eighty-two'), (2928, 82895, 'eighty-two thousand eight hundred ninety-five'), (2929, 7391, 'seven thousand three hundred ninety-one'), (2930, 47800, 'forty-seven thousand eight hundred'), (2931, 7269, 'seven thousand two hundred sixty-nine'), (2932, 3707, 'three thousand seven hundred seven'), (2933, 50181, 'fifty thousand one hundred eighty-one'), (2934, 52643, 'fifty-two thousand six hundred forty-three'), (2935, 9980, 'nine thousand nine hundred eighty'), (2936, 92621, 'ninety-two thousand six hundred twenty-one'), (2937, 26730, 'twenty-six thousand seven hundred thirty'), (2938, 12252, 'twelve thousand two hundred fifty-two'), (2939, 70921, 'seventy thousand nine hundred twenty-one'), (2940, 66155, 'sixty-six thousand one hundred fifty-five'), (2941, 89187, 'eighty-nine thousand one hundred eighty-seven'), (2942, 15042, 'fifteen thousand forty-two'), (2943, 1324, 'one thousand three hundred twenty-four'), (2944, 6341, 'six thousand three hundred forty-one'), (2945, 70686, 'seventy thousand six hundred eighty-six'), (2946, 84209, 'eighty-four thousand two hundred nine'), (2947, 62032, 'sixty-two thousand thirty-two'), (2948, 70316, 'seventy thousand three hundred sixteen'), (2949, 63932, 'sixty-three thousand nine hundred thirty-two'), (2950, 64623, 'sixty-four thousand six hundred twenty-three'), (2951, 30333, 'thirty thousand three hundred thirty-three'), (2952, 54556, 'fifty-four thousand five hundred fifty-six'), (2953, 64679, 'sixty-four thousand six hundred seventy-nine'), (2954, 73401, 'seventy-three thousand four hundred one'), (2955, 79027, 'seventy-nine thousand twenty-seven'), (2956, 53565, 'fifty-three thousand five hundred sixty-five'), (2957, 77525, 'seventy-seven thousand five hundred twenty-five'), (2958, 45042, 'forty-five thousand forty-two'), (2959, 440, 'four hundred forty'), (2960, 75038, 'seventy-five thousand thirty-eight'), (2961, 90967, 'ninety thousand nine hundred sixty-seven'), (2962, 69347, 'sixty-nine thousand three hundred forty-seven'), (2963, 59055, 'fifty-nine thousand fifty-five'), (2964, 40643, 'forty thousand six hundred forty-three'), (2965, 14252, 'fourteen thousand two hundred fifty-two'), (2966, 75808, 'seventy-five thousand eight hundred eight'), (2967, 85630, 'eighty-five thousand six hundred thirty'), (2968, 46255, 'forty-six thousand two hundred fifty-five'), (2969, 35625, 'thirty-five thousand six hundred twenty-five'), (2970, 89525, 'eighty-nine thousand five hundred twenty-five'), (2971, 44141, 'forty-four thousand one hundred forty-one'), (2972, 42816, 'forty-two thousand eight hundred sixteen'), (2973, 87184, 'eighty-seven thousand one hundred eighty-four'), (2974, 56002, 'fifty-six thousand two'), (2975, 68367, 'sixty-eight thousand three hundred sixty-seven'), (2976, 44941, 'forty-four thousand nine hundred forty-one'), (2977, 2644, 'two thousand six hundred forty-four'), (2978, 56330, 'fifty-six thousand three hundred thirty'), (2979, 5202, 'five thousand two hundred two'), (2980, 33139, 'thirty-three thousand one hundred thirty-nine'), (2981, 51009, 'fifty-one thousand nine'), (2982, 47630, 'forty-seven thousand six hundred thirty'), (2983, 7461, 'seven thousand four hundred sixty-one'), (2984, 22446, 'twenty-two thousand four hundred forty-six'), (2985, 18427, 'eighteen thousand four hundred twenty-seven'), (2986, 37025, 'thirty-seven thousand twenty-five'), (2987, 18904, 'eighteen thousand nine hundred four'), (2988, 44794, 'forty-four thousand seven hundred ninety-four'), (2989, 88618, 'eighty-eight thousand six hundred eighteen'), (2990, 88401, 'eighty-eight thousand four hundred one'), (2991, 30781, 'thirty thousand seven hundred eighty-one'), (2992, 92289, 'ninety-two thousand two hundred eighty-nine'), (2993, 58959, 'fifty-eight thousand nine hundred fifty-nine'), (2994, 69620, 'sixty-nine thousand six hundred twenty'), (2995, 29403, 'twenty-nine thousand four hundred three'), (2996, 41951, 'forty-one thousand nine hundred fifty-one'), (2997, 60509, 'sixty thousand five hundred nine'), (2998, 73380, 'seventy-three thousand three hundred eighty'), (2999, 99343, 'ninety-nine thousand three hundred forty-three'), (3000, 75507, 'seventy-five thousand five hundred seven'), (3001, 84133, 'eighty-four thousand one hundred thirty-three'), (3002, 32238, 'thirty-two thousand two hundred thirty-eight'), (3003, 30080, 'thirty thousand eighty'), (3004, 57926, 'fifty-seven thousand nine hundred twenty-six'), (3005, 65770, 'sixty-five thousand seven hundred seventy'), (3006, 53641, 'fifty-three thousand six hundred forty-one'), (3007, 17279, 'seventeen thousand two hundred seventy-nine'), (3008, 69016, 'sixty-nine thousand sixteen'), (3009, 16784, 'sixteen thousand seven hundred eighty-four'), (3010, 22297, 'twenty-two thousand two hundred ninety-seven'), (3011, 5860, 'five thousand eight hundred sixty'), (3012, 26805, 'twenty-six thousand eight hundred five'), (3013, 98280, 'ninety-eight thousand two hundred eighty'), (3014, 78983, 'seventy-eight thousand nine hundred eighty-three'), (3015, 92493, 'ninety-two thousand four hundred ninety-three'), (3016, 26180, 'twenty-six thousand one hundred eighty'), (3017, 17372, 'seventeen thousand three hundred seventy-two'), (3018, 70053, 'seventy thousand fifty-three'), (3019, 28581, 'twenty-eight thousand five hundred eighty-one'), (3020, 72946, 'seventy-two thousand nine hundred forty-six'), (3021, 89803, 'eighty-nine thousand eight hundred three'), (3022, 31505, 'thirty-one thousand five hundred five'), (3023, 98659, 'ninety-eight thousand six hundred fifty-nine'), (3024, 63328, 'sixty-three thousand three hundred twenty-eight'), (3025, 94483, 'ninety-four thousand four hundred eighty-three'), (3026, 40984, 'forty thousand nine hundred eighty-four'), (3027, 38871, 'thirty-eight thousand eight hundred seventy-one'), (3028, 44975, 'forty-four thousand nine hundred seventy-five'), (3029, 51287, 'fifty-one thousand two hundred eighty-seven'), (3030, 37854, 'thirty-seven thousand eight hundred fifty-four'), (3031, 47663, 'forty-seven thousand six hundred sixty-three'), (3032, 42409, 'forty-two thousand four hundred nine'), (3033, 1586, 'one thousand five hundred eighty-six'), (3034, 35078, 'thirty-five thousand seventy-eight'), (3035, 83651, 'eighty-three thousand six hundred fifty-one'), (3036, 92991, 'ninety-two thousand nine hundred ninety-one'), (3037, 26555, 'twenty-six thousand five hundred fifty-five'), (3038, 93330, 'ninety-three thousand three hundred thirty'), (3039, 46824, 'forty-six thousand eight hundred twenty-four'), (3040, 99657, 'ninety-nine thousand six hundred fifty-seven'), (3041, 72179, 'seventy-two thousand one hundred seventy-nine'), (3042, 80628, 'eighty thousand six hundred twenty-eight'), (3043, 86982, 'eighty-six thousand nine hundred eighty-two'), (3044, 12544, 'twelve thousand five hundred forty-four'), (3045, 10801, 'ten thousand eight hundred one'), (3046, 98160, 'ninety-eight thousand one hundred sixty'), (3047, 3930, 'three thousand nine hundred thirty'), (3048, 61187, 'sixty-one thousand one hundred eighty-seven'), (3049, 27569, 'twenty-seven thousand five hundred sixty-nine'), (3050, 39982, 'thirty-nine thousand nine hundred eighty-two'), (3051, 97139, 'ninety-seven thousand one hundred thirty-nine'), (3052, 70663, 'seventy thousand six hundred sixty-three'), (3053, 53889, 'fifty-three thousand eight hundred eighty-nine'), (3054, 3199, 'three thousand one hundred ninety-nine'), (3055, 52922, 'fifty-two thousand nine hundred twenty-two'), (3056, 96163, 'ninety-six thousand one hundred sixty-three'), (3057, 40751, 'forty thousand seven hundred fifty-one'), (3058, 77300, 'seventy-seven thousand three hundred'), (3059, 80671, 'eighty thousand six hundred seventy-one'), (3060, 78230, 'seventy-eight thousand two hundred thirty'), (3061, 76552, 'seventy-six thousand five hundred fifty-two'), (3062, 25175, 'twenty-five thousand one hundred seventy-five'), (3063, 5669, 'five thousand six hundred sixty-nine'), (3064, 11043, 'eleven thousand forty-three'), (3065, 87093, 'eighty-seven thousand ninety-three'), (3066, 30506, 'thirty thousand five hundred six'), (3067, 59005, 'fifty-nine thousand five'), (3068, 18562, 'eighteen thousand five hundred sixty-two'), (3069, 52926, 'fifty-two thousand nine hundred twenty-six'), (3070, 6, 'six'), (3071, 77330, 'seventy-seven thousand three hundred thirty'), (3072, 37520, 'thirty-seven thousand five hundred twenty'), (3073, 36346, 'thirty-six thousand three hundred forty-six'), (3074, 18466, 'eighteen thousand four hundred sixty-six'), (3075, 69047, 'sixty-nine thousand forty-seven'), (3076, 34696, 'thirty-four thousand six hundred ninety-six'), (3077, 40382, 'forty thousand three hundred eighty-two'), (3078, 2283, 'two thousand two hundred eighty-three'), (3079, 19846, 'nineteen thousand eight hundred forty-six'), (3080, 44554, 'forty-four thousand five hundred fifty-four'), (3081, 34252, 'thirty-four thousand two hundred fifty-two'), (3082, 56518, 'fifty-six thousand five hundred eighteen'), (3083, 22294, 'twenty-two thousand two hundred ninety-four'), (3084, 38897, 'thirty-eight thousand eight hundred ninety-seven'), (3085, 85535, 'eighty-five thousand five hundred thirty-five'), (3086, 14707, 'fourteen thousand seven hundred seven'), (3087, 54579, 'fifty-four thousand five hundred seventy-nine'), (3088, 12030, 'twelve thousand thirty'), (3089, 38198, 'thirty-eight thousand one hundred ninety-eight'), (3090, 75697, 'seventy-five thousand six hundred ninety-seven'), (3091, 15160, 'fifteen thousand one hundred sixty'), (3092, 33849, 'thirty-three thousand eight hundred forty-nine'), (3093, 84634, 'eighty-four thousand six hundred thirty-four'), (3094, 83961, 'eighty-three thousand nine hundred sixty-one'), (3095, 14431, 'fourteen thousand four hundred thirty-one'), (3096, 69460, 'sixty-nine thousand four hundred sixty'), (3097, 35173, 'thirty-five thousand one hundred seventy-three'), (3098, 23838, 'twenty-three thousand eight hundred thirty-eight'), (3099, 64731, 'sixty-four thousand seven hundred thirty-one'), (3100, 42935, 'forty-two thousand nine hundred thirty-five'), (3101, 5462, 'five thousand four hundred sixty-two'), (3102, 15907, 'fifteen thousand nine hundred seven'), (3103, 83848, 'eighty-three thousand eight hundred forty-eight'), (3104, 55149, 'fifty-five thousand one hundred forty-nine'), (3105, 61711, 'sixty-one thousand seven hundred eleven'), (3106, 10361, 'ten thousand three hundred sixty-one'), (3107, 85958, 'eighty-five thousand nine hundred fifty-eight'), (3108, 4348, 'four thousand three hundred forty-eight'), (3109, 20926, 'twenty thousand nine hundred twenty-six'), (3110, 2992, 'two thousand nine hundred ninety-two'), (3111, 90897, 'ninety thousand eight hundred ninety-seven'), (3112, 77547, 'seventy-seven thousand five hundred forty-seven'), (3113, 74027, 'seventy-four thousand twenty-seven'), (3114, 97541, 'ninety-seven thousand five hundred forty-one'), (3115, 25939, 'twenty-five thousand nine hundred thirty-nine'), (3116, 83636, 'eighty-three thousand six hundred thirty-six'), (3117, 82314, 'eighty-two thousand three hundred fourteen'), (3118, 20680, 'twenty thousand six hundred eighty'), (3119, 64535, 'sixty-four thousand five hundred thirty-five'), (3120, 21480, 'twenty-one thousand four hundred eighty'), (3121, 31413, 'thirty-one thousand four hundred thirteen'), (3122, 71463, 'seventy-one thousand four hundred sixty-three'), (3123, 93353, 'ninety-three thousand three hundred fifty-three'), (3124, 42717, 'forty-two thousand seven hundred seventeen'), (3125, 42315, 'forty-two thousand three hundred fifteen'), (3126, 65749, 'sixty-five thousand seven hundred forty-nine'), (3127, 50512, 'fifty thousand five hundred twelve'), (3128, 49159, 'forty-nine thousand one hundred fifty-nine'), (3129, 5456, 'five thousand four hundred fifty-six'), (3130, 44222, 'forty-four thousand two hundred twenty-two'), (3131, 52032, 'fifty-two thousand thirty-two'), (3132, 46042, 'forty-six thousand forty-two'), (3133, 33728, 'thirty-three thousand seven hundred twenty-eight'), (3134, 74991, 'seventy-four thousand nine hundred ninety-one'), (3135, 38135, 'thirty-eight thousand one hundred thirty-five'), (3136, 28199, 'twenty-eight thousand one hundred ninety-nine'), (3137, 79806, 'seventy-nine thousand eight hundred six'), (3138, 22552, 'twenty-two thousand five hundred fifty-two'), (3139, 20039, 'twenty thousand thirty-nine'), (3140, 70719, 'seventy thousand seven hundred nineteen'), (3141, 43840, 'forty-three thousand eight hundred forty'), (3142, 49135, 'forty-nine thousand one hundred thirty-five'), (3143, 24607, 'twenty-four thousand six hundred seven'), (3144, 40095, 'forty thousand ninety-five'), (3145, 8362, 'eight thousand three hundred sixty-two'), (3146, 69275, 'sixty-nine thousand two hundred seventy-five'), (3147, 58609, 'fifty-eight thousand six hundred nine'), (3148, 96202, 'ninety-six thousand two hundred two'), (3149, 59445, 'fifty-nine thousand four hundred forty-five'), (3150, 4348, 'four thousand three hundred forty-eight'), (3151, 87408, 'eighty-seven thousand four hundred eight'), (3152, 11956, 'eleven thousand nine hundred fifty-six'), (3153, 14715, 'fourteen thousand seven hundred fifteen'), (3154, 22321, 'twenty-two thousand three hundred twenty-one'), (3155, 29757, 'twenty-nine thousand seven hundred fifty-seven'), (3156, 91314, 'ninety-one thousand three hundred fourteen'), (3157, 332, 'three hundred thirty-two'), (3158, 54578, 'fifty-four thousand five hundred seventy-eight'), (3159, 58943, 'fifty-eight thousand nine hundred forty-three'), (3160, 87984, 'eighty-seven thousand nine hundred eighty-four'), (3161, 92178, 'ninety-two thousand one hundred seventy-eight'), (3162, 70526, 'seventy thousand five hundred twenty-six'), (3163, 25602, 'twenty-five thousand six hundred two'), (3164, 54693, 'fifty-four thousand six hundred ninety-three'), (3165, 56334, 'fifty-six thousand three hundred thirty-four'), (3166, 6777, 'six thousand seven hundred seventy-seven'), (3167, 91040, 'ninety-one thousand forty'), (3168, 84644, 'eighty-four thousand six hundred forty-four'), (3169, 25150, 'twenty-five thousand one hundred fifty'), (3170, 81363, 'eighty-one thousand three hundred sixty-three'), (3171, 4907, 'four thousand nine hundred seven'), (3172, 94868, 'ninety-four thousand eight hundred sixty-eight'), (3173, 68858, 'sixty-eight thousand eight hundred fifty-eight'), (3174, 64623, 'sixty-four thousand six hundred twenty-three'), (3175, 64151, 'sixty-four thousand one hundred fifty-one'), (3176, 32160, 'thirty-two thousand one hundred sixty'), (3177, 8549, 'eight thousand five hundred forty-nine'), (3178, 53017, 'fifty-three thousand seventeen'), (3179, 86194, 'eighty-six thousand one hundred ninety-four'), (3180, 74458, 'seventy-four thousand four hundred fifty-eight'), (3181, 69101, 'sixty-nine thousand one hundred one'), (3182, 13817, 'thirteen thousand eight hundred seventeen'), (3183, 64824, 'sixty-four thousand eight hundred twenty-four'), (3184, 91744, 'ninety-one thousand seven hundred forty-four'), (3185, 35990, 'thirty-five thousand nine hundred ninety'), (3186, 1836, 'one thousand eight hundred thirty-six'), (3187, 25180, 'twenty-five thousand one hundred eighty'), (3188, 78297, 'seventy-eight thousand two hundred ninety-seven'), (3189, 82526, 'eighty-two thousand five hundred twenty-six'), (3190, 76726, 'seventy-six thousand seven hundred twenty-six'), (3191, 18740, 'eighteen thousand seven hundred forty'), (3192, 7650, 'seven thousand six hundred fifty'), (3193, 76060, 'seventy-six thousand sixty'), (3194, 79196, 'seventy-nine thousand one hundred ninety-six'), (3195, 8022, 'eight thousand twenty-two'), (3196, 78197, 'seventy-eight thousand one hundred ninety-seven'), (3197, 32855, 'thirty-two thousand eight hundred fifty-five'), (3198, 80157, 'eighty thousand one hundred fifty-seven'), (3199, 75220, 'seventy-five thousand two hundred twenty'), (3200, 18488, 'eighteen thousand four hundred eighty-eight'), (3201, 52992, 'fifty-two thousand nine hundred ninety-two'), (3202, 58682, 'fifty-eight thousand six hundred eighty-two'), (3203, 14531, 'fourteen thousand five hundred thirty-one'), (3204, 95036, 'ninety-five thousand thirty-six'), (3205, 42685, 'forty-two thousand six hundred eighty-five'), (3206, 64953, 'sixty-four thousand nine hundred fifty-three'), (3207, 80737, 'eighty thousand seven hundred thirty-seven'), (3208, 85672, 'eighty-five thousand six hundred seventy-two'), (3209, 93810, 'ninety-three thousand eight hundred ten'), (3210, 74829, 'seventy-four thousand eight hundred twenty-nine'), (3211, 12889, 'twelve thousand eight hundred eighty-nine'), (3212, 65140, 'sixty-five thousand one hundred forty'), (3213, 17447, 'seventeen thousand four hundred forty-seven'), (3214, 90925, 'ninety thousand nine hundred twenty-five'), (3215, 53014, 'fifty-three thousand fourteen'), (3216, 10052, 'ten thousand fifty-two'), (3217, 14944, 'fourteen thousand nine hundred forty-four'), (3218, 36298, 'thirty-six thousand two hundred ninety-eight'), (3219, 40955, 'forty thousand nine hundred fifty-five'), (3220, 13435, 'thirteen thousand four hundred thirty-five'), (3221, 91099, 'ninety-one thousand ninety-nine'), (3222, 18679, 'eighteen thousand six hundred seventy-nine'), (3223, 87088, 'eighty-seven thousand eighty-eight'), (3224, 17448, 'seventeen thousand four hundred forty-eight'), (3225, 19020, 'nineteen thousand twenty'), (3226, 94901, 'ninety-four thousand nine hundred one'), (3227, 22106, 'twenty-two thousand one hundred six'), (3228, 10683, 'ten thousand six hundred eighty-three'), (3229, 51197, 'fifty-one thousand one hundred ninety-seven'), (3230, 70796, 'seventy thousand seven hundred ninety-six'), (3231, 11292, 'eleven thousand two hundred ninety-two'), (3232, 53471, 'fifty-three thousand four hundred seventy-one'), (3233, 47398, 'forty-seven thousand three hundred ninety-eight'), (3234, 70134, 'seventy thousand one hundred thirty-four'), (3235, 294, 'two hundred ninety-four'), (3236, 90271, 'ninety thousand two hundred seventy-one'), (3237, 58215, 'fifty-eight thousand two hundred fifteen'), (3238, 17441, 'seventeen thousand four hundred forty-one'), (3239, 6216, 'six thousand two hundred sixteen'), (3240, 88339, 'eighty-eight thousand three hundred thirty-nine'), (3241, 75132, 'seventy-five thousand one hundred thirty-two'), (3242, 44848, 'forty-four thousand eight hundred forty-eight'), (3243, 95979, 'ninety-five thousand nine hundred seventy-nine'), (3244, 43187, 'forty-three thousand one hundred eighty-seven'), (3245, 39437, 'thirty-nine thousand four hundred thirty-seven'), (3246, 59833, 'fifty-nine thousand eight hundred thirty-three'), (3247, 72946, 'seventy-two thousand nine hundred forty-six'), (3248, 76610, 'seventy-six thousand six hundred ten'), (3249, 81396, 'eighty-one thousand three hundred ninety-six'), (3250, 29025, 'twenty-nine thousand twenty-five'), (3251, 10017, 'ten thousand seventeen'), (3252, 34055, 'thirty-four thousand fifty-five'), (3253, 55077, 'fifty-five thousand seventy-seven'), (3254, 49354, 'forty-nine thousand three hundred fifty-four'), (3255, 71539, 'seventy-one thousand five hundred thirty-nine'), (3256, 24996, 'twenty-four thousand nine hundred ninety-six'), (3257, 6157, 'six thousand one hundred fifty-seven'), (3258, 99514, 'ninety-nine thousand five hundred fourteen'), (3259, 22638, 'twenty-two thousand six hundred thirty-eight'), (3260, 56997, 'fifty-six thousand nine hundred ninety-seven'), (3261, 58242, 'fifty-eight thousand two hundred forty-two'), (3262, 70538, 'seventy thousand five hundred thirty-eight'), (3263, 93371, 'ninety-three thousand three hundred seventy-one'), (3264, 22382, 'twenty-two thousand three hundred eighty-two'), (3265, 6486, 'six thousand four hundred eighty-six'), (3266, 15838, 'fifteen thousand eight hundred thirty-eight'), (3267, 87220, 'eighty-seven thousand two hundred twenty'), (3268, 99892, 'ninety-nine thousand eight hundred ninety-two'), (3269, 77807, 'seventy-seven thousand eight hundred seven'), (3270, 14234, 'fourteen thousand two hundred thirty-four'), (3271, 21101, 'twenty-one thousand one hundred one'), (3272, 78289, 'seventy-eight thousand two hundred eighty-nine'), (3273, 823, 'eight hundred twenty-three'), (3274, 73770, 'seventy-three thousand seven hundred seventy'), (3275, 93721, 'ninety-three thousand seven hundred twenty-one'), (3276, 18846, 'eighteen thousand eight hundred forty-six'), (3277, 56669, 'fifty-six thousand six hundred sixty-nine'), (3278, 62504, 'sixty-two thousand five hundred four'), (3279, 69776, 'sixty-nine thousand seven hundred seventy-six'), (3280, 97518, 'ninety-seven thousand five hundred eighteen'), (3281, 64344, 'sixty-four thousand three hundred forty-four'), (3282, 99638, 'ninety-nine thousand six hundred thirty-eight'), (3283, 7818, 'seven thousand eight hundred eighteen'), (3284, 80077, 'eighty thousand seventy-seven'), (3285, 94195, 'ninety-four thousand one hundred ninety-five'), (3286, 47036, 'forty-seven thousand thirty-six'), (3287, 33729, 'thirty-three thousand seven hundred twenty-nine'), (3288, 29939, 'twenty-nine thousand nine hundred thirty-nine'), (3289, 9016, 'nine thousand sixteen'), (3290, 1702, 'one thousand seven hundred two'), (3291, 71645, 'seventy-one thousand six hundred forty-five'), (3292, 64433, 'sixty-four thousand four hundred thirty-three'), (3293, 37502, 'thirty-seven thousand five hundred two'), (3294, 44939, 'forty-four thousand nine hundred thirty-nine'), (3295, 68966, 'sixty-eight thousand nine hundred sixty-six'), (3296, 72482, 'seventy-two thousand four hundred eighty-two'), (3297, 56929, 'fifty-six thousand nine hundred twenty-nine'), (3298, 97779, 'ninety-seven thousand seven hundred seventy-nine'), (3299, 73940, 'seventy-three thousand nine hundred forty'), (3300, 31320, 'thirty-one thousand three hundred twenty'), (3301, 15230, 'fifteen thousand two hundred thirty'), (3302, 63929, 'sixty-three thousand nine hundred twenty-nine'), (3303, 66155, 'sixty-six thousand one hundred fifty-five'), (3304, 3099, 'three thousand ninety-nine'), (3305, 71533, 'seventy-one thousand five hundred thirty-three'), (3306, 34756, 'thirty-four thousand seven hundred fifty-six'), (3307, 15255, 'fifteen thousand two hundred fifty-five'), (3308, 11272, 'eleven thousand two hundred seventy-two'), (3309, 54549, 'fifty-four thousand five hundred forty-nine'), (3310, 28813, 'twenty-eight thousand eight hundred thirteen'), (3311, 94288, 'ninety-four thousand two hundred eighty-eight'), (3312, 92516, 'ninety-two thousand five hundred sixteen'), (3313, 70699, 'seventy thousand six hundred ninety-nine'), (3314, 46623, 'forty-six thousand six hundred twenty-three'), (3315, 67829, 'sixty-seven thousand eight hundred twenty-nine'), (3316, 45110, 'forty-five thousand one hundred ten'), (3317, 58246, 'fifty-eight thousand two hundred forty-six'), (3318, 6254, 'six thousand two hundred fifty-four'), (3319, 17050, 'seventeen thousand fifty'), (3320, 20710, 'twenty thousand seven hundred ten'), (3321, 23871, 'twenty-three thousand eight hundred seventy-one'), (3322, 98969, 'ninety-eight thousand nine hundred sixty-nine'), (3323, 25440, 'twenty-five thousand four hundred forty'), (3324, 56060, 'fifty-six thousand sixty'), (3325, 59720, 'fifty-nine thousand seven hundred twenty'), (3326, 87148, 'eighty-seven thousand one hundred forty-eight'), (3327, 60483, 'sixty thousand four hundred eighty-three'), (3328, 21966, 'twenty-one thousand nine hundred sixty-six'), (3329, 84787, 'eighty-four thousand seven hundred eighty-seven'), (3330, 79780, 'seventy-nine thousand seven hundred eighty'), (3331, 96765, 'ninety-six thousand seven hundred sixty-five'), (3332, 22987, 'twenty-two thousand nine hundred eighty-seven'), (3333, 53518, 'fifty-three thousand five hundred eighteen'), (3334, 62843, 'sixty-two thousand eight hundred forty-three'), (3335, 25933, 'twenty-five thousand nine hundred thirty-three'), (3336, 41646, 'forty-one thousand six hundred forty-six'), (3337, 45237, 'forty-five thousand two hundred thirty-seven'), (3338, 54961, 'fifty-four thousand nine hundred sixty-one'), (3339, 85423, 'eighty-five thousand four hundred twenty-three'), (3340, 68927, 'sixty-eight thousand nine hundred twenty-seven'), (3341, 64734, 'sixty-four thousand seven hundred thirty-four'), (3342, 92499, 'ninety-two thousand four hundred ninety-nine'), (3343, 26274, 'twenty-six thousand two hundred seventy-four'), (3344, 58419, 'fifty-eight thousand four hundred nineteen'), (3345, 36959, 'thirty-six thousand nine hundred fifty-nine'), (3346, 72623, 'seventy-two thousand six hundred twenty-three'), (3347, 98876, 'ninety-eight thousand eight hundred seventy-six'), (3348, 94411, 'ninety-four thousand four hundred eleven'), (3349, 69304, 'sixty-nine thousand three hundred four'), (3350, 13652, 'thirteen thousand six hundred fifty-two'), (3351, 39250, 'thirty-nine thousand two hundred fifty'), (3352, 19459, 'nineteen thousand four hundred fifty-nine'), (3353, 66835, 'sixty-six thousand eight hundred thirty-five'), (3354, 95903, 'ninety-five thousand nine hundred three'), (3355, 70163, 'seventy thousand one hundred sixty-three'), (3356, 44244, 'forty-four thousand two hundred forty-four'), (3357, 3362, 'three thousand three hundred sixty-two'), (3358, 738, 'seven hundred thirty-eight'), (3359, 51169, 'fifty-one thousand one hundred sixty-nine'), (3360, 28504, 'twenty-eight thousand five hundred four'), (3361, 67979, 'sixty-seven thousand nine hundred seventy-nine'), (3362, 99613, 'ninety-nine thousand six hundred thirteen'), (3363, 36511, 'thirty-six thousand five hundred eleven'), (3364, 68904, 'sixty-eight thousand nine hundred four'), (3365, 95165, 'ninety-five thousand one hundred sixty-five'), (3366, 86502, 'eighty-six thousand five hundred two'), (3367, 55373, 'fifty-five thousand three hundred seventy-three'), (3368, 12702, 'twelve thousand seven hundred two'), (3369, 51094, 'fifty-one thousand ninety-four'), (3370, 50423, 'fifty thousand four hundred twenty-three'), (3371, 41766, 'forty-one thousand seven hundred sixty-six'), (3372, 25246, 'twenty-five thousand two hundred forty-six'), (3373, 40366, 'forty thousand three hundred sixty-six'), (3374, 29845, 'twenty-nine thousand eight hundred forty-five'), (3375, 32808, 'thirty-two thousand eight hundred eight'), (3376, 52345, 'fifty-two thousand three hundred forty-five'), (3377, 54055, 'fifty-four thousand fifty-five'), (3378, 97214, 'ninety-seven thousand two hundred fourteen'), (3379, 81031, 'eighty-one thousand thirty-one'), (3380, 78559, 'seventy-eight thousand five hundred fifty-nine'), (3381, 28423, 'twenty-eight thousand four hundred twenty-three'), (3382, 47909, 'forty-seven thousand nine hundred nine'), (3383, 31237, 'thirty-one thousand two hundred thirty-seven'), (3384, 56385, 'fifty-six thousand three hundred eighty-five'), (3385, 74721, 'seventy-four thousand seven hundred twenty-one'), (3386, 82882, 'eighty-two thousand eight hundred eighty-two'), (3387, 99646, 'ninety-nine thousand six hundred forty-six'), (3388, 96020, 'ninety-six thousand twenty'), (3389, 59349, 'fifty-nine thousand three hundred forty-nine'), (3390, 46739, 'forty-six thousand seven hundred thirty-nine'), (3391, 91953, 'ninety-one thousand nine hundred fifty-three'), (3392, 33637, 'thirty-three thousand six hundred thirty-seven'), (3393, 10572, 'ten thousand five hundred seventy-two'), (3394, 53714, 'fifty-three thousand seven hundred fourteen'), (3395, 99581, 'ninety-nine thousand five hundred eighty-one'), (3396, 6327, 'six thousand three hundred twenty-seven'), (3397, 79238, 'seventy-nine thousand two hundred thirty-eight'), (3398, 38798, 'thirty-eight thousand seven hundred ninety-eight'), (3399, 4125, 'four thousand one hundred twenty-five'), (3400, 20030, 'twenty thousand thirty'), (3401, 31162, 'thirty-one thousand one hundred sixty-two'), (3402, 47698, 'forty-seven thousand six hundred ninety-eight'), (3403, 77363, 'seventy-seven thousand three hundred sixty-three'), (3404, 76115, 'seventy-six thousand one hundred fifteen'), (3405, 9146, 'nine thousand one hundred forty-six'), (3406, 36983, 'thirty-six thousand nine hundred eighty-three'), (3407, 52519, 'fifty-two thousand five hundred nineteen'), (3408, 7031, 'seven thousand thirty-one'), (3409, 80875, 'eighty thousand eight hundred seventy-five'), (3410, 16111, 'sixteen thousand one hundred eleven'), (3411, 47006, 'forty-seven thousand six'), (3412, 14351, 'fourteen thousand three hundred fifty-one'), (3413, 16713, 'sixteen thousand seven hundred thirteen'), (3414, 23506, 'twenty-three thousand five hundred six'), (3415, 22926, 'twenty-two thousand nine hundred twenty-six'), (3416, 21751, 'twenty-one thousand seven hundred fifty-one'), (3417, 79164, 'seventy-nine thousand one hundred sixty-four'), (3418, 79122, 'seventy-nine thousand one hundred twenty-two'), (3419, 29793, 'twenty-nine thousand seven hundred ninety-three'), (3420, 70882, 'seventy thousand eight hundred eighty-two'), (3421, 58331, 'fifty-eight thousand three hundred thirty-one'), (3422, 77125, 'seventy-seven thousand one hundred twenty-five'), (3423, 57176, 'fifty-seven thousand one hundred seventy-six'), (3424, 55246, 'fifty-five thousand two hundred forty-six'), (3425, 42733, 'forty-two thousand seven hundred thirty-three'), (3426, 43354, 'forty-three thousand three hundred fifty-four'), (3427, 66353, 'sixty-six thousand three hundred fifty-three'), (3428, 61320, 'sixty-one thousand three hundred twenty'), (3429, 17328, 'seventeen thousand three hundred twenty-eight'), (3430, 59504, 'fifty-nine thousand five hundred four'), (3431, 77446, 'seventy-seven thousand four hundred forty-six'), (3432, 78882, 'seventy-eight thousand eight hundred eighty-two'), (3433, 19092, 'nineteen thousand ninety-two'), (3434, 29837, 'twenty-nine thousand eight hundred thirty-seven'), (3435, 97048, 'ninety-seven thousand forty-eight'), (3436, 3261, 'three thousand two hundred sixty-one'), (3437, 93304, 'ninety-three thousand three hundred four'), (3438, 39311, 'thirty-nine thousand three hundred eleven'), (3439, 51098, 'fifty-one thousand ninety-eight'), (3440, 59576, 'fifty-nine thousand five hundred seventy-six'), (3441, 71061, 'seventy-one thousand sixty-one'), (3442, 70141, 'seventy thousand one hundred forty-one'), (3443, 80022, 'eighty thousand twenty-two'), (3444, 18465, 'eighteen thousand four hundred sixty-five'), (3445, 96572, 'ninety-six thousand five hundred seventy-two'), (3446, 40804, 'forty thousand eight hundred four'), (3447, 37781, 'thirty-seven thousand seven hundred eighty-one'), (3448, 48292, 'forty-eight thousand two hundred ninety-two'), (3449, 8752, 'eight thousand seven hundred fifty-two'), (3450, 92676, 'ninety-two thousand six hundred seventy-six'), (3451, 43207, 'forty-three thousand two hundred seven'), (3452, 613, 'six hundred thirteen'), (3453, 67358, 'sixty-seven thousand three hundred fifty-eight'), (3454, 57843, 'fifty-seven thousand eight hundred forty-three'), (3455, 65505, 'sixty-five thousand five hundred five'), (3456, 40131, 'forty thousand one hundred thirty-one'), (3457, 23259, 'twenty-three thousand two hundred fifty-nine'), (3458, 59068, 'fifty-nine thousand sixty-eight'), (3459, 18623, 'eighteen thousand six hundred twenty-three'), (3460, 39532, 'thirty-nine thousand five hundred thirty-two'), (3461, 56300, 'fifty-six thousand three hundred'), (3462, 16806, 'sixteen thousand eight hundred six'), (3463, 79329, 'seventy-nine thousand three hundred twenty-nine'), (3464, 80980, 'eighty thousand nine hundred eighty'), (3465, 33166, 'thirty-three thousand one hundred sixty-six'), (3466, 63230, 'sixty-three thousand two hundred thirty'), (3467, 77583, 'seventy-seven thousand five hundred eighty-three'), (3468, 94025, 'ninety-four thousand twenty-five'), (3469, 89483, 'eighty-nine thousand four hundred eighty-three'), (3470, 91304, 'ninety-one thousand three hundred four'), (3471, 18692, 'eighteen thousand six hundred ninety-two'), (3472, 67993, 'sixty-seven thousand nine hundred ninety-three'), (3473, 19362, 'nineteen thousand three hundred sixty-two'), (3474, 64142, 'sixty-four thousand one hundred forty-two'), (3475, 31830, 'thirty-one thousand eight hundred thirty'), (3476, 89311, 'eighty-nine thousand three hundred eleven'), (3477, 17025, 'seventeen thousand twenty-five'), (3478, 91668, 'ninety-one thousand six hundred sixty-eight'), (3479, 18688, 'eighteen thousand six hundred eighty-eight'), (3480, 4247, 'four thousand two hundred forty-seven'), (3481, 50185, 'fifty thousand one hundred eighty-five'), (3482, 52285, 'fifty-two thousand two hundred eighty-five'), (3483, 3777, 'three thousand seven hundred seventy-seven'), (3484, 80295, 'eighty thousand two hundred ninety-five'), (3485, 90562, 'ninety thousand five hundred sixty-two'), (3486, 10098, 'ten thousand ninety-eight'), (3487, 40706, 'forty thousand seven hundred six'), (3488, 39369, 'thirty-nine thousand three hundred sixty-nine'), (3489, 4547, 'four thousand five hundred forty-seven'), (3490, 10985, 'ten thousand nine hundred eighty-five'), (3491, 47247, 'forty-seven thousand two hundred forty-seven'), (3492, 36993, 'thirty-six thousand nine hundred ninety-three'), (3493, 60076, 'sixty thousand seventy-six'), (3494, 59469, 'fifty-nine thousand four hundred sixty-nine'), (3495, 31562, 'thirty-one thousand five hundred sixty-two'), (3496, 61847, 'sixty-one thousand eight hundred forty-seven'), (3497, 37215, 'thirty-seven thousand two hundred fifteen'), (3498, 76642, 'seventy-six thousand six hundred forty-two'), (3499, 92402, 'ninety-two thousand four hundred two'), (3500, 41986, 'forty-one thousand nine hundred eighty-six'), (3501, 2680, 'two thousand six hundred eighty'), (3502, 72800, 'seventy-two thousand eight hundred'), (3503, 98335, 'ninety-eight thousand three hundred thirty-five'), (3504, 71051, 'seventy-one thousand fifty-one'), (3505, 46202, 'forty-six thousand two hundred two'), (3506, 63475, 'sixty-three thousand four hundred seventy-five'), (3507, 71129, 'seventy-one thousand one hundred twenty-nine'), (3508, 7246, 'seven thousand two hundred forty-six'), (3509, 64159, 'sixty-four thousand one hundred fifty-nine'), (3510, 73764, 'seventy-three thousand seven hundred sixty-four'), (3511, 13414, 'thirteen thousand four hundred fourteen'), (3512, 94177, 'ninety-four thousand one hundred seventy-seven'), (3513, 56445, 'fifty-six thousand four hundred forty-five'), (3514, 11530, 'eleven thousand five hundred thirty'), (3515, 39867, 'thirty-nine thousand eight hundred sixty-seven'), (3516, 37914, 'thirty-seven thousand nine hundred fourteen'), (3517, 62936, 'sixty-two thousand nine hundred thirty-six'), (3518, 83949, 'eighty-three thousand nine hundred forty-nine'), (3519, 12285, 'twelve thousand two hundred eighty-five'), (3520, 84970, 'eighty-four thousand nine hundred seventy'), (3521, 94285, 'ninety-four thousand two hundred eighty-five'), (3522, 94582, 'ninety-four thousand five hundred eighty-two'), (3523, 77138, 'seventy-seven thousand one hundred thirty-eight'), (3524, 96699, 'ninety-six thousand six hundred ninety-nine'), (3525, 92895, 'ninety-two thousand eight hundred ninety-five'), (3526, 46923, 'forty-six thousand nine hundred twenty-three'), (3527, 45937, 'forty-five thousand nine hundred thirty-seven'), (3528, 72410, 'seventy-two thousand four hundred ten'), (3529, 6020, 'six thousand twenty'), (3530, 954, 'nine hundred fifty-four'), (3531, 62276, 'sixty-two thousand two hundred seventy-six'), (3532, 30830, 'thirty thousand eight hundred thirty'), (3533, 15042, 'fifteen thousand forty-two'), (3534, 95069, 'ninety-five thousand sixty-nine'), (3535, 55683, 'fifty-five thousand six hundred eighty-three'), (3536, 55488, 'fifty-five thousand four hundred eighty-eight'), (3537, 64828, 'sixty-four thousand eight hundred twenty-eight'), (3538, 24790, 'twenty-four thousand seven hundred ninety'), (3539, 19429, 'nineteen thousand four hundred twenty-nine'), (3540, 34785, 'thirty-four thousand seven hundred eighty-five'), (3541, 21011, 'twenty-one thousand eleven'), (3542, 30700, 'thirty thousand seven hundred'), (3543, 75483, 'seventy-five thousand four hundred eighty-three'), (3544, 52547, 'fifty-two thousand five hundred forty-seven'), (3545, 31185, 'thirty-one thousand one hundred eighty-five'), (3546, 70808, 'seventy thousand eight hundred eight'), (3547, 30730, 'thirty thousand seven hundred thirty'), (3548, 81751, 'eighty-one thousand seven hundred fifty-one'), (3549, 59115, 'fifty-nine thousand one hundred fifteen'), (3550, 5455, 'five thousand four hundred fifty-five'), (3551, 75921, 'seventy-five thousand nine hundred twenty-one'), (3552, 58632, 'fifty-eight thousand six hundred thirty-two'), (3553, 7828, 'seven thousand eight hundred twenty-eight'), (3554, 15520, 'fifteen thousand five hundred twenty'), (3555, 1749, 'one thousand seven hundred forty-nine'), (3556, 4642, 'four thousand six hundred forty-two'), (3557, 4770, 'four thousand seven hundred seventy'), (3558, 54431, 'fifty-four thousand four hundred thirty-one'), (3559, 20855, 'twenty thousand eight hundred fifty-five'), (3560, 69105, 'sixty-nine thousand one hundred five'), (3561, 40008, 'forty thousand eight'), (3562, 95681, 'ninety-five thousand six hundred eighty-one'), (3563, 75699, 'seventy-five thousand six hundred ninety-nine'), (3564, 43610, 'forty-three thousand six hundred ten'), (3565, 55614, 'fifty-five thousand six hundred fourteen'), (3566, 34354, 'thirty-four thousand three hundred fifty-four'), (3567, 920, 'nine hundred twenty'), (3568, 47582, 'forty-seven thousand five hundred eighty-two'), (3569, 1028, 'one thousand twenty-eight'), (3570, 30341, 'thirty thousand three hundred forty-one'), (3571, 29131, 'twenty-nine thousand one hundred thirty-one'), (3572, 97796, 'ninety-seven thousand seven hundred ninety-six'), (3573, 86793, 'eighty-six thousand seven hundred ninety-three'), (3574, 5320, 'five thousand three hundred twenty'), (3575, 94072, 'ninety-four thousand seventy-two'), (3576, 24303, 'twenty-four thousand three hundred three'), (3577, 93820, 'ninety-three thousand eight hundred twenty'), (3578, 62865, 'sixty-two thousand eight hundred sixty-five'), (3579, 38733, 'thirty-eight thousand seven hundred thirty-three'), (3580, 42334, 'forty-two thousand three hundred thirty-four'), (3581, 79400, 'seventy-nine thousand four hundred'), (3582, 40253, 'forty thousand two hundred fifty-three'), (3583, 69136, 'sixty-nine thousand one hundred thirty-six'), (3584, 54164, 'fifty-four thousand one hundred sixty-four'), (3585, 62394, 'sixty-two thousand three hundred ninety-four'), (3586, 68173, 'sixty-eight thousand one hundred seventy-three'), (3587, 70208, 'seventy thousand two hundred eight'), (3588, 88806, 'eighty-eight thousand eight hundred six'), (3589, 3430, 'three thousand four hundred thirty'), (3590, 91534, 'ninety-one thousand five hundred thirty-four'), (3591, 7192, 'seven thousand one hundred ninety-two'), (3592, 44758, 'forty-four thousand seven hundred fifty-eight'), (3593, 57347, 'fifty-seven thousand three hundred forty-seven'), (3594, 72945, 'seventy-two thousand nine hundred forty-five'), (3595, 8275, 'eight thousand two hundred seventy-five'), (3596, 35801, 'thirty-five thousand eight hundred one'), (3597, 38557, 'thirty-eight thousand five hundred fifty-seven'), (3598, 49555, 'forty-nine thousand five hundred fifty-five'), (3599, 14262, 'fourteen thousand two hundred sixty-two'), (3600, 43515, 'forty-three thousand five hundred fifteen'), (3601, 71059, 'seventy-one thousand fifty-nine'), (3602, 3819, 'three thousand eight hundred nineteen'), (3603, 19583, 'nineteen thousand five hundred eighty-three'), (3604, 34751, 'thirty-four thousand seven hundred fifty-one'), (3605, 34237, 'thirty-four thousand two hundred thirty-seven'), (3606, 33187, 'thirty-three thousand one hundred eighty-seven'), (3607, 8186, 'eight thousand one hundred eighty-six'), (3608, 68143, 'sixty-eight thousand one hundred forty-three'), (3609, 92843, 'ninety-two thousand eight hundred forty-three'), (3610, 82475, 'eighty-two thousand four hundred seventy-five'), (3611, 51131, 'fifty-one thousand one hundred thirty-one'), (3612, 62839, 'sixty-two thousand eight hundred thirty-nine'), (3613, 65849, 'sixty-five thousand eight hundred forty-nine'), (3614, 69164, 'sixty-nine thousand one hundred sixty-four'), (3615, 90354, 'ninety thousand three hundred fifty-four'), (3616, 35248, 'thirty-five thousand two hundred forty-eight'), (3617, 8706, 'eight thousand seven hundred six'), (3618, 53867, 'fifty-three thousand eight hundred sixty-seven'), (3619, 28201, 'twenty-eight thousand two hundred one'), (3620, 38230, 'thirty-eight thousand two hundred thirty'), (3621, 96085, 'ninety-six thousand eighty-five'), (3622, 22493, 'twenty-two thousand four hundred ninety-three'), (3623, 11328, 'eleven thousand three hundred twenty-eight'), (3624, 78635, 'seventy-eight thousand six hundred thirty-five'), (3625, 17955, 'seventeen thousand nine hundred fifty-five'), (3626, 62422, 'sixty-two thousand four hundred twenty-two'), (3627, 39236, 'thirty-nine thousand two hundred thirty-six'), (3628, 1788, 'one thousand seven hundred eighty-eight'), (3629, 71202, 'seventy-one thousand two hundred two'), (3630, 33719, 'thirty-three thousand seven hundred nineteen'), (3631, 66093, 'sixty-six thousand ninety-three'), (3632, 69927, 'sixty-nine thousand nine hundred twenty-seven'), (3633, 46523, 'forty-six thousand five hundred twenty-three'), (3634, 19984, 'nineteen thousand nine hundred eighty-four'), (3635, 19454, 'nineteen thousand four hundred fifty-four'), (3636, 47699, 'forty-seven thousand six hundred ninety-nine'), (3637, 45834, 'forty-five thousand eight hundred thirty-four'), (3638, 14846, 'fourteen thousand eight hundred forty-six'), (3639, 20487, 'twenty thousand four hundred eighty-seven'), (3640, 57392, 'fifty-seven thousand three hundred ninety-two'), (3641, 88772, 'eighty-eight thousand seven hundred seventy-two'), (3642, 73118, 'seventy-three thousand one hundred eighteen'), (3643, 29918, 'twenty-nine thousand nine hundred eighteen'), (3644, 82863, 'eighty-two thousand eight hundred sixty-three'), (3645, 5393, 'five thousand three hundred ninety-three'), (3646, 30713, 'thirty thousand seven hundred thirteen'), (3647, 19325, 'nineteen thousand three hundred twenty-five'), (3648, 11926, 'eleven thousand nine hundred twenty-six'), (3649, 28917, 'twenty-eight thousand nine hundred seventeen'), (3650, 63194, 'sixty-three thousand one hundred ninety-four'), (3651, 94885, 'ninety-four thousand eight hundred eighty-five'), (3652, 26602, 'twenty-six thousand six hundred two'), (3653, 40673, 'forty thousand six hundred seventy-three'), (3654, 70009, 'seventy thousand nine'), (3655, 12997, 'twelve thousand nine hundred ninety-seven'), (3656, 79751, 'seventy-nine thousand seven hundred fifty-one'), (3657, 55886, 'fifty-five thousand eight hundred eighty-six'), (3658, 25845, 'twenty-five thousand eight hundred forty-five'), (3659, 23357, 'twenty-three thousand three hundred fifty-seven'), (3660, 76086, 'seventy-six thousand eighty-six'), (3661, 48247, 'forty-eight thousand two hundred forty-seven'), (3662, 61115, 'sixty-one thousand one hundred fifteen'), (3663, 77283, 'seventy-seven thousand two hundred eighty-three'), (3664, 4435, 'four thousand four hundred thirty-five'), (3665, 96617, 'ninety-six thousand six hundred seventeen'), (3666, 8807, 'eight thousand eight hundred seven'), (3667, 90492, 'ninety thousand four hundred ninety-two'), (3668, 27321, 'twenty-seven thousand three hundred twenty-one'), (3669, 73247, 'seventy-three thousand two hundred forty-seven'), (3670, 44684, 'forty-four thousand six hundred eighty-four'), (3671, 59641, 'fifty-nine thousand six hundred forty-one'), (3672, 32592, 'thirty-two thousand five hundred ninety-two'), (3673, 90266, 'ninety thousand two hundred sixty-six'), (3674, 15418, 'fifteen thousand four hundred eighteen'), (3675, 5464, 'five thousand four hundred sixty-four'), (3676, 19066, 'nineteen thousand sixty-six'), (3677, 70762, 'seventy thousand seven hundred sixty-two'), (3678, 7286, 'seven thousand two hundred eighty-six'), (3679, 54476, 'fifty-four thousand four hundred seventy-six'), (3680, 87819, 'eighty-seven thousand eight hundred nineteen'), (3681, 13560, 'thirteen thousand five hundred sixty'), (3682, 2906, 'two thousand nine hundred six'), (3683, 35785, 'thirty-five thousand seven hundred eighty-five'), (3684, 46144, 'forty-six thousand one hundred forty-four'), (3685, 83097, 'eighty-three thousand ninety-seven'), (3686, 61297, 'sixty-one thousand two hundred ninety-seven'), (3687, 38225, 'thirty-eight thousand two hundred twenty-five'), (3688, 72518, 'seventy-two thousand five hundred eighteen'), (3689, 81165, 'eighty-one thousand one hundred sixty-five'), (3690, 93299, 'ninety-three thousand two hundred ninety-nine'), (3691, 67364, 'sixty-seven thousand three hundred sixty-four'), (3692, 43724, 'forty-three thousand seven hundred twenty-four'), (3693, 64556, 'sixty-four thousand five hundred fifty-six'), (3694, 91597, 'ninety-one thousand five hundred ninety-seven'), (3695, 5257, 'five thousand two hundred fifty-seven'), (3696, 67126, 'sixty-seven thousand one hundred twenty-six'), (3697, 53896, 'fifty-three thousand eight hundred ninety-six'), (3698, 99048, 'ninety-nine thousand forty-eight'), (3699, 29883, 'twenty-nine thousand eight hundred eighty-three'), (3700, 41000, 'forty-one thousand'), (3701, 98635, 'ninety-eight thousand six hundred thirty-five'), (3702, 29392, 'twenty-nine thousand three hundred ninety-two'), (3703, 10692, 'ten thousand six hundred ninety-two'), (3704, 94217, 'ninety-four thousand two hundred seventeen'), (3705, 75692, 'seventy-five thousand six hundred ninety-two'), (3706, 86601, 'eighty-six thousand six hundred one'), (3707, 73873, 'seventy-three thousand eight hundred seventy-three'), (3708, 54818, 'fifty-four thousand eight hundred eighteen'), (3709, 25877, 'twenty-five thousand eight hundred seventy-seven'), (3710, 16828, 'sixteen thousand eight hundred twenty-eight'), (3711, 8547, 'eight thousand five hundred forty-seven'), (3712, 53747, 'fifty-three thousand seven hundred forty-seven'), (3713, 17889, 'seventeen thousand eight hundred eighty-nine'), (3714, 73856, 'seventy-three thousand eight hundred fifty-six'), (3715, 85289, 'eighty-five thousand two hundred eighty-nine'), (3716, 15643, 'fifteen thousand six hundred forty-three'), (3717, 8609, 'eight thousand six hundred nine'), (3718, 48670, 'forty-eight thousand six hundred seventy'), (3719, 54886, 'fifty-four thousand eight hundred eighty-six'), (3720, 87184, 'eighty-seven thousand one hundred eighty-four'), (3721, 44125, 'forty-four thousand one hundred twenty-five'), (3722, 81507, 'eighty-one thousand five hundred seven'), (3723, 93093, 'ninety-three thousand ninety-three'), (3724, 88383, 'eighty-eight thousand three hundred eighty-three'), (3725, 69022, 'sixty-nine thousand twenty-two'), (3726, 65629, 'sixty-five thousand six hundred twenty-nine'), (3727, 67196, 'sixty-seven thousand one hundred ninety-six'), (3728, 84243, 'eighty-four thousand two hundred forty-three'), (3729, 42058, 'forty-two thousand fifty-eight'), (3730, 63197, 'sixty-three thousand one hundred ninety-seven'), (3731, 22264, 'twenty-two thousand two hundred sixty-four'), (3732, 58744, 'fifty-eight thousand seven hundred forty-four'), (3733, 61203, 'sixty-one thousand two hundred three'), (3734, 57984, 'fifty-seven thousand nine hundred eighty-four'), (3735, 26082, 'twenty-six thousand eighty-two'), (3736, 80371, 'eighty thousand three hundred seventy-one'), (3737, 63320, 'sixty-three thousand three hundred twenty'), (3738, 62875, 'sixty-two thousand eight hundred seventy-five'), (3739, 49996, 'forty-nine thousand nine hundred ninety-six'), (3740, 14711, 'fourteen thousand seven hundred eleven'), (3741, 69546, 'sixty-nine thousand five hundred forty-six'), (3742, 55878, 'fifty-five thousand eight hundred seventy-eight'), (3743, 32801, 'thirty-two thousand eight hundred one'), (3744, 67356, 'sixty-seven thousand three hundred fifty-six'), (3745, 86036, 'eighty-six thousand thirty-six'), (3746, 24650, 'twenty-four thousand six hundred fifty'), (3747, 83466, 'eighty-three thousand four hundred sixty-six'), (3748, 56492, 'fifty-six thousand four hundred ninety-two'), (3749, 36693, 'thirty-six thousand six hundred ninety-three'), (3750, 66565, 'sixty-six thousand five hundred sixty-five'), (3751, 34868, 'thirty-four thousand eight hundred sixty-eight'), (3752, 8102, 'eight thousand one hundred two'), (3753, 40664, 'forty thousand six hundred sixty-four'), (3754, 36053, 'thirty-six thousand fifty-three'), (3755, 13391, 'thirteen thousand three hundred ninety-one'), (3756, 58838, 'fifty-eight thousand eight hundred thirty-eight'), (3757, 11765, 'eleven thousand seven hundred sixty-five'), (3758, 56726, 'fifty-six thousand seven hundred twenty-six'), (3759, 94366, 'ninety-four thousand three hundred sixty-six'), (3760, 74777, 'seventy-four thousand seven hundred seventy-seven'), (3761, 63537, 'sixty-three thousand five hundred thirty-seven'), (3762, 82316, 'eighty-two thousand three hundred sixteen'), (3763, 23294, 'twenty-three thousand two hundred ninety-four'), (3764, 68941, 'sixty-eight thousand nine hundred forty-one'), (3765, 81687, 'eighty-one thousand six hundred eighty-seven'), (3766, 95960, 'ninety-five thousand nine hundred sixty'), (3767, 89093, 'eighty-nine thousand ninety-three'), (3768, 71373, 'seventy-one thousand three hundred seventy-three'), (3769, 67005, 'sixty-seven thousand five'), (3770, 16053, 'sixteen thousand fifty-three'), (3771, 80585, 'eighty thousand five hundred eighty-five'), (3772, 35969, 'thirty-five thousand nine hundred sixty-nine'), (3773, 38560, 'thirty-eight thousand five hundred sixty'), (3774, 47373, 'forty-seven thousand three hundred seventy-three'), (3775, 45263, 'forty-five thousand two hundred sixty-three'), (3776, 46904, 'forty-six thousand nine hundred four'), (3777, 11243, 'eleven thousand two hundred forty-three'), (3778, 51491, 'fifty-one thousand four hundred ninety-one'), (3779, 68380, 'sixty-eight thousand three hundred eighty'), (3780, 93130, 'ninety-three thousand one hundred thirty'), (3781, 58991, 'fifty-eight thousand nine hundred ninety-one'), (3782, 95778, 'ninety-five thousand seven hundred seventy-eight'), (3783, 97498, 'ninety-seven thousand four hundred ninety-eight'), (3784, 60503, 'sixty thousand five hundred three'), (3785, 4096, 'four thousand ninety-six'), (3786, 66463, 'sixty-six thousand four hundred sixty-three'), (3787, 22228, 'twenty-two thousand two hundred twenty-eight'), (3788, 33099, 'thirty-three thousand ninety-nine'), (3789, 39462, 'thirty-nine thousand four hundred sixty-two'), (3790, 76850, 'seventy-six thousand eight hundred fifty'), (3791, 62149, 'sixty-two thousand one hundred forty-nine'), (3792, 85451, 'eighty-five thousand four hundred fifty-one'), (3793, 62002, 'sixty-two thousand two'), (3794, 21938, 'twenty-one thousand nine hundred thirty-eight'), (3795, 11246, 'eleven thousand two hundred forty-six'), (3796, 43544, 'forty-three thousand five hundred forty-four'), (3797, 60711, 'sixty thousand seven hundred eleven'), (3798, 10079, 'ten thousand seventy-nine'), (3799, 48214, 'forty-eight thousand two hundred fourteen'), (3800, 99392, 'ninety-nine thousand three hundred ninety-two'), (3801, 35166, 'thirty-five thousand one hundred sixty-six'), (3802, 9562, 'nine thousand five hundred sixty-two'), (3803, 46966, 'forty-six thousand nine hundred sixty-six'), (3804, 55642, 'fifty-five thousand six hundred forty-two'), (3805, 55483, 'fifty-five thousand four hundred eighty-three'), (3806, 17111, 'seventeen thousand one hundred eleven'), (3807, 27591, 'twenty-seven thousand five hundred ninety-one'), (3808, 87309, 'eighty-seven thousand three hundred nine'), (3809, 34334, 'thirty-four thousand three hundred thirty-four'), (3810, 60029, 'sixty thousand twenty-nine'), (3811, 52959, 'fifty-two thousand nine hundred fifty-nine'), (3812, 79293, 'seventy-nine thousand two hundred ninety-three'), (3813, 6312, 'six thousand three hundred twelve'), (3814, 85613, 'eighty-five thousand six hundred thirteen'), (3815, 26533, 'twenty-six thousand five hundred thirty-three'), (3816, 67859, 'sixty-seven thousand eight hundred fifty-nine'), (3817, 34969, 'thirty-four thousand nine hundred sixty-nine'), (3818, 84178, 'eighty-four thousand one hundred seventy-eight'), (3819, 63392, 'sixty-three thousand three hundred ninety-two'), (3820, 17888, 'seventeen thousand eight hundred eighty-eight'), (3821, 63319, 'sixty-three thousand three hundred nineteen'), (3822, 22573, 'twenty-two thousand five hundred seventy-three'), (3823, 40494, 'forty thousand four hundred ninety-four'), (3824, 87258, 'eighty-seven thousand two hundred fifty-eight'), (3825, 41353, 'forty-one thousand three hundred fifty-three'), (3826, 16221, 'sixteen thousand two hundred twenty-one'), (3827, 47954, 'forty-seven thousand nine hundred fifty-four'), (3828, 67341, 'sixty-seven thousand three hundred forty-one'), (3829, 42031, 'forty-two thousand thirty-one'), (3830, 91612, 'ninety-one thousand six hundred twelve'), (3831, 1916, 'one thousand nine hundred sixteen'), (3832, 67772, 'sixty-seven thousand seven hundred seventy-two'), (3833, 71298, 'seventy-one thousand two hundred ninety-eight'), (3834, 45935, 'forty-five thousand nine hundred thirty-five'), (3835, 46271, 'forty-six thousand two hundred seventy-one'), (3836, 44317, 'forty-four thousand three hundred seventeen'), (3837, 19746, 'nineteen thousand seven hundred forty-six'), (3838, 63509, 'sixty-three thousand five hundred nine'), (3839, 75428, 'seventy-five thousand four hundred twenty-eight'), (3840, 65418, 'sixty-five thousand four hundred eighteen'), (3841, 99711, 'ninety-nine thousand seven hundred eleven'), (3842, 84912, 'eighty-four thousand nine hundred twelve'), (3843, 91437, 'ninety-one thousand four hundred thirty-seven'), (3844, 94740, 'ninety-four thousand seven hundred forty'), (3845, 90516, 'ninety thousand five hundred sixteen'), (3846, 67898, 'sixty-seven thousand eight hundred ninety-eight'), (3847, 85588, 'eighty-five thousand five hundred eighty-eight'), (3848, 32780, 'thirty-two thousand seven hundred eighty'), (3849, 58006, 'fifty-eight thousand six'), (3850, 75005, 'seventy-five thousand five'), (3851, 75615, 'seventy-five thousand six hundred fifteen'), (3852, 76377, 'seventy-six thousand three hundred seventy-seven'), (3853, 968, 'nine hundred sixty-eight'), (3854, 9238, 'nine thousand two hundred thirty-eight'), (3855, 49070, 'forty-nine thousand seventy'), (3856, 96741, 'ninety-six thousand seven hundred forty-one'), (3857, 86333, 'eighty-six thousand three hundred thirty-three'), (3858, 95337, 'ninety-five thousand three hundred thirty-seven'), (3859, 52917, 'fifty-two thousand nine hundred seventeen'), (3860, 54334, 'fifty-four thousand three hundred thirty-four'), (3861, 56139, 'fifty-six thousand one hundred thirty-nine'), (3862, 93200, 'ninety-three thousand two hundred'), (3863, 19690, 'nineteen thousand six hundred ninety'), (3864, 52828, 'fifty-two thousand eight hundred twenty-eight'), (3865, 98402, 'ninety-eight thousand four hundred two'), (3866, 2100, 'two thousand one hundred'), (3867, 43675, 'forty-three thousand six hundred seventy-five'), (3868, 10024, 'ten thousand twenty-four'), (3869, 31538, 'thirty-one thousand five hundred thirty-eight'), (3870, 21797, 'twenty-one thousand seven hundred ninety-seven'), (3871, 4973, 'four thousand nine hundred seventy-three'), (3872, 61882, 'sixty-one thousand eight hundred eighty-two'), (3873, 65290, 'sixty-five thousand two hundred ninety'), (3874, 1100, 'one thousand one hundred'), (3875, 71229, 'seventy-one thousand two hundred twenty-nine'), (3876, 40275, 'forty thousand two hundred seventy-five'), (3877, 55184, 'fifty-five thousand one hundred eighty-four'), (3878, 99269, 'ninety-nine thousand two hundred sixty-nine'), (3879, 12733, 'twelve thousand seven hundred thirty-three'), (3880, 62441, 'sixty-two thousand four hundred forty-one'), (3881, 40129, 'forty thousand one hundred twenty-nine'), (3882, 83255, 'eighty-three thousand two hundred fifty-five'), (3883, 27820, 'twenty-seven thousand eight hundred twenty'), (3884, 79113, 'seventy-nine thousand one hundred thirteen'), (3885, 14528, 'fourteen thousand five hundred twenty-eight'), (3886, 20056, 'twenty thousand fifty-six'), (3887, 18646, 'eighteen thousand six hundred forty-six'), (3888, 87438, 'eighty-seven thousand four hundred thirty-eight'), (3889, 9494, 'nine thousand four hundred ninety-four'), (3890, 50518, 'fifty thousand five hundred eighteen'), (3891, 86714, 'eighty-six thousand seven hundred fourteen'), (3892, 36556, 'thirty-six thousand five hundred fifty-six'), (3893, 75431, 'seventy-five thousand four hundred thirty-one'), (3894, 55646, 'fifty-five thousand six hundred forty-six'), (3895, 37113, 'thirty-seven thousand one hundred thirteen'), (3896, 23366, 'twenty-three thousand three hundred sixty-six'), (3897, 61458, 'sixty-one thousand four hundred fifty-eight'), (3898, 94562, 'ninety-four thousand five hundred sixty-two'), (3899, 37519, 'thirty-seven thousand five hundred nineteen'), (3900, 17632, 'seventeen thousand six hundred thirty-two'), (3901, 38403, 'thirty-eight thousand four hundred three'), (3902, 94568, 'ninety-four thousand five hundred sixty-eight'), (3903, 45163, 'forty-five thousand one hundred sixty-three'), (3904, 43773, 'forty-three thousand seven hundred seventy-three'), (3905, 48630, 'forty-eight thousand six hundred thirty'), (3906, 22134, 'twenty-two thousand one hundred thirty-four'), (3907, 95176, 'ninety-five thousand one hundred seventy-six'), (3908, 87972, 'eighty-seven thousand nine hundred seventy-two'), (3909, 71001, 'seventy-one thousand one'), (3910, 52710, 'fifty-two thousand seven hundred ten'), (3911, 40332, 'forty thousand three hundred thirty-two'), (3912, 75461, 'seventy-five thousand four hundred sixty-one'), (3913, 69119, 'sixty-nine thousand one hundred nineteen'), (3914, 3350, 'three thousand three hundred fifty'), (3915, 15054, 'fifteen thousand fifty-four'), (3916, 34744, 'thirty-four thousand seven hundred forty-four'), (3917, 17681, 'seventeen thousand six hundred eighty-one'), (3918, 6707, 'six thousand seven hundred seven'), (3919, 39451, 'thirty-nine thousand four hundred fifty-one'), (3920, 18487, 'eighteen thousand four hundred eighty-seven'), (3921, 70543, 'seventy thousand five hundred forty-three'), (3922, 12007, 'twelve thousand seven'), (3923, 96737, 'ninety-six thousand seven hundred thirty-seven'), (3924, 12895, 'twelve thousand eight hundred ninety-five'), (3925, 96657, 'ninety-six thousand six hundred fifty-seven'), (3926, 38542, 'thirty-eight thousand five hundred forty-two'), (3927, 51115, 'fifty-one thousand one hundred fifteen'), (3928, 81595, 'eighty-one thousand five hundred ninety-five'), (3929, 12185, 'twelve thousand one hundred eighty-five'), (3930, 4835, 'four thousand eight hundred thirty-five'), (3931, 61419, 'sixty-one thousand four hundred nineteen'), (3932, 91269, 'ninety-one thousand two hundred sixty-nine'), (3933, 52630, 'fifty-two thousand six hundred thirty'), (3934, 93973, 'ninety-three thousand nine hundred seventy-three'), (3935, 44786, 'forty-four thousand seven hundred eighty-six'), (3936, 27317, 'twenty-seven thousand three hundred seventeen'), (3937, 91548, 'ninety-one thousand five hundred forty-eight'), (3938, 1328, 'one thousand three hundred twenty-eight'), (3939, 71652, 'seventy-one thousand six hundred fifty-two'), (3940, 80418, 'eighty thousand four hundred eighteen'), (3941, 23967, 'twenty-three thousand nine hundred sixty-seven'), (3942, 9332, 'nine thousand three hundred thirty-two'), (3943, 75044, 'seventy-five thousand forty-four'), (3944, 64751, 'sixty-four thousand seven hundred fifty-one'), (3945, 77527, 'seventy-seven thousand five hundred twenty-seven'), (3946, 7631, 'seven thousand six hundred thirty-one'), (3947, 96320, 'ninety-six thousand three hundred twenty'), (3948, 30337, 'thirty thousand three hundred thirty-seven'), (3949, 22733, 'twenty-two thousand seven hundred thirty-three'), (3950, 20506, 'twenty thousand five hundred six'), (3951, 83774, 'eighty-three thousand seven hundred seventy-four'), (3952, 80109, 'eighty thousand one hundred nine'), (3953, 5008, 'five thousand eight'), (3954, 3949, 'three thousand nine hundred forty-nine'), (3955, 62418, 'sixty-two thousand four hundred eighteen'), (3956, 54088, 'fifty-four thousand eighty-eight'), (3957, 36788, 'thirty-six thousand seven hundred eighty-eight'), (3958, 24950, 'twenty-four thousand nine hundred fifty'), (3959, 37859, 'thirty-seven thousand eight hundred fifty-nine'), (3960, 67928, 'sixty-seven thousand nine hundred twenty-eight'), (3961, 65292, 'sixty-five thousand two hundred ninety-two'), (3962, 40668, 'forty thousand six hundred sixty-eight'), (3963, 46409, 'forty-six thousand four hundred nine'), (3964, 111, 'one hundred eleven'), (3965, 64791, 'sixty-four thousand seven hundred ninety-one'), (3966, 84418, 'eighty-four thousand four hundred eighteen'), (3967, 29140, 'twenty-nine thousand one hundred forty'), (3968, 48763, 'forty-eight thousand seven hundred sixty-three'), (3969, 32590, 'thirty-two thousand five hundred ninety'), (3970, 31298, 'thirty-one thousand two hundred ninety-eight'), (3971, 76630, 'seventy-six thousand six hundred thirty'), (3972, 32916, 'thirty-two thousand nine hundred sixteen'), (3973, 23346, 'twenty-three thousand three hundred forty-six'), (3974, 80830, 'eighty thousand eight hundred thirty'), (3975, 84532, 'eighty-four thousand five hundred thirty-two'), (3976, 59437, 'fifty-nine thousand four hundred thirty-seven'), (3977, 69224, 'sixty-nine thousand two hundred twenty-four'), (3978, 69787, 'sixty-nine thousand seven hundred eighty-seven'), (3979, 85294, 'eighty-five thousand two hundred ninety-four'), (3980, 28056, 'twenty-eight thousand fifty-six'), (3981, 45672, 'forty-five thousand six hundred seventy-two'), (3982, 57591, 'fifty-seven thousand five hundred ninety-one'), (3983, 15427, 'fifteen thousand four hundred twenty-seven'), (3984, 79946, 'seventy-nine thousand nine hundred forty-six'), (3985, 9897, 'nine thousand eight hundred ninety-seven'), (3986, 10501, 'ten thousand five hundred one'), (3987, 36033, 'thirty-six thousand thirty-three'), (3988, 62130, 'sixty-two thousand one hundred thirty'), (3989, 9579, 'nine thousand five hundred seventy-nine'), (3990, 20713, 'twenty thousand seven hundred thirteen'), (3991, 59247, 'fifty-nine thousand two hundred forty-seven'), (3992, 36997, 'thirty-six thousand nine hundred ninety-seven'), (3993, 69292, 'sixty-nine thousand two hundred ninety-two'), (3994, 36219, 'thirty-six thousand two hundred nineteen'), (3995, 20939, 'twenty thousand nine hundred thirty-nine'), (3996, 17032, 'seventeen thousand thirty-two'), (3997, 6416, 'six thousand four hundred sixteen'), (3998, 97039, 'ninety-seven thousand thirty-nine'), (3999, 28349, 'twenty-eight thousand three hundred forty-nine'), (4000, 85245, 'eighty-five thousand two hundred forty-five'), (4001, 83826, 'eighty-three thousand eight hundred twenty-six'), (4002, 94231, 'ninety-four thousand two hundred thirty-one'), (4003, 58912, 'fifty-eight thousand nine hundred twelve'), (4004, 781, 'seven hundred eighty-one'), (4005, 13913, 'thirteen thousand nine hundred thirteen'), (4006, 27851, 'twenty-seven thousand eight hundred fifty-one'), (4007, 19911, 'nineteen thousand nine hundred eleven'), (4008, 48974, 'forty-eight thousand nine hundred seventy-four'), (4009, 70757, 'seventy thousand seven hundred fifty-seven'), (4010, 87343, 'eighty-seven thousand three hundred forty-three'), (4011, 23398, 'twenty-three thousand three hundred ninety-eight'), (4012, 70196, 'seventy thousand one hundred ninety-six'), (4013, 49130, 'forty-nine thousand one hundred thirty'), (4014, 96997, 'ninety-six thousand nine hundred ninety-seven'), (4015, 72451, 'seventy-two thousand four hundred fifty-one'), (4016, 32489, 'thirty-two thousand four hundred eighty-nine'), (4017, 68117, 'sixty-eight thousand one hundred seventeen'), (4018, 6930, 'six thousand nine hundred thirty'), (4019, 48308, 'forty-eight thousand three hundred eight'), (4020, 82773, 'eighty-two thousand seven hundred seventy-three'), (4021, 67732, 'sixty-seven thousand seven hundred thirty-two'), (4022, 44346, 'forty-four thousand three hundred forty-six'), (4023, 70109, 'seventy thousand one hundred nine'), (4024, 46332, 'forty-six thousand three hundred thirty-two'), (4025, 19376, 'nineteen thousand three hundred seventy-six'), (4026, 72044, 'seventy-two thousand forty-four'), (4027, 91391, 'ninety-one thousand three hundred ninety-one'), (4028, 89435, 'eighty-nine thousand four hundred thirty-five'), (4029, 61157, 'sixty-one thousand one hundred fifty-seven'), (4030, 67596, 'sixty-seven thousand five hundred ninety-six'), (4031, 29183, 'twenty-nine thousand one hundred eighty-three'), (4032, 73872, 'seventy-three thousand eight hundred seventy-two'), (4033, 19767, 'nineteen thousand seven hundred sixty-seven'), (4034, 55028, 'fifty-five thousand twenty-eight'), (4035, 70173, 'seventy thousand one hundred seventy-three'), (4036, 91983, 'ninety-one thousand nine hundred eighty-three'), (4037, 77067, 'seventy-seven thousand sixty-seven'), (4038, 63202, 'sixty-three thousand two hundred two'), (4039, 80705, 'eighty thousand seven hundred five'), (4040, 18086, 'eighteen thousand eighty-six'), (4041, 85624, 'eighty-five thousand six hundred twenty-four'), (4042, 1454, 'one thousand four hundred fifty-four'), (4043, 71581, 'seventy-one thousand five hundred eighty-one'), (4044, 32723, 'thirty-two thousand seven hundred twenty-three'), (4045, 39370, 'thirty-nine thousand three hundred seventy'), (4046, 46108, 'forty-six thousand one hundred eight'), (4047, 97070, 'ninety-seven thousand seventy'), (4048, 49315, 'forty-nine thousand three hundred fifteen'), (4049, 31128, 'thirty-one thousand one hundred twenty-eight'), (4050, 39050, 'thirty-nine thousand fifty'), (4051, 3030, 'three thousand thirty'), (4052, 85921, 'eighty-five thousand nine hundred twenty-one'), (4053, 81196, 'eighty-one thousand one hundred ninety-six'), (4054, 25754, 'twenty-five thousand seven hundred fifty-four'), (4055, 4502, 'four thousand five hundred two'), (4056, 57215, 'fifty-seven thousand two hundred fifteen'), (4057, 1265, 'one thousand two hundred sixty-five'), (4058, 32390, 'thirty-two thousand three hundred ninety'), (4059, 78528, 'seventy-eight thousand five hundred twenty-eight'), (4060, 17892, 'seventeen thousand eight hundred ninety-two'), (4061, 73434, 'seventy-three thousand four hundred thirty-four'), (4062, 89191, 'eighty-nine thousand one hundred ninety-one'), (4063, 75876, 'seventy-five thousand eight hundred seventy-six'), (4064, 6388, 'six thousand three hundred eighty-eight'), (4065, 74466, 'seventy-four thousand four hundred sixty-six'), (4066, 32602, 'thirty-two thousand six hundred two'), (4067, 67555, 'sixty-seven thousand five hundred fifty-five'), (4068, 42344, 'forty-two thousand three hundred forty-four'), (4069, 41226, 'forty-one thousand two hundred twenty-six'), (4070, 19032, 'nineteen thousand thirty-two'), (4071, 63846, 'sixty-three thousand eight hundred forty-six'), (4072, 11858, 'eleven thousand eight hundred fifty-eight'), (4073, 27380, 'twenty-seven thousand three hundred eighty'), (4074, 79446, 'seventy-nine thousand four hundred forty-six'), (4075, 90992, 'ninety thousand nine hundred ninety-two'), (4076, 56203, 'fifty-six thousand two hundred three'), (4077, 82096, 'eighty-two thousand ninety-six'), (4078, 13686, 'thirteen thousand six hundred eighty-six'), (4079, 88216, 'eighty-eight thousand two hundred sixteen'), (4080, 59528, 'fifty-nine thousand five hundred twenty-eight'), (4081, 26392, 'twenty-six thousand three hundred ninety-two'), (4082, 16413, 'sixteen thousand four hundred thirteen'), (4083, 89480, 'eighty-nine thousand four hundred eighty'), (4084, 98345, 'ninety-eight thousand three hundred forty-five'), (4085, 43473, 'forty-three thousand four hundred seventy-three'), (4086, 72370, 'seventy-two thousand three hundred seventy'), (4087, 619, 'six hundred nineteen'), (4088, 87026, 'eighty-seven thousand twenty-six'), (4089, 17928, 'seventeen thousand nine hundred twenty-eight'), (4090, 34135, 'thirty-four thousand one hundred thirty-five'), (4091, 19336, 'nineteen thousand three hundred thirty-six'), (4092, 2809, 'two thousand eight hundred nine'), (4093, 40999, 'forty thousand nine hundred ninety-nine'), (4094, 50937, 'fifty thousand nine hundred thirty-seven'), (4095, 83436, 'eighty-three thousand four hundred thirty-six'), (4096, 32871, 'thirty-two thousand eight hundred seventy-one'), (4097, 13520, 'thirteen thousand five hundred twenty'), (4098, 43081, 'forty-three thousand eighty-one'), (4099, 59338, 'fifty-nine thousand three hundred thirty-eight'), (4100, 26710, 'twenty-six thousand seven hundred ten'), (4101, 65518, 'sixty-five thousand five hundred eighteen'), (4102, 44580, 'forty-four thousand five hundred eighty'), (4103, 89932, 'eighty-nine thousand nine hundred thirty-two'), (4104, 75034, 'seventy-five thousand thirty-four'), (4105, 79956, 'seventy-nine thousand nine hundred fifty-six'), (4106, 13335, 'thirteen thousand three hundred thirty-five'), (4107, 69733, 'sixty-nine thousand seven hundred thirty-three'), (4108, 54576, 'fifty-four thousand five hundred seventy-six'), (4109, 43262, 'forty-three thousand two hundred sixty-two'), (4110, 37057, 'thirty-seven thousand fifty-seven'), (4111, 41140, 'forty-one thousand one hundred forty'), (4112, 193, 'one hundred ninety-three'), (4113, 96651, 'ninety-six thousand six hundred fifty-one'), (4114, 82748, 'eighty-two thousand seven hundred forty-eight'), (4115, 40507, 'forty thousand five hundred seven'), (4116, 30983, 'thirty thousand nine hundred eighty-three'), (4117, 91685, 'ninety-one thousand six hundred eighty-five'), (4118, 82567, 'eighty-two thousand five hundred sixty-seven'), (4119, 95834, 'ninety-five thousand eight hundred thirty-four'), (4120, 90247, 'ninety thousand two hundred forty-seven'), (4121, 95929, 'ninety-five thousand nine hundred twenty-nine'), (4122, 65483, 'sixty-five thousand four hundred eighty-three'), (4123, 40857, 'forty thousand eight hundred fifty-seven'), (4124, 311, 'three hundred eleven'), (4125, 94631, 'ninety-four thousand six hundred thirty-one'), (4126, 43534, 'forty-three thousand five hundred thirty-four'), (4127, 61926, 'sixty-one thousand nine hundred twenty-six'), (4128, 89554, 'eighty-nine thousand five hundred fifty-four'), (4129, 96150, 'ninety-six thousand one hundred fifty'), (4130, 22874, 'twenty-two thousand eight hundred seventy-four'), (4131, 83759, 'eighty-three thousand seven hundred fifty-nine'), (4132, 21142, 'twenty-one thousand one hundred forty-two'), (4133, 39229, 'thirty-nine thousand two hundred twenty-nine'), (4134, 69965, 'sixty-nine thousand nine hundred sixty-five'), (4135, 55660, 'fifty-five thousand six hundred sixty'), (4136, 64609, 'sixty-four thousand six hundred nine'), (4137, 18269, 'eighteen thousand two hundred sixty-nine'), (4138, 39081, 'thirty-nine thousand eighty-one'), (4139, 19721, 'nineteen thousand seven hundred twenty-one'), (4140, 46810, 'forty-six thousand eight hundred ten'), (4141, 86435, 'eighty-six thousand four hundred thirty-five'), (4142, 48824, 'forty-eight thousand eight hundred twenty-four'), (4143, 70499, 'seventy thousand four hundred ninety-nine'), (4144, 5703, 'five thousand seven hundred three'), (4145, 89264, 'eighty-nine thousand two hundred sixty-four'), (4146, 97829, 'ninety-seven thousand eight hundred twenty-nine'), (4147, 32185, 'thirty-two thousand one hundred eighty-five'), (4148, 29858, 'twenty-nine thousand eight hundred fifty-eight'), (4149, 23594, 'twenty-three thousand five hundred ninety-four'), (4150, 41353, 'forty-one thousand three hundred fifty-three'), (4151, 80253, 'eighty thousand two hundred fifty-three'), (4152, 54283, 'fifty-four thousand two hundred eighty-three'), (4153, 7819, 'seven thousand eight hundred nineteen'), (4154, 45330, 'forty-five thousand three hundred thirty'), (4155, 28019, 'twenty-eight thousand nineteen'), (4156, 88974, 'eighty-eight thousand nine hundred seventy-four'), (4157, 14929, 'fourteen thousand nine hundred twenty-nine'), (4158, 32563, 'thirty-two thousand five hundred sixty-three'), (4159, 23270, 'twenty-three thousand two hundred seventy'), (4160, 94515, 'ninety-four thousand five hundred fifteen'), (4161, 10611, 'ten thousand six hundred eleven'), (4162, 64006, 'sixty-four thousand six'), (4163, 54926, 'fifty-four thousand nine hundred twenty-six'), (4164, 4946, 'four thousand nine hundred forty-six'), (4165, 97283, 'ninety-seven thousand two hundred eighty-three'), (4166, 82690, 'eighty-two thousand six hundred ninety'), (4167, 22634, 'twenty-two thousand six hundred thirty-four'), (4168, 36046, 'thirty-six thousand forty-six'), (4169, 10869, 'ten thousand eight hundred sixty-nine'), (4170, 78937, 'seventy-eight thousand nine hundred thirty-seven'), (4171, 11669, 'eleven thousand six hundred sixty-nine'), (4172, 73633, 'seventy-three thousand six hundred thirty-three'), (4173, 79652, 'seventy-nine thousand six hundred fifty-two'), (4174, 50908, 'fifty thousand nine hundred eight'), (4175, 64444, 'sixty-four thousand four hundred forty-four'), (4176, 93448, 'ninety-three thousand four hundred forty-eight'), (4177, 59940, 'fifty-nine thousand nine hundred forty'), (4178, 40447, 'forty thousand four hundred forty-seven'), (4179, 15826, 'fifteen thousand eight hundred twenty-six'), (4180, 91633, 'ninety-one thousand six hundred thirty-three'), (4181, 47018, 'forty-seven thousand eighteen'), (4182, 5185, 'five thousand one hundred eighty-five'), (4183, 21179, 'twenty-one thousand one hundred seventy-nine'), (4184, 68871, 'sixty-eight thousand eight hundred seventy-one'), (4185, 27139, 'twenty-seven thousand one hundred thirty-nine'), (4186, 86825, 'eighty-six thousand eight hundred twenty-five'), (4187, 92794, 'ninety-two thousand seven hundred ninety-four'), (4188, 60662, 'sixty thousand six hundred sixty-two'), (4189, 81598, 'eighty-one thousand five hundred ninety-eight'), (4190, 41653, 'forty-one thousand six hundred fifty-three'), (4191, 17355, 'seventeen thousand three hundred fifty-five'), (4192, 44720, 'forty-four thousand seven hundred twenty'), (4193, 62909, 'sixty-two thousand nine hundred nine'), (4194, 31575, 'thirty-one thousand five hundred seventy-five'), (4195, 14296, 'fourteen thousand two hundred ninety-six'), (4196, 4185, 'four thousand one hundred eighty-five'), (4197, 45823, 'forty-five thousand eight hundred twenty-three'), (4198, 28534, 'twenty-eight thousand five hundred thirty-four'), (4199, 3434, 'three thousand four hundred thirty-four'), (4200, 37538, 'thirty-seven thousand five hundred thirty-eight'), (4201, 26790, 'twenty-six thousand seven hundred ninety'), (4202, 26480, 'twenty-six thousand four hundred eighty'), (4203, 36255, 'thirty-six thousand two hundred fifty-five'), (4204, 85790, 'eighty-five thousand seven hundred ninety'), (4205, 11435, 'eleven thousand four hundred thirty-five'), (4206, 86740, 'eighty-six thousand seven hundred forty'), (4207, 56856, 'fifty-six thousand eight hundred fifty-six'), (4208, 88237, 'eighty-eight thousand two hundred thirty-seven'), (4209, 99331, 'ninety-nine thousand three hundred thirty-one'), (4210, 66586, 'sixty-six thousand five hundred eighty-six'), (4211, 62160, 'sixty-two thousand one hundred sixty'), (4212, 37501, 'thirty-seven thousand five hundred one'), (4213, 77064, 'seventy-seven thousand sixty-four'), (4214, 7117, 'seven thousand one hundred seventeen'), (4215, 40749, 'forty thousand seven hundred forty-nine'), (4216, 78269, 'seventy-eight thousand two hundred sixty-nine'), (4217, 96591, 'ninety-six thousand five hundred ninety-one'), (4218, 41621, 'forty-one thousand six hundred twenty-one'), (4219, 30701, 'thirty thousand seven hundred one'), (4220, 18857, 'eighteen thousand eight hundred fifty-seven'), (4221, 33627, 'thirty-three thousand six hundred twenty-seven'), (4222, 6785, 'six thousand seven hundred eighty-five'), (4223, 35737, 'thirty-five thousand seven hundred thirty-seven'), (4224, 95335, 'ninety-five thousand three hundred thirty-five'), (4225, 27708, 'twenty-seven thousand seven hundred eight'), (4226, 53785, 'fifty-three thousand seven hundred eighty-five'), (4227, 80291, 'eighty thousand two hundred ninety-one'), (4228, 24737, 'twenty-four thousand seven hundred thirty-seven'), (4229, 34695, 'thirty-four thousand six hundred ninety-five'), (4230, 73582, 'seventy-three thousand five hundred eighty-two'), (4231, 62687, 'sixty-two thousand six hundred eighty-seven'), (4232, 88414, 'eighty-eight thousand four hundred fourteen'), (4233, 2739, 'two thousand seven hundred thirty-nine'), (4234, 35654, 'thirty-five thousand six hundred fifty-four'), (4235, 20842, 'twenty thousand eight hundred forty-two'), (4236, 71388, 'seventy-one thousand three hundred eighty-eight'), (4237, 86025, 'eighty-six thousand twenty-five'), (4238, 12725, 'twelve thousand seven hundred twenty-five'), (4239, 81079, 'eighty-one thousand seventy-nine'), (4240, 22652, 'twenty-two thousand six hundred fifty-two'), (4241, 66224, 'sixty-six thousand two hundred twenty-four'), (4242, 94099, 'ninety-four thousand ninety-nine'), (4243, 42084, 'forty-two thousand eighty-four'), (4244, 52525, 'fifty-two thousand five hundred twenty-five'), (4245, 11860, 'eleven thousand eight hundred sixty'), (4246, 58446, 'fifty-eight thousand four hundred forty-six'), (4247, 93814, 'ninety-three thousand eight hundred fourteen'), (4248, 77379, 'seventy-seven thousand three hundred seventy-nine'), (4249, 84313, 'eighty-four thousand three hundred thirteen'), (4250, 27472, 'twenty-seven thousand four hundred seventy-two'), (4251, 79639, 'seventy-nine thousand six hundred thirty-nine'), (4252, 62504, 'sixty-two thousand five hundred four'), (4253, 86553, 'eighty-six thousand five hundred fifty-three'), (4254, 59234, 'fifty-nine thousand two hundred thirty-four'), (4255, 22433, 'twenty-two thousand four hundred thirty-three'), (4256, 99964, 'ninety-nine thousand nine hundred sixty-four'), (4257, 19492, 'nineteen thousand four hundred ninety-two'), (4258, 44370, 'forty-four thousand three hundred seventy'), (4259, 39734, 'thirty-nine thousand seven hundred thirty-four'), (4260, 21789, 'twenty-one thousand seven hundred eighty-nine'), (4261, 3396, 'three thousand three hundred ninety-six'), (4262, 76944, 'seventy-six thousand nine hundred forty-four'), (4263, 65316, 'sixty-five thousand three hundred sixteen'), (4264, 33849, 'thirty-three thousand eight hundred forty-nine'), (4265, 96104, 'ninety-six thousand one hundred four'), (4266, 57630, 'fifty-seven thousand six hundred thirty'), (4267, 70522, 'seventy thousand five hundred twenty-two'), (4268, 42601, 'forty-two thousand six hundred one'), (4269, 92053, 'ninety-two thousand fifty-three'), (4270, 45183, 'forty-five thousand one hundred eighty-three'), (4271, 57170, 'fifty-seven thousand one hundred seventy'), (4272, 15831, 'fifteen thousand eight hundred thirty-one'), (4273, 38588, 'thirty-eight thousand five hundred eighty-eight'), (4274, 80470, 'eighty thousand four hundred seventy'), (4275, 25962, 'twenty-five thousand nine hundred sixty-two'), (4276, 42779, 'forty-two thousand seven hundred seventy-nine'), (4277, 11918, 'eleven thousand nine hundred eighteen'), (4278, 56420, 'fifty-six thousand four hundred twenty'), (4279, 74416, 'seventy-four thousand four hundred sixteen'), (4280, 58235, 'fifty-eight thousand two hundred thirty-five'), (4281, 87856, 'eighty-seven thousand eight hundred fifty-six'), (4282, 13448, 'thirteen thousand four hundred forty-eight'), (4283, 28916, 'twenty-eight thousand nine hundred sixteen'), (4284, 27490, 'twenty-seven thousand four hundred ninety'), (4285, 83616, 'eighty-three thousand six hundred sixteen'), (4286, 82299, 'eighty-two thousand two hundred ninety-nine'), (4287, 83745, 'eighty-three thousand seven hundred forty-five'), (4288, 58854, 'fifty-eight thousand eight hundred fifty-four'), (4289, 712, 'seven hundred twelve'), (4290, 7943, 'seven thousand nine hundred forty-three'), (4291, 80867, 'eighty thousand eight hundred sixty-seven'), (4292, 61075, 'sixty-one thousand seventy-five'), (4293, 19266, 'nineteen thousand two hundred sixty-six'), (4294, 87747, 'eighty-seven thousand seven hundred forty-seven'), (4295, 59620, 'fifty-nine thousand six hundred twenty'), (4296, 85069, 'eighty-five thousand sixty-nine'), (4297, 3023, 'three thousand twenty-three'), (4298, 3285, 'three thousand two hundred eighty-five'), (4299, 52482, 'fifty-two thousand four hundred eighty-two'), (4300, 28307, 'twenty-eight thousand three hundred seven'), (4301, 6063, 'six thousand sixty-three'), (4302, 29100, 'twenty-nine thousand one hundred'), (4303, 24071, 'twenty-four thousand seventy-one'), (4304, 7781, 'seven thousand seven hundred eighty-one'), (4305, 91968, 'ninety-one thousand nine hundred sixty-eight'), (4306, 83326, 'eighty-three thousand three hundred twenty-six'), (4307, 77121, 'seventy-seven thousand one hundred twenty-one'), (4308, 11898, 'eleven thousand eight hundred ninety-eight'), (4309, 16455, 'sixteen thousand four hundred fifty-five'), (4310, 21402, 'twenty-one thousand four hundred two'), (4311, 92170, 'ninety-two thousand one hundred seventy'), (4312, 25538, 'twenty-five thousand five hundred thirty-eight'), (4313, 57641, 'fifty-seven thousand six hundred forty-one'), (4314, 20659, 'twenty thousand six hundred fifty-nine'), (4315, 49460, 'forty-nine thousand four hundred sixty'), (4316, 52615, 'fifty-two thousand six hundred fifteen'), (4317, 29520, 'twenty-nine thousand five hundred twenty'), (4318, 44000, 'forty-four thousand'), (4319, 31006, 'thirty-one thousand six'), (4320, 75457, 'seventy-five thousand four hundred fifty-seven'), (4321, 19739, 'nineteen thousand seven hundred thirty-nine'), (4322, 46344, 'forty-six thousand three hundred forty-four'), (4323, 83965, 'eighty-three thousand nine hundred sixty-five'), (4324, 19996, 'nineteen thousand nine hundred ninety-six'), (4325, 452, 'four hundred fifty-two'), (4326, 13382, 'thirteen thousand three hundred eighty-two'), (4327, 14471, 'fourteen thousand four hundred seventy-one'), (4328, 79069, 'seventy-nine thousand sixty-nine'), (4329, 16526, 'sixteen thousand five hundred twenty-six'), (4330, 29052, 'twenty-nine thousand fifty-two'), (4331, 46977, 'forty-six thousand nine hundred seventy-seven'), (4332, 73327, 'seventy-three thousand three hundred twenty-seven'), (4333, 44419, 'forty-four thousand four hundred nineteen'), (4334, 4944, 'four thousand nine hundred forty-four'), (4335, 22380, 'twenty-two thousand three hundred eighty'), (4336, 25638, 'twenty-five thousand six hundred thirty-eight'), (4337, 7784, 'seven thousand seven hundred eighty-four'), (4338, 65425, 'sixty-five thousand four hundred twenty-five'), (4339, 90983, 'ninety thousand nine hundred eighty-three'), (4340, 58570, 'fifty-eight thousand five hundred seventy'), (4341, 2038, 'two thousand thirty-eight'), (4342, 63935, 'sixty-three thousand nine hundred thirty-five'), (4343, 17875, 'seventeen thousand eight hundred seventy-five'), (4344, 15919, 'fifteen thousand nine hundred nineteen'), (4345, 96091, 'ninety-six thousand ninety-one'), (4346, 80985, 'eighty thousand nine hundred eighty-five'), (4347, 72594, 'seventy-two thousand five hundred ninety-four'), (4348, 7545, 'seven thousand five hundred forty-five'), (4349, 96620, 'ninety-six thousand six hundred twenty'), (4350, 29074, 'twenty-nine thousand seventy-four'), (4351, 86868, 'eighty-six thousand eight hundred sixty-eight'), (4352, 32658, 'thirty-two thousand six hundred fifty-eight'), (4353, 87750, 'eighty-seven thousand seven hundred fifty'), (4354, 57784, 'fifty-seven thousand seven hundred eighty-four'), (4355, 77227, 'seventy-seven thousand two hundred twenty-seven'), (4356, 56270, 'fifty-six thousand two hundred seventy'), (4357, 78163, 'seventy-eight thousand one hundred sixty-three'), (4358, 35, 'thirty-five'), (4359, 99191, 'ninety-nine thousand one hundred ninety-one'), (4360, 72811, 'seventy-two thousand eight hundred eleven'), (4361, 56053, 'fifty-six thousand fifty-three'), (4362, 74813, 'seventy-four thousand eight hundred thirteen'), (4363, 83316, 'eighty-three thousand three hundred sixteen'), (4364, 98263, 'ninety-eight thousand two hundred sixty-three'), (4365, 65848, 'sixty-five thousand eight hundred forty-eight'), (4366, 10213, 'ten thousand two hundred thirteen'), (4367, 98246, 'ninety-eight thousand two hundred forty-six'), (4368, 62245, 'sixty-two thousand two hundred forty-five'), (4369, 93505, 'ninety-three thousand five hundred five'), (4370, 8959, 'eight thousand nine hundred fifty-nine'), (4371, 37532, 'thirty-seven thousand five hundred thirty-two'), (4372, 5761, 'five thousand seven hundred sixty-one'), (4373, 74102, 'seventy-four thousand one hundred two'), (4374, 34528, 'thirty-four thousand five hundred twenty-eight'), (4375, 98738, 'ninety-eight thousand seven hundred thirty-eight'), (4376, 55141, 'fifty-five thousand one hundred forty-one'), (4377, 72199, 'seventy-two thousand one hundred ninety-nine'), (4378, 89523, 'eighty-nine thousand five hundred twenty-three'), (4379, 80123, 'eighty thousand one hundred twenty-three'), (4380, 50641, 'fifty thousand six hundred forty-one'), (4381, 48796, 'forty-eight thousand seven hundred ninety-six'), (4382, 95851, 'ninety-five thousand eight hundred fifty-one'), (4383, 10712, 'ten thousand seven hundred twelve'), (4384, 40887, 'forty thousand eight hundred eighty-seven'), (4385, 99523, 'ninety-nine thousand five hundred twenty-three'), (4386, 70303, 'seventy thousand three hundred three'), (4387, 32752, 'thirty-two thousand seven hundred fifty-two'), (4388, 31712, 'thirty-one thousand seven hundred twelve'), (4389, 60206, 'sixty thousand two hundred six'), (4390, 9127, 'nine thousand one hundred twenty-seven'), (4391, 23416, 'twenty-three thousand four hundred sixteen'), (4392, 91711, 'ninety-one thousand seven hundred eleven'), (4393, 77730, 'seventy-seven thousand seven hundred thirty'), (4394, 7848, 'seven thousand eight hundred forty-eight'), (4395, 99348, 'ninety-nine thousand three hundred forty-eight'), (4396, 8076, 'eight thousand seventy-six'), (4397, 66494, 'sixty-six thousand four hundred ninety-four'), (4398, 27738, 'twenty-seven thousand seven hundred thirty-eight'), (4399, 41187, 'forty-one thousand one hundred eighty-seven'), (4400, 28345, 'twenty-eight thousand three hundred forty-five'), (4401, 63280, 'sixty-three thousand two hundred eighty'), (4402, 67785, 'sixty-seven thousand seven hundred eighty-five'), (4403, 94473, 'ninety-four thousand four hundred seventy-three'), (4404, 94817, 'ninety-four thousand eight hundred seventeen'), (4405, 12443, 'twelve thousand four hundred forty-three'), (4406, 2285, 'two thousand two hundred eighty-five'), (4407, 51400, 'fifty-one thousand four hundred'), (4408, 74752, 'seventy-four thousand seven hundred fifty-two'), (4409, 75142, 'seventy-five thousand one hundred forty-two'), (4410, 800, 'eight hundred'), (4411, 43478, 'forty-three thousand four hundred seventy-eight'), (4412, 49832, 'forty-nine thousand eight hundred thirty-two'), (4413, 11799, 'eleven thousand seven hundred ninety-nine'), (4414, 82029, 'eighty-two thousand twenty-nine'), (4415, 15467, 'fifteen thousand four hundred sixty-seven'), (4416, 81691, 'eighty-one thousand six hundred ninety-one'), (4417, 98280, 'ninety-eight thousand two hundred eighty'), (4418, 47788, 'forty-seven thousand seven hundred eighty-eight'), (4419, 71283, 'seventy-one thousand two hundred eighty-three'), (4420, 37584, 'thirty-seven thousand five hundred eighty-four'), (4421, 9510, 'nine thousand five hundred ten'), (4422, 85829, 'eighty-five thousand eight hundred twenty-nine'), (4423, 61528, 'sixty-one thousand five hundred twenty-eight'), (4424, 17006, 'seventeen thousand six'), (4425, 7205, 'seven thousand two hundred five'), (4426, 18266, 'eighteen thousand two hundred sixty-six'), (4427, 10165, 'ten thousand one hundred sixty-five'), (4428, 96592, 'ninety-six thousand five hundred ninety-two'), (4429, 52225, 'fifty-two thousand two hundred twenty-five'), (4430, 18297, 'eighteen thousand two hundred ninety-seven'), (4431, 80152, 'eighty thousand one hundred fifty-two'), (4432, 54747, 'fifty-four thousand seven hundred forty-seven'), (4433, 7097, 'seven thousand ninety-seven'), (4434, 72780, 'seventy-two thousand seven hundred eighty'), (4435, 3665, 'three thousand six hundred sixty-five'), (4436, 63624, 'sixty-three thousand six hundred twenty-four'), (4437, 88424, 'eighty-eight thousand four hundred twenty-four'), (4438, 18709, 'eighteen thousand seven hundred nine'), (4439, 14555, 'fourteen thousand five hundred fifty-five'), (4440, 95879, 'ninety-five thousand eight hundred seventy-nine'), (4441, 61798, 'sixty-one thousand seven hundred ninety-eight'), (4442, 49075, 'forty-nine thousand seventy-five'), (4443, 76517, 'seventy-six thousand five hundred seventeen'), (4444, 71524, 'seventy-one thousand five hundred twenty-four'), (4445, 79718, 'seventy-nine thousand seven hundred eighteen'), (4446, 35387, 'thirty-five thousand three hundred eighty-seven'), (4447, 2913, 'two thousand nine hundred thirteen'), (4448, 15569, 'fifteen thousand five hundred sixty-nine'), (4449, 10143, 'ten thousand one hundred forty-three'), (4450, 3681, 'three thousand six hundred eighty-one'), (4451, 62628, 'sixty-two thousand six hundred twenty-eight'), (4452, 55345, 'fifty-five thousand three hundred forty-five'), (4453, 74335, 'seventy-four thousand three hundred thirty-five'), (4454, 87541, 'eighty-seven thousand five hundred forty-one'), (4455, 79989, 'seventy-nine thousand nine hundred eighty-nine'), (4456, 15788, 'fifteen thousand seven hundred eighty-eight'), (4457, 45203, 'forty-five thousand two hundred three'), (4458, 15077, 'fifteen thousand seventy-seven'), (4459, 95049, 'ninety-five thousand forty-nine'), (4460, 61922, 'sixty-one thousand nine hundred twenty-two'), (4461, 75353, 'seventy-five thousand three hundred fifty-three'), (4462, 90282, 'ninety thousand two hundred eighty-two'), (4463, 86563, 'eighty-six thousand five hundred sixty-three'), (4464, 9224, 'nine thousand two hundred twenty-four'), (4465, 33026, 'thirty-three thousand twenty-six'), (4466, 30553, 'thirty thousand five hundred fifty-three'), (4467, 61393, 'sixty-one thousand three hundred ninety-three'), (4468, 90975, 'ninety thousand nine hundred seventy-five'), (4469, 61005, 'sixty-one thousand five'), (4470, 6497, 'six thousand four hundred ninety-seven'), (4471, 66224, 'sixty-six thousand two hundred twenty-four'), (4472, 798, 'seven hundred ninety-eight'), (4473, 41513, 'forty-one thousand five hundred thirteen'), (4474, 69469, 'sixty-nine thousand four hundred sixty-nine'), (4475, 21, 'twenty-one'), (4476, 88103, 'eighty-eight thousand one hundred three'), (4477, 75495, 'seventy-five thousand four hundred ninety-five'), (4478, 98801, 'ninety-eight thousand eight hundred one'), (4479, 67165, 'sixty-seven thousand one hundred sixty-five'), (4480, 9413, 'nine thousand four hundred thirteen'), (4481, 50214, 'fifty thousand two hundred fourteen'), (4482, 37033, 'thirty-seven thousand thirty-three'), (4483, 25036, 'twenty-five thousand thirty-six'), (4484, 56330, 'fifty-six thousand three hundred thirty'), (4485, 81512, 'eighty-one thousand five hundred twelve'), (4486, 75582, 'seventy-five thousand five hundred eighty-two'), (4487, 86710, 'eighty-six thousand seven hundred ten'), (4488, 76854, 'seventy-six thousand eight hundred fifty-four'), (4489, 27538, 'twenty-seven thousand five hundred thirty-eight'), (4490, 38898, 'thirty-eight thousand eight hundred ninety-eight'), (4491, 82087, 'eighty-two thousand eighty-seven'), (4492, 91525, 'ninety-one thousand five hundred twenty-five'), (4493, 69575, 'sixty-nine thousand five hundred seventy-five'), (4494, 46944, 'forty-six thousand nine hundred forty-four'), (4495, 770, 'seven hundred seventy'), (4496, 77589, 'seventy-seven thousand five hundred eighty-nine'), (4497, 46484, 'forty-six thousand four hundred eighty-four'), (4498, 26049, 'twenty-six thousand forty-nine'), (4499, 48002, 'forty-eight thousand two'), (4500, 81084, 'eighty-one thousand eighty-four'), (4501, 1240, 'one thousand two hundred forty'), (4502, 2925, 'two thousand nine hundred twenty-five'), (4503, 24746, 'twenty-four thousand seven hundred forty-six'), (4504, 81521, 'eighty-one thousand five hundred twenty-one'), (4505, 16707, 'sixteen thousand seven hundred seven'), (4506, 96559, 'ninety-six thousand five hundred fifty-nine'), (4507, 36314, 'thirty-six thousand three hundred fourteen'), (4508, 84985, 'eighty-four thousand nine hundred eighty-five'), (4509, 41122, 'forty-one thousand one hundred twenty-two'), (4510, 54909, 'fifty-four thousand nine hundred nine'), (4511, 25504, 'twenty-five thousand five hundred four'), (4512, 11813, 'eleven thousand eight hundred thirteen'), (4513, 51895, 'fifty-one thousand eight hundred ninety-five'), (4514, 93965, 'ninety-three thousand nine hundred sixty-five'), (4515, 33573, 'thirty-three thousand five hundred seventy-three'), (4516, 77515, 'seventy-seven thousand five hundred fifteen'), (4517, 35612, 'thirty-five thousand six hundred twelve'), (4518, 93610, 'ninety-three thousand six hundred ten'), (4519, 75004, 'seventy-five thousand four'), (4520, 97891, 'ninety-seven thousand eight hundred ninety-one'), (4521, 14779, 'fourteen thousand seven hundred seventy-nine'), (4522, 32754, 'thirty-two thousand seven hundred fifty-four'), (4523, 86256, 'eighty-six thousand two hundred fifty-six'), (4524, 90436, 'ninety thousand four hundred thirty-six'), (4525, 38187, 'thirty-eight thousand one hundred eighty-seven'), (4526, 50949, 'fifty thousand nine hundred forty-nine'), (4527, 18355, 'eighteen thousand three hundred fifty-five'), (4528, 63070, 'sixty-three thousand seventy'), (4529, 59655, 'fifty-nine thousand six hundred fifty-five'), (4530, 33976, 'thirty-three thousand nine hundred seventy-six'), (4531, 29394, 'twenty-nine thousand three hundred ninety-four'), (4532, 3645, 'three thousand six hundred forty-five'), (4533, 21838, 'twenty-one thousand eight hundred thirty-eight'), (4534, 95695, 'ninety-five thousand six hundred ninety-five'), (4535, 87327, 'eighty-seven thousand three hundred twenty-seven'), (4536, 54228, 'fifty-four thousand two hundred twenty-eight'), (4537, 3927, 'three thousand nine hundred twenty-seven'), (4538, 93132, 'ninety-three thousand one hundred thirty-two'), (4539, 39703, 'thirty-nine thousand seven hundred three'), (4540, 36547, 'thirty-six thousand five hundred forty-seven'), (4541, 69841, 'sixty-nine thousand eight hundred forty-one'), (4542, 29401, 'twenty-nine thousand four hundred one'), (4543, 73235, 'seventy-three thousand two hundred thirty-five'), (4544, 25054, 'twenty-five thousand fifty-four'), (4545, 93813, 'ninety-three thousand eight hundred thirteen'), (4546, 50627, 'fifty thousand six hundred twenty-seven'), (4547, 69063, 'sixty-nine thousand sixty-three'), (4548, 34191, 'thirty-four thousand one hundred ninety-one'), (4549, 81898, 'eighty-one thousand eight hundred ninety-eight'), (4550, 53809, 'fifty-three thousand eight hundred nine'), (4551, 40278, 'forty thousand two hundred seventy-eight'), (4552, 25498, 'twenty-five thousand four hundred ninety-eight'), (4553, 85055, 'eighty-five thousand fifty-five'), (4554, 35845, 'thirty-five thousand eight hundred forty-five'), (4555, 64533, 'sixty-four thousand five hundred thirty-three'), (4556, 28673, 'twenty-eight thousand six hundred seventy-three'), (4557, 13782, 'thirteen thousand seven hundred eighty-two'), (4558, 35281, 'thirty-five thousand two hundred eighty-one'), (4559, 28515, 'twenty-eight thousand five hundred fifteen'), (4560, 87363, 'eighty-seven thousand three hundred sixty-three'), (4561, 83666, 'eighty-three thousand six hundred sixty-six'), (4562, 11621, 'eleven thousand six hundred twenty-one'), (4563, 3641, 'three thousand six hundred forty-one'), (4564, 16857, 'sixteen thousand eight hundred fifty-seven'), (4565, 5991, 'five thousand nine hundred ninety-one'), (4566, 3074, 'three thousand seventy-four'), (4567, 24474, 'twenty-four thousand four hundred seventy-four'), (4568, 75954, 'seventy-five thousand nine hundred fifty-four'), (4569, 88426, 'eighty-eight thousand four hundred twenty-six'), (4570, 79581, 'seventy-nine thousand five hundred eighty-one'), (4571, 56822, 'fifty-six thousand eight hundred twenty-two'), (4572, 61539, 'sixty-one thousand five hundred thirty-nine'), (4573, 55173, 'fifty-five thousand one hundred seventy-three'), (4574, 46823, 'forty-six thousand eight hundred twenty-three'), (4575, 57063, 'fifty-seven thousand sixty-three'), (4576, 61109, 'sixty-one thousand one hundred nine'), (4577, 85461, 'eighty-five thousand four hundred sixty-one'), (4578, 84474, 'eighty-four thousand four hundred seventy-four'), (4579, 67682, 'sixty-seven thousand six hundred eighty-two'), (4580, 93659, 'ninety-three thousand six hundred fifty-nine'), (4581, 1504, 'one thousand five hundred four'), (4582, 58717, 'fifty-eight thousand seven hundred seventeen'), (4583, 35761, 'thirty-five thousand seven hundred sixty-one'), (4584, 66392, 'sixty-six thousand three hundred ninety-two'), (4585, 5477, 'five thousand four hundred seventy-seven'), (4586, 77005, 'seventy-seven thousand five'), (4587, 66107, 'sixty-six thousand one hundred seven'), (4588, 25747, 'twenty-five thousand seven hundred forty-seven'), (4589, 62765, 'sixty-two thousand seven hundred sixty-five'), (4590, 83802, 'eighty-three thousand eight hundred two'), (4591, 14872, 'fourteen thousand eight hundred seventy-two'), (4592, 75654, 'seventy-five thousand six hundred fifty-four'), (4593, 6280, 'six thousand two hundred eighty'), (4594, 25753, 'twenty-five thousand seven hundred fifty-three'), (4595, 14555, 'fourteen thousand five hundred fifty-five'), (4596, 76324, 'seventy-six thousand three hundred twenty-four'), (4597, 94278, 'ninety-four thousand two hundred seventy-eight'), (4598, 45729, 'forty-five thousand seven hundred twenty-nine'), (4599, 49554, 'forty-nine thousand five hundred fifty-four'), (4600, 57459, 'fifty-seven thousand four hundred fifty-nine'), (4601, 90993, 'ninety thousand nine hundred ninety-three'), (4602, 46528, 'forty-six thousand five hundred twenty-eight'), (4603, 31265, 'thirty-one thousand two hundred sixty-five'), (4604, 90098, 'ninety thousand ninety-eight'), (4605, 26781, 'twenty-six thousand seven hundred eighty-one'), (4606, 49781, 'forty-nine thousand seven hundred eighty-one'), (4607, 4595, 'four thousand five hundred ninety-five'), (4608, 89477, 'eighty-nine thousand four hundred seventy-seven'), (4609, 96900, 'ninety-six thousand nine hundred'), (4610, 60656, 'sixty thousand six hundred fifty-six'), (4611, 54272, 'fifty-four thousand two hundred seventy-two'), (4612, 41189, 'forty-one thousand one hundred eighty-nine'), (4613, 56243, 'fifty-six thousand two hundred forty-three'), (4614, 52142, 'fifty-two thousand one hundred forty-two'), (4615, 24729, 'twenty-four thousand seven hundred twenty-nine'), (4616, 31438, 'thirty-one thousand four hundred thirty-eight'), (4617, 89875, 'eighty-nine thousand eight hundred seventy-five'), (4618, 75762, 'seventy-five thousand seven hundred sixty-two'), (4619, 22397, 'twenty-two thousand three hundred ninety-seven'), (4620, 49736, 'forty-nine thousand seven hundred thirty-six'), (4621, 69296, 'sixty-nine thousand two hundred ninety-six'), (4622, 25552, 'twenty-five thousand five hundred fifty-two'), (4623, 21628, 'twenty-one thousand six hundred twenty-eight'), (4624, 52433, 'fifty-two thousand four hundred thirty-three'), (4625, 85636, 'eighty-five thousand six hundred thirty-six'), (4626, 61410, 'sixty-one thousand four hundred ten'), (4627, 80073, 'eighty thousand seventy-three'), (4628, 82404, 'eighty-two thousand four hundred four'), (4629, 82304, 'eighty-two thousand three hundred four'), (4630, 29735, 'twenty-nine thousand seven hundred thirty-five'), (4631, 48451, 'forty-eight thousand four hundred fifty-one'), (4632, 62223, 'sixty-two thousand two hundred twenty-three'), (4633, 147, 'one hundred forty-seven'), (4634, 6878, 'six thousand eight hundred seventy-eight'), (4635, 52925, 'fifty-two thousand nine hundred twenty-five'), (4636, 56386, 'fifty-six thousand three hundred eighty-six'), (4637, 86400, 'eighty-six thousand four hundred'), (4638, 86982, 'eighty-six thousand nine hundred eighty-two'), (4639, 67607, 'sixty-seven thousand six hundred seven'), (4640, 2173, 'two thousand one hundred seventy-three'), (4641, 21617, 'twenty-one thousand six hundred seventeen'), (4642, 41225, 'forty-one thousand two hundred twenty-five'), (4643, 34699, 'thirty-four thousand six hundred ninety-nine'), (4644, 2195, 'two thousand one hundred ninety-five'), (4645, 80084, 'eighty thousand eighty-four'), (4646, 43347, 'forty-three thousand three hundred forty-seven'), (4647, 41637, 'forty-one thousand six hundred thirty-seven'), (4648, 6485, 'six thousand four hundred eighty-five'), (4649, 34080, 'thirty-four thousand eighty'), (4650, 64636, 'sixty-four thousand six hundred thirty-six'), (4651, 54189, 'fifty-four thousand one hundred eighty-nine'), (4652, 16087, 'sixteen thousand eighty-seven'), (4653, 69549, 'sixty-nine thousand five hundred forty-nine'), (4654, 14602, 'fourteen thousand six hundred two'), (4655, 30139, 'thirty thousand one hundred thirty-nine'), (4656, 10911, 'ten thousand nine hundred eleven'), (4657, 57195, 'fifty-seven thousand one hundred ninety-five'), (4658, 84212, 'eighty-four thousand two hundred twelve'), (4659, 87960, 'eighty-seven thousand nine hundred sixty'), (4660, 72679, 'seventy-two thousand six hundred seventy-nine'), (4661, 48629, 'forty-eight thousand six hundred twenty-nine'), (4662, 74208, 'seventy-four thousand two hundred eight'), (4663, 34809, 'thirty-four thousand eight hundred nine'), (4664, 25138, 'twenty-five thousand one hundred thirty-eight'), (4665, 88467, 'eighty-eight thousand four hundred sixty-seven'), (4666, 37859, 'thirty-seven thousand eight hundred fifty-nine'), (4667, 86442, 'eighty-six thousand four hundred forty-two'), (4668, 47276, 'forty-seven thousand two hundred seventy-six'), (4669, 91827, 'ninety-one thousand eight hundred twenty-seven'), (4670, 97530, 'ninety-seven thousand five hundred thirty'), (4671, 81356, 'eighty-one thousand three hundred fifty-six'), (4672, 12399, 'twelve thousand three hundred ninety-nine'), (4673, 48910, 'forty-eight thousand nine hundred ten'), (4674, 55625, 'fifty-five thousand six hundred twenty-five'), (4675, 63024, 'sixty-three thousand twenty-four'), (4676, 46165, 'forty-six thousand one hundred sixty-five'), (4677, 7778, 'seven thousand seven hundred seventy-eight'), (4678, 27255, 'twenty-seven thousand two hundred fifty-five'), (4679, 31664, 'thirty-one thousand six hundred sixty-four'), (4680, 59626, 'fifty-nine thousand six hundred twenty-six'), (4681, 35045, 'thirty-five thousand forty-five'), (4682, 58962, 'fifty-eight thousand nine hundred sixty-two'), (4683, 79613, 'seventy-nine thousand six hundred thirteen'), (4684, 85752, 'eighty-five thousand seven hundred fifty-two'), (4685, 15033, 'fifteen thousand thirty-three'), (4686, 96883, 'ninety-six thousand eight hundred eighty-three'), (4687, 21002, 'twenty-one thousand two'), (4688, 37469, 'thirty-seven thousand four hundred sixty-nine'), (4689, 16726, 'sixteen thousand seven hundred twenty-six'), (4690, 70997, 'seventy thousand nine hundred ninety-seven'), (4691, 82097, 'eighty-two thousand ninety-seven'), (4692, 6697, 'six thousand six hundred ninety-seven'), (4693, 16948, 'sixteen thousand nine hundred forty-eight'), (4694, 11934, 'eleven thousand nine hundred thirty-four'), (4695, 53419, 'fifty-three thousand four hundred nineteen'), (4696, 75955, 'seventy-five thousand nine hundred fifty-five'), (4697, 14845, 'fourteen thousand eight hundred forty-five'), (4698, 15826, 'fifteen thousand eight hundred twenty-six'), (4699, 61614, 'sixty-one thousand six hundred fourteen'), (4700, 70358, 'seventy thousand three hundred fifty-eight'), (4701, 7950, 'seven thousand nine hundred fifty'), (4702, 72071, 'seventy-two thousand seventy-one'), (4703, 41427, 'forty-one thousand four hundred twenty-seven'), (4704, 5793, 'five thousand seven hundred ninety-three'), (4705, 99509, 'ninety-nine thousand five hundred nine'), (4706, 66725, 'sixty-six thousand seven hundred twenty-five'), (4707, 80187, 'eighty thousand one hundred eighty-seven'), (4708, 87891, 'eighty-seven thousand eight hundred ninety-one'), (4709, 56902, 'fifty-six thousand nine hundred two'), (4710, 7062, 'seven thousand sixty-two'), (4711, 55492, 'fifty-five thousand four hundred ninety-two'), (4712, 81473, 'eighty-one thousand four hundred seventy-three'), (4713, 58945, 'fifty-eight thousand nine hundred forty-five'), (4714, 37392, 'thirty-seven thousand three hundred ninety-two'), (4715, 52085, 'fifty-two thousand eighty-five'), (4716, 77280, 'seventy-seven thousand two hundred eighty'), (4717, 12164, 'twelve thousand one hundred sixty-four'), (4718, 39604, 'thirty-nine thousand six hundred four'), (4719, 56620, 'fifty-six thousand six hundred twenty'), (4720, 80749, 'eighty thousand seven hundred forty-nine'), (4721, 29119, 'twenty-nine thousand one hundred nineteen'), (4722, 8157, 'eight thousand one hundred fifty-seven'), (4723, 72769, 'seventy-two thousand seven hundred sixty-nine'), (4724, 91723, 'ninety-one thousand seven hundred twenty-three'), (4725, 91965, 'ninety-one thousand nine hundred sixty-five'), (4726, 52001, 'fifty-two thousand one'), (4727, 42827, 'forty-two thousand eight hundred twenty-seven'), (4728, 17563, 'seventeen thousand five hundred sixty-three'), (4729, 28505, 'twenty-eight thousand five hundred five'), (4730, 69035, 'sixty-nine thousand thirty-five'), (4731, 7523, 'seven thousand five hundred twenty-three'), (4732, 61903, 'sixty-one thousand nine hundred three'), (4733, 82398, 'eighty-two thousand three hundred ninety-eight'), (4734, 85492, 'eighty-five thousand four hundred ninety-two'), (4735, 2186, 'two thousand one hundred eighty-six'), (4736, 99572, 'ninety-nine thousand five hundred seventy-two'), (4737, 29294, 'twenty-nine thousand two hundred ninety-four'), (4738, 3750, 'three thousand seven hundred fifty'), (4739, 56326, 'fifty-six thousand three hundred twenty-six'), (4740, 52409, 'fifty-two thousand four hundred nine'), (4741, 19675, 'nineteen thousand six hundred seventy-five'), (4742, 47832, 'forty-seven thousand eight hundred thirty-two'), (4743, 82499, 'eighty-two thousand four hundred ninety-nine'), (4744, 48009, 'forty-eight thousand nine'), (4745, 9329, 'nine thousand three hundred twenty-nine'), (4746, 32273, 'thirty-two thousand two hundred seventy-three'), (4747, 24342, 'twenty-four thousand three hundred forty-two'), (4748, 53164, 'fifty-three thousand one hundred sixty-four'), (4749, 38214, 'thirty-eight thousand two hundred fourteen'), (4750, 24790, 'twenty-four thousand seven hundred ninety'), (4751, 51209, 'fifty-one thousand two hundred nine'), (4752, 31913, 'thirty-one thousand nine hundred thirteen'), (4753, 5221, 'five thousand two hundred twenty-one'), (4754, 24833, 'twenty-four thousand eight hundred thirty-three'), (4755, 63212, 'sixty-three thousand two hundred twelve'), (4756, 86686, 'eighty-six thousand six hundred eighty-six'), (4757, 49829, 'forty-nine thousand eight hundred twenty-nine'), (4758, 45560, 'forty-five thousand five hundred sixty'), (4759, 83083, 'eighty-three thousand eighty-three'), (4760, 30804, 'thirty thousand eight hundred four'), (4761, 83416, 'eighty-three thousand four hundred sixteen'), (4762, 13225, 'thirteen thousand two hundred twenty-five'), (4763, 78037, 'seventy-eight thousand thirty-seven'), (4764, 91227, 'ninety-one thousand two hundred twenty-seven'), (4765, 51755, 'fifty-one thousand seven hundred fifty-five'), (4766, 22163, 'twenty-two thousand one hundred sixty-three'), (4767, 70509, 'seventy thousand five hundred nine'), (4768, 79537, 'seventy-nine thousand five hundred thirty-seven'), (4769, 44627, 'forty-four thousand six hundred twenty-seven'), (4770, 92844, 'ninety-two thousand eight hundred forty-four'), (4771, 20804, 'twenty thousand eight hundred four'), (4772, 53296, 'fifty-three thousand two hundred ninety-six'), (4773, 98831, 'ninety-eight thousand eight hundred thirty-one'), (4774, 22003, 'twenty-two thousand three'), (4775, 17198, 'seventeen thousand one hundred ninety-eight'), (4776, 48790, 'forty-eight thousand seven hundred ninety'), (4777, 10162, 'ten thousand one hundred sixty-two'), (4778, 77362, 'seventy-seven thousand three hundred sixty-two'), (4779, 4143, 'four thousand one hundred forty-three'), (4780, 42531, 'forty-two thousand five hundred thirty-one'), (4781, 33238, 'thirty-three thousand two hundred thirty-eight'), (4782, 65677, 'sixty-five thousand six hundred seventy-seven'), (4783, 94766, 'ninety-four thousand seven hundred sixty-six'), (4784, 85655, 'eighty-five thousand six hundred fifty-five'), (4785, 72849, 'seventy-two thousand eight hundred forty-nine'), (4786, 59333, 'fifty-nine thousand three hundred thirty-three'), (4787, 84413, 'eighty-four thousand four hundred thirteen'), (4788, 60015, 'sixty thousand fifteen'), (4789, 77987, 'seventy-seven thousand nine hundred eighty-seven'), (4790, 49079, 'forty-nine thousand seventy-nine'), (4791, 16080, 'sixteen thousand eighty'), (4792, 64104, 'sixty-four thousand one hundred four'), (4793, 93471, 'ninety-three thousand four hundred seventy-one'), (4794, 38891, 'thirty-eight thousand eight hundred ninety-one'), (4795, 91732, 'ninety-one thousand seven hundred thirty-two'), (4796, 37815, 'thirty-seven thousand eight hundred fifteen'), (4797, 62190, 'sixty-two thousand one hundred ninety'), (4798, 48543, 'forty-eight thousand five hundred forty-three'), (4799, 97640, 'ninety-seven thousand six hundred forty'), (4800, 28116, 'twenty-eight thousand one hundred sixteen'), (4801, 58220, 'fifty-eight thousand two hundred twenty'), (4802, 55682, 'fifty-five thousand six hundred eighty-two'), (4803, 79669, 'seventy-nine thousand six hundred sixty-nine'), (4804, 875, 'eight hundred seventy-five'), (4805, 37484, 'thirty-seven thousand four hundred eighty-four'), (4806, 60499, 'sixty thousand four hundred ninety-nine'), (4807, 39708, 'thirty-nine thousand seven hundred eight'), (4808, 42126, 'forty-two thousand one hundred twenty-six'), (4809, 44099, 'forty-four thousand ninety-nine'), (4810, 22129, 'twenty-two thousand one hundred twenty-nine'), (4811, 28170, 'twenty-eight thousand one hundred seventy'), (4812, 44039, 'forty-four thousand thirty-nine'), (4813, 15200, 'fifteen thousand two hundred'), (4814, 76217, 'seventy-six thousand two hundred seventeen'), (4815, 1680, 'one thousand six hundred eighty'), (4816, 24500, 'twenty-four thousand five hundred'), (4817, 41140, 'forty-one thousand one hundred forty'), (4818, 26863, 'twenty-six thousand eight hundred sixty-three'), (4819, 97029, 'ninety-seven thousand twenty-nine'), (4820, 10602, 'ten thousand six hundred two'), (4821, 42379, 'forty-two thousand three hundred seventy-nine'), (4822, 14969, 'fourteen thousand nine hundred sixty-nine'), (4823, 76245, 'seventy-six thousand two hundred forty-five'), (4824, 66360, 'sixty-six thousand three hundred sixty'), (4825, 75475, 'seventy-five thousand four hundred seventy-five'), (4826, 34858, 'thirty-four thousand eight hundred fifty-eight'), (4827, 74993, 'seventy-four thousand nine hundred ninety-three'), (4828, 19014, 'nineteen thousand fourteen'), (4829, 80289, 'eighty thousand two hundred eighty-nine'), (4830, 23267, 'twenty-three thousand two hundred sixty-seven'), (4831, 3825, 'three thousand eight hundred twenty-five'), (4832, 52691, 'fifty-two thousand six hundred ninety-one'), (4833, 94716, 'ninety-four thousand seven hundred sixteen'), (4834, 37475, 'thirty-seven thousand four hundred seventy-five'), (4835, 10097, 'ten thousand ninety-seven'), (4836, 34612, 'thirty-four thousand six hundred twelve'), (4837, 6177, 'six thousand one hundred seventy-seven'), (4838, 79949, 'seventy-nine thousand nine hundred forty-nine'), (4839, 2101, 'two thousand one hundred one'), (4840, 92602, 'ninety-two thousand six hundred two'), (4841, 86662, 'eighty-six thousand six hundred sixty-two'), (4842, 4550, 'four thousand five hundred fifty'), (4843, 19952, 'nineteen thousand nine hundred fifty-two'), (4844, 85057, 'eighty-five thousand fifty-seven'), (4845, 89932, 'eighty-nine thousand nine hundred thirty-two'), (4846, 88702, 'eighty-eight thousand seven hundred two'), (4847, 6053, 'six thousand fifty-three'), (4848, 14956, 'fourteen thousand nine hundred fifty-six'), (4849, 82044, 'eighty-two thousand forty-four'), (4850, 40502, 'forty thousand five hundred two'), (4851, 66270, 'sixty-six thousand two hundred seventy'), (4852, 67502, 'sixty-seven thousand five hundred two'), (4853, 16700, 'sixteen thousand seven hundred'), (4854, 3480, 'three thousand four hundred eighty'), (4855, 54407, 'fifty-four thousand four hundred seven'), (4856, 17013, 'seventeen thousand thirteen'), (4857, 58564, 'fifty-eight thousand five hundred sixty-four'), (4858, 12000, 'twelve thousand'), (4859, 80035, 'eighty thousand thirty-five'), (4860, 49411, 'forty-nine thousand four hundred eleven'), (4861, 6612, 'six thousand six hundred twelve'), (4862, 35349, 'thirty-five thousand three hundred forty-nine'), (4863, 78876, 'seventy-eight thousand eight hundred seventy-six'), (4864, 15385, 'fifteen thousand three hundred eighty-five'), (4865, 67216, 'sixty-seven thousand two hundred sixteen'), (4866, 20820, 'twenty thousand eight hundred twenty'), (4867, 57372, 'fifty-seven thousand three hundred seventy-two'), (4868, 92182, 'ninety-two thousand one hundred eighty-two'), (4869, 11215, 'eleven thousand two hundred fifteen'), (4870, 71712, 'seventy-one thousand seven hundred twelve'), (4871, 96324, 'ninety-six thousand three hundred twenty-four'), (4872, 59297, 'fifty-nine thousand two hundred ninety-seven'), (4873, 41951, 'forty-one thousand nine hundred fifty-one'), (4874, 94949, 'ninety-four thousand nine hundred forty-nine'), (4875, 89547, 'eighty-nine thousand five hundred forty-seven'), (4876, 62632, 'sixty-two thousand six hundred thirty-two'), (4877, 73077, 'seventy-three thousand seventy-seven'), (4878, 92981, 'ninety-two thousand nine hundred eighty-one'), (4879, 6659, 'six thousand six hundred fifty-nine'), (4880, 70080, 'seventy thousand eighty'), (4881, 46383, 'forty-six thousand three hundred eighty-three'), (4882, 46585, 'forty-six thousand five hundred eighty-five'), (4883, 18286, 'eighteen thousand two hundred eighty-six'), (4884, 54538, 'fifty-four thousand five hundred thirty-eight'), (4885, 36581, 'thirty-six thousand five hundred eighty-one'), (4886, 98167, 'ninety-eight thousand one hundred sixty-seven'), (4887, 88869, 'eighty-eight thousand eight hundred sixty-nine'), (4888, 25749, 'twenty-five thousand seven hundred forty-nine'), (4889, 63033, 'sixty-three thousand thirty-three'), (4890, 35900, 'thirty-five thousand nine hundred'), (4891, 7486, 'seven thousand four hundred eighty-six'), (4892, 94932, 'ninety-four thousand nine hundred thirty-two'), (4893, 3554, 'three thousand five hundred fifty-four'), (4894, 30294, 'thirty thousand two hundred ninety-four'), (4895, 83844, 'eighty-three thousand eight hundred forty-four'), (4896, 38278, 'thirty-eight thousand two hundred seventy-eight'), (4897, 39034, 'thirty-nine thousand thirty-four'), (4898, 27746, 'twenty-seven thousand seven hundred forty-six'), (4899, 43092, 'forty-three thousand ninety-two'), (4900, 21265, 'twenty-one thousand two hundred sixty-five'), (4901, 63625, 'sixty-three thousand six hundred twenty-five'), (4902, 5078, 'five thousand seventy-eight'), (4903, 52275, 'fifty-two thousand two hundred seventy-five'), (4904, 46559, 'forty-six thousand five hundred fifty-nine'), (4905, 96165, 'ninety-six thousand one hundred sixty-five'), (4906, 64208, 'sixty-four thousand two hundred eight'), (4907, 92308, 'ninety-two thousand three hundred eight'), (4908, 12430, 'twelve thousand four hundred thirty'), (4909, 15531, 'fifteen thousand five hundred thirty-one'), (4910, 24735, 'twenty-four thousand seven hundred thirty-five'), (4911, 67909, 'sixty-seven thousand nine hundred nine'), (4912, 82301, 'eighty-two thousand three hundred one'), (4913, 92672, 'ninety-two thousand six hundred seventy-two'), (4914, 85586, 'eighty-five thousand five hundred eighty-six'), (4915, 28340, 'twenty-eight thousand three hundred forty'), (4916, 61592, 'sixty-one thousand five hundred ninety-two'), (4917, 19250, 'nineteen thousand two hundred fifty'), (4918, 23888, 'twenty-three thousand eight hundred eighty-eight'), (4919, 2292, 'two thousand two hundred ninety-two'), (4920, 95415, 'ninety-five thousand four hundred fifteen'), (4921, 41490, 'forty-one thousand four hundred ninety'), (4922, 68044, 'sixty-eight thousand forty-four'), (4923, 71962, 'seventy-one thousand nine hundred sixty-two'), (4924, 26763, 'twenty-six thousand seven hundred sixty-three'), (4925, 99728, 'ninety-nine thousand seven hundred twenty-eight'), (4926, 61207, 'sixty-one thousand two hundred seven'), (4927, 45953, 'forty-five thousand nine hundred fifty-three'), (4928, 99391, 'ninety-nine thousand three hundred ninety-one'), (4929, 9812, 'nine thousand eight hundred twelve'), (4930, 17705, 'seventeen thousand seven hundred five'), (4931, 27902, 'twenty-seven thousand nine hundred two'), (4932, 95210, 'ninety-five thousand two hundred ten'), (4933, 49364, 'forty-nine thousand three hundred sixty-four'), (4934, 52670, 'fifty-two thousand six hundred seventy'), (4935, 92511, 'ninety-two thousand five hundred eleven'), (4936, 97673, 'ninety-seven thousand six hundred seventy-three'), (4937, 54223, 'fifty-four thousand two hundred twenty-three'), (4938, 79805, 'seventy-nine thousand eight hundred five'), (4939, 21130, 'twenty-one thousand one hundred thirty'), (4940, 35937, 'thirty-five thousand nine hundred thirty-seven'), (4941, 77114, 'seventy-seven thousand one hundred fourteen'), (4942, 67387, 'sixty-seven thousand three hundred eighty-seven'), (4943, 37801, 'thirty-seven thousand eight hundred one'), (4944, 77073, 'seventy-seven thousand seventy-three'), (4945, 30190, 'thirty thousand one hundred ninety'), (4946, 95547, 'ninety-five thousand five hundred forty-seven'), (4947, 38975, 'thirty-eight thousand nine hundred seventy-five'), (4948, 68527, 'sixty-eight thousand five hundred twenty-seven'), (4949, 20626, 'twenty thousand six hundred twenty-six'), (4950, 2671, 'two thousand six hundred seventy-one'), (4951, 46834, 'forty-six thousand eight hundred thirty-four'), (4952, 70999, 'seventy thousand nine hundred ninety-nine'), (4953, 39790, 'thirty-nine thousand seven hundred ninety'), (4954, 25000, 'twenty-five thousand'), (4955, 1183, 'one thousand one hundred eighty-three'), (4956, 68473, 'sixty-eight thousand four hundred seventy-three'), (4957, 7251, 'seven thousand two hundred fifty-one'), (4958, 43609, 'forty-three thousand six hundred nine'), (4959, 5859, 'five thousand eight hundred fifty-nine'), (4960, 48938, 'forty-eight thousand nine hundred thirty-eight'), (4961, 70491, 'seventy thousand four hundred ninety-one'), (4962, 36344, 'thirty-six thousand three hundred forty-four'), (4963, 25136, 'twenty-five thousand one hundred thirty-six'), (4964, 5483, 'five thousand four hundred eighty-three'), (4965, 59782, 'fifty-nine thousand seven hundred eighty-two'), (4966, 83360, 'eighty-three thousand three hundred sixty'), (4967, 23464, 'twenty-three thousand four hundred sixty-four'), (4968, 44027, 'forty-four thousand twenty-seven'), (4969, 43114, 'forty-three thousand one hundred fourteen'), (4970, 21173, 'twenty-one thousand one hundred seventy-three'), (4971, 73577, 'seventy-three thousand five hundred seventy-seven'), (4972, 25946, 'twenty-five thousand nine hundred forty-six'), (4973, 80055, 'eighty thousand fifty-five'), (4974, 74693, 'seventy-four thousand six hundred ninety-three'), (4975, 72656, 'seventy-two thousand six hundred fifty-six'), (4976, 10775, 'ten thousand seven hundred seventy-five'), (4977, 50830, 'fifty thousand eight hundred thirty'), (4978, 22257, 'twenty-two thousand two hundred fifty-seven'), (4979, 22434, 'twenty-two thousand four hundred thirty-four'), (4980, 44815, 'forty-four thousand eight hundred fifteen'), (4981, 74790, 'seventy-four thousand seven hundred ninety'), (4982, 26020, 'twenty-six thousand twenty'), (4983, 74226, 'seventy-four thousand two hundred twenty-six'), (4984, 4612, 'four thousand six hundred twelve'), (4985, 15622, 'fifteen thousand six hundred twenty-two'), (4986, 40404, 'forty thousand four hundred four'), (4987, 57422, 'fifty-seven thousand four hundred twenty-two'), (4988, 29900, 'twenty-nine thousand nine hundred'), (4989, 76359, 'seventy-six thousand three hundred fifty-nine'), (4990, 55289, 'fifty-five thousand two hundred eighty-nine'), (4991, 47993, 'forty-seven thousand nine hundred ninety-three'), (4992, 66117, 'sixty-six thousand one hundred seventeen'), (4993, 54833, 'fifty-four thousand eight hundred thirty-three'), (4994, 54347, 'fifty-four thousand three hundred forty-seven'), (4995, 48578, 'forty-eight thousand five hundred seventy-eight'), (4996, 21743, 'twenty-one thousand seven hundred forty-three'), (4997, 65712, 'sixty-five thousand seven hundred twelve'), (4998, 99309, 'ninety-nine thousand three hundred nine'), (4999, 56777, 'fifty-six thousand seven hundred seventy-seven'), (5000, 76006, 'seventy-six thousand six'), (5001, 54584, 'fifty-four thousand five hundred eighty-four'), (5002, 39790, 'thirty-nine thousand seven hundred ninety'), (5003, 76793, 'seventy-six thousand seven hundred ninety-three'), (5004, 38354, 'thirty-eight thousand three hundred fifty-four'), (5005, 17321, 'seventeen thousand three hundred twenty-one'), (5006, 35674, 'thirty-five thousand six hundred seventy-four'), (5007, 69052, 'sixty-nine thousand fifty-two'), (5008, 37592, 'thirty-seven thousand five hundred ninety-two'), (5009, 19592, 'nineteen thousand five hundred ninety-two'), (5010, 41696, 'forty-one thousand six hundred ninety-six'), (5011, 46847, 'forty-six thousand eight hundred forty-seven'), (5012, 5559, 'five thousand five hundred fifty-nine'), (5013, 13973, 'thirteen thousand nine hundred seventy-three'), (5014, 85494, 'eighty-five thousand four hundred ninety-four'), (5015, 10036, 'ten thousand thirty-six'), (5016, 3631, 'three thousand six hundred thirty-one'), (5017, 4271, 'four thousand two hundred seventy-one'), (5018, 15463, 'fifteen thousand four hundred sixty-three'), (5019, 90687, 'ninety thousand six hundred eighty-seven'), (5020, 84615, 'eighty-four thousand six hundred fifteen'), (5021, 13213, 'thirteen thousand two hundred thirteen'), (5022, 71979, 'seventy-one thousand nine hundred seventy-nine'), (5023, 20880, 'twenty thousand eight hundred eighty'), (5024, 33689, 'thirty-three thousand six hundred eighty-nine'), (5025, 2246, 'two thousand two hundred forty-six'), (5026, 53994, 'fifty-three thousand nine hundred ninety-four'), (5027, 5916, 'five thousand nine hundred sixteen'), (5028, 43769, 'forty-three thousand seven hundred sixty-nine'), (5029, 23461, 'twenty-three thousand four hundred sixty-one'), (5030, 29527, 'twenty-nine thousand five hundred twenty-seven'), (5031, 25637, 'twenty-five thousand six hundred thirty-seven'), (5032, 23596, 'twenty-three thousand five hundred ninety-six'), (5033, 58673, 'fifty-eight thousand six hundred seventy-three'), (5034, 56218, 'fifty-six thousand two hundred eighteen'), (5035, 15854, 'fifteen thousand eight hundred fifty-four'), (5036, 13049, 'thirteen thousand forty-nine'), (5037, 11890, 'eleven thousand eight hundred ninety'), (5038, 90603, 'ninety thousand six hundred three'), (5039, 7377, 'seven thousand three hundred seventy-seven'), (5040, 81798, 'eighty-one thousand seven hundred ninety-eight'), (5041, 45721, 'forty-five thousand seven hundred twenty-one'), (5042, 76444, 'seventy-six thousand four hundred forty-four'), (5043, 59561, 'fifty-nine thousand five hundred sixty-one'), (5044, 56704, 'fifty-six thousand seven hundred four'), (5045, 23426, 'twenty-three thousand four hundred twenty-six'), (5046, 83766, 'eighty-three thousand seven hundred sixty-six'), (5047, 85627, 'eighty-five thousand six hundred twenty-seven'), (5048, 89080, 'eighty-nine thousand eighty'), (5049, 78973, 'seventy-eight thousand nine hundred seventy-three'), (5050, 83165, 'eighty-three thousand one hundred sixty-five'), (5051, 69505, 'sixty-nine thousand five hundred five'), (5052, 10825, 'ten thousand eight hundred twenty-five'), (5053, 84581, 'eighty-four thousand five hundred eighty-one'), (5054, 60573, 'sixty thousand five hundred seventy-three'), (5055, 66580, 'sixty-six thousand five hundred eighty'), (5056, 21178, 'twenty-one thousand one hundred seventy-eight'), (5057, 55881, 'fifty-five thousand eight hundred eighty-one'), (5058, 65284, 'sixty-five thousand two hundred eighty-four'), (5059, 75245, 'seventy-five thousand two hundred forty-five'), (5060, 97129, 'ninety-seven thousand one hundred twenty-nine'), (5061, 51314, 'fifty-one thousand three hundred fourteen'), (5062, 56590, 'fifty-six thousand five hundred ninety'), (5063, 80409, 'eighty thousand four hundred nine'), (5064, 90545, 'ninety thousand five hundred forty-five'), (5065, 11948, 'eleven thousand nine hundred forty-eight'), (5066, 75688, 'seventy-five thousand six hundred eighty-eight'), (5067, 42655, 'forty-two thousand six hundred fifty-five'), (5068, 48614, 'forty-eight thousand six hundred fourteen'), (5069, 86866, 'eighty-six thousand eight hundred sixty-six'), (5070, 17972, 'seventeen thousand nine hundred seventy-two'), (5071, 92293, 'ninety-two thousand two hundred ninety-three'), (5072, 26566, 'twenty-six thousand five hundred sixty-six'), (5073, 67710, 'sixty-seven thousand seven hundred ten'), (5074, 40950, 'forty thousand nine hundred fifty'), (5075, 67035, 'sixty-seven thousand thirty-five'), (5076, 30157, 'thirty thousand one hundred fifty-seven'), (5077, 90995, 'ninety thousand nine hundred ninety-five'), (5078, 23306, 'twenty-three thousand three hundred six'), (5079, 23727, 'twenty-three thousand seven hundred twenty-seven'), (5080, 28854, 'twenty-eight thousand eight hundred fifty-four'), (5081, 5609, 'five thousand six hundred nine'), (5082, 69635, 'sixty-nine thousand six hundred thirty-five'), (5083, 75082, 'seventy-five thousand eighty-two'), (5084, 61201, 'sixty-one thousand two hundred one'), (5085, 64915, 'sixty-four thousand nine hundred fifteen'), (5086, 34554, 'thirty-four thousand five hundred fifty-four'), (5087, 39827, 'thirty-nine thousand eight hundred twenty-seven'), (5088, 36853, 'thirty-six thousand eight hundred fifty-three'), (5089, 25298, 'twenty-five thousand two hundred ninety-eight'), (5090, 47949, 'forty-seven thousand nine hundred forty-nine'), (5091, 55069, 'fifty-five thousand sixty-nine'), (5092, 41503, 'forty-one thousand five hundred three'), (5093, 561, 'five hundred sixty-one'), (5094, 13146, 'thirteen thousand one hundred forty-six'), (5095, 51192, 'fifty-one thousand one hundred ninety-two'), (5096, 19, 'nineteen'), (5097, 23490, 'twenty-three thousand four hundred ninety'), (5098, 18597, 'eighteen thousand five hundred ninety-seven'), (5099, 53051, 'fifty-three thousand fifty-one'), (5100, 97504, 'ninety-seven thousand five hundred four'), (5101, 53810, 'fifty-three thousand eight hundred ten'), (5102, 38016, 'thirty-eight thousand sixteen'), (5103, 94589, 'ninety-four thousand five hundred eighty-nine'), (5104, 64425, 'sixty-four thousand four hundred twenty-five'), (5105, 77528, 'seventy-seven thousand five hundred twenty-eight'), (5106, 97225, 'ninety-seven thousand two hundred twenty-five'), (5107, 98349, 'ninety-eight thousand three hundred forty-nine'), (5108, 80922, 'eighty thousand nine hundred twenty-two'), (5109, 17451, 'seventeen thousand four hundred fifty-one'), (5110, 70869, 'seventy thousand eight hundred sixty-nine'), (5111, 41319, 'forty-one thousand three hundred nineteen'), (5112, 31242, 'thirty-one thousand two hundred forty-two'), (5113, 31776, 'thirty-one thousand seven hundred seventy-six'), (5114, 93588, 'ninety-three thousand five hundred eighty-eight'), (5115, 67748, 'sixty-seven thousand seven hundred forty-eight'), (5116, 84330, 'eighty-four thousand three hundred thirty'), (5117, 80165, 'eighty thousand one hundred sixty-five'), (5118, 83666, 'eighty-three thousand six hundred sixty-six'), (5119, 62516, 'sixty-two thousand five hundred sixteen'), (5120, 24093, 'twenty-four thousand ninety-three'), (5121, 33489, 'thirty-three thousand four hundred eighty-nine'), (5122, 38940, 'thirty-eight thousand nine hundred forty'), (5123, 36679, 'thirty-six thousand six hundred seventy-nine'), (5124, 42106, 'forty-two thousand one hundred six'), (5125, 51646, 'fifty-one thousand six hundred forty-six'), (5126, 91814, 'ninety-one thousand eight hundred fourteen'), (5127, 59360, 'fifty-nine thousand three hundred sixty'), (5128, 17219, 'seventeen thousand two hundred nineteen'), (5129, 54693, 'fifty-four thousand six hundred ninety-three'), (5130, 88067, 'eighty-eight thousand sixty-seven'), (5131, 78746, 'seventy-eight thousand seven hundred forty-six'), (5132, 40542, 'forty thousand five hundred forty-two'), (5133, 82944, 'eighty-two thousand nine hundred forty-four'), (5134, 36885, 'thirty-six thousand eight hundred eighty-five'), (5135, 6810, 'six thousand eight hundred ten'), (5136, 2586, 'two thousand five hundred eighty-six'), (5137, 26637, 'twenty-six thousand six hundred thirty-seven'), (5138, 27621, 'twenty-seven thousand six hundred twenty-one'), (5139, 8355, 'eight thousand three hundred fifty-five'), (5140, 84173, 'eighty-four thousand one hundred seventy-three'), (5141, 36366, 'thirty-six thousand three hundred sixty-six'), (5142, 91644, 'ninety-one thousand six hundred forty-four'), (5143, 87484, 'eighty-seven thousand four hundred eighty-four'), (5144, 46132, 'forty-six thousand one hundred thirty-two'), (5145, 60494, 'sixty thousand four hundred ninety-four'), (5146, 76727, 'seventy-six thousand seven hundred twenty-seven'), (5147, 50231, 'fifty thousand two hundred thirty-one'), (5148, 58520, 'fifty-eight thousand five hundred twenty'), (5149, 87954, 'eighty-seven thousand nine hundred fifty-four'), (5150, 79266, 'seventy-nine thousand two hundred sixty-six'), (5151, 79677, 'seventy-nine thousand six hundred seventy-seven'), (5152, 93605, 'ninety-three thousand six hundred five'), (5153, 56204, 'fifty-six thousand two hundred four'), (5154, 21078, 'twenty-one thousand seventy-eight'), (5155, 73086, 'seventy-three thousand eighty-six'), (5156, 78933, 'seventy-eight thousand nine hundred thirty-three'), (5157, 79104, 'seventy-nine thousand one hundred four'), (5158, 9544, 'nine thousand five hundred forty-four'), (5159, 49912, 'forty-nine thousand nine hundred twelve'), (5160, 93064, 'ninety-three thousand sixty-four'), (5161, 35041, 'thirty-five thousand forty-one'), (5162, 5671, 'five thousand six hundred seventy-one'), (5163, 52072, 'fifty-two thousand seventy-two'), (5164, 6455, 'six thousand four hundred fifty-five'), (5165, 42472, 'forty-two thousand four hundred seventy-two'), (5166, 47328, 'forty-seven thousand three hundred twenty-eight'), (5167, 69741, 'sixty-nine thousand seven hundred forty-one'), (5168, 83016, 'eighty-three thousand sixteen'), (5169, 74810, 'seventy-four thousand eight hundred ten'), (5170, 18469, 'eighteen thousand four hundred sixty-nine'), (5171, 32678, 'thirty-two thousand six hundred seventy-eight'), (5172, 87525, 'eighty-seven thousand five hundred twenty-five'), (5173, 17571, 'seventeen thousand five hundred seventy-one'), (5174, 81233, 'eighty-one thousand two hundred thirty-three'), (5175, 92721, 'ninety-two thousand seven hundred twenty-one'), (5176, 89026, 'eighty-nine thousand twenty-six'), (5177, 77797, 'seventy-seven thousand seven hundred ninety-seven'), (5178, 38063, 'thirty-eight thousand sixty-three'), (5179, 5244, 'five thousand two hundred forty-four'), (5180, 67173, 'sixty-seven thousand one hundred seventy-three'), (5181, 65154, 'sixty-five thousand one hundred fifty-four'), (5182, 79458, 'seventy-nine thousand four hundred fifty-eight'), (5183, 24147, 'twenty-four thousand one hundred forty-seven'), (5184, 8676, 'eight thousand six hundred seventy-six'), (5185, 73329, 'seventy-three thousand three hundred twenty-nine'), (5186, 2066, 'two thousand sixty-six'), (5187, 76724, 'seventy-six thousand seven hundred twenty-four'), (5188, 44702, 'forty-four thousand seven hundred two'), (5189, 41851, 'forty-one thousand eight hundred fifty-one'), (5190, 48920, 'forty-eight thousand nine hundred twenty'), (5191, 15050, 'fifteen thousand fifty'), (5192, 54443, 'fifty-four thousand four hundred forty-three'), (5193, 53268, 'fifty-three thousand two hundred sixty-eight'), (5194, 8007, 'eight thousand seven'), (5195, 28339, 'twenty-eight thousand three hundred thirty-nine'), (5196, 10340, 'ten thousand three hundred forty'), (5197, 84652, 'eighty-four thousand six hundred fifty-two'), (5198, 86770, 'eighty-six thousand seven hundred seventy'), (5199, 71747, 'seventy-one thousand seven hundred forty-seven'), (5200, 35653, 'thirty-five thousand six hundred fifty-three'), (5201, 97934, 'ninety-seven thousand nine hundred thirty-four'), (5202, 76458, 'seventy-six thousand four hundred fifty-eight'), (5203, 61364, 'sixty-one thousand three hundred sixty-four'), (5204, 39435, 'thirty-nine thousand four hundred thirty-five'), (5205, 9286, 'nine thousand two hundred eighty-six'), (5206, 32518, 'thirty-two thousand five hundred eighteen'), (5207, 88687, 'eighty-eight thousand six hundred eighty-seven'), (5208, 13900, 'thirteen thousand nine hundred'), (5209, 87256, 'eighty-seven thousand two hundred fifty-six'), (5210, 31493, 'thirty-one thousand four hundred ninety-three'), (5211, 28515, 'twenty-eight thousand five hundred fifteen'), (5212, 13386, 'thirteen thousand three hundred eighty-six'), (5213, 81764, 'eighty-one thousand seven hundred sixty-four'), (5214, 32266, 'thirty-two thousand two hundred sixty-six'), (5215, 51612, 'fifty-one thousand six hundred twelve'), (5216, 89157, 'eighty-nine thousand one hundred fifty-seven'), (5217, 55315, 'fifty-five thousand three hundred fifteen'), (5218, 92005, 'ninety-two thousand five'), (5219, 27552, 'twenty-seven thousand five hundred fifty-two'), (5220, 92540, 'ninety-two thousand five hundred forty'), (5221, 70516, 'seventy thousand five hundred sixteen'), (5222, 85849, 'eighty-five thousand eight hundred forty-nine'), (5223, 97216, 'ninety-seven thousand two hundred sixteen'), (5224, 30165, 'thirty thousand one hundred sixty-five'), (5225, 40762, 'forty thousand seven hundred sixty-two'), (5226, 56910, 'fifty-six thousand nine hundred ten'), (5227, 54585, 'fifty-four thousand five hundred eighty-five'), (5228, 13498, 'thirteen thousand four hundred ninety-eight'), (5229, 97417, 'ninety-seven thousand four hundred seventeen'), (5230, 42402, 'forty-two thousand four hundred two'), (5231, 18751, 'eighteen thousand seven hundred fifty-one'), (5232, 42342, 'forty-two thousand three hundred forty-two'), (5233, 86201, 'eighty-six thousand two hundred one'), (5234, 10814, 'ten thousand eight hundred fourteen'), (5235, 72891, 'seventy-two thousand eight hundred ninety-one'), (5236, 86595, 'eighty-six thousand five hundred ninety-five'), (5237, 2117, 'two thousand one hundred seventeen'), (5238, 80556, 'eighty thousand five hundred fifty-six'), (5239, 16822, 'sixteen thousand eight hundred twenty-two'), (5240, 28227, 'twenty-eight thousand two hundred twenty-seven'), (5241, 86732, 'eighty-six thousand seven hundred thirty-two'), (5242, 27483, 'twenty-seven thousand four hundred eighty-three'), (5243, 90741, 'ninety thousand seven hundred forty-one'), (5244, 76751, 'seventy-six thousand seven hundred fifty-one'), (5245, 51783, 'fifty-one thousand seven hundred eighty-three'), (5246, 71838, 'seventy-one thousand eight hundred thirty-eight'), (5247, 38091, 'thirty-eight thousand ninety-one'), (5248, 17093, 'seventeen thousand ninety-three'), (5249, 93920, 'ninety-three thousand nine hundred twenty'), (5250, 52613, 'fifty-two thousand six hundred thirteen'), (5251, 86579, 'eighty-six thousand five hundred seventy-nine'), (5252, 56256, 'fifty-six thousand two hundred fifty-six'), (5253, 98577, 'ninety-eight thousand five hundred seventy-seven'), (5254, 89371, 'eighty-nine thousand three hundred seventy-one'), (5255, 24810, 'twenty-four thousand eight hundred ten'), (5256, 6151, 'six thousand one hundred fifty-one'), (5257, 75612, 'seventy-five thousand six hundred twelve'), (5258, 85805, 'eighty-five thousand eight hundred five'), (5259, 56894, 'fifty-six thousand eight hundred ninety-four'), (5260, 35404, 'thirty-five thousand four hundred four'), (5261, 88306, 'eighty-eight thousand three hundred six'), (5262, 15494, 'fifteen thousand four hundred ninety-four'), (5263, 74473, 'seventy-four thousand four hundred seventy-three'), (5264, 12515, 'twelve thousand five hundred fifteen'), (5265, 52947, 'fifty-two thousand nine hundred forty-seven'), (5266, 15232, 'fifteen thousand two hundred thirty-two'), (5267, 49211, 'forty-nine thousand two hundred eleven'), (5268, 56245, 'fifty-six thousand two hundred forty-five'), (5269, 17399, 'seventeen thousand three hundred ninety-nine'), (5270, 91665, 'ninety-one thousand six hundred sixty-five'), (5271, 25665, 'twenty-five thousand six hundred sixty-five'), (5272, 13642, 'thirteen thousand six hundred forty-two'), (5273, 48906, 'forty-eight thousand nine hundred six'), (5274, 98863, 'ninety-eight thousand eight hundred sixty-three'), (5275, 70699, 'seventy thousand six hundred ninety-nine'), (5276, 95159, 'ninety-five thousand one hundred fifty-nine'), (5277, 46816, 'forty-six thousand eight hundred sixteen'), (5278, 29965, 'twenty-nine thousand nine hundred sixty-five'), (5279, 38079, 'thirty-eight thousand seventy-nine'), (5280, 78684, 'seventy-eight thousand six hundred eighty-four'), (5281, 98015, 'ninety-eight thousand fifteen'), (5282, 84140, 'eighty-four thousand one hundred forty'), (5283, 67008, 'sixty-seven thousand eight'), (5284, 31002, 'thirty-one thousand two'), (5285, 46896, 'forty-six thousand eight hundred ninety-six'), (5286, 36661, 'thirty-six thousand six hundred sixty-one'), (5287, 20725, 'twenty thousand seven hundred twenty-five'), (5288, 71532, 'seventy-one thousand five hundred thirty-two'), (5289, 3593, 'three thousand five hundred ninety-three'), (5290, 50285, 'fifty thousand two hundred eighty-five'), (5291, 58550, 'fifty-eight thousand five hundred fifty'), (5292, 71421, 'seventy-one thousand four hundred twenty-one'), (5293, 96097, 'ninety-six thousand ninety-seven'), (5294, 4435, 'four thousand four hundred thirty-five'), (5295, 3892, 'three thousand eight hundred ninety-two'), (5296, 51210, 'fifty-one thousand two hundred ten'), (5297, 53839, 'fifty-three thousand eight hundred thirty-nine'), (5298, 87236, 'eighty-seven thousand two hundred thirty-six'), (5299, 16280, 'sixteen thousand two hundred eighty'), (5300, 52159, 'fifty-two thousand one hundred fifty-nine'), (5301, 82213, 'eighty-two thousand two hundred thirteen'), (5302, 26845, 'twenty-six thousand eight hundred forty-five'), (5303, 61810, 'sixty-one thousand eight hundred ten'), (5304, 9123, 'nine thousand one hundred twenty-three'), (5305, 81912, 'eighty-one thousand nine hundred twelve'), (5306, 76933, 'seventy-six thousand nine hundred thirty-three'), (5307, 59179, 'fifty-nine thousand one hundred seventy-nine'), (5308, 5154, 'five thousand one hundred fifty-four'), (5309, 15991, 'fifteen thousand nine hundred ninety-one'), (5310, 26294, 'twenty-six thousand two hundred ninety-four'), (5311, 63443, 'sixty-three thousand four hundred forty-three'), (5312, 66173, 'sixty-six thousand one hundred seventy-three'), (5313, 92104, 'ninety-two thousand one hundred four'), (5314, 10510, 'ten thousand five hundred ten'), (5315, 16649, 'sixteen thousand six hundred forty-nine'), (5316, 43854, 'forty-three thousand eight hundred fifty-four'), (5317, 19392, 'nineteen thousand three hundred ninety-two'), (5318, 21171, 'twenty-one thousand one hundred seventy-one'), (5319, 25855, 'twenty-five thousand eight hundred fifty-five'), (5320, 95460, 'ninety-five thousand four hundred sixty'), (5321, 47633, 'forty-seven thousand six hundred thirty-three'), (5322, 18779, 'eighteen thousand seven hundred seventy-nine'), (5323, 84801, 'eighty-four thousand eight hundred one'), (5324, 22188, 'twenty-two thousand one hundred eighty-eight'), (5325, 6775, 'six thousand seven hundred seventy-five'), (5326, 81569, 'eighty-one thousand five hundred sixty-nine'), (5327, 6448, 'six thousand four hundred forty-eight'), (5328, 48952, 'forty-eight thousand nine hundred fifty-two'), (5329, 46673, 'forty-six thousand six hundred seventy-three'), (5330, 89818, 'eighty-nine thousand eight hundred eighteen'), (5331, 26596, 'twenty-six thousand five hundred ninety-six'), (5332, 75812, 'seventy-five thousand eight hundred twelve'), (5333, 10302, 'ten thousand three hundred two'), (5334, 10591, 'ten thousand five hundred ninety-one'), (5335, 61893, 'sixty-one thousand eight hundred ninety-three'), (5336, 38316, 'thirty-eight thousand three hundred sixteen'), (5337, 61177, 'sixty-one thousand one hundred seventy-seven'), (5338, 10551, 'ten thousand five hundred fifty-one'), (5339, 42025, 'forty-two thousand twenty-five'), (5340, 87494, 'eighty-seven thousand four hundred ninety-four'), (5341, 4547, 'four thousand five hundred forty-seven'), (5342, 46428, 'forty-six thousand four hundred twenty-eight'), (5343, 79016, 'seventy-nine thousand sixteen'), (5344, 92130, 'ninety-two thousand one hundred thirty'), (5345, 79710, 'seventy-nine thousand seven hundred ten'), (5346, 22620, 'twenty-two thousand six hundred twenty'), (5347, 27008, 'twenty-seven thousand eight'), (5348, 57971, 'fifty-seven thousand nine hundred seventy-one'), (5349, 80720, 'eighty thousand seven hundred twenty'), (5350, 70781, 'seventy thousand seven hundred eighty-one'), (5351, 75601, 'seventy-five thousand six hundred one'), (5352, 53397, 'fifty-three thousand three hundred ninety-seven'), (5353, 88942, 'eighty-eight thousand nine hundred forty-two'), (5354, 94640, 'ninety-four thousand six hundred forty'), (5355, 11939, 'eleven thousand nine hundred thirty-nine'), (5356, 40217, 'forty thousand two hundred seventeen'), (5357, 6737, 'six thousand seven hundred thirty-seven'), (5358, 4726, 'four thousand seven hundred twenty-six'), (5359, 81980, 'eighty-one thousand nine hundred eighty'), (5360, 60457, 'sixty thousand four hundred fifty-seven'), (5361, 18045, 'eighteen thousand forty-five'), (5362, 29445, 'twenty-nine thousand four hundred forty-five'), (5363, 91888, 'ninety-one thousand eight hundred eighty-eight'), (5364, 88004, 'eighty-eight thousand four'), (5365, 57146, 'fifty-seven thousand one hundred forty-six'), (5366, 37922, 'thirty-seven thousand nine hundred twenty-two'), (5367, 88257, 'eighty-eight thousand two hundred fifty-seven'), (5368, 30211, 'thirty thousand two hundred eleven'), (5369, 10159, 'ten thousand one hundred fifty-nine'), (5370, 4876, 'four thousand eight hundred seventy-six'), (5371, 43935, 'forty-three thousand nine hundred thirty-five'), (5372, 12446, 'twelve thousand four hundred forty-six'), (5373, 64890, 'sixty-four thousand eight hundred ninety'), (5374, 80042, 'eighty thousand forty-two'), (5375, 14013, 'fourteen thousand thirteen'), (5376, 29042, 'twenty-nine thousand forty-two'), (5377, 29986, 'twenty-nine thousand nine hundred eighty-six'), (5378, 84562, 'eighty-four thousand five hundred sixty-two'), (5379, 82043, 'eighty-two thousand forty-three'), (5380, 31130, 'thirty-one thousand one hundred thirty'), (5381, 13528, 'thirteen thousand five hundred twenty-eight'), (5382, 14565, 'fourteen thousand five hundred sixty-five'), (5383, 6903, 'six thousand nine hundred three'), (5384, 93742, 'ninety-three thousand seven hundred forty-two'), (5385, 11882, 'eleven thousand eight hundred eighty-two'), (5386, 21475, 'twenty-one thousand four hundred seventy-five'), (5387, 49950, 'forty-nine thousand nine hundred fifty'), (5388, 57661, 'fifty-seven thousand six hundred sixty-one'), (5389, 7120, 'seven thousand one hundred twenty'), (5390, 43494, 'forty-three thousand four hundred ninety-four'), (5391, 18687, 'eighteen thousand six hundred eighty-seven'), (5392, 44254, 'forty-four thousand two hundred fifty-four'), (5393, 65021, 'sixty-five thousand twenty-one'), (5394, 94232, 'ninety-four thousand two hundred thirty-two'), (5395, 94726, 'ninety-four thousand seven hundred twenty-six'), (5396, 60279, 'sixty thousand two hundred seventy-nine'), (5397, 21576, 'twenty-one thousand five hundred seventy-six'), (5398, 52825, 'fifty-two thousand eight hundred twenty-five'), (5399, 79015, 'seventy-nine thousand fifteen'), (5400, 66967, 'sixty-six thousand nine hundred sixty-seven'), (5401, 24511, 'twenty-four thousand five hundred eleven'), (5402, 48642, 'forty-eight thousand six hundred forty-two'), (5403, 53963, 'fifty-three thousand nine hundred sixty-three'), (5404, 87270, 'eighty-seven thousand two hundred seventy'), (5405, 58494, 'fifty-eight thousand four hundred ninety-four'), (5406, 19483, 'nineteen thousand four hundred eighty-three'), (5407, 72540, 'seventy-two thousand five hundred forty'), (5408, 11120, 'eleven thousand one hundred twenty'), (5409, 13105, 'thirteen thousand one hundred five'), (5410, 57833, 'fifty-seven thousand eight hundred thirty-three'), (5411, 62579, 'sixty-two thousand five hundred seventy-nine'), (5412, 58150, 'fifty-eight thousand one hundred fifty'), (5413, 48699, 'forty-eight thousand six hundred ninety-nine'), (5414, 51358, 'fifty-one thousand three hundred fifty-eight'), (5415, 64428, 'sixty-four thousand four hundred twenty-eight'), (5416, 66843, 'sixty-six thousand eight hundred forty-three'), (5417, 78413, 'seventy-eight thousand four hundred thirteen'), (5418, 11829, 'eleven thousand eight hundred twenty-nine'), (5419, 15371, 'fifteen thousand three hundred seventy-one'), (5420, 15426, 'fifteen thousand four hundred twenty-six'), (5421, 31964, 'thirty-one thousand nine hundred sixty-four'), (5422, 48974, 'forty-eight thousand nine hundred seventy-four'), (5423, 62210, 'sixty-two thousand two hundred ten'), (5424, 65849, 'sixty-five thousand eight hundred forty-nine'), (5425, 50671, 'fifty thousand six hundred seventy-one'), (5426, 3958, 'three thousand nine hundred fifty-eight'), (5427, 86753, 'eighty-six thousand seven hundred fifty-three'), (5428, 2371, 'two thousand three hundred seventy-one'), (5429, 40468, 'forty thousand four hundred sixty-eight'), (5430, 58504, 'fifty-eight thousand five hundred four'), (5431, 57238, 'fifty-seven thousand two hundred thirty-eight'), (5432, 31687, 'thirty-one thousand six hundred eighty-seven'), (5433, 24129, 'twenty-four thousand one hundred twenty-nine'), (5434, 64691, 'sixty-four thousand six hundred ninety-one'), (5435, 18869, 'eighteen thousand eight hundred sixty-nine'), (5436, 26724, 'twenty-six thousand seven hundred twenty-four'), (5437, 36431, 'thirty-six thousand four hundred thirty-one'), (5438, 42625, 'forty-two thousand six hundred twenty-five'), (5439, 57801, 'fifty-seven thousand eight hundred one'), (5440, 99459, 'ninety-nine thousand four hundred fifty-nine'), (5441, 49376, 'forty-nine thousand three hundred seventy-six'), (5442, 96477, 'ninety-six thousand four hundred seventy-seven'), (5443, 77880, 'seventy-seven thousand eight hundred eighty'), (5444, 86640, 'eighty-six thousand six hundred forty'), (5445, 73522, 'seventy-three thousand five hundred twenty-two'), (5446, 42879, 'forty-two thousand eight hundred seventy-nine'), (5447, 68835, 'sixty-eight thousand eight hundred thirty-five'), (5448, 88990, 'eighty-eight thousand nine hundred ninety'), (5449, 63962, 'sixty-three thousand nine hundred sixty-two'), (5450, 55163, 'fifty-five thousand one hundred sixty-three'), (5451, 87425, 'eighty-seven thousand four hundred twenty-five'), (5452, 29853, 'twenty-nine thousand eight hundred fifty-three'), (5453, 37715, 'thirty-seven thousand seven hundred fifteen'), (5454, 44952, 'forty-four thousand nine hundred fifty-two'), (5455, 65607, 'sixty-five thousand six hundred seven'), (5456, 6073, 'six thousand seventy-three'), (5457, 9230, 'nine thousand two hundred thirty'), (5458, 46462, 'forty-six thousand four hundred sixty-two'), (5459, 59262, 'fifty-nine thousand two hundred sixty-two'), (5460, 94289, 'ninety-four thousand two hundred eighty-nine'), (5461, 98634, 'ninety-eight thousand six hundred thirty-four'), (5462, 23407, 'twenty-three thousand four hundred seven'), (5463, 40593, 'forty thousand five hundred ninety-three'), (5464, 20043, 'twenty thousand forty-three'), (5465, 49286, 'forty-nine thousand two hundred eighty-six'), (5466, 95838, 'ninety-five thousand eight hundred thirty-eight'), (5467, 54130, 'fifty-four thousand one hundred thirty'), (5468, 48392, 'forty-eight thousand three hundred ninety-two'), (5469, 20104, 'twenty thousand one hundred four'), (5470, 30773, 'thirty thousand seven hundred seventy-three'), (5471, 4376, 'four thousand three hundred seventy-six'), (5472, 77786, 'seventy-seven thousand seven hundred eighty-six'), (5473, 76515, 'seventy-six thousand five hundred fifteen'), (5474, 68599, 'sixty-eight thousand five hundred ninety-nine'), (5475, 63128, 'sixty-three thousand one hundred twenty-eight'), (5476, 90837, 'ninety thousand eight hundred thirty-seven'), (5477, 88521, 'eighty-eight thousand five hundred twenty-one'), (5478, 87382, 'eighty-seven thousand three hundred eighty-two'), (5479, 70390, 'seventy thousand three hundred ninety'), (5480, 36387, 'thirty-six thousand three hundred eighty-seven'), (5481, 59666, 'fifty-nine thousand six hundred sixty-six'), (5482, 47147, 'forty-seven thousand one hundred forty-seven'), (5483, 19549, 'nineteen thousand five hundred forty-nine'), (5484, 95069, 'ninety-five thousand sixty-nine'), (5485, 17021, 'seventeen thousand twenty-one'), (5486, 77406, 'seventy-seven thousand four hundred six'), (5487, 73802, 'seventy-three thousand eight hundred two'), (5488, 14418, 'fourteen thousand four hundred eighteen'), (5489, 88608, 'eighty-eight thousand six hundred eight'), (5490, 29278, 'twenty-nine thousand two hundred seventy-eight'), (5491, 88753, 'eighty-eight thousand seven hundred fifty-three'), (5492, 50061, 'fifty thousand sixty-one'), (5493, 17050, 'seventeen thousand fifty'), (5494, 95011, 'ninety-five thousand eleven'), (5495, 51750, 'fifty-one thousand seven hundred fifty'), (5496, 80705, 'eighty thousand seven hundred five'), (5497, 44345, 'forty-four thousand three hundred forty-five'), (5498, 38521, 'thirty-eight thousand five hundred twenty-one'), (5499, 72242, 'seventy-two thousand two hundred forty-two'), (5500, 3791, 'three thousand seven hundred ninety-one'), (5501, 79979, 'seventy-nine thousand nine hundred seventy-nine'), (5502, 34828, 'thirty-four thousand eight hundred twenty-eight'), (5503, 59868, 'fifty-nine thousand eight hundred sixty-eight'), (5504, 71739, 'seventy-one thousand seven hundred thirty-nine'), (5505, 15740, 'fifteen thousand seven hundred forty'), (5506, 76279, 'seventy-six thousand two hundred seventy-nine'), (5507, 31368, 'thirty-one thousand three hundred sixty-eight'), (5508, 81182, 'eighty-one thousand one hundred eighty-two'), (5509, 84862, 'eighty-four thousand eight hundred sixty-two'), (5510, 46421, 'forty-six thousand four hundred twenty-one'), (5511, 74788, 'seventy-four thousand seven hundred eighty-eight'), (5512, 84992, 'eighty-four thousand nine hundred ninety-two'), (5513, 88537, 'eighty-eight thousand five hundred thirty-seven'), (5514, 2609, 'two thousand six hundred nine'), (5515, 34928, 'thirty-four thousand nine hundred twenty-eight'), (5516, 82221, 'eighty-two thousand two hundred twenty-one'), (5517, 52138, 'fifty-two thousand one hundred thirty-eight'), (5518, 73310, 'seventy-three thousand three hundred ten'), (5519, 89282, 'eighty-nine thousand two hundred eighty-two'), (5520, 33292, 'thirty-three thousand two hundred ninety-two'), (5521, 88606, 'eighty-eight thousand six hundred six'), (5522, 35217, 'thirty-five thousand two hundred seventeen'), (5523, 18997, 'eighteen thousand nine hundred ninety-seven'), (5524, 53975, 'fifty-three thousand nine hundred seventy-five'), (5525, 66917, 'sixty-six thousand nine hundred seventeen'), (5526, 11438, 'eleven thousand four hundred thirty-eight'), (5527, 94326, 'ninety-four thousand three hundred twenty-six'), (5528, 62255, 'sixty-two thousand two hundred fifty-five'), (5529, 21, 'twenty-one'), (5530, 38807, 'thirty-eight thousand eight hundred seven'), (5531, 96504, 'ninety-six thousand five hundred four'), (5532, 30282, 'thirty thousand two hundred eighty-two'), (5533, 38200, 'thirty-eight thousand two hundred'), (5534, 75241, 'seventy-five thousand two hundred forty-one'), (5535, 12441, 'twelve thousand four hundred forty-one'), (5536, 7669, 'seven thousand six hundred sixty-nine'), (5537, 54797, 'fifty-four thousand seven hundred ninety-seven'), (5538, 97746, 'ninety-seven thousand seven hundred forty-six'), (5539, 3746, 'three thousand seven hundred forty-six'), (5540, 83599, 'eighty-three thousand five hundred ninety-nine'), (5541, 85428, 'eighty-five thousand four hundred twenty-eight'), (5542, 30066, 'thirty thousand sixty-six'), (5543, 17243, 'seventeen thousand two hundred forty-three'), (5544, 75160, 'seventy-five thousand one hundred sixty'), (5545, 55203, 'fifty-five thousand two hundred three'), (5546, 42604, 'forty-two thousand six hundred four'), (5547, 47921, 'forty-seven thousand nine hundred twenty-one'), (5548, 16561, 'sixteen thousand five hundred sixty-one'), (5549, 35959, 'thirty-five thousand nine hundred fifty-nine'), (5550, 82256, 'eighty-two thousand two hundred fifty-six'), (5551, 32316, 'thirty-two thousand three hundred sixteen'), (5552, 48684, 'forty-eight thousand six hundred eighty-four'), (5553, 94375, 'ninety-four thousand three hundred seventy-five'), (5554, 2530, 'two thousand five hundred thirty'), (5555, 34569, 'thirty-four thousand five hundred sixty-nine'), (5556, 69306, 'sixty-nine thousand three hundred six'), (5557, 76109, 'seventy-six thousand one hundred nine'), (5558, 34619, 'thirty-four thousand six hundred nineteen'), (5559, 55537, 'fifty-five thousand five hundred thirty-seven'), (5560, 9274, 'nine thousand two hundred seventy-four'), (5561, 80654, 'eighty thousand six hundred fifty-four'), (5562, 88660, 'eighty-eight thousand six hundred sixty'), (5563, 86713, 'eighty-six thousand seven hundred thirteen'), (5564, 26428, 'twenty-six thousand four hundred twenty-eight'), (5565, 30644, 'thirty thousand six hundred forty-four'), (5566, 79211, 'seventy-nine thousand two hundred eleven'), (5567, 2184, 'two thousand one hundred eighty-four'), (5568, 13264, 'thirteen thousand two hundred sixty-four'), (5569, 21110, 'twenty-one thousand one hundred ten'), (5570, 30463, 'thirty thousand four hundred sixty-three'), (5571, 43812, 'forty-three thousand eight hundred twelve'), (5572, 74889, 'seventy-four thousand eight hundred eighty-nine'), (5573, 77347, 'seventy-seven thousand three hundred forty-seven'), (5574, 75806, 'seventy-five thousand eight hundred six'), (5575, 35751, 'thirty-five thousand seven hundred fifty-one'), (5576, 98489, 'ninety-eight thousand four hundred eighty-nine'), (5577, 20337, 'twenty thousand three hundred thirty-seven'), (5578, 59570, 'fifty-nine thousand five hundred seventy'), (5579, 67132, 'sixty-seven thousand one hundred thirty-two'), (5580, 64587, 'sixty-four thousand five hundred eighty-seven'), (5581, 57435, 'fifty-seven thousand four hundred thirty-five'), (5582, 52733, 'fifty-two thousand seven hundred thirty-three'), (5583, 10025, 'ten thousand twenty-five'), (5584, 14289, 'fourteen thousand two hundred eighty-nine'), (5585, 25234, 'twenty-five thousand two hundred thirty-four'), (5586, 47838, 'forty-seven thousand eight hundred thirty-eight'), (5587, 6962, 'six thousand nine hundred sixty-two'), (5588, 64479, 'sixty-four thousand four hundred seventy-nine'), (5589, 92528, 'ninety-two thousand five hundred twenty-eight'), (5590, 21696, 'twenty-one thousand six hundred ninety-six'), (5591, 48013, 'forty-eight thousand thirteen'), (5592, 14313, 'fourteen thousand three hundred thirteen'), (5593, 62297, 'sixty-two thousand two hundred ninety-seven'), (5594, 19885, 'nineteen thousand eight hundred eighty-five'), (5595, 17912, 'seventeen thousand nine hundred twelve'), (5596, 72982, 'seventy-two thousand nine hundred eighty-two'), (5597, 64728, 'sixty-four thousand seven hundred twenty-eight'), (5598, 42807, 'forty-two thousand eight hundred seven'), (5599, 6279, 'six thousand two hundred seventy-nine'), (5600, 83004, 'eighty-three thousand four'), (5601, 94580, 'ninety-four thousand five hundred eighty'), (5602, 2075, 'two thousand seventy-five'), (5603, 86052, 'eighty-six thousand fifty-two'), (5604, 88043, 'eighty-eight thousand forty-three'), (5605, 61411, 'sixty-one thousand four hundred eleven'), (5606, 39811, 'thirty-nine thousand eight hundred eleven'), (5607, 1233, 'one thousand two hundred thirty-three'), (5608, 51964, 'fifty-one thousand nine hundred sixty-four'), (5609, 27144, 'twenty-seven thousand one hundred forty-four'), (5610, 84692, 'eighty-four thousand six hundred ninety-two'), (5611, 71114, 'seventy-one thousand one hundred fourteen'), (5612, 72220, 'seventy-two thousand two hundred twenty'), (5613, 8548, 'eight thousand five hundred forty-eight'), (5614, 52494, 'fifty-two thousand four hundred ninety-four'), (5615, 73369, 'seventy-three thousand three hundred sixty-nine'), (5616, 50877, 'fifty thousand eight hundred seventy-seven'), (5617, 26020, 'twenty-six thousand twenty'), (5618, 35550, 'thirty-five thousand five hundred fifty'), (5619, 75390, 'seventy-five thousand three hundred ninety'), (5620, 89370, 'eighty-nine thousand three hundred seventy'), (5621, 51799, 'fifty-one thousand seven hundred ninety-nine'), (5622, 27167, 'twenty-seven thousand one hundred sixty-seven'), (5623, 5311, 'five thousand three hundred eleven'), (5624, 82590, 'eighty-two thousand five hundred ninety'), (5625, 92976, 'ninety-two thousand nine hundred seventy-six'), (5626, 29196, 'twenty-nine thousand one hundred ninety-six'), (5627, 90019, 'ninety thousand nineteen'), (5628, 62474, 'sixty-two thousand four hundred seventy-four'), (5629, 47399, 'forty-seven thousand three hundred ninety-nine'), (5630, 37931, 'thirty-seven thousand nine hundred thirty-one'), (5631, 28533, 'twenty-eight thousand five hundred thirty-three'), (5632, 12769, 'twelve thousand seven hundred sixty-nine'), (5633, 28849, 'twenty-eight thousand eight hundred forty-nine'), (5634, 91354, 'ninety-one thousand three hundred fifty-four'), (5635, 91866, 'ninety-one thousand eight hundred sixty-six'), (5636, 56549, 'fifty-six thousand five hundred forty-nine'), (5637, 5482, 'five thousand four hundred eighty-two'), (5638, 40913, 'forty thousand nine hundred thirteen'), (5639, 47215, 'forty-seven thousand two hundred fifteen'), (5640, 94146, 'ninety-four thousand one hundred forty-six'), (5641, 13639, 'thirteen thousand six hundred thirty-nine'), (5642, 62598, 'sixty-two thousand five hundred ninety-eight'), (5643, 94310, 'ninety-four thousand three hundred ten'), (5644, 94628, 'ninety-four thousand six hundred twenty-eight'), (5645, 15036, 'fifteen thousand thirty-six'), (5646, 42773, 'forty-two thousand seven hundred seventy-three'), (5647, 7253, 'seven thousand two hundred fifty-three'), (5648, 39697, 'thirty-nine thousand six hundred ninety-seven'), (5649, 9149, 'nine thousand one hundred forty-nine'), (5650, 76585, 'seventy-six thousand five hundred eighty-five'), (5651, 82012, 'eighty-two thousand twelve'), (5652, 70626, 'seventy thousand six hundred twenty-six'), (5653, 54755, 'fifty-four thousand seven hundred fifty-five'), (5654, 61226, 'sixty-one thousand two hundred twenty-six'), (5655, 87628, 'eighty-seven thousand six hundred twenty-eight'), (5656, 29111, 'twenty-nine thousand one hundred eleven'), (5657, 64680, 'sixty-four thousand six hundred eighty'), (5658, 51856, 'fifty-one thousand eight hundred fifty-six'), (5659, 9707, 'nine thousand seven hundred seven'), (5660, 19498, 'nineteen thousand four hundred ninety-eight'), (5661, 50049, 'fifty thousand forty-nine'), (5662, 49736, 'forty-nine thousand seven hundred thirty-six'), (5663, 51997, 'fifty-one thousand nine hundred ninety-seven'), (5664, 8382, 'eight thousand three hundred eighty-two'), (5665, 90227, 'ninety thousand two hundred twenty-seven'), (5666, 42003, 'forty-two thousand three'), (5667, 19768, 'nineteen thousand seven hundred sixty-eight'), (5668, 82300, 'eighty-two thousand three hundred'), (5669, 88870, 'eighty-eight thousand eight hundred seventy'), (5670, 8585, 'eight thousand five hundred eighty-five'), (5671, 17982, 'seventeen thousand nine hundred eighty-two'), (5672, 10390, 'ten thousand three hundred ninety'), (5673, 19909, 'nineteen thousand nine hundred nine'), (5674, 13185, 'thirteen thousand one hundred eighty-five'), (5675, 83473, 'eighty-three thousand four hundred seventy-three'), (5676, 59359, 'fifty-nine thousand three hundred fifty-nine'), (5677, 17032, 'seventeen thousand thirty-two'), (5678, 41473, 'forty-one thousand four hundred seventy-three'), (5679, 23169, 'twenty-three thousand one hundred sixty-nine'), (5680, 10812, 'ten thousand eight hundred twelve'), (5681, 70626, 'seventy thousand six hundred twenty-six'), (5682, 7388, 'seven thousand three hundred eighty-eight'), (5683, 47260, 'forty-seven thousand two hundred sixty'), (5684, 51023, 'fifty-one thousand twenty-three'), (5685, 42904, 'forty-two thousand nine hundred four'), (5686, 10625, 'ten thousand six hundred twenty-five'), (5687, 36720, 'thirty-six thousand seven hundred twenty'), (5688, 87672, 'eighty-seven thousand six hundred seventy-two'), (5689, 14110, 'fourteen thousand one hundred ten'), (5690, 10534, 'ten thousand five hundred thirty-four'), (5691, 73056, 'seventy-three thousand fifty-six'), (5692, 58175, 'fifty-eight thousand one hundred seventy-five'), (5693, 12859, 'twelve thousand eight hundred fifty-nine'), (5694, 48898, 'forty-eight thousand eight hundred ninety-eight'), (5695, 86126, 'eighty-six thousand one hundred twenty-six'), (5696, 23356, 'twenty-three thousand three hundred fifty-six'), (5697, 51453, 'fifty-one thousand four hundred fifty-three'), (5698, 59643, 'fifty-nine thousand six hundred forty-three'), (5699, 27465, 'twenty-seven thousand four hundred sixty-five'), (5700, 19676, 'nineteen thousand six hundred seventy-six'), (5701, 31987, 'thirty-one thousand nine hundred eighty-seven'), (5702, 27708, 'twenty-seven thousand seven hundred eight'), (5703, 10652, 'ten thousand six hundred fifty-two'), (5704, 16723, 'sixteen thousand seven hundred twenty-three'), (5705, 14371, 'fourteen thousand three hundred seventy-one'), (5706, 50190, 'fifty thousand one hundred ninety'), (5707, 9026, 'nine thousand twenty-six'), (5708, 941, 'nine hundred forty-one'), (5709, 41496, 'forty-one thousand four hundred ninety-six'), (5710, 52655, 'fifty-two thousand six hundred fifty-five'), (5711, 2334, 'two thousand three hundred thirty-four'), (5712, 80961, 'eighty thousand nine hundred sixty-one'), (5713, 96316, 'ninety-six thousand three hundred sixteen'), (5714, 1632, 'one thousand six hundred thirty-two'), (5715, 71922, 'seventy-one thousand nine hundred twenty-two'), (5716, 1507, 'one thousand five hundred seven'), (5717, 22565, 'twenty-two thousand five hundred sixty-five'), (5718, 67371, 'sixty-seven thousand three hundred seventy-one'), (5719, 84523, 'eighty-four thousand five hundred twenty-three'), (5720, 29016, 'twenty-nine thousand sixteen'), (5721, 81168, 'eighty-one thousand one hundred sixty-eight'), (5722, 49427, 'forty-nine thousand four hundred twenty-seven'), (5723, 53836, 'fifty-three thousand eight hundred thirty-six'), (5724, 84933, 'eighty-four thousand nine hundred thirty-three'), (5725, 63137, 'sixty-three thousand one hundred thirty-seven'), (5726, 7373, 'seven thousand three hundred seventy-three'), (5727, 79127, 'seventy-nine thousand one hundred twenty-seven'), (5728, 39734, 'thirty-nine thousand seven hundred thirty-four'), (5729, 10029, 'ten thousand twenty-nine'), (5730, 78553, 'seventy-eight thousand five hundred fifty-three'), (5731, 70221, 'seventy thousand two hundred twenty-one'), (5732, 63243, 'sixty-three thousand two hundred forty-three'), (5733, 52157, 'fifty-two thousand one hundred fifty-seven'), (5734, 3629, 'three thousand six hundred twenty-nine'), (5735, 31609, 'thirty-one thousand six hundred nine'), (5736, 69956, 'sixty-nine thousand nine hundred fifty-six'), (5737, 97363, 'ninety-seven thousand three hundred sixty-three'), (5738, 59052, 'fifty-nine thousand fifty-two'), (5739, 46851, 'forty-six thousand eight hundred fifty-one'), (5740, 14338, 'fourteen thousand three hundred thirty-eight'), (5741, 82874, 'eighty-two thousand eight hundred seventy-four'), (5742, 91348, 'ninety-one thousand three hundred forty-eight'), (5743, 27262, 'twenty-seven thousand two hundred sixty-two'), (5744, 68926, 'sixty-eight thousand nine hundred twenty-six'), (5745, 36886, 'thirty-six thousand eight hundred eighty-six'), (5746, 97824, 'ninety-seven thousand eight hundred twenty-four'), (5747, 85933, 'eighty-five thousand nine hundred thirty-three'), (5748, 40448, 'forty thousand four hundred forty-eight'), (5749, 846, 'eight hundred forty-six'), (5750, 67578, 'sixty-seven thousand five hundred seventy-eight'), (5751, 15841, 'fifteen thousand eight hundred forty-one'), (5752, 57787, 'fifty-seven thousand seven hundred eighty-seven'), (5753, 44717, 'forty-four thousand seven hundred seventeen'), (5754, 51403, 'fifty-one thousand four hundred three'), (5755, 13002, 'thirteen thousand two'), (5756, 44434, 'forty-four thousand four hundred thirty-four'), (5757, 69179, 'sixty-nine thousand one hundred seventy-nine'), (5758, 77078, 'seventy-seven thousand seventy-eight'), (5759, 82419, 'eighty-two thousand four hundred nineteen'), (5760, 46290, 'forty-six thousand two hundred ninety'), (5761, 60816, 'sixty thousand eight hundred sixteen'), (5762, 99965, 'ninety-nine thousand nine hundred sixty-five'), (5763, 74132, 'seventy-four thousand one hundred thirty-two'), (5764, 33057, 'thirty-three thousand fifty-seven'), (5765, 45990, 'forty-five thousand nine hundred ninety'), (5766, 26984, 'twenty-six thousand nine hundred eighty-four'), (5767, 81966, 'eighty-one thousand nine hundred sixty-six'), (5768, 45035, 'forty-five thousand thirty-five'), (5769, 86738, 'eighty-six thousand seven hundred thirty-eight'), (5770, 63919, 'sixty-three thousand nine hundred nineteen'), (5771, 42917, 'forty-two thousand nine hundred seventeen'), (5772, 27805, 'twenty-seven thousand eight hundred five'), (5773, 86436, 'eighty-six thousand four hundred thirty-six'), (5774, 32285, 'thirty-two thousand two hundred eighty-five'), (5775, 36315, 'thirty-six thousand three hundred fifteen'), (5776, 90019, 'ninety thousand nineteen'), (5777, 98523, 'ninety-eight thousand five hundred twenty-three'), (5778, 56126, 'fifty-six thousand one hundred twenty-six'), (5779, 78930, 'seventy-eight thousand nine hundred thirty'), (5780, 75669, 'seventy-five thousand six hundred sixty-nine'), (5781, 4198, 'four thousand one hundred ninety-eight'), (5782, 72105, 'seventy-two thousand one hundred five'), (5783, 39464, 'thirty-nine thousand four hundred sixty-four'), (5784, 28769, 'twenty-eight thousand seven hundred sixty-nine'), (5785, 7472, 'seven thousand four hundred seventy-two'), (5786, 60441, 'sixty thousand four hundred forty-one'), (5787, 24585, 'twenty-four thousand five hundred eighty-five'), (5788, 31623, 'thirty-one thousand six hundred twenty-three'), (5789, 85058, 'eighty-five thousand fifty-eight'), (5790, 85102, 'eighty-five thousand one hundred two'), (5791, 97914, 'ninety-seven thousand nine hundred fourteen'), (5792, 90224, 'ninety thousand two hundred twenty-four'), (5793, 79027, 'seventy-nine thousand twenty-seven'), (5794, 30402, 'thirty thousand four hundred two'), (5795, 11111, 'eleven thousand one hundred eleven'), (5796, 99857, 'ninety-nine thousand eight hundred fifty-seven'), (5797, 48669, 'forty-eight thousand six hundred sixty-nine'), (5798, 36480, 'thirty-six thousand four hundred eighty'), (5799, 30138, 'thirty thousand one hundred thirty-eight'), (5800, 872, 'eight hundred seventy-two'), (5801, 89029, 'eighty-nine thousand twenty-nine'), (5802, 76871, 'seventy-six thousand eight hundred seventy-one'), (5803, 80311, 'eighty thousand three hundred eleven'), (5804, 98490, 'ninety-eight thousand four hundred ninety'), (5805, 73212, 'seventy-three thousand two hundred twelve'), (5806, 64838, 'sixty-four thousand eight hundred thirty-eight'), (5807, 45609, 'forty-five thousand six hundred nine'), (5808, 65790, 'sixty-five thousand seven hundred ninety'), (5809, 83912, 'eighty-three thousand nine hundred twelve'), (5810, 32688, 'thirty-two thousand six hundred eighty-eight'), (5811, 22842, 'twenty-two thousand eight hundred forty-two'), (5812, 26301, 'twenty-six thousand three hundred one'), (5813, 22177, 'twenty-two thousand one hundred seventy-seven'), (5814, 45336, 'forty-five thousand three hundred thirty-six'), (5815, 29344, 'twenty-nine thousand three hundred forty-four'), (5816, 70758, 'seventy thousand seven hundred fifty-eight'), (5817, 84901, 'eighty-four thousand nine hundred one'), (5818, 5045, 'five thousand forty-five'), (5819, 56709, 'fifty-six thousand seven hundred nine'), (5820, 99891, 'ninety-nine thousand eight hundred ninety-one'), (5821, 31764, 'thirty-one thousand seven hundred sixty-four'), (5822, 11183, 'eleven thousand one hundred eighty-three'), (5823, 56719, 'fifty-six thousand seven hundred nineteen'), (5824, 62526, 'sixty-two thousand five hundred twenty-six'), (5825, 54338, 'fifty-four thousand three hundred thirty-eight'), (5826, 14141, 'fourteen thousand one hundred forty-one'), (5827, 51837, 'fifty-one thousand eight hundred thirty-seven'), (5828, 94641, 'ninety-four thousand six hundred forty-one'), (5829, 87078, 'eighty-seven thousand seventy-eight'), (5830, 99739, 'ninety-nine thousand seven hundred thirty-nine'), (5831, 71819, 'seventy-one thousand eight hundred nineteen'), (5832, 74240, 'seventy-four thousand two hundred forty'), (5833, 94852, 'ninety-four thousand eight hundred fifty-two'), (5834, 33726, 'thirty-three thousand seven hundred twenty-six'), (5835, 44672, 'forty-four thousand six hundred seventy-two'), (5836, 11904, 'eleven thousand nine hundred four'), (5837, 89703, 'eighty-nine thousand seven hundred three'), (5838, 16338, 'sixteen thousand three hundred thirty-eight'), (5839, 41804, 'forty-one thousand eight hundred four'), (5840, 40911, 'forty thousand nine hundred eleven'), (5841, 15050, 'fifteen thousand fifty'), (5842, 85635, 'eighty-five thousand six hundred thirty-five'), (5843, 35557, 'thirty-five thousand five hundred fifty-seven'), (5844, 65950, 'sixty-five thousand nine hundred fifty'), (5845, 56027, 'fifty-six thousand twenty-seven'), (5846, 68922, 'sixty-eight thousand nine hundred twenty-two'), (5847, 30224, 'thirty thousand two hundred twenty-four'), (5848, 98817, 'ninety-eight thousand eight hundred seventeen'), (5849, 19188, 'nineteen thousand one hundred eighty-eight'), (5850, 931, 'nine hundred thirty-one'), (5851, 12938, 'twelve thousand nine hundred thirty-eight'), (5852, 23261, 'twenty-three thousand two hundred sixty-one'), (5853, 28415, 'twenty-eight thousand four hundred fifteen'), (5854, 64072, 'sixty-four thousand seventy-two'), (5855, 89865, 'eighty-nine thousand eight hundred sixty-five'), (5856, 73778, 'seventy-three thousand seven hundred seventy-eight'), (5857, 60778, 'sixty thousand seven hundred seventy-eight'), (5858, 57636, 'fifty-seven thousand six hundred thirty-six'), (5859, 42387, 'forty-two thousand three hundred eighty-seven'), (5860, 66398, 'sixty-six thousand three hundred ninety-eight'), (5861, 69836, 'sixty-nine thousand eight hundred thirty-six'), (5862, 37132, 'thirty-seven thousand one hundred thirty-two'), (5863, 17041, 'seventeen thousand forty-one'), (5864, 77915, 'seventy-seven thousand nine hundred fifteen'), (5865, 52053, 'fifty-two thousand fifty-three'), (5866, 66430, 'sixty-six thousand four hundred thirty'), (5867, 15972, 'fifteen thousand nine hundred seventy-two'), (5868, 90493, 'ninety thousand four hundred ninety-three'), (5869, 23068, 'twenty-three thousand sixty-eight'), (5870, 18255, 'eighteen thousand two hundred fifty-five'), (5871, 81621, 'eighty-one thousand six hundred twenty-one'), (5872, 31045, 'thirty-one thousand forty-five'), (5873, 8164, 'eight thousand one hundred sixty-four'), (5874, 41047, 'forty-one thousand forty-seven'), (5875, 348, 'three hundred forty-eight'), (5876, 34285, 'thirty-four thousand two hundred eighty-five'), (5877, 77993, 'seventy-seven thousand nine hundred ninety-three'), (5878, 68007, 'sixty-eight thousand seven'), (5879, 35477, 'thirty-five thousand four hundred seventy-seven'), (5880, 70752, 'seventy thousand seven hundred fifty-two'), (5881, 88070, 'eighty-eight thousand seventy'), (5882, 24859, 'twenty-four thousand eight hundred fifty-nine'), (5883, 50863, 'fifty thousand eight hundred sixty-three'), (5884, 48723, 'forty-eight thousand seven hundred twenty-three'), (5885, 27659, 'twenty-seven thousand six hundred fifty-nine'), (5886, 76093, 'seventy-six thousand ninety-three'), (5887, 78651, 'seventy-eight thousand six hundred fifty-one'), (5888, 2010, 'two thousand ten'), (5889, 84802, 'eighty-four thousand eight hundred two'), (5890, 72872, 'seventy-two thousand eight hundred seventy-two'), (5891, 20255, 'twenty thousand two hundred fifty-five'), (5892, 40719, 'forty thousand seven hundred nineteen'), (5893, 21383, 'twenty-one thousand three hundred eighty-three'), (5894, 32610, 'thirty-two thousand six hundred ten'), (5895, 77054, 'seventy-seven thousand fifty-four'), (5896, 14270, 'fourteen thousand two hundred seventy'), (5897, 4693, 'four thousand six hundred ninety-three'), (5898, 14193, 'fourteen thousand one hundred ninety-three'), (5899, 51630, 'fifty-one thousand six hundred thirty'), (5900, 55445, 'fifty-five thousand four hundred forty-five'), (5901, 25083, 'twenty-five thousand eighty-three'), (5902, 77234, 'seventy-seven thousand two hundred thirty-four'), (5903, 55286, 'fifty-five thousand two hundred eighty-six'), (5904, 78967, 'seventy-eight thousand nine hundred sixty-seven'), (5905, 47180, 'forty-seven thousand one hundred eighty'), (5906, 10379, 'ten thousand three hundred seventy-nine'), (5907, 25455, 'twenty-five thousand four hundred fifty-five'), (5908, 83985, 'eighty-three thousand nine hundred eighty-five'), (5909, 94826, 'ninety-four thousand eight hundred twenty-six'), (5910, 28744, 'twenty-eight thousand seven hundred forty-four'), (5911, 75957, 'seventy-five thousand nine hundred fifty-seven'), (5912, 67724, 'sixty-seven thousand seven hundred twenty-four'), (5913, 29467, 'twenty-nine thousand four hundred sixty-seven'), (5914, 66281, 'sixty-six thousand two hundred eighty-one'), (5915, 68890, 'sixty-eight thousand eight hundred ninety'), (5916, 49025, 'forty-nine thousand twenty-five'), (5917, 82293, 'eighty-two thousand two hundred ninety-three'), (5918, 39840, 'thirty-nine thousand eight hundred forty'), (5919, 66006, 'sixty-six thousand six'), (5920, 61281, 'sixty-one thousand two hundred eighty-one'), (5921, 84817, 'eighty-four thousand eight hundred seventeen'), (5922, 89674, 'eighty-nine thousand six hundred seventy-four'), (5923, 69492, 'sixty-nine thousand four hundred ninety-two'), (5924, 7219, 'seven thousand two hundred nineteen'), (5925, 68104, 'sixty-eight thousand one hundred four'), (5926, 34043, 'thirty-four thousand forty-three'), (5927, 13408, 'thirteen thousand four hundred eight'), (5928, 23392, 'twenty-three thousand three hundred ninety-two'), (5929, 67417, 'sixty-seven thousand four hundred seventeen'), (5930, 46930, 'forty-six thousand nine hundred thirty'), (5931, 20384, 'twenty thousand three hundred eighty-four'), (5932, 61278, 'sixty-one thousand two hundred seventy-eight'), (5933, 6445, 'six thousand four hundred forty-five'), (5934, 56211, 'fifty-six thousand two hundred eleven'), (5935, 66186, 'sixty-six thousand one hundred eighty-six'), (5936, 31908, 'thirty-one thousand nine hundred eight'), (5937, 95878, 'ninety-five thousand eight hundred seventy-eight'), (5938, 72616, 'seventy-two thousand six hundred sixteen'), (5939, 96212, 'ninety-six thousand two hundred twelve'), (5940, 28866, 'twenty-eight thousand eight hundred sixty-six'), (5941, 26146, 'twenty-six thousand one hundred forty-six'), (5942, 95562, 'ninety-five thousand five hundred sixty-two'), (5943, 11929, 'eleven thousand nine hundred twenty-nine'), (5944, 59658, 'fifty-nine thousand six hundred fifty-eight'), (5945, 83779, 'eighty-three thousand seven hundred seventy-nine'), (5946, 16381, 'sixteen thousand three hundred eighty-one'), (5947, 29106, 'twenty-nine thousand one hundred six'), (5948, 65974, 'sixty-five thousand nine hundred seventy-four'), (5949, 99460, 'ninety-nine thousand four hundred sixty'), (5950, 15546, 'fifteen thousand five hundred forty-six'), (5951, 41211, 'forty-one thousand two hundred eleven'), (5952, 74537, 'seventy-four thousand five hundred thirty-seven'), (5953, 63166, 'sixty-three thousand one hundred sixty-six'), (5954, 82473, 'eighty-two thousand four hundred seventy-three'), (5955, 48878, 'forty-eight thousand eight hundred seventy-eight'), (5956, 45189, 'forty-five thousand one hundred eighty-nine'), (5957, 77752, 'seventy-seven thousand seven hundred fifty-two'), (5958, 87932, 'eighty-seven thousand nine hundred thirty-two'), (5959, 86277, 'eighty-six thousand two hundred seventy-seven'), (5960, 20980, 'twenty thousand nine hundred eighty'), (5961, 37265, 'thirty-seven thousand two hundred sixty-five'), (5962, 81942, 'eighty-one thousand nine hundred forty-two'), (5963, 4031, 'four thousand thirty-one'), (5964, 86426, 'eighty-six thousand four hundred twenty-six'), (5965, 80515, 'eighty thousand five hundred fifteen'), (5966, 73665, 'seventy-three thousand six hundred sixty-five'), (5967, 85035, 'eighty-five thousand thirty-five'), (5968, 26935, 'twenty-six thousand nine hundred thirty-five'), (5969, 9950, 'nine thousand nine hundred fifty'), (5970, 42306, 'forty-two thousand three hundred six'), (5971, 45431, 'forty-five thousand four hundred thirty-one'), (5972, 79241, 'seventy-nine thousand two hundred forty-one'), (5973, 87674, 'eighty-seven thousand six hundred seventy-four'), (5974, 70856, 'seventy thousand eight hundred fifty-six'), (5975, 56129, 'fifty-six thousand one hundred twenty-nine'), (5976, 85673, 'eighty-five thousand six hundred seventy-three'), (5977, 91795, 'ninety-one thousand seven hundred ninety-five'), (5978, 67317, 'sixty-seven thousand three hundred seventeen'), (5979, 22747, 'twenty-two thousand seven hundred forty-seven'), (5980, 96091, 'ninety-six thousand ninety-one'), (5981, 61118, 'sixty-one thousand one hundred eighteen'), (5982, 84339, 'eighty-four thousand three hundred thirty-nine'), (5983, 99440, 'ninety-nine thousand four hundred forty'), (5984, 98795, 'ninety-eight thousand seven hundred ninety-five'), (5985, 62418, 'sixty-two thousand four hundred eighteen'), (5986, 99509, 'ninety-nine thousand five hundred nine'), (5987, 23436, 'twenty-three thousand four hundred thirty-six'), (5988, 27488, 'twenty-seven thousand four hundred eighty-eight'), (5989, 96075, 'ninety-six thousand seventy-five'), (5990, 28324, 'twenty-eight thousand three hundred twenty-four'), (5991, 28772, 'twenty-eight thousand seven hundred seventy-two'), (5992, 20689, 'twenty thousand six hundred eighty-nine'), (5993, 81518, 'eighty-one thousand five hundred eighteen'), (5994, 34810, 'thirty-four thousand eight hundred ten'), (5995, 39866, 'thirty-nine thousand eight hundred sixty-six'), (5996, 68643, 'sixty-eight thousand six hundred forty-three'), (5997, 99629, 'ninety-nine thousand six hundred twenty-nine'), (5998, 43539, 'forty-three thousand five hundred thirty-nine'), (5999, 14163, 'fourteen thousand one hundred sixty-three'), (6000, 24293, 'twenty-four thousand two hundred ninety-three'), (6001, 9911, 'nine thousand nine hundred eleven'), (6002, 32820, 'thirty-two thousand eight hundred twenty'), (6003, 33855, 'thirty-three thousand eight hundred fifty-five'), (6004, 32863, 'thirty-two thousand eight hundred sixty-three'), (6005, 10257, 'ten thousand two hundred fifty-seven'), (6006, 17293, 'seventeen thousand two hundred ninety-three'), (6007, 25948, 'twenty-five thousand nine hundred forty-eight'), (6008, 76148, 'seventy-six thousand one hundred forty-eight'), (6009, 80989, 'eighty thousand nine hundred eighty-nine'), (6010, 13138, 'thirteen thousand one hundred thirty-eight'), (6011, 18117, 'eighteen thousand one hundred seventeen'), (6012, 37625, 'thirty-seven thousand six hundred twenty-five'), (6013, 11651, 'eleven thousand six hundred fifty-one'), (6014, 4414, 'four thousand four hundred fourteen'), (6015, 96168, 'ninety-six thousand one hundred sixty-eight'), (6016, 30176, 'thirty thousand one hundred seventy-six'), (6017, 16592, 'sixteen thousand five hundred ninety-two'), (6018, 19934, 'nineteen thousand nine hundred thirty-four'), (6019, 61088, 'sixty-one thousand eighty-eight'), (6020, 41073, 'forty-one thousand seventy-three'), (6021, 10321, 'ten thousand three hundred twenty-one'), (6022, 42882, 'forty-two thousand eight hundred eighty-two'), (6023, 38439, 'thirty-eight thousand four hundred thirty-nine'), (6024, 67141, 'sixty-seven thousand one hundred forty-one'), (6025, 29710, 'twenty-nine thousand seven hundred ten'), (6026, 7026, 'seven thousand twenty-six'), (6027, 64730, 'sixty-four thousand seven hundred thirty'), (6028, 982, 'nine hundred eighty-two'), (6029, 54154, 'fifty-four thousand one hundred fifty-four'), (6030, 79999, 'seventy-nine thousand nine hundred ninety-nine'), (6031, 20139, 'twenty thousand one hundred thirty-nine'), (6032, 20049, 'twenty thousand forty-nine'), (6033, 61382, 'sixty-one thousand three hundred eighty-two'), (6034, 27733, 'twenty-seven thousand seven hundred thirty-three'), (6035, 30448, 'thirty thousand four hundred forty-eight'), (6036, 85772, 'eighty-five thousand seven hundred seventy-two'), (6037, 84090, 'eighty-four thousand ninety'), (6038, 64591, 'sixty-four thousand five hundred ninety-one'), (6039, 95903, 'ninety-five thousand nine hundred three'), (6040, 31880, 'thirty-one thousand eight hundred eighty'), (6041, 81271, 'eighty-one thousand two hundred seventy-one'), (6042, 38059, 'thirty-eight thousand fifty-nine'), (6043, 31397, 'thirty-one thousand three hundred ninety-seven'), (6044, 32793, 'thirty-two thousand seven hundred ninety-three'), (6045, 72215, 'seventy-two thousand two hundred fifteen'), (6046, 79398, 'seventy-nine thousand three hundred ninety-eight'), (6047, 53081, 'fifty-three thousand eighty-one'), (6048, 43060, 'forty-three thousand sixty'), (6049, 71821, 'seventy-one thousand eight hundred twenty-one'), (6050, 70482, 'seventy thousand four hundred eighty-two'), (6051, 84735, 'eighty-four thousand seven hundred thirty-five'), (6052, 98167, 'ninety-eight thousand one hundred sixty-seven'), (6053, 5447, 'five thousand four hundred forty-seven'), (6054, 18422, 'eighteen thousand four hundred twenty-two'), (6055, 806, 'eight hundred six'), (6056, 65999, 'sixty-five thousand nine hundred ninety-nine'), (6057, 71788, 'seventy-one thousand seven hundred eighty-eight'), (6058, 45743, 'forty-five thousand seven hundred forty-three'), (6059, 26377, 'twenty-six thousand three hundred seventy-seven'), (6060, 34155, 'thirty-four thousand one hundred fifty-five'), (6061, 11997, 'eleven thousand nine hundred ninety-seven'), (6062, 88909, 'eighty-eight thousand nine hundred nine'), (6063, 39965, 'thirty-nine thousand nine hundred sixty-five'), (6064, 39701, 'thirty-nine thousand seven hundred one'), (6065, 7664, 'seven thousand six hundred sixty-four'), (6066, 11472, 'eleven thousand four hundred seventy-two'), (6067, 17373, 'seventeen thousand three hundred seventy-three'), (6068, 91597, 'ninety-one thousand five hundred ninety-seven'), (6069, 43682, 'forty-three thousand six hundred eighty-two'), (6070, 40818, 'forty thousand eight hundred eighteen'), (6071, 8498, 'eight thousand four hundred ninety-eight'), (6072, 6551, 'six thousand five hundred fifty-one'), (6073, 99301, 'ninety-nine thousand three hundred one'), (6074, 75171, 'seventy-five thousand one hundred seventy-one'), (6075, 58286, 'fifty-eight thousand two hundred eighty-six'), (6076, 33634, 'thirty-three thousand six hundred thirty-four'), (6077, 50119, 'fifty thousand one hundred nineteen'), (6078, 20595, 'twenty thousand five hundred ninety-five'), (6079, 91569, 'ninety-one thousand five hundred sixty-nine'), (6080, 30325, 'thirty thousand three hundred twenty-five'), (6081, 14633, 'fourteen thousand six hundred thirty-three'), (6082, 95828, 'ninety-five thousand eight hundred twenty-eight'), (6083, 12233, 'twelve thousand two hundred thirty-three'), (6084, 56433, 'fifty-six thousand four hundred thirty-three'), (6085, 94134, 'ninety-four thousand one hundred thirty-four'), (6086, 63406, 'sixty-three thousand four hundred six'), (6087, 9358, 'nine thousand three hundred fifty-eight'), (6088, 88736, 'eighty-eight thousand seven hundred thirty-six'), (6089, 37829, 'thirty-seven thousand eight hundred twenty-nine'), (6090, 58055, 'fifty-eight thousand fifty-five'), (6091, 19211, 'nineteen thousand two hundred eleven'), (6092, 9621, 'nine thousand six hundred twenty-one'), (6093, 43331, 'forty-three thousand three hundred thirty-one'), (6094, 3025, 'three thousand twenty-five'), (6095, 65156, 'sixty-five thousand one hundred fifty-six'), (6096, 89529, 'eighty-nine thousand five hundred twenty-nine'), (6097, 44712, 'forty-four thousand seven hundred twelve'), (6098, 60314, 'sixty thousand three hundred fourteen'), (6099, 98299, 'ninety-eight thousand two hundred ninety-nine'), (6100, 84243, 'eighty-four thousand two hundred forty-three'), (6101, 74533, 'seventy-four thousand five hundred thirty-three'), (6102, 10785, 'ten thousand seven hundred eighty-five'), (6103, 74129, 'seventy-four thousand one hundred twenty-nine'), (6104, 8076, 'eight thousand seventy-six'), (6105, 16801, 'sixteen thousand eight hundred one'), (6106, 11420, 'eleven thousand four hundred twenty'), (6107, 62746, 'sixty-two thousand seven hundred forty-six'), (6108, 47304, 'forty-seven thousand three hundred four'), (6109, 11714, 'eleven thousand seven hundred fourteen'), (6110, 97748, 'ninety-seven thousand seven hundred forty-eight'), (6111, 82057, 'eighty-two thousand fifty-seven'), (6112, 44645, 'forty-four thousand six hundred forty-five'), (6113, 49904, 'forty-nine thousand nine hundred four'), (6114, 17530, 'seventeen thousand five hundred thirty'), (6115, 12746, 'twelve thousand seven hundred forty-six'), (6116, 27698, 'twenty-seven thousand six hundred ninety-eight'), (6117, 1333, 'one thousand three hundred thirty-three'), (6118, 93574, 'ninety-three thousand five hundred seventy-four'), (6119, 81450, 'eighty-one thousand four hundred fifty'), (6120, 75877, 'seventy-five thousand eight hundred seventy-seven'), (6121, 60516, 'sixty thousand five hundred sixteen'), (6122, 30442, 'thirty thousand four hundred forty-two'), (6123, 27029, 'twenty-seven thousand twenty-nine'), (6124, 12630, 'twelve thousand six hundred thirty'), (6125, 3017, 'three thousand seventeen'), (6126, 12658, 'twelve thousand six hundred fifty-eight'), (6127, 96183, 'ninety-six thousand one hundred eighty-three'), (6128, 99065, 'ninety-nine thousand sixty-five'), (6129, 66995, 'sixty-six thousand nine hundred ninety-five'), (6130, 5298, 'five thousand two hundred ninety-eight'), (6131, 64425, 'sixty-four thousand four hundred twenty-five'), (6132, 844, 'eight hundred forty-four'), (6133, 21930, 'twenty-one thousand nine hundred thirty'), (6134, 23684, 'twenty-three thousand six hundred eighty-four'), (6135, 35982, 'thirty-five thousand nine hundred eighty-two'), (6136, 11008, 'eleven thousand eight'), (6137, 19763, 'nineteen thousand seven hundred sixty-three'), (6138, 60512, 'sixty thousand five hundred twelve'), (6139, 21885, 'twenty-one thousand eight hundred eighty-five'), (6140, 83640, 'eighty-three thousand six hundred forty'), (6141, 94539, 'ninety-four thousand five hundred thirty-nine'), (6142, 52823, 'fifty-two thousand eight hundred twenty-three'), (6143, 6389, 'six thousand three hundred eighty-nine'), (6144, 19177, 'nineteen thousand one hundred seventy-seven'), (6145, 89475, 'eighty-nine thousand four hundred seventy-five'), (6146, 20380, 'twenty thousand three hundred eighty'), (6147, 87303, 'eighty-seven thousand three hundred three'), (6148, 52516, 'fifty-two thousand five hundred sixteen'), (6149, 14393, 'fourteen thousand three hundred ninety-three'), (6150, 68834, 'sixty-eight thousand eight hundred thirty-four'), (6151, 85944, 'eighty-five thousand nine hundred forty-four'), (6152, 78341, 'seventy-eight thousand three hundred forty-one'), (6153, 82521, 'eighty-two thousand five hundred twenty-one'), (6154, 48666, 'forty-eight thousand six hundred sixty-six'), (6155, 57268, 'fifty-seven thousand two hundred sixty-eight'), (6156, 29428, 'twenty-nine thousand four hundred twenty-eight'), (6157, 91941, 'ninety-one thousand nine hundred forty-one'), (6158, 55696, 'fifty-five thousand six hundred ninety-six'), (6159, 10591, 'ten thousand five hundred ninety-one'), (6160, 73189, 'seventy-three thousand one hundred eighty-nine'), (6161, 5545, 'five thousand five hundred forty-five'), (6162, 71766, 'seventy-one thousand seven hundred sixty-six'), (6163, 60261, 'sixty thousand two hundred sixty-one'), (6164, 6771, 'six thousand seven hundred seventy-one'), (6165, 61833, 'sixty-one thousand eight hundred thirty-three'), (6166, 42807, 'forty-two thousand eight hundred seven'), (6167, 12021, 'twelve thousand twenty-one'), (6168, 47884, 'forty-seven thousand eight hundred eighty-four'), (6169, 24662, 'twenty-four thousand six hundred sixty-two'), (6170, 98069, 'ninety-eight thousand sixty-nine'), (6171, 2270, 'two thousand two hundred seventy'), (6172, 26039, 'twenty-six thousand thirty-nine'), (6173, 65640, 'sixty-five thousand six hundred forty'), (6174, 46988, 'forty-six thousand nine hundred eighty-eight'), (6175, 88153, 'eighty-eight thousand one hundred fifty-three'), (6176, 89564, 'eighty-nine thousand five hundred sixty-four'), (6177, 25319, 'twenty-five thousand three hundred nineteen'), (6178, 12171, 'twelve thousand one hundred seventy-one'), (6179, 27465, 'twenty-seven thousand four hundred sixty-five'), (6180, 36456, 'thirty-six thousand four hundred fifty-six'), (6181, 70611, 'seventy thousand six hundred eleven'), (6182, 43880, 'forty-three thousand eight hundred eighty'), (6183, 62758, 'sixty-two thousand seven hundred fifty-eight'), (6184, 38437, 'thirty-eight thousand four hundred thirty-seven'), (6185, 43518, 'forty-three thousand five hundred eighteen'), (6186, 44228, 'forty-four thousand two hundred twenty-eight'), (6187, 17698, 'seventeen thousand six hundred ninety-eight'), (6188, 77514, 'seventy-seven thousand five hundred fourteen'), (6189, 32407, 'thirty-two thousand four hundred seven'), (6190, 19508, 'nineteen thousand five hundred eight'), (6191, 25144, 'twenty-five thousand one hundred forty-four'), (6192, 40712, 'forty thousand seven hundred twelve'), (6193, 80425, 'eighty thousand four hundred twenty-five'), (6194, 11179, 'eleven thousand one hundred seventy-nine'), (6195, 27124, 'twenty-seven thousand one hundred twenty-four'), (6196, 15279, 'fifteen thousand two hundred seventy-nine'), (6197, 42399, 'forty-two thousand three hundred ninety-nine'), (6198, 726, 'seven hundred twenty-six'), (6199, 80053, 'eighty thousand fifty-three'), (6200, 37164, 'thirty-seven thousand one hundred sixty-four'), (6201, 1416, 'one thousand four hundred sixteen'), (6202, 86978, 'eighty-six thousand nine hundred seventy-eight'), (6203, 74014, 'seventy-four thousand fourteen'), (6204, 88463, 'eighty-eight thousand four hundred sixty-three'), (6205, 45408, 'forty-five thousand four hundred eight'), (6206, 92533, 'ninety-two thousand five hundred thirty-three'), (6207, 83478, 'eighty-three thousand four hundred seventy-eight'), (6208, 53937, 'fifty-three thousand nine hundred thirty-seven'), (6209, 79527, 'seventy-nine thousand five hundred twenty-seven'), (6210, 70018, 'seventy thousand eighteen'), (6211, 55734, 'fifty-five thousand seven hundred thirty-four'), (6212, 45979, 'forty-five thousand nine hundred seventy-nine'), (6213, 35933, 'thirty-five thousand nine hundred thirty-three'), (6214, 32057, 'thirty-two thousand fifty-seven'), (6215, 81084, 'eighty-one thousand eighty-four'), (6216, 48355, 'forty-eight thousand three hundred fifty-five'), (6217, 95606, 'ninety-five thousand six hundred six'), (6218, 81945, 'eighty-one thousand nine hundred forty-five'), (6219, 84258, 'eighty-four thousand two hundred fifty-eight'), (6220, 40989, 'forty thousand nine hundred eighty-nine'), (6221, 54235, 'fifty-four thousand two hundred thirty-five'), (6222, 28354, 'twenty-eight thousand three hundred fifty-four'), (6223, 23029, 'twenty-three thousand twenty-nine'), (6224, 28527, 'twenty-eight thousand five hundred twenty-seven'), (6225, 54782, 'fifty-four thousand seven hundred eighty-two'), (6226, 63834, 'sixty-three thousand eight hundred thirty-four'), (6227, 31714, 'thirty-one thousand seven hundred fourteen'), (6228, 1076, 'one thousand seventy-six'), (6229, 72732, 'seventy-two thousand seven hundred thirty-two'), (6230, 98839, 'ninety-eight thousand eight hundred thirty-nine'), (6231, 87124, 'eighty-seven thousand one hundred twenty-four'), (6232, 66213, 'sixty-six thousand two hundred thirteen'), (6233, 23091, 'twenty-three thousand ninety-one'), (6234, 43627, 'forty-three thousand six hundred twenty-seven'), (6235, 76741, 'seventy-six thousand seven hundred forty-one'), (6236, 86983, 'eighty-six thousand nine hundred eighty-three'), (6237, 66646, 'sixty-six thousand six hundred forty-six'), (6238, 4490, 'four thousand four hundred ninety'), (6239, 72257, 'seventy-two thousand two hundred fifty-seven'), (6240, 89622, 'eighty-nine thousand six hundred twenty-two'), (6241, 13763, 'thirteen thousand seven hundred sixty-three'), (6242, 65227, 'sixty-five thousand two hundred twenty-seven'), (6243, 25420, 'twenty-five thousand four hundred twenty'), (6244, 32765, 'thirty-two thousand seven hundred sixty-five'), (6245, 87872, 'eighty-seven thousand eight hundred seventy-two'), (6246, 33704, 'thirty-three thousand seven hundred four'), (6247, 92939, 'ninety-two thousand nine hundred thirty-nine'), (6248, 5830, 'five thousand eight hundred thirty'), (6249, 12851, 'twelve thousand eight hundred fifty-one'), (6250, 42166, 'forty-two thousand one hundred sixty-six'), (6251, 55694, 'fifty-five thousand six hundred ninety-four'), (6252, 14530, 'fourteen thousand five hundred thirty'), (6253, 56005, 'fifty-six thousand five'), (6254, 76667, 'seventy-six thousand six hundred sixty-seven'), (6255, 47309, 'forty-seven thousand three hundred nine'), (6256, 60041, 'sixty thousand forty-one'), (6257, 98988, 'ninety-eight thousand nine hundred eighty-eight'), (6258, 87103, 'eighty-seven thousand one hundred three'), (6259, 43646, 'forty-three thousand six hundred forty-six'), (6260, 58177, 'fifty-eight thousand one hundred seventy-seven'), (6261, 10901, 'ten thousand nine hundred one'), (6262, 97988, 'ninety-seven thousand nine hundred eighty-eight'), (6263, 15056, 'fifteen thousand fifty-six'), (6264, 57504, 'fifty-seven thousand five hundred four'), (6265, 49228, 'forty-nine thousand two hundred twenty-eight'), (6266, 13081, 'thirteen thousand eighty-one'), (6267, 42925, 'forty-two thousand nine hundred twenty-five'), (6268, 89450, 'eighty-nine thousand four hundred fifty'), (6269, 28088, 'twenty-eight thousand eighty-eight'), (6270, 13883, 'thirteen thousand eight hundred eighty-three'), (6271, 62491, 'sixty-two thousand four hundred ninety-one'), (6272, 54510, 'fifty-four thousand five hundred ten'), (6273, 25477, 'twenty-five thousand four hundred seventy-seven'), (6274, 36892, 'thirty-six thousand eight hundred ninety-two'), (6275, 44686, 'forty-four thousand six hundred eighty-six'), (6276, 623, 'six hundred twenty-three'), (6277, 74026, 'seventy-four thousand twenty-six'), (6278, 6620, 'six thousand six hundred twenty'), (6279, 97614, 'ninety-seven thousand six hundred fourteen'), (6280, 87690, 'eighty-seven thousand six hundred ninety'), (6281, 37529, 'thirty-seven thousand five hundred twenty-nine'), (6282, 61052, 'sixty-one thousand fifty-two'), (6283, 33322, 'thirty-three thousand three hundred twenty-two'), (6284, 14694, 'fourteen thousand six hundred ninety-four'), (6285, 68015, 'sixty-eight thousand fifteen'), (6286, 247, 'two hundred forty-seven'), (6287, 33736, 'thirty-three thousand seven hundred thirty-six'), (6288, 86318, 'eighty-six thousand three hundred eighteen'), (6289, 67992, 'sixty-seven thousand nine hundred ninety-two'), (6290, 2689, 'two thousand six hundred eighty-nine'), (6291, 73700, 'seventy-three thousand seven hundred'), (6292, 50034, 'fifty thousand thirty-four'), (6293, 26225, 'twenty-six thousand two hundred twenty-five'), (6294, 3238, 'three thousand two hundred thirty-eight'), (6295, 82917, 'eighty-two thousand nine hundred seventeen'), (6296, 88035, 'eighty-eight thousand thirty-five'), (6297, 31791, 'thirty-one thousand seven hundred ninety-one'), (6298, 90092, 'ninety thousand ninety-two'), (6299, 80174, 'eighty thousand one hundred seventy-four'), (6300, 4836, 'four thousand eight hundred thirty-six'), (6301, 53563, 'fifty-three thousand five hundred sixty-three'), (6302, 39432, 'thirty-nine thousand four hundred thirty-two'), (6303, 29551, 'twenty-nine thousand five hundred fifty-one'), (6304, 75845, 'seventy-five thousand eight hundred forty-five'), (6305, 38821, 'thirty-eight thousand eight hundred twenty-one'), (6306, 56215, 'fifty-six thousand two hundred fifteen'), (6307, 59089, 'fifty-nine thousand eighty-nine'), (6308, 96917, 'ninety-six thousand nine hundred seventeen'), (6309, 28136, 'twenty-eight thousand one hundred thirty-six'), (6310, 62247, 'sixty-two thousand two hundred forty-seven'), (6311, 92031, 'ninety-two thousand thirty-one'), (6312, 22252, 'twenty-two thousand two hundred fifty-two'), (6313, 14414, 'fourteen thousand four hundred fourteen'), (6314, 88576, 'eighty-eight thousand five hundred seventy-six'), (6315, 42941, 'forty-two thousand nine hundred forty-one'), (6316, 80753, 'eighty thousand seven hundred fifty-three'), (6317, 63991, 'sixty-three thousand nine hundred ninety-one'), (6318, 81264, 'eighty-one thousand two hundred sixty-four'), (6319, 21916, 'twenty-one thousand nine hundred sixteen'), (6320, 78785, 'seventy-eight thousand seven hundred eighty-five'), (6321, 9211, 'nine thousand two hundred eleven'), (6322, 60477, 'sixty thousand four hundred seventy-seven'), (6323, 11677, 'eleven thousand six hundred seventy-seven'), (6324, 99402, 'ninety-nine thousand four hundred two'), (6325, 45164, 'forty-five thousand one hundred sixty-four'), (6326, 2457, 'two thousand four hundred fifty-seven'), (6327, 4987, 'four thousand nine hundred eighty-seven'), (6328, 99422, 'ninety-nine thousand four hundred twenty-two'), (6329, 84484, 'eighty-four thousand four hundred eighty-four'), (6330, 96512, 'ninety-six thousand five hundred twelve'), (6331, 74147, 'seventy-four thousand one hundred forty-seven'), (6332, 46153, 'forty-six thousand one hundred fifty-three'), (6333, 48853, 'forty-eight thousand eight hundred fifty-three'), (6334, 65540, 'sixty-five thousand five hundred forty'), (6335, 28107, 'twenty-eight thousand one hundred seven'), (6336, 29441, 'twenty-nine thousand four hundred forty-one'), (6337, 53313, 'fifty-three thousand three hundred thirteen'), (6338, 79738, 'seventy-nine thousand seven hundred thirty-eight'), (6339, 69030, 'sixty-nine thousand thirty'), (6340, 95058, 'ninety-five thousand fifty-eight'), (6341, 40977, 'forty thousand nine hundred seventy-seven'), (6342, 93352, 'ninety-three thousand three hundred fifty-two'), (6343, 59833, 'fifty-nine thousand eight hundred thirty-three'), (6344, 45957, 'forty-five thousand nine hundred fifty-seven'), (6345, 96727, 'ninety-six thousand seven hundred twenty-seven'), (6346, 34117, 'thirty-four thousand one hundred seventeen'), (6347, 99900, 'ninety-nine thousand nine hundred'), (6348, 22656, 'twenty-two thousand six hundred fifty-six'), (6349, 36404, 'thirty-six thousand four hundred four'), (6350, 80787, 'eighty thousand seven hundred eighty-seven'), (6351, 96035, 'ninety-six thousand thirty-five'), (6352, 697, 'six hundred ninety-seven'), (6353, 7210, 'seven thousand two hundred ten'), (6354, 14584, 'fourteen thousand five hundred eighty-four'), (6355, 15248, 'fifteen thousand two hundred forty-eight'), (6356, 159, 'one hundred fifty-nine'), (6357, 39531, 'thirty-nine thousand five hundred thirty-one'), (6358, 29322, 'twenty-nine thousand three hundred twenty-two'), (6359, 52603, 'fifty-two thousand six hundred three'), (6360, 16485, 'sixteen thousand four hundred eighty-five'), (6361, 51069, 'fifty-one thousand sixty-nine'), (6362, 86442, 'eighty-six thousand four hundred forty-two'), (6363, 40547, 'forty thousand five hundred forty-seven'), (6364, 8011, 'eight thousand eleven'), (6365, 15798, 'fifteen thousand seven hundred ninety-eight'), (6366, 8431, 'eight thousand four hundred thirty-one'), (6367, 54606, 'fifty-four thousand six hundred six'), (6368, 6730, 'six thousand seven hundred thirty'), (6369, 74250, 'seventy-four thousand two hundred fifty'), (6370, 98563, 'ninety-eight thousand five hundred sixty-three'), (6371, 23258, 'twenty-three thousand two hundred fifty-eight'), (6372, 79820, 'seventy-nine thousand eight hundred twenty'), (6373, 66722, 'sixty-six thousand seven hundred twenty-two'), (6374, 32083, 'thirty-two thousand eighty-three'), (6375, 38101, 'thirty-eight thousand one hundred one'), (6376, 97170, 'ninety-seven thousand one hundred seventy'), (6377, 62549, 'sixty-two thousand five hundred forty-nine'), (6378, 10450, 'ten thousand four hundred fifty'), (6379, 2058, 'two thousand fifty-eight'), (6380, 63483, 'sixty-three thousand four hundred eighty-three'), (6381, 76032, 'seventy-six thousand thirty-two'), (6382, 65603, 'sixty-five thousand six hundred three'), (6383, 32631, 'thirty-two thousand six hundred thirty-one'), (6384, 86527, 'eighty-six thousand five hundred twenty-seven'), (6385, 42345, 'forty-two thousand three hundred forty-five'), (6386, 76644, 'seventy-six thousand six hundred forty-four'), (6387, 8509, 'eight thousand five hundred nine'), (6388, 48035, 'forty-eight thousand thirty-five'), (6389, 40802, 'forty thousand eight hundred two'), (6390, 2238, 'two thousand two hundred thirty-eight'), (6391, 66518, 'sixty-six thousand five hundred eighteen'), (6392, 42723, 'forty-two thousand seven hundred twenty-three'), (6393, 411, 'four hundred eleven'), (6394, 71064, 'seventy-one thousand sixty-four'), (6395, 75111, 'seventy-five thousand one hundred eleven'), (6396, 29646, 'twenty-nine thousand six hundred forty-six'), (6397, 25777, 'twenty-five thousand seven hundred seventy-seven'), (6398, 95760, 'ninety-five thousand seven hundred sixty'), (6399, 26311, 'twenty-six thousand three hundred eleven'), (6400, 68057, 'sixty-eight thousand fifty-seven'), (6401, 86442, 'eighty-six thousand four hundred forty-two'), (6402, 56758, 'fifty-six thousand seven hundred fifty-eight'), (6403, 98766, 'ninety-eight thousand seven hundred sixty-six'), (6404, 85045, 'eighty-five thousand forty-five'), (6405, 38693, 'thirty-eight thousand six hundred ninety-three'), (6406, 88482, 'eighty-eight thousand four hundred eighty-two'), (6407, 27747, 'twenty-seven thousand seven hundred forty-seven'), (6408, 85182, 'eighty-five thousand one hundred eighty-two'), (6409, 32398, 'thirty-two thousand three hundred ninety-eight'), (6410, 55913, 'fifty-five thousand nine hundred thirteen'), (6411, 31702, 'thirty-one thousand seven hundred two'), (6412, 98943, 'ninety-eight thousand nine hundred forty-three'), (6413, 70579, 'seventy thousand five hundred seventy-nine'), (6414, 90523, 'ninety thousand five hundred twenty-three'), (6415, 81321, 'eighty-one thousand three hundred twenty-one'), (6416, 93603, 'ninety-three thousand six hundred three'), (6417, 84198, 'eighty-four thousand one hundred ninety-eight'), (6418, 19537, 'nineteen thousand five hundred thirty-seven'), (6419, 72503, 'seventy-two thousand five hundred three'), (6420, 91695, 'ninety-one thousand six hundred ninety-five'), (6421, 70579, 'seventy thousand five hundred seventy-nine'), (6422, 14607, 'fourteen thousand six hundred seven'), (6423, 22638, 'twenty-two thousand six hundred thirty-eight'), (6424, 70894, 'seventy thousand eight hundred ninety-four'), (6425, 87045, 'eighty-seven thousand forty-five'), (6426, 90446, 'ninety thousand four hundred forty-six'), (6427, 9012, 'nine thousand twelve'), (6428, 32693, 'thirty-two thousand six hundred ninety-three'), (6429, 16281, 'sixteen thousand two hundred eighty-one'), (6430, 86034, 'eighty-six thousand thirty-four'), (6431, 81060, 'eighty-one thousand sixty'), (6432, 81880, 'eighty-one thousand eight hundred eighty'), (6433, 69098, 'sixty-nine thousand ninety-eight'), (6434, 96616, 'ninety-six thousand six hundred sixteen'), (6435, 17714, 'seventeen thousand seven hundred fourteen'), (6436, 96329, 'ninety-six thousand three hundred twenty-nine'), (6437, 21702, 'twenty-one thousand seven hundred two'), (6438, 65357, 'sixty-five thousand three hundred fifty-seven'), (6439, 53554, 'fifty-three thousand five hundred fifty-four'), (6440, 84396, 'eighty-four thousand three hundred ninety-six'), (6441, 98027, 'ninety-eight thousand twenty-seven'), (6442, 58883, 'fifty-eight thousand eight hundred eighty-three'), (6443, 86208, 'eighty-six thousand two hundred eight'), (6444, 10831, 'ten thousand eight hundred thirty-one'), (6445, 22454, 'twenty-two thousand four hundred fifty-four'), (6446, 24336, 'twenty-four thousand three hundred thirty-six'), (6447, 94127, 'ninety-four thousand one hundred twenty-seven'), (6448, 77752, 'seventy-seven thousand seven hundred fifty-two'), (6449, 30211, 'thirty thousand two hundred eleven'), (6450, 72104, 'seventy-two thousand one hundred four'), (6451, 14312, 'fourteen thousand three hundred twelve'), (6452, 30821, 'thirty thousand eight hundred twenty-one'), (6453, 88440, 'eighty-eight thousand four hundred forty'), (6454, 80336, 'eighty thousand three hundred thirty-six'), (6455, 17921, 'seventeen thousand nine hundred twenty-one'), (6456, 72075, 'seventy-two thousand seventy-five'), (6457, 68952, 'sixty-eight thousand nine hundred fifty-two'), (6458, 50976, 'fifty thousand nine hundred seventy-six'), (6459, 17339, 'seventeen thousand three hundred thirty-nine'), (6460, 76275, 'seventy-six thousand two hundred seventy-five'), (6461, 5063, 'five thousand sixty-three'), (6462, 56282, 'fifty-six thousand two hundred eighty-two'), (6463, 58924, 'fifty-eight thousand nine hundred twenty-four'), (6464, 61997, 'sixty-one thousand nine hundred ninety-seven'), (6465, 6748, 'six thousand seven hundred forty-eight'), (6466, 2445, 'two thousand four hundred forty-five'), (6467, 95279, 'ninety-five thousand two hundred seventy-nine'), (6468, 58370, 'fifty-eight thousand three hundred seventy'), (6469, 79648, 'seventy-nine thousand six hundred forty-eight'), (6470, 19836, 'nineteen thousand eight hundred thirty-six'), (6471, 26488, 'twenty-six thousand four hundred eighty-eight'), (6472, 46300, 'forty-six thousand three hundred'), (6473, 59242, 'fifty-nine thousand two hundred forty-two'), (6474, 94537, 'ninety-four thousand five hundred thirty-seven'), (6475, 48770, 'forty-eight thousand seven hundred seventy'), (6476, 73293, 'seventy-three thousand two hundred ninety-three'), (6477, 71587, 'seventy-one thousand five hundred eighty-seven'), (6478, 34578, 'thirty-four thousand five hundred seventy-eight'), (6479, 395, 'three hundred ninety-five'), (6480, 49738, 'forty-nine thousand seven hundred thirty-eight'), (6481, 39372, 'thirty-nine thousand three hundred seventy-two'), (6482, 58806, 'fifty-eight thousand eight hundred six'), (6483, 81494, 'eighty-one thousand four hundred ninety-four'), (6484, 50298, 'fifty thousand two hundred ninety-eight'), (6485, 91193, 'ninety-one thousand one hundred ninety-three'), (6486, 84418, 'eighty-four thousand four hundred eighteen'), (6487, 43246, 'forty-three thousand two hundred forty-six'), (6488, 99111, 'ninety-nine thousand one hundred eleven'), (6489, 87337, 'eighty-seven thousand three hundred thirty-seven'), (6490, 353, 'three hundred fifty-three'), (6491, 20434, 'twenty thousand four hundred thirty-four'), (6492, 63428, 'sixty-three thousand four hundred twenty-eight'), (6493, 33969, 'thirty-three thousand nine hundred sixty-nine'), (6494, 3224, 'three thousand two hundred twenty-four'), (6495, 64553, 'sixty-four thousand five hundred fifty-three'), (6496, 950, 'nine hundred fifty'), (6497, 47927, 'forty-seven thousand nine hundred twenty-seven'), (6498, 5149, 'five thousand one hundred forty-nine'), (6499, 30719, 'thirty thousand seven hundred nineteen'), (6500, 50162, 'fifty thousand one hundred sixty-two'), (6501, 76386, 'seventy-six thousand three hundred eighty-six'), (6502, 5514, 'five thousand five hundred fourteen'), (6503, 98674, 'ninety-eight thousand six hundred seventy-four'), (6504, 7134, 'seven thousand one hundred thirty-four'), (6505, 43648, 'forty-three thousand six hundred forty-eight'), (6506, 63879, 'sixty-three thousand eight hundred seventy-nine'), (6507, 5557, 'five thousand five hundred fifty-seven'), (6508, 48890, 'forty-eight thousand eight hundred ninety'), (6509, 18033, 'eighteen thousand thirty-three'), (6510, 72800, 'seventy-two thousand eight hundred'), (6511, 45062, 'forty-five thousand sixty-two'), (6512, 89541, 'eighty-nine thousand five hundred forty-one'), (6513, 337, 'three hundred thirty-seven'), (6514, 42970, 'forty-two thousand nine hundred seventy'), (6515, 5347, 'five thousand three hundred forty-seven'), (6516, 13576, 'thirteen thousand five hundred seventy-six'), (6517, 69606, 'sixty-nine thousand six hundred six'), (6518, 52446, 'fifty-two thousand four hundred forty-six'), (6519, 36405, 'thirty-six thousand four hundred five'), (6520, 35661, 'thirty-five thousand six hundred sixty-one'), (6521, 46459, 'forty-six thousand four hundred fifty-nine'), (6522, 77111, 'seventy-seven thousand one hundred eleven'), (6523, 12640, 'twelve thousand six hundred forty'), (6524, 90869, 'ninety thousand eight hundred sixty-nine'), (6525, 71557, 'seventy-one thousand five hundred fifty-seven'), (6526, 714, 'seven hundred fourteen'), (6527, 95355, 'ninety-five thousand three hundred fifty-five'), (6528, 10730, 'ten thousand seven hundred thirty'), (6529, 6696, 'six thousand six hundred ninety-six'), (6530, 96869, 'ninety-six thousand eight hundred sixty-nine'), (6531, 68136, 'sixty-eight thousand one hundred thirty-six'), (6532, 67764, 'sixty-seven thousand seven hundred sixty-four'), (6533, 12977, 'twelve thousand nine hundred seventy-seven'), (6534, 64121, 'sixty-four thousand one hundred twenty-one'), (6535, 29262, 'twenty-nine thousand two hundred sixty-two'), (6536, 8828, 'eight thousand eight hundred twenty-eight'), (6537, 11408, 'eleven thousand four hundred eight'), (6538, 98612, 'ninety-eight thousand six hundred twelve'), (6539, 42095, 'forty-two thousand ninety-five'), (6540, 58308, 'fifty-eight thousand three hundred eight'), (6541, 17618, 'seventeen thousand six hundred eighteen'), (6542, 91229, 'ninety-one thousand two hundred twenty-nine'), (6543, 93349, 'ninety-three thousand three hundred forty-nine'), (6544, 40588, 'forty thousand five hundred eighty-eight'), (6545, 93831, 'ninety-three thousand eight hundred thirty-one'), (6546, 83235, 'eighty-three thousand two hundred thirty-five'), (6547, 98016, 'ninety-eight thousand sixteen'), (6548, 78127, 'seventy-eight thousand one hundred twenty-seven'), (6549, 65915, 'sixty-five thousand nine hundred fifteen'), (6550, 35927, 'thirty-five thousand nine hundred twenty-seven'), (6551, 81793, 'eighty-one thousand seven hundred ninety-three'), (6552, 4105, 'four thousand one hundred five'), (6553, 98613, 'ninety-eight thousand six hundred thirteen'), (6554, 31952, 'thirty-one thousand nine hundred fifty-two'), (6555, 18668, 'eighteen thousand six hundred sixty-eight'), (6556, 70762, 'seventy thousand seven hundred sixty-two'), (6557, 37556, 'thirty-seven thousand five hundred fifty-six'), (6558, 64423, 'sixty-four thousand four hundred twenty-three'), (6559, 61176, 'sixty-one thousand one hundred seventy-six'), (6560, 27820, 'twenty-seven thousand eight hundred twenty'), (6561, 29432, 'twenty-nine thousand four hundred thirty-two'), (6562, 67897, 'sixty-seven thousand eight hundred ninety-seven'), (6563, 75938, 'seventy-five thousand nine hundred thirty-eight'), (6564, 35003, 'thirty-five thousand three'), (6565, 21286, 'twenty-one thousand two hundred eighty-six'), (6566, 12470, 'twelve thousand four hundred seventy'), (6567, 71891, 'seventy-one thousand eight hundred ninety-one'), (6568, 2784, 'two thousand seven hundred eighty-four'), (6569, 22162, 'twenty-two thousand one hundred sixty-two'), (6570, 52367, 'fifty-two thousand three hundred sixty-seven'), (6571, 50157, 'fifty thousand one hundred fifty-seven'), (6572, 20175, 'twenty thousand one hundred seventy-five'), (6573, 25136, 'twenty-five thousand one hundred thirty-six'), (6574, 67773, 'sixty-seven thousand seven hundred seventy-three'), (6575, 22905, 'twenty-two thousand nine hundred five'), (6576, 7527, 'seven thousand five hundred twenty-seven'), (6577, 99972, 'ninety-nine thousand nine hundred seventy-two'), (6578, 26244, 'twenty-six thousand two hundred forty-four'), (6579, 3988, 'three thousand nine hundred eighty-eight'), (6580, 78093, 'seventy-eight thousand ninety-three'), (6581, 51433, 'fifty-one thousand four hundred thirty-three'), (6582, 46328, 'forty-six thousand three hundred twenty-eight'), (6583, 86139, 'eighty-six thousand one hundred thirty-nine'), (6584, 4370, 'four thousand three hundred seventy'), (6585, 6155, 'six thousand one hundred fifty-five'), (6586, 44537, 'forty-four thousand five hundred thirty-seven'), (6587, 61247, 'sixty-one thousand two hundred forty-seven'), (6588, 81676, 'eighty-one thousand six hundred seventy-six'), (6589, 82034, 'eighty-two thousand thirty-four'), (6590, 51474, 'fifty-one thousand four hundred seventy-four'), (6591, 57140, 'fifty-seven thousand one hundred forty'), (6592, 77032, 'seventy-seven thousand thirty-two'), (6593, 85202, 'eighty-five thousand two hundred two'), (6594, 97387, 'ninety-seven thousand three hundred eighty-seven'), (6595, 36699, 'thirty-six thousand six hundred ninety-nine'), (6596, 95494, 'ninety-five thousand four hundred ninety-four'), (6597, 60862, 'sixty thousand eight hundred sixty-two'), (6598, 12721, 'twelve thousand seven hundred twenty-one'), (6599, 46185, 'forty-six thousand one hundred eighty-five'), (6600, 5960, 'five thousand nine hundred sixty'), (6601, 59841, 'fifty-nine thousand eight hundred forty-one'), (6602, 20040, 'twenty thousand forty'), (6603, 52851, 'fifty-two thousand eight hundred fifty-one'), (6604, 98369, 'ninety-eight thousand three hundred sixty-nine'), (6605, 47209, 'forty-seven thousand two hundred nine'), (6606, 1166, 'one thousand one hundred sixty-six'), (6607, 94770, 'ninety-four thousand seven hundred seventy'), (6608, 89349, 'eighty-nine thousand three hundred forty-nine'), (6609, 7611, 'seven thousand six hundred eleven'), (6610, 12467, 'twelve thousand four hundred sixty-seven'), (6611, 93893, 'ninety-three thousand eight hundred ninety-three'), (6612, 59941, 'fifty-nine thousand nine hundred forty-one'), (6613, 42902, 'forty-two thousand nine hundred two'), (6614, 57172, 'fifty-seven thousand one hundred seventy-two'), (6615, 61256, 'sixty-one thousand two hundred fifty-six'), (6616, 38110, 'thirty-eight thousand one hundred ten'), (6617, 35078, 'thirty-five thousand seventy-eight'), (6618, 57155, 'fifty-seven thousand one hundred fifty-five'), (6619, 29333, 'twenty-nine thousand three hundred thirty-three'), (6620, 3543, 'three thousand five hundred forty-three'), (6621, 55935, 'fifty-five thousand nine hundred thirty-five'), (6622, 28858, 'twenty-eight thousand eight hundred fifty-eight'), (6623, 94101, 'ninety-four thousand one hundred one'), (6624, 91360, 'ninety-one thousand three hundred sixty'), (6625, 79815, 'seventy-nine thousand eight hundred fifteen'), (6626, 14822, 'fourteen thousand eight hundred twenty-two'), (6627, 23427, 'twenty-three thousand four hundred twenty-seven'), (6628, 51242, 'fifty-one thousand two hundred forty-two'), (6629, 7058, 'seven thousand fifty-eight'), (6630, 89467, 'eighty-nine thousand four hundred sixty-seven'), (6631, 79717, 'seventy-nine thousand seven hundred seventeen'), (6632, 16821, 'sixteen thousand eight hundred twenty-one'), (6633, 33223, 'thirty-three thousand two hundred twenty-three'), (6634, 96635, 'ninety-six thousand six hundred thirty-five'), (6635, 19409, 'nineteen thousand four hundred nine'), (6636, 45622, 'forty-five thousand six hundred twenty-two'), (6637, 70150, 'seventy thousand one hundred fifty'), (6638, 17916, 'seventeen thousand nine hundred sixteen'), (6639, 84015, 'eighty-four thousand fifteen'), (6640, 52708, 'fifty-two thousand seven hundred eight'), (6641, 79712, 'seventy-nine thousand seven hundred twelve'), (6642, 52733, 'fifty-two thousand seven hundred thirty-three'), (6643, 10721, 'ten thousand seven hundred twenty-one'), (6644, 63701, 'sixty-three thousand seven hundred one'), (6645, 71130, 'seventy-one thousand one hundred thirty'), (6646, 99480, 'ninety-nine thousand four hundred eighty'), (6647, 92378, 'ninety-two thousand three hundred seventy-eight'), (6648, 26104, 'twenty-six thousand one hundred four'), (6649, 9611, 'nine thousand six hundred eleven'), (6650, 55174, 'fifty-five thousand one hundred seventy-four'), (6651, 5313, 'five thousand three hundred thirteen'), (6652, 73525, 'seventy-three thousand five hundred twenty-five'), (6653, 76530, 'seventy-six thousand five hundred thirty'), (6654, 39395, 'thirty-nine thousand three hundred ninety-five'), (6655, 21956, 'twenty-one thousand nine hundred fifty-six'), (6656, 78486, 'seventy-eight thousand four hundred eighty-six'), (6657, 14857, 'fourteen thousand eight hundred fifty-seven'), (6658, 53768, 'fifty-three thousand seven hundred sixty-eight'), (6659, 39320, 'thirty-nine thousand three hundred twenty'), (6660, 15883, 'fifteen thousand eight hundred eighty-three'), (6661, 4770, 'four thousand seven hundred seventy'), (6662, 72020, 'seventy-two thousand twenty'), (6663, 26000, 'twenty-six thousand'), (6664, 95474, 'ninety-five thousand four hundred seventy-four'), (6665, 95154, 'ninety-five thousand one hundred fifty-four'), (6666, 53852, 'fifty-three thousand eight hundred fifty-two'), (6667, 53561, 'fifty-three thousand five hundred sixty-one'), (6668, 76098, 'seventy-six thousand ninety-eight'), (6669, 19230, 'nineteen thousand two hundred thirty'), (6670, 2424, 'two thousand four hundred twenty-four'), (6671, 33583, 'thirty-three thousand five hundred eighty-three'), (6672, 30537, 'thirty thousand five hundred thirty-seven'), (6673, 95682, 'ninety-five thousand six hundred eighty-two'), (6674, 89282, 'eighty-nine thousand two hundred eighty-two'), (6675, 57914, 'fifty-seven thousand nine hundred fourteen'), (6676, 19324, 'nineteen thousand three hundred twenty-four'), (6677, 38619, 'thirty-eight thousand six hundred nineteen'), (6678, 4945, 'four thousand nine hundred forty-five'), (6679, 10780, 'ten thousand seven hundred eighty'), (6680, 4347, 'four thousand three hundred forty-seven'), (6681, 24282, 'twenty-four thousand two hundred eighty-two'), (6682, 7485, 'seven thousand four hundred eighty-five'), (6683, 58345, 'fifty-eight thousand three hundred forty-five'), (6684, 68449, 'sixty-eight thousand four hundred forty-nine'), (6685, 28984, 'twenty-eight thousand nine hundred eighty-four'), (6686, 91546, 'ninety-one thousand five hundred forty-six'), (6687, 61582, 'sixty-one thousand five hundred eighty-two'), (6688, 30617, 'thirty thousand six hundred seventeen'), (6689, 23961, 'twenty-three thousand nine hundred sixty-one'), (6690, 52806, 'fifty-two thousand eight hundred six'), (6691, 96082, 'ninety-six thousand eighty-two'), (6692, 56194, 'fifty-six thousand one hundred ninety-four'), (6693, 22806, 'twenty-two thousand eight hundred six'), (6694, 46566, 'forty-six thousand five hundred sixty-six'), (6695, 3627, 'three thousand six hundred twenty-seven'), (6696, 14933, 'fourteen thousand nine hundred thirty-three'), (6697, 37558, 'thirty-seven thousand five hundred fifty-eight'), (6698, 33543, 'thirty-three thousand five hundred forty-three'), (6699, 13103, 'thirteen thousand one hundred three'), (6700, 86573, 'eighty-six thousand five hundred seventy-three'), (6701, 1830, 'one thousand eight hundred thirty'), (6702, 89933, 'eighty-nine thousand nine hundred thirty-three'), (6703, 26476, 'twenty-six thousand four hundred seventy-six'), (6704, 32688, 'thirty-two thousand six hundred eighty-eight'), (6705, 79443, 'seventy-nine thousand four hundred forty-three'), (6706, 51404, 'fifty-one thousand four hundred four'), (6707, 92220, 'ninety-two thousand two hundred twenty'), (6708, 19932, 'nineteen thousand nine hundred thirty-two'), (6709, 77340, 'seventy-seven thousand three hundred forty'), (6710, 78238, 'seventy-eight thousand two hundred thirty-eight'), (6711, 54462, 'fifty-four thousand four hundred sixty-two'), (6712, 69871, 'sixty-nine thousand eight hundred seventy-one'), (6713, 70202, 'seventy thousand two hundred two'), (6714, 77044, 'seventy-seven thousand forty-four'), (6715, 8101, 'eight thousand one hundred one'), (6716, 50150, 'fifty thousand one hundred fifty'), (6717, 53488, 'fifty-three thousand four hundred eighty-eight'), (6718, 82723, 'eighty-two thousand seven hundred twenty-three'), (6719, 38840, 'thirty-eight thousand eight hundred forty'), (6720, 36854, 'thirty-six thousand eight hundred fifty-four'), (6721, 73289, 'seventy-three thousand two hundred eighty-nine'), (6722, 5460, 'five thousand four hundred sixty'), (6723, 86116, 'eighty-six thousand one hundred sixteen'), (6724, 91671, 'ninety-one thousand six hundred seventy-one'), (6725, 25718, 'twenty-five thousand seven hundred eighteen'), (6726, 49405, 'forty-nine thousand four hundred five'), (6727, 2805, 'two thousand eight hundred five'), (6728, 63907, 'sixty-three thousand nine hundred seven'), (6729, 44633, 'forty-four thousand six hundred thirty-three'), (6730, 83729, 'eighty-three thousand seven hundred twenty-nine'), (6731, 98111, 'ninety-eight thousand one hundred eleven'), (6732, 84927, 'eighty-four thousand nine hundred twenty-seven'), (6733, 27815, 'twenty-seven thousand eight hundred fifteen'), (6734, 65523, 'sixty-five thousand five hundred twenty-three'), (6735, 39927, 'thirty-nine thousand nine hundred twenty-seven'), (6736, 26574, 'twenty-six thousand five hundred seventy-four'), (6737, 95730, 'ninety-five thousand seven hundred thirty'), (6738, 77103, 'seventy-seven thousand one hundred three'), (6739, 94895, 'ninety-four thousand eight hundred ninety-five'), (6740, 12374, 'twelve thousand three hundred seventy-four'), (6741, 84618, 'eighty-four thousand six hundred eighteen'), (6742, 70940, 'seventy thousand nine hundred forty'), (6743, 95197, 'ninety-five thousand one hundred ninety-seven'), (6744, 8114, 'eight thousand one hundred fourteen'), (6745, 48574, 'forty-eight thousand five hundred seventy-four'), (6746, 41804, 'forty-one thousand eight hundred four'), (6747, 18518, 'eighteen thousand five hundred eighteen'), (6748, 39717, 'thirty-nine thousand seven hundred seventeen'), (6749, 54606, 'fifty-four thousand six hundred six'), (6750, 75763, 'seventy-five thousand seven hundred sixty-three'), (6751, 8546, 'eight thousand five hundred forty-six'), (6752, 37046, 'thirty-seven thousand forty-six'), (6753, 76160, 'seventy-six thousand one hundred sixty'), (6754, 79606, 'seventy-nine thousand six hundred six'), (6755, 77839, 'seventy-seven thousand eight hundred thirty-nine'), (6756, 20977, 'twenty thousand nine hundred seventy-seven'), (6757, 5614, 'five thousand six hundred fourteen'), (6758, 45285, 'forty-five thousand two hundred eighty-five'), (6759, 75021, 'seventy-five thousand twenty-one'), (6760, 75872, 'seventy-five thousand eight hundred seventy-two'), (6761, 40849, 'forty thousand eight hundred forty-nine'), (6762, 24484, 'twenty-four thousand four hundred eighty-four'), (6763, 27909, 'twenty-seven thousand nine hundred nine'), (6764, 78913, 'seventy-eight thousand nine hundred thirteen'), (6765, 88805, 'eighty-eight thousand eight hundred five'), (6766, 63580, 'sixty-three thousand five hundred eighty'), (6767, 7919, 'seven thousand nine hundred nineteen'), (6768, 93222, 'ninety-three thousand two hundred twenty-two'), (6769, 24430, 'twenty-four thousand four hundred thirty'), (6770, 43950, 'forty-three thousand nine hundred fifty'), (6771, 1310, 'one thousand three hundred ten'), (6772, 70080, 'seventy thousand eighty'), (6773, 81148, 'eighty-one thousand one hundred forty-eight'), (6774, 62541, 'sixty-two thousand five hundred forty-one'), (6775, 19398, 'nineteen thousand three hundred ninety-eight'), (6776, 97179, 'ninety-seven thousand one hundred seventy-nine'), (6777, 34684, 'thirty-four thousand six hundred eighty-four'), (6778, 88874, 'eighty-eight thousand eight hundred seventy-four'), (6779, 57409, 'fifty-seven thousand four hundred nine'), (6780, 49870, 'forty-nine thousand eight hundred seventy'), (6781, 35463, 'thirty-five thousand four hundred sixty-three'), (6782, 36057, 'thirty-six thousand fifty-seven'), (6783, 65851, 'sixty-five thousand eight hundred fifty-one'), (6784, 13579, 'thirteen thousand five hundred seventy-nine'), (6785, 47773, 'forty-seven thousand seven hundred seventy-three'), (6786, 32848, 'thirty-two thousand eight hundred forty-eight'), (6787, 79542, 'seventy-nine thousand five hundred forty-two'), (6788, 90578, 'ninety thousand five hundred seventy-eight'), (6789, 35204, 'thirty-five thousand two hundred four'), (6790, 95491, 'ninety-five thousand four hundred ninety-one'), (6791, 7086, 'seven thousand eighty-six'), (6792, 70457, 'seventy thousand four hundred fifty-seven'), (6793, 34926, 'thirty-four thousand nine hundred twenty-six'), (6794, 36612, 'thirty-six thousand six hundred twelve'), (6795, 99637, 'ninety-nine thousand six hundred thirty-seven'), (6796, 82112, 'eighty-two thousand one hundred twelve'), (6797, 15285, 'fifteen thousand two hundred eighty-five'), (6798, 90602, 'ninety thousand six hundred two'), (6799, 79256, 'seventy-nine thousand two hundred fifty-six'), (6800, 35128, 'thirty-five thousand one hundred twenty-eight'), (6801, 12135, 'twelve thousand one hundred thirty-five'), (6802, 4111, 'four thousand one hundred eleven'), (6803, 66888, 'sixty-six thousand eight hundred eighty-eight'), (6804, 13525, 'thirteen thousand five hundred twenty-five'), (6805, 6429, 'six thousand four hundred twenty-nine'), (6806, 9298, 'nine thousand two hundred ninety-eight'), (6807, 69879, 'sixty-nine thousand eight hundred seventy-nine'), (6808, 95797, 'ninety-five thousand seven hundred ninety-seven'), (6809, 1046, 'one thousand forty-six'), (6810, 44336, 'forty-four thousand three hundred thirty-six'), (6811, 48541, 'forty-eight thousand five hundred forty-one'), (6812, 17256, 'seventeen thousand two hundred fifty-six'), (6813, 23456, 'twenty-three thousand four hundred fifty-six'), (6814, 32192, 'thirty-two thousand one hundred ninety-two'), (6815, 78220, 'seventy-eight thousand two hundred twenty'), (6816, 78461, 'seventy-eight thousand four hundred sixty-one'), (6817, 87653, 'eighty-seven thousand six hundred fifty-three'), (6818, 45130, 'forty-five thousand one hundred thirty'), (6819, 80243, 'eighty thousand two hundred forty-three'), (6820, 46284, 'forty-six thousand two hundred eighty-four'), (6821, 75250, 'seventy-five thousand two hundred fifty'), (6822, 66744, 'sixty-six thousand seven hundred forty-four'), (6823, 37184, 'thirty-seven thousand one hundred eighty-four'), (6824, 58755, 'fifty-eight thousand seven hundred fifty-five'), (6825, 63300, 'sixty-three thousand three hundred'), (6826, 62363, 'sixty-two thousand three hundred sixty-three'), (6827, 8186, 'eight thousand one hundred eighty-six'), (6828, 50989, 'fifty thousand nine hundred eighty-nine'), (6829, 30688, 'thirty thousand six hundred eighty-eight'), (6830, 72070, 'seventy-two thousand seventy'), (6831, 87929, 'eighty-seven thousand nine hundred twenty-nine'), (6832, 81492, 'eighty-one thousand four hundred ninety-two'), (6833, 90838, 'ninety thousand eight hundred thirty-eight'), (6834, 3276, 'three thousand two hundred seventy-six'), (6835, 74391, 'seventy-four thousand three hundred ninety-one'), (6836, 47180, 'forty-seven thousand one hundred eighty'), (6837, 16898, 'sixteen thousand eight hundred ninety-eight'), (6838, 42432, 'forty-two thousand four hundred thirty-two'), (6839, 61035, 'sixty-one thousand thirty-five'), (6840, 17760, 'seventeen thousand seven hundred sixty'), (6841, 12117, 'twelve thousand one hundred seventeen'), (6842, 65747, 'sixty-five thousand seven hundred forty-seven'), (6843, 32344, 'thirty-two thousand three hundred forty-four'), (6844, 73543, 'seventy-three thousand five hundred forty-three'), (6845, 51745, 'fifty-one thousand seven hundred forty-five'), (6846, 5895, 'five thousand eight hundred ninety-five'), (6847, 85829, 'eighty-five thousand eight hundred twenty-nine'), (6848, 9788, 'nine thousand seven hundred eighty-eight'), (6849, 22687, 'twenty-two thousand six hundred eighty-seven'), (6850, 21778, 'twenty-one thousand seven hundred seventy-eight'), (6851, 98821, 'ninety-eight thousand eight hundred twenty-one'), (6852, 27493, 'twenty-seven thousand four hundred ninety-three'), (6853, 49087, 'forty-nine thousand eighty-seven'), (6854, 20492, 'twenty thousand four hundred ninety-two'), (6855, 34648, 'thirty-four thousand six hundred forty-eight'), (6856, 63848, 'sixty-three thousand eight hundred forty-eight'), (6857, 10977, 'ten thousand nine hundred seventy-seven'), (6858, 39101, 'thirty-nine thousand one hundred one'), (6859, 56572, 'fifty-six thousand five hundred seventy-two'), (6860, 16325, 'sixteen thousand three hundred twenty-five'), (6861, 34890, 'thirty-four thousand eight hundred ninety'), (6862, 8901, 'eight thousand nine hundred one'), (6863, 58120, 'fifty-eight thousand one hundred twenty'), (6864, 9539, 'nine thousand five hundred thirty-nine'), (6865, 18936, 'eighteen thousand nine hundred thirty-six'), (6866, 67666, 'sixty-seven thousand six hundred sixty-six'), (6867, 43303, 'forty-three thousand three hundred three'), (6868, 67804, 'sixty-seven thousand eight hundred four'), (6869, 33925, 'thirty-three thousand nine hundred twenty-five'), (6870, 86284, 'eighty-six thousand two hundred eighty-four'), (6871, 582, 'five hundred eighty-two'), (6872, 48012, 'forty-eight thousand twelve'), (6873, 56226, 'fifty-six thousand two hundred twenty-six'), (6874, 83017, 'eighty-three thousand seventeen'), (6875, 52765, 'fifty-two thousand seven hundred sixty-five'), (6876, 9757, 'nine thousand seven hundred fifty-seven'), (6877, 95014, 'ninety-five thousand fourteen'), (6878, 8705, 'eight thousand seven hundred five'), (6879, 99481, 'ninety-nine thousand four hundred eighty-one'), (6880, 26805, 'twenty-six thousand eight hundred five'), (6881, 54671, 'fifty-four thousand six hundred seventy-one'), (6882, 77647, 'seventy-seven thousand six hundred forty-seven'), (6883, 47193, 'forty-seven thousand one hundred ninety-three'), (6884, 17244, 'seventeen thousand two hundred forty-four'), (6885, 76324, 'seventy-six thousand three hundred twenty-four'), (6886, 35193, 'thirty-five thousand one hundred ninety-three'), (6887, 28642, 'twenty-eight thousand six hundred forty-two'), (6888, 53149, 'fifty-three thousand one hundred forty-nine'), (6889, 53230, 'fifty-three thousand two hundred thirty'), (6890, 448, 'four hundred forty-eight'), (6891, 81316, 'eighty-one thousand three hundred sixteen'), (6892, 89411, 'eighty-nine thousand four hundred eleven'), (6893, 90177, 'ninety thousand one hundred seventy-seven'), (6894, 60157, 'sixty thousand one hundred fifty-seven'), (6895, 52740, 'fifty-two thousand seven hundred forty'), (6896, 12324, 'twelve thousand three hundred twenty-four'), (6897, 90240, 'ninety thousand two hundred forty'), (6898, 46272, 'forty-six thousand two hundred seventy-two'), (6899, 3926, 'three thousand nine hundred twenty-six'), (6900, 66331, 'sixty-six thousand three hundred thirty-one'), (6901, 39669, 'thirty-nine thousand six hundred sixty-nine'), (6902, 96184, 'ninety-six thousand one hundred eighty-four'), (6903, 8073, 'eight thousand seventy-three'), (6904, 28504, 'twenty-eight thousand five hundred four'), (6905, 39372, 'thirty-nine thousand three hundred seventy-two'), (6906, 14669, 'fourteen thousand six hundred sixty-nine'), (6907, 59393, 'fifty-nine thousand three hundred ninety-three'), (6908, 36396, 'thirty-six thousand three hundred ninety-six'), (6909, 99219, 'ninety-nine thousand two hundred nineteen'), (6910, 31371, 'thirty-one thousand three hundred seventy-one'), (6911, 35693, 'thirty-five thousand six hundred ninety-three'), (6912, 58788, 'fifty-eight thousand seven hundred eighty-eight'), (6913, 41832, 'forty-one thousand eight hundred thirty-two'), (6914, 75661, 'seventy-five thousand six hundred sixty-one'), (6915, 47359, 'forty-seven thousand three hundred fifty-nine'), (6916, 73195, 'seventy-three thousand one hundred ninety-five'), (6917, 80499, 'eighty thousand four hundred ninety-nine'), (6918, 5963, 'five thousand nine hundred sixty-three'), (6919, 27733, 'twenty-seven thousand seven hundred thirty-three'), (6920, 86525, 'eighty-six thousand five hundred twenty-five'), (6921, 44667, 'forty-four thousand six hundred sixty-seven'), (6922, 23624, 'twenty-three thousand six hundred twenty-four'), (6923, 49974, 'forty-nine thousand nine hundred seventy-four'), (6924, 30988, 'thirty thousand nine hundred eighty-eight'), (6925, 52525, 'fifty-two thousand five hundred twenty-five'), (6926, 7567, 'seven thousand five hundred sixty-seven'), (6927, 29063, 'twenty-nine thousand sixty-three'), (6928, 59760, 'fifty-nine thousand seven hundred sixty'), (6929, 64774, 'sixty-four thousand seven hundred seventy-four'), (6930, 56241, 'fifty-six thousand two hundred forty-one'), (6931, 21318, 'twenty-one thousand three hundred eighteen'), (6932, 29993, 'twenty-nine thousand nine hundred ninety-three'), (6933, 13052, 'thirteen thousand fifty-two'), (6934, 63940, 'sixty-three thousand nine hundred forty'), (6935, 10944, 'ten thousand nine hundred forty-four'), (6936, 53517, 'fifty-three thousand five hundred seventeen'), (6937, 3365, 'three thousand three hundred sixty-five'), (6938, 78936, 'seventy-eight thousand nine hundred thirty-six'), (6939, 19479, 'nineteen thousand four hundred seventy-nine'), (6940, 75930, 'seventy-five thousand nine hundred thirty'), (6941, 37705, 'thirty-seven thousand seven hundred five'), (6942, 69175, 'sixty-nine thousand one hundred seventy-five'), (6943, 22232, 'twenty-two thousand two hundred thirty-two'), (6944, 28248, 'twenty-eight thousand two hundred forty-eight'), (6945, 25273, 'twenty-five thousand two hundred seventy-three'), (6946, 63132, 'sixty-three thousand one hundred thirty-two'), (6947, 65891, 'sixty-five thousand eight hundred ninety-one'), (6948, 38574, 'thirty-eight thousand five hundred seventy-four'), (6949, 68375, 'sixty-eight thousand three hundred seventy-five'), (6950, 22814, 'twenty-two thousand eight hundred fourteen'), (6951, 12251, 'twelve thousand two hundred fifty-one'), (6952, 67307, 'sixty-seven thousand three hundred seven'), (6953, 91833, 'ninety-one thousand eight hundred thirty-three'), (6954, 89215, 'eighty-nine thousand two hundred fifteen'), (6955, 9285, 'nine thousand two hundred eighty-five'), (6956, 84710, 'eighty-four thousand seven hundred ten'), (6957, 14144, 'fourteen thousand one hundred forty-four'), (6958, 45960, 'forty-five thousand nine hundred sixty'), (6959, 9668, 'nine thousand six hundred sixty-eight'), (6960, 52309, 'fifty-two thousand three hundred nine'), (6961, 79198, 'seventy-nine thousand one hundred ninety-eight'), (6962, 8711, 'eight thousand seven hundred eleven'), (6963, 31513, 'thirty-one thousand five hundred thirteen'), (6964, 68737, 'sixty-eight thousand seven hundred thirty-seven'), (6965, 7604, 'seven thousand six hundred four'), (6966, 51620, 'fifty-one thousand six hundred twenty'), (6967, 10426, 'ten thousand four hundred twenty-six'), (6968, 17702, 'seventeen thousand seven hundred two'), (6969, 42070, 'forty-two thousand seventy'), (6970, 10874, 'ten thousand eight hundred seventy-four'), (6971, 25463, 'twenty-five thousand four hundred sixty-three'), (6972, 43564, 'forty-three thousand five hundred sixty-four'), (6973, 91781, 'ninety-one thousand seven hundred eighty-one'), (6974, 5253, 'five thousand two hundred fifty-three'), (6975, 4171, 'four thousand one hundred seventy-one'), (6976, 26368, 'twenty-six thousand three hundred sixty-eight'), (6977, 32680, 'thirty-two thousand six hundred eighty'), (6978, 74249, 'seventy-four thousand two hundred forty-nine'), (6979, 61362, 'sixty-one thousand three hundred sixty-two'), (6980, 65168, 'sixty-five thousand one hundred sixty-eight'), (6981, 4076, 'four thousand seventy-six'), (6982, 64368, 'sixty-four thousand three hundred sixty-eight'), (6983, 71973, 'seventy-one thousand nine hundred seventy-three'), (6984, 36830, 'thirty-six thousand eight hundred thirty'), (6985, 91370, 'ninety-one thousand three hundred seventy'), (6986, 64732, 'sixty-four thousand seven hundred thirty-two'), (6987, 14905, 'fourteen thousand nine hundred five'), (6988, 35130, 'thirty-five thousand one hundred thirty'), (6989, 41914, 'forty-one thousand nine hundred fourteen'), (6990, 51521, 'fifty-one thousand five hundred twenty-one'), (6991, 58490, 'fifty-eight thousand four hundred ninety'), (6992, 49421, 'forty-nine thousand four hundred twenty-one'), (6993, 98396, 'ninety-eight thousand three hundred ninety-six'), (6994, 50358, 'fifty thousand three hundred fifty-eight'), (6995, 57482, 'fifty-seven thousand four hundred eighty-two'), (6996, 46105, 'forty-six thousand one hundred five'), (6997, 847, 'eight hundred forty-seven'), (6998, 40844, 'forty thousand eight hundred forty-four'), (6999, 87739, 'eighty-seven thousand seven hundred thirty-nine'), (7000, 37428, 'thirty-seven thousand four hundred twenty-eight'), (7001, 49604, 'forty-nine thousand six hundred four'), (7002, 78936, 'seventy-eight thousand nine hundred thirty-six'), (7003, 89645, 'eighty-nine thousand six hundred forty-five'), (7004, 86177, 'eighty-six thousand one hundred seventy-seven'), (7005, 17366, 'seventeen thousand three hundred sixty-six'), (7006, 31491, 'thirty-one thousand four hundred ninety-one'), (7007, 41212, 'forty-one thousand two hundred twelve'), (7008, 43175, 'forty-three thousand one hundred seventy-five'), (7009, 2477, 'two thousand four hundred seventy-seven'), (7010, 6010, 'six thousand ten'), (7011, 69722, 'sixty-nine thousand seven hundred twenty-two'), (7012, 27385, 'twenty-seven thousand three hundred eighty-five'), (7013, 45249, 'forty-five thousand two hundred forty-nine'), (7014, 28782, 'twenty-eight thousand seven hundred eighty-two'), (7015, 141, 'one hundred forty-one'), (7016, 80806, 'eighty thousand eight hundred six'), (7017, 84533, 'eighty-four thousand five hundred thirty-three'), (7018, 12518, 'twelve thousand five hundred eighteen'), (7019, 91872, 'ninety-one thousand eight hundred seventy-two'), (7020, 72529, 'seventy-two thousand five hundred twenty-nine'), (7021, 21474, 'twenty-one thousand four hundred seventy-four'), (7022, 23707, 'twenty-three thousand seven hundred seven'), (7023, 52041, 'fifty-two thousand forty-one'), (7024, 36648, 'thirty-six thousand six hundred forty-eight'), (7025, 39847, 'thirty-nine thousand eight hundred forty-seven'), (7026, 53629, 'fifty-three thousand six hundred twenty-nine'), (7027, 7427, 'seven thousand four hundred twenty-seven'), (7028, 75143, 'seventy-five thousand one hundred forty-three'), (7029, 54824, 'fifty-four thousand eight hundred twenty-four'), (7030, 36351, 'thirty-six thousand three hundred fifty-one'), (7031, 93789, 'ninety-three thousand seven hundred eighty-nine'), (7032, 95852, 'ninety-five thousand eight hundred fifty-two'), (7033, 32725, 'thirty-two thousand seven hundred twenty-five'), (7034, 48260, 'forty-eight thousand two hundred sixty'), (7035, 68480, 'sixty-eight thousand four hundred eighty'), (7036, 33039, 'thirty-three thousand thirty-nine'), (7037, 50746, 'fifty thousand seven hundred forty-six'), (7038, 62754, 'sixty-two thousand seven hundred fifty-four'), (7039, 26859, 'twenty-six thousand eight hundred fifty-nine'), (7040, 32622, 'thirty-two thousand six hundred twenty-two'), (7041, 1123, 'one thousand one hundred twenty-three'), (7042, 73551, 'seventy-three thousand five hundred fifty-one'), (7043, 87616, 'eighty-seven thousand six hundred sixteen'), (7044, 78741, 'seventy-eight thousand seven hundred forty-one'), (7045, 15746, 'fifteen thousand seven hundred forty-six'), (7046, 75876, 'seventy-five thousand eight hundred seventy-six'), (7047, 47990, 'forty-seven thousand nine hundred ninety'), (7048, 15987, 'fifteen thousand nine hundred eighty-seven'), (7049, 13907, 'thirteen thousand nine hundred seven'), (7050, 7052, 'seven thousand fifty-two'), (7051, 73916, 'seventy-three thousand nine hundred sixteen'), (7052, 4671, 'four thousand six hundred seventy-one'), (7053, 72315, 'seventy-two thousand three hundred fifteen'), (7054, 74506, 'seventy-four thousand five hundred six'), (7055, 11918, 'eleven thousand nine hundred eighteen'), (7056, 57309, 'fifty-seven thousand three hundred nine'), (7057, 13626, 'thirteen thousand six hundred twenty-six'), (7058, 48392, 'forty-eight thousand three hundred ninety-two'), (7059, 47636, 'forty-seven thousand six hundred thirty-six'), (7060, 18743, 'eighteen thousand seven hundred forty-three'), (7061, 38692, 'thirty-eight thousand six hundred ninety-two'), (7062, 70530, 'seventy thousand five hundred thirty'), (7063, 62964, 'sixty-two thousand nine hundred sixty-four'), (7064, 73613, 'seventy-three thousand six hundred thirteen'), (7065, 59421, 'fifty-nine thousand four hundred twenty-one'), (7066, 5700, 'five thousand seven hundred'), (7067, 27176, 'twenty-seven thousand one hundred seventy-six'), (7068, 48998, 'forty-eight thousand nine hundred ninety-eight'), (7069, 79311, 'seventy-nine thousand three hundred eleven'), (7070, 73508, 'seventy-three thousand five hundred eight'), (7071, 2711, 'two thousand seven hundred eleven'), (7072, 25577, 'twenty-five thousand five hundred seventy-seven'), (7073, 61225, 'sixty-one thousand two hundred twenty-five'), (7074, 64789, 'sixty-four thousand seven hundred eighty-nine'), (7075, 74509, 'seventy-four thousand five hundred nine'), (7076, 29661, 'twenty-nine thousand six hundred sixty-one'), (7077, 82521, 'eighty-two thousand five hundred twenty-one'), (7078, 83901, 'eighty-three thousand nine hundred one'), (7079, 82200, 'eighty-two thousand two hundred'), (7080, 81811, 'eighty-one thousand eight hundred eleven'), (7081, 41680, 'forty-one thousand six hundred eighty'), (7082, 83328, 'eighty-three thousand three hundred twenty-eight'), (7083, 15653, 'fifteen thousand six hundred fifty-three'), (7084, 56438, 'fifty-six thousand four hundred thirty-eight'), (7085, 58737, 'fifty-eight thousand seven hundred thirty-seven'), (7086, 41835, 'forty-one thousand eight hundred thirty-five'), (7087, 28160, 'twenty-eight thousand one hundred sixty'), (7088, 65510, 'sixty-five thousand five hundred ten'), (7089, 56165, 'fifty-six thousand one hundred sixty-five'), (7090, 25838, 'twenty-five thousand eight hundred thirty-eight'), (7091, 61693, 'sixty-one thousand six hundred ninety-three'), (7092, 36263, 'thirty-six thousand two hundred sixty-three'), (7093, 24346, 'twenty-four thousand three hundred forty-six'), (7094, 97724, 'ninety-seven thousand seven hundred twenty-four'), (7095, 47865, 'forty-seven thousand eight hundred sixty-five'), (7096, 80729, 'eighty thousand seven hundred twenty-nine'), (7097, 60014, 'sixty thousand fourteen'), (7098, 33462, 'thirty-three thousand four hundred sixty-two'), (7099, 60569, 'sixty thousand five hundred sixty-nine'), (7100, 55267, 'fifty-five thousand two hundred sixty-seven'), (7101, 96726, 'ninety-six thousand seven hundred twenty-six'), (7102, 11627, 'eleven thousand six hundred twenty-seven'), (7103, 95666, 'ninety-five thousand six hundred sixty-six'), (7104, 90785, 'ninety thousand seven hundred eighty-five'), (7105, 46858, 'forty-six thousand eight hundred fifty-eight'), (7106, 23384, 'twenty-three thousand three hundred eighty-four'), (7107, 97789, 'ninety-seven thousand seven hundred eighty-nine'), (7108, 59434, 'fifty-nine thousand four hundred thirty-four'), (7109, 79464, 'seventy-nine thousand four hundred sixty-four'), (7110, 76330, 'seventy-six thousand three hundred thirty'), (7111, 53787, 'fifty-three thousand seven hundred eighty-seven'), (7112, 69766, 'sixty-nine thousand seven hundred sixty-six'), (7113, 52806, 'fifty-two thousand eight hundred six'), (7114, 45628, 'forty-five thousand six hundred twenty-eight'), (7115, 3361, 'three thousand three hundred sixty-one'), (7116, 75441, 'seventy-five thousand four hundred forty-one'), (7117, 75175, 'seventy-five thousand one hundred seventy-five'), (7118, 74744, 'seventy-four thousand seven hundred forty-four'), (7119, 54538, 'fifty-four thousand five hundred thirty-eight'), (7120, 76323, 'seventy-six thousand three hundred twenty-three'), (7121, 72204, 'seventy-two thousand two hundred four'), (7122, 86654, 'eighty-six thousand six hundred fifty-four'), (7123, 28364, 'twenty-eight thousand three hundred sixty-four'), (7124, 32182, 'thirty-two thousand one hundred eighty-two'), (7125, 71417, 'seventy-one thousand four hundred seventeen'), (7126, 48162, 'forty-eight thousand one hundred sixty-two'), (7127, 5968, 'five thousand nine hundred sixty-eight'), (7128, 11580, 'eleven thousand five hundred eighty'), (7129, 30605, 'thirty thousand six hundred five'), (7130, 71480, 'seventy-one thousand four hundred eighty'), (7131, 98055, 'ninety-eight thousand fifty-five'), (7132, 53802, 'fifty-three thousand eight hundred two'), (7133, 78630, 'seventy-eight thousand six hundred thirty'), (7134, 77822, 'seventy-seven thousand eight hundred twenty-two'), (7135, 61816, 'sixty-one thousand eight hundred sixteen'), (7136, 41188, 'forty-one thousand one hundred eighty-eight'), (7137, 96746, 'ninety-six thousand seven hundred forty-six'), (7138, 57021, 'fifty-seven thousand twenty-one'), (7139, 74719, 'seventy-four thousand seven hundred nineteen'), (7140, 21455, 'twenty-one thousand four hundred fifty-five'), (7141, 21564, 'twenty-one thousand five hundred sixty-four'), (7142, 58682, 'fifty-eight thousand six hundred eighty-two'), (7143, 98656, 'ninety-eight thousand six hundred fifty-six'), (7144, 95290, 'ninety-five thousand two hundred ninety'), (7145, 59429, 'fifty-nine thousand four hundred twenty-nine'), (7146, 52039, 'fifty-two thousand thirty-nine'), (7147, 26126, 'twenty-six thousand one hundred twenty-six'), (7148, 76788, 'seventy-six thousand seven hundred eighty-eight'), (7149, 54726, 'fifty-four thousand seven hundred twenty-six'), (7150, 87468, 'eighty-seven thousand four hundred sixty-eight'), (7151, 96623, 'ninety-six thousand six hundred twenty-three'), (7152, 52206, 'fifty-two thousand two hundred six'), (7153, 90161, 'ninety thousand one hundred sixty-one'), (7154, 28158, 'twenty-eight thousand one hundred fifty-eight'), (7155, 72176, 'seventy-two thousand one hundred seventy-six'), (7156, 5698, 'five thousand six hundred ninety-eight'), (7157, 8426, 'eight thousand four hundred twenty-six'), (7158, 92481, 'ninety-two thousand four hundred eighty-one'), (7159, 2162, 'two thousand one hundred sixty-two'), (7160, 19418, 'nineteen thousand four hundred eighteen'), (7161, 83044, 'eighty-three thousand forty-four'), (7162, 83576, 'eighty-three thousand five hundred seventy-six'), (7163, 1767, 'one thousand seven hundred sixty-seven'), (7164, 96772, 'ninety-six thousand seven hundred seventy-two'), (7165, 22264, 'twenty-two thousand two hundred sixty-four'), (7166, 77369, 'seventy-seven thousand three hundred sixty-nine'), (7167, 15079, 'fifteen thousand seventy-nine'), (7168, 60060, 'sixty thousand sixty'), (7169, 35293, 'thirty-five thousand two hundred ninety-three'), (7170, 18806, 'eighteen thousand eight hundred six'), (7171, 2635, 'two thousand six hundred thirty-five'), (7172, 68586, 'sixty-eight thousand five hundred eighty-six'), (7173, 90063, 'ninety thousand sixty-three'), (7174, 27121, 'twenty-seven thousand one hundred twenty-one'), (7175, 23663, 'twenty-three thousand six hundred sixty-three'), (7176, 12320, 'twelve thousand three hundred twenty'), (7177, 47548, 'forty-seven thousand five hundred forty-eight'), (7178, 73974, 'seventy-three thousand nine hundred seventy-four'), (7179, 72131, 'seventy-two thousand one hundred thirty-one'), (7180, 63094, 'sixty-three thousand ninety-four'), (7181, 70707, 'seventy thousand seven hundred seven'), (7182, 83552, 'eighty-three thousand five hundred fifty-two'), (7183, 1399, 'one thousand three hundred ninety-nine'), (7184, 17442, 'seventeen thousand four hundred forty-two'), (7185, 48623, 'forty-eight thousand six hundred twenty-three'), (7186, 23729, 'twenty-three thousand seven hundred twenty-nine'), (7187, 72285, 'seventy-two thousand two hundred eighty-five'), (7188, 39670, 'thirty-nine thousand six hundred seventy'), (7189, 60904, 'sixty thousand nine hundred four'), (7190, 1785, 'one thousand seven hundred eighty-five'), (7191, 84436, 'eighty-four thousand four hundred thirty-six'), (7192, 70556, 'seventy thousand five hundred fifty-six'), (7193, 32525, 'thirty-two thousand five hundred twenty-five'), (7194, 41107, 'forty-one thousand one hundred seven'), (7195, 71807, 'seventy-one thousand eight hundred seven'), (7196, 22727, 'twenty-two thousand seven hundred twenty-seven'), (7197, 70424, 'seventy thousand four hundred twenty-four'), (7198, 92449, 'ninety-two thousand four hundred forty-nine'), (7199, 52643, 'fifty-two thousand six hundred forty-three'), (7200, 16081, 'sixteen thousand eighty-one'), (7201, 60250, 'sixty thousand two hundred fifty'), (7202, 94701, 'ninety-four thousand seven hundred one'), (7203, 90475, 'ninety thousand four hundred seventy-five'), (7204, 12219, 'twelve thousand two hundred nineteen'), (7205, 36279, 'thirty-six thousand two hundred seventy-nine'), (7206, 43716, 'forty-three thousand seven hundred sixteen'), (7207, 52901, 'fifty-two thousand nine hundred one'), (7208, 78651, 'seventy-eight thousand six hundred fifty-one'), (7209, 48687, 'forty-eight thousand six hundred eighty-seven'), (7210, 28557, 'twenty-eight thousand five hundred fifty-seven'), (7211, 90629, 'ninety thousand six hundred twenty-nine'), (7212, 27021, 'twenty-seven thousand twenty-one'), (7213, 31323, 'thirty-one thousand three hundred twenty-three'), (7214, 47663, 'forty-seven thousand six hundred sixty-three'), (7215, 8334, 'eight thousand three hundred thirty-four'), (7216, 59740, 'fifty-nine thousand seven hundred forty'), (7217, 42329, 'forty-two thousand three hundred twenty-nine'), (7218, 52985, 'fifty-two thousand nine hundred eighty-five'), (7219, 22678, 'twenty-two thousand six hundred seventy-eight'), (7220, 53115, 'fifty-three thousand one hundred fifteen'), (7221, 85625, 'eighty-five thousand six hundred twenty-five'), (7222, 44904, 'forty-four thousand nine hundred four'), (7223, 57919, 'fifty-seven thousand nine hundred nineteen'), (7224, 81652, 'eighty-one thousand six hundred fifty-two'), (7225, 29091, 'twenty-nine thousand ninety-one'), (7226, 35671, 'thirty-five thousand six hundred seventy-one'), (7227, 8807, 'eight thousand eight hundred seven'), (7228, 56823, 'fifty-six thousand eight hundred twenty-three'), (7229, 39061, 'thirty-nine thousand sixty-one'), (7230, 52089, 'fifty-two thousand eighty-nine'), (7231, 25385, 'twenty-five thousand three hundred eighty-five'), (7232, 56523, 'fifty-six thousand five hundred twenty-three'), (7233, 1270, 'one thousand two hundred seventy'), (7234, 69681, 'sixty-nine thousand six hundred eighty-one'), (7235, 34725, 'thirty-four thousand seven hundred twenty-five'), (7236, 14204, 'fourteen thousand two hundred four'), (7237, 31187, 'thirty-one thousand one hundred eighty-seven'), (7238, 3064, 'three thousand sixty-four'), (7239, 41116, 'forty-one thousand one hundred sixteen'), (7240, 32053, 'thirty-two thousand fifty-three'), (7241, 37747, 'thirty-seven thousand seven hundred forty-seven'), (7242, 51524, 'fifty-one thousand five hundred twenty-four'), (7243, 70906, 'seventy thousand nine hundred six'), (7244, 57027, 'fifty-seven thousand twenty-seven'), (7245, 12947, 'twelve thousand nine hundred forty-seven'), (7246, 15873, 'fifteen thousand eight hundred seventy-three'), (7247, 14092, 'fourteen thousand ninety-two'), (7248, 28021, 'twenty-eight thousand twenty-one'), (7249, 68997, 'sixty-eight thousand nine hundred ninety-seven'), (7250, 60229, 'sixty thousand two hundred twenty-nine'), (7251, 23600, 'twenty-three thousand six hundred'), (7252, 21443, 'twenty-one thousand four hundred forty-three'), (7253, 88451, 'eighty-eight thousand four hundred fifty-one'), (7254, 22689, 'twenty-two thousand six hundred eighty-nine'), (7255, 85222, 'eighty-five thousand two hundred twenty-two'), (7256, 39886, 'thirty-nine thousand eight hundred eighty-six'), (7257, 9680, 'nine thousand six hundred eighty'), (7258, 50619, 'fifty thousand six hundred nineteen'), (7259, 73014, 'seventy-three thousand fourteen'), (7260, 10557, 'ten thousand five hundred fifty-seven'), (7261, 23929, 'twenty-three thousand nine hundred twenty-nine'), (7262, 75594, 'seventy-five thousand five hundred ninety-four'), (7263, 70513, 'seventy thousand five hundred thirteen'), (7264, 31217, 'thirty-one thousand two hundred seventeen'), (7265, 24165, 'twenty-four thousand one hundred sixty-five'), (7266, 74008, 'seventy-four thousand eight'), (7267, 69773, 'sixty-nine thousand seven hundred seventy-three'), (7268, 326, 'three hundred twenty-six'), (7269, 94924, 'ninety-four thousand nine hundred twenty-four'), (7270, 79707, 'seventy-nine thousand seven hundred seven'), (7271, 51429, 'fifty-one thousand four hundred twenty-nine'), (7272, 22659, 'twenty-two thousand six hundred fifty-nine'), (7273, 87289, 'eighty-seven thousand two hundred eighty-nine'), (7274, 90894, 'ninety thousand eight hundred ninety-four'), (7275, 74629, 'seventy-four thousand six hundred twenty-nine'), (7276, 57761, 'fifty-seven thousand seven hundred sixty-one'), (7277, 95848, 'ninety-five thousand eight hundred forty-eight'), (7278, 58163, 'fifty-eight thousand one hundred sixty-three'), (7279, 50309, 'fifty thousand three hundred nine'), (7280, 20537, 'twenty thousand five hundred thirty-seven'), (7281, 28395, 'twenty-eight thousand three hundred ninety-five'), (7282, 53961, 'fifty-three thousand nine hundred sixty-one'), (7283, 47561, 'forty-seven thousand five hundred sixty-one'), (7284, 28769, 'twenty-eight thousand seven hundred sixty-nine'), (7285, 86346, 'eighty-six thousand three hundred forty-six'), (7286, 6277, 'six thousand two hundred seventy-seven'), (7287, 49920, 'forty-nine thousand nine hundred twenty'), (7288, 43192, 'forty-three thousand one hundred ninety-two'), (7289, 24672, 'twenty-four thousand six hundred seventy-two'), (7290, 31494, 'thirty-one thousand four hundred ninety-four'), (7291, 55066, 'fifty-five thousand sixty-six'), (7292, 96699, 'ninety-six thousand six hundred ninety-nine'), (7293, 79530, 'seventy-nine thousand five hundred thirty'), (7294, 43758, 'forty-three thousand seven hundred fifty-eight'), (7295, 67039, 'sixty-seven thousand thirty-nine'), (7296, 48547, 'forty-eight thousand five hundred forty-seven'), (7297, 50040, 'fifty thousand forty'), (7298, 66898, 'sixty-six thousand eight hundred ninety-eight'), (7299, 58823, 'fifty-eight thousand eight hundred twenty-three'), (7300, 85770, 'eighty-five thousand seven hundred seventy'), (7301, 44663, 'forty-four thousand six hundred sixty-three'), (7302, 18667, 'eighteen thousand six hundred sixty-seven'), (7303, 29835, 'twenty-nine thousand eight hundred thirty-five'), (7304, 56850, 'fifty-six thousand eight hundred fifty'), (7305, 62411, 'sixty-two thousand four hundred eleven'), (7306, 33775, 'thirty-three thousand seven hundred seventy-five'), (7307, 90386, 'ninety thousand three hundred eighty-six'), (7308, 70117, 'seventy thousand one hundred seventeen'), (7309, 74740, 'seventy-four thousand seven hundred forty'), (7310, 6417, 'six thousand four hundred seventeen'), (7311, 32319, 'thirty-two thousand three hundred nineteen'), (7312, 50577, 'fifty thousand five hundred seventy-seven'), (7313, 2107, 'two thousand one hundred seven'), (7314, 75768, 'seventy-five thousand seven hundred sixty-eight'), (7315, 12697, 'twelve thousand six hundred ninety-seven'), (7316, 38568, 'thirty-eight thousand five hundred sixty-eight'), (7317, 34363, 'thirty-four thousand three hundred sixty-three'), (7318, 27633, 'twenty-seven thousand six hundred thirty-three'), (7319, 25184, 'twenty-five thousand one hundred eighty-four'), (7320, 90043, 'ninety thousand forty-three'), (7321, 15466, 'fifteen thousand four hundred sixty-six'), (7322, 98395, 'ninety-eight thousand three hundred ninety-five'), (7323, 86939, 'eighty-six thousand nine hundred thirty-nine'), (7324, 71406, 'seventy-one thousand four hundred six'), (7325, 34343, 'thirty-four thousand three hundred forty-three'), (7326, 69196, 'sixty-nine thousand one hundred ninety-six'), (7327, 28252, 'twenty-eight thousand two hundred fifty-two'), (7328, 38711, 'thirty-eight thousand seven hundred eleven'), (7329, 60611, 'sixty thousand six hundred eleven'), (7330, 31187, 'thirty-one thousand one hundred eighty-seven'), (7331, 73989, 'seventy-three thousand nine hundred eighty-nine'), (7332, 12806, 'twelve thousand eight hundred six'), (7333, 4428, 'four thousand four hundred twenty-eight'), (7334, 52658, 'fifty-two thousand six hundred fifty-eight'), (7335, 26588, 'twenty-six thousand five hundred eighty-eight'), (7336, 93535, 'ninety-three thousand five hundred thirty-five'), (7337, 65359, 'sixty-five thousand three hundred fifty-nine'), (7338, 66113, 'sixty-six thousand one hundred thirteen'), (7339, 39558, 'thirty-nine thousand five hundred fifty-eight'), (7340, 11391, 'eleven thousand three hundred ninety-one'), (7341, 57170, 'fifty-seven thousand one hundred seventy'), (7342, 3581, 'three thousand five hundred eighty-one'), (7343, 69696, 'sixty-nine thousand six hundred ninety-six'), (7344, 81121, 'eighty-one thousand one hundred twenty-one'), (7345, 21914, 'twenty-one thousand nine hundred fourteen'), (7346, 74050, 'seventy-four thousand fifty'), (7347, 60829, 'sixty thousand eight hundred twenty-nine'), (7348, 6834, 'six thousand eight hundred thirty-four'), (7349, 64576, 'sixty-four thousand five hundred seventy-six'), (7350, 13583, 'thirteen thousand five hundred eighty-three'), (7351, 56388, 'fifty-six thousand three hundred eighty-eight'), (7352, 62811, 'sixty-two thousand eight hundred eleven'), (7353, 37727, 'thirty-seven thousand seven hundred twenty-seven'), (7354, 4532, 'four thousand five hundred thirty-two'), (7355, 14187, 'fourteen thousand one hundred eighty-seven'), (7356, 69094, 'sixty-nine thousand ninety-four'), (7357, 31945, 'thirty-one thousand nine hundred forty-five'), (7358, 2093, 'two thousand ninety-three'), (7359, 3369, 'three thousand three hundred sixty-nine'), (7360, 18640, 'eighteen thousand six hundred forty'), (7361, 25004, 'twenty-five thousand four'), (7362, 12074, 'twelve thousand seventy-four'), (7363, 34016, 'thirty-four thousand sixteen'), (7364, 40014, 'forty thousand fourteen'), (7365, 64857, 'sixty-four thousand eight hundred fifty-seven'), (7366, 51079, 'fifty-one thousand seventy-nine'), (7367, 88576, 'eighty-eight thousand five hundred seventy-six'), (7368, 9726, 'nine thousand seven hundred twenty-six'), (7369, 8822, 'eight thousand eight hundred twenty-two'), (7370, 34811, 'thirty-four thousand eight hundred eleven'), (7371, 80758, 'eighty thousand seven hundred fifty-eight'), (7372, 54617, 'fifty-four thousand six hundred seventeen'), (7373, 42541, 'forty-two thousand five hundred forty-one'), (7374, 3815, 'three thousand eight hundred fifteen'), (7375, 42879, 'forty-two thousand eight hundred seventy-nine'), (7376, 5202, 'five thousand two hundred two'), (7377, 50572, 'fifty thousand five hundred seventy-two'), (7378, 65409, 'sixty-five thousand four hundred nine'), (7379, 70497, 'seventy thousand four hundred ninety-seven'), (7380, 96842, 'ninety-six thousand eight hundred forty-two'), (7381, 46539, 'forty-six thousand five hundred thirty-nine'), (7382, 1095, 'one thousand ninety-five'), (7383, 97422, 'ninety-seven thousand four hundred twenty-two'), (7384, 88070, 'eighty-eight thousand seventy'), (7385, 13150, 'thirteen thousand one hundred fifty'), (7386, 52772, 'fifty-two thousand seven hundred seventy-two'), (7387, 37085, 'thirty-seven thousand eighty-five'), (7388, 1011, 'one thousand eleven'), (7389, 15563, 'fifteen thousand five hundred sixty-three'), (7390, 38544, 'thirty-eight thousand five hundred forty-four'), (7391, 55831, 'fifty-five thousand eight hundred thirty-one'), (7392, 27070, 'twenty-seven thousand seventy'), (7393, 15441, 'fifteen thousand four hundred forty-one'), (7394, 70654, 'seventy thousand six hundred fifty-four'), (7395, 52382, 'fifty-two thousand three hundred eighty-two'), (7396, 54344, 'fifty-four thousand three hundred forty-four'), (7397, 17325, 'seventeen thousand three hundred twenty-five'), (7398, 58157, 'fifty-eight thousand one hundred fifty-seven'), (7399, 47176, 'forty-seven thousand one hundred seventy-six'), (7400, 55736, 'fifty-five thousand seven hundred thirty-six'), (7401, 26334, 'twenty-six thousand three hundred thirty-four'), (7402, 99781, 'ninety-nine thousand seven hundred eighty-one'), (7403, 57477, 'fifty-seven thousand four hundred seventy-seven'), (7404, 29110, 'twenty-nine thousand one hundred ten'), (7405, 21429, 'twenty-one thousand four hundred twenty-nine'), (7406, 76884, 'seventy-six thousand eight hundred eighty-four'), (7407, 47046, 'forty-seven thousand forty-six'), (7408, 48753, 'forty-eight thousand seven hundred fifty-three'), (7409, 63093, 'sixty-three thousand ninety-three'), (7410, 69577, 'sixty-nine thousand five hundred seventy-seven'), (7411, 48992, 'forty-eight thousand nine hundred ninety-two'), (7412, 43715, 'forty-three thousand seven hundred fifteen'), (7413, 82980, 'eighty-two thousand nine hundred eighty'), (7414, 89305, 'eighty-nine thousand three hundred five'), (7415, 66707, 'sixty-six thousand seven hundred seven'), (7416, 67756, 'sixty-seven thousand seven hundred fifty-six'), (7417, 47398, 'forty-seven thousand three hundred ninety-eight'), (7418, 72037, 'seventy-two thousand thirty-seven'), (7419, 50845, 'fifty thousand eight hundred forty-five'), (7420, 9216, 'nine thousand two hundred sixteen'), (7421, 18579, 'eighteen thousand five hundred seventy-nine'), (7422, 38300, 'thirty-eight thousand three hundred'), (7423, 17222, 'seventeen thousand two hundred twenty-two'), (7424, 49143, 'forty-nine thousand one hundred forty-three'), (7425, 87515, 'eighty-seven thousand five hundred fifteen'), (7426, 73305, 'seventy-three thousand three hundred five'), (7427, 53735, 'fifty-three thousand seven hundred thirty-five'), (7428, 95473, 'ninety-five thousand four hundred seventy-three'), (7429, 50421, 'fifty thousand four hundred twenty-one'), (7430, 2980, 'two thousand nine hundred eighty'), (7431, 50521, 'fifty thousand five hundred twenty-one'), (7432, 5811, 'five thousand eight hundred eleven'), (7433, 78960, 'seventy-eight thousand nine hundred sixty'), (7434, 72439, 'seventy-two thousand four hundred thirty-nine'), (7435, 76914, 'seventy-six thousand nine hundred fourteen'), (7436, 41540, 'forty-one thousand five hundred forty'), (7437, 43029, 'forty-three thousand twenty-nine'), (7438, 24933, 'twenty-four thousand nine hundred thirty-three'), (7439, 49859, 'forty-nine thousand eight hundred fifty-nine'), (7440, 8913, 'eight thousand nine hundred thirteen'), (7441, 30415, 'thirty thousand four hundred fifteen'), (7442, 41776, 'forty-one thousand seven hundred seventy-six'), (7443, 20000, 'twenty thousand'), (7444, 34964, 'thirty-four thousand nine hundred sixty-four'), (7445, 51821, 'fifty-one thousand eight hundred twenty-one'), (7446, 40249, 'forty thousand two hundred forty-nine'), (7447, 47510, 'forty-seven thousand five hundred ten'), (7448, 95059, 'ninety-five thousand fifty-nine'), (7449, 84450, 'eighty-four thousand four hundred fifty'), (7450, 72587, 'seventy-two thousand five hundred eighty-seven'), (7451, 21355, 'twenty-one thousand three hundred fifty-five'), (7452, 87515, 'eighty-seven thousand five hundred fifteen'), (7453, 23870, 'twenty-three thousand eight hundred seventy'), (7454, 21133, 'twenty-one thousand one hundred thirty-three'), (7455, 15582, 'fifteen thousand five hundred eighty-two'), (7456, 81860, 'eighty-one thousand eight hundred sixty'), (7457, 48135, 'forty-eight thousand one hundred thirty-five'), (7458, 47787, 'forty-seven thousand seven hundred eighty-seven'), (7459, 30531, 'thirty thousand five hundred thirty-one'), (7460, 97144, 'ninety-seven thousand one hundred forty-four'), (7461, 66513, 'sixty-six thousand five hundred thirteen'), (7462, 96659, 'ninety-six thousand six hundred fifty-nine'), (7463, 45617, 'forty-five thousand six hundred seventeen'), (7464, 43237, 'forty-three thousand two hundred thirty-seven'), (7465, 2471, 'two thousand four hundred seventy-one'), (7466, 82236, 'eighty-two thousand two hundred thirty-six'), (7467, 62891, 'sixty-two thousand eight hundred ninety-one'), (7468, 15829, 'fifteen thousand eight hundred twenty-nine'), (7469, 57841, 'fifty-seven thousand eight hundred forty-one'), (7470, 21213, 'twenty-one thousand two hundred thirteen'), (7471, 76853, 'seventy-six thousand eight hundred fifty-three'), (7472, 25941, 'twenty-five thousand nine hundred forty-one'), (7473, 82358, 'eighty-two thousand three hundred fifty-eight'), (7474, 63626, 'sixty-three thousand six hundred twenty-six'), (7475, 73642, 'seventy-three thousand six hundred forty-two'), (7476, 69275, 'sixty-nine thousand two hundred seventy-five'), (7477, 23645, 'twenty-three thousand six hundred forty-five'), (7478, 23681, 'twenty-three thousand six hundred eighty-one'), (7479, 14696, 'fourteen thousand six hundred ninety-six'), (7480, 27515, 'twenty-seven thousand five hundred fifteen'), (7481, 62466, 'sixty-two thousand four hundred sixty-six'), (7482, 75667, 'seventy-five thousand six hundred sixty-seven'), (7483, 81874, 'eighty-one thousand eight hundred seventy-four'), (7484, 95866, 'ninety-five thousand eight hundred sixty-six'), (7485, 36386, 'thirty-six thousand three hundred eighty-six'), (7486, 64485, 'sixty-four thousand four hundred eighty-five'), (7487, 90022, 'ninety thousand twenty-two'), (7488, 51619, 'fifty-one thousand six hundred nineteen'), (7489, 27169, 'twenty-seven thousand one hundred sixty-nine'), (7490, 17655, 'seventeen thousand six hundred fifty-five'), (7491, 67188, 'sixty-seven thousand one hundred eighty-eight'), (7492, 17321, 'seventeen thousand three hundred twenty-one'), (7493, 95245, 'ninety-five thousand two hundred forty-five'), (7494, 48780, 'forty-eight thousand seven hundred eighty'), (7495, 33982, 'thirty-three thousand nine hundred eighty-two'), (7496, 61939, 'sixty-one thousand nine hundred thirty-nine'), (7497, 69069, 'sixty-nine thousand sixty-nine'), (7498, 62713, 'sixty-two thousand seven hundred thirteen'), (7499, 43685, 'forty-three thousand six hundred eighty-five'), (7500, 57927, 'fifty-seven thousand nine hundred twenty-seven'), (7501, 96470, 'ninety-six thousand four hundred seventy'), (7502, 35948, 'thirty-five thousand nine hundred forty-eight'), (7503, 63060, 'sixty-three thousand sixty'), (7504, 44399, 'forty-four thousand three hundred ninety-nine'), (7505, 97397, 'ninety-seven thousand three hundred ninety-seven'), (7506, 89584, 'eighty-nine thousand five hundred eighty-four'), (7507, 58673, 'fifty-eight thousand six hundred seventy-three'), (7508, 89552, 'eighty-nine thousand five hundred fifty-two'), (7509, 53729, 'fifty-three thousand seven hundred twenty-nine'), (7510, 16507, 'sixteen thousand five hundred seven'), (7511, 68717, 'sixty-eight thousand seven hundred seventeen'), (7512, 80771, 'eighty thousand seven hundred seventy-one'), (7513, 41974, 'forty-one thousand nine hundred seventy-four'), (7514, 52507, 'fifty-two thousand five hundred seven'), (7515, 22505, 'twenty-two thousand five hundred five'), (7516, 28179, 'twenty-eight thousand one hundred seventy-nine'), (7517, 42313, 'forty-two thousand three hundred thirteen'), (7518, 73205, 'seventy-three thousand two hundred five'), (7519, 35773, 'thirty-five thousand seven hundred seventy-three'), (7520, 3191, 'three thousand one hundred ninety-one'), (7521, 99153, 'ninety-nine thousand one hundred fifty-three'), (7522, 36884, 'thirty-six thousand eight hundred eighty-four'), (7523, 33393, 'thirty-three thousand three hundred ninety-three'), (7524, 78679, 'seventy-eight thousand six hundred seventy-nine'), (7525, 33427, 'thirty-three thousand four hundred twenty-seven'), (7526, 92166, 'ninety-two thousand one hundred sixty-six'), (7527, 57863, 'fifty-seven thousand eight hundred sixty-three'), (7528, 48513, 'forty-eight thousand five hundred thirteen'), (7529, 64604, 'sixty-four thousand six hundred four'), (7530, 42568, 'forty-two thousand five hundred sixty-eight'), (7531, 40599, 'forty thousand five hundred ninety-nine'), (7532, 26112, 'twenty-six thousand one hundred twelve'), (7533, 64220, 'sixty-four thousand two hundred twenty'), (7534, 15706, 'fifteen thousand seven hundred six'), (7535, 40185, 'forty thousand one hundred eighty-five'), (7536, 1528, 'one thousand five hundred twenty-eight'), (7537, 42906, 'forty-two thousand nine hundred six'), (7538, 33416, 'thirty-three thousand four hundred sixteen'), (7539, 12521, 'twelve thousand five hundred twenty-one'), (7540, 10976, 'ten thousand nine hundred seventy-six'), (7541, 31686, 'thirty-one thousand six hundred eighty-six'), (7542, 53218, 'fifty-three thousand two hundred eighteen'), (7543, 49056, 'forty-nine thousand fifty-six'), (7544, 61375, 'sixty-one thousand three hundred seventy-five'), (7545, 70557, 'seventy thousand five hundred fifty-seven'), (7546, 41451, 'forty-one thousand four hundred fifty-one'), (7547, 67002, 'sixty-seven thousand two'), (7548, 78676, 'seventy-eight thousand six hundred seventy-six'), (7549, 34278, 'thirty-four thousand two hundred seventy-eight'), (7550, 92849, 'ninety-two thousand eight hundred forty-nine'), (7551, 10020, 'ten thousand twenty'), (7552, 66557, 'sixty-six thousand five hundred fifty-seven'), (7553, 58425, 'fifty-eight thousand four hundred twenty-five'), (7554, 31844, 'thirty-one thousand eight hundred forty-four'), (7555, 38934, 'thirty-eight thousand nine hundred thirty-four'), (7556, 3768, 'three thousand seven hundred sixty-eight'), (7557, 11387, 'eleven thousand three hundred eighty-seven'), (7558, 51096, 'fifty-one thousand ninety-six'), (7559, 2040, 'two thousand forty'), (7560, 73370, 'seventy-three thousand three hundred seventy'), (7561, 63765, 'sixty-three thousand seven hundred sixty-five'), (7562, 5630, 'five thousand six hundred thirty'), (7563, 48149, 'forty-eight thousand one hundred forty-nine'), (7564, 65940, 'sixty-five thousand nine hundred forty'), (7565, 14696, 'fourteen thousand six hundred ninety-six'), (7566, 84264, 'eighty-four thousand two hundred sixty-four'), (7567, 28148, 'twenty-eight thousand one hundred forty-eight'), (7568, 56964, 'fifty-six thousand nine hundred sixty-four'), (7569, 77611, 'seventy-seven thousand six hundred eleven'), (7570, 38955, 'thirty-eight thousand nine hundred fifty-five'), (7571, 42357, 'forty-two thousand three hundred fifty-seven'), (7572, 68317, 'sixty-eight thousand three hundred seventeen'), (7573, 9676, 'nine thousand six hundred seventy-six'), (7574, 97886, 'ninety-seven thousand eight hundred eighty-six'), (7575, 5372, 'five thousand three hundred seventy-two'), (7576, 65924, 'sixty-five thousand nine hundred twenty-four'), (7577, 33045, 'thirty-three thousand forty-five'), (7578, 49238, 'forty-nine thousand two hundred thirty-eight'), (7579, 2480, 'two thousand four hundred eighty'), (7580, 39492, 'thirty-nine thousand four hundred ninety-two'), (7581, 91785, 'ninety-one thousand seven hundred eighty-five'), (7582, 50532, 'fifty thousand five hundred thirty-two'), (7583, 57073, 'fifty-seven thousand seventy-three'), (7584, 37226, 'thirty-seven thousand two hundred twenty-six'), (7585, 44803, 'forty-four thousand eight hundred three'), (7586, 81713, 'eighty-one thousand seven hundred thirteen'), (7587, 85593, 'eighty-five thousand five hundred ninety-three'), (7588, 9911, 'nine thousand nine hundred eleven'), (7589, 81534, 'eighty-one thousand five hundred thirty-four'), (7590, 48184, 'forty-eight thousand one hundred eighty-four'), (7591, 8434, 'eight thousand four hundred thirty-four'), (7592, 97111, 'ninety-seven thousand one hundred eleven'), (7593, 81993, 'eighty-one thousand nine hundred ninety-three'), (7594, 6325, 'six thousand three hundred twenty-five'), (7595, 3988, 'three thousand nine hundred eighty-eight'), (7596, 95168, 'ninety-five thousand one hundred sixty-eight'), (7597, 92244, 'ninety-two thousand two hundred forty-four'), (7598, 14998, 'fourteen thousand nine hundred ninety-eight'), (7599, 26106, 'twenty-six thousand one hundred six'), (7600, 89553, 'eighty-nine thousand five hundred fifty-three'), (7601, 88785, 'eighty-eight thousand seven hundred eighty-five'), (7602, 37747, 'thirty-seven thousand seven hundred forty-seven'), (7603, 28314, 'twenty-eight thousand three hundred fourteen'), (7604, 94690, 'ninety-four thousand six hundred ninety'), (7605, 85341, 'eighty-five thousand three hundred forty-one'), (7606, 71559, 'seventy-one thousand five hundred fifty-nine'), (7607, 44200, 'forty-four thousand two hundred'), (7608, 27012, 'twenty-seven thousand twelve'), (7609, 85555, 'eighty-five thousand five hundred fifty-five'), (7610, 66236, 'sixty-six thousand two hundred thirty-six'), (7611, 50861, 'fifty thousand eight hundred sixty-one'), (7612, 58399, 'fifty-eight thousand three hundred ninety-nine'), (7613, 88626, 'eighty-eight thousand six hundred twenty-six'), (7614, 2970, 'two thousand nine hundred seventy'), (7615, 45944, 'forty-five thousand nine hundred forty-four'), (7616, 97327, 'ninety-seven thousand three hundred twenty-seven'), (7617, 51299, 'fifty-one thousand two hundred ninety-nine'), (7618, 65136, 'sixty-five thousand one hundred thirty-six'), (7619, 41212, 'forty-one thousand two hundred twelve'), (7620, 24046, 'twenty-four thousand forty-six'), (7621, 34768, 'thirty-four thousand seven hundred sixty-eight'), (7622, 43164, 'forty-three thousand one hundred sixty-four'), (7623, 46960, 'forty-six thousand nine hundred sixty'), (7624, 93105, 'ninety-three thousand one hundred five'), (7625, 59291, 'fifty-nine thousand two hundred ninety-one'), (7626, 94936, 'ninety-four thousand nine hundred thirty-six'), (7627, 33012, 'thirty-three thousand twelve'), (7628, 57210, 'fifty-seven thousand two hundred ten'), (7629, 89151, 'eighty-nine thousand one hundred fifty-one'), (7630, 37067, 'thirty-seven thousand sixty-seven'), (7631, 83823, 'eighty-three thousand eight hundred twenty-three'), (7632, 43281, 'forty-three thousand two hundred eighty-one'), (7633, 43502, 'forty-three thousand five hundred two'), (7634, 88432, 'eighty-eight thousand four hundred thirty-two'), (7635, 96282, 'ninety-six thousand two hundred eighty-two'), (7636, 22310, 'twenty-two thousand three hundred ten'), (7637, 63184, 'sixty-three thousand one hundred eighty-four'), (7638, 38854, 'thirty-eight thousand eight hundred fifty-four'), (7639, 32014, 'thirty-two thousand fourteen'), (7640, 47591, 'forty-seven thousand five hundred ninety-one'), (7641, 66203, 'sixty-six thousand two hundred three'), (7642, 10901, 'ten thousand nine hundred one'), (7643, 63363, 'sixty-three thousand three hundred sixty-three'), (7644, 40060, 'forty thousand sixty'), (7645, 89536, 'eighty-nine thousand five hundred thirty-six'), (7646, 13, 'thirteen'), (7647, 52827, 'fifty-two thousand eight hundred twenty-seven'), (7648, 76482, 'seventy-six thousand four hundred eighty-two'), (7649, 48210, 'forty-eight thousand two hundred ten'), (7650, 52849, 'fifty-two thousand eight hundred forty-nine'), (7651, 33200, 'thirty-three thousand two hundred'), (7652, 58898, 'fifty-eight thousand eight hundred ninety-eight'), (7653, 24149, 'twenty-four thousand one hundred forty-nine'), (7654, 81107, 'eighty-one thousand one hundred seven'), (7655, 35910, 'thirty-five thousand nine hundred ten'), (7656, 38307, 'thirty-eight thousand three hundred seven'), (7657, 54300, 'fifty-four thousand three hundred'), (7658, 31626, 'thirty-one thousand six hundred twenty-six'), (7659, 4551, 'four thousand five hundred fifty-one'), (7660, 5962, 'five thousand nine hundred sixty-two'), (7661, 2501, 'two thousand five hundred one'), (7662, 96696, 'ninety-six thousand six hundred ninety-six'), (7663, 88731, 'eighty-eight thousand seven hundred thirty-one'), (7664, 74200, 'seventy-four thousand two hundred'), (7665, 17154, 'seventeen thousand one hundred fifty-four'), (7666, 13238, 'thirteen thousand two hundred thirty-eight'), (7667, 48064, 'forty-eight thousand sixty-four'), (7668, 7940, 'seven thousand nine hundred forty'), (7669, 14029, 'fourteen thousand twenty-nine'), (7670, 40366, 'forty thousand three hundred sixty-six'), (7671, 39973, 'thirty-nine thousand nine hundred seventy-three'), (7672, 57265, 'fifty-seven thousand two hundred sixty-five'), (7673, 39000, 'thirty-nine thousand'), (7674, 39485, 'thirty-nine thousand four hundred eighty-five'), (7675, 84542, 'eighty-four thousand five hundred forty-two'), (7676, 61773, 'sixty-one thousand seven hundred seventy-three'), (7677, 41641, 'forty-one thousand six hundred forty-one'), (7678, 7886, 'seven thousand eight hundred eighty-six'), (7679, 30700, 'thirty thousand seven hundred'), (7680, 95970, 'ninety-five thousand nine hundred seventy'), (7681, 64922, 'sixty-four thousand nine hundred twenty-two'), (7682, 14021, 'fourteen thousand twenty-one'), (7683, 99256, 'ninety-nine thousand two hundred fifty-six'), (7684, 91940, 'ninety-one thousand nine hundred forty'), (7685, 27372, 'twenty-seven thousand three hundred seventy-two'), (7686, 57008, 'fifty-seven thousand eight'), (7687, 69222, 'sixty-nine thousand two hundred twenty-two'), (7688, 7614, 'seven thousand six hundred fourteen'), (7689, 69469, 'sixty-nine thousand four hundred sixty-nine'), (7690, 60236, 'sixty thousand two hundred thirty-six'), (7691, 95005, 'ninety-five thousand five'), (7692, 70671, 'seventy thousand six hundred seventy-one'), (7693, 18886, 'eighteen thousand eight hundred eighty-six'), (7694, 80435, 'eighty thousand four hundred thirty-five'), (7695, 77160, 'seventy-seven thousand one hundred sixty'), (7696, 29415, 'twenty-nine thousand four hundred fifteen'), (7697, 72605, 'seventy-two thousand six hundred five'), (7698, 64737, 'sixty-four thousand seven hundred thirty-seven'), (7699, 46033, 'forty-six thousand thirty-three'), (7700, 1345, 'one thousand three hundred forty-five'), (7701, 76566, 'seventy-six thousand five hundred sixty-six'), (7702, 24009, 'twenty-four thousand nine'), (7703, 748, 'seven hundred forty-eight'), (7704, 6824, 'six thousand eight hundred twenty-four'), (7705, 41462, 'forty-one thousand four hundred sixty-two'), (7706, 25743, 'twenty-five thousand seven hundred forty-three'), (7707, 11884, 'eleven thousand eight hundred eighty-four'), (7708, 48287, 'forty-eight thousand two hundred eighty-seven'), (7709, 12828, 'twelve thousand eight hundred twenty-eight'), (7710, 55232, 'fifty-five thousand two hundred thirty-two'), (7711, 7121, 'seven thousand one hundred twenty-one'), (7712, 64242, 'sixty-four thousand two hundred forty-two'), (7713, 24992, 'twenty-four thousand nine hundred ninety-two'), (7714, 34382, 'thirty-four thousand three hundred eighty-two'), (7715, 70019, 'seventy thousand nineteen'), (7716, 96928, 'ninety-six thousand nine hundred twenty-eight'), (7717, 99259, 'ninety-nine thousand two hundred fifty-nine'), (7718, 74890, 'seventy-four thousand eight hundred ninety'), (7719, 31251, 'thirty-one thousand two hundred fifty-one'), (7720, 53203, 'fifty-three thousand two hundred three'), (7721, 80806, 'eighty thousand eight hundred six'), (7722, 15184, 'fifteen thousand one hundred eighty-four'), (7723, 83156, 'eighty-three thousand one hundred fifty-six'), (7724, 46068, 'forty-six thousand sixty-eight'), (7725, 54273, 'fifty-four thousand two hundred seventy-three'), (7726, 33264, 'thirty-three thousand two hundred sixty-four'), (7727, 91237, 'ninety-one thousand two hundred thirty-seven'), (7728, 50759, 'fifty thousand seven hundred fifty-nine'), (7729, 59848, 'fifty-nine thousand eight hundred forty-eight'), (7730, 46658, 'forty-six thousand six hundred fifty-eight'), (7731, 23471, 'twenty-three thousand four hundred seventy-one'), (7732, 99924, 'ninety-nine thousand nine hundred twenty-four'), (7733, 84228, 'eighty-four thousand two hundred twenty-eight'), (7734, 64993, 'sixty-four thousand nine hundred ninety-three'), (7735, 35824, 'thirty-five thousand eight hundred twenty-four'), (7736, 86124, 'eighty-six thousand one hundred twenty-four'), (7737, 1997, 'one thousand nine hundred ninety-seven'), (7738, 30925, 'thirty thousand nine hundred twenty-five'), (7739, 9794, 'nine thousand seven hundred ninety-four'), (7740, 21703, 'twenty-one thousand seven hundred three'), (7741, 47667, 'forty-seven thousand six hundred sixty-seven'), (7742, 78875, 'seventy-eight thousand eight hundred seventy-five'), (7743, 68845, 'sixty-eight thousand eight hundred forty-five'), (7744, 75832, 'seventy-five thousand eight hundred thirty-two'), (7745, 4127, 'four thousand one hundred twenty-seven'), (7746, 92351, 'ninety-two thousand three hundred fifty-one'), (7747, 36960, 'thirty-six thousand nine hundred sixty'), (7748, 53797, 'fifty-three thousand seven hundred ninety-seven'), (7749, 22166, 'twenty-two thousand one hundred sixty-six'), (7750, 39652, 'thirty-nine thousand six hundred fifty-two'), (7751, 30846, 'thirty thousand eight hundred forty-six'), (7752, 30187, 'thirty thousand one hundred eighty-seven'), (7753, 68871, 'sixty-eight thousand eight hundred seventy-one'), (7754, 16967, 'sixteen thousand nine hundred sixty-seven'), (7755, 89961, 'eighty-nine thousand nine hundred sixty-one'), (7756, 13958, 'thirteen thousand nine hundred fifty-eight'), (7757, 86908, 'eighty-six thousand nine hundred eight'), (7758, 78938, 'seventy-eight thousand nine hundred thirty-eight'), (7759, 81787, 'eighty-one thousand seven hundred eighty-seven'), (7760, 73914, 'seventy-three thousand nine hundred fourteen'), (7761, 81978, 'eighty-one thousand nine hundred seventy-eight'), (7762, 76608, 'seventy-six thousand six hundred eight'), (7763, 40940, 'forty thousand nine hundred forty'), (7764, 21769, 'twenty-one thousand seven hundred sixty-nine'), (7765, 64411, 'sixty-four thousand four hundred eleven'), (7766, 12013, 'twelve thousand thirteen'), (7767, 44515, 'forty-four thousand five hundred fifteen'), (7768, 64042, 'sixty-four thousand forty-two'), (7769, 95415, 'ninety-five thousand four hundred fifteen'), (7770, 46241, 'forty-six thousand two hundred forty-one'), (7771, 38038, 'thirty-eight thousand thirty-eight'), (7772, 29915, 'twenty-nine thousand nine hundred fifteen'), (7773, 47079, 'forty-seven thousand seventy-nine'), (7774, 40975, 'forty thousand nine hundred seventy-five'), (7775, 25189, 'twenty-five thousand one hundred eighty-nine'), (7776, 84219, 'eighty-four thousand two hundred nineteen'), (7777, 65775, 'sixty-five thousand seven hundred seventy-five'), (7778, 83133, 'eighty-three thousand one hundred thirty-three'), (7779, 18759, 'eighteen thousand seven hundred fifty-nine'), (7780, 24673, 'twenty-four thousand six hundred seventy-three'), (7781, 89363, 'eighty-nine thousand three hundred sixty-three'), (7782, 94126, 'ninety-four thousand one hundred twenty-six'), (7783, 736, 'seven hundred thirty-six'), (7784, 67024, 'sixty-seven thousand twenty-four'), (7785, 7486, 'seven thousand four hundred eighty-six'), (7786, 67916, 'sixty-seven thousand nine hundred sixteen'), (7787, 17289, 'seventeen thousand two hundred eighty-nine'), (7788, 47031, 'forty-seven thousand thirty-one'), (7789, 22555, 'twenty-two thousand five hundred fifty-five'), (7790, 55086, 'fifty-five thousand eighty-six'), (7791, 47896, 'forty-seven thousand eight hundred ninety-six'), (7792, 24885, 'twenty-four thousand eight hundred eighty-five'), (7793, 12920, 'twelve thousand nine hundred twenty'), (7794, 749, 'seven hundred forty-nine'), (7795, 55204, 'fifty-five thousand two hundred four'), (7796, 5101, 'five thousand one hundred one'), (7797, 70030, 'seventy thousand thirty'), (7798, 7459, 'seven thousand four hundred fifty-nine'), (7799, 48899, 'forty-eight thousand eight hundred ninety-nine'), (7800, 93683, 'ninety-three thousand six hundred eighty-three'), (7801, 16451, 'sixteen thousand four hundred fifty-one'), (7802, 25104, 'twenty-five thousand one hundred four'), (7803, 9893, 'nine thousand eight hundred ninety-three'), (7804, 14245, 'fourteen thousand two hundred forty-five'), (7805, 5970, 'five thousand nine hundred seventy'), (7806, 34885, 'thirty-four thousand eight hundred eighty-five'), (7807, 16332, 'sixteen thousand three hundred thirty-two'), (7808, 54012, 'fifty-four thousand twelve'), (7809, 11996, 'eleven thousand nine hundred ninety-six'), (7810, 21344, 'twenty-one thousand three hundred forty-four'), (7811, 35258, 'thirty-five thousand two hundred fifty-eight'), (7812, 9275, 'nine thousand two hundred seventy-five'), (7813, 85031, 'eighty-five thousand thirty-one'), (7814, 29581, 'twenty-nine thousand five hundred eighty-one'), (7815, 37798, 'thirty-seven thousand seven hundred ninety-eight'), (7816, 43311, 'forty-three thousand three hundred eleven'), (7817, 26374, 'twenty-six thousand three hundred seventy-four'), (7818, 44818, 'forty-four thousand eight hundred eighteen'), (7819, 44149, 'forty-four thousand one hundred forty-nine'), (7820, 54167, 'fifty-four thousand one hundred sixty-seven'), (7821, 80354, 'eighty thousand three hundred fifty-four'), (7822, 72843, 'seventy-two thousand eight hundred forty-three'), (7823, 3938, 'three thousand nine hundred thirty-eight'), (7824, 67512, 'sixty-seven thousand five hundred twelve'), (7825, 54793, 'fifty-four thousand seven hundred ninety-three'), (7826, 78915, 'seventy-eight thousand nine hundred fifteen'), (7827, 87426, 'eighty-seven thousand four hundred twenty-six'), (7828, 76112, 'seventy-six thousand one hundred twelve'), (7829, 46418, 'forty-six thousand four hundred eighteen'), (7830, 63056, 'sixty-three thousand fifty-six'), (7831, 18738, 'eighteen thousand seven hundred thirty-eight'), (7832, 71922, 'seventy-one thousand nine hundred twenty-two'), (7833, 10485, 'ten thousand four hundred eighty-five'), (7834, 30335, 'thirty thousand three hundred thirty-five'), (7835, 68428, 'sixty-eight thousand four hundred twenty-eight'), (7836, 28843, 'twenty-eight thousand eight hundred forty-three'), (7837, 11189, 'eleven thousand one hundred eighty-nine'), (7838, 27674, 'twenty-seven thousand six hundred seventy-four'), (7839, 8179, 'eight thousand one hundred seventy-nine'), (7840, 62895, 'sixty-two thousand eight hundred ninety-five'), (7841, 37338, 'thirty-seven thousand three hundred thirty-eight'), (7842, 31953, 'thirty-one thousand nine hundred fifty-three'), (7843, 32622, 'thirty-two thousand six hundred twenty-two'), (7844, 76187, 'seventy-six thousand one hundred eighty-seven'), (7845, 43656, 'forty-three thousand six hundred fifty-six'), (7846, 87332, 'eighty-seven thousand three hundred thirty-two'), (7847, 92268, 'ninety-two thousand two hundred sixty-eight'), (7848, 95283, 'ninety-five thousand two hundred eighty-three'), (7849, 50468, 'fifty thousand four hundred sixty-eight'), (7850, 91856, 'ninety-one thousand eight hundred fifty-six'), (7851, 69233, 'sixty-nine thousand two hundred thirty-three'), (7852, 17016, 'seventeen thousand sixteen'), (7853, 96332, 'ninety-six thousand three hundred thirty-two'), (7854, 76291, 'seventy-six thousand two hundred ninety-one'), (7855, 34565, 'thirty-four thousand five hundred sixty-five'), (7856, 39586, 'thirty-nine thousand five hundred eighty-six'), (7857, 61213, 'sixty-one thousand two hundred thirteen'), (7858, 18928, 'eighteen thousand nine hundred twenty-eight'), (7859, 21888, 'twenty-one thousand eight hundred eighty-eight'), (7860, 51536, 'fifty-one thousand five hundred thirty-six'), (7861, 81074, 'eighty-one thousand seventy-four'), (7862, 21568, 'twenty-one thousand five hundred sixty-eight'), (7863, 48621, 'forty-eight thousand six hundred twenty-one'), (7864, 90284, 'ninety thousand two hundred eighty-four'), (7865, 6140, 'six thousand one hundred forty'), (7866, 3388, 'three thousand three hundred eighty-eight'), (7867, 54350, 'fifty-four thousand three hundred fifty'), (7868, 88335, 'eighty-eight thousand three hundred thirty-five'), (7869, 55056, 'fifty-five thousand fifty-six'), (7870, 80523, 'eighty thousand five hundred twenty-three'), (7871, 36453, 'thirty-six thousand four hundred fifty-three'), (7872, 637, 'six hundred thirty-seven'), (7873, 46560, 'forty-six thousand five hundred sixty'), (7874, 64868, 'sixty-four thousand eight hundred sixty-eight'), (7875, 80928, 'eighty thousand nine hundred twenty-eight'), (7876, 73574, 'seventy-three thousand five hundred seventy-four'), (7877, 17541, 'seventeen thousand five hundred forty-one'), (7878, 94826, 'ninety-four thousand eight hundred twenty-six'), (7879, 65383, 'sixty-five thousand three hundred eighty-three'), (7880, 82342, 'eighty-two thousand three hundred forty-two'), (7881, 37458, 'thirty-seven thousand four hundred fifty-eight'), (7882, 99149, 'ninety-nine thousand one hundred forty-nine'), (7883, 71689, 'seventy-one thousand six hundred eighty-nine'), (7884, 78085, 'seventy-eight thousand eighty-five'), (7885, 57552, 'fifty-seven thousand five hundred fifty-two'), (7886, 2761, 'two thousand seven hundred sixty-one'), (7887, 45520, 'forty-five thousand five hundred twenty'), (7888, 45625, 'forty-five thousand six hundred twenty-five'), (7889, 4598, 'four thousand five hundred ninety-eight'), (7890, 55, 'fifty-five'), (7891, 35004, 'thirty-five thousand four'), (7892, 55327, 'fifty-five thousand three hundred twenty-seven'), (7893, 11166, 'eleven thousand one hundred sixty-six'), (7894, 26140, 'twenty-six thousand one hundred forty'), (7895, 91477, 'ninety-one thousand four hundred seventy-seven'), (7896, 42203, 'forty-two thousand two hundred three'), (7897, 84780, 'eighty-four thousand seven hundred eighty'), (7898, 67536, 'sixty-seven thousand five hundred thirty-six'), (7899, 19055, 'nineteen thousand fifty-five'), (7900, 59432, 'fifty-nine thousand four hundred thirty-two'), (7901, 21613, 'twenty-one thousand six hundred thirteen'), (7902, 61666, 'sixty-one thousand six hundred sixty-six'), (7903, 77311, 'seventy-seven thousand three hundred eleven'), (7904, 27206, 'twenty-seven thousand two hundred six'), (7905, 92854, 'ninety-two thousand eight hundred fifty-four'), (7906, 35248, 'thirty-five thousand two hundred forty-eight'), (7907, 61592, 'sixty-one thousand five hundred ninety-two'), (7908, 98527, 'ninety-eight thousand five hundred twenty-seven'), (7909, 48236, 'forty-eight thousand two hundred thirty-six'), (7910, 9447, 'nine thousand four hundred forty-seven'), (7911, 30822, 'thirty thousand eight hundred twenty-two'), (7912, 14984, 'fourteen thousand nine hundred eighty-four'), (7913, 31991, 'thirty-one thousand nine hundred ninety-one'), (7914, 54422, 'fifty-four thousand four hundred twenty-two'), (7915, 79383, 'seventy-nine thousand three hundred eighty-three'), (7916, 73590, 'seventy-three thousand five hundred ninety'), (7917, 95713, 'ninety-five thousand seven hundred thirteen'), (7918, 18969, 'eighteen thousand nine hundred sixty-nine'), (7919, 14662, 'fourteen thousand six hundred sixty-two'), (7920, 45256, 'forty-five thousand two hundred fifty-six'), (7921, 37455, 'thirty-seven thousand four hundred fifty-five'), (7922, 10143, 'ten thousand one hundred forty-three'), (7923, 97947, 'ninety-seven thousand nine hundred forty-seven'), (7924, 48008, 'forty-eight thousand eight'), (7925, 62549, 'sixty-two thousand five hundred forty-nine'), (7926, 45256, 'forty-five thousand two hundred fifty-six'), (7927, 40634, 'forty thousand six hundred thirty-four'), (7928, 10988, 'ten thousand nine hundred eighty-eight'), (7929, 33825, 'thirty-three thousand eight hundred twenty-five'), (7930, 96608, 'ninety-six thousand six hundred eight'), (7931, 5533, 'five thousand five hundred thirty-three'), (7932, 26864, 'twenty-six thousand eight hundred sixty-four'), (7933, 85451, 'eighty-five thousand four hundred fifty-one'), (7934, 26640, 'twenty-six thousand six hundred forty'), (7935, 51622, 'fifty-one thousand six hundred twenty-two'), (7936, 14219, 'fourteen thousand two hundred nineteen'), (7937, 6403, 'six thousand four hundred three'), (7938, 38686, 'thirty-eight thousand six hundred eighty-six'), (7939, 57470, 'fifty-seven thousand four hundred seventy'), (7940, 70153, 'seventy thousand one hundred fifty-three'), (7941, 84092, 'eighty-four thousand ninety-two'), (7942, 40361, 'forty thousand three hundred sixty-one'), (7943, 55743, 'fifty-five thousand seven hundred forty-three'), (7944, 98943, 'ninety-eight thousand nine hundred forty-three'), (7945, 44077, 'forty-four thousand seventy-seven'), (7946, 15704, 'fifteen thousand seven hundred four'), (7947, 33561, 'thirty-three thousand five hundred sixty-one'), (7948, 19774, 'nineteen thousand seven hundred seventy-four'), (7949, 41637, 'forty-one thousand six hundred thirty-seven'), (7950, 66247, 'sixty-six thousand two hundred forty-seven'), (7951, 49218, 'forty-nine thousand two hundred eighteen'), (7952, 36083, 'thirty-six thousand eighty-three'), (7953, 95461, 'ninety-five thousand four hundred sixty-one'), (7954, 72804, 'seventy-two thousand eight hundred four'), (7955, 9216, 'nine thousand two hundred sixteen'), (7956, 73606, 'seventy-three thousand six hundred six'), (7957, 93155, 'ninety-three thousand one hundred fifty-five'), (7958, 55561, 'fifty-five thousand five hundred sixty-one'), (7959, 89373, 'eighty-nine thousand three hundred seventy-three'), (7960, 7478, 'seven thousand four hundred seventy-eight'), (7961, 32969, 'thirty-two thousand nine hundred sixty-nine'), (7962, 16085, 'sixteen thousand eighty-five'), (7963, 24821, 'twenty-four thousand eight hundred twenty-one'), (7964, 17232, 'seventeen thousand two hundred thirty-two'), (7965, 37906, 'thirty-seven thousand nine hundred six'), (7966, 1280, 'one thousand two hundred eighty'), (7967, 93357, 'ninety-three thousand three hundred fifty-seven'), (7968, 62662, 'sixty-two thousand six hundred sixty-two'), (7969, 69554, 'sixty-nine thousand five hundred fifty-four'), (7970, 68837, 'sixty-eight thousand eight hundred thirty-seven'), (7971, 49333, 'forty-nine thousand three hundred thirty-three'), (7972, 61065, 'sixty-one thousand sixty-five'), (7973, 45391, 'forty-five thousand three hundred ninety-one'), (7974, 12556, 'twelve thousand five hundred fifty-six'), (7975, 5031, 'five thousand thirty-one'), (7976, 62986, 'sixty-two thousand nine hundred eighty-six'), (7977, 25975, 'twenty-five thousand nine hundred seventy-five'), (7978, 33655, 'thirty-three thousand six hundred fifty-five'), (7979, 6028, 'six thousand twenty-eight'), (7980, 36020, 'thirty-six thousand twenty'), (7981, 41558, 'forty-one thousand five hundred fifty-eight'), (7982, 87946, 'eighty-seven thousand nine hundred forty-six'), (7983, 21756, 'twenty-one thousand seven hundred fifty-six'), (7984, 44874, 'forty-four thousand eight hundred seventy-four'), (7985, 7220, 'seven thousand two hundred twenty'), (7986, 94122, 'ninety-four thousand one hundred twenty-two'), (7987, 43802, 'forty-three thousand eight hundred two'), (7988, 36249, 'thirty-six thousand two hundred forty-nine'), (7989, 39796, 'thirty-nine thousand seven hundred ninety-six'), (7990, 54710, 'fifty-four thousand seven hundred ten'), (7991, 71277, 'seventy-one thousand two hundred seventy-seven'), (7992, 8893, 'eight thousand eight hundred ninety-three'), (7993, 12683, 'twelve thousand six hundred eighty-three'), (7994, 3436, 'three thousand four hundred thirty-six'), (7995, 5482, 'five thousand four hundred eighty-two'), (7996, 16251, 'sixteen thousand two hundred fifty-one'), (7997, 33887, 'thirty-three thousand eight hundred eighty-seven'), (7998, 49286, 'forty-nine thousand two hundred eighty-six'), (7999, 16522, 'sixteen thousand five hundred twenty-two'), (8000, 89509, 'eighty-nine thousand five hundred nine'), (8001, 84684, 'eighty-four thousand six hundred eighty-four'), (8002, 81188, 'eighty-one thousand one hundred eighty-eight'), (8003, 14015, 'fourteen thousand fifteen'), (8004, 34039, 'thirty-four thousand thirty-nine'), (8005, 49709, 'forty-nine thousand seven hundred nine'), (8006, 39236, 'thirty-nine thousand two hundred thirty-six'), (8007, 59391, 'fifty-nine thousand three hundred ninety-one'), (8008, 76537, 'seventy-six thousand five hundred thirty-seven'), (8009, 85992, 'eighty-five thousand nine hundred ninety-two'), (8010, 8549, 'eight thousand five hundred forty-nine'), (8011, 66771, 'sixty-six thousand seven hundred seventy-one'), (8012, 88442, 'eighty-eight thousand four hundred forty-two'), (8013, 9094, 'nine thousand ninety-four'), (8014, 90515, 'ninety thousand five hundred fifteen'), (8015, 8703, 'eight thousand seven hundred three'), (8016, 21314, 'twenty-one thousand three hundred fourteen'), (8017, 98166, 'ninety-eight thousand one hundred sixty-six'), (8018, 5343, 'five thousand three hundred forty-three'), (8019, 24040, 'twenty-four thousand forty'), (8020, 70025, 'seventy thousand twenty-five'), (8021, 57450, 'fifty-seven thousand four hundred fifty'), (8022, 91323, 'ninety-one thousand three hundred twenty-three'), (8023, 67726, 'sixty-seven thousand seven hundred twenty-six'), (8024, 33298, 'thirty-three thousand two hundred ninety-eight'), (8025, 8794, 'eight thousand seven hundred ninety-four'), (8026, 57450, 'fifty-seven thousand four hundred fifty'), (8027, 16655, 'sixteen thousand six hundred fifty-five'), (8028, 84049, 'eighty-four thousand forty-nine'), (8029, 49266, 'forty-nine thousand two hundred sixty-six'), (8030, 31481, 'thirty-one thousand four hundred eighty-one'), (8031, 30149, 'thirty thousand one hundred forty-nine'), (8032, 45816, 'forty-five thousand eight hundred sixteen'), (8033, 59526, 'fifty-nine thousand five hundred twenty-six'), (8034, 79025, 'seventy-nine thousand twenty-five'), (8035, 53187, 'fifty-three thousand one hundred eighty-seven'), (8036, 75727, 'seventy-five thousand seven hundred twenty-seven'), (8037, 37740, 'thirty-seven thousand seven hundred forty'), (8038, 69474, 'sixty-nine thousand four hundred seventy-four'), (8039, 51373, 'fifty-one thousand three hundred seventy-three'), (8040, 17139, 'seventeen thousand one hundred thirty-nine'), (8041, 40365, 'forty thousand three hundred sixty-five'), (8042, 4212, 'four thousand two hundred twelve'), (8043, 49019, 'forty-nine thousand nineteen'), (8044, 11575, 'eleven thousand five hundred seventy-five'), (8045, 28312, 'twenty-eight thousand three hundred twelve'), (8046, 84096, 'eighty-four thousand ninety-six'), (8047, 65289, 'sixty-five thousand two hundred eighty-nine'), (8048, 5827, 'five thousand eight hundred twenty-seven'), (8049, 51448, 'fifty-one thousand four hundred forty-eight'), (8050, 67755, 'sixty-seven thousand seven hundred fifty-five'), (8051, 27094, 'twenty-seven thousand ninety-four'), (8052, 7500, 'seven thousand five hundred'), (8053, 70116, 'seventy thousand one hundred sixteen'), (8054, 16929, 'sixteen thousand nine hundred twenty-nine'), (8055, 11348, 'eleven thousand three hundred forty-eight'), (8056, 98296, 'ninety-eight thousand two hundred ninety-six'), (8057, 6597, 'six thousand five hundred ninety-seven'), (8058, 93592, 'ninety-three thousand five hundred ninety-two'), (8059, 44437, 'forty-four thousand four hundred thirty-seven'), (8060, 27975, 'twenty-seven thousand nine hundred seventy-five'), (8061, 72177, 'seventy-two thousand one hundred seventy-seven'), (8062, 29195, 'twenty-nine thousand one hundred ninety-five'), (8063, 24306, 'twenty-four thousand three hundred six'), (8064, 75219, 'seventy-five thousand two hundred nineteen'), (8065, 35188, 'thirty-five thousand one hundred eighty-eight'), (8066, 22006, 'twenty-two thousand six'), (8067, 90157, 'ninety thousand one hundred fifty-seven'), (8068, 13172, 'thirteen thousand one hundred seventy-two'), (8069, 74536, 'seventy-four thousand five hundred thirty-six'), (8070, 87353, 'eighty-seven thousand three hundred fifty-three'), (8071, 9950, 'nine thousand nine hundred fifty'), (8072, 22537, 'twenty-two thousand five hundred thirty-seven'), (8073, 10732, 'ten thousand seven hundred thirty-two'), (8074, 10571, 'ten thousand five hundred seventy-one'), (8075, 98607, 'ninety-eight thousand six hundred seven'), (8076, 53888, 'fifty-three thousand eight hundred eighty-eight'), (8077, 3175, 'three thousand one hundred seventy-five'), (8078, 12578, 'twelve thousand five hundred seventy-eight'), (8079, 93344, 'ninety-three thousand three hundred forty-four'), (8080, 87802, 'eighty-seven thousand eight hundred two'), (8081, 60090, 'sixty thousand ninety'), (8082, 59423, 'fifty-nine thousand four hundred twenty-three'), (8083, 47984, 'forty-seven thousand nine hundred eighty-four'), (8084, 56162, 'fifty-six thousand one hundred sixty-two'), (8085, 23863, 'twenty-three thousand eight hundred sixty-three'), (8086, 4487, 'four thousand four hundred eighty-seven'), (8087, 97406, 'ninety-seven thousand four hundred six'), (8088, 86519, 'eighty-six thousand five hundred nineteen'), (8089, 71098, 'seventy-one thousand ninety-eight'), (8090, 28632, 'twenty-eight thousand six hundred thirty-two'), (8091, 93932, 'ninety-three thousand nine hundred thirty-two'), (8092, 20421, 'twenty thousand four hundred twenty-one'), (8093, 29267, 'twenty-nine thousand two hundred sixty-seven'), (8094, 74567, 'seventy-four thousand five hundred sixty-seven'), (8095, 99457, 'ninety-nine thousand four hundred fifty-seven'), (8096, 59667, 'fifty-nine thousand six hundred sixty-seven'), (8097, 60872, 'sixty thousand eight hundred seventy-two'), (8098, 53594, 'fifty-three thousand five hundred ninety-four'), (8099, 66800, 'sixty-six thousand eight hundred'), (8100, 81708, 'eighty-one thousand seven hundred eight'), (8101, 82388, 'eighty-two thousand three hundred eighty-eight'), (8102, 31922, 'thirty-one thousand nine hundred twenty-two'), (8103, 28907, 'twenty-eight thousand nine hundred seven'), (8104, 33393, 'thirty-three thousand three hundred ninety-three'), (8105, 82827, 'eighty-two thousand eight hundred twenty-seven'), (8106, 16882, 'sixteen thousand eight hundred eighty-two'), (8107, 61644, 'sixty-one thousand six hundred forty-four'), (8108, 71826, 'seventy-one thousand eight hundred twenty-six'), (8109, 19410, 'nineteen thousand four hundred ten'), (8110, 81318, 'eighty-one thousand three hundred eighteen'), (8111, 65374, 'sixty-five thousand three hundred seventy-four'), (8112, 66995, 'sixty-six thousand nine hundred ninety-five'), (8113, 94637, 'ninety-four thousand six hundred thirty-seven'), (8114, 78707, 'seventy-eight thousand seven hundred seven'), (8115, 98440, 'ninety-eight thousand four hundred forty'), (8116, 60845, 'sixty thousand eight hundred forty-five'), (8117, 36430, 'thirty-six thousand four hundred thirty'), (8118, 74905, 'seventy-four thousand nine hundred five'), (8119, 5597, 'five thousand five hundred ninety-seven'), (8120, 26767, 'twenty-six thousand seven hundred sixty-seven'), (8121, 83070, 'eighty-three thousand seventy'), (8122, 67202, 'sixty-seven thousand two hundred two'), (8123, 86283, 'eighty-six thousand two hundred eighty-three'), (8124, 96463, 'ninety-six thousand four hundred sixty-three'), (8125, 14179, 'fourteen thousand one hundred seventy-nine'), (8126, 64056, 'sixty-four thousand fifty-six'), (8127, 58519, 'fifty-eight thousand five hundred nineteen'), (8128, 18920, 'eighteen thousand nine hundred twenty'), (8129, 69584, 'sixty-nine thousand five hundred eighty-four'), (8130, 27796, 'twenty-seven thousand seven hundred ninety-six'), (8131, 45307, 'forty-five thousand three hundred seven'), (8132, 28813, 'twenty-eight thousand eight hundred thirteen'), (8133, 99647, 'ninety-nine thousand six hundred forty-seven'), (8134, 16545, 'sixteen thousand five hundred forty-five'), (8135, 74537, 'seventy-four thousand five hundred thirty-seven'), (8136, 90134, 'ninety thousand one hundred thirty-four'), (8137, 45851, 'forty-five thousand eight hundred fifty-one'), (8138, 38243, 'thirty-eight thousand two hundred forty-three'), (8139, 31534, 'thirty-one thousand five hundred thirty-four'), (8140, 1804, 'one thousand eight hundred four'), (8141, 71584, 'seventy-one thousand five hundred eighty-four'), (8142, 44572, 'forty-four thousand five hundred seventy-two'), (8143, 27202, 'twenty-seven thousand two hundred two'), (8144, 70639, 'seventy thousand six hundred thirty-nine'), (8145, 42204, 'forty-two thousand two hundred four'), (8146, 76588, 'seventy-six thousand five hundred eighty-eight'), (8147, 79050, 'seventy-nine thousand fifty'), (8148, 55518, 'fifty-five thousand five hundred eighteen'), (8149, 26840, 'twenty-six thousand eight hundred forty'), (8150, 25692, 'twenty-five thousand six hundred ninety-two'), (8151, 28384, 'twenty-eight thousand three hundred eighty-four'), (8152, 24195, 'twenty-four thousand one hundred ninety-five'), (8153, 81289, 'eighty-one thousand two hundred eighty-nine'), (8154, 56024, 'fifty-six thousand twenty-four'), (8155, 91563, 'ninety-one thousand five hundred sixty-three'), (8156, 55950, 'fifty-five thousand nine hundred fifty'), (8157, 28486, 'twenty-eight thousand four hundred eighty-six'), (8158, 98589, 'ninety-eight thousand five hundred eighty-nine'), (8159, 9670, 'nine thousand six hundred seventy'), (8160, 37363, 'thirty-seven thousand three hundred sixty-three'), (8161, 50339, 'fifty thousand three hundred thirty-nine'), (8162, 19513, 'nineteen thousand five hundred thirteen'), (8163, 22954, 'twenty-two thousand nine hundred fifty-four'), (8164, 96959, 'ninety-six thousand nine hundred fifty-nine'), (8165, 28263, 'twenty-eight thousand two hundred sixty-three'), (8166, 88725, 'eighty-eight thousand seven hundred twenty-five'), (8167, 19414, 'nineteen thousand four hundred fourteen'), (8168, 83966, 'eighty-three thousand nine hundred sixty-six'), (8169, 46804, 'forty-six thousand eight hundred four'), (8170, 72825, 'seventy-two thousand eight hundred twenty-five'), (8171, 49946, 'forty-nine thousand nine hundred forty-six'), (8172, 1105, 'one thousand one hundred five'), (8173, 32495, 'thirty-two thousand four hundred ninety-five'), (8174, 62329, 'sixty-two thousand three hundred twenty-nine'), (8175, 43010, 'forty-three thousand ten'), (8176, 94084, 'ninety-four thousand eighty-four'), (8177, 59631, 'fifty-nine thousand six hundred thirty-one'), (8178, 6291, 'six thousand two hundred ninety-one'), (8179, 24610, 'twenty-four thousand six hundred ten'), (8180, 7376, 'seven thousand three hundred seventy-six'), (8181, 75663, 'seventy-five thousand six hundred sixty-three'), (8182, 20917, 'twenty thousand nine hundred seventeen'), (8183, 90871, 'ninety thousand eight hundred seventy-one'), (8184, 84249, 'eighty-four thousand two hundred forty-nine'), (8185, 11208, 'eleven thousand two hundred eight'), (8186, 16820, 'sixteen thousand eight hundred twenty'), (8187, 87115, 'eighty-seven thousand one hundred fifteen'), (8188, 14205, 'fourteen thousand two hundred five'), (8189, 49986, 'forty-nine thousand nine hundred eighty-six'), (8190, 32588, 'thirty-two thousand five hundred eighty-eight'), (8191, 77871, 'seventy-seven thousand eight hundred seventy-one'), (8192, 88917, 'eighty-eight thousand nine hundred seventeen'), (8193, 73062, 'seventy-three thousand sixty-two'), (8194, 69440, 'sixty-nine thousand four hundred forty'), (8195, 90830, 'ninety thousand eight hundred thirty'), (8196, 38787, 'thirty-eight thousand seven hundred eighty-seven'), (8197, 32760, 'thirty-two thousand seven hundred sixty'), (8198, 22170, 'twenty-two thousand one hundred seventy'), (8199, 83455, 'eighty-three thousand four hundred fifty-five'), (8200, 73609, 'seventy-three thousand six hundred nine'), (8201, 8014, 'eight thousand fourteen'), (8202, 57772, 'fifty-seven thousand seven hundred seventy-two'), (8203, 29503, 'twenty-nine thousand five hundred three'), (8204, 27966, 'twenty-seven thousand nine hundred sixty-six'), (8205, 95704, 'ninety-five thousand seven hundred four'), (8206, 95989, 'ninety-five thousand nine hundred eighty-nine'), (8207, 53489, 'fifty-three thousand four hundred eighty-nine'), (8208, 8600, 'eight thousand six hundred'), (8209, 46229, 'forty-six thousand two hundred twenty-nine'), (8210, 69907, 'sixty-nine thousand nine hundred seven'), (8211, 93903, 'ninety-three thousand nine hundred three'), (8212, 96791, 'ninety-six thousand seven hundred ninety-one'), (8213, 8081, 'eight thousand eighty-one'), (8214, 84716, 'eighty-four thousand seven hundred sixteen'), (8215, 61370, 'sixty-one thousand three hundred seventy'), (8216, 26047, 'twenty-six thousand forty-seven'), (8217, 80025, 'eighty thousand twenty-five'), (8218, 73171, 'seventy-three thousand one hundred seventy-one'), (8219, 39985, 'thirty-nine thousand nine hundred eighty-five'), (8220, 98244, 'ninety-eight thousand two hundred forty-four'), (8221, 33072, 'thirty-three thousand seventy-two'), (8222, 95789, 'ninety-five thousand seven hundred eighty-nine'), (8223, 10495, 'ten thousand four hundred ninety-five'), (8224, 51058, 'fifty-one thousand fifty-eight'), (8225, 77375, 'seventy-seven thousand three hundred seventy-five'), (8226, 46019, 'forty-six thousand nineteen'), (8227, 15747, 'fifteen thousand seven hundred forty-seven'), (8228, 81964, 'eighty-one thousand nine hundred sixty-four'), (8229, 24858, 'twenty-four thousand eight hundred fifty-eight'), (8230, 23459, 'twenty-three thousand four hundred fifty-nine'), (8231, 79754, 'seventy-nine thousand seven hundred fifty-four'), (8232, 54760, 'fifty-four thousand seven hundred sixty'), (8233, 95811, 'ninety-five thousand eight hundred eleven'), (8234, 5062, 'five thousand sixty-two'), (8235, 7109, 'seven thousand one hundred nine'), (8236, 51387, 'fifty-one thousand three hundred eighty-seven'), (8237, 71637, 'seventy-one thousand six hundred thirty-seven'), (8238, 73206, 'seventy-three thousand two hundred six'), (8239, 46295, 'forty-six thousand two hundred ninety-five'), (8240, 13009, 'thirteen thousand nine'), (8241, 60087, 'sixty thousand eighty-seven'), (8242, 25923, 'twenty-five thousand nine hundred twenty-three'), (8243, 9805, 'nine thousand eight hundred five'), (8244, 30861, 'thirty thousand eight hundred sixty-one'), (8245, 32953, 'thirty-two thousand nine hundred fifty-three'), (8246, 67589, 'sixty-seven thousand five hundred eighty-nine'), (8247, 27326, 'twenty-seven thousand three hundred twenty-six'), (8248, 69656, 'sixty-nine thousand six hundred fifty-six'), (8249, 16501, 'sixteen thousand five hundred one'), (8250, 37315, 'thirty-seven thousand three hundred fifteen'), (8251, 89883, 'eighty-nine thousand eight hundred eighty-three'), (8252, 36652, 'thirty-six thousand six hundred fifty-two'), (8253, 31530, 'thirty-one thousand five hundred thirty'), (8254, 86312, 'eighty-six thousand three hundred twelve'), (8255, 95217, 'ninety-five thousand two hundred seventeen'), (8256, 62570, 'sixty-two thousand five hundred seventy'), (8257, 62573, 'sixty-two thousand five hundred seventy-three'), (8258, 97, 'ninety-seven'), (8259, 8161, 'eight thousand one hundred sixty-one'), (8260, 78891, 'seventy-eight thousand eight hundred ninety-one'), (8261, 23796, 'twenty-three thousand seven hundred ninety-six'), (8262, 86320, 'eighty-six thousand three hundred twenty'), (8263, 15800, 'fifteen thousand eight hundred'), (8264, 39336, 'thirty-nine thousand three hundred thirty-six'), (8265, 8304, 'eight thousand three hundred four'), (8266, 85651, 'eighty-five thousand six hundred fifty-one'), (8267, 28403, 'twenty-eight thousand four hundred three'), (8268, 1622, 'one thousand six hundred twenty-two'), (8269, 38657, 'thirty-eight thousand six hundred fifty-seven'), (8270, 81801, 'eighty-one thousand eight hundred one'), (8271, 78027, 'seventy-eight thousand twenty-seven'), (8272, 55338, 'fifty-five thousand three hundred thirty-eight'), (8273, 66066, 'sixty-six thousand sixty-six'), (8274, 48209, 'forty-eight thousand two hundred nine'), (8275, 51056, 'fifty-one thousand fifty-six'), (8276, 17367, 'seventeen thousand three hundred sixty-seven'), (8277, 42270, 'forty-two thousand two hundred seventy'), (8278, 69366, 'sixty-nine thousand three hundred sixty-six'), (8279, 24319, 'twenty-four thousand three hundred nineteen'), (8280, 85464, 'eighty-five thousand four hundred sixty-four'), (8281, 25889, 'twenty-five thousand eight hundred eighty-nine'), (8282, 74094, 'seventy-four thousand ninety-four'), (8283, 47837, 'forty-seven thousand eight hundred thirty-seven'), (8284, 38957, 'thirty-eight thousand nine hundred fifty-seven'), (8285, 7458, 'seven thousand four hundred fifty-eight'), (8286, 95300, 'ninety-five thousand three hundred'), (8287, 29642, 'twenty-nine thousand six hundred forty-two'), (8288, 14033, 'fourteen thousand thirty-three'), (8289, 37044, 'thirty-seven thousand forty-four'), (8290, 26910, 'twenty-six thousand nine hundred ten'), (8291, 87193, 'eighty-seven thousand one hundred ninety-three'), (8292, 32544, 'thirty-two thousand five hundred forty-four'), (8293, 56606, 'fifty-six thousand six hundred six'), (8294, 5305, 'five thousand three hundred five'), (8295, 99438, 'ninety-nine thousand four hundred thirty-eight'), (8296, 90665, 'ninety thousand six hundred sixty-five'), (8297, 38974, 'thirty-eight thousand nine hundred seventy-four'), (8298, 68109, 'sixty-eight thousand one hundred nine'), (8299, 15877, 'fifteen thousand eight hundred seventy-seven'), (8300, 52230, 'fifty-two thousand two hundred thirty'), (8301, 47332, 'forty-seven thousand three hundred thirty-two'), (8302, 48457, 'forty-eight thousand four hundred fifty-seven'), (8303, 34780, 'thirty-four thousand seven hundred eighty'), (8304, 14553, 'fourteen thousand five hundred fifty-three'), (8305, 59943, 'fifty-nine thousand nine hundred forty-three'), (8306, 1094, 'one thousand ninety-four'), (8307, 92145, 'ninety-two thousand one hundred forty-five'), (8308, 74060, 'seventy-four thousand sixty'), (8309, 38193, 'thirty-eight thousand one hundred ninety-three'), (8310, 20192, 'twenty thousand one hundred ninety-two'), (8311, 45702, 'forty-five thousand seven hundred two'), (8312, 97277, 'ninety-seven thousand two hundred seventy-seven'), (8313, 43935, 'forty-three thousand nine hundred thirty-five'), (8314, 32421, 'thirty-two thousand four hundred twenty-one'), (8315, 59341, 'fifty-nine thousand three hundred forty-one'), (8316, 73382, 'seventy-three thousand three hundred eighty-two'), (8317, 10733, 'ten thousand seven hundred thirty-three'), (8318, 97129, 'ninety-seven thousand one hundred twenty-nine'), (8319, 54919, 'fifty-four thousand nine hundred nineteen'), (8320, 10259, 'ten thousand two hundred fifty-nine'), (8321, 39614, 'thirty-nine thousand six hundred fourteen'), (8322, 27633, 'twenty-seven thousand six hundred thirty-three'), (8323, 69950, 'sixty-nine thousand nine hundred fifty'), (8324, 8919, 'eight thousand nine hundred nineteen'), (8325, 28733, 'twenty-eight thousand seven hundred thirty-three'), (8326, 20390, 'twenty thousand three hundred ninety'), (8327, 77228, 'seventy-seven thousand two hundred twenty-eight'), (8328, 35351, 'thirty-five thousand three hundred fifty-one'), (8329, 13857, 'thirteen thousand eight hundred fifty-seven'), (8330, 42468, 'forty-two thousand four hundred sixty-eight'), (8331, 84999, 'eighty-four thousand nine hundred ninety-nine'), (8332, 72470, 'seventy-two thousand four hundred seventy'), (8333, 72452, 'seventy-two thousand four hundred fifty-two'), (8334, 94155, 'ninety-four thousand one hundred fifty-five'), (8335, 6664, 'six thousand six hundred sixty-four'), (8336, 18849, 'eighteen thousand eight hundred forty-nine'), (8337, 68314, 'sixty-eight thousand three hundred fourteen'), (8338, 94744, 'ninety-four thousand seven hundred forty-four'), (8339, 92363, 'ninety-two thousand three hundred sixty-three'), (8340, 93019, 'ninety-three thousand nineteen'), (8341, 78500, 'seventy-eight thousand five hundred'), (8342, 44088, 'forty-four thousand eighty-eight'), (8343, 75584, 'seventy-five thousand five hundred eighty-four'), (8344, 84360, 'eighty-four thousand three hundred sixty'), (8345, 70735, 'seventy thousand seven hundred thirty-five'), (8346, 12457, 'twelve thousand four hundred fifty-seven'), (8347, 92143, 'ninety-two thousand one hundred forty-three'), (8348, 1204, 'one thousand two hundred four'), (8349, 80695, 'eighty thousand six hundred ninety-five'), (8350, 62627, 'sixty-two thousand six hundred twenty-seven'), (8351, 21967, 'twenty-one thousand nine hundred sixty-seven'), (8352, 45548, 'forty-five thousand five hundred forty-eight'), (8353, 33384, 'thirty-three thousand three hundred eighty-four'), (8354, 23888, 'twenty-three thousand eight hundred eighty-eight'), (8355, 90151, 'ninety thousand one hundred fifty-one'), (8356, 97427, 'ninety-seven thousand four hundred twenty-seven'), (8357, 51779, 'fifty-one thousand seven hundred seventy-nine'), (8358, 86397, 'eighty-six thousand three hundred ninety-seven'), (8359, 59564, 'fifty-nine thousand five hundred sixty-four'), (8360, 38636, 'thirty-eight thousand six hundred thirty-six'), (8361, 64780, 'sixty-four thousand seven hundred eighty'), (8362, 37535, 'thirty-seven thousand five hundred thirty-five'), (8363, 78783, 'seventy-eight thousand seven hundred eighty-three'), (8364, 4100, 'four thousand one hundred'), (8365, 30252, 'thirty thousand two hundred fifty-two'), (8366, 84723, 'eighty-four thousand seven hundred twenty-three'), (8367, 20077, 'twenty thousand seventy-seven'), (8368, 34092, 'thirty-four thousand ninety-two'), (8369, 35114, 'thirty-five thousand one hundred fourteen'), (8370, 86839, 'eighty-six thousand eight hundred thirty-nine'), (8371, 95103, 'ninety-five thousand one hundred three'), (8372, 36892, 'thirty-six thousand eight hundred ninety-two'), (8373, 99387, 'ninety-nine thousand three hundred eighty-seven'), (8374, 88180, 'eighty-eight thousand one hundred eighty'), (8375, 75130, 'seventy-five thousand one hundred thirty'), (8376, 72000, 'seventy-two thousand'), (8377, 52097, 'fifty-two thousand ninety-seven'), (8378, 93419, 'ninety-three thousand four hundred nineteen'), (8379, 55083, 'fifty-five thousand eighty-three'), (8380, 55503, 'fifty-five thousand five hundred three'), (8381, 81232, 'eighty-one thousand two hundred thirty-two'), (8382, 95887, 'ninety-five thousand eight hundred eighty-seven'), (8383, 32005, 'thirty-two thousand five'), (8384, 5590, 'five thousand five hundred ninety'), (8385, 53004, 'fifty-three thousand four'), (8386, 60414, 'sixty thousand four hundred fourteen'), (8387, 39286, 'thirty-nine thousand two hundred eighty-six'), (8388, 61723, 'sixty-one thousand seven hundred twenty-three'), (8389, 28696, 'twenty-eight thousand six hundred ninety-six'), (8390, 30502, 'thirty thousand five hundred two'), (8391, 40868, 'forty thousand eight hundred sixty-eight'), (8392, 56747, 'fifty-six thousand seven hundred forty-seven'), (8393, 72695, 'seventy-two thousand six hundred ninety-five'), (8394, 90719, 'ninety thousand seven hundred nineteen'), (8395, 22263, 'twenty-two thousand two hundred sixty-three'), (8396, 10971, 'ten thousand nine hundred seventy-one'), (8397, 67956, 'sixty-seven thousand nine hundred fifty-six'), (8398, 5266, 'five thousand two hundred sixty-six'), (8399, 65629, 'sixty-five thousand six hundred twenty-nine'), (8400, 60456, 'sixty thousand four hundred fifty-six'), (8401, 52701, 'fifty-two thousand seven hundred one'), (8402, 11101, 'eleven thousand one hundred one'), (8403, 31802, 'thirty-one thousand eight hundred two'), (8404, 57050, 'fifty-seven thousand fifty'), (8405, 57178, 'fifty-seven thousand one hundred seventy-eight'), (8406, 43050, 'forty-three thousand fifty'), (8407, 54219, 'fifty-four thousand two hundred nineteen'), (8408, 30077, 'thirty thousand seventy-seven'), (8409, 26188, 'twenty-six thousand one hundred eighty-eight'), (8410, 86172, 'eighty-six thousand one hundred seventy-two'), (8411, 50520, 'fifty thousand five hundred twenty'), (8412, 71227, 'seventy-one thousand two hundred twenty-seven'), (8413, 9944, 'nine thousand nine hundred forty-four'), (8414, 24896, 'twenty-four thousand eight hundred ninety-six'), (8415, 98924, 'ninety-eight thousand nine hundred twenty-four'), (8416, 23715, 'twenty-three thousand seven hundred fifteen'), (8417, 85708, 'eighty-five thousand seven hundred eight'), (8418, 65832, 'sixty-five thousand eight hundred thirty-two'), (8419, 71091, 'seventy-one thousand ninety-one'), (8420, 45450, 'forty-five thousand four hundred fifty'), (8421, 72707, 'seventy-two thousand seven hundred seven'), (8422, 4941, 'four thousand nine hundred forty-one'), (8423, 59988, 'fifty-nine thousand nine hundred eighty-eight'), (8424, 74020, 'seventy-four thousand twenty'), (8425, 47480, 'forty-seven thousand four hundred eighty'), (8426, 29522, 'twenty-nine thousand five hundred twenty-two'), (8427, 28655, 'twenty-eight thousand six hundred fifty-five'), (8428, 50172, 'fifty thousand one hundred seventy-two'), (8429, 91225, 'ninety-one thousand two hundred twenty-five'), (8430, 51844, 'fifty-one thousand eight hundred forty-four'), (8431, 40306, 'forty thousand three hundred six'), (8432, 42886, 'forty-two thousand eight hundred eighty-six'), (8433, 96895, 'ninety-six thousand eight hundred ninety-five'), (8434, 75928, 'seventy-five thousand nine hundred twenty-eight'), (8435, 30316, 'thirty thousand three hundred sixteen'), (8436, 83563, 'eighty-three thousand five hundred sixty-three'), (8437, 82660, 'eighty-two thousand six hundred sixty'), (8438, 85621, 'eighty-five thousand six hundred twenty-one'), (8439, 42335, 'forty-two thousand three hundred thirty-five'), (8440, 79863, 'seventy-nine thousand eight hundred sixty-three'), (8441, 3905, 'three thousand nine hundred five'), (8442, 93351, 'ninety-three thousand three hundred fifty-one'), (8443, 14415, 'fourteen thousand four hundred fifteen'), (8444, 38678, 'thirty-eight thousand six hundred seventy-eight'), (8445, 51745, 'fifty-one thousand seven hundred forty-five'), (8446, 86197, 'eighty-six thousand one hundred ninety-seven'), (8447, 358, 'three hundred fifty-eight'), (8448, 87031, 'eighty-seven thousand thirty-one'), (8449, 83811, 'eighty-three thousand eight hundred eleven'), (8450, 11528, 'eleven thousand five hundred twenty-eight'), (8451, 54017, 'fifty-four thousand seventeen'), (8452, 17978, 'seventeen thousand nine hundred seventy-eight'), (8453, 22946, 'twenty-two thousand nine hundred forty-six'), (8454, 52647, 'fifty-two thousand six hundred forty-seven'), (8455, 62893, 'sixty-two thousand eight hundred ninety-three'), (8456, 45727, 'forty-five thousand seven hundred twenty-seven'), (8457, 27751, 'twenty-seven thousand seven hundred fifty-one'), (8458, 9583, 'nine thousand five hundred eighty-three'), (8459, 74362, 'seventy-four thousand three hundred sixty-two'), (8460, 18952, 'eighteen thousand nine hundred fifty-two'), (8461, 78973, 'seventy-eight thousand nine hundred seventy-three'), (8462, 84630, 'eighty-four thousand six hundred thirty'), (8463, 90779, 'ninety thousand seven hundred seventy-nine'), (8464, 40841, 'forty thousand eight hundred forty-one'), (8465, 17142, 'seventeen thousand one hundred forty-two'), (8466, 92416, 'ninety-two thousand four hundred sixteen'), (8467, 72365, 'seventy-two thousand three hundred sixty-five'), (8468, 33423, 'thirty-three thousand four hundred twenty-three'), (8469, 336, 'three hundred thirty-six'), (8470, 99184, 'ninety-nine thousand one hundred eighty-four'), (8471, 59078, 'fifty-nine thousand seventy-eight'), (8472, 49452, 'forty-nine thousand four hundred fifty-two'), (8473, 95896, 'ninety-five thousand eight hundred ninety-six'), (8474, 51552, 'fifty-one thousand five hundred fifty-two'), (8475, 69558, 'sixty-nine thousand five hundred fifty-eight'), (8476, 12738, 'twelve thousand seven hundred thirty-eight'), (8477, 19046, 'nineteen thousand forty-six'), (8478, 76213, 'seventy-six thousand two hundred thirteen'), (8479, 48274, 'forty-eight thousand two hundred seventy-four'), (8480, 15545, 'fifteen thousand five hundred forty-five'), (8481, 61304, 'sixty-one thousand three hundred four'), (8482, 94968, 'ninety-four thousand nine hundred sixty-eight'), (8483, 19481, 'nineteen thousand four hundred eighty-one'), (8484, 93482, 'ninety-three thousand four hundred eighty-two'), (8485, 6179, 'six thousand one hundred seventy-nine'), (8486, 43347, 'forty-three thousand three hundred forty-seven'), (8487, 77653, 'seventy-seven thousand six hundred fifty-three'), (8488, 20406, 'twenty thousand four hundred six'), (8489, 62035, 'sixty-two thousand thirty-five'), (8490, 90587, 'ninety thousand five hundred eighty-seven'), (8491, 2946, 'two thousand nine hundred forty-six'), (8492, 53306, 'fifty-three thousand three hundred six'), (8493, 10132, 'ten thousand one hundred thirty-two'), (8494, 77462, 'seventy-seven thousand four hundred sixty-two'), (8495, 58595, 'fifty-eight thousand five hundred ninety-five'), (8496, 79911, 'seventy-nine thousand nine hundred eleven'), (8497, 25078, 'twenty-five thousand seventy-eight'), (8498, 9200, 'nine thousand two hundred'), (8499, 60512, 'sixty thousand five hundred twelve'), (8500, 96701, 'ninety-six thousand seven hundred one'), (8501, 72934, 'seventy-two thousand nine hundred thirty-four'), (8502, 34124, 'thirty-four thousand one hundred twenty-four'), (8503, 95356, 'ninety-five thousand three hundred fifty-six'), (8504, 69879, 'sixty-nine thousand eight hundred seventy-nine'), (8505, 71591, 'seventy-one thousand five hundred ninety-one'), (8506, 44776, 'forty-four thousand seven hundred seventy-six'), (8507, 6508, 'six thousand five hundred eight'), (8508, 36488, 'thirty-six thousand four hundred eighty-eight'), (8509, 12847, 'twelve thousand eight hundred forty-seven'), (8510, 74853, 'seventy-four thousand eight hundred fifty-three'), (8511, 84745, 'eighty-four thousand seven hundred forty-five'), (8512, 80531, 'eighty thousand five hundred thirty-one'), (8513, 94078, 'ninety-four thousand seventy-eight'), (8514, 93822, 'ninety-three thousand eight hundred twenty-two'), (8515, 88476, 'eighty-eight thousand four hundred seventy-six'), (8516, 84245, 'eighty-four thousand two hundred forty-five'), (8517, 84395, 'eighty-four thousand three hundred ninety-five'), (8518, 2007, 'two thousand seven'), (8519, 70123, 'seventy thousand one hundred twenty-three'), (8520, 3056, 'three thousand fifty-six'), (8521, 10942, 'ten thousand nine hundred forty-two'), (8522, 10013, 'ten thousand thirteen'), (8523, 61214, 'sixty-one thousand two hundred fourteen'), (8524, 54374, 'fifty-four thousand three hundred seventy-four'), (8525, 43644, 'forty-three thousand six hundred forty-four'), (8526, 69136, 'sixty-nine thousand one hundred thirty-six'), (8527, 26273, 'twenty-six thousand two hundred seventy-three'), (8528, 40148, 'forty thousand one hundred forty-eight'), (8529, 67790, 'sixty-seven thousand seven hundred ninety'), (8530, 91834, 'ninety-one thousand eight hundred thirty-four'), (8531, 35669, 'thirty-five thousand six hundred sixty-nine'), (8532, 35187, 'thirty-five thousand one hundred eighty-seven'), (8533, 2047, 'two thousand forty-seven'), (8534, 10640, 'ten thousand six hundred forty'), (8535, 92444, 'ninety-two thousand four hundred forty-four'), (8536, 5582, 'five thousand five hundred eighty-two'), (8537, 25235, 'twenty-five thousand two hundred thirty-five'), (8538, 51952, 'fifty-one thousand nine hundred fifty-two'), (8539, 17616, 'seventeen thousand six hundred sixteen'), (8540, 71144, 'seventy-one thousand one hundred forty-four'), (8541, 16618, 'sixteen thousand six hundred eighteen'), (8542, 18205, 'eighteen thousand two hundred five'), (8543, 80186, 'eighty thousand one hundred eighty-six'), (8544, 61942, 'sixty-one thousand nine hundred forty-two'), (8545, 61044, 'sixty-one thousand forty-four'), (8546, 27629, 'twenty-seven thousand six hundred twenty-nine'), (8547, 21920, 'twenty-one thousand nine hundred twenty'), (8548, 18074, 'eighteen thousand seventy-four'), (8549, 77500, 'seventy-seven thousand five hundred'), (8550, 7506, 'seven thousand five hundred six'), (8551, 1172, 'one thousand one hundred seventy-two'), (8552, 82477, 'eighty-two thousand four hundred seventy-seven'), (8553, 53691, 'fifty-three thousand six hundred ninety-one'), (8554, 72027, 'seventy-two thousand twenty-seven'), (8555, 31763, 'thirty-one thousand seven hundred sixty-three'), (8556, 35087, 'thirty-five thousand eighty-seven'), (8557, 58296, 'fifty-eight thousand two hundred ninety-six'), (8558, 78481, 'seventy-eight thousand four hundred eighty-one'), (8559, 16043, 'sixteen thousand forty-three'), (8560, 76737, 'seventy-six thousand seven hundred thirty-seven'), (8561, 75570, 'seventy-five thousand five hundred seventy'), (8562, 95820, 'ninety-five thousand eight hundred twenty'), (8563, 45974, 'forty-five thousand nine hundred seventy-four'), (8564, 56270, 'fifty-six thousand two hundred seventy'), (8565, 97244, 'ninety-seven thousand two hundred forty-four'), (8566, 85545, 'eighty-five thousand five hundred forty-five'), (8567, 14500, 'fourteen thousand five hundred'), (8568, 53416, 'fifty-three thousand four hundred sixteen'), (8569, 81913, 'eighty-one thousand nine hundred thirteen'), (8570, 82487, 'eighty-two thousand four hundred eighty-seven'), (8571, 50845, 'fifty thousand eight hundred forty-five'), (8572, 57160, 'fifty-seven thousand one hundred sixty'), (8573, 29717, 'twenty-nine thousand seven hundred seventeen'), (8574, 76, 'seventy-six'), (8575, 55307, 'fifty-five thousand three hundred seven'), (8576, 48259, 'forty-eight thousand two hundred fifty-nine'), (8577, 17068, 'seventeen thousand sixty-eight'), (8578, 50442, 'fifty thousand four hundred forty-two'), (8579, 48056, 'forty-eight thousand fifty-six'), (8580, 99483, 'ninety-nine thousand four hundred eighty-three'), (8581, 233, 'two hundred thirty-three'), (8582, 24262, 'twenty-four thousand two hundred sixty-two'), (8583, 7703, 'seven thousand seven hundred three'), (8584, 48131, 'forty-eight thousand one hundred thirty-one'), (8585, 76997, 'seventy-six thousand nine hundred ninety-seven'), (8586, 25102, 'twenty-five thousand one hundred two'), (8587, 74011, 'seventy-four thousand eleven'), (8588, 29487, 'twenty-nine thousand four hundred eighty-seven'), (8589, 54798, 'fifty-four thousand seven hundred ninety-eight'), (8590, 42449, 'forty-two thousand four hundred forty-nine'), (8591, 49835, 'forty-nine thousand eight hundred thirty-five'), (8592, 48213, 'forty-eight thousand two hundred thirteen'), (8593, 70699, 'seventy thousand six hundred ninety-nine'), (8594, 77261, 'seventy-seven thousand two hundred sixty-one'), (8595, 28770, 'twenty-eight thousand seven hundred seventy'), (8596, 78418, 'seventy-eight thousand four hundred eighteen'), (8597, 1713, 'one thousand seven hundred thirteen'), (8598, 18612, 'eighteen thousand six hundred twelve'), (8599, 86638, 'eighty-six thousand six hundred thirty-eight'), (8600, 45093, 'forty-five thousand ninety-three'), (8601, 47829, 'forty-seven thousand eight hundred twenty-nine'), (8602, 95589, 'ninety-five thousand five hundred eighty-nine'), (8603, 13318, 'thirteen thousand three hundred eighteen'), (8604, 96785, 'ninety-six thousand seven hundred eighty-five'), (8605, 2152, 'two thousand one hundred fifty-two'), (8606, 45752, 'forty-five thousand seven hundred fifty-two'), (8607, 12506, 'twelve thousand five hundred six'), (8608, 47588, 'forty-seven thousand five hundred eighty-eight'), (8609, 62692, 'sixty-two thousand six hundred ninety-two'), (8610, 26224, 'twenty-six thousand two hundred twenty-four'), (8611, 44256, 'forty-four thousand two hundred fifty-six'), (8612, 57118, 'fifty-seven thousand one hundred eighteen'), (8613, 84336, 'eighty-four thousand three hundred thirty-six'), (8614, 96929, 'ninety-six thousand nine hundred twenty-nine'), (8615, 49830, 'forty-nine thousand eight hundred thirty'), (8616, 21745, 'twenty-one thousand seven hundred forty-five'), (8617, 79088, 'seventy-nine thousand eighty-eight'), (8618, 76255, 'seventy-six thousand two hundred fifty-five'), (8619, 61846, 'sixty-one thousand eight hundred forty-six'), (8620, 84031, 'eighty-four thousand thirty-one'), (8621, 45812, 'forty-five thousand eight hundred twelve'), (8622, 62552, 'sixty-two thousand five hundred fifty-two'), (8623, 2926, 'two thousand nine hundred twenty-six'), (8624, 50694, 'fifty thousand six hundred ninety-four'), (8625, 16077, 'sixteen thousand seventy-seven'), (8626, 46748, 'forty-six thousand seven hundred forty-eight'), (8627, 30989, 'thirty thousand nine hundred eighty-nine'), (8628, 63812, 'sixty-three thousand eight hundred twelve'), (8629, 89220, 'eighty-nine thousand two hundred twenty'), (8630, 48440, 'forty-eight thousand four hundred forty'), (8631, 37696, 'thirty-seven thousand six hundred ninety-six'), (8632, 55331, 'fifty-five thousand three hundred thirty-one'), (8633, 26063, 'twenty-six thousand sixty-three'), (8634, 26615, 'twenty-six thousand six hundred fifteen'), (8635, 7384, 'seven thousand three hundred eighty-four'), (8636, 77258, 'seventy-seven thousand two hundred fifty-eight'), (8637, 95407, 'ninety-five thousand four hundred seven'), (8638, 68228, 'sixty-eight thousand two hundred twenty-eight'), (8639, 34816, 'thirty-four thousand eight hundred sixteen'), (8640, 89065, 'eighty-nine thousand sixty-five'), (8641, 45247, 'forty-five thousand two hundred forty-seven'), (8642, 92187, 'ninety-two thousand one hundred eighty-seven'), (8643, 27567, 'twenty-seven thousand five hundred sixty-seven'), (8644, 16730, 'sixteen thousand seven hundred thirty'), (8645, 13930, 'thirteen thousand nine hundred thirty'), (8646, 23266, 'twenty-three thousand two hundred sixty-six'), (8647, 56009, 'fifty-six thousand nine'), (8648, 34112, 'thirty-four thousand one hundred twelve'), (8649, 83188, 'eighty-three thousand one hundred eighty-eight'), (8650, 72338, 'seventy-two thousand three hundred thirty-eight'), (8651, 17468, 'seventeen thousand four hundred sixty-eight'), (8652, 45092, 'forty-five thousand ninety-two'), (8653, 94057, 'ninety-four thousand fifty-seven'), (8654, 83202, 'eighty-three thousand two hundred two'), (8655, 92984, 'ninety-two thousand nine hundred eighty-four'), (8656, 77442, 'seventy-seven thousand four hundred forty-two'), (8657, 22530, 'twenty-two thousand five hundred thirty'), (8658, 90172, 'ninety thousand one hundred seventy-two'), (8659, 58338, 'fifty-eight thousand three hundred thirty-eight'), (8660, 80604, 'eighty thousand six hundred four'), (8661, 89556, 'eighty-nine thousand five hundred fifty-six'), (8662, 17999, 'seventeen thousand nine hundred ninety-nine'), (8663, 45559, 'forty-five thousand five hundred fifty-nine'), (8664, 11687, 'eleven thousand six hundred eighty-seven'), (8665, 36697, 'thirty-six thousand six hundred ninety-seven'), (8666, 33682, 'thirty-three thousand six hundred eighty-two'), (8667, 13180, 'thirteen thousand one hundred eighty'), (8668, 34928, 'thirty-four thousand nine hundred twenty-eight'), (8669, 17627, 'seventeen thousand six hundred twenty-seven'), (8670, 20085, 'twenty thousand eighty-five'), (8671, 86689, 'eighty-six thousand six hundred eighty-nine'), (8672, 17955, 'seventeen thousand nine hundred fifty-five'), (8673, 19842, 'nineteen thousand eight hundred forty-two'), (8674, 74782, 'seventy-four thousand seven hundred eighty-two'), (8675, 53152, 'fifty-three thousand one hundred fifty-two'), (8676, 81107, 'eighty-one thousand one hundred seven'), (8677, 35428, 'thirty-five thousand four hundred twenty-eight'), (8678, 72530, 'seventy-two thousand five hundred thirty'), (8679, 43305, 'forty-three thousand three hundred five'), (8680, 2974, 'two thousand nine hundred seventy-four'), (8681, 48008, 'forty-eight thousand eight'), (8682, 6103, 'six thousand one hundred three'), (8683, 59783, 'fifty-nine thousand seven hundred eighty-three'), (8684, 15411, 'fifteen thousand four hundred eleven'), (8685, 2820, 'two thousand eight hundred twenty'), (8686, 83120, 'eighty-three thousand one hundred twenty'), (8687, 6211, 'six thousand two hundred eleven'), (8688, 92685, 'ninety-two thousand six hundred eighty-five'), (8689, 17114, 'seventeen thousand one hundred fourteen'), (8690, 71302, 'seventy-one thousand three hundred two'), (8691, 6916, 'six thousand nine hundred sixteen'), (8692, 70097, 'seventy thousand ninety-seven'), (8693, 10476, 'ten thousand four hundred seventy-six'), (8694, 94509, 'ninety-four thousand five hundred nine'), (8695, 19795, 'nineteen thousand seven hundred ninety-five'), (8696, 56289, 'fifty-six thousand two hundred eighty-nine'), (8697, 28884, 'twenty-eight thousand eight hundred eighty-four'), (8698, 22976, 'twenty-two thousand nine hundred seventy-six'), (8699, 32841, 'thirty-two thousand eight hundred forty-one'), (8700, 21053, 'twenty-one thousand fifty-three'), (8701, 30033, 'thirty thousand thirty-three'), (8702, 54554, 'fifty-four thousand five hundred fifty-four'), (8703, 56229, 'fifty-six thousand two hundred twenty-nine'), (8704, 45239, 'forty-five thousand two hundred thirty-nine'), (8705, 54039, 'fifty-four thousand thirty-nine'), (8706, 45041, 'forty-five thousand forty-one'), (8707, 28822, 'twenty-eight thousand eight hundred twenty-two'), (8708, 94080, 'ninety-four thousand eighty'), (8709, 91265, 'ninety-one thousand two hundred sixty-five'), (8710, 94998, 'ninety-four thousand nine hundred ninety-eight'), (8711, 64507, 'sixty-four thousand five hundred seven'), (8712, 25414, 'twenty-five thousand four hundred fourteen'), (8713, 50479, 'fifty thousand four hundred seventy-nine'), (8714, 55078, 'fifty-five thousand seventy-eight'), (8715, 21183, 'twenty-one thousand one hundred eighty-three'), (8716, 83990, 'eighty-three thousand nine hundred ninety'), (8717, 68150, 'sixty-eight thousand one hundred fifty'), (8718, 87764, 'eighty-seven thousand seven hundred sixty-four'), (8719, 16736, 'sixteen thousand seven hundred thirty-six'), (8720, 95461, 'ninety-five thousand four hundred sixty-one'), (8721, 81193, 'eighty-one thousand one hundred ninety-three'), (8722, 17999, 'seventeen thousand nine hundred ninety-nine'), (8723, 44183, 'forty-four thousand one hundred eighty-three'), (8724, 35526, 'thirty-five thousand five hundred twenty-six'), (8725, 20312, 'twenty thousand three hundred twelve'), (8726, 56297, 'fifty-six thousand two hundred ninety-seven'), (8727, 35769, 'thirty-five thousand seven hundred sixty-nine'), (8728, 48461, 'forty-eight thousand four hundred sixty-one'), (8729, 23810, 'twenty-three thousand eight hundred ten'), (8730, 74838, 'seventy-four thousand eight hundred thirty-eight'), (8731, 77600, 'seventy-seven thousand six hundred'), (8732, 85446, 'eighty-five thousand four hundred forty-six'), (8733, 1154, 'one thousand one hundred fifty-four'), (8734, 18177, 'eighteen thousand one hundred seventy-seven'), (8735, 3336, 'three thousand three hundred thirty-six'), (8736, 56829, 'fifty-six thousand eight hundred twenty-nine'), (8737, 24010, 'twenty-four thousand ten'), (8738, 42910, 'forty-two thousand nine hundred ten'), (8739, 8378, 'eight thousand three hundred seventy-eight'), (8740, 59197, 'fifty-nine thousand one hundred ninety-seven'), (8741, 91327, 'ninety-one thousand three hundred twenty-seven'), (8742, 76659, 'seventy-six thousand six hundred fifty-nine'), (8743, 36896, 'thirty-six thousand eight hundred ninety-six'), (8744, 87615, 'eighty-seven thousand six hundred fifteen'), (8745, 11755, 'eleven thousand seven hundred fifty-five'), (8746, 79658, 'seventy-nine thousand six hundred fifty-eight'), (8747, 56728, 'fifty-six thousand seven hundred twenty-eight'), (8748, 32266, 'thirty-two thousand two hundred sixty-six'), (8749, 6088, 'six thousand eighty-eight'), (8750, 35046, 'thirty-five thousand forty-six'), (8751, 19133, 'nineteen thousand one hundred thirty-three'), (8752, 81608, 'eighty-one thousand six hundred eight'), (8753, 8352, 'eight thousand three hundred fifty-two'), (8754, 97987, 'ninety-seven thousand nine hundred eighty-seven'), (8755, 12939, 'twelve thousand nine hundred thirty-nine'), (8756, 36514, 'thirty-six thousand five hundred fourteen'), (8757, 41168, 'forty-one thousand one hundred sixty-eight'), (8758, 39249, 'thirty-nine thousand two hundred forty-nine'), (8759, 98313, 'ninety-eight thousand three hundred thirteen'), (8760, 46874, 'forty-six thousand eight hundred seventy-four'), (8761, 80452, 'eighty thousand four hundred fifty-two'), (8762, 3514, 'three thousand five hundred fourteen'), (8763, 31558, 'thirty-one thousand five hundred fifty-eight'), (8764, 20051, 'twenty thousand fifty-one'), (8765, 174, 'one hundred seventy-four'), (8766, 26461, 'twenty-six thousand four hundred sixty-one'), (8767, 68367, 'sixty-eight thousand three hundred sixty-seven'), (8768, 98050, 'ninety-eight thousand fifty'), (8769, 96396, 'ninety-six thousand three hundred ninety-six'), (8770, 87274, 'eighty-seven thousand two hundred seventy-four'), (8771, 85993, 'eighty-five thousand nine hundred ninety-three'), (8772, 29446, 'twenty-nine thousand four hundred forty-six'), (8773, 53555, 'fifty-three thousand five hundred fifty-five'), (8774, 43621, 'forty-three thousand six hundred twenty-one'), (8775, 16216, 'sixteen thousand two hundred sixteen'), (8776, 4240, 'four thousand two hundred forty'), (8777, 95429, 'ninety-five thousand four hundred twenty-nine'), (8778, 36099, 'thirty-six thousand ninety-nine'), (8779, 22866, 'twenty-two thousand eight hundred sixty-six'), (8780, 26070, 'twenty-six thousand seventy'), (8781, 15960, 'fifteen thousand nine hundred sixty'), (8782, 31071, 'thirty-one thousand seventy-one'), (8783, 69365, 'sixty-nine thousand three hundred sixty-five'), (8784, 6348, 'six thousand three hundred forty-eight'), (8785, 7231, 'seven thousand two hundred thirty-one'), (8786, 80596, 'eighty thousand five hundred ninety-six'), (8787, 62860, 'sixty-two thousand eight hundred sixty'), (8788, 21329, 'twenty-one thousand three hundred twenty-nine'), (8789, 80341, 'eighty thousand three hundred forty-one'), (8790, 39607, 'thirty-nine thousand six hundred seven'), (8791, 33663, 'thirty-three thousand six hundred sixty-three'), (8792, 68265, 'sixty-eight thousand two hundred sixty-five'), (8793, 48596, 'forty-eight thousand five hundred ninety-six'), (8794, 93676, 'ninety-three thousand six hundred seventy-six'), (8795, 64289, 'sixty-four thousand two hundred eighty-nine'), (8796, 54742, 'fifty-four thousand seven hundred forty-two'), (8797, 25770, 'twenty-five thousand seven hundred seventy'), (8798, 77514, 'seventy-seven thousand five hundred fourteen'), (8799, 24809, 'twenty-four thousand eight hundred nine'), (8800, 47728, 'forty-seven thousand seven hundred twenty-eight'), (8801, 69116, 'sixty-nine thousand one hundred sixteen'), (8802, 2508, 'two thousand five hundred eight'), (8803, 94461, 'ninety-four thousand four hundred sixty-one'), (8804, 43526, 'forty-three thousand five hundred twenty-six'), (8805, 85148, 'eighty-five thousand one hundred forty-eight'), (8806, 68809, 'sixty-eight thousand eight hundred nine'), (8807, 21229, 'twenty-one thousand two hundred twenty-nine'), (8808, 20926, 'twenty thousand nine hundred twenty-six'), (8809, 95358, 'ninety-five thousand three hundred fifty-eight'), (8810, 24603, 'twenty-four thousand six hundred three'), (8811, 20601, 'twenty thousand six hundred one'), (8812, 21149, 'twenty-one thousand one hundred forty-nine'), (8813, 16401, 'sixteen thousand four hundred one'), (8814, 36559, 'thirty-six thousand five hundred fifty-nine'), (8815, 61493, 'sixty-one thousand four hundred ninety-three'), (8816, 92910, 'ninety-two thousand nine hundred ten'), (8817, 47394, 'forty-seven thousand three hundred ninety-four'), (8818, 7008, 'seven thousand eight'), (8819, 6667, 'six thousand six hundred sixty-seven'), (8820, 51875, 'fifty-one thousand eight hundred seventy-five'), (8821, 98458, 'ninety-eight thousand four hundred fifty-eight'), (8822, 1291, 'one thousand two hundred ninety-one'), (8823, 92609, 'ninety-two thousand six hundred nine'), (8824, 49897, 'forty-nine thousand eight hundred ninety-seven'), (8825, 19672, 'nineteen thousand six hundred seventy-two'), (8826, 33905, 'thirty-three thousand nine hundred five'), (8827, 25063, 'twenty-five thousand sixty-three'), (8828, 26354, 'twenty-six thousand three hundred fifty-four'), (8829, 62055, 'sixty-two thousand fifty-five'), (8830, 48191, 'forty-eight thousand one hundred ninety-one'), (8831, 2531, 'two thousand five hundred thirty-one'), (8832, 97209, 'ninety-seven thousand two hundred nine'), (8833, 83353, 'eighty-three thousand three hundred fifty-three'), (8834, 21619, 'twenty-one thousand six hundred nineteen'), (8835, 81317, 'eighty-one thousand three hundred seventeen'), (8836, 45325, 'forty-five thousand three hundred twenty-five'), (8837, 83136, 'eighty-three thousand one hundred thirty-six'), (8838, 89377, 'eighty-nine thousand three hundred seventy-seven'), (8839, 47721, 'forty-seven thousand seven hundred twenty-one'), (8840, 6441, 'six thousand four hundred forty-one'), (8841, 92087, 'ninety-two thousand eighty-seven'), (8842, 10737, 'ten thousand seven hundred thirty-seven'), (8843, 97666, 'ninety-seven thousand six hundred sixty-six'), (8844, 75539, 'seventy-five thousand five hundred thirty-nine'), (8845, 65961, 'sixty-five thousand nine hundred sixty-one'), (8846, 7786, 'seven thousand seven hundred eighty-six'), (8847, 66364, 'sixty-six thousand three hundred sixty-four'), (8848, 96654, 'ninety-six thousand six hundred fifty-four'), (8849, 11049, 'eleven thousand forty-nine'), (8850, 11569, 'eleven thousand five hundred sixty-nine'), (8851, 55142, 'fifty-five thousand one hundred forty-two'), (8852, 85985, 'eighty-five thousand nine hundred eighty-five'), (8853, 82146, 'eighty-two thousand one hundred forty-six'), (8854, 13656, 'thirteen thousand six hundred fifty-six'), (8855, 10304, 'ten thousand three hundred four'), (8856, 49971, 'forty-nine thousand nine hundred seventy-one'), (8857, 47467, 'forty-seven thousand four hundred sixty-seven'), (8858, 44903, 'forty-four thousand nine hundred three'), (8859, 70403, 'seventy thousand four hundred three'), (8860, 96926, 'ninety-six thousand nine hundred twenty-six'), (8861, 44974, 'forty-four thousand nine hundred seventy-four'), (8862, 51428, 'fifty-one thousand four hundred twenty-eight'), (8863, 77303, 'seventy-seven thousand three hundred three'), (8864, 64539, 'sixty-four thousand five hundred thirty-nine'), (8865, 8197, 'eight thousand one hundred ninety-seven'), (8866, 46172, 'forty-six thousand one hundred seventy-two'), (8867, 55154, 'fifty-five thousand one hundred fifty-four'), (8868, 96213, 'ninety-six thousand two hundred thirteen'), (8869, 78942, 'seventy-eight thousand nine hundred forty-two'), (8870, 50775, 'fifty thousand seven hundred seventy-five'), (8871, 59875, 'fifty-nine thousand eight hundred seventy-five'), (8872, 25186, 'twenty-five thousand one hundred eighty-six'), (8873, 62320, 'sixty-two thousand three hundred twenty'), (8874, 51320, 'fifty-one thousand three hundred twenty'), (8875, 65552, 'sixty-five thousand five hundred fifty-two'), (8876, 80498, 'eighty thousand four hundred ninety-eight'), (8877, 6865, 'six thousand eight hundred sixty-five'), (8878, 39692, 'thirty-nine thousand six hundred ninety-two'), (8879, 65024, 'sixty-five thousand twenty-four'), (8880, 39564, 'thirty-nine thousand five hundred sixty-four'), (8881, 88474, 'eighty-eight thousand four hundred seventy-four'), (8882, 79744, 'seventy-nine thousand seven hundred forty-four'), (8883, 76880, 'seventy-six thousand eight hundred eighty'), (8884, 36549, 'thirty-six thousand five hundred forty-nine'), (8885, 13497, 'thirteen thousand four hundred ninety-seven'), (8886, 68912, 'sixty-eight thousand nine hundred twelve'), (8887, 58536, 'fifty-eight thousand five hundred thirty-six'), (8888, 49032, 'forty-nine thousand thirty-two'), (8889, 91048, 'ninety-one thousand forty-eight'), (8890, 27109, 'twenty-seven thousand one hundred nine'), (8891, 62303, 'sixty-two thousand three hundred three'), (8892, 46713, 'forty-six thousand seven hundred thirteen'), (8893, 29509, 'twenty-nine thousand five hundred nine'), (8894, 97802, 'ninety-seven thousand eight hundred two'), (8895, 44556, 'forty-four thousand five hundred fifty-six'), (8896, 5497, 'five thousand four hundred ninety-seven'), (8897, 25520, 'twenty-five thousand five hundred twenty'), (8898, 59553, 'fifty-nine thousand five hundred fifty-three'), (8899, 47547, 'forty-seven thousand five hundred forty-seven'), (8900, 98328, 'ninety-eight thousand three hundred twenty-eight'), (8901, 43350, 'forty-three thousand three hundred fifty'), (8902, 70041, 'seventy thousand forty-one'), (8903, 46790, 'forty-six thousand seven hundred ninety'), (8904, 63700, 'sixty-three thousand seven hundred'), (8905, 1874, 'one thousand eight hundred seventy-four'), (8906, 76509, 'seventy-six thousand five hundred nine'), (8907, 11677, 'eleven thousand six hundred seventy-seven'), (8908, 9172, 'nine thousand one hundred seventy-two'), (8909, 97636, 'ninety-seven thousand six hundred thirty-six'), (8910, 43749, 'forty-three thousand seven hundred forty-nine'), (8911, 40142, 'forty thousand one hundred forty-two'), (8912, 84893, 'eighty-four thousand eight hundred ninety-three'), (8913, 69096, 'sixty-nine thousand ninety-six'), (8914, 21742, 'twenty-one thousand seven hundred forty-two'), (8915, 2143, 'two thousand one hundred forty-three'), (8916, 5636, 'five thousand six hundred thirty-six'), (8917, 35218, 'thirty-five thousand two hundred eighteen'), (8918, 54891, 'fifty-four thousand eight hundred ninety-one'), (8919, 84106, 'eighty-four thousand one hundred six'), (8920, 10062, 'ten thousand sixty-two'), (8921, 53287, 'fifty-three thousand two hundred eighty-seven'), (8922, 29599, 'twenty-nine thousand five hundred ninety-nine'), (8923, 28047, 'twenty-eight thousand forty-seven'), (8924, 72747, 'seventy-two thousand seven hundred forty-seven'), (8925, 94010, 'ninety-four thousand ten'), (8926, 71607, 'seventy-one thousand six hundred seven'), (8927, 58411, 'fifty-eight thousand four hundred eleven'), (8928, 29394, 'twenty-nine thousand three hundred ninety-four'), (8929, 2245, 'two thousand two hundred forty-five'), (8930, 94946, 'ninety-four thousand nine hundred forty-six'), (8931, 72192, 'seventy-two thousand one hundred ninety-two'), (8932, 74118, 'seventy-four thousand one hundred eighteen'), (8933, 18975, 'eighteen thousand nine hundred seventy-five'), (8934, 19624, 'nineteen thousand six hundred twenty-four'), (8935, 27786, 'twenty-seven thousand seven hundred eighty-six'), (8936, 66755, 'sixty-six thousand seven hundred fifty-five'), (8937, 75729, 'seventy-five thousand seven hundred twenty-nine'), (8938, 16637, 'sixteen thousand six hundred thirty-seven'), (8939, 8952, 'eight thousand nine hundred fifty-two'), (8940, 50266, 'fifty thousand two hundred sixty-six'), (8941, 39453, 'thirty-nine thousand four hundred fifty-three'), (8942, 98307, 'ninety-eight thousand three hundred seven'), (8943, 52979, 'fifty-two thousand nine hundred seventy-nine'), (8944, 1207, 'one thousand two hundred seven'), (8945, 41546, 'forty-one thousand five hundred forty-six'), (8946, 45453, 'forty-five thousand four hundred fifty-three'), (8947, 59251, 'fifty-nine thousand two hundred fifty-one'), (8948, 6339, 'six thousand three hundred thirty-nine'), (8949, 13732, 'thirteen thousand seven hundred thirty-two'), (8950, 71798, 'seventy-one thousand seven hundred ninety-eight'), (8951, 14864, 'fourteen thousand eight hundred sixty-four'), (8952, 56612, 'fifty-six thousand six hundred twelve'), (8953, 78046, 'seventy-eight thousand forty-six'), (8954, 18800, 'eighteen thousand eight hundred'), (8955, 22659, 'twenty-two thousand six hundred fifty-nine'), (8956, 33144, 'thirty-three thousand one hundred forty-four'), (8957, 64103, 'sixty-four thousand one hundred three'), (8958, 96543, 'ninety-six thousand five hundred forty-three'), (8959, 79466, 'seventy-nine thousand four hundred sixty-six'), (8960, 64542, 'sixty-four thousand five hundred forty-two'), (8961, 67406, 'sixty-seven thousand four hundred six'), (8962, 92088, 'ninety-two thousand eighty-eight'), (8963, 87731, 'eighty-seven thousand seven hundred thirty-one'), (8964, 10933, 'ten thousand nine hundred thirty-three'), (8965, 79658, 'seventy-nine thousand six hundred fifty-eight'), (8966, 39486, 'thirty-nine thousand four hundred eighty-six'), (8967, 27642, 'twenty-seven thousand six hundred forty-two'), (8968, 18531, 'eighteen thousand five hundred thirty-one'), (8969, 65412, 'sixty-five thousand four hundred twelve'), (8970, 43478, 'forty-three thousand four hundred seventy-eight'), (8971, 50522, 'fifty thousand five hundred twenty-two'), (8972, 74117, 'seventy-four thousand one hundred seventeen'), (8973, 90745, 'ninety thousand seven hundred forty-five'), (8974, 23237, 'twenty-three thousand two hundred thirty-seven'), (8975, 57047, 'fifty-seven thousand forty-seven'), (8976, 1198, 'one thousand one hundred ninety-eight'), (8977, 13445, 'thirteen thousand four hundred forty-five'), (8978, 21928, 'twenty-one thousand nine hundred twenty-eight'), (8979, 65524, 'sixty-five thousand five hundred twenty-four'), (8980, 76433, 'seventy-six thousand four hundred thirty-three'), (8981, 27187, 'twenty-seven thousand one hundred eighty-seven'), (8982, 1220, 'one thousand two hundred twenty'), (8983, 65201, 'sixty-five thousand two hundred one'), (8984, 33508, 'thirty-three thousand five hundred eight'), (8985, 79567, 'seventy-nine thousand five hundred sixty-seven'), (8986, 57891, 'fifty-seven thousand eight hundred ninety-one'), (8987, 88043, 'eighty-eight thousand forty-three'), (8988, 67273, 'sixty-seven thousand two hundred seventy-three'), (8989, 59250, 'fifty-nine thousand two hundred fifty'), (8990, 16652, 'sixteen thousand six hundred fifty-two'), (8991, 8824, 'eight thousand eight hundred twenty-four'), (8992, 71409, 'seventy-one thousand four hundred nine'), (8993, 26349, 'twenty-six thousand three hundred forty-nine'), (8994, 70580, 'seventy thousand five hundred eighty'), (8995, 42193, 'forty-two thousand one hundred ninety-three'), (8996, 18168, 'eighteen thousand one hundred sixty-eight'), (8997, 2223, 'two thousand two hundred twenty-three'), (8998, 42209, 'forty-two thousand two hundred nine'), (8999, 41704, 'forty-one thousand seven hundred four'), (9000, 47265, 'forty-seven thousand two hundred sixty-five'), (9001, 72545, 'seventy-two thousand five hundred forty-five'), (9002, 44849, 'forty-four thousand eight hundred forty-nine'), (9003, 30204, 'thirty thousand two hundred four'), (9004, 8644, 'eight thousand six hundred forty-four'), (9005, 98294, 'ninety-eight thousand two hundred ninety-four'), (9006, 72624, 'seventy-two thousand six hundred twenty-four'), (9007, 24537, 'twenty-four thousand five hundred thirty-seven'), (9008, 82120, 'eighty-two thousand one hundred twenty'), (9009, 77601, 'seventy-seven thousand six hundred one'), (9010, 75426, 'seventy-five thousand four hundred twenty-six'), (9011, 13571, 'thirteen thousand five hundred seventy-one'), (9012, 15433, 'fifteen thousand four hundred thirty-three'), (9013, 87400, 'eighty-seven thousand four hundred'), (9014, 70696, 'seventy thousand six hundred ninety-six'), (9015, 64448, 'sixty-four thousand four hundred forty-eight'), (9016, 5710, 'five thousand seven hundred ten'), (9017, 77765, 'seventy-seven thousand seven hundred sixty-five'), (9018, 14911, 'fourteen thousand nine hundred eleven'), (9019, 95192, 'ninety-five thousand one hundred ninety-two'), (9020, 12800, 'twelve thousand eight hundred'), (9021, 11553, 'eleven thousand five hundred fifty-three'), (9022, 20986, 'twenty thousand nine hundred eighty-six'), (9023, 45636, 'forty-five thousand six hundred thirty-six'), (9024, 15259, 'fifteen thousand two hundred fifty-nine'), (9025, 85665, 'eighty-five thousand six hundred sixty-five'), (9026, 94631, 'ninety-four thousand six hundred thirty-one'), (9027, 18275, 'eighteen thousand two hundred seventy-five'), (9028, 17479, 'seventeen thousand four hundred seventy-nine'), (9029, 29074, 'twenty-nine thousand seventy-four'), (9030, 36288, 'thirty-six thousand two hundred eighty-eight'), (9031, 38724, 'thirty-eight thousand seven hundred twenty-four'), (9032, 36917, 'thirty-six thousand nine hundred seventeen'), (9033, 50959, 'fifty thousand nine hundred fifty-nine'), (9034, 40294, 'forty thousand two hundred ninety-four'), (9035, 13877, 'thirteen thousand eight hundred seventy-seven'), (9036, 21680, 'twenty-one thousand six hundred eighty'), (9037, 47588, 'forty-seven thousand five hundred eighty-eight'), (9038, 68859, 'sixty-eight thousand eight hundred fifty-nine'), (9039, 1388, 'one thousand three hundred eighty-eight'), (9040, 39594, 'thirty-nine thousand five hundred ninety-four'), (9041, 34961, 'thirty-four thousand nine hundred sixty-one'), (9042, 58399, 'fifty-eight thousand three hundred ninety-nine'), (9043, 60409, 'sixty thousand four hundred nine'), (9044, 92031, 'ninety-two thousand thirty-one'), (9045, 81569, 'eighty-one thousand five hundred sixty-nine'), (9046, 69272, 'sixty-nine thousand two hundred seventy-two'), (9047, 63080, 'sixty-three thousand eighty'), (9048, 72366, 'seventy-two thousand three hundred sixty-six'), (9049, 78403, 'seventy-eight thousand four hundred three'), (9050, 74272, 'seventy-four thousand two hundred seventy-two'), (9051, 92504, 'ninety-two thousand five hundred four'), (9052, 52040, 'fifty-two thousand forty'), (9053, 16682, 'sixteen thousand six hundred eighty-two'), (9054, 84420, 'eighty-four thousand four hundred twenty'), (9055, 22051, 'twenty-two thousand fifty-one'), (9056, 25728, 'twenty-five thousand seven hundred twenty-eight'), (9057, 9062, 'nine thousand sixty-two'), (9058, 83578, 'eighty-three thousand five hundred seventy-eight'), (9059, 16698, 'sixteen thousand six hundred ninety-eight'), (9060, 90904, 'ninety thousand nine hundred four'), (9061, 92143, 'ninety-two thousand one hundred forty-three'), (9062, 41489, 'forty-one thousand four hundred eighty-nine'), (9063, 41463, 'forty-one thousand four hundred sixty-three'), (9064, 56285, 'fifty-six thousand two hundred eighty-five'), (9065, 9501, 'nine thousand five hundred one'), (9066, 8798, 'eight thousand seven hundred ninety-eight'), (9067, 52952, 'fifty-two thousand nine hundred fifty-two'), (9068, 19648, 'nineteen thousand six hundred forty-eight'), (9069, 46538, 'forty-six thousand five hundred thirty-eight'), (9070, 84859, 'eighty-four thousand eight hundred fifty-nine'), (9071, 89801, 'eighty-nine thousand eight hundred one'), (9072, 83337, 'eighty-three thousand three hundred thirty-seven'), (9073, 18314, 'eighteen thousand three hundred fourteen'), (9074, 41944, 'forty-one thousand nine hundred forty-four'), (9075, 28894, 'twenty-eight thousand eight hundred ninety-four'), (9076, 11182, 'eleven thousand one hundred eighty-two'), (9077, 4470, 'four thousand four hundred seventy'), (9078, 6545, 'six thousand five hundred forty-five'), (9079, 18450, 'eighteen thousand four hundred fifty'), (9080, 59891, 'fifty-nine thousand eight hundred ninety-one'), (9081, 14079, 'fourteen thousand seventy-nine'), (9082, 493, 'four hundred ninety-three'), (9083, 51059, 'fifty-one thousand fifty-nine'), (9084, 69569, 'sixty-nine thousand five hundred sixty-nine'), (9085, 48058, 'forty-eight thousand fifty-eight'), (9086, 93376, 'ninety-three thousand three hundred seventy-six'), (9087, 3512, 'three thousand five hundred twelve'), (9088, 34603, 'thirty-four thousand six hundred three'), (9089, 37577, 'thirty-seven thousand five hundred seventy-seven'), (9090, 96520, 'ninety-six thousand five hundred twenty'), (9091, 94347, 'ninety-four thousand three hundred forty-seven'), (9092, 36664, 'thirty-six thousand six hundred sixty-four'), (9093, 66240, 'sixty-six thousand two hundred forty'), (9094, 98725, 'ninety-eight thousand seven hundred twenty-five'), (9095, 53715, 'fifty-three thousand seven hundred fifteen'), (9096, 3137, 'three thousand one hundred thirty-seven'), (9097, 44103, 'forty-four thousand one hundred three'), (9098, 87368, 'eighty-seven thousand three hundred sixty-eight'), (9099, 57042, 'fifty-seven thousand forty-two'), (9100, 29761, 'twenty-nine thousand seven hundred sixty-one'), (9101, 87985, 'eighty-seven thousand nine hundred eighty-five'), (9102, 63277, 'sixty-three thousand two hundred seventy-seven'), (9103, 84961, 'eighty-four thousand nine hundred sixty-one'), (9104, 75307, 'seventy-five thousand three hundred seven'), (9105, 42729, 'forty-two thousand seven hundred twenty-nine'), (9106, 85873, 'eighty-five thousand eight hundred seventy-three'), (9107, 3983, 'three thousand nine hundred eighty-three'), (9108, 36607, 'thirty-six thousand six hundred seven'), (9109, 55814, 'fifty-five thousand eight hundred fourteen'), (9110, 18117, 'eighteen thousand one hundred seventeen'), (9111, 12887, 'twelve thousand eight hundred eighty-seven'), (9112, 30494, 'thirty thousand four hundred ninety-four'), (9113, 52338, 'fifty-two thousand three hundred thirty-eight'), (9114, 80206, 'eighty thousand two hundred six'), (9115, 24533, 'twenty-four thousand five hundred thirty-three'), (9116, 44832, 'forty-four thousand eight hundred thirty-two'), (9117, 47489, 'forty-seven thousand four hundred eighty-nine'), (9118, 8504, 'eight thousand five hundred four'), (9119, 47621, 'forty-seven thousand six hundred twenty-one'), (9120, 10406, 'ten thousand four hundred six'), (9121, 38895, 'thirty-eight thousand eight hundred ninety-five'), (9122, 15264, 'fifteen thousand two hundred sixty-four'), (9123, 35635, 'thirty-five thousand six hundred thirty-five'), (9124, 18576, 'eighteen thousand five hundred seventy-six'), (9125, 81105, 'eighty-one thousand one hundred five'), (9126, 66310, 'sixty-six thousand three hundred ten'), (9127, 55519, 'fifty-five thousand five hundred nineteen'), (9128, 75799, 'seventy-five thousand seven hundred ninety-nine'), (9129, 97585, 'ninety-seven thousand five hundred eighty-five'), (9130, 4743, 'four thousand seven hundred forty-three'), (9131, 19892, 'nineteen thousand eight hundred ninety-two'), (9132, 36848, 'thirty-six thousand eight hundred forty-eight'), (9133, 58513, 'fifty-eight thousand five hundred thirteen'), (9134, 34212, 'thirty-four thousand two hundred twelve'), (9135, 66454, 'sixty-six thousand four hundred fifty-four'), (9136, 32685, 'thirty-two thousand six hundred eighty-five'), (9137, 29310, 'twenty-nine thousand three hundred ten'), (9138, 87268, 'eighty-seven thousand two hundred sixty-eight'), (9139, 45023, 'forty-five thousand twenty-three'), (9140, 71538, 'seventy-one thousand five hundred thirty-eight'), (9141, 96983, 'ninety-six thousand nine hundred eighty-three'), (9142, 70920, 'seventy thousand nine hundred twenty'), (9143, 15194, 'fifteen thousand one hundred ninety-four'), (9144, 31297, 'thirty-one thousand two hundred ninety-seven'), (9145, 96061, 'ninety-six thousand sixty-one'), (9146, 45673, 'forty-five thousand six hundred seventy-three'), (9147, 13200, 'thirteen thousand two hundred'), (9148, 37673, 'thirty-seven thousand six hundred seventy-three'), (9149, 21236, 'twenty-one thousand two hundred thirty-six'), (9150, 80021, 'eighty thousand twenty-one'), (9151, 70383, 'seventy thousand three hundred eighty-three'), (9152, 24400, 'twenty-four thousand four hundred'), (9153, 4740, 'four thousand seven hundred forty'), (9154, 68401, 'sixty-eight thousand four hundred one'), (9155, 63470, 'sixty-three thousand four hundred seventy'), (9156, 13977, 'thirteen thousand nine hundred seventy-seven'), (9157, 14138, 'fourteen thousand one hundred thirty-eight'), (9158, 30075, 'thirty thousand seventy-five'), (9159, 7684, 'seven thousand six hundred eighty-four'), (9160, 37382, 'thirty-seven thousand three hundred eighty-two'), (9161, 51074, 'fifty-one thousand seventy-four'), (9162, 32413, 'thirty-two thousand four hundred thirteen'), (9163, 95519, 'ninety-five thousand five hundred nineteen'), (9164, 81342, 'eighty-one thousand three hundred forty-two'), (9165, 83870, 'eighty-three thousand eight hundred seventy'), (9166, 97186, 'ninety-seven thousand one hundred eighty-six'), (9167, 28563, 'twenty-eight thousand five hundred sixty-three'), (9168, 55274, 'fifty-five thousand two hundred seventy-four'), (9169, 66171, 'sixty-six thousand one hundred seventy-one'), (9170, 51477, 'fifty-one thousand four hundred seventy-seven'), (9171, 85345, 'eighty-five thousand three hundred forty-five'), (9172, 17918, 'seventeen thousand nine hundred eighteen'), (9173, 3711, 'three thousand seven hundred eleven'), (9174, 65063, 'sixty-five thousand sixty-three'), (9175, 77979, 'seventy-seven thousand nine hundred seventy-nine'), (9176, 74922, 'seventy-four thousand nine hundred twenty-two'), (9177, 35549, 'thirty-five thousand five hundred forty-nine'), (9178, 17908, 'seventeen thousand nine hundred eight'), (9179, 40312, 'forty thousand three hundred twelve'), (9180, 57888, 'fifty-seven thousand eight hundred eighty-eight'), (9181, 94800, 'ninety-four thousand eight hundred'), (9182, 88574, 'eighty-eight thousand five hundred seventy-four'), (9183, 49016, 'forty-nine thousand sixteen'), (9184, 23742, 'twenty-three thousand seven hundred forty-two'), (9185, 86656, 'eighty-six thousand six hundred fifty-six'), (9186, 50749, 'fifty thousand seven hundred forty-nine'), (9187, 12446, 'twelve thousand four hundred forty-six'), (9188, 98024, 'ninety-eight thousand twenty-four'), (9189, 57253, 'fifty-seven thousand two hundred fifty-three'), (9190, 69315, 'sixty-nine thousand three hundred fifteen'), (9191, 92635, 'ninety-two thousand six hundred thirty-five'), (9192, 19044, 'nineteen thousand forty-four'), (9193, 50229, 'fifty thousand two hundred twenty-nine'), (9194, 7691, 'seven thousand six hundred ninety-one'), (9195, 31349, 'thirty-one thousand three hundred forty-nine'), (9196, 21118, 'twenty-one thousand one hundred eighteen'), (9197, 97045, 'ninety-seven thousand forty-five'), (9198, 5454, 'five thousand four hundred fifty-four'), (9199, 68766, 'sixty-eight thousand seven hundred sixty-six'), (9200, 50406, 'fifty thousand four hundred six'), (9201, 92867, 'ninety-two thousand eight hundred sixty-seven'), (9202, 18343, 'eighteen thousand three hundred forty-three'), (9203, 39347, 'thirty-nine thousand three hundred forty-seven'), (9204, 39519, 'thirty-nine thousand five hundred nineteen'), (9205, 91687, 'ninety-one thousand six hundred eighty-seven'), (9206, 30626, 'thirty thousand six hundred twenty-six'), (9207, 77896, 'seventy-seven thousand eight hundred ninety-six'), (9208, 5713, 'five thousand seven hundred thirteen'), (9209, 70211, 'seventy thousand two hundred eleven'), (9210, 52132, 'fifty-two thousand one hundred thirty-two'), (9211, 71921, 'seventy-one thousand nine hundred twenty-one'), (9212, 85753, 'eighty-five thousand seven hundred fifty-three'), (9213, 22211, 'twenty-two thousand two hundred eleven'), (9214, 14714, 'fourteen thousand seven hundred fourteen'), (9215, 47957, 'forty-seven thousand nine hundred fifty-seven'), (9216, 67867, 'sixty-seven thousand eight hundred sixty-seven'), (9217, 4372, 'four thousand three hundred seventy-two'), (9218, 3134, 'three thousand one hundred thirty-four'), (9219, 38687, 'thirty-eight thousand six hundred eighty-seven'), (9220, 4799, 'four thousand seven hundred ninety-nine'), (9221, 38295, 'thirty-eight thousand two hundred ninety-five'), (9222, 70443, 'seventy thousand four hundred forty-three'), (9223, 33871, 'thirty-three thousand eight hundred seventy-one'), (9224, 45367, 'forty-five thousand three hundred sixty-seven'), (9225, 81287, 'eighty-one thousand two hundred eighty-seven'), (9226, 73414, 'seventy-three thousand four hundred fourteen'), (9227, 73746, 'seventy-three thousand seven hundred forty-six'), (9228, 7579, 'seven thousand five hundred seventy-nine'), (9229, 42253, 'forty-two thousand two hundred fifty-three'), (9230, 19213, 'nineteen thousand two hundred thirteen'), (9231, 79120, 'seventy-nine thousand one hundred twenty'), (9232, 17001, 'seventeen thousand one'), (9233, 82992, 'eighty-two thousand nine hundred ninety-two'), (9234, 39801, 'thirty-nine thousand eight hundred one'), (9235, 39907, 'thirty-nine thousand nine hundred seven'), (9236, 97892, 'ninety-seven thousand eight hundred ninety-two'), (9237, 51197, 'fifty-one thousand one hundred ninety-seven'), (9238, 48630, 'forty-eight thousand six hundred thirty'), (9239, 87649, 'eighty-seven thousand six hundred forty-nine'), (9240, 90576, 'ninety thousand five hundred seventy-six'), (9241, 26048, 'twenty-six thousand forty-eight'), (9242, 76114, 'seventy-six thousand one hundred fourteen'), (9243, 58204, 'fifty-eight thousand two hundred four'), (9244, 98612, 'ninety-eight thousand six hundred twelve'), (9245, 86470, 'eighty-six thousand four hundred seventy'), (9246, 78258, 'seventy-eight thousand two hundred fifty-eight'), (9247, 11347, 'eleven thousand three hundred forty-seven'), (9248, 26374, 'twenty-six thousand three hundred seventy-four'), (9249, 96647, 'ninety-six thousand six hundred forty-seven'), (9250, 95816, 'ninety-five thousand eight hundred sixteen'), (9251, 27239, 'twenty-seven thousand two hundred thirty-nine'), (9252, 22610, 'twenty-two thousand six hundred ten'), (9253, 44620, 'forty-four thousand six hundred twenty'), (9254, 26021, 'twenty-six thousand twenty-one'), (9255, 24197, 'twenty-four thousand one hundred ninety-seven'), (9256, 42183, 'forty-two thousand one hundred eighty-three'), (9257, 72526, 'seventy-two thousand five hundred twenty-six'), (9258, 35207, 'thirty-five thousand two hundred seven'), (9259, 92524, 'ninety-two thousand five hundred twenty-four'), (9260, 95185, 'ninety-five thousand one hundred eighty-five'), (9261, 38071, 'thirty-eight thousand seventy-one'), (9262, 9049, 'nine thousand forty-nine'), (9263, 47693, 'forty-seven thousand six hundred ninety-three'), (9264, 83846, 'eighty-three thousand eight hundred forty-six'), (9265, 11549, 'eleven thousand five hundred forty-nine'), (9266, 36414, 'thirty-six thousand four hundred fourteen'), (9267, 78632, 'seventy-eight thousand six hundred thirty-two'), (9268, 33438, 'thirty-three thousand four hundred thirty-eight'), (9269, 50465, 'fifty thousand four hundred sixty-five'), (9270, 64075, 'sixty-four thousand seventy-five'), (9271, 99695, 'ninety-nine thousand six hundred ninety-five'), (9272, 83342, 'eighty-three thousand three hundred forty-two'), (9273, 6498, 'six thousand four hundred ninety-eight'), (9274, 25008, 'twenty-five thousand eight'), (9275, 56233, 'fifty-six thousand two hundred thirty-three'), (9276, 61233, 'sixty-one thousand two hundred thirty-three'), (9277, 52338, 'fifty-two thousand three hundred thirty-eight'), (9278, 65044, 'sixty-five thousand forty-four'), (9279, 13969, 'thirteen thousand nine hundred sixty-nine'), (9280, 98431, 'ninety-eight thousand four hundred thirty-one'), (9281, 60655, 'sixty thousand six hundred fifty-five'), (9282, 78662, 'seventy-eight thousand six hundred sixty-two'), (9283, 19926, 'nineteen thousand nine hundred twenty-six'), (9284, 40295, 'forty thousand two hundred ninety-five'), (9285, 73494, 'seventy-three thousand four hundred ninety-four'), (9286, 47895, 'forty-seven thousand eight hundred ninety-five'), (9287, 74753, 'seventy-four thousand seven hundred fifty-three'), (9288, 44197, 'forty-four thousand one hundred ninety-seven'), (9289, 15540, 'fifteen thousand five hundred forty'), (9290, 62565, 'sixty-two thousand five hundred sixty-five'), (9291, 67677, 'sixty-seven thousand six hundred seventy-seven'), (9292, 78102, 'seventy-eight thousand one hundred two'), (9293, 11197, 'eleven thousand one hundred ninety-seven'), (9294, 35893, 'thirty-five thousand eight hundred ninety-three'), (9295, 7969, 'seven thousand nine hundred sixty-nine'), (9296, 24802, 'twenty-four thousand eight hundred two'), (9297, 48936, 'forty-eight thousand nine hundred thirty-six'), (9298, 5711, 'five thousand seven hundred eleven'), (9299, 63335, 'sixty-three thousand three hundred thirty-five'), (9300, 92230, 'ninety-two thousand two hundred thirty'), (9301, 71216, 'seventy-one thousand two hundred sixteen'), (9302, 40874, 'forty thousand eight hundred seventy-four'), (9303, 4409, 'four thousand four hundred nine'), (9304, 1767, 'one thousand seven hundred sixty-seven'), (9305, 25589, 'twenty-five thousand five hundred eighty-nine'), (9306, 33929, 'thirty-three thousand nine hundred twenty-nine'), (9307, 12472, 'twelve thousand four hundred seventy-two'), (9308, 80058, 'eighty thousand fifty-eight'), (9309, 21499, 'twenty-one thousand four hundred ninety-nine'), (9310, 34393, 'thirty-four thousand three hundred ninety-three'), (9311, 98529, 'ninety-eight thousand five hundred twenty-nine'), (9312, 27375, 'twenty-seven thousand three hundred seventy-five'), (9313, 83557, 'eighty-three thousand five hundred fifty-seven'), (9314, 33473, 'thirty-three thousand four hundred seventy-three'), (9315, 10352, 'ten thousand three hundred fifty-two'), (9316, 34182, 'thirty-four thousand one hundred eighty-two'), (9317, 10750, 'ten thousand seven hundred fifty'), (9318, 42903, 'forty-two thousand nine hundred three'), (9319, 60628, 'sixty thousand six hundred twenty-eight'), (9320, 82460, 'eighty-two thousand four hundred sixty'), (9321, 41144, 'forty-one thousand one hundred forty-four'), (9322, 80916, 'eighty thousand nine hundred sixteen'), (9323, 39817, 'thirty-nine thousand eight hundred seventeen'), (9324, 10338, 'ten thousand three hundred thirty-eight'), (9325, 68058, 'sixty-eight thousand fifty-eight'), (9326, 23224, 'twenty-three thousand two hundred twenty-four'), (9327, 6304, 'six thousand three hundred four'), (9328, 31083, 'thirty-one thousand eighty-three'), (9329, 87939, 'eighty-seven thousand nine hundred thirty-nine'), (9330, 38949, 'thirty-eight thousand nine hundred forty-nine'), (9331, 26294, 'twenty-six thousand two hundred ninety-four'), (9332, 34191, 'thirty-four thousand one hundred ninety-one'), (9333, 80000, 'eighty thousand'), (9334, 16885, 'sixteen thousand eight hundred eighty-five'), (9335, 96173, 'ninety-six thousand one hundred seventy-three'), (9336, 68596, 'sixty-eight thousand five hundred ninety-six'), (9337, 72711, 'seventy-two thousand seven hundred eleven'), (9338, 71545, 'seventy-one thousand five hundred forty-five'), (9339, 61996, 'sixty-one thousand nine hundred ninety-six'), (9340, 68801, 'sixty-eight thousand eight hundred one'), (9341, 26792, 'twenty-six thousand seven hundred ninety-two'), (9342, 73947, 'seventy-three thousand nine hundred forty-seven'), (9343, 14713, 'fourteen thousand seven hundred thirteen'), (9344, 79149, 'seventy-nine thousand one hundred forty-nine'), (9345, 10711, 'ten thousand seven hundred eleven'), (9346, 42410, 'forty-two thousand four hundred ten'), (9347, 27736, 'twenty-seven thousand seven hundred thirty-six'), (9348, 48017, 'forty-eight thousand seventeen'), (9349, 14655, 'fourteen thousand six hundred fifty-five'), (9350, 37513, 'thirty-seven thousand five hundred thirteen'), (9351, 56325, 'fifty-six thousand three hundred twenty-five'), (9352, 36251, 'thirty-six thousand two hundred fifty-one'), (9353, 84050, 'eighty-four thousand fifty'), (9354, 99886, 'ninety-nine thousand eight hundred eighty-six'), (9355, 36997, 'thirty-six thousand nine hundred ninety-seven'), (9356, 47435, 'forty-seven thousand four hundred thirty-five'), (9357, 99736, 'ninety-nine thousand seven hundred thirty-six'), (9358, 20499, 'twenty thousand four hundred ninety-nine'), (9359, 70636, 'seventy thousand six hundred thirty-six'), (9360, 55045, 'fifty-five thousand forty-five'), (9361, 83284, 'eighty-three thousand two hundred eighty-four'), (9362, 95381, 'ninety-five thousand three hundred eighty-one'), (9363, 44975, 'forty-four thousand nine hundred seventy-five'), (9364, 35334, 'thirty-five thousand three hundred thirty-four'), (9365, 98581, 'ninety-eight thousand five hundred eighty-one'), (9366, 74836, 'seventy-four thousand eight hundred thirty-six'), (9367, 31911, 'thirty-one thousand nine hundred eleven'), (9368, 83550, 'eighty-three thousand five hundred fifty'), (9369, 59749, 'fifty-nine thousand seven hundred forty-nine'), (9370, 22048, 'twenty-two thousand forty-eight'), (9371, 77168, 'seventy-seven thousand one hundred sixty-eight'), (9372, 34265, 'thirty-four thousand two hundred sixty-five'), (9373, 64598, 'sixty-four thousand five hundred ninety-eight'), (9374, 56825, 'fifty-six thousand eight hundred twenty-five'), (9375, 6105, 'six thousand one hundred five'), (9376, 50099, 'fifty thousand ninety-nine'), (9377, 7719, 'seven thousand seven hundred nineteen'), (9378, 78128, 'seventy-eight thousand one hundred twenty-eight'), (9379, 29798, 'twenty-nine thousand seven hundred ninety-eight'), (9380, 29342, 'twenty-nine thousand three hundred forty-two'), (9381, 929, 'nine hundred twenty-nine'), (9382, 75085, 'seventy-five thousand eighty-five'), (9383, 14889, 'fourteen thousand eight hundred eighty-nine'), (9384, 42080, 'forty-two thousand eighty'), (9385, 96706, 'ninety-six thousand seven hundred six'), (9386, 63983, 'sixty-three thousand nine hundred eighty-three'), (9387, 56614, 'fifty-six thousand six hundred fourteen'), (9388, 8128, 'eight thousand one hundred twenty-eight'), (9389, 47893, 'forty-seven thousand eight hundred ninety-three'), (9390, 21491, 'twenty-one thousand four hundred ninety-one'), (9391, 98349, 'ninety-eight thousand three hundred forty-nine'), (9392, 2600, 'two thousand six hundred'), (9393, 62776, 'sixty-two thousand seven hundred seventy-six'), (9394, 235, 'two hundred thirty-five'), (9395, 24642, 'twenty-four thousand six hundred forty-two'), (9396, 8573, 'eight thousand five hundred seventy-three'), (9397, 4973, 'four thousand nine hundred seventy-three'), (9398, 10118, 'ten thousand one hundred eighteen'), (9399, 68282, 'sixty-eight thousand two hundred eighty-two'), (9400, 25461, 'twenty-five thousand four hundred sixty-one'), (9401, 88512, 'eighty-eight thousand five hundred twelve'), (9402, 57955, 'fifty-seven thousand nine hundred fifty-five'), (9403, 29978, 'twenty-nine thousand nine hundred seventy-eight'), (9404, 4266, 'four thousand two hundred sixty-six'), (9405, 81952, 'eighty-one thousand nine hundred fifty-two'), (9406, 80372, 'eighty thousand three hundred seventy-two'), (9407, 41591, 'forty-one thousand five hundred ninety-one'), (9408, 32117, 'thirty-two thousand one hundred seventeen'), (9409, 8638, 'eight thousand six hundred thirty-eight'), (9410, 3751, 'three thousand seven hundred fifty-one'), (9411, 96206, 'ninety-six thousand two hundred six'), (9412, 12973, 'twelve thousand nine hundred seventy-three'), (9413, 26453, 'twenty-six thousand four hundred fifty-three'), (9414, 77494, 'seventy-seven thousand four hundred ninety-four'), (9415, 55029, 'fifty-five thousand twenty-nine'), (9416, 14160, 'fourteen thousand one hundred sixty'), (9417, 64801, 'sixty-four thousand eight hundred one'), (9418, 31111, 'thirty-one thousand one hundred eleven'), (9419, 13869, 'thirteen thousand eight hundred sixty-nine'), (9420, 59804, 'fifty-nine thousand eight hundred four'), (9421, 99583, 'ninety-nine thousand five hundred eighty-three'), (9422, 94327, 'ninety-four thousand three hundred twenty-seven'), (9423, 88312, 'eighty-eight thousand three hundred twelve'), (9424, 75793, 'seventy-five thousand seven hundred ninety-three'), (9425, 98157, 'ninety-eight thousand one hundred fifty-seven'), (9426, 65820, 'sixty-five thousand eight hundred twenty'), (9427, 92481, 'ninety-two thousand four hundred eighty-one'), (9428, 76234, 'seventy-six thousand two hundred thirty-four'), (9429, 96895, 'ninety-six thousand eight hundred ninety-five'), (9430, 81425, 'eighty-one thousand four hundred twenty-five'), (9431, 62758, 'sixty-two thousand seven hundred fifty-eight'), (9432, 37220, 'thirty-seven thousand two hundred twenty'), (9433, 26325, 'twenty-six thousand three hundred twenty-five'), (9434, 8769, 'eight thousand seven hundred sixty-nine'), (9435, 46716, 'forty-six thousand seven hundred sixteen'), (9436, 6459, 'six thousand four hundred fifty-nine'), (9437, 21174, 'twenty-one thousand one hundred seventy-four'), (9438, 92097, 'ninety-two thousand ninety-seven'), (9439, 16150, 'sixteen thousand one hundred fifty'), (9440, 59341, 'fifty-nine thousand three hundred forty-one'), (9441, 71836, 'seventy-one thousand eight hundred thirty-six'), (9442, 65805, 'sixty-five thousand eight hundred five'), (9443, 84411, 'eighty-four thousand four hundred eleven'), (9444, 97540, 'ninety-seven thousand five hundred forty'), (9445, 74195, 'seventy-four thousand one hundred ninety-five'), (9446, 52156, 'fifty-two thousand one hundred fifty-six'), (9447, 35694, 'thirty-five thousand six hundred ninety-four'), (9448, 51467, 'fifty-one thousand four hundred sixty-seven'), (9449, 34703, 'thirty-four thousand seven hundred three'), (9450, 13358, 'thirteen thousand three hundred fifty-eight'), (9451, 82038, 'eighty-two thousand thirty-eight'), (9452, 38386, 'thirty-eight thousand three hundred eighty-six'), (9453, 3177, 'three thousand one hundred seventy-seven'), (9454, 43645, 'forty-three thousand six hundred forty-five'), (9455, 99522, 'ninety-nine thousand five hundred twenty-two'), (9456, 20315, 'twenty thousand three hundred fifteen'), (9457, 1802, 'one thousand eight hundred two'), (9458, 49795, 'forty-nine thousand seven hundred ninety-five'), (9459, 35616, 'thirty-five thousand six hundred sixteen'), (9460, 71746, 'seventy-one thousand seven hundred forty-six'), (9461, 74082, 'seventy-four thousand eighty-two'), (9462, 41226, 'forty-one thousand two hundred twenty-six'), (9463, 63345, 'sixty-three thousand three hundred forty-five'), (9464, 44605, 'forty-four thousand six hundred five'), (9465, 8098, 'eight thousand ninety-eight'), (9466, 41926, 'forty-one thousand nine hundred twenty-six'), (9467, 37074, 'thirty-seven thousand seventy-four'), (9468, 70002, 'seventy thousand two'), (9469, 17521, 'seventeen thousand five hundred twenty-one'), (9470, 58169, 'fifty-eight thousand one hundred sixty-nine'), (9471, 83810, 'eighty-three thousand eight hundred ten'), (9472, 89578, 'eighty-nine thousand five hundred seventy-eight'), (9473, 71207, 'seventy-one thousand two hundred seven'), (9474, 97719, 'ninety-seven thousand seven hundred nineteen'), (9475, 17989, 'seventeen thousand nine hundred eighty-nine'), (9476, 39086, 'thirty-nine thousand eighty-six'), (9477, 17877, 'seventeen thousand eight hundred seventy-seven'), (9478, 38203, 'thirty-eight thousand two hundred three'), (9479, 19397, 'nineteen thousand three hundred ninety-seven'), (9480, 20033, 'twenty thousand thirty-three'), (9481, 71427, 'seventy-one thousand four hundred twenty-seven'), (9482, 25944, 'twenty-five thousand nine hundred forty-four'), (9483, 54851, 'fifty-four thousand eight hundred fifty-one'), (9484, 37141, 'thirty-seven thousand one hundred forty-one'), (9485, 29557, 'twenty-nine thousand five hundred fifty-seven'), (9486, 11738, 'eleven thousand seven hundred thirty-eight'), (9487, 85734, 'eighty-five thousand seven hundred thirty-four'), (9488, 63877, 'sixty-three thousand eight hundred seventy-seven'), (9489, 58775, 'fifty-eight thousand seven hundred seventy-five'), (9490, 30173, 'thirty thousand one hundred seventy-three'), (9491, 49119, 'forty-nine thousand one hundred nineteen'), (9492, 33005, 'thirty-three thousand five'), (9493, 83050, 'eighty-three thousand fifty'), (9494, 47003, 'forty-seven thousand three'), (9495, 58182, 'fifty-eight thousand one hundred eighty-two'), (9496, 21381, 'twenty-one thousand three hundred eighty-one'), (9497, 45927, 'forty-five thousand nine hundred twenty-seven'), (9498, 43288, 'forty-three thousand two hundred eighty-eight'), (9499, 40391, 'forty thousand three hundred ninety-one'), (9500, 72427, 'seventy-two thousand four hundred twenty-seven'), (9501, 30415, 'thirty thousand four hundred fifteen'), (9502, 30057, 'thirty thousand fifty-seven'), (9503, 47369, 'forty-seven thousand three hundred sixty-nine'), (9504, 32613, 'thirty-two thousand six hundred thirteen'), (9505, 27530, 'twenty-seven thousand five hundred thirty'), (9506, 93003, 'ninety-three thousand three'), (9507, 51684, 'fifty-one thousand six hundred eighty-four'), (9508, 82316, 'eighty-two thousand three hundred sixteen'), (9509, 30442, 'thirty thousand four hundred forty-two'), (9510, 8476, 'eight thousand four hundred seventy-six'), (9511, 74375, 'seventy-four thousand three hundred seventy-five'), (9512, 42314, 'forty-two thousand three hundred fourteen'), (9513, 79144, 'seventy-nine thousand one hundred forty-four'), (9514, 78205, 'seventy-eight thousand two hundred five'), (9515, 44246, 'forty-four thousand two hundred forty-six'), (9516, 13712, 'thirteen thousand seven hundred twelve'), (9517, 71308, 'seventy-one thousand three hundred eight'), (9518, 85869, 'eighty-five thousand eight hundred sixty-nine'), (9519, 94064, 'ninety-four thousand sixty-four'), (9520, 36711, 'thirty-six thousand seven hundred eleven'), (9521, 9489, 'nine thousand four hundred eighty-nine'), (9522, 21369, 'twenty-one thousand three hundred sixty-nine'), (9523, 18452, 'eighteen thousand four hundred fifty-two'), (9524, 74370, 'seventy-four thousand three hundred seventy'), (9525, 58042, 'fifty-eight thousand forty-two'), (9526, 63639, 'sixty-three thousand six hundred thirty-nine'), (9527, 1474, 'one thousand four hundred seventy-four'), (9528, 32040, 'thirty-two thousand forty'), (9529, 72021, 'seventy-two thousand twenty-one'), (9530, 54244, 'fifty-four thousand two hundred forty-four'), (9531, 81954, 'eighty-one thousand nine hundred fifty-four'), (9532, 42751, 'forty-two thousand seven hundred fifty-one'), (9533, 23841, 'twenty-three thousand eight hundred forty-one'), (9534, 47028, 'forty-seven thousand twenty-eight'), (9535, 39364, 'thirty-nine thousand three hundred sixty-four'), (9536, 16957, 'sixteen thousand nine hundred fifty-seven'), (9537, 26435, 'twenty-six thousand four hundred thirty-five'), (9538, 57264, 'fifty-seven thousand two hundred sixty-four'), (9539, 15807, 'fifteen thousand eight hundred seven'), (9540, 88338, 'eighty-eight thousand three hundred thirty-eight'), (9541, 79107, 'seventy-nine thousand one hundred seven'), (9542, 10166, 'ten thousand one hundred sixty-six'), (9543, 18201, 'eighteen thousand two hundred one'), (9544, 68522, 'sixty-eight thousand five hundred twenty-two'), (9545, 2822, 'two thousand eight hundred twenty-two'), (9546, 5756, 'five thousand seven hundred fifty-six'), (9547, 71527, 'seventy-one thousand five hundred twenty-seven'), (9548, 82622, 'eighty-two thousand six hundred twenty-two'), (9549, 82385, 'eighty-two thousand three hundred eighty-five'), (9550, 95123, 'ninety-five thousand one hundred twenty-three'), (9551, 28331, 'twenty-eight thousand three hundred thirty-one'), (9552, 21298, 'twenty-one thousand two hundred ninety-eight'), (9553, 63107, 'sixty-three thousand one hundred seven'), (9554, 89693, 'eighty-nine thousand six hundred ninety-three'), (9555, 63053, 'sixty-three thousand fifty-three'), (9556, 77658, 'seventy-seven thousand six hundred fifty-eight'), (9557, 14497, 'fourteen thousand four hundred ninety-seven'), (9558, 7231, 'seven thousand two hundred thirty-one'), (9559, 97234, 'ninety-seven thousand two hundred thirty-four'), (9560, 61062, 'sixty-one thousand sixty-two'), (9561, 78573, 'seventy-eight thousand five hundred seventy-three'), (9562, 44875, 'forty-four thousand eight hundred seventy-five'), (9563, 4498, 'four thousand four hundred ninety-eight'), (9564, 63052, 'sixty-three thousand fifty-two'), (9565, 31595, 'thirty-one thousand five hundred ninety-five'), (9566, 18072, 'eighteen thousand seventy-two'), (9567, 64680, 'sixty-four thousand six hundred eighty'), (9568, 19117, 'nineteen thousand one hundred seventeen'), (9569, 80586, 'eighty thousand five hundred eighty-six'), (9570, 28520, 'twenty-eight thousand five hundred twenty'), (9571, 83391, 'eighty-three thousand three hundred ninety-one'), (9572, 74098, 'seventy-four thousand ninety-eight'), (9573, 69761, 'sixty-nine thousand seven hundred sixty-one'), (9574, 93558, 'ninety-three thousand five hundred fifty-eight'), (9575, 43576, 'forty-three thousand five hundred seventy-six'), (9576, 71034, 'seventy-one thousand thirty-four'), (9577, 4764, 'four thousand seven hundred sixty-four'), (9578, 19011, 'nineteen thousand eleven'), (9579, 18241, 'eighteen thousand two hundred forty-one'), (9580, 53064, 'fifty-three thousand sixty-four'), (9581, 97427, 'ninety-seven thousand four hundred twenty-seven'), (9582, 38042, 'thirty-eight thousand forty-two'), (9583, 18513, 'eighteen thousand five hundred thirteen'), (9584, 76654, 'seventy-six thousand six hundred fifty-four'), (9585, 2036, 'two thousand thirty-six'), (9586, 36887, 'thirty-six thousand eight hundred eighty-seven'), (9587, 11745, 'eleven thousand seven hundred forty-five'), (9588, 19822, 'nineteen thousand eight hundred twenty-two'), (9589, 38271, 'thirty-eight thousand two hundred seventy-one'), (9590, 62637, 'sixty-two thousand six hundred thirty-seven'), (9591, 45137, 'forty-five thousand one hundred thirty-seven'), (9592, 11251, 'eleven thousand two hundred fifty-one'), (9593, 49827, 'forty-nine thousand eight hundred twenty-seven'), (9594, 34370, 'thirty-four thousand three hundred seventy'), (9595, 5848, 'five thousand eight hundred forty-eight'), (9596, 42684, 'forty-two thousand six hundred eighty-four'), (9597, 55186, 'fifty-five thousand one hundred eighty-six'), (9598, 76470, 'seventy-six thousand four hundred seventy'), (9599, 71701, 'seventy-one thousand seven hundred one'), (9600, 37517, 'thirty-seven thousand five hundred seventeen'), (9601, 6431, 'six thousand four hundred thirty-one'), (9602, 9515, 'nine thousand five hundred fifteen'), (9603, 65573, 'sixty-five thousand five hundred seventy-three'), (9604, 38146, 'thirty-eight thousand one hundred forty-six'), (9605, 36234, 'thirty-six thousand two hundred thirty-four'), (9606, 58725, 'fifty-eight thousand seven hundred twenty-five'), (9607, 79791, 'seventy-nine thousand seven hundred ninety-one'), (9608, 93627, 'ninety-three thousand six hundred twenty-seven'), (9609, 47049, 'forty-seven thousand forty-nine'), (9610, 68872, 'sixty-eight thousand eight hundred seventy-two'), (9611, 83787, 'eighty-three thousand seven hundred eighty-seven'), (9612, 91188, 'ninety-one thousand one hundred eighty-eight'), (9613, 2014, 'two thousand fourteen'), (9614, 44487, 'forty-four thousand four hundred eighty-seven'), (9615, 56038, 'fifty-six thousand thirty-eight'), (9616, 82029, 'eighty-two thousand twenty-nine'), (9617, 4887, 'four thousand eight hundred eighty-seven'), (9618, 31410, 'thirty-one thousand four hundred ten'), (9619, 19337, 'nineteen thousand three hundred thirty-seven'), (9620, 4546, 'four thousand five hundred forty-six'), (9621, 83168, 'eighty-three thousand one hundred sixty-eight'), (9622, 58470, 'fifty-eight thousand four hundred seventy'), (9623, 16420, 'sixteen thousand four hundred twenty'), (9624, 5149, 'five thousand one hundred forty-nine'), (9625, 55887, 'fifty-five thousand eight hundred eighty-seven'), (9626, 76622, 'seventy-six thousand six hundred twenty-two'), (9627, 13516, 'thirteen thousand five hundred sixteen'), (9628, 16472, 'sixteen thousand four hundred seventy-two'), (9629, 23940, 'twenty-three thousand nine hundred forty'), (9630, 44666, 'forty-four thousand six hundred sixty-six'), (9631, 74694, 'seventy-four thousand six hundred ninety-four'), (9632, 57541, 'fifty-seven thousand five hundred forty-one'), (9633, 84917, 'eighty-four thousand nine hundred seventeen'), (9634, 65400, 'sixty-five thousand four hundred'), (9635, 40485, 'forty thousand four hundred eighty-five'), (9636, 57426, 'fifty-seven thousand four hundred twenty-six'), (9637, 36843, 'thirty-six thousand eight hundred forty-three'), (9638, 54970, 'fifty-four thousand nine hundred seventy'), (9639, 505, 'five hundred five'), (9640, 99275, 'ninety-nine thousand two hundred seventy-five'), (9641, 81986, 'eighty-one thousand nine hundred eighty-six'), (9642, 4001, 'four thousand one'), (9643, 72323, 'seventy-two thousand three hundred twenty-three'), (9644, 8637, 'eight thousand six hundred thirty-seven'), (9645, 38278, 'thirty-eight thousand two hundred seventy-eight'), (9646, 34157, 'thirty-four thousand one hundred fifty-seven'), (9647, 82456, 'eighty-two thousand four hundred fifty-six'), (9648, 75899, 'seventy-five thousand eight hundred ninety-nine'), (9649, 69900, 'sixty-nine thousand nine hundred'), (9650, 28219, 'twenty-eight thousand two hundred nineteen'), (9651, 39732, 'thirty-nine thousand seven hundred thirty-two'), (9652, 44157, 'forty-four thousand one hundred fifty-seven'), (9653, 88485, 'eighty-eight thousand four hundred eighty-five'), (9654, 28815, 'twenty-eight thousand eight hundred fifteen'), (9655, 55922, 'fifty-five thousand nine hundred twenty-two'), (9656, 16694, 'sixteen thousand six hundred ninety-four'), (9657, 85307, 'eighty-five thousand three hundred seven'), (9658, 69030, 'sixty-nine thousand thirty'), (9659, 35486, 'thirty-five thousand four hundred eighty-six'), (9660, 8239, 'eight thousand two hundred thirty-nine'), (9661, 45034, 'forty-five thousand thirty-four'), (9662, 50057, 'fifty thousand fifty-seven'), (9663, 97937, 'ninety-seven thousand nine hundred thirty-seven'), (9664, 52222, 'fifty-two thousand two hundred twenty-two'), (9665, 78106, 'seventy-eight thousand one hundred six'), (9666, 5327, 'five thousand three hundred twenty-seven'), (9667, 76445, 'seventy-six thousand four hundred forty-five'), (9668, 37700, 'thirty-seven thousand seven hundred'), (9669, 74825, 'seventy-four thousand eight hundred twenty-five'), (9670, 28573, 'twenty-eight thousand five hundred seventy-three'), (9671, 35683, 'thirty-five thousand six hundred eighty-three'), (9672, 28758, 'twenty-eight thousand seven hundred fifty-eight'), (9673, 78116, 'seventy-eight thousand one hundred sixteen'), (9674, 79955, 'seventy-nine thousand nine hundred fifty-five'), (9675, 78044, 'seventy-eight thousand forty-four'), (9676, 675, 'six hundred seventy-five'), (9677, 1789, 'one thousand seven hundred eighty-nine'), (9678, 92206, 'ninety-two thousand two hundred six'), (9679, 68014, 'sixty-eight thousand fourteen'), (9680, 30145, 'thirty thousand one hundred forty-five'), (9681, 45648, 'forty-five thousand six hundred forty-eight'), (9682, 60284, 'sixty thousand two hundred eighty-four'), (9683, 28878, 'twenty-eight thousand eight hundred seventy-eight'), (9684, 28138, 'twenty-eight thousand one hundred thirty-eight'), (9685, 61885, 'sixty-one thousand eight hundred eighty-five'), (9686, 94810, 'ninety-four thousand eight hundred ten'), (9687, 65845, 'sixty-five thousand eight hundred forty-five'), (9688, 61143, 'sixty-one thousand one hundred forty-three'), (9689, 9851, 'nine thousand eight hundred fifty-one'), (9690, 42245, 'forty-two thousand two hundred forty-five'), (9691, 10692, 'ten thousand six hundred ninety-two'), (9692, 22345, 'twenty-two thousand three hundred forty-five'), (9693, 75615, 'seventy-five thousand six hundred fifteen'), (9694, 79866, 'seventy-nine thousand eight hundred sixty-six'), (9695, 12699, 'twelve thousand six hundred ninety-nine'), (9696, 58122, 'fifty-eight thousand one hundred twenty-two'), (9697, 11746, 'eleven thousand seven hundred forty-six'), (9698, 50624, 'fifty thousand six hundred twenty-four'), (9699, 40387, 'forty thousand three hundred eighty-seven'), (9700, 85919, 'eighty-five thousand nine hundred nineteen'), (9701, 8174, 'eight thousand one hundred seventy-four'), (9702, 55142, 'fifty-five thousand one hundred forty-two'), (9703, 68303, 'sixty-eight thousand three hundred three'), (9704, 17335, 'seventeen thousand three hundred thirty-five'), (9705, 78513, 'seventy-eight thousand five hundred thirteen'), (9706, 29582, 'twenty-nine thousand five hundred eighty-two'), (9707, 49634, 'forty-nine thousand six hundred thirty-four'), (9708, 34458, 'thirty-four thousand four hundred fifty-eight'), (9709, 10180, 'ten thousand one hundred eighty'), (9710, 88642, 'eighty-eight thousand six hundred forty-two'), (9711, 2390, 'two thousand three hundred ninety'), (9712, 51507, 'fifty-one thousand five hundred seven'), (9713, 7460, 'seven thousand four hundred sixty'), (9714, 35102, 'thirty-five thousand one hundred two'), (9715, 32204, 'thirty-two thousand two hundred four'), (9716, 76392, 'seventy-six thousand three hundred ninety-two'), (9717, 70336, 'seventy thousand three hundred thirty-six'), (9718, 50161, 'fifty thousand one hundred sixty-one'), (9719, 30585, 'thirty thousand five hundred eighty-five'), (9720, 35284, 'thirty-five thousand two hundred eighty-four'), (9721, 23587, 'twenty-three thousand five hundred eighty-seven'), (9722, 78092, 'seventy-eight thousand ninety-two'), (9723, 8243, 'eight thousand two hundred forty-three'), (9724, 54607, 'fifty-four thousand six hundred seven'), (9725, 36361, 'thirty-six thousand three hundred sixty-one'), (9726, 88933, 'eighty-eight thousand nine hundred thirty-three'), (9727, 78190, 'seventy-eight thousand one hundred ninety'), (9728, 96301, 'ninety-six thousand three hundred one'), (9729, 44856, 'forty-four thousand eight hundred fifty-six'), (9730, 43572, 'forty-three thousand five hundred seventy-two'), (9731, 32711, 'thirty-two thousand seven hundred eleven'), (9732, 28725, 'twenty-eight thousand seven hundred twenty-five'), (9733, 55115, 'fifty-five thousand one hundred fifteen'), (9734, 88085, 'eighty-eight thousand eighty-five'), (9735, 68574, 'sixty-eight thousand five hundred seventy-four'), (9736, 95856, 'ninety-five thousand eight hundred fifty-six'), (9737, 81099, 'eighty-one thousand ninety-nine'), (9738, 42379, 'forty-two thousand three hundred seventy-nine'), (9739, 99904, 'ninety-nine thousand nine hundred four'), (9740, 16858, 'sixteen thousand eight hundred fifty-eight'), (9741, 49841, 'forty-nine thousand eight hundred forty-one'), (9742, 93672, 'ninety-three thousand six hundred seventy-two'), (9743, 92965, 'ninety-two thousand nine hundred sixty-five'), (9744, 50582, 'fifty thousand five hundred eighty-two'), (9745, 71144, 'seventy-one thousand one hundred forty-four'), (9746, 71120, 'seventy-one thousand one hundred twenty'), (9747, 57022, 'fifty-seven thousand twenty-two'), (9748, 10747, 'ten thousand seven hundred forty-seven'), (9749, 63470, 'sixty-three thousand four hundred seventy'), (9750, 20061, 'twenty thousand sixty-one'), (9751, 98579, 'ninety-eight thousand five hundred seventy-nine'), (9752, 76644, 'seventy-six thousand six hundred forty-four'), (9753, 82180, 'eighty-two thousand one hundred eighty'), (9754, 71048, 'seventy-one thousand forty-eight'), (9755, 19490, 'nineteen thousand four hundred ninety'), (9756, 447, 'four hundred forty-seven'), (9757, 54146, 'fifty-four thousand one hundred forty-six'), (9758, 73685, 'seventy-three thousand six hundred eighty-five'), (9759, 4764, 'four thousand seven hundred sixty-four'), (9760, 91378, 'ninety-one thousand three hundred seventy-eight'), (9761, 40529, 'forty thousand five hundred twenty-nine'), (9762, 55119, 'fifty-five thousand one hundred nineteen'), (9763, 14168, 'fourteen thousand one hundred sixty-eight'), (9764, 75876, 'seventy-five thousand eight hundred seventy-six'), (9765, 50908, 'fifty thousand nine hundred eight'), (9766, 42444, 'forty-two thousand four hundred forty-four'), (9767, 62467, 'sixty-two thousand four hundred sixty-seven'), (9768, 79928, 'seventy-nine thousand nine hundred twenty-eight'), (9769, 65733, 'sixty-five thousand seven hundred thirty-three'), (9770, 90346, 'ninety thousand three hundred forty-six'), (9771, 72647, 'seventy-two thousand six hundred forty-seven'), (9772, 99071, 'ninety-nine thousand seventy-one'), (9773, 99461, 'ninety-nine thousand four hundred sixty-one'), (9774, 77471, 'seventy-seven thousand four hundred seventy-one'), (9775, 44708, 'forty-four thousand seven hundred eight'), (9776, 88340, 'eighty-eight thousand three hundred forty'), (9777, 12533, 'twelve thousand five hundred thirty-three'), (9778, 88424, 'eighty-eight thousand four hundred twenty-four'), (9779, 80718, 'eighty thousand seven hundred eighteen'), (9780, 3636, 'three thousand six hundred thirty-six'), (9781, 86715, 'eighty-six thousand seven hundred fifteen'), (9782, 70985, 'seventy thousand nine hundred eighty-five'), (9783, 89054, 'eighty-nine thousand fifty-four'), (9784, 55579, 'fifty-five thousand five hundred seventy-nine'), (9785, 26745, 'twenty-six thousand seven hundred forty-five'), (9786, 67271, 'sixty-seven thousand two hundred seventy-one'), (9787, 24548, 'twenty-four thousand five hundred forty-eight'), (9788, 32762, 'thirty-two thousand seven hundred sixty-two'), (9789, 23787, 'twenty-three thousand seven hundred eighty-seven'), (9790, 52358, 'fifty-two thousand three hundred fifty-eight'), (9791, 64224, 'sixty-four thousand two hundred twenty-four'), (9792, 88096, 'eighty-eight thousand ninety-six'), (9793, 45220, 'forty-five thousand two hundred twenty'), (9794, 68875, 'sixty-eight thousand eight hundred seventy-five'), (9795, 6662, 'six thousand six hundred sixty-two'), (9796, 16645, 'sixteen thousand six hundred forty-five'), (9797, 63361, 'sixty-three thousand three hundred sixty-one'), (9798, 8274, 'eight thousand two hundred seventy-four'), (9799, 6532, 'six thousand five hundred thirty-two'), (9800, 19965, 'nineteen thousand nine hundred sixty-five'), (9801, 80285, 'eighty thousand two hundred eighty-five'), (9802, 60856, 'sixty thousand eight hundred fifty-six'), (9803, 67409, 'sixty-seven thousand four hundred nine'), (9804, 20871, 'twenty thousand eight hundred seventy-one'), (9805, 72000, 'seventy-two thousand'), (9806, 15279, 'fifteen thousand two hundred seventy-nine'), (9807, 42589, 'forty-two thousand five hundred eighty-nine'), (9808, 42872, 'forty-two thousand eight hundred seventy-two'), (9809, 8091, 'eight thousand ninety-one'), (9810, 40812, 'forty thousand eight hundred twelve'), (9811, 74285, 'seventy-four thousand two hundred eighty-five'), (9812, 3039, 'three thousand thirty-nine'), (9813, 91575, 'ninety-one thousand five hundred seventy-five'), (9814, 69928, 'sixty-nine thousand nine hundred twenty-eight'), (9815, 11574, 'eleven thousand five hundred seventy-four'), (9816, 87237, 'eighty-seven thousand two hundred thirty-seven'), (9817, 85439, 'eighty-five thousand four hundred thirty-nine'), (9818, 78822, 'seventy-eight thousand eight hundred twenty-two'), (9819, 30048, 'thirty thousand forty-eight'), (9820, 79138, 'seventy-nine thousand one hundred thirty-eight'), (9821, 9060, 'nine thousand sixty'), (9822, 5465, 'five thousand four hundred sixty-five'), (9823, 26276, 'twenty-six thousand two hundred seventy-six'), (9824, 85783, 'eighty-five thousand seven hundred eighty-three'), (9825, 80145, 'eighty thousand one hundred forty-five'), (9826, 41733, 'forty-one thousand seven hundred thirty-three'), (9827, 88913, 'eighty-eight thousand nine hundred thirteen'), (9828, 10742, 'ten thousand seven hundred forty-two'), (9829, 6810, 'six thousand eight hundred ten'), (9830, 69735, 'sixty-nine thousand seven hundred thirty-five'), (9831, 98911, 'ninety-eight thousand nine hundred eleven'), (9832, 37083, 'thirty-seven thousand eighty-three'), (9833, 72333, 'seventy-two thousand three hundred thirty-three'), (9834, 19909, 'nineteen thousand nine hundred nine'), (9835, 15371, 'fifteen thousand three hundred seventy-one'), (9836, 33627, 'thirty-three thousand six hundred twenty-seven'), (9837, 79364, 'seventy-nine thousand three hundred sixty-four'), (9838, 17020, 'seventeen thousand twenty'), (9839, 2514, 'two thousand five hundred fourteen'), (9840, 220, 'two hundred twenty'), (9841, 85011, 'eighty-five thousand eleven'), (9842, 86302, 'eighty-six thousand three hundred two'), (9843, 36977, 'thirty-six thousand nine hundred seventy-seven'), (9844, 33081, 'thirty-three thousand eighty-one'), (9845, 18211, 'eighteen thousand two hundred eleven'), (9846, 30006, 'thirty thousand six'), (9847, 47967, 'forty-seven thousand nine hundred sixty-seven'), (9848, 44090, 'forty-four thousand ninety'), (9849, 88043, 'eighty-eight thousand forty-three'), (9850, 63998, 'sixty-three thousand nine hundred ninety-eight'), (9851, 67265, 'sixty-seven thousand two hundred sixty-five'), (9852, 78154, 'seventy-eight thousand one hundred fifty-four'), (9853, 27541, 'twenty-seven thousand five hundred forty-one'), (9854, 16935, 'sixteen thousand nine hundred thirty-five'), (9855, 75241, 'seventy-five thousand two hundred forty-one'), (9856, 12951, 'twelve thousand nine hundred fifty-one'), (9857, 39670, 'thirty-nine thousand six hundred seventy'), (9858, 93047, 'ninety-three thousand forty-seven'), (9859, 78639, 'seventy-eight thousand six hundred thirty-nine'), (9860, 5202, 'five thousand two hundred two'), (9861, 17204, 'seventeen thousand two hundred four'), (9862, 39432, 'thirty-nine thousand four hundred thirty-two'), (9863, 44518, 'forty-four thousand five hundred eighteen'), (9864, 91369, 'ninety-one thousand three hundred sixty-nine'), (9865, 40140, 'forty thousand one hundred forty'), (9866, 19559, 'nineteen thousand five hundred fifty-nine'), (9867, 26216, 'twenty-six thousand two hundred sixteen'), (9868, 8647, 'eight thousand six hundred forty-seven'), (9869, 28889, 'twenty-eight thousand eight hundred eighty-nine'), (9870, 46851, 'forty-six thousand eight hundred fifty-one'), (9871, 13014, 'thirteen thousand fourteen'), (9872, 77239, 'seventy-seven thousand two hundred thirty-nine'), (9873, 41515, 'forty-one thousand five hundred fifteen'), (9874, 25126, 'twenty-five thousand one hundred twenty-six'), (9875, 24678, 'twenty-four thousand six hundred seventy-eight'), (9876, 22524, 'twenty-two thousand five hundred twenty-four'), (9877, 36719, 'thirty-six thousand seven hundred nineteen'), (9878, 90976, 'ninety thousand nine hundred seventy-six'), (9879, 45387, 'forty-five thousand three hundred eighty-seven'), (9880, 25918, 'twenty-five thousand nine hundred eighteen'), (9881, 4799, 'four thousand seven hundred ninety-nine'), (9882, 90468, 'ninety thousand four hundred sixty-eight'), (9883, 35652, 'thirty-five thousand six hundred fifty-two'), (9884, 84626, 'eighty-four thousand six hundred twenty-six'), (9885, 73446, 'seventy-three thousand four hundred forty-six'), (9886, 18877, 'eighteen thousand eight hundred seventy-seven'), (9887, 2012, 'two thousand twelve'), (9888, 38502, 'thirty-eight thousand five hundred two'), (9889, 2784, 'two thousand seven hundred eighty-four'), (9890, 11098, 'eleven thousand ninety-eight'), (9891, 96913, 'ninety-six thousand nine hundred thirteen'), (9892, 65007, 'sixty-five thousand seven'), (9893, 4446, 'four thousand four hundred forty-six'), (9894, 13760, 'thirteen thousand seven hundred sixty'), (9895, 15589, 'fifteen thousand five hundred eighty-nine'), (9896, 13053, 'thirteen thousand fifty-three'), (9897, 46297, 'forty-six thousand two hundred ninety-seven'), (9898, 32446, 'thirty-two thousand four hundred forty-six'), (9899, 46298, 'forty-six thousand two hundred ninety-eight'), (9900, 31498, 'thirty-one thousand four hundred ninety-eight'), (9901, 53844, 'fifty-three thousand eight hundred forty-four'), (9902, 22677, 'twenty-two thousand six hundred seventy-seven'), (9903, 32112, 'thirty-two thousand one hundred twelve'), (9904, 78055, 'seventy-eight thousand fifty-five'), (9905, 37196, 'thirty-seven thousand one hundred ninety-six'), (9906, 17198, 'seventeen thousand one hundred ninety-eight'), (9907, 26387, 'twenty-six thousand three hundred eighty-seven'), (9908, 66172, 'sixty-six thousand one hundred seventy-two'), (9909, 2890, 'two thousand eight hundred ninety'), (9910, 78349, 'seventy-eight thousand three hundred forty-nine'), (9911, 73305, 'seventy-three thousand three hundred five'), (9912, 46865, 'forty-six thousand eight hundred sixty-five'), (9913, 51014, 'fifty-one thousand fourteen'), (9914, 57484, 'fifty-seven thousand four hundred eighty-four'), (9915, 95182, 'ninety-five thousand one hundred eighty-two'), (9916, 47178, 'forty-seven thousand one hundred seventy-eight'), (9917, 61210, 'sixty-one thousand two hundred ten'), (9918, 2861, 'two thousand eight hundred sixty-one'), (9919, 42747, 'forty-two thousand seven hundred forty-seven'), (9920, 2524, 'two thousand five hundred twenty-four'), (9921, 33984, 'thirty-three thousand nine hundred eighty-four'), (9922, 70995, 'seventy thousand nine hundred ninety-five'), (9923, 2751, 'two thousand seven hundred fifty-one'), (9924, 17949, 'seventeen thousand nine hundred forty-nine'), (9925, 83674, 'eighty-three thousand six hundred seventy-four'), (9926, 62038, 'sixty-two thousand thirty-eight'), (9927, 91191, 'ninety-one thousand one hundred ninety-one'), (9928, 62705, 'sixty-two thousand seven hundred five'), (9929, 15215, 'fifteen thousand two hundred fifteen'), (9930, 11635, 'eleven thousand six hundred thirty-five'), (9931, 83994, 'eighty-three thousand nine hundred ninety-four'), (9932, 76669, 'seventy-six thousand six hundred sixty-nine'), (9933, 7591, 'seven thousand five hundred ninety-one'), (9934, 58851, 'fifty-eight thousand eight hundred fifty-one'), (9935, 86336, 'eighty-six thousand three hundred thirty-six'), (9936, 74312, 'seventy-four thousand three hundred twelve'), (9937, 29583, 'twenty-nine thousand five hundred eighty-three'), (9938, 98197, 'ninety-eight thousand one hundred ninety-seven'), (9939, 65908, 'sixty-five thousand nine hundred eight'), (9940, 87238, 'eighty-seven thousand two hundred thirty-eight'), (9941, 54069, 'fifty-four thousand sixty-nine'), (9942, 23443, 'twenty-three thousand four hundred forty-three'), (9943, 10265, 'ten thousand two hundred sixty-five'), (9944, 94297, 'ninety-four thousand two hundred ninety-seven'), (9945, 54499, 'fifty-four thousand four hundred ninety-nine'), (9946, 10995, 'ten thousand nine hundred ninety-five'), (9947, 16429, 'sixteen thousand four hundred twenty-nine'), (9948, 45090, 'forty-five thousand ninety'), (9949, 2196, 'two thousand one hundred ninety-six'), (9950, 15974, 'fifteen thousand nine hundred seventy-four'), (9951, 72950, 'seventy-two thousand nine hundred fifty'), (9952, 86199, 'eighty-six thousand one hundred ninety-nine'), (9953, 8768, 'eight thousand seven hundred sixty-eight'), (9954, 94335, 'ninety-four thousand three hundred thirty-five'), (9955, 73289, 'seventy-three thousand two hundred eighty-nine'), (9956, 8369, 'eight thousand three hundred sixty-nine'), (9957, 20192, 'twenty thousand one hundred ninety-two'), (9958, 70239, 'seventy thousand two hundred thirty-nine'), (9959, 52640, 'fifty-two thousand six hundred forty'), (9960, 42186, 'forty-two thousand one hundred eighty-six'), (9961, 94872, 'ninety-four thousand eight hundred seventy-two'), (9962, 63106, 'sixty-three thousand one hundred six'), (9963, 92597, 'ninety-two thousand five hundred ninety-seven'), (9964, 98430, 'ninety-eight thousand four hundred thirty'), (9965, 33505, 'thirty-three thousand five hundred five'), (9966, 10796, 'ten thousand seven hundred ninety-six'), (9967, 45097, 'forty-five thousand ninety-seven'), (9968, 60873, 'sixty thousand eight hundred seventy-three'), (9969, 72539, 'seventy-two thousand five hundred thirty-nine'), (9970, 74421, 'seventy-four thousand four hundred twenty-one'), (9971, 11566, 'eleven thousand five hundred sixty-six'), (9972, 45366, 'forty-five thousand three hundred sixty-six'), (9973, 10507, 'ten thousand five hundred seven'), (9974, 40969, 'forty thousand nine hundred sixty-nine'), (9975, 26089, 'twenty-six thousand eighty-nine'), (9976, 94907, 'ninety-four thousand nine hundred seven'), (9977, 67663, 'sixty-seven thousand six hundred sixty-three'), (9978, 59388, 'fifty-nine thousand three hundred eighty-eight'), (9979, 67936, 'sixty-seven thousand nine hundred thirty-six'), (9980, 1514, 'one thousand five hundred fourteen'), (9981, 83008, 'eighty-three thousand eight'), (9982, 52449, 'fifty-two thousand four hundred forty-nine'), (9983, 35805, 'thirty-five thousand eight hundred five'), (9984, 89354, 'eighty-nine thousand three hundred fifty-four'), (9985, 28275, 'twenty-eight thousand two hundred seventy-five'), (9986, 86168, 'eighty-six thousand one hundred sixty-eight'), (9987, 70733, 'seventy thousand seven hundred thirty-three'), (9988, 1525, 'one thousand five hundred twenty-five'), (9989, 88430, 'eighty-eight thousand four hundred thirty'), (9990, 93781, 'ninety-three thousand seven hundred eighty-one'), (9991, 83529, 'eighty-three thousand five hundred twenty-nine'), (9992, 15257, 'fifteen thousand two hundred fifty-seven'), (9993, 66222, 'sixty-six thousand two hundred twenty-two'), (9994, 12762, 'twelve thousand seven hundred sixty-two'), (9995, 32485, 'thirty-two thousand four hundred eighty-five'), (9996, 25438, 'twenty-five thousand four hundred thirty-eight'), (9997, 7362, 'seven thousand three hundred sixty-two'), (9998, 9721, 'nine thousand seven hundred twenty-one'), (9999, 44707, 'forty-four thousand seven hundred seven'), (10000, 43668, 'forty-three thousand six hundred sixty-eight'), (10001, 93422, 'ninety-three thousand four hundred twenty-two'), (10002, 78511, 'seventy-eight thousand five hundred eleven'), (10003, 79651, 'seventy-nine thousand six hundred fifty-one'), (10004, 37643, 'thirty-seven thousand six hundred forty-three'), (10005, 78783, 'seventy-eight thousand seven hundred eighty-three'), (10006, 18116, 'eighteen thousand one hundred sixteen'), (10007, 71239, 'seventy-one thousand two hundred thirty-nine'), (10008, 18194, 'eighteen thousand one hundred ninety-four'), (10009, 51355, 'fifty-one thousand three hundred fifty-five'), (10010, 98261, 'ninety-eight thousand two hundred sixty-one'), (10011, 83984, 'eighty-three thousand nine hundred eighty-four'), (10012, 44407, 'forty-four thousand four hundred seven'), (10013, 19078, 'nineteen thousand seventy-eight'), (10014, 70902, 'seventy thousand nine hundred two'), (10015, 16982, 'sixteen thousand nine hundred eighty-two'), (10016, 95419, 'ninety-five thousand four hundred nineteen'), (10017, 33354, 'thirty-three thousand three hundred fifty-four'), (10018, 50334, 'fifty thousand three hundred thirty-four'), (10019, 82156, 'eighty-two thousand one hundred fifty-six'), (10020, 89745, 'eighty-nine thousand seven hundred forty-five'), (10021, 20522, 'twenty thousand five hundred twenty-two'), (10022, 63411, 'sixty-three thousand four hundred eleven'), (10023, 54961, 'fifty-four thousand nine hundred sixty-one'), (10024, 40258, 'forty thousand two hundred fifty-eight'), (10025, 46240, 'forty-six thousand two hundred forty'), (10026, 24737, 'twenty-four thousand seven hundred thirty-seven'), (10027, 45625, 'forty-five thousand six hundred twenty-five'), (10028, 88518, 'eighty-eight thousand five hundred eighteen'), (10029, 37460, 'thirty-seven thousand four hundred sixty'), (10030, 94325, 'ninety-four thousand three hundred twenty-five'), (10031, 37456, 'thirty-seven thousand four hundred fifty-six'), (10032, 40991, 'forty thousand nine hundred ninety-one'), (10033, 96882, 'ninety-six thousand eight hundred eighty-two'), (10034, 96794, 'ninety-six thousand seven hundred ninety-four'), (10035, 10767, 'ten thousand seven hundred sixty-seven'), (10036, 29290, 'twenty-nine thousand two hundred ninety'), (10037, 85526, 'eighty-five thousand five hundred twenty-six'), (10038, 77321, 'seventy-seven thousand three hundred twenty-one'), (10039, 22133, 'twenty-two thousand one hundred thirty-three'), (10040, 40317, 'forty thousand three hundred seventeen'), (10041, 60739, 'sixty thousand seven hundred thirty-nine'), (10042, 51801, 'fifty-one thousand eight hundred one'), (10043, 69537, 'sixty-nine thousand five hundred thirty-seven'), (10044, 31020, 'thirty-one thousand twenty'), (10045, 7191, 'seven thousand one hundred ninety-one'), (10046, 14202, 'fourteen thousand two hundred two'), (10047, 27420, 'twenty-seven thousand four hundred twenty'), (10048, 59056, 'fifty-nine thousand fifty-six'), (10049, 13581, 'thirteen thousand five hundred eighty-one'), (10050, 43958, 'forty-three thousand nine hundred fifty-eight'), (10051, 95227, 'ninety-five thousand two hundred twenty-seven'), (10052, 29350, 'twenty-nine thousand three hundred fifty'), (10053, 5887, 'five thousand eight hundred eighty-seven'), (10054, 2986, 'two thousand nine hundred eighty-six'), (10055, 95791, 'ninety-five thousand seven hundred ninety-one'), (10056, 35488, 'thirty-five thousand four hundred eighty-eight'), (10057, 65926, 'sixty-five thousand nine hundred twenty-six'), (10058, 26652, 'twenty-six thousand six hundred fifty-two'), (10059, 75019, 'seventy-five thousand nineteen'), (10060, 48662, 'forty-eight thousand six hundred sixty-two'), (10061, 25582, 'twenty-five thousand five hundred eighty-two'), (10062, 62775, 'sixty-two thousand seven hundred seventy-five'), (10063, 82872, 'eighty-two thousand eight hundred seventy-two'), (10064, 87807, 'eighty-seven thousand eight hundred seven'), (10065, 82316, 'eighty-two thousand three hundred sixteen'), (10066, 36033, 'thirty-six thousand thirty-three'), (10067, 64136, 'sixty-four thousand one hundred thirty-six'), (10068, 36927, 'thirty-six thousand nine hundred twenty-seven'), (10069, 27451, 'twenty-seven thousand four hundred fifty-one'), (10070, 18288, 'eighteen thousand two hundred eighty-eight'), (10071, 70862, 'seventy thousand eight hundred sixty-two'), (10072, 58332, 'fifty-eight thousand three hundred thirty-two'), (10073, 67341, 'sixty-seven thousand three hundred forty-one'), (10074, 14209, 'fourteen thousand two hundred nine'), (10075, 11369, 'eleven thousand three hundred sixty-nine'), (10076, 90453, 'ninety thousand four hundred fifty-three'), (10077, 89961, 'eighty-nine thousand nine hundred sixty-one'), (10078, 29873, 'twenty-nine thousand eight hundred seventy-three'), (10079, 95342, 'ninety-five thousand three hundred forty-two'), (10080, 28876, 'twenty-eight thousand eight hundred seventy-six'), (10081, 38591, 'thirty-eight thousand five hundred ninety-one'), (10082, 22255, 'twenty-two thousand two hundred fifty-five'), (10083, 32250, 'thirty-two thousand two hundred fifty'), (10084, 60760, 'sixty thousand seven hundred sixty'), (10085, 60606, 'sixty thousand six hundred six'), (10086, 28914, 'twenty-eight thousand nine hundred fourteen'), (10087, 48145, 'forty-eight thousand one hundred forty-five'), (10088, 67051, 'sixty-seven thousand fifty-one'), (10089, 80224, 'eighty thousand two hundred twenty-four'), (10090, 67729, 'sixty-seven thousand seven hundred twenty-nine'), (10091, 91224, 'ninety-one thousand two hundred twenty-four'), (10092, 25412, 'twenty-five thousand four hundred twelve'), (10093, 21678, 'twenty-one thousand six hundred seventy-eight'), (10094, 85068, 'eighty-five thousand sixty-eight'), (10095, 40462, 'forty thousand four hundred sixty-two'), (10096, 6854, 'six thousand eight hundred fifty-four'), (10097, 31721, 'thirty-one thousand seven hundred twenty-one'), (10098, 12954, 'twelve thousand nine hundred fifty-four'), (10099, 22132, 'twenty-two thousand one hundred thirty-two'), (10100, 11088, 'eleven thousand eighty-eight'), (10101, 56936, 'fifty-six thousand nine hundred thirty-six'), (10102, 4088, 'four thousand eighty-eight'), (10103, 71434, 'seventy-one thousand four hundred thirty-four'), (10104, 30525, 'thirty thousand five hundred twenty-five'), (10105, 10768, 'ten thousand seven hundred sixty-eight'), (10106, 59864, 'fifty-nine thousand eight hundred sixty-four'), (10107, 86995, 'eighty-six thousand nine hundred ninety-five'), (10108, 46828, 'forty-six thousand eight hundred twenty-eight'), (10109, 92437, 'ninety-two thousand four hundred thirty-seven'), (10110, 67956, 'sixty-seven thousand nine hundred fifty-six'), (10111, 3135, 'three thousand one hundred thirty-five'), (10112, 17166, 'seventeen thousand one hundred sixty-six'), (10113, 95375, 'ninety-five thousand three hundred seventy-five'), (10114, 10317, 'ten thousand three hundred seventeen'), (10115, 92095, 'ninety-two thousand ninety-five'), (10116, 15089, 'fifteen thousand eighty-nine'), (10117, 22295, 'twenty-two thousand two hundred ninety-five'), (10118, 69161, 'sixty-nine thousand one hundred sixty-one'), (10119, 6487, 'six thousand four hundred eighty-seven'), (10120, 10844, 'ten thousand eight hundred forty-four'), (10121, 96110, 'ninety-six thousand one hundred ten'), (10122, 18819, 'eighteen thousand eight hundred nineteen'), (10123, 10972, 'ten thousand nine hundred seventy-two'), (10124, 33732, 'thirty-three thousand seven hundred thirty-two'), (10125, 52138, 'fifty-two thousand one hundred thirty-eight'), (10126, 48624, 'forty-eight thousand six hundred twenty-four'), (10127, 94840, 'ninety-four thousand eight hundred forty'), (10128, 42108, 'forty-two thousand one hundred eight'), (10129, 41793, 'forty-one thousand seven hundred ninety-three'), (10130, 64579, 'sixty-four thousand five hundred seventy-nine'), (10131, 41902, 'forty-one thousand nine hundred two'), (10132, 9141, 'nine thousand one hundred forty-one'), (10133, 69247, 'sixty-nine thousand two hundred forty-seven'), (10134, 64837, 'sixty-four thousand eight hundred thirty-seven'), (10135, 44654, 'forty-four thousand six hundred fifty-four'), (10136, 17940, 'seventeen thousand nine hundred forty'), (10137, 67097, 'sixty-seven thousand ninety-seven'), (10138, 94388, 'ninety-four thousand three hundred eighty-eight'), (10139, 97454, 'ninety-seven thousand four hundred fifty-four'), (10140, 49395, 'forty-nine thousand three hundred ninety-five'), (10141, 28209, 'twenty-eight thousand two hundred nine'), (10142, 94587, 'ninety-four thousand five hundred eighty-seven'), (10143, 76900, 'seventy-six thousand nine hundred'), (10144, 50976, 'fifty thousand nine hundred seventy-six'), (10145, 42009, 'forty-two thousand nine'), (10146, 55337, 'fifty-five thousand three hundred thirty-seven'), (10147, 43386, 'forty-three thousand three hundred eighty-six'), (10148, 71133, 'seventy-one thousand one hundred thirty-three'), (10149, 18762, 'eighteen thousand seven hundred sixty-two'), (10150, 83631, 'eighty-three thousand six hundred thirty-one'), (10151, 48583, 'forty-eight thousand five hundred eighty-three'), (10152, 37275, 'thirty-seven thousand two hundred seventy-five'), (10153, 74334, 'seventy-four thousand three hundred thirty-four'), (10154, 2982, 'two thousand nine hundred eighty-two'), (10155, 6976, 'six thousand nine hundred seventy-six'), (10156, 39273, 'thirty-nine thousand two hundred seventy-three'), (10157, 27624, 'twenty-seven thousand six hundred twenty-four'), (10158, 98848, 'ninety-eight thousand eight hundred forty-eight'), (10159, 27469, 'twenty-seven thousand four hundred sixty-nine'), (10160, 84326, 'eighty-four thousand three hundred twenty-six'), (10161, 63020, 'sixty-three thousand twenty'), (10162, 75022, 'seventy-five thousand twenty-two'), (10163, 27420, 'twenty-seven thousand four hundred twenty'), (10164, 41052, 'forty-one thousand fifty-two'), (10165, 21534, 'twenty-one thousand five hundred thirty-four'), (10166, 71154, 'seventy-one thousand one hundred fifty-four'), (10167, 98187, 'ninety-eight thousand one hundred eighty-seven'), (10168, 67507, 'sixty-seven thousand five hundred seven'), (10169, 29966, 'twenty-nine thousand nine hundred sixty-six'), (10170, 25408, 'twenty-five thousand four hundred eight'), (10171, 18694, 'eighteen thousand six hundred ninety-four'), (10172, 44142, 'forty-four thousand one hundred forty-two'), (10173, 89828, 'eighty-nine thousand eight hundred twenty-eight'), (10174, 42489, 'forty-two thousand four hundred eighty-nine'), (10175, 56553, 'fifty-six thousand five hundred fifty-three'), (10176, 21233, 'twenty-one thousand two hundred thirty-three'), (10177, 71442, 'seventy-one thousand four hundred forty-two'), (10178, 94227, 'ninety-four thousand two hundred twenty-seven'), (10179, 31597, 'thirty-one thousand five hundred ninety-seven'), (10180, 93967, 'ninety-three thousand nine hundred sixty-seven'), (10181, 60897, 'sixty thousand eight hundred ninety-seven'), (10182, 43723, 'forty-three thousand seven hundred twenty-three'), (10183, 82011, 'eighty-two thousand eleven'), (10184, 86358, 'eighty-six thousand three hundred fifty-eight'), (10185, 78704, 'seventy-eight thousand seven hundred four'), (10186, 51381, 'fifty-one thousand three hundred eighty-one'), (10187, 9489, 'nine thousand four hundred eighty-nine'), (10188, 32395, 'thirty-two thousand three hundred ninety-five'), (10189, 66736, 'sixty-six thousand seven hundred thirty-six'), (10190, 72421, 'seventy-two thousand four hundred twenty-one'), (10191, 20505, 'twenty thousand five hundred five'), (10192, 60892, 'sixty thousand eight hundred ninety-two'), (10193, 86125, 'eighty-six thousand one hundred twenty-five'), (10194, 16480, 'sixteen thousand four hundred eighty'), (10195, 67149, 'sixty-seven thousand one hundred forty-nine'), (10196, 49960, 'forty-nine thousand nine hundred sixty'), (10197, 43029, 'forty-three thousand twenty-nine'), (10198, 5057, 'five thousand fifty-seven'), (10199, 29649, 'twenty-nine thousand six hundred forty-nine'), (10200, 62197, 'sixty-two thousand one hundred ninety-seven'), (10201, 98587, 'ninety-eight thousand five hundred eighty-seven'), (10202, 32622, 'thirty-two thousand six hundred twenty-two'), (10203, 31145, 'thirty-one thousand one hundred forty-five'), (10204, 56582, 'fifty-six thousand five hundred eighty-two'), (10205, 8708, 'eight thousand seven hundred eight'), (10206, 80782, 'eighty thousand seven hundred eighty-two'), (10207, 1834, 'one thousand eight hundred thirty-four'), (10208, 21888, 'twenty-one thousand eight hundred eighty-eight'), (10209, 52793, 'fifty-two thousand seven hundred ninety-three'), (10210, 98913, 'ninety-eight thousand nine hundred thirteen'), (10211, 788, 'seven hundred eighty-eight'), (10212, 78848, 'seventy-eight thousand eight hundred forty-eight'), (10213, 43230, 'forty-three thousand two hundred thirty'), (10214, 8799, 'eight thousand seven hundred ninety-nine'), (10215, 54038, 'fifty-four thousand thirty-eight'), (10216, 92344, 'ninety-two thousand three hundred forty-four'), (10217, 19882, 'nineteen thousand eight hundred eighty-two'), (10218, 66941, 'sixty-six thousand nine hundred forty-one'), (10219, 90274, 'ninety thousand two hundred seventy-four'), (10220, 70729, 'seventy thousand seven hundred twenty-nine'), (10221, 41013, 'forty-one thousand thirteen'), (10222, 65717, 'sixty-five thousand seven hundred seventeen'), (10223, 6157, 'six thousand one hundred fifty-seven'), (10224, 52191, 'fifty-two thousand one hundred ninety-one'), (10225, 77086, 'seventy-seven thousand eighty-six'), (10226, 92092, 'ninety-two thousand ninety-two'), (10227, 98823, 'ninety-eight thousand eight hundred twenty-three'), (10228, 19498, 'nineteen thousand four hundred ninety-eight'), (10229, 14181, 'fourteen thousand one hundred eighty-one'), (10230, 53665, 'fifty-three thousand six hundred sixty-five'), (10231, 38861, 'thirty-eight thousand eight hundred sixty-one'), (10232, 512, 'five hundred twelve'), (10233, 99022, 'ninety-nine thousand twenty-two'), (10234, 77947, 'seventy-seven thousand nine hundred forty-seven'), (10235, 45582, 'forty-five thousand five hundred eighty-two'), (10236, 17177, 'seventeen thousand one hundred seventy-seven'), (10237, 83840, 'eighty-three thousand eight hundred forty'), (10238, 92528, 'ninety-two thousand five hundred twenty-eight'), (10239, 22333, 'twenty-two thousand three hundred thirty-three'), (10240, 80183, 'eighty thousand one hundred eighty-three'), (10241, 91124, 'ninety-one thousand one hundred twenty-four'), (10242, 50219, 'fifty thousand two hundred nineteen'), (10243, 86522, 'eighty-six thousand five hundred twenty-two'), (10244, 91434, 'ninety-one thousand four hundred thirty-four'), (10245, 43887, 'forty-three thousand eight hundred eighty-seven'), (10246, 33478, 'thirty-three thousand four hundred seventy-eight'), (10247, 62924, 'sixty-two thousand nine hundred twenty-four'), (10248, 89057, 'eighty-nine thousand fifty-seven'), (10249, 46407, 'forty-six thousand four hundred seven'), (10250, 90629, 'ninety thousand six hundred twenty-nine'), (10251, 63581, 'sixty-three thousand five hundred eighty-one'), (10252, 5364, 'five thousand three hundred sixty-four'), (10253, 22919, 'twenty-two thousand nine hundred nineteen'), (10254, 93301, 'ninety-three thousand three hundred one'), (10255, 47925, 'forty-seven thousand nine hundred twenty-five'), (10256, 62950, 'sixty-two thousand nine hundred fifty'), (10257, 72924, 'seventy-two thousand nine hundred twenty-four'), (10258, 55715, 'fifty-five thousand seven hundred fifteen'), (10259, 29794, 'twenty-nine thousand seven hundred ninety-four'), (10260, 87159, 'eighty-seven thousand one hundred fifty-nine'), (10261, 35726, 'thirty-five thousand seven hundred twenty-six'), (10262, 25290, 'twenty-five thousand two hundred ninety'), (10263, 71038, 'seventy-one thousand thirty-eight'), (10264, 27862, 'twenty-seven thousand eight hundred sixty-two'), (10265, 23841, 'twenty-three thousand eight hundred forty-one'), (10266, 60438, 'sixty thousand four hundred thirty-eight'), (10267, 83993, 'eighty-three thousand nine hundred ninety-three'), (10268, 62405, 'sixty-two thousand four hundred five'), (10269, 24054, 'twenty-four thousand fifty-four'), (10270, 57272, 'fifty-seven thousand two hundred seventy-two'), (10271, 11856, 'eleven thousand eight hundred fifty-six'), (10272, 57422, 'fifty-seven thousand four hundred twenty-two'), (10273, 11750, 'eleven thousand seven hundred fifty'), (10274, 73859, 'seventy-three thousand eight hundred fifty-nine'), (10275, 68654, 'sixty-eight thousand six hundred fifty-four'), (10276, 20089, 'twenty thousand eighty-nine'), (10277, 59911, 'fifty-nine thousand nine hundred eleven'), (10278, 49931, 'forty-nine thousand nine hundred thirty-one'), (10279, 54876, 'fifty-four thousand eight hundred seventy-six'), (10280, 46280, 'forty-six thousand two hundred eighty'), (10281, 24422, 'twenty-four thousand four hundred twenty-two'), (10282, 48733, 'forty-eight thousand seven hundred thirty-three'), (10283, 13374, 'thirteen thousand three hundred seventy-four'), (10284, 57736, 'fifty-seven thousand seven hundred thirty-six'), (10285, 37380, 'thirty-seven thousand three hundred eighty'), (10286, 96731, 'ninety-six thousand seven hundred thirty-one'), (10287, 97572, 'ninety-seven thousand five hundred seventy-two'), (10288, 72194, 'seventy-two thousand one hundred ninety-four'), (10289, 44460, 'forty-four thousand four hundred sixty'), (10290, 53187, 'fifty-three thousand one hundred eighty-seven'), (10291, 8786, 'eight thousand seven hundred eighty-six'), (10292, 4737, 'four thousand seven hundred thirty-seven'), (10293, 68178, 'sixty-eight thousand one hundred seventy-eight'), (10294, 37344, 'thirty-seven thousand three hundred forty-four'), (10295, 49195, 'forty-nine thousand one hundred ninety-five'), (10296, 81421, 'eighty-one thousand four hundred twenty-one'), (10297, 97365, 'ninety-seven thousand three hundred sixty-five'), (10298, 87319, 'eighty-seven thousand three hundred nineteen'), (10299, 30615, 'thirty thousand six hundred fifteen'), (10300, 86579, 'eighty-six thousand five hundred seventy-nine'), (10301, 40921, 'forty thousand nine hundred twenty-one'), (10302, 89272, 'eighty-nine thousand two hundred seventy-two'), (10303, 50023, 'fifty thousand twenty-three'), (10304, 95552, 'ninety-five thousand five hundred fifty-two'), (10305, 77200, 'seventy-seven thousand two hundred'), (10306, 80643, 'eighty thousand six hundred forty-three'), (10307, 88530, 'eighty-eight thousand five hundred thirty'), (10308, 52392, 'fifty-two thousand three hundred ninety-two'), (10309, 88186, 'eighty-eight thousand one hundred eighty-six'), (10310, 35070, 'thirty-five thousand seventy'), (10311, 72151, 'seventy-two thousand one hundred fifty-one'), (10312, 88942, 'eighty-eight thousand nine hundred forty-two'), (10313, 84646, 'eighty-four thousand six hundred forty-six'), (10314, 3944, 'three thousand nine hundred forty-four'), (10315, 20533, 'twenty thousand five hundred thirty-three'), (10316, 28512, 'twenty-eight thousand five hundred twelve'), (10317, 79617, 'seventy-nine thousand six hundred seventeen'), (10318, 345, 'three hundred forty-five'), (10319, 48197, 'forty-eight thousand one hundred ninety-seven'), (10320, 73820, 'seventy-three thousand eight hundred twenty'), (10321, 73203, 'seventy-three thousand two hundred three'), (10322, 79567, 'seventy-nine thousand five hundred sixty-seven'), (10323, 7196, 'seven thousand one hundred ninety-six'), (10324, 46206, 'forty-six thousand two hundred six'), (10325, 44181, 'forty-four thousand one hundred eighty-one'), (10326, 11792, 'eleven thousand seven hundred ninety-two'), (10327, 12881, 'twelve thousand eight hundred eighty-one'), (10328, 95524, 'ninety-five thousand five hundred twenty-four'), (10329, 72593, 'seventy-two thousand five hundred ninety-three'), (10330, 80211, 'eighty thousand two hundred eleven'), (10331, 48611, 'forty-eight thousand six hundred eleven'), (10332, 82047, 'eighty-two thousand forty-seven'), (10333, 77177, 'seventy-seven thousand one hundred seventy-seven'), (10334, 257, 'two hundred fifty-seven'), (10335, 36466, 'thirty-six thousand four hundred sixty-six'), (10336, 14574, 'fourteen thousand five hundred seventy-four'), (10337, 45098, 'forty-five thousand ninety-eight'), (10338, 77630, 'seventy-seven thousand six hundred thirty'), (10339, 71570, 'seventy-one thousand five hundred seventy'), (10340, 97718, 'ninety-seven thousand seven hundred eighteen'), (10341, 47146, 'forty-seven thousand one hundred forty-six'), (10342, 29410, 'twenty-nine thousand four hundred ten'), (10343, 4725, 'four thousand seven hundred twenty-five'), (10344, 61692, 'sixty-one thousand six hundred ninety-two'), (10345, 91558, 'ninety-one thousand five hundred fifty-eight'), (10346, 77971, 'seventy-seven thousand nine hundred seventy-one'), (10347, 35749, 'thirty-five thousand seven hundred forty-nine'), (10348, 58875, 'fifty-eight thousand eight hundred seventy-five'), (10349, 22918, 'twenty-two thousand nine hundred eighteen'), (10350, 86802, 'eighty-six thousand eight hundred two'), (10351, 87662, 'eighty-seven thousand six hundred sixty-two'), (10352, 76394, 'seventy-six thousand three hundred ninety-four'), (10353, 2366, 'two thousand three hundred sixty-six'), (10354, 69310, 'sixty-nine thousand three hundred ten'), (10355, 14691, 'fourteen thousand six hundred ninety-one'), (10356, 39756, 'thirty-nine thousand seven hundred fifty-six'), (10357, 58155, 'fifty-eight thousand one hundred fifty-five'), (10358, 70934, 'seventy thousand nine hundred thirty-four'), (10359, 24249, 'twenty-four thousand two hundred forty-nine'), (10360, 67762, 'sixty-seven thousand seven hundred sixty-two'), (10361, 22437, 'twenty-two thousand four hundred thirty-seven'), (10362, 81112, 'eighty-one thousand one hundred twelve'), (10363, 51440, 'fifty-one thousand four hundred forty'), (10364, 94451, 'ninety-four thousand four hundred fifty-one'), (10365, 23046, 'twenty-three thousand forty-six'), (10366, 36970, 'thirty-six thousand nine hundred seventy'), (10367, 26965, 'twenty-six thousand nine hundred sixty-five'), (10368, 71037, 'seventy-one thousand thirty-seven'), (10369, 85529, 'eighty-five thousand five hundred twenty-nine'), (10370, 57720, 'fifty-seven thousand seven hundred twenty'), (10371, 68703, 'sixty-eight thousand seven hundred three'), (10372, 48093, 'forty-eight thousand ninety-three'), (10373, 32222, 'thirty-two thousand two hundred twenty-two'), (10374, 24780, 'twenty-four thousand seven hundred eighty'), (10375, 98605, 'ninety-eight thousand six hundred five'), (10376, 80788, 'eighty thousand seven hundred eighty-eight'), (10377, 78338, 'seventy-eight thousand three hundred thirty-eight'), (10378, 2806, 'two thousand eight hundred six'), (10379, 80487, 'eighty thousand four hundred eighty-seven'), (10380, 512, 'five hundred twelve'), (10381, 86173, 'eighty-six thousand one hundred seventy-three'), (10382, 82160, 'eighty-two thousand one hundred sixty'), (10383, 77475, 'seventy-seven thousand four hundred seventy-five'), (10384, 17441, 'seventeen thousand four hundred forty-one'), (10385, 9143, 'nine thousand one hundred forty-three'), (10386, 47682, 'forty-seven thousand six hundred eighty-two'), (10387, 45608, 'forty-five thousand six hundred eight'), (10388, 25793, 'twenty-five thousand seven hundred ninety-three'), (10389, 97514, 'ninety-seven thousand five hundred fourteen'), (10390, 68165, 'sixty-eight thousand one hundred sixty-five'), (10391, 69801, 'sixty-nine thousand eight hundred one'), (10392, 41587, 'forty-one thousand five hundred eighty-seven'), (10393, 13432, 'thirteen thousand four hundred thirty-two'), (10394, 89619, 'eighty-nine thousand six hundred nineteen'), (10395, 41244, 'forty-one thousand two hundred forty-four'), (10396, 83446, 'eighty-three thousand four hundred forty-six'), (10397, 30914, 'thirty thousand nine hundred fourteen'), (10398, 45369, 'forty-five thousand three hundred sixty-nine'), (10399, 81742, 'eighty-one thousand seven hundred forty-two'), (10400, 76009, 'seventy-six thousand nine'), (10401, 38569, 'thirty-eight thousand five hundred sixty-nine'), (10402, 13362, 'thirteen thousand three hundred sixty-two'), (10403, 84025, 'eighty-four thousand twenty-five'), (10404, 56985, 'fifty-six thousand nine hundred eighty-five'), (10405, 11889, 'eleven thousand eight hundred eighty-nine'), (10406, 74233, 'seventy-four thousand two hundred thirty-three'), (10407, 6279, 'six thousand two hundred seventy-nine'), (10408, 10398, 'ten thousand three hundred ninety-eight'), (10409, 54466, 'fifty-four thousand four hundred sixty-six'), (10410, 83572, 'eighty-three thousand five hundred seventy-two'), (10411, 68894, 'sixty-eight thousand eight hundred ninety-four'), (10412, 49574, 'forty-nine thousand five hundred seventy-four'), (10413, 32964, 'thirty-two thousand nine hundred sixty-four'), (10414, 55112, 'fifty-five thousand one hundred twelve'), (10415, 57379, 'fifty-seven thousand three hundred seventy-nine'), (10416, 56799, 'fifty-six thousand seven hundred ninety-nine'), (10417, 59788, 'fifty-nine thousand seven hundred eighty-eight'), (10418, 40118, 'forty thousand one hundred eighteen'), (10419, 9262, 'nine thousand two hundred sixty-two'), (10420, 91864, 'ninety-one thousand eight hundred sixty-four'), (10421, 83889, 'eighty-three thousand eight hundred eighty-nine'), (10422, 64947, 'sixty-four thousand nine hundred forty-seven'), (10423, 40464, 'forty thousand four hundred sixty-four'), (10424, 65685, 'sixty-five thousand six hundred eighty-five'), (10425, 1184, 'one thousand one hundred eighty-four'), (10426, 73744, 'seventy-three thousand seven hundred forty-four'), (10427, 43448, 'forty-three thousand four hundred forty-eight'), (10428, 9633, 'nine thousand six hundred thirty-three'), (10429, 82246, 'eighty-two thousand two hundred forty-six'), (10430, 44276, 'forty-four thousand two hundred seventy-six'), (10431, 98338, 'ninety-eight thousand three hundred thirty-eight'), (10432, 35746, 'thirty-five thousand seven hundred forty-six'), (10433, 34509, 'thirty-four thousand five hundred nine'), (10434, 50233, 'fifty thousand two hundred thirty-three'), (10435, 3988, 'three thousand nine hundred eighty-eight'), (10436, 62096, 'sixty-two thousand ninety-six'), (10437, 45120, 'forty-five thousand one hundred twenty'), (10438, 10384, 'ten thousand three hundred eighty-four'), (10439, 58412, 'fifty-eight thousand four hundred twelve'), (10440, 6210, 'six thousand two hundred ten'), (10441, 92060, 'ninety-two thousand sixty'), (10442, 22549, 'twenty-two thousand five hundred forty-nine'), (10443, 14654, 'fourteen thousand six hundred fifty-four'), (10444, 79862, 'seventy-nine thousand eight hundred sixty-two'), (10445, 13827, 'thirteen thousand eight hundred twenty-seven'), (10446, 70994, 'seventy thousand nine hundred ninety-four'), (10447, 29434, 'twenty-nine thousand four hundred thirty-four'), (10448, 27259, 'twenty-seven thousand two hundred fifty-nine'), (10449, 99804, 'ninety-nine thousand eight hundred four'), (10450, 45028, 'forty-five thousand twenty-eight'), (10451, 11398, 'eleven thousand three hundred ninety-eight'), (10452, 55444, 'fifty-five thousand four hundred forty-four'), (10453, 99800, 'ninety-nine thousand eight hundred'), (10454, 58161, 'fifty-eight thousand one hundred sixty-one'), (10455, 40784, 'forty thousand seven hundred eighty-four'), (10456, 95158, 'ninety-five thousand one hundred fifty-eight'), (10457, 82507, 'eighty-two thousand five hundred seven'), (10458, 61525, 'sixty-one thousand five hundred twenty-five'), (10459, 98305, 'ninety-eight thousand three hundred five'), (10460, 78610, 'seventy-eight thousand six hundred ten'), (10461, 887, 'eight hundred eighty-seven'), (10462, 30663, 'thirty thousand six hundred sixty-three'), (10463, 24156, 'twenty-four thousand one hundred fifty-six'), (10464, 89993, 'eighty-nine thousand nine hundred ninety-three'), (10465, 62451, 'sixty-two thousand four hundred fifty-one'), (10466, 32897, 'thirty-two thousand eight hundred ninety-seven'), (10467, 72206, 'seventy-two thousand two hundred six'), (10468, 85870, 'eighty-five thousand eight hundred seventy'), (10469, 10562, 'ten thousand five hundred sixty-two'), (10470, 90397, 'ninety thousand three hundred ninety-seven'), (10471, 40363, 'forty thousand three hundred sixty-three'), (10472, 43581, 'forty-three thousand five hundred eighty-one'), (10473, 63066, 'sixty-three thousand sixty-six'), (10474, 63630, 'sixty-three thousand six hundred thirty'), (10475, 59944, 'fifty-nine thousand nine hundred forty-four'), (10476, 79379, 'seventy-nine thousand three hundred seventy-nine'), (10477, 56319, 'fifty-six thousand three hundred nineteen'), (10478, 25832, 'twenty-five thousand eight hundred thirty-two'), (10479, 69714, 'sixty-nine thousand seven hundred fourteen'), (10480, 72589, 'seventy-two thousand five hundred eighty-nine'), (10481, 64426, 'sixty-four thousand four hundred twenty-six'), (10482, 15595, 'fifteen thousand five hundred ninety-five'), (10483, 94937, 'ninety-four thousand nine hundred thirty-seven'), (10484, 20544, 'twenty thousand five hundred forty-four'), (10485, 73212, 'seventy-three thousand two hundred twelve'), (10486, 78272, 'seventy-eight thousand two hundred seventy-two'), (10487, 96263, 'ninety-six thousand two hundred sixty-three'), (10488, 57888, 'fifty-seven thousand eight hundred eighty-eight'), (10489, 6577, 'six thousand five hundred seventy-seven'), (10490, 87243, 'eighty-seven thousand two hundred forty-three'), (10491, 45050, 'forty-five thousand fifty'), (10492, 47420, 'forty-seven thousand four hundred twenty'), (10493, 22551, 'twenty-two thousand five hundred fifty-one'), (10494, 79991, 'seventy-nine thousand nine hundred ninety-one'), (10495, 57365, 'fifty-seven thousand three hundred sixty-five'), (10496, 70310, 'seventy thousand three hundred ten'), (10497, 7280, 'seven thousand two hundred eighty'), (10498, 92371, 'ninety-two thousand three hundred seventy-one'), (10499, 94230, 'ninety-four thousand two hundred thirty'), (10500, 92527, 'ninety-two thousand five hundred twenty-seven'), (10501, 47272, 'forty-seven thousand two hundred seventy-two'), (10502, 3044, 'three thousand forty-four'), (10503, 36605, 'thirty-six thousand six hundred five'), (10504, 6326, 'six thousand three hundred twenty-six'), (10505, 46589, 'forty-six thousand five hundred eighty-nine'), (10506, 4232, 'four thousand two hundred thirty-two'), (10507, 13303, 'thirteen thousand three hundred three'), (10508, 18564, 'eighteen thousand five hundred sixty-four'), (10509, 35064, 'thirty-five thousand sixty-four'), (10510, 16968, 'sixteen thousand nine hundred sixty-eight'), (10511, 20300, 'twenty thousand three hundred'), (10512, 31944, 'thirty-one thousand nine hundred forty-four'), (10513, 15710, 'fifteen thousand seven hundred ten'), (10514, 99425, 'ninety-nine thousand four hundred twenty-five'), (10515, 57071, 'fifty-seven thousand seventy-one'), (10516, 42888, 'forty-two thousand eight hundred eighty-eight'), (10517, 90675, 'ninety thousand six hundred seventy-five'), (10518, 13798, 'thirteen thousand seven hundred ninety-eight'), (10519, 72321, 'seventy-two thousand three hundred twenty-one'), (10520, 70031, 'seventy thousand thirty-one'), (10521, 38013, 'thirty-eight thousand thirteen'), (10522, 29874, 'twenty-nine thousand eight hundred seventy-four'), (10523, 96220, 'ninety-six thousand two hundred twenty'), (10524, 21856, 'twenty-one thousand eight hundred fifty-six'), (10525, 28721, 'twenty-eight thousand seven hundred twenty-one'), (10526, 11024, 'eleven thousand twenty-four'), (10527, 26017, 'twenty-six thousand seventeen'), (10528, 2275, 'two thousand two hundred seventy-five'), (10529, 29804, 'twenty-nine thousand eight hundred four'), (10530, 41864, 'forty-one thousand eight hundred sixty-four'), (10531, 77439, 'seventy-seven thousand four hundred thirty-nine'), (10532, 37600, 'thirty-seven thousand six hundred'), (10533, 88606, 'eighty-eight thousand six hundred six'), (10534, 57478, 'fifty-seven thousand four hundred seventy-eight'), (10535, 96296, 'ninety-six thousand two hundred ninety-six'), (10536, 96516, 'ninety-six thousand five hundred sixteen'), (10537, 59728, 'fifty-nine thousand seven hundred twenty-eight'), (10538, 47356, 'forty-seven thousand three hundred fifty-six'), (10539, 22521, 'twenty-two thousand five hundred twenty-one'), (10540, 41674, 'forty-one thousand six hundred seventy-four'), (10541, 16290, 'sixteen thousand two hundred ninety'), (10542, 41543, 'forty-one thousand five hundred forty-three'), (10543, 44586, 'forty-four thousand five hundred eighty-six'), (10544, 90745, 'ninety thousand seven hundred forty-five'), (10545, 35670, 'thirty-five thousand six hundred seventy'), (10546, 67549, 'sixty-seven thousand five hundred forty-nine'), (10547, 730, 'seven hundred thirty'), (10548, 59043, 'fifty-nine thousand forty-three'), (10549, 73793, 'seventy-three thousand seven hundred ninety-three'), (10550, 98827, 'ninety-eight thousand eight hundred twenty-seven'), (10551, 71793, 'seventy-one thousand seven hundred ninety-three'), (10552, 29182, 'twenty-nine thousand one hundred eighty-two'), (10553, 176, 'one hundred seventy-six'), (10554, 21840, 'twenty-one thousand eight hundred forty'), (10555, 28531, 'twenty-eight thousand five hundred thirty-one'), (10556, 22179, 'twenty-two thousand one hundred seventy-nine'), (10557, 16960, 'sixteen thousand nine hundred sixty'), (10558, 64718, 'sixty-four thousand seven hundred eighteen'), (10559, 84285, 'eighty-four thousand two hundred eighty-five'), (10560, 73736, 'seventy-three thousand seven hundred thirty-six'), (10561, 3162, 'three thousand one hundred sixty-two'), (10562, 19906, 'nineteen thousand nine hundred six'), (10563, 82494, 'eighty-two thousand four hundred ninety-four'), (10564, 13709, 'thirteen thousand seven hundred nine'), (10565, 85142, 'eighty-five thousand one hundred forty-two'), (10566, 17599, 'seventeen thousand five hundred ninety-nine'), (10567, 58182, 'fifty-eight thousand one hundred eighty-two'), (10568, 97223, 'ninety-seven thousand two hundred twenty-three'), (10569, 43151, 'forty-three thousand one hundred fifty-one'), (10570, 92278, 'ninety-two thousand two hundred seventy-eight'), (10571, 15314, 'fifteen thousand three hundred fourteen'), (10572, 8992, 'eight thousand nine hundred ninety-two'), (10573, 49577, 'forty-nine thousand five hundred seventy-seven'), (10574, 84386, 'eighty-four thousand three hundred eighty-six'), (10575, 28630, 'twenty-eight thousand six hundred thirty'), (10576, 99953, 'ninety-nine thousand nine hundred fifty-three'), (10577, 80631, 'eighty thousand six hundred thirty-one'), (10578, 38218, 'thirty-eight thousand two hundred eighteen'), (10579, 39377, 'thirty-nine thousand three hundred seventy-seven'), (10580, 40538, 'forty thousand five hundred thirty-eight'), (10581, 20431, 'twenty thousand four hundred thirty-one'), (10582, 69201, 'sixty-nine thousand two hundred one'), (10583, 78909, 'seventy-eight thousand nine hundred nine'), (10584, 28408, 'twenty-eight thousand four hundred eight'), (10585, 59650, 'fifty-nine thousand six hundred fifty'), (10586, 79370, 'seventy-nine thousand three hundred seventy'), (10587, 89798, 'eighty-nine thousand seven hundred ninety-eight'), (10588, 53262, 'fifty-three thousand two hundred sixty-two'), (10589, 27597, 'twenty-seven thousand five hundred ninety-seven'), (10590, 66559, 'sixty-six thousand five hundred fifty-nine'), (10591, 67211, 'sixty-seven thousand two hundred eleven'), (10592, 7642, 'seven thousand six hundred forty-two'), (10593, 47231, 'forty-seven thousand two hundred thirty-one'), (10594, 18254, 'eighteen thousand two hundred fifty-four'), (10595, 41055, 'forty-one thousand fifty-five'), (10596, 28738, 'twenty-eight thousand seven hundred thirty-eight'), (10597, 44634, 'forty-four thousand six hundred thirty-four'), (10598, 31702, 'thirty-one thousand seven hundred two'), (10599, 97882, 'ninety-seven thousand eight hundred eighty-two'), (10600, 71255, 'seventy-one thousand two hundred fifty-five'), (10601, 69403, 'sixty-nine thousand four hundred three'), (10602, 72524, 'seventy-two thousand five hundred twenty-four'), (10603, 11006, 'eleven thousand six'), (10604, 77631, 'seventy-seven thousand six hundred thirty-one'), (10605, 56710, 'fifty-six thousand seven hundred ten'), (10606, 56683, 'fifty-six thousand six hundred eighty-three'), (10607, 7541, 'seven thousand five hundred forty-one'), (10608, 25996, 'twenty-five thousand nine hundred ninety-six'), (10609, 45750, 'forty-five thousand seven hundred fifty'), (10610, 77245, 'seventy-seven thousand two hundred forty-five'), (10611, 15069, 'fifteen thousand sixty-nine'), (10612, 40452, 'forty thousand four hundred fifty-two'), (10613, 11630, 'eleven thousand six hundred thirty'), (10614, 68728, 'sixty-eight thousand seven hundred twenty-eight'), (10615, 11092, 'eleven thousand ninety-two'), (10616, 67431, 'sixty-seven thousand four hundred thirty-one'), (10617, 58899, 'fifty-eight thousand eight hundred ninety-nine'), (10618, 92849, 'ninety-two thousand eight hundred forty-nine'), (10619, 68706, 'sixty-eight thousand seven hundred six'), (10620, 21084, 'twenty-one thousand eighty-four'), (10621, 48157, 'forty-eight thousand one hundred fifty-seven'), (10622, 69309, 'sixty-nine thousand three hundred nine'), (10623, 6823, 'six thousand eight hundred twenty-three'), (10624, 47851, 'forty-seven thousand eight hundred fifty-one'), (10625, 61922, 'sixty-one thousand nine hundred twenty-two'), (10626, 39528, 'thirty-nine thousand five hundred twenty-eight'), (10627, 83483, 'eighty-three thousand four hundred eighty-three'), (10628, 18146, 'eighteen thousand one hundred forty-six'), (10629, 28857, 'twenty-eight thousand eight hundred fifty-seven'), (10630, 60797, 'sixty thousand seven hundred ninety-seven'), (10631, 34235, 'thirty-four thousand two hundred thirty-five'), (10632, 7846, 'seven thousand eight hundred forty-six'), (10633, 82029, 'eighty-two thousand twenty-nine'), (10634, 34976, 'thirty-four thousand nine hundred seventy-six'), (10635, 64398, 'sixty-four thousand three hundred ninety-eight'), (10636, 89786, 'eighty-nine thousand seven hundred eighty-six'), (10637, 55503, 'fifty-five thousand five hundred three'), (10638, 9319, 'nine thousand three hundred nineteen'), (10639, 94828, 'ninety-four thousand eight hundred twenty-eight'), (10640, 37753, 'thirty-seven thousand seven hundred fifty-three'), (10641, 38692, 'thirty-eight thousand six hundred ninety-two'), (10642, 64692, 'sixty-four thousand six hundred ninety-two'), (10643, 74697, 'seventy-four thousand six hundred ninety-seven'), (10644, 17303, 'seventeen thousand three hundred three'), (10645, 63072, 'sixty-three thousand seventy-two'), (10646, 11344, 'eleven thousand three hundred forty-four'), (10647, 74468, 'seventy-four thousand four hundred sixty-eight'), (10648, 89290, 'eighty-nine thousand two hundred ninety'), (10649, 4172, 'four thousand one hundred seventy-two'), (10650, 60904, 'sixty thousand nine hundred four'), (10651, 14303, 'fourteen thousand three hundred three'), (10652, 77367, 'seventy-seven thousand three hundred sixty-seven'), (10653, 27700, 'twenty-seven thousand seven hundred'), (10654, 29665, 'twenty-nine thousand six hundred sixty-five'), (10655, 1738, 'one thousand seven hundred thirty-eight'), (10656, 32214, 'thirty-two thousand two hundred fourteen'), (10657, 72124, 'seventy-two thousand one hundred twenty-four'), (10658, 88569, 'eighty-eight thousand five hundred sixty-nine'), (10659, 75708, 'seventy-five thousand seven hundred eight'), (10660, 38860, 'thirty-eight thousand eight hundred sixty'), (10661, 59928, 'fifty-nine thousand nine hundred twenty-eight'), (10662, 37915, 'thirty-seven thousand nine hundred fifteen'), (10663, 83641, 'eighty-three thousand six hundred forty-one'), (10664, 92471, 'ninety-two thousand four hundred seventy-one'), (10665, 49483, 'forty-nine thousand four hundred eighty-three'), (10666, 43960, 'forty-three thousand nine hundred sixty'), (10667, 4448, 'four thousand four hundred forty-eight'), (10668, 69225, 'sixty-nine thousand two hundred twenty-five'), (10669, 59130, 'fifty-nine thousand one hundred thirty'), (10670, 72997, 'seventy-two thousand nine hundred ninety-seven'), (10671, 83128, 'eighty-three thousand one hundred twenty-eight'), (10672, 69655, 'sixty-nine thousand six hundred fifty-five'), (10673, 88838, 'eighty-eight thousand eight hundred thirty-eight'), (10674, 55192, 'fifty-five thousand one hundred ninety-two'), (10675, 38515, 'thirty-eight thousand five hundred fifteen'), (10676, 56034, 'fifty-six thousand thirty-four'), (10677, 65644, 'sixty-five thousand six hundred forty-four'), (10678, 89931, 'eighty-nine thousand nine hundred thirty-one'), (10679, 37174, 'thirty-seven thousand one hundred seventy-four'), (10680, 71928, 'seventy-one thousand nine hundred twenty-eight'), (10681, 26192, 'twenty-six thousand one hundred ninety-two'), (10682, 89994, 'eighty-nine thousand nine hundred ninety-four'), (10683, 24821, 'twenty-four thousand eight hundred twenty-one'), (10684, 52649, 'fifty-two thousand six hundred forty-nine'), (10685, 25694, 'twenty-five thousand six hundred ninety-four'), (10686, 72433, 'seventy-two thousand four hundred thirty-three'), (10687, 87725, 'eighty-seven thousand seven hundred twenty-five'), (10688, 13395, 'thirteen thousand three hundred ninety-five'), (10689, 25126, 'twenty-five thousand one hundred twenty-six'), (10690, 88564, 'eighty-eight thousand five hundred sixty-four'), (10691, 47447, 'forty-seven thousand four hundred forty-seven'), (10692, 50203, 'fifty thousand two hundred three'), (10693, 93609, 'ninety-three thousand six hundred nine'), (10694, 28282, 'twenty-eight thousand two hundred eighty-two'), (10695, 340, 'three hundred forty'), (10696, 56672, 'fifty-six thousand six hundred seventy-two'), (10697, 54043, 'fifty-four thousand forty-three'), (10698, 60470, 'sixty thousand four hundred seventy'), (10699, 36094, 'thirty-six thousand ninety-four'), (10700, 67389, 'sixty-seven thousand three hundred eighty-nine'), (10701, 63320, 'sixty-three thousand three hundred twenty'), (10702, 65356, 'sixty-five thousand three hundred fifty-six'), (10703, 76204, 'seventy-six thousand two hundred four'), (10704, 58666, 'fifty-eight thousand six hundred sixty-six'), (10705, 36466, 'thirty-six thousand four hundred sixty-six'), (10706, 4679, 'four thousand six hundred seventy-nine'), (10707, 27467, 'twenty-seven thousand four hundred sixty-seven'), (10708, 28724, 'twenty-eight thousand seven hundred twenty-four'), (10709, 27094, 'twenty-seven thousand ninety-four'), (10710, 59500, 'fifty-nine thousand five hundred'), (10711, 26473, 'twenty-six thousand four hundred seventy-three'), (10712, 14153, 'fourteen thousand one hundred fifty-three'), (10713, 88585, 'eighty-eight thousand five hundred eighty-five'), (10714, 97716, 'ninety-seven thousand seven hundred sixteen'), (10715, 48671, 'forty-eight thousand six hundred seventy-one'), (10716, 79805, 'seventy-nine thousand eight hundred five'), (10717, 56084, 'fifty-six thousand eighty-four'), (10718, 11175, 'eleven thousand one hundred seventy-five'), (10719, 23375, 'twenty-three thousand three hundred seventy-five'), (10720, 58311, 'fifty-eight thousand three hundred eleven'), (10721, 51404, 'fifty-one thousand four hundred four'), (10722, 67711, 'sixty-seven thousand seven hundred eleven'), (10723, 12209, 'twelve thousand two hundred nine'), (10724, 39613, 'thirty-nine thousand six hundred thirteen'), (10725, 87999, 'eighty-seven thousand nine hundred ninety-nine'), (10726, 3514, 'three thousand five hundred fourteen'), (10727, 18092, 'eighteen thousand ninety-two'), (10728, 43583, 'forty-three thousand five hundred eighty-three'), (10729, 23103, 'twenty-three thousand one hundred three'), (10730, 81384, 'eighty-one thousand three hundred eighty-four'), (10731, 26286, 'twenty-six thousand two hundred eighty-six'), (10732, 94855, 'ninety-four thousand eight hundred fifty-five'), (10733, 75849, 'seventy-five thousand eight hundred forty-nine'), (10734, 18198, 'eighteen thousand one hundred ninety-eight'), (10735, 92810, 'ninety-two thousand eight hundred ten'), (10736, 7140, 'seven thousand one hundred forty'), (10737, 75210, 'seventy-five thousand two hundred ten'), (10738, 10530, 'ten thousand five hundred thirty'), (10739, 24349, 'twenty-four thousand three hundred forty-nine'), (10740, 18551, 'eighteen thousand five hundred fifty-one'), (10741, 35815, 'thirty-five thousand eight hundred fifteen'), (10742, 55969, 'fifty-five thousand nine hundred sixty-nine'), (10743, 34475, 'thirty-four thousand four hundred seventy-five'), (10744, 52758, 'fifty-two thousand seven hundred fifty-eight'), (10745, 14418, 'fourteen thousand four hundred eighteen'), (10746, 84544, 'eighty-four thousand five hundred forty-four'), (10747, 92836, 'ninety-two thousand eight hundred thirty-six'), (10748, 19636, 'nineteen thousand six hundred thirty-six'), (10749, 63412, 'sixty-three thousand four hundred twelve'), (10750, 28284, 'twenty-eight thousand two hundred eighty-four'), (10751, 79234, 'seventy-nine thousand two hundred thirty-four'), (10752, 8164, 'eight thousand one hundred sixty-four'), (10753, 74914, 'seventy-four thousand nine hundred fourteen'), (10754, 31733, 'thirty-one thousand seven hundred thirty-three'), (10755, 69954, 'sixty-nine thousand nine hundred fifty-four'), (10756, 44118, 'forty-four thousand one hundred eighteen'), (10757, 73454, 'seventy-three thousand four hundred fifty-four'), (10758, 38685, 'thirty-eight thousand six hundred eighty-five'), (10759, 61503, 'sixty-one thousand five hundred three'), (10760, 6231, 'six thousand two hundred thirty-one'), (10761, 60366, 'sixty thousand three hundred sixty-six'), (10762, 50989, 'fifty thousand nine hundred eighty-nine'), (10763, 21423, 'twenty-one thousand four hundred twenty-three'), (10764, 78163, 'seventy-eight thousand one hundred sixty-three'), (10765, 4930, 'four thousand nine hundred thirty'), (10766, 68137, 'sixty-eight thousand one hundred thirty-seven'), (10767, 70190, 'seventy thousand one hundred ninety'), (10768, 24999, 'twenty-four thousand nine hundred ninety-nine'), (10769, 26462, 'twenty-six thousand four hundred sixty-two'), (10770, 22526, 'twenty-two thousand five hundred twenty-six'), (10771, 98808, 'ninety-eight thousand eight hundred eight'), (10772, 87470, 'eighty-seven thousand four hundred seventy'), (10773, 6252, 'six thousand two hundred fifty-two'), (10774, 37938, 'thirty-seven thousand nine hundred thirty-eight'), (10775, 88639, 'eighty-eight thousand six hundred thirty-nine'), (10776, 57730, 'fifty-seven thousand seven hundred thirty'), (10777, 28511, 'twenty-eight thousand five hundred eleven'), (10778, 66067, 'sixty-six thousand sixty-seven'), (10779, 18084, 'eighteen thousand eighty-four'), (10780, 67669, 'sixty-seven thousand six hundred sixty-nine'), (10781, 6972, 'six thousand nine hundred seventy-two'), (10782, 34181, 'thirty-four thousand one hundred eighty-one'), (10783, 89491, 'eighty-nine thousand four hundred ninety-one'), (10784, 99624, 'ninety-nine thousand six hundred twenty-four'), (10785, 72356, 'seventy-two thousand three hundred fifty-six'), (10786, 79924, 'seventy-nine thousand nine hundred twenty-four'), (10787, 23567, 'twenty-three thousand five hundred sixty-seven'), (10788, 83639, 'eighty-three thousand six hundred thirty-nine'), (10789, 89510, 'eighty-nine thousand five hundred ten'), (10790, 13745, 'thirteen thousand seven hundred forty-five'), (10791, 31065, 'thirty-one thousand sixty-five'), (10792, 30323, 'thirty thousand three hundred twenty-three'), (10793, 5997, 'five thousand nine hundred ninety-seven'), (10794, 55682, 'fifty-five thousand six hundred eighty-two'), (10795, 14852, 'fourteen thousand eight hundred fifty-two'), (10796, 31681, 'thirty-one thousand six hundred eighty-one'), (10797, 62939, 'sixty-two thousand nine hundred thirty-nine'), (10798, 12121, 'twelve thousand one hundred twenty-one'), (10799, 94852, 'ninety-four thousand eight hundred fifty-two'), (10800, 99297, 'ninety-nine thousand two hundred ninety-seven'), (10801, 34861, 'thirty-four thousand eight hundred sixty-one'), (10802, 79531, 'seventy-nine thousand five hundred thirty-one'), (10803, 89549, 'eighty-nine thousand five hundred forty-nine'), (10804, 43943, 'forty-three thousand nine hundred forty-three'), (10805, 42746, 'forty-two thousand seven hundred forty-six'), (10806, 41285, 'forty-one thousand two hundred eighty-five'), (10807, 92272, 'ninety-two thousand two hundred seventy-two'), (10808, 1800, 'one thousand eight hundred'), (10809, 99991, 'ninety-nine thousand nine hundred ninety-one'), (10810, 21516, 'twenty-one thousand five hundred sixteen'), (10811, 36026, 'thirty-six thousand twenty-six'), (10812, 21447, 'twenty-one thousand four hundred forty-seven'), (10813, 50457, 'fifty thousand four hundred fifty-seven'), (10814, 3694, 'three thousand six hundred ninety-four'), (10815, 82787, 'eighty-two thousand seven hundred eighty-seven'), (10816, 54403, 'fifty-four thousand four hundred three'), (10817, 84102, 'eighty-four thousand one hundred two'), (10818, 38996, 'thirty-eight thousand nine hundred ninety-six'), (10819, 15596, 'fifteen thousand five hundred ninety-six'), (10820, 43086, 'forty-three thousand eighty-six'), (10821, 50109, 'fifty thousand one hundred nine'), (10822, 79831, 'seventy-nine thousand eight hundred thirty-one'), (10823, 96309, 'ninety-six thousand three hundred nine'), (10824, 86256, 'eighty-six thousand two hundred fifty-six'), (10825, 3893, 'three thousand eight hundred ninety-three'), (10826, 79264, 'seventy-nine thousand two hundred sixty-four'), (10827, 76783, 'seventy-six thousand seven hundred eighty-three'), (10828, 19945, 'nineteen thousand nine hundred forty-five'), (10829, 77444, 'seventy-seven thousand four hundred forty-four'), (10830, 77707, 'seventy-seven thousand seven hundred seven'), (10831, 22474, 'twenty-two thousand four hundred seventy-four'), (10832, 69607, 'sixty-nine thousand six hundred seven'), (10833, 13592, 'thirteen thousand five hundred ninety-two'), (10834, 63966, 'sixty-three thousand nine hundred sixty-six'), (10835, 99606, 'ninety-nine thousand six hundred six'), (10836, 76777, 'seventy-six thousand seven hundred seventy-seven'), (10837, 60483, 'sixty thousand four hundred eighty-three'), (10838, 83488, 'eighty-three thousand four hundred eighty-eight'), (10839, 16832, 'sixteen thousand eight hundred thirty-two'), (10840, 95683, 'ninety-five thousand six hundred eighty-three'), (10841, 92213, 'ninety-two thousand two hundred thirteen'), (10842, 52507, 'fifty-two thousand five hundred seven'), (10843, 72085, 'seventy-two thousand eighty-five'), (10844, 86689, 'eighty-six thousand six hundred eighty-nine'), (10845, 48476, 'forty-eight thousand four hundred seventy-six'), (10846, 53168, 'fifty-three thousand one hundred sixty-eight'), (10847, 27474, 'twenty-seven thousand four hundred seventy-four'), (10848, 42524, 'forty-two thousand five hundred twenty-four'), (10849, 23269, 'twenty-three thousand two hundred sixty-nine'), (10850, 79452, 'seventy-nine thousand four hundred fifty-two'), (10851, 69910, 'sixty-nine thousand nine hundred ten'), (10852, 16739, 'sixteen thousand seven hundred thirty-nine'), (10853, 48765, 'forty-eight thousand seven hundred sixty-five'), (10854, 66684, 'sixty-six thousand six hundred eighty-four'), (10855, 83353, 'eighty-three thousand three hundred fifty-three'), (10856, 18824, 'eighteen thousand eight hundred twenty-four'), (10857, 64499, 'sixty-four thousand four hundred ninety-nine'), (10858, 1897, 'one thousand eight hundred ninety-seven'), (10859, 24645, 'twenty-four thousand six hundred forty-five'), (10860, 84415, 'eighty-four thousand four hundred fifteen'), (10861, 80293, 'eighty thousand two hundred ninety-three'), (10862, 83655, 'eighty-three thousand six hundred fifty-five'), (10863, 77079, 'seventy-seven thousand seventy-nine'), (10864, 87494, 'eighty-seven thousand four hundred ninety-four'), (10865, 20426, 'twenty thousand four hundred twenty-six'), (10866, 25450, 'twenty-five thousand four hundred fifty'), (10867, 46757, 'forty-six thousand seven hundred fifty-seven'), (10868, 6326, 'six thousand three hundred twenty-six'), (10869, 76854, 'seventy-six thousand eight hundred fifty-four'), (10870, 42256, 'forty-two thousand two hundred fifty-six'), (10871, 28333, 'twenty-eight thousand three hundred thirty-three'), (10872, 76827, 'seventy-six thousand eight hundred twenty-seven'), (10873, 56774, 'fifty-six thousand seven hundred seventy-four'), (10874, 20271, 'twenty thousand two hundred seventy-one'), (10875, 33737, 'thirty-three thousand seven hundred thirty-seven'), (10876, 49849, 'forty-nine thousand eight hundred forty-nine'), (10877, 71387, 'seventy-one thousand three hundred eighty-seven'), (10878, 84244, 'eighty-four thousand two hundred forty-four'), (10879, 23404, 'twenty-three thousand four hundred four'), (10880, 57105, 'fifty-seven thousand one hundred five'), (10881, 10308, 'ten thousand three hundred eight'), (10882, 53225, 'fifty-three thousand two hundred twenty-five'), (10883, 22316, 'twenty-two thousand three hundred sixteen'), (10884, 55519, 'fifty-five thousand five hundred nineteen'), (10885, 62031, 'sixty-two thousand thirty-one'), (10886, 98416, 'ninety-eight thousand four hundred sixteen'), (10887, 78805, 'seventy-eight thousand eight hundred five'), (10888, 91010, 'ninety-one thousand ten'), (10889, 91909, 'ninety-one thousand nine hundred nine'), (10890, 24768, 'twenty-four thousand seven hundred sixty-eight'), (10891, 7446, 'seven thousand four hundred forty-six'), (10892, 68281, 'sixty-eight thousand two hundred eighty-one'), (10893, 56866, 'fifty-six thousand eight hundred sixty-six'), (10894, 87152, 'eighty-seven thousand one hundred fifty-two'), (10895, 27620, 'twenty-seven thousand six hundred twenty'), (10896, 97035, 'ninety-seven thousand thirty-five'), (10897, 60815, 'sixty thousand eight hundred fifteen'), (10898, 6009, 'six thousand nine'), (10899, 14173, 'fourteen thousand one hundred seventy-three'), (10900, 29077, 'twenty-nine thousand seventy-seven'), (10901, 12808, 'twelve thousand eight hundred eight'), (10902, 39829, 'thirty-nine thousand eight hundred twenty-nine'), (10903, 97966, 'ninety-seven thousand nine hundred sixty-six'), (10904, 687, 'six hundred eighty-seven'), (10905, 16722, 'sixteen thousand seven hundred twenty-two'), (10906, 52339, 'fifty-two thousand three hundred thirty-nine'), (10907, 11129, 'eleven thousand one hundred twenty-nine'), (10908, 12667, 'twelve thousand six hundred sixty-seven'), (10909, 76205, 'seventy-six thousand two hundred five'), (10910, 95793, 'ninety-five thousand seven hundred ninety-three'), (10911, 24445, 'twenty-four thousand four hundred forty-five'), (10912, 5669, 'five thousand six hundred sixty-nine'), (10913, 50407, 'fifty thousand four hundred seven'), (10914, 22850, 'twenty-two thousand eight hundred fifty'), (10915, 20959, 'twenty thousand nine hundred fifty-nine'), (10916, 36678, 'thirty-six thousand six hundred seventy-eight'), (10917, 31718, 'thirty-one thousand seven hundred eighteen'), (10918, 77318, 'seventy-seven thousand three hundred eighteen'), (10919, 30829, 'thirty thousand eight hundred twenty-nine'), (10920, 21796, 'twenty-one thousand seven hundred ninety-six'), (10921, 43332, 'forty-three thousand three hundred thirty-two'), (10922, 85776, 'eighty-five thousand seven hundred seventy-six'), (10923, 88671, 'eighty-eight thousand six hundred seventy-one'), (10924, 13810, 'thirteen thousand eight hundred ten'), (10925, 45766, 'forty-five thousand seven hundred sixty-six'), (10926, 13213, 'thirteen thousand two hundred thirteen'), (10927, 46815, 'forty-six thousand eight hundred fifteen'), (10928, 17776, 'seventeen thousand seven hundred seventy-six'), (10929, 79604, 'seventy-nine thousand six hundred four'), (10930, 56394, 'fifty-six thousand three hundred ninety-four'), (10931, 97400, 'ninety-seven thousand four hundred'), (10932, 88192, 'eighty-eight thousand one hundred ninety-two'), (10933, 73944, 'seventy-three thousand nine hundred forty-four'), (10934, 19323, 'nineteen thousand three hundred twenty-three'), (10935, 48364, 'forty-eight thousand three hundred sixty-four'), (10936, 68051, 'sixty-eight thousand fifty-one'), (10937, 69280, 'sixty-nine thousand two hundred eighty'), (10938, 25227, 'twenty-five thousand two hundred twenty-seven'), (10939, 20913, 'twenty thousand nine hundred thirteen'), (10940, 95092, 'ninety-five thousand ninety-two'), (10941, 97423, 'ninety-seven thousand four hundred twenty-three'), (10942, 86661, 'eighty-six thousand six hundred sixty-one'), (10943, 81235, 'eighty-one thousand two hundred thirty-five'), (10944, 74133, 'seventy-four thousand one hundred thirty-three'), (10945, 66947, 'sixty-six thousand nine hundred forty-seven'), (10946, 59842, 'fifty-nine thousand eight hundred forty-two'), (10947, 28041, 'twenty-eight thousand forty-one'), (10948, 71678, 'seventy-one thousand six hundred seventy-eight'), (10949, 17366, 'seventeen thousand three hundred sixty-six'), (10950, 69829, 'sixty-nine thousand eight hundred twenty-nine'), (10951, 79703, 'seventy-nine thousand seven hundred three'), (10952, 88285, 'eighty-eight thousand two hundred eighty-five'), (10953, 12128, 'twelve thousand one hundred twenty-eight'), (10954, 61107, 'sixty-one thousand one hundred seven'), (10955, 46535, 'forty-six thousand five hundred thirty-five'), (10956, 50874, 'fifty thousand eight hundred seventy-four'), (10957, 31829, 'thirty-one thousand eight hundred twenty-nine'), (10958, 25709, 'twenty-five thousand seven hundred nine'), (10959, 98403, 'ninety-eight thousand four hundred three'), (10960, 18546, 'eighteen thousand five hundred forty-six'), (10961, 96806, 'ninety-six thousand eight hundred six'), (10962, 51320, 'fifty-one thousand three hundred twenty'), (10963, 68888, 'sixty-eight thousand eight hundred eighty-eight'), (10964, 29801, 'twenty-nine thousand eight hundred one'), (10965, 82083, 'eighty-two thousand eighty-three'), (10966, 80826, 'eighty thousand eight hundred twenty-six'), (10967, 25599, 'twenty-five thousand five hundred ninety-nine'), (10968, 99441, 'ninety-nine thousand four hundred forty-one'), (10969, 67990, 'sixty-seven thousand nine hundred ninety'), (10970, 86872, 'eighty-six thousand eight hundred seventy-two'), (10971, 38112, 'thirty-eight thousand one hundred twelve'), (10972, 83330, 'eighty-three thousand three hundred thirty'), (10973, 23907, 'twenty-three thousand nine hundred seven'), (10974, 92240, 'ninety-two thousand two hundred forty'), (10975, 87860, 'eighty-seven thousand eight hundred sixty'), (10976, 80781, 'eighty thousand seven hundred eighty-one'), (10977, 33514, 'thirty-three thousand five hundred fourteen'), (10978, 89202, 'eighty-nine thousand two hundred two'), (10979, 51134, 'fifty-one thousand one hundred thirty-four'), (10980, 13255, 'thirteen thousand two hundred fifty-five'), (10981, 48732, 'forty-eight thousand seven hundred thirty-two'), (10982, 71919, 'seventy-one thousand nine hundred nineteen'), (10983, 83827, 'eighty-three thousand eight hundred twenty-seven'), (10984, 17450, 'seventeen thousand four hundred fifty'), (10985, 16502, 'sixteen thousand five hundred two'), (10986, 71914, 'seventy-one thousand nine hundred fourteen'), (10987, 77896, 'seventy-seven thousand eight hundred ninety-six'), (10988, 52849, 'fifty-two thousand eight hundred forty-nine'), (10989, 76570, 'seventy-six thousand five hundred seventy'), (10990, 27514, 'twenty-seven thousand five hundred fourteen'), (10991, 50267, 'fifty thousand two hundred sixty-seven'), (10992, 70041, 'seventy thousand forty-one'), (10993, 70264, 'seventy thousand two hundred sixty-four'), (10994, 17474, 'seventeen thousand four hundred seventy-four'), (10995, 71737, 'seventy-one thousand seven hundred thirty-seven'), (10996, 51956, 'fifty-one thousand nine hundred fifty-six'), (10997, 30555, 'thirty thousand five hundred fifty-five'), (10998, 51404, 'fifty-one thousand four hundred four'), (10999, 65603, 'sixty-five thousand six hundred three'), (11000, 89946, 'eighty-nine thousand nine hundred forty-six'), (11001, 95690, 'ninety-five thousand six hundred ninety'), (11002, 44375, 'forty-four thousand three hundred seventy-five'), (11003, 80579, 'eighty thousand five hundred seventy-nine'), (11004, 55264, 'fifty-five thousand two hundred sixty-four'), (11005, 5664, 'five thousand six hundred sixty-four'), (11006, 71180, 'seventy-one thousand one hundred eighty'), (11007, 29479, 'twenty-nine thousand four hundred seventy-nine'), (11008, 81332, 'eighty-one thousand three hundred thirty-two'), (11009, 74558, 'seventy-four thousand five hundred fifty-eight'), (11010, 30712, 'thirty thousand seven hundred twelve'), (11011, 25073, 'twenty-five thousand seventy-three'), (11012, 99322, 'ninety-nine thousand three hundred twenty-two'), (11013, 10091, 'ten thousand ninety-one'), (11014, 54073, 'fifty-four thousand seventy-three'), (11015, 35525, 'thirty-five thousand five hundred twenty-five'), (11016, 38115, 'thirty-eight thousand one hundred fifteen'), (11017, 53515, 'fifty-three thousand five hundred fifteen'), (11018, 54383, 'fifty-four thousand three hundred eighty-three'), (11019, 78708, 'seventy-eight thousand seven hundred eight'), (11020, 70507, 'seventy thousand five hundred seven'), (11021, 86465, 'eighty-six thousand four hundred sixty-five'), (11022, 53726, 'fifty-three thousand seven hundred twenty-six'), (11023, 83728, 'eighty-three thousand seven hundred twenty-eight'), (11024, 98432, 'ninety-eight thousand four hundred thirty-two'), (11025, 72654, 'seventy-two thousand six hundred fifty-four'), (11026, 17398, 'seventeen thousand three hundred ninety-eight'), (11027, 93682, 'ninety-three thousand six hundred eighty-two'), (11028, 17142, 'seventeen thousand one hundred forty-two'), (11029, 90899, 'ninety thousand eight hundred ninety-nine'), (11030, 88618, 'eighty-eight thousand six hundred eighteen'), (11031, 10818, 'ten thousand eight hundred eighteen'), (11032, 11278, 'eleven thousand two hundred seventy-eight'), (11033, 49406, 'forty-nine thousand four hundred six'), (11034, 25370, 'twenty-five thousand three hundred seventy'), (11035, 60755, 'sixty thousand seven hundred fifty-five'), (11036, 9455, 'nine thousand four hundred fifty-five'), (11037, 52054, 'fifty-two thousand fifty-four'), (11038, 29373, 'twenty-nine thousand three hundred seventy-three'), (11039, 81464, 'eighty-one thousand four hundred sixty-four'), (11040, 78036, 'seventy-eight thousand thirty-six'), (11041, 86589, 'eighty-six thousand five hundred eighty-nine'), (11042, 92884, 'ninety-two thousand eight hundred eighty-four'), (11043, 20886, 'twenty thousand eight hundred eighty-six'), (11044, 45433, 'forty-five thousand four hundred thirty-three'), (11045, 46926, 'forty-six thousand nine hundred twenty-six'), (11046, 97624, 'ninety-seven thousand six hundred twenty-four'), (11047, 35001, 'thirty-five thousand one'), (11048, 2896, 'two thousand eight hundred ninety-six'), (11049, 2623, 'two thousand six hundred twenty-three'), (11050, 48313, 'forty-eight thousand three hundred thirteen'), (11051, 19472, 'nineteen thousand four hundred seventy-two'), (11052, 65149, 'sixty-five thousand one hundred forty-nine'), (11053, 63538, 'sixty-three thousand five hundred thirty-eight'), (11054, 68727, 'sixty-eight thousand seven hundred twenty-seven'), (11055, 78802, 'seventy-eight thousand eight hundred two'), (11056, 64430, 'sixty-four thousand four hundred thirty'), (11057, 93158, 'ninety-three thousand one hundred fifty-eight'), (11058, 77277, 'seventy-seven thousand two hundred seventy-seven'), (11059, 30571, 'thirty thousand five hundred seventy-one'), (11060, 6045, 'six thousand forty-five'), (11061, 94702, 'ninety-four thousand seven hundred two'), (11062, 49535, 'forty-nine thousand five hundred thirty-five'), (11063, 35387, 'thirty-five thousand three hundred eighty-seven'), (11064, 57822, 'fifty-seven thousand eight hundred twenty-two'), (11065, 57331, 'fifty-seven thousand three hundred thirty-one'), (11066, 26207, 'twenty-six thousand two hundred seven'), (11067, 98731, 'ninety-eight thousand seven hundred thirty-one'), (11068, 19871, 'nineteen thousand eight hundred seventy-one'), (11069, 80542, 'eighty thousand five hundred forty-two'), (11070, 93010, 'ninety-three thousand ten'), (11071, 65983, 'sixty-five thousand nine hundred eighty-three'), (11072, 98626, 'ninety-eight thousand six hundred twenty-six'), (11073, 44205, 'forty-four thousand two hundred five'), (11074, 73955, 'seventy-three thousand nine hundred fifty-five'), (11075, 68851, 'sixty-eight thousand eight hundred fifty-one'), (11076, 83412, 'eighty-three thousand four hundred twelve'), (11077, 65024, 'sixty-five thousand twenty-four'), (11078, 56643, 'fifty-six thousand six hundred forty-three'), (11079, 8944, 'eight thousand nine hundred forty-four'), (11080, 81046, 'eighty-one thousand forty-six'), (11081, 31978, 'thirty-one thousand nine hundred seventy-eight'), (11082, 26444, 'twenty-six thousand four hundred forty-four'), (11083, 37187, 'thirty-seven thousand one hundred eighty-seven'), (11084, 29012, 'twenty-nine thousand twelve'), (11085, 63489, 'sixty-three thousand four hundred eighty-nine'), (11086, 25285, 'twenty-five thousand two hundred eighty-five'), (11087, 69593, 'sixty-nine thousand five hundred ninety-three'), (11088, 73612, 'seventy-three thousand six hundred twelve'), (11089, 80948, 'eighty thousand nine hundred forty-eight'), (11090, 1773, 'one thousand seven hundred seventy-three'), (11091, 21454, 'twenty-one thousand four hundred fifty-four'), (11092, 94047, 'ninety-four thousand forty-seven'), (11093, 82533, 'eighty-two thousand five hundred thirty-three'), (11094, 94783, 'ninety-four thousand seven hundred eighty-three'), (11095, 10226, 'ten thousand two hundred twenty-six'), (11096, 26287, 'twenty-six thousand two hundred eighty-seven'), (11097, 13571, 'thirteen thousand five hundred seventy-one'), (11098, 84086, 'eighty-four thousand eighty-six'), (11099, 29013, 'twenty-nine thousand thirteen'), (11100, 37013, 'thirty-seven thousand thirteen'), (11101, 2412, 'two thousand four hundred twelve'), (11102, 70505, 'seventy thousand five hundred five'), (11103, 92981, 'ninety-two thousand nine hundred eighty-one'), (11104, 655, 'six hundred fifty-five'), (11105, 24216, 'twenty-four thousand two hundred sixteen'), (11106, 72354, 'seventy-two thousand three hundred fifty-four'), (11107, 66760, 'sixty-six thousand seven hundred sixty'), (11108, 73648, 'seventy-three thousand six hundred forty-eight'), (11109, 66951, 'sixty-six thousand nine hundred fifty-one'), (11110, 82632, 'eighty-two thousand six hundred thirty-two'), (11111, 14724, 'fourteen thousand seven hundred twenty-four'), (11112, 4917, 'four thousand nine hundred seventeen'), (11113, 62041, 'sixty-two thousand forty-one'), (11114, 42471, 'forty-two thousand four hundred seventy-one'), (11115, 14534, 'fourteen thousand five hundred thirty-four'), (11116, 58190, 'fifty-eight thousand one hundred ninety'), (11117, 49776, 'forty-nine thousand seven hundred seventy-six'), (11118, 94313, 'ninety-four thousand three hundred thirteen'), (11119, 84177, 'eighty-four thousand one hundred seventy-seven'), (11120, 30738, 'thirty thousand seven hundred thirty-eight'), (11121, 57318, 'fifty-seven thousand three hundred eighteen'), (11122, 95043, 'ninety-five thousand forty-three'), (11123, 58830, 'fifty-eight thousand eight hundred thirty'), (11124, 24284, 'twenty-four thousand two hundred eighty-four'), (11125, 98477, 'ninety-eight thousand four hundred seventy-seven'), (11126, 12613, 'twelve thousand six hundred thirteen'), (11127, 37619, 'thirty-seven thousand six hundred nineteen'), (11128, 11500, 'eleven thousand five hundred'), (11129, 55604, 'fifty-five thousand six hundred four'), (11130, 22877, 'twenty-two thousand eight hundred seventy-seven'), (11131, 16749, 'sixteen thousand seven hundred forty-nine'), (11132, 18828, 'eighteen thousand eight hundred twenty-eight'), (11133, 60940, 'sixty thousand nine hundred forty'), (11134, 48183, 'forty-eight thousand one hundred eighty-three'), (11135, 58944, 'fifty-eight thousand nine hundred forty-four'), (11136, 15084, 'fifteen thousand eighty-four'), (11137, 44036, 'forty-four thousand thirty-six'), (11138, 42693, 'forty-two thousand six hundred ninety-three'), (11139, 54940, 'fifty-four thousand nine hundred forty'), (11140, 23992, 'twenty-three thousand nine hundred ninety-two'), (11141, 1492, 'one thousand four hundred ninety-two'), (11142, 31980, 'thirty-one thousand nine hundred eighty'), (11143, 83912, 'eighty-three thousand nine hundred twelve'), (11144, 77782, 'seventy-seven thousand seven hundred eighty-two'), (11145, 27882, 'twenty-seven thousand eight hundred eighty-two'), (11146, 93825, 'ninety-three thousand eight hundred twenty-five'), (11147, 37891, 'thirty-seven thousand eight hundred ninety-one'), (11148, 72808, 'seventy-two thousand eight hundred eight'), (11149, 8201, 'eight thousand two hundred one'), (11150, 73251, 'seventy-three thousand two hundred fifty-one'), (11151, 51390, 'fifty-one thousand three hundred ninety'), (11152, 3938, 'three thousand nine hundred thirty-eight'), (11153, 57, 'fifty-seven'), (11154, 63034, 'sixty-three thousand thirty-four'), (11155, 57609, 'fifty-seven thousand six hundred nine'), (11156, 59675, 'fifty-nine thousand six hundred seventy-five'), (11157, 34098, 'thirty-four thousand ninety-eight'), (11158, 57002, 'fifty-seven thousand two'), (11159, 11066, 'eleven thousand sixty-six'), (11160, 39384, 'thirty-nine thousand three hundred eighty-four'), (11161, 68040, 'sixty-eight thousand forty'), (11162, 35644, 'thirty-five thousand six hundred forty-four'), (11163, 39798, 'thirty-nine thousand seven hundred ninety-eight'), (11164, 87549, 'eighty-seven thousand five hundred forty-nine'), (11165, 1478, 'one thousand four hundred seventy-eight'), (11166, 91272, 'ninety-one thousand two hundred seventy-two'), (11167, 59416, 'fifty-nine thousand four hundred sixteen'), (11168, 66762, 'sixty-six thousand seven hundred sixty-two'), (11169, 53341, 'fifty-three thousand three hundred forty-one'), (11170, 38118, 'thirty-eight thousand one hundred eighteen'), (11171, 99703, 'ninety-nine thousand seven hundred three'), (11172, 95658, 'ninety-five thousand six hundred fifty-eight'), (11173, 42111, 'forty-two thousand one hundred eleven'), (11174, 37474, 'thirty-seven thousand four hundred seventy-four'), (11175, 5121, 'five thousand one hundred twenty-one'), (11176, 3951, 'three thousand nine hundred fifty-one'), (11177, 60485, 'sixty thousand four hundred eighty-five'), (11178, 47007, 'forty-seven thousand seven'), (11179, 19326, 'nineteen thousand three hundred twenty-six'), (11180, 73597, 'seventy-three thousand five hundred ninety-seven'), (11181, 3136, 'three thousand one hundred thirty-six'), (11182, 34164, 'thirty-four thousand one hundred sixty-four'), (11183, 40361, 'forty thousand three hundred sixty-one'), (11184, 91454, 'ninety-one thousand four hundred fifty-four'), (11185, 91800, 'ninety-one thousand eight hundred'), (11186, 49879, 'forty-nine thousand eight hundred seventy-nine'), (11187, 97187, 'ninety-seven thousand one hundred eighty-seven'), (11188, 53084, 'fifty-three thousand eighty-four'), (11189, 44839, 'forty-four thousand eight hundred thirty-nine'), (11190, 8010, 'eight thousand ten'), (11191, 88273, 'eighty-eight thousand two hundred seventy-three'), (11192, 82247, 'eighty-two thousand two hundred forty-seven'), (11193, 38086, 'thirty-eight thousand eighty-six'), (11194, 78740, 'seventy-eight thousand seven hundred forty'), (11195, 80562, 'eighty thousand five hundred sixty-two'), (11196, 17653, 'seventeen thousand six hundred fifty-three'), (11197, 84794, 'eighty-four thousand seven hundred ninety-four'), (11198, 19449, 'nineteen thousand four hundred forty-nine'), (11199, 82418, 'eighty-two thousand four hundred eighteen'), (11200, 50280, 'fifty thousand two hundred eighty'), (11201, 44819, 'forty-four thousand eight hundred nineteen'), (11202, 44731, 'forty-four thousand seven hundred thirty-one'), (11203, 45659, 'forty-five thousand six hundred fifty-nine'), (11204, 88278, 'eighty-eight thousand two hundred seventy-eight'), (11205, 62226, 'sixty-two thousand two hundred twenty-six'), (11206, 67097, 'sixty-seven thousand ninety-seven'), (11207, 56630, 'fifty-six thousand six hundred thirty'), (11208, 98209, 'ninety-eight thousand two hundred nine'), (11209, 4773, 'four thousand seven hundred seventy-three'), (11210, 78222, 'seventy-eight thousand two hundred twenty-two'), (11211, 65454, 'sixty-five thousand four hundred fifty-four'), (11212, 16231, 'sixteen thousand two hundred thirty-one'), (11213, 98520, 'ninety-eight thousand five hundred twenty'), (11214, 45929, 'forty-five thousand nine hundred twenty-nine'), (11215, 71350, 'seventy-one thousand three hundred fifty'), (11216, 91623, 'ninety-one thousand six hundred twenty-three'), (11217, 69422, 'sixty-nine thousand four hundred twenty-two'), (11218, 45140, 'forty-five thousand one hundred forty'), (11219, 9926, 'nine thousand nine hundred twenty-six'), (11220, 25606, 'twenty-five thousand six hundred six'), (11221, 67415, 'sixty-seven thousand four hundred fifteen'), (11222, 4901, 'four thousand nine hundred one'), (11223, 54286, 'fifty-four thousand two hundred eighty-six'), (11224, 43243, 'forty-three thousand two hundred forty-three'), (11225, 97005, 'ninety-seven thousand five'), (11226, 58465, 'fifty-eight thousand four hundred sixty-five'), (11227, 23787, 'twenty-three thousand seven hundred eighty-seven'), (11228, 44946, 'forty-four thousand nine hundred forty-six'), (11229, 13309, 'thirteen thousand three hundred nine'), (11230, 79963, 'seventy-nine thousand nine hundred sixty-three'), (11231, 96714, 'ninety-six thousand seven hundred fourteen'), (11232, 12624, 'twelve thousand six hundred twenty-four'), (11233, 24612, 'twenty-four thousand six hundred twelve'), (11234, 54446, 'fifty-four thousand four hundred forty-six'), (11235, 50194, 'fifty thousand one hundred ninety-four'), (11236, 70959, 'seventy thousand nine hundred fifty-nine'), (11237, 8674, 'eight thousand six hundred seventy-four'), (11238, 32088, 'thirty-two thousand eighty-eight'), (11239, 22540, 'twenty-two thousand five hundred forty'), (11240, 74948, 'seventy-four thousand nine hundred forty-eight'), (11241, 52210, 'fifty-two thousand two hundred ten'), (11242, 97912, 'ninety-seven thousand nine hundred twelve'), (11243, 36294, 'thirty-six thousand two hundred ninety-four'), (11244, 9121, 'nine thousand one hundred twenty-one'), (11245, 8471, 'eight thousand four hundred seventy-one'), (11246, 40388, 'forty thousand three hundred eighty-eight'), (11247, 27986, 'twenty-seven thousand nine hundred eighty-six'), (11248, 81506, 'eighty-one thousand five hundred six'), (11249, 4755, 'four thousand seven hundred fifty-five'), (11250, 2410, 'two thousand four hundred ten'), (11251, 77363, 'seventy-seven thousand three hundred sixty-three'), (11252, 96853, 'ninety-six thousand eight hundred fifty-three'), (11253, 34296, 'thirty-four thousand two hundred ninety-six'), (11254, 65621, 'sixty-five thousand six hundred twenty-one'), (11255, 70002, 'seventy thousand two'), (11256, 53791, 'fifty-three thousand seven hundred ninety-one'), (11257, 82414, 'eighty-two thousand four hundred fourteen'), (11258, 5405, 'five thousand four hundred five'), (11259, 87720, 'eighty-seven thousand seven hundred twenty'), (11260, 63913, 'sixty-three thousand nine hundred thirteen'), (11261, 77891, 'seventy-seven thousand eight hundred ninety-one'), (11262, 94606, 'ninety-four thousand six hundred six'), (11263, 85213, 'eighty-five thousand two hundred thirteen'), (11264, 38974, 'thirty-eight thousand nine hundred seventy-four'), (11265, 99226, 'ninety-nine thousand two hundred twenty-six'), (11266, 9572, 'nine thousand five hundred seventy-two'), (11267, 57776, 'fifty-seven thousand seven hundred seventy-six'), (11268, 51724, 'fifty-one thousand seven hundred twenty-four'), (11269, 16859, 'sixteen thousand eight hundred fifty-nine'), (11270, 18462, 'eighteen thousand four hundred sixty-two'), (11271, 12263, 'twelve thousand two hundred sixty-three'), (11272, 3997, 'three thousand nine hundred ninety-seven'), (11273, 79652, 'seventy-nine thousand six hundred fifty-two'), (11274, 43995, 'forty-three thousand nine hundred ninety-five'), (11275, 11411, 'eleven thousand four hundred eleven'), (11276, 39174, 'thirty-nine thousand one hundred seventy-four'), (11277, 46702, 'forty-six thousand seven hundred two'), (11278, 79103, 'seventy-nine thousand one hundred three'), (11279, 49238, 'forty-nine thousand two hundred thirty-eight'), (11280, 55764, 'fifty-five thousand seven hundred sixty-four'), (11281, 86412, 'eighty-six thousand four hundred twelve'), (11282, 21709, 'twenty-one thousand seven hundred nine'), (11283, 70217, 'seventy thousand two hundred seventeen'), (11284, 64361, 'sixty-four thousand three hundred sixty-one'), (11285, 51986, 'fifty-one thousand nine hundred eighty-six'), (11286, 68338, 'sixty-eight thousand three hundred thirty-eight'), (11287, 76554, 'seventy-six thousand five hundred fifty-four'), (11288, 49223, 'forty-nine thousand two hundred twenty-three'), (11289, 66987, 'sixty-six thousand nine hundred eighty-seven'), (11290, 56180, 'fifty-six thousand one hundred eighty'), (11291, 12501, 'twelve thousand five hundred one'), (11292, 18213, 'eighteen thousand two hundred thirteen'), (11293, 4998, 'four thousand nine hundred ninety-eight'), (11294, 71028, 'seventy-one thousand twenty-eight'), (11295, 682, 'six hundred eighty-two'), (11296, 69445, 'sixty-nine thousand four hundred forty-five'), (11297, 96604, 'ninety-six thousand six hundred four'), (11298, 72066, 'seventy-two thousand sixty-six'), (11299, 41132, 'forty-one thousand one hundred thirty-two'), (11300, 97323, 'ninety-seven thousand three hundred twenty-three'), (11301, 17820, 'seventeen thousand eight hundred twenty'), (11302, 26196, 'twenty-six thousand one hundred ninety-six'), (11303, 1358, 'one thousand three hundred fifty-eight'), (11304, 49685, 'forty-nine thousand six hundred eighty-five'), (11305, 81597, 'eighty-one thousand five hundred ninety-seven'), (11306, 48301, 'forty-eight thousand three hundred one'), (11307, 99068, 'ninety-nine thousand sixty-eight'), (11308, 55647, 'fifty-five thousand six hundred forty-seven'), (11309, 95134, 'ninety-five thousand one hundred thirty-four'), (11310, 58462, 'fifty-eight thousand four hundred sixty-two'), (11311, 60162, 'sixty thousand one hundred sixty-two'), (11312, 37805, 'thirty-seven thousand eight hundred five'), (11313, 87966, 'eighty-seven thousand nine hundred sixty-six'), (11314, 19272, 'nineteen thousand two hundred seventy-two'), (11315, 5036, 'five thousand thirty-six'), (11316, 25234, 'twenty-five thousand two hundred thirty-four'), (11317, 99980, 'ninety-nine thousand nine hundred eighty'), (11318, 18415, 'eighteen thousand four hundred fifteen'), (11319, 99659, 'ninety-nine thousand six hundred fifty-nine'), (11320, 8262, 'eight thousand two hundred sixty-two'), (11321, 63517, 'sixty-three thousand five hundred seventeen'), (11322, 93941, 'ninety-three thousand nine hundred forty-one'), (11323, 41639, 'forty-one thousand six hundred thirty-nine'), (11324, 58264, 'fifty-eight thousand two hundred sixty-four'), (11325, 43052, 'forty-three thousand fifty-two'), (11326, 17263, 'seventeen thousand two hundred sixty-three'), (11327, 84864, 'eighty-four thousand eight hundred sixty-four'), (11328, 95325, 'ninety-five thousand three hundred twenty-five'), (11329, 39384, 'thirty-nine thousand three hundred eighty-four'), (11330, 86682, 'eighty-six thousand six hundred eighty-two'), (11331, 94815, 'ninety-four thousand eight hundred fifteen'), (11332, 34357, 'thirty-four thousand three hundred fifty-seven'), (11333, 18962, 'eighteen thousand nine hundred sixty-two'), (11334, 92813, 'ninety-two thousand eight hundred thirteen'), (11335, 20683, 'twenty thousand six hundred eighty-three'), (11336, 67774, 'sixty-seven thousand seven hundred seventy-four'), (11337, 2195, 'two thousand one hundred ninety-five'), (11338, 44505, 'forty-four thousand five hundred five'), (11339, 32619, 'thirty-two thousand six hundred nineteen'), (11340, 97144, 'ninety-seven thousand one hundred forty-four'), (11341, 65466, 'sixty-five thousand four hundred sixty-six'), (11342, 93088, 'ninety-three thousand eighty-eight'), (11343, 82054, 'eighty-two thousand fifty-four'), (11344, 44290, 'forty-four thousand two hundred ninety'), (11345, 90710, 'ninety thousand seven hundred ten'), (11346, 78039, 'seventy-eight thousand thirty-nine'), (11347, 97936, 'ninety-seven thousand nine hundred thirty-six'), (11348, 84543, 'eighty-four thousand five hundred forty-three'), (11349, 4454, 'four thousand four hundred fifty-four'), (11350, 64766, 'sixty-four thousand seven hundred sixty-six'), (11351, 98230, 'ninety-eight thousand two hundred thirty'), (11352, 80456, 'eighty thousand four hundred fifty-six'), (11353, 97469, 'ninety-seven thousand four hundred sixty-nine'), (11354, 29708, 'twenty-nine thousand seven hundred eight'), (11355, 72899, 'seventy-two thousand eight hundred ninety-nine'), (11356, 84166, 'eighty-four thousand one hundred sixty-six'), (11357, 44137, 'forty-four thousand one hundred thirty-seven'), (11358, 90092, 'ninety thousand ninety-two'), (11359, 25981, 'twenty-five thousand nine hundred eighty-one'), (11360, 54521, 'fifty-four thousand five hundred twenty-one'), (11361, 10960, 'ten thousand nine hundred sixty'), (11362, 97533, 'ninety-seven thousand five hundred thirty-three'), (11363, 38415, 'thirty-eight thousand four hundred fifteen'), (11364, 82531, 'eighty-two thousand five hundred thirty-one'), (11365, 25737, 'twenty-five thousand seven hundred thirty-seven'), (11366, 72723, 'seventy-two thousand seven hundred twenty-three'), (11367, 11245, 'eleven thousand two hundred forty-five'), (11368, 72638, 'seventy-two thousand six hundred thirty-eight'), (11369, 35158, 'thirty-five thousand one hundred fifty-eight'), (11370, 10151, 'ten thousand one hundred fifty-one'), (11371, 98778, 'ninety-eight thousand seven hundred seventy-eight'), (11372, 64933, 'sixty-four thousand nine hundred thirty-three'), (11373, 5031, 'five thousand thirty-one'), (11374, 57671, 'fifty-seven thousand six hundred seventy-one'), (11375, 89451, 'eighty-nine thousand four hundred fifty-one'), (11376, 97789, 'ninety-seven thousand seven hundred eighty-nine'), (11377, 22269, 'twenty-two thousand two hundred sixty-nine'), (11378, 28418, 'twenty-eight thousand four hundred eighteen'), (11379, 79055, 'seventy-nine thousand fifty-five'), (11380, 53497, 'fifty-three thousand four hundred ninety-seven'), (11381, 73553, 'seventy-three thousand five hundred fifty-three'), (11382, 28232, 'twenty-eight thousand two hundred thirty-two'), (11383, 44596, 'forty-four thousand five hundred ninety-six'), (11384, 32902, 'thirty-two thousand nine hundred two'), (11385, 75976, 'seventy-five thousand nine hundred seventy-six'), (11386, 24375, 'twenty-four thousand three hundred seventy-five'), (11387, 19413, 'nineteen thousand four hundred thirteen'), (11388, 30768, 'thirty thousand seven hundred sixty-eight'), (11389, 54280, 'fifty-four thousand two hundred eighty'), (11390, 92101, 'ninety-two thousand one hundred one'), (11391, 63374, 'sixty-three thousand three hundred seventy-four'), (11392, 46798, 'forty-six thousand seven hundred ninety-eight'), (11393, 67780, 'sixty-seven thousand seven hundred eighty'), (11394, 91916, 'ninety-one thousand nine hundred sixteen'), (11395, 15311, 'fifteen thousand three hundred eleven'), (11396, 36292, 'thirty-six thousand two hundred ninety-two'), (11397, 1411, 'one thousand four hundred eleven'), (11398, 48828, 'forty-eight thousand eight hundred twenty-eight'), (11399, 74199, 'seventy-four thousand one hundred ninety-nine'), (11400, 38939, 'thirty-eight thousand nine hundred thirty-nine'), (11401, 8412, 'eight thousand four hundred twelve'), (11402, 64788, 'sixty-four thousand seven hundred eighty-eight'), (11403, 27639, 'twenty-seven thousand six hundred thirty-nine'), (11404, 2082, 'two thousand eighty-two'), (11405, 60516, 'sixty thousand five hundred sixteen'), (11406, 41992, 'forty-one thousand nine hundred ninety-two'), (11407, 63459, 'sixty-three thousand four hundred fifty-nine'), (11408, 22722, 'twenty-two thousand seven hundred twenty-two'), (11409, 5917, 'five thousand nine hundred seventeen'), (11410, 19909, 'nineteen thousand nine hundred nine'), (11411, 30427, 'thirty thousand four hundred twenty-seven'), (11412, 96446, 'ninety-six thousand four hundred forty-six'), (11413, 18572, 'eighteen thousand five hundred seventy-two'), (11414, 15934, 'fifteen thousand nine hundred thirty-four'), (11415, 50971, 'fifty thousand nine hundred seventy-one'), (11416, 11234, 'eleven thousand two hundred thirty-four'), (11417, 70857, 'seventy thousand eight hundred fifty-seven'), (11418, 47694, 'forty-seven thousand six hundred ninety-four'), (11419, 69520, 'sixty-nine thousand five hundred twenty'), (11420, 35356, 'thirty-five thousand three hundred fifty-six'), (11421, 33500, 'thirty-three thousand five hundred'), (11422, 58444, 'fifty-eight thousand four hundred forty-four'), (11423, 77609, 'seventy-seven thousand six hundred nine'), (11424, 69195, 'sixty-nine thousand one hundred ninety-five'), (11425, 26739, 'twenty-six thousand seven hundred thirty-nine'), (11426, 83383, 'eighty-three thousand three hundred eighty-three'), (11427, 78422, 'seventy-eight thousand four hundred twenty-two'), (11428, 84205, 'eighty-four thousand two hundred five'), (11429, 66904, 'sixty-six thousand nine hundred four'), (11430, 39264, 'thirty-nine thousand two hundred sixty-four'), (11431, 28084, 'twenty-eight thousand eighty-four'), (11432, 82944, 'eighty-two thousand nine hundred forty-four'), (11433, 83718, 'eighty-three thousand seven hundred eighteen'), (11434, 89759, 'eighty-nine thousand seven hundred fifty-nine'), (11435, 91386, 'ninety-one thousand three hundred eighty-six'), (11436, 10329, 'ten thousand three hundred twenty-nine'), (11437, 55462, 'fifty-five thousand four hundred sixty-two'), (11438, 58996, 'fifty-eight thousand nine hundred ninety-six'), (11439, 26648, 'twenty-six thousand six hundred forty-eight'), (11440, 29325, 'twenty-nine thousand three hundred twenty-five'), (11441, 72918, 'seventy-two thousand nine hundred eighteen'), (11442, 14732, 'fourteen thousand seven hundred thirty-two'), (11443, 3321, 'three thousand three hundred twenty-one'), (11444, 47202, 'forty-seven thousand two hundred two'), (11445, 37812, 'thirty-seven thousand eight hundred twelve'), (11446, 21032, 'twenty-one thousand thirty-two'), (11447, 81871, 'eighty-one thousand eight hundred seventy-one'), (11448, 50975, 'fifty thousand nine hundred seventy-five'), (11449, 57084, 'fifty-seven thousand eighty-four'), (11450, 33860, 'thirty-three thousand eight hundred sixty'), (11451, 8294, 'eight thousand two hundred ninety-four'), (11452, 50084, 'fifty thousand eighty-four'), (11453, 21911, 'twenty-one thousand nine hundred eleven'), (11454, 36990, 'thirty-six thousand nine hundred ninety'), (11455, 94253, 'ninety-four thousand two hundred fifty-three'), (11456, 11338, 'eleven thousand three hundred thirty-eight'), (11457, 92754, 'ninety-two thousand seven hundred fifty-four'), (11458, 98163, 'ninety-eight thousand one hundred sixty-three'), (11459, 27244, 'twenty-seven thousand two hundred forty-four'), (11460, 24958, 'twenty-four thousand nine hundred fifty-eight'), (11461, 40685, 'forty thousand six hundred eighty-five'), (11462, 52858, 'fifty-two thousand eight hundred fifty-eight'), (11463, 18989, 'eighteen thousand nine hundred eighty-nine'), (11464, 49621, 'forty-nine thousand six hundred twenty-one'), (11465, 3621, 'three thousand six hundred twenty-one'), (11466, 17378, 'seventeen thousand three hundred seventy-eight'), (11467, 15046, 'fifteen thousand forty-six'), (11468, 41537, 'forty-one thousand five hundred thirty-seven'), (11469, 4487, 'four thousand four hundred eighty-seven'), (11470, 28446, 'twenty-eight thousand four hundred forty-six'), (11471, 87330, 'eighty-seven thousand three hundred thirty'), (11472, 9864, 'nine thousand eight hundred sixty-four'), (11473, 78678, 'seventy-eight thousand six hundred seventy-eight'), (11474, 61738, 'sixty-one thousand seven hundred thirty-eight'), (11475, 32515, 'thirty-two thousand five hundred fifteen'), (11476, 54501, 'fifty-four thousand five hundred one'), (11477, 28080, 'twenty-eight thousand eighty'), (11478, 80667, 'eighty thousand six hundred sixty-seven'), (11479, 41590, 'forty-one thousand five hundred ninety'), (11480, 59287, 'fifty-nine thousand two hundred eighty-seven'), (11481, 29845, 'twenty-nine thousand eight hundred forty-five'), (11482, 19612, 'nineteen thousand six hundred twelve'), (11483, 56760, 'fifty-six thousand seven hundred sixty'), (11484, 59205, 'fifty-nine thousand two hundred five'), (11485, 3400, 'three thousand four hundred'), (11486, 6700, 'six thousand seven hundred'), (11487, 25784, 'twenty-five thousand seven hundred eighty-four'), (11488, 19886, 'nineteen thousand eight hundred eighty-six'), (11489, 74984, 'seventy-four thousand nine hundred eighty-four'), (11490, 3878, 'three thousand eight hundred seventy-eight'), (11491, 93780, 'ninety-three thousand seven hundred eighty'), (11492, 76292, 'seventy-six thousand two hundred ninety-two'), (11493, 57769, 'fifty-seven thousand seven hundred sixty-nine'), (11494, 11048, 'eleven thousand forty-eight'), (11495, 87273, 'eighty-seven thousand two hundred seventy-three'), (11496, 82585, 'eighty-two thousand five hundred eighty-five'), (11497, 40590, 'forty thousand five hundred ninety'), (11498, 86326, 'eighty-six thousand three hundred twenty-six'), (11499, 71296, 'seventy-one thousand two hundred ninety-six'), (11500, 75529, 'seventy-five thousand five hundred twenty-nine'), (11501, 22983, 'twenty-two thousand nine hundred eighty-three'), (11502, 75241, 'seventy-five thousand two hundred forty-one'), (11503, 22661, 'twenty-two thousand six hundred sixty-one'), (11504, 15292, 'fifteen thousand two hundred ninety-two'), (11505, 33737, 'thirty-three thousand seven hundred thirty-seven'), (11506, 86442, 'eighty-six thousand four hundred forty-two'), (11507, 38103, 'thirty-eight thousand one hundred three'), (11508, 12856, 'twelve thousand eight hundred fifty-six'), (11509, 91418, 'ninety-one thousand four hundred eighteen'), (11510, 41216, 'forty-one thousand two hundred sixteen'), (11511, 88053, 'eighty-eight thousand fifty-three'), (11512, 16632, 'sixteen thousand six hundred thirty-two'), (11513, 3301, 'three thousand three hundred one'), (11514, 40509, 'forty thousand five hundred nine'), (11515, 55230, 'fifty-five thousand two hundred thirty'), (11516, 48768, 'forty-eight thousand seven hundred sixty-eight'), (11517, 25557, 'twenty-five thousand five hundred fifty-seven'), (11518, 99963, 'ninety-nine thousand nine hundred sixty-three'), (11519, 87785, 'eighty-seven thousand seven hundred eighty-five'), (11520, 22195, 'twenty-two thousand one hundred ninety-five'), (11521, 22650, 'twenty-two thousand six hundred fifty'), (11522, 78557, 'seventy-eight thousand five hundred fifty-seven'), (11523, 27753, 'twenty-seven thousand seven hundred fifty-three'), (11524, 13636, 'thirteen thousand six hundred thirty-six'), (11525, 78658, 'seventy-eight thousand six hundred fifty-eight'), (11526, 11699, 'eleven thousand six hundred ninety-nine'), (11527, 28448, 'twenty-eight thousand four hundred forty-eight'), (11528, 55043, 'fifty-five thousand forty-three'), (11529, 99425, 'ninety-nine thousand four hundred twenty-five'), (11530, 39744, 'thirty-nine thousand seven hundred forty-four'), (11531, 50342, 'fifty thousand three hundred forty-two'), (11532, 77911, 'seventy-seven thousand nine hundred eleven'), (11533, 88221, 'eighty-eight thousand two hundred twenty-one'), (11534, 81782, 'eighty-one thousand seven hundred eighty-two'), (11535, 40313, 'forty thousand three hundred thirteen'), (11536, 30474, 'thirty thousand four hundred seventy-four'), (11537, 81654, 'eighty-one thousand six hundred fifty-four'), (11538, 46081, 'forty-six thousand eighty-one'), (11539, 55466, 'fifty-five thousand four hundred sixty-six'), (11540, 48454, 'forty-eight thousand four hundred fifty-four'), (11541, 66152, 'sixty-six thousand one hundred fifty-two'), (11542, 27506, 'twenty-seven thousand five hundred six'), (11543, 95044, 'ninety-five thousand forty-four'), (11544, 94203, 'ninety-four thousand two hundred three'), (11545, 78778, 'seventy-eight thousand seven hundred seventy-eight'), (11546, 45039, 'forty-five thousand thirty-nine'), (11547, 39406, 'thirty-nine thousand four hundred six'), (11548, 86168, 'eighty-six thousand one hundred sixty-eight'), (11549, 43540, 'forty-three thousand five hundred forty'), (11550, 27572, 'twenty-seven thousand five hundred seventy-two'), (11551, 73728, 'seventy-three thousand seven hundred twenty-eight'), (11552, 25816, 'twenty-five thousand eight hundred sixteen'), (11553, 36768, 'thirty-six thousand seven hundred sixty-eight'), (11554, 34951, 'thirty-four thousand nine hundred fifty-one'), (11555, 95059, 'ninety-five thousand fifty-nine'), (11556, 30835, 'thirty thousand eight hundred thirty-five'), (11557, 60341, 'sixty thousand three hundred forty-one'), (11558, 82900, 'eighty-two thousand nine hundred'), (11559, 81691, 'eighty-one thousand six hundred ninety-one'), (11560, 25799, 'twenty-five thousand seven hundred ninety-nine'), (11561, 94758, 'ninety-four thousand seven hundred fifty-eight'), (11562, 69261, 'sixty-nine thousand two hundred sixty-one'), (11563, 29110, 'twenty-nine thousand one hundred ten'), (11564, 65144, 'sixty-five thousand one hundred forty-four'), (11565, 74266, 'seventy-four thousand two hundred sixty-six'), (11566, 94472, 'ninety-four thousand four hundred seventy-two'), (11567, 58557, 'fifty-eight thousand five hundred fifty-seven'), (11568, 915, 'nine hundred fifteen'), (11569, 70276, 'seventy thousand two hundred seventy-six'), (11570, 24671, 'twenty-four thousand six hundred seventy-one'), (11571, 53119, 'fifty-three thousand one hundred nineteen'), (11572, 37604, 'thirty-seven thousand six hundred four'), (11573, 55582, 'fifty-five thousand five hundred eighty-two'), (11574, 77352, 'seventy-seven thousand three hundred fifty-two'), (11575, 21073, 'twenty-one thousand seventy-three'), (11576, 2906, 'two thousand nine hundred six'), (11577, 25103, 'twenty-five thousand one hundred three'), (11578, 78848, 'seventy-eight thousand eight hundred forty-eight'), (11579, 93961, 'ninety-three thousand nine hundred sixty-one'), (11580, 24452, 'twenty-four thousand four hundred fifty-two'), (11581, 655, 'six hundred fifty-five'), (11582, 23581, 'twenty-three thousand five hundred eighty-one'), (11583, 11271, 'eleven thousand two hundred seventy-one'), (11584, 3988, 'three thousand nine hundred eighty-eight'), (11585, 47170, 'forty-seven thousand one hundred seventy'), (11586, 7551, 'seven thousand five hundred fifty-one'), (11587, 89706, 'eighty-nine thousand seven hundred six'), (11588, 2722, 'two thousand seven hundred twenty-two'), (11589, 5827, 'five thousand eight hundred twenty-seven'), (11590, 37014, 'thirty-seven thousand fourteen'), (11591, 80512, 'eighty thousand five hundred twelve'), (11592, 86931, 'eighty-six thousand nine hundred thirty-one'), (11593, 3692, 'three thousand six hundred ninety-two'), (11594, 35041, 'thirty-five thousand forty-one'), (11595, 79204, 'seventy-nine thousand two hundred four'), (11596, 90127, 'ninety thousand one hundred twenty-seven'), (11597, 93917, 'ninety-three thousand nine hundred seventeen'), (11598, 17719, 'seventeen thousand seven hundred nineteen'), (11599, 38939, 'thirty-eight thousand nine hundred thirty-nine'), (11600, 65091, 'sixty-five thousand ninety-one'), (11601, 88889, 'eighty-eight thousand eight hundred eighty-nine'), (11602, 90521, 'ninety thousand five hundred twenty-one'), (11603, 9186, 'nine thousand one hundred eighty-six'), (11604, 99879, 'ninety-nine thousand eight hundred seventy-nine'), (11605, 19362, 'nineteen thousand three hundred sixty-two'), (11606, 39854, 'thirty-nine thousand eight hundred fifty-four'), (11607, 35175, 'thirty-five thousand one hundred seventy-five'), (11608, 80696, 'eighty thousand six hundred ninety-six'), (11609, 82112, 'eighty-two thousand one hundred twelve'), (11610, 62532, 'sixty-two thousand five hundred thirty-two'), (11611, 86508, 'eighty-six thousand five hundred eight'), (11612, 22622, 'twenty-two thousand six hundred twenty-two'), (11613, 53400, 'fifty-three thousand four hundred'), (11614, 97074, 'ninety-seven thousand seventy-four'), (11615, 7015, 'seven thousand fifteen'), (11616, 96968, 'ninety-six thousand nine hundred sixty-eight'), (11617, 50906, 'fifty thousand nine hundred six'), (11618, 43056, 'forty-three thousand fifty-six'), (11619, 88245, 'eighty-eight thousand two hundred forty-five'), (11620, 94630, 'ninety-four thousand six hundred thirty'), (11621, 19938, 'nineteen thousand nine hundred thirty-eight'), (11622, 58807, 'fifty-eight thousand eight hundred seven'), (11623, 3789, 'three thousand seven hundred eighty-nine'), (11624, 51857, 'fifty-one thousand eight hundred fifty-seven'), (11625, 5078, 'five thousand seventy-eight'), (11626, 97253, 'ninety-seven thousand two hundred fifty-three'), (11627, 12749, 'twelve thousand seven hundred forty-nine'), (11628, 59149, 'fifty-nine thousand one hundred forty-nine'), (11629, 1930, 'one thousand nine hundred thirty'), (11630, 11491, 'eleven thousand four hundred ninety-one'), (11631, 92160, 'ninety-two thousand one hundred sixty'), (11632, 78798, 'seventy-eight thousand seven hundred ninety-eight'), (11633, 99457, 'ninety-nine thousand four hundred fifty-seven'), (11634, 88198, 'eighty-eight thousand one hundred ninety-eight'), (11635, 83208, 'eighty-three thousand two hundred eight'), (11636, 55187, 'fifty-five thousand one hundred eighty-seven'), (11637, 14457, 'fourteen thousand four hundred fifty-seven'), (11638, 36275, 'thirty-six thousand two hundred seventy-five'), (11639, 19125, 'nineteen thousand one hundred twenty-five'), (11640, 57261, 'fifty-seven thousand two hundred sixty-one'), (11641, 79264, 'seventy-nine thousand two hundred sixty-four'), (11642, 27963, 'twenty-seven thousand nine hundred sixty-three'), (11643, 97746, 'ninety-seven thousand seven hundred forty-six'), (11644, 59654, 'fifty-nine thousand six hundred fifty-four'), (11645, 85754, 'eighty-five thousand seven hundred fifty-four'), (11646, 95921, 'ninety-five thousand nine hundred twenty-one'), (11647, 63436, 'sixty-three thousand four hundred thirty-six'), (11648, 14110, 'fourteen thousand one hundred ten'), (11649, 61418, 'sixty-one thousand four hundred eighteen'), (11650, 31755, 'thirty-one thousand seven hundred fifty-five'), (11651, 67385, 'sixty-seven thousand three hundred eighty-five'), (11652, 20453, 'twenty thousand four hundred fifty-three'), (11653, 69497, 'sixty-nine thousand four hundred ninety-seven'), (11654, 74906, 'seventy-four thousand nine hundred six'), (11655, 79118, 'seventy-nine thousand one hundred eighteen'), (11656, 80095, 'eighty thousand ninety-five'), (11657, 51949, 'fifty-one thousand nine hundred forty-nine'), (11658, 42010, 'forty-two thousand ten'), (11659, 97668, 'ninety-seven thousand six hundred sixty-eight'), (11660, 11900, 'eleven thousand nine hundred'), (11661, 79948, 'seventy-nine thousand nine hundred forty-eight'), (11662, 27477, 'twenty-seven thousand four hundred seventy-seven'), (11663, 84663, 'eighty-four thousand six hundred sixty-three'), (11664, 12813, 'twelve thousand eight hundred thirteen'), (11665, 14113, 'fourteen thousand one hundred thirteen'), (11666, 78422, 'seventy-eight thousand four hundred twenty-two'), (11667, 62573, 'sixty-two thousand five hundred seventy-three'), (11668, 93457, 'ninety-three thousand four hundred fifty-seven'), (11669, 3905, 'three thousand nine hundred five'), (11670, 96751, 'ninety-six thousand seven hundred fifty-one'), (11671, 27515, 'twenty-seven thousand five hundred fifteen'), (11672, 89238, 'eighty-nine thousand two hundred thirty-eight'), (11673, 79207, 'seventy-nine thousand two hundred seven'), (11674, 52155, 'fifty-two thousand one hundred fifty-five'), (11675, 66379, 'sixty-six thousand three hundred seventy-nine'), (11676, 82828, 'eighty-two thousand eight hundred twenty-eight'), (11677, 28213, 'twenty-eight thousand two hundred thirteen'), (11678, 14871, 'fourteen thousand eight hundred seventy-one'), (11679, 56550, 'fifty-six thousand five hundred fifty'), (11680, 52816, 'fifty-two thousand eight hundred sixteen'), (11681, 18178, 'eighteen thousand one hundred seventy-eight'), (11682, 69353, 'sixty-nine thousand three hundred fifty-three'), (11683, 59914, 'fifty-nine thousand nine hundred fourteen'), (11684, 562, 'five hundred sixty-two'), (11685, 45702, 'forty-five thousand seven hundred two'), (11686, 82182, 'eighty-two thousand one hundred eighty-two'), (11687, 13595, 'thirteen thousand five hundred ninety-five'), (11688, 24475, 'twenty-four thousand four hundred seventy-five'), (11689, 59214, 'fifty-nine thousand two hundred fourteen'), (11690, 10141, 'ten thousand one hundred forty-one'), (11691, 75815, 'seventy-five thousand eight hundred fifteen'), (11692, 34818, 'thirty-four thousand eight hundred eighteen'), (11693, 33234, 'thirty-three thousand two hundred thirty-four'), (11694, 44507, 'forty-four thousand five hundred seven'), (11695, 38488, 'thirty-eight thousand four hundred eighty-eight'), (11696, 14629, 'fourteen thousand six hundred twenty-nine'), (11697, 39234, 'thirty-nine thousand two hundred thirty-four'), (11698, 44093, 'forty-four thousand ninety-three'), (11699, 64442, 'sixty-four thousand four hundred forty-two'), (11700, 33592, 'thirty-three thousand five hundred ninety-two'), (11701, 92143, 'ninety-two thousand one hundred forty-three'), (11702, 91737, 'ninety-one thousand seven hundred thirty-seven'), (11703, 13863, 'thirteen thousand eight hundred sixty-three'), (11704, 89828, 'eighty-nine thousand eight hundred twenty-eight'), (11705, 75670, 'seventy-five thousand six hundred seventy'), (11706, 26145, 'twenty-six thousand one hundred forty-five'), (11707, 79179, 'seventy-nine thousand one hundred seventy-nine'), (11708, 56352, 'fifty-six thousand three hundred fifty-two'), (11709, 31213, 'thirty-one thousand two hundred thirteen'), (11710, 31000, 'thirty-one thousand'), (11711, 13600, 'thirteen thousand six hundred'), (11712, 2726, 'two thousand seven hundred twenty-six'), (11713, 11741, 'eleven thousand seven hundred forty-one'), (11714, 33712, 'thirty-three thousand seven hundred twelve'), (11715, 8952, 'eight thousand nine hundred fifty-two'), (11716, 48531, 'forty-eight thousand five hundred thirty-one'), (11717, 17784, 'seventeen thousand seven hundred eighty-four'), (11718, 42203, 'forty-two thousand two hundred three'), (11719, 40299, 'forty thousand two hundred ninety-nine'), (11720, 11575, 'eleven thousand five hundred seventy-five'), (11721, 70826, 'seventy thousand eight hundred twenty-six'), (11722, 39325, 'thirty-nine thousand three hundred twenty-five'), (11723, 12430, 'twelve thousand four hundred thirty'), (11724, 20568, 'twenty thousand five hundred sixty-eight'), (11725, 46411, 'forty-six thousand four hundred eleven'), (11726, 43225, 'forty-three thousand two hundred twenty-five'), (11727, 74946, 'seventy-four thousand nine hundred forty-six'), (11728, 38168, 'thirty-eight thousand one hundred sixty-eight'), (11729, 97285, 'ninety-seven thousand two hundred eighty-five'), (11730, 25114, 'twenty-five thousand one hundred fourteen'), (11731, 97553, 'ninety-seven thousand five hundred fifty-three'), (11732, 55344, 'fifty-five thousand three hundred forty-four'), (11733, 46716, 'forty-six thousand seven hundred sixteen'), (11734, 1349, 'one thousand three hundred forty-nine'), (11735, 18571, 'eighteen thousand five hundred seventy-one'), (11736, 81118, 'eighty-one thousand one hundred eighteen'), (11737, 2245, 'two thousand two hundred forty-five'), (11738, 43621, 'forty-three thousand six hundred twenty-one'), (11739, 53745, 'fifty-three thousand seven hundred forty-five'), (11740, 19570, 'nineteen thousand five hundred seventy'), (11741, 95121, 'ninety-five thousand one hundred twenty-one'), (11742, 41019, 'forty-one thousand nineteen'), (11743, 84235, 'eighty-four thousand two hundred thirty-five'), (11744, 62069, 'sixty-two thousand sixty-nine'), (11745, 12518, 'twelve thousand five hundred eighteen'), (11746, 32230, 'thirty-two thousand two hundred thirty'), (11747, 47606, 'forty-seven thousand six hundred six'), (11748, 36829, 'thirty-six thousand eight hundred twenty-nine'), (11749, 53947, 'fifty-three thousand nine hundred forty-seven'), (11750, 76149, 'seventy-six thousand one hundred forty-nine'), (11751, 62405, 'sixty-two thousand four hundred five'), (11752, 69111, 'sixty-nine thousand one hundred eleven'), (11753, 1164, 'one thousand one hundred sixty-four'), (11754, 11790, 'eleven thousand seven hundred ninety'), (11755, 31454, 'thirty-one thousand four hundred fifty-four'), (11756, 76515, 'seventy-six thousand five hundred fifteen'), (11757, 91747, 'ninety-one thousand seven hundred forty-seven'), (11758, 49758, 'forty-nine thousand seven hundred fifty-eight'), (11759, 49956, 'forty-nine thousand nine hundred fifty-six'), (11760, 16991, 'sixteen thousand nine hundred ninety-one'), (11761, 32057, 'thirty-two thousand fifty-seven'), (11762, 97275, 'ninety-seven thousand two hundred seventy-five'), (11763, 9684, 'nine thousand six hundred eighty-four'), (11764, 75187, 'seventy-five thousand one hundred eighty-seven'), (11765, 58824, 'fifty-eight thousand eight hundred twenty-four'), (11766, 37976, 'thirty-seven thousand nine hundred seventy-six'), (11767, 95642, 'ninety-five thousand six hundred forty-two'), (11768, 15224, 'fifteen thousand two hundred twenty-four'), (11769, 81348, 'eighty-one thousand three hundred forty-eight'), (11770, 53234, 'fifty-three thousand two hundred thirty-four'), (11771, 86414, 'eighty-six thousand four hundred fourteen'), (11772, 8898, 'eight thousand eight hundred ninety-eight'), (11773, 64085, 'sixty-four thousand eighty-five'), (11774, 97702, 'ninety-seven thousand seven hundred two'), (11775, 966, 'nine hundred sixty-six'), (11776, 84065, 'eighty-four thousand sixty-five'), (11777, 70166, 'seventy thousand one hundred sixty-six'), (11778, 41677, 'forty-one thousand six hundred seventy-seven'), (11779, 88721, 'eighty-eight thousand seven hundred twenty-one'), (11780, 92083, 'ninety-two thousand eighty-three'), (11781, 24249, 'twenty-four thousand two hundred forty-nine'), (11782, 32369, 'thirty-two thousand three hundred sixty-nine'), (11783, 67490, 'sixty-seven thousand four hundred ninety'), (11784, 92358, 'ninety-two thousand three hundred fifty-eight'), (11785, 97952, 'ninety-seven thousand nine hundred fifty-two'), (11786, 8684, 'eight thousand six hundred eighty-four'), (11787, 96902, 'ninety-six thousand nine hundred two'), (11788, 25621, 'twenty-five thousand six hundred twenty-one'), (11789, 94190, 'ninety-four thousand one hundred ninety'), (11790, 79891, 'seventy-nine thousand eight hundred ninety-one'), (11791, 18128, 'eighteen thousand one hundred twenty-eight'), (11792, 57520, 'fifty-seven thousand five hundred twenty'), (11793, 31279, 'thirty-one thousand two hundred seventy-nine'), (11794, 24861, 'twenty-four thousand eight hundred sixty-one'), (11795, 41493, 'forty-one thousand four hundred ninety-three'), (11796, 70009, 'seventy thousand nine'), (11797, 84847, 'eighty-four thousand eight hundred forty-seven'), (11798, 49539, 'forty-nine thousand five hundred thirty-nine'), (11799, 39700, 'thirty-nine thousand seven hundred'), (11800, 69440, 'sixty-nine thousand four hundred forty'), (11801, 47244, 'forty-seven thousand two hundred forty-four'), (11802, 16192, 'sixteen thousand one hundred ninety-two'), (11803, 99894, 'ninety-nine thousand eight hundred ninety-four'), (11804, 71204, 'seventy-one thousand two hundred four'), (11805, 36631, 'thirty-six thousand six hundred thirty-one'), (11806, 99249, 'ninety-nine thousand two hundred forty-nine'), (11807, 23762, 'twenty-three thousand seven hundred sixty-two'), (11808, 84769, 'eighty-four thousand seven hundred sixty-nine'), (11809, 26880, 'twenty-six thousand eight hundred eighty'), (11810, 49808, 'forty-nine thousand eight hundred eight'), (11811, 84554, 'eighty-four thousand five hundred fifty-four'), (11812, 77249, 'seventy-seven thousand two hundred forty-nine'), (11813, 71398, 'seventy-one thousand three hundred ninety-eight'), (11814, 52325, 'fifty-two thousand three hundred twenty-five'), (11815, 59096, 'fifty-nine thousand ninety-six'), (11816, 10416, 'ten thousand four hundred sixteen'), (11817, 63116, 'sixty-three thousand one hundred sixteen'), (11818, 35076, 'thirty-five thousand seventy-six'), (11819, 47678, 'forty-seven thousand six hundred seventy-eight'), (11820, 5183, 'five thousand one hundred eighty-three'), (11821, 45622, 'forty-five thousand six hundred twenty-two'), (11822, 17876, 'seventeen thousand eight hundred seventy-six'), (11823, 31904, 'thirty-one thousand nine hundred four'), (11824, 31790, 'thirty-one thousand seven hundred ninety'), (11825, 30066, 'thirty thousand sixty-six'), (11826, 64004, 'sixty-four thousand four'), (11827, 67585, 'sixty-seven thousand five hundred eighty-five'), (11828, 15185, 'fifteen thousand one hundred eighty-five'), (11829, 52327, 'fifty-two thousand three hundred twenty-seven'), (11830, 82876, 'eighty-two thousand eight hundred seventy-six'), (11831, 54559, 'fifty-four thousand five hundred fifty-nine'), (11832, 9727, 'nine thousand seven hundred twenty-seven'), (11833, 20149, 'twenty thousand one hundred forty-nine'), (11834, 25430, 'twenty-five thousand four hundred thirty'), (11835, 19266, 'nineteen thousand two hundred sixty-six'), (11836, 33438, 'thirty-three thousand four hundred thirty-eight'), (11837, 41013, 'forty-one thousand thirteen'), (11838, 98248, 'ninety-eight thousand two hundred forty-eight'), (11839, 18937, 'eighteen thousand nine hundred thirty-seven'), (11840, 47637, 'forty-seven thousand six hundred thirty-seven'), (11841, 9573, 'nine thousand five hundred seventy-three'), (11842, 31136, 'thirty-one thousand one hundred thirty-six'), (11843, 52945, 'fifty-two thousand nine hundred forty-five'), (11844, 32821, 'thirty-two thousand eight hundred twenty-one'), (11845, 4434, 'four thousand four hundred thirty-four'), (11846, 96124, 'ninety-six thousand one hundred twenty-four'), (11847, 99069, 'ninety-nine thousand sixty-nine'), (11848, 31254, 'thirty-one thousand two hundred fifty-four'), (11849, 98873, 'ninety-eight thousand eight hundred seventy-three'), (11850, 38549, 'thirty-eight thousand five hundred forty-nine'), (11851, 49908, 'forty-nine thousand nine hundred eight'), (11852, 45663, 'forty-five thousand six hundred sixty-three'), (11853, 2026, 'two thousand twenty-six'), (11854, 14456, 'fourteen thousand four hundred fifty-six'), (11855, 77276, 'seventy-seven thousand two hundred seventy-six'), (11856, 53456, 'fifty-three thousand four hundred fifty-six'), (11857, 57725, 'fifty-seven thousand seven hundred twenty-five'), (11858, 76567, 'seventy-six thousand five hundred sixty-seven'), (11859, 8924, 'eight thousand nine hundred twenty-four'), (11860, 29174, 'twenty-nine thousand one hundred seventy-four'), (11861, 23749, 'twenty-three thousand seven hundred forty-nine'), (11862, 8948, 'eight thousand nine hundred forty-eight'), (11863, 47281, 'forty-seven thousand two hundred eighty-one'), (11864, 97353, 'ninety-seven thousand three hundred fifty-three'), (11865, 95489, 'ninety-five thousand four hundred eighty-nine'), (11866, 22196, 'twenty-two thousand one hundred ninety-six'), (11867, 35474, 'thirty-five thousand four hundred seventy-four'), (11868, 58670, 'fifty-eight thousand six hundred seventy'), (11869, 11890, 'eleven thousand eight hundred ninety'), (11870, 17015, 'seventeen thousand fifteen'), (11871, 6450, 'six thousand four hundred fifty'), (11872, 43611, 'forty-three thousand six hundred eleven'), (11873, 45989, 'forty-five thousand nine hundred eighty-nine'), (11874, 76160, 'seventy-six thousand one hundred sixty'), (11875, 12144, 'twelve thousand one hundred forty-four'), (11876, 27854, 'twenty-seven thousand eight hundred fifty-four'), (11877, 64368, 'sixty-four thousand three hundred sixty-eight'), (11878, 75500, 'seventy-five thousand five hundred'), (11879, 31444, 'thirty-one thousand four hundred forty-four'), (11880, 71191, 'seventy-one thousand one hundred ninety-one'), (11881, 72558, 'seventy-two thousand five hundred fifty-eight'), (11882, 14077, 'fourteen thousand seventy-seven'), (11883, 69105, 'sixty-nine thousand one hundred five'), (11884, 30009, 'thirty thousand nine'), (11885, 40839, 'forty thousand eight hundred thirty-nine'), (11886, 46701, 'forty-six thousand seven hundred one'), (11887, 97943, 'ninety-seven thousand nine hundred forty-three'), (11888, 98288, 'ninety-eight thousand two hundred eighty-eight'), (11889, 28912, 'twenty-eight thousand nine hundred twelve'), (11890, 86088, 'eighty-six thousand eighty-eight'), (11891, 43432, 'forty-three thousand four hundred thirty-two'), (11892, 141, 'one hundred forty-one'), (11893, 16512, 'sixteen thousand five hundred twelve'), (11894, 61314, 'sixty-one thousand three hundred fourteen'), (11895, 31222, 'thirty-one thousand two hundred twenty-two'), (11896, 25684, 'twenty-five thousand six hundred eighty-four'), (11897, 54535, 'fifty-four thousand five hundred thirty-five'), (11898, 71056, 'seventy-one thousand fifty-six'), (11899, 9672, 'nine thousand six hundred seventy-two'), (11900, 57088, 'fifty-seven thousand eighty-eight'), (11901, 54500, 'fifty-four thousand five hundred'), (11902, 53216, 'fifty-three thousand two hundred sixteen'), (11903, 66047, 'sixty-six thousand forty-seven'), (11904, 43537, 'forty-three thousand five hundred thirty-seven'), (11905, 79581, 'seventy-nine thousand five hundred eighty-one'), (11906, 55622, 'fifty-five thousand six hundred twenty-two'), (11907, 31563, 'thirty-one thousand five hundred sixty-three'), (11908, 40715, 'forty thousand seven hundred fifteen'), (11909, 25270, 'twenty-five thousand two hundred seventy'), (11910, 71683, 'seventy-one thousand six hundred eighty-three'), (11911, 46112, 'forty-six thousand one hundred twelve'), (11912, 69541, 'sixty-nine thousand five hundred forty-one'), (11913, 39070, 'thirty-nine thousand seventy'), (11914, 92860, 'ninety-two thousand eight hundred sixty'), (11915, 51286, 'fifty-one thousand two hundred eighty-six'), (11916, 89662, 'eighty-nine thousand six hundred sixty-two'), (11917, 63997, 'sixty-three thousand nine hundred ninety-seven'), (11918, 61622, 'sixty-one thousand six hundred twenty-two'), (11919, 71599, 'seventy-one thousand five hundred ninety-nine'), (11920, 66126, 'sixty-six thousand one hundred twenty-six'), (11921, 17672, 'seventeen thousand six hundred seventy-two'), (11922, 63136, 'sixty-three thousand one hundred thirty-six'), (11923, 30246, 'thirty thousand two hundred forty-six'), (11924, 652, 'six hundred fifty-two'), (11925, 68252, 'sixty-eight thousand two hundred fifty-two'), (11926, 98243, 'ninety-eight thousand two hundred forty-three'), (11927, 1528, 'one thousand five hundred twenty-eight'), (11928, 46700, 'forty-six thousand seven hundred'), (11929, 20258, 'twenty thousand two hundred fifty-eight'), (11930, 28333, 'twenty-eight thousand three hundred thirty-three'), (11931, 74623, 'seventy-four thousand six hundred twenty-three'), (11932, 73797, 'seventy-three thousand seven hundred ninety-seven'), (11933, 44919, 'forty-four thousand nine hundred nineteen'), (11934, 45484, 'forty-five thousand four hundred eighty-four'), (11935, 74024, 'seventy-four thousand twenty-four'), (11936, 23851, 'twenty-three thousand eight hundred fifty-one'), (11937, 34416, 'thirty-four thousand four hundred sixteen'), (11938, 18345, 'eighteen thousand three hundred forty-five'), (11939, 74186, 'seventy-four thousand one hundred eighty-six'), (11940, 15208, 'fifteen thousand two hundred eight'), (11941, 88294, 'eighty-eight thousand two hundred ninety-four'), (11942, 45589, 'forty-five thousand five hundred eighty-nine'), (11943, 85941, 'eighty-five thousand nine hundred forty-one'), (11944, 72767, 'seventy-two thousand seven hundred sixty-seven'), (11945, 82383, 'eighty-two thousand three hundred eighty-three'), (11946, 13687, 'thirteen thousand six hundred eighty-seven'), (11947, 61670, 'sixty-one thousand six hundred seventy'), (11948, 27324, 'twenty-seven thousand three hundred twenty-four'), (11949, 94486, 'ninety-four thousand four hundred eighty-six'), (11950, 60133, 'sixty thousand one hundred thirty-three'), (11951, 33852, 'thirty-three thousand eight hundred fifty-two'), (11952, 40356, 'forty thousand three hundred fifty-six'), (11953, 36392, 'thirty-six thousand three hundred ninety-two'), (11954, 45489, 'forty-five thousand four hundred eighty-nine'), (11955, 59903, 'fifty-nine thousand nine hundred three'), (11956, 36891, 'thirty-six thousand eight hundred ninety-one'), (11957, 59980, 'fifty-nine thousand nine hundred eighty'), (11958, 30197, 'thirty thousand one hundred ninety-seven'), (11959, 74634, 'seventy-four thousand six hundred thirty-four'), (11960, 85306, 'eighty-five thousand three hundred six'), (11961, 80605, 'eighty thousand six hundred five'), (11962, 61051, 'sixty-one thousand fifty-one'), (11963, 90780, 'ninety thousand seven hundred eighty'), (11964, 80431, 'eighty thousand four hundred thirty-one'), (11965, 85074, 'eighty-five thousand seventy-four'), (11966, 7006, 'seven thousand six'), (11967, 22805, 'twenty-two thousand eight hundred five'), (11968, 12958, 'twelve thousand nine hundred fifty-eight'), (11969, 89558, 'eighty-nine thousand five hundred fifty-eight'), (11970, 54607, 'fifty-four thousand six hundred seven'), (11971, 79718, 'seventy-nine thousand seven hundred eighteen'), (11972, 2951, 'two thousand nine hundred fifty-one'), (11973, 81787, 'eighty-one thousand seven hundred eighty-seven'), (11974, 93892, 'ninety-three thousand eight hundred ninety-two'), (11975, 54587, 'fifty-four thousand five hundred eighty-seven'), (11976, 61550, 'sixty-one thousand five hundred fifty'), (11977, 8255, 'eight thousand two hundred fifty-five'), (11978, 32437, 'thirty-two thousand four hundred thirty-seven'), (11979, 31627, 'thirty-one thousand six hundred twenty-seven'), (11980, 51876, 'fifty-one thousand eight hundred seventy-six'), (11981, 76292, 'seventy-six thousand two hundred ninety-two'), (11982, 84070, 'eighty-four thousand seventy'), (11983, 77462, 'seventy-seven thousand four hundred sixty-two'), (11984, 93584, 'ninety-three thousand five hundred eighty-four'), (11985, 9629, 'nine thousand six hundred twenty-nine'), (11986, 86058, 'eighty-six thousand fifty-eight'), (11987, 27023, 'twenty-seven thousand twenty-three'), (11988, 96387, 'ninety-six thousand three hundred eighty-seven'), (11989, 57237, 'fifty-seven thousand two hundred thirty-seven'), (11990, 77443, 'seventy-seven thousand four hundred forty-three'), (11991, 13032, 'thirteen thousand thirty-two'), (11992, 75312, 'seventy-five thousand three hundred twelve'), (11993, 74218, 'seventy-four thousand two hundred eighteen'), (11994, 52174, 'fifty-two thousand one hundred seventy-four'), (11995, 82639, 'eighty-two thousand six hundred thirty-nine'), (11996, 64422, 'sixty-four thousand four hundred twenty-two'), (11997, 98138, 'ninety-eight thousand one hundred thirty-eight'), (11998, 96761, 'ninety-six thousand seven hundred sixty-one'), (11999, 4582, 'four thousand five hundred eighty-two'), (12000, 6209, 'six thousand two hundred nine'), (12001, 78080, 'seventy-eight thousand eighty'), (12002, 35352, 'thirty-five thousand three hundred fifty-two'), (12003, 78899, 'seventy-eight thousand eight hundred ninety-nine'), (12004, 17227, 'seventeen thousand two hundred twenty-seven'), (12005, 4726, 'four thousand seven hundred twenty-six'), (12006, 74902, 'seventy-four thousand nine hundred two'), (12007, 75582, 'seventy-five thousand five hundred eighty-two'), (12008, 3597, 'three thousand five hundred ninety-seven'), (12009, 23732, 'twenty-three thousand seven hundred thirty-two'), (12010, 21848, 'twenty-one thousand eight hundred forty-eight'), (12011, 1842, 'one thousand eight hundred forty-two'), (12012, 62225, 'sixty-two thousand two hundred twenty-five'), (12013, 98303, 'ninety-eight thousand three hundred three'), (12014, 67860, 'sixty-seven thousand eight hundred sixty'), (12015, 87733, 'eighty-seven thousand seven hundred thirty-three'), (12016, 44193, 'forty-four thousand one hundred ninety-three'), (12017, 5024, 'five thousand twenty-four'), (12018, 80503, 'eighty thousand five hundred three'), (12019, 44968, 'forty-four thousand nine hundred sixty-eight'), (12020, 1775, 'one thousand seven hundred seventy-five'), (12021, 90687, 'ninety thousand six hundred eighty-seven'), (12022, 32791, 'thirty-two thousand seven hundred ninety-one'), (12023, 88837, 'eighty-eight thousand eight hundred thirty-seven'), (12024, 66802, 'sixty-six thousand eight hundred two'), (12025, 93401, 'ninety-three thousand four hundred one'), (12026, 56424, 'fifty-six thousand four hundred twenty-four'), (12027, 34182, 'thirty-four thousand one hundred eighty-two'), (12028, 95190, 'ninety-five thousand one hundred ninety'), (12029, 55994, 'fifty-five thousand nine hundred ninety-four'), (12030, 21357, 'twenty-one thousand three hundred fifty-seven'), (12031, 71324, 'seventy-one thousand three hundred twenty-four'), (12032, 92769, 'ninety-two thousand seven hundred sixty-nine'), (12033, 19257, 'nineteen thousand two hundred fifty-seven'), (12034, 28154, 'twenty-eight thousand one hundred fifty-four'), (12035, 79926, 'seventy-nine thousand nine hundred twenty-six'), (12036, 3807, 'three thousand eight hundred seven'), (12037, 92542, 'ninety-two thousand five hundred forty-two'), (12038, 41857, 'forty-one thousand eight hundred fifty-seven'), (12039, 99224, 'ninety-nine thousand two hundred twenty-four'), (12040, 28124, 'twenty-eight thousand one hundred twenty-four'), (12041, 24823, 'twenty-four thousand eight hundred twenty-three'), (12042, 39786, 'thirty-nine thousand seven hundred eighty-six'), (12043, 30406, 'thirty thousand four hundred six'), (12044, 95118, 'ninety-five thousand one hundred eighteen'), (12045, 94458, 'ninety-four thousand four hundred fifty-eight'), (12046, 23326, 'twenty-three thousand three hundred twenty-six'), (12047, 81287, 'eighty-one thousand two hundred eighty-seven'), (12048, 35749, 'thirty-five thousand seven hundred forty-nine'), (12049, 13223, 'thirteen thousand two hundred twenty-three'), (12050, 28907, 'twenty-eight thousand nine hundred seven'), (12051, 27947, 'twenty-seven thousand nine hundred forty-seven'), (12052, 58608, 'fifty-eight thousand six hundred eight'), (12053, 92961, 'ninety-two thousand nine hundred sixty-one'), (12054, 69605, 'sixty-nine thousand six hundred five'), (12055, 52464, 'fifty-two thousand four hundred sixty-four'), (12056, 93458, 'ninety-three thousand four hundred fifty-eight'), (12057, 70854, 'seventy thousand eight hundred fifty-four'), (12058, 13130, 'thirteen thousand one hundred thirty'), (12059, 41633, 'forty-one thousand six hundred thirty-three'), (12060, 18300, 'eighteen thousand three hundred'), (12061, 52547, 'fifty-two thousand five hundred forty-seven'), (12062, 13523, 'thirteen thousand five hundred twenty-three'), (12063, 84997, 'eighty-four thousand nine hundred ninety-seven'), (12064, 64646, 'sixty-four thousand six hundred forty-six'), (12065, 11803, 'eleven thousand eight hundred three'), (12066, 53679, 'fifty-three thousand six hundred seventy-nine'), (12067, 29379, 'twenty-nine thousand three hundred seventy-nine'), (12068, 59549, 'fifty-nine thousand five hundred forty-nine'), (12069, 96219, 'ninety-six thousand two hundred nineteen'), (12070, 56954, 'fifty-six thousand nine hundred fifty-four'), (12071, 79549, 'seventy-nine thousand five hundred forty-nine'), (12072, 77960, 'seventy-seven thousand nine hundred sixty'), (12073, 62591, 'sixty-two thousand five hundred ninety-one'), (12074, 72297, 'seventy-two thousand two hundred ninety-seven'), (12075, 1606, 'one thousand six hundred six'), (12076, 36496, 'thirty-six thousand four hundred ninety-six'), (12077, 52053, 'fifty-two thousand fifty-three'), (12078, 85304, 'eighty-five thousand three hundred four'), (12079, 2493, 'two thousand four hundred ninety-three'), (12080, 47966, 'forty-seven thousand nine hundred sixty-six'), (12081, 35092, 'thirty-five thousand ninety-two'), (12082, 74571, 'seventy-four thousand five hundred seventy-one'), (12083, 85359, 'eighty-five thousand three hundred fifty-nine'), (12084, 30082, 'thirty thousand eighty-two'), (12085, 14735, 'fourteen thousand seven hundred thirty-five'), (12086, 93257, 'ninety-three thousand two hundred fifty-seven'), (12087, 53666, 'fifty-three thousand six hundred sixty-six'), (12088, 74083, 'seventy-four thousand eighty-three'), (12089, 86892, 'eighty-six thousand eight hundred ninety-two'), (12090, 91726, 'ninety-one thousand seven hundred twenty-six'), (12091, 28735, 'twenty-eight thousand seven hundred thirty-five'), (12092, 39033, 'thirty-nine thousand thirty-three'), (12093, 21608, 'twenty-one thousand six hundred eight'), (12094, 30588, 'thirty thousand five hundred eighty-eight'), (12095, 36846, 'thirty-six thousand eight hundred forty-six'), (12096, 92425, 'ninety-two thousand four hundred twenty-five'), (12097, 55883, 'fifty-five thousand eight hundred eighty-three'), (12098, 22250, 'twenty-two thousand two hundred fifty'), (12099, 45860, 'forty-five thousand eight hundred sixty'), (12100, 30744, 'thirty thousand seven hundred forty-four'), (12101, 34829, 'thirty-four thousand eight hundred twenty-nine'), (12102, 96978, 'ninety-six thousand nine hundred seventy-eight'), (12103, 24470, 'twenty-four thousand four hundred seventy'), (12104, 33096, 'thirty-three thousand ninety-six'), (12105, 49415, 'forty-nine thousand four hundred fifteen'), (12106, 5216, 'five thousand two hundred sixteen'), (12107, 9347, 'nine thousand three hundred forty-seven'), (12108, 9865, 'nine thousand eight hundred sixty-five'), (12109, 93190, 'ninety-three thousand one hundred ninety'), (12110, 63217, 'sixty-three thousand two hundred seventeen'), (12111, 36516, 'thirty-six thousand five hundred sixteen'), (12112, 62330, 'sixty-two thousand three hundred thirty'), (12113, 786, 'seven hundred eighty-six'), (12114, 99356, 'ninety-nine thousand three hundred fifty-six'), (12115, 54332, 'fifty-four thousand three hundred thirty-two'), (12116, 71533, 'seventy-one thousand five hundred thirty-three'), (12117, 68263, 'sixty-eight thousand two hundred sixty-three'), (12118, 86100, 'eighty-six thousand one hundred'), (12119, 16879, 'sixteen thousand eight hundred seventy-nine'), (12120, 72121, 'seventy-two thousand one hundred twenty-one'), (12121, 54512, 'fifty-four thousand five hundred twelve'), (12122, 25791, 'twenty-five thousand seven hundred ninety-one'), (12123, 8576, 'eight thousand five hundred seventy-six'), (12124, 64064, 'sixty-four thousand sixty-four'), (12125, 83319, 'eighty-three thousand three hundred nineteen'), (12126, 88386, 'eighty-eight thousand three hundred eighty-six'), (12127, 33513, 'thirty-three thousand five hundred thirteen'), (12128, 88564, 'eighty-eight thousand five hundred sixty-four'), (12129, 65299, 'sixty-five thousand two hundred ninety-nine'), (12130, 52720, 'fifty-two thousand seven hundred twenty'), (12131, 23604, 'twenty-three thousand six hundred four'), (12132, 42959, 'forty-two thousand nine hundred fifty-nine'), (12133, 26637, 'twenty-six thousand six hundred thirty-seven'), (12134, 90758, 'ninety thousand seven hundred fifty-eight'), (12135, 39463, 'thirty-nine thousand four hundred sixty-three'), (12136, 67973, 'sixty-seven thousand nine hundred seventy-three'), (12137, 35897, 'thirty-five thousand eight hundred ninety-seven'), (12138, 25051, 'twenty-five thousand fifty-one'), (12139, 92027, 'ninety-two thousand twenty-seven'), (12140, 76551, 'seventy-six thousand five hundred fifty-one'), (12141, 67406, 'sixty-seven thousand four hundred six'), (12142, 78730, 'seventy-eight thousand seven hundred thirty'), (12143, 2327, 'two thousand three hundred twenty-seven'), (12144, 49857, 'forty-nine thousand eight hundred fifty-seven'), (12145, 71071, 'seventy-one thousand seventy-one'), (12146, 62878, 'sixty-two thousand eight hundred seventy-eight'), (12147, 64558, 'sixty-four thousand five hundred fifty-eight'), (12148, 97507, 'ninety-seven thousand five hundred seven'), (12149, 1813, 'one thousand eight hundred thirteen'), (12150, 6176, 'six thousand one hundred seventy-six'), (12151, 24817, 'twenty-four thousand eight hundred seventeen'), (12152, 50946, 'fifty thousand nine hundred forty-six'), (12153, 55529, 'fifty-five thousand five hundred twenty-nine'), (12154, 8122, 'eight thousand one hundred twenty-two'), (12155, 80826, 'eighty thousand eight hundred twenty-six'), (12156, 47924, 'forty-seven thousand nine hundred twenty-four'), (12157, 44175, 'forty-four thousand one hundred seventy-five'), (12158, 45190, 'forty-five thousand one hundred ninety'), (12159, 73238, 'seventy-three thousand two hundred thirty-eight'), (12160, 7085, 'seven thousand eighty-five'), (12161, 3607, 'three thousand six hundred seven'), (12162, 2122, 'two thousand one hundred twenty-two'), (12163, 58362, 'fifty-eight thousand three hundred sixty-two'), (12164, 60497, 'sixty thousand four hundred ninety-seven'), (12165, 70062, 'seventy thousand sixty-two'), (12166, 60827, 'sixty thousand eight hundred twenty-seven'), (12167, 18172, 'eighteen thousand one hundred seventy-two'), (12168, 74207, 'seventy-four thousand two hundred seven'), (12169, 71080, 'seventy-one thousand eighty'), (12170, 13839, 'thirteen thousand eight hundred thirty-nine'), (12171, 89290, 'eighty-nine thousand two hundred ninety'), (12172, 39482, 'thirty-nine thousand four hundred eighty-two'), (12173, 67801, 'sixty-seven thousand eight hundred one'), (12174, 25226, 'twenty-five thousand two hundred twenty-six'), (12175, 19676, 'nineteen thousand six hundred seventy-six'), (12176, 72848, 'seventy-two thousand eight hundred forty-eight'), (12177, 28054, 'twenty-eight thousand fifty-four'), (12178, 76639, 'seventy-six thousand six hundred thirty-nine'), (12179, 42445, 'forty-two thousand four hundred forty-five'), (12180, 30299, 'thirty thousand two hundred ninety-nine'), (12181, 55329, 'fifty-five thousand three hundred twenty-nine'), (12182, 40899, 'forty thousand eight hundred ninety-nine'), (12183, 29180, 'twenty-nine thousand one hundred eighty'), (12184, 52892, 'fifty-two thousand eight hundred ninety-two'), (12185, 52002, 'fifty-two thousand two'), (12186, 84816, 'eighty-four thousand eight hundred sixteen'), (12187, 29265, 'twenty-nine thousand two hundred sixty-five'), (12188, 43137, 'forty-three thousand one hundred thirty-seven'), (12189, 96602, 'ninety-six thousand six hundred two'), (12190, 19642, 'nineteen thousand six hundred forty-two'), (12191, 30171, 'thirty thousand one hundred seventy-one'), (12192, 23830, 'twenty-three thousand eight hundred thirty'), (12193, 30552, 'thirty thousand five hundred fifty-two'), (12194, 25989, 'twenty-five thousand nine hundred eighty-nine'), (12195, 71307, 'seventy-one thousand three hundred seven'), (12196, 73492, 'seventy-three thousand four hundred ninety-two'), (12197, 56640, 'fifty-six thousand six hundred forty'), (12198, 75755, 'seventy-five thousand seven hundred fifty-five'), (12199, 91713, 'ninety-one thousand seven hundred thirteen'), (12200, 83528, 'eighty-three thousand five hundred twenty-eight'), (12201, 52843, 'fifty-two thousand eight hundred forty-three'), (12202, 1420, 'one thousand four hundred twenty'), (12203, 48160, 'forty-eight thousand one hundred sixty'), (12204, 48789, 'forty-eight thousand seven hundred eighty-nine'), (12205, 80881, 'eighty thousand eight hundred eighty-one'), (12206, 86454, 'eighty-six thousand four hundred fifty-four'), (12207, 55861, 'fifty-five thousand eight hundred sixty-one'), (12208, 73894, 'seventy-three thousand eight hundred ninety-four'), (12209, 25268, 'twenty-five thousand two hundred sixty-eight'), (12210, 63367, 'sixty-three thousand three hundred sixty-seven'), (12211, 6405, 'six thousand four hundred five'), (12212, 19080, 'nineteen thousand eighty'), (12213, 33111, 'thirty-three thousand one hundred eleven'), (12214, 41973, 'forty-one thousand nine hundred seventy-three'), (12215, 75260, 'seventy-five thousand two hundred sixty'), (12216, 5754, 'five thousand seven hundred fifty-four'), (12217, 84202, 'eighty-four thousand two hundred two'), (12218, 91018, 'ninety-one thousand eighteen'), (12219, 22588, 'twenty-two thousand five hundred eighty-eight'), (12220, 63973, 'sixty-three thousand nine hundred seventy-three'), (12221, 19906, 'nineteen thousand nine hundred six'), (12222, 98196, 'ninety-eight thousand one hundred ninety-six'), (12223, 14860, 'fourteen thousand eight hundred sixty'), (12224, 51848, 'fifty-one thousand eight hundred forty-eight'), (12225, 34090, 'thirty-four thousand ninety'), (12226, 11671, 'eleven thousand six hundred seventy-one'), (12227, 6585, 'six thousand five hundred eighty-five'), (12228, 40686, 'forty thousand six hundred eighty-six'), (12229, 84118, 'eighty-four thousand one hundred eighteen'), (12230, 58590, 'fifty-eight thousand five hundred ninety'), (12231, 98857, 'ninety-eight thousand eight hundred fifty-seven'), (12232, 89544, 'eighty-nine thousand five hundred forty-four'), (12233, 53821, 'fifty-three thousand eight hundred twenty-one'), (12234, 33318, 'thirty-three thousand three hundred eighteen'), (12235, 26043, 'twenty-six thousand forty-three'), (12236, 48281, 'forty-eight thousand two hundred eighty-one'), (12237, 29938, 'twenty-nine thousand nine hundred thirty-eight'), (12238, 6697, 'six thousand six hundred ninety-seven'), (12239, 62781, 'sixty-two thousand seven hundred eighty-one'), (12240, 54537, 'fifty-four thousand five hundred thirty-seven'), (12241, 51026, 'fifty-one thousand twenty-six'), (12242, 31972, 'thirty-one thousand nine hundred seventy-two'), (12243, 82938, 'eighty-two thousand nine hundred thirty-eight'), (12244, 9145, 'nine thousand one hundred forty-five'), (12245, 37567, 'thirty-seven thousand five hundred sixty-seven'), (12246, 30936, 'thirty thousand nine hundred thirty-six'), (12247, 10344, 'ten thousand three hundred forty-four'), (12248, 8213, 'eight thousand two hundred thirteen'), (12249, 28529, 'twenty-eight thousand five hundred twenty-nine'), (12250, 41079, 'forty-one thousand seventy-nine'), (12251, 53803, 'fifty-three thousand eight hundred three'), (12252, 42259, 'forty-two thousand two hundred fifty-nine'), (12253, 41989, 'forty-one thousand nine hundred eighty-nine'), (12254, 70215, 'seventy thousand two hundred fifteen'), (12255, 11850, 'eleven thousand eight hundred fifty'), (12256, 13274, 'thirteen thousand two hundred seventy-four'), (12257, 29394, 'twenty-nine thousand three hundred ninety-four'), (12258, 99859, 'ninety-nine thousand eight hundred fifty-nine'), (12259, 75423, 'seventy-five thousand four hundred twenty-three'), (12260, 52447, 'fifty-two thousand four hundred forty-seven'), (12261, 63383, 'sixty-three thousand three hundred eighty-three'), (12262, 79578, 'seventy-nine thousand five hundred seventy-eight'), (12263, 31439, 'thirty-one thousand four hundred thirty-nine'), (12264, 54486, 'fifty-four thousand four hundred eighty-six'), (12265, 86599, 'eighty-six thousand five hundred ninety-nine'), (12266, 10536, 'ten thousand five hundred thirty-six'), (12267, 52046, 'fifty-two thousand forty-six'), (12268, 3438, 'three thousand four hundred thirty-eight'), (12269, 78848, 'seventy-eight thousand eight hundred forty-eight'), (12270, 25318, 'twenty-five thousand three hundred eighteen'), (12271, 25220, 'twenty-five thousand two hundred twenty'), (12272, 82668, 'eighty-two thousand six hundred sixty-eight'), (12273, 10255, 'ten thousand two hundred fifty-five'), (12274, 53838, 'fifty-three thousand eight hundred thirty-eight'), (12275, 58037, 'fifty-eight thousand thirty-seven'), (12276, 12809, 'twelve thousand eight hundred nine'), (12277, 89671, 'eighty-nine thousand six hundred seventy-one'), (12278, 96811, 'ninety-six thousand eight hundred eleven'), (12279, 69244, 'sixty-nine thousand two hundred forty-four'), (12280, 35057, 'thirty-five thousand fifty-seven'), (12281, 71045, 'seventy-one thousand forty-five'), (12282, 82984, 'eighty-two thousand nine hundred eighty-four'), (12283, 95160, 'ninety-five thousand one hundred sixty'), (12284, 7287, 'seven thousand two hundred eighty-seven'), (12285, 51887, 'fifty-one thousand eight hundred eighty-seven'), (12286, 20786, 'twenty thousand seven hundred eighty-six'), (12287, 69513, 'sixty-nine thousand five hundred thirteen'), (12288, 57050, 'fifty-seven thousand fifty'), (12289, 85885, 'eighty-five thousand eight hundred eighty-five'), (12290, 7933, 'seven thousand nine hundred thirty-three'), (12291, 49332, 'forty-nine thousand three hundred thirty-two'), (12292, 25889, 'twenty-five thousand eight hundred eighty-nine'), (12293, 18142, 'eighteen thousand one hundred forty-two'), (12294, 15069, 'fifteen thousand sixty-nine'), (12295, 76497, 'seventy-six thousand four hundred ninety-seven'), (12296, 6859, 'six thousand eight hundred fifty-nine'), (12297, 51426, 'fifty-one thousand four hundred twenty-six'), (12298, 54449, 'fifty-four thousand four hundred forty-nine'), (12299, 39365, 'thirty-nine thousand three hundred sixty-five'), (12300, 80565, 'eighty thousand five hundred sixty-five'), (12301, 84310, 'eighty-four thousand three hundred ten'), (12302, 81282, 'eighty-one thousand two hundred eighty-two'), (12303, 47045, 'forty-seven thousand forty-five'), (12304, 25644, 'twenty-five thousand six hundred forty-four'), (12305, 54249, 'fifty-four thousand two hundred forty-nine'), (12306, 78917, 'seventy-eight thousand nine hundred seventeen'), (12307, 24516, 'twenty-four thousand five hundred sixteen'), (12308, 56776, 'fifty-six thousand seven hundred seventy-six'), (12309, 59310, 'fifty-nine thousand three hundred ten'), (12310, 6642, 'six thousand six hundred forty-two'), (12311, 92751, 'ninety-two thousand seven hundred fifty-one'), (12312, 43548, 'forty-three thousand five hundred forty-eight'), (12313, 10328, 'ten thousand three hundred twenty-eight'), (12314, 4504, 'four thousand five hundred four'), (12315, 34368, 'thirty-four thousand three hundred sixty-eight'), (12316, 5429, 'five thousand four hundred twenty-nine'), (12317, 11693, 'eleven thousand six hundred ninety-three'), (12318, 58070, 'fifty-eight thousand seventy'), (12319, 5743, 'five thousand seven hundred forty-three'), (12320, 33981, 'thirty-three thousand nine hundred eighty-one'), (12321, 81115, 'eighty-one thousand one hundred fifteen'), (12322, 66923, 'sixty-six thousand nine hundred twenty-three'), (12323, 85256, 'eighty-five thousand two hundred fifty-six'), (12324, 17389, 'seventeen thousand three hundred eighty-nine'), (12325, 51630, 'fifty-one thousand six hundred thirty'), (12326, 2347, 'two thousand three hundred forty-seven'), (12327, 10001, 'ten thousand one'), (12328, 13498, 'thirteen thousand four hundred ninety-eight'), (12329, 90259, 'ninety thousand two hundred fifty-nine'), (12330, 77607, 'seventy-seven thousand six hundred seven'), (12331, 83392, 'eighty-three thousand three hundred ninety-two'), (12332, 8612, 'eight thousand six hundred twelve'), (12333, 87856, 'eighty-seven thousand eight hundred fifty-six'), (12334, 79804, 'seventy-nine thousand eight hundred four'), (12335, 79144, 'seventy-nine thousand one hundred forty-four'), (12336, 99885, 'ninety-nine thousand eight hundred eighty-five'), (12337, 89617, 'eighty-nine thousand six hundred seventeen'), (12338, 72743, 'seventy-two thousand seven hundred forty-three'), (12339, 29473, 'twenty-nine thousand four hundred seventy-three'), (12340, 65606, 'sixty-five thousand six hundred six'), (12341, 82093, 'eighty-two thousand ninety-three'), (12342, 75704, 'seventy-five thousand seven hundred four'), (12343, 51583, 'fifty-one thousand five hundred eighty-three'), (12344, 87750, 'eighty-seven thousand seven hundred fifty'), (12345, 30807, 'thirty thousand eight hundred seven'), (12346, 43634, 'forty-three thousand six hundred thirty-four'), (12347, 63906, 'sixty-three thousand nine hundred six'), (12348, 48042, 'forty-eight thousand forty-two'), (12349, 13080, 'thirteen thousand eighty'), (12350, 46924, 'forty-six thousand nine hundred twenty-four'), (12351, 4705, 'four thousand seven hundred five'), (12352, 24807, 'twenty-four thousand eight hundred seven'), (12353, 15508, 'fifteen thousand five hundred eight'), (12354, 78974, 'seventy-eight thousand nine hundred seventy-four'), (12355, 67963, 'sixty-seven thousand nine hundred sixty-three'), (12356, 9967, 'nine thousand nine hundred sixty-seven'), (12357, 29620, 'twenty-nine thousand six hundred twenty'), (12358, 97574, 'ninety-seven thousand five hundred seventy-four'), (12359, 46898, 'forty-six thousand eight hundred ninety-eight'), (12360, 91949, 'ninety-one thousand nine hundred forty-nine'), (12361, 24001, 'twenty-four thousand one'), (12362, 37340, 'thirty-seven thousand three hundred forty'), (12363, 74190, 'seventy-four thousand one hundred ninety'), (12364, 90123, 'ninety thousand one hundred twenty-three'), (12365, 74066, 'seventy-four thousand sixty-six'), (12366, 53244, 'fifty-three thousand two hundred forty-four'), (12367, 78664, 'seventy-eight thousand six hundred sixty-four'), (12368, 5096, 'five thousand ninety-six'), (12369, 84981, 'eighty-four thousand nine hundred eighty-one'), (12370, 78508, 'seventy-eight thousand five hundred eight'), (12371, 56274, 'fifty-six thousand two hundred seventy-four'), (12372, 11935, 'eleven thousand nine hundred thirty-five'), (12373, 47434, 'forty-seven thousand four hundred thirty-four'), (12374, 5929, 'five thousand nine hundred twenty-nine'), (12375, 49918, 'forty-nine thousand nine hundred eighteen'), (12376, 55855, 'fifty-five thousand eight hundred fifty-five'), (12377, 79168, 'seventy-nine thousand one hundred sixty-eight'), (12378, 48938, 'forty-eight thousand nine hundred thirty-eight'), (12379, 55363, 'fifty-five thousand three hundred sixty-three'), (12380, 87819, 'eighty-seven thousand eight hundred nineteen'), (12381, 53080, 'fifty-three thousand eighty'), (12382, 14882, 'fourteen thousand eight hundred eighty-two'), (12383, 6312, 'six thousand three hundred twelve'), (12384, 79339, 'seventy-nine thousand three hundred thirty-nine'), (12385, 6538, 'six thousand five hundred thirty-eight'), (12386, 43578, 'forty-three thousand five hundred seventy-eight'), (12387, 18912, 'eighteen thousand nine hundred twelve'), (12388, 37735, 'thirty-seven thousand seven hundred thirty-five'), (12389, 22348, 'twenty-two thousand three hundred forty-eight'), (12390, 96195, 'ninety-six thousand one hundred ninety-five'), (12391, 98151, 'ninety-eight thousand one hundred fifty-one'), (12392, 43135, 'forty-three thousand one hundred thirty-five'), (12393, 16904, 'sixteen thousand nine hundred four'), (12394, 27160, 'twenty-seven thousand one hundred sixty'), (12395, 71701, 'seventy-one thousand seven hundred one'), (12396, 46695, 'forty-six thousand six hundred ninety-five'), (12397, 37360, 'thirty-seven thousand three hundred sixty'), (12398, 72023, 'seventy-two thousand twenty-three'), (12399, 99512, 'ninety-nine thousand five hundred twelve'), (12400, 59230, 'fifty-nine thousand two hundred thirty'), (12401, 89088, 'eighty-nine thousand eighty-eight'), (12402, 5179, 'five thousand one hundred seventy-nine'), (12403, 22065, 'twenty-two thousand sixty-five'), (12404, 83182, 'eighty-three thousand one hundred eighty-two'), (12405, 44080, 'forty-four thousand eighty'), (12406, 87365, 'eighty-seven thousand three hundred sixty-five'), (12407, 21815, 'twenty-one thousand eight hundred fifteen'), (12408, 48128, 'forty-eight thousand one hundred twenty-eight'), (12409, 11797, 'eleven thousand seven hundred ninety-seven'), (12410, 34523, 'thirty-four thousand five hundred twenty-three'), (12411, 43112, 'forty-three thousand one hundred twelve'), (12412, 7165, 'seven thousand one hundred sixty-five'), (12413, 57265, 'fifty-seven thousand two hundred sixty-five'), (12414, 85802, 'eighty-five thousand eight hundred two'), (12415, 8449, 'eight thousand four hundred forty-nine'), (12416, 44829, 'forty-four thousand eight hundred twenty-nine'), (12417, 76544, 'seventy-six thousand five hundred forty-four'), (12418, 36108, 'thirty-six thousand one hundred eight'), (12419, 58122, 'fifty-eight thousand one hundred twenty-two'), (12420, 94531, 'ninety-four thousand five hundred thirty-one'), (12421, 79127, 'seventy-nine thousand one hundred twenty-seven'), (12422, 81039, 'eighty-one thousand thirty-nine'), (12423, 54386, 'fifty-four thousand three hundred eighty-six'), (12424, 96969, 'ninety-six thousand nine hundred sixty-nine'), (12425, 65374, 'sixty-five thousand three hundred seventy-four'), (12426, 57434, 'fifty-seven thousand four hundred thirty-four'), (12427, 57308, 'fifty-seven thousand three hundred eight'), (12428, 87415, 'eighty-seven thousand four hundred fifteen'), (12429, 47818, 'forty-seven thousand eight hundred eighteen'), (12430, 88685, 'eighty-eight thousand six hundred eighty-five'), (12431, 75500, 'seventy-five thousand five hundred'), (12432, 88831, 'eighty-eight thousand eight hundred thirty-one'), (12433, 99896, 'ninety-nine thousand eight hundred ninety-six'), (12434, 4614, 'four thousand six hundred fourteen'), (12435, 16059, 'sixteen thousand fifty-nine'), (12436, 21699, 'twenty-one thousand six hundred ninety-nine'), (12437, 76496, 'seventy-six thousand four hundred ninety-six'), (12438, 54927, 'fifty-four thousand nine hundred twenty-seven'), (12439, 57888, 'fifty-seven thousand eight hundred eighty-eight'), (12440, 98713, 'ninety-eight thousand seven hundred thirteen'), (12441, 10039, 'ten thousand thirty-nine'), (12442, 74768, 'seventy-four thousand seven hundred sixty-eight'), (12443, 31123, 'thirty-one thousand one hundred twenty-three'), (12444, 3117, 'three thousand one hundred seventeen'), (12445, 71809, 'seventy-one thousand eight hundred nine'), (12446, 20612, 'twenty thousand six hundred twelve'), (12447, 33991, 'thirty-three thousand nine hundred ninety-one'), (12448, 17885, 'seventeen thousand eight hundred eighty-five'), (12449, 55950, 'fifty-five thousand nine hundred fifty'), (12450, 79687, 'seventy-nine thousand six hundred eighty-seven'), (12451, 64151, 'sixty-four thousand one hundred fifty-one'), (12452, 91814, 'ninety-one thousand eight hundred fourteen'), (12453, 47908, 'forty-seven thousand nine hundred eight'), (12454, 42794, 'forty-two thousand seven hundred ninety-four'), (12455, 19303, 'nineteen thousand three hundred three'), (12456, 77083, 'seventy-seven thousand eighty-three'), (12457, 49044, 'forty-nine thousand forty-four'), (12458, 7847, 'seven thousand eight hundred forty-seven'), (12459, 43587, 'forty-three thousand five hundred eighty-seven'), (12460, 94462, 'ninety-four thousand four hundred sixty-two'), (12461, 15135, 'fifteen thousand one hundred thirty-five'), (12462, 76030, 'seventy-six thousand thirty'), (12463, 94328, 'ninety-four thousand three hundred twenty-eight'), (12464, 74772, 'seventy-four thousand seven hundred seventy-two'), (12465, 11991, 'eleven thousand nine hundred ninety-one'), (12466, 44574, 'forty-four thousand five hundred seventy-four'), (12467, 68432, 'sixty-eight thousand four hundred thirty-two'), (12468, 72767, 'seventy-two thousand seven hundred sixty-seven'), (12469, 64969, 'sixty-four thousand nine hundred sixty-nine'), (12470, 88069, 'eighty-eight thousand sixty-nine'), (12471, 1759, 'one thousand seven hundred fifty-nine'), (12472, 88080, 'eighty-eight thousand eighty'), (12473, 71548, 'seventy-one thousand five hundred forty-eight'), (12474, 4462, 'four thousand four hundred sixty-two'), (12475, 2842, 'two thousand eight hundred forty-two'), (12476, 96629, 'ninety-six thousand six hundred twenty-nine'), (12477, 62891, 'sixty-two thousand eight hundred ninety-one'), (12478, 2039, 'two thousand thirty-nine'), (12479, 50274, 'fifty thousand two hundred seventy-four'), (12480, 85582, 'eighty-five thousand five hundred eighty-two'), (12481, 22884, 'twenty-two thousand eight hundred eighty-four'), (12482, 97906, 'ninety-seven thousand nine hundred six'), (12483, 827, 'eight hundred twenty-seven'), (12484, 16137, 'sixteen thousand one hundred thirty-seven'), (12485, 87666, 'eighty-seven thousand six hundred sixty-six'), (12486, 71645, 'seventy-one thousand six hundred forty-five'), (12487, 55716, 'fifty-five thousand seven hundred sixteen'), (12488, 72454, 'seventy-two thousand four hundred fifty-four'), (12489, 98179, 'ninety-eight thousand one hundred seventy-nine'), (12490, 86153, 'eighty-six thousand one hundred fifty-three'), (12491, 55534, 'fifty-five thousand five hundred thirty-four'), (12492, 39347, 'thirty-nine thousand three hundred forty-seven'), (12493, 66116, 'sixty-six thousand one hundred sixteen'), (12494, 74248, 'seventy-four thousand two hundred forty-eight'), (12495, 28155, 'twenty-eight thousand one hundred fifty-five'), (12496, 56934, 'fifty-six thousand nine hundred thirty-four'), (12497, 61751, 'sixty-one thousand seven hundred fifty-one'), (12498, 45333, 'forty-five thousand three hundred thirty-three'), (12499, 22112, 'twenty-two thousand one hundred twelve'), (12500, 99531, 'ninety-nine thousand five hundred thirty-one'), (12501, 14744, 'fourteen thousand seven hundred forty-four'), (12502, 65450, 'sixty-five thousand four hundred fifty'), (12503, 61578, 'sixty-one thousand five hundred seventy-eight'), (12504, 75814, 'seventy-five thousand eight hundred fourteen'), (12505, 87361, 'eighty-seven thousand three hundred sixty-one'), (12506, 58065, 'fifty-eight thousand sixty-five'), (12507, 19902, 'nineteen thousand nine hundred two'), (12508, 97460, 'ninety-seven thousand four hundred sixty'), (12509, 72898, 'seventy-two thousand eight hundred ninety-eight'), (12510, 70929, 'seventy thousand nine hundred twenty-nine'), (12511, 26760, 'twenty-six thousand seven hundred sixty'), (12512, 51622, 'fifty-one thousand six hundred twenty-two'), (12513, 71772, 'seventy-one thousand seven hundred seventy-two'), (12514, 81545, 'eighty-one thousand five hundred forty-five'), (12515, 67980, 'sixty-seven thousand nine hundred eighty'), (12516, 46599, 'forty-six thousand five hundred ninety-nine'), (12517, 46621, 'forty-six thousand six hundred twenty-one'), (12518, 7074, 'seven thousand seventy-four'), (12519, 41885, 'forty-one thousand eight hundred eighty-five'), (12520, 37138, 'thirty-seven thousand one hundred thirty-eight'), (12521, 60585, 'sixty thousand five hundred eighty-five'), (12522, 68583, 'sixty-eight thousand five hundred eighty-three'), (12523, 40974, 'forty thousand nine hundred seventy-four'), (12524, 32852, 'thirty-two thousand eight hundred fifty-two'), (12525, 98517, 'ninety-eight thousand five hundred seventeen'), (12526, 81161, 'eighty-one thousand one hundred sixty-one'), (12527, 65708, 'sixty-five thousand seven hundred eight'), (12528, 14574, 'fourteen thousand five hundred seventy-four'), (12529, 15982, 'fifteen thousand nine hundred eighty-two'), (12530, 69951, 'sixty-nine thousand nine hundred fifty-one'), (12531, 31094, 'thirty-one thousand ninety-four'), (12532, 70790, 'seventy thousand seven hundred ninety'), (12533, 37653, 'thirty-seven thousand six hundred fifty-three'), (12534, 94366, 'ninety-four thousand three hundred sixty-six'), (12535, 99168, 'ninety-nine thousand one hundred sixty-eight'), (12536, 85889, 'eighty-five thousand eight hundred eighty-nine'), (12537, 47104, 'forty-seven thousand one hundred four'), (12538, 45987, 'forty-five thousand nine hundred eighty-seven'), (12539, 68900, 'sixty-eight thousand nine hundred'), (12540, 55151, 'fifty-five thousand one hundred fifty-one'), (12541, 49375, 'forty-nine thousand three hundred seventy-five'), (12542, 56738, 'fifty-six thousand seven hundred thirty-eight'), (12543, 71529, 'seventy-one thousand five hundred twenty-nine'), (12544, 39153, 'thirty-nine thousand one hundred fifty-three'), (12545, 89096, 'eighty-nine thousand ninety-six'), (12546, 72827, 'seventy-two thousand eight hundred twenty-seven'), (12547, 39486, 'thirty-nine thousand four hundred eighty-six'), (12548, 57301, 'fifty-seven thousand three hundred one'), (12549, 64846, 'sixty-four thousand eight hundred forty-six'), (12550, 37189, 'thirty-seven thousand one hundred eighty-nine'), (12551, 45679, 'forty-five thousand six hundred seventy-nine'), (12552, 39682, 'thirty-nine thousand six hundred eighty-two'), (12553, 63872, 'sixty-three thousand eight hundred seventy-two'), (12554, 93567, 'ninety-three thousand five hundred sixty-seven'), (12555, 85240, 'eighty-five thousand two hundred forty'), (12556, 23567, 'twenty-three thousand five hundred sixty-seven'), (12557, 27413, 'twenty-seven thousand four hundred thirteen'), (12558, 54510, 'fifty-four thousand five hundred ten'), (12559, 84298, 'eighty-four thousand two hundred ninety-eight'), (12560, 97063, 'ninety-seven thousand sixty-three'), (12561, 29551, 'twenty-nine thousand five hundred fifty-one'), (12562, 94326, 'ninety-four thousand three hundred twenty-six'), (12563, 13148, 'thirteen thousand one hundred forty-eight'), (12564, 6692, 'six thousand six hundred ninety-two'), (12565, 17839, 'seventeen thousand eight hundred thirty-nine'), (12566, 22602, 'twenty-two thousand six hundred two'), (12567, 75301, 'seventy-five thousand three hundred one'), (12568, 17279, 'seventeen thousand two hundred seventy-nine'), (12569, 26062, 'twenty-six thousand sixty-two'), (12570, 89010, 'eighty-nine thousand ten'), (12571, 65833, 'sixty-five thousand eight hundred thirty-three'), (12572, 11717, 'eleven thousand seven hundred seventeen'), (12573, 2836, 'two thousand eight hundred thirty-six'), (12574, 27468, 'twenty-seven thousand four hundred sixty-eight'), (12575, 85048, 'eighty-five thousand forty-eight'), (12576, 10335, 'ten thousand three hundred thirty-five'), (12577, 21872, 'twenty-one thousand eight hundred seventy-two'), (12578, 6750, 'six thousand seven hundred fifty'), (12579, 41564, 'forty-one thousand five hundred sixty-four'), (12580, 28302, 'twenty-eight thousand three hundred two'), (12581, 87662, 'eighty-seven thousand six hundred sixty-two'), (12582, 76996, 'seventy-six thousand nine hundred ninety-six'), (12583, 30131, 'thirty thousand one hundred thirty-one'), (12584, 60259, 'sixty thousand two hundred fifty-nine'), (12585, 36278, 'thirty-six thousand two hundred seventy-eight'), (12586, 32818, 'thirty-two thousand eight hundred eighteen'), (12587, 73372, 'seventy-three thousand three hundred seventy-two'), (12588, 12590, 'twelve thousand five hundred ninety'), (12589, 28038, 'twenty-eight thousand thirty-eight'), (12590, 87755, 'eighty-seven thousand seven hundred fifty-five'), (12591, 30461, 'thirty thousand four hundred sixty-one'), (12592, 6063, 'six thousand sixty-three'), (12593, 25807, 'twenty-five thousand eight hundred seven'), (12594, 44551, 'forty-four thousand five hundred fifty-one'), (12595, 3422, 'three thousand four hundred twenty-two'), (12596, 73881, 'seventy-three thousand eight hundred eighty-one'), (12597, 59737, 'fifty-nine thousand seven hundred thirty-seven'), (12598, 33448, 'thirty-three thousand four hundred forty-eight'), (12599, 37697, 'thirty-seven thousand six hundred ninety-seven'), (12600, 81875, 'eighty-one thousand eight hundred seventy-five'), (12601, 341, 'three hundred forty-one'), (12602, 12096, 'twelve thousand ninety-six'), (12603, 33300, 'thirty-three thousand three hundred'), (12604, 82707, 'eighty-two thousand seven hundred seven'), (12605, 36654, 'thirty-six thousand six hundred fifty-four'), (12606, 57164, 'fifty-seven thousand one hundred sixty-four'), (12607, 38579, 'thirty-eight thousand five hundred seventy-nine'), (12608, 55103, 'fifty-five thousand one hundred three'), (12609, 49, 'forty-nine'), (12610, 89120, 'eighty-nine thousand one hundred twenty'), (12611, 64031, 'sixty-four thousand thirty-one'), (12612, 81715, 'eighty-one thousand seven hundred fifteen'), (12613, 74140, 'seventy-four thousand one hundred forty'), (12614, 77810, 'seventy-seven thousand eight hundred ten'), (12615, 23874, 'twenty-three thousand eight hundred seventy-four'), (12616, 11269, 'eleven thousand two hundred sixty-nine'), (12617, 48975, 'forty-eight thousand nine hundred seventy-five'), (12618, 34702, 'thirty-four thousand seven hundred two'), (12619, 31495, 'thirty-one thousand four hundred ninety-five'), (12620, 33985, 'thirty-three thousand nine hundred eighty-five'), (12621, 55958, 'fifty-five thousand nine hundred fifty-eight'), (12622, 64040, 'sixty-four thousand forty'), (12623, 15700, 'fifteen thousand seven hundred'), (12624, 91866, 'ninety-one thousand eight hundred sixty-six'), (12625, 48729, 'forty-eight thousand seven hundred twenty-nine'), (12626, 50735, 'fifty thousand seven hundred thirty-five'), (12627, 27221, 'twenty-seven thousand two hundred twenty-one'), (12628, 89406, 'eighty-nine thousand four hundred six'), (12629, 7412, 'seven thousand four hundred twelve'), (12630, 84827, 'eighty-four thousand eight hundred twenty-seven'), (12631, 58206, 'fifty-eight thousand two hundred six'), (12632, 77286, 'seventy-seven thousand two hundred eighty-six'), (12633, 57636, 'fifty-seven thousand six hundred thirty-six'), (12634, 28745, 'twenty-eight thousand seven hundred forty-five'), (12635, 1221, 'one thousand two hundred twenty-one'), (12636, 42082, 'forty-two thousand eighty-two'), (12637, 23456, 'twenty-three thousand four hundred fifty-six'), (12638, 25511, 'twenty-five thousand five hundred eleven'), (12639, 94709, 'ninety-four thousand seven hundred nine'), (12640, 32505, 'thirty-two thousand five hundred five'), (12641, 38679, 'thirty-eight thousand six hundred seventy-nine'), (12642, 60015, 'sixty thousand fifteen'), (12643, 17694, 'seventeen thousand six hundred ninety-four'), (12644, 55634, 'fifty-five thousand six hundred thirty-four'), (12645, 54043, 'fifty-four thousand forty-three'), (12646, 55354, 'fifty-five thousand three hundred fifty-four'), (12647, 59841, 'fifty-nine thousand eight hundred forty-one'), (12648, 46896, 'forty-six thousand eight hundred ninety-six'), (12649, 29103, 'twenty-nine thousand one hundred three'), (12650, 46926, 'forty-six thousand nine hundred twenty-six'), (12651, 38232, 'thirty-eight thousand two hundred thirty-two'), (12652, 67203, 'sixty-seven thousand two hundred three'), (12653, 98305, 'ninety-eight thousand three hundred five'), (12654, 75262, 'seventy-five thousand two hundred sixty-two'), (12655, 51044, 'fifty-one thousand forty-four'), (12656, 24410, 'twenty-four thousand four hundred ten'), (12657, 46431, 'forty-six thousand four hundred thirty-one'), (12658, 60254, 'sixty thousand two hundred fifty-four'), (12659, 98685, 'ninety-eight thousand six hundred eighty-five'), (12660, 75358, 'seventy-five thousand three hundred fifty-eight'), (12661, 87741, 'eighty-seven thousand seven hundred forty-one'), (12662, 48253, 'forty-eight thousand two hundred fifty-three'), (12663, 83092, 'eighty-three thousand ninety-two'), (12664, 32609, 'thirty-two thousand six hundred nine'), (12665, 76744, 'seventy-six thousand seven hundred forty-four'), (12666, 31524, 'thirty-one thousand five hundred twenty-four'), (12667, 68959, 'sixty-eight thousand nine hundred fifty-nine'), (12668, 31549, 'thirty-one thousand five hundred forty-nine'), (12669, 19074, 'nineteen thousand seventy-four'), (12670, 99788, 'ninety-nine thousand seven hundred eighty-eight'), (12671, 98808, 'ninety-eight thousand eight hundred eight'), (12672, 71340, 'seventy-one thousand three hundred forty'), (12673, 78608, 'seventy-eight thousand six hundred eight'), (12674, 54074, 'fifty-four thousand seventy-four'), (12675, 18310, 'eighteen thousand three hundred ten'), (12676, 8874, 'eight thousand eight hundred seventy-four'), (12677, 51017, 'fifty-one thousand seventeen'), (12678, 45090, 'forty-five thousand ninety'), (12679, 87858, 'eighty-seven thousand eight hundred fifty-eight'), (12680, 62932, 'sixty-two thousand nine hundred thirty-two'), (12681, 71313, 'seventy-one thousand three hundred thirteen'), (12682, 17523, 'seventeen thousand five hundred twenty-three'), (12683, 47376, 'forty-seven thousand three hundred seventy-six'), (12684, 10065, 'ten thousand sixty-five'), (12685, 82308, 'eighty-two thousand three hundred eight'), (12686, 48199, 'forty-eight thousand one hundred ninety-nine'), (12687, 55931, 'fifty-five thousand nine hundred thirty-one'), (12688, 15461, 'fifteen thousand four hundred sixty-one'), (12689, 13502, 'thirteen thousand five hundred two'), (12690, 68126, 'sixty-eight thousand one hundred twenty-six'), (12691, 84777, 'eighty-four thousand seven hundred seventy-seven'), (12692, 24947, 'twenty-four thousand nine hundred forty-seven'), (12693, 84968, 'eighty-four thousand nine hundred sixty-eight'), (12694, 27249, 'twenty-seven thousand two hundred forty-nine'), (12695, 3025, 'three thousand twenty-five'), (12696, 56981, 'fifty-six thousand nine hundred eighty-one'), (12697, 97479, 'ninety-seven thousand four hundred seventy-nine'), (12698, 80969, 'eighty thousand nine hundred sixty-nine'), (12699, 71722, 'seventy-one thousand seven hundred twenty-two'), (12700, 17833, 'seventeen thousand eight hundred thirty-three'), (12701, 72092, 'seventy-two thousand ninety-two'), (12702, 27657, 'twenty-seven thousand six hundred fifty-seven'), (12703, 48708, 'forty-eight thousand seven hundred eight'), (12704, 72549, 'seventy-two thousand five hundred forty-nine'), (12705, 53203, 'fifty-three thousand two hundred three'), (12706, 3320, 'three thousand three hundred twenty'), (12707, 73978, 'seventy-three thousand nine hundred seventy-eight'), (12708, 80083, 'eighty thousand eighty-three'), (12709, 45347, 'forty-five thousand three hundred forty-seven'), (12710, 23713, 'twenty-three thousand seven hundred thirteen'), (12711, 91256, 'ninety-one thousand two hundred fifty-six'), (12712, 84112, 'eighty-four thousand one hundred twelve'), (12713, 88280, 'eighty-eight thousand two hundred eighty'), (12714, 84621, 'eighty-four thousand six hundred twenty-one'), (12715, 63263, 'sixty-three thousand two hundred sixty-three'), (12716, 39124, 'thirty-nine thousand one hundred twenty-four'), (12717, 42785, 'forty-two thousand seven hundred eighty-five'), (12718, 26797, 'twenty-six thousand seven hundred ninety-seven'), (12719, 62518, 'sixty-two thousand five hundred eighteen'), (12720, 8640, 'eight thousand six hundred forty'), (12721, 25589, 'twenty-five thousand five hundred eighty-nine'), (12722, 351, 'three hundred fifty-one'), (12723, 22904, 'twenty-two thousand nine hundred four'), (12724, 5160, 'five thousand one hundred sixty'), (12725, 91646, 'ninety-one thousand six hundred forty-six'), (12726, 61314, 'sixty-one thousand three hundred fourteen'), (12727, 93782, 'ninety-three thousand seven hundred eighty-two'), (12728, 37006, 'thirty-seven thousand six'), (12729, 38451, 'thirty-eight thousand four hundred fifty-one'), (12730, 35434, 'thirty-five thousand four hundred thirty-four'), (12731, 85499, 'eighty-five thousand four hundred ninety-nine'), (12732, 48641, 'forty-eight thousand six hundred forty-one'), (12733, 273, 'two hundred seventy-three'), (12734, 29340, 'twenty-nine thousand three hundred forty'), (12735, 5279, 'five thousand two hundred seventy-nine'), (12736, 84050, 'eighty-four thousand fifty'), (12737, 17282, 'seventeen thousand two hundred eighty-two'), (12738, 28789, 'twenty-eight thousand seven hundred eighty-nine'), (12739, 17097, 'seventeen thousand ninety-seven'), (12740, 22432, 'twenty-two thousand four hundred thirty-two'), (12741, 16820, 'sixteen thousand eight hundred twenty'), (12742, 53508, 'fifty-three thousand five hundred eight'), (12743, 94135, 'ninety-four thousand one hundred thirty-five'), (12744, 75030, 'seventy-five thousand thirty'), (12745, 84367, 'eighty-four thousand three hundred sixty-seven'), (12746, 37510, 'thirty-seven thousand five hundred ten'), (12747, 15447, 'fifteen thousand four hundred forty-seven'), (12748, 50394, 'fifty thousand three hundred ninety-four'), (12749, 53109, 'fifty-three thousand one hundred nine'), (12750, 94074, 'ninety-four thousand seventy-four'), (12751, 44533, 'forty-four thousand five hundred thirty-three'), (12752, 46988, 'forty-six thousand nine hundred eighty-eight'), (12753, 94799, 'ninety-four thousand seven hundred ninety-nine'), (12754, 90383, 'ninety thousand three hundred eighty-three'), (12755, 84364, 'eighty-four thousand three hundred sixty-four'), (12756, 53591, 'fifty-three thousand five hundred ninety-one'), (12757, 86335, 'eighty-six thousand three hundred thirty-five'), (12758, 1902, 'one thousand nine hundred two'), (12759, 38419, 'thirty-eight thousand four hundred nineteen'), (12760, 34700, 'thirty-four thousand seven hundred'), (12761, 99480, 'ninety-nine thousand four hundred eighty'), (12762, 11679, 'eleven thousand six hundred seventy-nine'), (12763, 38545, 'thirty-eight thousand five hundred forty-five'), (12764, 95644, 'ninety-five thousand six hundred forty-four'), (12765, 1290, 'one thousand two hundred ninety'), (12766, 59726, 'fifty-nine thousand seven hundred twenty-six'), (12767, 94997, 'ninety-four thousand nine hundred ninety-seven'), (12768, 67254, 'sixty-seven thousand two hundred fifty-four'), (12769, 14653, 'fourteen thousand six hundred fifty-three'), (12770, 88412, 'eighty-eight thousand four hundred twelve'), (12771, 33937, 'thirty-three thousand nine hundred thirty-seven'), (12772, 19610, 'nineteen thousand six hundred ten'), (12773, 90505, 'ninety thousand five hundred five'), (12774, 9043, 'nine thousand forty-three'), (12775, 38038, 'thirty-eight thousand thirty-eight'), (12776, 73223, 'seventy-three thousand two hundred twenty-three'), (12777, 12215, 'twelve thousand two hundred fifteen'), (12778, 42517, 'forty-two thousand five hundred seventeen'), (12779, 97719, 'ninety-seven thousand seven hundred nineteen'), (12780, 82493, 'eighty-two thousand four hundred ninety-three'), (12781, 1465, 'one thousand four hundred sixty-five'), (12782, 65935, 'sixty-five thousand nine hundred thirty-five'), (12783, 10752, 'ten thousand seven hundred fifty-two'), (12784, 41441, 'forty-one thousand four hundred forty-one'), (12785, 14670, 'fourteen thousand six hundred seventy'), (12786, 22687, 'twenty-two thousand six hundred eighty-seven'), (12787, 42904, 'forty-two thousand nine hundred four'), (12788, 48511, 'forty-eight thousand five hundred eleven'), (12789, 8135, 'eight thousand one hundred thirty-five'), (12790, 77551, 'seventy-seven thousand five hundred fifty-one'), (12791, 40575, 'forty thousand five hundred seventy-five'), (12792, 38451, 'thirty-eight thousand four hundred fifty-one'), (12793, 87935, 'eighty-seven thousand nine hundred thirty-five'), (12794, 15382, 'fifteen thousand three hundred eighty-two'), (12795, 25292, 'twenty-five thousand two hundred ninety-two'), (12796, 66157, 'sixty-six thousand one hundred fifty-seven'), (12797, 95879, 'ninety-five thousand eight hundred seventy-nine'), (12798, 29664, 'twenty-nine thousand six hundred sixty-four'), (12799, 68150, 'sixty-eight thousand one hundred fifty'), (12800, 42576, 'forty-two thousand five hundred seventy-six'), (12801, 54257, 'fifty-four thousand two hundred fifty-seven'), (12802, 91548, 'ninety-one thousand five hundred forty-eight'), (12803, 19302, 'nineteen thousand three hundred two'), (12804, 14043, 'fourteen thousand forty-three'), (12805, 50292, 'fifty thousand two hundred ninety-two'), (12806, 82995, 'eighty-two thousand nine hundred ninety-five'), (12807, 74002, 'seventy-four thousand two'), (12808, 32517, 'thirty-two thousand five hundred seventeen'), (12809, 26885, 'twenty-six thousand eight hundred eighty-five'), (12810, 92621, 'ninety-two thousand six hundred twenty-one'), (12811, 57417, 'fifty-seven thousand four hundred seventeen'), (12812, 33465, 'thirty-three thousand four hundred sixty-five'), (12813, 20416, 'twenty thousand four hundred sixteen'), (12814, 56124, 'fifty-six thousand one hundred twenty-four'), (12815, 46067, 'forty-six thousand sixty-seven'), (12816, 39386, 'thirty-nine thousand three hundred eighty-six'), (12817, 79949, 'seventy-nine thousand nine hundred forty-nine'), (12818, 91960, 'ninety-one thousand nine hundred sixty'), (12819, 72770, 'seventy-two thousand seven hundred seventy'), (12820, 71993, 'seventy-one thousand nine hundred ninety-three'), (12821, 84252, 'eighty-four thousand two hundred fifty-two'), (12822, 19078, 'nineteen thousand seventy-eight'), (12823, 67071, 'sixty-seven thousand seventy-one'), (12824, 25905, 'twenty-five thousand nine hundred five'), (12825, 24508, 'twenty-four thousand five hundred eight'), (12826, 5443, 'five thousand four hundred forty-three'), (12827, 92870, 'ninety-two thousand eight hundred seventy'), (12828, 56853, 'fifty-six thousand eight hundred fifty-three'), (12829, 24852, 'twenty-four thousand eight hundred fifty-two'), (12830, 13687, 'thirteen thousand six hundred eighty-seven'), (12831, 17332, 'seventeen thousand three hundred thirty-two'), (12832, 14460, 'fourteen thousand four hundred sixty'), (12833, 81086, 'eighty-one thousand eighty-six'), (12834, 7884, 'seven thousand eight hundred eighty-four'), (12835, 83508, 'eighty-three thousand five hundred eight'), (12836, 69657, 'sixty-nine thousand six hundred fifty-seven'), (12837, 44143, 'forty-four thousand one hundred forty-three'), (12838, 81363, 'eighty-one thousand three hundred sixty-three'), (12839, 71061, 'seventy-one thousand sixty-one'), (12840, 18734, 'eighteen thousand seven hundred thirty-four'), (12841, 44796, 'forty-four thousand seven hundred ninety-six'), (12842, 19063, 'nineteen thousand sixty-three'), (12843, 36851, 'thirty-six thousand eight hundred fifty-one'), (12844, 6243, 'six thousand two hundred forty-three'), (12845, 80756, 'eighty thousand seven hundred fifty-six'), (12846, 76024, 'seventy-six thousand twenty-four'), (12847, 65444, 'sixty-five thousand four hundred forty-four'), (12848, 74297, 'seventy-four thousand two hundred ninety-seven'), (12849, 61080, 'sixty-one thousand eighty'), (12850, 47659, 'forty-seven thousand six hundred fifty-nine'), (12851, 51887, 'fifty-one thousand eight hundred eighty-seven'), (12852, 21369, 'twenty-one thousand three hundred sixty-nine'), (12853, 63464, 'sixty-three thousand four hundred sixty-four'), (12854, 73265, 'seventy-three thousand two hundred sixty-five'), (12855, 81129, 'eighty-one thousand one hundred twenty-nine'), (12856, 14852, 'fourteen thousand eight hundred fifty-two'), (12857, 86379, 'eighty-six thousand three hundred seventy-nine'), (12858, 90964, 'ninety thousand nine hundred sixty-four'), (12859, 62673, 'sixty-two thousand six hundred seventy-three'), (12860, 82954, 'eighty-two thousand nine hundred fifty-four'), (12861, 36211, 'thirty-six thousand two hundred eleven'), (12862, 18351, 'eighteen thousand three hundred fifty-one'), (12863, 79590, 'seventy-nine thousand five hundred ninety'), (12864, 77315, 'seventy-seven thousand three hundred fifteen'), (12865, 88413, 'eighty-eight thousand four hundred thirteen'), (12866, 14572, 'fourteen thousand five hundred seventy-two'), (12867, 42962, 'forty-two thousand nine hundred sixty-two'), (12868, 26686, 'twenty-six thousand six hundred eighty-six'), (12869, 52599, 'fifty-two thousand five hundred ninety-nine'), (12870, 36091, 'thirty-six thousand ninety-one'), (12871, 75689, 'seventy-five thousand six hundred eighty-nine'), (12872, 58595, 'fifty-eight thousand five hundred ninety-five'), (12873, 96901, 'ninety-six thousand nine hundred one'), (12874, 58548, 'fifty-eight thousand five hundred forty-eight'), (12875, 89596, 'eighty-nine thousand five hundred ninety-six'), (12876, 38378, 'thirty-eight thousand three hundred seventy-eight'), (12877, 29383, 'twenty-nine thousand three hundred eighty-three'), (12878, 41611, 'forty-one thousand six hundred eleven'), (12879, 7871, 'seven thousand eight hundred seventy-one'), (12880, 28664, 'twenty-eight thousand six hundred sixty-four'), (12881, 22282, 'twenty-two thousand two hundred eighty-two'), (12882, 64291, 'sixty-four thousand two hundred ninety-one'), (12883, 63841, 'sixty-three thousand eight hundred forty-one'), (12884, 5644, 'five thousand six hundred forty-four'), (12885, 87763, 'eighty-seven thousand seven hundred sixty-three'), (12886, 71258, 'seventy-one thousand two hundred fifty-eight'), (12887, 98969, 'ninety-eight thousand nine hundred sixty-nine'), (12888, 97564, 'ninety-seven thousand five hundred sixty-four'), (12889, 89038, 'eighty-nine thousand thirty-eight'), (12890, 70619, 'seventy thousand six hundred nineteen'), (12891, 31542, 'thirty-one thousand five hundred forty-two'), (12892, 89204, 'eighty-nine thousand two hundred four'), (12893, 88392, 'eighty-eight thousand three hundred ninety-two'), (12894, 16625, 'sixteen thousand six hundred twenty-five'), (12895, 4785, 'four thousand seven hundred eighty-five'), (12896, 47685, 'forty-seven thousand six hundred eighty-five'), (12897, 11192, 'eleven thousand one hundred ninety-two'), (12898, 32073, 'thirty-two thousand seventy-three'), (12899, 78085, 'seventy-eight thousand eighty-five'), (12900, 503, 'five hundred three'), (12901, 46088, 'forty-six thousand eighty-eight'), (12902, 94004, 'ninety-four thousand four'), (12903, 22694, 'twenty-two thousand six hundred ninety-four'), (12904, 56386, 'fifty-six thousand three hundred eighty-six'), (12905, 2151, 'two thousand one hundred fifty-one'), (12906, 71433, 'seventy-one thousand four hundred thirty-three'), (12907, 70973, 'seventy thousand nine hundred seventy-three'), (12908, 77969, 'seventy-seven thousand nine hundred sixty-nine'), (12909, 57592, 'fifty-seven thousand five hundred ninety-two'), (12910, 54666, 'fifty-four thousand six hundred sixty-six'), (12911, 49893, 'forty-nine thousand eight hundred ninety-three'), (12912, 6148, 'six thousand one hundred forty-eight'), (12913, 60475, 'sixty thousand four hundred seventy-five'), (12914, 76054, 'seventy-six thousand fifty-four'), (12915, 89714, 'eighty-nine thousand seven hundred fourteen'), (12916, 90057, 'ninety thousand fifty-seven'), (12917, 93441, 'ninety-three thousand four hundred forty-one'), (12918, 77868, 'seventy-seven thousand eight hundred sixty-eight'), (12919, 52884, 'fifty-two thousand eight hundred eighty-four'), (12920, 42957, 'forty-two thousand nine hundred fifty-seven'), (12921, 80056, 'eighty thousand fifty-six'), (12922, 94672, 'ninety-four thousand six hundred seventy-two'), (12923, 69476, 'sixty-nine thousand four hundred seventy-six'), (12924, 47443, 'forty-seven thousand four hundred forty-three'), (12925, 1464, 'one thousand four hundred sixty-four'), (12926, 59499, 'fifty-nine thousand four hundred ninety-nine'), (12927, 20766, 'twenty thousand seven hundred sixty-six'), (12928, 35904, 'thirty-five thousand nine hundred four'), (12929, 16391, 'sixteen thousand three hundred ninety-one'), (12930, 14525, 'fourteen thousand five hundred twenty-five'), (12931, 61799, 'sixty-one thousand seven hundred ninety-nine'), (12932, 58118, 'fifty-eight thousand one hundred eighteen'), (12933, 86526, 'eighty-six thousand five hundred twenty-six'), (12934, 31895, 'thirty-one thousand eight hundred ninety-five'), (12935, 45567, 'forty-five thousand five hundred sixty-seven'), (12936, 29187, 'twenty-nine thousand one hundred eighty-seven'), (12937, 29988, 'twenty-nine thousand nine hundred eighty-eight'), (12938, 77665, 'seventy-seven thousand six hundred sixty-five'), (12939, 91083, 'ninety-one thousand eighty-three'), (12940, 80714, 'eighty thousand seven hundred fourteen'), (12941, 98362, 'ninety-eight thousand three hundred sixty-two'), (12942, 8985, 'eight thousand nine hundred eighty-five'), (12943, 42413, 'forty-two thousand four hundred thirteen'), (12944, 32181, 'thirty-two thousand one hundred eighty-one'), (12945, 96375, 'ninety-six thousand three hundred seventy-five'), (12946, 7972, 'seven thousand nine hundred seventy-two'), (12947, 78864, 'seventy-eight thousand eight hundred sixty-four'), (12948, 43524, 'forty-three thousand five hundred twenty-four'), (12949, 54870, 'fifty-four thousand eight hundred seventy'), (12950, 9549, 'nine thousand five hundred forty-nine'), (12951, 71122, 'seventy-one thousand one hundred twenty-two'), (12952, 74872, 'seventy-four thousand eight hundred seventy-two'), (12953, 67421, 'sixty-seven thousand four hundred twenty-one'), (12954, 91784, 'ninety-one thousand seven hundred eighty-four'), (12955, 93531, 'ninety-three thousand five hundred thirty-one'), (12956, 89621, 'eighty-nine thousand six hundred twenty-one'), (12957, 80613, 'eighty thousand six hundred thirteen'), (12958, 4054, 'four thousand fifty-four'), (12959, 40155, 'forty thousand one hundred fifty-five'), (12960, 53778, 'fifty-three thousand seven hundred seventy-eight'), (12961, 75829, 'seventy-five thousand eight hundred twenty-nine'), (12962, 75078, 'seventy-five thousand seventy-eight'), (12963, 14544, 'fourteen thousand five hundred forty-four'), (12964, 95138, 'ninety-five thousand one hundred thirty-eight'), (12965, 40098, 'forty thousand ninety-eight'), (12966, 70972, 'seventy thousand nine hundred seventy-two'), (12967, 3327, 'three thousand three hundred twenty-seven'), (12968, 54851, 'fifty-four thousand eight hundred fifty-one'), (12969, 48095, 'forty-eight thousand ninety-five'), (12970, 74296, 'seventy-four thousand two hundred ninety-six'), (12971, 72389, 'seventy-two thousand three hundred eighty-nine'), (12972, 20726, 'twenty thousand seven hundred twenty-six'), (12973, 76543, 'seventy-six thousand five hundred forty-three'), (12974, 20326, 'twenty thousand three hundred twenty-six'), (12975, 63210, 'sixty-three thousand two hundred ten'), (12976, 5038, 'five thousand thirty-eight'), (12977, 75155, 'seventy-five thousand one hundred fifty-five'), (12978, 6163, 'six thousand one hundred sixty-three'), (12979, 50030, 'fifty thousand thirty'), (12980, 98458, 'ninety-eight thousand four hundred fifty-eight'), (12981, 97940, 'ninety-seven thousand nine hundred forty'), (12982, 22001, 'twenty-two thousand one'), (12983, 11763, 'eleven thousand seven hundred sixty-three'), (12984, 72730, 'seventy-two thousand seven hundred thirty'), (12985, 95710, 'ninety-five thousand seven hundred ten'), (12986, 51318, 'fifty-one thousand three hundred eighteen'), (12987, 43493, 'forty-three thousand four hundred ninety-three'), (12988, 24425, 'twenty-four thousand four hundred twenty-five'), (12989, 30973, 'thirty thousand nine hundred seventy-three'), (12990, 15094, 'fifteen thousand ninety-four'), (12991, 44550, 'forty-four thousand five hundred fifty'), (12992, 39778, 'thirty-nine thousand seven hundred seventy-eight'), (12993, 3393, 'three thousand three hundred ninety-three'), (12994, 99931, 'ninety-nine thousand nine hundred thirty-one'), (12995, 65492, 'sixty-five thousand four hundred ninety-two'), (12996, 52057, 'fifty-two thousand fifty-seven'), (12997, 30194, 'thirty thousand one hundred ninety-four'), (12998, 90986, 'ninety thousand nine hundred eighty-six'), (12999, 43629, 'forty-three thousand six hundred twenty-nine'), (13000, 25038, 'twenty-five thousand thirty-eight'), (13001, 55729, 'fifty-five thousand seven hundred twenty-nine'), (13002, 88732, 'eighty-eight thousand seven hundred thirty-two'), (13003, 68437, 'sixty-eight thousand four hundred thirty-seven'), (13004, 71645, 'seventy-one thousand six hundred forty-five'), (13005, 53387, 'fifty-three thousand three hundred eighty-seven'), (13006, 82609, 'eighty-two thousand six hundred nine'), (13007, 13864, 'thirteen thousand eight hundred sixty-four'), (13008, 91106, 'ninety-one thousand one hundred six'), (13009, 35798, 'thirty-five thousand seven hundred ninety-eight'), (13010, 77114, 'seventy-seven thousand one hundred fourteen'), (13011, 59246, 'fifty-nine thousand two hundred forty-six'), (13012, 25971, 'twenty-five thousand nine hundred seventy-one'), (13013, 21001, 'twenty-one thousand one'), (13014, 17681, 'seventeen thousand six hundred eighty-one'), (13015, 10887, 'ten thousand eight hundred eighty-seven'), (13016, 3308, 'three thousand three hundred eight'), (13017, 16851, 'sixteen thousand eight hundred fifty-one'), (13018, 73626, 'seventy-three thousand six hundred twenty-six'), (13019, 39209, 'thirty-nine thousand two hundred nine'), (13020, 44747, 'forty-four thousand seven hundred forty-seven'), (13021, 48379, 'forty-eight thousand three hundred seventy-nine'), (13022, 95384, 'ninety-five thousand three hundred eighty-four'), (13023, 9559, 'nine thousand five hundred fifty-nine'), (13024, 22617, 'twenty-two thousand six hundred seventeen'), (13025, 26012, 'twenty-six thousand twelve'), (13026, 98347, 'ninety-eight thousand three hundred forty-seven'), (13027, 37304, 'thirty-seven thousand three hundred four'), (13028, 38813, 'thirty-eight thousand eight hundred thirteen'), (13029, 46145, 'forty-six thousand one hundred forty-five'), (13030, 46570, 'forty-six thousand five hundred seventy'), (13031, 50681, 'fifty thousand six hundred eighty-one'), (13032, 84182, 'eighty-four thousand one hundred eighty-two'), (13033, 39559, 'thirty-nine thousand five hundred fifty-nine'), (13034, 63151, 'sixty-three thousand one hundred fifty-one'), (13035, 5028, 'five thousand twenty-eight'), (13036, 77886, 'seventy-seven thousand eight hundred eighty-six'), (13037, 68258, 'sixty-eight thousand two hundred fifty-eight'), (13038, 66907, 'sixty-six thousand nine hundred seven'), (13039, 88, 'eighty-eight'), (13040, 7729, 'seven thousand seven hundred twenty-nine'), (13041, 30994, 'thirty thousand nine hundred ninety-four'), (13042, 27415, 'twenty-seven thousand four hundred fifteen'), (13043, 67390, 'sixty-seven thousand three hundred ninety'), (13044, 30356, 'thirty thousand three hundred fifty-six'), (13045, 10276, 'ten thousand two hundred seventy-six'), (13046, 94756, 'ninety-four thousand seven hundred fifty-six'), (13047, 31440, 'thirty-one thousand four hundred forty'), (13048, 7856, 'seven thousand eight hundred fifty-six'), (13049, 52568, 'fifty-two thousand five hundred sixty-eight'), (13050, 16510, 'sixteen thousand five hundred ten'), (13051, 72650, 'seventy-two thousand six hundred fifty'), (13052, 70648, 'seventy thousand six hundred forty-eight'), (13053, 83477, 'eighty-three thousand four hundred seventy-seven'), (13054, 6684, 'six thousand six hundred eighty-four'), (13055, 93352, 'ninety-three thousand three hundred fifty-two'), (13056, 39802, 'thirty-nine thousand eight hundred two'), (13057, 34203, 'thirty-four thousand two hundred three'), (13058, 65817, 'sixty-five thousand eight hundred seventeen'), (13059, 33706, 'thirty-three thousand seven hundred six'), (13060, 6095, 'six thousand ninety-five'), (13061, 99711, 'ninety-nine thousand seven hundred eleven'), (13062, 97379, 'ninety-seven thousand three hundred seventy-nine'), (13063, 59598, 'fifty-nine thousand five hundred ninety-eight'), (13064, 44929, 'forty-four thousand nine hundred twenty-nine'), (13065, 50358, 'fifty thousand three hundred fifty-eight'), (13066, 55998, 'fifty-five thousand nine hundred ninety-eight'), (13067, 24931, 'twenty-four thousand nine hundred thirty-one'), (13068, 1909, 'one thousand nine hundred nine'), (13069, 13762, 'thirteen thousand seven hundred sixty-two'), (13070, 82104, 'eighty-two thousand one hundred four'), (13071, 98747, 'ninety-eight thousand seven hundred forty-seven'), (13072, 77978, 'seventy-seven thousand nine hundred seventy-eight'), (13073, 11771, 'eleven thousand seven hundred seventy-one'), (13074, 11831, 'eleven thousand eight hundred thirty-one'), (13075, 3838, 'three thousand eight hundred thirty-eight'), (13076, 36656, 'thirty-six thousand six hundred fifty-six'), (13077, 81809, 'eighty-one thousand eight hundred nine'), (13078, 59234, 'fifty-nine thousand two hundred thirty-four'), (13079, 48911, 'forty-eight thousand nine hundred eleven'), (13080, 10925, 'ten thousand nine hundred twenty-five'), (13081, 33733, 'thirty-three thousand seven hundred thirty-three'), (13082, 10417, 'ten thousand four hundred seventeen'), (13083, 4775, 'four thousand seven hundred seventy-five'), (13084, 27816, 'twenty-seven thousand eight hundred sixteen'), (13085, 57227, 'fifty-seven thousand two hundred twenty-seven'), (13086, 51662, 'fifty-one thousand six hundred sixty-two'), (13087, 18961, 'eighteen thousand nine hundred sixty-one'), (13088, 17700, 'seventeen thousand seven hundred'), (13089, 5420, 'five thousand four hundred twenty'), (13090, 55440, 'fifty-five thousand four hundred forty'), (13091, 66680, 'sixty-six thousand six hundred eighty'), (13092, 5923, 'five thousand nine hundred twenty-three'), (13093, 49544, 'forty-nine thousand five hundred forty-four'), (13094, 34480, 'thirty-four thousand four hundred eighty'), (13095, 13248, 'thirteen thousand two hundred forty-eight'), (13096, 36359, 'thirty-six thousand three hundred fifty-nine'), (13097, 42391, 'forty-two thousand three hundred ninety-one'), (13098, 90361, 'ninety thousand three hundred sixty-one'), (13099, 78799, 'seventy-eight thousand seven hundred ninety-nine'), (13100, 85497, 'eighty-five thousand four hundred ninety-seven'), (13101, 70559, 'seventy thousand five hundred fifty-nine'), (13102, 66041, 'sixty-six thousand forty-one'), (13103, 24343, 'twenty-four thousand three hundred forty-three'), (13104, 61475, 'sixty-one thousand four hundred seventy-five'), (13105, 10975, 'ten thousand nine hundred seventy-five'), (13106, 69803, 'sixty-nine thousand eight hundred three'), (13107, 98004, 'ninety-eight thousand four'), (13108, 16349, 'sixteen thousand three hundred forty-nine'), (13109, 9929, 'nine thousand nine hundred twenty-nine'), (13110, 36080, 'thirty-six thousand eighty'), (13111, 12242, 'twelve thousand two hundred forty-two'), (13112, 97028, 'ninety-seven thousand twenty-eight'), (13113, 29384, 'twenty-nine thousand three hundred eighty-four'), (13114, 38221, 'thirty-eight thousand two hundred twenty-one'), (13115, 53447, 'fifty-three thousand four hundred forty-seven'), (13116, 98000, 'ninety-eight thousand'), (13117, 68425, 'sixty-eight thousand four hundred twenty-five'), (13118, 4350, 'four thousand three hundred fifty'), (13119, 1708, 'one thousand seven hundred eight'), (13120, 28134, 'twenty-eight thousand one hundred thirty-four'), (13121, 4813, 'four thousand eight hundred thirteen'), (13122, 93787, 'ninety-three thousand seven hundred eighty-seven'), (13123, 8822, 'eight thousand eight hundred twenty-two'), (13124, 72982, 'seventy-two thousand nine hundred eighty-two'), (13125, 33244, 'thirty-three thousand two hundred forty-four'), (13126, 48771, 'forty-eight thousand seven hundred seventy-one'), (13127, 48958, 'forty-eight thousand nine hundred fifty-eight'), (13128, 10980, 'ten thousand nine hundred eighty'), (13129, 23503, 'twenty-three thousand five hundred three'), (13130, 97517, 'ninety-seven thousand five hundred seventeen'), (13131, 75226, 'seventy-five thousand two hundred twenty-six'), (13132, 65680, 'sixty-five thousand six hundred eighty'), (13133, 81768, 'eighty-one thousand seven hundred sixty-eight'), (13134, 26780, 'twenty-six thousand seven hundred eighty'), (13135, 13112, 'thirteen thousand one hundred twelve'), (13136, 30779, 'thirty thousand seven hundred seventy-nine'), (13137, 69018, 'sixty-nine thousand eighteen'), (13138, 54064, 'fifty-four thousand sixty-four'), (13139, 64860, 'sixty-four thousand eight hundred sixty'), (13140, 34161, 'thirty-four thousand one hundred sixty-one'), (13141, 2837, 'two thousand eight hundred thirty-seven'), (13142, 36341, 'thirty-six thousand three hundred forty-one'), (13143, 1197, 'one thousand one hundred ninety-seven'), (13144, 11929, 'eleven thousand nine hundred twenty-nine'), (13145, 87437, 'eighty-seven thousand four hundred thirty-seven'), (13146, 73747, 'seventy-three thousand seven hundred forty-seven'), (13147, 3822, 'three thousand eight hundred twenty-two'), (13148, 63132, 'sixty-three thousand one hundred thirty-two'), (13149, 74858, 'seventy-four thousand eight hundred fifty-eight'), (13150, 60719, 'sixty thousand seven hundred nineteen'), (13151, 11534, 'eleven thousand five hundred thirty-four'), (13152, 89423, 'eighty-nine thousand four hundred twenty-three'), (13153, 64825, 'sixty-four thousand eight hundred twenty-five'), (13154, 67448, 'sixty-seven thousand four hundred forty-eight'), (13155, 27193, 'twenty-seven thousand one hundred ninety-three'), (13156, 9647, 'nine thousand six hundred forty-seven'), (13157, 35185, 'thirty-five thousand one hundred eighty-five'), (13158, 8076, 'eight thousand seventy-six'), (13159, 50827, 'fifty thousand eight hundred twenty-seven'), (13160, 56347, 'fifty-six thousand three hundred forty-seven'), (13161, 63542, 'sixty-three thousand five hundred forty-two'), (13162, 36439, 'thirty-six thousand four hundred thirty-nine'), (13163, 17371, 'seventeen thousand three hundred seventy-one'), (13164, 51837, 'fifty-one thousand eight hundred thirty-seven'), (13165, 87903, 'eighty-seven thousand nine hundred three'), (13166, 95923, 'ninety-five thousand nine hundred twenty-three'), (13167, 90815, 'ninety thousand eight hundred fifteen'), (13168, 22562, 'twenty-two thousand five hundred sixty-two'), (13169, 50782, 'fifty thousand seven hundred eighty-two'), (13170, 82861, 'eighty-two thousand eight hundred sixty-one'), (13171, 70222, 'seventy thousand two hundred twenty-two'), (13172, 12179, 'twelve thousand one hundred seventy-nine'), (13173, 54493, 'fifty-four thousand four hundred ninety-three'), (13174, 78149, 'seventy-eight thousand one hundred forty-nine'), (13175, 46002, 'forty-six thousand two'), (13176, 7700, 'seven thousand seven hundred'), (13177, 77620, 'seventy-seven thousand six hundred twenty'), (13178, 3474, 'three thousand four hundred seventy-four'), (13179, 73851, 'seventy-three thousand eight hundred fifty-one'), (13180, 15905, 'fifteen thousand nine hundred five'), (13181, 59004, 'fifty-nine thousand four'), (13182, 96704, 'ninety-six thousand seven hundred four'), (13183, 36024, 'thirty-six thousand twenty-four'), (13184, 28203, 'twenty-eight thousand two hundred three'), (13185, 52029, 'fifty-two thousand twenty-nine'), (13186, 78390, 'seventy-eight thousand three hundred ninety'), (13187, 87978, 'eighty-seven thousand nine hundred seventy-eight'), (13188, 17610, 'seventeen thousand six hundred ten'), (13189, 72739, 'seventy-two thousand seven hundred thirty-nine'), (13190, 34316, 'thirty-four thousand three hundred sixteen'), (13191, 24071, 'twenty-four thousand seventy-one'), (13192, 53318, 'fifty-three thousand three hundred eighteen'), (13193, 75735, 'seventy-five thousand seven hundred thirty-five'), (13194, 41541, 'forty-one thousand five hundred forty-one'), (13195, 32100, 'thirty-two thousand one hundred'), (13196, 61417, 'sixty-one thousand four hundred seventeen'), (13197, 11863, 'eleven thousand eight hundred sixty-three'), (13198, 29375, 'twenty-nine thousand three hundred seventy-five'), (13199, 37859, 'thirty-seven thousand eight hundred fifty-nine'), (13200, 87694, 'eighty-seven thousand six hundred ninety-four'), (13201, 26526, 'twenty-six thousand five hundred twenty-six'), (13202, 15888, 'fifteen thousand eight hundred eighty-eight'), (13203, 70807, 'seventy thousand eight hundred seven'), (13204, 94343, 'ninety-four thousand three hundred forty-three'), (13205, 81494, 'eighty-one thousand four hundred ninety-four'), (13206, 29740, 'twenty-nine thousand seven hundred forty'), (13207, 23823, 'twenty-three thousand eight hundred twenty-three'), (13208, 59185, 'fifty-nine thousand one hundred eighty-five'), (13209, 20678, 'twenty thousand six hundred seventy-eight'), (13210, 29307, 'twenty-nine thousand three hundred seven'), (13211, 13134, 'thirteen thousand one hundred thirty-four'), (13212, 4661, 'four thousand six hundred sixty-one'), (13213, 35977, 'thirty-five thousand nine hundred seventy-seven'), (13214, 50793, 'fifty thousand seven hundred ninety-three'), (13215, 61478, 'sixty-one thousand four hundred seventy-eight'), (13216, 98202, 'ninety-eight thousand two hundred two'), (13217, 69740, 'sixty-nine thousand seven hundred forty'), (13218, 75275, 'seventy-five thousand two hundred seventy-five'), (13219, 56925, 'fifty-six thousand nine hundred twenty-five'), (13220, 60715, 'sixty thousand seven hundred fifteen'), (13221, 64929, 'sixty-four thousand nine hundred twenty-nine'), (13222, 27801, 'twenty-seven thousand eight hundred one'), (13223, 18972, 'eighteen thousand nine hundred seventy-two'), (13224, 11691, 'eleven thousand six hundred ninety-one'), (13225, 341, 'three hundred forty-one'), (13226, 19298, 'nineteen thousand two hundred ninety-eight'), (13227, 40105, 'forty thousand one hundred five'), (13228, 26635, 'twenty-six thousand six hundred thirty-five'), (13229, 24978, 'twenty-four thousand nine hundred seventy-eight'), (13230, 47689, 'forty-seven thousand six hundred eighty-nine'), (13231, 11586, 'eleven thousand five hundred eighty-six'), (13232, 84336, 'eighty-four thousand three hundred thirty-six'), (13233, 123, 'one hundred twenty-three'), (13234, 8505, 'eight thousand five hundred five'), (13235, 49402, 'forty-nine thousand four hundred two'), (13236, 26740, 'twenty-six thousand seven hundred forty'), (13237, 83351, 'eighty-three thousand three hundred fifty-one'), (13238, 35659, 'thirty-five thousand six hundred fifty-nine'), (13239, 87846, 'eighty-seven thousand eight hundred forty-six'), (13240, 16244, 'sixteen thousand two hundred forty-four'), (13241, 6127, 'six thousand one hundred twenty-seven'), (13242, 12441, 'twelve thousand four hundred forty-one'), (13243, 27672, 'twenty-seven thousand six hundred seventy-two'), (13244, 41610, 'forty-one thousand six hundred ten'), (13245, 77801, 'seventy-seven thousand eight hundred one'), (13246, 64605, 'sixty-four thousand six hundred five'), (13247, 55341, 'fifty-five thousand three hundred forty-one'), (13248, 38208, 'thirty-eight thousand two hundred eight'), (13249, 31076, 'thirty-one thousand seventy-six'), (13250, 10181, 'ten thousand one hundred eighty-one'), (13251, 5654, 'five thousand six hundred fifty-four'), (13252, 14005, 'fourteen thousand five'), (13253, 84968, 'eighty-four thousand nine hundred sixty-eight'), (13254, 21314, 'twenty-one thousand three hundred fourteen'), (13255, 62093, 'sixty-two thousand ninety-three'), (13256, 37291, 'thirty-seven thousand two hundred ninety-one'), (13257, 97748, 'ninety-seven thousand seven hundred forty-eight'), (13258, 71656, 'seventy-one thousand six hundred fifty-six'), (13259, 71265, 'seventy-one thousand two hundred sixty-five'), (13260, 48969, 'forty-eight thousand nine hundred sixty-nine'), (13261, 53751, 'fifty-three thousand seven hundred fifty-one'), (13262, 57532, 'fifty-seven thousand five hundred thirty-two'), (13263, 36202, 'thirty-six thousand two hundred two'), (13264, 76502, 'seventy-six thousand five hundred two'), (13265, 74362, 'seventy-four thousand three hundred sixty-two'), (13266, 99653, 'ninety-nine thousand six hundred fifty-three'), (13267, 69060, 'sixty-nine thousand sixty'), (13268, 75713, 'seventy-five thousand seven hundred thirteen'), (13269, 76046, 'seventy-six thousand forty-six'), (13270, 61747, 'sixty-one thousand seven hundred forty-seven'), (13271, 10396, 'ten thousand three hundred ninety-six'), (13272, 71149, 'seventy-one thousand one hundred forty-nine'), (13273, 75232, 'seventy-five thousand two hundred thirty-two'), (13274, 83474, 'eighty-three thousand four hundred seventy-four'), (13275, 16281, 'sixteen thousand two hundred eighty-one'), (13276, 30919, 'thirty thousand nine hundred nineteen'), (13277, 65978, 'sixty-five thousand nine hundred seventy-eight'), (13278, 20388, 'twenty thousand three hundred eighty-eight'), (13279, 52887, 'fifty-two thousand eight hundred eighty-seven'), (13280, 74633, 'seventy-four thousand six hundred thirty-three'), (13281, 25362, 'twenty-five thousand three hundred sixty-two'), (13282, 89761, 'eighty-nine thousand seven hundred sixty-one'), (13283, 96460, 'ninety-six thousand four hundred sixty'), (13284, 9072, 'nine thousand seventy-two'), (13285, 20196, 'twenty thousand one hundred ninety-six'), (13286, 35750, 'thirty-five thousand seven hundred fifty'), (13287, 34201, 'thirty-four thousand two hundred one'), (13288, 71435, 'seventy-one thousand four hundred thirty-five'), (13289, 12565, 'twelve thousand five hundred sixty-five'), (13290, 15407, 'fifteen thousand four hundred seven'), (13291, 60897, 'sixty thousand eight hundred ninety-seven'), (13292, 97271, 'ninety-seven thousand two hundred seventy-one'), (13293, 42621, 'forty-two thousand six hundred twenty-one'), (13294, 21222, 'twenty-one thousand two hundred twenty-two'), (13295, 97913, 'ninety-seven thousand nine hundred thirteen'), (13296, 58094, 'fifty-eight thousand ninety-four'), (13297, 2904, 'two thousand nine hundred four'), (13298, 42591, 'forty-two thousand five hundred ninety-one'), (13299, 55707, 'fifty-five thousand seven hundred seven'), (13300, 16614, 'sixteen thousand six hundred fourteen'), (13301, 37020, 'thirty-seven thousand twenty'), (13302, 13345, 'thirteen thousand three hundred forty-five'), (13303, 79461, 'seventy-nine thousand four hundred sixty-one'), (13304, 45382, 'forty-five thousand three hundred eighty-two'), (13305, 6165, 'six thousand one hundred sixty-five'), (13306, 3455, 'three thousand four hundred fifty-five'), (13307, 17674, 'seventeen thousand six hundred seventy-four'), (13308, 61058, 'sixty-one thousand fifty-eight'), (13309, 15826, 'fifteen thousand eight hundred twenty-six'), (13310, 92302, 'ninety-two thousand three hundred two'), (13311, 27210, 'twenty-seven thousand two hundred ten'), (13312, 36885, 'thirty-six thousand eight hundred eighty-five'), (13313, 92064, 'ninety-two thousand sixty-four'), (13314, 12520, 'twelve thousand five hundred twenty'), (13315, 69500, 'sixty-nine thousand five hundred'), (13316, 24016, 'twenty-four thousand sixteen'), (13317, 31056, 'thirty-one thousand fifty-six'), (13318, 59995, 'fifty-nine thousand nine hundred ninety-five'), (13319, 24884, 'twenty-four thousand eight hundred eighty-four'), (13320, 24883, 'twenty-four thousand eight hundred eighty-three'), (13321, 76276, 'seventy-six thousand two hundred seventy-six'), (13322, 2489, 'two thousand four hundred eighty-nine'), (13323, 64878, 'sixty-four thousand eight hundred seventy-eight'), (13324, 44163, 'forty-four thousand one hundred sixty-three'), (13325, 77423, 'seventy-seven thousand four hundred twenty-three'), (13326, 40235, 'forty thousand two hundred thirty-five'), (13327, 27180, 'twenty-seven thousand one hundred eighty'), (13328, 43594, 'forty-three thousand five hundred ninety-four'), (13329, 3690, 'three thousand six hundred ninety'), (13330, 11373, 'eleven thousand three hundred seventy-three'), (13331, 43537, 'forty-three thousand five hundred thirty-seven'), (13332, 17400, 'seventeen thousand four hundred'), (13333, 54819, 'fifty-four thousand eight hundred nineteen'), (13334, 19330, 'nineteen thousand three hundred thirty'), (13335, 66430, 'sixty-six thousand four hundred thirty'), (13336, 47395, 'forty-seven thousand three hundred ninety-five'), (13337, 99786, 'ninety-nine thousand seven hundred eighty-six'), (13338, 32878, 'thirty-two thousand eight hundred seventy-eight'), (13339, 90252, 'ninety thousand two hundred fifty-two'), (13340, 67410, 'sixty-seven thousand four hundred ten'), (13341, 46816, 'forty-six thousand eight hundred sixteen'), (13342, 42763, 'forty-two thousand seven hundred sixty-three'), (13343, 13614, 'thirteen thousand six hundred fourteen'), (13344, 79965, 'seventy-nine thousand nine hundred sixty-five'), (13345, 43649, 'forty-three thousand six hundred forty-nine'), (13346, 55494, 'fifty-five thousand four hundred ninety-four'), (13347, 643, 'six hundred forty-three'), (13348, 24370, 'twenty-four thousand three hundred seventy'), (13349, 88900, 'eighty-eight thousand nine hundred'), (13350, 45332, 'forty-five thousand three hundred thirty-two'), (13351, 87119, 'eighty-seven thousand one hundred nineteen'), (13352, 5424, 'five thousand four hundred twenty-four'), (13353, 6691, 'six thousand six hundred ninety-one'), (13354, 82112, 'eighty-two thousand one hundred twelve'), (13355, 15691, 'fifteen thousand six hundred ninety-one'), (13356, 68239, 'sixty-eight thousand two hundred thirty-nine'), (13357, 7515, 'seven thousand five hundred fifteen'), (13358, 19529, 'nineteen thousand five hundred twenty-nine'), (13359, 30609, 'thirty thousand six hundred nine'), (13360, 49734, 'forty-nine thousand seven hundred thirty-four'), (13361, 81504, 'eighty-one thousand five hundred four'), (13362, 92661, 'ninety-two thousand six hundred sixty-one'), (13363, 24630, 'twenty-four thousand six hundred thirty'), (13364, 11629, 'eleven thousand six hundred twenty-nine'), (13365, 90377, 'ninety thousand three hundred seventy-seven'), (13366, 29404, 'twenty-nine thousand four hundred four'), (13367, 4049, 'four thousand forty-nine'), (13368, 85679, 'eighty-five thousand six hundred seventy-nine'), (13369, 50669, 'fifty thousand six hundred sixty-nine'), (13370, 39943, 'thirty-nine thousand nine hundred forty-three'), (13371, 61686, 'sixty-one thousand six hundred eighty-six'), (13372, 95689, 'ninety-five thousand six hundred eighty-nine'), (13373, 13156, 'thirteen thousand one hundred fifty-six'), (13374, 85078, 'eighty-five thousand seventy-eight'), (13375, 43209, 'forty-three thousand two hundred nine'), (13376, 24774, 'twenty-four thousand seven hundred seventy-four'), (13377, 1892, 'one thousand eight hundred ninety-two'), (13378, 95840, 'ninety-five thousand eight hundred forty'), (13379, 78703, 'seventy-eight thousand seven hundred three'), (13380, 88084, 'eighty-eight thousand eighty-four'), (13381, 32355, 'thirty-two thousand three hundred fifty-five'), (13382, 90626, 'ninety thousand six hundred twenty-six'), (13383, 85351, 'eighty-five thousand three hundred fifty-one'), (13384, 58896, 'fifty-eight thousand eight hundred ninety-six'), (13385, 96485, 'ninety-six thousand four hundred eighty-five'), (13386, 64726, 'sixty-four thousand seven hundred twenty-six'), (13387, 23011, 'twenty-three thousand eleven'), (13388, 31760, 'thirty-one thousand seven hundred sixty'), (13389, 73563, 'seventy-three thousand five hundred sixty-three'), (13390, 1457, 'one thousand four hundred fifty-seven'), (13391, 54956, 'fifty-four thousand nine hundred fifty-six'), (13392, 97576, 'ninety-seven thousand five hundred seventy-six'), (13393, 18120, 'eighteen thousand one hundred twenty'), (13394, 11749, 'eleven thousand seven hundred forty-nine'), (13395, 11871, 'eleven thousand eight hundred seventy-one'), (13396, 46306, 'forty-six thousand three hundred six'), (13397, 4920, 'four thousand nine hundred twenty'), (13398, 86397, 'eighty-six thousand three hundred ninety-seven'), (13399, 4421, 'four thousand four hundred twenty-one'), (13400, 22687, 'twenty-two thousand six hundred eighty-seven'), (13401, 18312, 'eighteen thousand three hundred twelve'), (13402, 19119, 'nineteen thousand one hundred nineteen'), (13403, 67993, 'sixty-seven thousand nine hundred ninety-three'), (13404, 41345, 'forty-one thousand three hundred forty-five'), (13405, 31791, 'thirty-one thousand seven hundred ninety-one'), (13406, 9790, 'nine thousand seven hundred ninety'), (13407, 33943, 'thirty-three thousand nine hundred forty-three'), (13408, 13551, 'thirteen thousand five hundred fifty-one'), (13409, 21684, 'twenty-one thousand six hundred eighty-four'), (13410, 34528, 'thirty-four thousand five hundred twenty-eight'), (13411, 34653, 'thirty-four thousand six hundred fifty-three'), (13412, 2531, 'two thousand five hundred thirty-one'), (13413, 55823, 'fifty-five thousand eight hundred twenty-three'), (13414, 247, 'two hundred forty-seven'), (13415, 58488, 'fifty-eight thousand four hundred eighty-eight'), (13416, 24881, 'twenty-four thousand eight hundred eighty-one'), (13417, 80859, 'eighty thousand eight hundred fifty-nine'), (13418, 35264, 'thirty-five thousand two hundred sixty-four'), (13419, 82193, 'eighty-two thousand one hundred ninety-three'), (13420, 51840, 'fifty-one thousand eight hundred forty'), (13421, 64702, 'sixty-four thousand seven hundred two'), (13422, 38351, 'thirty-eight thousand three hundred fifty-one'), (13423, 71390, 'seventy-one thousand three hundred ninety'), (13424, 91759, 'ninety-one thousand seven hundred fifty-nine'), (13425, 9395, 'nine thousand three hundred ninety-five'), (13426, 14921, 'fourteen thousand nine hundred twenty-one'), (13427, 82772, 'eighty-two thousand seven hundred seventy-two'), (13428, 42233, 'forty-two thousand two hundred thirty-three'), (13429, 21197, 'twenty-one thousand one hundred ninety-seven'), (13430, 27454, 'twenty-seven thousand four hundred fifty-four'), (13431, 24640, 'twenty-four thousand six hundred forty'), (13432, 64911, 'sixty-four thousand nine hundred eleven'), (13433, 55943, 'fifty-five thousand nine hundred forty-three'), (13434, 74409, 'seventy-four thousand four hundred nine'), (13435, 98584, 'ninety-eight thousand five hundred eighty-four'), (13436, 50969, 'fifty thousand nine hundred sixty-nine'), (13437, 17820, 'seventeen thousand eight hundred twenty'), (13438, 1380, 'one thousand three hundred eighty'), (13439, 75904, 'seventy-five thousand nine hundred four'), (13440, 58169, 'fifty-eight thousand one hundred sixty-nine'), (13441, 89505, 'eighty-nine thousand five hundred five'), (13442, 76161, 'seventy-six thousand one hundred sixty-one'), (13443, 85191, 'eighty-five thousand one hundred ninety-one'), (13444, 3654, 'three thousand six hundred fifty-four'), (13445, 7270, 'seven thousand two hundred seventy'), (13446, 58449, 'fifty-eight thousand four hundred forty-nine'), (13447, 18421, 'eighteen thousand four hundred twenty-one'), (13448, 87540, 'eighty-seven thousand five hundred forty'), (13449, 64988, 'sixty-four thousand nine hundred eighty-eight'), (13450, 62539, 'sixty-two thousand five hundred thirty-nine'), (13451, 5489, 'five thousand four hundred eighty-nine'), (13452, 11447, 'eleven thousand four hundred forty-seven'), (13453, 12538, 'twelve thousand five hundred thirty-eight'), (13454, 84432, 'eighty-four thousand four hundred thirty-two'), (13455, 43221, 'forty-three thousand two hundred twenty-one'), (13456, 73702, 'seventy-three thousand seven hundred two'), (13457, 62350, 'sixty-two thousand three hundred fifty'), (13458, 90981, 'ninety thousand nine hundred eighty-one'), (13459, 84845, 'eighty-four thousand eight hundred forty-five'), (13460, 52796, 'fifty-two thousand seven hundred ninety-six'), (13461, 66773, 'sixty-six thousand seven hundred seventy-three'), (13462, 41435, 'forty-one thousand four hundred thirty-five'), (13463, 7761, 'seven thousand seven hundred sixty-one'), (13464, 28007, 'twenty-eight thousand seven'), (13465, 96963, 'ninety-six thousand nine hundred sixty-three'), (13466, 93009, 'ninety-three thousand nine'), (13467, 2819, 'two thousand eight hundred nineteen'), (13468, 924, 'nine hundred twenty-four'), (13469, 24234, 'twenty-four thousand two hundred thirty-four'), (13470, 80264, 'eighty thousand two hundred sixty-four'), (13471, 84051, 'eighty-four thousand fifty-one'), (13472, 1310, 'one thousand three hundred ten'), (13473, 2837, 'two thousand eight hundred thirty-seven'), (13474, 87686, 'eighty-seven thousand six hundred eighty-six'), (13475, 15872, 'fifteen thousand eight hundred seventy-two'), (13476, 84167, 'eighty-four thousand one hundred sixty-seven'), (13477, 59391, 'fifty-nine thousand three hundred ninety-one'), (13478, 85732, 'eighty-five thousand seven hundred thirty-two'), (13479, 37927, 'thirty-seven thousand nine hundred twenty-seven'), (13480, 2578, 'two thousand five hundred seventy-eight'), (13481, 44012, 'forty-four thousand twelve'), (13482, 14290, 'fourteen thousand two hundred ninety'), (13483, 25567, 'twenty-five thousand five hundred sixty-seven'), (13484, 38059, 'thirty-eight thousand fifty-nine'), (13485, 59733, 'fifty-nine thousand seven hundred thirty-three'), (13486, 32897, 'thirty-two thousand eight hundred ninety-seven'), (13487, 12843, 'twelve thousand eight hundred forty-three'), (13488, 25993, 'twenty-five thousand nine hundred ninety-three'), (13489, 84519, 'eighty-four thousand five hundred nineteen'), (13490, 22645, 'twenty-two thousand six hundred forty-five'), (13491, 40121, 'forty thousand one hundred twenty-one'), (13492, 31797, 'thirty-one thousand seven hundred ninety-seven'), (13493, 67194, 'sixty-seven thousand one hundred ninety-four'), (13494, 41318, 'forty-one thousand three hundred eighteen'), (13495, 23003, 'twenty-three thousand three'), (13496, 27605, 'twenty-seven thousand six hundred five'), (13497, 93482, 'ninety-three thousand four hundred eighty-two'), (13498, 75579, 'seventy-five thousand five hundred seventy-nine'), (13499, 1265, 'one thousand two hundred sixty-five'), (13500, 19780, 'nineteen thousand seven hundred eighty'), (13501, 85838, 'eighty-five thousand eight hundred thirty-eight'), (13502, 65705, 'sixty-five thousand seven hundred five'), (13503, 4730, 'four thousand seven hundred thirty'), (13504, 15590, 'fifteen thousand five hundred ninety'), (13505, 16963, 'sixteen thousand nine hundred sixty-three'), (13506, 71713, 'seventy-one thousand seven hundred thirteen'), (13507, 69032, 'sixty-nine thousand thirty-two'), (13508, 8635, 'eight thousand six hundred thirty-five'), (13509, 47461, 'forty-seven thousand four hundred sixty-one'), (13510, 34107, 'thirty-four thousand one hundred seven'), (13511, 13665, 'thirteen thousand six hundred sixty-five'), (13512, 10762, 'ten thousand seven hundred sixty-two'), (13513, 94365, 'ninety-four thousand three hundred sixty-five'), (13514, 11060, 'eleven thousand sixty'), (13515, 58344, 'fifty-eight thousand three hundred forty-four'), (13516, 74773, 'seventy-four thousand seven hundred seventy-three'), (13517, 19797, 'nineteen thousand seven hundred ninety-seven'), (13518, 38729, 'thirty-eight thousand seven hundred twenty-nine'), (13519, 69522, 'sixty-nine thousand five hundred twenty-two'), (13520, 62413, 'sixty-two thousand four hundred thirteen'), (13521, 86445, 'eighty-six thousand four hundred forty-five'), (13522, 94331, 'ninety-four thousand three hundred thirty-one'), (13523, 78354, 'seventy-eight thousand three hundred fifty-four'), (13524, 6332, 'six thousand three hundred thirty-two'), (13525, 45405, 'forty-five thousand four hundred five'), (13526, 19955, 'nineteen thousand nine hundred fifty-five'), (13527, 21999, 'twenty-one thousand nine hundred ninety-nine'), (13528, 81769, 'eighty-one thousand seven hundred sixty-nine'), (13529, 28807, 'twenty-eight thousand eight hundred seven'), (13530, 45547, 'forty-five thousand five hundred forty-seven'), (13531, 16980, 'sixteen thousand nine hundred eighty'), (13532, 63331, 'sixty-three thousand three hundred thirty-one'), (13533, 43602, 'forty-three thousand six hundred two'), (13534, 31850, 'thirty-one thousand eight hundred fifty'), (13535, 25922, 'twenty-five thousand nine hundred twenty-two'), (13536, 86241, 'eighty-six thousand two hundred forty-one'), (13537, 23191, 'twenty-three thousand one hundred ninety-one'), (13538, 45128, 'forty-five thousand one hundred twenty-eight'), (13539, 32189, 'thirty-two thousand one hundred eighty-nine'), (13540, 15541, 'fifteen thousand five hundred forty-one'), (13541, 73582, 'seventy-three thousand five hundred eighty-two'), (13542, 34331, 'thirty-four thousand three hundred thirty-one'), (13543, 33372, 'thirty-three thousand three hundred seventy-two'), (13544, 79229, 'seventy-nine thousand two hundred twenty-nine'), (13545, 96487, 'ninety-six thousand four hundred eighty-seven'), (13546, 35287, 'thirty-five thousand two hundred eighty-seven'), (13547, 66978, 'sixty-six thousand nine hundred seventy-eight'), (13548, 17467, 'seventeen thousand four hundred sixty-seven'), (13549, 7598, 'seven thousand five hundred ninety-eight'), (13550, 81921, 'eighty-one thousand nine hundred twenty-one'), (13551, 14983, 'fourteen thousand nine hundred eighty-three'), (13552, 54865, 'fifty-four thousand eight hundred sixty-five'), (13553, 42039, 'forty-two thousand thirty-nine'), (13554, 46505, 'forty-six thousand five hundred five'), (13555, 30935, 'thirty thousand nine hundred thirty-five'), (13556, 42183, 'forty-two thousand one hundred eighty-three'), (13557, 14094, 'fourteen thousand ninety-four'), (13558, 29876, 'twenty-nine thousand eight hundred seventy-six'), (13559, 57726, 'fifty-seven thousand seven hundred twenty-six'), (13560, 7731, 'seven thousand seven hundred thirty-one'), (13561, 30694, 'thirty thousand six hundred ninety-four'), (13562, 53227, 'fifty-three thousand two hundred twenty-seven'), (13563, 85669, 'eighty-five thousand six hundred sixty-nine'), (13564, 90753, 'ninety thousand seven hundred fifty-three'), (13565, 45573, 'forty-five thousand five hundred seventy-three'), (13566, 38817, 'thirty-eight thousand eight hundred seventeen'), (13567, 91332, 'ninety-one thousand three hundred thirty-two'), (13568, 76530, 'seventy-six thousand five hundred thirty'), (13569, 80829, 'eighty thousand eight hundred twenty-nine'), (13570, 47663, 'forty-seven thousand six hundred sixty-three'), (13571, 69575, 'sixty-nine thousand five hundred seventy-five'), (13572, 60932, 'sixty thousand nine hundred thirty-two'), (13573, 91394, 'ninety-one thousand three hundred ninety-four'), (13574, 9005, 'nine thousand five'), (13575, 61146, 'sixty-one thousand one hundred forty-six'), (13576, 66212, 'sixty-six thousand two hundred twelve'), (13577, 50640, 'fifty thousand six hundred forty'), (13578, 50146, 'fifty thousand one hundred forty-six'), (13579, 25970, 'twenty-five thousand nine hundred seventy'), (13580, 63852, 'sixty-three thousand eight hundred fifty-two'), (13581, 24647, 'twenty-four thousand six hundred forty-seven'), (13582, 15971, 'fifteen thousand nine hundred seventy-one'), (13583, 70457, 'seventy thousand four hundred fifty-seven'), (13584, 54764, 'fifty-four thousand seven hundred sixty-four'), (13585, 24990, 'twenty-four thousand nine hundred ninety'), (13586, 69399, 'sixty-nine thousand three hundred ninety-nine'), (13587, 90990, 'ninety thousand nine hundred ninety'), (13588, 67029, 'sixty-seven thousand twenty-nine'), (13589, 77976, 'seventy-seven thousand nine hundred seventy-six'), (13590, 91331, 'ninety-one thousand three hundred thirty-one'), (13591, 76717, 'seventy-six thousand seven hundred seventeen'), (13592, 51540, 'fifty-one thousand five hundred forty'), (13593, 8526, 'eight thousand five hundred twenty-six'), (13594, 41123, 'forty-one thousand one hundred twenty-three'), (13595, 94873, 'ninety-four thousand eight hundred seventy-three'), (13596, 24189, 'twenty-four thousand one hundred eighty-nine'), (13597, 48310, 'forty-eight thousand three hundred ten'), (13598, 13437, 'thirteen thousand four hundred thirty-seven'), (13599, 48614, 'forty-eight thousand six hundred fourteen'), (13600, 65706, 'sixty-five thousand seven hundred six'), (13601, 40556, 'forty thousand five hundred fifty-six'), (13602, 65902, 'sixty-five thousand nine hundred two'), (13603, 95212, 'ninety-five thousand two hundred twelve'), (13604, 475, 'four hundred seventy-five'), (13605, 63035, 'sixty-three thousand thirty-five'), (13606, 22866, 'twenty-two thousand eight hundred sixty-six'), (13607, 71775, 'seventy-one thousand seven hundred seventy-five'), (13608, 89843, 'eighty-nine thousand eight hundred forty-three'), (13609, 43237, 'forty-three thousand two hundred thirty-seven'), (13610, 8653, 'eight thousand six hundred fifty-three'), (13611, 79069, 'seventy-nine thousand sixty-nine'), (13612, 987, 'nine hundred eighty-seven'), (13613, 17396, 'seventeen thousand three hundred ninety-six'), (13614, 57167, 'fifty-seven thousand one hundred sixty-seven'), (13615, 13001, 'thirteen thousand one'), (13616, 25197, 'twenty-five thousand one hundred ninety-seven'), (13617, 76542, 'seventy-six thousand five hundred forty-two'), (13618, 66067, 'sixty-six thousand sixty-seven'), (13619, 68736, 'sixty-eight thousand seven hundred thirty-six'), (13620, 94207, 'ninety-four thousand two hundred seven'), (13621, 37605, 'thirty-seven thousand six hundred five'), (13622, 1482, 'one thousand four hundred eighty-two'), (13623, 90353, 'ninety thousand three hundred fifty-three'), (13624, 70863, 'seventy thousand eight hundred sixty-three'), (13625, 66587, 'sixty-six thousand five hundred eighty-seven'), (13626, 96557, 'ninety-six thousand five hundred fifty-seven'), (13627, 4233, 'four thousand two hundred thirty-three'), (13628, 50958, 'fifty thousand nine hundred fifty-eight'), (13629, 11156, 'eleven thousand one hundred fifty-six'), (13630, 84869, 'eighty-four thousand eight hundred sixty-nine'), (13631, 36240, 'thirty-six thousand two hundred forty'), (13632, 70414, 'seventy thousand four hundred fourteen'), (13633, 10625, 'ten thousand six hundred twenty-five'), (13634, 88677, 'eighty-eight thousand six hundred seventy-seven'), (13635, 51460, 'fifty-one thousand four hundred sixty'), (13636, 30192, 'thirty thousand one hundred ninety-two'), (13637, 45114, 'forty-five thousand one hundred fourteen'), (13638, 50980, 'fifty thousand nine hundred eighty'), (13639, 79041, 'seventy-nine thousand forty-one'), (13640, 13333, 'thirteen thousand three hundred thirty-three'), (13641, 8134, 'eight thousand one hundred thirty-four'), (13642, 71735, 'seventy-one thousand seven hundred thirty-five'), (13643, 52192, 'fifty-two thousand one hundred ninety-two'), (13644, 84157, 'eighty-four thousand one hundred fifty-seven'), (13645, 50936, 'fifty thousand nine hundred thirty-six'), (13646, 14307, 'fourteen thousand three hundred seven'), (13647, 25668, 'twenty-five thousand six hundred sixty-eight'), (13648, 44503, 'forty-four thousand five hundred three'), (13649, 20978, 'twenty thousand nine hundred seventy-eight'), (13650, 59805, 'fifty-nine thousand eight hundred five'), (13651, 53483, 'fifty-three thousand four hundred eighty-three'), (13652, 33857, 'thirty-three thousand eight hundred fifty-seven'), (13653, 95460, 'ninety-five thousand four hundred sixty'), (13654, 59699, 'fifty-nine thousand six hundred ninety-nine'), (13655, 23865, 'twenty-three thousand eight hundred sixty-five'), (13656, 86569, 'eighty-six thousand five hundred sixty-nine'), (13657, 40275, 'forty thousand two hundred seventy-five'), (13658, 22081, 'twenty-two thousand eighty-one'), (13659, 14997, 'fourteen thousand nine hundred ninety-seven'), (13660, 30873, 'thirty thousand eight hundred seventy-three'), (13661, 57839, 'fifty-seven thousand eight hundred thirty-nine'), (13662, 80026, 'eighty thousand twenty-six'), (13663, 66472, 'sixty-six thousand four hundred seventy-two'), (13664, 13000, 'thirteen thousand'), (13665, 40121, 'forty thousand one hundred twenty-one'), (13666, 15251, 'fifteen thousand two hundred fifty-one'), (13667, 30927, 'thirty thousand nine hundred twenty-seven'), (13668, 78140, 'seventy-eight thousand one hundred forty'), (13669, 84081, 'eighty-four thousand eighty-one'), (13670, 50335, 'fifty thousand three hundred thirty-five'), (13671, 92674, 'ninety-two thousand six hundred seventy-four'), (13672, 33679, 'thirty-three thousand six hundred seventy-nine'), (13673, 7606, 'seven thousand six hundred six'), (13674, 92005, 'ninety-two thousand five'), (13675, 5434, 'five thousand four hundred thirty-four'), (13676, 13517, 'thirteen thousand five hundred seventeen'), (13677, 12443, 'twelve thousand four hundred forty-three'), (13678, 46815, 'forty-six thousand eight hundred fifteen'), (13679, 7753, 'seven thousand seven hundred fifty-three'), (13680, 82427, 'eighty-two thousand four hundred twenty-seven'), (13681, 47973, 'forty-seven thousand nine hundred seventy-three'), (13682, 98467, 'ninety-eight thousand four hundred sixty-seven'), (13683, 60533, 'sixty thousand five hundred thirty-three'), (13684, 52394, 'fifty-two thousand three hundred ninety-four'), (13685, 71816, 'seventy-one thousand eight hundred sixteen'), (13686, 8326, 'eight thousand three hundred twenty-six'), (13687, 65632, 'sixty-five thousand six hundred thirty-two'), (13688, 59581, 'fifty-nine thousand five hundred eighty-one'), (13689, 91354, 'ninety-one thousand three hundred fifty-four'), (13690, 56213, 'fifty-six thousand two hundred thirteen'), (13691, 31000, 'thirty-one thousand'), (13692, 38897, 'thirty-eight thousand eight hundred ninety-seven'), (13693, 62487, 'sixty-two thousand four hundred eighty-seven'), (13694, 72147, 'seventy-two thousand one hundred forty-seven'), (13695, 14074, 'fourteen thousand seventy-four'), (13696, 40583, 'forty thousand five hundred eighty-three'), (13697, 72494, 'seventy-two thousand four hundred ninety-four'), (13698, 62041, 'sixty-two thousand forty-one'), (13699, 63286, 'sixty-three thousand two hundred eighty-six'), (13700, 34725, 'thirty-four thousand seven hundred twenty-five'), (13701, 77753, 'seventy-seven thousand seven hundred fifty-three'), (13702, 45506, 'forty-five thousand five hundred six'), (13703, 94021, 'ninety-four thousand twenty-one'), (13704, 52052, 'fifty-two thousand fifty-two'), (13705, 91936, 'ninety-one thousand nine hundred thirty-six'), (13706, 60384, 'sixty thousand three hundred eighty-four'), (13707, 9721, 'nine thousand seven hundred twenty-one'), (13708, 31031, 'thirty-one thousand thirty-one'), (13709, 74978, 'seventy-four thousand nine hundred seventy-eight'), (13710, 22814, 'twenty-two thousand eight hundred fourteen'), (13711, 67919, 'sixty-seven thousand nine hundred nineteen'), (13712, 37144, 'thirty-seven thousand one hundred forty-four'), (13713, 77122, 'seventy-seven thousand one hundred twenty-two'), (13714, 83969, 'eighty-three thousand nine hundred sixty-nine'), (13715, 67269, 'sixty-seven thousand two hundred sixty-nine'), (13716, 39758, 'thirty-nine thousand seven hundred fifty-eight'), (13717, 32750, 'thirty-two thousand seven hundred fifty'), (13718, 15333, 'fifteen thousand three hundred thirty-three'), (13719, 14699, 'fourteen thousand six hundred ninety-nine'), (13720, 28863, 'twenty-eight thousand eight hundred sixty-three'), (13721, 19065, 'nineteen thousand sixty-five'), (13722, 65366, 'sixty-five thousand three hundred sixty-six'), (13723, 31543, 'thirty-one thousand five hundred forty-three'), (13724, 66953, 'sixty-six thousand nine hundred fifty-three'), (13725, 31089, 'thirty-one thousand eighty-nine'), (13726, 92292, 'ninety-two thousand two hundred ninety-two'), (13727, 45605, 'forty-five thousand six hundred five'), (13728, 39718, 'thirty-nine thousand seven hundred eighteen'), (13729, 50362, 'fifty thousand three hundred sixty-two'), (13730, 71154, 'seventy-one thousand one hundred fifty-four'), (13731, 34712, 'thirty-four thousand seven hundred twelve'), (13732, 18775, 'eighteen thousand seven hundred seventy-five'), (13733, 67596, 'sixty-seven thousand five hundred ninety-six'), (13734, 44008, 'forty-four thousand eight'), (13735, 13487, 'thirteen thousand four hundred eighty-seven'), (13736, 81686, 'eighty-one thousand six hundred eighty-six'), (13737, 93496, 'ninety-three thousand four hundred ninety-six'), (13738, 68425, 'sixty-eight thousand four hundred twenty-five'), (13739, 19463, 'nineteen thousand four hundred sixty-three'), (13740, 25695, 'twenty-five thousand six hundred ninety-five'), (13741, 72636, 'seventy-two thousand six hundred thirty-six'), (13742, 56790, 'fifty-six thousand seven hundred ninety'), (13743, 81229, 'eighty-one thousand two hundred twenty-nine'), (13744, 85159, 'eighty-five thousand one hundred fifty-nine'), (13745, 49307, 'forty-nine thousand three hundred seven'), (13746, 2207, 'two thousand two hundred seven'), (13747, 72435, 'seventy-two thousand four hundred thirty-five'), (13748, 40335, 'forty thousand three hundred thirty-five'), (13749, 26055, 'twenty-six thousand fifty-five'), (13750, 1511, 'one thousand five hundred eleven'), (13751, 84572, 'eighty-four thousand five hundred seventy-two'), (13752, 61971, 'sixty-one thousand nine hundred seventy-one'), (13753, 70945, 'seventy thousand nine hundred forty-five'), (13754, 61648, 'sixty-one thousand six hundred forty-eight'), (13755, 938, 'nine hundred thirty-eight'), (13756, 43068, 'forty-three thousand sixty-eight'), (13757, 27896, 'twenty-seven thousand eight hundred ninety-six'), (13758, 52616, 'fifty-two thousand six hundred sixteen'), (13759, 48165, 'forty-eight thousand one hundred sixty-five'), (13760, 2164, 'two thousand one hundred sixty-four'), (13761, 23721, 'twenty-three thousand seven hundred twenty-one'), (13762, 52476, 'fifty-two thousand four hundred seventy-six'), (13763, 62231, 'sixty-two thousand two hundred thirty-one'), (13764, 33567, 'thirty-three thousand five hundred sixty-seven'), (13765, 57681, 'fifty-seven thousand six hundred eighty-one'), (13766, 88349, 'eighty-eight thousand three hundred forty-nine'), (13767, 19735, 'nineteen thousand seven hundred thirty-five'), (13768, 47280, 'forty-seven thousand two hundred eighty'), (13769, 83506, 'eighty-three thousand five hundred six'), (13770, 21295, 'twenty-one thousand two hundred ninety-five'), (13771, 26390, 'twenty-six thousand three hundred ninety'), (13772, 40762, 'forty thousand seven hundred sixty-two'), (13773, 62863, 'sixty-two thousand eight hundred sixty-three'), (13774, 28296, 'twenty-eight thousand two hundred ninety-six'), (13775, 38257, 'thirty-eight thousand two hundred fifty-seven'), (13776, 36423, 'thirty-six thousand four hundred twenty-three'), (13777, 31282, 'thirty-one thousand two hundred eighty-two'), (13778, 76158, 'seventy-six thousand one hundred fifty-eight'), (13779, 15672, 'fifteen thousand six hundred seventy-two'), (13780, 93834, 'ninety-three thousand eight hundred thirty-four'), (13781, 63963, 'sixty-three thousand nine hundred sixty-three'), (13782, 83022, 'eighty-three thousand twenty-two'), (13783, 72549, 'seventy-two thousand five hundred forty-nine'), (13784, 61398, 'sixty-one thousand three hundred ninety-eight'), (13785, 65676, 'sixty-five thousand six hundred seventy-six'), (13786, 51490, 'fifty-one thousand four hundred ninety'), (13787, 43370, 'forty-three thousand three hundred seventy'), (13788, 5813, 'five thousand eight hundred thirteen'), (13789, 75003, 'seventy-five thousand three'), (13790, 53449, 'fifty-three thousand four hundred forty-nine'), (13791, 77865, 'seventy-seven thousand eight hundred sixty-five'), (13792, 83687, 'eighty-three thousand six hundred eighty-seven'), (13793, 96305, 'ninety-six thousand three hundred five'), (13794, 49568, 'forty-nine thousand five hundred sixty-eight'), (13795, 15967, 'fifteen thousand nine hundred sixty-seven'), (13796, 89032, 'eighty-nine thousand thirty-two'), (13797, 20415, 'twenty thousand four hundred fifteen'), (13798, 80226, 'eighty thousand two hundred twenty-six'), (13799, 93558, 'ninety-three thousand five hundred fifty-eight'), (13800, 93706, 'ninety-three thousand seven hundred six'), (13801, 27507, 'twenty-seven thousand five hundred seven'), (13802, 88167, 'eighty-eight thousand one hundred sixty-seven'), (13803, 23815, 'twenty-three thousand eight hundred fifteen'), (13804, 9192, 'nine thousand one hundred ninety-two'), (13805, 95524, 'ninety-five thousand five hundred twenty-four'), (13806, 33704, 'thirty-three thousand seven hundred four'), (13807, 54328, 'fifty-four thousand three hundred twenty-eight'), (13808, 94822, 'ninety-four thousand eight hundred twenty-two'), (13809, 82078, 'eighty-two thousand seventy-eight'), (13810, 42892, 'forty-two thousand eight hundred ninety-two'), (13811, 9847, 'nine thousand eight hundred forty-seven'), (13812, 51487, 'fifty-one thousand four hundred eighty-seven'), (13813, 73613, 'seventy-three thousand six hundred thirteen'), (13814, 11225, 'eleven thousand two hundred twenty-five'), (13815, 21855, 'twenty-one thousand eight hundred fifty-five'), (13816, 56850, 'fifty-six thousand eight hundred fifty'), (13817, 98933, 'ninety-eight thousand nine hundred thirty-three'), (13818, 64832, 'sixty-four thousand eight hundred thirty-two'), (13819, 49910, 'forty-nine thousand nine hundred ten'), (13820, 40944, 'forty thousand nine hundred forty-four'), (13821, 91430, 'ninety-one thousand four hundred thirty'), (13822, 85725, 'eighty-five thousand seven hundred twenty-five'), (13823, 88200, 'eighty-eight thousand two hundred'), (13824, 85983, 'eighty-five thousand nine hundred eighty-three'), (13825, 2003, 'two thousand three'), (13826, 97278, 'ninety-seven thousand two hundred seventy-eight'), (13827, 64222, 'sixty-four thousand two hundred twenty-two'), (13828, 99213, 'ninety-nine thousand two hundred thirteen'), (13829, 11659, 'eleven thousand six hundred fifty-nine'), (13830, 50991, 'fifty thousand nine hundred ninety-one'), (13831, 29481, 'twenty-nine thousand four hundred eighty-one'), (13832, 54400, 'fifty-four thousand four hundred'), (13833, 40258, 'forty thousand two hundred fifty-eight'), (13834, 95042, 'ninety-five thousand forty-two'), (13835, 8704, 'eight thousand seven hundred four'), (13836, 42689, 'forty-two thousand six hundred eighty-nine'), (13837, 78620, 'seventy-eight thousand six hundred twenty'), (13838, 52949, 'fifty-two thousand nine hundred forty-nine'), (13839, 9565, 'nine thousand five hundred sixty-five'), (13840, 68254, 'sixty-eight thousand two hundred fifty-four'), (13841, 33211, 'thirty-three thousand two hundred eleven'), (13842, 80035, 'eighty thousand thirty-five'), (13843, 87332, 'eighty-seven thousand three hundred thirty-two'), (13844, 79933, 'seventy-nine thousand nine hundred thirty-three'), (13845, 52004, 'fifty-two thousand four'), (13846, 1440, 'one thousand four hundred forty'), (13847, 91185, 'ninety-one thousand one hundred eighty-five'), (13848, 9933, 'nine thousand nine hundred thirty-three'), (13849, 34667, 'thirty-four thousand six hundred sixty-seven'), (13850, 97866, 'ninety-seven thousand eight hundred sixty-six'), (13851, 82399, 'eighty-two thousand three hundred ninety-nine'), (13852, 41453, 'forty-one thousand four hundred fifty-three'), (13853, 88606, 'eighty-eight thousand six hundred six'), (13854, 98991, 'ninety-eight thousand nine hundred ninety-one'), (13855, 74902, 'seventy-four thousand nine hundred two'), (13856, 99281, 'ninety-nine thousand two hundred eighty-one'), (13857, 73926, 'seventy-three thousand nine hundred twenty-six'), (13858, 45190, 'forty-five thousand one hundred ninety'), (13859, 41484, 'forty-one thousand four hundred eighty-four'), (13860, 70994, 'seventy thousand nine hundred ninety-four'), (13861, 21271, 'twenty-one thousand two hundred seventy-one'), (13862, 51480, 'fifty-one thousand four hundred eighty'), (13863, 51347, 'fifty-one thousand three hundred forty-seven'), (13864, 61407, 'sixty-one thousand four hundred seven'), (13865, 36644, 'thirty-six thousand six hundred forty-four'), (13866, 24674, 'twenty-four thousand six hundred seventy-four'), (13867, 83153, 'eighty-three thousand one hundred fifty-three'), (13868, 46673, 'forty-six thousand six hundred seventy-three'), (13869, 37895, 'thirty-seven thousand eight hundred ninety-five'), (13870, 30440, 'thirty thousand four hundred forty'), (13871, 16861, 'sixteen thousand eight hundred sixty-one'), (13872, 78951, 'seventy-eight thousand nine hundred fifty-one'), (13873, 78606, 'seventy-eight thousand six hundred six'), (13874, 61033, 'sixty-one thousand thirty-three'), (13875, 30587, 'thirty thousand five hundred eighty-seven'), (13876, 88874, 'eighty-eight thousand eight hundred seventy-four'), (13877, 93154, 'ninety-three thousand one hundred fifty-four'), (13878, 34811, 'thirty-four thousand eight hundred eleven'), (13879, 2338, 'two thousand three hundred thirty-eight'), (13880, 43317, 'forty-three thousand three hundred seventeen'), (13881, 53449, 'fifty-three thousand four hundred forty-nine'), (13882, 78767, 'seventy-eight thousand seven hundred sixty-seven'), (13883, 34807, 'thirty-four thousand eight hundred seven'), (13884, 34968, 'thirty-four thousand nine hundred sixty-eight'), (13885, 68556, 'sixty-eight thousand five hundred fifty-six'), (13886, 6349, 'six thousand three hundred forty-nine'), (13887, 56051, 'fifty-six thousand fifty-one'), (13888, 73344, 'seventy-three thousand three hundred forty-four'), (13889, 40586, 'forty thousand five hundred eighty-six'), (13890, 19476, 'nineteen thousand four hundred seventy-six'), (13891, 38249, 'thirty-eight thousand two hundred forty-nine'), (13892, 97501, 'ninety-seven thousand five hundred one'), (13893, 63302, 'sixty-three thousand three hundred two'), (13894, 90758, 'ninety thousand seven hundred fifty-eight'), (13895, 72862, 'seventy-two thousand eight hundred sixty-two'), (13896, 58676, 'fifty-eight thousand six hundred seventy-six'), (13897, 36707, 'thirty-six thousand seven hundred seven'), (13898, 17956, 'seventeen thousand nine hundred fifty-six'), (13899, 72766, 'seventy-two thousand seven hundred sixty-six'), (13900, 89128, 'eighty-nine thousand one hundred twenty-eight'), (13901, 83385, 'eighty-three thousand three hundred eighty-five'), (13902, 25194, 'twenty-five thousand one hundred ninety-four'), (13903, 44013, 'forty-four thousand thirteen'), (13904, 89011, 'eighty-nine thousand eleven'), (13905, 51016, 'fifty-one thousand sixteen'), (13906, 35996, 'thirty-five thousand nine hundred ninety-six'), (13907, 27611, 'twenty-seven thousand six hundred eleven'), (13908, 57361, 'fifty-seven thousand three hundred sixty-one'), (13909, 86452, 'eighty-six thousand four hundred fifty-two'), (13910, 77518, 'seventy-seven thousand five hundred eighteen'), (13911, 80973, 'eighty thousand nine hundred seventy-three'), (13912, 61964, 'sixty-one thousand nine hundred sixty-four'), (13913, 3251, 'three thousand two hundred fifty-one'), (13914, 63106, 'sixty-three thousand one hundred six'), (13915, 53350, 'fifty-three thousand three hundred fifty'), (13916, 99154, 'ninety-nine thousand one hundred fifty-four'), (13917, 43555, 'forty-three thousand five hundred fifty-five'), (13918, 96295, 'ninety-six thousand two hundred ninety-five'), (13919, 86465, 'eighty-six thousand four hundred sixty-five'), (13920, 91632, 'ninety-one thousand six hundred thirty-two'), (13921, 91836, 'ninety-one thousand eight hundred thirty-six'), (13922, 71253, 'seventy-one thousand two hundred fifty-three'), (13923, 36697, 'thirty-six thousand six hundred ninety-seven'), (13924, 23856, 'twenty-three thousand eight hundred fifty-six'), (13925, 49197, 'forty-nine thousand one hundred ninety-seven'), (13926, 38104, 'thirty-eight thousand one hundred four'), (13927, 71804, 'seventy-one thousand eight hundred four'), (13928, 15065, 'fifteen thousand sixty-five'), (13929, 12796, 'twelve thousand seven hundred ninety-six'), (13930, 15274, 'fifteen thousand two hundred seventy-four'), (13931, 17301, 'seventeen thousand three hundred one'), (13932, 87202, 'eighty-seven thousand two hundred two'), (13933, 8047, 'eight thousand forty-seven'), (13934, 94508, 'ninety-four thousand five hundred eight'), (13935, 7695, 'seven thousand six hundred ninety-five'), (13936, 57747, 'fifty-seven thousand seven hundred forty-seven'), (13937, 76757, 'seventy-six thousand seven hundred fifty-seven'), (13938, 86236, 'eighty-six thousand two hundred thirty-six'), (13939, 83947, 'eighty-three thousand nine hundred forty-seven'), (13940, 97702, 'ninety-seven thousand seven hundred two'), (13941, 3238, 'three thousand two hundred thirty-eight'), (13942, 27691, 'twenty-seven thousand six hundred ninety-one'), (13943, 34740, 'thirty-four thousand seven hundred forty'), (13944, 2386, 'two thousand three hundred eighty-six'), (13945, 90130, 'ninety thousand one hundred thirty'), (13946, 48987, 'forty-eight thousand nine hundred eighty-seven'), (13947, 98125, 'ninety-eight thousand one hundred twenty-five'), (13948, 78467, 'seventy-eight thousand four hundred sixty-seven'), (13949, 70854, 'seventy thousand eight hundred fifty-four'), (13950, 48218, 'forty-eight thousand two hundred eighteen'), (13951, 5946, 'five thousand nine hundred forty-six'), (13952, 11519, 'eleven thousand five hundred nineteen'), (13953, 60573, 'sixty thousand five hundred seventy-three'), (13954, 35881, 'thirty-five thousand eight hundred eighty-one'), (13955, 47791, 'forty-seven thousand seven hundred ninety-one'), (13956, 99904, 'ninety-nine thousand nine hundred four'), (13957, 36866, 'thirty-six thousand eight hundred sixty-six'), (13958, 89614, 'eighty-nine thousand six hundred fourteen'), (13959, 859, 'eight hundred fifty-nine'), (13960, 62675, 'sixty-two thousand six hundred seventy-five'), (13961, 37473, 'thirty-seven thousand four hundred seventy-three'), (13962, 76363, 'seventy-six thousand three hundred sixty-three'), (13963, 46688, 'forty-six thousand six hundred eighty-eight'), (13964, 30725, 'thirty thousand seven hundred twenty-five'), (13965, 23868, 'twenty-three thousand eight hundred sixty-eight'), (13966, 24462, 'twenty-four thousand four hundred sixty-two'), (13967, 76391, 'seventy-six thousand three hundred ninety-one'), (13968, 8677, 'eight thousand six hundred seventy-seven'), (13969, 57181, 'fifty-seven thousand one hundred eighty-one'), (13970, 34929, 'thirty-four thousand nine hundred twenty-nine'), (13971, 31327, 'thirty-one thousand three hundred twenty-seven'), (13972, 87922, 'eighty-seven thousand nine hundred twenty-two'), (13973, 52613, 'fifty-two thousand six hundred thirteen'), (13974, 74791, 'seventy-four thousand seven hundred ninety-one'), (13975, 15088, 'fifteen thousand eighty-eight'), (13976, 50704, 'fifty thousand seven hundred four'), (13977, 36698, 'thirty-six thousand six hundred ninety-eight'), (13978, 79795, 'seventy-nine thousand seven hundred ninety-five'), (13979, 39883, 'thirty-nine thousand eight hundred eighty-three'), (13980, 45815, 'forty-five thousand eight hundred fifteen'), (13981, 96733, 'ninety-six thousand seven hundred thirty-three'), (13982, 77956, 'seventy-seven thousand nine hundred fifty-six'), (13983, 46657, 'forty-six thousand six hundred fifty-seven'), (13984, 96364, 'ninety-six thousand three hundred sixty-four'), (13985, 97613, 'ninety-seven thousand six hundred thirteen'), (13986, 57521, 'fifty-seven thousand five hundred twenty-one'), (13987, 73702, 'seventy-three thousand seven hundred two'), (13988, 21268, 'twenty-one thousand two hundred sixty-eight'), (13989, 91936, 'ninety-one thousand nine hundred thirty-six'), (13990, 35456, 'thirty-five thousand four hundred fifty-six'), (13991, 30104, 'thirty thousand one hundred four'), (13992, 57361, 'fifty-seven thousand three hundred sixty-one'), (13993, 25314, 'twenty-five thousand three hundred fourteen'), (13994, 10812, 'ten thousand eight hundred twelve'), (13995, 78032, 'seventy-eight thousand thirty-two'), (13996, 11893, 'eleven thousand eight hundred ninety-three'), (13997, 94525, 'ninety-four thousand five hundred twenty-five'), (13998, 764, 'seven hundred sixty-four'), (13999, 26473, 'twenty-six thousand four hundred seventy-three'), (14000, 93524, 'ninety-three thousand five hundred twenty-four'), (14001, 48089, 'forty-eight thousand eighty-nine'), (14002, 33084, 'thirty-three thousand eighty-four'), (14003, 70651, 'seventy thousand six hundred fifty-one'), (14004, 44699, 'forty-four thousand six hundred ninety-nine'), (14005, 88393, 'eighty-eight thousand three hundred ninety-three'), (14006, 26194, 'twenty-six thousand one hundred ninety-four'), (14007, 27517, 'twenty-seven thousand five hundred seventeen'), (14008, 22053, 'twenty-two thousand fifty-three'), (14009, 67449, 'sixty-seven thousand four hundred forty-nine'), (14010, 43377, 'forty-three thousand three hundred seventy-seven'), (14011, 30918, 'thirty thousand nine hundred eighteen'), (14012, 81078, 'eighty-one thousand seventy-eight'), (14013, 81845, 'eighty-one thousand eight hundred forty-five'), (14014, 86146, 'eighty-six thousand one hundred forty-six'), (14015, 24503, 'twenty-four thousand five hundred three'), (14016, 85140, 'eighty-five thousand one hundred forty'), (14017, 24264, 'twenty-four thousand two hundred sixty-four'), (14018, 71489, 'seventy-one thousand four hundred eighty-nine'), (14019, 89328, 'eighty-nine thousand three hundred twenty-eight'), (14020, 43416, 'forty-three thousand four hundred sixteen'), (14021, 19290, 'nineteen thousand two hundred ninety'), (14022, 51317, 'fifty-one thousand three hundred seventeen'), (14023, 30745, 'thirty thousand seven hundred forty-five'), (14024, 6893, 'six thousand eight hundred ninety-three'), (14025, 7728, 'seven thousand seven hundred twenty-eight'), (14026, 30853, 'thirty thousand eight hundred fifty-three'), (14027, 56696, 'fifty-six thousand six hundred ninety-six'), (14028, 30697, 'thirty thousand six hundred ninety-seven'), (14029, 85100, 'eighty-five thousand one hundred'), (14030, 81131, 'eighty-one thousand one hundred thirty-one'), (14031, 70351, 'seventy thousand three hundred fifty-one'), (14032, 75388, 'seventy-five thousand three hundred eighty-eight'), (14033, 78371, 'seventy-eight thousand three hundred seventy-one'), (14034, 97449, 'ninety-seven thousand four hundred forty-nine'), (14035, 49630, 'forty-nine thousand six hundred thirty'), (14036, 8596, 'eight thousand five hundred ninety-six'), (14037, 20871, 'twenty thousand eight hundred seventy-one'), (14038, 31609, 'thirty-one thousand six hundred nine'), (14039, 6120, 'six thousand one hundred twenty'), (14040, 67128, 'sixty-seven thousand one hundred twenty-eight'), (14041, 59450, 'fifty-nine thousand four hundred fifty'), (14042, 77594, 'seventy-seven thousand five hundred ninety-four'), (14043, 51131, 'fifty-one thousand one hundred thirty-one'), (14044, 25044, 'twenty-five thousand forty-four'), (14045, 60734, 'sixty thousand seven hundred thirty-four'), (14046, 20548, 'twenty thousand five hundred forty-eight'), (14047, 95306, 'ninety-five thousand three hundred six'), (14048, 1528, 'one thousand five hundred twenty-eight'), (14049, 3190, 'three thousand one hundred ninety'), (14050, 94084, 'ninety-four thousand eighty-four'), (14051, 77125, 'seventy-seven thousand one hundred twenty-five'), (14052, 74287, 'seventy-four thousand two hundred eighty-seven'), (14053, 17486, 'seventeen thousand four hundred eighty-six'), (14054, 7105, 'seven thousand one hundred five'), (14055, 8205, 'eight thousand two hundred five'), (14056, 61936, 'sixty-one thousand nine hundred thirty-six'), (14057, 8605, 'eight thousand six hundred five'), (14058, 38360, 'thirty-eight thousand three hundred sixty'), (14059, 41533, 'forty-one thousand five hundred thirty-three'), (14060, 41766, 'forty-one thousand seven hundred sixty-six'), (14061, 19976, 'nineteen thousand nine hundred seventy-six'), (14062, 42147, 'forty-two thousand one hundred forty-seven'), (14063, 34098, 'thirty-four thousand ninety-eight'), (14064, 9611, 'nine thousand six hundred eleven'), (14065, 6548, 'six thousand five hundred forty-eight'), (14066, 30058, 'thirty thousand fifty-eight'), (14067, 60331, 'sixty thousand three hundred thirty-one'), (14068, 74256, 'seventy-four thousand two hundred fifty-six'), (14069, 19062, 'nineteen thousand sixty-two'), (14070, 1283, 'one thousand two hundred eighty-three'), (14071, 89259, 'eighty-nine thousand two hundred fifty-nine'), (14072, 13353, 'thirteen thousand three hundred fifty-three'), (14073, 32996, 'thirty-two thousand nine hundred ninety-six'), (14074, 89448, 'eighty-nine thousand four hundred forty-eight'), (14075, 28879, 'twenty-eight thousand eight hundred seventy-nine'), (14076, 90619, 'ninety thousand six hundred nineteen'), (14077, 24506, 'twenty-four thousand five hundred six'), (14078, 61589, 'sixty-one thousand five hundred eighty-nine'), (14079, 99359, 'ninety-nine thousand three hundred fifty-nine'), (14080, 93608, 'ninety-three thousand six hundred eight'), (14081, 87138, 'eighty-seven thousand one hundred thirty-eight'), (14082, 46461, 'forty-six thousand four hundred sixty-one'), (14083, 83799, 'eighty-three thousand seven hundred ninety-nine'), (14084, 35463, 'thirty-five thousand four hundred sixty-three'), (14085, 79998, 'seventy-nine thousand nine hundred ninety-eight'), (14086, 22968, 'twenty-two thousand nine hundred sixty-eight'), (14087, 37241, 'thirty-seven thousand two hundred forty-one'), (14088, 28563, 'twenty-eight thousand five hundred sixty-three'), (14089, 39317, 'thirty-nine thousand three hundred seventeen'), (14090, 5442, 'five thousand four hundred forty-two'), (14091, 11532, 'eleven thousand five hundred thirty-two'), (14092, 87055, 'eighty-seven thousand fifty-five'), (14093, 50842, 'fifty thousand eight hundred forty-two'), (14094, 6020, 'six thousand twenty'), (14095, 8566, 'eight thousand five hundred sixty-six'), (14096, 22534, 'twenty-two thousand five hundred thirty-four'), (14097, 61450, 'sixty-one thousand four hundred fifty'), (14098, 11539, 'eleven thousand five hundred thirty-nine'), (14099, 80554, 'eighty thousand five hundred fifty-four'), (14100, 95489, 'ninety-five thousand four hundred eighty-nine'), (14101, 15518, 'fifteen thousand five hundred eighteen'), (14102, 45826, 'forty-five thousand eight hundred twenty-six'), (14103, 22357, 'twenty-two thousand three hundred fifty-seven'), (14104, 37115, 'thirty-seven thousand one hundred fifteen'), (14105, 23129, 'twenty-three thousand one hundred twenty-nine'), (14106, 91289, 'ninety-one thousand two hundred eighty-nine'), (14107, 41531, 'forty-one thousand five hundred thirty-one'), (14108, 32849, 'thirty-two thousand eight hundred forty-nine'), (14109, 57653, 'fifty-seven thousand six hundred fifty-three'), (14110, 512, 'five hundred twelve'), (14111, 91709, 'ninety-one thousand seven hundred nine'), (14112, 56868, 'fifty-six thousand eight hundred sixty-eight'), (14113, 74964, 'seventy-four thousand nine hundred sixty-four'), (14114, 11532, 'eleven thousand five hundred thirty-two'), (14115, 11820, 'eleven thousand eight hundred twenty'), (14116, 7363, 'seven thousand three hundred sixty-three'), (14117, 9014, 'nine thousand fourteen'), (14118, 61128, 'sixty-one thousand one hundred twenty-eight'), (14119, 25673, 'twenty-five thousand six hundred seventy-three'), (14120, 95259, 'ninety-five thousand two hundred fifty-nine'), (14121, 7436, 'seven thousand four hundred thirty-six'), (14122, 76903, 'seventy-six thousand nine hundred three'), (14123, 24080, 'twenty-four thousand eighty'), (14124, 99231, 'ninety-nine thousand two hundred thirty-one'), (14125, 42743, 'forty-two thousand seven hundred forty-three'), (14126, 24811, 'twenty-four thousand eight hundred eleven'), (14127, 76524, 'seventy-six thousand five hundred twenty-four'), (14128, 1170, 'one thousand one hundred seventy'), (14129, 84350, 'eighty-four thousand three hundred fifty'), (14130, 91746, 'ninety-one thousand seven hundred forty-six'), (14131, 61122, 'sixty-one thousand one hundred twenty-two'), (14132, 70522, 'seventy thousand five hundred twenty-two'), (14133, 82880, 'eighty-two thousand eight hundred eighty'), (14134, 27328, 'twenty-seven thousand three hundred twenty-eight'), (14135, 12200, 'twelve thousand two hundred'), (14136, 38289, 'thirty-eight thousand two hundred eighty-nine'), (14137, 98483, 'ninety-eight thousand four hundred eighty-three'), (14138, 968, 'nine hundred sixty-eight'), (14139, 57611, 'fifty-seven thousand six hundred eleven'), (14140, 27068, 'twenty-seven thousand sixty-eight'), (14141, 43525, 'forty-three thousand five hundred twenty-five'), (14142, 56185, 'fifty-six thousand one hundred eighty-five'), (14143, 73749, 'seventy-three thousand seven hundred forty-nine'), (14144, 83889, 'eighty-three thousand eight hundred eighty-nine'), (14145, 4452, 'four thousand four hundred fifty-two'), (14146, 34514, 'thirty-four thousand five hundred fourteen'), (14147, 60337, 'sixty thousand three hundred thirty-seven'), (14148, 20242, 'twenty thousand two hundred forty-two'), (14149, 16080, 'sixteen thousand eighty'), (14150, 93294, 'ninety-three thousand two hundred ninety-four'), (14151, 68110, 'sixty-eight thousand one hundred ten'), (14152, 11205, 'eleven thousand two hundred five'), (14153, 19978, 'nineteen thousand nine hundred seventy-eight'), (14154, 96160, 'ninety-six thousand one hundred sixty'), (14155, 20747, 'twenty thousand seven hundred forty-seven'), (14156, 1801, 'one thousand eight hundred one'), (14157, 87128, 'eighty-seven thousand one hundred twenty-eight'), (14158, 70350, 'seventy thousand three hundred fifty'), (14159, 22719, 'twenty-two thousand seven hundred nineteen'), (14160, 29784, 'twenty-nine thousand seven hundred eighty-four'), (14161, 26890, 'twenty-six thousand eight hundred ninety'), (14162, 43136, 'forty-three thousand one hundred thirty-six'), (14163, 70386, 'seventy thousand three hundred eighty-six'), (14164, 67975, 'sixty-seven thousand nine hundred seventy-five'), (14165, 67604, 'sixty-seven thousand six hundred four'), (14166, 77550, 'seventy-seven thousand five hundred fifty'), (14167, 57899, 'fifty-seven thousand eight hundred ninety-nine'), (14168, 17634, 'seventeen thousand six hundred thirty-four'), (14169, 18196, 'eighteen thousand one hundred ninety-six'), (14170, 81286, 'eighty-one thousand two hundred eighty-six'), (14171, 6009, 'six thousand nine'), (14172, 23234, 'twenty-three thousand two hundred thirty-four'), (14173, 48608, 'forty-eight thousand six hundred eight'), (14174, 36683, 'thirty-six thousand six hundred eighty-three'), (14175, 23910, 'twenty-three thousand nine hundred ten'), (14176, 64193, 'sixty-four thousand one hundred ninety-three'), (14177, 91715, 'ninety-one thousand seven hundred fifteen'), (14178, 11693, 'eleven thousand six hundred ninety-three'), (14179, 93013, 'ninety-three thousand thirteen'), (14180, 35463, 'thirty-five thousand four hundred sixty-three'), (14181, 64911, 'sixty-four thousand nine hundred eleven'), (14182, 55910, 'fifty-five thousand nine hundred ten'), (14183, 40828, 'forty thousand eight hundred twenty-eight'), (14184, 81764, 'eighty-one thousand seven hundred sixty-four'), (14185, 3213, 'three thousand two hundred thirteen'), (14186, 68229, 'sixty-eight thousand two hundred twenty-nine'), (14187, 16544, 'sixteen thousand five hundred forty-four'), (14188, 71522, 'seventy-one thousand five hundred twenty-two'), (14189, 84980, 'eighty-four thousand nine hundred eighty'), (14190, 77805, 'seventy-seven thousand eight hundred five'), (14191, 14741, 'fourteen thousand seven hundred forty-one'), (14192, 10054, 'ten thousand fifty-four'), (14193, 33356, 'thirty-three thousand three hundred fifty-six'), (14194, 65755, 'sixty-five thousand seven hundred fifty-five'), (14195, 34429, 'thirty-four thousand four hundred twenty-nine'), (14196, 30076, 'thirty thousand seventy-six'), (14197, 19415, 'nineteen thousand four hundred fifteen'), (14198, 22449, 'twenty-two thousand four hundred forty-nine'), (14199, 77488, 'seventy-seven thousand four hundred eighty-eight'), (14200, 40212, 'forty thousand two hundred twelve'), (14201, 24713, 'twenty-four thousand seven hundred thirteen'), (14202, 92904, 'ninety-two thousand nine hundred four'), (14203, 56418, 'fifty-six thousand four hundred eighteen'), (14204, 90773, 'ninety thousand seven hundred seventy-three'), (14205, 56940, 'fifty-six thousand nine hundred forty'), (14206, 760, 'seven hundred sixty'), (14207, 83622, 'eighty-three thousand six hundred twenty-two'), (14208, 51504, 'fifty-one thousand five hundred four'), (14209, 91729, 'ninety-one thousand seven hundred twenty-nine'), (14210, 5714, 'five thousand seven hundred fourteen'), (14211, 49926, 'forty-nine thousand nine hundred twenty-six'), (14212, 91641, 'ninety-one thousand six hundred forty-one'), (14213, 84900, 'eighty-four thousand nine hundred'), (14214, 14352, 'fourteen thousand three hundred fifty-two'), (14215, 3609, 'three thousand six hundred nine'), (14216, 84750, 'eighty-four thousand seven hundred fifty'), (14217, 48185, 'forty-eight thousand one hundred eighty-five'), (14218, 6764, 'six thousand seven hundred sixty-four'), (14219, 75816, 'seventy-five thousand eight hundred sixteen'), (14220, 62682, 'sixty-two thousand six hundred eighty-two'), (14221, 80745, 'eighty thousand seven hundred forty-five'), (14222, 7627, 'seven thousand six hundred twenty-seven'), (14223, 60213, 'sixty thousand two hundred thirteen'), (14224, 30625, 'thirty thousand six hundred twenty-five'), (14225, 59323, 'fifty-nine thousand three hundred twenty-three'), (14226, 58273, 'fifty-eight thousand two hundred seventy-three'), (14227, 44194, 'forty-four thousand one hundred ninety-four'), (14228, 27674, 'twenty-seven thousand six hundred seventy-four'), (14229, 80797, 'eighty thousand seven hundred ninety-seven'), (14230, 16078, 'sixteen thousand seventy-eight'), (14231, 96698, 'ninety-six thousand six hundred ninety-eight'), (14232, 62663, 'sixty-two thousand six hundred sixty-three'), (14233, 87183, 'eighty-seven thousand one hundred eighty-three'), (14234, 77227, 'seventy-seven thousand two hundred twenty-seven'), (14235, 2866, 'two thousand eight hundred sixty-six'), (14236, 44393, 'forty-four thousand three hundred ninety-three'), (14237, 82492, 'eighty-two thousand four hundred ninety-two'), (14238, 48620, 'forty-eight thousand six hundred twenty'), (14239, 6027, 'six thousand twenty-seven'), (14240, 72042, 'seventy-two thousand forty-two'), (14241, 56110, 'fifty-six thousand one hundred ten'), (14242, 54009, 'fifty-four thousand nine'), (14243, 72301, 'seventy-two thousand three hundred one'), (14244, 87768, 'eighty-seven thousand seven hundred sixty-eight'), (14245, 45056, 'forty-five thousand fifty-six'), (14246, 24933, 'twenty-four thousand nine hundred thirty-three'), (14247, 980, 'nine hundred eighty'), (14248, 83370, 'eighty-three thousand three hundred seventy'), (14249, 1898, 'one thousand eight hundred ninety-eight'), (14250, 66101, 'sixty-six thousand one hundred one'), (14251, 9898, 'nine thousand eight hundred ninety-eight'), (14252, 47523, 'forty-seven thousand five hundred twenty-three'), (14253, 4472, 'four thousand four hundred seventy-two'), (14254, 64133, 'sixty-four thousand one hundred thirty-three'), (14255, 69064, 'sixty-nine thousand sixty-four'), (14256, 35841, 'thirty-five thousand eight hundred forty-one'), (14257, 16050, 'sixteen thousand fifty'), (14258, 76394, 'seventy-six thousand three hundred ninety-four'), (14259, 207, 'two hundred seven'), (14260, 74962, 'seventy-four thousand nine hundred sixty-two'), (14261, 38036, 'thirty-eight thousand thirty-six'), (14262, 33511, 'thirty-three thousand five hundred eleven'), (14263, 53831, 'fifty-three thousand eight hundred thirty-one'), (14264, 56955, 'fifty-six thousand nine hundred fifty-five'), (14265, 71888, 'seventy-one thousand eight hundred eighty-eight'), (14266, 65549, 'sixty-five thousand five hundred forty-nine'), (14267, 47599, 'forty-seven thousand five hundred ninety-nine'), (14268, 44616, 'forty-four thousand six hundred sixteen'), (14269, 91995, 'ninety-one thousand nine hundred ninety-five'), (14270, 50058, 'fifty thousand fifty-eight'), (14271, 58460, 'fifty-eight thousand four hundred sixty'), (14272, 25941, 'twenty-five thousand nine hundred forty-one'), (14273, 36118, 'thirty-six thousand one hundred eighteen'), (14274, 34262, 'thirty-four thousand two hundred sixty-two'), (14275, 79120, 'seventy-nine thousand one hundred twenty'), (14276, 82177, 'eighty-two thousand one hundred seventy-seven'), (14277, 23589, 'twenty-three thousand five hundred eighty-nine'), (14278, 38250, 'thirty-eight thousand two hundred fifty'), (14279, 46963, 'forty-six thousand nine hundred sixty-three'), (14280, 846, 'eight hundred forty-six'), (14281, 3120, 'three thousand one hundred twenty'), (14282, 69995, 'sixty-nine thousand nine hundred ninety-five'), (14283, 40276, 'forty thousand two hundred seventy-six'), (14284, 9565, 'nine thousand five hundred sixty-five'), (14285, 65011, 'sixty-five thousand eleven'), (14286, 1580, 'one thousand five hundred eighty'), (14287, 747, 'seven hundred forty-seven'), (14288, 28151, 'twenty-eight thousand one hundred fifty-one'), (14289, 27755, 'twenty-seven thousand seven hundred fifty-five'), (14290, 78382, 'seventy-eight thousand three hundred eighty-two'), (14291, 59977, 'fifty-nine thousand nine hundred seventy-seven'), (14292, 74822, 'seventy-four thousand eight hundred twenty-two'), (14293, 57591, 'fifty-seven thousand five hundred ninety-one'), (14294, 56999, 'fifty-six thousand nine hundred ninety-nine'), (14295, 65638, 'sixty-five thousand six hundred thirty-eight'), (14296, 96840, 'ninety-six thousand eight hundred forty'), (14297, 33353, 'thirty-three thousand three hundred fifty-three'), (14298, 96614, 'ninety-six thousand six hundred fourteen'), (14299, 62892, 'sixty-two thousand eight hundred ninety-two'), (14300, 67802, 'sixty-seven thousand eight hundred two'), (14301, 46035, 'forty-six thousand thirty-five'), (14302, 43939, 'forty-three thousand nine hundred thirty-nine'), (14303, 25508, 'twenty-five thousand five hundred eight'), (14304, 97792, 'ninety-seven thousand seven hundred ninety-two'), (14305, 43848, 'forty-three thousand eight hundred forty-eight'), (14306, 56644, 'fifty-six thousand six hundred forty-four'), (14307, 28126, 'twenty-eight thousand one hundred twenty-six'), (14308, 99115, 'ninety-nine thousand one hundred fifteen'), (14309, 42923, 'forty-two thousand nine hundred twenty-three'), (14310, 18702, 'eighteen thousand seven hundred two'), (14311, 67108, 'sixty-seven thousand one hundred eight'), (14312, 50270, 'fifty thousand two hundred seventy'), (14313, 47478, 'forty-seven thousand four hundred seventy-eight'), (14314, 74111, 'seventy-four thousand one hundred eleven'), (14315, 68941, 'sixty-eight thousand nine hundred forty-one'), (14316, 16402, 'sixteen thousand four hundred two'), (14317, 46934, 'forty-six thousand nine hundred thirty-four'), (14318, 83113, 'eighty-three thousand one hundred thirteen'), (14319, 74555, 'seventy-four thousand five hundred fifty-five'), (14320, 30249, 'thirty thousand two hundred forty-nine'), (14321, 6033, 'six thousand thirty-three'), (14322, 10896, 'ten thousand eight hundred ninety-six'), (14323, 44308, 'forty-four thousand three hundred eight'), (14324, 44712, 'forty-four thousand seven hundred twelve'), (14325, 60887, 'sixty thousand eight hundred eighty-seven'), (14326, 90686, 'ninety thousand six hundred eighty-six'), (14327, 86099, 'eighty-six thousand ninety-nine'), (14328, 16600, 'sixteen thousand six hundred'), (14329, 79994, 'seventy-nine thousand nine hundred ninety-four'), (14330, 6058, 'six thousand fifty-eight'), (14331, 55816, 'fifty-five thousand eight hundred sixteen'), (14332, 28277, 'twenty-eight thousand two hundred seventy-seven'), (14333, 93195, 'ninety-three thousand one hundred ninety-five'), (14334, 41347, 'forty-one thousand three hundred forty-seven'), (14335, 73114, 'seventy-three thousand one hundred fourteen'), (14336, 73852, 'seventy-three thousand eight hundred fifty-two'), (14337, 14877, 'fourteen thousand eight hundred seventy-seven'), (14338, 94235, 'ninety-four thousand two hundred thirty-five'), (14339, 63341, 'sixty-three thousand three hundred forty-one'), (14340, 47527, 'forty-seven thousand five hundred twenty-seven'), (14341, 53322, 'fifty-three thousand three hundred twenty-two'), (14342, 31321, 'thirty-one thousand three hundred twenty-one'), (14343, 76309, 'seventy-six thousand three hundred nine'), (14344, 30000, 'thirty thousand'), (14345, 30073, 'thirty thousand seventy-three'), (14346, 64561, 'sixty-four thousand five hundred sixty-one'), (14347, 12210, 'twelve thousand two hundred ten'), (14348, 16779, 'sixteen thousand seven hundred seventy-nine'), (14349, 60070, 'sixty thousand seventy'), (14350, 74369, 'seventy-four thousand three hundred sixty-nine'), (14351, 18823, 'eighteen thousand eight hundred twenty-three'), (14352, 21267, 'twenty-one thousand two hundred sixty-seven'), (14353, 20966, 'twenty thousand nine hundred sixty-six'), (14354, 68562, 'sixty-eight thousand five hundred sixty-two'), (14355, 1375, 'one thousand three hundred seventy-five'), (14356, 10454, 'ten thousand four hundred fifty-four'), (14357, 65954, 'sixty-five thousand nine hundred fifty-four'), (14358, 55940, 'fifty-five thousand nine hundred forty'), (14359, 77322, 'seventy-seven thousand three hundred twenty-two'), (14360, 86742, 'eighty-six thousand seven hundred forty-two'), (14361, 70675, 'seventy thousand six hundred seventy-five'), (14362, 92018, 'ninety-two thousand eighteen'), (14363, 86063, 'eighty-six thousand sixty-three'), (14364, 97294, 'ninety-seven thousand two hundred ninety-four'), (14365, 23091, 'twenty-three thousand ninety-one'), (14366, 44814, 'forty-four thousand eight hundred fourteen'), (14367, 93664, 'ninety-three thousand six hundred sixty-four'), (14368, 77366, 'seventy-seven thousand three hundred sixty-six'), (14369, 4818, 'four thousand eight hundred eighteen'), (14370, 29353, 'twenty-nine thousand three hundred fifty-three'), (14371, 6908, 'six thousand nine hundred eight'), (14372, 23857, 'twenty-three thousand eight hundred fifty-seven'), (14373, 73945, 'seventy-three thousand nine hundred forty-five'), (14374, 95923, 'ninety-five thousand nine hundred twenty-three'), (14375, 88534, 'eighty-eight thousand five hundred thirty-four'), (14376, 1044, 'one thousand forty-four'), (14377, 33068, 'thirty-three thousand sixty-eight'), (14378, 96724, 'ninety-six thousand seven hundred twenty-four'), (14379, 21204, 'twenty-one thousand two hundred four'), (14380, 8359, 'eight thousand three hundred fifty-nine'), (14381, 29818, 'twenty-nine thousand eight hundred eighteen'), (14382, 81248, 'eighty-one thousand two hundred forty-eight'), (14383, 79900, 'seventy-nine thousand nine hundred'), (14384, 21224, 'twenty-one thousand two hundred twenty-four'), (14385, 29076, 'twenty-nine thousand seventy-six'), (14386, 37818, 'thirty-seven thousand eight hundred eighteen'), (14387, 41380, 'forty-one thousand three hundred eighty'), (14388, 6662, 'six thousand six hundred sixty-two'), (14389, 85533, 'eighty-five thousand five hundred thirty-three'), (14390, 52747, 'fifty-two thousand seven hundred forty-seven'), (14391, 99424, 'ninety-nine thousand four hundred twenty-four'), (14392, 99569, 'ninety-nine thousand five hundred sixty-nine'), (14393, 76915, 'seventy-six thousand nine hundred fifteen'), (14394, 98238, 'ninety-eight thousand two hundred thirty-eight'), (14395, 3643, 'three thousand six hundred forty-three'), (14396, 10580, 'ten thousand five hundred eighty'), (14397, 27369, 'twenty-seven thousand three hundred sixty-nine'), (14398, 19576, 'nineteen thousand five hundred seventy-six'), (14399, 17462, 'seventeen thousand four hundred sixty-two'), (14400, 27190, 'twenty-seven thousand one hundred ninety'), (14401, 57559, 'fifty-seven thousand five hundred fifty-nine'), (14402, 38918, 'thirty-eight thousand nine hundred eighteen'), (14403, 18910, 'eighteen thousand nine hundred ten'), (14404, 58855, 'fifty-eight thousand eight hundred fifty-five'), (14405, 51161, 'fifty-one thousand one hundred sixty-one'), (14406, 45122, 'forty-five thousand one hundred twenty-two'), (14407, 25422, 'twenty-five thousand four hundred twenty-two'), (14408, 50018, 'fifty thousand eighteen'), (14409, 88341, 'eighty-eight thousand three hundred forty-one'), (14410, 41047, 'forty-one thousand forty-seven'), (14411, 53684, 'fifty-three thousand six hundred eighty-four'), (14412, 7018, 'seven thousand eighteen'), (14413, 14324, 'fourteen thousand three hundred twenty-four'), (14414, 15849, 'fifteen thousand eight hundred forty-nine'), (14415, 47940, 'forty-seven thousand nine hundred forty'), (14416, 49096, 'forty-nine thousand ninety-six'), (14417, 21937, 'twenty-one thousand nine hundred thirty-seven'), (14418, 90158, 'ninety thousand one hundred fifty-eight'), (14419, 4770, 'four thousand seven hundred seventy'), (14420, 80185, 'eighty thousand one hundred eighty-five'), (14421, 30812, 'thirty thousand eight hundred twelve'), (14422, 88137, 'eighty-eight thousand one hundred thirty-seven'), (14423, 18892, 'eighteen thousand eight hundred ninety-two'), (14424, 31402, 'thirty-one thousand four hundred two'), (14425, 67043, 'sixty-seven thousand forty-three'), (14426, 96734, 'ninety-six thousand seven hundred thirty-four'), (14427, 35005, 'thirty-five thousand five'), (14428, 42841, 'forty-two thousand eight hundred forty-one'), (14429, 15230, 'fifteen thousand two hundred thirty'), (14430, 13797, 'thirteen thousand seven hundred ninety-seven'), (14431, 6752, 'six thousand seven hundred fifty-two'), (14432, 65526, 'sixty-five thousand five hundred twenty-six'), (14433, 39873, 'thirty-nine thousand eight hundred seventy-three'), (14434, 4606, 'four thousand six hundred six'), (14435, 39525, 'thirty-nine thousand five hundred twenty-five'), (14436, 27048, 'twenty-seven thousand forty-eight'), (14437, 25952, 'twenty-five thousand nine hundred fifty-two'), (14438, 33402, 'thirty-three thousand four hundred two'), (14439, 31317, 'thirty-one thousand three hundred seventeen'), (14440, 24397, 'twenty-four thousand three hundred ninety-seven'), (14441, 65864, 'sixty-five thousand eight hundred sixty-four'), (14442, 9789, 'nine thousand seven hundred eighty-nine'), (14443, 58604, 'fifty-eight thousand six hundred four'), (14444, 34957, 'thirty-four thousand nine hundred fifty-seven'), (14445, 70353, 'seventy thousand three hundred fifty-three'), (14446, 97333, 'ninety-seven thousand three hundred thirty-three'), (14447, 43578, 'forty-three thousand five hundred seventy-eight'), (14448, 94679, 'ninety-four thousand six hundred seventy-nine'), (14449, 77060, 'seventy-seven thousand sixty'), (14450, 90869, 'ninety thousand eight hundred sixty-nine'), (14451, 47435, 'forty-seven thousand four hundred thirty-five'), (14452, 37198, 'thirty-seven thousand one hundred ninety-eight'), (14453, 13044, 'thirteen thousand forty-four'), (14454, 51680, 'fifty-one thousand six hundred eighty'), (14455, 28456, 'twenty-eight thousand four hundred fifty-six'), (14456, 46979, 'forty-six thousand nine hundred seventy-nine'), (14457, 268, 'two hundred sixty-eight'), (14458, 59496, 'fifty-nine thousand four hundred ninety-six'), (14459, 47830, 'forty-seven thousand eight hundred thirty'), (14460, 72576, 'seventy-two thousand five hundred seventy-six'), (14461, 89045, 'eighty-nine thousand forty-five'), (14462, 9247, 'nine thousand two hundred forty-seven'), (14463, 45771, 'forty-five thousand seven hundred seventy-one'), (14464, 9818, 'nine thousand eight hundred eighteen'), (14465, 80356, 'eighty thousand three hundred fifty-six'), (14466, 77184, 'seventy-seven thousand one hundred eighty-four'), (14467, 95275, 'ninety-five thousand two hundred seventy-five'), (14468, 14950, 'fourteen thousand nine hundred fifty'), (14469, 25886, 'twenty-five thousand eight hundred eighty-six'), (14470, 76665, 'seventy-six thousand six hundred sixty-five'), (14471, 93690, 'ninety-three thousand six hundred ninety'), (14472, 59731, 'fifty-nine thousand seven hundred thirty-one'), (14473, 84252, 'eighty-four thousand two hundred fifty-two'), (14474, 50778, 'fifty thousand seven hundred seventy-eight'), (14475, 85611, 'eighty-five thousand six hundred eleven'), (14476, 64788, 'sixty-four thousand seven hundred eighty-eight'), (14477, 1364, 'one thousand three hundred sixty-four'), (14478, 95924, 'ninety-five thousand nine hundred twenty-four'), (14479, 77564, 'seventy-seven thousand five hundred sixty-four'), (14480, 16477, 'sixteen thousand four hundred seventy-seven'), (14481, 57138, 'fifty-seven thousand one hundred thirty-eight'), (14482, 5847, 'five thousand eight hundred forty-seven'), (14483, 39001, 'thirty-nine thousand one'), (14484, 2050, 'two thousand fifty'), (14485, 33564, 'thirty-three thousand five hundred sixty-four'), (14486, 4178, 'four thousand one hundred seventy-eight'), (14487, 78178, 'seventy-eight thousand one hundred seventy-eight'), (14488, 49514, 'forty-nine thousand five hundred fourteen'), (14489, 78921, 'seventy-eight thousand nine hundred twenty-one'), (14490, 71208, 'seventy-one thousand two hundred eight'), (14491, 38465, 'thirty-eight thousand four hundred sixty-five'), (14492, 86416, 'eighty-six thousand four hundred sixteen'), (14493, 93193, 'ninety-three thousand one hundred ninety-three'), (14494, 61818, 'sixty-one thousand eight hundred eighteen'), (14495, 5089, 'five thousand eighty-nine'), (14496, 36936, 'thirty-six thousand nine hundred thirty-six'), (14497, 95692, 'ninety-five thousand six hundred ninety-two'), (14498, 33382, 'thirty-three thousand three hundred eighty-two'), (14499, 59107, 'fifty-nine thousand one hundred seven'), (14500, 71623, 'seventy-one thousand six hundred twenty-three'), (14501, 69461, 'sixty-nine thousand four hundred sixty-one'), (14502, 7733, 'seven thousand seven hundred thirty-three'), (14503, 73507, 'seventy-three thousand five hundred seven'), (14504, 58103, 'fifty-eight thousand one hundred three'), (14505, 86934, 'eighty-six thousand nine hundred thirty-four'), (14506, 75588, 'seventy-five thousand five hundred eighty-eight'), (14507, 21769, 'twenty-one thousand seven hundred sixty-nine'), (14508, 31140, 'thirty-one thousand one hundred forty'), (14509, 19322, 'nineteen thousand three hundred twenty-two'), (14510, 33203, 'thirty-three thousand two hundred three'), (14511, 86313, 'eighty-six thousand three hundred thirteen'), (14512, 49083, 'forty-nine thousand eighty-three'), (14513, 76586, 'seventy-six thousand five hundred eighty-six'), (14514, 50635, 'fifty thousand six hundred thirty-five'), (14515, 76844, 'seventy-six thousand eight hundred forty-four'), (14516, 41924, 'forty-one thousand nine hundred twenty-four'), (14517, 5724, 'five thousand seven hundred twenty-four'), (14518, 15808, 'fifteen thousand eight hundred eight'), (14519, 22083, 'twenty-two thousand eighty-three'), (14520, 97749, 'ninety-seven thousand seven hundred forty-nine'), (14521, 33479, 'thirty-three thousand four hundred seventy-nine'), (14522, 23304, 'twenty-three thousand three hundred four'), (14523, 37432, 'thirty-seven thousand four hundred thirty-two'), (14524, 8914, 'eight thousand nine hundred fourteen'), (14525, 98746, 'ninety-eight thousand seven hundred forty-six'), (14526, 84990, 'eighty-four thousand nine hundred ninety'), (14527, 31971, 'thirty-one thousand nine hundred seventy-one'), (14528, 73077, 'seventy-three thousand seventy-seven'), (14529, 23102, 'twenty-three thousand one hundred two'), (14530, 72328, 'seventy-two thousand three hundred twenty-eight'), (14531, 25679, 'twenty-five thousand six hundred seventy-nine'), (14532, 25580, 'twenty-five thousand five hundred eighty'), (14533, 79422, 'seventy-nine thousand four hundred twenty-two'), (14534, 96682, 'ninety-six thousand six hundred eighty-two'), (14535, 44352, 'forty-four thousand three hundred fifty-two'), (14536, 49609, 'forty-nine thousand six hundred nine'), (14537, 16865, 'sixteen thousand eight hundred sixty-five'), (14538, 64205, 'sixty-four thousand two hundred five'), (14539, 56860, 'fifty-six thousand eight hundred sixty'), (14540, 8452, 'eight thousand four hundred fifty-two'), (14541, 75790, 'seventy-five thousand seven hundred ninety'), (14542, 25874, 'twenty-five thousand eight hundred seventy-four'), (14543, 9540, 'nine thousand five hundred forty'), (14544, 56970, 'fifty-six thousand nine hundred seventy'), (14545, 57375, 'fifty-seven thousand three hundred seventy-five'), (14546, 83455, 'eighty-three thousand four hundred fifty-five'), (14547, 52887, 'fifty-two thousand eight hundred eighty-seven'), (14548, 66815, 'sixty-six thousand eight hundred fifteen'), (14549, 52147, 'fifty-two thousand one hundred forty-seven'), (14550, 36436, 'thirty-six thousand four hundred thirty-six'), (14551, 1746, 'one thousand seven hundred forty-six'), (14552, 19615, 'nineteen thousand six hundred fifteen'), (14553, 75751, 'seventy-five thousand seven hundred fifty-one'), (14554, 81234, 'eighty-one thousand two hundred thirty-four'), (14555, 9563, 'nine thousand five hundred sixty-three'), (14556, 89360, 'eighty-nine thousand three hundred sixty'), (14557, 49508, 'forty-nine thousand five hundred eight'), (14558, 35066, 'thirty-five thousand sixty-six'), (14559, 32617, 'thirty-two thousand six hundred seventeen'), (14560, 83483, 'eighty-three thousand four hundred eighty-three'), (14561, 39994, 'thirty-nine thousand nine hundred ninety-four'), (14562, 30187, 'thirty thousand one hundred eighty-seven'), (14563, 27214, 'twenty-seven thousand two hundred fourteen'), (14564, 92335, 'ninety-two thousand three hundred thirty-five'), (14565, 22552, 'twenty-two thousand five hundred fifty-two'), (14566, 30410, 'thirty thousand four hundred ten'), (14567, 37347, 'thirty-seven thousand three hundred forty-seven'), (14568, 54313, 'fifty-four thousand three hundred thirteen'), (14569, 97665, 'ninety-seven thousand six hundred sixty-five'), (14570, 16804, 'sixteen thousand eight hundred four'), (14571, 23093, 'twenty-three thousand ninety-three'), (14572, 61173, 'sixty-one thousand one hundred seventy-three'), (14573, 44, 'forty-four'), (14574, 47884, 'forty-seven thousand eight hundred eighty-four'), (14575, 5983, 'five thousand nine hundred eighty-three'), (14576, 92504, 'ninety-two thousand five hundred four'), (14577, 10497, 'ten thousand four hundred ninety-seven'), (14578, 85725, 'eighty-five thousand seven hundred twenty-five'), (14579, 49351, 'forty-nine thousand three hundred fifty-one'), (14580, 39541, 'thirty-nine thousand five hundred forty-one'), (14581, 39732, 'thirty-nine thousand seven hundred thirty-two'), (14582, 69622, 'sixty-nine thousand six hundred twenty-two'), (14583, 81213, 'eighty-one thousand two hundred thirteen'), (14584, 30193, 'thirty thousand one hundred ninety-three'), (14585, 94533, 'ninety-four thousand five hundred thirty-three'), (14586, 78540, 'seventy-eight thousand five hundred forty'), (14587, 12224, 'twelve thousand two hundred twenty-four'), (14588, 79454, 'seventy-nine thousand four hundred fifty-four'), (14589, 19749, 'nineteen thousand seven hundred forty-nine'), (14590, 75920, 'seventy-five thousand nine hundred twenty'), (14591, 77552, 'seventy-seven thousand five hundred fifty-two'), (14592, 28470, 'twenty-eight thousand four hundred seventy'), (14593, 23457, 'twenty-three thousand four hundred fifty-seven'), (14594, 89400, 'eighty-nine thousand four hundred'), (14595, 41108, 'forty-one thousand one hundred eight'), (14596, 67525, 'sixty-seven thousand five hundred twenty-five'), (14597, 99322, 'ninety-nine thousand three hundred twenty-two'), (14598, 76627, 'seventy-six thousand six hundred twenty-seven'), (14599, 47635, 'forty-seven thousand six hundred thirty-five'), (14600, 2882, 'two thousand eight hundred eighty-two'), (14601, 84683, 'eighty-four thousand six hundred eighty-three'), (14602, 554, 'five hundred fifty-four'), (14603, 62019, 'sixty-two thousand nineteen'), (14604, 45721, 'forty-five thousand seven hundred twenty-one'), (14605, 4448, 'four thousand four hundred forty-eight'), (14606, 28686, 'twenty-eight thousand six hundred eighty-six'), (14607, 3705, 'three thousand seven hundred five'), (14608, 18731, 'eighteen thousand seven hundred thirty-one'), (14609, 84238, 'eighty-four thousand two hundred thirty-eight'), (14610, 20284, 'twenty thousand two hundred eighty-four'), (14611, 71682, 'seventy-one thousand six hundred eighty-two'), (14612, 47259, 'forty-seven thousand two hundred fifty-nine'), (14613, 30209, 'thirty thousand two hundred nine'), (14614, 30489, 'thirty thousand four hundred eighty-nine'), (14615, 15266, 'fifteen thousand two hundred sixty-six'), (14616, 49968, 'forty-nine thousand nine hundred sixty-eight'), (14617, 64851, 'sixty-four thousand eight hundred fifty-one'), (14618, 92183, 'ninety-two thousand one hundred eighty-three'), (14619, 84467, 'eighty-four thousand four hundred sixty-seven'), (14620, 45437, 'forty-five thousand four hundred thirty-seven'), (14621, 68933, 'sixty-eight thousand nine hundred thirty-three'), (14622, 6125, 'six thousand one hundred twenty-five'), (14623, 10108, 'ten thousand one hundred eight'), (14624, 33129, 'thirty-three thousand one hundred twenty-nine'), (14625, 67935, 'sixty-seven thousand nine hundred thirty-five'), (14626, 92622, 'ninety-two thousand six hundred twenty-two'), (14627, 48124, 'forty-eight thousand one hundred twenty-four'), (14628, 9437, 'nine thousand four hundred thirty-seven'), (14629, 52731, 'fifty-two thousand seven hundred thirty-one'), (14630, 72782, 'seventy-two thousand seven hundred eighty-two'), (14631, 85991, 'eighty-five thousand nine hundred ninety-one'), (14632, 34199, 'thirty-four thousand one hundred ninety-nine'), (14633, 19327, 'nineteen thousand three hundred twenty-seven'), (14634, 29821, 'twenty-nine thousand eight hundred twenty-one'), (14635, 22018, 'twenty-two thousand eighteen'), (14636, 95469, 'ninety-five thousand four hundred sixty-nine'), (14637, 35270, 'thirty-five thousand two hundred seventy'), (14638, 21753, 'twenty-one thousand seven hundred fifty-three'), (14639, 41787, 'forty-one thousand seven hundred eighty-seven'), (14640, 80088, 'eighty thousand eighty-eight'), (14641, 18458, 'eighteen thousand four hundred fifty-eight'), (14642, 78593, 'seventy-eight thousand five hundred ninety-three'), (14643, 37960, 'thirty-seven thousand nine hundred sixty'), (14644, 79870, 'seventy-nine thousand eight hundred seventy'), (14645, 84724, 'eighty-four thousand seven hundred twenty-four'), (14646, 31792, 'thirty-one thousand seven hundred ninety-two'), (14647, 59671, 'fifty-nine thousand six hundred seventy-one'), (14648, 6769, 'six thousand seven hundred sixty-nine'), (14649, 89178, 'eighty-nine thousand one hundred seventy-eight'), (14650, 6896, 'six thousand eight hundred ninety-six'), (14651, 16672, 'sixteen thousand six hundred seventy-two'), (14652, 43227, 'forty-three thousand two hundred twenty-seven'), (14653, 61393, 'sixty-one thousand three hundred ninety-three'), (14654, 15848, 'fifteen thousand eight hundred forty-eight'), (14655, 15662, 'fifteen thousand six hundred sixty-two'), (14656, 15993, 'fifteen thousand nine hundred ninety-three'), (14657, 35739, 'thirty-five thousand seven hundred thirty-nine'), (14658, 41226, 'forty-one thousand two hundred twenty-six'), (14659, 85900, 'eighty-five thousand nine hundred'), (14660, 87213, 'eighty-seven thousand two hundred thirteen'), (14661, 41971, 'forty-one thousand nine hundred seventy-one'), (14662, 98755, 'ninety-eight thousand seven hundred fifty-five'), (14663, 87227, 'eighty-seven thousand two hundred twenty-seven'), (14664, 38837, 'thirty-eight thousand eight hundred thirty-seven'), (14665, 9866, 'nine thousand eight hundred sixty-six'), (14666, 18765, 'eighteen thousand seven hundred sixty-five'), (14667, 37507, 'thirty-seven thousand five hundred seven'), (14668, 93594, 'ninety-three thousand five hundred ninety-four'), (14669, 71161, 'seventy-one thousand one hundred sixty-one'), (14670, 13162, 'thirteen thousand one hundred sixty-two'), (14671, 30257, 'thirty thousand two hundred fifty-seven'), (14672, 72955, 'seventy-two thousand nine hundred fifty-five'), (14673, 24431, 'twenty-four thousand four hundred thirty-one'), (14674, 92187, 'ninety-two thousand one hundred eighty-seven'), (14675, 71340, 'seventy-one thousand three hundred forty'), (14676, 91891, 'ninety-one thousand eight hundred ninety-one'), (14677, 46095, 'forty-six thousand ninety-five'), (14678, 51437, 'fifty-one thousand four hundred thirty-seven'), (14679, 57660, 'fifty-seven thousand six hundred sixty'), (14680, 79428, 'seventy-nine thousand four hundred twenty-eight'), (14681, 32269, 'thirty-two thousand two hundred sixty-nine'), (14682, 83066, 'eighty-three thousand sixty-six'), (14683, 4752, 'four thousand seven hundred fifty-two'), (14684, 50841, 'fifty thousand eight hundred forty-one'), (14685, 83277, 'eighty-three thousand two hundred seventy-seven'), (14686, 80797, 'eighty thousand seven hundred ninety-seven'), (14687, 24346, 'twenty-four thousand three hundred forty-six'), (14688, 55514, 'fifty-five thousand five hundred fourteen'), (14689, 75013, 'seventy-five thousand thirteen'), (14690, 97262, 'ninety-seven thousand two hundred sixty-two'), (14691, 22236, 'twenty-two thousand two hundred thirty-six'), (14692, 97617, 'ninety-seven thousand six hundred seventeen'), (14693, 63703, 'sixty-three thousand seven hundred three'), (14694, 42773, 'forty-two thousand seven hundred seventy-three'), (14695, 69803, 'sixty-nine thousand eight hundred three'), (14696, 87220, 'eighty-seven thousand two hundred twenty'), (14697, 38313, 'thirty-eight thousand three hundred thirteen'), (14698, 39602, 'thirty-nine thousand six hundred two'), (14699, 91627, 'ninety-one thousand six hundred twenty-seven'), (14700, 94788, 'ninety-four thousand seven hundred eighty-eight'), (14701, 94296, 'ninety-four thousand two hundred ninety-six'), (14702, 90119, 'ninety thousand one hundred nineteen'), (14703, 59321, 'fifty-nine thousand three hundred twenty-one'), (14704, 40631, 'forty thousand six hundred thirty-one'), (14705, 11223, 'eleven thousand two hundred twenty-three'), (14706, 96046, 'ninety-six thousand forty-six'), (14707, 45279, 'forty-five thousand two hundred seventy-nine'), (14708, 80973, 'eighty thousand nine hundred seventy-three'), (14709, 33518, 'thirty-three thousand five hundred eighteen'), (14710, 44180, 'forty-four thousand one hundred eighty'), (14711, 22497, 'twenty-two thousand four hundred ninety-seven'), (14712, 90451, 'ninety thousand four hundred fifty-one'), (14713, 43890, 'forty-three thousand eight hundred ninety'), (14714, 54182, 'fifty-four thousand one hundred eighty-two'), (14715, 5065, 'five thousand sixty-five'), (14716, 16813, 'sixteen thousand eight hundred thirteen'), (14717, 48067, 'forty-eight thousand sixty-seven'), (14718, 3549, 'three thousand five hundred forty-nine'), (14719, 4978, 'four thousand nine hundred seventy-eight'), (14720, 98801, 'ninety-eight thousand eight hundred one'), (14721, 8691, 'eight thousand six hundred ninety-one'), (14722, 28395, 'twenty-eight thousand three hundred ninety-five'), (14723, 3896, 'three thousand eight hundred ninety-six'), (14724, 8632, 'eight thousand six hundred thirty-two'), (14725, 23899, 'twenty-three thousand eight hundred ninety-nine'), (14726, 41455, 'forty-one thousand four hundred fifty-five'), (14727, 61002, 'sixty-one thousand two'), (14728, 52544, 'fifty-two thousand five hundred forty-four'), (14729, 35834, 'thirty-five thousand eight hundred thirty-four'), (14730, 17708, 'seventeen thousand seven hundred eight'), (14731, 25189, 'twenty-five thousand one hundred eighty-nine'), (14732, 60534, 'sixty thousand five hundred thirty-four'), (14733, 62842, 'sixty-two thousand eight hundred forty-two'), (14734, 41457, 'forty-one thousand four hundred fifty-seven'), (14735, 88861, 'eighty-eight thousand eight hundred sixty-one'), (14736, 44132, 'forty-four thousand one hundred thirty-two'), (14737, 71118, 'seventy-one thousand one hundred eighteen'), (14738, 57340, 'fifty-seven thousand three hundred forty'), (14739, 57778, 'fifty-seven thousand seven hundred seventy-eight'), (14740, 51943, 'fifty-one thousand nine hundred forty-three'), (14741, 27593, 'twenty-seven thousand five hundred ninety-three'), (14742, 53238, 'fifty-three thousand two hundred thirty-eight'), (14743, 74640, 'seventy-four thousand six hundred forty'), (14744, 50657, 'fifty thousand six hundred fifty-seven'), (14745, 66555, 'sixty-six thousand five hundred fifty-five'), (14746, 22670, 'twenty-two thousand six hundred seventy'), (14747, 29122, 'twenty-nine thousand one hundred twenty-two'), (14748, 31386, 'thirty-one thousand three hundred eighty-six'), (14749, 19318, 'nineteen thousand three hundred eighteen'), (14750, 43989, 'forty-three thousand nine hundred eighty-nine'), (14751, 70279, 'seventy thousand two hundred seventy-nine'), (14752, 128, 'one hundred twenty-eight'), (14753, 93486, 'ninety-three thousand four hundred eighty-six'), (14754, 48970, 'forty-eight thousand nine hundred seventy'), (14755, 60722, 'sixty thousand seven hundred twenty-two'), (14756, 68139, 'sixty-eight thousand one hundred thirty-nine'), (14757, 52036, 'fifty-two thousand thirty-six'), (14758, 24053, 'twenty-four thousand fifty-three'), (14759, 44905, 'forty-four thousand nine hundred five'), (14760, 66280, 'sixty-six thousand two hundred eighty'), (14761, 55151, 'fifty-five thousand one hundred fifty-one'), (14762, 41343, 'forty-one thousand three hundred forty-three'), (14763, 72538, 'seventy-two thousand five hundred thirty-eight'), (14764, 44348, 'forty-four thousand three hundred forty-eight'), (14765, 79547, 'seventy-nine thousand five hundred forty-seven'), (14766, 30808, 'thirty thousand eight hundred eight'), (14767, 27990, 'twenty-seven thousand nine hundred ninety'), (14768, 62192, 'sixty-two thousand one hundred ninety-two'), (14769, 23859, 'twenty-three thousand eight hundred fifty-nine'), (14770, 15552, 'fifteen thousand five hundred fifty-two'), (14771, 55528, 'fifty-five thousand five hundred twenty-eight'), (14772, 85365, 'eighty-five thousand three hundred sixty-five'), (14773, 42672, 'forty-two thousand six hundred seventy-two'), (14774, 25794, 'twenty-five thousand seven hundred ninety-four'), (14775, 49961, 'forty-nine thousand nine hundred sixty-one'), (14776, 27547, 'twenty-seven thousand five hundred forty-seven'), (14777, 86964, 'eighty-six thousand nine hundred sixty-four'), (14778, 49007, 'forty-nine thousand seven'), (14779, 78423, 'seventy-eight thousand four hundred twenty-three'), (14780, 28165, 'twenty-eight thousand one hundred sixty-five'), (14781, 19329, 'nineteen thousand three hundred twenty-nine'), (14782, 10369, 'ten thousand three hundred sixty-nine'), (14783, 66493, 'sixty-six thousand four hundred ninety-three'), (14784, 17724, 'seventeen thousand seven hundred twenty-four'), (14785, 79241, 'seventy-nine thousand two hundred forty-one'), (14786, 80382, 'eighty thousand three hundred eighty-two'), (14787, 25588, 'twenty-five thousand five hundred eighty-eight'), (14788, 59566, 'fifty-nine thousand five hundred sixty-six'), (14789, 70032, 'seventy thousand thirty-two'), (14790, 84071, 'eighty-four thousand seventy-one'), (14791, 17353, 'seventeen thousand three hundred fifty-three'), (14792, 28303, 'twenty-eight thousand three hundred three'), (14793, 75399, 'seventy-five thousand three hundred ninety-nine'), (14794, 37078, 'thirty-seven thousand seventy-eight'), (14795, 75173, 'seventy-five thousand one hundred seventy-three'), (14796, 12391, 'twelve thousand three hundred ninety-one'), (14797, 21236, 'twenty-one thousand two hundred thirty-six'), (14798, 66286, 'sixty-six thousand two hundred eighty-six'), (14799, 25510, 'twenty-five thousand five hundred ten'), (14800, 99877, 'ninety-nine thousand eight hundred seventy-seven'), (14801, 75418, 'seventy-five thousand four hundred eighteen'), (14802, 10969, 'ten thousand nine hundred sixty-nine'), (14803, 8020, 'eight thousand twenty'), (14804, 6590, 'six thousand five hundred ninety'), (14805, 85993, 'eighty-five thousand nine hundred ninety-three'), (14806, 83083, 'eighty-three thousand eighty-three'), (14807, 89009, 'eighty-nine thousand nine'), (14808, 54416, 'fifty-four thousand four hundred sixteen'), (14809, 28310, 'twenty-eight thousand three hundred ten'), (14810, 39845, 'thirty-nine thousand eight hundred forty-five'), (14811, 18317, 'eighteen thousand three hundred seventeen'), (14812, 42100, 'forty-two thousand one hundred'), (14813, 80698, 'eighty thousand six hundred ninety-eight'), (14814, 66337, 'sixty-six thousand three hundred thirty-seven'), (14815, 61059, 'sixty-one thousand fifty-nine'), (14816, 54376, 'fifty-four thousand three hundred seventy-six'), (14817, 48273, 'forty-eight thousand two hundred seventy-three'), (14818, 60827, 'sixty thousand eight hundred twenty-seven'), (14819, 46299, 'forty-six thousand two hundred ninety-nine'), (14820, 84933, 'eighty-four thousand nine hundred thirty-three'), (14821, 28730, 'twenty-eight thousand seven hundred thirty'), (14822, 8060, 'eight thousand sixty'), (14823, 79376, 'seventy-nine thousand three hundred seventy-six'), (14824, 36887, 'thirty-six thousand eight hundred eighty-seven'), (14825, 84973, 'eighty-four thousand nine hundred seventy-three'), (14826, 38684, 'thirty-eight thousand six hundred eighty-four'), (14827, 73188, 'seventy-three thousand one hundred eighty-eight'), (14828, 75108, 'seventy-five thousand one hundred eight'), (14829, 87237, 'eighty-seven thousand two hundred thirty-seven'), (14830, 58693, 'fifty-eight thousand six hundred ninety-three'), (14831, 43371, 'forty-three thousand three hundred seventy-one'), (14832, 2894, 'two thousand eight hundred ninety-four'), (14833, 49611, 'forty-nine thousand six hundred eleven'), (14834, 28226, 'twenty-eight thousand two hundred twenty-six'), (14835, 33043, 'thirty-three thousand forty-three'), (14836, 13541, 'thirteen thousand five hundred forty-one'), (14837, 28871, 'twenty-eight thousand eight hundred seventy-one'), (14838, 20181, 'twenty thousand one hundred eighty-one'), (14839, 83446, 'eighty-three thousand four hundred forty-six'), (14840, 43040, 'forty-three thousand forty'), (14841, 7590, 'seven thousand five hundred ninety'), (14842, 65978, 'sixty-five thousand nine hundred seventy-eight'), (14843, 91188, 'ninety-one thousand one hundred eighty-eight'), (14844, 98032, 'ninety-eight thousand thirty-two'), (14845, 39240, 'thirty-nine thousand two hundred forty'), (14846, 21482, 'twenty-one thousand four hundred eighty-two'), (14847, 88160, 'eighty-eight thousand one hundred sixty'), (14848, 16389, 'sixteen thousand three hundred eighty-nine'), (14849, 24738, 'twenty-four thousand seven hundred thirty-eight'), (14850, 39290, 'thirty-nine thousand two hundred ninety'), (14851, 54251, 'fifty-four thousand two hundred fifty-one'), (14852, 38312, 'thirty-eight thousand three hundred twelve'), (14853, 33579, 'thirty-three thousand five hundred seventy-nine'), (14854, 66306, 'sixty-six thousand three hundred six'), (14855, 83598, 'eighty-three thousand five hundred ninety-eight'), (14856, 18308, 'eighteen thousand three hundred eight'), (14857, 81083, 'eighty-one thousand eighty-three'), (14858, 13799, 'thirteen thousand seven hundred ninety-nine'), (14859, 1751, 'one thousand seven hundred fifty-one'), (14860, 43130, 'forty-three thousand one hundred thirty'), (14861, 14252, 'fourteen thousand two hundred fifty-two'), (14862, 40845, 'forty thousand eight hundred forty-five'), (14863, 137, 'one hundred thirty-seven'), (14864, 38375, 'thirty-eight thousand three hundred seventy-five'), (14865, 93507, 'ninety-three thousand five hundred seven'), (14866, 68768, 'sixty-eight thousand seven hundred sixty-eight'), (14867, 41546, 'forty-one thousand five hundred forty-six'), (14868, 39802, 'thirty-nine thousand eight hundred two'), (14869, 82342, 'eighty-two thousand three hundred forty-two'), (14870, 18338, 'eighteen thousand three hundred thirty-eight'), (14871, 12695, 'twelve thousand six hundred ninety-five'), (14872, 33942, 'thirty-three thousand nine hundred forty-two'), (14873, 55081, 'fifty-five thousand eighty-one'), (14874, 94942, 'ninety-four thousand nine hundred forty-two'), (14875, 89156, 'eighty-nine thousand one hundred fifty-six'), (14876, 51544, 'fifty-one thousand five hundred forty-four'), (14877, 67560, 'sixty-seven thousand five hundred sixty'), (14878, 8687, 'eight thousand six hundred eighty-seven'), (14879, 43582, 'forty-three thousand five hundred eighty-two'), (14880, 20648, 'twenty thousand six hundred forty-eight'), (14881, 18081, 'eighteen thousand eighty-one'), (14882, 65047, 'sixty-five thousand forty-seven'), (14883, 99684, 'ninety-nine thousand six hundred eighty-four'), (14884, 97758, 'ninety-seven thousand seven hundred fifty-eight'), (14885, 4171, 'four thousand one hundred seventy-one'), (14886, 79899, 'seventy-nine thousand eight hundred ninety-nine'), (14887, 6764, 'six thousand seven hundred sixty-four'), (14888, 54068, 'fifty-four thousand sixty-eight'), (14889, 75627, 'seventy-five thousand six hundred twenty-seven'), (14890, 50157, 'fifty thousand one hundred fifty-seven'), (14891, 6893, 'six thousand eight hundred ninety-three'), (14892, 92589, 'ninety-two thousand five hundred eighty-nine'), (14893, 6833, 'six thousand eight hundred thirty-three'), (14894, 37330, 'thirty-seven thousand three hundred thirty'), (14895, 92032, 'ninety-two thousand thirty-two'), (14896, 85158, 'eighty-five thousand one hundred fifty-eight'), (14897, 83664, 'eighty-three thousand six hundred sixty-four'), (14898, 40988, 'forty thousand nine hundred eighty-eight'), (14899, 74366, 'seventy-four thousand three hundred sixty-six'), (14900, 75343, 'seventy-five thousand three hundred forty-three'), (14901, 50935, 'fifty thousand nine hundred thirty-five'), (14902, 85815, 'eighty-five thousand eight hundred fifteen'), (14903, 54240, 'fifty-four thousand two hundred forty'), (14904, 87892, 'eighty-seven thousand eight hundred ninety-two'), (14905, 40957, 'forty thousand nine hundred fifty-seven'), (14906, 82076, 'eighty-two thousand seventy-six'), (14907, 75856, 'seventy-five thousand eight hundred fifty-six'), (14908, 14385, 'fourteen thousand three hundred eighty-five'), (14909, 97969, 'ninety-seven thousand nine hundred sixty-nine'), (14910, 5575, 'five thousand five hundred seventy-five'), (14911, 74463, 'seventy-four thousand four hundred sixty-three'), (14912, 13970, 'thirteen thousand nine hundred seventy'), (14913, 53165, 'fifty-three thousand one hundred sixty-five'), (14914, 8372, 'eight thousand three hundred seventy-two'), (14915, 24049, 'twenty-four thousand forty-nine'), (14916, 56316, 'fifty-six thousand three hundred sixteen'), (14917, 17773, 'seventeen thousand seven hundred seventy-three'), (14918, 66781, 'sixty-six thousand seven hundred eighty-one'), (14919, 44535, 'forty-four thousand five hundred thirty-five'), (14920, 92205, 'ninety-two thousand two hundred five'), (14921, 60210, 'sixty thousand two hundred ten'), (14922, 14668, 'fourteen thousand six hundred sixty-eight'), (14923, 17568, 'seventeen thousand five hundred sixty-eight'), (14924, 12673, 'twelve thousand six hundred seventy-three'), (14925, 72966, 'seventy-two thousand nine hundred sixty-six'), (14926, 94656, 'ninety-four thousand six hundred fifty-six'), (14927, 59749, 'fifty-nine thousand seven hundred forty-nine'), (14928, 78924, 'seventy-eight thousand nine hundred twenty-four'), (14929, 13228, 'thirteen thousand two hundred twenty-eight'), (14930, 51270, 'fifty-one thousand two hundred seventy'), (14931, 88752, 'eighty-eight thousand seven hundred fifty-two'), (14932, 54559, 'fifty-four thousand five hundred fifty-nine'), (14933, 31468, 'thirty-one thousand four hundred sixty-eight'), (14934, 17891, 'seventeen thousand eight hundred ninety-one'), (14935, 53675, 'fifty-three thousand six hundred seventy-five'), (14936, 53525, 'fifty-three thousand five hundred twenty-five'), (14937, 15904, 'fifteen thousand nine hundred four'), (14938, 88317, 'eighty-eight thousand three hundred seventeen'), (14939, 84193, 'eighty-four thousand one hundred ninety-three'), (14940, 92710, 'ninety-two thousand seven hundred ten'), (14941, 12551, 'twelve thousand five hundred fifty-one'), (14942, 64502, 'sixty-four thousand five hundred two'), (14943, 94730, 'ninety-four thousand seven hundred thirty'), (14944, 83729, 'eighty-three thousand seven hundred twenty-nine'), (14945, 57078, 'fifty-seven thousand seventy-eight'), (14946, 11601, 'eleven thousand six hundred one'), (14947, 15255, 'fifteen thousand two hundred fifty-five'), (14948, 41045, 'forty-one thousand forty-five'), (14949, 69736, 'sixty-nine thousand seven hundred thirty-six'), (14950, 87368, 'eighty-seven thousand three hundred sixty-eight'), (14951, 71634, 'seventy-one thousand six hundred thirty-four'), (14952, 22893, 'twenty-two thousand eight hundred ninety-three'), (14953, 67128, 'sixty-seven thousand one hundred twenty-eight'), (14954, 9599, 'nine thousand five hundred ninety-nine'), (14955, 82583, 'eighty-two thousand five hundred eighty-three'), (14956, 74237, 'seventy-four thousand two hundred thirty-seven'), (14957, 80721, 'eighty thousand seven hundred twenty-one'), (14958, 16870, 'sixteen thousand eight hundred seventy'), (14959, 13515, 'thirteen thousand five hundred fifteen'), (14960, 1932, 'one thousand nine hundred thirty-two'), (14961, 47699, 'forty-seven thousand six hundred ninety-nine'), (14962, 44529, 'forty-four thousand five hundred twenty-nine'), (14963, 18489, 'eighteen thousand four hundred eighty-nine'), (14964, 92906, 'ninety-two thousand nine hundred six'), (14965, 10703, 'ten thousand seven hundred three'), (14966, 40741, 'forty thousand seven hundred forty-one'), (14967, 16068, 'sixteen thousand sixty-eight'), (14968, 40236, 'forty thousand two hundred thirty-six'), (14969, 51691, 'fifty-one thousand six hundred ninety-one'), (14970, 17276, 'seventeen thousand two hundred seventy-six'), (14971, 70934, 'seventy thousand nine hundred thirty-four'), (14972, 27180, 'twenty-seven thousand one hundred eighty'), (14973, 13627, 'thirteen thousand six hundred twenty-seven'), (14974, 47417, 'forty-seven thousand four hundred seventeen'), (14975, 76436, 'seventy-six thousand four hundred thirty-six'), (14976, 30513, 'thirty thousand five hundred thirteen'), (14977, 23691, 'twenty-three thousand six hundred ninety-one'), (14978, 88469, 'eighty-eight thousand four hundred sixty-nine'), (14979, 32252, 'thirty-two thousand two hundred fifty-two'), (14980, 42581, 'forty-two thousand five hundred eighty-one'), (14981, 10119, 'ten thousand one hundred nineteen'), (14982, 83578, 'eighty-three thousand five hundred seventy-eight'), (14983, 59346, 'fifty-nine thousand three hundred forty-six'), (14984, 50595, 'fifty thousand five hundred ninety-five'), (14985, 61599, 'sixty-one thousand five hundred ninety-nine'), (14986, 80737, 'eighty thousand seven hundred thirty-seven'), (14987, 3882, 'three thousand eight hundred eighty-two'), (14988, 59778, 'fifty-nine thousand seven hundred seventy-eight'), (14989, 50978, 'fifty thousand nine hundred seventy-eight'), (14990, 10198, 'ten thousand one hundred ninety-eight'), (14991, 17030, 'seventeen thousand thirty'), (14992, 74677, 'seventy-four thousand six hundred seventy-seven'), (14993, 70154, 'seventy thousand one hundred fifty-four'), (14994, 34025, 'thirty-four thousand twenty-five'), (14995, 88399, 'eighty-eight thousand three hundred ninety-nine'), (14996, 13547, 'thirteen thousand five hundred forty-seven'), (14997, 75524, 'seventy-five thousand five hundred twenty-four'), (14998, 54179, 'fifty-four thousand one hundred seventy-nine'), (14999, 55756, 'fifty-five thousand seven hundred fifty-six'), (15000, 43850, 'forty-three thousand eight hundred fifty'), (15001, 22374, 'twenty-two thousand three hundred seventy-four'), (15002, 46758, 'forty-six thousand seven hundred fifty-eight'), (15003, 7508, 'seven thousand five hundred eight'), (15004, 17290, 'seventeen thousand two hundred ninety'), (15005, 76910, 'seventy-six thousand nine hundred ten'), (15006, 50603, 'fifty thousand six hundred three'), (15007, 10383, 'ten thousand three hundred eighty-three'), (15008, 32156, 'thirty-two thousand one hundred fifty-six'), (15009, 68438, 'sixty-eight thousand four hundred thirty-eight'), (15010, 27612, 'twenty-seven thousand six hundred twelve'), (15011, 39143, 'thirty-nine thousand one hundred forty-three'), (15012, 98547, 'ninety-eight thousand five hundred forty-seven'), (15013, 48307, 'forty-eight thousand three hundred seven'), (15014, 17969, 'seventeen thousand nine hundred sixty-nine'), (15015, 76793, 'seventy-six thousand seven hundred ninety-three'), (15016, 93091, 'ninety-three thousand ninety-one'), (15017, 47612, 'forty-seven thousand six hundred twelve'), (15018, 63439, 'sixty-three thousand four hundred thirty-nine'), (15019, 81077, 'eighty-one thousand seventy-seven'), (15020, 62653, 'sixty-two thousand six hundred fifty-three'), (15021, 69399, 'sixty-nine thousand three hundred ninety-nine'), (15022, 12431, 'twelve thousand four hundred thirty-one'), (15023, 39932, 'thirty-nine thousand nine hundred thirty-two'), (15024, 59592, 'fifty-nine thousand five hundred ninety-two'), (15025, 44789, 'forty-four thousand seven hundred eighty-nine'), (15026, 75520, 'seventy-five thousand five hundred twenty'), (15027, 48424, 'forty-eight thousand four hundred twenty-four'), (15028, 30984, 'thirty thousand nine hundred eighty-four'), (15029, 89003, 'eighty-nine thousand three'), (15030, 77770, 'seventy-seven thousand seven hundred seventy'), (15031, 76647, 'seventy-six thousand six hundred forty-seven'), (15032, 82707, 'eighty-two thousand seven hundred seven'), (15033, 44158, 'forty-four thousand one hundred fifty-eight'), (15034, 74164, 'seventy-four thousand one hundred sixty-four'), (15035, 48329, 'forty-eight thousand three hundred twenty-nine'), (15036, 40291, 'forty thousand two hundred ninety-one'), (15037, 19669, 'nineteen thousand six hundred sixty-nine'), (15038, 77524, 'seventy-seven thousand five hundred twenty-four'), (15039, 62050, 'sixty-two thousand fifty'), (15040, 76706, 'seventy-six thousand seven hundred six'), (15041, 25442, 'twenty-five thousand four hundred forty-two'), (15042, 29584, 'twenty-nine thousand five hundred eighty-four'), (15043, 78280, 'seventy-eight thousand two hundred eighty'), (15044, 65004, 'sixty-five thousand four'), (15045, 27679, 'twenty-seven thousand six hundred seventy-nine'), (15046, 13080, 'thirteen thousand eighty'), (15047, 54692, 'fifty-four thousand six hundred ninety-two'), (15048, 36284, 'thirty-six thousand two hundred eighty-four'), (15049, 57009, 'fifty-seven thousand nine'), (15050, 44112, 'forty-four thousand one hundred twelve'), (15051, 13598, 'thirteen thousand five hundred ninety-eight'), (15052, 1432, 'one thousand four hundred thirty-two'), (15053, 16430, 'sixteen thousand four hundred thirty'), (15054, 25656, 'twenty-five thousand six hundred fifty-six'), (15055, 82356, 'eighty-two thousand three hundred fifty-six'), (15056, 18364, 'eighteen thousand three hundred sixty-four'), (15057, 19485, 'nineteen thousand four hundred eighty-five'), (15058, 21280, 'twenty-one thousand two hundred eighty'), (15059, 5880, 'five thousand eight hundred eighty'), (15060, 3051, 'three thousand fifty-one'), (15061, 91744, 'ninety-one thousand seven hundred forty-four'), (15062, 7056, 'seven thousand fifty-six'), (15063, 21495, 'twenty-one thousand four hundred ninety-five'), (15064, 18694, 'eighteen thousand six hundred ninety-four'), (15065, 54635, 'fifty-four thousand six hundred thirty-five'), (15066, 91735, 'ninety-one thousand seven hundred thirty-five'), (15067, 65049, 'sixty-five thousand forty-nine'), (15068, 4716, 'four thousand seven hundred sixteen'), (15069, 90635, 'ninety thousand six hundred thirty-five'), (15070, 60723, 'sixty thousand seven hundred twenty-three'), (15071, 99959, 'ninety-nine thousand nine hundred fifty-nine'), (15072, 27602, 'twenty-seven thousand six hundred two'), (15073, 38150, 'thirty-eight thousand one hundred fifty'), (15074, 27266, 'twenty-seven thousand two hundred sixty-six'), (15075, 5634, 'five thousand six hundred thirty-four'), (15076, 40735, 'forty thousand seven hundred thirty-five'), (15077, 35728, 'thirty-five thousand seven hundred twenty-eight'), (15078, 88799, 'eighty-eight thousand seven hundred ninety-nine'), (15079, 76820, 'seventy-six thousand eight hundred twenty'), (15080, 22403, 'twenty-two thousand four hundred three'), (15081, 77299, 'seventy-seven thousand two hundred ninety-nine'), (15082, 32372, 'thirty-two thousand three hundred seventy-two'), (15083, 32383, 'thirty-two thousand three hundred eighty-three'), (15084, 59041, 'fifty-nine thousand forty-one'), (15085, 44132, 'forty-four thousand one hundred thirty-two'), (15086, 5942, 'five thousand nine hundred forty-two'), (15087, 9132, 'nine thousand one hundred thirty-two'), (15088, 60139, 'sixty thousand one hundred thirty-nine'), (15089, 60443, 'sixty thousand four hundred forty-three'), (15090, 82142, 'eighty-two thousand one hundred forty-two'), (15091, 42971, 'forty-two thousand nine hundred seventy-one'), (15092, 79414, 'seventy-nine thousand four hundred fourteen'), (15093, 37209, 'thirty-seven thousand two hundred nine'), (15094, 98057, 'ninety-eight thousand fifty-seven'), (15095, 17434, 'seventeen thousand four hundred thirty-four'), (15096, 75387, 'seventy-five thousand three hundred eighty-seven'), (15097, 35237, 'thirty-five thousand two hundred thirty-seven'), (15098, 49659, 'forty-nine thousand six hundred fifty-nine'), (15099, 86761, 'eighty-six thousand seven hundred sixty-one'), (15100, 46207, 'forty-six thousand two hundred seven'), (15101, 39626, 'thirty-nine thousand six hundred twenty-six'), (15102, 87094, 'eighty-seven thousand ninety-four'), (15103, 98995, 'ninety-eight thousand nine hundred ninety-five'), (15104, 32231, 'thirty-two thousand two hundred thirty-one'), (15105, 51801, 'fifty-one thousand eight hundred one'), (15106, 51335, 'fifty-one thousand three hundred thirty-five'), (15107, 56, 'fifty-six'), (15108, 52259, 'fifty-two thousand two hundred fifty-nine'), (15109, 49545, 'forty-nine thousand five hundred forty-five'), (15110, 82724, 'eighty-two thousand seven hundred twenty-four'), (15111, 16479, 'sixteen thousand four hundred seventy-nine'), (15112, 84442, 'eighty-four thousand four hundred forty-two'), (15113, 95210, 'ninety-five thousand two hundred ten'), (15114, 3556, 'three thousand five hundred fifty-six'), (15115, 78560, 'seventy-eight thousand five hundred sixty'), (15116, 69718, 'sixty-nine thousand seven hundred eighteen'), (15117, 88444, 'eighty-eight thousand four hundred forty-four'), (15118, 43758, 'forty-three thousand seven hundred fifty-eight'), (15119, 56154, 'fifty-six thousand one hundred fifty-four'), (15120, 69000, 'sixty-nine thousand'), (15121, 75221, 'seventy-five thousand two hundred twenty-one'), (15122, 66822, 'sixty-six thousand eight hundred twenty-two'), (15123, 66617, 'sixty-six thousand six hundred seventeen'), (15124, 68022, 'sixty-eight thousand twenty-two'), (15125, 85016, 'eighty-five thousand sixteen'), (15126, 45801, 'forty-five thousand eight hundred one'), (15127, 95672, 'ninety-five thousand six hundred seventy-two'), (15128, 96871, 'ninety-six thousand eight hundred seventy-one'), (15129, 87468, 'eighty-seven thousand four hundred sixty-eight'), (15130, 53152, 'fifty-three thousand one hundred fifty-two'), (15131, 95677, 'ninety-five thousand six hundred seventy-seven'), (15132, 63568, 'sixty-three thousand five hundred sixty-eight'), (15133, 87628, 'eighty-seven thousand six hundred twenty-eight'), (15134, 13785, 'thirteen thousand seven hundred eighty-five'), (15135, 15039, 'fifteen thousand thirty-nine'), (15136, 77330, 'seventy-seven thousand three hundred thirty'), (15137, 42267, 'forty-two thousand two hundred sixty-seven'), (15138, 97874, 'ninety-seven thousand eight hundred seventy-four'), (15139, 51193, 'fifty-one thousand one hundred ninety-three'), (15140, 73062, 'seventy-three thousand sixty-two'), (15141, 98436, 'ninety-eight thousand four hundred thirty-six'), (15142, 82620, 'eighty-two thousand six hundred twenty'), (15143, 36742, 'thirty-six thousand seven hundred forty-two'), (15144, 60906, 'sixty thousand nine hundred six'), (15145, 39809, 'thirty-nine thousand eight hundred nine'), (15146, 69883, 'sixty-nine thousand eight hundred eighty-three'), (15147, 15032, 'fifteen thousand thirty-two'), (15148, 63924, 'sixty-three thousand nine hundred twenty-four'), (15149, 13744, 'thirteen thousand seven hundred forty-four'), (15150, 949, 'nine hundred forty-nine'), (15151, 60203, 'sixty thousand two hundred three'), (15152, 91944, 'ninety-one thousand nine hundred forty-four'), (15153, 28432, 'twenty-eight thousand four hundred thirty-two'), (15154, 29038, 'twenty-nine thousand thirty-eight'), (15155, 66625, 'sixty-six thousand six hundred twenty-five'), (15156, 99063, 'ninety-nine thousand sixty-three'), (15157, 8946, 'eight thousand nine hundred forty-six'), (15158, 51651, 'fifty-one thousand six hundred fifty-one'), (15159, 34876, 'thirty-four thousand eight hundred seventy-six'), (15160, 88950, 'eighty-eight thousand nine hundred fifty'), (15161, 90025, 'ninety thousand twenty-five'), (15162, 82170, 'eighty-two thousand one hundred seventy'), (15163, 19233, 'nineteen thousand two hundred thirty-three'), (15164, 2705, 'two thousand seven hundred five'), (15165, 47370, 'forty-seven thousand three hundred seventy'), (15166, 97939, 'ninety-seven thousand nine hundred thirty-nine'), (15167, 80568, 'eighty thousand five hundred sixty-eight'), (15168, 53886, 'fifty-three thousand eight hundred eighty-six'), (15169, 80045, 'eighty thousand forty-five'), (15170, 90212, 'ninety thousand two hundred twelve'), (15171, 91703, 'ninety-one thousand seven hundred three'), (15172, 43816, 'forty-three thousand eight hundred sixteen'), (15173, 16798, 'sixteen thousand seven hundred ninety-eight'), (15174, 35487, 'thirty-five thousand four hundred eighty-seven'), (15175, 16395, 'sixteen thousand three hundred ninety-five'), (15176, 37818, 'thirty-seven thousand eight hundred eighteen'), (15177, 39963, 'thirty-nine thousand nine hundred sixty-three'), (15178, 138, 'one hundred thirty-eight'), (15179, 8295, 'eight thousand two hundred ninety-five'), (15180, 54714, 'fifty-four thousand seven hundred fourteen'), (15181, 58020, 'fifty-eight thousand twenty'), (15182, 49458, 'forty-nine thousand four hundred fifty-eight'), (15183, 9303, 'nine thousand three hundred three'), (15184, 4736, 'four thousand seven hundred thirty-six'), (15185, 11424, 'eleven thousand four hundred twenty-four'), (15186, 93132, 'ninety-three thousand one hundred thirty-two'), (15187, 23626, 'twenty-three thousand six hundred twenty-six'), (15188, 10794, 'ten thousand seven hundred ninety-four'), (15189, 6668, 'six thousand six hundred sixty-eight'), (15190, 8121, 'eight thousand one hundred twenty-one'), (15191, 32573, 'thirty-two thousand five hundred seventy-three'), (15192, 34386, 'thirty-four thousand three hundred eighty-six'), (15193, 33288, 'thirty-three thousand two hundred eighty-eight'), (15194, 4142, 'four thousand one hundred forty-two'), (15195, 39571, 'thirty-nine thousand five hundred seventy-one'), (15196, 66014, 'sixty-six thousand fourteen'), (15197, 73969, 'seventy-three thousand nine hundred sixty-nine'), (15198, 69570, 'sixty-nine thousand five hundred seventy'), (15199, 39659, 'thirty-nine thousand six hundred fifty-nine'), (15200, 21545, 'twenty-one thousand five hundred forty-five'), (15201, 88646, 'eighty-eight thousand six hundred forty-six'), (15202, 99188, 'ninety-nine thousand one hundred eighty-eight'), (15203, 43045, 'forty-three thousand forty-five'), (15204, 94952, 'ninety-four thousand nine hundred fifty-two'), (15205, 77797, 'seventy-seven thousand seven hundred ninety-seven'), (15206, 82065, 'eighty-two thousand sixty-five'), (15207, 97625, 'ninety-seven thousand six hundred twenty-five'), (15208, 59614, 'fifty-nine thousand six hundred fourteen'), (15209, 25885, 'twenty-five thousand eight hundred eighty-five'), (15210, 71065, 'seventy-one thousand sixty-five'), (15211, 4361, 'four thousand three hundred sixty-one'), (15212, 18097, 'eighteen thousand ninety-seven'), (15213, 78333, 'seventy-eight thousand three hundred thirty-three'), (15214, 74844, 'seventy-four thousand eight hundred forty-four'), (15215, 93932, 'ninety-three thousand nine hundred thirty-two'), (15216, 72185, 'seventy-two thousand one hundred eighty-five'), (15217, 62820, 'sixty-two thousand eight hundred twenty'), (15218, 6529, 'six thousand five hundred twenty-nine'), (15219, 92800, 'ninety-two thousand eight hundred'), (15220, 47066, 'forty-seven thousand sixty-six'), (15221, 13814, 'thirteen thousand eight hundred fourteen'), (15222, 43089, 'forty-three thousand eighty-nine'), (15223, 22362, 'twenty-two thousand three hundred sixty-two'), (15224, 17489, 'seventeen thousand four hundred eighty-nine'), (15225, 65027, 'sixty-five thousand twenty-seven'), (15226, 9565, 'nine thousand five hundred sixty-five'), (15227, 48508, 'forty-eight thousand five hundred eight'), (15228, 13113, 'thirteen thousand one hundred thirteen'), (15229, 73212, 'seventy-three thousand two hundred twelve'), (15230, 92011, 'ninety-two thousand eleven'), (15231, 16123, 'sixteen thousand one hundred twenty-three'), (15232, 20854, 'twenty thousand eight hundred fifty-four'), (15233, 57608, 'fifty-seven thousand six hundred eight'), (15234, 55653, 'fifty-five thousand six hundred fifty-three'), (15235, 68135, 'sixty-eight thousand one hundred thirty-five'), (15236, 28956, 'twenty-eight thousand nine hundred fifty-six'), (15237, 28837, 'twenty-eight thousand eight hundred thirty-seven'), (15238, 28260, 'twenty-eight thousand two hundred sixty'), (15239, 13693, 'thirteen thousand six hundred ninety-three'), (15240, 878, 'eight hundred seventy-eight'), (15241, 11061, 'eleven thousand sixty-one'), (15242, 72986, 'seventy-two thousand nine hundred eighty-six'), (15243, 43988, 'forty-three thousand nine hundred eighty-eight'), (15244, 62841, 'sixty-two thousand eight hundred forty-one'), (15245, 841, 'eight hundred forty-one'), (15246, 98046, 'ninety-eight thousand forty-six'), (15247, 27528, 'twenty-seven thousand five hundred twenty-eight'), (15248, 22751, 'twenty-two thousand seven hundred fifty-one'), (15249, 61470, 'sixty-one thousand four hundred seventy'), (15250, 51588, 'fifty-one thousand five hundred eighty-eight'), (15251, 4367, 'four thousand three hundred sixty-seven'), (15252, 77357, 'seventy-seven thousand three hundred fifty-seven'), (15253, 23607, 'twenty-three thousand six hundred seven'), (15254, 86336, 'eighty-six thousand three hundred thirty-six'), (15255, 26424, 'twenty-six thousand four hundred twenty-four'), (15256, 66565, 'sixty-six thousand five hundred sixty-five'), (15257, 54626, 'fifty-four thousand six hundred twenty-six'), (15258, 70193, 'seventy thousand one hundred ninety-three'), (15259, 61363, 'sixty-one thousand three hundred sixty-three'), (15260, 62408, 'sixty-two thousand four hundred eight'), (15261, 98196, 'ninety-eight thousand one hundred ninety-six'), (15262, 73709, 'seventy-three thousand seven hundred nine'), (15263, 77095, 'seventy-seven thousand ninety-five'), (15264, 68693, 'sixty-eight thousand six hundred ninety-three'), (15265, 18144, 'eighteen thousand one hundred forty-four'), (15266, 35983, 'thirty-five thousand nine hundred eighty-three'), (15267, 25990, 'twenty-five thousand nine hundred ninety'), (15268, 57263, 'fifty-seven thousand two hundred sixty-three'), (15269, 10204, 'ten thousand two hundred four'), (15270, 18355, 'eighteen thousand three hundred fifty-five'), (15271, 23545, 'twenty-three thousand five hundred forty-five'), (15272, 94662, 'ninety-four thousand six hundred sixty-two'), (15273, 71068, 'seventy-one thousand sixty-eight'), (15274, 38716, 'thirty-eight thousand seven hundred sixteen'), (15275, 61144, 'sixty-one thousand one hundred forty-four'), (15276, 56982, 'fifty-six thousand nine hundred eighty-two'), (15277, 79055, 'seventy-nine thousand fifty-five'), (15278, 11257, 'eleven thousand two hundred fifty-seven'), (15279, 48219, 'forty-eight thousand two hundred nineteen'), (15280, 25441, 'twenty-five thousand four hundred forty-one'), (15281, 27190, 'twenty-seven thousand one hundred ninety'), (15282, 77629, 'seventy-seven thousand six hundred twenty-nine'), (15283, 17797, 'seventeen thousand seven hundred ninety-seven'), (15284, 29156, 'twenty-nine thousand one hundred fifty-six'), (15285, 88189, 'eighty-eight thousand one hundred eighty-nine'), (15286, 38575, 'thirty-eight thousand five hundred seventy-five'), (15287, 92783, 'ninety-two thousand seven hundred eighty-three'), (15288, 5750, 'five thousand seven hundred fifty'), (15289, 22181, 'twenty-two thousand one hundred eighty-one'), (15290, 75427, 'seventy-five thousand four hundred twenty-seven'), (15291, 9216, 'nine thousand two hundred sixteen'), (15292, 75943, 'seventy-five thousand nine hundred forty-three'), (15293, 3790, 'three thousand seven hundred ninety'), (15294, 63545, 'sixty-three thousand five hundred forty-five'), (15295, 74078, 'seventy-four thousand seventy-eight'), (15296, 47475, 'forty-seven thousand four hundred seventy-five'), (15297, 12016, 'twelve thousand sixteen'), (15298, 17015, 'seventeen thousand fifteen'), (15299, 99357, 'ninety-nine thousand three hundred fifty-seven'), (15300, 43847, 'forty-three thousand eight hundred forty-seven'), (15301, 96848, 'ninety-six thousand eight hundred forty-eight'), (15302, 10492, 'ten thousand four hundred ninety-two'), (15303, 37781, 'thirty-seven thousand seven hundred eighty-one'), (15304, 4824, 'four thousand eight hundred twenty-four'), (15305, 66562, 'sixty-six thousand five hundred sixty-two'), (15306, 4622, 'four thousand six hundred twenty-two'), (15307, 79546, 'seventy-nine thousand five hundred forty-six'), (15308, 90717, 'ninety thousand seven hundred seventeen'), (15309, 36082, 'thirty-six thousand eighty-two'), (15310, 18416, 'eighteen thousand four hundred sixteen'), (15311, 8373, 'eight thousand three hundred seventy-three'), (15312, 38161, 'thirty-eight thousand one hundred sixty-one'), (15313, 67157, 'sixty-seven thousand one hundred fifty-seven'), (15314, 1751, 'one thousand seven hundred fifty-one'), (15315, 30673, 'thirty thousand six hundred seventy-three'), (15316, 43865, 'forty-three thousand eight hundred sixty-five'), (15317, 73724, 'seventy-three thousand seven hundred twenty-four'), (15318, 22982, 'twenty-two thousand nine hundred eighty-two'), (15319, 82190, 'eighty-two thousand one hundred ninety'), (15320, 42632, 'forty-two thousand six hundred thirty-two'), (15321, 31231, 'thirty-one thousand two hundred thirty-one'), (15322, 19622, 'nineteen thousand six hundred twenty-two'), (15323, 27495, 'twenty-seven thousand four hundred ninety-five'), (15324, 5385, 'five thousand three hundred eighty-five'), (15325, 94076, 'ninety-four thousand seventy-six'), (15326, 44504, 'forty-four thousand five hundred four'), (15327, 96536, 'ninety-six thousand five hundred thirty-six'), (15328, 42248, 'forty-two thousand two hundred forty-eight'), (15329, 29206, 'twenty-nine thousand two hundred six'), (15330, 75455, 'seventy-five thousand four hundred fifty-five'), (15331, 87854, 'eighty-seven thousand eight hundred fifty-four'), (15332, 90815, 'ninety thousand eight hundred fifteen'), (15333, 94246, 'ninety-four thousand two hundred forty-six'), (15334, 76187, 'seventy-six thousand one hundred eighty-seven'), (15335, 28407, 'twenty-eight thousand four hundred seven'), (15336, 44191, 'forty-four thousand one hundred ninety-one'), (15337, 3637, 'three thousand six hundred thirty-seven'), (15338, 46981, 'forty-six thousand nine hundred eighty-one'), (15339, 73004, 'seventy-three thousand four'), (15340, 7098, 'seven thousand ninety-eight'), (15341, 147, 'one hundred forty-seven'), (15342, 90561, 'ninety thousand five hundred sixty-one'), (15343, 20089, 'twenty thousand eighty-nine'), (15344, 37149, 'thirty-seven thousand one hundred forty-nine'), (15345, 7301, 'seven thousand three hundred one'), (15346, 59134, 'fifty-nine thousand one hundred thirty-four'), (15347, 65023, 'sixty-five thousand twenty-three'), (15348, 90823, 'ninety thousand eight hundred twenty-three'), (15349, 54893, 'fifty-four thousand eight hundred ninety-three'), (15350, 58271, 'fifty-eight thousand two hundred seventy-one'), (15351, 92604, 'ninety-two thousand six hundred four'), (15352, 50255, 'fifty thousand two hundred fifty-five'), (15353, 84628, 'eighty-four thousand six hundred twenty-eight'), (15354, 65434, 'sixty-five thousand four hundred thirty-four'), (15355, 17633, 'seventeen thousand six hundred thirty-three'), (15356, 92894, 'ninety-two thousand eight hundred ninety-four'), (15357, 48623, 'forty-eight thousand six hundred twenty-three'), (15358, 87876, 'eighty-seven thousand eight hundred seventy-six'), (15359, 62902, 'sixty-two thousand nine hundred two'), (15360, 43327, 'forty-three thousand three hundred twenty-seven'), (15361, 67439, 'sixty-seven thousand four hundred thirty-nine'), (15362, 12642, 'twelve thousand six hundred forty-two'), (15363, 24981, 'twenty-four thousand nine hundred eighty-one'), (15364, 28583, 'twenty-eight thousand five hundred eighty-three'), (15365, 60299, 'sixty thousand two hundred ninety-nine'), (15366, 89200, 'eighty-nine thousand two hundred'), (15367, 8050, 'eight thousand fifty'), (15368, 11423, 'eleven thousand four hundred twenty-three'), (15369, 62777, 'sixty-two thousand seven hundred seventy-seven'), (15370, 89835, 'eighty-nine thousand eight hundred thirty-five'), (15371, 25405, 'twenty-five thousand four hundred five'), (15372, 30195, 'thirty thousand one hundred ninety-five'), (15373, 50933, 'fifty thousand nine hundred thirty-three'), (15374, 39237, 'thirty-nine thousand two hundred thirty-seven'), (15375, 11106, 'eleven thousand one hundred six'), (15376, 97238, 'ninety-seven thousand two hundred thirty-eight'), (15377, 34956, 'thirty-four thousand nine hundred fifty-six'), (15378, 83366, 'eighty-three thousand three hundred sixty-six'), (15379, 34877, 'thirty-four thousand eight hundred seventy-seven'), (15380, 87942, 'eighty-seven thousand nine hundred forty-two'), (15381, 22663, 'twenty-two thousand six hundred sixty-three'), (15382, 25887, 'twenty-five thousand eight hundred eighty-seven'), (15383, 30447, 'thirty thousand four hundred forty-seven'), (15384, 19410, 'nineteen thousand four hundred ten'), (15385, 59787, 'fifty-nine thousand seven hundred eighty-seven'), (15386, 77755, 'seventy-seven thousand seven hundred fifty-five'), (15387, 67147, 'sixty-seven thousand one hundred forty-seven'), (15388, 69423, 'sixty-nine thousand four hundred twenty-three'), (15389, 43649, 'forty-three thousand six hundred forty-nine'), (15390, 74525, 'seventy-four thousand five hundred twenty-five'), (15391, 20720, 'twenty thousand seven hundred twenty'), (15392, 24305, 'twenty-four thousand three hundred five'), (15393, 92612, 'ninety-two thousand six hundred twelve'), (15394, 10940, 'ten thousand nine hundred forty'), (15395, 18822, 'eighteen thousand eight hundred twenty-two'), (15396, 18216, 'eighteen thousand two hundred sixteen'), (15397, 20286, 'twenty thousand two hundred eighty-six'), (15398, 89727, 'eighty-nine thousand seven hundred twenty-seven'), (15399, 48711, 'forty-eight thousand seven hundred eleven'), (15400, 96866, 'ninety-six thousand eight hundred sixty-six'), (15401, 52295, 'fifty-two thousand two hundred ninety-five'), (15402, 55393, 'fifty-five thousand three hundred ninety-three'), (15403, 65285, 'sixty-five thousand two hundred eighty-five'), (15404, 70250, 'seventy thousand two hundred fifty'), (15405, 93421, 'ninety-three thousand four hundred twenty-one'), (15406, 73473, 'seventy-three thousand four hundred seventy-three'), (15407, 99667, 'ninety-nine thousand six hundred sixty-seven'), (15408, 31507, 'thirty-one thousand five hundred seven'), (15409, 93969, 'ninety-three thousand nine hundred sixty-nine'), (15410, 24546, 'twenty-four thousand five hundred forty-six'), (15411, 50689, 'fifty thousand six hundred eighty-nine'), (15412, 95878, 'ninety-five thousand eight hundred seventy-eight'), (15413, 40319, 'forty thousand three hundred nineteen'), (15414, 42772, 'forty-two thousand seven hundred seventy-two'), (15415, 22352, 'twenty-two thousand three hundred fifty-two'), (15416, 11198, 'eleven thousand one hundred ninety-eight'), (15417, 98627, 'ninety-eight thousand six hundred twenty-seven'), (15418, 54516, 'fifty-four thousand five hundred sixteen'), (15419, 46274, 'forty-six thousand two hundred seventy-four'), (15420, 43755, 'forty-three thousand seven hundred fifty-five'), (15421, 50050, 'fifty thousand fifty'), (15422, 11996, 'eleven thousand nine hundred ninety-six'), (15423, 99752, 'ninety-nine thousand seven hundred fifty-two'), (15424, 1868, 'one thousand eight hundred sixty-eight'), (15425, 55366, 'fifty-five thousand three hundred sixty-six'), (15426, 29855, 'twenty-nine thousand eight hundred fifty-five'), (15427, 72464, 'seventy-two thousand four hundred sixty-four'), (15428, 60158, 'sixty thousand one hundred fifty-eight'), (15429, 39867, 'thirty-nine thousand eight hundred sixty-seven'), (15430, 92860, 'ninety-two thousand eight hundred sixty'), (15431, 61580, 'sixty-one thousand five hundred eighty'), (15432, 6212, 'six thousand two hundred twelve'), (15433, 82828, 'eighty-two thousand eight hundred twenty-eight'), (15434, 62919, 'sixty-two thousand nine hundred nineteen'), (15435, 15465, 'fifteen thousand four hundred sixty-five'), (15436, 93209, 'ninety-three thousand two hundred nine'), (15437, 53891, 'fifty-three thousand eight hundred ninety-one'), (15438, 67834, 'sixty-seven thousand eight hundred thirty-four'), (15439, 82459, 'eighty-two thousand four hundred fifty-nine'), (15440, 42603, 'forty-two thousand six hundred three'), (15441, 90595, 'ninety thousand five hundred ninety-five'), (15442, 93731, 'ninety-three thousand seven hundred thirty-one'), (15443, 96385, 'ninety-six thousand three hundred eighty-five'), (15444, 93702, 'ninety-three thousand seven hundred two'), (15445, 47292, 'forty-seven thousand two hundred ninety-two'), (15446, 84439, 'eighty-four thousand four hundred thirty-nine'), (15447, 52088, 'fifty-two thousand eighty-eight'), (15448, 63151, 'sixty-three thousand one hundred fifty-one'), (15449, 34454, 'thirty-four thousand four hundred fifty-four'), (15450, 50805, 'fifty thousand eight hundred five'), (15451, 57924, 'fifty-seven thousand nine hundred twenty-four'), (15452, 54111, 'fifty-four thousand one hundred eleven'), (15453, 59615, 'fifty-nine thousand six hundred fifteen'), (15454, 67802, 'sixty-seven thousand eight hundred two'), (15455, 47508, 'forty-seven thousand five hundred eight'), (15456, 59560, 'fifty-nine thousand five hundred sixty'), (15457, 63565, 'sixty-three thousand five hundred sixty-five'), (15458, 77048, 'seventy-seven thousand forty-eight'), (15459, 51269, 'fifty-one thousand two hundred sixty-nine'), (15460, 83568, 'eighty-three thousand five hundred sixty-eight'), (15461, 68846, 'sixty-eight thousand eight hundred forty-six'), (15462, 67516, 'sixty-seven thousand five hundred sixteen'), (15463, 19922, 'nineteen thousand nine hundred twenty-two'), (15464, 52611, 'fifty-two thousand six hundred eleven'), (15465, 24338, 'twenty-four thousand three hundred thirty-eight'), (15466, 64661, 'sixty-four thousand six hundred sixty-one'), (15467, 95295, 'ninety-five thousand two hundred ninety-five'), (15468, 3510, 'three thousand five hundred ten'), (15469, 60057, 'sixty thousand fifty-seven'), (15470, 39376, 'thirty-nine thousand three hundred seventy-six'), (15471, 72066, 'seventy-two thousand sixty-six'), (15472, 24803, 'twenty-four thousand eight hundred three'), (15473, 37056, 'thirty-seven thousand fifty-six'), (15474, 51195, 'fifty-one thousand one hundred ninety-five'), (15475, 98889, 'ninety-eight thousand eight hundred eighty-nine'), (15476, 75488, 'seventy-five thousand four hundred eighty-eight'), (15477, 42469, 'forty-two thousand four hundred sixty-nine'), (15478, 49150, 'forty-nine thousand one hundred fifty'), (15479, 85066, 'eighty-five thousand sixty-six'), (15480, 54015, 'fifty-four thousand fifteen'), (15481, 81555, 'eighty-one thousand five hundred fifty-five'), (15482, 97357, 'ninety-seven thousand three hundred fifty-seven'), (15483, 66744, 'sixty-six thousand seven hundred forty-four'), (15484, 32806, 'thirty-two thousand eight hundred six'), (15485, 11632, 'eleven thousand six hundred thirty-two'), (15486, 96839, 'ninety-six thousand eight hundred thirty-nine'), (15487, 88098, 'eighty-eight thousand ninety-eight'), (15488, 60489, 'sixty thousand four hundred eighty-nine'), (15489, 22812, 'twenty-two thousand eight hundred twelve'), (15490, 52056, 'fifty-two thousand fifty-six'), (15491, 15199, 'fifteen thousand one hundred ninety-nine'), (15492, 45295, 'forty-five thousand two hundred ninety-five'), (15493, 18710, 'eighteen thousand seven hundred ten'), (15494, 1270, 'one thousand two hundred seventy'), (15495, 31235, 'thirty-one thousand two hundred thirty-five'), (15496, 31310, 'thirty-one thousand three hundred ten'), (15497, 69567, 'sixty-nine thousand five hundred sixty-seven'), (15498, 7552, 'seven thousand five hundred fifty-two'), (15499, 81760, 'eighty-one thousand seven hundred sixty'), (15500, 24472, 'twenty-four thousand four hundred seventy-two'), (15501, 12944, 'twelve thousand nine hundred forty-four'), (15502, 15917, 'fifteen thousand nine hundred seventeen'), (15503, 59459, 'fifty-nine thousand four hundred fifty-nine'), (15504, 81424, 'eighty-one thousand four hundred twenty-four'), (15505, 77348, 'seventy-seven thousand three hundred forty-eight'), (15506, 99429, 'ninety-nine thousand four hundred twenty-nine'), (15507, 25494, 'twenty-five thousand four hundred ninety-four'), (15508, 65411, 'sixty-five thousand four hundred eleven'), (15509, 93643, 'ninety-three thousand six hundred forty-three'), (15510, 29963, 'twenty-nine thousand nine hundred sixty-three'), (15511, 83596, 'eighty-three thousand five hundred ninety-six'), (15512, 64819, 'sixty-four thousand eight hundred nineteen'), (15513, 68713, 'sixty-eight thousand seven hundred thirteen'), (15514, 37885, 'thirty-seven thousand eight hundred eighty-five'), (15515, 41922, 'forty-one thousand nine hundred twenty-two'), (15516, 15729, 'fifteen thousand seven hundred twenty-nine'), (15517, 77893, 'seventy-seven thousand eight hundred ninety-three'), (15518, 46203, 'forty-six thousand two hundred three'), (15519, 46226, 'forty-six thousand two hundred twenty-six'), (15520, 97826, 'ninety-seven thousand eight hundred twenty-six'), (15521, 26589, 'twenty-six thousand five hundred eighty-nine'), (15522, 83990, 'eighty-three thousand nine hundred ninety'), (15523, 72646, 'seventy-two thousand six hundred forty-six'), (15524, 2105, 'two thousand one hundred five'), (15525, 22161, 'twenty-two thousand one hundred sixty-one'), (15526, 84899, 'eighty-four thousand eight hundred ninety-nine'), (15527, 2102, 'two thousand one hundred two'), (15528, 36255, 'thirty-six thousand two hundred fifty-five'), (15529, 25618, 'twenty-five thousand six hundred eighteen'), (15530, 14837, 'fourteen thousand eight hundred thirty-seven'), (15531, 87808, 'eighty-seven thousand eight hundred eight'), (15532, 98142, 'ninety-eight thousand one hundred forty-two'), (15533, 36292, 'thirty-six thousand two hundred ninety-two'), (15534, 3279, 'three thousand two hundred seventy-nine'), (15535, 78626, 'seventy-eight thousand six hundred twenty-six'), (15536, 26768, 'twenty-six thousand seven hundred sixty-eight'), (15537, 80691, 'eighty thousand six hundred ninety-one'), (15538, 50597, 'fifty thousand five hundred ninety-seven'), (15539, 90986, 'ninety thousand nine hundred eighty-six'), (15540, 52652, 'fifty-two thousand six hundred fifty-two'), (15541, 52101, 'fifty-two thousand one hundred one'), (15542, 41309, 'forty-one thousand three hundred nine'), (15543, 68436, 'sixty-eight thousand four hundred thirty-six'), (15544, 61824, 'sixty-one thousand eight hundred twenty-four'), (15545, 21345, 'twenty-one thousand three hundred forty-five'), (15546, 17744, 'seventeen thousand seven hundred forty-four'), (15547, 16263, 'sixteen thousand two hundred sixty-three'), (15548, 94070, 'ninety-four thousand seventy'), (15549, 48117, 'forty-eight thousand one hundred seventeen'), (15550, 59852, 'fifty-nine thousand eight hundred fifty-two'), (15551, 90850, 'ninety thousand eight hundred fifty'), (15552, 60815, 'sixty thousand eight hundred fifteen'), (15553, 51835, 'fifty-one thousand eight hundred thirty-five'), (15554, 55658, 'fifty-five thousand six hundred fifty-eight'), (15555, 98621, 'ninety-eight thousand six hundred twenty-one'), (15556, 55698, 'fifty-five thousand six hundred ninety-eight'), (15557, 37635, 'thirty-seven thousand six hundred thirty-five'), (15558, 64378, 'sixty-four thousand three hundred seventy-eight'), (15559, 89291, 'eighty-nine thousand two hundred ninety-one'), (15560, 88040, 'eighty-eight thousand forty'), (15561, 76340, 'seventy-six thousand three hundred forty'), (15562, 47161, 'forty-seven thousand one hundred sixty-one'), (15563, 28387, 'twenty-eight thousand three hundred eighty-seven'), (15564, 29715, 'twenty-nine thousand seven hundred fifteen'), (15565, 14403, 'fourteen thousand four hundred three'), (15566, 9579, 'nine thousand five hundred seventy-nine'), (15567, 4936, 'four thousand nine hundred thirty-six'), (15568, 31298, 'thirty-one thousand two hundred ninety-eight'), (15569, 1756, 'one thousand seven hundred fifty-six'), (15570, 92144, 'ninety-two thousand one hundred forty-four'), (15571, 44931, 'forty-four thousand nine hundred thirty-one'), (15572, 16544, 'sixteen thousand five hundred forty-four'), (15573, 79428, 'seventy-nine thousand four hundred twenty-eight'), (15574, 11404, 'eleven thousand four hundred four'), (15575, 31449, 'thirty-one thousand four hundred forty-nine'), (15576, 4270, 'four thousand two hundred seventy'), (15577, 45029, 'forty-five thousand twenty-nine'), (15578, 39026, 'thirty-nine thousand twenty-six'), (15579, 4605, 'four thousand six hundred five'), (15580, 5860, 'five thousand eight hundred sixty'), (15581, 64363, 'sixty-four thousand three hundred sixty-three'), (15582, 58297, 'fifty-eight thousand two hundred ninety-seven'), (15583, 33459, 'thirty-three thousand four hundred fifty-nine'), (15584, 59193, 'fifty-nine thousand one hundred ninety-three'), (15585, 81536, 'eighty-one thousand five hundred thirty-six'), (15586, 76947, 'seventy-six thousand nine hundred forty-seven'), (15587, 44471, 'forty-four thousand four hundred seventy-one'), (15588, 69851, 'sixty-nine thousand eight hundred fifty-one'), (15589, 45895, 'forty-five thousand eight hundred ninety-five'), (15590, 92759, 'ninety-two thousand seven hundred fifty-nine'), (15591, 40856, 'forty thousand eight hundred fifty-six'), (15592, 11506, 'eleven thousand five hundred six'), (15593, 5862, 'five thousand eight hundred sixty-two'), (15594, 70418, 'seventy thousand four hundred eighteen'), (15595, 29836, 'twenty-nine thousand eight hundred thirty-six'), (15596, 5514, 'five thousand five hundred fourteen'), (15597, 57932, 'fifty-seven thousand nine hundred thirty-two'), (15598, 84976, 'eighty-four thousand nine hundred seventy-six'), (15599, 68439, 'sixty-eight thousand four hundred thirty-nine'), (15600, 99490, 'ninety-nine thousand four hundred ninety'), (15601, 94135, 'ninety-four thousand one hundred thirty-five'), (15602, 30823, 'thirty thousand eight hundred twenty-three'), (15603, 27451, 'twenty-seven thousand four hundred fifty-one'), (15604, 71974, 'seventy-one thousand nine hundred seventy-four'), (15605, 34816, 'thirty-four thousand eight hundred sixteen'), (15606, 57497, 'fifty-seven thousand four hundred ninety-seven'), (15607, 43596, 'forty-three thousand five hundred ninety-six'), (15608, 17797, 'seventeen thousand seven hundred ninety-seven'), (15609, 87723, 'eighty-seven thousand seven hundred twenty-three'), (15610, 44052, 'forty-four thousand fifty-two'), (15611, 71816, 'seventy-one thousand eight hundred sixteen'), (15612, 63176, 'sixty-three thousand one hundred seventy-six'), (15613, 61880, 'sixty-one thousand eight hundred eighty'), (15614, 11725, 'eleven thousand seven hundred twenty-five'), (15615, 18665, 'eighteen thousand six hundred sixty-five'), (15616, 18215, 'eighteen thousand two hundred fifteen'), (15617, 76647, 'seventy-six thousand six hundred forty-seven'), (15618, 94777, 'ninety-four thousand seven hundred seventy-seven'), (15619, 12571, 'twelve thousand five hundred seventy-one'), (15620, 17450, 'seventeen thousand four hundred fifty'), (15621, 69675, 'sixty-nine thousand six hundred seventy-five'), (15622, 3555, 'three thousand five hundred fifty-five'), (15623, 63435, 'sixty-three thousand four hundred thirty-five'), (15624, 64818, 'sixty-four thousand eight hundred eighteen'), (15625, 11605, 'eleven thousand six hundred five'), (15626, 7872, 'seven thousand eight hundred seventy-two'), (15627, 61547, 'sixty-one thousand five hundred forty-seven'), (15628, 43116, 'forty-three thousand one hundred sixteen'), (15629, 48788, 'forty-eight thousand seven hundred eighty-eight'), (15630, 79748, 'seventy-nine thousand seven hundred forty-eight'), (15631, 53201, 'fifty-three thousand two hundred one'), (15632, 39735, 'thirty-nine thousand seven hundred thirty-five'), (15633, 62759, 'sixty-two thousand seven hundred fifty-nine'), (15634, 42749, 'forty-two thousand seven hundred forty-nine'), (15635, 35018, 'thirty-five thousand eighteen'), (15636, 68053, 'sixty-eight thousand fifty-three'), (15637, 9848, 'nine thousand eight hundred forty-eight'), (15638, 86110, 'eighty-six thousand one hundred ten'), (15639, 17467, 'seventeen thousand four hundred sixty-seven'), (15640, 79544, 'seventy-nine thousand five hundred forty-four'), (15641, 25175, 'twenty-five thousand one hundred seventy-five'), (15642, 85717, 'eighty-five thousand seven hundred seventeen'), (15643, 48374, 'forty-eight thousand three hundred seventy-four'), (15644, 38063, 'thirty-eight thousand sixty-three'), (15645, 19210, 'nineteen thousand two hundred ten'), (15646, 96865, 'ninety-six thousand eight hundred sixty-five'), (15647, 29209, 'twenty-nine thousand two hundred nine'), (15648, 81531, 'eighty-one thousand five hundred thirty-one'), (15649, 32174, 'thirty-two thousand one hundred seventy-four'), (15650, 4973, 'four thousand nine hundred seventy-three'), (15651, 49262, 'forty-nine thousand two hundred sixty-two'), (15652, 95542, 'ninety-five thousand five hundred forty-two'), (15653, 88219, 'eighty-eight thousand two hundred nineteen'), (15654, 16996, 'sixteen thousand nine hundred ninety-six'), (15655, 63924, 'sixty-three thousand nine hundred twenty-four'), (15656, 69687, 'sixty-nine thousand six hundred eighty-seven'), (15657, 20597, 'twenty thousand five hundred ninety-seven'), (15658, 31839, 'thirty-one thousand eight hundred thirty-nine'), (15659, 11766, 'eleven thousand seven hundred sixty-six'), (15660, 91155, 'ninety-one thousand one hundred fifty-five'), (15661, 4188, 'four thousand one hundred eighty-eight'), (15662, 66933, 'sixty-six thousand nine hundred thirty-three'), (15663, 72850, 'seventy-two thousand eight hundred fifty'), (15664, 80618, 'eighty thousand six hundred eighteen'), (15665, 21622, 'twenty-one thousand six hundred twenty-two'), (15666, 37043, 'thirty-seven thousand forty-three'), (15667, 12766, 'twelve thousand seven hundred sixty-six'), (15668, 43165, 'forty-three thousand one hundred sixty-five'), (15669, 85152, 'eighty-five thousand one hundred fifty-two'), (15670, 36120, 'thirty-six thousand one hundred twenty'), (15671, 65436, 'sixty-five thousand four hundred thirty-six'), (15672, 19332, 'nineteen thousand three hundred thirty-two'), (15673, 49216, 'forty-nine thousand two hundred sixteen'), (15674, 61322, 'sixty-one thousand three hundred twenty-two'), (15675, 41147, 'forty-one thousand one hundred forty-seven'), (15676, 63864, 'sixty-three thousand eight hundred sixty-four'), (15677, 19328, 'nineteen thousand three hundred twenty-eight'), (15678, 92877, 'ninety-two thousand eight hundred seventy-seven'), (15679, 42696, 'forty-two thousand six hundred ninety-six'), (15680, 89108, 'eighty-nine thousand one hundred eight'), (15681, 22031, 'twenty-two thousand thirty-one'), (15682, 39057, 'thirty-nine thousand fifty-seven'), (15683, 58551, 'fifty-eight thousand five hundred fifty-one'), (15684, 44747, 'forty-four thousand seven hundred forty-seven'), (15685, 32329, 'thirty-two thousand three hundred twenty-nine'), (15686, 52888, 'fifty-two thousand eight hundred eighty-eight'), (15687, 16704, 'sixteen thousand seven hundred four'), (15688, 41197, 'forty-one thousand one hundred ninety-seven'), (15689, 46288, 'forty-six thousand two hundred eighty-eight'), (15690, 72820, 'seventy-two thousand eight hundred twenty'), (15691, 24914, 'twenty-four thousand nine hundred fourteen'), (15692, 40832, 'forty thousand eight hundred thirty-two'), (15693, 65655, 'sixty-five thousand six hundred fifty-five'), (15694, 45081, 'forty-five thousand eighty-one'), (15695, 27034, 'twenty-seven thousand thirty-four'), (15696, 34997, 'thirty-four thousand nine hundred ninety-seven'), (15697, 37604, 'thirty-seven thousand six hundred four'), (15698, 91329, 'ninety-one thousand three hundred twenty-nine'), (15699, 81517, 'eighty-one thousand five hundred seventeen'), (15700, 55791, 'fifty-five thousand seven hundred ninety-one'), (15701, 43675, 'forty-three thousand six hundred seventy-five'), (15702, 97901, 'ninety-seven thousand nine hundred one'), (15703, 21633, 'twenty-one thousand six hundred thirty-three'), (15704, 53911, 'fifty-three thousand nine hundred eleven'), (15705, 32666, 'thirty-two thousand six hundred sixty-six'), (15706, 66059, 'sixty-six thousand fifty-nine'), (15707, 93468, 'ninety-three thousand four hundred sixty-eight'), (15708, 69825, 'sixty-nine thousand eight hundred twenty-five'), (15709, 59698, 'fifty-nine thousand six hundred ninety-eight'), (15710, 26718, 'twenty-six thousand seven hundred eighteen'), (15711, 43706, 'forty-three thousand seven hundred six'), (15712, 94219, 'ninety-four thousand two hundred nineteen'), (15713, 13486, 'thirteen thousand four hundred eighty-six'), (15714, 67202, 'sixty-seven thousand two hundred two'), (15715, 74060, 'seventy-four thousand sixty'), (15716, 77731, 'seventy-seven thousand seven hundred thirty-one'), (15717, 77732, 'seventy-seven thousand seven hundred thirty-two'), (15718, 28718, 'twenty-eight thousand seven hundred eighteen'), (15719, 96642, 'ninety-six thousand six hundred forty-two'), (15720, 54665, 'fifty-four thousand six hundred sixty-five'), (15721, 64256, 'sixty-four thousand two hundred fifty-six'), (15722, 52600, 'fifty-two thousand six hundred'), (15723, 98974, 'ninety-eight thousand nine hundred seventy-four'), (15724, 69925, 'sixty-nine thousand nine hundred twenty-five'), (15725, 42561, 'forty-two thousand five hundred sixty-one'), (15726, 91144, 'ninety-one thousand one hundred forty-four'), (15727, 65572, 'sixty-five thousand five hundred seventy-two'), (15728, 31857, 'thirty-one thousand eight hundred fifty-seven'), (15729, 99414, 'ninety-nine thousand four hundred fourteen'), (15730, 92586, 'ninety-two thousand five hundred eighty-six'), (15731, 4229, 'four thousand two hundred twenty-nine'), (15732, 92992, 'ninety-two thousand nine hundred ninety-two'), (15733, 25972, 'twenty-five thousand nine hundred seventy-two'), (15734, 59536, 'fifty-nine thousand five hundred thirty-six'), (15735, 29525, 'twenty-nine thousand five hundred twenty-five'), (15736, 58306, 'fifty-eight thousand three hundred six'), (15737, 38178, 'thirty-eight thousand one hundred seventy-eight'), (15738, 24258, 'twenty-four thousand two hundred fifty-eight'), (15739, 4210, 'four thousand two hundred ten'), (15740, 37326, 'thirty-seven thousand three hundred twenty-six'), (15741, 48560, 'forty-eight thousand five hundred sixty'), (15742, 40522, 'forty thousand five hundred twenty-two'), (15743, 87111, 'eighty-seven thousand one hundred eleven'), (15744, 93856, 'ninety-three thousand eight hundred fifty-six'), (15745, 40944, 'forty thousand nine hundred forty-four'), (15746, 34745, 'thirty-four thousand seven hundred forty-five'), (15747, 91884, 'ninety-one thousand eight hundred eighty-four'), (15748, 33277, 'thirty-three thousand two hundred seventy-seven'), (15749, 98638, 'ninety-eight thousand six hundred thirty-eight'), (15750, 35790, 'thirty-five thousand seven hundred ninety'), (15751, 25847, 'twenty-five thousand eight hundred forty-seven'), (15752, 74394, 'seventy-four thousand three hundred ninety-four'), (15753, 75598, 'seventy-five thousand five hundred ninety-eight'), (15754, 93823, 'ninety-three thousand eight hundred twenty-three'), (15755, 43607, 'forty-three thousand six hundred seven'), (15756, 1996, 'one thousand nine hundred ninety-six'), (15757, 43585, 'forty-three thousand five hundred eighty-five'), (15758, 25498, 'twenty-five thousand four hundred ninety-eight'), (15759, 6693, 'six thousand six hundred ninety-three'), (15760, 5413, 'five thousand four hundred thirteen'), (15761, 98080, 'ninety-eight thousand eighty'), (15762, 90212, 'ninety thousand two hundred twelve'), (15763, 80334, 'eighty thousand three hundred thirty-four'), (15764, 66086, 'sixty-six thousand eighty-six'), (15765, 25179, 'twenty-five thousand one hundred seventy-nine'), (15766, 17907, 'seventeen thousand nine hundred seven'), (15767, 12495, 'twelve thousand four hundred ninety-five'), (15768, 65610, 'sixty-five thousand six hundred ten'), (15769, 21380, 'twenty-one thousand three hundred eighty'), (15770, 58684, 'fifty-eight thousand six hundred eighty-four'), (15771, 11175, 'eleven thousand one hundred seventy-five'), (15772, 23235, 'twenty-three thousand two hundred thirty-five'), (15773, 75318, 'seventy-five thousand three hundred eighteen'), (15774, 72185, 'seventy-two thousand one hundred eighty-five'), (15775, 72689, 'seventy-two thousand six hundred eighty-nine'), (15776, 92985, 'ninety-two thousand nine hundred eighty-five'), (15777, 59223, 'fifty-nine thousand two hundred twenty-three'), (15778, 4445, 'four thousand four hundred forty-five'), (15779, 83347, 'eighty-three thousand three hundred forty-seven'), (15780, 84382, 'eighty-four thousand three hundred eighty-two'), (15781, 40426, 'forty thousand four hundred twenty-six'), (15782, 26994, 'twenty-six thousand nine hundred ninety-four'), (15783, 2096, 'two thousand ninety-six'), (15784, 53119, 'fifty-three thousand one hundred nineteen'), (15785, 83994, 'eighty-three thousand nine hundred ninety-four'), (15786, 98841, 'ninety-eight thousand eight hundred forty-one'), (15787, 33638, 'thirty-three thousand six hundred thirty-eight'), (15788, 50104, 'fifty thousand one hundred four'), (15789, 4557, 'four thousand five hundred fifty-seven'), (15790, 71155, 'seventy-one thousand one hundred fifty-five'), (15791, 39118, 'thirty-nine thousand one hundred eighteen'), (15792, 92201, 'ninety-two thousand two hundred one'), (15793, 93141, 'ninety-three thousand one hundred forty-one'), (15794, 43521, 'forty-three thousand five hundred twenty-one'), (15795, 67315, 'sixty-seven thousand three hundred fifteen'), (15796, 78521, 'seventy-eight thousand five hundred twenty-one'), (15797, 24113, 'twenty-four thousand one hundred thirteen'), (15798, 68189, 'sixty-eight thousand one hundred eighty-nine'), (15799, 61865, 'sixty-one thousand eight hundred sixty-five'), (15800, 46165, 'forty-six thousand one hundred sixty-five'), (15801, 14418, 'fourteen thousand four hundred eighteen'), (15802, 61208, 'sixty-one thousand two hundred eight'), (15803, 99043, 'ninety-nine thousand forty-three'), (15804, 20662, 'twenty thousand six hundred sixty-two'), (15805, 21396, 'twenty-one thousand three hundred ninety-six'), (15806, 56437, 'fifty-six thousand four hundred thirty-seven'), (15807, 43992, 'forty-three thousand nine hundred ninety-two'), (15808, 84982, 'eighty-four thousand nine hundred eighty-two'), (15809, 62228, 'sixty-two thousand two hundred twenty-eight'), (15810, 68314, 'sixty-eight thousand three hundred fourteen'), (15811, 9211, 'nine thousand two hundred eleven'), (15812, 34369, 'thirty-four thousand three hundred sixty-nine'), (15813, 38328, 'thirty-eight thousand three hundred twenty-eight'), (15814, 42354, 'forty-two thousand three hundred fifty-four'), (15815, 95668, 'ninety-five thousand six hundred sixty-eight'), (15816, 17301, 'seventeen thousand three hundred one'), (15817, 99826, 'ninety-nine thousand eight hundred twenty-six'), (15818, 91260, 'ninety-one thousand two hundred sixty'), (15819, 16815, 'sixteen thousand eight hundred fifteen'), (15820, 49040, 'forty-nine thousand forty'), (15821, 17261, 'seventeen thousand two hundred sixty-one'), (15822, 10944, 'ten thousand nine hundred forty-four'), (15823, 96146, 'ninety-six thousand one hundred forty-six'), (15824, 80399, 'eighty thousand three hundred ninety-nine'), (15825, 15139, 'fifteen thousand one hundred thirty-nine'), (15826, 97864, 'ninety-seven thousand eight hundred sixty-four'), (15827, 70054, 'seventy thousand fifty-four'), (15828, 79807, 'seventy-nine thousand eight hundred seven'), (15829, 40204, 'forty thousand two hundred four'), (15830, 50679, 'fifty thousand six hundred seventy-nine'), (15831, 52273, 'fifty-two thousand two hundred seventy-three'), (15832, 68219, 'sixty-eight thousand two hundred nineteen'), (15833, 78023, 'seventy-eight thousand twenty-three'), (15834, 43634, 'forty-three thousand six hundred thirty-four'), (15835, 5211, 'five thousand two hundred eleven'), (15836, 39783, 'thirty-nine thousand seven hundred eighty-three'), (15837, 2122, 'two thousand one hundred twenty-two'), (15838, 83333, 'eighty-three thousand three hundred thirty-three'), (15839, 603, 'six hundred three'), (15840, 17301, 'seventeen thousand three hundred one'), (15841, 51333, 'fifty-one thousand three hundred thirty-three'), (15842, 96097, 'ninety-six thousand ninety-seven'), (15843, 98866, 'ninety-eight thousand eight hundred sixty-six'), (15844, 53335, 'fifty-three thousand three hundred thirty-five'), (15845, 96912, 'ninety-six thousand nine hundred twelve'), (15846, 64573, 'sixty-four thousand five hundred seventy-three'), (15847, 46755, 'forty-six thousand seven hundred fifty-five'), (15848, 798, 'seven hundred ninety-eight'), (15849, 64921, 'sixty-four thousand nine hundred twenty-one'), (15850, 33689, 'thirty-three thousand six hundred eighty-nine'), (15851, 39179, 'thirty-nine thousand one hundred seventy-nine'), (15852, 82318, 'eighty-two thousand three hundred eighteen'), (15853, 3840, 'three thousand eight hundred forty'), (15854, 55927, 'fifty-five thousand nine hundred twenty-seven'), (15855, 9776, 'nine thousand seven hundred seventy-six'), (15856, 65450, 'sixty-five thousand four hundred fifty'), (15857, 61984, 'sixty-one thousand nine hundred eighty-four'), (15858, 60152, 'sixty thousand one hundred fifty-two'), (15859, 66670, 'sixty-six thousand six hundred seventy'), (15860, 49118, 'forty-nine thousand one hundred eighteen'), (15861, 78227, 'seventy-eight thousand two hundred twenty-seven'), (15862, 744, 'seven hundred forty-four'), (15863, 11166, 'eleven thousand one hundred sixty-six'), (15864, 47097, 'forty-seven thousand ninety-seven'), (15865, 57886, 'fifty-seven thousand eight hundred eighty-six'), (15866, 87623, 'eighty-seven thousand six hundred twenty-three'), (15867, 97491, 'ninety-seven thousand four hundred ninety-one'), (15868, 30058, 'thirty thousand fifty-eight'), (15869, 1551, 'one thousand five hundred fifty-one'), (15870, 31301, 'thirty-one thousand three hundred one'), (15871, 84567, 'eighty-four thousand five hundred sixty-seven'), (15872, 77068, 'seventy-seven thousand sixty-eight'), (15873, 76172, 'seventy-six thousand one hundred seventy-two'), (15874, 36069, 'thirty-six thousand sixty-nine'), (15875, 93185, 'ninety-three thousand one hundred eighty-five'), (15876, 69686, 'sixty-nine thousand six hundred eighty-six'), (15877, 99235, 'ninety-nine thousand two hundred thirty-five'), (15878, 83211, 'eighty-three thousand two hundred eleven'), (15879, 76908, 'seventy-six thousand nine hundred eight'), (15880, 36042, 'thirty-six thousand forty-two'), (15881, 8421, 'eight thousand four hundred twenty-one'), (15882, 7780, 'seven thousand seven hundred eighty'), (15883, 77417, 'seventy-seven thousand four hundred seventeen'), (15884, 90133, 'ninety thousand one hundred thirty-three'), (15885, 78079, 'seventy-eight thousand seventy-nine'), (15886, 54830, 'fifty-four thousand eight hundred thirty'), (15887, 24977, 'twenty-four thousand nine hundred seventy-seven'), (15888, 70974, 'seventy thousand nine hundred seventy-four'), (15889, 77095, 'seventy-seven thousand ninety-five'), (15890, 51306, 'fifty-one thousand three hundred six'), (15891, 58044, 'fifty-eight thousand forty-four'), (15892, 88308, 'eighty-eight thousand three hundred eight'), (15893, 1551, 'one thousand five hundred fifty-one'), (15894, 29311, 'twenty-nine thousand three hundred eleven'), (15895, 79399, 'seventy-nine thousand three hundred ninety-nine'), (15896, 62728, 'sixty-two thousand seven hundred twenty-eight'), (15897, 27716, 'twenty-seven thousand seven hundred sixteen'), (15898, 91020, 'ninety-one thousand twenty'), (15899, 22067, 'twenty-two thousand sixty-seven'), (15900, 29936, 'twenty-nine thousand nine hundred thirty-six'), (15901, 81032, 'eighty-one thousand thirty-two'), (15902, 73073, 'seventy-three thousand seventy-three'), (15903, 17993, 'seventeen thousand nine hundred ninety-three'), (15904, 70475, 'seventy thousand four hundred seventy-five'), (15905, 91139, 'ninety-one thousand one hundred thirty-nine'), (15906, 93044, 'ninety-three thousand forty-four'), (15907, 56672, 'fifty-six thousand six hundred seventy-two'), (15908, 8574, 'eight thousand five hundred seventy-four'), (15909, 99775, 'ninety-nine thousand seven hundred seventy-five'), (15910, 98409, 'ninety-eight thousand four hundred nine'), (15911, 52874, 'fifty-two thousand eight hundred seventy-four'), (15912, 60677, 'sixty thousand six hundred seventy-seven'), (15913, 74511, 'seventy-four thousand five hundred eleven'), (15914, 38728, 'thirty-eight thousand seven hundred twenty-eight'), (15915, 5302, 'five thousand three hundred two'), (15916, 50159, 'fifty thousand one hundred fifty-nine'), (15917, 12641, 'twelve thousand six hundred forty-one'), (15918, 68110, 'sixty-eight thousand one hundred ten'), (15919, 89350, 'eighty-nine thousand three hundred fifty'), (15920, 70579, 'seventy thousand five hundred seventy-nine'), (15921, 17149, 'seventeen thousand one hundred forty-nine'), (15922, 57276, 'fifty-seven thousand two hundred seventy-six'), (15923, 9657, 'nine thousand six hundred fifty-seven'), (15924, 51466, 'fifty-one thousand four hundred sixty-six'), (15925, 36532, 'thirty-six thousand five hundred thirty-two'), (15926, 60852, 'sixty thousand eight hundred fifty-two'), (15927, 76838, 'seventy-six thousand eight hundred thirty-eight'), (15928, 48278, 'forty-eight thousand two hundred seventy-eight'), (15929, 44557, 'forty-four thousand five hundred fifty-seven'), (15930, 93247, 'ninety-three thousand two hundred forty-seven'), (15931, 25113, 'twenty-five thousand one hundred thirteen'), (15932, 27324, 'twenty-seven thousand three hundred twenty-four'), (15933, 67270, 'sixty-seven thousand two hundred seventy'), (15934, 86752, 'eighty-six thousand seven hundred fifty-two'), (15935, 86862, 'eighty-six thousand eight hundred sixty-two'), (15936, 69694, 'sixty-nine thousand six hundred ninety-four'), (15937, 16990, 'sixteen thousand nine hundred ninety'), (15938, 37531, 'thirty-seven thousand five hundred thirty-one'), (15939, 37787, 'thirty-seven thousand seven hundred eighty-seven'), (15940, 52082, 'fifty-two thousand eighty-two'), (15941, 4136, 'four thousand one hundred thirty-six'), (15942, 97125, 'ninety-seven thousand one hundred twenty-five'), (15943, 39025, 'thirty-nine thousand twenty-five'), (15944, 43628, 'forty-three thousand six hundred twenty-eight'), (15945, 24790, 'twenty-four thousand seven hundred ninety'), (15946, 90849, 'ninety thousand eight hundred forty-nine'), (15947, 28804, 'twenty-eight thousand eight hundred four'), (15948, 26308, 'twenty-six thousand three hundred eight'), (15949, 97680, 'ninety-seven thousand six hundred eighty'), (15950, 97444, 'ninety-seven thousand four hundred forty-four'), (15951, 3829, 'three thousand eight hundred twenty-nine'), (15952, 69996, 'sixty-nine thousand nine hundred ninety-six'), (15953, 93038, 'ninety-three thousand thirty-eight'), (15954, 97206, 'ninety-seven thousand two hundred six'), (15955, 52615, 'fifty-two thousand six hundred fifteen'), (15956, 34883, 'thirty-four thousand eight hundred eighty-three'), (15957, 26101, 'twenty-six thousand one hundred one'), (15958, 73641, 'seventy-three thousand six hundred forty-one'), (15959, 41882, 'forty-one thousand eight hundred eighty-two'), (15960, 45415, 'forty-five thousand four hundred fifteen'), (15961, 22395, 'twenty-two thousand three hundred ninety-five'), (15962, 8821, 'eight thousand eight hundred twenty-one'), (15963, 55844, 'fifty-five thousand eight hundred forty-four'), (15964, 46763, 'forty-six thousand seven hundred sixty-three'), (15965, 78945, 'seventy-eight thousand nine hundred forty-five'), (15966, 55236, 'fifty-five thousand two hundred thirty-six'), (15967, 61422, 'sixty-one thousand four hundred twenty-two'), (15968, 76060, 'seventy-six thousand sixty'), (15969, 30024, 'thirty thousand twenty-four'), (15970, 54977, 'fifty-four thousand nine hundred seventy-seven'), (15971, 39697, 'thirty-nine thousand six hundred ninety-seven'), (15972, 4943, 'four thousand nine hundred forty-three'), (15973, 75830, 'seventy-five thousand eight hundred thirty'), (15974, 75024, 'seventy-five thousand twenty-four'), (15975, 57935, 'fifty-seven thousand nine hundred thirty-five'), (15976, 54814, 'fifty-four thousand eight hundred fourteen'), (15977, 99572, 'ninety-nine thousand five hundred seventy-two'), (15978, 40185, 'forty thousand one hundred eighty-five'), (15979, 9988, 'nine thousand nine hundred eighty-eight'), (15980, 51925, 'fifty-one thousand nine hundred twenty-five'), (15981, 37191, 'thirty-seven thousand one hundred ninety-one'), (15982, 91240, 'ninety-one thousand two hundred forty'), (15983, 83574, 'eighty-three thousand five hundred seventy-four'), (15984, 46447, 'forty-six thousand four hundred forty-seven'), (15985, 84079, 'eighty-four thousand seventy-nine'), (15986, 68993, 'sixty-eight thousand nine hundred ninety-three'), (15987, 50877, 'fifty thousand eight hundred seventy-seven'), (15988, 46667, 'forty-six thousand six hundred sixty-seven'), (15989, 58255, 'fifty-eight thousand two hundred fifty-five'), (15990, 5215, 'five thousand two hundred fifteen'), (15991, 2736, 'two thousand seven hundred thirty-six'), (15992, 45885, 'forty-five thousand eight hundred eighty-five'), (15993, 52343, 'fifty-two thousand three hundred forty-three'), (15994, 1900, 'one thousand nine hundred'), (15995, 52932, 'fifty-two thousand nine hundred thirty-two'), (15996, 48382, 'forty-eight thousand three hundred eighty-two'), (15997, 55256, 'fifty-five thousand two hundred fifty-six'), (15998, 73536, 'seventy-three thousand five hundred thirty-six'), (15999, 62821, 'sixty-two thousand eight hundred twenty-one'), (16000, 71480, 'seventy-one thousand four hundred eighty'), (16001, 92908, 'ninety-two thousand nine hundred eight'), (16002, 40281, 'forty thousand two hundred eighty-one'), (16003, 60055, 'sixty thousand fifty-five'), (16004, 59310, 'fifty-nine thousand three hundred ten'), (16005, 98080, 'ninety-eight thousand eighty'), (16006, 63368, 'sixty-three thousand three hundred sixty-eight'), (16007, 89021, 'eighty-nine thousand twenty-one'), (16008, 59499, 'fifty-nine thousand four hundred ninety-nine'), (16009, 22050, 'twenty-two thousand fifty'), (16010, 60758, 'sixty thousand seven hundred fifty-eight'), (16011, 98253, 'ninety-eight thousand two hundred fifty-three'), (16012, 175, 'one hundred seventy-five'), (16013, 2030, 'two thousand thirty'), (16014, 80948, 'eighty thousand nine hundred forty-eight'), (16015, 36059, 'thirty-six thousand fifty-nine'), (16016, 52071, 'fifty-two thousand seventy-one'), (16017, 83705, 'eighty-three thousand seven hundred five'), (16018, 60985, 'sixty thousand nine hundred eighty-five'), (16019, 61632, 'sixty-one thousand six hundred thirty-two'), (16020, 34740, 'thirty-four thousand seven hundred forty'), (16021, 19212, 'nineteen thousand two hundred twelve'), (16022, 12860, 'twelve thousand eight hundred sixty'), (16023, 99628, 'ninety-nine thousand six hundred twenty-eight'), (16024, 62177, 'sixty-two thousand one hundred seventy-seven'), (16025, 85818, 'eighty-five thousand eight hundred eighteen'), (16026, 17621, 'seventeen thousand six hundred twenty-one'), (16027, 452, 'four hundred fifty-two'), (16028, 61336, 'sixty-one thousand three hundred thirty-six'), (16029, 17500, 'seventeen thousand five hundred'), (16030, 22747, 'twenty-two thousand seven hundred forty-seven'), (16031, 18211, 'eighteen thousand two hundred eleven'), (16032, 93359, 'ninety-three thousand three hundred fifty-nine'), (16033, 49357, 'forty-nine thousand three hundred fifty-seven'), (16034, 64020, 'sixty-four thousand twenty'), (16035, 12282, 'twelve thousand two hundred eighty-two'), (16036, 44106, 'forty-four thousand one hundred six'), (16037, 85472, 'eighty-five thousand four hundred seventy-two'), (16038, 43586, 'forty-three thousand five hundred eighty-six'), (16039, 50717, 'fifty thousand seven hundred seventeen'), (16040, 21904, 'twenty-one thousand nine hundred four'), (16041, 19973, 'nineteen thousand nine hundred seventy-three'), (16042, 32010, 'thirty-two thousand ten'), (16043, 7681, 'seven thousand six hundred eighty-one'), (16044, 43907, 'forty-three thousand nine hundred seven'), (16045, 92559, 'ninety-two thousand five hundred fifty-nine'), (16046, 74737, 'seventy-four thousand seven hundred thirty-seven'), (16047, 41361, 'forty-one thousand three hundred sixty-one'), (16048, 63652, 'sixty-three thousand six hundred fifty-two'), (16049, 95499, 'ninety-five thousand four hundred ninety-nine'), (16050, 11250, 'eleven thousand two hundred fifty'), (16051, 29555, 'twenty-nine thousand five hundred fifty-five'), (16052, 50887, 'fifty thousand eight hundred eighty-seven'), (16053, 75120, 'seventy-five thousand one hundred twenty'), (16054, 70541, 'seventy thousand five hundred forty-one'), (16055, 16164, 'sixteen thousand one hundred sixty-four'), (16056, 77795, 'seventy-seven thousand seven hundred ninety-five'), (16057, 94479, 'ninety-four thousand four hundred seventy-nine'), (16058, 71824, 'seventy-one thousand eight hundred twenty-four'), (16059, 82936, 'eighty-two thousand nine hundred thirty-six'), (16060, 540, 'five hundred forty'), (16061, 87563, 'eighty-seven thousand five hundred sixty-three'), (16062, 56827, 'fifty-six thousand eight hundred twenty-seven'), (16063, 17633, 'seventeen thousand six hundred thirty-three'), (16064, 39580, 'thirty-nine thousand five hundred eighty'), (16065, 44379, 'forty-four thousand three hundred seventy-nine'), (16066, 42202, 'forty-two thousand two hundred two'), (16067, 489, 'four hundred eighty-nine'), (16068, 21410, 'twenty-one thousand four hundred ten'), (16069, 24792, 'twenty-four thousand seven hundred ninety-two'), (16070, 64478, 'sixty-four thousand four hundred seventy-eight'), (16071, 16835, 'sixteen thousand eight hundred thirty-five'), (16072, 98735, 'ninety-eight thousand seven hundred thirty-five'), (16073, 4138, 'four thousand one hundred thirty-eight'), (16074, 16230, 'sixteen thousand two hundred thirty'), (16075, 46317, 'forty-six thousand three hundred seventeen'), (16076, 20244, 'twenty thousand two hundred forty-four'), (16077, 76262, 'seventy-six thousand two hundred sixty-two'), (16078, 61887, 'sixty-one thousand eight hundred eighty-seven'), (16079, 38336, 'thirty-eight thousand three hundred thirty-six'), (16080, 60960, 'sixty thousand nine hundred sixty'), (16081, 57789, 'fifty-seven thousand seven hundred eighty-nine'), (16082, 99854, 'ninety-nine thousand eight hundred fifty-four'), (16083, 52051, 'fifty-two thousand fifty-one'), (16084, 53572, 'fifty-three thousand five hundred seventy-two'), (16085, 7476, 'seven thousand four hundred seventy-six'), (16086, 78317, 'seventy-eight thousand three hundred seventeen'), (16087, 91767, 'ninety-one thousand seven hundred sixty-seven'), (16088, 67706, 'sixty-seven thousand seven hundred six'), (16089, 92031, 'ninety-two thousand thirty-one'), (16090, 69508, 'sixty-nine thousand five hundred eight'), (16091, 26314, 'twenty-six thousand three hundred fourteen'), (16092, 58858, 'fifty-eight thousand eight hundred fifty-eight'), (16093, 13599, 'thirteen thousand five hundred ninety-nine'), (16094, 18515, 'eighteen thousand five hundred fifteen'), (16095, 73374, 'seventy-three thousand three hundred seventy-four'), (16096, 49281, 'forty-nine thousand two hundred eighty-one'), (16097, 77458, 'seventy-seven thousand four hundred fifty-eight'), (16098, 61112, 'sixty-one thousand one hundred twelve'), (16099, 71786, 'seventy-one thousand seven hundred eighty-six'), (16100, 29715, 'twenty-nine thousand seven hundred fifteen'), (16101, 43700, 'forty-three thousand seven hundred'), (16102, 37603, 'thirty-seven thousand six hundred three'), (16103, 59207, 'fifty-nine thousand two hundred seven'), (16104, 16234, 'sixteen thousand two hundred thirty-four'), (16105, 69260, 'sixty-nine thousand two hundred sixty'), (16106, 85665, 'eighty-five thousand six hundred sixty-five'), (16107, 22662, 'twenty-two thousand six hundred sixty-two'), (16108, 56317, 'fifty-six thousand three hundred seventeen'), (16109, 94136, 'ninety-four thousand one hundred thirty-six'), (16110, 89060, 'eighty-nine thousand sixty'), (16111, 99324, 'ninety-nine thousand three hundred twenty-four'), (16112, 40323, 'forty thousand three hundred twenty-three'), (16113, 25227, 'twenty-five thousand two hundred twenty-seven'), (16114, 79601, 'seventy-nine thousand six hundred one'), (16115, 17795, 'seventeen thousand seven hundred ninety-five'), (16116, 27280, 'twenty-seven thousand two hundred eighty'), (16117, 6623, 'six thousand six hundred twenty-three'), (16118, 44016, 'forty-four thousand sixteen'), (16119, 47457, 'forty-seven thousand four hundred fifty-seven'), (16120, 49815, 'forty-nine thousand eight hundred fifteen'), (16121, 6374, 'six thousand three hundred seventy-four'), (16122, 32173, 'thirty-two thousand one hundred seventy-three'), (16123, 31527, 'thirty-one thousand five hundred twenty-seven'), (16124, 22886, 'twenty-two thousand eight hundred eighty-six'), (16125, 6343, 'six thousand three hundred forty-three'), (16126, 82249, 'eighty-two thousand two hundred forty-nine'), (16127, 38617, 'thirty-eight thousand six hundred seventeen'), (16128, 93634, 'ninety-three thousand six hundred thirty-four'), (16129, 67769, 'sixty-seven thousand seven hundred sixty-nine'), (16130, 23369, 'twenty-three thousand three hundred sixty-nine'), (16131, 87506, 'eighty-seven thousand five hundred six'), (16132, 39817, 'thirty-nine thousand eight hundred seventeen'), (16133, 5730, 'five thousand seven hundred thirty'), (16134, 94254, 'ninety-four thousand two hundred fifty-four'), (16135, 99119, 'ninety-nine thousand one hundred nineteen'), (16136, 2980, 'two thousand nine hundred eighty'), (16137, 98050, 'ninety-eight thousand fifty'), (16138, 40896, 'forty thousand eight hundred ninety-six'), (16139, 4640, 'four thousand six hundred forty'), (16140, 92837, 'ninety-two thousand eight hundred thirty-seven'), (16141, 14735, 'fourteen thousand seven hundred thirty-five'), (16142, 55717, 'fifty-five thousand seven hundred seventeen'), (16143, 23711, 'twenty-three thousand seven hundred eleven'), (16144, 78552, 'seventy-eight thousand five hundred fifty-two'), (16145, 32368, 'thirty-two thousand three hundred sixty-eight'), (16146, 97189, 'ninety-seven thousand one hundred eighty-nine'), (16147, 3220, 'three thousand two hundred twenty'), (16148, 20461, 'twenty thousand four hundred sixty-one'), (16149, 14066, 'fourteen thousand sixty-six'), (16150, 1397, 'one thousand three hundred ninety-seven'), (16151, 54977, 'fifty-four thousand nine hundred seventy-seven'), (16152, 52195, 'fifty-two thousand one hundred ninety-five'), (16153, 82346, 'eighty-two thousand three hundred forty-six'), (16154, 8844, 'eight thousand eight hundred forty-four'), (16155, 55534, 'fifty-five thousand five hundred thirty-four'), (16156, 12301, 'twelve thousand three hundred one'), (16157, 86108, 'eighty-six thousand one hundred eight'), (16158, 3085, 'three thousand eighty-five'), (16159, 12289, 'twelve thousand two hundred eighty-nine'), (16160, 89357, 'eighty-nine thousand three hundred fifty-seven'), (16161, 13666, 'thirteen thousand six hundred sixty-six'), (16162, 83477, 'eighty-three thousand four hundred seventy-seven'), (16163, 95107, 'ninety-five thousand one hundred seven'), (16164, 8315, 'eight thousand three hundred fifteen'), (16165, 44988, 'forty-four thousand nine hundred eighty-eight'), (16166, 94529, 'ninety-four thousand five hundred twenty-nine'), (16167, 3042, 'three thousand forty-two'), (16168, 61932, 'sixty-one thousand nine hundred thirty-two'), (16169, 59615, 'fifty-nine thousand six hundred fifteen'), (16170, 46488, 'forty-six thousand four hundred eighty-eight'), (16171, 41124, 'forty-one thousand one hundred twenty-four'), (16172, 71428, 'seventy-one thousand four hundred twenty-eight'), (16173, 40727, 'forty thousand seven hundred twenty-seven'), (16174, 89654, 'eighty-nine thousand six hundred fifty-four'), (16175, 27757, 'twenty-seven thousand seven hundred fifty-seven'), (16176, 85031, 'eighty-five thousand thirty-one'), (16177, 74155, 'seventy-four thousand one hundred fifty-five'), (16178, 26689, 'twenty-six thousand six hundred eighty-nine'), (16179, 44332, 'forty-four thousand three hundred thirty-two'), (16180, 92054, 'ninety-two thousand fifty-four'), (16181, 65503, 'sixty-five thousand five hundred three'), (16182, 39652, 'thirty-nine thousand six hundred fifty-two'), (16183, 69557, 'sixty-nine thousand five hundred fifty-seven'), (16184, 19050, 'nineteen thousand fifty'), (16185, 18021, 'eighteen thousand twenty-one'), (16186, 14458, 'fourteen thousand four hundred fifty-eight'), (16187, 76327, 'seventy-six thousand three hundred twenty-seven'), (16188, 79846, 'seventy-nine thousand eight hundred forty-six'), (16189, 19131, 'nineteen thousand one hundred thirty-one'), (16190, 5839, 'five thousand eight hundred thirty-nine'), (16191, 44043, 'forty-four thousand forty-three'), (16192, 63405, 'sixty-three thousand four hundred five'), (16193, 30066, 'thirty thousand sixty-six'), (16194, 47142, 'forty-seven thousand one hundred forty-two'), (16195, 87465, 'eighty-seven thousand four hundred sixty-five'), (16196, 57878, 'fifty-seven thousand eight hundred seventy-eight'), (16197, 23196, 'twenty-three thousand one hundred ninety-six'), (16198, 50816, 'fifty thousand eight hundred sixteen'), (16199, 38194, 'thirty-eight thousand one hundred ninety-four'), (16200, 84336, 'eighty-four thousand three hundred thirty-six'), (16201, 97601, 'ninety-seven thousand six hundred one'), (16202, 58317, 'fifty-eight thousand three hundred seventeen'), (16203, 97255, 'ninety-seven thousand two hundred fifty-five'), (16204, 8056, 'eight thousand fifty-six'), (16205, 95081, 'ninety-five thousand eighty-one'), (16206, 12946, 'twelve thousand nine hundred forty-six'), (16207, 74745, 'seventy-four thousand seven hundred forty-five'), (16208, 51215, 'fifty-one thousand two hundred fifteen'), (16209, 18338, 'eighteen thousand three hundred thirty-eight'), (16210, 93590, 'ninety-three thousand five hundred ninety'), (16211, 44736, 'forty-four thousand seven hundred thirty-six'), (16212, 18104, 'eighteen thousand one hundred four'), (16213, 66016, 'sixty-six thousand sixteen'), (16214, 60424, 'sixty thousand four hundred twenty-four'), (16215, 69008, 'sixty-nine thousand eight'), (16216, 2809, 'two thousand eight hundred nine'), (16217, 66904, 'sixty-six thousand nine hundred four'), (16218, 62527, 'sixty-two thousand five hundred twenty-seven'), (16219, 91785, 'ninety-one thousand seven hundred eighty-five'), (16220, 50726, 'fifty thousand seven hundred twenty-six'), (16221, 67174, 'sixty-seven thousand one hundred seventy-four'), (16222, 54032, 'fifty-four thousand thirty-two'), (16223, 17883, 'seventeen thousand eight hundred eighty-three'), (16224, 41373, 'forty-one thousand three hundred seventy-three'), (16225, 972, 'nine hundred seventy-two'), (16226, 88410, 'eighty-eight thousand four hundred ten'), (16227, 26306, 'twenty-six thousand three hundred six'), (16228, 43858, 'forty-three thousand eight hundred fifty-eight'), (16229, 27039, 'twenty-seven thousand thirty-nine'), (16230, 6953, 'six thousand nine hundred fifty-three'), (16231, 85665, 'eighty-five thousand six hundred sixty-five'), (16232, 52992, 'fifty-two thousand nine hundred ninety-two'), (16233, 59727, 'fifty-nine thousand seven hundred twenty-seven'), (16234, 45860, 'forty-five thousand eight hundred sixty'), (16235, 91271, 'ninety-one thousand two hundred seventy-one'), (16236, 60752, 'sixty thousand seven hundred fifty-two'), (16237, 87274, 'eighty-seven thousand two hundred seventy-four'), (16238, 87060, 'eighty-seven thousand sixty'), (16239, 77805, 'seventy-seven thousand eight hundred five'), (16240, 2814, 'two thousand eight hundred fourteen'), (16241, 59542, 'fifty-nine thousand five hundred forty-two'), (16242, 43225, 'forty-three thousand two hundred twenty-five'), (16243, 87456, 'eighty-seven thousand four hundred fifty-six'), (16244, 43361, 'forty-three thousand three hundred sixty-one'), (16245, 62392, 'sixty-two thousand three hundred ninety-two'), (16246, 31119, 'thirty-one thousand one hundred nineteen'), (16247, 72847, 'seventy-two thousand eight hundred forty-seven'), (16248, 49466, 'forty-nine thousand four hundred sixty-six'), (16249, 14930, 'fourteen thousand nine hundred thirty'), (16250, 55942, 'fifty-five thousand nine hundred forty-two'), (16251, 14274, 'fourteen thousand two hundred seventy-four'), (16252, 57987, 'fifty-seven thousand nine hundred eighty-seven'), (16253, 98842, 'ninety-eight thousand eight hundred forty-two'), (16254, 71280, 'seventy-one thousand two hundred eighty'), (16255, 91828, 'ninety-one thousand eight hundred twenty-eight'), (16256, 89036, 'eighty-nine thousand thirty-six'), (16257, 32711, 'thirty-two thousand seven hundred eleven'), (16258, 10873, 'ten thousand eight hundred seventy-three'), (16259, 29863, 'twenty-nine thousand eight hundred sixty-three'), (16260, 78799, 'seventy-eight thousand seven hundred ninety-nine'), (16261, 10873, 'ten thousand eight hundred seventy-three'), (16262, 90157, 'ninety thousand one hundred fifty-seven'), (16263, 5204, 'five thousand two hundred four'), (16264, 49483, 'forty-nine thousand four hundred eighty-three'), (16265, 45161, 'forty-five thousand one hundred sixty-one'), (16266, 65961, 'sixty-five thousand nine hundred sixty-one'), (16267, 43300, 'forty-three thousand three hundred'), (16268, 95356, 'ninety-five thousand three hundred fifty-six'), (16269, 72773, 'seventy-two thousand seven hundred seventy-three'), (16270, 54822, 'fifty-four thousand eight hundred twenty-two'), (16271, 2113, 'two thousand one hundred thirteen'), (16272, 5442, 'five thousand four hundred forty-two'), (16273, 66294, 'sixty-six thousand two hundred ninety-four'), (16274, 42545, 'forty-two thousand five hundred forty-five'), (16275, 59123, 'fifty-nine thousand one hundred twenty-three'), (16276, 69177, 'sixty-nine thousand one hundred seventy-seven'), (16277, 69706, 'sixty-nine thousand seven hundred six'), (16278, 27256, 'twenty-seven thousand two hundred fifty-six'), (16279, 26192, 'twenty-six thousand one hundred ninety-two'), (16280, 48549, 'forty-eight thousand five hundred forty-nine'), (16281, 23144, 'twenty-three thousand one hundred forty-four'), (16282, 651, 'six hundred fifty-one'), (16283, 37920, 'thirty-seven thousand nine hundred twenty'), (16284, 42319, 'forty-two thousand three hundred nineteen'), (16285, 34174, 'thirty-four thousand one hundred seventy-four'), (16286, 10483, 'ten thousand four hundred eighty-three'), (16287, 21220, 'twenty-one thousand two hundred twenty'), (16288, 84490, 'eighty-four thousand four hundred ninety'), (16289, 62444, 'sixty-two thousand four hundred forty-four'), (16290, 28703, 'twenty-eight thousand seven hundred three'), (16291, 75606, 'seventy-five thousand six hundred six'), (16292, 90353, 'ninety thousand three hundred fifty-three'), (16293, 33493, 'thirty-three thousand four hundred ninety-three'), (16294, 39382, 'thirty-nine thousand three hundred eighty-two'), (16295, 18619, 'eighteen thousand six hundred nineteen'), (16296, 59367, 'fifty-nine thousand three hundred sixty-seven'), (16297, 65457, 'sixty-five thousand four hundred fifty-seven'), (16298, 67637, 'sixty-seven thousand six hundred thirty-seven'), (16299, 96162, 'ninety-six thousand one hundred sixty-two'), (16300, 4175, 'four thousand one hundred seventy-five'), (16301, 33759, 'thirty-three thousand seven hundred fifty-nine'), (16302, 62597, 'sixty-two thousand five hundred ninety-seven'), (16303, 6885, 'six thousand eight hundred eighty-five'), (16304, 67623, 'sixty-seven thousand six hundred twenty-three'), (16305, 50288, 'fifty thousand two hundred eighty-eight'), (16306, 73792, 'seventy-three thousand seven hundred ninety-two'), (16307, 29088, 'twenty-nine thousand eighty-eight'), (16308, 61366, 'sixty-one thousand three hundred sixty-six'), (16309, 57577, 'fifty-seven thousand five hundred seventy-seven'), (16310, 35627, 'thirty-five thousand six hundred twenty-seven'), (16311, 33607, 'thirty-three thousand six hundred seven'), (16312, 38930, 'thirty-eight thousand nine hundred thirty'), (16313, 82055, 'eighty-two thousand fifty-five'), (16314, 83614, 'eighty-three thousand six hundred fourteen'), (16315, 30726, 'thirty thousand seven hundred twenty-six'), (16316, 83908, 'eighty-three thousand nine hundred eight'), (16317, 55766, 'fifty-five thousand seven hundred sixty-six'), (16318, 83773, 'eighty-three thousand seven hundred seventy-three'), (16319, 23891, 'twenty-three thousand eight hundred ninety-one'), (16320, 39398, 'thirty-nine thousand three hundred ninety-eight'), (16321, 67260, 'sixty-seven thousand two hundred sixty'), (16322, 80283, 'eighty thousand two hundred eighty-three'), (16323, 55617, 'fifty-five thousand six hundred seventeen'), (16324, 65215, 'sixty-five thousand two hundred fifteen'), (16325, 437, 'four hundred thirty-seven'), (16326, 56810, 'fifty-six thousand eight hundred ten'), (16327, 438, 'four hundred thirty-eight'), (16328, 88671, 'eighty-eight thousand six hundred seventy-one'), (16329, 29397, 'twenty-nine thousand three hundred ninety-seven'), (16330, 91946, 'ninety-one thousand nine hundred forty-six'), (16331, 1841, 'one thousand eight hundred forty-one'), (16332, 44648, 'forty-four thousand six hundred forty-eight'), (16333, 58631, 'fifty-eight thousand six hundred thirty-one'), (16334, 9334, 'nine thousand three hundred thirty-four'), (16335, 93055, 'ninety-three thousand fifty-five'), (16336, 70389, 'seventy thousand three hundred eighty-nine'), (16337, 86675, 'eighty-six thousand six hundred seventy-five'), (16338, 42012, 'forty-two thousand twelve'), (16339, 38035, 'thirty-eight thousand thirty-five'), (16340, 42707, 'forty-two thousand seven hundred seven'), (16341, 96258, 'ninety-six thousand two hundred fifty-eight'), (16342, 85244, 'eighty-five thousand two hundred forty-four'), (16343, 67037, 'sixty-seven thousand thirty-seven'), (16344, 15659, 'fifteen thousand six hundred fifty-nine'), (16345, 30025, 'thirty thousand twenty-five'), (16346, 26793, 'twenty-six thousand seven hundred ninety-three'), (16347, 15654, 'fifteen thousand six hundred fifty-four'), (16348, 15482, 'fifteen thousand four hundred eighty-two'), (16349, 35324, 'thirty-five thousand three hundred twenty-four'), (16350, 90616, 'ninety thousand six hundred sixteen'), (16351, 7671, 'seven thousand six hundred seventy-one'), (16352, 89670, 'eighty-nine thousand six hundred seventy'), (16353, 60029, 'sixty thousand twenty-nine'), (16354, 83944, 'eighty-three thousand nine hundred forty-four'), (16355, 79726, 'seventy-nine thousand seven hundred twenty-six'), (16356, 75123, 'seventy-five thousand one hundred twenty-three'), (16357, 94220, 'ninety-four thousand two hundred twenty'), (16358, 1618, 'one thousand six hundred eighteen'), (16359, 1007, 'one thousand seven'), (16360, 8037, 'eight thousand thirty-seven'), (16361, 15157, 'fifteen thousand one hundred fifty-seven'), (16362, 76616, 'seventy-six thousand six hundred sixteen'), (16363, 52655, 'fifty-two thousand six hundred fifty-five'), (16364, 53270, 'fifty-three thousand two hundred seventy'), (16365, 67386, 'sixty-seven thousand three hundred eighty-six'), (16366, 13735, 'thirteen thousand seven hundred thirty-five'), (16367, 4217, 'four thousand two hundred seventeen'), (16368, 36915, 'thirty-six thousand nine hundred fifteen'), (16369, 93171, 'ninety-three thousand one hundred seventy-one'), (16370, 42370, 'forty-two thousand three hundred seventy'), (16371, 45498, 'forty-five thousand four hundred ninety-eight'), (16372, 65950, 'sixty-five thousand nine hundred fifty'), (16373, 70214, 'seventy thousand two hundred fourteen'), (16374, 55707, 'fifty-five thousand seven hundred seven'), (16375, 77836, 'seventy-seven thousand eight hundred thirty-six'), (16376, 30633, 'thirty thousand six hundred thirty-three'), (16377, 47063, 'forty-seven thousand sixty-three'), (16378, 37314, 'thirty-seven thousand three hundred fourteen'), (16379, 75521, 'seventy-five thousand five hundred twenty-one'), (16380, 54752, 'fifty-four thousand seven hundred fifty-two'), (16381, 52610, 'fifty-two thousand six hundred ten'), (16382, 55893, 'fifty-five thousand eight hundred ninety-three'), (16383, 34842, 'thirty-four thousand eight hundred forty-two'), (16384, 77317, 'seventy-seven thousand three hundred seventeen'), (16385, 37717, 'thirty-seven thousand seven hundred seventeen'), (16386, 8909, 'eight thousand nine hundred nine'), (16387, 53752, 'fifty-three thousand seven hundred fifty-two'), (16388, 4216, 'four thousand two hundred sixteen'), (16389, 69445, 'sixty-nine thousand four hundred forty-five'), (16390, 24744, 'twenty-four thousand seven hundred forty-four'), (16391, 689, 'six hundred eighty-nine'), (16392, 73776, 'seventy-three thousand seven hundred seventy-six'), (16393, 35784, 'thirty-five thousand seven hundred eighty-four'), (16394, 26517, 'twenty-six thousand five hundred seventeen'), (16395, 36715, 'thirty-six thousand seven hundred fifteen'), (16396, 62011, 'sixty-two thousand eleven'), (16397, 82038, 'eighty-two thousand thirty-eight'), (16398, 65734, 'sixty-five thousand seven hundred thirty-four'), (16399, 99683, 'ninety-nine thousand six hundred eighty-three'), (16400, 92561, 'ninety-two thousand five hundred sixty-one'), (16401, 81422, 'eighty-one thousand four hundred twenty-two'), (16402, 89360, 'eighty-nine thousand three hundred sixty'), (16403, 71584, 'seventy-one thousand five hundred eighty-four'), (16404, 67622, 'sixty-seven thousand six hundred twenty-two'), (16405, 16749, 'sixteen thousand seven hundred forty-nine'), (16406, 68108, 'sixty-eight thousand one hundred eight'), (16407, 40276, 'forty thousand two hundred seventy-six'), (16408, 88928, 'eighty-eight thousand nine hundred twenty-eight'), (16409, 53328, 'fifty-three thousand three hundred twenty-eight'), (16410, 13428, 'thirteen thousand four hundred twenty-eight'), (16411, 51950, 'fifty-one thousand nine hundred fifty'), (16412, 56220, 'fifty-six thousand two hundred twenty'), (16413, 84591, 'eighty-four thousand five hundred ninety-one'), (16414, 48035, 'forty-eight thousand thirty-five'), (16415, 98654, 'ninety-eight thousand six hundred fifty-four'), (16416, 3088, 'three thousand eighty-eight'), (16417, 73261, 'seventy-three thousand two hundred sixty-one'), (16418, 61489, 'sixty-one thousand four hundred eighty-nine'), (16419, 52502, 'fifty-two thousand five hundred two'), (16420, 58633, 'fifty-eight thousand six hundred thirty-three'), (16421, 88204, 'eighty-eight thousand two hundred four'), (16422, 41549, 'forty-one thousand five hundred forty-nine'), (16423, 55414, 'fifty-five thousand four hundred fourteen'), (16424, 40902, 'forty thousand nine hundred two'), (16425, 89970, 'eighty-nine thousand nine hundred seventy'), (16426, 73233, 'seventy-three thousand two hundred thirty-three'), (16427, 80971, 'eighty thousand nine hundred seventy-one'), (16428, 88587, 'eighty-eight thousand five hundred eighty-seven'), (16429, 34164, 'thirty-four thousand one hundred sixty-four'), (16430, 23612, 'twenty-three thousand six hundred twelve'), (16431, 71749, 'seventy-one thousand seven hundred forty-nine'), (16432, 98149, 'ninety-eight thousand one hundred forty-nine'), (16433, 48951, 'forty-eight thousand nine hundred fifty-one'), (16434, 90645, 'ninety thousand six hundred forty-five'), (16435, 50664, 'fifty thousand six hundred sixty-four'), (16436, 23111, 'twenty-three thousand one hundred eleven'), (16437, 18775, 'eighteen thousand seven hundred seventy-five'), (16438, 34702, 'thirty-four thousand seven hundred two'), (16439, 87310, 'eighty-seven thousand three hundred ten'), (16440, 77109, 'seventy-seven thousand one hundred nine'), (16441, 96710, 'ninety-six thousand seven hundred ten'), (16442, 65213, 'sixty-five thousand two hundred thirteen'), (16443, 77656, 'seventy-seven thousand six hundred fifty-six'), (16444, 33076, 'thirty-three thousand seventy-six'), (16445, 54161, 'fifty-four thousand one hundred sixty-one'), (16446, 2367, 'two thousand three hundred sixty-seven'), (16447, 21023, 'twenty-one thousand twenty-three'), (16448, 16137, 'sixteen thousand one hundred thirty-seven'), (16449, 68626, 'sixty-eight thousand six hundred twenty-six'), (16450, 41773, 'forty-one thousand seven hundred seventy-three'), (16451, 72723, 'seventy-two thousand seven hundred twenty-three'), (16452, 39225, 'thirty-nine thousand two hundred twenty-five'), (16453, 89941, 'eighty-nine thousand nine hundred forty-one'), (16454, 38076, 'thirty-eight thousand seventy-six'), (16455, 94996, 'ninety-four thousand nine hundred ninety-six'), (16456, 30319, 'thirty thousand three hundred nineteen'), (16457, 33596, 'thirty-three thousand five hundred ninety-six'), (16458, 45240, 'forty-five thousand two hundred forty'), (16459, 87914, 'eighty-seven thousand nine hundred fourteen'), (16460, 31557, 'thirty-one thousand five hundred fifty-seven'), (16461, 20954, 'twenty thousand nine hundred fifty-four'), (16462, 48338, 'forty-eight thousand three hundred thirty-eight'), (16463, 80992, 'eighty thousand nine hundred ninety-two'), (16464, 70979, 'seventy thousand nine hundred seventy-nine'), (16465, 42578, 'forty-two thousand five hundred seventy-eight'), (16466, 50789, 'fifty thousand seven hundred eighty-nine'), (16467, 59835, 'fifty-nine thousand eight hundred thirty-five'), (16468, 64635, 'sixty-four thousand six hundred thirty-five'), (16469, 81816, 'eighty-one thousand eight hundred sixteen'), (16470, 70787, 'seventy thousand seven hundred eighty-seven'), (16471, 97583, 'ninety-seven thousand five hundred eighty-three'), (16472, 93716, 'ninety-three thousand seven hundred sixteen'), (16473, 91414, 'ninety-one thousand four hundred fourteen'), (16474, 40471, 'forty thousand four hundred seventy-one'), (16475, 91223, 'ninety-one thousand two hundred twenty-three'), (16476, 90427, 'ninety thousand four hundred twenty-seven'), (16477, 3320, 'three thousand three hundred twenty'), (16478, 56499, 'fifty-six thousand four hundred ninety-nine'), (16479, 85799, 'eighty-five thousand seven hundred ninety-nine'), (16480, 51833, 'fifty-one thousand eight hundred thirty-three'), (16481, 71941, 'seventy-one thousand nine hundred forty-one'), (16482, 66293, 'sixty-six thousand two hundred ninety-three'), (16483, 40203, 'forty thousand two hundred three'), (16484, 46343, 'forty-six thousand three hundred forty-three'), (16485, 9820, 'nine thousand eight hundred twenty'), (16486, 19316, 'nineteen thousand three hundred sixteen'), (16487, 18298, 'eighteen thousand two hundred ninety-eight'), (16488, 36507, 'thirty-six thousand five hundred seven'), (16489, 26218, 'twenty-six thousand two hundred eighteen'), (16490, 63782, 'sixty-three thousand seven hundred eighty-two'), (16491, 18218, 'eighteen thousand two hundred eighteen'), (16492, 95986, 'ninety-five thousand nine hundred eighty-six'), (16493, 67780, 'sixty-seven thousand seven hundred eighty'), (16494, 12942, 'twelve thousand nine hundred forty-two'), (16495, 32681, 'thirty-two thousand six hundred eighty-one'), (16496, 80359, 'eighty thousand three hundred fifty-nine'), (16497, 24729, 'twenty-four thousand seven hundred twenty-nine'), (16498, 27548, 'twenty-seven thousand five hundred forty-eight'), (16499, 48161, 'forty-eight thousand one hundred sixty-one'), (16500, 50494, 'fifty thousand four hundred ninety-four'), (16501, 48162, 'forty-eight thousand one hundred sixty-two'), (16502, 33647, 'thirty-three thousand six hundred forty-seven'), (16503, 58346, 'fifty-eight thousand three hundred forty-six'), (16504, 19370, 'nineteen thousand three hundred seventy'), (16505, 75765, 'seventy-five thousand seven hundred sixty-five'), (16506, 45323, 'forty-five thousand three hundred twenty-three'), (16507, 67482, 'sixty-seven thousand four hundred eighty-two'), (16508, 37911, 'thirty-seven thousand nine hundred eleven'), (16509, 56614, 'fifty-six thousand six hundred fourteen'), (16510, 65081, 'sixty-five thousand eighty-one'), (16511, 67355, 'sixty-seven thousand three hundred fifty-five'), (16512, 72157, 'seventy-two thousand one hundred fifty-seven'), (16513, 64123, 'sixty-four thousand one hundred twenty-three'), (16514, 7643, 'seven thousand six hundred forty-three'), (16515, 42302, 'forty-two thousand three hundred two'), (16516, 80053, 'eighty thousand fifty-three'), (16517, 92982, 'ninety-two thousand nine hundred eighty-two'), (16518, 432, 'four hundred thirty-two'), (16519, 37292, 'thirty-seven thousand two hundred ninety-two'), (16520, 94118, 'ninety-four thousand one hundred eighteen'), (16521, 70572, 'seventy thousand five hundred seventy-two'), (16522, 81383, 'eighty-one thousand three hundred eighty-three'), (16523, 21709, 'twenty-one thousand seven hundred nine'), (16524, 55450, 'fifty-five thousand four hundred fifty'), (16525, 5086, 'five thousand eighty-six'), (16526, 66669, 'sixty-six thousand six hundred sixty-nine'), (16527, 42869, 'forty-two thousand eight hundred sixty-nine'), (16528, 72745, 'seventy-two thousand seven hundred forty-five'), (16529, 14828, 'fourteen thousand eight hundred twenty-eight'), (16530, 4621, 'four thousand six hundred twenty-one'), (16531, 47935, 'forty-seven thousand nine hundred thirty-five'), (16532, 31775, 'thirty-one thousand seven hundred seventy-five'), (16533, 55028, 'fifty-five thousand twenty-eight'), (16534, 47991, 'forty-seven thousand nine hundred ninety-one'), (16535, 62429, 'sixty-two thousand four hundred twenty-nine'), (16536, 97285, 'ninety-seven thousand two hundred eighty-five'), (16537, 32210, 'thirty-two thousand two hundred ten'), (16538, 22698, 'twenty-two thousand six hundred ninety-eight'), (16539, 81414, 'eighty-one thousand four hundred fourteen'), (16540, 82896, 'eighty-two thousand eight hundred ninety-six'), (16541, 20290, 'twenty thousand two hundred ninety'), (16542, 39712, 'thirty-nine thousand seven hundred twelve'), (16543, 65256, 'sixty-five thousand two hundred fifty-six'), (16544, 5118, 'five thousand one hundred eighteen'), (16545, 39196, 'thirty-nine thousand one hundred ninety-six'), (16546, 40806, 'forty thousand eight hundred six'), (16547, 62391, 'sixty-two thousand three hundred ninety-one'), (16548, 50223, 'fifty thousand two hundred twenty-three'), (16549, 43614, 'forty-three thousand six hundred fourteen'), (16550, 3586, 'three thousand five hundred eighty-six'), (16551, 3193, 'three thousand one hundred ninety-three'), (16552, 84122, 'eighty-four thousand one hundred twenty-two'), (16553, 22070, 'twenty-two thousand seventy'), (16554, 68449, 'sixty-eight thousand four hundred forty-nine'), (16555, 95168, 'ninety-five thousand one hundred sixty-eight'), (16556, 77287, 'seventy-seven thousand two hundred eighty-seven'), (16557, 83653, 'eighty-three thousand six hundred fifty-three'), (16558, 12220, 'twelve thousand two hundred twenty'), (16559, 58862, 'fifty-eight thousand eight hundred sixty-two'), (16560, 34558, 'thirty-four thousand five hundred fifty-eight'), (16561, 96997, 'ninety-six thousand nine hundred ninety-seven'), (16562, 18883, 'eighteen thousand eight hundred eighty-three'), (16563, 69662, 'sixty-nine thousand six hundred sixty-two'), (16564, 62622, 'sixty-two thousand six hundred twenty-two'), (16565, 70972, 'seventy thousand nine hundred seventy-two'), (16566, 37525, 'thirty-seven thousand five hundred twenty-five'), (16567, 38447, 'thirty-eight thousand four hundred forty-seven'), (16568, 76784, 'seventy-six thousand seven hundred eighty-four'), (16569, 53760, 'fifty-three thousand seven hundred sixty'), (16570, 79674, 'seventy-nine thousand six hundred seventy-four'), (16571, 59939, 'fifty-nine thousand nine hundred thirty-nine'), (16572, 7210, 'seven thousand two hundred ten'), (16573, 29992, 'twenty-nine thousand nine hundred ninety-two'), (16574, 64170, 'sixty-four thousand one hundred seventy'), (16575, 87277, 'eighty-seven thousand two hundred seventy-seven'), (16576, 74012, 'seventy-four thousand twelve'), (16577, 62299, 'sixty-two thousand two hundred ninety-nine'), (16578, 968, 'nine hundred sixty-eight'), (16579, 73274, 'seventy-three thousand two hundred seventy-four'), (16580, 75610, 'seventy-five thousand six hundred ten'), (16581, 49036, 'forty-nine thousand thirty-six'), (16582, 75544, 'seventy-five thousand five hundred forty-four'), (16583, 8656, 'eight thousand six hundred fifty-six'), (16584, 98333, 'ninety-eight thousand three hundred thirty-three'), (16585, 90721, 'ninety thousand seven hundred twenty-one'), (16586, 83856, 'eighty-three thousand eight hundred fifty-six'), (16587, 6477, 'six thousand four hundred seventy-seven'), (16588, 25813, 'twenty-five thousand eight hundred thirteen'), (16589, 94111, 'ninety-four thousand one hundred eleven'), (16590, 53899, 'fifty-three thousand eight hundred ninety-nine'), (16591, 87576, 'eighty-seven thousand five hundred seventy-six'), (16592, 37205, 'thirty-seven thousand two hundred five'), (16593, 66518, 'sixty-six thousand five hundred eighteen'), (16594, 49213, 'forty-nine thousand two hundred thirteen'), (16595, 3034, 'three thousand thirty-four'), (16596, 97592, 'ninety-seven thousand five hundred ninety-two'), (16597, 49342, 'forty-nine thousand three hundred forty-two'), (16598, 43565, 'forty-three thousand five hundred sixty-five'), (16599, 34861, 'thirty-four thousand eight hundred sixty-one'), (16600, 54894, 'fifty-four thousand eight hundred ninety-four'), (16601, 95894, 'ninety-five thousand eight hundred ninety-four'), (16602, 33603, 'thirty-three thousand six hundred three'), (16603, 17876, 'seventeen thousand eight hundred seventy-six'), (16604, 37795, 'thirty-seven thousand seven hundred ninety-five'), (16605, 1571, 'one thousand five hundred seventy-one'), (16606, 52715, 'fifty-two thousand seven hundred fifteen'), (16607, 44981, 'forty-four thousand nine hundred eighty-one'), (16608, 13627, 'thirteen thousand six hundred twenty-seven'), (16609, 23786, 'twenty-three thousand seven hundred eighty-six'), (16610, 67684, 'sixty-seven thousand six hundred eighty-four'), (16611, 31972, 'thirty-one thousand nine hundred seventy-two'), (16612, 45826, 'forty-five thousand eight hundred twenty-six'), (16613, 33690, 'thirty-three thousand six hundred ninety'), (16614, 24457, 'twenty-four thousand four hundred fifty-seven'), (16615, 7291, 'seven thousand two hundred ninety-one'), (16616, 30936, 'thirty thousand nine hundred thirty-six'), (16617, 92212, 'ninety-two thousand two hundred twelve'), (16618, 12305, 'twelve thousand three hundred five'), (16619, 26396, 'twenty-six thousand three hundred ninety-six'), (16620, 42394, 'forty-two thousand three hundred ninety-four'), (16621, 87865, 'eighty-seven thousand eight hundred sixty-five'), (16622, 65060, 'sixty-five thousand sixty'), (16623, 82099, 'eighty-two thousand ninety-nine'), (16624, 45080, 'forty-five thousand eighty'), (16625, 29100, 'twenty-nine thousand one hundred'), (16626, 32059, 'thirty-two thousand fifty-nine'), (16627, 41599, 'forty-one thousand five hundred ninety-nine'), (16628, 64331, 'sixty-four thousand three hundred thirty-one'), (16629, 48273, 'forty-eight thousand two hundred seventy-three'), (16630, 11325, 'eleven thousand three hundred twenty-five'), (16631, 15835, 'fifteen thousand eight hundred thirty-five'), (16632, 59196, 'fifty-nine thousand one hundred ninety-six'), (16633, 80805, 'eighty thousand eight hundred five'), (16634, 42990, 'forty-two thousand nine hundred ninety'), (16635, 63146, 'sixty-three thousand one hundred forty-six'), (16636, 5053, 'five thousand fifty-three'), (16637, 27481, 'twenty-seven thousand four hundred eighty-one'), (16638, 15489, 'fifteen thousand four hundred eighty-nine'), (16639, 53241, 'fifty-three thousand two hundred forty-one'), (16640, 35502, 'thirty-five thousand five hundred two'), (16641, 97716, 'ninety-seven thousand seven hundred sixteen'), (16642, 29715, 'twenty-nine thousand seven hundred fifteen'), (16643, 50003, 'fifty thousand three'), (16644, 70356, 'seventy thousand three hundred fifty-six'), (16645, 99225, 'ninety-nine thousand two hundred twenty-five'), (16646, 95867, 'ninety-five thousand eight hundred sixty-seven'), (16647, 25365, 'twenty-five thousand three hundred sixty-five'), (16648, 87161, 'eighty-seven thousand one hundred sixty-one'), (16649, 10321, 'ten thousand three hundred twenty-one'), (16650, 89143, 'eighty-nine thousand one hundred forty-three'), (16651, 77604, 'seventy-seven thousand six hundred four'), (16652, 76229, 'seventy-six thousand two hundred twenty-nine'), (16653, 8943, 'eight thousand nine hundred forty-three'), (16654, 91992, 'ninety-one thousand nine hundred ninety-two'), (16655, 60568, 'sixty thousand five hundred sixty-eight'), (16656, 58897, 'fifty-eight thousand eight hundred ninety-seven'), (16657, 50100, 'fifty thousand one hundred'), (16658, 25836, 'twenty-five thousand eight hundred thirty-six'), (16659, 9845, 'nine thousand eight hundred forty-five'), (16660, 77823, 'seventy-seven thousand eight hundred twenty-three'), (16661, 95567, 'ninety-five thousand five hundred sixty-seven'), (16662, 5665, 'five thousand six hundred sixty-five'), (16663, 47644, 'forty-seven thousand six hundred forty-four'), (16664, 78534, 'seventy-eight thousand five hundred thirty-four'), (16665, 98272, 'ninety-eight thousand two hundred seventy-two'), (16666, 71964, 'seventy-one thousand nine hundred sixty-four'), (16667, 56251, 'fifty-six thousand two hundred fifty-one'), (16668, 11740, 'eleven thousand seven hundred forty'), (16669, 36362, 'thirty-six thousand three hundred sixty-two'), (16670, 1351, 'one thousand three hundred fifty-one'), (16671, 99147, 'ninety-nine thousand one hundred forty-seven'), (16672, 5910, 'five thousand nine hundred ten'), (16673, 20392, 'twenty thousand three hundred ninety-two'), (16674, 10597, 'ten thousand five hundred ninety-seven'), (16675, 80237, 'eighty thousand two hundred thirty-seven'), (16676, 22963, 'twenty-two thousand nine hundred sixty-three'), (16677, 20732, 'twenty thousand seven hundred thirty-two'), (16678, 29366, 'twenty-nine thousand three hundred sixty-six'), (16679, 32, 'thirty-two'), (16680, 76150, 'seventy-six thousand one hundred fifty'), (16681, 10297, 'ten thousand two hundred ninety-seven'), (16682, 4496, 'four thousand four hundred ninety-six'), (16683, 91830, 'ninety-one thousand eight hundred thirty'), (16684, 79050, 'seventy-nine thousand fifty'), (16685, 32127, 'thirty-two thousand one hundred twenty-seven'), (16686, 2648, 'two thousand six hundred forty-eight'), (16687, 16962, 'sixteen thousand nine hundred sixty-two'), (16688, 94946, 'ninety-four thousand nine hundred forty-six'), (16689, 78936, 'seventy-eight thousand nine hundred thirty-six'), (16690, 56866, 'fifty-six thousand eight hundred sixty-six'), (16691, 77976, 'seventy-seven thousand nine hundred seventy-six'), (16692, 6955, 'six thousand nine hundred fifty-five'), (16693, 59775, 'fifty-nine thousand seven hundred seventy-five'), (16694, 26897, 'twenty-six thousand eight hundred ninety-seven'), (16695, 73649, 'seventy-three thousand six hundred forty-nine'), (16696, 96955, 'ninety-six thousand nine hundred fifty-five'), (16697, 6287, 'six thousand two hundred eighty-seven'), (16698, 50941, 'fifty thousand nine hundred forty-one'), (16699, 71342, 'seventy-one thousand three hundred forty-two'), (16700, 20010, 'twenty thousand ten'), (16701, 24081, 'twenty-four thousand eighty-one'), (16702, 94590, 'ninety-four thousand five hundred ninety'), (16703, 69908, 'sixty-nine thousand nine hundred eight'), (16704, 46576, 'forty-six thousand five hundred seventy-six'), (16705, 89833, 'eighty-nine thousand eight hundred thirty-three'), (16706, 13367, 'thirteen thousand three hundred sixty-seven'), (16707, 49059, 'forty-nine thousand fifty-nine'), (16708, 3060, 'three thousand sixty'), (16709, 86590, 'eighty-six thousand five hundred ninety'), (16710, 48071, 'forty-eight thousand seventy-one'), (16711, 49325, 'forty-nine thousand three hundred twenty-five'), (16712, 57486, 'fifty-seven thousand four hundred eighty-six'), (16713, 31330, 'thirty-one thousand three hundred thirty'), (16714, 23312, 'twenty-three thousand three hundred twelve'), (16715, 47545, 'forty-seven thousand five hundred forty-five'), (16716, 33706, 'thirty-three thousand seven hundred six'), (16717, 85785, 'eighty-five thousand seven hundred eighty-five'), (16718, 13463, 'thirteen thousand four hundred sixty-three'), (16719, 33548, 'thirty-three thousand five hundred forty-eight'), (16720, 48986, 'forty-eight thousand nine hundred eighty-six'), (16721, 63924, 'sixty-three thousand nine hundred twenty-four'), (16722, 40236, 'forty thousand two hundred thirty-six'), (16723, 11759, 'eleven thousand seven hundred fifty-nine'), (16724, 54573, 'fifty-four thousand five hundred seventy-three'), (16725, 63626, 'sixty-three thousand six hundred twenty-six'), (16726, 3023, 'three thousand twenty-three'), (16727, 26456, 'twenty-six thousand four hundred fifty-six'), (16728, 73494, 'seventy-three thousand four hundred ninety-four'), (16729, 85219, 'eighty-five thousand two hundred nineteen'), (16730, 20045, 'twenty thousand forty-five'), (16731, 6444, 'six thousand four hundred forty-four'), (16732, 53572, 'fifty-three thousand five hundred seventy-two'), (16733, 224, 'two hundred twenty-four'), (16734, 80802, 'eighty thousand eight hundred two'), (16735, 50393, 'fifty thousand three hundred ninety-three'), (16736, 72125, 'seventy-two thousand one hundred twenty-five'), (16737, 95693, 'ninety-five thousand six hundred ninety-three'), (16738, 90252, 'ninety thousand two hundred fifty-two'), (16739, 94316, 'ninety-four thousand three hundred sixteen'), (16740, 96754, 'ninety-six thousand seven hundred fifty-four'), (16741, 96154, 'ninety-six thousand one hundred fifty-four'), (16742, 82511, 'eighty-two thousand five hundred eleven'), (16743, 35499, 'thirty-five thousand four hundred ninety-nine'), (16744, 69425, 'sixty-nine thousand four hundred twenty-five'), (16745, 82509, 'eighty-two thousand five hundred nine'), (16746, 66258, 'sixty-six thousand two hundred fifty-eight'), (16747, 66468, 'sixty-six thousand four hundred sixty-eight'), (16748, 758, 'seven hundred fifty-eight'), (16749, 96114, 'ninety-six thousand one hundred fourteen'), (16750, 55282, 'fifty-five thousand two hundred eighty-two'), (16751, 21404, 'twenty-one thousand four hundred four'), (16752, 31650, 'thirty-one thousand six hundred fifty'), (16753, 89569, 'eighty-nine thousand five hundred sixty-nine'), (16754, 17534, 'seventeen thousand five hundred thirty-four'), (16755, 71289, 'seventy-one thousand two hundred eighty-nine'), (16756, 79638, 'seventy-nine thousand six hundred thirty-eight'), (16757, 26632, 'twenty-six thousand six hundred thirty-two'), (16758, 75796, 'seventy-five thousand seven hundred ninety-six'), (16759, 66222, 'sixty-six thousand two hundred twenty-two'), (16760, 895, 'eight hundred ninety-five'), (16761, 74284, 'seventy-four thousand two hundred eighty-four'), (16762, 5200, 'five thousand two hundred'), (16763, 28231, 'twenty-eight thousand two hundred thirty-one'), (16764, 50740, 'fifty thousand seven hundred forty'), (16765, 38771, 'thirty-eight thousand seven hundred seventy-one'), (16766, 21789, 'twenty-one thousand seven hundred eighty-nine'), (16767, 29552, 'twenty-nine thousand five hundred fifty-two'), (16768, 34713, 'thirty-four thousand seven hundred thirteen'), (16769, 29363, 'twenty-nine thousand three hundred sixty-three'), (16770, 35504, 'thirty-five thousand five hundred four'), (16771, 36599, 'thirty-six thousand five hundred ninety-nine'), (16772, 97777, 'ninety-seven thousand seven hundred seventy-seven'), (16773, 38018, 'thirty-eight thousand eighteen'), (16774, 26574, 'twenty-six thousand five hundred seventy-four'), (16775, 93001, 'ninety-three thousand one'), (16776, 8248, 'eight thousand two hundred forty-eight'), (16777, 48301, 'forty-eight thousand three hundred one'), (16778, 92101, 'ninety-two thousand one hundred one'), (16779, 59231, 'fifty-nine thousand two hundred thirty-one'), (16780, 73737, 'seventy-three thousand seven hundred thirty-seven'), (16781, 20087, 'twenty thousand eighty-seven'), (16782, 85653, 'eighty-five thousand six hundred fifty-three'), (16783, 98769, 'ninety-eight thousand seven hundred sixty-nine'), (16784, 99625, 'ninety-nine thousand six hundred twenty-five'), (16785, 79337, 'seventy-nine thousand three hundred thirty-seven'), (16786, 88711, 'eighty-eight thousand seven hundred eleven'), (16787, 9546, 'nine thousand five hundred forty-six'), (16788, 91864, 'ninety-one thousand eight hundred sixty-four'), (16789, 19490, 'nineteen thousand four hundred ninety'), (16790, 17966, 'seventeen thousand nine hundred sixty-six'), (16791, 98496, 'ninety-eight thousand four hundred ninety-six'), (16792, 59780, 'fifty-nine thousand seven hundred eighty'), (16793, 86695, 'eighty-six thousand six hundred ninety-five'), (16794, 43773, 'forty-three thousand seven hundred seventy-three'), (16795, 93708, 'ninety-three thousand seven hundred eight'), (16796, 51788, 'fifty-one thousand seven hundred eighty-eight'), (16797, 22670, 'twenty-two thousand six hundred seventy'), (16798, 3298, 'three thousand two hundred ninety-eight'), (16799, 56189, 'fifty-six thousand one hundred eighty-nine'), (16800, 80737, 'eighty thousand seven hundred thirty-seven'), (16801, 83858, 'eighty-three thousand eight hundred fifty-eight'), (16802, 63661, 'sixty-three thousand six hundred sixty-one'), (16803, 54273, 'fifty-four thousand two hundred seventy-three'), (16804, 69968, 'sixty-nine thousand nine hundred sixty-eight'), (16805, 93309, 'ninety-three thousand three hundred nine'), (16806, 36574, 'thirty-six thousand five hundred seventy-four'), (16807, 69948, 'sixty-nine thousand nine hundred forty-eight'), (16808, 53272, 'fifty-three thousand two hundred seventy-two'), (16809, 99938, 'ninety-nine thousand nine hundred thirty-eight'), (16810, 39910, 'thirty-nine thousand nine hundred ten'), (16811, 78303, 'seventy-eight thousand three hundred three'), (16812, 92131, 'ninety-two thousand one hundred thirty-one'), (16813, 30429, 'thirty thousand four hundred twenty-nine'), (16814, 5163, 'five thousand one hundred sixty-three'), (16815, 83452, 'eighty-three thousand four hundred fifty-two'), (16816, 67769, 'sixty-seven thousand seven hundred sixty-nine'), (16817, 4818, 'four thousand eight hundred eighteen'), (16818, 21035, 'twenty-one thousand thirty-five'), (16819, 7568, 'seven thousand five hundred sixty-eight'), (16820, 50553, 'fifty thousand five hundred fifty-three'), (16821, 46052, 'forty-six thousand fifty-two'), (16822, 92711, 'ninety-two thousand seven hundred eleven'), (16823, 56309, 'fifty-six thousand three hundred nine'), (16824, 83852, 'eighty-three thousand eight hundred fifty-two'), (16825, 77424, 'seventy-seven thousand four hundred twenty-four'), (16826, 71271, 'seventy-one thousand two hundred seventy-one'), (16827, 46684, 'forty-six thousand six hundred eighty-four'), (16828, 80565, 'eighty thousand five hundred sixty-five'), (16829, 53575, 'fifty-three thousand five hundred seventy-five'), (16830, 25129, 'twenty-five thousand one hundred twenty-nine'), (16831, 1358, 'one thousand three hundred fifty-eight'), (16832, 81577, 'eighty-one thousand five hundred seventy-seven'), (16833, 78030, 'seventy-eight thousand thirty'), (16834, 60487, 'sixty thousand four hundred eighty-seven'), (16835, 38143, 'thirty-eight thousand one hundred forty-three'), (16836, 26690, 'twenty-six thousand six hundred ninety'), (16837, 20257, 'twenty thousand two hundred fifty-seven'), (16838, 51050, 'fifty-one thousand fifty'), (16839, 84275, 'eighty-four thousand two hundred seventy-five'), (16840, 9355, 'nine thousand three hundred fifty-five'), (16841, 79084, 'seventy-nine thousand eighty-four'), (16842, 48511, 'forty-eight thousand five hundred eleven'), (16843, 38572, 'thirty-eight thousand five hundred seventy-two'), (16844, 17542, 'seventeen thousand five hundred forty-two'), (16845, 84312, 'eighty-four thousand three hundred twelve'), (16846, 84045, 'eighty-four thousand forty-five'), (16847, 34557, 'thirty-four thousand five hundred fifty-seven'), (16848, 43150, 'forty-three thousand one hundred fifty'), (16849, 30884, 'thirty thousand eight hundred eighty-four'), (16850, 79738, 'seventy-nine thousand seven hundred thirty-eight'), (16851, 59708, 'fifty-nine thousand seven hundred eight'), (16852, 79036, 'seventy-nine thousand thirty-six'), (16853, 7889, 'seven thousand eight hundred eighty-nine'), (16854, 59194, 'fifty-nine thousand one hundred ninety-four'), (16855, 59006, 'fifty-nine thousand six'), (16856, 61520, 'sixty-one thousand five hundred twenty'), (16857, 66134, 'sixty-six thousand one hundred thirty-four'), (16858, 55137, 'fifty-five thousand one hundred thirty-seven'), (16859, 78653, 'seventy-eight thousand six hundred fifty-three'), (16860, 144, 'one hundred forty-four'), (16861, 78111, 'seventy-eight thousand one hundred eleven'), (16862, 17291, 'seventeen thousand two hundred ninety-one'), (16863, 63251, 'sixty-three thousand two hundred fifty-one'), (16864, 50649, 'fifty thousand six hundred forty-nine'), (16865, 58273, 'fifty-eight thousand two hundred seventy-three'), (16866, 80823, 'eighty thousand eight hundred twenty-three'), (16867, 21500, 'twenty-one thousand five hundred'), (16868, 69765, 'sixty-nine thousand seven hundred sixty-five'), (16869, 96778, 'ninety-six thousand seven hundred seventy-eight'), (16870, 24095, 'twenty-four thousand ninety-five'), (16871, 2249, 'two thousand two hundred forty-nine'), (16872, 57226, 'fifty-seven thousand two hundred twenty-six'), (16873, 11711, 'eleven thousand seven hundred eleven'), (16874, 77965, 'seventy-seven thousand nine hundred sixty-five'), (16875, 50856, 'fifty thousand eight hundred fifty-six'), (16876, 81998, 'eighty-one thousand nine hundred ninety-eight'), (16877, 9088, 'nine thousand eighty-eight'), (16878, 55263, 'fifty-five thousand two hundred sixty-three'), (16879, 19610, 'nineteen thousand six hundred ten'), (16880, 8199, 'eight thousand one hundred ninety-nine'), (16881, 88536, 'eighty-eight thousand five hundred thirty-six'), (16882, 537, 'five hundred thirty-seven'), (16883, 84043, 'eighty-four thousand forty-three'), (16884, 72479, 'seventy-two thousand four hundred seventy-nine'), (16885, 99147, 'ninety-nine thousand one hundred forty-seven'), (16886, 80163, 'eighty thousand one hundred sixty-three'), (16887, 84818, 'eighty-four thousand eight hundred eighteen'), (16888, 26336, 'twenty-six thousand three hundred thirty-six'), (16889, 13715, 'thirteen thousand seven hundred fifteen'), (16890, 46663, 'forty-six thousand six hundred sixty-three'), (16891, 77217, 'seventy-seven thousand two hundred seventeen'), (16892, 32708, 'thirty-two thousand seven hundred eight'), (16893, 52817, 'fifty-two thousand eight hundred seventeen'), (16894, 3123, 'three thousand one hundred twenty-three'), (16895, 28899, 'twenty-eight thousand eight hundred ninety-nine'), (16896, 20344, 'twenty thousand three hundred forty-four'), (16897, 23896, 'twenty-three thousand eight hundred ninety-six'), (16898, 41436, 'forty-one thousand four hundred thirty-six'), (16899, 73642, 'seventy-three thousand six hundred forty-two'), (16900, 20949, 'twenty thousand nine hundred forty-nine'), (16901, 82973, 'eighty-two thousand nine hundred seventy-three'), (16902, 54094, 'fifty-four thousand ninety-four'), (16903, 61723, 'sixty-one thousand seven hundred twenty-three'), (16904, 53202, 'fifty-three thousand two hundred two'), (16905, 32281, 'thirty-two thousand two hundred eighty-one'), (16906, 18216, 'eighteen thousand two hundred sixteen'), (16907, 72970, 'seventy-two thousand nine hundred seventy'), (16908, 39624, 'thirty-nine thousand six hundred twenty-four'), (16909, 44485, 'forty-four thousand four hundred eighty-five'), (16910, 73003, 'seventy-three thousand three'), (16911, 38199, 'thirty-eight thousand one hundred ninety-nine'), (16912, 85191, 'eighty-five thousand one hundred ninety-one'), (16913, 35176, 'thirty-five thousand one hundred seventy-six'), (16914, 86845, 'eighty-six thousand eight hundred forty-five'), (16915, 75568, 'seventy-five thousand five hundred sixty-eight'), (16916, 51429, 'fifty-one thousand four hundred twenty-nine'), (16917, 83650, 'eighty-three thousand six hundred fifty'), (16918, 62219, 'sixty-two thousand two hundred nineteen'), (16919, 43170, 'forty-three thousand one hundred seventy'), (16920, 66911, 'sixty-six thousand nine hundred eleven'), (16921, 73434, 'seventy-three thousand four hundred thirty-four'), (16922, 69968, 'sixty-nine thousand nine hundred sixty-eight'), (16923, 74481, 'seventy-four thousand four hundred eighty-one'), (16924, 71262, 'seventy-one thousand two hundred sixty-two'), (16925, 92144, 'ninety-two thousand one hundred forty-four'), (16926, 43944, 'forty-three thousand nine hundred forty-four'), (16927, 40176, 'forty thousand one hundred seventy-six'), (16928, 21060, 'twenty-one thousand sixty'), (16929, 64531, 'sixty-four thousand five hundred thirty-one'), (16930, 59645, 'fifty-nine thousand six hundred forty-five'), (16931, 82117, 'eighty-two thousand one hundred seventeen'), (16932, 17350, 'seventeen thousand three hundred fifty'), (16933, 26518, 'twenty-six thousand five hundred eighteen'), (16934, 72553, 'seventy-two thousand five hundred fifty-three'), (16935, 75415, 'seventy-five thousand four hundred fifteen'), (16936, 91622, 'ninety-one thousand six hundred twenty-two'), (16937, 66857, 'sixty-six thousand eight hundred fifty-seven'), (16938, 21786, 'twenty-one thousand seven hundred eighty-six'), (16939, 47193, 'forty-seven thousand one hundred ninety-three'), (16940, 64820, 'sixty-four thousand eight hundred twenty'), (16941, 54833, 'fifty-four thousand eight hundred thirty-three'), (16942, 1033, 'one thousand thirty-three'), (16943, 50329, 'fifty thousand three hundred twenty-nine'), (16944, 40680, 'forty thousand six hundred eighty'), (16945, 79601, 'seventy-nine thousand six hundred one'), (16946, 50810, 'fifty thousand eight hundred ten'), (16947, 48369, 'forty-eight thousand three hundred sixty-nine'), (16948, 64124, 'sixty-four thousand one hundred twenty-four'), (16949, 96680, 'ninety-six thousand six hundred eighty'), (16950, 37033, 'thirty-seven thousand thirty-three'), (16951, 80560, 'eighty thousand five hundred sixty'), (16952, 80273, 'eighty thousand two hundred seventy-three'), (16953, 40447, 'forty thousand four hundred forty-seven'), (16954, 26470, 'twenty-six thousand four hundred seventy'), (16955, 69188, 'sixty-nine thousand one hundred eighty-eight'), (16956, 91406, 'ninety-one thousand four hundred six'), (16957, 17373, 'seventeen thousand three hundred seventy-three'), (16958, 96640, 'ninety-six thousand six hundred forty'), (16959, 95479, 'ninety-five thousand four hundred seventy-nine'), (16960, 84319, 'eighty-four thousand three hundred nineteen'), (16961, 80870, 'eighty thousand eight hundred seventy'), (16962, 5162, 'five thousand one hundred sixty-two'), (16963, 30566, 'thirty thousand five hundred sixty-six'), (16964, 9985, 'nine thousand nine hundred eighty-five'), (16965, 35200, 'thirty-five thousand two hundred'), (16966, 42246, 'forty-two thousand two hundred forty-six'), (16967, 7420, 'seven thousand four hundred twenty'), (16968, 75893, 'seventy-five thousand eight hundred ninety-three'), (16969, 42667, 'forty-two thousand six hundred sixty-seven'), (16970, 1333, 'one thousand three hundred thirty-three'), (16971, 4574, 'four thousand five hundred seventy-four'), (16972, 84825, 'eighty-four thousand eight hundred twenty-five'), (16973, 68546, 'sixty-eight thousand five hundred forty-six'), (16974, 91310, 'ninety-one thousand three hundred ten'), (16975, 94755, 'ninety-four thousand seven hundred fifty-five'), (16976, 63474, 'sixty-three thousand four hundred seventy-four'), (16977, 55404, 'fifty-five thousand four hundred four'), (16978, 67332, 'sixty-seven thousand three hundred thirty-two'), (16979, 51974, 'fifty-one thousand nine hundred seventy-four'), (16980, 4123, 'four thousand one hundred twenty-three'), (16981, 97780, 'ninety-seven thousand seven hundred eighty'), (16982, 7005, 'seven thousand five'), (16983, 95316, 'ninety-five thousand three hundred sixteen'), (16984, 21480, 'twenty-one thousand four hundred eighty'), (16985, 11413, 'eleven thousand four hundred thirteen'), (16986, 88116, 'eighty-eight thousand one hundred sixteen'), (16987, 40724, 'forty thousand seven hundred twenty-four'), (16988, 66342, 'sixty-six thousand three hundred forty-two'), (16989, 79624, 'seventy-nine thousand six hundred twenty-four'), (16990, 65664, 'sixty-five thousand six hundred sixty-four'), (16991, 89811, 'eighty-nine thousand eight hundred eleven'), (16992, 85186, 'eighty-five thousand one hundred eighty-six'), (16993, 70255, 'seventy thousand two hundred fifty-five'), (16994, 24962, 'twenty-four thousand nine hundred sixty-two'), (16995, 700, 'seven hundred'), (16996, 94613, 'ninety-four thousand six hundred thirteen'), (16997, 55395, 'fifty-five thousand three hundred ninety-five'), (16998, 41440, 'forty-one thousand four hundred forty'), (16999, 83895, 'eighty-three thousand eight hundred ninety-five'), (17000, 76898, 'seventy-six thousand eight hundred ninety-eight'), (17001, 65305, 'sixty-five thousand three hundred five'), (17002, 21110, 'twenty-one thousand one hundred ten'), (17003, 4343, 'four thousand three hundred forty-three'), (17004, 78814, 'seventy-eight thousand eight hundred fourteen'), (17005, 34056, 'thirty-four thousand fifty-six'), (17006, 17606, 'seventeen thousand six hundred six'), (17007, 54536, 'fifty-four thousand five hundred thirty-six'), (17008, 3280, 'three thousand two hundred eighty'), (17009, 33053, 'thirty-three thousand fifty-three'), (17010, 73540, 'seventy-three thousand five hundred forty'), (17011, 15375, 'fifteen thousand three hundred seventy-five'), (17012, 46052, 'forty-six thousand fifty-two'), (17013, 76222, 'seventy-six thousand two hundred twenty-two'), (17014, 90058, 'ninety thousand fifty-eight'), (17015, 30522, 'thirty thousand five hundred twenty-two'), (17016, 58042, 'fifty-eight thousand forty-two'), (17017, 71365, 'seventy-one thousand three hundred sixty-five'), (17018, 81584, 'eighty-one thousand five hundred eighty-four'), (17019, 95687, 'ninety-five thousand six hundred eighty-seven'), (17020, 901, 'nine hundred one'), (17021, 92202, 'ninety-two thousand two hundred two'), (17022, 68063, 'sixty-eight thousand sixty-three'), (17023, 15472, 'fifteen thousand four hundred seventy-two'), (17024, 92864, 'ninety-two thousand eight hundred sixty-four'), (17025, 85073, 'eighty-five thousand seventy-three'), (17026, 61548, 'sixty-one thousand five hundred forty-eight'), (17027, 88037, 'eighty-eight thousand thirty-seven'), (17028, 35407, 'thirty-five thousand four hundred seven'), (17029, 58611, 'fifty-eight thousand six hundred eleven'), (17030, 51455, 'fifty-one thousand four hundred fifty-five'), (17031, 97984, 'ninety-seven thousand nine hundred eighty-four'), (17032, 83554, 'eighty-three thousand five hundred fifty-four'), (17033, 31688, 'thirty-one thousand six hundred eighty-eight'), (17034, 57555, 'fifty-seven thousand five hundred fifty-five'), (17035, 54533, 'fifty-four thousand five hundred thirty-three'), (17036, 57271, 'fifty-seven thousand two hundred seventy-one'), (17037, 18957, 'eighteen thousand nine hundred fifty-seven'), (17038, 72477, 'seventy-two thousand four hundred seventy-seven'), (17039, 30217, 'thirty thousand two hundred seventeen'), (17040, 67737, 'sixty-seven thousand seven hundred thirty-seven'), (17041, 31267, 'thirty-one thousand two hundred sixty-seven'), (17042, 28796, 'twenty-eight thousand seven hundred ninety-six'), (17043, 56667, 'fifty-six thousand six hundred sixty-seven'), (17044, 39204, 'thirty-nine thousand two hundred four'), (17045, 11674, 'eleven thousand six hundred seventy-four'), (17046, 27446, 'twenty-seven thousand four hundred forty-six'), (17047, 41105, 'forty-one thousand one hundred five'), (17048, 98525, 'ninety-eight thousand five hundred twenty-five'), (17049, 89806, 'eighty-nine thousand eight hundred six'), (17050, 46997, 'forty-six thousand nine hundred ninety-seven'), (17051, 87564, 'eighty-seven thousand five hundred sixty-four'), (17052, 73223, 'seventy-three thousand two hundred twenty-three'), (17053, 31891, 'thirty-one thousand eight hundred ninety-one'), (17054, 66762, 'sixty-six thousand seven hundred sixty-two'), (17055, 30880, 'thirty thousand eight hundred eighty'), (17056, 76386, 'seventy-six thousand three hundred eighty-six'), (17057, 25093, 'twenty-five thousand ninety-three'), (17058, 94667, 'ninety-four thousand six hundred sixty-seven'), (17059, 8108, 'eight thousand one hundred eight'), (17060, 99325, 'ninety-nine thousand three hundred twenty-five'), (17061, 66480, 'sixty-six thousand four hundred eighty'), (17062, 66167, 'sixty-six thousand one hundred sixty-seven'), (17063, 74152, 'seventy-four thousand one hundred fifty-two'), (17064, 863, 'eight hundred sixty-three'), (17065, 638, 'six hundred thirty-eight'), (17066, 7758, 'seven thousand seven hundred fifty-eight'), (17067, 41152, 'forty-one thousand one hundred fifty-two'), (17068, 52229, 'fifty-two thousand two hundred twenty-nine'), (17069, 6799, 'six thousand seven hundred ninety-nine'), (17070, 26714, 'twenty-six thousand seven hundred fourteen'), (17071, 45046, 'forty-five thousand forty-six'), (17072, 3503, 'three thousand five hundred three'), (17073, 58650, 'fifty-eight thousand six hundred fifty'), (17074, 81376, 'eighty-one thousand three hundred seventy-six'), (17075, 33971, 'thirty-three thousand nine hundred seventy-one'), (17076, 8329, 'eight thousand three hundred twenty-nine'), (17077, 87736, 'eighty-seven thousand seven hundred thirty-six'), (17078, 54033, 'fifty-four thousand thirty-three'), (17079, 46063, 'forty-six thousand sixty-three'), (17080, 30563, 'thirty thousand five hundred sixty-three'), (17081, 56526, 'fifty-six thousand five hundred twenty-six'), (17082, 62197, 'sixty-two thousand one hundred ninety-seven'), (17083, 84182, 'eighty-four thousand one hundred eighty-two'), (17084, 89052, 'eighty-nine thousand fifty-two'), (17085, 56765, 'fifty-six thousand seven hundred sixty-five'), (17086, 73509, 'seventy-three thousand five hundred nine'), (17087, 86672, 'eighty-six thousand six hundred seventy-two'), (17088, 91559, 'ninety-one thousand five hundred fifty-nine'), (17089, 29836, 'twenty-nine thousand eight hundred thirty-six'), (17090, 81734, 'eighty-one thousand seven hundred thirty-four'), (17091, 7602, 'seven thousand six hundred two'), (17092, 19578, 'nineteen thousand five hundred seventy-eight'), (17093, 67603, 'sixty-seven thousand six hundred three'), (17094, 86777, 'eighty-six thousand seven hundred seventy-seven'), (17095, 68304, 'sixty-eight thousand three hundred four'), (17096, 74266, 'seventy-four thousand two hundred sixty-six'), (17097, 77659, 'seventy-seven thousand six hundred fifty-nine'), (17098, 84722, 'eighty-four thousand seven hundred twenty-two'), (17099, 90542, 'ninety thousand five hundred forty-two'), (17100, 78766, 'seventy-eight thousand seven hundred sixty-six'), (17101, 34798, 'thirty-four thousand seven hundred ninety-eight'), (17102, 34228, 'thirty-four thousand two hundred twenty-eight'), (17103, 54264, 'fifty-four thousand two hundred sixty-four'), (17104, 46084, 'forty-six thousand eighty-four'), (17105, 55182, 'fifty-five thousand one hundred eighty-two'), (17106, 32264, 'thirty-two thousand two hundred sixty-four'), (17107, 48309, 'forty-eight thousand three hundred nine'), (17108, 36498, 'thirty-six thousand four hundred ninety-eight'), (17109, 43392, 'forty-three thousand three hundred ninety-two'), (17110, 62051, 'sixty-two thousand fifty-one'), (17111, 45687, 'forty-five thousand six hundred eighty-seven'), (17112, 68579, 'sixty-eight thousand five hundred seventy-nine'), (17113, 93920, 'ninety-three thousand nine hundred twenty'), (17114, 13601, 'thirteen thousand six hundred one'), (17115, 82078, 'eighty-two thousand seventy-eight'), (17116, 69420, 'sixty-nine thousand four hundred twenty'), (17117, 76797, 'seventy-six thousand seven hundred ninety-seven'), (17118, 35405, 'thirty-five thousand four hundred five'), (17119, 63872, 'sixty-three thousand eight hundred seventy-two'), (17120, 91641, 'ninety-one thousand six hundred forty-one'), (17121, 70224, 'seventy thousand two hundred twenty-four'), (17122, 72907, 'seventy-two thousand nine hundred seven'), (17123, 8900, 'eight thousand nine hundred'), (17124, 43506, 'forty-three thousand five hundred six'), (17125, 88184, 'eighty-eight thousand one hundred eighty-four'), (17126, 14156, 'fourteen thousand one hundred fifty-six'), (17127, 83988, 'eighty-three thousand nine hundred eighty-eight'), (17128, 95863, 'ninety-five thousand eight hundred sixty-three'), (17129, 85501, 'eighty-five thousand five hundred one'), (17130, 25377, 'twenty-five thousand three hundred seventy-seven'), (17131, 42550, 'forty-two thousand five hundred fifty'), (17132, 23031, 'twenty-three thousand thirty-one'), (17133, 8499, 'eight thousand four hundred ninety-nine'), (17134, 88478, 'eighty-eight thousand four hundred seventy-eight'), (17135, 27972, 'twenty-seven thousand nine hundred seventy-two'), (17136, 95246, 'ninety-five thousand two hundred forty-six'), (17137, 32861, 'thirty-two thousand eight hundred sixty-one'), (17138, 81529, 'eighty-one thousand five hundred twenty-nine'), (17139, 84892, 'eighty-four thousand eight hundred ninety-two'), (17140, 86423, 'eighty-six thousand four hundred twenty-three'), (17141, 39653, 'thirty-nine thousand six hundred fifty-three'), (17142, 12833, 'twelve thousand eight hundred thirty-three'), (17143, 3016, 'three thousand sixteen'), (17144, 91532, 'ninety-one thousand five hundred thirty-two'), (17145, 98187, 'ninety-eight thousand one hundred eighty-seven'), (17146, 4900, 'four thousand nine hundred'), (17147, 22506, 'twenty-two thousand five hundred six'), (17148, 42714, 'forty-two thousand seven hundred fourteen'), (17149, 12858, 'twelve thousand eight hundred fifty-eight'), (17150, 86395, 'eighty-six thousand three hundred ninety-five'), (17151, 75314, 'seventy-five thousand three hundred fourteen'), (17152, 18464, 'eighteen thousand four hundred sixty-four'), (17153, 16178, 'sixteen thousand one hundred seventy-eight'), (17154, 55292, 'fifty-five thousand two hundred ninety-two'), (17155, 74300, 'seventy-four thousand three hundred'), (17156, 14345, 'fourteen thousand three hundred forty-five'), (17157, 79716, 'seventy-nine thousand seven hundred sixteen'), (17158, 56450, 'fifty-six thousand four hundred fifty'), (17159, 70772, 'seventy thousand seven hundred seventy-two'), (17160, 1548, 'one thousand five hundred forty-eight'), (17161, 44228, 'forty-four thousand two hundred twenty-eight'), (17162, 93200, 'ninety-three thousand two hundred'), (17163, 2014, 'two thousand fourteen'), (17164, 12596, 'twelve thousand five hundred ninety-six'), (17165, 83499, 'eighty-three thousand four hundred ninety-nine'), (17166, 12749, 'twelve thousand seven hundred forty-nine'), (17167, 76654, 'seventy-six thousand six hundred fifty-four'), (17168, 15145, 'fifteen thousand one hundred forty-five'), (17169, 4215, 'four thousand two hundred fifteen'), (17170, 33778, 'thirty-three thousand seven hundred seventy-eight'), (17171, 49717, 'forty-nine thousand seven hundred seventeen'), (17172, 68017, 'sixty-eight thousand seventeen'), (17173, 64708, 'sixty-four thousand seven hundred eight'), (17174, 41002, 'forty-one thousand two'), (17175, 62181, 'sixty-two thousand one hundred eighty-one'), (17176, 92058, 'ninety-two thousand fifty-eight'), (17177, 4886, 'four thousand eight hundred eighty-six'), (17178, 64723, 'sixty-four thousand seven hundred twenty-three'), (17179, 87866, 'eighty-seven thousand eight hundred sixty-six'), (17180, 90830, 'ninety thousand eight hundred thirty'), (17181, 211, 'two hundred eleven'), (17182, 84668, 'eighty-four thousand six hundred sixty-eight'), (17183, 69983, 'sixty-nine thousand nine hundred eighty-three'), (17184, 53817, 'fifty-three thousand eight hundred seventeen'), (17185, 41119, 'forty-one thousand one hundred nineteen'), (17186, 97739, 'ninety-seven thousand seven hundred thirty-nine'), (17187, 5976, 'five thousand nine hundred seventy-six'), (17188, 81647, 'eighty-one thousand six hundred forty-seven'), (17189, 83498, 'eighty-three thousand four hundred ninety-eight'), (17190, 52981, 'fifty-two thousand nine hundred eighty-one'), (17191, 82111, 'eighty-two thousand one hundred eleven'), (17192, 69991, 'sixty-nine thousand nine hundred ninety-one'), (17193, 15580, 'fifteen thousand five hundred eighty'), (17194, 34385, 'thirty-four thousand three hundred eighty-five'), (17195, 11275, 'eleven thousand two hundred seventy-five'), (17196, 98676, 'ninety-eight thousand six hundred seventy-six'), (17197, 10751, 'ten thousand seven hundred fifty-one'), (17198, 93225, 'ninety-three thousand two hundred twenty-five'), (17199, 83639, 'eighty-three thousand six hundred thirty-nine'), (17200, 6676, 'six thousand six hundred seventy-six'), (17201, 66995, 'sixty-six thousand nine hundred ninety-five'), (17202, 61324, 'sixty-one thousand three hundred twenty-four'), (17203, 80165, 'eighty thousand one hundred sixty-five'), (17204, 57070, 'fifty-seven thousand seventy'), (17205, 21613, 'twenty-one thousand six hundred thirteen'), (17206, 65455, 'sixty-five thousand four hundred fifty-five'), (17207, 68220, 'sixty-eight thousand two hundred twenty'), (17208, 53120, 'fifty-three thousand one hundred twenty'), (17209, 77174, 'seventy-seven thousand one hundred seventy-four'), (17210, 12018, 'twelve thousand eighteen'), (17211, 25315, 'twenty-five thousand three hundred fifteen'), (17212, 80467, 'eighty thousand four hundred sixty-seven'), (17213, 57054, 'fifty-seven thousand fifty-four'), (17214, 74832, 'seventy-four thousand eight hundred thirty-two'), (17215, 37741, 'thirty-seven thousand seven hundred forty-one'), (17216, 25135, 'twenty-five thousand one hundred thirty-five'), (17217, 69785, 'sixty-nine thousand seven hundred eighty-five'), (17218, 99936, 'ninety-nine thousand nine hundred thirty-six'), (17219, 14674, 'fourteen thousand six hundred seventy-four'), (17220, 8674, 'eight thousand six hundred seventy-four'), (17221, 77319, 'seventy-seven thousand three hundred nineteen'), (17222, 93747, 'ninety-three thousand seven hundred forty-seven'), (17223, 74611, 'seventy-four thousand six hundred eleven'), (17224, 4687, 'four thousand six hundred eighty-seven'), (17225, 54571, 'fifty-four thousand five hundred seventy-one'), (17226, 73353, 'seventy-three thousand three hundred fifty-three'), (17227, 20275, 'twenty thousand two hundred seventy-five'), (17228, 13140, 'thirteen thousand one hundred forty'), (17229, 89521, 'eighty-nine thousand five hundred twenty-one'), (17230, 29135, 'twenty-nine thousand one hundred thirty-five'), (17231, 38123, 'thirty-eight thousand one hundred twenty-three'), (17232, 68568, 'sixty-eight thousand five hundred sixty-eight'), (17233, 42529, 'forty-two thousand five hundred twenty-nine'), (17234, 22732, 'twenty-two thousand seven hundred thirty-two'), (17235, 42081, 'forty-two thousand eighty-one'), (17236, 27247, 'twenty-seven thousand two hundred forty-seven'), (17237, 85138, 'eighty-five thousand one hundred thirty-eight'), (17238, 86157, 'eighty-six thousand one hundred fifty-seven'), (17239, 41461, 'forty-one thousand four hundred sixty-one'), (17240, 34570, 'thirty-four thousand five hundred seventy'), (17241, 52775, 'fifty-two thousand seven hundred seventy-five'), (17242, 25624, 'twenty-five thousand six hundred twenty-four'), (17243, 4443, 'four thousand four hundred forty-three'), (17244, 43970, 'forty-three thousand nine hundred seventy'), (17245, 76497, 'seventy-six thousand four hundred ninety-seven'), (17246, 75163, 'seventy-five thousand one hundred sixty-three'), (17247, 68324, 'sixty-eight thousand three hundred twenty-four'), (17248, 32366, 'thirty-two thousand three hundred sixty-six'), (17249, 46515, 'forty-six thousand five hundred fifteen'), (17250, 72462, 'seventy-two thousand four hundred sixty-two'), (17251, 73690, 'seventy-three thousand six hundred ninety'), (17252, 78971, 'seventy-eight thousand nine hundred seventy-one'), (17253, 53915, 'fifty-three thousand nine hundred fifteen'), (17254, 45379, 'forty-five thousand three hundred seventy-nine'), (17255, 8151, 'eight thousand one hundred fifty-one'), (17256, 74124, 'seventy-four thousand one hundred twenty-four'), (17257, 42208, 'forty-two thousand two hundred eight'), (17258, 64365, 'sixty-four thousand three hundred sixty-five'), (17259, 62381, 'sixty-two thousand three hundred eighty-one'), (17260, 6153, 'six thousand one hundred fifty-three'), (17261, 96485, 'ninety-six thousand four hundred eighty-five'), (17262, 78041, 'seventy-eight thousand forty-one'), (17263, 64751, 'sixty-four thousand seven hundred fifty-one'), (17264, 16555, 'sixteen thousand five hundred fifty-five'), (17265, 59323, 'fifty-nine thousand three hundred twenty-three'), (17266, 83636, 'eighty-three thousand six hundred thirty-six'), (17267, 97504, 'ninety-seven thousand five hundred four'), (17268, 15840, 'fifteen thousand eight hundred forty'), (17269, 95684, 'ninety-five thousand six hundred eighty-four'), (17270, 64917, 'sixty-four thousand nine hundred seventeen'), (17271, 51726, 'fifty-one thousand seven hundred twenty-six'), (17272, 41265, 'forty-one thousand two hundred sixty-five'), (17273, 86079, 'eighty-six thousand seventy-nine'), (17274, 19818, 'nineteen thousand eight hundred eighteen'), (17275, 3601, 'three thousand six hundred one'), (17276, 63636, 'sixty-three thousand six hundred thirty-six'), (17277, 98518, 'ninety-eight thousand five hundred eighteen'), (17278, 99102, 'ninety-nine thousand one hundred two'), (17279, 79815, 'seventy-nine thousand eight hundred fifteen'), (17280, 92037, 'ninety-two thousand thirty-seven'), (17281, 76336, 'seventy-six thousand three hundred thirty-six'), (17282, 54144, 'fifty-four thousand one hundred forty-four'), (17283, 68520, 'sixty-eight thousand five hundred twenty'), (17284, 97240, 'ninety-seven thousand two hundred forty'), (17285, 69414, 'sixty-nine thousand four hundred fourteen'), (17286, 73228, 'seventy-three thousand two hundred twenty-eight'), (17287, 47121, 'forty-seven thousand one hundred twenty-one'), (17288, 25047, 'twenty-five thousand forty-seven'), (17289, 74276, 'seventy-four thousand two hundred seventy-six'), (17290, 78508, 'seventy-eight thousand five hundred eight'), (17291, 18493, 'eighteen thousand four hundred ninety-three'), (17292, 38166, 'thirty-eight thousand one hundred sixty-six'), (17293, 4325, 'four thousand three hundred twenty-five'), (17294, 29170, 'twenty-nine thousand one hundred seventy'), (17295, 99618, 'ninety-nine thousand six hundred eighteen'), (17296, 12260, 'twelve thousand two hundred sixty'), (17297, 78527, 'seventy-eight thousand five hundred twenty-seven'), (17298, 77638, 'seventy-seven thousand six hundred thirty-eight'), (17299, 51436, 'fifty-one thousand four hundred thirty-six'), (17300, 13708, 'thirteen thousand seven hundred eight'), (17301, 80836, 'eighty thousand eight hundred thirty-six'), (17302, 60009, 'sixty thousand nine'), (17303, 78734, 'seventy-eight thousand seven hundred thirty-four'), (17304, 21329, 'twenty-one thousand three hundred twenty-nine'), (17305, 2069, 'two thousand sixty-nine'), (17306, 74423, 'seventy-four thousand four hundred twenty-three'), (17307, 17643, 'seventeen thousand six hundred forty-three'), (17308, 19965, 'nineteen thousand nine hundred sixty-five'), (17309, 97627, 'ninety-seven thousand six hundred twenty-seven'), (17310, 65989, 'sixty-five thousand nine hundred eighty-nine'), (17311, 23138, 'twenty-three thousand one hundred thirty-eight'), (17312, 9974, 'nine thousand nine hundred seventy-four'), (17313, 33534, 'thirty-three thousand five hundred thirty-four'), (17314, 33175, 'thirty-three thousand one hundred seventy-five'), (17315, 56319, 'fifty-six thousand three hundred nineteen'), (17316, 96535, 'ninety-six thousand five hundred thirty-five'), (17317, 82944, 'eighty-two thousand nine hundred forty-four'), (17318, 98273, 'ninety-eight thousand two hundred seventy-three'), (17319, 19810, 'nineteen thousand eight hundred ten'), (17320, 2565, 'two thousand five hundred sixty-five'), (17321, 30171, 'thirty thousand one hundred seventy-one'), (17322, 33775, 'thirty-three thousand seven hundred seventy-five'), (17323, 29606, 'twenty-nine thousand six hundred six'), (17324, 18029, 'eighteen thousand twenty-nine'), (17325, 3869, 'three thousand eight hundred sixty-nine'), (17326, 90548, 'ninety thousand five hundred forty-eight'), (17327, 71791, 'seventy-one thousand seven hundred ninety-one'), (17328, 5031, 'five thousand thirty-one'), (17329, 53723, 'fifty-three thousand seven hundred twenty-three'), (17330, 46932, 'forty-six thousand nine hundred thirty-two'), (17331, 95528, 'ninety-five thousand five hundred twenty-eight'), (17332, 93529, 'ninety-three thousand five hundred twenty-nine'), (17333, 7926, 'seven thousand nine hundred twenty-six'), (17334, 81680, 'eighty-one thousand six hundred eighty'), (17335, 22336, 'twenty-two thousand three hundred thirty-six'), (17336, 21718, 'twenty-one thousand seven hundred eighteen'), (17337, 70106, 'seventy thousand one hundred six'), (17338, 45527, 'forty-five thousand five hundred twenty-seven'), (17339, 22561, 'twenty-two thousand five hundred sixty-one'), (17340, 688, 'six hundred eighty-eight'), (17341, 52976, 'fifty-two thousand nine hundred seventy-six'), (17342, 90461, 'ninety thousand four hundred sixty-one'), (17343, 39450, 'thirty-nine thousand four hundred fifty'), (17344, 70554, 'seventy thousand five hundred fifty-four'), (17345, 41115, 'forty-one thousand one hundred fifteen'), (17346, 98998, 'ninety-eight thousand nine hundred ninety-eight'), (17347, 78136, 'seventy-eight thousand one hundred thirty-six'), (17348, 52418, 'fifty-two thousand four hundred eighteen'), (17349, 55026, 'fifty-five thousand twenty-six'), (17350, 93818, 'ninety-three thousand eight hundred eighteen'), (17351, 82360, 'eighty-two thousand three hundred sixty'), (17352, 81551, 'eighty-one thousand five hundred fifty-one'), (17353, 55924, 'fifty-five thousand nine hundred twenty-four'), (17354, 19569, 'nineteen thousand five hundred sixty-nine'), (17355, 1090, 'one thousand ninety'), (17356, 22790, 'twenty-two thousand seven hundred ninety'), (17357, 3355, 'three thousand three hundred fifty-five'), (17358, 74313, 'seventy-four thousand three hundred thirteen'), (17359, 87548, 'eighty-seven thousand five hundred forty-eight'), (17360, 40000, 'forty thousand'), (17361, 81975, 'eighty-one thousand nine hundred seventy-five'), (17362, 59330, 'fifty-nine thousand three hundred thirty'), (17363, 17792, 'seventeen thousand seven hundred ninety-two'), (17364, 50008, 'fifty thousand eight'), (17365, 28168, 'twenty-eight thousand one hundred sixty-eight'), (17366, 87561, 'eighty-seven thousand five hundred sixty-one'), (17367, 53163, 'fifty-three thousand one hundred sixty-three'), (17368, 16819, 'sixteen thousand eight hundred nineteen'), (17369, 41086, 'forty-one thousand eighty-six'), (17370, 30976, 'thirty thousand nine hundred seventy-six'), (17371, 39645, 'thirty-nine thousand six hundred forty-five'), (17372, 4872, 'four thousand eight hundred seventy-two'), (17373, 21678, 'twenty-one thousand six hundred seventy-eight'), (17374, 4820, 'four thousand eight hundred twenty'), (17375, 90094, 'ninety thousand ninety-four'), (17376, 23632, 'twenty-three thousand six hundred thirty-two'), (17377, 25243, 'twenty-five thousand two hundred forty-three'), (17378, 73537, 'seventy-three thousand five hundred thirty-seven'), (17379, 33276, 'thirty-three thousand two hundred seventy-six'), (17380, 24621, 'twenty-four thousand six hundred twenty-one'), (17381, 64038, 'sixty-four thousand thirty-eight'), (17382, 67006, 'sixty-seven thousand six'), (17383, 28470, 'twenty-eight thousand four hundred seventy'), (17384, 23544, 'twenty-three thousand five hundred forty-four'), (17385, 22191, 'twenty-two thousand one hundred ninety-one'), (17386, 34798, 'thirty-four thousand seven hundred ninety-eight'), (17387, 75247, 'seventy-five thousand two hundred forty-seven'), (17388, 19299, 'nineteen thousand two hundred ninety-nine'), (17389, 81115, 'eighty-one thousand one hundred fifteen'), (17390, 44912, 'forty-four thousand nine hundred twelve'), (17391, 68529, 'sixty-eight thousand five hundred twenty-nine'), (17392, 87856, 'eighty-seven thousand eight hundred fifty-six'), (17393, 40439, 'forty thousand four hundred thirty-nine'), (17394, 8472, 'eight thousand four hundred seventy-two'), (17395, 18075, 'eighteen thousand seventy-five'), (17396, 34365, 'thirty-four thousand three hundred sixty-five'), (17397, 6748, 'six thousand seven hundred forty-eight'), (17398, 60657, 'sixty thousand six hundred fifty-seven'), (17399, 23229, 'twenty-three thousand two hundred twenty-nine'), (17400, 47854, 'forty-seven thousand eight hundred fifty-four'), (17401, 32587, 'thirty-two thousand five hundred eighty-seven'), (17402, 69613, 'sixty-nine thousand six hundred thirteen'), (17403, 53980, 'fifty-three thousand nine hundred eighty'), (17404, 73534, 'seventy-three thousand five hundred thirty-four'), (17405, 61194, 'sixty-one thousand one hundred ninety-four'), (17406, 55794, 'fifty-five thousand seven hundred ninety-four'), (17407, 87123, 'eighty-seven thousand one hundred twenty-three'), (17408, 51183, 'fifty-one thousand one hundred eighty-three'), (17409, 78046, 'seventy-eight thousand forty-six'), (17410, 8089, 'eight thousand eighty-nine'), (17411, 59953, 'fifty-nine thousand nine hundred fifty-three'), (17412, 54022, 'fifty-four thousand twenty-two'), (17413, 63243, 'sixty-three thousand two hundred forty-three'), (17414, 49922, 'forty-nine thousand nine hundred twenty-two'), (17415, 1815, 'one thousand eight hundred fifteen'), (17416, 593, 'five hundred ninety-three'), (17417, 78631, 'seventy-eight thousand six hundred thirty-one'), (17418, 39771, 'thirty-nine thousand seven hundred seventy-one'), (17419, 592, 'five hundred ninety-two'), (17420, 69837, 'sixty-nine thousand eight hundred thirty-seven'), (17421, 80466, 'eighty thousand four hundred sixty-six'), (17422, 68067, 'sixty-eight thousand sixty-seven'), (17423, 75514, 'seventy-five thousand five hundred fourteen'), (17424, 48793, 'forty-eight thousand seven hundred ninety-three'), (17425, 77150, 'seventy-seven thousand one hundred fifty'), (17426, 21912, 'twenty-one thousand nine hundred twelve'), (17427, 32284, 'thirty-two thousand two hundred eighty-four'), (17428, 15178, 'fifteen thousand one hundred seventy-eight'), (17429, 75465, 'seventy-five thousand four hundred sixty-five'), (17430, 74181, 'seventy-four thousand one hundred eighty-one'), (17431, 85713, 'eighty-five thousand seven hundred thirteen'), (17432, 13154, 'thirteen thousand one hundred fifty-four'), (17433, 31601, 'thirty-one thousand six hundred one'), (17434, 43690, 'forty-three thousand six hundred ninety'), (17435, 13959, 'thirteen thousand nine hundred fifty-nine'), (17436, 15305, 'fifteen thousand three hundred five'), (17437, 16736, 'sixteen thousand seven hundred thirty-six'), (17438, 58541, 'fifty-eight thousand five hundred forty-one'), (17439, 86269, 'eighty-six thousand two hundred sixty-nine'), (17440, 34013, 'thirty-four thousand thirteen'), (17441, 61139, 'sixty-one thousand one hundred thirty-nine'), (17442, 74970, 'seventy-four thousand nine hundred seventy'), (17443, 14037, 'fourteen thousand thirty-seven'), (17444, 61203, 'sixty-one thousand two hundred three'), (17445, 6286, 'six thousand two hundred eighty-six'), (17446, 87866, 'eighty-seven thousand eight hundred sixty-six'), (17447, 64733, 'sixty-four thousand seven hundred thirty-three'), (17448, 98527, 'ninety-eight thousand five hundred twenty-seven'), (17449, 82137, 'eighty-two thousand one hundred thirty-seven'), (17450, 11654, 'eleven thousand six hundred fifty-four'), (17451, 34752, 'thirty-four thousand seven hundred fifty-two'), (17452, 38514, 'thirty-eight thousand five hundred fourteen'), (17453, 29696, 'twenty-nine thousand six hundred ninety-six'), (17454, 42080, 'forty-two thousand eighty'), (17455, 60695, 'sixty thousand six hundred ninety-five'), (17456, 76575, 'seventy-six thousand five hundred seventy-five'), (17457, 65233, 'sixty-five thousand two hundred thirty-three'), (17458, 47021, 'forty-seven thousand twenty-one'), (17459, 48397, 'forty-eight thousand three hundred ninety-seven'), (17460, 81046, 'eighty-one thousand forty-six'), (17461, 99274, 'ninety-nine thousand two hundred seventy-four'), (17462, 60267, 'sixty thousand two hundred sixty-seven'), (17463, 94097, 'ninety-four thousand ninety-seven'), (17464, 14852, 'fourteen thousand eight hundred fifty-two'), (17465, 26676, 'twenty-six thousand six hundred seventy-six'), (17466, 95851, 'ninety-five thousand eight hundred fifty-one'), (17467, 2585, 'two thousand five hundred eighty-five'), (17468, 4803, 'four thousand eight hundred three'), (17469, 16920, 'sixteen thousand nine hundred twenty'), (17470, 60986, 'sixty thousand nine hundred eighty-six'), (17471, 55847, 'fifty-five thousand eight hundred forty-seven'), (17472, 68490, 'sixty-eight thousand four hundred ninety'), (17473, 69215, 'sixty-nine thousand two hundred fifteen'), (17474, 10660, 'ten thousand six hundred sixty'), (17475, 29114, 'twenty-nine thousand one hundred fourteen'), (17476, 31781, 'thirty-one thousand seven hundred eighty-one'), (17477, 29191, 'twenty-nine thousand one hundred ninety-one'), (17478, 52378, 'fifty-two thousand three hundred seventy-eight'), (17479, 14022, 'fourteen thousand twenty-two'), (17480, 36873, 'thirty-six thousand eight hundred seventy-three'), (17481, 81951, 'eighty-one thousand nine hundred fifty-one'), (17482, 1003, 'one thousand three'), (17483, 87526, 'eighty-seven thousand five hundred twenty-six'), (17484, 74753, 'seventy-four thousand seven hundred fifty-three'), (17485, 79057, 'seventy-nine thousand fifty-seven'), (17486, 13075, 'thirteen thousand seventy-five'), (17487, 51381, 'fifty-one thousand three hundred eighty-one'), (17488, 83654, 'eighty-three thousand six hundred fifty-four'), (17489, 18811, 'eighteen thousand eight hundred eleven'), (17490, 98219, 'ninety-eight thousand two hundred nineteen'), (17491, 80679, 'eighty thousand six hundred seventy-nine'), (17492, 60515, 'sixty thousand five hundred fifteen'), (17493, 32984, 'thirty-two thousand nine hundred eighty-four'), (17494, 75016, 'seventy-five thousand sixteen'), (17495, 20309, 'twenty thousand three hundred nine'), (17496, 25709, 'twenty-five thousand seven hundred nine'), (17497, 23825, 'twenty-three thousand eight hundred twenty-five'), (17498, 46275, 'forty-six thousand two hundred seventy-five'), (17499, 26567, 'twenty-six thousand five hundred sixty-seven'), (17500, 18382, 'eighteen thousand three hundred eighty-two'), (17501, 90156, 'ninety thousand one hundred fifty-six'), (17502, 39556, 'thirty-nine thousand five hundred fifty-six'), (17503, 26543, 'twenty-six thousand five hundred forty-three'), (17504, 42789, 'forty-two thousand seven hundred eighty-nine'), (17505, 8036, 'eight thousand thirty-six'), (17506, 7760, 'seven thousand seven hundred sixty'), (17507, 67082, 'sixty-seven thousand eighty-two'), (17508, 43117, 'forty-three thousand one hundred seventeen'), (17509, 74691, 'seventy-four thousand six hundred ninety-one'), (17510, 74995, 'seventy-four thousand nine hundred ninety-five'), (17511, 75096, 'seventy-five thousand ninety-six'), (17512, 14771, 'fourteen thousand seven hundred seventy-one'), (17513, 92557, 'ninety-two thousand five hundred fifty-seven'), (17514, 86848, 'eighty-six thousand eight hundred forty-eight'), (17515, 69858, 'sixty-nine thousand eight hundred fifty-eight'), (17516, 51142, 'fifty-one thousand one hundred forty-two'), (17517, 88028, 'eighty-eight thousand twenty-eight'), (17518, 32494, 'thirty-two thousand four hundred ninety-four'), (17519, 65874, 'sixty-five thousand eight hundred seventy-four'), (17520, 42536, 'forty-two thousand five hundred thirty-six'), (17521, 45844, 'forty-five thousand eight hundred forty-four'), (17522, 87207, 'eighty-seven thousand two hundred seven'), (17523, 47107, 'forty-seven thousand one hundred seven'), (17524, 69097, 'sixty-nine thousand ninety-seven'), (17525, 94085, 'ninety-four thousand eighty-five'), (17526, 31850, 'thirty-one thousand eight hundred fifty'), (17527, 784, 'seven hundred eighty-four'), (17528, 63301, 'sixty-three thousand three hundred one'), (17529, 53734, 'fifty-three thousand seven hundred thirty-four'), (17530, 65987, 'sixty-five thousand nine hundred eighty-seven'), (17531, 10, 'ten'), (17532, 8151, 'eight thousand one hundred fifty-one'), (17533, 30655, 'thirty thousand six hundred fifty-five'), (17534, 9301, 'nine thousand three hundred one'), (17535, 53040, 'fifty-three thousand forty'), (17536, 63417, 'sixty-three thousand four hundred seventeen'), (17537, 90407, 'ninety thousand four hundred seven'), (17538, 53487, 'fifty-three thousand four hundred eighty-seven'), (17539, 48281, 'forty-eight thousand two hundred eighty-one'), (17540, 11619, 'eleven thousand six hundred nineteen'), (17541, 57508, 'fifty-seven thousand five hundred eight'), (17542, 78920, 'seventy-eight thousand nine hundred twenty'), (17543, 33433, 'thirty-three thousand four hundred thirty-three'), (17544, 14615, 'fourteen thousand six hundred fifteen'), (17545, 91128, 'ninety-one thousand one hundred twenty-eight'), (17546, 63688, 'sixty-three thousand six hundred eighty-eight'), (17547, 20464, 'twenty thousand four hundred sixty-four'), (17548, 57080, 'fifty-seven thousand eighty'), (17549, 75088, 'seventy-five thousand eighty-eight'), (17550, 53567, 'fifty-three thousand five hundred sixty-seven'), (17551, 98573, 'ninety-eight thousand five hundred seventy-three'), (17552, 10065, 'ten thousand sixty-five'), (17553, 71457, 'seventy-one thousand four hundred fifty-seven'), (17554, 18394, 'eighteen thousand three hundred ninety-four'), (17555, 81965, 'eighty-one thousand nine hundred sixty-five'), (17556, 60340, 'sixty thousand three hundred forty'), (17557, 87855, 'eighty-seven thousand eight hundred fifty-five'), (17558, 34763, 'thirty-four thousand seven hundred sixty-three'), (17559, 50361, 'fifty thousand three hundred sixty-one'), (17560, 35538, 'thirty-five thousand five hundred thirty-eight'), (17561, 85747, 'eighty-five thousand seven hundred forty-seven'), (17562, 50403, 'fifty thousand four hundred three'), (17563, 5505, 'five thousand five hundred five'), (17564, 42224, 'forty-two thousand two hundred twenty-four'), (17565, 1640, 'one thousand six hundred forty'), (17566, 69530, 'sixty-nine thousand five hundred thirty'), (17567, 3996, 'three thousand nine hundred ninety-six'), (17568, 94782, 'ninety-four thousand seven hundred eighty-two'), (17569, 64938, 'sixty-four thousand nine hundred thirty-eight'), (17570, 83231, 'eighty-three thousand two hundred thirty-one'), (17571, 96826, 'ninety-six thousand eight hundred twenty-six'), (17572, 46506, 'forty-six thousand five hundred six'), (17573, 91450, 'ninety-one thousand four hundred fifty'), (17574, 55155, 'fifty-five thousand one hundred fifty-five'), (17575, 73726, 'seventy-three thousand seven hundred twenty-six'), (17576, 42395, 'forty-two thousand three hundred ninety-five'), (17577, 33837, 'thirty-three thousand eight hundred thirty-seven'), (17578, 35891, 'thirty-five thousand eight hundred ninety-one'), (17579, 80658, 'eighty thousand six hundred fifty-eight'), (17580, 5275, 'five thousand two hundred seventy-five'), (17581, 34057, 'thirty-four thousand fifty-seven'), (17582, 28571, 'twenty-eight thousand five hundred seventy-one'), (17583, 80810, 'eighty thousand eight hundred ten'), (17584, 29970, 'twenty-nine thousand nine hundred seventy'), (17585, 93375, 'ninety-three thousand three hundred seventy-five'), (17586, 60814, 'sixty thousand eight hundred fourteen'), (17587, 14497, 'fourteen thousand four hundred ninety-seven'), (17588, 66959, 'sixty-six thousand nine hundred fifty-nine'), (17589, 94576, 'ninety-four thousand five hundred seventy-six'), (17590, 7204, 'seven thousand two hundred four'), (17591, 58077, 'fifty-eight thousand seventy-seven'), (17592, 69262, 'sixty-nine thousand two hundred sixty-two'), (17593, 39440, 'thirty-nine thousand four hundred forty'), (17594, 5776, 'five thousand seven hundred seventy-six'), (17595, 3577, 'three thousand five hundred seventy-seven'), (17596, 62317, 'sixty-two thousand three hundred seventeen'), (17597, 28699, 'twenty-eight thousand six hundred ninety-nine'), (17598, 47334, 'forty-seven thousand three hundred thirty-four'), (17599, 7365, 'seven thousand three hundred sixty-five'), (17600, 32115, 'thirty-two thousand one hundred fifteen'), (17601, 81957, 'eighty-one thousand nine hundred fifty-seven'), (17602, 95412, 'ninety-five thousand four hundred twelve'), (17603, 57706, 'fifty-seven thousand seven hundred six'), (17604, 43495, 'forty-three thousand four hundred ninety-five'), (17605, 7886, 'seven thousand eight hundred eighty-six'), (17606, 84909, 'eighty-four thousand nine hundred nine'), (17607, 62411, 'sixty-two thousand four hundred eleven'), (17608, 2932, 'two thousand nine hundred thirty-two'), (17609, 59963, 'fifty-nine thousand nine hundred sixty-three'), (17610, 81409, 'eighty-one thousand four hundred nine'), (17611, 39271, 'thirty-nine thousand two hundred seventy-one'), (17612, 68812, 'sixty-eight thousand eight hundred twelve'), (17613, 86126, 'eighty-six thousand one hundred twenty-six'), (17614, 56839, 'fifty-six thousand eight hundred thirty-nine'), (17615, 97575, 'ninety-seven thousand five hundred seventy-five'), (17616, 20757, 'twenty thousand seven hundred fifty-seven'), (17617, 92670, 'ninety-two thousand six hundred seventy'), (17618, 18335, 'eighteen thousand three hundred thirty-five'), (17619, 50036, 'fifty thousand thirty-six'), (17620, 62174, 'sixty-two thousand one hundred seventy-four'), (17621, 28314, 'twenty-eight thousand three hundred fourteen'), (17622, 89834, 'eighty-nine thousand eight hundred thirty-four'), (17623, 30820, 'thirty thousand eight hundred twenty'), (17624, 29684, 'twenty-nine thousand six hundred eighty-four'), (17625, 57920, 'fifty-seven thousand nine hundred twenty'), (17626, 71996, 'seventy-one thousand nine hundred ninety-six'), (17627, 86372, 'eighty-six thousand three hundred seventy-two'), (17628, 41908, 'forty-one thousand nine hundred eight'), (17629, 64805, 'sixty-four thousand eight hundred five'), (17630, 56776, 'fifty-six thousand seven hundred seventy-six'), (17631, 77770, 'seventy-seven thousand seven hundred seventy'), (17632, 2377, 'two thousand three hundred seventy-seven'), (17633, 25462, 'twenty-five thousand four hundred sixty-two'), (17634, 43426, 'forty-three thousand four hundred twenty-six'), (17635, 56638, 'fifty-six thousand six hundred thirty-eight'), (17636, 9466, 'nine thousand four hundred sixty-six'), (17637, 45623, 'forty-five thousand six hundred twenty-three'), (17638, 37195, 'thirty-seven thousand one hundred ninety-five'), (17639, 54882, 'fifty-four thousand eight hundred eighty-two'), (17640, 88345, 'eighty-eight thousand three hundred forty-five'), (17641, 47347, 'forty-seven thousand three hundred forty-seven'), (17642, 95118, 'ninety-five thousand one hundred eighteen'), (17643, 32358, 'thirty-two thousand three hundred fifty-eight'), (17644, 90089, 'ninety thousand eighty-nine'), (17645, 1529, 'one thousand five hundred twenty-nine'), (17646, 35685, 'thirty-five thousand six hundred eighty-five'), (17647, 39437, 'thirty-nine thousand four hundred thirty-seven'), (17648, 18190, 'eighteen thousand one hundred ninety'), (17649, 38978, 'thirty-eight thousand nine hundred seventy-eight'), (17650, 1791, 'one thousand seven hundred ninety-one'), (17651, 74754, 'seventy-four thousand seven hundred fifty-four'), (17652, 91202, 'ninety-one thousand two hundred two'), (17653, 21518, 'twenty-one thousand five hundred eighteen'), (17654, 20430, 'twenty thousand four hundred thirty'), (17655, 2415, 'two thousand four hundred fifteen'), (17656, 92893, 'ninety-two thousand eight hundred ninety-three'), (17657, 89810, 'eighty-nine thousand eight hundred ten'), (17658, 11670, 'eleven thousand six hundred seventy'), (17659, 86149, 'eighty-six thousand one hundred forty-nine'), (17660, 99042, 'ninety-nine thousand forty-two'), (17661, 94584, 'ninety-four thousand five hundred eighty-four'), (17662, 86757, 'eighty-six thousand seven hundred fifty-seven'), (17663, 58473, 'fifty-eight thousand four hundred seventy-three'), (17664, 28482, 'twenty-eight thousand four hundred eighty-two'), (17665, 50879, 'fifty thousand eight hundred seventy-nine'), (17666, 88914, 'eighty-eight thousand nine hundred fourteen'), (17667, 49203, 'forty-nine thousand two hundred three'), (17668, 69985, 'sixty-nine thousand nine hundred eighty-five'), (17669, 67933, 'sixty-seven thousand nine hundred thirty-three'), (17670, 50267, 'fifty thousand two hundred sixty-seven'), (17671, 18242, 'eighteen thousand two hundred forty-two'), (17672, 28220, 'twenty-eight thousand two hundred twenty'), (17673, 8581, 'eight thousand five hundred eighty-one'), (17674, 31099, 'thirty-one thousand ninety-nine'), (17675, 1358, 'one thousand three hundred fifty-eight'), (17676, 94548, 'ninety-four thousand five hundred forty-eight'), (17677, 56710, 'fifty-six thousand seven hundred ten'), (17678, 50616, 'fifty thousand six hundred sixteen'), (17679, 40611, 'forty thousand six hundred eleven'), (17680, 30701, 'thirty thousand seven hundred one'), (17681, 6558, 'six thousand five hundred fifty-eight'), (17682, 10011, 'ten thousand eleven'), (17683, 64410, 'sixty-four thousand four hundred ten'), (17684, 22672, 'twenty-two thousand six hundred seventy-two'), (17685, 62046, 'sixty-two thousand forty-six'), (17686, 73322, 'seventy-three thousand three hundred twenty-two'), (17687, 35780, 'thirty-five thousand seven hundred eighty'), (17688, 21756, 'twenty-one thousand seven hundred fifty-six'), (17689, 86908, 'eighty-six thousand nine hundred eight'), (17690, 82599, 'eighty-two thousand five hundred ninety-nine'), (17691, 83141, 'eighty-three thousand one hundred forty-one'), (17692, 91794, 'ninety-one thousand seven hundred ninety-four'), (17693, 58591, 'fifty-eight thousand five hundred ninety-one'), (17694, 20080, 'twenty thousand eighty'), (17695, 80911, 'eighty thousand nine hundred eleven'), (17696, 77428, 'seventy-seven thousand four hundred twenty-eight'), (17697, 90445, 'ninety thousand four hundred forty-five'), (17698, 19983, 'nineteen thousand nine hundred eighty-three'), (17699, 93323, 'ninety-three thousand three hundred twenty-three'), (17700, 30613, 'thirty thousand six hundred thirteen'), (17701, 48193, 'forty-eight thousand one hundred ninety-three'), (17702, 12920, 'twelve thousand nine hundred twenty'), (17703, 97445, 'ninety-seven thousand four hundred forty-five'), (17704, 22573, 'twenty-two thousand five hundred seventy-three'), (17705, 56968, 'fifty-six thousand nine hundred sixty-eight'), (17706, 27375, 'twenty-seven thousand three hundred seventy-five'), (17707, 56745, 'fifty-six thousand seven hundred forty-five'), (17708, 86035, 'eighty-six thousand thirty-five'), (17709, 70811, 'seventy thousand eight hundred eleven'), (17710, 48482, 'forty-eight thousand four hundred eighty-two'), (17711, 34173, 'thirty-four thousand one hundred seventy-three'), (17712, 39888, 'thirty-nine thousand eight hundred eighty-eight'), (17713, 41643, 'forty-one thousand six hundred forty-three'), (17714, 13073, 'thirteen thousand seventy-three'), (17715, 71444, 'seventy-one thousand four hundred forty-four'), (17716, 76947, 'seventy-six thousand nine hundred forty-seven'), (17717, 94255, 'ninety-four thousand two hundred fifty-five'), (17718, 8891, 'eight thousand eight hundred ninety-one'), (17719, 17896, 'seventeen thousand eight hundred ninety-six'), (17720, 85157, 'eighty-five thousand one hundred fifty-seven'), (17721, 54433, 'fifty-four thousand four hundred thirty-three'), (17722, 85159, 'eighty-five thousand one hundred fifty-nine'), (17723, 33390, 'thirty-three thousand three hundred ninety'), (17724, 47652, 'forty-seven thousand six hundred fifty-two'), (17725, 50918, 'fifty thousand nine hundred eighteen'), (17726, 47557, 'forty-seven thousand five hundred fifty-seven'), (17727, 20422, 'twenty thousand four hundred twenty-two'), (17728, 95736, 'ninety-five thousand seven hundred thirty-six'), (17729, 67572, 'sixty-seven thousand five hundred seventy-two'), (17730, 22268, 'twenty-two thousand two hundred sixty-eight'), (17731, 47115, 'forty-seven thousand one hundred fifteen'), (17732, 248, 'two hundred forty-eight'), (17733, 42577, 'forty-two thousand five hundred seventy-seven'), (17734, 11162, 'eleven thousand one hundred sixty-two'), (17735, 27281, 'twenty-seven thousand two hundred eighty-one'), (17736, 76521, 'seventy-six thousand five hundred twenty-one'), (17737, 49789, 'forty-nine thousand seven hundred eighty-nine'), (17738, 87521, 'eighty-seven thousand five hundred twenty-one'), (17739, 42104, 'forty-two thousand one hundred four'), (17740, 67454, 'sixty-seven thousand four hundred fifty-four'), (17741, 37768, 'thirty-seven thousand seven hundred sixty-eight'), (17742, 65332, 'sixty-five thousand three hundred thirty-two'), (17743, 67693, 'sixty-seven thousand six hundred ninety-three'), (17744, 20146, 'twenty thousand one hundred forty-six'), (17745, 40333, 'forty thousand three hundred thirty-three'), (17746, 40196, 'forty thousand one hundred ninety-six'), (17747, 60754, 'sixty thousand seven hundred fifty-four'), (17748, 35794, 'thirty-five thousand seven hundred ninety-four'), (17749, 34985, 'thirty-four thousand nine hundred eighty-five'), (17750, 10447, 'ten thousand four hundred forty-seven'), (17751, 9496, 'nine thousand four hundred ninety-six'), (17752, 68533, 'sixty-eight thousand five hundred thirty-three'), (17753, 38678, 'thirty-eight thousand six hundred seventy-eight'), (17754, 27527, 'twenty-seven thousand five hundred twenty-seven'), (17755, 15490, 'fifteen thousand four hundred ninety'), (17756, 3588, 'three thousand five hundred eighty-eight'), (17757, 33010, 'thirty-three thousand ten'), (17758, 96746, 'ninety-six thousand seven hundred forty-six'), (17759, 27566, 'twenty-seven thousand five hundred sixty-six'), (17760, 11148, 'eleven thousand one hundred forty-eight'), (17761, 25407, 'twenty-five thousand four hundred seven'), (17762, 1267, 'one thousand two hundred sixty-seven'), (17763, 72450, 'seventy-two thousand four hundred fifty'), (17764, 72779, 'seventy-two thousand seven hundred seventy-nine'), (17765, 18050, 'eighteen thousand fifty'), (17766, 89190, 'eighty-nine thousand one hundred ninety'), (17767, 93864, 'ninety-three thousand eight hundred sixty-four'), (17768, 56843, 'fifty-six thousand eight hundred forty-three'), (17769, 50247, 'fifty thousand two hundred forty-seven'), (17770, 5133, 'five thousand one hundred thirty-three'), (17771, 25791, 'twenty-five thousand seven hundred ninety-one'), (17772, 27109, 'twenty-seven thousand one hundred nine'), (17773, 40378, 'forty thousand three hundred seventy-eight'), (17774, 41441, 'forty-one thousand four hundred forty-one'), (17775, 96991, 'ninety-six thousand nine hundred ninety-one'), (17776, 59920, 'fifty-nine thousand nine hundred twenty'), (17777, 40919, 'forty thousand nine hundred nineteen'), (17778, 28516, 'twenty-eight thousand five hundred sixteen'), (17779, 31281, 'thirty-one thousand two hundred eighty-one'), (17780, 29335, 'twenty-nine thousand three hundred thirty-five'), (17781, 52496, 'fifty-two thousand four hundred ninety-six'), (17782, 88620, 'eighty-eight thousand six hundred twenty'), (17783, 36927, 'thirty-six thousand nine hundred twenty-seven'), (17784, 10315, 'ten thousand three hundred fifteen'), (17785, 34723, 'thirty-four thousand seven hundred twenty-three'), (17786, 62596, 'sixty-two thousand five hundred ninety-six'), (17787, 14434, 'fourteen thousand four hundred thirty-four'), (17788, 53148, 'fifty-three thousand one hundred forty-eight'), (17789, 55478, 'fifty-five thousand four hundred seventy-eight'), (17790, 63181, 'sixty-three thousand one hundred eighty-one'), (17791, 81577, 'eighty-one thousand five hundred seventy-seven'), (17792, 62462, 'sixty-two thousand four hundred sixty-two'), (17793, 6561, 'six thousand five hundred sixty-one'), (17794, 57054, 'fifty-seven thousand fifty-four'), (17795, 50885, 'fifty thousand eight hundred eighty-five'), (17796, 27445, 'twenty-seven thousand four hundred forty-five'), (17797, 39053, 'thirty-nine thousand fifty-three'), (17798, 61207, 'sixty-one thousand two hundred seven'), (17799, 43877, 'forty-three thousand eight hundred seventy-seven'), (17800, 36530, 'thirty-six thousand five hundred thirty'), (17801, 10200, 'ten thousand two hundred'), (17802, 79093, 'seventy-nine thousand ninety-three'), (17803, 87354, 'eighty-seven thousand three hundred fifty-four'), (17804, 29405, 'twenty-nine thousand four hundred five'), (17805, 7329, 'seven thousand three hundred twenty-nine'), (17806, 78214, 'seventy-eight thousand two hundred fourteen'), (17807, 65092, 'sixty-five thousand ninety-two'), (17808, 94549, 'ninety-four thousand five hundred forty-nine'), (17809, 30555, 'thirty thousand five hundred fifty-five'), (17810, 65847, 'sixty-five thousand eight hundred forty-seven'), (17811, 54402, 'fifty-four thousand four hundred two'), (17812, 86122, 'eighty-six thousand one hundred twenty-two'), (17813, 64421, 'sixty-four thousand four hundred twenty-one'), (17814, 12171, 'twelve thousand one hundred seventy-one'), (17815, 3917, 'three thousand nine hundred seventeen'), (17816, 13016, 'thirteen thousand sixteen'), (17817, 37537, 'thirty-seven thousand five hundred thirty-seven'), (17818, 32908, 'thirty-two thousand nine hundred eight'), (17819, 49325, 'forty-nine thousand three hundred twenty-five'), (17820, 97279, 'ninety-seven thousand two hundred seventy-nine'), (17821, 63860, 'sixty-three thousand eight hundred sixty'), (17822, 13388, 'thirteen thousand three hundred eighty-eight'), (17823, 26429, 'twenty-six thousand four hundred twenty-nine'), (17824, 22111, 'twenty-two thousand one hundred eleven'), (17825, 74317, 'seventy-four thousand three hundred seventeen'), (17826, 82535, 'eighty-two thousand five hundred thirty-five'), (17827, 32396, 'thirty-two thousand three hundred ninety-six'), (17828, 15348, 'fifteen thousand three hundred forty-eight'), (17829, 55403, 'fifty-five thousand four hundred three'), (17830, 16606, 'sixteen thousand six hundred six'), (17831, 32068, 'thirty-two thousand sixty-eight'), (17832, 82729, 'eighty-two thousand seven hundred twenty-nine'), (17833, 40022, 'forty thousand twenty-two'), (17834, 24520, 'twenty-four thousand five hundred twenty'), (17835, 32486, 'thirty-two thousand four hundred eighty-six'), (17836, 70518, 'seventy thousand five hundred eighteen'), (17837, 23219, 'twenty-three thousand two hundred nineteen'), (17838, 37991, 'thirty-seven thousand nine hundred ninety-one'), (17839, 67004, 'sixty-seven thousand four'), (17840, 77068, 'seventy-seven thousand sixty-eight'), (17841, 872, 'eight hundred seventy-two'), (17842, 56930, 'fifty-six thousand nine hundred thirty'), (17843, 32275, 'thirty-two thousand two hundred seventy-five'), (17844, 45873, 'forty-five thousand eight hundred seventy-three'), (17845, 90608, 'ninety thousand six hundred eight'), (17846, 64738, 'sixty-four thousand seven hundred thirty-eight'), (17847, 53831, 'fifty-three thousand eight hundred thirty-one'), (17848, 52433, 'fifty-two thousand four hundred thirty-three'), (17849, 43735, 'forty-three thousand seven hundred thirty-five'), (17850, 14348, 'fourteen thousand three hundred forty-eight'), (17851, 10042, 'ten thousand forty-two'), (17852, 20370, 'twenty thousand three hundred seventy'), (17853, 90275, 'ninety thousand two hundred seventy-five'), (17854, 22466, 'twenty-two thousand four hundred sixty-six'), (17855, 52097, 'fifty-two thousand ninety-seven'), (17856, 37542, 'thirty-seven thousand five hundred forty-two'), (17857, 62769, 'sixty-two thousand seven hundred sixty-nine'), (17858, 51605, 'fifty-one thousand six hundred five'), (17859, 29792, 'twenty-nine thousand seven hundred ninety-two'), (17860, 90454, 'ninety thousand four hundred fifty-four'), (17861, 95382, 'ninety-five thousand three hundred eighty-two'), (17862, 27144, 'twenty-seven thousand one hundred forty-four'), (17863, 66977, 'sixty-six thousand nine hundred seventy-seven'), (17864, 94268, 'ninety-four thousand two hundred sixty-eight'), (17865, 13611, 'thirteen thousand six hundred eleven'), (17866, 71186, 'seventy-one thousand one hundred eighty-six'), (17867, 64571, 'sixty-four thousand five hundred seventy-one'), (17868, 58990, 'fifty-eight thousand nine hundred ninety'), (17869, 157, 'one hundred fifty-seven'), (17870, 10606, 'ten thousand six hundred six'), (17871, 74402, 'seventy-four thousand four hundred two'), (17872, 11844, 'eleven thousand eight hundred forty-four'), (17873, 25479, 'twenty-five thousand four hundred seventy-nine'), (17874, 33863, 'thirty-three thousand eight hundred sixty-three'), (17875, 32873, 'thirty-two thousand eight hundred seventy-three'), (17876, 65041, 'sixty-five thousand forty-one'), (17877, 14210, 'fourteen thousand two hundred ten'), (17878, 11718, 'eleven thousand seven hundred eighteen'), (17879, 83333, 'eighty-three thousand three hundred thirty-three'), (17880, 2636, 'two thousand six hundred thirty-six'), (17881, 61898, 'sixty-one thousand eight hundred ninety-eight'), (17882, 77091, 'seventy-seven thousand ninety-one'), (17883, 63332, 'sixty-three thousand three hundred thirty-two'), (17884, 12141, 'twelve thousand one hundred forty-one'), (17885, 49258, 'forty-nine thousand two hundred fifty-eight'), (17886, 97641, 'ninety-seven thousand six hundred forty-one'), (17887, 96816, 'ninety-six thousand eight hundred sixteen'), (17888, 53313, 'fifty-three thousand three hundred thirteen'), (17889, 80779, 'eighty thousand seven hundred seventy-nine'), (17890, 487, 'four hundred eighty-seven'), (17891, 42645, 'forty-two thousand six hundred forty-five'), (17892, 23915, 'twenty-three thousand nine hundred fifteen'), (17893, 60290, 'sixty thousand two hundred ninety'), (17894, 70154, 'seventy thousand one hundred fifty-four'), (17895, 36921, 'thirty-six thousand nine hundred twenty-one'), (17896, 46074, 'forty-six thousand seventy-four'), (17897, 76865, 'seventy-six thousand eight hundred sixty-five'), (17898, 38338, 'thirty-eight thousand three hundred thirty-eight'), (17899, 71718, 'seventy-one thousand seven hundred eighteen'), (17900, 14949, 'fourteen thousand nine hundred forty-nine'), (17901, 60348, 'sixty thousand three hundred forty-eight'), (17902, 12581, 'twelve thousand five hundred eighty-one'), (17903, 67406, 'sixty-seven thousand four hundred six'), (17904, 43194, 'forty-three thousand one hundred ninety-four'), (17905, 21354, 'twenty-one thousand three hundred fifty-four'), (17906, 59475, 'fifty-nine thousand four hundred seventy-five'), (17907, 97593, 'ninety-seven thousand five hundred ninety-three'), (17908, 47316, 'forty-seven thousand three hundred sixteen'), (17909, 20038, 'twenty thousand thirty-eight'), (17910, 10123, 'ten thousand one hundred twenty-three'), (17911, 65713, 'sixty-five thousand seven hundred thirteen'), (17912, 78976, 'seventy-eight thousand nine hundred seventy-six'), (17913, 87792, 'eighty-seven thousand seven hundred ninety-two'), (17914, 65029, 'sixty-five thousand twenty-nine'), (17915, 34278, 'thirty-four thousand two hundred seventy-eight'), (17916, 16956, 'sixteen thousand nine hundred fifty-six'), (17917, 58622, 'fifty-eight thousand six hundred twenty-two'), (17918, 26614, 'twenty-six thousand six hundred fourteen'), (17919, 63734, 'sixty-three thousand seven hundred thirty-four'), (17920, 45065, 'forty-five thousand sixty-five'), (17921, 64259, 'sixty-four thousand two hundred fifty-nine'), (17922, 57639, 'fifty-seven thousand six hundred thirty-nine'), (17923, 29609, 'twenty-nine thousand six hundred nine'), (17924, 21771, 'twenty-one thousand seven hundred seventy-one'), (17925, 88757, 'eighty-eight thousand seven hundred fifty-seven'), (17926, 52284, 'fifty-two thousand two hundred eighty-four'), (17927, 1777, 'one thousand seven hundred seventy-seven'), (17928, 152, 'one hundred fifty-two'), (17929, 21701, 'twenty-one thousand seven hundred one'), (17930, 5853, 'five thousand eight hundred fifty-three'), (17931, 46708, 'forty-six thousand seven hundred eight'), (17932, 69319, 'sixty-nine thousand three hundred nineteen'), (17933, 42168, 'forty-two thousand one hundred sixty-eight'), (17934, 58380, 'fifty-eight thousand three hundred eighty'), (17935, 39463, 'thirty-nine thousand four hundred sixty-three'), (17936, 44739, 'forty-four thousand seven hundred thirty-nine'), (17937, 23642, 'twenty-three thousand six hundred forty-two'), (17938, 18211, 'eighteen thousand two hundred eleven'), (17939, 56881, 'fifty-six thousand eight hundred eighty-one'), (17940, 52282, 'fifty-two thousand two hundred eighty-two'), (17941, 95481, 'ninety-five thousand four hundred eighty-one'), (17942, 99683, 'ninety-nine thousand six hundred eighty-three'), (17943, 35120, 'thirty-five thousand one hundred twenty'), (17944, 20986, 'twenty thousand nine hundred eighty-six'), (17945, 52171, 'fifty-two thousand one hundred seventy-one'), (17946, 94489, 'ninety-four thousand four hundred eighty-nine'), (17947, 97093, 'ninety-seven thousand ninety-three'), (17948, 86752, 'eighty-six thousand seven hundred fifty-two'), (17949, 80924, 'eighty thousand nine hundred twenty-four'), (17950, 50412, 'fifty thousand four hundred twelve'), (17951, 38262, 'thirty-eight thousand two hundred sixty-two'), (17952, 40808, 'forty thousand eight hundred eight'), (17953, 92467, 'ninety-two thousand four hundred sixty-seven'), (17954, 53853, 'fifty-three thousand eight hundred fifty-three'), (17955, 5696, 'five thousand six hundred ninety-six'), (17956, 37384, 'thirty-seven thousand three hundred eighty-four'), (17957, 99104, 'ninety-nine thousand one hundred four'), (17958, 63154, 'sixty-three thousand one hundred fifty-four'), (17959, 68905, 'sixty-eight thousand nine hundred five'), (17960, 72986, 'seventy-two thousand nine hundred eighty-six'), (17961, 9729, 'nine thousand seven hundred twenty-nine'), (17962, 78016, 'seventy-eight thousand sixteen'), (17963, 99492, 'ninety-nine thousand four hundred ninety-two'), (17964, 35081, 'thirty-five thousand eighty-one'), (17965, 39297, 'thirty-nine thousand two hundred ninety-seven'), (17966, 81024, 'eighty-one thousand twenty-four'), (17967, 3950, 'three thousand nine hundred fifty'), (17968, 45067, 'forty-five thousand sixty-seven'), (17969, 52812, 'fifty-two thousand eight hundred twelve'), (17970, 55743, 'fifty-five thousand seven hundred forty-three'), (17971, 69439, 'sixty-nine thousand four hundred thirty-nine'), (17972, 52771, 'fifty-two thousand seven hundred seventy-one'), (17973, 70455, 'seventy thousand four hundred fifty-five'), (17974, 3820, 'three thousand eight hundred twenty'), (17975, 91813, 'ninety-one thousand eight hundred thirteen'), (17976, 69818, 'sixty-nine thousand eight hundred eighteen'), (17977, 55919, 'fifty-five thousand nine hundred nineteen'), (17978, 98893, 'ninety-eight thousand eight hundred ninety-three'), (17979, 64366, 'sixty-four thousand three hundred sixty-six'), (17980, 82159, 'eighty-two thousand one hundred fifty-nine'), (17981, 55522, 'fifty-five thousand five hundred twenty-two'), (17982, 91460, 'ninety-one thousand four hundred sixty'), (17983, 8503, 'eight thousand five hundred three'), (17984, 3069, 'three thousand sixty-nine'), (17985, 67114, 'sixty-seven thousand one hundred fourteen'), (17986, 37930, 'thirty-seven thousand nine hundred thirty'), (17987, 8077, 'eight thousand seventy-seven'), (17988, 89288, 'eighty-nine thousand two hundred eighty-eight'), (17989, 67341, 'sixty-seven thousand three hundred forty-one'), (17990, 35574, 'thirty-five thousand five hundred seventy-four'), (17991, 75908, 'seventy-five thousand nine hundred eight'), (17992, 60655, 'sixty thousand six hundred fifty-five'), (17993, 93094, 'ninety-three thousand ninety-four'), (17994, 5406, 'five thousand four hundred six'), (17995, 58503, 'fifty-eight thousand five hundred three'), (17996, 33109, 'thirty-three thousand one hundred nine'), (17997, 52908, 'fifty-two thousand nine hundred eight'), (17998, 78264, 'seventy-eight thousand two hundred sixty-four'), (17999, 19820, 'nineteen thousand eight hundred twenty'), (18000, 69222, 'sixty-nine thousand two hundred twenty-two'), (18001, 11344, 'eleven thousand three hundred forty-four'), (18002, 16549, 'sixteen thousand five hundred forty-nine'), (18003, 32202, 'thirty-two thousand two hundred two'), (18004, 71942, 'seventy-one thousand nine hundred forty-two'), (18005, 82521, 'eighty-two thousand five hundred twenty-one'), (18006, 68078, 'sixty-eight thousand seventy-eight'), (18007, 65688, 'sixty-five thousand six hundred eighty-eight'), (18008, 49403, 'forty-nine thousand four hundred three'), (18009, 77360, 'seventy-seven thousand three hundred sixty'), (18010, 18164, 'eighteen thousand one hundred sixty-four'), (18011, 73993, 'seventy-three thousand nine hundred ninety-three'), (18012, 19775, 'nineteen thousand seven hundred seventy-five'), (18013, 69957, 'sixty-nine thousand nine hundred fifty-seven'), (18014, 33962, 'thirty-three thousand nine hundred sixty-two'), (18015, 82716, 'eighty-two thousand seven hundred sixteen'), (18016, 29186, 'twenty-nine thousand one hundred eighty-six'), (18017, 67157, 'sixty-seven thousand one hundred fifty-seven'), (18018, 49874, 'forty-nine thousand eight hundred seventy-four'), (18019, 66754, 'sixty-six thousand seven hundred fifty-four'), (18020, 66623, 'sixty-six thousand six hundred twenty-three'), (18021, 64804, 'sixty-four thousand eight hundred four'), (18022, 64670, 'sixty-four thousand six hundred seventy'), (18023, 8471, 'eight thousand four hundred seventy-one'), (18024, 53459, 'fifty-three thousand four hundred fifty-nine'), (18025, 61326, 'sixty-one thousand three hundred twenty-six'), (18026, 47055, 'forty-seven thousand fifty-five'), (18027, 240, 'two hundred forty'), (18028, 79895, 'seventy-nine thousand eight hundred ninety-five'), (18029, 8113, 'eight thousand one hundred thirteen'), (18030, 31497, 'thirty-one thousand four hundred ninety-seven'), (18031, 41529, 'forty-one thousand five hundred twenty-nine'), (18032, 98580, 'ninety-eight thousand five hundred eighty'), (18033, 32902, 'thirty-two thousand nine hundred two'), (18034, 31551, 'thirty-one thousand five hundred fifty-one'), (18035, 57650, 'fifty-seven thousand six hundred fifty'), (18036, 91597, 'ninety-one thousand five hundred ninety-seven'), (18037, 70813, 'seventy thousand eight hundred thirteen'), (18038, 96030, 'ninety-six thousand thirty'), (18039, 94049, 'ninety-four thousand forty-nine'), (18040, 14632, 'fourteen thousand six hundred thirty-two'), (18041, 86333, 'eighty-six thousand three hundred thirty-three'), (18042, 49202, 'forty-nine thousand two hundred two'), (18043, 12388, 'twelve thousand three hundred eighty-eight'), (18044, 89225, 'eighty-nine thousand two hundred twenty-five'), (18045, 69657, 'sixty-nine thousand six hundred fifty-seven'), (18046, 48643, 'forty-eight thousand six hundred forty-three'), (18047, 98850, 'ninety-eight thousand eight hundred fifty'), (18048, 51890, 'fifty-one thousand eight hundred ninety'), (18049, 25730, 'twenty-five thousand seven hundred thirty'), (18050, 13491, 'thirteen thousand four hundred ninety-one'), (18051, 29215, 'twenty-nine thousand two hundred fifteen'), (18052, 75378, 'seventy-five thousand three hundred seventy-eight'), (18053, 12394, 'twelve thousand three hundred ninety-four'), (18054, 62517, 'sixty-two thousand five hundred seventeen'), (18055, 21796, 'twenty-one thousand seven hundred ninety-six'), (18056, 92824, 'ninety-two thousand eight hundred twenty-four'), (18057, 83018, 'eighty-three thousand eighteen'), (18058, 84938, 'eighty-four thousand nine hundred thirty-eight'), (18059, 73132, 'seventy-three thousand one hundred thirty-two'), (18060, 82761, 'eighty-two thousand seven hundred sixty-one'), (18061, 10641, 'ten thousand six hundred forty-one'), (18062, 92567, 'ninety-two thousand five hundred sixty-seven'), (18063, 99559, 'ninety-nine thousand five hundred fifty-nine'), (18064, 53723, 'fifty-three thousand seven hundred twenty-three'), (18065, 31493, 'thirty-one thousand four hundred ninety-three'), (18066, 10340, 'ten thousand three hundred forty'), (18067, 28405, 'twenty-eight thousand four hundred five'), (18068, 59210, 'fifty-nine thousand two hundred ten'), (18069, 98540, 'ninety-eight thousand five hundred forty'), (18070, 70488, 'seventy thousand four hundred eighty-eight'), (18071, 67152, 'sixty-seven thousand one hundred fifty-two'), (18072, 5995, 'five thousand nine hundred ninety-five'), (18073, 41583, 'forty-one thousand five hundred eighty-three'), (18074, 15155, 'fifteen thousand one hundred fifty-five'), (18075, 7412, 'seven thousand four hundred twelve'), (18076, 83748, 'eighty-three thousand seven hundred forty-eight'), (18077, 80117, 'eighty thousand one hundred seventeen'), (18078, 86084, 'eighty-six thousand eighty-four'), (18079, 39231, 'thirty-nine thousand two hundred thirty-one'), (18080, 82455, 'eighty-two thousand four hundred fifty-five'), (18081, 13541, 'thirteen thousand five hundred forty-one'), (18082, 71737, 'seventy-one thousand seven hundred thirty-seven'), (18083, 34045, 'thirty-four thousand forty-five'), (18084, 56671, 'fifty-six thousand six hundred seventy-one'), (18085, 40559, 'forty thousand five hundred fifty-nine'), (18086, 40852, 'forty thousand eight hundred fifty-two'), (18087, 31524, 'thirty-one thousand five hundred twenty-four'), (18088, 36714, 'thirty-six thousand seven hundred fourteen'), (18089, 77971, 'seventy-seven thousand nine hundred seventy-one'), (18090, 46440, 'forty-six thousand four hundred forty'), (18091, 83734, 'eighty-three thousand seven hundred thirty-four'), (18092, 28864, 'twenty-eight thousand eight hundred sixty-four'), (18093, 87334, 'eighty-seven thousand three hundred thirty-four'), (18094, 59821, 'fifty-nine thousand eight hundred twenty-one'), (18095, 58367, 'fifty-eight thousand three hundred sixty-seven'), (18096, 57033, 'fifty-seven thousand thirty-three'), (18097, 77686, 'seventy-seven thousand six hundred eighty-six'), (18098, 31095, 'thirty-one thousand ninety-five'), (18099, 83822, 'eighty-three thousand eight hundred twenty-two'), (18100, 38240, 'thirty-eight thousand two hundred forty'), (18101, 69205, 'sixty-nine thousand two hundred five'), (18102, 69114, 'sixty-nine thousand one hundred fourteen'), (18103, 83844, 'eighty-three thousand eight hundred forty-four'), (18104, 25945, 'twenty-five thousand nine hundred forty-five'), (18105, 16850, 'sixteen thousand eight hundred fifty'), (18106, 35607, 'thirty-five thousand six hundred seven'), (18107, 29803, 'twenty-nine thousand eight hundred three'), (18108, 52399, 'fifty-two thousand three hundred ninety-nine'), (18109, 52957, 'fifty-two thousand nine hundred fifty-seven'), (18110, 86802, 'eighty-six thousand eight hundred two'), (18111, 32652, 'thirty-two thousand six hundred fifty-two'), (18112, 23084, 'twenty-three thousand eighty-four'), (18113, 24066, 'twenty-four thousand sixty-six'), (18114, 37875, 'thirty-seven thousand eight hundred seventy-five'), (18115, 77684, 'seventy-seven thousand six hundred eighty-four'), (18116, 22519, 'twenty-two thousand five hundred nineteen'), (18117, 66477, 'sixty-six thousand four hundred seventy-seven'), (18118, 11312, 'eleven thousand three hundred twelve'), (18119, 42113, 'forty-two thousand one hundred thirteen'), (18120, 10071, 'ten thousand seventy-one'), (18121, 78343, 'seventy-eight thousand three hundred forty-three'), (18122, 76358, 'seventy-six thousand three hundred fifty-eight'), (18123, 38064, 'thirty-eight thousand sixty-four'), (18124, 5225, 'five thousand two hundred twenty-five'), (18125, 75410, 'seventy-five thousand four hundred ten'), (18126, 22516, 'twenty-two thousand five hundred sixteen'), (18127, 94831, 'ninety-four thousand eight hundred thirty-one'), (18128, 68601, 'sixty-eight thousand six hundred one'), (18129, 40943, 'forty thousand nine hundred forty-three'), (18130, 71809, 'seventy-one thousand eight hundred nine'), (18131, 49824, 'forty-nine thousand eight hundred twenty-four'), (18132, 34991, 'thirty-four thousand nine hundred ninety-one'), (18133, 28434, 'twenty-eight thousand four hundred thirty-four'), (18134, 839, 'eight hundred thirty-nine'), (18135, 40123, 'forty thousand one hundred twenty-three'), (18136, 52661, 'fifty-two thousand six hundred sixty-one'), (18137, 68593, 'sixty-eight thousand five hundred ninety-three'), (18138, 79340, 'seventy-nine thousand three hundred forty'), (18139, 96850, 'ninety-six thousand eight hundred fifty'), (18140, 19722, 'nineteen thousand seven hundred twenty-two'), (18141, 81963, 'eighty-one thousand nine hundred sixty-three'), (18142, 42237, 'forty-two thousand two hundred thirty-seven'), (18143, 53259, 'fifty-three thousand two hundred fifty-nine'), (18144, 8696, 'eight thousand six hundred ninety-six'), (18145, 89432, 'eighty-nine thousand four hundred thirty-two'), (18146, 34865, 'thirty-four thousand eight hundred sixty-five'), (18147, 778, 'seven hundred seventy-eight'), (18148, 3752, 'three thousand seven hundred fifty-two'), (18149, 80337, 'eighty thousand three hundred thirty-seven'), (18150, 60257, 'sixty thousand two hundred fifty-seven'), (18151, 12644, 'twelve thousand six hundred forty-four'), (18152, 22016, 'twenty-two thousand sixteen'), (18153, 41847, 'forty-one thousand eight hundred forty-seven'), (18154, 55242, 'fifty-five thousand two hundred forty-two'), (18155, 77675, 'seventy-seven thousand six hundred seventy-five'), (18156, 93515, 'ninety-three thousand five hundred fifteen'), (18157, 19247, 'nineteen thousand two hundred forty-seven'), (18158, 31076, 'thirty-one thousand seventy-six'), (18159, 57615, 'fifty-seven thousand six hundred fifteen'), (18160, 6157, 'six thousand one hundred fifty-seven'), (18161, 7705, 'seven thousand seven hundred five'), (18162, 45019, 'forty-five thousand nineteen'), (18163, 52243, 'fifty-two thousand two hundred forty-three'), (18164, 72361, 'seventy-two thousand three hundred sixty-one'), (18165, 28395, 'twenty-eight thousand three hundred ninety-five'), (18166, 17535, 'seventeen thousand five hundred thirty-five'), (18167, 99667, 'ninety-nine thousand six hundred sixty-seven'), (18168, 51057, 'fifty-one thousand fifty-seven'), (18169, 65821, 'sixty-five thousand eight hundred twenty-one'), (18170, 35024, 'thirty-five thousand twenty-four'), (18171, 28036, 'twenty-eight thousand thirty-six'), (18172, 9423, 'nine thousand four hundred twenty-three'), (18173, 676, 'six hundred seventy-six'), (18174, 1979, 'one thousand nine hundred seventy-nine'), (18175, 92631, 'ninety-two thousand six hundred thirty-one'), (18176, 587, 'five hundred eighty-seven'), (18177, 53312, 'fifty-three thousand three hundred twelve'), (18178, 86244, 'eighty-six thousand two hundred forty-four'), (18179, 47708, 'forty-seven thousand seven hundred eight'), (18180, 69902, 'sixty-nine thousand nine hundred two'), (18181, 18642, 'eighteen thousand six hundred forty-two'), (18182, 3677, 'three thousand six hundred seventy-seven'), (18183, 48693, 'forty-eight thousand six hundred ninety-three'), (18184, 54616, 'fifty-four thousand six hundred sixteen'), (18185, 44953, 'forty-four thousand nine hundred fifty-three'), (18186, 26769, 'twenty-six thousand seven hundred sixty-nine'), (18187, 88681, 'eighty-eight thousand six hundred eighty-one'), (18188, 13297, 'thirteen thousand two hundred ninety-seven'), (18189, 2813, 'two thousand eight hundred thirteen'), (18190, 99334, 'ninety-nine thousand three hundred thirty-four'), (18191, 35489, 'thirty-five thousand four hundred eighty-nine'), (18192, 83455, 'eighty-three thousand four hundred fifty-five'), (18193, 74751, 'seventy-four thousand seven hundred fifty-one'), (18194, 31216, 'thirty-one thousand two hundred sixteen'), (18195, 41458, 'forty-one thousand four hundred fifty-eight'), (18196, 22365, 'twenty-two thousand three hundred sixty-five'), (18197, 28797, 'twenty-eight thousand seven hundred ninety-seven'), (18198, 70043, 'seventy thousand forty-three'), (18199, 34360, 'thirty-four thousand three hundred sixty'), (18200, 84768, 'eighty-four thousand seven hundred sixty-eight'), (18201, 1763, 'one thousand seven hundred sixty-three'), (18202, 17630, 'seventeen thousand six hundred thirty'), (18203, 94790, 'ninety-four thousand seven hundred ninety'), (18204, 52108, 'fifty-two thousand one hundred eight'), (18205, 78884, 'seventy-eight thousand eight hundred eighty-four'), (18206, 25468, 'twenty-five thousand four hundred sixty-eight'), (18207, 6545, 'six thousand five hundred forty-five'), (18208, 46144, 'forty-six thousand one hundred forty-four'), (18209, 68943, 'sixty-eight thousand nine hundred forty-three'), (18210, 85902, 'eighty-five thousand nine hundred two'), (18211, 36142, 'thirty-six thousand one hundred forty-two'), (18212, 18879, 'eighteen thousand eight hundred seventy-nine'), (18213, 49729, 'forty-nine thousand seven hundred twenty-nine'), (18214, 77988, 'seventy-seven thousand nine hundred eighty-eight'), (18215, 54039, 'fifty-four thousand thirty-nine'), (18216, 49744, 'forty-nine thousand seven hundred forty-four'), (18217, 36567, 'thirty-six thousand five hundred sixty-seven'), (18218, 95884, 'ninety-five thousand eight hundred eighty-four'), (18219, 36545, 'thirty-six thousand five hundred forty-five'), (18220, 17832, 'seventeen thousand eight hundred thirty-two'), (18221, 4554, 'four thousand five hundred fifty-four'), (18222, 91185, 'ninety-one thousand one hundred eighty-five'), (18223, 36481, 'thirty-six thousand four hundred eighty-one'), (18224, 91760, 'ninety-one thousand seven hundred sixty'), (18225, 18298, 'eighteen thousand two hundred ninety-eight'), (18226, 274, 'two hundred seventy-four'), (18227, 19481, 'nineteen thousand four hundred eighty-one'), (18228, 87851, 'eighty-seven thousand eight hundred fifty-one'), (18229, 29251, 'twenty-nine thousand two hundred fifty-one'), (18230, 67116, 'sixty-seven thousand one hundred sixteen'), (18231, 17167, 'seventeen thousand one hundred sixty-seven'), (18232, 45900, 'forty-five thousand nine hundred'), (18233, 10692, 'ten thousand six hundred ninety-two'), (18234, 40811, 'forty thousand eight hundred eleven'), (18235, 72354, 'seventy-two thousand three hundred fifty-four'), (18236, 71532, 'seventy-one thousand five hundred thirty-two'), (18237, 16272, 'sixteen thousand two hundred seventy-two'), (18238, 4062, 'four thousand sixty-two'), (18239, 20263, 'twenty thousand two hundred sixty-three'), (18240, 81813, 'eighty-one thousand eight hundred thirteen'), (18241, 16476, 'sixteen thousand four hundred seventy-six'), (18242, 75110, 'seventy-five thousand one hundred ten'), (18243, 99463, 'ninety-nine thousand four hundred sixty-three'), (18244, 73235, 'seventy-three thousand two hundred thirty-five'), (18245, 45277, 'forty-five thousand two hundred seventy-seven'), (18246, 9513, 'nine thousand five hundred thirteen'), (18247, 18211, 'eighteen thousand two hundred eleven'), (18248, 91367, 'ninety-one thousand three hundred sixty-seven'), (18249, 5333, 'five thousand three hundred thirty-three'), (18250, 18915, 'eighteen thousand nine hundred fifteen'), (18251, 5699, 'five thousand six hundred ninety-nine'), (18252, 40111, 'forty thousand one hundred eleven'), (18253, 85893, 'eighty-five thousand eight hundred ninety-three'), (18254, 41574, 'forty-one thousand five hundred seventy-four'), (18255, 84297, 'eighty-four thousand two hundred ninety-seven'), (18256, 27290, 'twenty-seven thousand two hundred ninety'), (18257, 69072, 'sixty-nine thousand seventy-two'), (18258, 10164, 'ten thousand one hundred sixty-four'), (18259, 6548, 'six thousand five hundred forty-eight'), (18260, 20490, 'twenty thousand four hundred ninety'), (18261, 67949, 'sixty-seven thousand nine hundred forty-nine'), (18262, 87172, 'eighty-seven thousand one hundred seventy-two'), (18263, 8892, 'eight thousand eight hundred ninety-two'), (18264, 3556, 'three thousand five hundred fifty-six'), (18265, 46688, 'forty-six thousand six hundred eighty-eight'), (18266, 87914, 'eighty-seven thousand nine hundred fourteen'), (18267, 84136, 'eighty-four thousand one hundred thirty-six'), (18268, 71777, 'seventy-one thousand seven hundred seventy-seven'), (18269, 94267, 'ninety-four thousand two hundred sixty-seven'), (18270, 63858, 'sixty-three thousand eight hundred fifty-eight'), (18271, 92642, 'ninety-two thousand six hundred forty-two'), (18272, 14729, 'fourteen thousand seven hundred twenty-nine'), (18273, 98973, 'ninety-eight thousand nine hundred seventy-three'), (18274, 48860, 'forty-eight thousand eight hundred sixty'), (18275, 37651, 'thirty-seven thousand six hundred fifty-one'), (18276, 69811, 'sixty-nine thousand eight hundred eleven'), (18277, 11237, 'eleven thousand two hundred thirty-seven'), (18278, 70313, 'seventy thousand three hundred thirteen'), (18279, 65118, 'sixty-five thousand one hundred eighteen'), (18280, 14955, 'fourteen thousand nine hundred fifty-five'), (18281, 98985, 'ninety-eight thousand nine hundred eighty-five'), (18282, 99399, 'ninety-nine thousand three hundred ninety-nine'), (18283, 57169, 'fifty-seven thousand one hundred sixty-nine'), (18284, 1567, 'one thousand five hundred sixty-seven'), (18285, 27944, 'twenty-seven thousand nine hundred forty-four'), (18286, 36695, 'thirty-six thousand six hundred ninety-five'), (18287, 1291, 'one thousand two hundred ninety-one'), (18288, 73497, 'seventy-three thousand four hundred ninety-seven'), (18289, 37604, 'thirty-seven thousand six hundred four'), (18290, 7905, 'seven thousand nine hundred five'), (18291, 64460, 'sixty-four thousand four hundred sixty'), (18292, 83021, 'eighty-three thousand twenty-one'), (18293, 71975, 'seventy-one thousand nine hundred seventy-five'), (18294, 70278, 'seventy thousand two hundred seventy-eight'), (18295, 83557, 'eighty-three thousand five hundred fifty-seven'), (18296, 3290, 'three thousand two hundred ninety'), (18297, 16423, 'sixteen thousand four hundred twenty-three'), (18298, 7116, 'seven thousand one hundred sixteen'), (18299, 40651, 'forty thousand six hundred fifty-one'), (18300, 25838, 'twenty-five thousand eight hundred thirty-eight'), (18301, 48834, 'forty-eight thousand eight hundred thirty-four'), (18302, 23328, 'twenty-three thousand three hundred twenty-eight'), (18303, 39680, 'thirty-nine thousand six hundred eighty'), (18304, 51819, 'fifty-one thousand eight hundred nineteen'), (18305, 18813, 'eighteen thousand eight hundred thirteen'), (18306, 97323, 'ninety-seven thousand three hundred twenty-three'), (18307, 66364, 'sixty-six thousand three hundred sixty-four'), (18308, 39522, 'thirty-nine thousand five hundred twenty-two'), (18309, 77707, 'seventy-seven thousand seven hundred seven'), (18310, 71715, 'seventy-one thousand seven hundred fifteen'), (18311, 33025, 'thirty-three thousand twenty-five'), (18312, 79680, 'seventy-nine thousand six hundred eighty'), (18313, 18046, 'eighteen thousand forty-six'), (18314, 49728, 'forty-nine thousand seven hundred twenty-eight'), (18315, 59022, 'fifty-nine thousand twenty-two'), (18316, 9095, 'nine thousand ninety-five'), (18317, 71199, 'seventy-one thousand one hundred ninety-nine'), (18318, 30752, 'thirty thousand seven hundred fifty-two'), (18319, 54095, 'fifty-four thousand ninety-five'), (18320, 1270, 'one thousand two hundred seventy'), (18321, 59571, 'fifty-nine thousand five hundred seventy-one'), (18322, 4220, 'four thousand two hundred twenty'), (18323, 80585, 'eighty thousand five hundred eighty-five'), (18324, 49780, 'forty-nine thousand seven hundred eighty'), (18325, 47903, 'forty-seven thousand nine hundred three'), (18326, 25873, 'twenty-five thousand eight hundred seventy-three'), (18327, 97236, 'ninety-seven thousand two hundred thirty-six'), (18328, 34016, 'thirty-four thousand sixteen'), (18329, 48672, 'forty-eight thousand six hundred seventy-two'), (18330, 23157, 'twenty-three thousand one hundred fifty-seven'), (18331, 29013, 'twenty-nine thousand thirteen'), (18332, 73871, 'seventy-three thousand eight hundred seventy-one'), (18333, 54368, 'fifty-four thousand three hundred sixty-eight'), (18334, 15501, 'fifteen thousand five hundred one'), (18335, 27693, 'twenty-seven thousand six hundred ninety-three'), (18336, 53497, 'fifty-three thousand four hundred ninety-seven'), (18337, 54265, 'fifty-four thousand two hundred sixty-five'), (18338, 11577, 'eleven thousand five hundred seventy-seven'), (18339, 69842, 'sixty-nine thousand eight hundred forty-two'), (18340, 47179, 'forty-seven thousand one hundred seventy-nine'), (18341, 70405, 'seventy thousand four hundred five'), (18342, 92551, 'ninety-two thousand five hundred fifty-one'), (18343, 95152, 'ninety-five thousand one hundred fifty-two'), (18344, 76207, 'seventy-six thousand two hundred seven'), (18345, 12115, 'twelve thousand one hundred fifteen'), (18346, 66037, 'sixty-six thousand thirty-seven'), (18347, 10383, 'ten thousand three hundred eighty-three'), (18348, 73366, 'seventy-three thousand three hundred sixty-six'), (18349, 69571, 'sixty-nine thousand five hundred seventy-one'), (18350, 60840, 'sixty thousand eight hundred forty'), (18351, 52305, 'fifty-two thousand three hundred five'), (18352, 92931, 'ninety-two thousand nine hundred thirty-one'), (18353, 79433, 'seventy-nine thousand four hundred thirty-three'), (18354, 24661, 'twenty-four thousand six hundred sixty-one'), (18355, 72030, 'seventy-two thousand thirty'), (18356, 94222, 'ninety-four thousand two hundred twenty-two'), (18357, 773, 'seven hundred seventy-three'), (18358, 16424, 'sixteen thousand four hundred twenty-four'), (18359, 56226, 'fifty-six thousand two hundred twenty-six'), (18360, 731, 'seven hundred thirty-one'), (18361, 10683, 'ten thousand six hundred eighty-three'), (18362, 31441, 'thirty-one thousand four hundred forty-one'), (18363, 34988, 'thirty-four thousand nine hundred eighty-eight'), (18364, 36140, 'thirty-six thousand one hundred forty'), (18365, 78345, 'seventy-eight thousand three hundred forty-five'), (18366, 5815, 'five thousand eight hundred fifteen'), (18367, 83776, 'eighty-three thousand seven hundred seventy-six'), (18368, 46842, 'forty-six thousand eight hundred forty-two'), (18369, 42829, 'forty-two thousand eight hundred twenty-nine'), (18370, 27079, 'twenty-seven thousand seventy-nine'), (18371, 97533, 'ninety-seven thousand five hundred thirty-three'), (18372, 9006, 'nine thousand six'), (18373, 57559, 'fifty-seven thousand five hundred fifty-nine'), (18374, 67778, 'sixty-seven thousand seven hundred seventy-eight'), (18375, 29581, 'twenty-nine thousand five hundred eighty-one'), (18376, 91225, 'ninety-one thousand two hundred twenty-five'), (18377, 95131, 'ninety-five thousand one hundred thirty-one'), (18378, 52717, 'fifty-two thousand seven hundred seventeen'), (18379, 48972, 'forty-eight thousand nine hundred seventy-two'), (18380, 453, 'four hundred fifty-three'), (18381, 21128, 'twenty-one thousand one hundred twenty-eight'), (18382, 47788, 'forty-seven thousand seven hundred eighty-eight'), (18383, 99462, 'ninety-nine thousand four hundred sixty-two'), (18384, 21760, 'twenty-one thousand seven hundred sixty'), (18385, 36089, 'thirty-six thousand eighty-nine'), (18386, 92991, 'ninety-two thousand nine hundred ninety-one'), (18387, 48698, 'forty-eight thousand six hundred ninety-eight'), (18388, 85285, 'eighty-five thousand two hundred eighty-five'), (18389, 32287, 'thirty-two thousand two hundred eighty-seven'), (18390, 38926, 'thirty-eight thousand nine hundred twenty-six'), (18391, 642, 'six hundred forty-two'), (18392, 44543, 'forty-four thousand five hundred forty-three'), (18393, 63281, 'sixty-three thousand two hundred eighty-one'), (18394, 112, 'one hundred twelve'), (18395, 91476, 'ninety-one thousand four hundred seventy-six'), (18396, 82160, 'eighty-two thousand one hundred sixty'), (18397, 25391, 'twenty-five thousand three hundred ninety-one'), (18398, 66435, 'sixty-six thousand four hundred thirty-five'), (18399, 96523, 'ninety-six thousand five hundred twenty-three'), (18400, 37965, 'thirty-seven thousand nine hundred sixty-five'), (18401, 48181, 'forty-eight thousand one hundred eighty-one'), (18402, 40891, 'forty thousand eight hundred ninety-one'), (18403, 20979, 'twenty thousand nine hundred seventy-nine'), (18404, 76332, 'seventy-six thousand three hundred thirty-two'), (18405, 73666, 'seventy-three thousand six hundred sixty-six'), (18406, 15137, 'fifteen thousand one hundred thirty-seven'), (18407, 20201, 'twenty thousand two hundred one'), (18408, 71520, 'seventy-one thousand five hundred twenty'), (18409, 68896, 'sixty-eight thousand eight hundred ninety-six'), (18410, 77980, 'seventy-seven thousand nine hundred eighty'), (18411, 42240, 'forty-two thousand two hundred forty'), (18412, 73414, 'seventy-three thousand four hundred fourteen'), (18413, 36228, 'thirty-six thousand two hundred twenty-eight'), (18414, 53431, 'fifty-three thousand four hundred thirty-one'), (18415, 65419, 'sixty-five thousand four hundred nineteen'), (18416, 12234, 'twelve thousand two hundred thirty-four'), (18417, 34417, 'thirty-four thousand four hundred seventeen'), (18418, 22648, 'twenty-two thousand six hundred forty-eight'), (18419, 90857, 'ninety thousand eight hundred fifty-seven'), (18420, 35979, 'thirty-five thousand nine hundred seventy-nine'), (18421, 76857, 'seventy-six thousand eight hundred fifty-seven'), (18422, 52915, 'fifty-two thousand nine hundred fifteen'), (18423, 60994, 'sixty thousand nine hundred ninety-four'), (18424, 58900, 'fifty-eight thousand nine hundred'), (18425, 49329, 'forty-nine thousand three hundred twenty-nine'), (18426, 95885, 'ninety-five thousand eight hundred eighty-five'), (18427, 8966, 'eight thousand nine hundred sixty-six'), (18428, 20307, 'twenty thousand three hundred seven'), (18429, 98936, 'ninety-eight thousand nine hundred thirty-six'), (18430, 78825, 'seventy-eight thousand eight hundred twenty-five'), (18431, 99762, 'ninety-nine thousand seven hundred sixty-two'), (18432, 58314, 'fifty-eight thousand three hundred fourteen'), (18433, 73188, 'seventy-three thousand one hundred eighty-eight'), (18434, 44479, 'forty-four thousand four hundred seventy-nine'), (18435, 8871, 'eight thousand eight hundred seventy-one'), (18436, 46605, 'forty-six thousand six hundred five'), (18437, 73824, 'seventy-three thousand eight hundred twenty-four'), (18438, 67113, 'sixty-seven thousand one hundred thirteen'), (18439, 15026, 'fifteen thousand twenty-six'), (18440, 41522, 'forty-one thousand five hundred twenty-two'), (18441, 40006, 'forty thousand six'), (18442, 24713, 'twenty-four thousand seven hundred thirteen'), (18443, 87002, 'eighty-seven thousand two'), (18444, 77684, 'seventy-seven thousand six hundred eighty-four'), (18445, 22088, 'twenty-two thousand eighty-eight'), (18446, 41906, 'forty-one thousand nine hundred six'), (18447, 81118, 'eighty-one thousand one hundred eighteen'), (18448, 68019, 'sixty-eight thousand nineteen'), (18449, 27091, 'twenty-seven thousand ninety-one'), (18450, 269, 'two hundred sixty-nine'), (18451, 45754, 'forty-five thousand seven hundred fifty-four'), (18452, 52984, 'fifty-two thousand nine hundred eighty-four'), (18453, 47739, 'forty-seven thousand seven hundred thirty-nine'), (18454, 92242, 'ninety-two thousand two hundred forty-two'), (18455, 44980, 'forty-four thousand nine hundred eighty'), (18456, 85263, 'eighty-five thousand two hundred sixty-three'), (18457, 33523, 'thirty-three thousand five hundred twenty-three'), (18458, 61498, 'sixty-one thousand four hundred ninety-eight'), (18459, 11967, 'eleven thousand nine hundred sixty-seven'), (18460, 86916, 'eighty-six thousand nine hundred sixteen'), (18461, 66604, 'sixty-six thousand six hundred four'), (18462, 11573, 'eleven thousand five hundred seventy-three'), (18463, 95539, 'ninety-five thousand five hundred thirty-nine'), (18464, 63919, 'sixty-three thousand nine hundred nineteen'), (18465, 33303, 'thirty-three thousand three hundred three'), (18466, 11044, 'eleven thousand forty-four'), (18467, 42204, 'forty-two thousand two hundred four'), (18468, 1980, 'one thousand nine hundred eighty'), (18469, 91357, 'ninety-one thousand three hundred fifty-seven'), (18470, 77608, 'seventy-seven thousand six hundred eight'), (18471, 90179, 'ninety thousand one hundred seventy-nine'), (18472, 95179, 'ninety-five thousand one hundred seventy-nine'), (18473, 19139, 'nineteen thousand one hundred thirty-nine'), (18474, 72643, 'seventy-two thousand six hundred forty-three'), (18475, 90378, 'ninety thousand three hundred seventy-eight'), (18476, 45013, 'forty-five thousand thirteen'), (18477, 40148, 'forty thousand one hundred forty-eight'), (18478, 43707, 'forty-three thousand seven hundred seven'), (18479, 71646, 'seventy-one thousand six hundred forty-six'), (18480, 95245, 'ninety-five thousand two hundred forty-five'), (18481, 43246, 'forty-three thousand two hundred forty-six'), (18482, 365, 'three hundred sixty-five'), (18483, 51969, 'fifty-one thousand nine hundred sixty-nine'), (18484, 5843, 'five thousand eight hundred forty-three'), (18485, 3828, 'three thousand eight hundred twenty-eight'), (18486, 58379, 'fifty-eight thousand three hundred seventy-nine'), (18487, 74200, 'seventy-four thousand two hundred'), (18488, 59107, 'fifty-nine thousand one hundred seven'), (18489, 76795, 'seventy-six thousand seven hundred ninety-five'), (18490, 48598, 'forty-eight thousand five hundred ninety-eight'), (18491, 91706, 'ninety-one thousand seven hundred six'), (18492, 42898, 'forty-two thousand eight hundred ninety-eight'), (18493, 65592, 'sixty-five thousand five hundred ninety-two'), (18494, 96537, 'ninety-six thousand five hundred thirty-seven'), (18495, 48672, 'forty-eight thousand six hundred seventy-two'), (18496, 23875, 'twenty-three thousand eight hundred seventy-five'), (18497, 83166, 'eighty-three thousand one hundred sixty-six'), (18498, 42429, 'forty-two thousand four hundred twenty-nine'), (18499, 18568, 'eighteen thousand five hundred sixty-eight'), (18500, 57129, 'fifty-seven thousand one hundred twenty-nine'), (18501, 61487, 'sixty-one thousand four hundred eighty-seven'), (18502, 69362, 'sixty-nine thousand three hundred sixty-two'), (18503, 77196, 'seventy-seven thousand one hundred ninety-six'), (18504, 6345, 'six thousand three hundred forty-five'), (18505, 29764, 'twenty-nine thousand seven hundred sixty-four'), (18506, 64701, 'sixty-four thousand seven hundred one'), (18507, 94106, 'ninety-four thousand one hundred six'), (18508, 82139, 'eighty-two thousand one hundred thirty-nine'), (18509, 13942, 'thirteen thousand nine hundred forty-two'), (18510, 54637, 'fifty-four thousand six hundred thirty-seven'), (18511, 91858, 'ninety-one thousand eight hundred fifty-eight'), (18512, 22644, 'twenty-two thousand six hundred forty-four'), (18513, 6650, 'six thousand six hundred fifty'), (18514, 26503, 'twenty-six thousand five hundred three'), (18515, 10175, 'ten thousand one hundred seventy-five'), (18516, 28465, 'twenty-eight thousand four hundred sixty-five'), (18517, 67619, 'sixty-seven thousand six hundred nineteen'), (18518, 8101, 'eight thousand one hundred one'), (18519, 51724, 'fifty-one thousand seven hundred twenty-four'), (18520, 41982, 'forty-one thousand nine hundred eighty-two'), (18521, 38074, 'thirty-eight thousand seventy-four'), (18522, 65986, 'sixty-five thousand nine hundred eighty-six'), (18523, 3129, 'three thousand one hundred twenty-nine'), (18524, 84377, 'eighty-four thousand three hundred seventy-seven'), (18525, 65259, 'sixty-five thousand two hundred fifty-nine'), (18526, 75261, 'seventy-five thousand two hundred sixty-one'), (18527, 65940, 'sixty-five thousand nine hundred forty'), (18528, 59338, 'fifty-nine thousand three hundred thirty-eight'), (18529, 5876, 'five thousand eight hundred seventy-six'), (18530, 20579, 'twenty thousand five hundred seventy-nine'), (18531, 48540, 'forty-eight thousand five hundred forty'), (18532, 32525, 'thirty-two thousand five hundred twenty-five'), (18533, 88647, 'eighty-eight thousand six hundred forty-seven'), (18534, 95211, 'ninety-five thousand two hundred eleven'), (18535, 27514, 'twenty-seven thousand five hundred fourteen'), (18536, 36100, 'thirty-six thousand one hundred'), (18537, 94982, 'ninety-four thousand nine hundred eighty-two'), (18538, 89385, 'eighty-nine thousand three hundred eighty-five'), (18539, 93106, 'ninety-three thousand one hundred six'), (18540, 53853, 'fifty-three thousand eight hundred fifty-three'), (18541, 92085, 'ninety-two thousand eighty-five'), (18542, 56081, 'fifty-six thousand eighty-one'), (18543, 97739, 'ninety-seven thousand seven hundred thirty-nine'), (18544, 73183, 'seventy-three thousand one hundred eighty-three'), (18545, 12467, 'twelve thousand four hundred sixty-seven'), (18546, 90255, 'ninety thousand two hundred fifty-five'), (18547, 85859, 'eighty-five thousand eight hundred fifty-nine'), (18548, 61442, 'sixty-one thousand four hundred forty-two'), (18549, 16110, 'sixteen thousand one hundred ten'), (18550, 78169, 'seventy-eight thousand one hundred sixty-nine'), (18551, 23116, 'twenty-three thousand one hundred sixteen'), (18552, 20721, 'twenty thousand seven hundred twenty-one'), (18553, 84712, 'eighty-four thousand seven hundred twelve'), (18554, 24409, 'twenty-four thousand four hundred nine'), (18555, 77579, 'seventy-seven thousand five hundred seventy-nine'), (18556, 21145, 'twenty-one thousand one hundred forty-five'), (18557, 55837, 'fifty-five thousand eight hundred thirty-seven'), (18558, 93883, 'ninety-three thousand eight hundred eighty-three'), (18559, 38706, 'thirty-eight thousand seven hundred six'), (18560, 57058, 'fifty-seven thousand fifty-eight'), (18561, 36434, 'thirty-six thousand four hundred thirty-four'), (18562, 92663, 'ninety-two thousand six hundred sixty-three'), (18563, 84145, 'eighty-four thousand one hundred forty-five'), (18564, 71327, 'seventy-one thousand three hundred twenty-seven'), (18565, 77240, 'seventy-seven thousand two hundred forty'), (18566, 83331, 'eighty-three thousand three hundred thirty-one'), (18567, 94907, 'ninety-four thousand nine hundred seven'), (18568, 62003, 'sixty-two thousand three'), (18569, 56659, 'fifty-six thousand six hundred fifty-nine'), (18570, 97384, 'ninety-seven thousand three hundred eighty-four'), (18571, 68455, 'sixty-eight thousand four hundred fifty-five'), (18572, 29622, 'twenty-nine thousand six hundred twenty-two'), (18573, 55847, 'fifty-five thousand eight hundred forty-seven'), (18574, 26537, 'twenty-six thousand five hundred thirty-seven'), (18575, 66035, 'sixty-six thousand thirty-five'), (18576, 47454, 'forty-seven thousand four hundred fifty-four'), (18577, 23839, 'twenty-three thousand eight hundred thirty-nine'), (18578, 69033, 'sixty-nine thousand thirty-three'), (18579, 78914, 'seventy-eight thousand nine hundred fourteen'), (18580, 50252, 'fifty thousand two hundred fifty-two'), (18581, 2307, 'two thousand three hundred seven'), (18582, 58588, 'fifty-eight thousand five hundred eighty-eight'), (18583, 98427, 'ninety-eight thousand four hundred twenty-seven'), (18584, 1793, 'one thousand seven hundred ninety-three'), (18585, 62900, 'sixty-two thousand nine hundred'), (18586, 82209, 'eighty-two thousand two hundred nine'), (18587, 79054, 'seventy-nine thousand fifty-four'), (18588, 21329, 'twenty-one thousand three hundred twenty-nine'), (18589, 8775, 'eight thousand seven hundred seventy-five'), (18590, 67466, 'sixty-seven thousand four hundred sixty-six'), (18591, 65686, 'sixty-five thousand six hundred eighty-six'), (18592, 83934, 'eighty-three thousand nine hundred thirty-four'), (18593, 26678, 'twenty-six thousand six hundred seventy-eight'), (18594, 63786, 'sixty-three thousand seven hundred eighty-six'), (18595, 47475, 'forty-seven thousand four hundred seventy-five'), (18596, 19359, 'nineteen thousand three hundred fifty-nine'), (18597, 55237, 'fifty-five thousand two hundred thirty-seven'), (18598, 59231, 'fifty-nine thousand two hundred thirty-one'), (18599, 77603, 'seventy-seven thousand six hundred three'), (18600, 61299, 'sixty-one thousand two hundred ninety-nine'), (18601, 93489, 'ninety-three thousand four hundred eighty-nine'), (18602, 96309, 'ninety-six thousand three hundred nine'), (18603, 90300, 'ninety thousand three hundred'), (18604, 50215, 'fifty thousand two hundred fifteen'), (18605, 67750, 'sixty-seven thousand seven hundred fifty'), (18606, 28571, 'twenty-eight thousand five hundred seventy-one'), (18607, 61326, 'sixty-one thousand three hundred twenty-six'), (18608, 84577, 'eighty-four thousand five hundred seventy-seven'), (18609, 15631, 'fifteen thousand six hundred thirty-one'), (18610, 69316, 'sixty-nine thousand three hundred sixteen'), (18611, 43954, 'forty-three thousand nine hundred fifty-four'), (18612, 34538, 'thirty-four thousand five hundred thirty-eight'), (18613, 97738, 'ninety-seven thousand seven hundred thirty-eight'), (18614, 40210, 'forty thousand two hundred ten'), (18615, 6042, 'six thousand forty-two'), (18616, 66239, 'sixty-six thousand two hundred thirty-nine'), (18617, 62056, 'sixty-two thousand fifty-six'), (18618, 1981, 'one thousand nine hundred eighty-one'), (18619, 51704, 'fifty-one thousand seven hundred four'), (18620, 34157, 'thirty-four thousand one hundred fifty-seven'), (18621, 9763, 'nine thousand seven hundred sixty-three'), (18622, 7582, 'seven thousand five hundred eighty-two'), (18623, 20044, 'twenty thousand forty-four'), (18624, 89128, 'eighty-nine thousand one hundred twenty-eight'), (18625, 81508, 'eighty-one thousand five hundred eight'), (18626, 3473, 'three thousand four hundred seventy-three'), (18627, 8503, 'eight thousand five hundred three'), (18628, 13097, 'thirteen thousand ninety-seven'), (18629, 39206, 'thirty-nine thousand two hundred six'), (18630, 21739, 'twenty-one thousand seven hundred thirty-nine'), (18631, 67295, 'sixty-seven thousand two hundred ninety-five'), (18632, 20358, 'twenty thousand three hundred fifty-eight'), (18633, 52274, 'fifty-two thousand two hundred seventy-four'), (18634, 53056, 'fifty-three thousand fifty-six'), (18635, 80750, 'eighty thousand seven hundred fifty'), (18636, 85084, 'eighty-five thousand eighty-four'), (18637, 5926, 'five thousand nine hundred twenty-six'), (18638, 87945, 'eighty-seven thousand nine hundred forty-five'), (18639, 96042, 'ninety-six thousand forty-two'), (18640, 72083, 'seventy-two thousand eighty-three'), (18641, 54517, 'fifty-four thousand five hundred seventeen'), (18642, 58251, 'fifty-eight thousand two hundred fifty-one'), (18643, 17566, 'seventeen thousand five hundred sixty-six'), (18644, 32752, 'thirty-two thousand seven hundred fifty-two'), (18645, 98985, 'ninety-eight thousand nine hundred eighty-five'), (18646, 16796, 'sixteen thousand seven hundred ninety-six'), (18647, 39379, 'thirty-nine thousand three hundred seventy-nine'), (18648, 39380, 'thirty-nine thousand three hundred eighty'), (18649, 82948, 'eighty-two thousand nine hundred forty-eight'), (18650, 7854, 'seven thousand eight hundred fifty-four'), (18651, 7308, 'seven thousand three hundred eight'), (18652, 94650, 'ninety-four thousand six hundred fifty'), (18653, 59034, 'fifty-nine thousand thirty-four'), (18654, 43598, 'forty-three thousand five hundred ninety-eight'), (18655, 37405, 'thirty-seven thousand four hundred five'), (18656, 22872, 'twenty-two thousand eight hundred seventy-two'), (18657, 24592, 'twenty-four thousand five hundred ninety-two'), (18658, 39243, 'thirty-nine thousand two hundred forty-three'), (18659, 4120, 'four thousand one hundred twenty'), (18660, 74950, 'seventy-four thousand nine hundred fifty'), (18661, 83333, 'eighty-three thousand three hundred thirty-three'), (18662, 83157, 'eighty-three thousand one hundred fifty-seven'), (18663, 67567, 'sixty-seven thousand five hundred sixty-seven'), (18664, 87579, 'eighty-seven thousand five hundred seventy-nine'), (18665, 91246, 'ninety-one thousand two hundred forty-six'), (18666, 66539, 'sixty-six thousand five hundred thirty-nine'), (18667, 83293, 'eighty-three thousand two hundred ninety-three'), (18668, 52342, 'fifty-two thousand three hundred forty-two'), (18669, 29678, 'twenty-nine thousand six hundred seventy-eight'), (18670, 37210, 'thirty-seven thousand two hundred ten'), (18671, 90276, 'ninety thousand two hundred seventy-six'), (18672, 44350, 'forty-four thousand three hundred fifty'), (18673, 44241, 'forty-four thousand two hundred forty-one'), (18674, 66086, 'sixty-six thousand eighty-six'), (18675, 15280, 'fifteen thousand two hundred eighty'), (18676, 84374, 'eighty-four thousand three hundred seventy-four'), (18677, 81132, 'eighty-one thousand one hundred thirty-two'), (18678, 39694, 'thirty-nine thousand six hundred ninety-four'), (18679, 81179, 'eighty-one thousand one hundred seventy-nine'), (18680, 42861, 'forty-two thousand eight hundred sixty-one'), (18681, 93983, 'ninety-three thousand nine hundred eighty-three'), (18682, 18468, 'eighteen thousand four hundred sixty-eight'), (18683, 12486, 'twelve thousand four hundred eighty-six'), (18684, 82452, 'eighty-two thousand four hundred fifty-two'), (18685, 6399, 'six thousand three hundred ninety-nine'), (18686, 58448, 'fifty-eight thousand four hundred forty-eight'), (18687, 22074, 'twenty-two thousand seventy-four'), (18688, 24913, 'twenty-four thousand nine hundred thirteen'), (18689, 89605, 'eighty-nine thousand six hundred five'), (18690, 86248, 'eighty-six thousand two hundred forty-eight'), (18691, 38484, 'thirty-eight thousand four hundred eighty-four'), (18692, 57865, 'fifty-seven thousand eight hundred sixty-five'), (18693, 49110, 'forty-nine thousand one hundred ten'), (18694, 39104, 'thirty-nine thousand one hundred four'), (18695, 73831, 'seventy-three thousand eight hundred thirty-one'), (18696, 68340, 'sixty-eight thousand three hundred forty'), (18697, 69172, 'sixty-nine thousand one hundred seventy-two'), (18698, 72872, 'seventy-two thousand eight hundred seventy-two'), (18699, 91381, 'ninety-one thousand three hundred eighty-one'), (18700, 16952, 'sixteen thousand nine hundred fifty-two'), (18701, 50080, 'fifty thousand eighty'), (18702, 36745, 'thirty-six thousand seven hundred forty-five'), (18703, 36373, 'thirty-six thousand three hundred seventy-three'), (18704, 24046, 'twenty-four thousand forty-six'), (18705, 36647, 'thirty-six thousand six hundred forty-seven'), (18706, 39396, 'thirty-nine thousand three hundred ninety-six'), (18707, 35907, 'thirty-five thousand nine hundred seven'), (18708, 96731, 'ninety-six thousand seven hundred thirty-one'), (18709, 5654, 'five thousand six hundred fifty-four'), (18710, 46087, 'forty-six thousand eighty-seven'), (18711, 87602, 'eighty-seven thousand six hundred two'), (18712, 60015, 'sixty thousand fifteen'), (18713, 23547, 'twenty-three thousand five hundred forty-seven'), (18714, 14953, 'fourteen thousand nine hundred fifty-three'), (18715, 7654, 'seven thousand six hundred fifty-four'), (18716, 83481, 'eighty-three thousand four hundred eighty-one'), (18717, 98558, 'ninety-eight thousand five hundred fifty-eight'), (18718, 30836, 'thirty thousand eight hundred thirty-six'), (18719, 70424, 'seventy thousand four hundred twenty-four'), (18720, 84554, 'eighty-four thousand five hundred fifty-four'), (18721, 24047, 'twenty-four thousand forty-seven'), (18722, 91840, 'ninety-one thousand eight hundred forty'), (18723, 39872, 'thirty-nine thousand eight hundred seventy-two'), (18724, 50273, 'fifty thousand two hundred seventy-three'), (18725, 50130, 'fifty thousand one hundred thirty'), (18726, 88720, 'eighty-eight thousand seven hundred twenty'), (18727, 65194, 'sixty-five thousand one hundred ninety-four'), (18728, 87478, 'eighty-seven thousand four hundred seventy-eight'), (18729, 77463, 'seventy-seven thousand four hundred sixty-three'), (18730, 90659, 'ninety thousand six hundred fifty-nine'), (18731, 74621, 'seventy-four thousand six hundred twenty-one'), (18732, 96558, 'ninety-six thousand five hundred fifty-eight'), (18733, 29388, 'twenty-nine thousand three hundred eighty-eight'), (18734, 77584, 'seventy-seven thousand five hundred eighty-four'), (18735, 19517, 'nineteen thousand five hundred seventeen'), (18736, 29673, 'twenty-nine thousand six hundred seventy-three'), (18737, 11652, 'eleven thousand six hundred fifty-two'), (18738, 99629, 'ninety-nine thousand six hundred twenty-nine'), (18739, 98497, 'ninety-eight thousand four hundred ninety-seven'), (18740, 70677, 'seventy thousand six hundred seventy-seven'), (18741, 56885, 'fifty-six thousand eight hundred eighty-five'), (18742, 50300, 'fifty thousand three hundred'), (18743, 88670, 'eighty-eight thousand six hundred seventy'), (18744, 65077, 'sixty-five thousand seventy-seven'), (18745, 2047, 'two thousand forty-seven'), (18746, 61124, 'sixty-one thousand one hundred twenty-four'), (18747, 10165, 'ten thousand one hundred sixty-five'), (18748, 27550, 'twenty-seven thousand five hundred fifty'), (18749, 34580, 'thirty-four thousand five hundred eighty'), (18750, 99940, 'ninety-nine thousand nine hundred forty'), (18751, 98411, 'ninety-eight thousand four hundred eleven'), (18752, 97643, 'ninety-seven thousand six hundred forty-three'), (18753, 6033, 'six thousand thirty-three'), (18754, 25087, 'twenty-five thousand eighty-seven'), (18755, 29830, 'twenty-nine thousand eight hundred thirty'), (18756, 30176, 'thirty thousand one hundred seventy-six'), (18757, 81701, 'eighty-one thousand seven hundred one'), (18758, 82815, 'eighty-two thousand eight hundred fifteen'), (18759, 34076, 'thirty-four thousand seventy-six'), (18760, 93687, 'ninety-three thousand six hundred eighty-seven'), (18761, 9092, 'nine thousand ninety-two'), (18762, 13389, 'thirteen thousand three hundred eighty-nine'), (18763, 249, 'two hundred forty-nine'), (18764, 51285, 'fifty-one thousand two hundred eighty-five'), (18765, 21602, 'twenty-one thousand six hundred two'), (18766, 11, 'eleven'), (18767, 6955, 'six thousand nine hundred fifty-five'), (18768, 34289, 'thirty-four thousand two hundred eighty-nine'), (18769, 3155, 'three thousand one hundred fifty-five'), (18770, 45927, 'forty-five thousand nine hundred twenty-seven'), (18771, 45515, 'forty-five thousand five hundred fifteen'), (18772, 5901, 'five thousand nine hundred one'), (18773, 29983, 'twenty-nine thousand nine hundred eighty-three'), (18774, 3029, 'three thousand twenty-nine'), (18775, 5043, 'five thousand forty-three'), (18776, 53633, 'fifty-three thousand six hundred thirty-three'), (18777, 65066, 'sixty-five thousand sixty-six'), (18778, 73856, 'seventy-three thousand eight hundred fifty-six'), (18779, 83138, 'eighty-three thousand one hundred thirty-eight'), (18780, 80891, 'eighty thousand eight hundred ninety-one'), (18781, 9830, 'nine thousand eight hundred thirty'), (18782, 41074, 'forty-one thousand seventy-four'), (18783, 85980, 'eighty-five thousand nine hundred eighty'), (18784, 75946, 'seventy-five thousand nine hundred forty-six'), (18785, 977, 'nine hundred seventy-seven'), (18786, 93832, 'ninety-three thousand eight hundred thirty-two'), (18787, 68079, 'sixty-eight thousand seventy-nine'), (18788, 78524, 'seventy-eight thousand five hundred twenty-four'), (18789, 66498, 'sixty-six thousand four hundred ninety-eight'), (18790, 10305, 'ten thousand three hundred five'), (18791, 47656, 'forty-seven thousand six hundred fifty-six'), (18792, 62053, 'sixty-two thousand fifty-three'), (18793, 514, 'five hundred fourteen'), (18794, 46264, 'forty-six thousand two hundred sixty-four'), (18795, 87502, 'eighty-seven thousand five hundred two'), (18796, 38452, 'thirty-eight thousand four hundred fifty-two'), (18797, 35515, 'thirty-five thousand five hundred fifteen'), (18798, 40423, 'forty thousand four hundred twenty-three'), (18799, 99524, 'ninety-nine thousand five hundred twenty-four'), (18800, 77832, 'seventy-seven thousand eight hundred thirty-two'), (18801, 71463, 'seventy-one thousand four hundred sixty-three'), (18802, 41421, 'forty-one thousand four hundred twenty-one'), (18803, 72748, 'seventy-two thousand seven hundred forty-eight'), (18804, 19888, 'nineteen thousand eight hundred eighty-eight'), (18805, 89845, 'eighty-nine thousand eight hundred forty-five'), (18806, 29159, 'twenty-nine thousand one hundred fifty-nine'), (18807, 97771, 'ninety-seven thousand seven hundred seventy-one'), (18808, 15300, 'fifteen thousand three hundred'), (18809, 37323, 'thirty-seven thousand three hundred twenty-three'), (18810, 6598, 'six thousand five hundred ninety-eight'), (18811, 56937, 'fifty-six thousand nine hundred thirty-seven'), (18812, 34564, 'thirty-four thousand five hundred sixty-four'), (18813, 46600, 'forty-six thousand six hundred'), (18814, 26017, 'twenty-six thousand seventeen'), (18815, 41326, 'forty-one thousand three hundred twenty-six'), (18816, 15241, 'fifteen thousand two hundred forty-one'), (18817, 42026, 'forty-two thousand twenty-six'), (18818, 59163, 'fifty-nine thousand one hundred sixty-three'), (18819, 38012, 'thirty-eight thousand twelve'), (18820, 54765, 'fifty-four thousand seven hundred sixty-five'), (18821, 99795, 'ninety-nine thousand seven hundred ninety-five'), (18822, 99092, 'ninety-nine thousand ninety-two'), (18823, 8715, 'eight thousand seven hundred fifteen'), (18824, 73440, 'seventy-three thousand four hundred forty'), (18825, 71756, 'seventy-one thousand seven hundred fifty-six'), (18826, 8910, 'eight thousand nine hundred ten'), (18827, 3117, 'three thousand one hundred seventeen'), (18828, 16094, 'sixteen thousand ninety-four'), (18829, 83916, 'eighty-three thousand nine hundred sixteen'), (18830, 17671, 'seventeen thousand six hundred seventy-one'), (18831, 878, 'eight hundred seventy-eight'), (18832, 10788, 'ten thousand seven hundred eighty-eight'), (18833, 97871, 'ninety-seven thousand eight hundred seventy-one'), (18834, 27623, 'twenty-seven thousand six hundred twenty-three'), (18835, 94876, 'ninety-four thousand eight hundred seventy-six'), (18836, 3106, 'three thousand one hundred six'), (18837, 39224, 'thirty-nine thousand two hundred twenty-four'), (18838, 58444, 'fifty-eight thousand four hundred forty-four'), (18839, 14452, 'fourteen thousand four hundred fifty-two'), (18840, 29211, 'twenty-nine thousand two hundred eleven'), (18841, 35892, 'thirty-five thousand eight hundred ninety-two'), (18842, 38531, 'thirty-eight thousand five hundred thirty-one'), (18843, 87443, 'eighty-seven thousand four hundred forty-three'), (18844, 68228, 'sixty-eight thousand two hundred twenty-eight'), (18845, 37597, 'thirty-seven thousand five hundred ninety-seven'), (18846, 61031, 'sixty-one thousand thirty-one'), (18847, 33517, 'thirty-three thousand five hundred seventeen'), (18848, 90411, 'ninety thousand four hundred eleven'), (18849, 58083, 'fifty-eight thousand eighty-three'), (18850, 17349, 'seventeen thousand three hundred forty-nine'), (18851, 84115, 'eighty-four thousand one hundred fifteen'), (18852, 79451, 'seventy-nine thousand four hundred fifty-one'), (18853, 70685, 'seventy thousand six hundred eighty-five'), (18854, 53320, 'fifty-three thousand three hundred twenty'), (18855, 36845, 'thirty-six thousand eight hundred forty-five'), (18856, 18337, 'eighteen thousand three hundred thirty-seven'), (18857, 97153, 'ninety-seven thousand one hundred fifty-three'), (18858, 79596, 'seventy-nine thousand five hundred ninety-six'), (18859, 29565, 'twenty-nine thousand five hundred sixty-five'), (18860, 39715, 'thirty-nine thousand seven hundred fifteen'), (18861, 45640, 'forty-five thousand six hundred forty'), (18862, 87335, 'eighty-seven thousand three hundred thirty-five'), (18863, 60625, 'sixty thousand six hundred twenty-five'), (18864, 15626, 'fifteen thousand six hundred twenty-six'), (18865, 92850, 'ninety-two thousand eight hundred fifty'), (18866, 42716, 'forty-two thousand seven hundred sixteen'), (18867, 52742, 'fifty-two thousand seven hundred forty-two'), (18868, 55667, 'fifty-five thousand six hundred sixty-seven'), (18869, 19032, 'nineteen thousand thirty-two'), (18870, 99178, 'ninety-nine thousand one hundred seventy-eight'), (18871, 51263, 'fifty-one thousand two hundred sixty-three'), (18872, 91787, 'ninety-one thousand seven hundred eighty-seven'), (18873, 53781, 'fifty-three thousand seven hundred eighty-one'), (18874, 52400, 'fifty-two thousand four hundred'), (18875, 62631, 'sixty-two thousand six hundred thirty-one'), (18876, 63636, 'sixty-three thousand six hundred thirty-six'), (18877, 29864, 'twenty-nine thousand eight hundred sixty-four'), (18878, 22760, 'twenty-two thousand seven hundred sixty'), (18879, 40055, 'forty thousand fifty-five'), (18880, 48697, 'forty-eight thousand six hundred ninety-seven'), (18881, 38560, 'thirty-eight thousand five hundred sixty'), (18882, 20775, 'twenty thousand seven hundred seventy-five'), (18883, 42998, 'forty-two thousand nine hundred ninety-eight'), (18884, 80624, 'eighty thousand six hundred twenty-four'), (18885, 41739, 'forty-one thousand seven hundred thirty-nine'), (18886, 14934, 'fourteen thousand nine hundred thirty-four'), (18887, 12255, 'twelve thousand two hundred fifty-five'), (18888, 81374, 'eighty-one thousand three hundred seventy-four'), (18889, 34287, 'thirty-four thousand two hundred eighty-seven'), (18890, 12624, 'twelve thousand six hundred twenty-four'), (18891, 64354, 'sixty-four thousand three hundred fifty-four'), (18892, 52825, 'fifty-two thousand eight hundred twenty-five'), (18893, 19958, 'nineteen thousand nine hundred fifty-eight'), (18894, 58308, 'fifty-eight thousand three hundred eight'), (18895, 9671, 'nine thousand six hundred seventy-one'), (18896, 96751, 'ninety-six thousand seven hundred fifty-one'), (18897, 24420, 'twenty-four thousand four hundred twenty'), (18898, 68507, 'sixty-eight thousand five hundred seven'), (18899, 82598, 'eighty-two thousand five hundred ninety-eight'), (18900, 12017, 'twelve thousand seventeen'), (18901, 64991, 'sixty-four thousand nine hundred ninety-one'), (18902, 52247, 'fifty-two thousand two hundred forty-seven'), (18903, 76658, 'seventy-six thousand six hundred fifty-eight'), (18904, 77452, 'seventy-seven thousand four hundred fifty-two'), (18905, 63547, 'sixty-three thousand five hundred forty-seven'), (18906, 18299, 'eighteen thousand two hundred ninety-nine'), (18907, 83659, 'eighty-three thousand six hundred fifty-nine'), (18908, 95758, 'ninety-five thousand seven hundred fifty-eight'), (18909, 54484, 'fifty-four thousand four hundred eighty-four'), (18910, 8547, 'eight thousand five hundred forty-seven'), (18911, 55616, 'fifty-five thousand six hundred sixteen'), (18912, 22436, 'twenty-two thousand four hundred thirty-six'), (18913, 56354, 'fifty-six thousand three hundred fifty-four'), (18914, 48276, 'forty-eight thousand two hundred seventy-six'), (18915, 26876, 'twenty-six thousand eight hundred seventy-six'), (18916, 8676, 'eight thousand six hundred seventy-six'), (18917, 69218, 'sixty-nine thousand two hundred eighteen'), (18918, 77478, 'seventy-seven thousand four hundred seventy-eight'), (18919, 59658, 'fifty-nine thousand six hundred fifty-eight'), (18920, 54517, 'fifty-four thousand five hundred seventeen'), (18921, 35129, 'thirty-five thousand one hundred twenty-nine'), (18922, 26263, 'twenty-six thousand two hundred sixty-three'), (18923, 80335, 'eighty thousand three hundred thirty-five'), (18924, 39566, 'thirty-nine thousand five hundred sixty-six'), (18925, 99649, 'ninety-nine thousand six hundred forty-nine'), (18926, 46261, 'forty-six thousand two hundred sixty-one'), (18927, 3305, 'three thousand three hundred five'), (18928, 14787, 'fourteen thousand seven hundred eighty-seven'), (18929, 39940, 'thirty-nine thousand nine hundred forty'), (18930, 17261, 'seventeen thousand two hundred sixty-one'), (18931, 49417, 'forty-nine thousand four hundred seventeen'), (18932, 32668, 'thirty-two thousand six hundred sixty-eight'), (18933, 31290, 'thirty-one thousand two hundred ninety'), (18934, 44232, 'forty-four thousand two hundred thirty-two'), (18935, 50531, 'fifty thousand five hundred thirty-one'), (18936, 65895, 'sixty-five thousand eight hundred ninety-five'), (18937, 52227, 'fifty-two thousand two hundred twenty-seven'), (18938, 75235, 'seventy-five thousand two hundred thirty-five'), (18939, 45151, 'forty-five thousand one hundred fifty-one'), (18940, 44494, 'forty-four thousand four hundred ninety-four'), (18941, 65286, 'sixty-five thousand two hundred eighty-six'), (18942, 49716, 'forty-nine thousand seven hundred sixteen'), (18943, 45708, 'forty-five thousand seven hundred eight'), (18944, 9136, 'nine thousand one hundred thirty-six'), (18945, 21538, 'twenty-one thousand five hundred thirty-eight'), (18946, 4381, 'four thousand three hundred eighty-one'), (18947, 49958, 'forty-nine thousand nine hundred fifty-eight'), (18948, 5912, 'five thousand nine hundred twelve'), (18949, 85077, 'eighty-five thousand seventy-seven'), (18950, 1854, 'one thousand eight hundred fifty-four'), (18951, 89035, 'eighty-nine thousand thirty-five'), (18952, 64295, 'sixty-four thousand two hundred ninety-five'), (18953, 85437, 'eighty-five thousand four hundred thirty-seven'), (18954, 82909, 'eighty-two thousand nine hundred nine'), (18955, 20692, 'twenty thousand six hundred ninety-two'), (18956, 25026, 'twenty-five thousand twenty-six'), (18957, 56705, 'fifty-six thousand seven hundred five'), (18958, 29832, 'twenty-nine thousand eight hundred thirty-two'), (18959, 12228, 'twelve thousand two hundred twenty-eight'), (18960, 37710, 'thirty-seven thousand seven hundred ten'), (18961, 27001, 'twenty-seven thousand one'), (18962, 54140, 'fifty-four thousand one hundred forty'), (18963, 77872, 'seventy-seven thousand eight hundred seventy-two'), (18964, 34254, 'thirty-four thousand two hundred fifty-four'), (18965, 12869, 'twelve thousand eight hundred sixty-nine'), (18966, 53837, 'fifty-three thousand eight hundred thirty-seven'), (18967, 44302, 'forty-four thousand three hundred two'), (18968, 71988, 'seventy-one thousand nine hundred eighty-eight'), (18969, 59052, 'fifty-nine thousand fifty-two'), (18970, 81771, 'eighty-one thousand seven hundred seventy-one'), (18971, 65920, 'sixty-five thousand nine hundred twenty'), (18972, 20014, 'twenty thousand fourteen'), (18973, 58262, 'fifty-eight thousand two hundred sixty-two'), (18974, 4498, 'four thousand four hundred ninety-eight'), (18975, 45523, 'forty-five thousand five hundred twenty-three'), (18976, 26741, 'twenty-six thousand seven hundred forty-one'), (18977, 90323, 'ninety thousand three hundred twenty-three'), (18978, 95532, 'ninety-five thousand five hundred thirty-two'), (18979, 11494, 'eleven thousand four hundred ninety-four'), (18980, 51732, 'fifty-one thousand seven hundred thirty-two'), (18981, 64287, 'sixty-four thousand two hundred eighty-seven'), (18982, 87066, 'eighty-seven thousand sixty-six'), (18983, 58939, 'fifty-eight thousand nine hundred thirty-nine'), (18984, 60175, 'sixty thousand one hundred seventy-five'), (18985, 4656, 'four thousand six hundred fifty-six'), (18986, 44600, 'forty-four thousand six hundred'), (18987, 55426, 'fifty-five thousand four hundred twenty-six'), (18988, 59201, 'fifty-nine thousand two hundred one'), (18989, 57906, 'fifty-seven thousand nine hundred six'), (18990, 32790, 'thirty-two thousand seven hundred ninety'), (18991, 51625, 'fifty-one thousand six hundred twenty-five'), (18992, 38843, 'thirty-eight thousand eight hundred forty-three'), (18993, 88356, 'eighty-eight thousand three hundred fifty-six'), (18994, 14911, 'fourteen thousand nine hundred eleven'), (18995, 6240, 'six thousand two hundred forty'), (18996, 8196, 'eight thousand one hundred ninety-six'), (18997, 69323, 'sixty-nine thousand three hundred twenty-three'), (18998, 21472, 'twenty-one thousand four hundred seventy-two'), (18999, 42759, 'forty-two thousand seven hundred fifty-nine'), (19000, 95694, 'ninety-five thousand six hundred ninety-four'), (19001, 7868, 'seven thousand eight hundred sixty-eight'), (19002, 56355, 'fifty-six thousand three hundred fifty-five'), (19003, 84603, 'eighty-four thousand six hundred three'), (19004, 36516, 'thirty-six thousand five hundred sixteen'), (19005, 47060, 'forty-seven thousand sixty'), (19006, 5579, 'five thousand five hundred seventy-nine'), (19007, 97001, 'ninety-seven thousand one'), (19008, 3206, 'three thousand two hundred six'), (19009, 84535, 'eighty-four thousand five hundred thirty-five'), (19010, 63355, 'sixty-three thousand three hundred fifty-five'), (19011, 20955, 'twenty thousand nine hundred fifty-five'), (19012, 68146, 'sixty-eight thousand one hundred forty-six'), (19013, 35059, 'thirty-five thousand fifty-nine'), (19014, 36380, 'thirty-six thousand three hundred eighty'), (19015, 26685, 'twenty-six thousand six hundred eighty-five'), (19016, 18344, 'eighteen thousand three hundred forty-four'), (19017, 33545, 'thirty-three thousand five hundred forty-five'), (19018, 41479, 'forty-one thousand four hundred seventy-nine'), (19019, 19622, 'nineteen thousand six hundred twenty-two'), (19020, 83640, 'eighty-three thousand six hundred forty'), (19021, 33865, 'thirty-three thousand eight hundred sixty-five'), (19022, 2777, 'two thousand seven hundred seventy-seven'), (19023, 45928, 'forty-five thousand nine hundred twenty-eight'), (19024, 67567, 'sixty-seven thousand five hundred sixty-seven'), (19025, 89509, 'eighty-nine thousand five hundred nine'), (19026, 14363, 'fourteen thousand three hundred sixty-three'), (19027, 13142, 'thirteen thousand one hundred forty-two'), (19028, 74945, 'seventy-four thousand nine hundred forty-five'), (19029, 30508, 'thirty thousand five hundred eight'), (19030, 41484, 'forty-one thousand four hundred eighty-four'), (19031, 3995, 'three thousand nine hundred ninety-five'), (19032, 54071, 'fifty-four thousand seventy-one'), (19033, 66377, 'sixty-six thousand three hundred seventy-seven'), (19034, 18931, 'eighteen thousand nine hundred thirty-one'), (19035, 81728, 'eighty-one thousand seven hundred twenty-eight'), (19036, 64193, 'sixty-four thousand one hundred ninety-three'), (19037, 63077, 'sixty-three thousand seventy-seven'), (19038, 75760, 'seventy-five thousand seven hundred sixty'), (19039, 45176, 'forty-five thousand one hundred seventy-six'), (19040, 49495, 'forty-nine thousand four hundred ninety-five'), (19041, 23953, 'twenty-three thousand nine hundred fifty-three'), (19042, 30807, 'thirty thousand eight hundred seven'), (19043, 84432, 'eighty-four thousand four hundred thirty-two'), (19044, 6884, 'six thousand eight hundred eighty-four'), (19045, 71966, 'seventy-one thousand nine hundred sixty-six'), (19046, 65569, 'sixty-five thousand five hundred sixty-nine'), (19047, 15617, 'fifteen thousand six hundred seventeen'), (19048, 49244, 'forty-nine thousand two hundred forty-four'), (19049, 72542, 'seventy-two thousand five hundred forty-two'), (19050, 51806, 'fifty-one thousand eight hundred six'), (19051, 53389, 'fifty-three thousand three hundred eighty-nine'), (19052, 23506, 'twenty-three thousand five hundred six'), (19053, 63209, 'sixty-three thousand two hundred nine'), (19054, 9826, 'nine thousand eight hundred twenty-six'), (19055, 75631, 'seventy-five thousand six hundred thirty-one'), (19056, 15555, 'fifteen thousand five hundred fifty-five'), (19057, 79187, 'seventy-nine thousand one hundred eighty-seven'), (19058, 75915, 'seventy-five thousand nine hundred fifteen'), (19059, 33512, 'thirty-three thousand five hundred twelve'), (19060, 22996, 'twenty-two thousand nine hundred ninety-six'), (19061, 20687, 'twenty thousand six hundred eighty-seven'), (19062, 37828, 'thirty-seven thousand eight hundred twenty-eight'), (19063, 46900, 'forty-six thousand nine hundred'), (19064, 25811, 'twenty-five thousand eight hundred eleven'), (19065, 93443, 'ninety-three thousand four hundred forty-three'), (19066, 53314, 'fifty-three thousand three hundred fourteen'), (19067, 19042, 'nineteen thousand forty-two'), (19068, 80681, 'eighty thousand six hundred eighty-one'), (19069, 62655, 'sixty-two thousand six hundred fifty-five'), (19070, 64478, 'sixty-four thousand four hundred seventy-eight'), (19071, 93568, 'ninety-three thousand five hundred sixty-eight'), (19072, 71184, 'seventy-one thousand one hundred eighty-four'), (19073, 46349, 'forty-six thousand three hundred forty-nine'), (19074, 17332, 'seventeen thousand three hundred thirty-two'), (19075, 3078, 'three thousand seventy-eight'), (19076, 70995, 'seventy thousand nine hundred ninety-five'), (19077, 5056, 'five thousand fifty-six'), (19078, 68252, 'sixty-eight thousand two hundred fifty-two'), (19079, 6002, 'six thousand two'), (19080, 50714, 'fifty thousand seven hundred fourteen'), (19081, 12655, 'twelve thousand six hundred fifty-five'), (19082, 44405, 'forty-four thousand four hundred five'), (19083, 66729, 'sixty-six thousand seven hundred twenty-nine'), (19084, 83802, 'eighty-three thousand eight hundred two'), (19085, 88524, 'eighty-eight thousand five hundred twenty-four'), (19086, 53687, 'fifty-three thousand six hundred eighty-seven'), (19087, 20075, 'twenty thousand seventy-five'), (19088, 23867, 'twenty-three thousand eight hundred sixty-seven'), (19089, 45296, 'forty-five thousand two hundred ninety-six'), (19090, 68474, 'sixty-eight thousand four hundred seventy-four'), (19091, 64963, 'sixty-four thousand nine hundred sixty-three'), (19092, 63629, 'sixty-three thousand six hundred twenty-nine'), (19093, 68918, 'sixty-eight thousand nine hundred eighteen'), (19094, 84979, 'eighty-four thousand nine hundred seventy-nine'), (19095, 46533, 'forty-six thousand five hundred thirty-three'), (19096, 5738, 'five thousand seven hundred thirty-eight'), (19097, 64281, 'sixty-four thousand two hundred eighty-one'), (19098, 23618, 'twenty-three thousand six hundred eighteen'), (19099, 18092, 'eighteen thousand ninety-two'), (19100, 91857, 'ninety-one thousand eight hundred fifty-seven'), (19101, 86699, 'eighty-six thousand six hundred ninety-nine'), (19102, 77769, 'seventy-seven thousand seven hundred sixty-nine'), (19103, 53988, 'fifty-three thousand nine hundred eighty-eight'), (19104, 51167, 'fifty-one thousand one hundred sixty-seven'), (19105, 621, 'six hundred twenty-one'), (19106, 73178, 'seventy-three thousand one hundred seventy-eight'), (19107, 35166, 'thirty-five thousand one hundred sixty-six'), (19108, 6609, 'six thousand six hundred nine'), (19109, 44953, 'forty-four thousand nine hundred fifty-three'), (19110, 15511, 'fifteen thousand five hundred eleven'), (19111, 53648, 'fifty-three thousand six hundred forty-eight'), (19112, 83729, 'eighty-three thousand seven hundred twenty-nine'), (19113, 55438, 'fifty-five thousand four hundred thirty-eight'), (19114, 61437, 'sixty-one thousand four hundred thirty-seven'), (19115, 28033, 'twenty-eight thousand thirty-three'), (19116, 33323, 'thirty-three thousand three hundred twenty-three'), (19117, 4828, 'four thousand eight hundred twenty-eight'), (19118, 47205, 'forty-seven thousand two hundred five'), (19119, 58332, 'fifty-eight thousand three hundred thirty-two'), (19120, 41066, 'forty-one thousand sixty-six'), (19121, 94989, 'ninety-four thousand nine hundred eighty-nine'), (19122, 94426, 'ninety-four thousand four hundred twenty-six'), (19123, 22059, 'twenty-two thousand fifty-nine'), (19124, 91133, 'ninety-one thousand one hundred thirty-three'), (19125, 92327, 'ninety-two thousand three hundred twenty-seven'), (19126, 51599, 'fifty-one thousand five hundred ninety-nine'), (19127, 43984, 'forty-three thousand nine hundred eighty-four'), (19128, 30427, 'thirty thousand four hundred twenty-seven'), (19129, 75376, 'seventy-five thousand three hundred seventy-six'), (19130, 69139, 'sixty-nine thousand one hundred thirty-nine'), (19131, 4525, 'four thousand five hundred twenty-five'), (19132, 54018, 'fifty-four thousand eighteen'), (19133, 47735, 'forty-seven thousand seven hundred thirty-five'), (19134, 11168, 'eleven thousand one hundred sixty-eight'), (19135, 70787, 'seventy thousand seven hundred eighty-seven'), (19136, 84789, 'eighty-four thousand seven hundred eighty-nine'), (19137, 27344, 'twenty-seven thousand three hundred forty-four'), (19138, 38401, 'thirty-eight thousand four hundred one'), (19139, 88983, 'eighty-eight thousand nine hundred eighty-three'), (19140, 59937, 'fifty-nine thousand nine hundred thirty-seven'), (19141, 97464, 'ninety-seven thousand four hundred sixty-four'), (19142, 27361, 'twenty-seven thousand three hundred sixty-one'), (19143, 68881, 'sixty-eight thousand eight hundred eighty-one'), (19144, 93728, 'ninety-three thousand seven hundred twenty-eight'), (19145, 67674, 'sixty-seven thousand six hundred seventy-four'), (19146, 60647, 'sixty thousand six hundred forty-seven'), (19147, 47812, 'forty-seven thousand eight hundred twelve'), (19148, 52620, 'fifty-two thousand six hundred twenty'), (19149, 55378, 'fifty-five thousand three hundred seventy-eight'), (19150, 1983, 'one thousand nine hundred eighty-three'), (19151, 55759, 'fifty-five thousand seven hundred fifty-nine'), (19152, 51276, 'fifty-one thousand two hundred seventy-six'), (19153, 2656, 'two thousand six hundred fifty-six'), (19154, 21718, 'twenty-one thousand seven hundred eighteen'), (19155, 81395, 'eighty-one thousand three hundred ninety-five'), (19156, 45772, 'forty-five thousand seven hundred seventy-two'), (19157, 40801, 'forty thousand eight hundred one'), (19158, 61516, 'sixty-one thousand five hundred sixteen'), (19159, 98103, 'ninety-eight thousand one hundred three'), (19160, 92758, 'ninety-two thousand seven hundred fifty-eight'), (19161, 78281, 'seventy-eight thousand two hundred eighty-one'), (19162, 81014, 'eighty-one thousand fourteen'), (19163, 43639, 'forty-three thousand six hundred thirty-nine'), (19164, 56325, 'fifty-six thousand three hundred twenty-five'), (19165, 16505, 'sixteen thousand five hundred five'), (19166, 99756, 'ninety-nine thousand seven hundred fifty-six'), (19167, 76540, 'seventy-six thousand five hundred forty'), (19168, 79601, 'seventy-nine thousand six hundred one'), (19169, 32571, 'thirty-two thousand five hundred seventy-one'), (19170, 53496, 'fifty-three thousand four hundred ninety-six'), (19171, 52103, 'fifty-two thousand one hundred three'), (19172, 48441, 'forty-eight thousand four hundred forty-one'), (19173, 11183, 'eleven thousand one hundred eighty-three'), (19174, 11999, 'eleven thousand nine hundred ninety-nine'), (19175, 64784, 'sixty-four thousand seven hundred eighty-four'), (19176, 57648, 'fifty-seven thousand six hundred forty-eight'), (19177, 93896, 'ninety-three thousand eight hundred ninety-six'), (19178, 86705, 'eighty-six thousand seven hundred five'), (19179, 56557, 'fifty-six thousand five hundred fifty-seven'), (19180, 85082, 'eighty-five thousand eighty-two'), (19181, 44066, 'forty-four thousand sixty-six'), (19182, 79643, 'seventy-nine thousand six hundred forty-three'), (19183, 26669, 'twenty-six thousand six hundred sixty-nine'), (19184, 7086, 'seven thousand eighty-six'), (19185, 72203, 'seventy-two thousand two hundred three'), (19186, 26621, 'twenty-six thousand six hundred twenty-one'), (19187, 35360, 'thirty-five thousand three hundred sixty'), (19188, 25153, 'twenty-five thousand one hundred fifty-three'), (19189, 89327, 'eighty-nine thousand three hundred twenty-seven'), (19190, 14725, 'fourteen thousand seven hundred twenty-five'), (19191, 4851, 'four thousand eight hundred fifty-one'), (19192, 51849, 'fifty-one thousand eight hundred forty-nine'), (19193, 43102, 'forty-three thousand one hundred two'), (19194, 43324, 'forty-three thousand three hundred twenty-four'), (19195, 17926, 'seventeen thousand nine hundred twenty-six'), (19196, 92550, 'ninety-two thousand five hundred fifty'), (19197, 43796, 'forty-three thousand seven hundred ninety-six'), (19198, 40213, 'forty thousand two hundred thirteen'), (19199, 61732, 'sixty-one thousand seven hundred thirty-two'), (19200, 205, 'two hundred five'), (19201, 10938, 'ten thousand nine hundred thirty-eight'), (19202, 24595, 'twenty-four thousand five hundred ninety-five'), (19203, 24242, 'twenty-four thousand two hundred forty-two'), (19204, 9634, 'nine thousand six hundred thirty-four'), (19205, 47434, 'forty-seven thousand four hundred thirty-four'), (19206, 39636, 'thirty-nine thousand six hundred thirty-six'), (19207, 9980, 'nine thousand nine hundred eighty'), (19208, 14582, 'fourteen thousand five hundred eighty-two'), (19209, 67735, 'sixty-seven thousand seven hundred thirty-five'), (19210, 64889, 'sixty-four thousand eight hundred eighty-nine'), (19211, 96877, 'ninety-six thousand eight hundred seventy-seven'), (19212, 19382, 'nineteen thousand three hundred eighty-two'), (19213, 48212, 'forty-eight thousand two hundred twelve'), (19214, 48582, 'forty-eight thousand five hundred eighty-two'), (19215, 24328, 'twenty-four thousand three hundred twenty-eight'), (19216, 23197, 'twenty-three thousand one hundred ninety-seven'), (19217, 98912, 'ninety-eight thousand nine hundred twelve'), (19218, 48167, 'forty-eight thousand one hundred sixty-seven'), (19219, 25883, 'twenty-five thousand eight hundred eighty-three'), (19220, 54818, 'fifty-four thousand eight hundred eighteen'), (19221, 40567, 'forty thousand five hundred sixty-seven'), (19222, 77049, 'seventy-seven thousand forty-nine'), (19223, 33584, 'thirty-three thousand five hundred eighty-four'), (19224, 5195, 'five thousand one hundred ninety-five'), (19225, 74944, 'seventy-four thousand nine hundred forty-four'), (19226, 69132, 'sixty-nine thousand one hundred thirty-two'), (19227, 77605, 'seventy-seven thousand six hundred five'), (19228, 70128, 'seventy thousand one hundred twenty-eight'), (19229, 30240, 'thirty thousand two hundred forty'), (19230, 1878, 'one thousand eight hundred seventy-eight'), (19231, 40839, 'forty thousand eight hundred thirty-nine'), (19232, 4747, 'four thousand seven hundred forty-seven'), (19233, 50732, 'fifty thousand seven hundred thirty-two'), (19234, 8809, 'eight thousand eight hundred nine'), (19235, 80568, 'eighty thousand five hundred sixty-eight'), (19236, 86070, 'eighty-six thousand seventy'), (19237, 38015, 'thirty-eight thousand fifteen'), (19238, 89633, 'eighty-nine thousand six hundred thirty-three'), (19239, 37092, 'thirty-seven thousand ninety-two'), (19240, 2970, 'two thousand nine hundred seventy'), (19241, 69240, 'sixty-nine thousand two hundred forty'), (19242, 91051, 'ninety-one thousand fifty-one'), (19243, 17647, 'seventeen thousand six hundred forty-seven'), (19244, 91738, 'ninety-one thousand seven hundred thirty-eight'), (19245, 26665, 'twenty-six thousand six hundred sixty-five'), (19246, 70403, 'seventy thousand four hundred three'), (19247, 75347, 'seventy-five thousand three hundred forty-seven'), (19248, 56070, 'fifty-six thousand seventy'), (19249, 7900, 'seven thousand nine hundred'), (19250, 28888, 'twenty-eight thousand eight hundred eighty-eight'), (19251, 65215, 'sixty-five thousand two hundred fifteen'), (19252, 55049, 'fifty-five thousand forty-nine'), (19253, 77193, 'seventy-seven thousand one hundred ninety-three'), (19254, 61672, 'sixty-one thousand six hundred seventy-two'), (19255, 65044, 'sixty-five thousand forty-four'), (19256, 49607, 'forty-nine thousand six hundred seven'), (19257, 65861, 'sixty-five thousand eight hundred sixty-one'), (19258, 34911, 'thirty-four thousand nine hundred eleven'), (19259, 69887, 'sixty-nine thousand eight hundred eighty-seven'), (19260, 36633, 'thirty-six thousand six hundred thirty-three'), (19261, 19044, 'nineteen thousand forty-four'), (19262, 62796, 'sixty-two thousand seven hundred ninety-six'), (19263, 2099, 'two thousand ninety-nine'), (19264, 21442, 'twenty-one thousand four hundred forty-two'), (19265, 1105, 'one thousand one hundred five'), (19266, 9088, 'nine thousand eighty-eight'), (19267, 32553, 'thirty-two thousand five hundred fifty-three'), (19268, 45639, 'forty-five thousand six hundred thirty-nine'), (19269, 83968, 'eighty-three thousand nine hundred sixty-eight'), (19270, 74415, 'seventy-four thousand four hundred fifteen'), (19271, 61705, 'sixty-one thousand seven hundred five'), (19272, 83611, 'eighty-three thousand six hundred eleven'), (19273, 72558, 'seventy-two thousand five hundred fifty-eight'), (19274, 70563, 'seventy thousand five hundred sixty-three'), (19275, 89775, 'eighty-nine thousand seven hundred seventy-five'), (19276, 30899, 'thirty thousand eight hundred ninety-nine'), (19277, 36201, 'thirty-six thousand two hundred one'), (19278, 11355, 'eleven thousand three hundred fifty-five'), (19279, 11681, 'eleven thousand six hundred eighty-one'), (19280, 51729, 'fifty-one thousand seven hundred twenty-nine'), (19281, 9610, 'nine thousand six hundred ten'), (19282, 76630, 'seventy-six thousand six hundred thirty'), (19283, 54242, 'fifty-four thousand two hundred forty-two'), (19284, 43089, 'forty-three thousand eighty-nine'), (19285, 20028, 'twenty thousand twenty-eight'), (19286, 44382, 'forty-four thousand three hundred eighty-two'), (19287, 24297, 'twenty-four thousand two hundred ninety-seven'), (19288, 42826, 'forty-two thousand eight hundred twenty-six'), (19289, 32397, 'thirty-two thousand three hundred ninety-seven'), (19290, 27360, 'twenty-seven thousand three hundred sixty'), (19291, 68466, 'sixty-eight thousand four hundred sixty-six'), (19292, 43800, 'forty-three thousand eight hundred'), (19293, 53218, 'fifty-three thousand two hundred eighteen'), (19294, 96719, 'ninety-six thousand seven hundred nineteen'), (19295, 22882, 'twenty-two thousand eight hundred eighty-two'), (19296, 56150, 'fifty-six thousand one hundred fifty'), (19297, 7635, 'seven thousand six hundred thirty-five'), (19298, 96949, 'ninety-six thousand nine hundred forty-nine'), (19299, 48472, 'forty-eight thousand four hundred seventy-two'), (19300, 50260, 'fifty thousand two hundred sixty'), (19301, 66430, 'sixty-six thousand four hundred thirty'), (19302, 67692, 'sixty-seven thousand six hundred ninety-two'), (19303, 23852, 'twenty-three thousand eight hundred fifty-two'), (19304, 43309, 'forty-three thousand three hundred nine'), (19305, 1511, 'one thousand five hundred eleven'), (19306, 47202, 'forty-seven thousand two hundred two'), (19307, 46243, 'forty-six thousand two hundred forty-three'), (19308, 5669, 'five thousand six hundred sixty-nine'), (19309, 94119, 'ninety-four thousand one hundred nineteen'), (19310, 32175, 'thirty-two thousand one hundred seventy-five'), (19311, 32083, 'thirty-two thousand eighty-three'), (19312, 22509, 'twenty-two thousand five hundred nine'), (19313, 25422, 'twenty-five thousand four hundred twenty-two'), (19314, 4357, 'four thousand three hundred fifty-seven'), (19315, 52869, 'fifty-two thousand eight hundred sixty-nine'), (19316, 17900, 'seventeen thousand nine hundred'), (19317, 70938, 'seventy thousand nine hundred thirty-eight'), (19318, 2002, 'two thousand two'), (19319, 33008, 'thirty-three thousand eight'), (19320, 42110, 'forty-two thousand one hundred ten'), (19321, 28239, 'twenty-eight thousand two hundred thirty-nine'), (19322, 49620, 'forty-nine thousand six hundred twenty'), (19323, 50859, 'fifty thousand eight hundred fifty-nine'), (19324, 43373, 'forty-three thousand three hundred seventy-three'), (19325, 45449, 'forty-five thousand four hundred forty-nine'), (19326, 99210, 'ninety-nine thousand two hundred ten'), (19327, 59515, 'fifty-nine thousand five hundred fifteen'), (19328, 15559, 'fifteen thousand five hundred fifty-nine'), (19329, 75239, 'seventy-five thousand two hundred thirty-nine'), (19330, 61016, 'sixty-one thousand sixteen'), (19331, 13073, 'thirteen thousand seventy-three'), (19332, 17545, 'seventeen thousand five hundred forty-five'), (19333, 48173, 'forty-eight thousand one hundred seventy-three'), (19334, 46919, 'forty-six thousand nine hundred nineteen'), (19335, 40774, 'forty thousand seven hundred seventy-four'), (19336, 10810, 'ten thousand eight hundred ten'), (19337, 10772, 'ten thousand seven hundred seventy-two'), (19338, 31839, 'thirty-one thousand eight hundred thirty-nine'), (19339, 77514, 'seventy-seven thousand five hundred fourteen'), (19340, 25507, 'twenty-five thousand five hundred seven'), (19341, 24718, 'twenty-four thousand seven hundred eighteen'), (19342, 96088, 'ninety-six thousand eighty-eight'), (19343, 37808, 'thirty-seven thousand eight hundred eight'), (19344, 28096, 'twenty-eight thousand ninety-six'), (19345, 47087, 'forty-seven thousand eighty-seven'), (19346, 89794, 'eighty-nine thousand seven hundred ninety-four'), (19347, 43305, 'forty-three thousand three hundred five'), (19348, 51530, 'fifty-one thousand five hundred thirty'), (19349, 72237, 'seventy-two thousand two hundred thirty-seven'), (19350, 48165, 'forty-eight thousand one hundred sixty-five'), (19351, 87052, 'eighty-seven thousand fifty-two'), (19352, 91088, 'ninety-one thousand eighty-eight'), (19353, 21787, 'twenty-one thousand seven hundred eighty-seven'), (19354, 7438, 'seven thousand four hundred thirty-eight'), (19355, 93809, 'ninety-three thousand eight hundred nine'), (19356, 53387, 'fifty-three thousand three hundred eighty-seven'), (19357, 50148, 'fifty thousand one hundred forty-eight'), (19358, 2324, 'two thousand three hundred twenty-four'), (19359, 62523, 'sixty-two thousand five hundred twenty-three'), (19360, 79984, 'seventy-nine thousand nine hundred eighty-four'), (19361, 39614, 'thirty-nine thousand six hundred fourteen'), (19362, 95101, 'ninety-five thousand one hundred one'), (19363, 66708, 'sixty-six thousand seven hundred eight'), (19364, 46374, 'forty-six thousand three hundred seventy-four'), (19365, 49233, 'forty-nine thousand two hundred thirty-three'), (19366, 41598, 'forty-one thousand five hundred ninety-eight'), (19367, 35646, 'thirty-five thousand six hundred forty-six'), (19368, 42860, 'forty-two thousand eight hundred sixty'), (19369, 32294, 'thirty-two thousand two hundred ninety-four'), (19370, 43382, 'forty-three thousand three hundred eighty-two'), (19371, 93880, 'ninety-three thousand eight hundred eighty'), (19372, 73122, 'seventy-three thousand one hundred twenty-two'), (19373, 73350, 'seventy-three thousand three hundred fifty'), (19374, 2592, 'two thousand five hundred ninety-two'), (19375, 31114, 'thirty-one thousand one hundred fourteen'), (19376, 18208, 'eighteen thousand two hundred eight'), (19377, 66715, 'sixty-six thousand seven hundred fifteen'), (19378, 87081, 'eighty-seven thousand eighty-one'), (19379, 63922, 'sixty-three thousand nine hundred twenty-two'), (19380, 65135, 'sixty-five thousand one hundred thirty-five'), (19381, 34806, 'thirty-four thousand eight hundred six'), (19382, 16721, 'sixteen thousand seven hundred twenty-one'), (19383, 201, 'two hundred one'), (19384, 26400, 'twenty-six thousand four hundred'), (19385, 33252, 'thirty-three thousand two hundred fifty-two'), (19386, 28363, 'twenty-eight thousand three hundred sixty-three'), (19387, 6289, 'six thousand two hundred eighty-nine'), (19388, 92145, 'ninety-two thousand one hundred forty-five'), (19389, 84960, 'eighty-four thousand nine hundred sixty'), (19390, 66476, 'sixty-six thousand four hundred seventy-six'), (19391, 19786, 'nineteen thousand seven hundred eighty-six'), (19392, 95230, 'ninety-five thousand two hundred thirty'), (19393, 43209, 'forty-three thousand two hundred nine'), (19394, 52268, 'fifty-two thousand two hundred sixty-eight'), (19395, 62133, 'sixty-two thousand one hundred thirty-three'), (19396, 49167, 'forty-nine thousand one hundred sixty-seven'), (19397, 10010, 'ten thousand ten'), (19398, 10877, 'ten thousand eight hundred seventy-seven'), (19399, 48856, 'forty-eight thousand eight hundred fifty-six'), (19400, 83792, 'eighty-three thousand seven hundred ninety-two'), (19401, 70348, 'seventy thousand three hundred forty-eight'), (19402, 47192, 'forty-seven thousand one hundred ninety-two'), (19403, 14386, 'fourteen thousand three hundred eighty-six'), (19404, 66552, 'sixty-six thousand five hundred fifty-two'), (19405, 71672, 'seventy-one thousand six hundred seventy-two'), (19406, 52616, 'fifty-two thousand six hundred sixteen'), (19407, 4293, 'four thousand two hundred ninety-three'), (19408, 51794, 'fifty-one thousand seven hundred ninety-four'), (19409, 66831, 'sixty-six thousand eight hundred thirty-one'), (19410, 32429, 'thirty-two thousand four hundred twenty-nine'), (19411, 47330, 'forty-seven thousand three hundred thirty'), (19412, 6712, 'six thousand seven hundred twelve'), (19413, 22318, 'twenty-two thousand three hundred eighteen'), (19414, 81768, 'eighty-one thousand seven hundred sixty-eight'), (19415, 17420, 'seventeen thousand four hundred twenty'), (19416, 52444, 'fifty-two thousand four hundred forty-four'), (19417, 66892, 'sixty-six thousand eight hundred ninety-two'), (19418, 9876, 'nine thousand eight hundred seventy-six'), (19419, 97886, 'ninety-seven thousand eight hundred eighty-six'), (19420, 48250, 'forty-eight thousand two hundred fifty'), (19421, 2444, 'two thousand four hundred forty-four'), (19422, 25141, 'twenty-five thousand one hundred forty-one'), (19423, 76082, 'seventy-six thousand eighty-two'), (19424, 65144, 'sixty-five thousand one hundred forty-four'), (19425, 97353, 'ninety-seven thousand three hundred fifty-three'), (19426, 90269, 'ninety thousand two hundred sixty-nine'), (19427, 53684, 'fifty-three thousand six hundred eighty-four'), (19428, 72658, 'seventy-two thousand six hundred fifty-eight'), (19429, 11347, 'eleven thousand three hundred forty-seven'), (19430, 56510, 'fifty-six thousand five hundred ten'), (19431, 45481, 'forty-five thousand four hundred eighty-one'), (19432, 22, 'twenty-two'), (19433, 28940, 'twenty-eight thousand nine hundred forty'), (19434, 91707, 'ninety-one thousand seven hundred seven'), (19435, 90242, 'ninety thousand two hundred forty-two'), (19436, 83129, 'eighty-three thousand one hundred twenty-nine'), (19437, 14988, 'fourteen thousand nine hundred eighty-eight'), (19438, 59144, 'fifty-nine thousand one hundred forty-four'), (19439, 89946, 'eighty-nine thousand nine hundred forty-six'), (19440, 1864, 'one thousand eight hundred sixty-four'), (19441, 94618, 'ninety-four thousand six hundred eighteen'), (19442, 62704, 'sixty-two thousand seven hundred four'), (19443, 48949, 'forty-eight thousand nine hundred forty-nine'), (19444, 57557, 'fifty-seven thousand five hundred fifty-seven'), (19445, 99652, 'ninety-nine thousand six hundred fifty-two'), (19446, 65442, 'sixty-five thousand four hundred forty-two'), (19447, 86076, 'eighty-six thousand seventy-six'), (19448, 67110, 'sixty-seven thousand one hundred ten'), (19449, 48685, 'forty-eight thousand six hundred eighty-five'), (19450, 7597, 'seven thousand five hundred ninety-seven'), (19451, 61705, 'sixty-one thousand seven hundred five'), (19452, 28462, 'twenty-eight thousand four hundred sixty-two'), (19453, 68515, 'sixty-eight thousand five hundred fifteen'), (19454, 28122, 'twenty-eight thousand one hundred twenty-two'), (19455, 57963, 'fifty-seven thousand nine hundred sixty-three'), (19456, 22132, 'twenty-two thousand one hundred thirty-two'), (19457, 80751, 'eighty thousand seven hundred fifty-one'), (19458, 95004, 'ninety-five thousand four'), (19459, 41140, 'forty-one thousand one hundred forty'), (19460, 64038, 'sixty-four thousand thirty-eight'), (19461, 62227, 'sixty-two thousand two hundred twenty-seven'), (19462, 64229, 'sixty-four thousand two hundred twenty-nine'), (19463, 96822, 'ninety-six thousand eight hundred twenty-two'), (19464, 39952, 'thirty-nine thousand nine hundred fifty-two'), (19465, 23326, 'twenty-three thousand three hundred twenty-six'), (19466, 75334, 'seventy-five thousand three hundred thirty-four'), (19467, 19972, 'nineteen thousand nine hundred seventy-two'), (19468, 67975, 'sixty-seven thousand nine hundred seventy-five'), (19469, 69206, 'sixty-nine thousand two hundred six'), (19470, 30012, 'thirty thousand twelve'), (19471, 10368, 'ten thousand three hundred sixty-eight'), (19472, 79123, 'seventy-nine thousand one hundred twenty-three'), (19473, 96431, 'ninety-six thousand four hundred thirty-one'), (19474, 72369, 'seventy-two thousand three hundred sixty-nine'), (19475, 42306, 'forty-two thousand three hundred six'), (19476, 21722, 'twenty-one thousand seven hundred twenty-two'), (19477, 74826, 'seventy-four thousand eight hundred twenty-six'), (19478, 91822, 'ninety-one thousand eight hundred twenty-two'), (19479, 25361, 'twenty-five thousand three hundred sixty-one'), (19480, 80880, 'eighty thousand eight hundred eighty'), (19481, 19020, 'nineteen thousand twenty'), (19482, 26467, 'twenty-six thousand four hundred sixty-seven'), (19483, 55168, 'fifty-five thousand one hundred sixty-eight'), (19484, 27838, 'twenty-seven thousand eight hundred thirty-eight'), (19485, 75097, 'seventy-five thousand ninety-seven'), (19486, 58121, 'fifty-eight thousand one hundred twenty-one'), (19487, 67684, 'sixty-seven thousand six hundred eighty-four'), (19488, 34533, 'thirty-four thousand five hundred thirty-three'), (19489, 65004, 'sixty-five thousand four'), (19490, 81753, 'eighty-one thousand seven hundred fifty-three'), (19491, 22928, 'twenty-two thousand nine hundred twenty-eight'), (19492, 89768, 'eighty-nine thousand seven hundred sixty-eight'), (19493, 80066, 'eighty thousand sixty-six'), (19494, 63, 'sixty-three'), (19495, 81133, 'eighty-one thousand one hundred thirty-three'), (19496, 62368, 'sixty-two thousand three hundred sixty-eight'), (19497, 96655, 'ninety-six thousand six hundred fifty-five'), (19498, 58355, 'fifty-eight thousand three hundred fifty-five'), (19499, 57203, 'fifty-seven thousand two hundred three'), (19500, 4648, 'four thousand six hundred forty-eight'), (19501, 61347, 'sixty-one thousand three hundred forty-seven'), (19502, 25546, 'twenty-five thousand five hundred forty-six'), (19503, 96284, 'ninety-six thousand two hundred eighty-four'), (19504, 41149, 'forty-one thousand one hundred forty-nine'), (19505, 4904, 'four thousand nine hundred four'), (19506, 18995, 'eighteen thousand nine hundred ninety-five'), (19507, 96790, 'ninety-six thousand seven hundred ninety'), (19508, 92836, 'ninety-two thousand eight hundred thirty-six'), (19509, 8992, 'eight thousand nine hundred ninety-two'), (19510, 69370, 'sixty-nine thousand three hundred seventy'), (19511, 60765, 'sixty thousand seven hundred sixty-five'), (19512, 16653, 'sixteen thousand six hundred fifty-three'), (19513, 10060, 'ten thousand sixty'), (19514, 35796, 'thirty-five thousand seven hundred ninety-six'), (19515, 93618, 'ninety-three thousand six hundred eighteen'), (19516, 80694, 'eighty thousand six hundred ninety-four'), (19517, 20147, 'twenty thousand one hundred forty-seven'), (19518, 3429, 'three thousand four hundred twenty-nine'), (19519, 83564, 'eighty-three thousand five hundred sixty-four'), (19520, 88829, 'eighty-eight thousand eight hundred twenty-nine'), (19521, 77754, 'seventy-seven thousand seven hundred fifty-four'), (19522, 12284, 'twelve thousand two hundred eighty-four'), (19523, 35935, 'thirty-five thousand nine hundred thirty-five'), (19524, 27183, 'twenty-seven thousand one hundred eighty-three'), (19525, 64198, 'sixty-four thousand one hundred ninety-eight'), (19526, 38675, 'thirty-eight thousand six hundred seventy-five'), (19527, 70844, 'seventy thousand eight hundred forty-four'), (19528, 22704, 'twenty-two thousand seven hundred four'), (19529, 79958, 'seventy-nine thousand nine hundred fifty-eight'), (19530, 95929, 'ninety-five thousand nine hundred twenty-nine'), (19531, 6916, 'six thousand nine hundred sixteen'), (19532, 54743, 'fifty-four thousand seven hundred forty-three'), (19533, 60604, 'sixty thousand six hundred four'), (19534, 22325, 'twenty-two thousand three hundred twenty-five'), (19535, 26066, 'twenty-six thousand sixty-six'), (19536, 25068, 'twenty-five thousand sixty-eight'), (19537, 73999, 'seventy-three thousand nine hundred ninety-nine'), (19538, 90102, 'ninety thousand one hundred two'), (19539, 50796, 'fifty thousand seven hundred ninety-six'), (19540, 56825, 'fifty-six thousand eight hundred twenty-five'), (19541, 94460, 'ninety-four thousand four hundred sixty'), (19542, 16262, 'sixteen thousand two hundred sixty-two'), (19543, 28322, 'twenty-eight thousand three hundred twenty-two'), (19544, 34284, 'thirty-four thousand two hundred eighty-four'), (19545, 32065, 'thirty-two thousand sixty-five'), (19546, 77081, 'seventy-seven thousand eighty-one'), (19547, 96591, 'ninety-six thousand five hundred ninety-one'), (19548, 16485, 'sixteen thousand four hundred eighty-five'), (19549, 82703, 'eighty-two thousand seven hundred three'), (19550, 48669, 'forty-eight thousand six hundred sixty-nine'), (19551, 20707, 'twenty thousand seven hundred seven'), (19552, 41545, 'forty-one thousand five hundred forty-five'), (19553, 27933, 'twenty-seven thousand nine hundred thirty-three'), (19554, 66292, 'sixty-six thousand two hundred ninety-two'), (19555, 24202, 'twenty-four thousand two hundred two'), (19556, 62431, 'sixty-two thousand four hundred thirty-one'), (19557, 78840, 'seventy-eight thousand eight hundred forty'), (19558, 16413, 'sixteen thousand four hundred thirteen'), (19559, 70175, 'seventy thousand one hundred seventy-five'), (19560, 60832, 'sixty thousand eight hundred thirty-two'), (19561, 23019, 'twenty-three thousand nineteen'), (19562, 12209, 'twelve thousand two hundred nine'), (19563, 80853, 'eighty thousand eight hundred fifty-three'), (19564, 92697, 'ninety-two thousand six hundred ninety-seven'), (19565, 28415, 'twenty-eight thousand four hundred fifteen'), (19566, 32499, 'thirty-two thousand four hundred ninety-nine'), (19567, 27750, 'twenty-seven thousand seven hundred fifty'), (19568, 76482, 'seventy-six thousand four hundred eighty-two'), (19569, 61990, 'sixty-one thousand nine hundred ninety'), (19570, 45851, 'forty-five thousand eight hundred fifty-one'), (19571, 70133, 'seventy thousand one hundred thirty-three'), (19572, 10924, 'ten thousand nine hundred twenty-four'), (19573, 14232, 'fourteen thousand two hundred thirty-two'), (19574, 42897, 'forty-two thousand eight hundred ninety-seven'), (19575, 43859, 'forty-three thousand eight hundred fifty-nine'), (19576, 45896, 'forty-five thousand eight hundred ninety-six'), (19577, 80573, 'eighty thousand five hundred seventy-three'), (19578, 33263, 'thirty-three thousand two hundred sixty-three'), (19579, 11309, 'eleven thousand three hundred nine'), (19580, 51548, 'fifty-one thousand five hundred forty-eight'), (19581, 84810, 'eighty-four thousand eight hundred ten'), (19582, 5351, 'five thousand three hundred fifty-one'), (19583, 49954, 'forty-nine thousand nine hundred fifty-four'), (19584, 77970, 'seventy-seven thousand nine hundred seventy'), (19585, 38837, 'thirty-eight thousand eight hundred thirty-seven'), (19586, 84518, 'eighty-four thousand five hundred eighteen'), (19587, 77835, 'seventy-seven thousand eight hundred thirty-five'), (19588, 79133, 'seventy-nine thousand one hundred thirty-three'), (19589, 66653, 'sixty-six thousand six hundred fifty-three'), (19590, 66560, 'sixty-six thousand five hundred sixty'), (19591, 49271, 'forty-nine thousand two hundred seventy-one'), (19592, 51718, 'fifty-one thousand seven hundred eighteen'), (19593, 29659, 'twenty-nine thousand six hundred fifty-nine'), (19594, 95580, 'ninety-five thousand five hundred eighty'), (19595, 96407, 'ninety-six thousand four hundred seven'), (19596, 10534, 'ten thousand five hundred thirty-four'), (19597, 87778, 'eighty-seven thousand seven hundred seventy-eight'), (19598, 15207, 'fifteen thousand two hundred seven'), (19599, 34221, 'thirty-four thousand two hundred twenty-one'), (19600, 94870, 'ninety-four thousand eight hundred seventy'), (19601, 58996, 'fifty-eight thousand nine hundred ninety-six'), (19602, 60626, 'sixty thousand six hundred twenty-six'), (19603, 53579, 'fifty-three thousand five hundred seventy-nine'), (19604, 23647, 'twenty-three thousand six hundred forty-seven'), (19605, 68599, 'sixty-eight thousand five hundred ninety-nine'), (19606, 58470, 'fifty-eight thousand four hundred seventy'), (19607, 14979, 'fourteen thousand nine hundred seventy-nine'), (19608, 92082, 'ninety-two thousand eighty-two'), (19609, 89164, 'eighty-nine thousand one hundred sixty-four'), (19610, 8578, 'eight thousand five hundred seventy-eight'), (19611, 21507, 'twenty-one thousand five hundred seven'), (19612, 78285, 'seventy-eight thousand two hundred eighty-five'), (19613, 28293, 'twenty-eight thousand two hundred ninety-three'), (19614, 93758, 'ninety-three thousand seven hundred fifty-eight'), (19615, 94719, 'ninety-four thousand seven hundred nineteen'), (19616, 51661, 'fifty-one thousand six hundred sixty-one'), (19617, 82080, 'eighty-two thousand eighty'), (19618, 10941, 'ten thousand nine hundred forty-one'), (19619, 17836, 'seventeen thousand eight hundred thirty-six'), (19620, 28320, 'twenty-eight thousand three hundred twenty'), (19621, 83908, 'eighty-three thousand nine hundred eight'), (19622, 60471, 'sixty thousand four hundred seventy-one'), (19623, 91459, 'ninety-one thousand four hundred fifty-nine'), (19624, 82685, 'eighty-two thousand six hundred eighty-five'), (19625, 19443, 'nineteen thousand four hundred forty-three'), (19626, 91953, 'ninety-one thousand nine hundred fifty-three'), (19627, 3738, 'three thousand seven hundred thirty-eight'), (19628, 56988, 'fifty-six thousand nine hundred eighty-eight'), (19629, 96647, 'ninety-six thousand six hundred forty-seven'), (19630, 43647, 'forty-three thousand six hundred forty-seven'), (19631, 85166, 'eighty-five thousand one hundred sixty-six'), (19632, 12253, 'twelve thousand two hundred fifty-three'), (19633, 74525, 'seventy-four thousand five hundred twenty-five'), (19634, 90349, 'ninety thousand three hundred forty-nine'), (19635, 74598, 'seventy-four thousand five hundred ninety-eight'), (19636, 1249, 'one thousand two hundred forty-nine'), (19637, 50478, 'fifty thousand four hundred seventy-eight'), (19638, 2228, 'two thousand two hundred twenty-eight'), (19639, 52153, 'fifty-two thousand one hundred fifty-three'), (19640, 27915, 'twenty-seven thousand nine hundred fifteen'), (19641, 11883, 'eleven thousand eight hundred eighty-three'), (19642, 30767, 'thirty thousand seven hundred sixty-seven'), (19643, 97278, 'ninety-seven thousand two hundred seventy-eight'), (19644, 16183, 'sixteen thousand one hundred eighty-three'), (19645, 54272, 'fifty-four thousand two hundred seventy-two'), (19646, 10524, 'ten thousand five hundred twenty-four'), (19647, 91389, 'ninety-one thousand three hundred eighty-nine'), (19648, 30152, 'thirty thousand one hundred fifty-two'), (19649, 42300, 'forty-two thousand three hundred'), (19650, 66381, 'sixty-six thousand three hundred eighty-one'), (19651, 61423, 'sixty-one thousand four hundred twenty-three'), (19652, 2439, 'two thousand four hundred thirty-nine'), (19653, 38459, 'thirty-eight thousand four hundred fifty-nine'), (19654, 18236, 'eighteen thousand two hundred thirty-six'), (19655, 59684, 'fifty-nine thousand six hundred eighty-four'), (19656, 81523, 'eighty-one thousand five hundred twenty-three'), (19657, 13311, 'thirteen thousand three hundred eleven'), (19658, 64452, 'sixty-four thousand four hundred fifty-two'), (19659, 38101, 'thirty-eight thousand one hundred one'), (19660, 47148, 'forty-seven thousand one hundred forty-eight'), (19661, 11105, 'eleven thousand one hundred five'), (19662, 12623, 'twelve thousand six hundred twenty-three'), (19663, 19114, 'nineteen thousand one hundred fourteen'), (19664, 55521, 'fifty-five thousand five hundred twenty-one'), (19665, 61789, 'sixty-one thousand seven hundred eighty-nine'), (19666, 95109, 'ninety-five thousand one hundred nine'), (19667, 6761, 'six thousand seven hundred sixty-one'), (19668, 69469, 'sixty-nine thousand four hundred sixty-nine'), (19669, 26772, 'twenty-six thousand seven hundred seventy-two'), (19670, 27451, 'twenty-seven thousand four hundred fifty-one'), (19671, 21995, 'twenty-one thousand nine hundred ninety-five'), (19672, 59876, 'fifty-nine thousand eight hundred seventy-six'), (19673, 13762, 'thirteen thousand seven hundred sixty-two'), (19674, 26792, 'twenty-six thousand seven hundred ninety-two'), (19675, 81084, 'eighty-one thousand eighty-four'), (19676, 37351, 'thirty-seven thousand three hundred fifty-one'), (19677, 65250, 'sixty-five thousand two hundred fifty'), (19678, 81527, 'eighty-one thousand five hundred twenty-seven'), (19679, 36905, 'thirty-six thousand nine hundred five'), (19680, 47660, 'forty-seven thousand six hundred sixty'), (19681, 22995, 'twenty-two thousand nine hundred ninety-five'), (19682, 19225, 'nineteen thousand two hundred twenty-five'), (19683, 2693, 'two thousand six hundred ninety-three'), (19684, 64964, 'sixty-four thousand nine hundred sixty-four'), (19685, 91691, 'ninety-one thousand six hundred ninety-one'), (19686, 15382, 'fifteen thousand three hundred eighty-two'), (19687, 67817, 'sixty-seven thousand eight hundred seventeen'), (19688, 78111, 'seventy-eight thousand one hundred eleven'), (19689, 11356, 'eleven thousand three hundred fifty-six'), (19690, 6504, 'six thousand five hundred four'), (19691, 97517, 'ninety-seven thousand five hundred seventeen'), (19692, 98220, 'ninety-eight thousand two hundred twenty'), (19693, 71863, 'seventy-one thousand eight hundred sixty-three'), (19694, 85460, 'eighty-five thousand four hundred sixty'), (19695, 28314, 'twenty-eight thousand three hundred fourteen'), (19696, 3256, 'three thousand two hundred fifty-six'), (19697, 58069, 'fifty-eight thousand sixty-nine'), (19698, 94678, 'ninety-four thousand six hundred seventy-eight'), (19699, 54302, 'fifty-four thousand three hundred two'), (19700, 25576, 'twenty-five thousand five hundred seventy-six'), (19701, 35569, 'thirty-five thousand five hundred sixty-nine'), (19702, 61789, 'sixty-one thousand seven hundred eighty-nine'), (19703, 99265, 'ninety-nine thousand two hundred sixty-five'), (19704, 16493, 'sixteen thousand four hundred ninety-three'), (19705, 86940, 'eighty-six thousand nine hundred forty'), (19706, 4691, 'four thousand six hundred ninety-one'), (19707, 99848, 'ninety-nine thousand eight hundred forty-eight'), (19708, 61625, 'sixty-one thousand six hundred twenty-five'), (19709, 7584, 'seven thousand five hundred eighty-four'), (19710, 61591, 'sixty-one thousand five hundred ninety-one'), (19711, 48565, 'forty-eight thousand five hundred sixty-five'), (19712, 30013, 'thirty thousand thirteen'), (19713, 43751, 'forty-three thousand seven hundred fifty-one'), (19714, 94680, 'ninety-four thousand six hundred eighty'), (19715, 8761, 'eight thousand seven hundred sixty-one'), (19716, 6462, 'six thousand four hundred sixty-two'), (19717, 52834, 'fifty-two thousand eight hundred thirty-four'), (19718, 29130, 'twenty-nine thousand one hundred thirty'), (19719, 46559, 'forty-six thousand five hundred fifty-nine'), (19720, 58524, 'fifty-eight thousand five hundred twenty-four'), (19721, 30948, 'thirty thousand nine hundred forty-eight'), (19722, 83340, 'eighty-three thousand three hundred forty'), (19723, 33399, 'thirty-three thousand three hundred ninety-nine'), (19724, 35963, 'thirty-five thousand nine hundred sixty-three'), (19725, 53570, 'fifty-three thousand five hundred seventy'), (19726, 22531, 'twenty-two thousand five hundred thirty-one'), (19727, 65702, 'sixty-five thousand seven hundred two'), (19728, 6151, 'six thousand one hundred fifty-one'), (19729, 22564, 'twenty-two thousand five hundred sixty-four'), (19730, 51186, 'fifty-one thousand one hundred eighty-six'), (19731, 4282, 'four thousand two hundred eighty-two'), (19732, 18315, 'eighteen thousand three hundred fifteen'), (19733, 76796, 'seventy-six thousand seven hundred ninety-six'), (19734, 72166, 'seventy-two thousand one hundred sixty-six'), (19735, 53644, 'fifty-three thousand six hundred forty-four'), (19736, 10619, 'ten thousand six hundred nineteen'), (19737, 64997, 'sixty-four thousand nine hundred ninety-seven'), (19738, 22161, 'twenty-two thousand one hundred sixty-one'), (19739, 8142, 'eight thousand one hundred forty-two'), (19740, 10780, 'ten thousand seven hundred eighty'), (19741, 69248, 'sixty-nine thousand two hundred forty-eight'), (19742, 56786, 'fifty-six thousand seven hundred eighty-six'), (19743, 53398, 'fifty-three thousand three hundred ninety-eight'), (19744, 84795, 'eighty-four thousand seven hundred ninety-five'), (19745, 4636, 'four thousand six hundred thirty-six'), (19746, 6238, 'six thousand two hundred thirty-eight'), (19747, 3622, 'three thousand six hundred twenty-two'), (19748, 48162, 'forty-eight thousand one hundred sixty-two'), (19749, 2440, 'two thousand four hundred forty'), (19750, 77308, 'seventy-seven thousand three hundred eight'), (19751, 94800, 'ninety-four thousand eight hundred'), (19752, 24943, 'twenty-four thousand nine hundred forty-three'), (19753, 53543, 'fifty-three thousand five hundred forty-three'), (19754, 57778, 'fifty-seven thousand seven hundred seventy-eight'), (19755, 1733, 'one thousand seven hundred thirty-three'), (19756, 38360, 'thirty-eight thousand three hundred sixty'), (19757, 32098, 'thirty-two thousand ninety-eight'), (19758, 66809, 'sixty-six thousand eight hundred nine'), (19759, 18557, 'eighteen thousand five hundred fifty-seven'), (19760, 45597, 'forty-five thousand five hundred ninety-seven'), (19761, 19556, 'nineteen thousand five hundred fifty-six'), (19762, 82911, 'eighty-two thousand nine hundred eleven'), (19763, 6948, 'six thousand nine hundred forty-eight'), (19764, 22761, 'twenty-two thousand seven hundred sixty-one'), (19765, 19630, 'nineteen thousand six hundred thirty'), (19766, 56186, 'fifty-six thousand one hundred eighty-six'), (19767, 35048, 'thirty-five thousand forty-eight'), (19768, 95893, 'ninety-five thousand eight hundred ninety-three'), (19769, 79559, 'seventy-nine thousand five hundred fifty-nine'), (19770, 455, 'four hundred fifty-five'), (19771, 13704, 'thirteen thousand seven hundred four'), (19772, 84552, 'eighty-four thousand five hundred fifty-two'), (19773, 79148, 'seventy-nine thousand one hundred forty-eight'), (19774, 79150, 'seventy-nine thousand one hundred fifty'), (19775, 707, 'seven hundred seven'), (19776, 85901, 'eighty-five thousand nine hundred one'), (19777, 27109, 'twenty-seven thousand one hundred nine'), (19778, 21154, 'twenty-one thousand one hundred fifty-four'), (19779, 50486, 'fifty thousand four hundred eighty-six'), (19780, 41518, 'forty-one thousand five hundred eighteen'), (19781, 85460, 'eighty-five thousand four hundred sixty'), (19782, 9865, 'nine thousand eight hundred sixty-five'), (19783, 3551, 'three thousand five hundred fifty-one'), (19784, 14149, 'fourteen thousand one hundred forty-nine'), (19785, 11263, 'eleven thousand two hundred sixty-three'), (19786, 29249, 'twenty-nine thousand two hundred forty-nine'), (19787, 92742, 'ninety-two thousand seven hundred forty-two'), (19788, 23738, 'twenty-three thousand seven hundred thirty-eight'), (19789, 8569, 'eight thousand five hundred sixty-nine'), (19790, 73611, 'seventy-three thousand six hundred eleven'), (19791, 17528, 'seventeen thousand five hundred twenty-eight'), (19792, 87132, 'eighty-seven thousand one hundred thirty-two'), (19793, 89576, 'eighty-nine thousand five hundred seventy-six'), (19794, 58548, 'fifty-eight thousand five hundred forty-eight'), (19795, 76515, 'seventy-six thousand five hundred fifteen'), (19796, 85275, 'eighty-five thousand two hundred seventy-five'), (19797, 74078, 'seventy-four thousand seventy-eight'), (19798, 92504, 'ninety-two thousand five hundred four'), (19799, 22474, 'twenty-two thousand four hundred seventy-four'), (19800, 80380, 'eighty thousand three hundred eighty'), (19801, 82322, 'eighty-two thousand three hundred twenty-two'), (19802, 2313, 'two thousand three hundred thirteen'), (19803, 79813, 'seventy-nine thousand eight hundred thirteen'), (19804, 47837, 'forty-seven thousand eight hundred thirty-seven'), (19805, 2108, 'two thousand one hundred eight'), (19806, 16093, 'sixteen thousand ninety-three'), (19807, 60147, 'sixty thousand one hundred forty-seven'), (19808, 20895, 'twenty thousand eight hundred ninety-five'), (19809, 74249, 'seventy-four thousand two hundred forty-nine'), (19810, 55563, 'fifty-five thousand five hundred sixty-three'), (19811, 10747, 'ten thousand seven hundred forty-seven'), (19812, 6585, 'six thousand five hundred eighty-five'), (19813, 29215, 'twenty-nine thousand two hundred fifteen'), (19814, 76396, 'seventy-six thousand three hundred ninety-six'), (19815, 85241, 'eighty-five thousand two hundred forty-one'), (19816, 2360, 'two thousand three hundred sixty'), (19817, 53226, 'fifty-three thousand two hundred twenty-six'), (19818, 51942, 'fifty-one thousand nine hundred forty-two'), (19819, 26759, 'twenty-six thousand seven hundred fifty-nine'), (19820, 59110, 'fifty-nine thousand one hundred ten'), (19821, 35304, 'thirty-five thousand three hundred four'), (19822, 8459, 'eight thousand four hundred fifty-nine'), (19823, 69970, 'sixty-nine thousand nine hundred seventy'), (19824, 41987, 'forty-one thousand nine hundred eighty-seven'), (19825, 27392, 'twenty-seven thousand three hundred ninety-two'), (19826, 85072, 'eighty-five thousand seventy-two'), (19827, 78015, 'seventy-eight thousand fifteen'), (19828, 71128, 'seventy-one thousand one hundred twenty-eight'), (19829, 78156, 'seventy-eight thousand one hundred fifty-six'), (19830, 38900, 'thirty-eight thousand nine hundred'), (19831, 86028, 'eighty-six thousand twenty-eight'), (19832, 97658, 'ninety-seven thousand six hundred fifty-eight'), (19833, 22026, 'twenty-two thousand twenty-six'), (19834, 60160, 'sixty thousand one hundred sixty'), (19835, 78417, 'seventy-eight thousand four hundred seventeen'), (19836, 32551, 'thirty-two thousand five hundred fifty-one'), (19837, 61239, 'sixty-one thousand two hundred thirty-nine'), (19838, 73367, 'seventy-three thousand three hundred sixty-seven'), (19839, 46572, 'forty-six thousand five hundred seventy-two'), (19840, 72377, 'seventy-two thousand three hundred seventy-seven'), (19841, 862, 'eight hundred sixty-two'), (19842, 18676, 'eighteen thousand six hundred seventy-six'), (19843, 64473, 'sixty-four thousand four hundred seventy-three'), (19844, 42674, 'forty-two thousand six hundred seventy-four'), (19845, 59521, 'fifty-nine thousand five hundred twenty-one'), (19846, 30886, 'thirty thousand eight hundred eighty-six'), (19847, 79158, 'seventy-nine thousand one hundred fifty-eight'), (19848, 88093, 'eighty-eight thousand ninety-three'), (19849, 32744, 'thirty-two thousand seven hundred forty-four'), (19850, 50025, 'fifty thousand twenty-five'), (19851, 41811, 'forty-one thousand eight hundred eleven'), (19852, 73961, 'seventy-three thousand nine hundred sixty-one'), (19853, 60616, 'sixty thousand six hundred sixteen'), (19854, 84485, 'eighty-four thousand four hundred eighty-five'), (19855, 26608, 'twenty-six thousand six hundred eight'), (19856, 48960, 'forty-eight thousand nine hundred sixty'), (19857, 54946, 'fifty-four thousand nine hundred forty-six'), (19858, 38908, 'thirty-eight thousand nine hundred eight'), (19859, 4862, 'four thousand eight hundred sixty-two'), (19860, 26032, 'twenty-six thousand thirty-two'), (19861, 17124, 'seventeen thousand one hundred twenty-four'), (19862, 4788, 'four thousand seven hundred eighty-eight'), (19863, 34230, 'thirty-four thousand two hundred thirty'), (19864, 14896, 'fourteen thousand eight hundred ninety-six'), (19865, 96684, 'ninety-six thousand six hundred eighty-four'), (19866, 281, 'two hundred eighty-one'), (19867, 78748, 'seventy-eight thousand seven hundred forty-eight'), (19868, 71545, 'seventy-one thousand five hundred forty-five'), (19869, 3317, 'three thousand three hundred seventeen'), (19870, 32683, 'thirty-two thousand six hundred eighty-three'), (19871, 32391, 'thirty-two thousand three hundred ninety-one'), (19872, 98739, 'ninety-eight thousand seven hundred thirty-nine'), (19873, 30040, 'thirty thousand forty'), (19874, 42821, 'forty-two thousand eight hundred twenty-one'), (19875, 43253, 'forty-three thousand two hundred fifty-three'), (19876, 54301, 'fifty-four thousand three hundred one'), (19877, 74672, 'seventy-four thousand six hundred seventy-two'), (19878, 43022, 'forty-three thousand twenty-two'), (19879, 85675, 'eighty-five thousand six hundred seventy-five'), (19880, 33331, 'thirty-three thousand three hundred thirty-one'), (19881, 16335, 'sixteen thousand three hundred thirty-five'), (19882, 97169, 'ninety-seven thousand one hundred sixty-nine'), (19883, 77461, 'seventy-seven thousand four hundred sixty-one'), (19884, 29652, 'twenty-nine thousand six hundred fifty-two'), (19885, 10484, 'ten thousand four hundred eighty-four'), (19886, 44133, 'forty-four thousand one hundred thirty-three'), (19887, 13265, 'thirteen thousand two hundred sixty-five'), (19888, 52115, 'fifty-two thousand one hundred fifteen'), (19889, 75885, 'seventy-five thousand eight hundred eighty-five'), (19890, 2600, 'two thousand six hundred'), (19891, 61847, 'sixty-one thousand eight hundred forty-seven'), (19892, 72430, 'seventy-two thousand four hundred thirty'), (19893, 55107, 'fifty-five thousand one hundred seven'), (19894, 5971, 'five thousand nine hundred seventy-one'), (19895, 6481, 'six thousand four hundred eighty-one'), (19896, 55638, 'fifty-five thousand six hundred thirty-eight'), (19897, 48151, 'forty-eight thousand one hundred fifty-one'), (19898, 84748, 'eighty-four thousand seven hundred forty-eight'), (19899, 19029, 'nineteen thousand twenty-nine'), (19900, 7061, 'seven thousand sixty-one'), (19901, 94578, 'ninety-four thousand five hundred seventy-eight'), (19902, 3663, 'three thousand six hundred sixty-three'), (19903, 66318, 'sixty-six thousand three hundred eighteen'), (19904, 31563, 'thirty-one thousand five hundred sixty-three'), (19905, 79248, 'seventy-nine thousand two hundred forty-eight'), (19906, 25074, 'twenty-five thousand seventy-four'), (19907, 98071, 'ninety-eight thousand seventy-one'), (19908, 24780, 'twenty-four thousand seven hundred eighty'), (19909, 77806, 'seventy-seven thousand eight hundred six'), (19910, 58941, 'fifty-eight thousand nine hundred forty-one'), (19911, 2663, 'two thousand six hundred sixty-three'), (19912, 31506, 'thirty-one thousand five hundred six'), (19913, 75696, 'seventy-five thousand six hundred ninety-six'), (19914, 54651, 'fifty-four thousand six hundred fifty-one'), (19915, 71359, 'seventy-one thousand three hundred fifty-nine'), (19916, 69997, 'sixty-nine thousand nine hundred ninety-seven'), (19917, 12752, 'twelve thousand seven hundred fifty-two'), (19918, 65267, 'sixty-five thousand two hundred sixty-seven'), (19919, 65878, 'sixty-five thousand eight hundred seventy-eight'), (19920, 65887, 'sixty-five thousand eight hundred eighty-seven'), (19921, 46064, 'forty-six thousand sixty-four'), (19922, 19555, 'nineteen thousand five hundred fifty-five'), (19923, 65599, 'sixty-five thousand five hundred ninety-nine'), (19924, 20196, 'twenty thousand one hundred ninety-six'), (19925, 90752, 'ninety thousand seven hundred fifty-two'), (19926, 17180, 'seventeen thousand one hundred eighty'), (19927, 65179, 'sixty-five thousand one hundred seventy-nine'), (19928, 5079, 'five thousand seventy-nine'), (19929, 30209, 'thirty thousand two hundred nine'), (19930, 84827, 'eighty-four thousand eight hundred twenty-seven'), (19931, 11487, 'eleven thousand four hundred eighty-seven'), (19932, 27339, 'twenty-seven thousand three hundred thirty-nine'), (19933, 57949, 'fifty-seven thousand nine hundred forty-nine'), (19934, 47261, 'forty-seven thousand two hundred sixty-one'), (19935, 44199, 'forty-four thousand one hundred ninety-nine'), (19936, 86673, 'eighty-six thousand six hundred seventy-three'), (19937, 7578, 'seven thousand five hundred seventy-eight'), (19938, 41773, 'forty-one thousand seven hundred seventy-three'), (19939, 91968, 'ninety-one thousand nine hundred sixty-eight'), (19940, 2132, 'two thousand one hundred thirty-two'), (19941, 83697, 'eighty-three thousand six hundred ninety-seven'), (19942, 87742, 'eighty-seven thousand seven hundred forty-two'), (19943, 55557, 'fifty-five thousand five hundred fifty-seven'), (19944, 63580, 'sixty-three thousand five hundred eighty'), (19945, 1672, 'one thousand six hundred seventy-two'), (19946, 65420, 'sixty-five thousand four hundred twenty'), (19947, 29197, 'twenty-nine thousand one hundred ninety-seven'), (19948, 62945, 'sixty-two thousand nine hundred forty-five'), (19949, 9304, 'nine thousand three hundred four'), (19950, 9521, 'nine thousand five hundred twenty-one'), (19951, 36574, 'thirty-six thousand five hundred seventy-four'), (19952, 89705, 'eighty-nine thousand seven hundred five'), (19953, 33556, 'thirty-three thousand five hundred fifty-six'), (19954, 59207, 'fifty-nine thousand two hundred seven'), (19955, 49013, 'forty-nine thousand thirteen'), (19956, 61215, 'sixty-one thousand two hundred fifteen'), (19957, 30798, 'thirty thousand seven hundred ninety-eight'), (19958, 43824, 'forty-three thousand eight hundred twenty-four'), (19959, 64218, 'sixty-four thousand two hundred eighteen'), (19960, 40424, 'forty thousand four hundred twenty-four'), (19961, 4351, 'four thousand three hundred fifty-one'), (19962, 81330, 'eighty-one thousand three hundred thirty'), (19963, 86096, 'eighty-six thousand ninety-six'), (19964, 30436, 'thirty thousand four hundred thirty-six'), (19965, 72176, 'seventy-two thousand one hundred seventy-six'), (19966, 69239, 'sixty-nine thousand two hundred thirty-nine'), (19967, 68840, 'sixty-eight thousand eight hundred forty'), (19968, 49386, 'forty-nine thousand three hundred eighty-six'), (19969, 2031, 'two thousand thirty-one'), (19970, 14886, 'fourteen thousand eight hundred eighty-six'), (19971, 56536, 'fifty-six thousand five hundred thirty-six'), (19972, 80156, 'eighty thousand one hundred fifty-six'), (19973, 75291, 'seventy-five thousand two hundred ninety-one'), (19974, 90942, 'ninety thousand nine hundred forty-two'), (19975, 45226, 'forty-five thousand two hundred twenty-six'), (19976, 12983, 'twelve thousand nine hundred eighty-three'), (19977, 18267, 'eighteen thousand two hundred sixty-seven'), (19978, 45047, 'forty-five thousand forty-seven'), (19979, 99153, 'ninety-nine thousand one hundred fifty-three'), (19980, 3947, 'three thousand nine hundred forty-seven'), (19981, 61329, 'sixty-one thousand three hundred twenty-nine'), (19982, 281, 'two hundred eighty-one'), (19983, 86403, 'eighty-six thousand four hundred three'), (19984, 99446, 'ninety-nine thousand four hundred forty-six'), (19985, 32030, 'thirty-two thousand thirty'), (19986, 48799, 'forty-eight thousand seven hundred ninety-nine'), (19987, 57741, 'fifty-seven thousand seven hundred forty-one'), (19988, 41067, 'forty-one thousand sixty-seven'), (19989, 52472, 'fifty-two thousand four hundred seventy-two'), (19990, 27076, 'twenty-seven thousand seventy-six'), (19991, 56150, 'fifty-six thousand one hundred fifty'), (19992, 96902, 'ninety-six thousand nine hundred two'), (19993, 4169, 'four thousand one hundred sixty-nine'), (19994, 75886, 'seventy-five thousand eight hundred eighty-six'), (19995, 5044, 'five thousand forty-four'), (19996, 15261, 'fifteen thousand two hundred sixty-one'), (19997, 9837, 'nine thousand eight hundred thirty-seven'), (19998, 93782, 'ninety-three thousand seven hundred eighty-two'), (19999, 1390, 'one thousand three hundred ninety'), (20000, 17798, 'seventeen thousand seven hundred ninety-eight'), (20001, 42503, 'forty-two thousand five hundred three'), (20002, 38557, 'thirty-eight thousand five hundred fifty-seven'), (20003, 34048, 'thirty-four thousand forty-eight'), (20004, 99840, 'ninety-nine thousand eight hundred forty'), (20005, 31007, 'thirty-one thousand seven'), (20006, 30240, 'thirty thousand two hundred forty'), (20007, 26524, 'twenty-six thousand five hundred twenty-four'), (20008, 31543, 'thirty-one thousand five hundred forty-three'), (20009, 64768, 'sixty-four thousand seven hundred sixty-eight'), (20010, 54272, 'fifty-four thousand two hundred seventy-two'), (20011, 88423, 'eighty-eight thousand four hundred twenty-three'), (20012, 58659, 'fifty-eight thousand six hundred fifty-nine'), (20013, 61602, 'sixty-one thousand six hundred two'), (20014, 17823, 'seventeen thousand eight hundred twenty-three'), (20015, 29058, 'twenty-nine thousand fifty-eight'), (20016, 24299, 'twenty-four thousand two hundred ninety-nine'), (20017, 10527, 'ten thousand five hundred twenty-seven'), (20018, 28501, 'twenty-eight thousand five hundred one'), (20019, 60591, 'sixty thousand five hundred ninety-one'), (20020, 13557, 'thirteen thousand five hundred fifty-seven'), (20021, 55375, 'fifty-five thousand three hundred seventy-five'), (20022, 76017, 'seventy-six thousand seventeen'), (20023, 89706, 'eighty-nine thousand seven hundred six'), (20024, 72938, 'seventy-two thousand nine hundred thirty-eight'), (20025, 84953, 'eighty-four thousand nine hundred fifty-three'), (20026, 37602, 'thirty-seven thousand six hundred two'), (20027, 32115, 'thirty-two thousand one hundred fifteen'), (20028, 44930, 'forty-four thousand nine hundred thirty'), (20029, 20967, 'twenty thousand nine hundred sixty-seven'), (20030, 13195, 'thirteen thousand one hundred ninety-five'), (20031, 92107, 'ninety-two thousand one hundred seven'), (20032, 11648, 'eleven thousand six hundred forty-eight'), (20033, 49707, 'forty-nine thousand seven hundred seven'), (20034, 70924, 'seventy thousand nine hundred twenty-four'), (20035, 77205, 'seventy-seven thousand two hundred five'), (20036, 62144, 'sixty-two thousand one hundred forty-four'), (20037, 2889, 'two thousand eight hundred eighty-nine'), (20038, 20793, 'twenty thousand seven hundred ninety-three'), (20039, 13352, 'thirteen thousand three hundred fifty-two'), (20040, 99327, 'ninety-nine thousand three hundred twenty-seven'), (20041, 76507, 'seventy-six thousand five hundred seven'), (20042, 40658, 'forty thousand six hundred fifty-eight'), (20043, 63959, 'sixty-three thousand nine hundred fifty-nine'), (20044, 3508, 'three thousand five hundred eight'), (20045, 30481, 'thirty thousand four hundred eighty-one'), (20046, 62331, 'sixty-two thousand three hundred thirty-one'), (20047, 56441, 'fifty-six thousand four hundred forty-one'), (20048, 70111, 'seventy thousand one hundred eleven'), (20049, 40543, 'forty thousand five hundred forty-three'), (20050, 81236, 'eighty-one thousand two hundred thirty-six'), (20051, 1887, 'one thousand eight hundred eighty-seven'), (20052, 78388, 'seventy-eight thousand three hundred eighty-eight'), (20053, 59594, 'fifty-nine thousand five hundred ninety-four'), (20054, 25612, 'twenty-five thousand six hundred twelve'), (20055, 97881, 'ninety-seven thousand eight hundred eighty-one'), (20056, 84065, 'eighty-four thousand sixty-five'), (20057, 20841, 'twenty thousand eight hundred forty-one'), (20058, 70864, 'seventy thousand eight hundred sixty-four'), (20059, 24, 'twenty-four'), (20060, 59460, 'fifty-nine thousand four hundred sixty'), (20061, 36940, 'thirty-six thousand nine hundred forty'), (20062, 31766, 'thirty-one thousand seven hundred sixty-six'), (20063, 99651, 'ninety-nine thousand six hundred fifty-one'), (20064, 32179, 'thirty-two thousand one hundred seventy-nine'), (20065, 8549, 'eight thousand five hundred forty-nine'), (20066, 47691, 'forty-seven thousand six hundred ninety-one'), (20067, 58807, 'fifty-eight thousand eight hundred seven'), (20068, 54156, 'fifty-four thousand one hundred fifty-six'), (20069, 91741, 'ninety-one thousand seven hundred forty-one'), (20070, 20641, 'twenty thousand six hundred forty-one'), (20071, 74369, 'seventy-four thousand three hundred sixty-nine'), (20072, 56627, 'fifty-six thousand six hundred twenty-seven'), (20073, 55334, 'fifty-five thousand three hundred thirty-four'), (20074, 39563, 'thirty-nine thousand five hundred sixty-three'), (20075, 51001, 'fifty-one thousand one'), (20076, 35125, 'thirty-five thousand one hundred twenty-five'), (20077, 4518, 'four thousand five hundred eighteen'), (20078, 492, 'four hundred ninety-two'), (20079, 84850, 'eighty-four thousand eight hundred fifty'), (20080, 9344, 'nine thousand three hundred forty-four'), (20081, 20218, 'twenty thousand two hundred eighteen'), (20082, 70399, 'seventy thousand three hundred ninety-nine'), (20083, 4405, 'four thousand four hundred five'), (20084, 36926, 'thirty-six thousand nine hundred twenty-six'), (20085, 24812, 'twenty-four thousand eight hundred twelve'), (20086, 61510, 'sixty-one thousand five hundred ten'), (20087, 13932, 'thirteen thousand nine hundred thirty-two'), (20088, 68178, 'sixty-eight thousand one hundred seventy-eight'), (20089, 65749, 'sixty-five thousand seven hundred forty-nine'), (20090, 76233, 'seventy-six thousand two hundred thirty-three'), (20091, 40858, 'forty thousand eight hundred fifty-eight'), (20092, 58206, 'fifty-eight thousand two hundred six'), (20093, 62129, 'sixty-two thousand one hundred twenty-nine'), (20094, 59911, 'fifty-nine thousand nine hundred eleven'), (20095, 88659, 'eighty-eight thousand six hundred fifty-nine'), (20096, 77263, 'seventy-seven thousand two hundred sixty-three'), (20097, 27296, 'twenty-seven thousand two hundred ninety-six'), (20098, 61605, 'sixty-one thousand six hundred five'), (20099, 1597, 'one thousand five hundred ninety-seven'), (20100, 54857, 'fifty-four thousand eight hundred fifty-seven'), (20101, 52421, 'fifty-two thousand four hundred twenty-one'), (20102, 60895, 'sixty thousand eight hundred ninety-five'), (20103, 92149, 'ninety-two thousand one hundred forty-nine'), (20104, 8905, 'eight thousand nine hundred five'), (20105, 53444, 'fifty-three thousand four hundred forty-four'), (20106, 43750, 'forty-three thousand seven hundred fifty'), (20107, 2619, 'two thousand six hundred nineteen'), (20108, 30994, 'thirty thousand nine hundred ninety-four'), (20109, 59684, 'fifty-nine thousand six hundred eighty-four'), (20110, 50801, 'fifty thousand eight hundred one'), (20111, 9781, 'nine thousand seven hundred eighty-one'), (20112, 56016, 'fifty-six thousand sixteen'), (20113, 68971, 'sixty-eight thousand nine hundred seventy-one'), (20114, 97782, 'ninety-seven thousand seven hundred eighty-two'), (20115, 49862, 'forty-nine thousand eight hundred sixty-two'), (20116, 72948, 'seventy-two thousand nine hundred forty-eight'), (20117, 75898, 'seventy-five thousand eight hundred ninety-eight'), (20118, 50373, 'fifty thousand three hundred seventy-three'), (20119, 57588, 'fifty-seven thousand five hundred eighty-eight'), (20120, 45271, 'forty-five thousand two hundred seventy-one'), (20121, 81570, 'eighty-one thousand five hundred seventy'), (20122, 22299, 'twenty-two thousand two hundred ninety-nine'), (20123, 23548, 'twenty-three thousand five hundred forty-eight'), (20124, 19814, 'nineteen thousand eight hundred fourteen'), (20125, 53403, 'fifty-three thousand four hundred three'), (20126, 52996, 'fifty-two thousand nine hundred ninety-six'), (20127, 85266, 'eighty-five thousand two hundred sixty-six'), (20128, 52259, 'fifty-two thousand two hundred fifty-nine'), (20129, 19140, 'nineteen thousand one hundred forty'), (20130, 18919, 'eighteen thousand nine hundred nineteen'), (20131, 53499, 'fifty-three thousand four hundred ninety-nine'), (20132, 5135, 'five thousand one hundred thirty-five'), (20133, 13267, 'thirteen thousand two hundred sixty-seven'), (20134, 9012, 'nine thousand twelve'), (20135, 46791, 'forty-six thousand seven hundred ninety-one'), (20136, 75896, 'seventy-five thousand eight hundred ninety-six'), (20137, 90172, 'ninety thousand one hundred seventy-two'), (20138, 28825, 'twenty-eight thousand eight hundred twenty-five'), (20139, 31334, 'thirty-one thousand three hundred thirty-four'), (20140, 69579, 'sixty-nine thousand five hundred seventy-nine'), (20141, 82442, 'eighty-two thousand four hundred forty-two'), (20142, 34421, 'thirty-four thousand four hundred twenty-one'), (20143, 74961, 'seventy-four thousand nine hundred sixty-one'), (20144, 85862, 'eighty-five thousand eight hundred sixty-two'), (20145, 90481, 'ninety thousand four hundred eighty-one'), (20146, 68394, 'sixty-eight thousand three hundred ninety-four'), (20147, 8445, 'eight thousand four hundred forty-five'), (20148, 38830, 'thirty-eight thousand eight hundred thirty'), (20149, 11034, 'eleven thousand thirty-four'), (20150, 31231, 'thirty-one thousand two hundred thirty-one'), (20151, 22335, 'twenty-two thousand three hundred thirty-five'), (20152, 59186, 'fifty-nine thousand one hundred eighty-six'), (20153, 17706, 'seventeen thousand seven hundred six'), (20154, 22502, 'twenty-two thousand five hundred two'), (20155, 61252, 'sixty-one thousand two hundred fifty-two'), (20156, 94795, 'ninety-four thousand seven hundred ninety-five'), (20157, 97363, 'ninety-seven thousand three hundred sixty-three'), (20158, 2586, 'two thousand five hundred eighty-six'), (20159, 85084, 'eighty-five thousand eighty-four'), (20160, 82312, 'eighty-two thousand three hundred twelve'), (20161, 64735, 'sixty-four thousand seven hundred thirty-five'), (20162, 17168, 'seventeen thousand one hundred sixty-eight'), (20163, 23309, 'twenty-three thousand three hundred nine'), (20164, 43513, 'forty-three thousand five hundred thirteen'), (20165, 23799, 'twenty-three thousand seven hundred ninety-nine'), (20166, 3217, 'three thousand two hundred seventeen'), (20167, 95340, 'ninety-five thousand three hundred forty'), (20168, 70602, 'seventy thousand six hundred two'), (20169, 20351, 'twenty thousand three hundred fifty-one'), (20170, 24845, 'twenty-four thousand eight hundred forty-five'), (20171, 35949, 'thirty-five thousand nine hundred forty-nine'), (20172, 50394, 'fifty thousand three hundred ninety-four'), (20173, 79107, 'seventy-nine thousand one hundred seven'), (20174, 35970, 'thirty-five thousand nine hundred seventy'), (20175, 70893, 'seventy thousand eight hundred ninety-three'), (20176, 98818, 'ninety-eight thousand eight hundred eighteen'), (20177, 21591, 'twenty-one thousand five hundred ninety-one'), (20178, 30420, 'thirty thousand four hundred twenty'), (20179, 53188, 'fifty-three thousand one hundred eighty-eight'), (20180, 5982, 'five thousand nine hundred eighty-two'), (20181, 90666, 'ninety thousand six hundred sixty-six'), (20182, 9432, 'nine thousand four hundred thirty-two'), (20183, 93587, 'ninety-three thousand five hundred eighty-seven'), (20184, 97535, 'ninety-seven thousand five hundred thirty-five'), (20185, 82558, 'eighty-two thousand five hundred fifty-eight'), (20186, 91057, 'ninety-one thousand fifty-seven'), (20187, 5136, 'five thousand one hundred thirty-six'), (20188, 58203, 'fifty-eight thousand two hundred three'), (20189, 27930, 'twenty-seven thousand nine hundred thirty'), (20190, 14079, 'fourteen thousand seventy-nine'), (20191, 28240, 'twenty-eight thousand two hundred forty'), (20192, 35740, 'thirty-five thousand seven hundred forty'), (20193, 5761, 'five thousand seven hundred sixty-one'), (20194, 95035, 'ninety-five thousand thirty-five'), (20195, 41961, 'forty-one thousand nine hundred sixty-one'), (20196, 80072, 'eighty thousand seventy-two'), (20197, 19463, 'nineteen thousand four hundred sixty-three'), (20198, 83077, 'eighty-three thousand seventy-seven'), (20199, 18275, 'eighteen thousand two hundred seventy-five'), (20200, 10747, 'ten thousand seven hundred forty-seven'), (20201, 44058, 'forty-four thousand fifty-eight'), (20202, 57614, 'fifty-seven thousand six hundred fourteen'), (20203, 71589, 'seventy-one thousand five hundred eighty-nine'), (20204, 54440, 'fifty-four thousand four hundred forty'), (20205, 13715, 'thirteen thousand seven hundred fifteen'), (20206, 6479, 'six thousand four hundred seventy-nine'), (20207, 71980, 'seventy-one thousand nine hundred eighty'), (20208, 12738, 'twelve thousand seven hundred thirty-eight'), (20209, 58303, 'fifty-eight thousand three hundred three'), (20210, 76557, 'seventy-six thousand five hundred fifty-seven'), (20211, 79044, 'seventy-nine thousand forty-four'), (20212, 80736, 'eighty thousand seven hundred thirty-six'), (20213, 45741, 'forty-five thousand seven hundred forty-one'), (20214, 92739, 'ninety-two thousand seven hundred thirty-nine'), (20215, 45169, 'forty-five thousand one hundred sixty-nine'), (20216, 41351, 'forty-one thousand three hundred fifty-one'), (20217, 90996, 'ninety thousand nine hundred ninety-six'), (20218, 21494, 'twenty-one thousand four hundred ninety-four'), (20219, 88697, 'eighty-eight thousand six hundred ninety-seven'), (20220, 43073, 'forty-three thousand seventy-three'), (20221, 69997, 'sixty-nine thousand nine hundred ninety-seven'), (20222, 20907, 'twenty thousand nine hundred seven'), (20223, 73037, 'seventy-three thousand thirty-seven'), (20224, 45704, 'forty-five thousand seven hundred four'), (20225, 59100, 'fifty-nine thousand one hundred'), (20226, 36816, 'thirty-six thousand eight hundred sixteen'), (20227, 50966, 'fifty thousand nine hundred sixty-six'), (20228, 98003, 'ninety-eight thousand three'), (20229, 84626, 'eighty-four thousand six hundred twenty-six'), (20230, 26257, 'twenty-six thousand two hundred fifty-seven'), (20231, 60629, 'sixty thousand six hundred twenty-nine'), (20232, 49680, 'forty-nine thousand six hundred eighty'), (20233, 70114, 'seventy thousand one hundred fourteen'), (20234, 58637, 'fifty-eight thousand six hundred thirty-seven'), (20235, 62562, 'sixty-two thousand five hundred sixty-two'), (20236, 54682, 'fifty-four thousand six hundred eighty-two'), (20237, 54353, 'fifty-four thousand three hundred fifty-three'), (20238, 92896, 'ninety-two thousand eight hundred ninety-six'), (20239, 94425, 'ninety-four thousand four hundred twenty-five'), (20240, 80353, 'eighty thousand three hundred fifty-three'), (20241, 65809, 'sixty-five thousand eight hundred nine'), (20242, 49786, 'forty-nine thousand seven hundred eighty-six'), (20243, 65147, 'sixty-five thousand one hundred forty-seven'), (20244, 31331, 'thirty-one thousand three hundred thirty-one'), (20245, 49542, 'forty-nine thousand five hundred forty-two'), (20246, 6856, 'six thousand eight hundred fifty-six'), (20247, 76064, 'seventy-six thousand sixty-four'), (20248, 60702, 'sixty thousand seven hundred two'), (20249, 21229, 'twenty-one thousand two hundred twenty-nine'), (20250, 2003, 'two thousand three'), (20251, 17884, 'seventeen thousand eight hundred eighty-four'), (20252, 10085, 'ten thousand eighty-five'), (20253, 36315, 'thirty-six thousand three hundred fifteen'), (20254, 64835, 'sixty-four thousand eight hundred thirty-five'), (20255, 58745, 'fifty-eight thousand seven hundred forty-five'), (20256, 13245, 'thirteen thousand two hundred forty-five'), (20257, 2753, 'two thousand seven hundred fifty-three'), (20258, 16625, 'sixteen thousand six hundred twenty-five'), (20259, 86585, 'eighty-six thousand five hundred eighty-five'), (20260, 8156, 'eight thousand one hundred fifty-six'), (20261, 73769, 'seventy-three thousand seven hundred sixty-nine'), (20262, 2438, 'two thousand four hundred thirty-eight'), (20263, 81168, 'eighty-one thousand one hundred sixty-eight'), (20264, 53391, 'fifty-three thousand three hundred ninety-one'), (20265, 89153, 'eighty-nine thousand one hundred fifty-three'), (20266, 10212, 'ten thousand two hundred twelve'), (20267, 2484, 'two thousand four hundred eighty-four'), (20268, 70558, 'seventy thousand five hundred fifty-eight'), (20269, 51682, 'fifty-one thousand six hundred eighty-two'), (20270, 29301, 'twenty-nine thousand three hundred one'), (20271, 90159, 'ninety thousand one hundred fifty-nine'), (20272, 5497, 'five thousand four hundred ninety-seven'), (20273, 24146, 'twenty-four thousand one hundred forty-six'), (20274, 64063, 'sixty-four thousand sixty-three'), (20275, 13840, 'thirteen thousand eight hundred forty'), (20276, 79603, 'seventy-nine thousand six hundred three'), (20277, 14101, 'fourteen thousand one hundred one'), (20278, 70381, 'seventy thousand three hundred eighty-one'), (20279, 63229, 'sixty-three thousand two hundred twenty-nine'), (20280, 40294, 'forty thousand two hundred ninety-four'), (20281, 13414, 'thirteen thousand four hundred fourteen'), (20282, 8670, 'eight thousand six hundred seventy'), (20283, 51517, 'fifty-one thousand five hundred seventeen'), (20284, 29134, 'twenty-nine thousand one hundred thirty-four'), (20285, 10901, 'ten thousand nine hundred one'), (20286, 6581, 'six thousand five hundred eighty-one'), (20287, 87225, 'eighty-seven thousand two hundred twenty-five'), (20288, 75868, 'seventy-five thousand eight hundred sixty-eight'), (20289, 72804, 'seventy-two thousand eight hundred four'), (20290, 23544, 'twenty-three thousand five hundred forty-four'), (20291, 14553, 'fourteen thousand five hundred fifty-three'), (20292, 48227, 'forty-eight thousand two hundred twenty-seven'), (20293, 17071, 'seventeen thousand seventy-one'), (20294, 1319, 'one thousand three hundred nineteen'), (20295, 91479, 'ninety-one thousand four hundred seventy-nine'), (20296, 87657, 'eighty-seven thousand six hundred fifty-seven'), (20297, 41603, 'forty-one thousand six hundred three'), (20298, 174, 'one hundred seventy-four'), (20299, 48224, 'forty-eight thousand two hundred twenty-four'), (20300, 54888, 'fifty-four thousand eight hundred eighty-eight'), (20301, 54929, 'fifty-four thousand nine hundred twenty-nine'), (20302, 96010, 'ninety-six thousand ten'), (20303, 2593, 'two thousand five hundred ninety-three'), (20304, 16481, 'sixteen thousand four hundred eighty-one'), (20305, 56432, 'fifty-six thousand four hundred thirty-two'), (20306, 82761, 'eighty-two thousand seven hundred sixty-one'), (20307, 25441, 'twenty-five thousand four hundred forty-one'), (20308, 81835, 'eighty-one thousand eight hundred thirty-five'), (20309, 30207, 'thirty thousand two hundred seven'), (20310, 55306, 'fifty-five thousand three hundred six'), (20311, 13397, 'thirteen thousand three hundred ninety-seven'), (20312, 55484, 'fifty-five thousand four hundred eighty-four'), (20313, 23271, 'twenty-three thousand two hundred seventy-one'), (20314, 81517, 'eighty-one thousand five hundred seventeen'), (20315, 65882, 'sixty-five thousand eight hundred eighty-two'), (20316, 43002, 'forty-three thousand two'), (20317, 55469, 'fifty-five thousand four hundred sixty-nine'), (20318, 48602, 'forty-eight thousand six hundred two'), (20319, 34597, 'thirty-four thousand five hundred ninety-seven'), (20320, 70213, 'seventy thousand two hundred thirteen'), (20321, 11998, 'eleven thousand nine hundred ninety-eight'), (20322, 34809, 'thirty-four thousand eight hundred nine'), (20323, 73173, 'seventy-three thousand one hundred seventy-three'), (20324, 15528, 'fifteen thousand five hundred twenty-eight'), (20325, 43515, 'forty-three thousand five hundred fifteen'), (20326, 3817, 'three thousand eight hundred seventeen'), (20327, 39286, 'thirty-nine thousand two hundred eighty-six'), (20328, 37847, 'thirty-seven thousand eight hundred forty-seven'), (20329, 1772, 'one thousand seven hundred seventy-two'), (20330, 90816, 'ninety thousand eight hundred sixteen'), (20331, 12593, 'twelve thousand five hundred ninety-three'), (20332, 6190, 'six thousand one hundred ninety'), (20333, 50553, 'fifty thousand five hundred fifty-three'), (20334, 30029, 'thirty thousand twenty-nine'), (20335, 65562, 'sixty-five thousand five hundred sixty-two'), (20336, 53107, 'fifty-three thousand one hundred seven'), (20337, 14726, 'fourteen thousand seven hundred twenty-six'), (20338, 48302, 'forty-eight thousand three hundred two'), (20339, 52743, 'fifty-two thousand seven hundred forty-three'), (20340, 53337, 'fifty-three thousand three hundred thirty-seven'), (20341, 1414, 'one thousand four hundred fourteen'), (20342, 77952, 'seventy-seven thousand nine hundred fifty-two'), (20343, 65802, 'sixty-five thousand eight hundred two'), (20344, 69572, 'sixty-nine thousand five hundred seventy-two'), (20345, 57233, 'fifty-seven thousand two hundred thirty-three'), (20346, 6468, 'six thousand four hundred sixty-eight'), (20347, 46107, 'forty-six thousand one hundred seven'), (20348, 11913, 'eleven thousand nine hundred thirteen'), (20349, 5465, 'five thousand four hundred sixty-five'), (20350, 8829, 'eight thousand eight hundred twenty-nine'), (20351, 79857, 'seventy-nine thousand eight hundred fifty-seven'), (20352, 44479, 'forty-four thousand four hundred seventy-nine'), (20353, 51139, 'fifty-one thousand one hundred thirty-nine'), (20354, 12021, 'twelve thousand twenty-one'), (20355, 63039, 'sixty-three thousand thirty-nine'), (20356, 25638, 'twenty-five thousand six hundred thirty-eight'), (20357, 44006, 'forty-four thousand six'), (20358, 36836, 'thirty-six thousand eight hundred thirty-six'), (20359, 48347, 'forty-eight thousand three hundred forty-seven'), (20360, 96654, 'ninety-six thousand six hundred fifty-four'), (20361, 26944, 'twenty-six thousand nine hundred forty-four'), (20362, 32915, 'thirty-two thousand nine hundred fifteen'), (20363, 35790, 'thirty-five thousand seven hundred ninety'), (20364, 53996, 'fifty-three thousand nine hundred ninety-six'), (20365, 42199, 'forty-two thousand one hundred ninety-nine'), (20366, 41593, 'forty-one thousand five hundred ninety-three'), (20367, 56532, 'fifty-six thousand five hundred thirty-two'), (20368, 43214, 'forty-three thousand two hundred fourteen'), (20369, 37436, 'thirty-seven thousand four hundred thirty-six'), (20370, 19747, 'nineteen thousand seven hundred forty-seven'), (20371, 47188, 'forty-seven thousand one hundred eighty-eight'), (20372, 73553, 'seventy-three thousand five hundred fifty-three'), (20373, 18596, 'eighteen thousand five hundred ninety-six'), (20374, 67614, 'sixty-seven thousand six hundred fourteen'), (20375, 85304, 'eighty-five thousand three hundred four'), (20376, 63543, 'sixty-three thousand five hundred forty-three'), (20377, 87483, 'eighty-seven thousand four hundred eighty-three'), (20378, 48989, 'forty-eight thousand nine hundred eighty-nine'), (20379, 24757, 'twenty-four thousand seven hundred fifty-seven'), (20380, 19155, 'nineteen thousand one hundred fifty-five'), (20381, 67853, 'sixty-seven thousand eight hundred fifty-three'), (20382, 26459, 'twenty-six thousand four hundred fifty-nine'), (20383, 65209, 'sixty-five thousand two hundred nine'), (20384, 53187, 'fifty-three thousand one hundred eighty-seven'), (20385, 44750, 'forty-four thousand seven hundred fifty'), (20386, 30488, 'thirty thousand four hundred eighty-eight'), (20387, 4768, 'four thousand seven hundred sixty-eight'), (20388, 52651, 'fifty-two thousand six hundred fifty-one'), (20389, 84459, 'eighty-four thousand four hundred fifty-nine'), (20390, 65066, 'sixty-five thousand sixty-six'), (20391, 37166, 'thirty-seven thousand one hundred sixty-six'), (20392, 79846, 'seventy-nine thousand eight hundred forty-six'), (20393, 32541, 'thirty-two thousand five hundred forty-one'), (20394, 54373, 'fifty-four thousand three hundred seventy-three'), (20395, 13305, 'thirteen thousand three hundred five'), (20396, 63929, 'sixty-three thousand nine hundred twenty-nine'), (20397, 95045, 'ninety-five thousand forty-five'), (20398, 67461, 'sixty-seven thousand four hundred sixty-one'), (20399, 73774, 'seventy-three thousand seven hundred seventy-four'), (20400, 57650, 'fifty-seven thousand six hundred fifty'), (20401, 70015, 'seventy thousand fifteen'), (20402, 67994, 'sixty-seven thousand nine hundred ninety-four'), (20403, 31402, 'thirty-one thousand four hundred two'), (20404, 27349, 'twenty-seven thousand three hundred forty-nine'), (20405, 55286, 'fifty-five thousand two hundred eighty-six'), (20406, 28182, 'twenty-eight thousand one hundred eighty-two'), (20407, 3493, 'three thousand four hundred ninety-three'), (20408, 48055, 'forty-eight thousand fifty-five'), (20409, 21244, 'twenty-one thousand two hundred forty-four'), (20410, 38154, 'thirty-eight thousand one hundred fifty-four'), (20411, 80265, 'eighty thousand two hundred sixty-five'), (20412, 71723, 'seventy-one thousand seven hundred twenty-three'), (20413, 61343, 'sixty-one thousand three hundred forty-three'), (20414, 74919, 'seventy-four thousand nine hundred nineteen'), (20415, 46577, 'forty-six thousand five hundred seventy-seven'), (20416, 2346, 'two thousand three hundred forty-six'), (20417, 85906, 'eighty-five thousand nine hundred six'), (20418, 740, 'seven hundred forty'), (20419, 4222, 'four thousand two hundred twenty-two'), (20420, 64629, 'sixty-four thousand six hundred twenty-nine'), (20421, 19167, 'nineteen thousand one hundred sixty-seven'), (20422, 5588, 'five thousand five hundred eighty-eight'), (20423, 34908, 'thirty-four thousand nine hundred eight'), (20424, 81549, 'eighty-one thousand five hundred forty-nine'), (20425, 16148, 'sixteen thousand one hundred forty-eight'), (20426, 73594, 'seventy-three thousand five hundred ninety-four'), (20427, 17111, 'seventeen thousand one hundred eleven'), (20428, 64030, 'sixty-four thousand thirty'), (20429, 37696, 'thirty-seven thousand six hundred ninety-six'), (20430, 32476, 'thirty-two thousand four hundred seventy-six'), (20431, 55253, 'fifty-five thousand two hundred fifty-three'), (20432, 65532, 'sixty-five thousand five hundred thirty-two'), (20433, 35628, 'thirty-five thousand six hundred twenty-eight'), (20434, 27576, 'twenty-seven thousand five hundred seventy-six'), (20435, 71745, 'seventy-one thousand seven hundred forty-five'), (20436, 69337, 'sixty-nine thousand three hundred thirty-seven'), (20437, 82296, 'eighty-two thousand two hundred ninety-six'), (20438, 99081, 'ninety-nine thousand eighty-one'), (20439, 37373, 'thirty-seven thousand three hundred seventy-three'), (20440, 84280, 'eighty-four thousand two hundred eighty'), (20441, 66241, 'sixty-six thousand two hundred forty-one'), (20442, 38969, 'thirty-eight thousand nine hundred sixty-nine'), (20443, 93769, 'ninety-three thousand seven hundred sixty-nine'), (20444, 35005, 'thirty-five thousand five'), (20445, 71445, 'seventy-one thousand four hundred forty-five'), (20446, 23630, 'twenty-three thousand six hundred thirty'), (20447, 93688, 'ninety-three thousand six hundred eighty-eight'), (20448, 86919, 'eighty-six thousand nine hundred nineteen'), (20449, 54085, 'fifty-four thousand eighty-five'), (20450, 71980, 'seventy-one thousand nine hundred eighty'), (20451, 6168, 'six thousand one hundred sixty-eight'), (20452, 99993, 'ninety-nine thousand nine hundred ninety-three'), (20453, 59193, 'fifty-nine thousand one hundred ninety-three'), (20454, 47886, 'forty-seven thousand eight hundred eighty-six'), (20455, 48562, 'forty-eight thousand five hundred sixty-two'), (20456, 17577, 'seventeen thousand five hundred seventy-seven'), (20457, 79387, 'seventy-nine thousand three hundred eighty-seven'), (20458, 51301, 'fifty-one thousand three hundred one'), (20459, 36297, 'thirty-six thousand two hundred ninety-seven'), (20460, 12403, 'twelve thousand four hundred three'), (20461, 14094, 'fourteen thousand ninety-four'), (20462, 48613, 'forty-eight thousand six hundred thirteen'), (20463, 22479, 'twenty-two thousand four hundred seventy-nine'), (20464, 43908, 'forty-three thousand nine hundred eight'), (20465, 20918, 'twenty thousand nine hundred eighteen'), (20466, 33085, 'thirty-three thousand eighty-five'), (20467, 40252, 'forty thousand two hundred fifty-two'), (20468, 75693, 'seventy-five thousand six hundred ninety-three'), (20469, 36604, 'thirty-six thousand six hundred four'), (20470, 93522, 'ninety-three thousand five hundred twenty-two'), (20471, 29917, 'twenty-nine thousand nine hundred seventeen'), (20472, 41927, 'forty-one thousand nine hundred twenty-seven'), (20473, 66167, 'sixty-six thousand one hundred sixty-seven'), (20474, 96824, 'ninety-six thousand eight hundred twenty-four'), (20475, 45615, 'forty-five thousand six hundred fifteen'), (20476, 79201, 'seventy-nine thousand two hundred one'), (20477, 24506, 'twenty-four thousand five hundred six'), (20478, 18572, 'eighteen thousand five hundred seventy-two'), (20479, 59586, 'fifty-nine thousand five hundred eighty-six'), (20480, 60391, 'sixty thousand three hundred ninety-one'), (20481, 61283, 'sixty-one thousand two hundred eighty-three'), (20482, 36969, 'thirty-six thousand nine hundred sixty-nine'), (20483, 91934, 'ninety-one thousand nine hundred thirty-four'), (20484, 9812, 'nine thousand eight hundred twelve'), (20485, 90435, 'ninety thousand four hundred thirty-five'), (20486, 62554, 'sixty-two thousand five hundred fifty-four'), (20487, 49650, 'forty-nine thousand six hundred fifty'), (20488, 24294, 'twenty-four thousand two hundred ninety-four'), (20489, 8400, 'eight thousand four hundred'), (20490, 20463, 'twenty thousand four hundred sixty-three'), (20491, 46201, 'forty-six thousand two hundred one'), (20492, 5944, 'five thousand nine hundred forty-four'), (20493, 92271, 'ninety-two thousand two hundred seventy-one'), (20494, 63635, 'sixty-three thousand six hundred thirty-five'), (20495, 32087, 'thirty-two thousand eighty-seven'), (20496, 47807, 'forty-seven thousand eight hundred seven'), (20497, 94715, 'ninety-four thousand seven hundred fifteen'), (20498, 94015, 'ninety-four thousand fifteen'), (20499, 54414, 'fifty-four thousand four hundred fourteen'), (20500, 1588, 'one thousand five hundred eighty-eight'), (20501, 63834, 'sixty-three thousand eight hundred thirty-four'), (20502, 22239, 'twenty-two thousand two hundred thirty-nine'), (20503, 97228, 'ninety-seven thousand two hundred twenty-eight'), (20504, 10328, 'ten thousand three hundred twenty-eight'), (20505, 76898, 'seventy-six thousand eight hundred ninety-eight'), (20506, 23497, 'twenty-three thousand four hundred ninety-seven'), (20507, 14411, 'fourteen thousand four hundred eleven'), (20508, 91734, 'ninety-one thousand seven hundred thirty-four'), (20509, 20831, 'twenty thousand eight hundred thirty-one'), (20510, 14442, 'fourteen thousand four hundred forty-two'), (20511, 96949, 'ninety-six thousand nine hundred forty-nine'), (20512, 3557, 'three thousand five hundred fifty-seven'), (20513, 24705, 'twenty-four thousand seven hundred five'), (20514, 5967, 'five thousand nine hundred sixty-seven'), (20515, 58437, 'fifty-eight thousand four hundred thirty-seven'), (20516, 67809, 'sixty-seven thousand eight hundred nine'), (20517, 62234, 'sixty-two thousand two hundred thirty-four'), (20518, 13333, 'thirteen thousand three hundred thirty-three'), (20519, 8676, 'eight thousand six hundred seventy-six'), (20520, 14835, 'fourteen thousand eight hundred thirty-five'), (20521, 99775, 'ninety-nine thousand seven hundred seventy-five'), (20522, 74954, 'seventy-four thousand nine hundred fifty-four'), (20523, 40919, 'forty thousand nine hundred nineteen'), (20524, 19816, 'nineteen thousand eight hundred sixteen'), (20525, 57962, 'fifty-seven thousand nine hundred sixty-two'), (20526, 16068, 'sixteen thousand sixty-eight'), (20527, 72056, 'seventy-two thousand fifty-six'), (20528, 23015, 'twenty-three thousand fifteen'), (20529, 380, 'three hundred eighty'), (20530, 99922, 'ninety-nine thousand nine hundred twenty-two'), (20531, 36592, 'thirty-six thousand five hundred ninety-two'), (20532, 96929, 'ninety-six thousand nine hundred twenty-nine'), (20533, 68176, 'sixty-eight thousand one hundred seventy-six'), (20534, 27542, 'twenty-seven thousand five hundred forty-two'), (20535, 18933, 'eighteen thousand nine hundred thirty-three'), (20536, 10965, 'ten thousand nine hundred sixty-five'), (20537, 36763, 'thirty-six thousand seven hundred sixty-three'), (20538, 47900, 'forty-seven thousand nine hundred'), (20539, 95142, 'ninety-five thousand one hundred forty-two'), (20540, 34310, 'thirty-four thousand three hundred ten'), (20541, 17033, 'seventeen thousand thirty-three'), (20542, 17959, 'seventeen thousand nine hundred fifty-nine'), (20543, 63214, 'sixty-three thousand two hundred fourteen'), (20544, 54462, 'fifty-four thousand four hundred sixty-two'), (20545, 36364, 'thirty-six thousand three hundred sixty-four'), (20546, 83234, 'eighty-three thousand two hundred thirty-four'), (20547, 51418, 'fifty-one thousand four hundred eighteen'), (20548, 69847, 'sixty-nine thousand eight hundred forty-seven'), (20549, 99572, 'ninety-nine thousand five hundred seventy-two'), (20550, 55268, 'fifty-five thousand two hundred sixty-eight'), (20551, 68857, 'sixty-eight thousand eight hundred fifty-seven'), (20552, 44393, 'forty-four thousand three hundred ninety-three'), (20553, 98973, 'ninety-eight thousand nine hundred seventy-three'), (20554, 76854, 'seventy-six thousand eight hundred fifty-four'), (20555, 89530, 'eighty-nine thousand five hundred thirty'), (20556, 32166, 'thirty-two thousand one hundred sixty-six'), (20557, 63760, 'sixty-three thousand seven hundred sixty'), (20558, 72352, 'seventy-two thousand three hundred fifty-two'), (20559, 94578, 'ninety-four thousand five hundred seventy-eight'), (20560, 73423, 'seventy-three thousand four hundred twenty-three'), (20561, 20202, 'twenty thousand two hundred two'), (20562, 73422, 'seventy-three thousand four hundred twenty-two'), (20563, 2379, 'two thousand three hundred seventy-nine'), (20564, 79916, 'seventy-nine thousand nine hundred sixteen'), (20565, 85728, 'eighty-five thousand seven hundred twenty-eight'), (20566, 48934, 'forty-eight thousand nine hundred thirty-four'), (20567, 38606, 'thirty-eight thousand six hundred six'), (20568, 15497, 'fifteen thousand four hundred ninety-seven'), (20569, 54742, 'fifty-four thousand seven hundred forty-two'), (20570, 30257, 'thirty thousand two hundred fifty-seven'), (20571, 64408, 'sixty-four thousand four hundred eight'), (20572, 47405, 'forty-seven thousand four hundred five'), (20573, 77402, 'seventy-seven thousand four hundred two'), (20574, 99103, 'ninety-nine thousand one hundred three'), (20575, 79651, 'seventy-nine thousand six hundred fifty-one'), (20576, 99402, 'ninety-nine thousand four hundred two'), (20577, 89598, 'eighty-nine thousand five hundred ninety-eight'), (20578, 90249, 'ninety thousand two hundred forty-nine'), (20579, 93415, 'ninety-three thousand four hundred fifteen'), (20580, 42630, 'forty-two thousand six hundred thirty'), (20581, 32661, 'thirty-two thousand six hundred sixty-one'), (20582, 37103, 'thirty-seven thousand one hundred three'), (20583, 16978, 'sixteen thousand nine hundred seventy-eight'), (20584, 38616, 'thirty-eight thousand six hundred sixteen'), (20585, 22704, 'twenty-two thousand seven hundred four'), (20586, 61541, 'sixty-one thousand five hundred forty-one'), (20587, 21899, 'twenty-one thousand eight hundred ninety-nine'), (20588, 43049, 'forty-three thousand forty-nine'), (20589, 13190, 'thirteen thousand one hundred ninety'), (20590, 66828, 'sixty-six thousand eight hundred twenty-eight'), (20591, 49570, 'forty-nine thousand five hundred seventy'), (20592, 90522, 'ninety thousand five hundred twenty-two'), (20593, 17497, 'seventeen thousand four hundred ninety-seven'), (20594, 35635, 'thirty-five thousand six hundred thirty-five'), (20595, 12377, 'twelve thousand three hundred seventy-seven'), (20596, 86218, 'eighty-six thousand two hundred eighteen'), (20597, 90538, 'ninety thousand five hundred thirty-eight'), (20598, 62472, 'sixty-two thousand four hundred seventy-two'), (20599, 98352, 'ninety-eight thousand three hundred fifty-two'), (20600, 55944, 'fifty-five thousand nine hundred forty-four'), (20601, 11704, 'eleven thousand seven hundred four'), (20602, 89408, 'eighty-nine thousand four hundred eight'), (20603, 96286, 'ninety-six thousand two hundred eighty-six'), (20604, 87256, 'eighty-seven thousand two hundred fifty-six'), (20605, 48108, 'forty-eight thousand one hundred eight'), (20606, 67272, 'sixty-seven thousand two hundred seventy-two'), (20607, 36700, 'thirty-six thousand seven hundred'), (20608, 62652, 'sixty-two thousand six hundred fifty-two'), (20609, 47604, 'forty-seven thousand six hundred four'), (20610, 19087, 'nineteen thousand eighty-seven'), (20611, 6356, 'six thousand three hundred fifty-six'), (20612, 54976, 'fifty-four thousand nine hundred seventy-six'), (20613, 44614, 'forty-four thousand six hundred fourteen'), (20614, 22210, 'twenty-two thousand two hundred ten'), (20615, 12100, 'twelve thousand one hundred'), (20616, 51703, 'fifty-one thousand seven hundred three'), (20617, 74125, 'seventy-four thousand one hundred twenty-five'), (20618, 90307, 'ninety thousand three hundred seven'), (20619, 75986, 'seventy-five thousand nine hundred eighty-six'), (20620, 91921, 'ninety-one thousand nine hundred twenty-one'), (20621, 93963, 'ninety-three thousand nine hundred sixty-three'), (20622, 30547, 'thirty thousand five hundred forty-seven'), (20623, 53953, 'fifty-three thousand nine hundred fifty-three'), (20624, 10012, 'ten thousand twelve'), (20625, 1702, 'one thousand seven hundred two'), (20626, 96494, 'ninety-six thousand four hundred ninety-four'), (20627, 23928, 'twenty-three thousand nine hundred twenty-eight'), (20628, 35320, 'thirty-five thousand three hundred twenty'), (20629, 57935, 'fifty-seven thousand nine hundred thirty-five'), (20630, 5584, 'five thousand five hundred eighty-four'), (20631, 58202, 'fifty-eight thousand two hundred two'), (20632, 94107, 'ninety-four thousand one hundred seven'), (20633, 85456, 'eighty-five thousand four hundred fifty-six'), (20634, 24056, 'twenty-four thousand fifty-six'), (20635, 5636, 'five thousand six hundred thirty-six'), (20636, 73041, 'seventy-three thousand forty-one'), (20637, 69817, 'sixty-nine thousand eight hundred seventeen'), (20638, 21038, 'twenty-one thousand thirty-eight'), (20639, 30275, 'thirty thousand two hundred seventy-five'), (20640, 27675, 'twenty-seven thousand six hundred seventy-five'), (20641, 94480, 'ninety-four thousand four hundred eighty'), (20642, 15516, 'fifteen thousand five hundred sixteen'), (20643, 11572, 'eleven thousand five hundred seventy-two'), (20644, 45252, 'forty-five thousand two hundred fifty-two'), (20645, 43435, 'forty-three thousand four hundred thirty-five'), (20646, 78990, 'seventy-eight thousand nine hundred ninety'), (20647, 20933, 'twenty thousand nine hundred thirty-three'), (20648, 93998, 'ninety-three thousand nine hundred ninety-eight'), (20649, 33684, 'thirty-three thousand six hundred eighty-four'), (20650, 84349, 'eighty-four thousand three hundred forty-nine'), (20651, 97732, 'ninety-seven thousand seven hundred thirty-two'), (20652, 69606, 'sixty-nine thousand six hundred six'), (20653, 1497, 'one thousand four hundred ninety-seven'), (20654, 75230, 'seventy-five thousand two hundred thirty'), (20655, 6955, 'six thousand nine hundred fifty-five'), (20656, 76200, 'seventy-six thousand two hundred'), (20657, 98056, 'ninety-eight thousand fifty-six'), (20658, 29783, 'twenty-nine thousand seven hundred eighty-three'), (20659, 85478, 'eighty-five thousand four hundred seventy-eight'), (20660, 87819, 'eighty-seven thousand eight hundred nineteen'), (20661, 32190, 'thirty-two thousand one hundred ninety'), (20662, 72822, 'seventy-two thousand eight hundred twenty-two'), (20663, 80514, 'eighty thousand five hundred fourteen'), (20664, 90920, 'ninety thousand nine hundred twenty'), (20665, 47466, 'forty-seven thousand four hundred sixty-six'), (20666, 88710, 'eighty-eight thousand seven hundred ten'), (20667, 56286, 'fifty-six thousand two hundred eighty-six'), (20668, 32668, 'thirty-two thousand six hundred sixty-eight'), (20669, 91516, 'ninety-one thousand five hundred sixteen'), (20670, 14851, 'fourteen thousand eight hundred fifty-one'), (20671, 69855, 'sixty-nine thousand eight hundred fifty-five'), (20672, 9617, 'nine thousand six hundred seventeen'), (20673, 24029, 'twenty-four thousand twenty-nine'), (20674, 53782, 'fifty-three thousand seven hundred eighty-two'), (20675, 14005, 'fourteen thousand five'), (20676, 8690, 'eight thousand six hundred ninety'), (20677, 61739, 'sixty-one thousand seven hundred thirty-nine'), (20678, 39679, 'thirty-nine thousand six hundred seventy-nine'), (20679, 69941, 'sixty-nine thousand nine hundred forty-one'), (20680, 29547, 'twenty-nine thousand five hundred forty-seven'), (20681, 96030, 'ninety-six thousand thirty'), (20682, 3431, 'three thousand four hundred thirty-one'), (20683, 99589, 'ninety-nine thousand five hundred eighty-nine'), (20684, 79761, 'seventy-nine thousand seven hundred sixty-one'), (20685, 95908, 'ninety-five thousand nine hundred eight'), (20686, 84673, 'eighty-four thousand six hundred seventy-three'), (20687, 49314, 'forty-nine thousand three hundred fourteen'), (20688, 8988, 'eight thousand nine hundred eighty-eight'), (20689, 63741, 'sixty-three thousand seven hundred forty-one'), (20690, 3640, 'three thousand six hundred forty'), (20691, 86596, 'eighty-six thousand five hundred ninety-six'), (20692, 4697, 'four thousand six hundred ninety-seven'), (20693, 30021, 'thirty thousand twenty-one'), (20694, 45842, 'forty-five thousand eight hundred forty-two'), (20695, 95024, 'ninety-five thousand twenty-four'), (20696, 59861, 'fifty-nine thousand eight hundred sixty-one'), (20697, 39266, 'thirty-nine thousand two hundred sixty-six'), (20698, 4396, 'four thousand three hundred ninety-six'), (20699, 55728, 'fifty-five thousand seven hundred twenty-eight'), (20700, 71628, 'seventy-one thousand six hundred twenty-eight'), (20701, 90861, 'ninety thousand eight hundred sixty-one'), (20702, 67710, 'sixty-seven thousand seven hundred ten'), (20703, 36270, 'thirty-six thousand two hundred seventy'), (20704, 70632, 'seventy thousand six hundred thirty-two'), (20705, 70912, 'seventy thousand nine hundred twelve'), (20706, 6578, 'six thousand five hundred seventy-eight'), (20707, 25011, 'twenty-five thousand eleven'), (20708, 1724, 'one thousand seven hundred twenty-four'), (20709, 40909, 'forty thousand nine hundred nine'), (20710, 28152, 'twenty-eight thousand one hundred fifty-two'), (20711, 80649, 'eighty thousand six hundred forty-nine'), (20712, 64096, 'sixty-four thousand ninety-six'), (20713, 91258, 'ninety-one thousand two hundred fifty-eight'), (20714, 6001, 'six thousand one'), (20715, 28212, 'twenty-eight thousand two hundred twelve'), (20716, 38634, 'thirty-eight thousand six hundred thirty-four'), (20717, 44682, 'forty-four thousand six hundred eighty-two'), (20718, 13774, 'thirteen thousand seven hundred seventy-four'), (20719, 72830, 'seventy-two thousand eight hundred thirty'), (20720, 16510, 'sixteen thousand five hundred ten'), (20721, 81935, 'eighty-one thousand nine hundred thirty-five'), (20722, 2153, 'two thousand one hundred fifty-three'), (20723, 54733, 'fifty-four thousand seven hundred thirty-three'), (20724, 80109, 'eighty thousand one hundred nine'), (20725, 32962, 'thirty-two thousand nine hundred sixty-two'), (20726, 65516, 'sixty-five thousand five hundred sixteen'), (20727, 32228, 'thirty-two thousand two hundred twenty-eight'), (20728, 36502, 'thirty-six thousand five hundred two'), (20729, 89620, 'eighty-nine thousand six hundred twenty'), (20730, 48893, 'forty-eight thousand eight hundred ninety-three'), (20731, 42827, 'forty-two thousand eight hundred twenty-seven'), (20732, 29125, 'twenty-nine thousand one hundred twenty-five'), (20733, 27007, 'twenty-seven thousand seven'), (20734, 9560, 'nine thousand five hundred sixty'), (20735, 41094, 'forty-one thousand ninety-four'), (20736, 57818, 'fifty-seven thousand eight hundred eighteen'), (20737, 71140, 'seventy-one thousand one hundred forty'), (20738, 27027, 'twenty-seven thousand twenty-seven'), (20739, 8063, 'eight thousand sixty-three'), (20740, 93266, 'ninety-three thousand two hundred sixty-six'), (20741, 72355, 'seventy-two thousand three hundred fifty-five'), (20742, 13654, 'thirteen thousand six hundred fifty-four'), (20743, 45002, 'forty-five thousand two'), (20744, 24665, 'twenty-four thousand six hundred sixty-five'), (20745, 88343, 'eighty-eight thousand three hundred forty-three'), (20746, 33168, 'thirty-three thousand one hundred sixty-eight'), (20747, 80145, 'eighty thousand one hundred forty-five'), (20748, 13097, 'thirteen thousand ninety-seven'), (20749, 14021, 'fourteen thousand twenty-one'), (20750, 92067, 'ninety-two thousand sixty-seven'), (20751, 87599, 'eighty-seven thousand five hundred ninety-nine'), (20752, 21009, 'twenty-one thousand nine'), (20753, 16556, 'sixteen thousand five hundred fifty-six'), (20754, 59066, 'fifty-nine thousand sixty-six'), (20755, 92223, 'ninety-two thousand two hundred twenty-three'), (20756, 67805, 'sixty-seven thousand eight hundred five'), (20757, 81185, 'eighty-one thousand one hundred eighty-five'), (20758, 19893, 'nineteen thousand eight hundred ninety-three'), (20759, 40442, 'forty thousand four hundred forty-two'), (20760, 22420, 'twenty-two thousand four hundred twenty'), (20761, 89833, 'eighty-nine thousand eight hundred thirty-three'), (20762, 47442, 'forty-seven thousand four hundred forty-two'), (20763, 64418, 'sixty-four thousand four hundred eighteen'), (20764, 56734, 'fifty-six thousand seven hundred thirty-four'), (20765, 48198, 'forty-eight thousand one hundred ninety-eight'), (20766, 74803, 'seventy-four thousand eight hundred three'), (20767, 54310, 'fifty-four thousand three hundred ten'), (20768, 42749, 'forty-two thousand seven hundred forty-nine'), (20769, 1595, 'one thousand five hundred ninety-five'), (20770, 37104, 'thirty-seven thousand one hundred four'), (20771, 93970, 'ninety-three thousand nine hundred seventy'), (20772, 77004, 'seventy-seven thousand four'), (20773, 38077, 'thirty-eight thousand seventy-seven'), (20774, 4318, 'four thousand three hundred eighteen'), (20775, 30259, 'thirty thousand two hundred fifty-nine'), (20776, 60477, 'sixty thousand four hundred seventy-seven'), (20777, 29986, 'twenty-nine thousand nine hundred eighty-six'), (20778, 56814, 'fifty-six thousand eight hundred fourteen'), (20779, 57633, 'fifty-seven thousand six hundred thirty-three'), (20780, 50036, 'fifty thousand thirty-six'), (20781, 60730, 'sixty thousand seven hundred thirty'), (20782, 35100, 'thirty-five thousand one hundred'), (20783, 61113, 'sixty-one thousand one hundred thirteen'), (20784, 140, 'one hundred forty'), (20785, 35784, 'thirty-five thousand seven hundred eighty-four'), (20786, 87422, 'eighty-seven thousand four hundred twenty-two'), (20787, 28128, 'twenty-eight thousand one hundred twenty-eight'), (20788, 66213, 'sixty-six thousand two hundred thirteen'), (20789, 44242, 'forty-four thousand two hundred forty-two'), (20790, 2525, 'two thousand five hundred twenty-five'), (20791, 60800, 'sixty thousand eight hundred'), (20792, 86046, 'eighty-six thousand forty-six'), (20793, 77259, 'seventy-seven thousand two hundred fifty-nine'), (20794, 18484, 'eighteen thousand four hundred eighty-four'), (20795, 32691, 'thirty-two thousand six hundred ninety-one'), (20796, 89681, 'eighty-nine thousand six hundred eighty-one'), (20797, 19743, 'nineteen thousand seven hundred forty-three'), (20798, 2558, 'two thousand five hundred fifty-eight'), (20799, 54514, 'fifty-four thousand five hundred fourteen'), (20800, 11525, 'eleven thousand five hundred twenty-five'), (20801, 96249, 'ninety-six thousand two hundred forty-nine'), (20802, 33893, 'thirty-three thousand eight hundred ninety-three'), (20803, 82190, 'eighty-two thousand one hundred ninety'), (20804, 23297, 'twenty-three thousand two hundred ninety-seven'), (20805, 59761, 'fifty-nine thousand seven hundred sixty-one'), (20806, 5879, 'five thousand eight hundred seventy-nine'), (20807, 68389, 'sixty-eight thousand three hundred eighty-nine'), (20808, 2624, 'two thousand six hundred twenty-four'), (20809, 17414, 'seventeen thousand four hundred fourteen'), (20810, 45899, 'forty-five thousand eight hundred ninety-nine'), (20811, 43977, 'forty-three thousand nine hundred seventy-seven'), (20812, 98925, 'ninety-eight thousand nine hundred twenty-five'), (20813, 99535, 'ninety-nine thousand five hundred thirty-five'), (20814, 47119, 'forty-seven thousand one hundred nineteen'), (20815, 92398, 'ninety-two thousand three hundred ninety-eight'), (20816, 33278, 'thirty-three thousand two hundred seventy-eight'), (20817, 10689, 'ten thousand six hundred eighty-nine'), (20818, 5457, 'five thousand four hundred fifty-seven'), (20819, 76584, 'seventy-six thousand five hundred eighty-four'), (20820, 78783, 'seventy-eight thousand seven hundred eighty-three'), (20821, 89407, 'eighty-nine thousand four hundred seven'), (20822, 87257, 'eighty-seven thousand two hundred fifty-seven'), (20823, 28309, 'twenty-eight thousand three hundred nine'), (20824, 63524, 'sixty-three thousand five hundred twenty-four'), (20825, 44844, 'forty-four thousand eight hundred forty-four'), (20826, 61006, 'sixty-one thousand six'), (20827, 79538, 'seventy-nine thousand five hundred thirty-eight'), (20828, 97949, 'ninety-seven thousand nine hundred forty-nine'), (20829, 8632, 'eight thousand six hundred thirty-two'), (20830, 35741, 'thirty-five thousand seven hundred forty-one'), (20831, 98612, 'ninety-eight thousand six hundred twelve'), (20832, 92970, 'ninety-two thousand nine hundred seventy'), (20833, 42735, 'forty-two thousand seven hundred thirty-five'), (20834, 7119, 'seven thousand one hundred nineteen'), (20835, 33845, 'thirty-three thousand eight hundred forty-five'), (20836, 47212, 'forty-seven thousand two hundred twelve'), (20837, 13536, 'thirteen thousand five hundred thirty-six'), (20838, 86333, 'eighty-six thousand three hundred thirty-three'), (20839, 49582, 'forty-nine thousand five hundred eighty-two'), (20840, 60169, 'sixty thousand one hundred sixty-nine'), (20841, 49256, 'forty-nine thousand two hundred fifty-six'), (20842, 76036, 'seventy-six thousand thirty-six'), (20843, 25276, 'twenty-five thousand two hundred seventy-six'), (20844, 83041, 'eighty-three thousand forty-one'), (20845, 66167, 'sixty-six thousand one hundred sixty-seven'), (20846, 95728, 'ninety-five thousand seven hundred twenty-eight'), (20847, 88389, 'eighty-eight thousand three hundred eighty-nine'), (20848, 92996, 'ninety-two thousand nine hundred ninety-six'), (20849, 66252, 'sixty-six thousand two hundred fifty-two'), (20850, 67792, 'sixty-seven thousand seven hundred ninety-two'), (20851, 28765, 'twenty-eight thousand seven hundred sixty-five'), (20852, 53846, 'fifty-three thousand eight hundred forty-six'), (20853, 33826, 'thirty-three thousand eight hundred twenty-six'), (20854, 3869, 'three thousand eight hundred sixty-nine'), (20855, 63720, 'sixty-three thousand seven hundred twenty'), (20856, 58814, 'fifty-eight thousand eight hundred fourteen'), (20857, 86750, 'eighty-six thousand seven hundred fifty'), (20858, 45743, 'forty-five thousand seven hundred forty-three'), (20859, 81728, 'eighty-one thousand seven hundred twenty-eight'), (20860, 72524, 'seventy-two thousand five hundred twenty-four'), (20861, 7697, 'seven thousand six hundred ninety-seven'), (20862, 25890, 'twenty-five thousand eight hundred ninety'), (20863, 60615, 'sixty thousand six hundred fifteen'), (20864, 42107, 'forty-two thousand one hundred seven'), (20865, 30406, 'thirty thousand four hundred six'), (20866, 86830, 'eighty-six thousand eight hundred thirty'), (20867, 90896, 'ninety thousand eight hundred ninety-six'), (20868, 70747, 'seventy thousand seven hundred forty-seven'), (20869, 64799, 'sixty-four thousand seven hundred ninety-nine'), (20870, 73710, 'seventy-three thousand seven hundred ten'), (20871, 50208, 'fifty thousand two hundred eight'), (20872, 68686, 'sixty-eight thousand six hundred eighty-six'), (20873, 74764, 'seventy-four thousand seven hundred sixty-four'), (20874, 18007, 'eighteen thousand seven'), (20875, 91354, 'ninety-one thousand three hundred fifty-four'), (20876, 47944, 'forty-seven thousand nine hundred forty-four'), (20877, 48147, 'forty-eight thousand one hundred forty-seven'), (20878, 91253, 'ninety-one thousand two hundred fifty-three'), (20879, 33500, 'thirty-three thousand five hundred'), (20880, 21392, 'twenty-one thousand three hundred ninety-two'), (20881, 15667, 'fifteen thousand six hundred sixty-seven'), (20882, 36411, 'thirty-six thousand four hundred eleven'), (20883, 25926, 'twenty-five thousand nine hundred twenty-six'), (20884, 12885, 'twelve thousand eight hundred eighty-five'), (20885, 10333, 'ten thousand three hundred thirty-three'), (20886, 10415, 'ten thousand four hundred fifteen'), (20887, 77629, 'seventy-seven thousand six hundred twenty-nine'), (20888, 72451, 'seventy-two thousand four hundred fifty-one'), (20889, 26811, 'twenty-six thousand eight hundred eleven'), (20890, 61104, 'sixty-one thousand one hundred four'), (20891, 49890, 'forty-nine thousand eight hundred ninety'), (20892, 31323, 'thirty-one thousand three hundred twenty-three'), (20893, 3812, 'three thousand eight hundred twelve'), (20894, 98522, 'ninety-eight thousand five hundred twenty-two'), (20895, 54182, 'fifty-four thousand one hundred eighty-two'), (20896, 86784, 'eighty-six thousand seven hundred eighty-four'), (20897, 99745, 'ninety-nine thousand seven hundred forty-five'), (20898, 33437, 'thirty-three thousand four hundred thirty-seven'), (20899, 59842, 'fifty-nine thousand eight hundred forty-two'), (20900, 90550, 'ninety thousand five hundred fifty'), (20901, 29505, 'twenty-nine thousand five hundred five'), (20902, 83879, 'eighty-three thousand eight hundred seventy-nine'), (20903, 46479, 'forty-six thousand four hundred seventy-nine'), (20904, 24359, 'twenty-four thousand three hundred fifty-nine'), (20905, 17176, 'seventeen thousand one hundred seventy-six'), (20906, 65318, 'sixty-five thousand three hundred eighteen'), (20907, 51389, 'fifty-one thousand three hundred eighty-nine'), (20908, 67213, 'sixty-seven thousand two hundred thirteen'), (20909, 27654, 'twenty-seven thousand six hundred fifty-four'), (20910, 32583, 'thirty-two thousand five hundred eighty-three'), (20911, 30785, 'thirty thousand seven hundred eighty-five'), (20912, 48418, 'forty-eight thousand four hundred eighteen'), (20913, 34069, 'thirty-four thousand sixty-nine'), (20914, 76752, 'seventy-six thousand seven hundred fifty-two'), (20915, 35915, 'thirty-five thousand nine hundred fifteen'), (20916, 44142, 'forty-four thousand one hundred forty-two'), (20917, 67133, 'sixty-seven thousand one hundred thirty-three'), (20918, 97971, 'ninety-seven thousand nine hundred seventy-one'), (20919, 43465, 'forty-three thousand four hundred sixty-five'), (20920, 73100, 'seventy-three thousand one hundred'), (20921, 45014, 'forty-five thousand fourteen'), (20922, 27457, 'twenty-seven thousand four hundred fifty-seven'), (20923, 48786, 'forty-eight thousand seven hundred eighty-six'), (20924, 49949, 'forty-nine thousand nine hundred forty-nine'), (20925, 29715, 'twenty-nine thousand seven hundred fifteen'), (20926, 30083, 'thirty thousand eighty-three'), (20927, 36179, 'thirty-six thousand one hundred seventy-nine'), (20928, 49258, 'forty-nine thousand two hundred fifty-eight'), (20929, 76085, 'seventy-six thousand eighty-five'), (20930, 90842, 'ninety thousand eight hundred forty-two'), (20931, 3301, 'three thousand three hundred one'), (20932, 79447, 'seventy-nine thousand four hundred forty-seven'), (20933, 16649, 'sixteen thousand six hundred forty-nine'), (20934, 74228, 'seventy-four thousand two hundred twenty-eight'), (20935, 97208, 'ninety-seven thousand two hundred eight'), (20936, 83384, 'eighty-three thousand three hundred eighty-four'), (20937, 10761, 'ten thousand seven hundred sixty-one'), (20938, 64732, 'sixty-four thousand seven hundred thirty-two'), (20939, 21700, 'twenty-one thousand seven hundred'), (20940, 32143, 'thirty-two thousand one hundred forty-three'), (20941, 1986, 'one thousand nine hundred eighty-six'), (20942, 19251, 'nineteen thousand two hundred fifty-one'), (20943, 52724, 'fifty-two thousand seven hundred twenty-four'), (20944, 34691, 'thirty-four thousand six hundred ninety-one'), (20945, 80799, 'eighty thousand seven hundred ninety-nine'), (20946, 69836, 'sixty-nine thousand eight hundred thirty-six'), (20947, 11915, 'eleven thousand nine hundred fifteen'), (20948, 12871, 'twelve thousand eight hundred seventy-one'), (20949, 48325, 'forty-eight thousand three hundred twenty-five'), (20950, 74847, 'seventy-four thousand eight hundred forty-seven'), (20951, 94237, 'ninety-four thousand two hundred thirty-seven'), (20952, 46860, 'forty-six thousand eight hundred sixty'), (20953, 21807, 'twenty-one thousand eight hundred seven'), (20954, 87440, 'eighty-seven thousand four hundred forty'), (20955, 71782, 'seventy-one thousand seven hundred eighty-two'), (20956, 21321, 'twenty-one thousand three hundred twenty-one'), (20957, 30951, 'thirty thousand nine hundred fifty-one'), (20958, 11856, 'eleven thousand eight hundred fifty-six'), (20959, 49811, 'forty-nine thousand eight hundred eleven'), (20960, 79749, 'seventy-nine thousand seven hundred forty-nine'), (20961, 11170, 'eleven thousand one hundred seventy'), (20962, 99629, 'ninety-nine thousand six hundred twenty-nine'), (20963, 65371, 'sixty-five thousand three hundred seventy-one'), (20964, 34244, 'thirty-four thousand two hundred forty-four'), (20965, 3781, 'three thousand seven hundred eighty-one'), (20966, 24686, 'twenty-four thousand six hundred eighty-six'), (20967, 59903, 'fifty-nine thousand nine hundred three'), (20968, 62614, 'sixty-two thousand six hundred fourteen'), (20969, 92050, 'ninety-two thousand fifty'), (20970, 98544, 'ninety-eight thousand five hundred forty-four'), (20971, 28740, 'twenty-eight thousand seven hundred forty'), (20972, 24024, 'twenty-four thousand twenty-four'), (20973, 92000, 'ninety-two thousand'), (20974, 40715, 'forty thousand seven hundred fifteen'), (20975, 52113, 'fifty-two thousand one hundred thirteen'), (20976, 68404, 'sixty-eight thousand four hundred four'), (20977, 85410, 'eighty-five thousand four hundred ten'), (20978, 54851, 'fifty-four thousand eight hundred fifty-one'), (20979, 22821, 'twenty-two thousand eight hundred twenty-one'), (20980, 41283, 'forty-one thousand two hundred eighty-three'), (20981, 46991, 'forty-six thousand nine hundred ninety-one'), (20982, 4852, 'four thousand eight hundred fifty-two'), (20983, 79635, 'seventy-nine thousand six hundred thirty-five'), (20984, 88412, 'eighty-eight thousand four hundred twelve'), (20985, 93051, 'ninety-three thousand fifty-one'), (20986, 81058, 'eighty-one thousand fifty-eight'), (20987, 41569, 'forty-one thousand five hundred sixty-nine'), (20988, 61945, 'sixty-one thousand nine hundred forty-five'), (20989, 62609, 'sixty-two thousand six hundred nine'), (20990, 13715, 'thirteen thousand seven hundred fifteen'), (20991, 2046, 'two thousand forty-six'), (20992, 22876, 'twenty-two thousand eight hundred seventy-six'), (20993, 27636, 'twenty-seven thousand six hundred thirty-six'), (20994, 85744, 'eighty-five thousand seven hundred forty-four'), (20995, 8027, 'eight thousand twenty-seven'), (20996, 18531, 'eighteen thousand five hundred thirty-one'), (20997, 30469, 'thirty thousand four hundred sixty-nine'), (20998, 88361, 'eighty-eight thousand three hundred sixty-one'), (20999, 3939, 'three thousand nine hundred thirty-nine'), (21000, 96075, 'ninety-six thousand seventy-five'), (21001, 59400, 'fifty-nine thousand four hundred'), (21002, 16789, 'sixteen thousand seven hundred eighty-nine'), (21003, 43998, 'forty-three thousand nine hundred ninety-eight'), (21004, 11203, 'eleven thousand two hundred three'), (21005, 12690, 'twelve thousand six hundred ninety'), (21006, 45157, 'forty-five thousand one hundred fifty-seven'), (21007, 28750, 'twenty-eight thousand seven hundred fifty'), (21008, 2560, 'two thousand five hundred sixty'), (21009, 21191, 'twenty-one thousand one hundred ninety-one'), (21010, 29201, 'twenty-nine thousand two hundred one'), (21011, 37956, 'thirty-seven thousand nine hundred fifty-six'), (21012, 39641, 'thirty-nine thousand six hundred forty-one'), (21013, 65272, 'sixty-five thousand two hundred seventy-two'), (21014, 27780, 'twenty-seven thousand seven hundred eighty'), (21015, 91818, 'ninety-one thousand eight hundred eighteen'), (21016, 51822, 'fifty-one thousand eight hundred twenty-two'), (21017, 64487, 'sixty-four thousand four hundred eighty-seven'), (21018, 91951, 'ninety-one thousand nine hundred fifty-one'), (21019, 92209, 'ninety-two thousand two hundred nine'), (21020, 38116, 'thirty-eight thousand one hundred sixteen'), (21021, 10384, 'ten thousand three hundred eighty-four'), (21022, 42093, 'forty-two thousand ninety-three'), (21023, 64506, 'sixty-four thousand five hundred six'), (21024, 80152, 'eighty thousand one hundred fifty-two'), (21025, 20984, 'twenty thousand nine hundred eighty-four'), (21026, 76875, 'seventy-six thousand eight hundred seventy-five'), (21027, 95590, 'ninety-five thousand five hundred ninety'), (21028, 51070, 'fifty-one thousand seventy'), (21029, 90143, 'ninety thousand one hundred forty-three'), (21030, 26787, 'twenty-six thousand seven hundred eighty-seven'), (21031, 50854, 'fifty thousand eight hundred fifty-four'), (21032, 96583, 'ninety-six thousand five hundred eighty-three'), (21033, 31976, 'thirty-one thousand nine hundred seventy-six'), (21034, 80099, 'eighty thousand ninety-nine'), (21035, 90856, 'ninety thousand eight hundred fifty-six'), (21036, 39443, 'thirty-nine thousand four hundred forty-three'), (21037, 10934, 'ten thousand nine hundred thirty-four'), (21038, 94505, 'ninety-four thousand five hundred five'), (21039, 95538, 'ninety-five thousand five hundred thirty-eight'), (21040, 36148, 'thirty-six thousand one hundred forty-eight'), (21041, 50446, 'fifty thousand four hundred forty-six'), (21042, 91321, 'ninety-one thousand three hundred twenty-one'), (21043, 73528, 'seventy-three thousand five hundred twenty-eight'), (21044, 89995, 'eighty-nine thousand nine hundred ninety-five'), (21045, 58200, 'fifty-eight thousand two hundred'), (21046, 54511, 'fifty-four thousand five hundred eleven'), (21047, 24946, 'twenty-four thousand nine hundred forty-six'), (21048, 66204, 'sixty-six thousand two hundred four'), (21049, 26736, 'twenty-six thousand seven hundred thirty-six'), (21050, 90899, 'ninety thousand eight hundred ninety-nine'), (21051, 73705, 'seventy-three thousand seven hundred five'), (21052, 5359, 'five thousand three hundred fifty-nine'), (21053, 42040, 'forty-two thousand forty'), (21054, 21404, 'twenty-one thousand four hundred four'), (21055, 63277, 'sixty-three thousand two hundred seventy-seven'), (21056, 10171, 'ten thousand one hundred seventy-one'), (21057, 76362, 'seventy-six thousand three hundred sixty-two'), (21058, 83499, 'eighty-three thousand four hundred ninety-nine'), (21059, 77224, 'seventy-seven thousand two hundred twenty-four'), (21060, 29364, 'twenty-nine thousand three hundred sixty-four'), (21061, 67887, 'sixty-seven thousand eight hundred eighty-seven'), (21062, 84419, 'eighty-four thousand four hundred nineteen'), (21063, 989, 'nine hundred eighty-nine'), (21064, 89289, 'eighty-nine thousand two hundred eighty-nine'), (21065, 73225, 'seventy-three thousand two hundred twenty-five'), (21066, 60805, 'sixty thousand eight hundred five'), (21067, 70338, 'seventy thousand three hundred thirty-eight'), (21068, 58899, 'fifty-eight thousand eight hundred ninety-nine'), (21069, 30776, 'thirty thousand seven hundred seventy-six'), (21070, 78990, 'seventy-eight thousand nine hundred ninety'), (21071, 1323, 'one thousand three hundred twenty-three'), (21072, 61781, 'sixty-one thousand seven hundred eighty-one'), (21073, 9719, 'nine thousand seven hundred nineteen'), (21074, 58428, 'fifty-eight thousand four hundred twenty-eight'), (21075, 38991, 'thirty-eight thousand nine hundred ninety-one'), (21076, 75192, 'seventy-five thousand one hundred ninety-two'), (21077, 27483, 'twenty-seven thousand four hundred eighty-three'), (21078, 86624, 'eighty-six thousand six hundred twenty-four'), (21079, 17538, 'seventeen thousand five hundred thirty-eight'), (21080, 11774, 'eleven thousand seven hundred seventy-four'), (21081, 92822, 'ninety-two thousand eight hundred twenty-two'), (21082, 68637, 'sixty-eight thousand six hundred thirty-seven'), (21083, 45636, 'forty-five thousand six hundred thirty-six'), (21084, 40243, 'forty thousand two hundred forty-three'), (21085, 37951, 'thirty-seven thousand nine hundred fifty-one'), (21086, 96551, 'ninety-six thousand five hundred fifty-one'), (21087, 78207, 'seventy-eight thousand two hundred seven'), (21088, 81023, 'eighty-one thousand twenty-three'), (21089, 90870, 'ninety thousand eight hundred seventy'), (21090, 44646, 'forty-four thousand six hundred forty-six'), (21091, 5083, 'five thousand eighty-three'), (21092, 48450, 'forty-eight thousand four hundred fifty'), (21093, 44014, 'forty-four thousand fourteen'), (21094, 53634, 'fifty-three thousand six hundred thirty-four'), (21095, 39553, 'thirty-nine thousand five hundred fifty-three'), (21096, 10217, 'ten thousand two hundred seventeen'), (21097, 56822, 'fifty-six thousand eight hundred twenty-two'), (21098, 77396, 'seventy-seven thousand three hundred ninety-six'), (21099, 18154, 'eighteen thousand one hundred fifty-four'), (21100, 7991, 'seven thousand nine hundred ninety-one'), (21101, 27470, 'twenty-seven thousand four hundred seventy'), (21102, 18907, 'eighteen thousand nine hundred seven'), (21103, 44731, 'forty-four thousand seven hundred thirty-one'), (21104, 25789, 'twenty-five thousand seven hundred eighty-nine'), (21105, 84915, 'eighty-four thousand nine hundred fifteen'), (21106, 94332, 'ninety-four thousand three hundred thirty-two'), (21107, 30353, 'thirty thousand three hundred fifty-three'), (21108, 55869, 'fifty-five thousand eight hundred sixty-nine'), (21109, 44163, 'forty-four thousand one hundred sixty-three'), (21110, 79040, 'seventy-nine thousand forty'), (21111, 53292, 'fifty-three thousand two hundred ninety-two'), (21112, 65622, 'sixty-five thousand six hundred twenty-two'), (21113, 78480, 'seventy-eight thousand four hundred eighty'), (21114, 56182, 'fifty-six thousand one hundred eighty-two'), (21115, 65323, 'sixty-five thousand three hundred twenty-three'), (21116, 18055, 'eighteen thousand fifty-five'), (21117, 4132, 'four thousand one hundred thirty-two'), (21118, 75164, 'seventy-five thousand one hundred sixty-four'), (21119, 81427, 'eighty-one thousand four hundred twenty-seven'), (21120, 88603, 'eighty-eight thousand six hundred three'), (21121, 40013, 'forty thousand thirteen'), (21122, 40354, 'forty thousand three hundred fifty-four'), (21123, 30922, 'thirty thousand nine hundred twenty-two'), (21124, 23584, 'twenty-three thousand five hundred eighty-four'), (21125, 98815, 'ninety-eight thousand eight hundred fifteen'), (21126, 28833, 'twenty-eight thousand eight hundred thirty-three'), (21127, 89423, 'eighty-nine thousand four hundred twenty-three'), (21128, 98822, 'ninety-eight thousand eight hundred twenty-two'), (21129, 93222, 'ninety-three thousand two hundred twenty-two'), (21130, 94260, 'ninety-four thousand two hundred sixty'), (21131, 71873, 'seventy-one thousand eight hundred seventy-three'), (21132, 18273, 'eighteen thousand two hundred seventy-three'), (21133, 25543, 'twenty-five thousand five hundred forty-three'), (21134, 95612, 'ninety-five thousand six hundred twelve'), (21135, 89785, 'eighty-nine thousand seven hundred eighty-five'), (21136, 45190, 'forty-five thousand one hundred ninety'), (21137, 36832, 'thirty-six thousand eight hundred thirty-two'), (21138, 13275, 'thirteen thousand two hundred seventy-five'), (21139, 41657, 'forty-one thousand six hundred fifty-seven'), (21140, 85651, 'eighty-five thousand six hundred fifty-one'), (21141, 35829, 'thirty-five thousand eight hundred twenty-nine'), (21142, 7360, 'seven thousand three hundred sixty'), (21143, 4330, 'four thousand three hundred thirty'), (21144, 78095, 'seventy-eight thousand ninety-five'), (21145, 17373, 'seventeen thousand three hundred seventy-three'), (21146, 68720, 'sixty-eight thousand seven hundred twenty'), (21147, 21431, 'twenty-one thousand four hundred thirty-one'), (21148, 55612, 'fifty-five thousand six hundred twelve'), (21149, 95643, 'ninety-five thousand six hundred forty-three'), (21150, 8216, 'eight thousand two hundred sixteen'), (21151, 20356, 'twenty thousand three hundred fifty-six'), (21152, 65, 'sixty-five'), (21153, 70899, 'seventy thousand eight hundred ninety-nine'), (21154, 18384, 'eighteen thousand three hundred eighty-four'), (21155, 8512, 'eight thousand five hundred twelve'), (21156, 66153, 'sixty-six thousand one hundred fifty-three'), (21157, 19821, 'nineteen thousand eight hundred twenty-one'), (21158, 39067, 'thirty-nine thousand sixty-seven'), (21159, 62279, 'sixty-two thousand two hundred seventy-nine'), (21160, 36119, 'thirty-six thousand one hundred nineteen'), (21161, 30107, 'thirty thousand one hundred seven'), (21162, 26583, 'twenty-six thousand five hundred eighty-three'), (21163, 66013, 'sixty-six thousand thirteen'), (21164, 14233, 'fourteen thousand two hundred thirty-three'), (21165, 4193, 'four thousand one hundred ninety-three'), (21166, 778, 'seven hundred seventy-eight'), (21167, 38837, 'thirty-eight thousand eight hundred thirty-seven'), (21168, 94713, 'ninety-four thousand seven hundred thirteen'), (21169, 34564, 'thirty-four thousand five hundred sixty-four'), (21170, 54520, 'fifty-four thousand five hundred twenty'), (21171, 62952, 'sixty-two thousand nine hundred fifty-two'), (21172, 69621, 'sixty-nine thousand six hundred twenty-one'), (21173, 88499, 'eighty-eight thousand four hundred ninety-nine'), (21174, 49397, 'forty-nine thousand three hundred ninety-seven'), (21175, 28574, 'twenty-eight thousand five hundred seventy-four'), (21176, 11480, 'eleven thousand four hundred eighty'), (21177, 40208, 'forty thousand two hundred eight'), (21178, 38900, 'thirty-eight thousand nine hundred'), (21179, 83957, 'eighty-three thousand nine hundred fifty-seven'), (21180, 27247, 'twenty-seven thousand two hundred forty-seven'), (21181, 97307, 'ninety-seven thousand three hundred seven'), (21182, 39555, 'thirty-nine thousand five hundred fifty-five'), (21183, 93027, 'ninety-three thousand twenty-seven'), (21184, 55590, 'fifty-five thousand five hundred ninety'), (21185, 96966, 'ninety-six thousand nine hundred sixty-six'), (21186, 6905, 'six thousand nine hundred five'), (21187, 96377, 'ninety-six thousand three hundred seventy-seven'), (21188, 67033, 'sixty-seven thousand thirty-three'), (21189, 31372, 'thirty-one thousand three hundred seventy-two'), (21190, 86793, 'eighty-six thousand seven hundred ninety-three'), (21191, 15123, 'fifteen thousand one hundred twenty-three'), (21192, 78993, 'seventy-eight thousand nine hundred ninety-three'), (21193, 56609, 'fifty-six thousand six hundred nine'), (21194, 15481, 'fifteen thousand four hundred eighty-one'), (21195, 918, 'nine hundred eighteen'), (21196, 63836, 'sixty-three thousand eight hundred thirty-six'), (21197, 33745, 'thirty-three thousand seven hundred forty-five'), (21198, 8756, 'eight thousand seven hundred fifty-six'), (21199, 41975, 'forty-one thousand nine hundred seventy-five'), (21200, 23231, 'twenty-three thousand two hundred thirty-one'), (21201, 17286, 'seventeen thousand two hundred eighty-six'), (21202, 30531, 'thirty thousand five hundred thirty-one'), (21203, 15593, 'fifteen thousand five hundred ninety-three'), (21204, 12905, 'twelve thousand nine hundred five'), (21205, 83139, 'eighty-three thousand one hundred thirty-nine'), (21206, 33667, 'thirty-three thousand six hundred sixty-seven'), (21207, 66932, 'sixty-six thousand nine hundred thirty-two'), (21208, 64229, 'sixty-four thousand two hundred twenty-nine'), (21209, 63294, 'sixty-three thousand two hundred ninety-four'), (21210, 64787, 'sixty-four thousand seven hundred eighty-seven'), (21211, 13033, 'thirteen thousand thirty-three'), (21212, 65534, 'sixty-five thousand five hundred thirty-four'), (21213, 15872, 'fifteen thousand eight hundred seventy-two'), (21214, 60988, 'sixty thousand nine hundred eighty-eight'), (21215, 41443, 'forty-one thousand four hundred forty-three'), (21216, 77748, 'seventy-seven thousand seven hundred forty-eight'), (21217, 18982, 'eighteen thousand nine hundred eighty-two'), (21218, 88649, 'eighty-eight thousand six hundred forty-nine'), (21219, 34980, 'thirty-four thousand nine hundred eighty'), (21220, 89340, 'eighty-nine thousand three hundred forty'), (21221, 38330, 'thirty-eight thousand three hundred thirty'), (21222, 69647, 'sixty-nine thousand six hundred forty-seven'), (21223, 74253, 'seventy-four thousand two hundred fifty-three'), (21224, 86753, 'eighty-six thousand seven hundred fifty-three'), (21225, 75315, 'seventy-five thousand three hundred fifteen'), (21226, 84576, 'eighty-four thousand five hundred seventy-six'), (21227, 38737, 'thirty-eight thousand seven hundred thirty-seven'), (21228, 28108, 'twenty-eight thousand one hundred eight'), (21229, 74630, 'seventy-four thousand six hundred thirty'), (21230, 69834, 'sixty-nine thousand eight hundred thirty-four'), (21231, 42819, 'forty-two thousand eight hundred nineteen'), (21232, 95634, 'ninety-five thousand six hundred thirty-four'), (21233, 17095, 'seventeen thousand ninety-five'), (21234, 29655, 'twenty-nine thousand six hundred fifty-five'), (21235, 97871, 'ninety-seven thousand eight hundred seventy-one'), (21236, 98896, 'ninety-eight thousand eight hundred ninety-six'), (21237, 53044, 'fifty-three thousand forty-four'), (21238, 37909, 'thirty-seven thousand nine hundred nine'), (21239, 4426, 'four thousand four hundred twenty-six'), (21240, 87378, 'eighty-seven thousand three hundred seventy-eight'), (21241, 9786, 'nine thousand seven hundred eighty-six'), (21242, 81767, 'eighty-one thousand seven hundred sixty-seven'), (21243, 58327, 'fifty-eight thousand three hundred twenty-seven'), (21244, 33417, 'thirty-three thousand four hundred seventeen'), (21245, 4418, 'four thousand four hundred eighteen'), (21246, 82809, 'eighty-two thousand eight hundred nine'), (21247, 52214, 'fifty-two thousand two hundred fourteen'), (21248, 43581, 'forty-three thousand five hundred eighty-one'), (21249, 6297, 'six thousand two hundred ninety-seven'), (21250, 53086, 'fifty-three thousand eighty-six'), (21251, 58003, 'fifty-eight thousand three'), (21252, 29632, 'twenty-nine thousand six hundred thirty-two'), (21253, 17891, 'seventeen thousand eight hundred ninety-one'), (21254, 19034, 'nineteen thousand thirty-four'), (21255, 9848, 'nine thousand eight hundred forty-eight'), (21256, 64871, 'sixty-four thousand eight hundred seventy-one'), (21257, 9277, 'nine thousand two hundred seventy-seven'), (21258, 10050, 'ten thousand fifty'), (21259, 1699, 'one thousand six hundred ninety-nine'), (21260, 55181, 'fifty-five thousand one hundred eighty-one'), (21261, 25210, 'twenty-five thousand two hundred ten'), (21262, 56763, 'fifty-six thousand seven hundred sixty-three'), (21263, 28872, 'twenty-eight thousand eight hundred seventy-two'), (21264, 54701, 'fifty-four thousand seven hundred one'), (21265, 1772, 'one thousand seven hundred seventy-two'), (21266, 59133, 'fifty-nine thousand one hundred thirty-three'), (21267, 33068, 'thirty-three thousand sixty-eight'), (21268, 70074, 'seventy thousand seventy-four'), (21269, 11454, 'eleven thousand four hundred fifty-four'), (21270, 37929, 'thirty-seven thousand nine hundred twenty-nine'), (21271, 36406, 'thirty-six thousand four hundred six'), (21272, 16624, 'sixteen thousand six hundred twenty-four'), (21273, 31066, 'thirty-one thousand sixty-six'), (21274, 77724, 'seventy-seven thousand seven hundred twenty-four'), (21275, 92829, 'ninety-two thousand eight hundred twenty-nine'), (21276, 40185, 'forty thousand one hundred eighty-five'), (21277, 98611, 'ninety-eight thousand six hundred eleven'), (21278, 10970, 'ten thousand nine hundred seventy'), (21279, 56091, 'fifty-six thousand ninety-one'), (21280, 64390, 'sixty-four thousand three hundred ninety'), (21281, 15563, 'fifteen thousand five hundred sixty-three'), (21282, 64571, 'sixty-four thousand five hundred seventy-one'), (21283, 46171, 'forty-six thousand one hundred seventy-one'), (21284, 86247, 'eighty-six thousand two hundred forty-seven'), (21285, 44435, 'forty-four thousand four hundred thirty-five'), (21286, 55059, 'fifty-five thousand fifty-nine'), (21287, 22013, 'twenty-two thousand thirteen'), (21288, 41647, 'forty-one thousand six hundred forty-seven'), (21289, 16025, 'sixteen thousand twenty-five'), (21290, 55038, 'fifty-five thousand thirty-eight'), (21291, 25601, 'twenty-five thousand six hundred one'), (21292, 90923, 'ninety thousand nine hundred twenty-three'), (21293, 242, 'two hundred forty-two'), (21294, 15322, 'fifteen thousand three hundred twenty-two'), (21295, 22266, 'twenty-two thousand two hundred sixty-six'), (21296, 75970, 'seventy-five thousand nine hundred seventy'), (21297, 63345, 'sixty-three thousand three hundred forty-five'), (21298, 47058, 'forty-seven thousand fifty-eight'), (21299, 70461, 'seventy thousand four hundred sixty-one'), (21300, 62271, 'sixty-two thousand two hundred seventy-one'), (21301, 10355, 'ten thousand three hundred fifty-five'), (21302, 43830, 'forty-three thousand eight hundred thirty'), (21303, 55963, 'fifty-five thousand nine hundred sixty-three'), (21304, 44179, 'forty-four thousand one hundred seventy-nine'), (21305, 70526, 'seventy thousand five hundred twenty-six'), (21306, 66918, 'sixty-six thousand nine hundred eighteen'), (21307, 74563, 'seventy-four thousand five hundred sixty-three'), (21308, 55721, 'fifty-five thousand seven hundred twenty-one'), (21309, 80998, 'eighty thousand nine hundred ninety-eight'), (21310, 75092, 'seventy-five thousand ninety-two'), (21311, 63547, 'sixty-three thousand five hundred forty-seven'), (21312, 42808, 'forty-two thousand eight hundred eight'), (21313, 51127, 'fifty-one thousand one hundred twenty-seven'), (21314, 57628, 'fifty-seven thousand six hundred twenty-eight'), (21315, 5571, 'five thousand five hundred seventy-one'), (21316, 34951, 'thirty-four thousand nine hundred fifty-one'), (21317, 49653, 'forty-nine thousand six hundred fifty-three'), (21318, 9291, 'nine thousand two hundred ninety-one'), (21319, 4081, 'four thousand eighty-one'), (21320, 19663, 'nineteen thousand six hundred sixty-three'), (21321, 48925, 'forty-eight thousand nine hundred twenty-five'), (21322, 79509, 'seventy-nine thousand five hundred nine'), (21323, 79806, 'seventy-nine thousand eight hundred six'), (21324, 78767, 'seventy-eight thousand seven hundred sixty-seven'), (21325, 84902, 'eighty-four thousand nine hundred two'), (21326, 99888, 'ninety-nine thousand eight hundred eighty-eight'), (21327, 3522, 'three thousand five hundred twenty-two'), (21328, 21109, 'twenty-one thousand one hundred nine'), (21329, 98058, 'ninety-eight thousand fifty-eight'), (21330, 54186, 'fifty-four thousand one hundred eighty-six'), (21331, 39741, 'thirty-nine thousand seven hundred forty-one'), (21332, 43235, 'forty-three thousand two hundred thirty-five'), (21333, 19156, 'nineteen thousand one hundred fifty-six'), (21334, 10510, 'ten thousand five hundred ten'), (21335, 31643, 'thirty-one thousand six hundred forty-three'), (21336, 9566, 'nine thousand five hundred sixty-six'), (21337, 50288, 'fifty thousand two hundred eighty-eight'), (21338, 28715, 'twenty-eight thousand seven hundred fifteen'), (21339, 84507, 'eighty-four thousand five hundred seven'), (21340, 45444, 'forty-five thousand four hundred forty-four'), (21341, 21281, 'twenty-one thousand two hundred eighty-one'), (21342, 24159, 'twenty-four thousand one hundred fifty-nine'), (21343, 5508, 'five thousand five hundred eight'), (21344, 58175, 'fifty-eight thousand one hundred seventy-five'), (21345, 48224, 'forty-eight thousand two hundred twenty-four'), (21346, 13788, 'thirteen thousand seven hundred eighty-eight'), (21347, 68088, 'sixty-eight thousand eighty-eight'), (21348, 71271, 'seventy-one thousand two hundred seventy-one'), (21349, 20924, 'twenty thousand nine hundred twenty-four'), (21350, 74144, 'seventy-four thousand one hundred forty-four'), (21351, 67743, 'sixty-seven thousand seven hundred forty-three'), (21352, 26943, 'twenty-six thousand nine hundred forty-three'), (21353, 87055, 'eighty-seven thousand fifty-five'), (21354, 59757, 'fifty-nine thousand seven hundred fifty-seven'), (21355, 7255, 'seven thousand two hundred fifty-five'), (21356, 47065, 'forty-seven thousand sixty-five'), (21357, 45059, 'forty-five thousand fifty-nine'), (21358, 58405, 'fifty-eight thousand four hundred five'), (21359, 71883, 'seventy-one thousand eight hundred eighty-three'), (21360, 36248, 'thirty-six thousand two hundred forty-eight'), (21361, 27295, 'twenty-seven thousand two hundred ninety-five'), (21362, 28052, 'twenty-eight thousand fifty-two'), (21363, 3389, 'three thousand three hundred eighty-nine'), (21364, 12103, 'twelve thousand one hundred three'), (21365, 60780, 'sixty thousand seven hundred eighty'), (21366, 25568, 'twenty-five thousand five hundred sixty-eight'), (21367, 55703, 'fifty-five thousand seven hundred three'), (21368, 40029, 'forty thousand twenty-nine'), (21369, 94415, 'ninety-four thousand four hundred fifteen'), (21370, 35220, 'thirty-five thousand two hundred twenty'), (21371, 93551, 'ninety-three thousand five hundred fifty-one'), (21372, 84038, 'eighty-four thousand thirty-eight'), (21373, 69803, 'sixty-nine thousand eight hundred three'), (21374, 951, 'nine hundred fifty-one'), (21375, 61826, 'sixty-one thousand eight hundred twenty-six'), (21376, 72289, 'seventy-two thousand two hundred eighty-nine'), (21377, 84471, 'eighty-four thousand four hundred seventy-one'), (21378, 92601, 'ninety-two thousand six hundred one'), (21379, 67244, 'sixty-seven thousand two hundred forty-four'), (21380, 42765, 'forty-two thousand seven hundred sixty-five'), (21381, 66064, 'sixty-six thousand sixty-four'), (21382, 22320, 'twenty-two thousand three hundred twenty'), (21383, 18236, 'eighteen thousand two hundred thirty-six'), (21384, 91917, 'ninety-one thousand nine hundred seventeen'), (21385, 2662, 'two thousand six hundred sixty-two'), (21386, 37101, 'thirty-seven thousand one hundred one'), (21387, 66798, 'sixty-six thousand seven hundred ninety-eight'), (21388, 76035, 'seventy-six thousand thirty-five'), (21389, 2521, 'two thousand five hundred twenty-one'), (21390, 97257, 'ninety-seven thousand two hundred fifty-seven'), (21391, 40530, 'forty thousand five hundred thirty'), (21392, 14260, 'fourteen thousand two hundred sixty'), (21393, 16119, 'sixteen thousand one hundred nineteen'), (21394, 36036, 'thirty-six thousand thirty-six'), (21395, 41565, 'forty-one thousand five hundred sixty-five'), (21396, 37810, 'thirty-seven thousand eight hundred ten'), (21397, 50550, 'fifty thousand five hundred fifty'), (21398, 49577, 'forty-nine thousand five hundred seventy-seven'), (21399, 27680, 'twenty-seven thousand six hundred eighty'), (21400, 10926, 'ten thousand nine hundred twenty-six'), (21401, 45283, 'forty-five thousand two hundred eighty-three'), (21402, 68537, 'sixty-eight thousand five hundred thirty-seven'), (21403, 26617, 'twenty-six thousand six hundred seventeen'), (21404, 18740, 'eighteen thousand seven hundred forty'), (21405, 42463, 'forty-two thousand four hundred sixty-three'), (21406, 12532, 'twelve thousand five hundred thirty-two'), (21407, 80124, 'eighty thousand one hundred twenty-four'), (21408, 19826, 'nineteen thousand eight hundred twenty-six'), (21409, 69897, 'sixty-nine thousand eight hundred ninety-seven'), (21410, 78470, 'seventy-eight thousand four hundred seventy'), (21411, 56030, 'fifty-six thousand thirty'), (21412, 83918, 'eighty-three thousand nine hundred eighteen'), (21413, 75789, 'seventy-five thousand seven hundred eighty-nine'), (21414, 1233, 'one thousand two hundred thirty-three'), (21415, 5891, 'five thousand eight hundred ninety-one'), (21416, 46630, 'forty-six thousand six hundred thirty'), (21417, 23254, 'twenty-three thousand two hundred fifty-four'), (21418, 48640, 'forty-eight thousand six hundred forty'), (21419, 86325, 'eighty-six thousand three hundred twenty-five'), (21420, 82811, 'eighty-two thousand eight hundred eleven'), (21421, 71513, 'seventy-one thousand five hundred thirteen'), (21422, 1958, 'one thousand nine hundred fifty-eight'), (21423, 77865, 'seventy-seven thousand eight hundred sixty-five'), (21424, 9870, 'nine thousand eight hundred seventy'), (21425, 10100, 'ten thousand one hundred'), (21426, 51703, 'fifty-one thousand seven hundred three'), (21427, 9168, 'nine thousand one hundred sixty-eight'), (21428, 9365, 'nine thousand three hundred sixty-five'), (21429, 62112, 'sixty-two thousand one hundred twelve'), (21430, 79294, 'seventy-nine thousand two hundred ninety-four'), (21431, 30245, 'thirty thousand two hundred forty-five'), (21432, 95801, 'ninety-five thousand eight hundred one'), (21433, 28917, 'twenty-eight thousand nine hundred seventeen'), (21434, 17123, 'seventeen thousand one hundred twenty-three'), (21435, 25328, 'twenty-five thousand three hundred twenty-eight'), (21436, 32028, 'thirty-two thousand twenty-eight'), (21437, 16943, 'sixteen thousand nine hundred forty-three'), (21438, 81412, 'eighty-one thousand four hundred twelve'), (21439, 79792, 'seventy-nine thousand seven hundred ninety-two'), (21440, 83297, 'eighty-three thousand two hundred ninety-seven'), (21441, 43353, 'forty-three thousand three hundred fifty-three'), (21442, 83353, 'eighty-three thousand three hundred fifty-three'), (21443, 89275, 'eighty-nine thousand two hundred seventy-five'), (21444, 64523, 'sixty-four thousand five hundred twenty-three'), (21445, 23035, 'twenty-three thousand thirty-five'), (21446, 81500, 'eighty-one thousand five hundred'), (21447, 55266, 'fifty-five thousand two hundred sixty-six'), (21448, 31283, 'thirty-one thousand two hundred eighty-three'), (21449, 89949, 'eighty-nine thousand nine hundred forty-nine'), (21450, 41992, 'forty-one thousand nine hundred ninety-two'), (21451, 72819, 'seventy-two thousand eight hundred nineteen'), (21452, 39944, 'thirty-nine thousand nine hundred forty-four'), (21453, 45443, 'forty-five thousand four hundred forty-three'), (21454, 34981, 'thirty-four thousand nine hundred eighty-one'), (21455, 76882, 'seventy-six thousand eight hundred eighty-two'), (21456, 90010, 'ninety thousand ten'), (21457, 10649, 'ten thousand six hundred forty-nine'), (21458, 45460, 'forty-five thousand four hundred sixty'), (21459, 75712, 'seventy-five thousand seven hundred twelve'), (21460, 30529, 'thirty thousand five hundred twenty-nine'), (21461, 34720, 'thirty-four thousand seven hundred twenty'), (21462, 99946, 'ninety-nine thousand nine hundred forty-six'), (21463, 6187, 'six thousand one hundred eighty-seven'), (21464, 35559, 'thirty-five thousand five hundred fifty-nine'), (21465, 77222, 'seventy-seven thousand two hundred twenty-two'), (21466, 64109, 'sixty-four thousand one hundred nine'), (21467, 87951, 'eighty-seven thousand nine hundred fifty-one'), (21468, 29678, 'twenty-nine thousand six hundred seventy-eight'), (21469, 81420, 'eighty-one thousand four hundred twenty'), (21470, 16756, 'sixteen thousand seven hundred fifty-six'), (21471, 60707, 'sixty thousand seven hundred seven'), (21472, 71565, 'seventy-one thousand five hundred sixty-five'), (21473, 57669, 'fifty-seven thousand six hundred sixty-nine'), (21474, 25236, 'twenty-five thousand two hundred thirty-six'), (21475, 73592, 'seventy-three thousand five hundred ninety-two'), (21476, 45065, 'forty-five thousand sixty-five'), (21477, 77407, 'seventy-seven thousand four hundred seven'), (21478, 18740, 'eighteen thousand seven hundred forty'), (21479, 33472, 'thirty-three thousand four hundred seventy-two'), (21480, 6584, 'six thousand five hundred eighty-four'), (21481, 43009, 'forty-three thousand nine'), (21482, 12734, 'twelve thousand seven hundred thirty-four'), (21483, 93723, 'ninety-three thousand seven hundred twenty-three'), (21484, 69125, 'sixty-nine thousand one hundred twenty-five'), (21485, 88676, 'eighty-eight thousand six hundred seventy-six'), (21486, 86508, 'eighty-six thousand five hundred eight'), (21487, 88232, 'eighty-eight thousand two hundred thirty-two'), (21488, 38620, 'thirty-eight thousand six hundred twenty'), (21489, 93937, 'ninety-three thousand nine hundred thirty-seven'), (21490, 58918, 'fifty-eight thousand nine hundred eighteen'), (21491, 76830, 'seventy-six thousand eight hundred thirty'), (21492, 57407, 'fifty-seven thousand four hundred seven'), (21493, 66109, 'sixty-six thousand one hundred nine'), (21494, 91703, 'ninety-one thousand seven hundred three'), (21495, 57177, 'fifty-seven thousand one hundred seventy-seven'), (21496, 67011, 'sixty-seven thousand eleven'), (21497, 84999, 'eighty-four thousand nine hundred ninety-nine'), (21498, 89840, 'eighty-nine thousand eight hundred forty'), (21499, 6576, 'six thousand five hundred seventy-six'), (21500, 43553, 'forty-three thousand five hundred fifty-three'), (21501, 43230, 'forty-three thousand two hundred thirty'), (21502, 96068, 'ninety-six thousand sixty-eight'), (21503, 30703, 'thirty thousand seven hundred three'), (21504, 32280, 'thirty-two thousand two hundred eighty'), (21505, 33298, 'thirty-three thousand two hundred ninety-eight'), (21506, 116, 'one hundred sixteen'), (21507, 27980, 'twenty-seven thousand nine hundred eighty'), (21508, 88998, 'eighty-eight thousand nine hundred ninety-eight'), (21509, 6671, 'six thousand six hundred seventy-one'), (21510, 77334, 'seventy-seven thousand three hundred thirty-four'), (21511, 52785, 'fifty-two thousand seven hundred eighty-five'), (21512, 98105, 'ninety-eight thousand one hundred five'), (21513, 69644, 'sixty-nine thousand six hundred forty-four'), (21514, 74249, 'seventy-four thousand two hundred forty-nine'), (21515, 16255, 'sixteen thousand two hundred fifty-five'), (21516, 52519, 'fifty-two thousand five hundred nineteen'), (21517, 46078, 'forty-six thousand seventy-eight'), (21518, 5927, 'five thousand nine hundred twenty-seven'), (21519, 22752, 'twenty-two thousand seven hundred fifty-two'), (21520, 10649, 'ten thousand six hundred forty-nine'), (21521, 63954, 'sixty-three thousand nine hundred fifty-four'), (21522, 4592, 'four thousand five hundred ninety-two'), (21523, 49700, 'forty-nine thousand seven hundred'), (21524, 55095, 'fifty-five thousand ninety-five'), (21525, 38976, 'thirty-eight thousand nine hundred seventy-six'), (21526, 94723, 'ninety-four thousand seven hundred twenty-three'), (21527, 408, 'four hundred eight'), (21528, 38388, 'thirty-eight thousand three hundred eighty-eight'), (21529, 47010, 'forty-seven thousand ten'), (21530, 84061, 'eighty-four thousand sixty-one'), (21531, 74309, 'seventy-four thousand three hundred nine'), (21532, 56711, 'fifty-six thousand seven hundred eleven'), (21533, 66772, 'sixty-six thousand seven hundred seventy-two'), (21534, 44829, 'forty-four thousand eight hundred twenty-nine'), (21535, 8300, 'eight thousand three hundred'), (21536, 95808, 'ninety-five thousand eight hundred eight'), (21537, 20464, 'twenty thousand four hundred sixty-four'), (21538, 27975, 'twenty-seven thousand nine hundred seventy-five'), (21539, 76707, 'seventy-six thousand seven hundred seven'), (21540, 35786, 'thirty-five thousand seven hundred eighty-six'), (21541, 35084, 'thirty-five thousand eighty-four'), (21542, 54583, 'fifty-four thousand five hundred eighty-three'), (21543, 69139, 'sixty-nine thousand one hundred thirty-nine'), (21544, 96266, 'ninety-six thousand two hundred sixty-six'), (21545, 35711, 'thirty-five thousand seven hundred eleven'), (21546, 89930, 'eighty-nine thousand nine hundred thirty'), (21547, 60631, 'sixty thousand six hundred thirty-one'), (21548, 24819, 'twenty-four thousand eight hundred nineteen'), (21549, 54954, 'fifty-four thousand nine hundred fifty-four'), (21550, 6180, 'six thousand one hundred eighty'), (21551, 47423, 'forty-seven thousand four hundred twenty-three'), (21552, 85461, 'eighty-five thousand four hundred sixty-one'), (21553, 24326, 'twenty-four thousand three hundred twenty-six'), (21554, 68429, 'sixty-eight thousand four hundred twenty-nine'), (21555, 36851, 'thirty-six thousand eight hundred fifty-one'), (21556, 43300, 'forty-three thousand three hundred'), (21557, 24218, 'twenty-four thousand two hundred eighteen'), (21558, 42179, 'forty-two thousand one hundred seventy-nine'), (21559, 10842, 'ten thousand eight hundred forty-two'), (21560, 60317, 'sixty thousand three hundred seventeen'), (21561, 71231, 'seventy-one thousand two hundred thirty-one'), (21562, 96755, 'ninety-six thousand seven hundred fifty-five'), (21563, 12073, 'twelve thousand seventy-three'), (21564, 21163, 'twenty-one thousand one hundred sixty-three'), (21565, 75360, 'seventy-five thousand three hundred sixty'), (21566, 51552, 'fifty-one thousand five hundred fifty-two'), (21567, 36510, 'thirty-six thousand five hundred ten'), (21568, 37249, 'thirty-seven thousand two hundred forty-nine'), (21569, 63270, 'sixty-three thousand two hundred seventy'), (21570, 16033, 'sixteen thousand thirty-three'), (21571, 7032, 'seven thousand thirty-two'), (21572, 92291, 'ninety-two thousand two hundred ninety-one'), (21573, 56017, 'fifty-six thousand seventeen'), (21574, 4585, 'four thousand five hundred eighty-five'), (21575, 56625, 'fifty-six thousand six hundred twenty-five'), (21576, 6612, 'six thousand six hundred twelve'), (21577, 47209, 'forty-seven thousand two hundred nine'), (21578, 14142, 'fourteen thousand one hundred forty-two'), (21579, 51063, 'fifty-one thousand sixty-three'), (21580, 24900, 'twenty-four thousand nine hundred'), (21581, 39629, 'thirty-nine thousand six hundred twenty-nine'), (21582, 72295, 'seventy-two thousand two hundred ninety-five'), (21583, 98051, 'ninety-eight thousand fifty-one'), (21584, 71596, 'seventy-one thousand five hundred ninety-six'), (21585, 23687, 'twenty-three thousand six hundred eighty-seven'), (21586, 34442, 'thirty-four thousand four hundred forty-two'), (21587, 18350, 'eighteen thousand three hundred fifty'), (21588, 72191, 'seventy-two thousand one hundred ninety-one'), (21589, 91121, 'ninety-one thousand one hundred twenty-one'), (21590, 3782, 'three thousand seven hundred eighty-two'), (21591, 59975, 'fifty-nine thousand nine hundred seventy-five'), (21592, 27149, 'twenty-seven thousand one hundred forty-nine'), (21593, 67852, 'sixty-seven thousand eight hundred fifty-two'), (21594, 43474, 'forty-three thousand four hundred seventy-four'), (21595, 51697, 'fifty-one thousand six hundred ninety-seven'), (21596, 20393, 'twenty thousand three hundred ninety-three'), (21597, 83618, 'eighty-three thousand six hundred eighteen'), (21598, 38053, 'thirty-eight thousand fifty-three'), (21599, 45218, 'forty-five thousand two hundred eighteen'), (21600, 74579, 'seventy-four thousand five hundred seventy-nine'), (21601, 31325, 'thirty-one thousand three hundred twenty-five'), (21602, 33140, 'thirty-three thousand one hundred forty'), (21603, 41784, 'forty-one thousand seven hundred eighty-four'), (21604, 53609, 'fifty-three thousand six hundred nine'), (21605, 74438, 'seventy-four thousand four hundred thirty-eight'), (21606, 56396, 'fifty-six thousand three hundred ninety-six'), (21607, 37728, 'thirty-seven thousand seven hundred twenty-eight'), (21608, 63645, 'sixty-three thousand six hundred forty-five'), (21609, 44882, 'forty-four thousand eight hundred eighty-two'), (21610, 97523, 'ninety-seven thousand five hundred twenty-three'), (21611, 45885, 'forty-five thousand eight hundred eighty-five'), (21612, 56069, 'fifty-six thousand sixty-nine'), (21613, 30273, 'thirty thousand two hundred seventy-three'), (21614, 36231, 'thirty-six thousand two hundred thirty-one'), (21615, 70235, 'seventy thousand two hundred thirty-five'), (21616, 19374, 'nineteen thousand three hundred seventy-four'), (21617, 48150, 'forty-eight thousand one hundred fifty'), (21618, 86039, 'eighty-six thousand thirty-nine'), (21619, 33692, 'thirty-three thousand six hundred ninety-two'), (21620, 18126, 'eighteen thousand one hundred twenty-six'), (21621, 9590, 'nine thousand five hundred ninety'), (21622, 52473, 'fifty-two thousand four hundred seventy-three'), (21623, 88196, 'eighty-eight thousand one hundred ninety-six'), (21624, 72036, 'seventy-two thousand thirty-six'), (21625, 6648, 'six thousand six hundred forty-eight'), (21626, 22042, 'twenty-two thousand forty-two'), (21627, 55284, 'fifty-five thousand two hundred eighty-four'), (21628, 58590, 'fifty-eight thousand five hundred ninety'), (21629, 75661, 'seventy-five thousand six hundred sixty-one'), (21630, 19633, 'nineteen thousand six hundred thirty-three'), (21631, 93634, 'ninety-three thousand six hundred thirty-four'), (21632, 5846, 'five thousand eight hundred forty-six'), (21633, 63757, 'sixty-three thousand seven hundred fifty-seven'), (21634, 19301, 'nineteen thousand three hundred one'), (21635, 23088, 'twenty-three thousand eighty-eight'), (21636, 21377, 'twenty-one thousand three hundred seventy-seven'), (21637, 22607, 'twenty-two thousand six hundred seven'), (21638, 71996, 'seventy-one thousand nine hundred ninety-six'), (21639, 93096, 'ninety-three thousand ninety-six'), (21640, 67957, 'sixty-seven thousand nine hundred fifty-seven'), (21641, 40901, 'forty thousand nine hundred one'), (21642, 21383, 'twenty-one thousand three hundred eighty-three'), (21643, 38487, 'thirty-eight thousand four hundred eighty-seven'), (21644, 11345, 'eleven thousand three hundred forty-five'), (21645, 46675, 'forty-six thousand six hundred seventy-five'), (21646, 54171, 'fifty-four thousand one hundred seventy-one'), (21647, 48164, 'forty-eight thousand one hundred sixty-four'), (21648, 82545, 'eighty-two thousand five hundred forty-five'), (21649, 76308, 'seventy-six thousand three hundred eight'), (21650, 87557, 'eighty-seven thousand five hundred fifty-seven'), (21651, 2003, 'two thousand three'), (21652, 25270, 'twenty-five thousand two hundred seventy'), (21653, 44270, 'forty-four thousand two hundred seventy'), (21654, 44094, 'forty-four thousand ninety-four'), (21655, 90136, 'ninety thousand one hundred thirty-six'), (21656, 23592, 'twenty-three thousand five hundred ninety-two'), (21657, 61371, 'sixty-one thousand three hundred seventy-one'), (21658, 7358, 'seven thousand three hundred fifty-eight'), (21659, 48185, 'forty-eight thousand one hundred eighty-five'), (21660, 44888, 'forty-four thousand eight hundred eighty-eight'), (21661, 98955, 'ninety-eight thousand nine hundred fifty-five'), (21662, 79753, 'seventy-nine thousand seven hundred fifty-three'), (21663, 56902, 'fifty-six thousand nine hundred two'), (21664, 89821, 'eighty-nine thousand eight hundred twenty-one'), (21665, 68030, 'sixty-eight thousand thirty'), (21666, 11478, 'eleven thousand four hundred seventy-eight'), (21667, 27302, 'twenty-seven thousand three hundred two'), (21668, 55906, 'fifty-five thousand nine hundred six'), (21669, 87981, 'eighty-seven thousand nine hundred eighty-one'), (21670, 57950, 'fifty-seven thousand nine hundred fifty'), (21671, 97520, 'ninety-seven thousand five hundred twenty'), (21672, 6202, 'six thousand two hundred two'), (21673, 3889, 'three thousand eight hundred eighty-nine'), (21674, 3999, 'three thousand nine hundred ninety-nine'), (21675, 13411, 'thirteen thousand four hundred eleven'), (21676, 93780, 'ninety-three thousand seven hundred eighty'), (21677, 49455, 'forty-nine thousand four hundred fifty-five'), (21678, 77355, 'seventy-seven thousand three hundred fifty-five'), (21679, 7582, 'seven thousand five hundred eighty-two'), (21680, 82564, 'eighty-two thousand five hundred sixty-four'), (21681, 22752, 'twenty-two thousand seven hundred fifty-two'), (21682, 43913, 'forty-three thousand nine hundred thirteen'), (21683, 896, 'eight hundred ninety-six'), (21684, 17095, 'seventeen thousand ninety-five'), (21685, 76382, 'seventy-six thousand three hundred eighty-two'), (21686, 57089, 'fifty-seven thousand eighty-nine'), (21687, 25359, 'twenty-five thousand three hundred fifty-nine'), (21688, 97498, 'ninety-seven thousand four hundred ninety-eight'), (21689, 82681, 'eighty-two thousand six hundred eighty-one'), (21690, 91903, 'ninety-one thousand nine hundred three'), (21691, 53041, 'fifty-three thousand forty-one'), (21692, 18997, 'eighteen thousand nine hundred ninety-seven'), (21693, 11013, 'eleven thousand thirteen'), (21694, 90225, 'ninety thousand two hundred twenty-five'), (21695, 51074, 'fifty-one thousand seventy-four'), (21696, 51715, 'fifty-one thousand seven hundred fifteen'), (21697, 95875, 'ninety-five thousand eight hundred seventy-five'), (21698, 35354, 'thirty-five thousand three hundred fifty-four'), (21699, 76788, 'seventy-six thousand seven hundred eighty-eight'), (21700, 68918, 'sixty-eight thousand nine hundred eighteen'), (21701, 94228, 'ninety-four thousand two hundred twenty-eight'), (21702, 59766, 'fifty-nine thousand seven hundred sixty-six'), (21703, 33003, 'thirty-three thousand three'), (21704, 98826, 'ninety-eight thousand eight hundred twenty-six'), (21705, 42836, 'forty-two thousand eight hundred thirty-six'), (21706, 8421, 'eight thousand four hundred twenty-one'), (21707, 18343, 'eighteen thousand three hundred forty-three'), (21708, 31312, 'thirty-one thousand three hundred twelve'), (21709, 24263, 'twenty-four thousand two hundred sixty-three'), (21710, 6077, 'six thousand seventy-seven'), (21711, 85141, 'eighty-five thousand one hundred forty-one'), (21712, 93503, 'ninety-three thousand five hundred three'), (21713, 27763, 'twenty-seven thousand seven hundred sixty-three'), (21714, 59264, 'fifty-nine thousand two hundred sixty-four'), (21715, 86597, 'eighty-six thousand five hundred ninety-seven'), (21716, 21684, 'twenty-one thousand six hundred eighty-four'), (21717, 84336, 'eighty-four thousand three hundred thirty-six'), (21718, 39006, 'thirty-nine thousand six'), (21719, 75448, 'seventy-five thousand four hundred forty-eight'), (21720, 64955, 'sixty-four thousand nine hundred fifty-five'), (21721, 80306, 'eighty thousand three hundred six'), (21722, 4259, 'four thousand two hundred fifty-nine'), (21723, 20127, 'twenty thousand one hundred twenty-seven'), (21724, 54455, 'fifty-four thousand four hundred fifty-five'), (21725, 53094, 'fifty-three thousand ninety-four'), (21726, 44155, 'forty-four thousand one hundred fifty-five'), (21727, 55567, 'fifty-five thousand five hundred sixty-seven'), (21728, 42008, 'forty-two thousand eight'), (21729, 61458, 'sixty-one thousand four hundred fifty-eight'), (21730, 62861, 'sixty-two thousand eight hundred sixty-one'), (21731, 45073, 'forty-five thousand seventy-three'), (21732, 56154, 'fifty-six thousand one hundred fifty-four'), (21733, 57795, 'fifty-seven thousand seven hundred ninety-five'), (21734, 16759, 'sixteen thousand seven hundred fifty-nine'), (21735, 81128, 'eighty-one thousand one hundred twenty-eight'), (21736, 15609, 'fifteen thousand six hundred nine'), (21737, 21224, 'twenty-one thousand two hundred twenty-four'), (21738, 70196, 'seventy thousand one hundred ninety-six'), (21739, 70886, 'seventy thousand eight hundred eighty-six'), (21740, 95113, 'ninety-five thousand one hundred thirteen'), (21741, 89945, 'eighty-nine thousand nine hundred forty-five'), (21742, 55340, 'fifty-five thousand three hundred forty'), (21743, 24318, 'twenty-four thousand three hundred eighteen'), (21744, 47877, 'forty-seven thousand eight hundred seventy-seven'), (21745, 48828, 'forty-eight thousand eight hundred twenty-eight'), (21746, 58394, 'fifty-eight thousand three hundred ninety-four'), (21747, 97857, 'ninety-seven thousand eight hundred fifty-seven'), (21748, 54130, 'fifty-four thousand one hundred thirty'), (21749, 47990, 'forty-seven thousand nine hundred ninety'), (21750, 45847, 'forty-five thousand eight hundred forty-seven'), (21751, 72573, 'seventy-two thousand five hundred seventy-three'), (21752, 6878, 'six thousand eight hundred seventy-eight'), (21753, 98074, 'ninety-eight thousand seventy-four'), (21754, 83681, 'eighty-three thousand six hundred eighty-one'), (21755, 37513, 'thirty-seven thousand five hundred thirteen'), (21756, 71943, 'seventy-one thousand nine hundred forty-three'), (21757, 72246, 'seventy-two thousand two hundred forty-six'), (21758, 5865, 'five thousand eight hundred sixty-five'), (21759, 78366, 'seventy-eight thousand three hundred sixty-six'), (21760, 87169, 'eighty-seven thousand one hundred sixty-nine'), (21761, 64368, 'sixty-four thousand three hundred sixty-eight'), (21762, 82291, 'eighty-two thousand two hundred ninety-one'), (21763, 63016, 'sixty-three thousand sixteen'), (21764, 16322, 'sixteen thousand three hundred twenty-two'), (21765, 92715, 'ninety-two thousand seven hundred fifteen'), (21766, 92702, 'ninety-two thousand seven hundred two'), (21767, 71967, 'seventy-one thousand nine hundred sixty-seven'), (21768, 47045, 'forty-seven thousand forty-five'), (21769, 27418, 'twenty-seven thousand four hundred eighteen'), (21770, 75177, 'seventy-five thousand one hundred seventy-seven'), (21771, 4830, 'four thousand eight hundred thirty'), (21772, 88469, 'eighty-eight thousand four hundred sixty-nine'), (21773, 59759, 'fifty-nine thousand seven hundred fifty-nine'), (21774, 34590, 'thirty-four thousand five hundred ninety'), (21775, 53479, 'fifty-three thousand four hundred seventy-nine'), (21776, 91276, 'ninety-one thousand two hundred seventy-six'), (21777, 37153, 'thirty-seven thousand one hundred fifty-three'), (21778, 69469, 'sixty-nine thousand four hundred sixty-nine'), (21779, 15184, 'fifteen thousand one hundred eighty-four'), (21780, 81515, 'eighty-one thousand five hundred fifteen'), (21781, 30383, 'thirty thousand three hundred eighty-three'), (21782, 29014, 'twenty-nine thousand fourteen'), (21783, 30867, 'thirty thousand eight hundred sixty-seven'), (21784, 70006, 'seventy thousand six'), (21785, 15993, 'fifteen thousand nine hundred ninety-three'), (21786, 32971, 'thirty-two thousand nine hundred seventy-one'), (21787, 41041, 'forty-one thousand forty-one'), (21788, 70971, 'seventy thousand nine hundred seventy-one'), (21789, 73748, 'seventy-three thousand seven hundred forty-eight'), (21790, 96042, 'ninety-six thousand forty-two'), (21791, 42693, 'forty-two thousand six hundred ninety-three'), (21792, 45091, 'forty-five thousand ninety-one'), (21793, 27338, 'twenty-seven thousand three hundred thirty-eight'), (21794, 6813, 'six thousand eight hundred thirteen'), (21795, 71006, 'seventy-one thousand six'), (21796, 7348, 'seven thousand three hundred forty-eight'), (21797, 15337, 'fifteen thousand three hundred thirty-seven'), (21798, 15195, 'fifteen thousand one hundred ninety-five'), (21799, 2759, 'two thousand seven hundred fifty-nine'), (21800, 57493, 'fifty-seven thousand four hundred ninety-three'), (21801, 51435, 'fifty-one thousand four hundred thirty-five'), (21802, 88032, 'eighty-eight thousand thirty-two'), (21803, 96420, 'ninety-six thousand four hundred twenty'), (21804, 3243, 'three thousand two hundred forty-three'), (21805, 15372, 'fifteen thousand three hundred seventy-two'), (21806, 30027, 'thirty thousand twenty-seven'), (21807, 22357, 'twenty-two thousand three hundred fifty-seven'), (21808, 45717, 'forty-five thousand seven hundred seventeen'), (21809, 86727, 'eighty-six thousand seven hundred twenty-seven'), (21810, 31298, 'thirty-one thousand two hundred ninety-eight'), (21811, 15970, 'fifteen thousand nine hundred seventy'), (21812, 35482, 'thirty-five thousand four hundred eighty-two'), (21813, 17327, 'seventeen thousand three hundred twenty-seven'), (21814, 83067, 'eighty-three thousand sixty-seven'), (21815, 69417, 'sixty-nine thousand four hundred seventeen'), (21816, 80719, 'eighty thousand seven hundred nineteen'), (21817, 17721, 'seventeen thousand seven hundred twenty-one'), (21818, 40205, 'forty thousand two hundred five'), (21819, 54727, 'fifty-four thousand seven hundred twenty-seven'), (21820, 64993, 'sixty-four thousand nine hundred ninety-three'), (21821, 52018, 'fifty-two thousand eighteen'), (21822, 18158, 'eighteen thousand one hundred fifty-eight'), (21823, 10825, 'ten thousand eight hundred twenty-five'), (21824, 75146, 'seventy-five thousand one hundred forty-six'), (21825, 17154, 'seventeen thousand one hundred fifty-four'), (21826, 13380, 'thirteen thousand three hundred eighty'), (21827, 65122, 'sixty-five thousand one hundred twenty-two'), (21828, 10834, 'ten thousand eight hundred thirty-four'), (21829, 84986, 'eighty-four thousand nine hundred eighty-six'), (21830, 7418, 'seven thousand four hundred eighteen'), (21831, 89234, 'eighty-nine thousand two hundred thirty-four'), (21832, 43613, 'forty-three thousand six hundred thirteen'), (21833, 10496, 'ten thousand four hundred ninety-six'), (21834, 71044, 'seventy-one thousand forty-four'), (21835, 8959, 'eight thousand nine hundred fifty-nine'), (21836, 66992, 'sixty-six thousand nine hundred ninety-two'), (21837, 95021, 'ninety-five thousand twenty-one'), (21838, 47158, 'forty-seven thousand one hundred fifty-eight'), (21839, 7794, 'seven thousand seven hundred ninety-four'), (21840, 90488, 'ninety thousand four hundred eighty-eight'), (21841, 71718, 'seventy-one thousand seven hundred eighteen'), (21842, 44411, 'forty-four thousand four hundred eleven'), (21843, 6845, 'six thousand eight hundred forty-five'), (21844, 50752, 'fifty thousand seven hundred fifty-two'), (21845, 51346, 'fifty-one thousand three hundred forty-six'), (21846, 29765, 'twenty-nine thousand seven hundred sixty-five'), (21847, 10943, 'ten thousand nine hundred forty-three'), (21848, 54093, 'fifty-four thousand ninety-three'), (21849, 44924, 'forty-four thousand nine hundred twenty-four'), (21850, 14378, 'fourteen thousand three hundred seventy-eight'), (21851, 44930, 'forty-four thousand nine hundred thirty'), (21852, 61027, 'sixty-one thousand twenty-seven'), (21853, 51011, 'fifty-one thousand eleven'), (21854, 14274, 'fourteen thousand two hundred seventy-four'), (21855, 30475, 'thirty thousand four hundred seventy-five'), (21856, 577, 'five hundred seventy-seven'), (21857, 52683, 'fifty-two thousand six hundred eighty-three'), (21858, 80265, 'eighty thousand two hundred sixty-five'), (21859, 50849, 'fifty thousand eight hundred forty-nine'), (21860, 22498, 'twenty-two thousand four hundred ninety-eight'), (21861, 20172, 'twenty thousand one hundred seventy-two'), (21862, 1224, 'one thousand two hundred twenty-four'), (21863, 93405, 'ninety-three thousand four hundred five'), (21864, 80266, 'eighty thousand two hundred sixty-six'), (21865, 66113, 'sixty-six thousand one hundred thirteen'), (21866, 53898, 'fifty-three thousand eight hundred ninety-eight'), (21867, 92036, 'ninety-two thousand thirty-six'), (21868, 17306, 'seventeen thousand three hundred six'), (21869, 71224, 'seventy-one thousand two hundred twenty-four'), (21870, 33162, 'thirty-three thousand one hundred sixty-two'), (21871, 44034, 'forty-four thousand thirty-four'), (21872, 87085, 'eighty-seven thousand eighty-five'), (21873, 6318, 'six thousand three hundred eighteen'), (21874, 33370, 'thirty-three thousand three hundred seventy'), (21875, 23193, 'twenty-three thousand one hundred ninety-three'), (21876, 50420, 'fifty thousand four hundred twenty'), (21877, 88812, 'eighty-eight thousand eight hundred twelve'), (21878, 40410, 'forty thousand four hundred ten'), (21879, 85410, 'eighty-five thousand four hundred ten'), (21880, 72488, 'seventy-two thousand four hundred eighty-eight'), (21881, 5319, 'five thousand three hundred nineteen'), (21882, 48327, 'forty-eight thousand three hundred twenty-seven'), (21883, 12073, 'twelve thousand seventy-three'), (21884, 49639, 'forty-nine thousand six hundred thirty-nine'), (21885, 14911, 'fourteen thousand nine hundred eleven'), (21886, 40335, 'forty thousand three hundred thirty-five'), (21887, 95325, 'ninety-five thousand three hundred twenty-five'), (21888, 74576, 'seventy-four thousand five hundred seventy-six'), (21889, 25168, 'twenty-five thousand one hundred sixty-eight'), (21890, 27347, 'twenty-seven thousand three hundred forty-seven'), (21891, 18439, 'eighteen thousand four hundred thirty-nine'), (21892, 5233, 'five thousand two hundred thirty-three'), (21893, 57698, 'fifty-seven thousand six hundred ninety-eight'), (21894, 57402, 'fifty-seven thousand four hundred two'), (21895, 4832, 'four thousand eight hundred thirty-two'), (21896, 45902, 'forty-five thousand nine hundred two'), (21897, 34049, 'thirty-four thousand forty-nine'), (21898, 84462, 'eighty-four thousand four hundred sixty-two'), (21899, 95616, 'ninety-five thousand six hundred sixteen'), (21900, 12024, 'twelve thousand twenty-four'), (21901, 98842, 'ninety-eight thousand eight hundred forty-two'), (21902, 94643, 'ninety-four thousand six hundred forty-three'), (21903, 85409, 'eighty-five thousand four hundred nine'), (21904, 99178, 'ninety-nine thousand one hundred seventy-eight'), (21905, 87776, 'eighty-seven thousand seven hundred seventy-six'), (21906, 60231, 'sixty thousand two hundred thirty-one'), (21907, 32094, 'thirty-two thousand ninety-four'), (21908, 56176, 'fifty-six thousand one hundred seventy-six'), (21909, 56485, 'fifty-six thousand four hundred eighty-five'), (21910, 99822, 'ninety-nine thousand eight hundred twenty-two'), (21911, 68217, 'sixty-eight thousand two hundred seventeen'), (21912, 5074, 'five thousand seventy-four'), (21913, 42960, 'forty-two thousand nine hundred sixty'), (21914, 97703, 'ninety-seven thousand seven hundred three'), (21915, 88512, 'eighty-eight thousand five hundred twelve'), (21916, 57447, 'fifty-seven thousand four hundred forty-seven'), (21917, 76208, 'seventy-six thousand two hundred eight'), (21918, 3829, 'three thousand eight hundred twenty-nine'), (21919, 39949, 'thirty-nine thousand nine hundred forty-nine'), (21920, 25143, 'twenty-five thousand one hundred forty-three'), (21921, 34174, 'thirty-four thousand one hundred seventy-four'), (21922, 56170, 'fifty-six thousand one hundred seventy'), (21923, 41775, 'forty-one thousand seven hundred seventy-five'), (21924, 62020, 'sixty-two thousand twenty'), (21925, 39601, 'thirty-nine thousand six hundred one'), (21926, 90291, 'ninety thousand two hundred ninety-one'), (21927, 11348, 'eleven thousand three hundred forty-eight'), (21928, 44779, 'forty-four thousand seven hundred seventy-nine'), (21929, 16196, 'sixteen thousand one hundred ninety-six'), (21930, 30082, 'thirty thousand eighty-two'), (21931, 331, 'three hundred thirty-one'), (21932, 94197, 'ninety-four thousand one hundred ninety-seven'), (21933, 44647, 'forty-four thousand six hundred forty-seven'), (21934, 13987, 'thirteen thousand nine hundred eighty-seven'), (21935, 75456, 'seventy-five thousand four hundred fifty-six'), (21936, 93328, 'ninety-three thousand three hundred twenty-eight'), (21937, 77801, 'seventy-seven thousand eight hundred one'), (21938, 37686, 'thirty-seven thousand six hundred eighty-six'), (21939, 6634, 'six thousand six hundred thirty-four'), (21940, 97951, 'ninety-seven thousand nine hundred fifty-one'), (21941, 99364, 'ninety-nine thousand three hundred sixty-four'), (21942, 96015, 'ninety-six thousand fifteen'), (21943, 20453, 'twenty thousand four hundred fifty-three'), (21944, 74139, 'seventy-four thousand one hundred thirty-nine'), (21945, 357, 'three hundred fifty-seven'), (21946, 31582, 'thirty-one thousand five hundred eighty-two'), (21947, 9979, 'nine thousand nine hundred seventy-nine'), (21948, 93020, 'ninety-three thousand twenty'), (21949, 10926, 'ten thousand nine hundred twenty-six'), (21950, 59299, 'fifty-nine thousand two hundred ninety-nine'), (21951, 98702, 'ninety-eight thousand seven hundred two'), (21952, 82263, 'eighty-two thousand two hundred sixty-three'), (21953, 10773, 'ten thousand seven hundred seventy-three'), (21954, 15341, 'fifteen thousand three hundred forty-one'), (21955, 68265, 'sixty-eight thousand two hundred sixty-five'), (21956, 77955, 'seventy-seven thousand nine hundred fifty-five'), (21957, 58731, 'fifty-eight thousand seven hundred thirty-one'), (21958, 14185, 'fourteen thousand one hundred eighty-five'), (21959, 85254, 'eighty-five thousand two hundred fifty-four'), (21960, 61502, 'sixty-one thousand five hundred two'), (21961, 86552, 'eighty-six thousand five hundred fifty-two'), (21962, 41630, 'forty-one thousand six hundred thirty'), (21963, 41950, 'forty-one thousand nine hundred fifty'), (21964, 57939, 'fifty-seven thousand nine hundred thirty-nine'), (21965, 40000, 'forty thousand'), (21966, 60530, 'sixty thousand five hundred thirty'), (21967, 18034, 'eighteen thousand thirty-four'), (21968, 84431, 'eighty-four thousand four hundred thirty-one'), (21969, 15179, 'fifteen thousand one hundred seventy-nine'), (21970, 74911, 'seventy-four thousand nine hundred eleven'), (21971, 84538, 'eighty-four thousand five hundred thirty-eight'), (21972, 2799, 'two thousand seven hundred ninety-nine'), (21973, 85043, 'eighty-five thousand forty-three'), (21974, 42748, 'forty-two thousand seven hundred forty-eight'), (21975, 84672, 'eighty-four thousand six hundred seventy-two'), (21976, 21016, 'twenty-one thousand sixteen'), (21977, 91151, 'ninety-one thousand one hundred fifty-one'), (21978, 31399, 'thirty-one thousand three hundred ninety-nine'), (21979, 582, 'five hundred eighty-two'), (21980, 77696, 'seventy-seven thousand six hundred ninety-six'), (21981, 15770, 'fifteen thousand seven hundred seventy'), (21982, 77355, 'seventy-seven thousand three hundred fifty-five'), (21983, 78835, 'seventy-eight thousand eight hundred thirty-five'), (21984, 49318, 'forty-nine thousand three hundred eighteen'), (21985, 38851, 'thirty-eight thousand eight hundred fifty-one'), (21986, 95041, 'ninety-five thousand forty-one'), (21987, 17660, 'seventeen thousand six hundred sixty'), (21988, 36904, 'thirty-six thousand nine hundred four'), (21989, 18448, 'eighteen thousand four hundred forty-eight'), (21990, 32593, 'thirty-two thousand five hundred ninety-three'), (21991, 30738, 'thirty thousand seven hundred thirty-eight'), (21992, 51261, 'fifty-one thousand two hundred sixty-one'), (21993, 31530, 'thirty-one thousand five hundred thirty'), (21994, 7079, 'seven thousand seventy-nine'), (21995, 24763, 'twenty-four thousand seven hundred sixty-three'), (21996, 13091, 'thirteen thousand ninety-one'), (21997, 83091, 'eighty-three thousand ninety-one'), (21998, 86734, 'eighty-six thousand seven hundred thirty-four'), (21999, 97011, 'ninety-seven thousand eleven'), (22000, 69655, 'sixty-nine thousand six hundred fifty-five'), (22001, 93224, 'ninety-three thousand two hundred twenty-four'), (22002, 47303, 'forty-seven thousand three hundred three'), (22003, 82881, 'eighty-two thousand eight hundred eighty-one'), (22004, 76860, 'seventy-six thousand eight hundred sixty'), (22005, 32044, 'thirty-two thousand forty-four'), (22006, 34741, 'thirty-four thousand seven hundred forty-one'), (22007, 4946, 'four thousand nine hundred forty-six'), (22008, 93278, 'ninety-three thousand two hundred seventy-eight'), (22009, 99396, 'ninety-nine thousand three hundred ninety-six'), (22010, 66752, 'sixty-six thousand seven hundred fifty-two'), (22011, 73630, 'seventy-three thousand six hundred thirty'), (22012, 49462, 'forty-nine thousand four hundred sixty-two'), (22013, 12303, 'twelve thousand three hundred three'), (22014, 60299, 'sixty thousand two hundred ninety-nine'), (22015, 33698, 'thirty-three thousand six hundred ninety-eight'), (22016, 94715, 'ninety-four thousand seven hundred fifteen'), (22017, 69889, 'sixty-nine thousand eight hundred eighty-nine'), (22018, 78804, 'seventy-eight thousand eight hundred four'), (22019, 31610, 'thirty-one thousand six hundred ten'), (22020, 75894, 'seventy-five thousand eight hundred ninety-four'), (22021, 13506, 'thirteen thousand five hundred six'), (22022, 37136, 'thirty-seven thousand one hundred thirty-six'), (22023, 73834, 'seventy-three thousand eight hundred thirty-four'), (22024, 18252, 'eighteen thousand two hundred fifty-two'), (22025, 7241, 'seven thousand two hundred forty-one'), (22026, 21953, 'twenty-one thousand nine hundred fifty-three'), (22027, 15659, 'fifteen thousand six hundred fifty-nine'), (22028, 4825, 'four thousand eight hundred twenty-five'), (22029, 40827, 'forty thousand eight hundred twenty-seven'), (22030, 94097, 'ninety-four thousand ninety-seven'), (22031, 22920, 'twenty-two thousand nine hundred twenty'), (22032, 86926, 'eighty-six thousand nine hundred twenty-six'), (22033, 4580, 'four thousand five hundred eighty'), (22034, 17248, 'seventeen thousand two hundred forty-eight'), (22035, 69469, 'sixty-nine thousand four hundred sixty-nine'), (22036, 55195, 'fifty-five thousand one hundred ninety-five'), (22037, 31872, 'thirty-one thousand eight hundred seventy-two'), (22038, 57767, 'fifty-seven thousand seven hundred sixty-seven'), (22039, 53819, 'fifty-three thousand eight hundred nineteen'), (22040, 92343, 'ninety-two thousand three hundred forty-three'), (22041, 20570, 'twenty thousand five hundred seventy'), (22042, 34785, 'thirty-four thousand seven hundred eighty-five'), (22043, 6321, 'six thousand three hundred twenty-one'), (22044, 55777, 'fifty-five thousand seven hundred seventy-seven'), (22045, 56007, 'fifty-six thousand seven'), (22046, 80652, 'eighty thousand six hundred fifty-two'), (22047, 87857, 'eighty-seven thousand eight hundred fifty-seven'), (22048, 55133, 'fifty-five thousand one hundred thirty-three'), (22049, 81629, 'eighty-one thousand six hundred twenty-nine'), (22050, 94774, 'ninety-four thousand seven hundred seventy-four'), (22051, 83117, 'eighty-three thousand one hundred seventeen'), (22052, 96431, 'ninety-six thousand four hundred thirty-one'), (22053, 14775, 'fourteen thousand seven hundred seventy-five'), (22054, 3913, 'three thousand nine hundred thirteen'), (22055, 56632, 'fifty-six thousand six hundred thirty-two'), (22056, 24913, 'twenty-four thousand nine hundred thirteen'), (22057, 49614, 'forty-nine thousand six hundred fourteen'), (22058, 91715, 'ninety-one thousand seven hundred fifteen'), (22059, 96327, 'ninety-six thousand three hundred twenty-seven'), (22060, 59990, 'fifty-nine thousand nine hundred ninety'), (22061, 49349, 'forty-nine thousand three hundred forty-nine'), (22062, 7848, 'seven thousand eight hundred forty-eight'), (22063, 93977, 'ninety-three thousand nine hundred seventy-seven'), (22064, 6369, 'six thousand three hundred sixty-nine'), (22065, 84992, 'eighty-four thousand nine hundred ninety-two'), (22066, 25892, 'twenty-five thousand eight hundred ninety-two'), (22067, 59508, 'fifty-nine thousand five hundred eight'), (22068, 54796, 'fifty-four thousand seven hundred ninety-six'), (22069, 51376, 'fifty-one thousand three hundred seventy-six'), (22070, 98728, 'ninety-eight thousand seven hundred twenty-eight'), (22071, 603, 'six hundred three'), (22072, 3197, 'three thousand one hundred ninety-seven'), (22073, 2058, 'two thousand fifty-eight'), (22074, 63116, 'sixty-three thousand one hundred sixteen'), (22075, 32420, 'thirty-two thousand four hundred twenty'), (22076, 21816, 'twenty-one thousand eight hundred sixteen'), (22077, 55083, 'fifty-five thousand eighty-three'), (22078, 24875, 'twenty-four thousand eight hundred seventy-five'), (22079, 17915, 'seventeen thousand nine hundred fifteen'), (22080, 6023, 'six thousand twenty-three'), (22081, 18300, 'eighteen thousand three hundred'), (22082, 25723, 'twenty-five thousand seven hundred twenty-three'), (22083, 46304, 'forty-six thousand three hundred four'), (22084, 99753, 'ninety-nine thousand seven hundred fifty-three'), (22085, 84480, 'eighty-four thousand four hundred eighty'), (22086, 74206, 'seventy-four thousand two hundred six'), (22087, 21578, 'twenty-one thousand five hundred seventy-eight'), (22088, 99796, 'ninety-nine thousand seven hundred ninety-six'), (22089, 4436, 'four thousand four hundred thirty-six'), (22090, 9006, 'nine thousand six'), (22091, 78406, 'seventy-eight thousand four hundred six'), (22092, 40100, 'forty thousand one hundred'), (22093, 57556, 'fifty-seven thousand five hundred fifty-six'), (22094, 17043, 'seventeen thousand forty-three'), (22095, 46318, 'forty-six thousand three hundred eighteen'), (22096, 62851, 'sixty-two thousand eight hundred fifty-one'), (22097, 85693, 'eighty-five thousand six hundred ninety-three'), (22098, 3326, 'three thousand three hundred twenty-six'), (22099, 67248, 'sixty-seven thousand two hundred forty-eight'), (22100, 31801, 'thirty-one thousand eight hundred one'), (22101, 98229, 'ninety-eight thousand two hundred twenty-nine'), (22102, 94234, 'ninety-four thousand two hundred thirty-four'), (22103, 71103, 'seventy-one thousand one hundred three'), (22104, 30672, 'thirty thousand six hundred seventy-two'), (22105, 80423, 'eighty thousand four hundred twenty-three'), (22106, 65196, 'sixty-five thousand one hundred ninety-six'), (22107, 21399, 'twenty-one thousand three hundred ninety-nine'), (22108, 86154, 'eighty-six thousand one hundred fifty-four'), (22109, 23339, 'twenty-three thousand three hundred thirty-nine'), (22110, 71764, 'seventy-one thousand seven hundred sixty-four'), (22111, 38476, 'thirty-eight thousand four hundred seventy-six'), (22112, 63054, 'sixty-three thousand fifty-four'), (22113, 52770, 'fifty-two thousand seven hundred seventy'), (22114, 70640, 'seventy thousand six hundred forty'), (22115, 17870, 'seventeen thousand eight hundred seventy'), (22116, 52605, 'fifty-two thousand six hundred five'), (22117, 81158, 'eighty-one thousand one hundred fifty-eight'), (22118, 44655, 'forty-four thousand six hundred fifty-five'), (22119, 84621, 'eighty-four thousand six hundred twenty-one'), (22120, 64086, 'sixty-four thousand eighty-six'), (22121, 85673, 'eighty-five thousand six hundred seventy-three'), (22122, 10842, 'ten thousand eight hundred forty-two'), (22123, 36601, 'thirty-six thousand six hundred one'), (22124, 52509, 'fifty-two thousand five hundred nine'), (22125, 4652, 'four thousand six hundred fifty-two'), (22126, 54570, 'fifty-four thousand five hundred seventy'), (22127, 21673, 'twenty-one thousand six hundred seventy-three'), (22128, 20264, 'twenty thousand two hundred sixty-four'), (22129, 74680, 'seventy-four thousand six hundred eighty'), (22130, 83816, 'eighty-three thousand eight hundred sixteen'), (22131, 10604, 'ten thousand six hundred four'), (22132, 34949, 'thirty-four thousand nine hundred forty-nine'), (22133, 24980, 'twenty-four thousand nine hundred eighty'), (22134, 86003, 'eighty-six thousand three'), (22135, 94893, 'ninety-four thousand eight hundred ninety-three'), (22136, 70909, 'seventy thousand nine hundred nine'), (22137, 2554, 'two thousand five hundred fifty-four'), (22138, 59340, 'fifty-nine thousand three hundred forty'), (22139, 42055, 'forty-two thousand fifty-five'), (22140, 72185, 'seventy-two thousand one hundred eighty-five'), (22141, 3377, 'three thousand three hundred seventy-seven'), (22142, 23210, 'twenty-three thousand two hundred ten'), (22143, 25843, 'twenty-five thousand eight hundred forty-three'), (22144, 59450, 'fifty-nine thousand four hundred fifty'), (22145, 79508, 'seventy-nine thousand five hundred eight'), (22146, 48953, 'forty-eight thousand nine hundred fifty-three'), (22147, 59022, 'fifty-nine thousand twenty-two'), (22148, 57755, 'fifty-seven thousand seven hundred fifty-five'), (22149, 67545, 'sixty-seven thousand five hundred forty-five'), (22150, 12884, 'twelve thousand eight hundred eighty-four'), (22151, 25185, 'twenty-five thousand one hundred eighty-five'), (22152, 99814, 'ninety-nine thousand eight hundred fourteen'), (22153, 59583, 'fifty-nine thousand five hundred eighty-three'), (22154, 5526, 'five thousand five hundred twenty-six'), (22155, 51770, 'fifty-one thousand seven hundred seventy'), (22156, 60081, 'sixty thousand eighty-one'), (22157, 78481, 'seventy-eight thousand four hundred eighty-one'), (22158, 57611, 'fifty-seven thousand six hundred eleven'), (22159, 19059, 'nineteen thousand fifty-nine'), (22160, 99523, 'ninety-nine thousand five hundred twenty-three'), (22161, 69602, 'sixty-nine thousand six hundred two'), (22162, 9373, 'nine thousand three hundred seventy-three'), (22163, 81414, 'eighty-one thousand four hundred fourteen'), (22164, 16185, 'sixteen thousand one hundred eighty-five'), (22165, 71585, 'seventy-one thousand five hundred eighty-five'), (22166, 40341, 'forty thousand three hundred forty-one'), (22167, 31501, 'thirty-one thousand five hundred one'), (22168, 68361, 'sixty-eight thousand three hundred sixty-one'), (22169, 96746, 'ninety-six thousand seven hundred forty-six'), (22170, 59386, 'fifty-nine thousand three hundred eighty-six'), (22171, 41805, 'forty-one thousand eight hundred five'), (22172, 37704, 'thirty-seven thousand seven hundred four'), (22173, 85682, 'eighty-five thousand six hundred eighty-two'), (22174, 84377, 'eighty-four thousand three hundred seventy-seven'), (22175, 88395, 'eighty-eight thousand three hundred ninety-five'), (22176, 79787, 'seventy-nine thousand seven hundred eighty-seven'), (22177, 28358, 'twenty-eight thousand three hundred fifty-eight'), (22178, 84915, 'eighty-four thousand nine hundred fifteen'), (22179, 3348, 'three thousand three hundred forty-eight'), (22180, 99217, 'ninety-nine thousand two hundred seventeen'), (22181, 79639, 'seventy-nine thousand six hundred thirty-nine'), (22182, 81589, 'eighty-one thousand five hundred eighty-nine'), (22183, 34880, 'thirty-four thousand eight hundred eighty'), (22184, 10562, 'ten thousand five hundred sixty-two'), (22185, 70863, 'seventy thousand eight hundred sixty-three'), (22186, 27485, 'twenty-seven thousand four hundred eighty-five'), (22187, 67005, 'sixty-seven thousand five'), (22188, 33244, 'thirty-three thousand two hundred forty-four'), (22189, 449, 'four hundred forty-nine'), (22190, 53850, 'fifty-three thousand eight hundred fifty'), (22191, 71572, 'seventy-one thousand five hundred seventy-two'), (22192, 26332, 'twenty-six thousand three hundred thirty-two'), (22193, 89696, 'eighty-nine thousand six hundred ninety-six'), (22194, 67745, 'sixty-seven thousand seven hundred forty-five'), (22195, 39639, 'thirty-nine thousand six hundred thirty-nine'), (22196, 18833, 'eighteen thousand eight hundred thirty-three'), (22197, 48640, 'forty-eight thousand six hundred forty'), (22198, 73821, 'seventy-three thousand eight hundred twenty-one'), (22199, 19825, 'nineteen thousand eight hundred twenty-five'), (22200, 99062, 'ninety-nine thousand sixty-two'), (22201, 72691, 'seventy-two thousand six hundred ninety-one'), (22202, 68914, 'sixty-eight thousand nine hundred fourteen'), (22203, 1589, 'one thousand five hundred eighty-nine'), (22204, 93983, 'ninety-three thousand nine hundred eighty-three'), (22205, 85496, 'eighty-five thousand four hundred ninety-six'), (22206, 68038, 'sixty-eight thousand thirty-eight'), (22207, 70007, 'seventy thousand seven'), (22208, 35298, 'thirty-five thousand two hundred ninety-eight'), (22209, 90026, 'ninety thousand twenty-six'), (22210, 80100, 'eighty thousand one hundred'), (22211, 57088, 'fifty-seven thousand eighty-eight'), (22212, 88140, 'eighty-eight thousand one hundred forty'), (22213, 49802, 'forty-nine thousand eight hundred two'), (22214, 38558, 'thirty-eight thousand five hundred fifty-eight'), (22215, 39918, 'thirty-nine thousand nine hundred eighteen'), (22216, 94325, 'ninety-four thousand three hundred twenty-five'), (22217, 43163, 'forty-three thousand one hundred sixty-three'), (22218, 28423, 'twenty-eight thousand four hundred twenty-three'), (22219, 54784, 'fifty-four thousand seven hundred eighty-four'), (22220, 64184, 'sixty-four thousand one hundred eighty-four'), (22221, 46153, 'forty-six thousand one hundred fifty-three'), (22222, 61830, 'sixty-one thousand eight hundred thirty'), (22223, 3681, 'three thousand six hundred eighty-one'), (22224, 92648, 'ninety-two thousand six hundred forty-eight'), (22225, 25961, 'twenty-five thousand nine hundred sixty-one'), (22226, 5779, 'five thousand seven hundred seventy-nine'), (22227, 83983, 'eighty-three thousand nine hundred eighty-three'), (22228, 23458, 'twenty-three thousand four hundred fifty-eight'), (22229, 71798, 'seventy-one thousand seven hundred ninety-eight'), (22230, 58639, 'fifty-eight thousand six hundred thirty-nine'), (22231, 5810, 'five thousand eight hundred ten'), (22232, 55041, 'fifty-five thousand forty-one'), (22233, 34314, 'thirty-four thousand three hundred fourteen'), (22234, 8678, 'eight thousand six hundred seventy-eight'), (22235, 67566, 'sixty-seven thousand five hundred sixty-six'), (22236, 7956, 'seven thousand nine hundred fifty-six'), (22237, 22705, 'twenty-two thousand seven hundred five'), (22238, 86646, 'eighty-six thousand six hundred forty-six'), (22239, 15199, 'fifteen thousand one hundred ninety-nine'), (22240, 21826, 'twenty-one thousand eight hundred twenty-six'), (22241, 13080, 'thirteen thousand eighty'), (22242, 89796, 'eighty-nine thousand seven hundred ninety-six'), (22243, 28269, 'twenty-eight thousand two hundred sixty-nine'), (22244, 80456, 'eighty thousand four hundred fifty-six'), (22245, 85916, 'eighty-five thousand nine hundred sixteen'), (22246, 72154, 'seventy-two thousand one hundred fifty-four'), (22247, 89795, 'eighty-nine thousand seven hundred ninety-five'), (22248, 42254, 'forty-two thousand two hundred fifty-four'), (22249, 55296, 'fifty-five thousand two hundred ninety-six'), (22250, 12220, 'twelve thousand two hundred twenty'), (22251, 56534, 'fifty-six thousand five hundred thirty-four'), (22252, 29834, 'twenty-nine thousand eight hundred thirty-four'), (22253, 10798, 'ten thousand seven hundred ninety-eight'), (22254, 9685, 'nine thousand six hundred eighty-five'), (22255, 23872, 'twenty-three thousand eight hundred seventy-two'), (22256, 25837, 'twenty-five thousand eight hundred thirty-seven'), (22257, 93897, 'ninety-three thousand eight hundred ninety-seven'), (22258, 77450, 'seventy-seven thousand four hundred fifty'), (22259, 98521, 'ninety-eight thousand five hundred twenty-one'), (22260, 76892, 'seventy-six thousand eight hundred ninety-two'), (22261, 29619, 'twenty-nine thousand six hundred nineteen'), (22262, 48101, 'forty-eight thousand one hundred one'), (22263, 16804, 'sixteen thousand eight hundred four'), (22264, 83536, 'eighty-three thousand five hundred thirty-six'), (22265, 18391, 'eighteen thousand three hundred ninety-one'), (22266, 37038, 'thirty-seven thousand thirty-eight'), (22267, 61421, 'sixty-one thousand four hundred twenty-one'), (22268, 15063, 'fifteen thousand sixty-three'), (22269, 48907, 'forty-eight thousand nine hundred seven'), (22270, 17658, 'seventeen thousand six hundred fifty-eight'), (22271, 49716, 'forty-nine thousand seven hundred sixteen'), (22272, 28176, 'twenty-eight thousand one hundred seventy-six'), (22273, 22096, 'twenty-two thousand ninety-six'), (22274, 43822, 'forty-three thousand eight hundred twenty-two'), (22275, 50437, 'fifty thousand four hundred thirty-seven'), (22276, 23342, 'twenty-three thousand three hundred forty-two'), (22277, 21826, 'twenty-one thousand eight hundred twenty-six'), (22278, 40730, 'forty thousand seven hundred thirty'), (22279, 29191, 'twenty-nine thousand one hundred ninety-one'), (22280, 24973, 'twenty-four thousand nine hundred seventy-three'), (22281, 77396, 'seventy-seven thousand three hundred ninety-six'), (22282, 8419, 'eight thousand four hundred nineteen'), (22283, 12609, 'twelve thousand six hundred nine'), (22284, 14178, 'fourteen thousand one hundred seventy-eight'), (22285, 97916, 'ninety-seven thousand nine hundred sixteen'), (22286, 9432, 'nine thousand four hundred thirty-two'), (22287, 35508, 'thirty-five thousand five hundred eight'), (22288, 31643, 'thirty-one thousand six hundred forty-three'), (22289, 6604, 'six thousand six hundred four'), (22290, 79805, 'seventy-nine thousand eight hundred five'), (22291, 41466, 'forty-one thousand four hundred sixty-six'), (22292, 78205, 'seventy-eight thousand two hundred five'), (22293, 21247, 'twenty-one thousand two hundred forty-seven'), (22294, 84108, 'eighty-four thousand one hundred eight'), (22295, 86633, 'eighty-six thousand six hundred thirty-three'), (22296, 57645, 'fifty-seven thousand six hundred forty-five'), (22297, 63918, 'sixty-three thousand nine hundred eighteen'), (22298, 54042, 'fifty-four thousand forty-two'), (22299, 6605, 'six thousand six hundred five'), (22300, 64502, 'sixty-four thousand five hundred two'), (22301, 63918, 'sixty-three thousand nine hundred eighteen'), (22302, 86611, 'eighty-six thousand six hundred eleven'), (22303, 1451, 'one thousand four hundred fifty-one'), (22304, 47419, 'forty-seven thousand four hundred nineteen'), (22305, 57464, 'fifty-seven thousand four hundred sixty-four'), (22306, 46897, 'forty-six thousand eight hundred ninety-seven'), (22307, 94455, 'ninety-four thousand four hundred fifty-five'), (22308, 34717, 'thirty-four thousand seven hundred seventeen'), (22309, 60931, 'sixty thousand nine hundred thirty-one'), (22310, 51191, 'fifty-one thousand one hundred ninety-one'), (22311, 85035, 'eighty-five thousand thirty-five'), (22312, 13138, 'thirteen thousand one hundred thirty-eight'), (22313, 76315, 'seventy-six thousand three hundred fifteen'), (22314, 82068, 'eighty-two thousand sixty-eight'), (22315, 80865, 'eighty thousand eight hundred sixty-five'), (22316, 98648, 'ninety-eight thousand six hundred forty-eight'), (22317, 18623, 'eighteen thousand six hundred twenty-three'), (22318, 54551, 'fifty-four thousand five hundred fifty-one'), (22319, 22386, 'twenty-two thousand three hundred eighty-six'), (22320, 38516, 'thirty-eight thousand five hundred sixteen'), (22321, 87051, 'eighty-seven thousand fifty-one'), (22322, 38865, 'thirty-eight thousand eight hundred sixty-five'), (22323, 3770, 'three thousand seven hundred seventy'), (22324, 3409, 'three thousand four hundred nine'), (22325, 76197, 'seventy-six thousand one hundred ninety-seven'), (22326, 27638, 'twenty-seven thousand six hundred thirty-eight'), (22327, 72267, 'seventy-two thousand two hundred sixty-seven'), (22328, 49201, 'forty-nine thousand two hundred one'), (22329, 51957, 'fifty-one thousand nine hundred fifty-seven'), (22330, 95407, 'ninety-five thousand four hundred seven'), (22331, 494, 'four hundred ninety-four'), (22332, 19769, 'nineteen thousand seven hundred sixty-nine'), (22333, 57170, 'fifty-seven thousand one hundred seventy'), (22334, 5150, 'five thousand one hundred fifty'), (22335, 2342, 'two thousand three hundred forty-two'), (22336, 56163, 'fifty-six thousand one hundred sixty-three'), (22337, 4604, 'four thousand six hundred four'), (22338, 69693, 'sixty-nine thousand six hundred ninety-three'), (22339, 88292, 'eighty-eight thousand two hundred ninety-two'), (22340, 65142, 'sixty-five thousand one hundred forty-two'), (22341, 75426, 'seventy-five thousand four hundred twenty-six'), (22342, 15423, 'fifteen thousand four hundred twenty-three'), (22343, 80547, 'eighty thousand five hundred forty-seven'), (22344, 88201, 'eighty-eight thousand two hundred one'), (22345, 52965, 'fifty-two thousand nine hundred sixty-five'), (22346, 96199, 'ninety-six thousand one hundred ninety-nine'), (22347, 54514, 'fifty-four thousand five hundred fourteen'), (22348, 1238, 'one thousand two hundred thirty-eight'), (22349, 97621, 'ninety-seven thousand six hundred twenty-one'), (22350, 35730, 'thirty-five thousand seven hundred thirty'), (22351, 14932, 'fourteen thousand nine hundred thirty-two'), (22352, 43812, 'forty-three thousand eight hundred twelve'), (22353, 6577, 'six thousand five hundred seventy-seven'), (22354, 62010, 'sixty-two thousand ten'), (22355, 91955, 'ninety-one thousand nine hundred fifty-five'), (22356, 18085, 'eighteen thousand eighty-five'), (22357, 45931, 'forty-five thousand nine hundred thirty-one'), (22358, 79207, 'seventy-nine thousand two hundred seven'), (22359, 11729, 'eleven thousand seven hundred twenty-nine'), (22360, 26329, 'twenty-six thousand three hundred twenty-nine'), (22361, 19065, 'nineteen thousand sixty-five'), (22362, 92482, 'ninety-two thousand four hundred eighty-two'), (22363, 34050, 'thirty-four thousand fifty'), (22364, 15749, 'fifteen thousand seven hundred forty-nine'), (22365, 66165, 'sixty-six thousand one hundred sixty-five'), (22366, 36505, 'thirty-six thousand five hundred five'), (22367, 131, 'one hundred thirty-one'), (22368, 69597, 'sixty-nine thousand five hundred ninety-seven'), (22369, 46427, 'forty-six thousand four hundred twenty-seven'), (22370, 8874, 'eight thousand eight hundred seventy-four'), (22371, 85392, 'eighty-five thousand three hundred ninety-two'), (22372, 56348, 'fifty-six thousand three hundred forty-eight'), (22373, 84536, 'eighty-four thousand five hundred thirty-six'), (22374, 11474, 'eleven thousand four hundred seventy-four'), (22375, 1278, 'one thousand two hundred seventy-eight'), (22376, 66671, 'sixty-six thousand six hundred seventy-one'), (22377, 78884, 'seventy-eight thousand eight hundred eighty-four'), (22378, 3512, 'three thousand five hundred twelve'), (22379, 11434, 'eleven thousand four hundred thirty-four'), (22380, 87002, 'eighty-seven thousand two'), (22381, 55430, 'fifty-five thousand four hundred thirty'), (22382, 69635, 'sixty-nine thousand six hundred thirty-five'), (22383, 3510, 'three thousand five hundred ten'), (22384, 82464, 'eighty-two thousand four hundred sixty-four'), (22385, 14576, 'fourteen thousand five hundred seventy-six'), (22386, 26189, 'twenty-six thousand one hundred eighty-nine'), (22387, 18114, 'eighteen thousand one hundred fourteen'), (22388, 88458, 'eighty-eight thousand four hundred fifty-eight'), (22389, 97696, 'ninety-seven thousand six hundred ninety-six'), (22390, 20326, 'twenty thousand three hundred twenty-six'), (22391, 61539, 'sixty-one thousand five hundred thirty-nine'), (22392, 41704, 'forty-one thousand seven hundred four'), (22393, 62173, 'sixty-two thousand one hundred seventy-three'), (22394, 36659, 'thirty-six thousand six hundred fifty-nine'), (22395, 39339, 'thirty-nine thousand three hundred thirty-nine'), (22396, 35492, 'thirty-five thousand four hundred ninety-two'), (22397, 84672, 'eighty-four thousand six hundred seventy-two'), (22398, 62140, 'sixty-two thousand one hundred forty'), (22399, 39728, 'thirty-nine thousand seven hundred twenty-eight'), (22400, 63508, 'sixty-three thousand five hundred eight'), (22401, 2118, 'two thousand one hundred eighteen'), (22402, 45989, 'forty-five thousand nine hundred eighty-nine'), (22403, 29906, 'twenty-nine thousand nine hundred six'), (22404, 24720, 'twenty-four thousand seven hundred twenty'), (22405, 28470, 'twenty-eight thousand four hundred seventy'), (22406, 53785, 'fifty-three thousand seven hundred eighty-five'), (22407, 86742, 'eighty-six thousand seven hundred forty-two'), (22408, 70868, 'seventy thousand eight hundred sixty-eight'), (22409, 9745, 'nine thousand seven hundred forty-five'), (22410, 52889, 'fifty-two thousand eight hundred eighty-nine'), (22411, 2810, 'two thousand eight hundred ten'), (22412, 81529, 'eighty-one thousand five hundred twenty-nine'), (22413, 95495, 'ninety-five thousand four hundred ninety-five'), (22414, 32732, 'thirty-two thousand seven hundred thirty-two'), (22415, 75278, 'seventy-five thousand two hundred seventy-eight'), (22416, 52264, 'fifty-two thousand two hundred sixty-four'), (22417, 99252, 'ninety-nine thousand two hundred fifty-two'), (22418, 94074, 'ninety-four thousand seventy-four'), (22419, 47933, 'forty-seven thousand nine hundred thirty-three'), (22420, 59535, 'fifty-nine thousand five hundred thirty-five'), (22421, 29172, 'twenty-nine thousand one hundred seventy-two'), (22422, 43086, 'forty-three thousand eighty-six'), (22423, 48602, 'forty-eight thousand six hundred two'), (22424, 17942, 'seventeen thousand nine hundred forty-two'), (22425, 86946, 'eighty-six thousand nine hundred forty-six'), (22426, 28083, 'twenty-eight thousand eighty-three'), (22427, 25869, 'twenty-five thousand eight hundred sixty-nine'), (22428, 6886, 'six thousand eight hundred eighty-six'), (22429, 55286, 'fifty-five thousand two hundred eighty-six'), (22430, 47264, 'forty-seven thousand two hundred sixty-four'), (22431, 3180, 'three thousand one hundred eighty'), (22432, 98092, 'ninety-eight thousand ninety-two'), (22433, 90141, 'ninety thousand one hundred forty-one'), (22434, 57581, 'fifty-seven thousand five hundred eighty-one'), (22435, 12239, 'twelve thousand two hundred thirty-nine'), (22436, 30778, 'thirty thousand seven hundred seventy-eight'), (22437, 74100, 'seventy-four thousand one hundred'), (22438, 12810, 'twelve thousand eight hundred ten'), (22439, 65540, 'sixty-five thousand five hundred forty'), (22440, 32744, 'thirty-two thousand seven hundred forty-four'), (22441, 41062, 'forty-one thousand sixty-two'), (22442, 30471, 'thirty thousand four hundred seventy-one'), (22443, 27794, 'twenty-seven thousand seven hundred ninety-four'), (22444, 56417, 'fifty-six thousand four hundred seventeen'), (22445, 4596, 'four thousand five hundred ninety-six'), (22446, 57387, 'fifty-seven thousand three hundred eighty-seven'), (22447, 907, 'nine hundred seven'), (22448, 81107, 'eighty-one thousand one hundred seven'), (22449, 22607, 'twenty-two thousand six hundred seven'), (22450, 6645, 'six thousand six hundred forty-five'), (22451, 65171, 'sixty-five thousand one hundred seventy-one'), (22452, 77201, 'seventy-seven thousand two hundred one'), (22453, 96260, 'ninety-six thousand two hundred sixty'), (22454, 4800, 'four thousand eight hundred'), (22455, 46822, 'forty-six thousand eight hundred twenty-two'), (22456, 34151, 'thirty-four thousand one hundred fifty-one'), (22457, 87858, 'eighty-seven thousand eight hundred fifty-eight'), (22458, 81437, 'eighty-one thousand four hundred thirty-seven'), (22459, 37041, 'thirty-seven thousand forty-one'), (22460, 43433, 'forty-three thousand four hundred thirty-three'), (22461, 62264, 'sixty-two thousand two hundred sixty-four'), (22462, 19210, 'nineteen thousand two hundred ten'), (22463, 29407, 'twenty-nine thousand four hundred seven'), (22464, 6829, 'six thousand eight hundred twenty-nine'), (22465, 79493, 'seventy-nine thousand four hundred ninety-three'), (22466, 64460, 'sixty-four thousand four hundred sixty'), (22467, 4376, 'four thousand three hundred seventy-six'), (22468, 42564, 'forty-two thousand five hundred sixty-four'), (22469, 63570, 'sixty-three thousand five hundred seventy'), (22470, 15802, 'fifteen thousand eight hundred two'), (22471, 45518, 'forty-five thousand five hundred eighteen'), (22472, 68015, 'sixty-eight thousand fifteen'), (22473, 92654, 'ninety-two thousand six hundred fifty-four'), (22474, 7576, 'seven thousand five hundred seventy-six'), (22475, 24404, 'twenty-four thousand four hundred four'), (22476, 21253, 'twenty-one thousand two hundred fifty-three'), (22477, 72234, 'seventy-two thousand two hundred thirty-four'), (22478, 21266, 'twenty-one thousand two hundred sixty-six'), (22479, 13822, 'thirteen thousand eight hundred twenty-two'), (22480, 20035, 'twenty thousand thirty-five'), (22481, 86539, 'eighty-six thousand five hundred thirty-nine'), (22482, 98016, 'ninety-eight thousand sixteen'), (22483, 19081, 'nineteen thousand eighty-one'), (22484, 42285, 'forty-two thousand two hundred eighty-five'), (22485, 6786, 'six thousand seven hundred eighty-six'), (22486, 8017, 'eight thousand seventeen'), (22487, 40663, 'forty thousand six hundred sixty-three'), (22488, 64819, 'sixty-four thousand eight hundred nineteen'), (22489, 71485, 'seventy-one thousand four hundred eighty-five'), (22490, 20107, 'twenty thousand one hundred seven'), (22491, 64211, 'sixty-four thousand two hundred eleven'), (22492, 42281, 'forty-two thousand two hundred eighty-one'), (22493, 15844, 'fifteen thousand eight hundred forty-four'), (22494, 56296, 'fifty-six thousand two hundred ninety-six'), (22495, 14693, 'fourteen thousand six hundred ninety-three'), (22496, 78055, 'seventy-eight thousand fifty-five'), (22497, 23911, 'twenty-three thousand nine hundred eleven'), (22498, 35824, 'thirty-five thousand eight hundred twenty-four'), (22499, 11405, 'eleven thousand four hundred five'), (22500, 85625, 'eighty-five thousand six hundred twenty-five'), (22501, 80429, 'eighty thousand four hundred twenty-nine'), (22502, 44783, 'forty-four thousand seven hundred eighty-three'), (22503, 56005, 'fifty-six thousand five'), (22504, 69813, 'sixty-nine thousand eight hundred thirteen'), (22505, 40183, 'forty thousand one hundred eighty-three'), (22506, 16055, 'sixteen thousand fifty-five'), (22507, 77031, 'seventy-seven thousand thirty-one'), (22508, 90278, 'ninety thousand two hundred seventy-eight'), (22509, 45414, 'forty-five thousand four hundred fourteen'), (22510, 39654, 'thirty-nine thousand six hundred fifty-four'), (22511, 19673, 'nineteen thousand six hundred seventy-three'), (22512, 70631, 'seventy thousand six hundred thirty-one'), (22513, 55329, 'fifty-five thousand three hundred twenty-nine'), (22514, 516, 'five hundred sixteen'), (22515, 79159, 'seventy-nine thousand one hundred fifty-nine'), (22516, 7658, 'seven thousand six hundred fifty-eight'), (22517, 38668, 'thirty-eight thousand six hundred sixty-eight'), (22518, 53385, 'fifty-three thousand three hundred eighty-five'), (22519, 50034, 'fifty thousand thirty-four'), (22520, 65668, 'sixty-five thousand six hundred sixty-eight'), (22521, 84646, 'eighty-four thousand six hundred forty-six'), (22522, 52564, 'fifty-two thousand five hundred sixty-four'), (22523, 10899, 'ten thousand eight hundred ninety-nine'), (22524, 42573, 'forty-two thousand five hundred seventy-three'), (22525, 38401, 'thirty-eight thousand four hundred one'), (22526, 88565, 'eighty-eight thousand five hundred sixty-five'), (22527, 381, 'three hundred eighty-one'), (22528, 21216, 'twenty-one thousand two hundred sixteen'), (22529, 95817, 'ninety-five thousand eight hundred seventeen'), (22530, 1165, 'one thousand one hundred sixty-five'), (22531, 53861, 'fifty-three thousand eight hundred sixty-one'), (22532, 50490, 'fifty thousand four hundred ninety'), (22533, 25127, 'twenty-five thousand one hundred twenty-seven'), (22534, 15595, 'fifteen thousand five hundred ninety-five'), (22535, 84808, 'eighty-four thousand eight hundred eight'), (22536, 9311, 'nine thousand three hundred eleven'), (22537, 53187, 'fifty-three thousand one hundred eighty-seven'), (22538, 45109, 'forty-five thousand one hundred nine'), (22539, 98859, 'ninety-eight thousand eight hundred fifty-nine'), (22540, 30692, 'thirty thousand six hundred ninety-two'), (22541, 56062, 'fifty-six thousand sixty-two'), (22542, 18326, 'eighteen thousand three hundred twenty-six'), (22543, 68792, 'sixty-eight thousand seven hundred ninety-two'), (22544, 77571, 'seventy-seven thousand five hundred seventy-one'), (22545, 47630, 'forty-seven thousand six hundred thirty'), (22546, 35447, 'thirty-five thousand four hundred forty-seven'), (22547, 92822, 'ninety-two thousand eight hundred twenty-two'), (22548, 4965, 'four thousand nine hundred sixty-five'), (22549, 22923, 'twenty-two thousand nine hundred twenty-three'), (22550, 54997, 'fifty-four thousand nine hundred ninety-seven'), (22551, 76657, 'seventy-six thousand six hundred fifty-seven'), (22552, 61704, 'sixty-one thousand seven hundred four'), (22553, 6399, 'six thousand three hundred ninety-nine'), (22554, 87246, 'eighty-seven thousand two hundred forty-six'), (22555, 70422, 'seventy thousand four hundred twenty-two'), (22556, 87675, 'eighty-seven thousand six hundred seventy-five'), (22557, 73009, 'seventy-three thousand nine'), (22558, 71043, 'seventy-one thousand forty-three'), (22559, 24841, 'twenty-four thousand eight hundred forty-one'), (22560, 72324, 'seventy-two thousand three hundred twenty-four'), (22561, 1343, 'one thousand three hundred forty-three'), (22562, 96980, 'ninety-six thousand nine hundred eighty'), (22563, 46845, 'forty-six thousand eight hundred forty-five'), (22564, 12364, 'twelve thousand three hundred sixty-four'), (22565, 88731, 'eighty-eight thousand seven hundred thirty-one'), (22566, 80641, 'eighty thousand six hundred forty-one'), (22567, 13653, 'thirteen thousand six hundred fifty-three'), (22568, 96138, 'ninety-six thousand one hundred thirty-eight'), (22569, 16727, 'sixteen thousand seven hundred twenty-seven'), (22570, 32793, 'thirty-two thousand seven hundred ninety-three'), (22571, 14371, 'fourteen thousand three hundred seventy-one'), (22572, 45857, 'forty-five thousand eight hundred fifty-seven'), (22573, 6766, 'six thousand seven hundred sixty-six'), (22574, 64805, 'sixty-four thousand eight hundred five'), (22575, 13462, 'thirteen thousand four hundred sixty-two'), (22576, 23840, 'twenty-three thousand eight hundred forty'), (22577, 39545, 'thirty-nine thousand five hundred forty-five'), (22578, 15053, 'fifteen thousand fifty-three'), (22579, 15590, 'fifteen thousand five hundred ninety'), (22580, 87021, 'eighty-seven thousand twenty-one'), (22581, 64698, 'sixty-four thousand six hundred ninety-eight'), (22582, 75271, 'seventy-five thousand two hundred seventy-one'), (22583, 65984, 'sixty-five thousand nine hundred eighty-four'), (22584, 21130, 'twenty-one thousand one hundred thirty'), (22585, 35160, 'thirty-five thousand one hundred sixty'), (22586, 87942, 'eighty-seven thousand nine hundred forty-two'), (22587, 85332, 'eighty-five thousand three hundred thirty-two'), (22588, 88219, 'eighty-eight thousand two hundred nineteen'), (22589, 99848, 'ninety-nine thousand eight hundred forty-eight'), (22590, 30292, 'thirty thousand two hundred ninety-two'), (22591, 57879, 'fifty-seven thousand eight hundred seventy-nine'), (22592, 56974, 'fifty-six thousand nine hundred seventy-four'), (22593, 27398, 'twenty-seven thousand three hundred ninety-eight'), (22594, 95470, 'ninety-five thousand four hundred seventy'), (22595, 3801, 'three thousand eight hundred one'), (22596, 69492, 'sixty-nine thousand four hundred ninety-two'), (22597, 32582, 'thirty-two thousand five hundred eighty-two'), (22598, 42082, 'forty-two thousand eighty-two'), (22599, 84096, 'eighty-four thousand ninety-six'), (22600, 91235, 'ninety-one thousand two hundred thirty-five'), (22601, 68877, 'sixty-eight thousand eight hundred seventy-seven'), (22602, 75178, 'seventy-five thousand one hundred seventy-eight'), (22603, 27786, 'twenty-seven thousand seven hundred eighty-six'), (22604, 14675, 'fourteen thousand six hundred seventy-five'), (22605, 44198, 'forty-four thousand one hundred ninety-eight'), (22606, 64766, 'sixty-four thousand seven hundred sixty-six'), (22607, 57594, 'fifty-seven thousand five hundred ninety-four'), (22608, 25195, 'twenty-five thousand one hundred ninety-five'), (22609, 78269, 'seventy-eight thousand two hundred sixty-nine'), (22610, 12876, 'twelve thousand eight hundred seventy-six'), (22611, 70858, 'seventy thousand eight hundred fifty-eight'), (22612, 8704, 'eight thousand seven hundred four'), (22613, 77585, 'seventy-seven thousand five hundred eighty-five'), (22614, 13116, 'thirteen thousand one hundred sixteen'), (22615, 32525, 'thirty-two thousand five hundred twenty-five'), (22616, 87846, 'eighty-seven thousand eight hundred forty-six'), (22617, 42320, 'forty-two thousand three hundred twenty'), (22618, 75749, 'seventy-five thousand seven hundred forty-nine'), (22619, 91169, 'ninety-one thousand one hundred sixty-nine'), (22620, 57533, 'fifty-seven thousand five hundred thirty-three'), (22621, 28429, 'twenty-eight thousand four hundred twenty-nine'), (22622, 30517, 'thirty thousand five hundred seventeen'), (22623, 96617, 'ninety-six thousand six hundred seventeen'), (22624, 24449, 'twenty-four thousand four hundred forty-nine'), (22625, 84461, 'eighty-four thousand four hundred sixty-one'), (22626, 91063, 'ninety-one thousand sixty-three'), (22627, 38957, 'thirty-eight thousand nine hundred fifty-seven'), (22628, 49516, 'forty-nine thousand five hundred sixteen'), (22629, 78211, 'seventy-eight thousand two hundred eleven'), (22630, 31370, 'thirty-one thousand three hundred seventy'), (22631, 88630, 'eighty-eight thousand six hundred thirty'), (22632, 29902, 'twenty-nine thousand nine hundred two'), (22633, 25505, 'twenty-five thousand five hundred five'), (22634, 53570, 'fifty-three thousand five hundred seventy'), (22635, 53582, 'fifty-three thousand five hundred eighty-two'), (22636, 29462, 'twenty-nine thousand four hundred sixty-two'), (22637, 37866, 'thirty-seven thousand eight hundred sixty-six'), (22638, 21474, 'twenty-one thousand four hundred seventy-four'), (22639, 52971, 'fifty-two thousand nine hundred seventy-one'), (22640, 70905, 'seventy thousand nine hundred five'), (22641, 83229, 'eighty-three thousand two hundred twenty-nine'), (22642, 79718, 'seventy-nine thousand seven hundred eighteen'), (22643, 49910, 'forty-nine thousand nine hundred ten'), (22644, 56269, 'fifty-six thousand two hundred sixty-nine'), (22645, 73311, 'seventy-three thousand three hundred eleven'), (22646, 65921, 'sixty-five thousand nine hundred twenty-one'), (22647, 20012, 'twenty thousand twelve'), (22648, 61431, 'sixty-one thousand four hundred thirty-one'), (22649, 8282, 'eight thousand two hundred eighty-two'), (22650, 86294, 'eighty-six thousand two hundred ninety-four'), (22651, 4933, 'four thousand nine hundred thirty-three'), (22652, 75845, 'seventy-five thousand eight hundred forty-five'), (22653, 37304, 'thirty-seven thousand three hundred four'), (22654, 11567, 'eleven thousand five hundred sixty-seven'), (22655, 19968, 'nineteen thousand nine hundred sixty-eight'), (22656, 36357, 'thirty-six thousand three hundred fifty-seven'), (22657, 48974, 'forty-eight thousand nine hundred seventy-four'), (22658, 16701, 'sixteen thousand seven hundred one'), (22659, 96936, 'ninety-six thousand nine hundred thirty-six'), (22660, 96704, 'ninety-six thousand seven hundred four'), (22661, 56132, 'fifty-six thousand one hundred thirty-two'), (22662, 85705, 'eighty-five thousand seven hundred five'), (22663, 44559, 'forty-four thousand five hundred fifty-nine'), (22664, 61115, 'sixty-one thousand one hundred fifteen'), (22665, 76535, 'seventy-six thousand five hundred thirty-five'), (22666, 49746, 'forty-nine thousand seven hundred forty-six'), (22667, 81703, 'eighty-one thousand seven hundred three'), (22668, 99890, 'ninety-nine thousand eight hundred ninety'), (22669, 3305, 'three thousand three hundred five'), (22670, 13818, 'thirteen thousand eight hundred eighteen'), (22671, 18036, 'eighteen thousand thirty-six'), (22672, 90569, 'ninety thousand five hundred sixty-nine'), (22673, 41553, 'forty-one thousand five hundred fifty-three'), (22674, 23961, 'twenty-three thousand nine hundred sixty-one'), (22675, 6125, 'six thousand one hundred twenty-five'), (22676, 15828, 'fifteen thousand eight hundred twenty-eight'), (22677, 28117, 'twenty-eight thousand one hundred seventeen'), (22678, 36107, 'thirty-six thousand one hundred seven'), (22679, 37818, 'thirty-seven thousand eight hundred eighteen'), (22680, 16647, 'sixteen thousand six hundred forty-seven'), (22681, 47321, 'forty-seven thousand three hundred twenty-one'), (22682, 12129, 'twelve thousand one hundred twenty-nine'), (22683, 65834, 'sixty-five thousand eight hundred thirty-four'), (22684, 82125, 'eighty-two thousand one hundred twenty-five'), (22685, 11331, 'eleven thousand three hundred thirty-one'), (22686, 19893, 'nineteen thousand eight hundred ninety-three'), (22687, 71576, 'seventy-one thousand five hundred seventy-six'), (22688, 37467, 'thirty-seven thousand four hundred sixty-seven'), (22689, 63848, 'sixty-three thousand eight hundred forty-eight'), (22690, 80468, 'eighty thousand four hundred sixty-eight'), (22691, 68487, 'sixty-eight thousand four hundred eighty-seven'), (22692, 19796, 'nineteen thousand seven hundred ninety-six'), (22693, 87706, 'eighty-seven thousand seven hundred six'), (22694, 49653, 'forty-nine thousand six hundred fifty-three'), (22695, 9824, 'nine thousand eight hundred twenty-four'), (22696, 53907, 'fifty-three thousand nine hundred seven'), (22697, 89329, 'eighty-nine thousand three hundred twenty-nine'), (22698, 8588, 'eight thousand five hundred eighty-eight'), (22699, 25857, 'twenty-five thousand eight hundred fifty-seven'), (22700, 79112, 'seventy-nine thousand one hundred twelve'), (22701, 8040, 'eight thousand forty'), (22702, 95478, 'ninety-five thousand four hundred seventy-eight'), (22703, 48853, 'forty-eight thousand eight hundred fifty-three'), (22704, 32132, 'thirty-two thousand one hundred thirty-two'), (22705, 18797, 'eighteen thousand seven hundred ninety-seven'), (22706, 28030, 'twenty-eight thousand thirty'), (22707, 1323, 'one thousand three hundred twenty-three'), (22708, 30808, 'thirty thousand eight hundred eight'), (22709, 6079, 'six thousand seventy-nine'), (22710, 46536, 'forty-six thousand five hundred thirty-six'), (22711, 76287, 'seventy-six thousand two hundred eighty-seven'), (22712, 57813, 'fifty-seven thousand eight hundred thirteen'), (22713, 62394, 'sixty-two thousand three hundred ninety-four'), (22714, 50309, 'fifty thousand three hundred nine'), (22715, 46511, 'forty-six thousand five hundred eleven'), (22716, 4176, 'four thousand one hundred seventy-six'), (22717, 2166, 'two thousand one hundred sixty-six'), (22718, 60138, 'sixty thousand one hundred thirty-eight'), (22719, 47204, 'forty-seven thousand two hundred four'), (22720, 5887, 'five thousand eight hundred eighty-seven'), (22721, 10844, 'ten thousand eight hundred forty-four'), (22722, 91767, 'ninety-one thousand seven hundred sixty-seven'), (22723, 65745, 'sixty-five thousand seven hundred forty-five'), (22724, 30415, 'thirty thousand four hundred fifteen'), (22725, 76189, 'seventy-six thousand one hundred eighty-nine'), (22726, 92590, 'ninety-two thousand five hundred ninety'), (22727, 12506, 'twelve thousand five hundred six'), (22728, 39380, 'thirty-nine thousand three hundred eighty'), (22729, 25274, 'twenty-five thousand two hundred seventy-four'), (22730, 50617, 'fifty thousand six hundred seventeen'), (22731, 27056, 'twenty-seven thousand fifty-six'), (22732, 61862, 'sixty-one thousand eight hundred sixty-two'), (22733, 96762, 'ninety-six thousand seven hundred sixty-two'), (22734, 53827, 'fifty-three thousand eight hundred twenty-seven'), (22735, 61995, 'sixty-one thousand nine hundred ninety-five'), (22736, 67195, 'sixty-seven thousand one hundred ninety-five'), (22737, 48008, 'forty-eight thousand eight'), (22738, 89985, 'eighty-nine thousand nine hundred eighty-five'), (22739, 435, 'four hundred thirty-five'), (22740, 19428, 'nineteen thousand four hundred twenty-eight'), (22741, 85496, 'eighty-five thousand four hundred ninety-six'), (22742, 34992, 'thirty-four thousand nine hundred ninety-two'), (22743, 24690, 'twenty-four thousand six hundred ninety'), (22744, 1355, 'one thousand three hundred fifty-five'), (22745, 29772, 'twenty-nine thousand seven hundred seventy-two'), (22746, 39939, 'thirty-nine thousand nine hundred thirty-nine'), (22747, 98514, 'ninety-eight thousand five hundred fourteen'), (22748, 21934, 'twenty-one thousand nine hundred thirty-four'), (22749, 46496, 'forty-six thousand four hundred ninety-six'), (22750, 76462, 'seventy-six thousand four hundred sixty-two'), (22751, 11453, 'eleven thousand four hundred fifty-three'), (22752, 70704, 'seventy thousand seven hundred four'), (22753, 58256, 'fifty-eight thousand two hundred fifty-six'), (22754, 79070, 'seventy-nine thousand seventy'), (22755, 67296, 'sixty-seven thousand two hundred ninety-six'), (22756, 66720, 'sixty-six thousand seven hundred twenty'), (22757, 16196, 'sixteen thousand one hundred ninety-six'), (22758, 53301, 'fifty-three thousand three hundred one'), (22759, 76635, 'seventy-six thousand six hundred thirty-five'), (22760, 57885, 'fifty-seven thousand eight hundred eighty-five'), (22761, 51936, 'fifty-one thousand nine hundred thirty-six'), (22762, 70894, 'seventy thousand eight hundred ninety-four'), (22763, 49654, 'forty-nine thousand six hundred fifty-four'), (22764, 15893, 'fifteen thousand eight hundred ninety-three'), (22765, 94215, 'ninety-four thousand two hundred fifteen'), (22766, 50589, 'fifty thousand five hundred eighty-nine'), (22767, 27876, 'twenty-seven thousand eight hundred seventy-six'), (22768, 80188, 'eighty thousand one hundred eighty-eight'), (22769, 37257, 'thirty-seven thousand two hundred fifty-seven'), (22770, 21780, 'twenty-one thousand seven hundred eighty'), (22771, 22190, 'twenty-two thousand one hundred ninety'), (22772, 41992, 'forty-one thousand nine hundred ninety-two'), (22773, 76421, 'seventy-six thousand four hundred twenty-one'), (22774, 25668, 'twenty-five thousand six hundred sixty-eight'), (22775, 74821, 'seventy-four thousand eight hundred twenty-one'), (22776, 77595, 'seventy-seven thousand five hundred ninety-five'), (22777, 12547, 'twelve thousand five hundred forty-seven'), (22778, 15981, 'fifteen thousand nine hundred eighty-one'), (22779, 14650, 'fourteen thousand six hundred fifty'), (22780, 86030, 'eighty-six thousand thirty'), (22781, 8573, 'eight thousand five hundred seventy-three'), (22782, 83953, 'eighty-three thousand nine hundred fifty-three'), (22783, 54106, 'fifty-four thousand one hundred six'), (22784, 65870, 'sixty-five thousand eight hundred seventy'), (22785, 99636, 'ninety-nine thousand six hundred thirty-six'), (22786, 81594, 'eighty-one thousand five hundred ninety-four'), (22787, 11533, 'eleven thousand five hundred thirty-three'), (22788, 38593, 'thirty-eight thousand five hundred ninety-three'), (22789, 1144, 'one thousand one hundred forty-four'), (22790, 28326, 'twenty-eight thousand three hundred twenty-six'), (22791, 25026, 'twenty-five thousand twenty-six'), (22792, 66295, 'sixty-six thousand two hundred ninety-five'), (22793, 8260, 'eight thousand two hundred sixty'), (22794, 45959, 'forty-five thousand nine hundred fifty-nine'), (22795, 81761, 'eighty-one thousand seven hundred sixty-one'), (22796, 92331, 'ninety-two thousand three hundred thirty-one'), (22797, 972, 'nine hundred seventy-two'), (22798, 16129, 'sixteen thousand one hundred twenty-nine'), (22799, 8741, 'eight thousand seven hundred forty-one'), (22800, 72896, 'seventy-two thousand eight hundred ninety-six'), (22801, 47476, 'forty-seven thousand four hundred seventy-six'), (22802, 85425, 'eighty-five thousand four hundred twenty-five'), (22803, 83021, 'eighty-three thousand twenty-one'), (22804, 91693, 'ninety-one thousand six hundred ninety-three'), (22805, 59651, 'fifty-nine thousand six hundred fifty-one'), (22806, 49497, 'forty-nine thousand four hundred ninety-seven'), (22807, 96922, 'ninety-six thousand nine hundred twenty-two'), (22808, 46116, 'forty-six thousand one hundred sixteen'), (22809, 9276, 'nine thousand two hundred seventy-six'), (22810, 91549, 'ninety-one thousand five hundred forty-nine'), (22811, 26804, 'twenty-six thousand eight hundred four'), (22812, 79506, 'seventy-nine thousand five hundred six'), (22813, 54230, 'fifty-four thousand two hundred thirty'), (22814, 69856, 'sixty-nine thousand eight hundred fifty-six'), (22815, 72125, 'seventy-two thousand one hundred twenty-five'), (22816, 3303, 'three thousand three hundred three'), (22817, 35150, 'thirty-five thousand one hundred fifty'), (22818, 23818, 'twenty-three thousand eight hundred eighteen'), (22819, 55339, 'fifty-five thousand three hundred thirty-nine'), (22820, 38752, 'thirty-eight thousand seven hundred fifty-two'), (22821, 80010, 'eighty thousand ten'), (22822, 26406, 'twenty-six thousand four hundred six'), (22823, 2166, 'two thousand one hundred sixty-six'), (22824, 3860, 'three thousand eight hundred sixty'), (22825, 71503, 'seventy-one thousand five hundred three'), (22826, 89306, 'eighty-nine thousand three hundred six'), (22827, 97412, 'ninety-seven thousand four hundred twelve'), (22828, 36496, 'thirty-six thousand four hundred ninety-six'), (22829, 48977, 'forty-eight thousand nine hundred seventy-seven'), (22830, 91389, 'ninety-one thousand three hundred eighty-nine'), (22831, 73674, 'seventy-three thousand six hundred seventy-four'), (22832, 77394, 'seventy-seven thousand three hundred ninety-four'), (22833, 9022, 'nine thousand twenty-two'), (22834, 99427, 'ninety-nine thousand four hundred twenty-seven'), (22835, 13674, 'thirteen thousand six hundred seventy-four'), (22836, 65124, 'sixty-five thousand one hundred twenty-four'), (22837, 85527, 'eighty-five thousand five hundred twenty-seven'), (22838, 69958, 'sixty-nine thousand nine hundred fifty-eight'), (22839, 45333, 'forty-five thousand three hundred thirty-three'), (22840, 91751, 'ninety-one thousand seven hundred fifty-one'), (22841, 57515, 'fifty-seven thousand five hundred fifteen'), (22842, 58534, 'fifty-eight thousand five hundred thirty-four'), (22843, 24830, 'twenty-four thousand eight hundred thirty'), (22844, 4542, 'four thousand five hundred forty-two'), (22845, 72566, 'seventy-two thousand five hundred sixty-six'), (22846, 66017, 'sixty-six thousand seventeen'), (22847, 55165, 'fifty-five thousand one hundred sixty-five'), (22848, 79596, 'seventy-nine thousand five hundred ninety-six'), (22849, 1769, 'one thousand seven hundred sixty-nine'), (22850, 27029, 'twenty-seven thousand twenty-nine'), (22851, 16453, 'sixteen thousand four hundred fifty-three'), (22852, 21237, 'twenty-one thousand two hundred thirty-seven'), (22853, 30819, 'thirty thousand eight hundred nineteen'), (22854, 52924, 'fifty-two thousand nine hundred twenty-four'), (22855, 95885, 'ninety-five thousand eight hundred eighty-five'), (22856, 63388, 'sixty-three thousand three hundred eighty-eight'), (22857, 93858, 'ninety-three thousand eight hundred fifty-eight'), (22858, 80768, 'eighty thousand seven hundred sixty-eight'), (22859, 40403, 'forty thousand four hundred three'), (22860, 31916, 'thirty-one thousand nine hundred sixteen'), (22861, 39014, 'thirty-nine thousand fourteen'), (22862, 90400, 'ninety thousand four hundred'), (22863, 36661, 'thirty-six thousand six hundred sixty-one'), (22864, 59823, 'fifty-nine thousand eight hundred twenty-three'), (22865, 80667, 'eighty thousand six hundred sixty-seven'), (22866, 70332, 'seventy thousand three hundred thirty-two'), (22867, 52839, 'fifty-two thousand eight hundred thirty-nine'), (22868, 70809, 'seventy thousand eight hundred nine'), (22869, 77446, 'seventy-seven thousand four hundred forty-six'), (22870, 43213, 'forty-three thousand two hundred thirteen'), (22871, 54445, 'fifty-four thousand four hundred forty-five'), (22872, 44703, 'forty-four thousand seven hundred three'), (22873, 51092, 'fifty-one thousand ninety-two'), (22874, 30687, 'thirty thousand six hundred eighty-seven'), (22875, 4231, 'four thousand two hundred thirty-one'), (22876, 60219, 'sixty thousand two hundred nineteen'), (22877, 44950, 'forty-four thousand nine hundred fifty'), (22878, 74259, 'seventy-four thousand two hundred fifty-nine'), (22879, 95412, 'ninety-five thousand four hundred twelve'), (22880, 61892, 'sixty-one thousand eight hundred ninety-two'), (22881, 25428, 'twenty-five thousand four hundred twenty-eight'), (22882, 97444, 'ninety-seven thousand four hundred forty-four'), (22883, 26834, 'twenty-six thousand eight hundred thirty-four'), (22884, 35597, 'thirty-five thousand five hundred ninety-seven'), (22885, 50566, 'fifty thousand five hundred sixty-six'), (22886, 69857, 'sixty-nine thousand eight hundred fifty-seven'), (22887, 92753, 'ninety-two thousand seven hundred fifty-three'), (22888, 68584, 'sixty-eight thousand five hundred eighty-four'), (22889, 53835, 'fifty-three thousand eight hundred thirty-five'), (22890, 37172, 'thirty-seven thousand one hundred seventy-two'), (22891, 86737, 'eighty-six thousand seven hundred thirty-seven'), (22892, 40891, 'forty thousand eight hundred ninety-one'), (22893, 7585, 'seven thousand five hundred eighty-five'), (22894, 52351, 'fifty-two thousand three hundred fifty-one'), (22895, 44100, 'forty-four thousand one hundred'), (22896, 69309, 'sixty-nine thousand three hundred nine'), (22897, 12446, 'twelve thousand four hundred forty-six'), (22898, 94491, 'ninety-four thousand four hundred ninety-one'), (22899, 56215, 'fifty-six thousand two hundred fifteen'), (22900, 90637, 'ninety thousand six hundred thirty-seven'), (22901, 7853, 'seven thousand eight hundred fifty-three'), (22902, 61270, 'sixty-one thousand two hundred seventy'), (22903, 29492, 'twenty-nine thousand four hundred ninety-two'), (22904, 48686, 'forty-eight thousand six hundred eighty-six'), (22905, 44041, 'forty-four thousand forty-one'), (22906, 12946, 'twelve thousand nine hundred forty-six'), (22907, 62708, 'sixty-two thousand seven hundred eight'), (22908, 51438, 'fifty-one thousand four hundred thirty-eight'), (22909, 17330, 'seventeen thousand three hundred thirty'), (22910, 56953, 'fifty-six thousand nine hundred fifty-three'), (22911, 71972, 'seventy-one thousand nine hundred seventy-two'), (22912, 10397, 'ten thousand three hundred ninety-seven'), (22913, 52242, 'fifty-two thousand two hundred forty-two'), (22914, 97039, 'ninety-seven thousand thirty-nine'), (22915, 73760, 'seventy-three thousand seven hundred sixty'), (22916, 86967, 'eighty-six thousand nine hundred sixty-seven'), (22917, 18344, 'eighteen thousand three hundred forty-four'), (22918, 62047, 'sixty-two thousand forty-seven'), (22919, 31898, 'thirty-one thousand eight hundred ninety-eight'), (22920, 44725, 'forty-four thousand seven hundred twenty-five'), (22921, 74150, 'seventy-four thousand one hundred fifty'), (22922, 95639, 'ninety-five thousand six hundred thirty-nine'), (22923, 89281, 'eighty-nine thousand two hundred eighty-one'), (22924, 42063, 'forty-two thousand sixty-three'), (22925, 19988, 'nineteen thousand nine hundred eighty-eight'), (22926, 82130, 'eighty-two thousand one hundred thirty'), (22927, 53395, 'fifty-three thousand three hundred ninety-five'), (22928, 57286, 'fifty-seven thousand two hundred eighty-six'), (22929, 17722, 'seventeen thousand seven hundred twenty-two'), (22930, 80735, 'eighty thousand seven hundred thirty-five'), (22931, 77289, 'seventy-seven thousand two hundred eighty-nine'), (22932, 98249, 'ninety-eight thousand two hundred forty-nine'), (22933, 46373, 'forty-six thousand three hundred seventy-three'), (22934, 90674, 'ninety thousand six hundred seventy-four'), (22935, 81182, 'eighty-one thousand one hundred eighty-two'), (22936, 18431, 'eighteen thousand four hundred thirty-one'), (22937, 28765, 'twenty-eight thousand seven hundred sixty-five'), (22938, 2879, 'two thousand eight hundred seventy-nine'), (22939, 33744, 'thirty-three thousand seven hundred forty-four'), (22940, 77644, 'seventy-seven thousand six hundred forty-four'), (22941, 68473, 'sixty-eight thousand four hundred seventy-three'), (22942, 85705, 'eighty-five thousand seven hundred five'), (22943, 27411, 'twenty-seven thousand four hundred eleven'), (22944, 27622, 'twenty-seven thousand six hundred twenty-two'), (22945, 97346, 'ninety-seven thousand three hundred forty-six'), (22946, 99408, 'ninety-nine thousand four hundred eight'), (22947, 9867, 'nine thousand eight hundred sixty-seven'), (22948, 46306, 'forty-six thousand three hundred six'), (22949, 76594, 'seventy-six thousand five hundred ninety-four'), (22950, 12188, 'twelve thousand one hundred eighty-eight'), (22951, 11604, 'eleven thousand six hundred four'), (22952, 15351, 'fifteen thousand three hundred fifty-one'), (22953, 74509, 'seventy-four thousand five hundred nine'), (22954, 63495, 'sixty-three thousand four hundred ninety-five'), (22955, 28987, 'twenty-eight thousand nine hundred eighty-seven'), (22956, 81720, 'eighty-one thousand seven hundred twenty'), (22957, 8213, 'eight thousand two hundred thirteen'), (22958, 66792, 'sixty-six thousand seven hundred ninety-two'), (22959, 88436, 'eighty-eight thousand four hundred thirty-six'), (22960, 75240, 'seventy-five thousand two hundred forty'), (22961, 81797, 'eighty-one thousand seven hundred ninety-seven'), (22962, 12798, 'twelve thousand seven hundred ninety-eight'), (22963, 2271, 'two thousand two hundred seventy-one'), (22964, 76117, 'seventy-six thousand one hundred seventeen'), (22965, 22369, 'twenty-two thousand three hundred sixty-nine'), (22966, 51683, 'fifty-one thousand six hundred eighty-three'), (22967, 2881, 'two thousand eight hundred eighty-one'), (22968, 10453, 'ten thousand four hundred fifty-three'), (22969, 79244, 'seventy-nine thousand two hundred forty-four'), (22970, 44471, 'forty-four thousand four hundred seventy-one'), (22971, 78990, 'seventy-eight thousand nine hundred ninety'), (22972, 93235, 'ninety-three thousand two hundred thirty-five'), (22973, 41515, 'forty-one thousand five hundred fifteen'), (22974, 45959, 'forty-five thousand nine hundred fifty-nine'), (22975, 67278, 'sixty-seven thousand two hundred seventy-eight'), (22976, 8773, 'eight thousand seven hundred seventy-three'), (22977, 35032, 'thirty-five thousand thirty-two'), (22978, 41934, 'forty-one thousand nine hundred thirty-four'), (22979, 69223, 'sixty-nine thousand two hundred twenty-three'), (22980, 9680, 'nine thousand six hundred eighty'), (22981, 56174, 'fifty-six thousand one hundred seventy-four'), (22982, 63774, 'sixty-three thousand seven hundred seventy-four'), (22983, 29600, 'twenty-nine thousand six hundred'), (22984, 9767, 'nine thousand seven hundred sixty-seven'), (22985, 27676, 'twenty-seven thousand six hundred seventy-six'), (22986, 49857, 'forty-nine thousand eight hundred fifty-seven'), (22987, 22099, 'twenty-two thousand ninety-nine'), (22988, 45041, 'forty-five thousand forty-one'), (22989, 5922, 'five thousand nine hundred twenty-two'), (22990, 42504, 'forty-two thousand five hundred four'), (22991, 64111, 'sixty-four thousand one hundred eleven'), (22992, 90671, 'ninety thousand six hundred seventy-one'), (22993, 96008, 'ninety-six thousand eight'), (22994, 75511, 'seventy-five thousand five hundred eleven'), (22995, 19239, 'nineteen thousand two hundred thirty-nine'), (22996, 10052, 'ten thousand fifty-two'), (22997, 5846, 'five thousand eight hundred forty-six'), (22998, 32954, 'thirty-two thousand nine hundred fifty-four'), (22999, 31536, 'thirty-one thousand five hundred thirty-six'), (23000, 51687, 'fifty-one thousand six hundred eighty-seven'), (23001, 87535, 'eighty-seven thousand five hundred thirty-five'), (23002, 74485, 'seventy-four thousand four hundred eighty-five'), (23003, 10049, 'ten thousand forty-nine'), (23004, 7853, 'seven thousand eight hundred fifty-three'), (23005, 14943, 'fourteen thousand nine hundred forty-three'), (23006, 83839, 'eighty-three thousand eight hundred thirty-nine'), (23007, 44199, 'forty-four thousand one hundred ninety-nine'), (23008, 85503, 'eighty-five thousand five hundred three'), (23009, 43577, 'forty-three thousand five hundred seventy-seven'), (23010, 42649, 'forty-two thousand six hundred forty-nine'), (23011, 68429, 'sixty-eight thousand four hundred twenty-nine'), (23012, 53685, 'fifty-three thousand six hundred eighty-five'), (23013, 41878, 'forty-one thousand eight hundred seventy-eight'), (23014, 54519, 'fifty-four thousand five hundred nineteen'), (23015, 82833, 'eighty-two thousand eight hundred thirty-three'), (23016, 36780, 'thirty-six thousand seven hundred eighty'), (23017, 24165, 'twenty-four thousand one hundred sixty-five'), (23018, 57477, 'fifty-seven thousand four hundred seventy-seven'), (23019, 51711, 'fifty-one thousand seven hundred eleven'), (23020, 97385, 'ninety-seven thousand three hundred eighty-five'), (23021, 99814, 'ninety-nine thousand eight hundred fourteen'), (23022, 68742, 'sixty-eight thousand seven hundred forty-two'), (23023, 95500, 'ninety-five thousand five hundred'), (23024, 22495, 'twenty-two thousand four hundred ninety-five'), (23025, 44383, 'forty-four thousand three hundred eighty-three'), (23026, 86042, 'eighty-six thousand forty-two'), (23027, 41488, 'forty-one thousand four hundred eighty-eight'), (23028, 39763, 'thirty-nine thousand seven hundred sixty-three'), (23029, 87210, 'eighty-seven thousand two hundred ten'), (23030, 48895, 'forty-eight thousand eight hundred ninety-five'), (23031, 22355, 'twenty-two thousand three hundred fifty-five'), (23032, 45702, 'forty-five thousand seven hundred two'), (23033, 34182, 'thirty-four thousand one hundred eighty-two'), (23034, 78428, 'seventy-eight thousand four hundred twenty-eight'), (23035, 30354, 'thirty thousand three hundred fifty-four'), (23036, 34218, 'thirty-four thousand two hundred eighteen'), (23037, 10700, 'ten thousand seven hundred'), (23038, 9858, 'nine thousand eight hundred fifty-eight'), (23039, 40459, 'forty thousand four hundred fifty-nine'), (23040, 50640, 'fifty thousand six hundred forty'), (23041, 15459, 'fifteen thousand four hundred fifty-nine'), (23042, 23395, 'twenty-three thousand three hundred ninety-five'), (23043, 97730, 'ninety-seven thousand seven hundred thirty'), (23044, 8721, 'eight thousand seven hundred twenty-one'), (23045, 30962, 'thirty thousand nine hundred sixty-two'), (23046, 66533, 'sixty-six thousand five hundred thirty-three'), (23047, 46713, 'forty-six thousand seven hundred thirteen'), (23048, 22230, 'twenty-two thousand two hundred thirty'), (23049, 5688, 'five thousand six hundred eighty-eight'), (23050, 61020, 'sixty-one thousand twenty'), (23051, 59727, 'fifty-nine thousand seven hundred twenty-seven'), (23052, 86044, 'eighty-six thousand forty-four'), (23053, 12779, 'twelve thousand seven hundred seventy-nine'), (23054, 49, 'forty-nine'), (23055, 95573, 'ninety-five thousand five hundred seventy-three'), (23056, 3577, 'three thousand five hundred seventy-seven'), (23057, 61515, 'sixty-one thousand five hundred fifteen'), (23058, 61021, 'sixty-one thousand twenty-one'), (23059, 68684, 'sixty-eight thousand six hundred eighty-four'), (23060, 59819, 'fifty-nine thousand eight hundred nineteen'), (23061, 69086, 'sixty-nine thousand eighty-six'), (23062, 34650, 'thirty-four thousand six hundred fifty'), (23063, 55319, 'fifty-five thousand three hundred nineteen'), (23064, 55718, 'fifty-five thousand seven hundred eighteen'), (23065, 51828, 'fifty-one thousand eight hundred twenty-eight'), (23066, 61824, 'sixty-one thousand eight hundred twenty-four'), (23067, 27957, 'twenty-seven thousand nine hundred fifty-seven'), (23068, 40053, 'forty thousand fifty-three'), (23069, 64049, 'sixty-four thousand forty-nine'), (23070, 85640, 'eighty-five thousand six hundred forty'), (23071, 20675, 'twenty thousand six hundred seventy-five'), (23072, 12096, 'twelve thousand ninety-six'), (23073, 65541, 'sixty-five thousand five hundred forty-one'), (23074, 68654, 'sixty-eight thousand six hundred fifty-four'), (23075, 83360, 'eighty-three thousand three hundred sixty'), (23076, 67788, 'sixty-seven thousand seven hundred eighty-eight'), (23077, 41714, 'forty-one thousand seven hundred fourteen'), (23078, 78767, 'seventy-eight thousand seven hundred sixty-seven'), (23079, 92042, 'ninety-two thousand forty-two'), (23080, 72495, 'seventy-two thousand four hundred ninety-five'), (23081, 39616, 'thirty-nine thousand six hundred sixteen'), (23082, 14636, 'fourteen thousand six hundred thirty-six'), (23083, 2885, 'two thousand eight hundred eighty-five'), (23084, 29187, 'twenty-nine thousand one hundred eighty-seven'), (23085, 27628, 'twenty-seven thousand six hundred twenty-eight'), (23086, 63766, 'sixty-three thousand seven hundred sixty-six'), (23087, 50074, 'fifty thousand seventy-four'), (23088, 44576, 'forty-four thousand five hundred seventy-six'), (23089, 99995, 'ninety-nine thousand nine hundred ninety-five'), (23090, 14771, 'fourteen thousand seven hundred seventy-one'), (23091, 28008, 'twenty-eight thousand eight'), (23092, 94786, 'ninety-four thousand seven hundred eighty-six'), (23093, 35200, 'thirty-five thousand two hundred'), (23094, 283, 'two hundred eighty-three'), (23095, 66428, 'sixty-six thousand four hundred twenty-eight'), (23096, 60029, 'sixty thousand twenty-nine'), (23097, 34878, 'thirty-four thousand eight hundred seventy-eight'), (23098, 84825, 'eighty-four thousand eight hundred twenty-five'), (23099, 21888, 'twenty-one thousand eight hundred eighty-eight'), (23100, 94021, 'ninety-four thousand twenty-one'), (23101, 30740, 'thirty thousand seven hundred forty'), (23102, 24113, 'twenty-four thousand one hundred thirteen'), (23103, 3818, 'three thousand eight hundred eighteen'), (23104, 63062, 'sixty-three thousand sixty-two'), (23105, 86277, 'eighty-six thousand two hundred seventy-seven'), (23106, 25322, 'twenty-five thousand three hundred twenty-two'), (23107, 43668, 'forty-three thousand six hundred sixty-eight'), (23108, 3952, 'three thousand nine hundred fifty-two'), (23109, 70535, 'seventy thousand five hundred thirty-five'), (23110, 25918, 'twenty-five thousand nine hundred eighteen'), (23111, 27229, 'twenty-seven thousand two hundred twenty-nine'), (23112, 48752, 'forty-eight thousand seven hundred fifty-two'), (23113, 44881, 'forty-four thousand eight hundred eighty-one'), (23114, 64414, 'sixty-four thousand four hundred fourteen'), (23115, 35939, 'thirty-five thousand nine hundred thirty-nine'), (23116, 23918, 'twenty-three thousand nine hundred eighteen'), (23117, 25125, 'twenty-five thousand one hundred twenty-five'), (23118, 12526, 'twelve thousand five hundred twenty-six'), (23119, 74712, 'seventy-four thousand seven hundred twelve'), (23120, 70777, 'seventy thousand seven hundred seventy-seven'), (23121, 91875, 'ninety-one thousand eight hundred seventy-five'), (23122, 41314, 'forty-one thousand three hundred fourteen'), (23123, 9547, 'nine thousand five hundred forty-seven'), (23124, 37162, 'thirty-seven thousand one hundred sixty-two'), (23125, 51172, 'fifty-one thousand one hundred seventy-two'), (23126, 7064, 'seven thousand sixty-four'), (23127, 52566, 'fifty-two thousand five hundred sixty-six'), (23128, 39018, 'thirty-nine thousand eighteen'), (23129, 99950, 'ninety-nine thousand nine hundred fifty'), (23130, 73518, 'seventy-three thousand five hundred eighteen'), (23131, 28550, 'twenty-eight thousand five hundred fifty'), (23132, 94915, 'ninety-four thousand nine hundred fifteen'), (23133, 46027, 'forty-six thousand twenty-seven'), (23134, 61076, 'sixty-one thousand seventy-six'), (23135, 70354, 'seventy thousand three hundred fifty-four'), (23136, 70643, 'seventy thousand six hundred forty-three'), (23137, 71184, 'seventy-one thousand one hundred eighty-four'), (23138, 36771, 'thirty-six thousand seven hundred seventy-one'), (23139, 41954, 'forty-one thousand nine hundred fifty-four'), (23140, 49244, 'forty-nine thousand two hundred forty-four'), (23141, 28770, 'twenty-eight thousand seven hundred seventy'), (23142, 83008, 'eighty-three thousand eight'), (23143, 82772, 'eighty-two thousand seven hundred seventy-two'), (23144, 3962, 'three thousand nine hundred sixty-two'), (23145, 82433, 'eighty-two thousand four hundred thirty-three'), (23146, 64003, 'sixty-four thousand three'), (23147, 1353, 'one thousand three hundred fifty-three'), (23148, 41889, 'forty-one thousand eight hundred eighty-nine'), (23149, 49364, 'forty-nine thousand three hundred sixty-four'), (23150, 5333, 'five thousand three hundred thirty-three'), (23151, 62073, 'sixty-two thousand seventy-three'), (23152, 79364, 'seventy-nine thousand three hundred sixty-four'), (23153, 6326, 'six thousand three hundred twenty-six'), (23154, 74235, 'seventy-four thousand two hundred thirty-five'), (23155, 14801, 'fourteen thousand eight hundred one'), (23156, 12219, 'twelve thousand two hundred nineteen'), (23157, 91148, 'ninety-one thousand one hundred forty-eight'), (23158, 15650, 'fifteen thousand six hundred fifty'), (23159, 62682, 'sixty-two thousand six hundred eighty-two'), (23160, 64143, 'sixty-four thousand one hundred forty-three'), (23161, 60222, 'sixty thousand two hundred twenty-two'), (23162, 62003, 'sixty-two thousand three'), (23163, 7956, 'seven thousand nine hundred fifty-six'), (23164, 89732, 'eighty-nine thousand seven hundred thirty-two'), (23165, 29260, 'twenty-nine thousand two hundred sixty'), (23166, 340, 'three hundred forty'), (23167, 20013, 'twenty thousand thirteen'), (23168, 50160, 'fifty thousand one hundred sixty'), (23169, 98632, 'ninety-eight thousand six hundred thirty-two'), (23170, 33961, 'thirty-three thousand nine hundred sixty-one'), (23171, 13335, 'thirteen thousand three hundred thirty-five'), (23172, 12894, 'twelve thousand eight hundred ninety-four'), (23173, 58239, 'fifty-eight thousand two hundred thirty-nine'), (23174, 70723, 'seventy thousand seven hundred twenty-three'), (23175, 99321, 'ninety-nine thousand three hundred twenty-one'), (23176, 90602, 'ninety thousand six hundred two'), (23177, 72498, 'seventy-two thousand four hundred ninety-eight'), (23178, 73856, 'seventy-three thousand eight hundred fifty-six'), (23179, 60896, 'sixty thousand eight hundred ninety-six'), (23180, 26178, 'twenty-six thousand one hundred seventy-eight'), (23181, 50638, 'fifty thousand six hundred thirty-eight'), (23182, 42217, 'forty-two thousand two hundred seventeen'), (23183, 48850, 'forty-eight thousand eight hundred fifty'), (23184, 14551, 'fourteen thousand five hundred fifty-one'), (23185, 70040, 'seventy thousand forty'), (23186, 78640, 'seventy-eight thousand six hundred forty'), (23187, 15926, 'fifteen thousand nine hundred twenty-six'), (23188, 93520, 'ninety-three thousand five hundred twenty'), (23189, 75962, 'seventy-five thousand nine hundred sixty-two'), (23190, 73934, 'seventy-three thousand nine hundred thirty-four'), (23191, 70159, 'seventy thousand one hundred fifty-nine'), (23192, 13031, 'thirteen thousand thirty-one'), (23193, 52877, 'fifty-two thousand eight hundred seventy-seven'), (23194, 80595, 'eighty thousand five hundred ninety-five'), (23195, 84094, 'eighty-four thousand ninety-four'), (23196, 14341, 'fourteen thousand three hundred forty-one'), (23197, 45913, 'forty-five thousand nine hundred thirteen'), (23198, 77661, 'seventy-seven thousand six hundred sixty-one'), (23199, 36192, 'thirty-six thousand one hundred ninety-two'), (23200, 87079, 'eighty-seven thousand seventy-nine'), (23201, 55866, 'fifty-five thousand eight hundred sixty-six'), (23202, 83091, 'eighty-three thousand ninety-one'), (23203, 60716, 'sixty thousand seven hundred sixteen'), (23204, 53476, 'fifty-three thousand four hundred seventy-six'), (23205, 54866, 'fifty-four thousand eight hundred sixty-six'), (23206, 93785, 'ninety-three thousand seven hundred eighty-five'), (23207, 12637, 'twelve thousand six hundred thirty-seven'), (23208, 65905, 'sixty-five thousand nine hundred five'), (23209, 66465, 'sixty-six thousand four hundred sixty-five'), (23210, 15780, 'fifteen thousand seven hundred eighty'), (23211, 78610, 'seventy-eight thousand six hundred ten'), (23212, 77539, 'seventy-seven thousand five hundred thirty-nine'), (23213, 16648, 'sixteen thousand six hundred forty-eight'), (23214, 39501, 'thirty-nine thousand five hundred one'), (23215, 87397, 'eighty-seven thousand three hundred ninety-seven'), (23216, 48532, 'forty-eight thousand five hundred thirty-two'), (23217, 25608, 'twenty-five thousand six hundred eight'), (23218, 68758, 'sixty-eight thousand seven hundred fifty-eight'), (23219, 88549, 'eighty-eight thousand five hundred forty-nine'), (23220, 50415, 'fifty thousand four hundred fifteen'), (23221, 1315, 'one thousand three hundred fifteen'), (23222, 40435, 'forty thousand four hundred thirty-five'), (23223, 93417, 'ninety-three thousand four hundred seventeen'), (23224, 36041, 'thirty-six thousand forty-one'), (23225, 77042, 'seventy-seven thousand forty-two'), (23226, 65596, 'sixty-five thousand five hundred ninety-six'), (23227, 19594, 'nineteen thousand five hundred ninety-four'), (23228, 2365, 'two thousand three hundred sixty-five'), (23229, 10810, 'ten thousand eight hundred ten'), (23230, 1325, 'one thousand three hundred twenty-five'), (23231, 73187, 'seventy-three thousand one hundred eighty-seven'), (23232, 24339, 'twenty-four thousand three hundred thirty-nine'), (23233, 71648, 'seventy-one thousand six hundred forty-eight'), (23234, 30917, 'thirty thousand nine hundred seventeen'), (23235, 73703, 'seventy-three thousand seven hundred three'), (23236, 18596, 'eighteen thousand five hundred ninety-six'), (23237, 40060, 'forty thousand sixty'), (23238, 23659, 'twenty-three thousand six hundred fifty-nine'), (23239, 36972, 'thirty-six thousand nine hundred seventy-two'), (23240, 90048, 'ninety thousand forty-eight'), (23241, 43474, 'forty-three thousand four hundred seventy-four'), (23242, 5553, 'five thousand five hundred fifty-three'), (23243, 50968, 'fifty thousand nine hundred sixty-eight'), (23244, 25849, 'twenty-five thousand eight hundred forty-nine'), (23245, 76173, 'seventy-six thousand one hundred seventy-three'), (23246, 93012, 'ninety-three thousand twelve'), (23247, 56171, 'fifty-six thousand one hundred seventy-one'), (23248, 34374, 'thirty-four thousand three hundred seventy-four'), (23249, 98205, 'ninety-eight thousand two hundred five'), (23250, 38686, 'thirty-eight thousand six hundred eighty-six'), (23251, 17743, 'seventeen thousand seven hundred forty-three'), (23252, 87661, 'eighty-seven thousand six hundred sixty-one'), (23253, 21120, 'twenty-one thousand one hundred twenty'), (23254, 83074, 'eighty-three thousand seventy-four'), (23255, 35249, 'thirty-five thousand two hundred forty-nine'), (23256, 26539, 'twenty-six thousand five hundred thirty-nine'), (23257, 82484, 'eighty-two thousand four hundred eighty-four'), (23258, 49268, 'forty-nine thousand two hundred sixty-eight'), (23259, 1011, 'one thousand eleven'), (23260, 84316, 'eighty-four thousand three hundred sixteen'), (23261, 70974, 'seventy thousand nine hundred seventy-four'), (23262, 84233, 'eighty-four thousand two hundred thirty-three'), (23263, 10520, 'ten thousand five hundred twenty'), (23264, 87044, 'eighty-seven thousand forty-four'), (23265, 97954, 'ninety-seven thousand nine hundred fifty-four'), (23266, 45841, 'forty-five thousand eight hundred forty-one'), (23267, 22141, 'twenty-two thousand one hundred forty-one'), (23268, 14182, 'fourteen thousand one hundred eighty-two'), (23269, 98147, 'ninety-eight thousand one hundred forty-seven'), (23270, 36319, 'thirty-six thousand three hundred nineteen'), (23271, 70837, 'seventy thousand eight hundred thirty-seven'), (23272, 90692, 'ninety thousand six hundred ninety-two'), (23273, 67121, 'sixty-seven thousand one hundred twenty-one'), (23274, 28666, 'twenty-eight thousand six hundred sixty-six'), (23275, 33530, 'thirty-three thousand five hundred thirty'), (23276, 7183, 'seven thousand one hundred eighty-three'), (23277, 5236, 'five thousand two hundred thirty-six'), (23278, 80548, 'eighty thousand five hundred forty-eight'), (23279, 16777, 'sixteen thousand seven hundred seventy-seven'), (23280, 97967, 'ninety-seven thousand nine hundred sixty-seven'), (23281, 67165, 'sixty-seven thousand one hundred sixty-five'), (23282, 25256, 'twenty-five thousand two hundred fifty-six'), (23283, 15170, 'fifteen thousand one hundred seventy'), (23284, 9796, 'nine thousand seven hundred ninety-six'), (23285, 76480, 'seventy-six thousand four hundred eighty'), (23286, 3630, 'three thousand six hundred thirty'), (23287, 28011, 'twenty-eight thousand eleven'), (23288, 21575, 'twenty-one thousand five hundred seventy-five'), (23289, 10048, 'ten thousand forty-eight'), (23290, 88933, 'eighty-eight thousand nine hundred thirty-three'), (23291, 2812, 'two thousand eight hundred twelve'), (23292, 33735, 'thirty-three thousand seven hundred thirty-five'), (23293, 21127, 'twenty-one thousand one hundred twenty-seven'), (23294, 14258, 'fourteen thousand two hundred fifty-eight'), (23295, 43699, 'forty-three thousand six hundred ninety-nine'), (23296, 32905, 'thirty-two thousand nine hundred five'), (23297, 21878, 'twenty-one thousand eight hundred seventy-eight'), (23298, 73355, 'seventy-three thousand three hundred fifty-five'), (23299, 29446, 'twenty-nine thousand four hundred forty-six'), (23300, 3401, 'three thousand four hundred one'), (23301, 27017, 'twenty-seven thousand seventeen'), (23302, 52191, 'fifty-two thousand one hundred ninety-one'), (23303, 38679, 'thirty-eight thousand six hundred seventy-nine'), (23304, 77794, 'seventy-seven thousand seven hundred ninety-four'), (23305, 87916, 'eighty-seven thousand nine hundred sixteen'), (23306, 47688, 'forty-seven thousand six hundred eighty-eight'), (23307, 81647, 'eighty-one thousand six hundred forty-seven'), (23308, 4886, 'four thousand eight hundred eighty-six'), (23309, 44796, 'forty-four thousand seven hundred ninety-six'), (23310, 67938, 'sixty-seven thousand nine hundred thirty-eight'), (23311, 91025, 'ninety-one thousand twenty-five'), (23312, 72844, 'seventy-two thousand eight hundred forty-four'), (23313, 67287, 'sixty-seven thousand two hundred eighty-seven'), (23314, 21271, 'twenty-one thousand two hundred seventy-one'), (23315, 96367, 'ninety-six thousand three hundred sixty-seven'), (23316, 23512, 'twenty-three thousand five hundred twelve'), (23317, 90773, 'ninety thousand seven hundred seventy-three'), (23318, 69436, 'sixty-nine thousand four hundred thirty-six'), (23319, 58555, 'fifty-eight thousand five hundred fifty-five'), (23320, 14073, 'fourteen thousand seventy-three'), (23321, 58627, 'fifty-eight thousand six hundred twenty-seven'), (23322, 69549, 'sixty-nine thousand five hundred forty-nine'), (23323, 47929, 'forty-seven thousand nine hundred twenty-nine'), (23324, 89922, 'eighty-nine thousand nine hundred twenty-two'), (23325, 29449, 'twenty-nine thousand four hundred forty-nine'), (23326, 37493, 'thirty-seven thousand four hundred ninety-three'), (23327, 74623, 'seventy-four thousand six hundred twenty-three'), (23328, 92064, 'ninety-two thousand sixty-four'), (23329, 44323, 'forty-four thousand three hundred twenty-three'), (23330, 63265, 'sixty-three thousand two hundred sixty-five'), (23331, 69513, 'sixty-nine thousand five hundred thirteen'), (23332, 32218, 'thirty-two thousand two hundred eighteen'), (23333, 95799, 'ninety-five thousand seven hundred ninety-nine'), (23334, 63059, 'sixty-three thousand fifty-nine'), (23335, 22578, 'twenty-two thousand five hundred seventy-eight'), (23336, 64359, 'sixty-four thousand three hundred fifty-nine'), (23337, 85406, 'eighty-five thousand four hundred six'), (23338, 23385, 'twenty-three thousand three hundred eighty-five'), (23339, 17516, 'seventeen thousand five hundred sixteen'), (23340, 63428, 'sixty-three thousand four hundred twenty-eight'), (23341, 77530, 'seventy-seven thousand five hundred thirty'), (23342, 38638, 'thirty-eight thousand six hundred thirty-eight'), (23343, 28771, 'twenty-eight thousand seven hundred seventy-one'), (23344, 94593, 'ninety-four thousand five hundred ninety-three'), (23345, 49314, 'forty-nine thousand three hundred fourteen'), (23346, 14806, 'fourteen thousand eight hundred six'), (23347, 2977, 'two thousand nine hundred seventy-seven'), (23348, 68209, 'sixty-eight thousand two hundred nine'), (23349, 56244, 'fifty-six thousand two hundred forty-four'), (23350, 40404, 'forty thousand four hundred four'), (23351, 32329, 'thirty-two thousand three hundred twenty-nine'), (23352, 51575, 'fifty-one thousand five hundred seventy-five'), (23353, 31710, 'thirty-one thousand seven hundred ten'), (23354, 89808, 'eighty-nine thousand eight hundred eight'), (23355, 55056, 'fifty-five thousand fifty-six'), (23356, 60341, 'sixty thousand three hundred forty-one'), (23357, 69529, 'sixty-nine thousand five hundred twenty-nine'), (23358, 49484, 'forty-nine thousand four hundred eighty-four'), (23359, 46290, 'forty-six thousand two hundred ninety'), (23360, 9014, 'nine thousand fourteen'), (23361, 17870, 'seventeen thousand eight hundred seventy'), (23362, 20207, 'twenty thousand two hundred seven'), (23363, 96086, 'ninety-six thousand eighty-six'), (23364, 58840, 'fifty-eight thousand eight hundred forty'), (23365, 73828, 'seventy-three thousand eight hundred twenty-eight'), (23366, 26844, 'twenty-six thousand eight hundred forty-four'), (23367, 17427, 'seventeen thousand four hundred twenty-seven'), (23368, 17354, 'seventeen thousand three hundred fifty-four'), (23369, 89537, 'eighty-nine thousand five hundred thirty-seven'), (23370, 25912, 'twenty-five thousand nine hundred twelve'), (23371, 66085, 'sixty-six thousand eighty-five'), (23372, 65729, 'sixty-five thousand seven hundred twenty-nine'), (23373, 6498, 'six thousand four hundred ninety-eight'), (23374, 47987, 'forty-seven thousand nine hundred eighty-seven'), (23375, 35867, 'thirty-five thousand eight hundred sixty-seven'), (23376, 8285, 'eight thousand two hundred eighty-five'), (23377, 9778, 'nine thousand seven hundred seventy-eight'), (23378, 10338, 'ten thousand three hundred thirty-eight'), (23379, 77276, 'seventy-seven thousand two hundred seventy-six'), (23380, 31120, 'thirty-one thousand one hundred twenty'), (23381, 8997, 'eight thousand nine hundred ninety-seven'), (23382, 9251, 'nine thousand two hundred fifty-one'), (23383, 18729, 'eighteen thousand seven hundred twenty-nine'), (23384, 24129, 'twenty-four thousand one hundred twenty-nine'), (23385, 76296, 'seventy-six thousand two hundred ninety-six'), (23386, 59601, 'fifty-nine thousand six hundred one'), (23387, 48361, 'forty-eight thousand three hundred sixty-one'), (23388, 53964, 'fifty-three thousand nine hundred sixty-four'), (23389, 89733, 'eighty-nine thousand seven hundred thirty-three'), (23390, 90936, 'ninety thousand nine hundred thirty-six'), (23391, 52230, 'fifty-two thousand two hundred thirty'), (23392, 30685, 'thirty thousand six hundred eighty-five'), (23393, 90448, 'ninety thousand four hundred forty-eight'), (23394, 95786, 'ninety-five thousand seven hundred eighty-six'), (23395, 21699, 'twenty-one thousand six hundred ninety-nine'), (23396, 89012, 'eighty-nine thousand twelve'), (23397, 60818, 'sixty thousand eight hundred eighteen'), (23398, 78439, 'seventy-eight thousand four hundred thirty-nine'), (23399, 34945, 'thirty-four thousand nine hundred forty-five'), (23400, 7363, 'seven thousand three hundred sixty-three'), (23401, 60322, 'sixty thousand three hundred twenty-two'), (23402, 72677, 'seventy-two thousand six hundred seventy-seven'), (23403, 39897, 'thirty-nine thousand eight hundred ninety-seven'), (23404, 21031, 'twenty-one thousand thirty-one'), (23405, 45966, 'forty-five thousand nine hundred sixty-six'), (23406, 603, 'six hundred three'), (23407, 4356, 'four thousand three hundred fifty-six'), (23408, 51175, 'fifty-one thousand one hundred seventy-five'), (23409, 16461, 'sixteen thousand four hundred sixty-one'), (23410, 59916, 'fifty-nine thousand nine hundred sixteen'), (23411, 79711, 'seventy-nine thousand seven hundred eleven'), (23412, 10576, 'ten thousand five hundred seventy-six'), (23413, 23845, 'twenty-three thousand eight hundred forty-five'), (23414, 20890, 'twenty thousand eight hundred ninety'), (23415, 17833, 'seventeen thousand eight hundred thirty-three'), (23416, 21473, 'twenty-one thousand four hundred seventy-three'), (23417, 73194, 'seventy-three thousand one hundred ninety-four'), (23418, 16145, 'sixteen thousand one hundred forty-five'), (23419, 99939, 'ninety-nine thousand nine hundred thirty-nine'), (23420, 68436, 'sixty-eight thousand four hundred thirty-six'), (23421, 53173, 'fifty-three thousand one hundred seventy-three'), (23422, 82340, 'eighty-two thousand three hundred forty'), (23423, 45949, 'forty-five thousand nine hundred forty-nine'), (23424, 35528, 'thirty-five thousand five hundred twenty-eight'), (23425, 14954, 'fourteen thousand nine hundred fifty-four'), (23426, 94254, 'ninety-four thousand two hundred fifty-four'), (23427, 94556, 'ninety-four thousand five hundred fifty-six'), (23428, 37592, 'thirty-seven thousand five hundred ninety-two'), (23429, 34491, 'thirty-four thousand four hundred ninety-one'), (23430, 70638, 'seventy thousand six hundred thirty-eight'), (23431, 60238, 'sixty thousand two hundred thirty-eight'), (23432, 67919, 'sixty-seven thousand nine hundred nineteen'), (23433, 71969, 'seventy-one thousand nine hundred sixty-nine'), (23434, 23137, 'twenty-three thousand one hundred thirty-seven'), (23435, 31243, 'thirty-one thousand two hundred forty-three'), (23436, 30148, 'thirty thousand one hundred forty-eight'), (23437, 44688, 'forty-four thousand six hundred eighty-eight'), (23438, 19428, 'nineteen thousand four hundred twenty-eight'), (23439, 6511, 'six thousand five hundred eleven'), (23440, 17315, 'seventeen thousand three hundred fifteen'), (23441, 43771, 'forty-three thousand seven hundred seventy-one'), (23442, 89891, 'eighty-nine thousand eight hundred ninety-one'), (23443, 66871, 'sixty-six thousand eight hundred seventy-one'), (23444, 97850, 'ninety-seven thousand eight hundred fifty'), (23445, 30494, 'thirty thousand four hundred ninety-four'), (23446, 79671, 'seventy-nine thousand six hundred seventy-one'), (23447, 35547, 'thirty-five thousand five hundred forty-seven'), (23448, 35879, 'thirty-five thousand eight hundred seventy-nine'), (23449, 19382, 'nineteen thousand three hundred eighty-two'), (23450, 69964, 'sixty-nine thousand nine hundred sixty-four'), (23451, 94777, 'ninety-four thousand seven hundred seventy-seven'), (23452, 6338, 'six thousand three hundred thirty-eight'), (23453, 66622, 'sixty-six thousand six hundred twenty-two'), (23454, 65071, 'sixty-five thousand seventy-one'), (23455, 33206, 'thirty-three thousand two hundred six'), (23456, 38021, 'thirty-eight thousand twenty-one'), (23457, 28627, 'twenty-eight thousand six hundred twenty-seven'), (23458, 88694, 'eighty-eight thousand six hundred ninety-four'), (23459, 67536, 'sixty-seven thousand five hundred thirty-six'), (23460, 44753, 'forty-four thousand seven hundred fifty-three'), (23461, 40647, 'forty thousand six hundred forty-seven'), (23462, 34094, 'thirty-four thousand ninety-four'), (23463, 15157, 'fifteen thousand one hundred fifty-seven'), (23464, 20284, 'twenty thousand two hundred eighty-four'), (23465, 62965, 'sixty-two thousand nine hundred sixty-five'), (23466, 22488, 'twenty-two thousand four hundred eighty-eight'), (23467, 45920, 'forty-five thousand nine hundred twenty'), (23468, 83014, 'eighty-three thousand fourteen'), (23469, 82421, 'eighty-two thousand four hundred twenty-one'), (23470, 27319, 'twenty-seven thousand three hundred nineteen'), (23471, 26644, 'twenty-six thousand six hundred forty-four'), (23472, 28950, 'twenty-eight thousand nine hundred fifty'), (23473, 15142, 'fifteen thousand one hundred forty-two'), (23474, 14758, 'fourteen thousand seven hundred fifty-eight'), (23475, 68043, 'sixty-eight thousand forty-three'), (23476, 42649, 'forty-two thousand six hundred forty-nine'), (23477, 46511, 'forty-six thousand five hundred eleven'), (23478, 60710, 'sixty thousand seven hundred ten'), (23479, 50800, 'fifty thousand eight hundred'), (23480, 6379, 'six thousand three hundred seventy-nine'), (23481, 43034, 'forty-three thousand thirty-four'), (23482, 49416, 'forty-nine thousand four hundred sixteen'), (23483, 99256, 'ninety-nine thousand two hundred fifty-six'), (23484, 28556, 'twenty-eight thousand five hundred fifty-six'), (23485, 5809, 'five thousand eight hundred nine'), (23486, 51409, 'fifty-one thousand four hundred nine'), (23487, 840, 'eight hundred forty'), (23488, 13140, 'thirteen thousand one hundred forty'), (23489, 53747, 'fifty-three thousand seven hundred forty-seven'), (23490, 72919, 'seventy-two thousand nine hundred nineteen'), (23491, 16609, 'sixteen thousand six hundred nine'), (23492, 80700, 'eighty thousand seven hundred'), (23493, 44492, 'forty-four thousand four hundred ninety-two'), (23494, 93934, 'ninety-three thousand nine hundred thirty-four'), (23495, 80016, 'eighty thousand sixteen'), (23496, 94779, 'ninety-four thousand seven hundred seventy-nine'), (23497, 29719, 'twenty-nine thousand seven hundred nineteen'), (23498, 11594, 'eleven thousand five hundred ninety-four'), (23499, 15766, 'fifteen thousand seven hundred sixty-six'), (23500, 98228, 'ninety-eight thousand two hundred twenty-eight'), (23501, 80538, 'eighty thousand five hundred thirty-eight'), (23502, 49852, 'forty-nine thousand eight hundred fifty-two'), (23503, 29929, 'twenty-nine thousand nine hundred twenty-nine'), (23504, 67227, 'sixty-seven thousand two hundred twenty-seven'), (23505, 77702, 'seventy-seven thousand seven hundred two'), (23506, 11464, 'eleven thousand four hundred sixty-four'), (23507, 18588, 'eighteen thousand five hundred eighty-eight'), (23508, 91089, 'ninety-one thousand eighty-nine'), (23509, 43218, 'forty-three thousand two hundred eighteen'), (23510, 67325, 'sixty-seven thousand three hundred twenty-five'), (23511, 278, 'two hundred seventy-eight'), (23512, 49032, 'forty-nine thousand thirty-two'), (23513, 44547, 'forty-four thousand five hundred forty-seven'), (23514, 83138, 'eighty-three thousand one hundred thirty-eight'), (23515, 12927, 'twelve thousand nine hundred twenty-seven'), (23516, 92786, 'ninety-two thousand seven hundred eighty-six'), (23517, 51758, 'fifty-one thousand seven hundred fifty-eight'), (23518, 31122, 'thirty-one thousand one hundred twenty-two'), (23519, 73317, 'seventy-three thousand three hundred seventeen'), (23520, 53734, 'fifty-three thousand seven hundred thirty-four'), (23521, 66048, 'sixty-six thousand forty-eight'), (23522, 20213, 'twenty thousand two hundred thirteen'), (23523, 52858, 'fifty-two thousand eight hundred fifty-eight'), (23524, 15831, 'fifteen thousand eight hundred thirty-one'), (23525, 53469, 'fifty-three thousand four hundred sixty-nine'), (23526, 6111, 'six thousand one hundred eleven'), (23527, 78455, 'seventy-eight thousand four hundred fifty-five'), (23528, 3147, 'three thousand one hundred forty-seven'), (23529, 17883, 'seventeen thousand eight hundred eighty-three'), (23530, 37172, 'thirty-seven thousand one hundred seventy-two'), (23531, 2148, 'two thousand one hundred forty-eight'), (23532, 20027, 'twenty thousand twenty-seven'), (23533, 37991, 'thirty-seven thousand nine hundred ninety-one'), (23534, 96979, 'ninety-six thousand nine hundred seventy-nine'), (23535, 49088, 'forty-nine thousand eighty-eight'), (23536, 52540, 'fifty-two thousand five hundred forty'), (23537, 73241, 'seventy-three thousand two hundred forty-one'), (23538, 85859, 'eighty-five thousand eight hundred fifty-nine'), (23539, 42215, 'forty-two thousand two hundred fifteen'), (23540, 45025, 'forty-five thousand twenty-five'), (23541, 10244, 'ten thousand two hundred forty-four'), (23542, 49909, 'forty-nine thousand nine hundred nine'), (23543, 63897, 'sixty-three thousand eight hundred ninety-seven'), (23544, 75501, 'seventy-five thousand five hundred one'), (23545, 33003, 'thirty-three thousand three'), (23546, 6611, 'six thousand six hundred eleven'), (23547, 42644, 'forty-two thousand six hundred forty-four'), (23548, 29415, 'twenty-nine thousand four hundred fifteen'), (23549, 8102, 'eight thousand one hundred two'), (23550, 21815, 'twenty-one thousand eight hundred fifteen'), (23551, 83430, 'eighty-three thousand four hundred thirty'), (23552, 8043, 'eight thousand forty-three'), (23553, 36525, 'thirty-six thousand five hundred twenty-five'), (23554, 24614, 'twenty-four thousand six hundred fourteen'), (23555, 34006, 'thirty-four thousand six'), (23556, 63020, 'sixty-three thousand twenty'), (23557, 10745, 'ten thousand seven hundred forty-five'), (23558, 20771, 'twenty thousand seven hundred seventy-one'), (23559, 59083, 'fifty-nine thousand eighty-three'), (23560, 52303, 'fifty-two thousand three hundred three'), (23561, 65518, 'sixty-five thousand five hundred eighteen'), (23562, 78898, 'seventy-eight thousand eight hundred ninety-eight'), (23563, 74657, 'seventy-four thousand six hundred fifty-seven'), (23564, 76094, 'seventy-six thousand ninety-four'), (23565, 18293, 'eighteen thousand two hundred ninety-three'), (23566, 36063, 'thirty-six thousand sixty-three'), (23567, 7299, 'seven thousand two hundred ninety-nine'), (23568, 3868, 'three thousand eight hundred sixty-eight'), (23569, 40627, 'forty thousand six hundred twenty-seven'), (23570, 84909, 'eighty-four thousand nine hundred nine'), (23571, 70715, 'seventy thousand seven hundred fifteen'), (23572, 24432, 'twenty-four thousand four hundred thirty-two'), (23573, 30419, 'thirty thousand four hundred nineteen'), (23574, 42933, 'forty-two thousand nine hundred thirty-three'), (23575, 62358, 'sixty-two thousand three hundred fifty-eight'), (23576, 98352, 'ninety-eight thousand three hundred fifty-two'), (23577, 49148, 'forty-nine thousand one hundred forty-eight'), (23578, 49457, 'forty-nine thousand four hundred fifty-seven'), (23579, 77901, 'seventy-seven thousand nine hundred one'), (23580, 24942, 'twenty-four thousand nine hundred forty-two'), (23581, 40659, 'forty thousand six hundred fifty-nine'), (23582, 59441, 'fifty-nine thousand four hundred forty-one'), (23583, 36020, 'thirty-six thousand twenty'), (23584, 85865, 'eighty-five thousand eight hundred sixty-five'), (23585, 27664, 'twenty-seven thousand six hundred sixty-four'), (23586, 32849, 'thirty-two thousand eight hundred forty-nine'), (23587, 19881, 'nineteen thousand eight hundred eighty-one'), (23588, 31546, 'thirty-one thousand five hundred forty-six'), (23589, 22977, 'twenty-two thousand nine hundred seventy-seven'), (23590, 89488, 'eighty-nine thousand four hundred eighty-eight'), (23591, 47010, 'forty-seven thousand ten'), (23592, 89848, 'eighty-nine thousand eight hundred forty-eight'), (23593, 95780, 'ninety-five thousand seven hundred eighty'), (23594, 33380, 'thirty-three thousand three hundred eighty'), (23595, 91505, 'ninety-one thousand five hundred five'), (23596, 77283, 'seventy-seven thousand two hundred eighty-three'), (23597, 6903, 'six thousand nine hundred three'), (23598, 62239, 'sixty-two thousand two hundred thirty-nine'), (23599, 4753, 'four thousand seven hundred fifty-three'), (23600, 24834, 'twenty-four thousand eight hundred thirty-four'), (23601, 66446, 'sixty-six thousand four hundred forty-six'), (23602, 82830, 'eighty-two thousand eight hundred thirty'), (23603, 45352, 'forty-five thousand three hundred fifty-two'), (23604, 62285, 'sixty-two thousand two hundred eighty-five'), (23605, 73778, 'seventy-three thousand seven hundred seventy-eight'), (23606, 22763, 'twenty-two thousand seven hundred sixty-three'), (23607, 44766, 'forty-four thousand seven hundred sixty-six'), (23608, 99597, 'ninety-nine thousand five hundred ninety-seven'), (23609, 63864, 'sixty-three thousand eight hundred sixty-four'), (23610, 7637, 'seven thousand six hundred thirty-seven'), (23611, 89977, 'eighty-nine thousand nine hundred seventy-seven'), (23612, 57362, 'fifty-seven thousand three hundred sixty-two'), (23613, 68992, 'sixty-eight thousand nine hundred ninety-two'), (23614, 6093, 'six thousand ninety-three'), (23615, 81853, 'eighty-one thousand eight hundred fifty-three'), (23616, 32792, 'thirty-two thousand seven hundred ninety-two'), (23617, 77313, 'seventy-seven thousand three hundred thirteen'), (23618, 21819, 'twenty-one thousand eight hundred nineteen'), (23619, 31603, 'thirty-one thousand six hundred three'), (23620, 2469, 'two thousand four hundred sixty-nine'), (23621, 59579, 'fifty-nine thousand five hundred seventy-nine'), (23622, 89796, 'eighty-nine thousand seven hundred ninety-six'), (23623, 59227, 'fifty-nine thousand two hundred twenty-seven'), (23624, 60582, 'sixty thousand five hundred eighty-two'), (23625, 73042, 'seventy-three thousand forty-two'), (23626, 63668, 'sixty-three thousand six hundred sixty-eight'), (23627, 72324, 'seventy-two thousand three hundred twenty-four'), (23628, 55144, 'fifty-five thousand one hundred forty-four'), (23629, 96203, 'ninety-six thousand two hundred three'), (23630, 56852, 'fifty-six thousand eight hundred fifty-two'), (23631, 87405, 'eighty-seven thousand four hundred five'), (23632, 88324, 'eighty-eight thousand three hundred twenty-four'), (23633, 24106, 'twenty-four thousand one hundred six'), (23634, 94920, 'ninety-four thousand nine hundred twenty'), (23635, 25677, 'twenty-five thousand six hundred seventy-seven'), (23636, 34123, 'thirty-four thousand one hundred twenty-three'), (23637, 21569, 'twenty-one thousand five hundred sixty-nine'), (23638, 40566, 'forty thousand five hundred sixty-six'), (23639, 36835, 'thirty-six thousand eight hundred thirty-five'), (23640, 36804, 'thirty-six thousand eight hundred four'), (23641, 5660, 'five thousand six hundred sixty'), (23642, 75358, 'seventy-five thousand three hundred fifty-eight'), (23643, 37675, 'thirty-seven thousand six hundred seventy-five'), (23644, 16032, 'sixteen thousand thirty-two'), (23645, 71169, 'seventy-one thousand one hundred sixty-nine'), (23646, 57750, 'fifty-seven thousand seven hundred fifty'), (23647, 64651, 'sixty-four thousand six hundred fifty-one'), (23648, 46926, 'forty-six thousand nine hundred twenty-six'), (23649, 17447, 'seventeen thousand four hundred forty-seven'), (23650, 90467, 'ninety thousand four hundred sixty-seven'), (23651, 79518, 'seventy-nine thousand five hundred eighteen'), (23652, 46322, 'forty-six thousand three hundred twenty-two'), (23653, 32213, 'thirty-two thousand two hundred thirteen'), (23654, 70610, 'seventy thousand six hundred ten'), (23655, 43007, 'forty-three thousand seven'), (23656, 90529, 'ninety thousand five hundred twenty-nine'), (23657, 58455, 'fifty-eight thousand four hundred fifty-five'), (23658, 81952, 'eighty-one thousand nine hundred fifty-two'), (23659, 51665, 'fifty-one thousand six hundred sixty-five'), (23660, 59875, 'fifty-nine thousand eight hundred seventy-five'), (23661, 70100, 'seventy thousand one hundred'), (23662, 95042, 'ninety-five thousand forty-two'), (23663, 3887, 'three thousand eight hundred eighty-seven'), (23664, 91723, 'ninety-one thousand seven hundred twenty-three'), (23665, 19865, 'nineteen thousand eight hundred sixty-five'), (23666, 7573, 'seven thousand five hundred seventy-three'), (23667, 48248, 'forty-eight thousand two hundred forty-eight'), (23668, 37151, 'thirty-seven thousand one hundred fifty-one'), (23669, 42660, 'forty-two thousand six hundred sixty'), (23670, 75322, 'seventy-five thousand three hundred twenty-two'), (23671, 32626, 'thirty-two thousand six hundred twenty-six'), (23672, 22580, 'twenty-two thousand five hundred eighty'), (23673, 74270, 'seventy-four thousand two hundred seventy'), (23674, 12635, 'twelve thousand six hundred thirty-five'), (23675, 86073, 'eighty-six thousand seventy-three'), (23676, 42051, 'forty-two thousand fifty-one'), (23677, 52471, 'fifty-two thousand four hundred seventy-one'), (23678, 35151, 'thirty-five thousand one hundred fifty-one'), (23679, 79147, 'seventy-nine thousand one hundred forty-seven'), (23680, 32574, 'thirty-two thousand five hundred seventy-four'), (23681, 86365, 'eighty-six thousand three hundred sixty-five'), (23682, 93214, 'ninety-three thousand two hundred fourteen'), (23683, 36900, 'thirty-six thousand nine hundred'), (23684, 35602, 'thirty-five thousand six hundred two'), (23685, 93566, 'ninety-three thousand five hundred sixty-six'), (23686, 44976, 'forty-four thousand nine hundred seventy-six'), (23687, 22623, 'twenty-two thousand six hundred twenty-three'), (23688, 55070, 'fifty-five thousand seventy'), (23689, 33558, 'thirty-three thousand five hundred fifty-eight'), (23690, 32010, 'thirty-two thousand ten'), (23691, 14196, 'fourteen thousand one hundred ninety-six'), (23692, 77627, 'seventy-seven thousand six hundred twenty-seven'), (23693, 71600, 'seventy-one thousand six hundred'), (23694, 41196, 'forty-one thousand one hundred ninety-six'), (23695, 789, 'seven hundred eighty-nine'), (23696, 13293, 'thirteen thousand two hundred ninety-three'), (23697, 18468, 'eighteen thousand four hundred sixty-eight'), (23698, 69455, 'sixty-nine thousand four hundred fifty-five'), (23699, 34415, 'thirty-four thousand four hundred fifteen'), (23700, 86678, 'eighty-six thousand six hundred seventy-eight'), (23701, 48949, 'forty-eight thousand nine hundred forty-nine'), (23702, 67793, 'sixty-seven thousand seven hundred ninety-three'), (23703, 16517, 'sixteen thousand five hundred seventeen'), (23704, 31942, 'thirty-one thousand nine hundred forty-two'), (23705, 95072, 'ninety-five thousand seventy-two'), (23706, 38961, 'thirty-eight thousand nine hundred sixty-one'), (23707, 18289, 'eighteen thousand two hundred eighty-nine'), (23708, 93881, 'ninety-three thousand eight hundred eighty-one'), (23709, 36679, 'thirty-six thousand six hundred seventy-nine'), (23710, 32755, 'thirty-two thousand seven hundred fifty-five'), (23711, 75969, 'seventy-five thousand nine hundred sixty-nine'), (23712, 23807, 'twenty-three thousand eight hundred seven'), (23713, 87929, 'eighty-seven thousand nine hundred twenty-nine'), (23714, 44764, 'forty-four thousand seven hundred sixty-four'), (23715, 54311, 'fifty-four thousand three hundred eleven'), (23716, 95398, 'ninety-five thousand three hundred ninety-eight'), (23717, 52780, 'fifty-two thousand seven hundred eighty'), (23718, 18123, 'eighteen thousand one hundred twenty-three'), (23719, 88078, 'eighty-eight thousand seventy-eight'), (23720, 23996, 'twenty-three thousand nine hundred ninety-six'), (23721, 71691, 'seventy-one thousand six hundred ninety-one'), (23722, 63458, 'sixty-three thousand four hundred fifty-eight'), (23723, 65329, 'sixty-five thousand three hundred twenty-nine'), (23724, 47236, 'forty-seven thousand two hundred thirty-six'), (23725, 30448, 'thirty thousand four hundred forty-eight'), (23726, 68705, 'sixty-eight thousand seven hundred five'), (23727, 98390, 'ninety-eight thousand three hundred ninety'), (23728, 66897, 'sixty-six thousand eight hundred ninety-seven'), (23729, 31564, 'thirty-one thousand five hundred sixty-four'), (23730, 1852, 'one thousand eight hundred fifty-two'), (23731, 42690, 'forty-two thousand six hundred ninety'), (23732, 73950, 'seventy-three thousand nine hundred fifty'), (23733, 34879, 'thirty-four thousand eight hundred seventy-nine'), (23734, 3343, 'three thousand three hundred forty-three'), (23735, 11376, 'eleven thousand three hundred seventy-six'), (23736, 16759, 'sixteen thousand seven hundred fifty-nine'), (23737, 81244, 'eighty-one thousand two hundred forty-four'), (23738, 99543, 'ninety-nine thousand five hundred forty-three'), (23739, 61186, 'sixty-one thousand one hundred eighty-six'), (23740, 82312, 'eighty-two thousand three hundred twelve'), (23741, 83516, 'eighty-three thousand five hundred sixteen'), (23742, 57423, 'fifty-seven thousand four hundred twenty-three'), (23743, 58512, 'fifty-eight thousand five hundred twelve'), (23744, 6095, 'six thousand ninety-five'), (23745, 40789, 'forty thousand seven hundred eighty-nine'), (23746, 33542, 'thirty-three thousand five hundred forty-two'), (23747, 34692, 'thirty-four thousand six hundred ninety-two'), (23748, 14631, 'fourteen thousand six hundred thirty-one'), (23749, 95687, 'ninety-five thousand six hundred eighty-seven'), (23750, 37212, 'thirty-seven thousand two hundred twelve'), (23751, 95251, 'ninety-five thousand two hundred fifty-one'), (23752, 97223, 'ninety-seven thousand two hundred twenty-three'), (23753, 53083, 'fifty-three thousand eighty-three'), (23754, 56974, 'fifty-six thousand nine hundred seventy-four'), (23755, 15773, 'fifteen thousand seven hundred seventy-three'), (23756, 22892, 'twenty-two thousand eight hundred ninety-two'), (23757, 29061, 'twenty-nine thousand sixty-one'), (23758, 62149, 'sixty-two thousand one hundred forty-nine'), (23759, 45768, 'forty-five thousand seven hundred sixty-eight'), (23760, 75691, 'seventy-five thousand six hundred ninety-one'), (23761, 72773, 'seventy-two thousand seven hundred seventy-three'), (23762, 82435, 'eighty-two thousand four hundred thirty-five'), (23763, 14322, 'fourteen thousand three hundred twenty-two'), (23764, 62835, 'sixty-two thousand eight hundred thirty-five'), (23765, 12427, 'twelve thousand four hundred twenty-seven'), (23766, 42239, 'forty-two thousand two hundred thirty-nine'), (23767, 6850, 'six thousand eight hundred fifty'), (23768, 23542, 'twenty-three thousand five hundred forty-two'), (23769, 45862, 'forty-five thousand eight hundred sixty-two'), (23770, 61367, 'sixty-one thousand three hundred sixty-seven'), (23771, 71147, 'seventy-one thousand one hundred forty-seven'), (23772, 69515, 'sixty-nine thousand five hundred fifteen'), (23773, 80632, 'eighty thousand six hundred thirty-two'), (23774, 65315, 'sixty-five thousand three hundred fifteen'), (23775, 52435, 'fifty-two thousand four hundred thirty-five'), (23776, 88682, 'eighty-eight thousand six hundred eighty-two'), (23777, 82398, 'eighty-two thousand three hundred ninety-eight'), (23778, 47977, 'forty-seven thousand nine hundred seventy-seven'), (23779, 50958, 'fifty thousand nine hundred fifty-eight'), (23780, 67910, 'sixty-seven thousand nine hundred ten'), (23781, 39956, 'thirty-nine thousand nine hundred fifty-six'), (23782, 38722, 'thirty-eight thousand seven hundred twenty-two'), (23783, 41373, 'forty-one thousand three hundred seventy-three'), (23784, 49216, 'forty-nine thousand two hundred sixteen'), (23785, 85948, 'eighty-five thousand nine hundred forty-eight'), (23786, 64712, 'sixty-four thousand seven hundred twelve'), (23787, 23108, 'twenty-three thousand one hundred eight'), (23788, 79115, 'seventy-nine thousand one hundred fifteen'), (23789, 88965, 'eighty-eight thousand nine hundred sixty-five'), (23790, 80358, 'eighty thousand three hundred fifty-eight'), (23791, 41171, 'forty-one thousand one hundred seventy-one'), (23792, 47724, 'forty-seven thousand seven hundred twenty-four'), (23793, 93046, 'ninety-three thousand forty-six'), (23794, 19086, 'nineteen thousand eighty-six'), (23795, 50397, 'fifty thousand three hundred ninety-seven'), (23796, 67236, 'sixty-seven thousand two hundred thirty-six'), (23797, 65701, 'sixty-five thousand seven hundred one'), (23798, 26642, 'twenty-six thousand six hundred forty-two'), (23799, 93456, 'ninety-three thousand four hundred fifty-six'), (23800, 49822, 'forty-nine thousand eight hundred twenty-two'), (23801, 5731, 'five thousand seven hundred thirty-one'), (23802, 88205, 'eighty-eight thousand two hundred five'), (23803, 74105, 'seventy-four thousand one hundred five'), (23804, 29950, 'twenty-nine thousand nine hundred fifty'), (23805, 76624, 'seventy-six thousand six hundred twenty-four'), (23806, 41277, 'forty-one thousand two hundred seventy-seven'), (23807, 48675, 'forty-eight thousand six hundred seventy-five'), (23808, 27434, 'twenty-seven thousand four hundred thirty-four'), (23809, 76153, 'seventy-six thousand one hundred fifty-three'), (23810, 55201, 'fifty-five thousand two hundred one'), (23811, 89808, 'eighty-nine thousand eight hundred eight'), (23812, 24751, 'twenty-four thousand seven hundred fifty-one'), (23813, 44322, 'forty-four thousand three hundred twenty-two'), (23814, 47086, 'forty-seven thousand eighty-six'), (23815, 9080, 'nine thousand eighty'), (23816, 33135, 'thirty-three thousand one hundred thirty-five'), (23817, 37551, 'thirty-seven thousand five hundred fifty-one'), (23818, 99455, 'ninety-nine thousand four hundred fifty-five'), (23819, 97054, 'ninety-seven thousand fifty-four'), (23820, 10423, 'ten thousand four hundred twenty-three'), (23821, 77115, 'seventy-seven thousand one hundred fifteen'), (23822, 18406, 'eighteen thousand four hundred six'), (23823, 46891, 'forty-six thousand eight hundred ninety-one'), (23824, 37070, 'thirty-seven thousand seventy'), (23825, 77815, 'seventy-seven thousand eight hundred fifteen'), (23826, 37058, 'thirty-seven thousand fifty-eight'), (23827, 73536, 'seventy-three thousand five hundred thirty-six'), (23828, 55398, 'fifty-five thousand three hundred ninety-eight'), (23829, 55589, 'fifty-five thousand five hundred eighty-nine'), (23830, 44875, 'forty-four thousand eight hundred seventy-five'), (23831, 70243, 'seventy thousand two hundred forty-three'), (23832, 10259, 'ten thousand two hundred fifty-nine'), (23833, 28583, 'twenty-eight thousand five hundred eighty-three'), (23834, 90768, 'ninety thousand seven hundred sixty-eight'), (23835, 79845, 'seventy-nine thousand eight hundred forty-five'), (23836, 20397, 'twenty thousand three hundred ninety-seven'), (23837, 85843, 'eighty-five thousand eight hundred forty-three'), (23838, 68367, 'sixty-eight thousand three hundred sixty-seven'), (23839, 73404, 'seventy-three thousand four hundred four'), (23840, 77669, 'seventy-seven thousand six hundred sixty-nine'), (23841, 74037, 'seventy-four thousand thirty-seven'), (23842, 95613, 'ninety-five thousand six hundred thirteen'), (23843, 60628, 'sixty thousand six hundred twenty-eight'), (23844, 89118, 'eighty-nine thousand one hundred eighteen'), (23845, 12213, 'twelve thousand two hundred thirteen'), (23846, 54328, 'fifty-four thousand three hundred twenty-eight'), (23847, 8805, 'eight thousand eight hundred five'), (23848, 31462, 'thirty-one thousand four hundred sixty-two'), (23849, 22472, 'twenty-two thousand four hundred seventy-two'), (23850, 11237, 'eleven thousand two hundred thirty-seven'), (23851, 77377, 'seventy-seven thousand three hundred seventy-seven'), (23852, 97709, 'ninety-seven thousand seven hundred nine'), (23853, 98556, 'ninety-eight thousand five hundred fifty-six'), (23854, 37873, 'thirty-seven thousand eight hundred seventy-three'), (23855, 79324, 'seventy-nine thousand three hundred twenty-four'), (23856, 36012, 'thirty-six thousand twelve'), (23857, 30384, 'thirty thousand three hundred eighty-four'), (23858, 43741, 'forty-three thousand seven hundred forty-one'), (23859, 71836, 'seventy-one thousand eight hundred thirty-six'), (23860, 93253, 'ninety-three thousand two hundred fifty-three'), (23861, 38824, 'thirty-eight thousand eight hundred twenty-four'), (23862, 4537, 'four thousand five hundred thirty-seven'), (23863, 85654, 'eighty-five thousand six hundred fifty-four'), (23864, 89774, 'eighty-nine thousand seven hundred seventy-four'), (23865, 47705, 'forty-seven thousand seven hundred five'), (23866, 34959, 'thirty-four thousand nine hundred fifty-nine'), (23867, 53620, 'fifty-three thousand six hundred twenty'), (23868, 32001, 'thirty-two thousand one'), (23869, 84323, 'eighty-four thousand three hundred twenty-three'), (23870, 61540, 'sixty-one thousand five hundred forty'), (23871, 45254, 'forty-five thousand two hundred fifty-four'), (23872, 85752, 'eighty-five thousand seven hundred fifty-two'), (23873, 7583, 'seven thousand five hundred eighty-three'), (23874, 8400, 'eight thousand four hundred'), (23875, 2441, 'two thousand four hundred forty-one'), (23876, 71972, 'seventy-one thousand nine hundred seventy-two'), (23877, 74633, 'seventy-four thousand six hundred thirty-three'), (23878, 78982, 'seventy-eight thousand nine hundred eighty-two'), (23879, 62875, 'sixty-two thousand eight hundred seventy-five'), (23880, 69705, 'sixty-nine thousand seven hundred five'), (23881, 81730, 'eighty-one thousand seven hundred thirty'), (23882, 78643, 'seventy-eight thousand six hundred forty-three'), (23883, 4368, 'four thousand three hundred sixty-eight'), (23884, 62441, 'sixty-two thousand four hundred forty-one'), (23885, 93748, 'ninety-three thousand seven hundred forty-eight'), (23886, 8313, 'eight thousand three hundred thirteen'), (23887, 16240, 'sixteen thousand two hundred forty'), (23888, 33098, 'thirty-three thousand ninety-eight'), (23889, 44936, 'forty-four thousand nine hundred thirty-six'), (23890, 99663, 'ninety-nine thousand six hundred sixty-three'), (23891, 18012, 'eighteen thousand twelve'), (23892, 2126, 'two thousand one hundred twenty-six'), (23893, 34137, 'thirty-four thousand one hundred thirty-seven'), (23894, 47858, 'forty-seven thousand eight hundred fifty-eight'), (23895, 43400, 'forty-three thousand four hundred'), (23896, 95687, 'ninety-five thousand six hundred eighty-seven'), (23897, 11424, 'eleven thousand four hundred twenty-four'), (23898, 32501, 'thirty-two thousand five hundred one'), (23899, 15068, 'fifteen thousand sixty-eight'), (23900, 43538, 'forty-three thousand five hundred thirty-eight'), (23901, 75215, 'seventy-five thousand two hundred fifteen'), (23902, 99920, 'ninety-nine thousand nine hundred twenty'), (23903, 33715, 'thirty-three thousand seven hundred fifteen'), (23904, 71047, 'seventy-one thousand forty-seven'), (23905, 54671, 'fifty-four thousand six hundred seventy-one'), (23906, 71061, 'seventy-one thousand sixty-one'), (23907, 51155, 'fifty-one thousand one hundred fifty-five'), (23908, 28290, 'twenty-eight thousand two hundred ninety'), (23909, 3813, 'three thousand eight hundred thirteen'), (23910, 29555, 'twenty-nine thousand five hundred fifty-five'), (23911, 13750, 'thirteen thousand seven hundred fifty'), (23912, 78402, 'seventy-eight thousand four hundred two'), (23913, 18915, 'eighteen thousand nine hundred fifteen'), (23914, 74564, 'seventy-four thousand five hundred sixty-four'), (23915, 1068, 'one thousand sixty-eight'), (23916, 14806, 'fourteen thousand eight hundred six'), (23917, 39258, 'thirty-nine thousand two hundred fifty-eight'), (23918, 13523, 'thirteen thousand five hundred twenty-three'), (23919, 9274, 'nine thousand two hundred seventy-four'), (23920, 47402, 'forty-seven thousand four hundred two'), (23921, 29944, 'twenty-nine thousand nine hundred forty-four'), (23922, 13412, 'thirteen thousand four hundred twelve'), (23923, 15767, 'fifteen thousand seven hundred sixty-seven'), (23924, 15289, 'fifteen thousand two hundred eighty-nine'), (23925, 12746, 'twelve thousand seven hundred forty-six'), (23926, 65665, 'sixty-five thousand six hundred sixty-five'), (23927, 84502, 'eighty-four thousand five hundred two'), (23928, 30790, 'thirty thousand seven hundred ninety'), (23929, 13593, 'thirteen thousand five hundred ninety-three'), (23930, 55911, 'fifty-five thousand nine hundred eleven'), (23931, 73745, 'seventy-three thousand seven hundred forty-five'), (23932, 71056, 'seventy-one thousand fifty-six'), (23933, 89113, 'eighty-nine thousand one hundred thirteen'), (23934, 34897, 'thirty-four thousand eight hundred ninety-seven'), (23935, 47143, 'forty-seven thousand one hundred forty-three'), (23936, 19646, 'nineteen thousand six hundred forty-six'), (23937, 86543, 'eighty-six thousand five hundred forty-three'), (23938, 98090, 'ninety-eight thousand ninety'), (23939, 10449, 'ten thousand four hundred forty-nine'), (23940, 57180, 'fifty-seven thousand one hundred eighty'), (23941, 71321, 'seventy-one thousand three hundred twenty-one'), (23942, 62916, 'sixty-two thousand nine hundred sixteen'), (23943, 40159, 'forty thousand one hundred fifty-nine'), (23944, 50990, 'fifty thousand nine hundred ninety'), (23945, 87906, 'eighty-seven thousand nine hundred six'), (23946, 8150, 'eight thousand one hundred fifty'), (23947, 96339, 'ninety-six thousand three hundred thirty-nine'), (23948, 41842, 'forty-one thousand eight hundred forty-two'), (23949, 18126, 'eighteen thousand one hundred twenty-six'), (23950, 63175, 'sixty-three thousand one hundred seventy-five'), (23951, 30323, 'thirty thousand three hundred twenty-three'), (23952, 84341, 'eighty-four thousand three hundred forty-one'), (23953, 781, 'seven hundred eighty-one'), (23954, 99163, 'ninety-nine thousand one hundred sixty-three'), (23955, 8747, 'eight thousand seven hundred forty-seven'), (23956, 7136, 'seven thousand one hundred thirty-six'), (23957, 42556, 'forty-two thousand five hundred fifty-six'), (23958, 72938, 'seventy-two thousand nine hundred thirty-eight'), (23959, 83886, 'eighty-three thousand eight hundred eighty-six'), (23960, 82803, 'eighty-two thousand eight hundred three'), (23961, 95233, 'ninety-five thousand two hundred thirty-three'), (23962, 39371, 'thirty-nine thousand three hundred seventy-one'), (23963, 11452, 'eleven thousand four hundred fifty-two'), (23964, 63603, 'sixty-three thousand six hundred three'), (23965, 19755, 'nineteen thousand seven hundred fifty-five'), (23966, 9145, 'nine thousand one hundred forty-five'), (23967, 41599, 'forty-one thousand five hundred ninety-nine'), (23968, 97, 'ninety-seven'), (23969, 98513, 'ninety-eight thousand five hundred thirteen'), (23970, 27101, 'twenty-seven thousand one hundred one'), (23971, 16528, 'sixteen thousand five hundred twenty-eight'), (23972, 25107, 'twenty-five thousand one hundred seven'), (23973, 17038, 'seventeen thousand thirty-eight'), (23974, 27807, 'twenty-seven thousand eight hundred seven'), (23975, 10454, 'ten thousand four hundred fifty-four'), (23976, 12683, 'twelve thousand six hundred eighty-three'), (23977, 10772, 'ten thousand seven hundred seventy-two'), (23978, 4846, 'four thousand eight hundred forty-six'), (23979, 64427, 'sixty-four thousand four hundred twenty-seven'), (23980, 6697, 'six thousand six hundred ninety-seven'), (23981, 18765, 'eighteen thousand seven hundred sixty-five'), (23982, 61411, 'sixty-one thousand four hundred eleven'), (23983, 85951, 'eighty-five thousand nine hundred fifty-one'), (23984, 14781, 'fourteen thousand seven hundred eighty-one'), (23985, 85989, 'eighty-five thousand nine hundred eighty-nine'), (23986, 81858, 'eighty-one thousand eight hundred fifty-eight'), (23987, 47016, 'forty-seven thousand sixteen'), (23988, 24500, 'twenty-four thousand five hundred'), (23989, 12325, 'twelve thousand three hundred twenty-five'), (23990, 44041, 'forty-four thousand forty-one'), (23991, 91952, 'ninety-one thousand nine hundred fifty-two'), (23992, 56585, 'fifty-six thousand five hundred eighty-five'), (23993, 25156, 'twenty-five thousand one hundred fifty-six'), (23994, 77625, 'seventy-seven thousand six hundred twenty-five'), (23995, 41727, 'forty-one thousand seven hundred twenty-seven'), (23996, 92857, 'ninety-two thousand eight hundred fifty-seven'), (23997, 31540, 'thirty-one thousand five hundred forty'), (23998, 40398, 'forty thousand three hundred ninety-eight'), (23999, 79991, 'seventy-nine thousand nine hundred ninety-one'), (24000, 49668, 'forty-nine thousand six hundred sixty-eight'), (24001, 99196, 'ninety-nine thousand one hundred ninety-six'), (24002, 58453, 'fifty-eight thousand four hundred fifty-three'), (24003, 31182, 'thirty-one thousand one hundred eighty-two'), (24004, 84959, 'eighty-four thousand nine hundred fifty-nine'), (24005, 22412, 'twenty-two thousand four hundred twelve'), (24006, 66721, 'sixty-six thousand seven hundred twenty-one'), (24007, 88726, 'eighty-eight thousand seven hundred twenty-six'), (24008, 17102, 'seventeen thousand one hundred two'), (24009, 96223, 'ninety-six thousand two hundred twenty-three'), (24010, 41725, 'forty-one thousand seven hundred twenty-five'), (24011, 62632, 'sixty-two thousand six hundred thirty-two'), (24012, 98008, 'ninety-eight thousand eight'), (24013, 54966, 'fifty-four thousand nine hundred sixty-six'), (24014, 56803, 'fifty-six thousand eight hundred three'), (24015, 84704, 'eighty-four thousand seven hundred four'), (24016, 54093, 'fifty-four thousand ninety-three'), (24017, 67014, 'sixty-seven thousand fourteen'), (24018, 10579, 'ten thousand five hundred seventy-nine'), (24019, 1736, 'one thousand seven hundred thirty-six'), (24020, 66754, 'sixty-six thousand seven hundred fifty-four'), (24021, 30320, 'thirty thousand three hundred twenty'), (24022, 42044, 'forty-two thousand forty-four'), (24023, 40118, 'forty thousand one hundred eighteen'), (24024, 52339, 'fifty-two thousand three hundred thirty-nine'), (24025, 92978, 'ninety-two thousand nine hundred seventy-eight'), (24026, 56799, 'fifty-six thousand seven hundred ninety-nine'), (24027, 23142, 'twenty-three thousand one hundred forty-two'), (24028, 75365, 'seventy-five thousand three hundred sixty-five'), (24029, 95497, 'ninety-five thousand four hundred ninety-seven'), (24030, 72464, 'seventy-two thousand four hundred sixty-four'), (24031, 80634, 'eighty thousand six hundred thirty-four'), (24032, 68600, 'sixty-eight thousand six hundred'), (24033, 3141, 'three thousand one hundred forty-one'), (24034, 1116, 'one thousand one hundred sixteen'), (24035, 76879, 'seventy-six thousand eight hundred seventy-nine'), (24036, 49199, 'forty-nine thousand one hundred ninety-nine'), (24037, 86649, 'eighty-six thousand six hundred forty-nine'), (24038, 67605, 'sixty-seven thousand six hundred five'), (24039, 26213, 'twenty-six thousand two hundred thirteen'), (24040, 28929, 'twenty-eight thousand nine hundred twenty-nine'), (24041, 28763, 'twenty-eight thousand seven hundred sixty-three'), (24042, 56313, 'fifty-six thousand three hundred thirteen'), (24043, 20074, 'twenty thousand seventy-four'), (24044, 95091, 'ninety-five thousand ninety-one'), (24045, 76766, 'seventy-six thousand seven hundred sixty-six'), (24046, 98367, 'ninety-eight thousand three hundred sixty-seven'), (24047, 95804, 'ninety-five thousand eight hundred four'), (24048, 11446, 'eleven thousand four hundred forty-six'), (24049, 57905, 'fifty-seven thousand nine hundred five'), (24050, 76037, 'seventy-six thousand thirty-seven'), (24051, 64054, 'sixty-four thousand fifty-four'), (24052, 20583, 'twenty thousand five hundred eighty-three'), (24053, 30335, 'thirty thousand three hundred thirty-five'), (24054, 60913, 'sixty thousand nine hundred thirteen'), (24055, 42269, 'forty-two thousand two hundred sixty-nine'), (24056, 10312, 'ten thousand three hundred twelve'), (24057, 61075, 'sixty-one thousand seventy-five'), (24058, 14602, 'fourteen thousand six hundred two'), (24059, 18859, 'eighteen thousand eight hundred fifty-nine'), (24060, 98156, 'ninety-eight thousand one hundred fifty-six'), (24061, 41339, 'forty-one thousand three hundred thirty-nine'), (24062, 46192, 'forty-six thousand one hundred ninety-two'), (24063, 26327, 'twenty-six thousand three hundred twenty-seven'), (24064, 63472, 'sixty-three thousand four hundred seventy-two'), (24065, 97835, 'ninety-seven thousand eight hundred thirty-five'), (24066, 19134, 'nineteen thousand one hundred thirty-four'), (24067, 54564, 'fifty-four thousand five hundred sixty-four'), (24068, 46890, 'forty-six thousand eight hundred ninety'), (24069, 7486, 'seven thousand four hundred eighty-six'), (24070, 61885, 'sixty-one thousand eight hundred eighty-five'), (24071, 67275, 'sixty-seven thousand two hundred seventy-five'), (24072, 17977, 'seventeen thousand nine hundred seventy-seven'), (24073, 44689, 'forty-four thousand six hundred eighty-nine'), (24074, 52623, 'fifty-two thousand six hundred twenty-three'), (24075, 45737, 'forty-five thousand seven hundred thirty-seven'), (24076, 15573, 'fifteen thousand five hundred seventy-three'), (24077, 97635, 'ninety-seven thousand six hundred thirty-five'), (24078, 23614, 'twenty-three thousand six hundred fourteen'), (24079, 45067, 'forty-five thousand sixty-seven'), (24080, 67746, 'sixty-seven thousand seven hundred forty-six'), (24081, 95903, 'ninety-five thousand nine hundred three'), (24082, 54242, 'fifty-four thousand two hundred forty-two'), (24083, 79345, 'seventy-nine thousand three hundred forty-five'), (24084, 12413, 'twelve thousand four hundred thirteen'), (24085, 21764, 'twenty-one thousand seven hundred sixty-four'), (24086, 11980, 'eleven thousand nine hundred eighty'), (24087, 78024, 'seventy-eight thousand twenty-four'), (24088, 65304, 'sixty-five thousand three hundred four'), (24089, 16669, 'sixteen thousand six hundred sixty-nine'), (24090, 67433, 'sixty-seven thousand four hundred thirty-three'), (24091, 13401, 'thirteen thousand four hundred one'), (24092, 5405, 'five thousand four hundred five'), (24093, 63001, 'sixty-three thousand one'), (24094, 4887, 'four thousand eight hundred eighty-seven'), (24095, 2516, 'two thousand five hundred sixteen'), (24096, 87710, 'eighty-seven thousand seven hundred ten'), (24097, 58108, 'fifty-eight thousand one hundred eight'), (24098, 53071, 'fifty-three thousand seventy-one'), (24099, 39872, 'thirty-nine thousand eight hundred seventy-two'), (24100, 30304, 'thirty thousand three hundred four'), (24101, 54130, 'fifty-four thousand one hundred thirty'), (24102, 64790, 'sixty-four thousand seven hundred ninety'), (24103, 16348, 'sixteen thousand three hundred forty-eight'), (24104, 97914, 'ninety-seven thousand nine hundred fourteen'), (24105, 58480, 'fifty-eight thousand four hundred eighty'), (24106, 36315, 'thirty-six thousand three hundred fifteen'), (24107, 5837, 'five thousand eight hundred thirty-seven'), (24108, 17645, 'seventeen thousand six hundred forty-five'), (24109, 61482, 'sixty-one thousand four hundred eighty-two'), (24110, 27120, 'twenty-seven thousand one hundred twenty'), (24111, 192, 'one hundred ninety-two'), (24112, 16876, 'sixteen thousand eight hundred seventy-six'), (24113, 80002, 'eighty thousand two'), (24114, 94040, 'ninety-four thousand forty'), (24115, 52659, 'fifty-two thousand six hundred fifty-nine'), (24116, 84835, 'eighty-four thousand eight hundred thirty-five'), (24117, 75678, 'seventy-five thousand six hundred seventy-eight'), (24118, 2024, 'two thousand twenty-four'), (24119, 16178, 'sixteen thousand one hundred seventy-eight'), (24120, 17149, 'seventeen thousand one hundred forty-nine'), (24121, 57359, 'fifty-seven thousand three hundred fifty-nine'), (24122, 67859, 'sixty-seven thousand eight hundred fifty-nine'), (24123, 73443, 'seventy-three thousand four hundred forty-three'), (24124, 49342, 'forty-nine thousand three hundred forty-two'), (24125, 16399, 'sixteen thousand three hundred ninety-nine'), (24126, 79129, 'seventy-nine thousand one hundred twenty-nine'), (24127, 39093, 'thirty-nine thousand ninety-three'), (24128, 70342, 'seventy thousand three hundred forty-two'), (24129, 14116, 'fourteen thousand one hundred sixteen'), (24130, 82288, 'eighty-two thousand two hundred eighty-eight'), (24131, 39476, 'thirty-nine thousand four hundred seventy-six'), (24132, 56447, 'fifty-six thousand four hundred forty-seven'), (24133, 69487, 'sixty-nine thousand four hundred eighty-seven'), (24134, 29744, 'twenty-nine thousand seven hundred forty-four'), (24135, 93585, 'ninety-three thousand five hundred eighty-five'), (24136, 99044, 'ninety-nine thousand forty-four'), (24137, 66480, 'sixty-six thousand four hundred eighty'), (24138, 15549, 'fifteen thousand five hundred forty-nine'), (24139, 72299, 'seventy-two thousand two hundred ninety-nine'), (24140, 83470, 'eighty-three thousand four hundred seventy'), (24141, 48391, 'forty-eight thousand three hundred ninety-one'), (24142, 25162, 'twenty-five thousand one hundred sixty-two'), (24143, 88696, 'eighty-eight thousand six hundred ninety-six'), (24144, 64798, 'sixty-four thousand seven hundred ninety-eight'), (24145, 11920, 'eleven thousand nine hundred twenty'), (24146, 26467, 'twenty-six thousand four hundred sixty-seven'), (24147, 74197, 'seventy-four thousand one hundred ninety-seven'), (24148, 4957, 'four thousand nine hundred fifty-seven'), (24149, 22323, 'twenty-two thousand three hundred twenty-three'), (24150, 52478, 'fifty-two thousand four hundred seventy-eight'), (24151, 74664, 'seventy-four thousand six hundred sixty-four'), (24152, 89026, 'eighty-nine thousand twenty-six'), (24153, 21882, 'twenty-one thousand eight hundred eighty-two'), (24154, 69055, 'sixty-nine thousand fifty-five'), (24155, 89039, 'eighty-nine thousand thirty-nine'), (24156, 12949, 'twelve thousand nine hundred forty-nine'), (24157, 83603, 'eighty-three thousand six hundred three'), (24158, 20332, 'twenty thousand three hundred thirty-two'), (24159, 24206, 'twenty-four thousand two hundred six'), (24160, 75671, 'seventy-five thousand six hundred seventy-one'), (24161, 39010, 'thirty-nine thousand ten'), (24162, 91517, 'ninety-one thousand five hundred seventeen'), (24163, 78899, 'seventy-eight thousand eight hundred ninety-nine'), (24164, 36955, 'thirty-six thousand nine hundred fifty-five'), (24165, 68124, 'sixty-eight thousand one hundred twenty-four'), (24166, 50597, 'fifty thousand five hundred ninety-seven'), (24167, 94731, 'ninety-four thousand seven hundred thirty-one'), (24168, 31499, 'thirty-one thousand four hundred ninety-nine'), (24169, 32475, 'thirty-two thousand four hundred seventy-five'), (24170, 62745, 'sixty-two thousand seven hundred forty-five'), (24171, 88692, 'eighty-eight thousand six hundred ninety-two'), (24172, 63624, 'sixty-three thousand six hundred twenty-four'), (24173, 67623, 'sixty-seven thousand six hundred twenty-three'), (24174, 74032, 'seventy-four thousand thirty-two'), (24175, 83391, 'eighty-three thousand three hundred ninety-one'), (24176, 40650, 'forty thousand six hundred fifty'), (24177, 76408, 'seventy-six thousand four hundred eight'), (24178, 11917, 'eleven thousand nine hundred seventeen'), (24179, 63262, 'sixty-three thousand two hundred sixty-two'), (24180, 74605, 'seventy-four thousand six hundred five'), (24181, 55540, 'fifty-five thousand five hundred forty'), (24182, 23777, 'twenty-three thousand seven hundred seventy-seven'), (24183, 89059, 'eighty-nine thousand fifty-nine'), (24184, 90176, 'ninety thousand one hundred seventy-six'), (24185, 82320, 'eighty-two thousand three hundred twenty'), (24186, 62842, 'sixty-two thousand eight hundred forty-two'), (24187, 55749, 'fifty-five thousand seven hundred forty-nine'), (24188, 35982, 'thirty-five thousand nine hundred eighty-two'), (24189, 53634, 'fifty-three thousand six hundred thirty-four'), (24190, 94544, 'ninety-four thousand five hundred forty-four'), (24191, 9898, 'nine thousand eight hundred ninety-eight'), (24192, 81233, 'eighty-one thousand two hundred thirty-three'), (24193, 81822, 'eighty-one thousand eight hundred twenty-two'), (24194, 8194, 'eight thousand one hundred ninety-four'), (24195, 85955, 'eighty-five thousand nine hundred fifty-five'), (24196, 95216, 'ninety-five thousand two hundred sixteen'), (24197, 12572, 'twelve thousand five hundred seventy-two'), (24198, 51556, 'fifty-one thousand five hundred fifty-six'), (24199, 22048, 'twenty-two thousand forty-eight'), (24200, 3736, 'three thousand seven hundred thirty-six'), (24201, 22922, 'twenty-two thousand nine hundred twenty-two'), (24202, 27606, 'twenty-seven thousand six hundred six'), (24203, 58858, 'fifty-eight thousand eight hundred fifty-eight'), (24204, 35903, 'thirty-five thousand nine hundred three'), (24205, 70493, 'seventy thousand four hundred ninety-three'), (24206, 79557, 'seventy-nine thousand five hundred fifty-seven'), (24207, 27052, 'twenty-seven thousand fifty-two'), (24208, 54827, 'fifty-four thousand eight hundred twenty-seven'), (24209, 65229, 'sixty-five thousand two hundred twenty-nine'), (24210, 6719, 'six thousand seven hundred nineteen'), (24211, 99976, 'ninety-nine thousand nine hundred seventy-six'), (24212, 53084, 'fifty-three thousand eighty-four'), (24213, 69262, 'sixty-nine thousand two hundred sixty-two'), (24214, 4302, 'four thousand three hundred two'), (24215, 1578, 'one thousand five hundred seventy-eight'), (24216, 30756, 'thirty thousand seven hundred fifty-six'), (24217, 67484, 'sixty-seven thousand four hundred eighty-four'), (24218, 77330, 'seventy-seven thousand three hundred thirty'), (24219, 84270, 'eighty-four thousand two hundred seventy'), (24220, 58522, 'fifty-eight thousand five hundred twenty-two'), (24221, 24051, 'twenty-four thousand fifty-one'), (24222, 15310, 'fifteen thousand three hundred ten'), (24223, 98560, 'ninety-eight thousand five hundred sixty'), (24224, 90291, 'ninety thousand two hundred ninety-one'), (24225, 64876, 'sixty-four thousand eight hundred seventy-six'), (24226, 14106, 'fourteen thousand one hundred six'), (24227, 52497, 'fifty-two thousand four hundred ninety-seven'), (24228, 45679, 'forty-five thousand six hundred seventy-nine'), (24229, 44696, 'forty-four thousand six hundred ninety-six'), (24230, 28523, 'twenty-eight thousand five hundred twenty-three'), (24231, 75415, 'seventy-five thousand four hundred fifteen'), (24232, 43067, 'forty-three thousand sixty-seven'), (24233, 42327, 'forty-two thousand three hundred twenty-seven'), (24234, 69570, 'sixty-nine thousand five hundred seventy'), (24235, 61365, 'sixty-one thousand three hundred sixty-five'), (24236, 13113, 'thirteen thousand one hundred thirteen'), (24237, 37429, 'thirty-seven thousand four hundred twenty-nine'), (24238, 27050, 'twenty-seven thousand fifty'), (24239, 70063, 'seventy thousand sixty-three'), (24240, 8777, 'eight thousand seven hundred seventy-seven'), (24241, 38764, 'thirty-eight thousand seven hundred sixty-four'), (24242, 84815, 'eighty-four thousand eight hundred fifteen'), (24243, 44912, 'forty-four thousand nine hundred twelve'), (24244, 76435, 'seventy-six thousand four hundred thirty-five'), (24245, 71544, 'seventy-one thousand five hundred forty-four'), (24246, 57188, 'fifty-seven thousand one hundred eighty-eight'), (24247, 40211, 'forty thousand two hundred eleven'), (24248, 54889, 'fifty-four thousand eight hundred eighty-nine'), (24249, 89108, 'eighty-nine thousand one hundred eight'), (24250, 79365, 'seventy-nine thousand three hundred sixty-five'), (24251, 16951, 'sixteen thousand nine hundred fifty-one'), (24252, 94837, 'ninety-four thousand eight hundred thirty-seven'), (24253, 44878, 'forty-four thousand eight hundred seventy-eight'), (24254, 20616, 'twenty thousand six hundred sixteen'), (24255, 45, 'forty-five'), (24256, 10067, 'ten thousand sixty-seven'), (24257, 85161, 'eighty-five thousand one hundred sixty-one'), (24258, 43286, 'forty-three thousand two hundred eighty-six'), (24259, 24924, 'twenty-four thousand nine hundred twenty-four'), (24260, 40625, 'forty thousand six hundred twenty-five'), (24261, 98159, 'ninety-eight thousand one hundred fifty-nine'), (24262, 15511, 'fifteen thousand five hundred eleven'), (24263, 5203, 'five thousand two hundred three'), (24264, 47281, 'forty-seven thousand two hundred eighty-one'), (24265, 67079, 'sixty-seven thousand seventy-nine'), (24266, 44221, 'forty-four thousand two hundred twenty-one'), (24267, 396, 'three hundred ninety-six'), (24268, 89886, 'eighty-nine thousand eight hundred eighty-six'), (24269, 42051, 'forty-two thousand fifty-one'), (24270, 5553, 'five thousand five hundred fifty-three'), (24271, 77189, 'seventy-seven thousand one hundred eighty-nine'), (24272, 69762, 'sixty-nine thousand seven hundred sixty-two'), (24273, 41521, 'forty-one thousand five hundred twenty-one'), (24274, 33752, 'thirty-three thousand seven hundred fifty-two'), (24275, 23258, 'twenty-three thousand two hundred fifty-eight'), (24276, 8996, 'eight thousand nine hundred ninety-six'), (24277, 25068, 'twenty-five thousand sixty-eight'), (24278, 78685, 'seventy-eight thousand six hundred eighty-five'), (24279, 85962, 'eighty-five thousand nine hundred sixty-two'), (24280, 28129, 'twenty-eight thousand one hundred twenty-nine'), (24281, 58106, 'fifty-eight thousand one hundred six'), (24282, 62554, 'sixty-two thousand five hundred fifty-four'), (24283, 7769, 'seven thousand seven hundred sixty-nine'), (24284, 84373, 'eighty-four thousand three hundred seventy-three'), (24285, 83290, 'eighty-three thousand two hundred ninety'), (24286, 31042, 'thirty-one thousand forty-two'), (24287, 25949, 'twenty-five thousand nine hundred forty-nine'), (24288, 82656, 'eighty-two thousand six hundred fifty-six'), (24289, 35465, 'thirty-five thousand four hundred sixty-five'), (24290, 43763, 'forty-three thousand seven hundred sixty-three'), (24291, 69291, 'sixty-nine thousand two hundred ninety-one'), (24292, 66388, 'sixty-six thousand three hundred eighty-eight'), (24293, 4469, 'four thousand four hundred sixty-nine'), (24294, 9967, 'nine thousand nine hundred sixty-seven'), (24295, 52222, 'fifty-two thousand two hundred twenty-two'), (24296, 16544, 'sixteen thousand five hundred forty-four'), (24297, 99931, 'ninety-nine thousand nine hundred thirty-one'), (24298, 24789, 'twenty-four thousand seven hundred eighty-nine'), (24299, 44188, 'forty-four thousand one hundred eighty-eight'), (24300, 11213, 'eleven thousand two hundred thirteen'), (24301, 89061, 'eighty-nine thousand sixty-one'), (24302, 46400, 'forty-six thousand four hundred'), (24303, 57142, 'fifty-seven thousand one hundred forty-two'), (24304, 8960, 'eight thousand nine hundred sixty'), (24305, 95843, 'ninety-five thousand eight hundred forty-three'), (24306, 16392, 'sixteen thousand three hundred ninety-two'), (24307, 84055, 'eighty-four thousand fifty-five'), (24308, 48466, 'forty-eight thousand four hundred sixty-six'), (24309, 80946, 'eighty thousand nine hundred forty-six'), (24310, 1523, 'one thousand five hundred twenty-three'), (24311, 52308, 'fifty-two thousand three hundred eight'), (24312, 12429, 'twelve thousand four hundred twenty-nine'), (24313, 84468, 'eighty-four thousand four hundred sixty-eight'), (24314, 1480, 'one thousand four hundred eighty'), (24315, 98779, 'ninety-eight thousand seven hundred seventy-nine'), (24316, 52356, 'fifty-two thousand three hundred fifty-six'), (24317, 79847, 'seventy-nine thousand eight hundred forty-seven'), (24318, 87210, 'eighty-seven thousand two hundred ten'), (24319, 33181, 'thirty-three thousand one hundred eighty-one'), (24320, 49379, 'forty-nine thousand three hundred seventy-nine'), (24321, 1534, 'one thousand five hundred thirty-four'), (24322, 92935, 'ninety-two thousand nine hundred thirty-five'), (24323, 6889, 'six thousand eight hundred eighty-nine'), (24324, 85100, 'eighty-five thousand one hundred'), (24325, 14095, 'fourteen thousand ninety-five'), (24326, 80989, 'eighty thousand nine hundred eighty-nine'), (24327, 25772, 'twenty-five thousand seven hundred seventy-two'), (24328, 17776, 'seventeen thousand seven hundred seventy-six'), (24329, 53057, 'fifty-three thousand fifty-seven'), (24330, 49253, 'forty-nine thousand two hundred fifty-three'), (24331, 85187, 'eighty-five thousand one hundred eighty-seven'), (24332, 13337, 'thirteen thousand three hundred thirty-seven'), (24333, 15096, 'fifteen thousand ninety-six'), (24334, 8400, 'eight thousand four hundred'), (24335, 27312, 'twenty-seven thousand three hundred twelve'), (24336, 17024, 'seventeen thousand twenty-four'), (24337, 95728, 'ninety-five thousand seven hundred twenty-eight'), (24338, 40881, 'forty thousand eight hundred eighty-one'), (24339, 6300, 'six thousand three hundred'), (24340, 38671, 'thirty-eight thousand six hundred seventy-one'), (24341, 60007, 'sixty thousand seven'), (24342, 68053, 'sixty-eight thousand fifty-three'), (24343, 6597, 'six thousand five hundred ninety-seven'), (24344, 37402, 'thirty-seven thousand four hundred two'), (24345, 57022, 'fifty-seven thousand twenty-two'), (24346, 96220, 'ninety-six thousand two hundred twenty'), (24347, 49453, 'forty-nine thousand four hundred fifty-three'), (24348, 83046, 'eighty-three thousand forty-six'), (24349, 80444, 'eighty thousand four hundred forty-four'), (24350, 19560, 'nineteen thousand five hundred sixty'), (24351, 47100, 'forty-seven thousand one hundred'), (24352, 7084, 'seven thousand eighty-four'), (24353, 66076, 'sixty-six thousand seventy-six'), (24354, 32814, 'thirty-two thousand eight hundred fourteen'), (24355, 73585, 'seventy-three thousand five hundred eighty-five'), (24356, 96101, 'ninety-six thousand one hundred one'), (24357, 72676, 'seventy-two thousand six hundred seventy-six'), (24358, 51006, 'fifty-one thousand six'), (24359, 74725, 'seventy-four thousand seven hundred twenty-five'), (24360, 32659, 'thirty-two thousand six hundred fifty-nine'), (24361, 64731, 'sixty-four thousand seven hundred thirty-one'), (24362, 63401, 'sixty-three thousand four hundred one'), (24363, 32426, 'thirty-two thousand four hundred twenty-six'), (24364, 53858, 'fifty-three thousand eight hundred fifty-eight'), (24365, 96070, 'ninety-six thousand seventy'), (24366, 98435, 'ninety-eight thousand four hundred thirty-five'), (24367, 42315, 'forty-two thousand three hundred fifteen'), (24368, 14201, 'fourteen thousand two hundred one'), (24369, 69602, 'sixty-nine thousand six hundred two'), (24370, 6138, 'six thousand one hundred thirty-eight'), (24371, 1191, 'one thousand one hundred ninety-one'), (24372, 36133, 'thirty-six thousand one hundred thirty-three'), (24373, 65074, 'sixty-five thousand seventy-four'), (24374, 74922, 'seventy-four thousand nine hundred twenty-two'), (24375, 10032, 'ten thousand thirty-two'), (24376, 73137, 'seventy-three thousand one hundred thirty-seven'), (24377, 49951, 'forty-nine thousand nine hundred fifty-one'), (24378, 56493, 'fifty-six thousand four hundred ninety-three'), (24379, 43000, 'forty-three thousand'), (24380, 6836, 'six thousand eight hundred thirty-six'), (24381, 50960, 'fifty thousand nine hundred sixty'), (24382, 14348, 'fourteen thousand three hundred forty-eight'), (24383, 8185, 'eight thousand one hundred eighty-five'), (24384, 37227, 'thirty-seven thousand two hundred twenty-seven'), (24385, 30869, 'thirty thousand eight hundred sixty-nine'), (24386, 63758, 'sixty-three thousand seven hundred fifty-eight'), (24387, 53354, 'fifty-three thousand three hundred fifty-four'), (24388, 9886, 'nine thousand eight hundred eighty-six'), (24389, 30665, 'thirty thousand six hundred sixty-five'), (24390, 10279, 'ten thousand two hundred seventy-nine'), (24391, 48870, 'forty-eight thousand eight hundred seventy'), (24392, 92268, 'ninety-two thousand two hundred sixty-eight'), (24393, 25625, 'twenty-five thousand six hundred twenty-five'), (24394, 34199, 'thirty-four thousand one hundred ninety-nine'), (24395, 99109, 'ninety-nine thousand one hundred nine'), (24396, 60863, 'sixty thousand eight hundred sixty-three'), (24397, 94067, 'ninety-four thousand sixty-seven'), (24398, 44784, 'forty-four thousand seven hundred eighty-four'), (24399, 19092, 'nineteen thousand ninety-two'), (24400, 73849, 'seventy-three thousand eight hundred forty-nine'), (24401, 71051, 'seventy-one thousand fifty-one'), (24402, 58208, 'fifty-eight thousand two hundred eight'), (24403, 24007, 'twenty-four thousand seven'), (24404, 53808, 'fifty-three thousand eight hundred eight'), (24405, 74649, 'seventy-four thousand six hundred forty-nine'), (24406, 5863, 'five thousand eight hundred sixty-three'), (24407, 11221, 'eleven thousand two hundred twenty-one'), (24408, 33922, 'thirty-three thousand nine hundred twenty-two'), (24409, 46076, 'forty-six thousand seventy-six'), (24410, 50449, 'fifty thousand four hundred forty-nine'), (24411, 90879, 'ninety thousand eight hundred seventy-nine'), (24412, 35993, 'thirty-five thousand nine hundred ninety-three'), (24413, 4939, 'four thousand nine hundred thirty-nine'), (24414, 28145, 'twenty-eight thousand one hundred forty-five'), (24415, 50552, 'fifty thousand five hundred fifty-two'), (24416, 25794, 'twenty-five thousand seven hundred ninety-four'), (24417, 19409, 'nineteen thousand four hundred nine'), (24418, 83942, 'eighty-three thousand nine hundred forty-two'), (24419, 34387, 'thirty-four thousand three hundred eighty-seven'), (24420, 2252, 'two thousand two hundred fifty-two'), (24421, 61817, 'sixty-one thousand eight hundred seventeen'), (24422, 25013, 'twenty-five thousand thirteen'), (24423, 54212, 'fifty-four thousand two hundred twelve'), (24424, 91790, 'ninety-one thousand seven hundred ninety'), (24425, 16492, 'sixteen thousand four hundred ninety-two'), (24426, 90482, 'ninety thousand four hundred eighty-two'), (24427, 80950, 'eighty thousand nine hundred fifty'), (24428, 25917, 'twenty-five thousand nine hundred seventeen'), (24429, 34888, 'thirty-four thousand eight hundred eighty-eight'), (24430, 51866, 'fifty-one thousand eight hundred sixty-six'), (24431, 44287, 'forty-four thousand two hundred eighty-seven'), (24432, 35788, 'thirty-five thousand seven hundred eighty-eight'), (24433, 16199, 'sixteen thousand one hundred ninety-nine'), (24434, 76063, 'seventy-six thousand sixty-three'), (24435, 80881, 'eighty thousand eight hundred eighty-one'), (24436, 48534, 'forty-eight thousand five hundred thirty-four'), (24437, 75694, 'seventy-five thousand six hundred ninety-four'), (24438, 83764, 'eighty-three thousand seven hundred sixty-four'), (24439, 73316, 'seventy-three thousand three hundred sixteen'), (24440, 40161, 'forty thousand one hundred sixty-one'), (24441, 26042, 'twenty-six thousand forty-two'), (24442, 41177, 'forty-one thousand one hundred seventy-seven'), (24443, 31055, 'thirty-one thousand fifty-five'), (24444, 32482, 'thirty-two thousand four hundred eighty-two'), (24445, 55305, 'fifty-five thousand three hundred five'), (24446, 77279, 'seventy-seven thousand two hundred seventy-nine'), (24447, 88659, 'eighty-eight thousand six hundred fifty-nine'), (24448, 24876, 'twenty-four thousand eight hundred seventy-six'), (24449, 32785, 'thirty-two thousand seven hundred eighty-five'), (24450, 12269, 'twelve thousand two hundred sixty-nine'), (24451, 35916, 'thirty-five thousand nine hundred sixteen'), (24452, 47660, 'forty-seven thousand six hundred sixty'), (24453, 75253, 'seventy-five thousand two hundred fifty-three'), (24454, 61129, 'sixty-one thousand one hundred twenty-nine'), (24455, 29439, 'twenty-nine thousand four hundred thirty-nine'), (24456, 53333, 'fifty-three thousand three hundred thirty-three'), (24457, 41467, 'forty-one thousand four hundred sixty-seven'), (24458, 18416, 'eighteen thousand four hundred sixteen'), (24459, 20291, 'twenty thousand two hundred ninety-one'), (24460, 39835, 'thirty-nine thousand eight hundred thirty-five'), (24461, 92051, 'ninety-two thousand fifty-one'), (24462, 64638, 'sixty-four thousand six hundred thirty-eight'), (24463, 98651, 'ninety-eight thousand six hundred fifty-one'), (24464, 94009, 'ninety-four thousand nine'), (24465, 37566, 'thirty-seven thousand five hundred sixty-six'), (24466, 81018, 'eighty-one thousand eighteen'), (24467, 32649, 'thirty-two thousand six hundred forty-nine'), (24468, 27737, 'twenty-seven thousand seven hundred thirty-seven'), (24469, 56198, 'fifty-six thousand one hundred ninety-eight'), (24470, 34203, 'thirty-four thousand two hundred three'), (24471, 7344, 'seven thousand three hundred forty-four'), (24472, 45478, 'forty-five thousand four hundred seventy-eight'), (24473, 44261, 'forty-four thousand two hundred sixty-one'), (24474, 28519, 'twenty-eight thousand five hundred nineteen'), (24475, 47477, 'forty-seven thousand four hundred seventy-seven'), (24476, 42738, 'forty-two thousand seven hundred thirty-eight'), (24477, 45637, 'forty-five thousand six hundred thirty-seven'), (24478, 28370, 'twenty-eight thousand three hundred seventy'), (24479, 89455, 'eighty-nine thousand four hundred fifty-five'), (24480, 83443, 'eighty-three thousand four hundred forty-three'), (24481, 39599, 'thirty-nine thousand five hundred ninety-nine'), (24482, 75551, 'seventy-five thousand five hundred fifty-one'), (24483, 11716, 'eleven thousand seven hundred sixteen'), (24484, 28734, 'twenty-eight thousand seven hundred thirty-four'), (24485, 43429, 'forty-three thousand four hundred twenty-nine'), (24486, 20028, 'twenty thousand twenty-eight'), (24487, 25054, 'twenty-five thousand fifty-four'), (24488, 56472, 'fifty-six thousand four hundred seventy-two'), (24489, 70426, 'seventy thousand four hundred twenty-six'), (24490, 75902, 'seventy-five thousand nine hundred two'), (24491, 832, 'eight hundred thirty-two'), (24492, 44553, 'forty-four thousand five hundred fifty-three'), (24493, 93630, 'ninety-three thousand six hundred thirty'), (24494, 12792, 'twelve thousand seven hundred ninety-two'), (24495, 90401, 'ninety thousand four hundred one'), (24496, 81560, 'eighty-one thousand five hundred sixty'), (24497, 27579, 'twenty-seven thousand five hundred seventy-nine'), (24498, 47438, 'forty-seven thousand four hundred thirty-eight'), (24499, 82993, 'eighty-two thousand nine hundred ninety-three'), (24500, 43687, 'forty-three thousand six hundred eighty-seven'), (24501, 84802, 'eighty-four thousand eight hundred two'), (24502, 85414, 'eighty-five thousand four hundred fourteen'), (24503, 6204, 'six thousand two hundred four'), (24504, 83767, 'eighty-three thousand seven hundred sixty-seven'), (24505, 52684, 'fifty-two thousand six hundred eighty-four'), (24506, 49485, 'forty-nine thousand four hundred eighty-five'), (24507, 63100, 'sixty-three thousand one hundred'), (24508, 14052, 'fourteen thousand fifty-two'), (24509, 57318, 'fifty-seven thousand three hundred eighteen'), (24510, 28948, 'twenty-eight thousand nine hundred forty-eight'), (24511, 37325, 'thirty-seven thousand three hundred twenty-five'), (24512, 78310, 'seventy-eight thousand three hundred ten'), (24513, 25187, 'twenty-five thousand one hundred eighty-seven'), (24514, 13616, 'thirteen thousand six hundred sixteen'), (24515, 51087, 'fifty-one thousand eighty-seven'), (24516, 61227, 'sixty-one thousand two hundred twenty-seven'), (24517, 23567, 'twenty-three thousand five hundred sixty-seven'), (24518, 307, 'three hundred seven'), (24519, 5876, 'five thousand eight hundred seventy-six'), (24520, 75134, 'seventy-five thousand one hundred thirty-four'), (24521, 55945, 'fifty-five thousand nine hundred forty-five'), (24522, 73035, 'seventy-three thousand thirty-five'), (24523, 48155, 'forty-eight thousand one hundred fifty-five'), (24524, 59826, 'fifty-nine thousand eight hundred twenty-six'), (24525, 93451, 'ninety-three thousand four hundred fifty-one'), (24526, 9593, 'nine thousand five hundred ninety-three'), (24527, 38523, 'thirty-eight thousand five hundred twenty-three'), (24528, 501, 'five hundred one'), (24529, 8665, 'eight thousand six hundred sixty-five'), (24530, 57673, 'fifty-seven thousand six hundred seventy-three'), (24531, 50327, 'fifty thousand three hundred twenty-seven'), (24532, 46369, 'forty-six thousand three hundred sixty-nine'), (24533, 57376, 'fifty-seven thousand three hundred seventy-six'), (24534, 87448, 'eighty-seven thousand four hundred forty-eight'), (24535, 34025, 'thirty-four thousand twenty-five'), (24536, 76046, 'seventy-six thousand forty-six'), (24537, 8668, 'eight thousand six hundred sixty-eight'), (24538, 22879, 'twenty-two thousand eight hundred seventy-nine'), (24539, 10883, 'ten thousand eight hundred eighty-three'), (24540, 96877, 'ninety-six thousand eight hundred seventy-seven'), (24541, 38988, 'thirty-eight thousand nine hundred eighty-eight'), (24542, 94028, 'ninety-four thousand twenty-eight'), (24543, 32994, 'thirty-two thousand nine hundred ninety-four'), (24544, 93475, 'ninety-three thousand four hundred seventy-five'), (24545, 53960, 'fifty-three thousand nine hundred sixty'), (24546, 62273, 'sixty-two thousand two hundred seventy-three'), (24547, 56918, 'fifty-six thousand nine hundred eighteen'), (24548, 31256, 'thirty-one thousand two hundred fifty-six'), (24549, 94391, 'ninety-four thousand three hundred ninety-one'), (24550, 72429, 'seventy-two thousand four hundred twenty-nine'), (24551, 42897, 'forty-two thousand eight hundred ninety-seven'), (24552, 86610, 'eighty-six thousand six hundred ten'), (24553, 58962, 'fifty-eight thousand nine hundred sixty-two'), (24554, 36810, 'thirty-six thousand eight hundred ten'), (24555, 78103, 'seventy-eight thousand one hundred three'), (24556, 64075, 'sixty-four thousand seventy-five'), (24557, 23461, 'twenty-three thousand four hundred sixty-one'), (24558, 78594, 'seventy-eight thousand five hundred ninety-four'), (24559, 436, 'four hundred thirty-six'), (24560, 41596, 'forty-one thousand five hundred ninety-six'), (24561, 61381, 'sixty-one thousand three hundred eighty-one'), (24562, 45659, 'forty-five thousand six hundred fifty-nine'), (24563, 57528, 'fifty-seven thousand five hundred twenty-eight'), (24564, 32804, 'thirty-two thousand eight hundred four'), (24565, 89470, 'eighty-nine thousand four hundred seventy'), (24566, 33929, 'thirty-three thousand nine hundred twenty-nine'), (24567, 81561, 'eighty-one thousand five hundred sixty-one'), (24568, 17849, 'seventeen thousand eight hundred forty-nine'), (24569, 43292, 'forty-three thousand two hundred ninety-two'), (24570, 14937, 'fourteen thousand nine hundred thirty-seven'), (24571, 19044, 'nineteen thousand forty-four'), (24572, 41190, 'forty-one thousand one hundred ninety'), (24573, 72612, 'seventy-two thousand six hundred twelve'), (24574, 33185, 'thirty-three thousand one hundred eighty-five'), (24575, 17367, 'seventeen thousand three hundred sixty-seven'), (24576, 38761, 'thirty-eight thousand seven hundred sixty-one'), (24577, 6943, 'six thousand nine hundred forty-three'), (24578, 29988, 'twenty-nine thousand nine hundred eighty-eight'), (24579, 23996, 'twenty-three thousand nine hundred ninety-six'), (24580, 3296, 'three thousand two hundred ninety-six'), (24581, 27027, 'twenty-seven thousand twenty-seven'), (24582, 89611, 'eighty-nine thousand six hundred eleven'), (24583, 91368, 'ninety-one thousand three hundred sixty-eight'), (24584, 49556, 'forty-nine thousand five hundred fifty-six'), (24585, 10891, 'ten thousand eight hundred ninety-one'), (24586, 53396, 'fifty-three thousand three hundred ninety-six'), (24587, 94901, 'ninety-four thousand nine hundred one'), (24588, 41428, 'forty-one thousand four hundred twenty-eight'), (24589, 18279, 'eighteen thousand two hundred seventy-nine'), (24590, 31793, 'thirty-one thousand seven hundred ninety-three'), (24591, 58393, 'fifty-eight thousand three hundred ninety-three'), (24592, 39049, 'thirty-nine thousand forty-nine'), (24593, 63409, 'sixty-three thousand four hundred nine'), (24594, 52925, 'fifty-two thousand nine hundred twenty-five'), (24595, 79204, 'seventy-nine thousand two hundred four'), (24596, 7575, 'seven thousand five hundred seventy-five'), (24597, 53306, 'fifty-three thousand three hundred six'), (24598, 49172, 'forty-nine thousand one hundred seventy-two'), (24599, 66361, 'sixty-six thousand three hundred sixty-one'), (24600, 84059, 'eighty-four thousand fifty-nine'), (24601, 24805, 'twenty-four thousand eight hundred five'), (24602, 4249, 'four thousand two hundred forty-nine'), (24603, 29715, 'twenty-nine thousand seven hundred fifteen'), (24604, 44339, 'forty-four thousand three hundred thirty-nine'), (24605, 68166, 'sixty-eight thousand one hundred sixty-six'), (24606, 81901, 'eighty-one thousand nine hundred one'), (24607, 55799, 'fifty-five thousand seven hundred ninety-nine'), (24608, 35067, 'thirty-five thousand sixty-seven'), (24609, 52022, 'fifty-two thousand twenty-two'), (24610, 62377, 'sixty-two thousand three hundred seventy-seven'), (24611, 27409, 'twenty-seven thousand four hundred nine'), (24612, 86314, 'eighty-six thousand three hundred fourteen'), (24613, 16236, 'sixteen thousand two hundred thirty-six'), (24614, 13410, 'thirteen thousand four hundred ten'), (24615, 69711, 'sixty-nine thousand seven hundred eleven'), (24616, 14726, 'fourteen thousand seven hundred twenty-six'), (24617, 48167, 'forty-eight thousand one hundred sixty-seven'), (24618, 89336, 'eighty-nine thousand three hundred thirty-six'), (24619, 18157, 'eighteen thousand one hundred fifty-seven'), (24620, 57081, 'fifty-seven thousand eighty-one'), (24621, 5408, 'five thousand four hundred eight'), (24622, 12178, 'twelve thousand one hundred seventy-eight'), (24623, 34534, 'thirty-four thousand five hundred thirty-four'), (24624, 37731, 'thirty-seven thousand seven hundred thirty-one'), (24625, 70876, 'seventy thousand eight hundred seventy-six'), (24626, 86007, 'eighty-six thousand seven'), (24627, 83752, 'eighty-three thousand seven hundred fifty-two'), (24628, 70501, 'seventy thousand five hundred one'), (24629, 18667, 'eighteen thousand six hundred sixty-seven'), (24630, 28572, 'twenty-eight thousand five hundred seventy-two'), (24631, 68557, 'sixty-eight thousand five hundred fifty-seven'), (24632, 11343, 'eleven thousand three hundred forty-three'), (24633, 1624, 'one thousand six hundred twenty-four'), (24634, 59911, 'fifty-nine thousand nine hundred eleven'), (24635, 94038, 'ninety-four thousand thirty-eight'), (24636, 29603, 'twenty-nine thousand six hundred three'), (24637, 88648, 'eighty-eight thousand six hundred forty-eight'), (24638, 12736, 'twelve thousand seven hundred thirty-six'), (24639, 55683, 'fifty-five thousand six hundred eighty-three'), (24640, 54600, 'fifty-four thousand six hundred'), (24641, 82259, 'eighty-two thousand two hundred fifty-nine'), (24642, 14096, 'fourteen thousand ninety-six'), (24643, 36310, 'thirty-six thousand three hundred ten'), (24644, 27154, 'twenty-seven thousand one hundred fifty-four'), (24645, 54007, 'fifty-four thousand seven'), (24646, 82080, 'eighty-two thousand eighty'), (24647, 10298, 'ten thousand two hundred ninety-eight'), (24648, 4064, 'four thousand sixty-four'), (24649, 19725, 'nineteen thousand seven hundred twenty-five'), (24650, 94836, 'ninety-four thousand eight hundred thirty-six'), (24651, 48533, 'forty-eight thousand five hundred thirty-three'), (24652, 5683, 'five thousand six hundred eighty-three'), (24653, 75795, 'seventy-five thousand seven hundred ninety-five'), (24654, 30463, 'thirty thousand four hundred sixty-three'), (24655, 47660, 'forty-seven thousand six hundred sixty'), (24656, 17066, 'seventeen thousand sixty-six'), (24657, 17779, 'seventeen thousand seven hundred seventy-nine'), (24658, 52403, 'fifty-two thousand four hundred three'), (24659, 10570, 'ten thousand five hundred seventy'), (24660, 83671, 'eighty-three thousand six hundred seventy-one'), (24661, 49149, 'forty-nine thousand one hundred forty-nine'), (24662, 81420, 'eighty-one thousand four hundred twenty'), (24663, 37117, 'thirty-seven thousand one hundred seventeen'), (24664, 28783, 'twenty-eight thousand seven hundred eighty-three'), (24665, 51320, 'fifty-one thousand three hundred twenty'), (24666, 75904, 'seventy-five thousand nine hundred four'), (24667, 47329, 'forty-seven thousand three hundred twenty-nine'), (24668, 93109, 'ninety-three thousand one hundred nine'), (24669, 11161, 'eleven thousand one hundred sixty-one'), (24670, 8950, 'eight thousand nine hundred fifty'), (24671, 74887, 'seventy-four thousand eight hundred eighty-seven'), (24672, 97014, 'ninety-seven thousand fourteen'), (24673, 55157, 'fifty-five thousand one hundred fifty-seven'), (24674, 36609, 'thirty-six thousand six hundred nine'), (24675, 13464, 'thirteen thousand four hundred sixty-four'), (24676, 46476, 'forty-six thousand four hundred seventy-six'), (24677, 83415, 'eighty-three thousand four hundred fifteen'), (24678, 43638, 'forty-three thousand six hundred thirty-eight'), (24679, 4917, 'four thousand nine hundred seventeen'), (24680, 61061, 'sixty-one thousand sixty-one'), (24681, 97632, 'ninety-seven thousand six hundred thirty-two'), (24682, 27983, 'twenty-seven thousand nine hundred eighty-three'), (24683, 627, 'six hundred twenty-seven'), (24684, 6975, 'six thousand nine hundred seventy-five'), (24685, 42522, 'forty-two thousand five hundred twenty-two'), (24686, 28456, 'twenty-eight thousand four hundred fifty-six'), (24687, 43142, 'forty-three thousand one hundred forty-two'), (24688, 83057, 'eighty-three thousand fifty-seven'), (24689, 57492, 'fifty-seven thousand four hundred ninety-two'), (24690, 46542, 'forty-six thousand five hundred forty-two'), (24691, 32781, 'thirty-two thousand seven hundred eighty-one'), (24692, 29695, 'twenty-nine thousand six hundred ninety-five'), (24693, 38962, 'thirty-eight thousand nine hundred sixty-two'), (24694, 59941, 'fifty-nine thousand nine hundred forty-one'), (24695, 30893, 'thirty thousand eight hundred ninety-three'), (24696, 12543, 'twelve thousand five hundred forty-three'), (24697, 88669, 'eighty-eight thousand six hundred sixty-nine'), (24698, 31890, 'thirty-one thousand eight hundred ninety'), (24699, 73975, 'seventy-three thousand nine hundred seventy-five'), (24700, 32017, 'thirty-two thousand seventeen'), (24701, 74869, 'seventy-four thousand eight hundred sixty-nine'), (24702, 90302, 'ninety thousand three hundred two'), (24703, 24324, 'twenty-four thousand three hundred twenty-four'), (24704, 77141, 'seventy-seven thousand one hundred forty-one'), (24705, 805, 'eight hundred five'), (24706, 69323, 'sixty-nine thousand three hundred twenty-three'), (24707, 47182, 'forty-seven thousand one hundred eighty-two'), (24708, 64546, 'sixty-four thousand five hundred forty-six'), (24709, 70094, 'seventy thousand ninety-four'), (24710, 8800, 'eight thousand eight hundred'), (24711, 67164, 'sixty-seven thousand one hundred sixty-four'), (24712, 93808, 'ninety-three thousand eight hundred eight'), (24713, 24754, 'twenty-four thousand seven hundred fifty-four'), (24714, 97489, 'ninety-seven thousand four hundred eighty-nine'), (24715, 5602, 'five thousand six hundred two'), (24716, 15377, 'fifteen thousand three hundred seventy-seven'), (24717, 94085, 'ninety-four thousand eighty-five'), (24718, 89097, 'eighty-nine thousand ninety-seven'), (24719, 42250, 'forty-two thousand two hundred fifty'), (24720, 16428, 'sixteen thousand four hundred twenty-eight'), (24721, 20074, 'twenty thousand seventy-four'), (24722, 47704, 'forty-seven thousand seven hundred four'), (24723, 80575, 'eighty thousand five hundred seventy-five'), (24724, 9727, 'nine thousand seven hundred twenty-seven'), (24725, 79252, 'seventy-nine thousand two hundred fifty-two'), (24726, 70229, 'seventy thousand two hundred twenty-nine'), (24727, 58670, 'fifty-eight thousand six hundred seventy'), (24728, 26075, 'twenty-six thousand seventy-five'), (24729, 2374, 'two thousand three hundred seventy-four'), (24730, 16236, 'sixteen thousand two hundred thirty-six'), (24731, 51387, 'fifty-one thousand three hundred eighty-seven'), (24732, 96158, 'ninety-six thousand one hundred fifty-eight'), (24733, 65798, 'sixty-five thousand seven hundred ninety-eight'), (24734, 71627, 'seventy-one thousand six hundred twenty-seven'), (24735, 93357, 'ninety-three thousand three hundred fifty-seven'), (24736, 81299, 'eighty-one thousand two hundred ninety-nine'), (24737, 60749, 'sixty thousand seven hundred forty-nine'), (24738, 47834, 'forty-seven thousand eight hundred thirty-four'), (24739, 36406, 'thirty-six thousand four hundred six'), (24740, 33888, 'thirty-three thousand eight hundred eighty-eight'), (24741, 96891, 'ninety-six thousand eight hundred ninety-one'), (24742, 30897, 'thirty thousand eight hundred ninety-seven'), (24743, 88968, 'eighty-eight thousand nine hundred sixty-eight'), (24744, 80461, 'eighty thousand four hundred sixty-one'), (24745, 95105, 'ninety-five thousand one hundred five'), (24746, 33433, 'thirty-three thousand four hundred thirty-three'), (24747, 6198, 'six thousand one hundred ninety-eight'), (24748, 26097, 'twenty-six thousand ninety-seven'), (24749, 96995, 'ninety-six thousand nine hundred ninety-five'), (24750, 81911, 'eighty-one thousand nine hundred eleven'), (24751, 89519, 'eighty-nine thousand five hundred nineteen'), (24752, 66802, 'sixty-six thousand eight hundred two'), (24753, 63647, 'sixty-three thousand six hundred forty-seven'), (24754, 41202, 'forty-one thousand two hundred two'), (24755, 10401, 'ten thousand four hundred one'), (24756, 47730, 'forty-seven thousand seven hundred thirty'), (24757, 37726, 'thirty-seven thousand seven hundred twenty-six'), (24758, 73359, 'seventy-three thousand three hundred fifty-nine'), (24759, 98821, 'ninety-eight thousand eight hundred twenty-one'), (24760, 23696, 'twenty-three thousand six hundred ninety-six'), (24761, 40496, 'forty thousand four hundred ninety-six'), (24762, 24417, 'twenty-four thousand four hundred seventeen'), (24763, 83001, 'eighty-three thousand one'), (24764, 80101, 'eighty thousand one hundred one'), (24765, 20058, 'twenty thousand fifty-eight'), (24766, 90050, 'ninety thousand fifty'), (24767, 67793, 'sixty-seven thousand seven hundred ninety-three'), (24768, 21328, 'twenty-one thousand three hundred twenty-eight'), (24769, 33026, 'thirty-three thousand twenty-six'), (24770, 60248, 'sixty thousand two hundred forty-eight'), (24771, 65466, 'sixty-five thousand four hundred sixty-six'), (24772, 7600, 'seven thousand six hundred'), (24773, 85941, 'eighty-five thousand nine hundred forty-one'), (24774, 96865, 'ninety-six thousand eight hundred sixty-five'), (24775, 70113, 'seventy thousand one hundred thirteen'), (24776, 98788, 'ninety-eight thousand seven hundred eighty-eight'), (24777, 31787, 'thirty-one thousand seven hundred eighty-seven'), (24778, 62463, 'sixty-two thousand four hundred sixty-three'), (24779, 68236, 'sixty-eight thousand two hundred thirty-six'), (24780, 3736, 'three thousand seven hundred thirty-six'), (24781, 51532, 'fifty-one thousand five hundred thirty-two'), (24782, 35548, 'thirty-five thousand five hundred forty-eight'), (24783, 14236, 'fourteen thousand two hundred thirty-six'), (24784, 84897, 'eighty-four thousand eight hundred ninety-seven'), (24785, 31062, 'thirty-one thousand sixty-two'), (24786, 93221, 'ninety-three thousand two hundred twenty-one'), (24787, 35820, 'thirty-five thousand eight hundred twenty'), (24788, 58184, 'fifty-eight thousand one hundred eighty-four'), (24789, 41247, 'forty-one thousand two hundred forty-seven'), (24790, 30489, 'thirty thousand four hundred eighty-nine'), (24791, 25609, 'twenty-five thousand six hundred nine'), (24792, 87338, 'eighty-seven thousand three hundred thirty-eight'), (24793, 50575, 'fifty thousand five hundred seventy-five'), (24794, 24704, 'twenty-four thousand seven hundred four'), (24795, 12806, 'twelve thousand eight hundred six'), (24796, 44597, 'forty-four thousand five hundred ninety-seven'), (24797, 58582, 'fifty-eight thousand five hundred eighty-two'), (24798, 11726, 'eleven thousand seven hundred twenty-six'), (24799, 13340, 'thirteen thousand three hundred forty'), (24800, 24440, 'twenty-four thousand four hundred forty'), (24801, 9887, 'nine thousand eight hundred eighty-seven'), (24802, 47895, 'forty-seven thousand eight hundred ninety-five'), (24803, 54759, 'fifty-four thousand seven hundred fifty-nine'), (24804, 71252, 'seventy-one thousand two hundred fifty-two'), (24805, 78445, 'seventy-eight thousand four hundred forty-five'), (24806, 39941, 'thirty-nine thousand nine hundred forty-one'), (24807, 48159, 'forty-eight thousand one hundred fifty-nine'), (24808, 2132, 'two thousand one hundred thirty-two'), (24809, 44127, 'forty-four thousand one hundred twenty-seven'), (24810, 81965, 'eighty-one thousand nine hundred sixty-five'), (24811, 75241, 'seventy-five thousand two hundred forty-one'), (24812, 89405, 'eighty-nine thousand four hundred five'), (24813, 76797, 'seventy-six thousand seven hundred ninety-seven'), (24814, 77364, 'seventy-seven thousand three hundred sixty-four'), (24815, 22439, 'twenty-two thousand four hundred thirty-nine'), (24816, 21848, 'twenty-one thousand eight hundred forty-eight'), (24817, 92243, 'ninety-two thousand two hundred forty-three'), (24818, 1815, 'one thousand eight hundred fifteen'), (24819, 99779, 'ninety-nine thousand seven hundred seventy-nine'), (24820, 96172, 'ninety-six thousand one hundred seventy-two'), (24821, 431, 'four hundred thirty-one'), (24822, 33856, 'thirty-three thousand eight hundred fifty-six'), (24823, 93893, 'ninety-three thousand eight hundred ninety-three'), (24824, 54344, 'fifty-four thousand three hundred forty-four'), (24825, 10331, 'ten thousand three hundred thirty-one'), (24826, 8399, 'eight thousand three hundred ninety-nine'), (24827, 36038, 'thirty-six thousand thirty-eight'), (24828, 95043, 'ninety-five thousand forty-three'), (24829, 97022, 'ninety-seven thousand twenty-two'), (24830, 3189, 'three thousand one hundred eighty-nine'), (24831, 46168, 'forty-six thousand one hundred sixty-eight'), (24832, 88559, 'eighty-eight thousand five hundred fifty-nine'), (24833, 64144, 'sixty-four thousand one hundred forty-four'), (24834, 51730, 'fifty-one thousand seven hundred thirty'), (24835, 20174, 'twenty thousand one hundred seventy-four'), (24836, 7018, 'seven thousand eighteen'), (24837, 18657, 'eighteen thousand six hundred fifty-seven'), (24838, 75088, 'seventy-five thousand eighty-eight'), (24839, 67326, 'sixty-seven thousand three hundred twenty-six'), (24840, 25073, 'twenty-five thousand seventy-three'), (24841, 94644, 'ninety-four thousand six hundred forty-four'), (24842, 44223, 'forty-four thousand two hundred twenty-three'), (24843, 46337, 'forty-six thousand three hundred thirty-seven'), (24844, 514, 'five hundred fourteen'), (24845, 60951, 'sixty thousand nine hundred fifty-one'), (24846, 72709, 'seventy-two thousand seven hundred nine'), (24847, 33482, 'thirty-three thousand four hundred eighty-two'), (24848, 12069, 'twelve thousand sixty-nine'), (24849, 44568, 'forty-four thousand five hundred sixty-eight'), (24850, 50881, 'fifty thousand eight hundred eighty-one'), (24851, 86189, 'eighty-six thousand one hundred eighty-nine'), (24852, 90634, 'ninety thousand six hundred thirty-four'), (24853, 29555, 'twenty-nine thousand five hundred fifty-five'), (24854, 40451, 'forty thousand four hundred fifty-one'), (24855, 56427, 'fifty-six thousand four hundred twenty-seven'), (24856, 63501, 'sixty-three thousand five hundred one'), (24857, 37562, 'thirty-seven thousand five hundred sixty-two'), (24858, 98526, 'ninety-eight thousand five hundred twenty-six'), (24859, 91101, 'ninety-one thousand one hundred one'), (24860, 60072, 'sixty thousand seventy-two'), (24861, 38206, 'thirty-eight thousand two hundred six'), (24862, 53377, 'fifty-three thousand three hundred seventy-seven'), (24863, 89666, 'eighty-nine thousand six hundred sixty-six'), (24864, 10446, 'ten thousand four hundred forty-six'), (24865, 92671, 'ninety-two thousand six hundred seventy-one'), (24866, 78160, 'seventy-eight thousand one hundred sixty'), (24867, 72782, 'seventy-two thousand seven hundred eighty-two'), (24868, 57859, 'fifty-seven thousand eight hundred fifty-nine'), (24869, 39918, 'thirty-nine thousand nine hundred eighteen'), (24870, 25370, 'twenty-five thousand three hundred seventy'), (24871, 40814, 'forty thousand eight hundred fourteen'), (24872, 21468, 'twenty-one thousand four hundred sixty-eight'), (24873, 74690, 'seventy-four thousand six hundred ninety'), (24874, 35862, 'thirty-five thousand eight hundred sixty-two'), (24875, 92947, 'ninety-two thousand nine hundred forty-seven'), (24876, 27385, 'twenty-seven thousand three hundred eighty-five'), (24877, 96998, 'ninety-six thousand nine hundred ninety-eight'), (24878, 22257, 'twenty-two thousand two hundred fifty-seven'), (24879, 39663, 'thirty-nine thousand six hundred sixty-three'), (24880, 78932, 'seventy-eight thousand nine hundred thirty-two'), (24881, 72715, 'seventy-two thousand seven hundred fifteen'), (24882, 78243, 'seventy-eight thousand two hundred forty-three'), (24883, 96803, 'ninety-six thousand eight hundred three'), (24884, 72654, 'seventy-two thousand six hundred fifty-four'), (24885, 19001, 'nineteen thousand one'), (24886, 6400, 'six thousand four hundred'), (24887, 83047, 'eighty-three thousand forty-seven'), (24888, 99857, 'ninety-nine thousand eight hundred fifty-seven'), (24889, 85833, 'eighty-five thousand eight hundred thirty-three'), (24890, 2089, 'two thousand eighty-nine'), (24891, 97218, 'ninety-seven thousand two hundred eighteen'), (24892, 36946, 'thirty-six thousand nine hundred forty-six'), (24893, 73796, 'seventy-three thousand seven hundred ninety-six'), (24894, 51099, 'fifty-one thousand ninety-nine'), (24895, 55507, 'fifty-five thousand five hundred seven'), (24896, 52925, 'fifty-two thousand nine hundred twenty-five'), (24897, 84714, 'eighty-four thousand seven hundred fourteen'), (24898, 2326, 'two thousand three hundred twenty-six'), (24899, 46073, 'forty-six thousand seventy-three'), (24900, 13234, 'thirteen thousand two hundred thirty-four'), (24901, 37425, 'thirty-seven thousand four hundred twenty-five'), (24902, 94868, 'ninety-four thousand eight hundred sixty-eight'), (24903, 49168, 'forty-nine thousand one hundred sixty-eight'), (24904, 34573, 'thirty-four thousand five hundred seventy-three'), (24905, 81470, 'eighty-one thousand four hundred seventy'), (24906, 43976, 'forty-three thousand nine hundred seventy-six'), (24907, 53694, 'fifty-three thousand six hundred ninety-four'), (24908, 26766, 'twenty-six thousand seven hundred sixty-six'), (24909, 24129, 'twenty-four thousand one hundred twenty-nine'), (24910, 81742, 'eighty-one thousand seven hundred forty-two'), (24911, 82292, 'eighty-two thousand two hundred ninety-two'), (24912, 15618, 'fifteen thousand six hundred eighteen'), (24913, 63142, 'sixty-three thousand one hundred forty-two'), (24914, 72910, 'seventy-two thousand nine hundred ten'), (24915, 92621, 'ninety-two thousand six hundred twenty-one'), (24916, 66932, 'sixty-six thousand nine hundred thirty-two'), (24917, 52781, 'fifty-two thousand seven hundred eighty-one'), (24918, 71348, 'seventy-one thousand three hundred forty-eight'), (24919, 4847, 'four thousand eight hundred forty-seven'), (24920, 37301, 'thirty-seven thousand three hundred one'), (24921, 17089, 'seventeen thousand eighty-nine'), (24922, 11301, 'eleven thousand three hundred one'), (24923, 29841, 'twenty-nine thousand eight hundred forty-one'), (24924, 65105, 'sixty-five thousand one hundred five'), (24925, 824, 'eight hundred twenty-four'), (24926, 95530, 'ninety-five thousand five hundred thirty'), (24927, 27877, 'twenty-seven thousand eight hundred seventy-seven'), (24928, 38398, 'thirty-eight thousand three hundred ninety-eight'), (24929, 24764, 'twenty-four thousand seven hundred sixty-four'), (24930, 75532, 'seventy-five thousand five hundred thirty-two'), (24931, 85140, 'eighty-five thousand one hundred forty'), (24932, 7909, 'seven thousand nine hundred nine'), (24933, 35290, 'thirty-five thousand two hundred ninety'), (24934, 48260, 'forty-eight thousand two hundred sixty'), (24935, 42806, 'forty-two thousand eight hundred six'), (24936, 49887, 'forty-nine thousand eight hundred eighty-seven'), (24937, 42220, 'forty-two thousand two hundred twenty'), (24938, 49147, 'forty-nine thousand one hundred forty-seven'), (24939, 5209, 'five thousand two hundred nine'), (24940, 90794, 'ninety thousand seven hundred ninety-four'), (24941, 82718, 'eighty-two thousand seven hundred eighteen'), (24942, 51334, 'fifty-one thousand three hundred thirty-four'), (24943, 15932, 'fifteen thousand nine hundred thirty-two'), (24944, 59449, 'fifty-nine thousand four hundred forty-nine'), (24945, 67625, 'sixty-seven thousand six hundred twenty-five'), (24946, 94883, 'ninety-four thousand eight hundred eighty-three'), (24947, 45379, 'forty-five thousand three hundred seventy-nine'), (24948, 73463, 'seventy-three thousand four hundred sixty-three'), (24949, 45213, 'forty-five thousand two hundred thirteen'), (24950, 91929, 'ninety-one thousand nine hundred twenty-nine'), (24951, 16230, 'sixteen thousand two hundred thirty'), (24952, 69883, 'sixty-nine thousand eight hundred eighty-three'), (24953, 22804, 'twenty-two thousand eight hundred four'), (24954, 3866, 'three thousand eight hundred sixty-six'), (24955, 1990, 'one thousand nine hundred ninety'), (24956, 51840, 'fifty-one thousand eight hundred forty'), (24957, 87111, 'eighty-seven thousand one hundred eleven'), (24958, 68843, 'sixty-eight thousand eight hundred forty-three'), (24959, 55528, 'fifty-five thousand five hundred twenty-eight'), (24960, 53450, 'fifty-three thousand four hundred fifty'), (24961, 19612, 'nineteen thousand six hundred twelve'), (24962, 35201, 'thirty-five thousand two hundred one'), (24963, 16272, 'sixteen thousand two hundred seventy-two'), (24964, 99318, 'ninety-nine thousand three hundred eighteen'), (24965, 89834, 'eighty-nine thousand eight hundred thirty-four'), (24966, 20102, 'twenty thousand one hundred two'), (24967, 77296, 'seventy-seven thousand two hundred ninety-six'), (24968, 80389, 'eighty thousand three hundred eighty-nine'), (24969, 16913, 'sixteen thousand nine hundred thirteen'), (24970, 98721, 'ninety-eight thousand seven hundred twenty-one'), (24971, 54023, 'fifty-four thousand twenty-three'), (24972, 29494, 'twenty-nine thousand four hundred ninety-four'), (24973, 9377, 'nine thousand three hundred seventy-seven'), (24974, 72823, 'seventy-two thousand eight hundred twenty-three'), (24975, 69906, 'sixty-nine thousand nine hundred six'), (24976, 55159, 'fifty-five thousand one hundred fifty-nine'), (24977, 47047, 'forty-seven thousand forty-seven'), (24978, 28733, 'twenty-eight thousand seven hundred thirty-three'), (24979, 79866, 'seventy-nine thousand eight hundred sixty-six'), (24980, 64361, 'sixty-four thousand three hundred sixty-one'), (24981, 86431, 'eighty-six thousand four hundred thirty-one'), (24982, 53705, 'fifty-three thousand seven hundred five'), (24983, 43067, 'forty-three thousand sixty-seven'), (24984, 3320, 'three thousand three hundred twenty'), (24985, 15960, 'fifteen thousand nine hundred sixty'), (24986, 63272, 'sixty-three thousand two hundred seventy-two'), (24987, 2447, 'two thousand four hundred forty-seven'), (24988, 13742, 'thirteen thousand seven hundred forty-two'), (24989, 18875, 'eighteen thousand eight hundred seventy-five'), (24990, 92635, 'ninety-two thousand six hundred thirty-five'), (24991, 99535, 'ninety-nine thousand five hundred thirty-five'), (24992, 20112, 'twenty thousand one hundred twelve'), (24993, 93759, 'ninety-three thousand seven hundred fifty-nine'), (24994, 32135, 'thirty-two thousand one hundred thirty-five'), (24995, 56099, 'fifty-six thousand ninety-nine'), (24996, 14588, 'fourteen thousand five hundred eighty-eight'), (24997, 68339, 'sixty-eight thousand three hundred thirty-nine'), (24998, 33916, 'thirty-three thousand nine hundred sixteen'), (24999, 58227, 'fifty-eight thousand two hundred twenty-seven'), (25000, 94446, 'ninety-four thousand four hundred forty-six'); COMMIT; ================================================ FILE: packages/benchmark/src/benchmark2.sql ================================================ BEGIN; CREATE TABLE t2(a INTEGER, b INTEGER, c VARCHAR(100)); INSERT INTO t2 VALUES(1, 90584, 'ninety thousand five hundred eighty-four'); INSERT INTO t2 VALUES(2, 42558, 'forty-two thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(3, 5904, 'five thousand nine hundred four'); INSERT INTO t2 VALUES(4, 27011, 'twenty-seven thousand eleven'); INSERT INTO t2 VALUES(5, 97728, 'ninety-seven thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(6, 46615, 'forty-six thousand six hundred fifteen'); INSERT INTO t2 VALUES(7, 28853, 'twenty-eight thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(8, 94539, 'ninety-four thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(9, 84536, 'eighty-four thousand five hundred thirty-six'); INSERT INTO t2 VALUES(10, 72680, 'seventy-two thousand six hundred eighty'); INSERT INTO t2 VALUES(11, 93381, 'ninety-three thousand three hundred eighty-one'); INSERT INTO t2 VALUES(12, 17138, 'seventeen thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(13, 29965, 'twenty-nine thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(14, 69407, 'sixty-nine thousand four hundred seven'); INSERT INTO t2 VALUES(15, 61421, 'sixty-one thousand four hundred twenty-one'); INSERT INTO t2 VALUES(16, 81239, 'eighty-one thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(17, 59865, 'fifty-nine thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(18, 588, 'five hundred eighty-eight'); INSERT INTO t2 VALUES(19, 84152, 'eighty-four thousand one hundred fifty-two'); INSERT INTO t2 VALUES(20, 84124, 'eighty-four thousand one hundred twenty-four'); INSERT INTO t2 VALUES(21, 12969, 'twelve thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(22, 7253, 'seven thousand two hundred fifty-three'); INSERT INTO t2 VALUES(23, 42485, 'forty-two thousand four hundred eighty-five'); INSERT INTO t2 VALUES(24, 3762, 'three thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(25, 78100, 'seventy-eight thousand one hundred'); INSERT INTO t2 VALUES(26, 84160, 'eighty-four thousand one hundred sixty'); INSERT INTO t2 VALUES(27, 43453, 'forty-three thousand four hundred fifty-three'); INSERT INTO t2 VALUES(28, 71890, 'seventy-one thousand eight hundred ninety'); INSERT INTO t2 VALUES(29, 33038, 'thirty-three thousand thirty-eight'); INSERT INTO t2 VALUES(30, 49437, 'forty-nine thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(31, 96549, 'ninety-six thousand five hundred forty-nine'); INSERT INTO t2 VALUES(32, 23171, 'twenty-three thousand one hundred seventy-one'); INSERT INTO t2 VALUES(33, 62381, 'sixty-two thousand three hundred eighty-one'); INSERT INTO t2 VALUES(34, 90815, 'ninety thousand eight hundred fifteen'); INSERT INTO t2 VALUES(35, 26487, 'twenty-six thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(36, 43321, 'forty-three thousand three hundred twenty-one'); INSERT INTO t2 VALUES(37, 89020, 'eighty-nine thousand twenty'); INSERT INTO t2 VALUES(38, 33474, 'thirty-three thousand four hundred seventy-four'); INSERT INTO t2 VALUES(39, 72198, 'seventy-two thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(40, 71417, 'seventy-one thousand four hundred seventeen'); INSERT INTO t2 VALUES(41, 89777, 'eighty-nine thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(42, 97169, 'ninety-seven thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(43, 55191, 'fifty-five thousand one hundred ninety-one'); INSERT INTO t2 VALUES(44, 73842, 'seventy-three thousand eight hundred forty-two'); INSERT INTO t2 VALUES(45, 70227, 'seventy thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(46, 65573, 'sixty-five thousand five hundred seventy-three'); INSERT INTO t2 VALUES(47, 73518, 'seventy-three thousand five hundred eighteen'); INSERT INTO t2 VALUES(48, 68505, 'sixty-eight thousand five hundred five'); INSERT INTO t2 VALUES(49, 57185, 'fifty-seven thousand one hundred eighty-five'); INSERT INTO t2 VALUES(50, 23871, 'twenty-three thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(51, 89925, 'eighty-nine thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(52, 2387, 'two thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(53, 17526, 'seventeen thousand five hundred twenty-six'); INSERT INTO t2 VALUES(54, 13016, 'thirteen thousand sixteen'); INSERT INTO t2 VALUES(55, 74881, 'seventy-four thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(56, 59286, 'fifty-nine thousand two hundred eighty-six'); INSERT INTO t2 VALUES(57, 19244, 'nineteen thousand two hundred forty-four'); INSERT INTO t2 VALUES(58, 4267, 'four thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(59, 94748, 'ninety-four thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(60, 75557, 'seventy-five thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(61, 48280, 'forty-eight thousand two hundred eighty'); INSERT INTO t2 VALUES(62, 42957, 'forty-two thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(63, 87398, 'eighty-seven thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(64, 58372, 'fifty-eight thousand three hundred seventy-two'); INSERT INTO t2 VALUES(65, 53877, 'fifty-three thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(66, 37922, 'thirty-seven thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(67, 19265, 'nineteen thousand two hundred sixty-five'); INSERT INTO t2 VALUES(68, 44548, 'forty-four thousand five hundred forty-eight'); INSERT INTO t2 VALUES(69, 90517, 'ninety thousand five hundred seventeen'); INSERT INTO t2 VALUES(70, 49280, 'forty-nine thousand two hundred eighty'); INSERT INTO t2 VALUES(71, 78587, 'seventy-eight thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(72, 50027, 'fifty thousand twenty-seven'); INSERT INTO t2 VALUES(73, 17279, 'seventeen thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(74, 81786, 'eighty-one thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(75, 59408, 'fifty-nine thousand four hundred eight'); INSERT INTO t2 VALUES(76, 12302, 'twelve thousand three hundred two'); INSERT INTO t2 VALUES(77, 19245, 'nineteen thousand two hundred forty-five'); INSERT INTO t2 VALUES(78, 79712, 'seventy-nine thousand seven hundred twelve'); INSERT INTO t2 VALUES(79, 39038, 'thirty-nine thousand thirty-eight'); INSERT INTO t2 VALUES(80, 54293, 'fifty-four thousand two hundred ninety-three'); INSERT INTO t2 VALUES(81, 38489, 'thirty-eight thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(82, 76089, 'seventy-six thousand eighty-nine'); INSERT INTO t2 VALUES(83, 77661, 'seventy-seven thousand six hundred sixty-one'); INSERT INTO t2 VALUES(84, 47148, 'forty-seven thousand one hundred forty-eight'); INSERT INTO t2 VALUES(85, 11042, 'eleven thousand forty-two'); INSERT INTO t2 VALUES(86, 56823, 'fifty-six thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(87, 45667, 'forty-five thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(88, 85403, 'eighty-five thousand four hundred three'); INSERT INTO t2 VALUES(89, 70399, 'seventy thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(90, 70436, 'seventy thousand four hundred thirty-six'); INSERT INTO t2 VALUES(91, 83893, 'eighty-three thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(92, 47320, 'forty-seven thousand three hundred twenty'); INSERT INTO t2 VALUES(93, 99216, 'ninety-nine thousand two hundred sixteen'); INSERT INTO t2 VALUES(94, 90347, 'ninety thousand three hundred forty-seven'); INSERT INTO t2 VALUES(95, 63626, 'sixty-three thousand six hundred twenty-six'); INSERT INTO t2 VALUES(96, 28133, 'twenty-eight thousand one hundred thirty-three'); INSERT INTO t2 VALUES(97, 10588, 'ten thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(98, 93243, 'ninety-three thousand two hundred forty-three'); INSERT INTO t2 VALUES(99, 52352, 'fifty-two thousand three hundred fifty-two'); INSERT INTO t2 VALUES(100, 66472, 'sixty-six thousand four hundred seventy-two'); INSERT INTO t2 VALUES(101, 70637, 'seventy thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(102, 99984, 'ninety-nine thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(103, 55281, 'fifty-five thousand two hundred eighty-one'); INSERT INTO t2 VALUES(104, 57112, 'fifty-seven thousand one hundred twelve'); INSERT INTO t2 VALUES(105, 69335, 'sixty-nine thousand three hundred thirty-five'); INSERT INTO t2 VALUES(106, 76289, 'seventy-six thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(107, 58904, 'fifty-eight thousand nine hundred four'); INSERT INTO t2 VALUES(108, 83931, 'eighty-three thousand nine hundred thirty-one'); INSERT INTO t2 VALUES(109, 96752, 'ninety-six thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(110, 93887, 'ninety-three thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(111, 53694, 'fifty-three thousand six hundred ninety-four'); INSERT INTO t2 VALUES(112, 59470, 'fifty-nine thousand four hundred seventy'); INSERT INTO t2 VALUES(113, 72610, 'seventy-two thousand six hundred ten'); INSERT INTO t2 VALUES(114, 4752, 'four thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(115, 79581, 'seventy-nine thousand five hundred eighty-one'); INSERT INTO t2 VALUES(116, 10668, 'ten thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(117, 56097, 'fifty-six thousand ninety-seven'); INSERT INTO t2 VALUES(118, 97324, 'ninety-seven thousand three hundred twenty-four'); INSERT INTO t2 VALUES(119, 28333, 'twenty-eight thousand three hundred thirty-three'); INSERT INTO t2 VALUES(120, 79763, 'seventy-nine thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(121, 73271, 'seventy-three thousand two hundred seventy-one'); INSERT INTO t2 VALUES(122, 19112, 'nineteen thousand one hundred twelve'); INSERT INTO t2 VALUES(123, 40795, 'forty thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(124, 88896, 'eighty-eight thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(125, 18106, 'eighteen thousand one hundred six'); INSERT INTO t2 VALUES(126, 35583, 'thirty-five thousand five hundred eighty-three'); INSERT INTO t2 VALUES(127, 74961, 'seventy-four thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(128, 39442, 'thirty-nine thousand four hundred forty-two'); INSERT INTO t2 VALUES(129, 29082, 'twenty-nine thousand eighty-two'); INSERT INTO t2 VALUES(130, 91292, 'ninety-one thousand two hundred ninety-two'); INSERT INTO t2 VALUES(131, 99874, 'ninety-nine thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(132, 21091, 'twenty-one thousand ninety-one'); INSERT INTO t2 VALUES(133, 38291, 'thirty-eight thousand two hundred ninety-one'); INSERT INTO t2 VALUES(134, 16583, 'sixteen thousand five hundred eighty-three'); INSERT INTO t2 VALUES(135, 28219, 'twenty-eight thousand two hundred nineteen'); INSERT INTO t2 VALUES(136, 26561, 'twenty-six thousand five hundred sixty-one'); INSERT INTO t2 VALUES(137, 96379, 'ninety-six thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(138, 86575, 'eighty-six thousand five hundred seventy-five'); INSERT INTO t2 VALUES(139, 3153, 'three thousand one hundred fifty-three'); INSERT INTO t2 VALUES(140, 19351, 'nineteen thousand three hundred fifty-one'); INSERT INTO t2 VALUES(141, 27410, 'twenty-seven thousand four hundred ten'); INSERT INTO t2 VALUES(142, 48253, 'forty-eight thousand two hundred fifty-three'); INSERT INTO t2 VALUES(143, 73697, 'seventy-three thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(144, 72343, 'seventy-two thousand three hundred forty-three'); INSERT INTO t2 VALUES(145, 36637, 'thirty-six thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(146, 95428, 'ninety-five thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(147, 82618, 'eighty-two thousand six hundred eighteen'); INSERT INTO t2 VALUES(148, 21906, 'twenty-one thousand nine hundred six'); INSERT INTO t2 VALUES(149, 42253, 'forty-two thousand two hundred fifty-three'); INSERT INTO t2 VALUES(150, 27764, 'twenty-seven thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(151, 39773, 'thirty-nine thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(152, 59859, 'fifty-nine thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(153, 53478, 'fifty-three thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(154, 67737, 'sixty-seven thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(155, 11285, 'eleven thousand two hundred eighty-five'); INSERT INTO t2 VALUES(156, 16564, 'sixteen thousand five hundred sixty-four'); INSERT INTO t2 VALUES(157, 60721, 'sixty thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(158, 41942, 'forty-one thousand nine hundred forty-two'); INSERT INTO t2 VALUES(159, 54386, 'fifty-four thousand three hundred eighty-six'); INSERT INTO t2 VALUES(160, 31102, 'thirty-one thousand one hundred two'); INSERT INTO t2 VALUES(161, 21277, 'twenty-one thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(162, 13172, 'thirteen thousand one hundred seventy-two'); INSERT INTO t2 VALUES(163, 19591, 'nineteen thousand five hundred ninety-one'); INSERT INTO t2 VALUES(164, 14293, 'fourteen thousand two hundred ninety-three'); INSERT INTO t2 VALUES(165, 40877, 'forty thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(166, 79358, 'seventy-nine thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(167, 20675, 'twenty thousand six hundred seventy-five'); INSERT INTO t2 VALUES(168, 1769, 'one thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(169, 1677, 'one thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(170, 32205, 'thirty-two thousand two hundred five'); INSERT INTO t2 VALUES(171, 81540, 'eighty-one thousand five hundred forty'); INSERT INTO t2 VALUES(172, 5710, 'five thousand seven hundred ten'); INSERT INTO t2 VALUES(173, 62299, 'sixty-two thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(174, 85032, 'eighty-five thousand thirty-two'); INSERT INTO t2 VALUES(175, 3662, 'three thousand six hundred sixty-two'); INSERT INTO t2 VALUES(176, 58615, 'fifty-eight thousand six hundred fifteen'); INSERT INTO t2 VALUES(177, 13614, 'thirteen thousand six hundred fourteen'); INSERT INTO t2 VALUES(178, 62699, 'sixty-two thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(179, 71236, 'seventy-one thousand two hundred thirty-six'); INSERT INTO t2 VALUES(180, 88169, 'eighty-eight thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(181, 65385, 'sixty-five thousand three hundred eighty-five'); INSERT INTO t2 VALUES(182, 99267, 'ninety-nine thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(183, 12606, 'twelve thousand six hundred six'); INSERT INTO t2 VALUES(184, 30770, 'thirty thousand seven hundred seventy'); INSERT INTO t2 VALUES(185, 62402, 'sixty-two thousand four hundred two'); INSERT INTO t2 VALUES(186, 31565, 'thirty-one thousand five hundred sixty-five'); INSERT INTO t2 VALUES(187, 3692, 'three thousand six hundred ninety-two'); INSERT INTO t2 VALUES(188, 7186, 'seven thousand one hundred eighty-six'); INSERT INTO t2 VALUES(189, 99676, 'ninety-nine thousand six hundred seventy-six'); INSERT INTO t2 VALUES(190, 76164, 'seventy-six thousand one hundred sixty-four'); INSERT INTO t2 VALUES(191, 9515, 'nine thousand five hundred fifteen'); INSERT INTO t2 VALUES(192, 45987, 'forty-five thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(193, 82888, 'eighty-two thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(194, 6768, 'six thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(195, 40789, 'forty thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(196, 10644, 'ten thousand six hundred forty-four'); INSERT INTO t2 VALUES(197, 64882, 'sixty-four thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(198, 89204, 'eighty-nine thousand two hundred four'); INSERT INTO t2 VALUES(199, 31531, 'thirty-one thousand five hundred thirty-one'); INSERT INTO t2 VALUES(200, 84135, 'eighty-four thousand one hundred thirty-five'); INSERT INTO t2 VALUES(201, 40452, 'forty thousand four hundred fifty-two'); INSERT INTO t2 VALUES(202, 65812, 'sixty-five thousand eight hundred twelve'); INSERT INTO t2 VALUES(203, 87428, 'eighty-seven thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(204, 81611, 'eighty-one thousand six hundred eleven'); INSERT INTO t2 VALUES(205, 35606, 'thirty-five thousand six hundred six'); INSERT INTO t2 VALUES(206, 44800, 'forty-four thousand eight hundred'); INSERT INTO t2 VALUES(207, 90307, 'ninety thousand three hundred seven'); INSERT INTO t2 VALUES(208, 49767, 'forty-nine thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(209, 63135, 'sixty-three thousand one hundred thirty-five'); INSERT INTO t2 VALUES(210, 7874, 'seven thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(211, 56052, 'fifty-six thousand fifty-two'); INSERT INTO t2 VALUES(212, 14101, 'fourteen thousand one hundred one'); INSERT INTO t2 VALUES(213, 73904, 'seventy-three thousand nine hundred four'); INSERT INTO t2 VALUES(214, 82013, 'eighty-two thousand thirteen'); INSERT INTO t2 VALUES(215, 30917, 'thirty thousand nine hundred seventeen'); INSERT INTO t2 VALUES(216, 43369, 'forty-three thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(217, 85482, 'eighty-five thousand four hundred eighty-two'); INSERT INTO t2 VALUES(218, 74531, 'seventy-four thousand five hundred thirty-one'); INSERT INTO t2 VALUES(219, 68304, 'sixty-eight thousand three hundred four'); INSERT INTO t2 VALUES(220, 3826, 'three thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(221, 47165, 'forty-seven thousand one hundred sixty-five'); INSERT INTO t2 VALUES(222, 92990, 'ninety-two thousand nine hundred ninety'); INSERT INTO t2 VALUES(223, 79000, 'seventy-nine thousand'); INSERT INTO t2 VALUES(224, 58652, 'fifty-eight thousand six hundred fifty-two'); INSERT INTO t2 VALUES(225, 48526, 'forty-eight thousand five hundred twenty-six'); INSERT INTO t2 VALUES(226, 43307, 'forty-three thousand three hundred seven'); INSERT INTO t2 VALUES(227, 23772, 'twenty-three thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(228, 58846, 'fifty-eight thousand eight hundred forty-six'); INSERT INTO t2 VALUES(229, 87291, 'eighty-seven thousand two hundred ninety-one'); INSERT INTO t2 VALUES(230, 83004, 'eighty-three thousand four'); INSERT INTO t2 VALUES(231, 42004, 'forty-two thousand four'); INSERT INTO t2 VALUES(232, 49969, 'forty-nine thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(233, 23476, 'twenty-three thousand four hundred seventy-six'); INSERT INTO t2 VALUES(234, 79448, 'seventy-nine thousand four hundred forty-eight'); INSERT INTO t2 VALUES(235, 50218, 'fifty thousand two hundred eighteen'); INSERT INTO t2 VALUES(236, 77955, 'seventy-seven thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(237, 38504, 'thirty-eight thousand five hundred four'); INSERT INTO t2 VALUES(238, 15753, 'fifteen thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(239, 6575, 'six thousand five hundred seventy-five'); INSERT INTO t2 VALUES(240, 55802, 'fifty-five thousand eight hundred two'); INSERT INTO t2 VALUES(241, 80168, 'eighty thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(242, 92770, 'ninety-two thousand seven hundred seventy'); INSERT INTO t2 VALUES(243, 55401, 'fifty-five thousand four hundred one'); INSERT INTO t2 VALUES(244, 78571, 'seventy-eight thousand five hundred seventy-one'); INSERT INTO t2 VALUES(245, 35837, 'thirty-five thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(246, 31224, 'thirty-one thousand two hundred twenty-four'); INSERT INTO t2 VALUES(247, 89769, 'eighty-nine thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(248, 20314, 'twenty thousand three hundred fourteen'); INSERT INTO t2 VALUES(249, 71697, 'seventy-one thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(250, 22149, 'twenty-two thousand one hundred forty-nine'); INSERT INTO t2 VALUES(251, 23262, 'twenty-three thousand two hundred sixty-two'); INSERT INTO t2 VALUES(252, 7116, 'seven thousand one hundred sixteen'); INSERT INTO t2 VALUES(253, 25847, 'twenty-five thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(254, 91292, 'ninety-one thousand two hundred ninety-two'); INSERT INTO t2 VALUES(255, 7915, 'seven thousand nine hundred fifteen'); INSERT INTO t2 VALUES(256, 85245, 'eighty-five thousand two hundred forty-five'); INSERT INTO t2 VALUES(257, 94332, 'ninety-four thousand three hundred thirty-two'); INSERT INTO t2 VALUES(258, 39481, 'thirty-nine thousand four hundred eighty-one'); INSERT INTO t2 VALUES(259, 5269, 'five thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(260, 22338, 'twenty-two thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(261, 74180, 'seventy-four thousand one hundred eighty'); INSERT INTO t2 VALUES(262, 49430, 'forty-nine thousand four hundred thirty'); INSERT INTO t2 VALUES(263, 51365, 'fifty-one thousand three hundred sixty-five'); INSERT INTO t2 VALUES(264, 54313, 'fifty-four thousand three hundred thirteen'); INSERT INTO t2 VALUES(265, 13136, 'thirteen thousand one hundred thirty-six'); INSERT INTO t2 VALUES(266, 83576, 'eighty-three thousand five hundred seventy-six'); INSERT INTO t2 VALUES(267, 78663, 'seventy-eight thousand six hundred sixty-three'); INSERT INTO t2 VALUES(268, 47700, 'forty-seven thousand seven hundred'); INSERT INTO t2 VALUES(269, 34175, 'thirty-four thousand one hundred seventy-five'); INSERT INTO t2 VALUES(270, 83792, 'eighty-three thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(271, 24469, 'twenty-four thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(272, 79780, 'seventy-nine thousand seven hundred eighty'); INSERT INTO t2 VALUES(273, 68160, 'sixty-eight thousand one hundred sixty'); INSERT INTO t2 VALUES(274, 24719, 'twenty-four thousand seven hundred nineteen'); INSERT INTO t2 VALUES(275, 90627, 'ninety thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(276, 68384, 'sixty-eight thousand three hundred eighty-four'); INSERT INTO t2 VALUES(277, 2097, 'two thousand ninety-seven'); INSERT INTO t2 VALUES(278, 91419, 'ninety-one thousand four hundred nineteen'); INSERT INTO t2 VALUES(279, 490, 'four hundred ninety'); INSERT INTO t2 VALUES(280, 41320, 'forty-one thousand three hundred twenty'); INSERT INTO t2 VALUES(281, 85136, 'eighty-five thousand one hundred thirty-six'); INSERT INTO t2 VALUES(282, 58013, 'fifty-eight thousand thirteen'); INSERT INTO t2 VALUES(283, 64490, 'sixty-four thousand four hundred ninety'); INSERT INTO t2 VALUES(284, 14584, 'fourteen thousand five hundred eighty-four'); INSERT INTO t2 VALUES(285, 45558, 'forty-five thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(286, 36464, 'thirty-six thousand four hundred sixty-four'); INSERT INTO t2 VALUES(287, 9044, 'nine thousand forty-four'); INSERT INTO t2 VALUES(288, 50280, 'fifty thousand two hundred eighty'); INSERT INTO t2 VALUES(289, 18306, 'eighteen thousand three hundred six'); INSERT INTO t2 VALUES(290, 78730, 'seventy-eight thousand seven hundred thirty'); INSERT INTO t2 VALUES(291, 44272, 'forty-four thousand two hundred seventy-two'); INSERT INTO t2 VALUES(292, 43960, 'forty-three thousand nine hundred sixty'); INSERT INTO t2 VALUES(293, 3488, 'three thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(294, 80135, 'eighty thousand one hundred thirty-five'); INSERT INTO t2 VALUES(295, 74156, 'seventy-four thousand one hundred fifty-six'); INSERT INTO t2 VALUES(296, 2359, 'two thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(297, 18621, 'eighteen thousand six hundred twenty-one'); INSERT INTO t2 VALUES(298, 93144, 'ninety-three thousand one hundred forty-four'); INSERT INTO t2 VALUES(299, 57458, 'fifty-seven thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(300, 72223, 'seventy-two thousand two hundred twenty-three'); INSERT INTO t2 VALUES(301, 73494, 'seventy-three thousand four hundred ninety-four'); INSERT INTO t2 VALUES(302, 24982, 'twenty-four thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(303, 17264, 'seventeen thousand two hundred sixty-four'); INSERT INTO t2 VALUES(304, 41967, 'forty-one thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(305, 97163, 'ninety-seven thousand one hundred sixty-three'); INSERT INTO t2 VALUES(306, 89452, 'eighty-nine thousand four hundred fifty-two'); INSERT INTO t2 VALUES(307, 20167, 'twenty thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(308, 39685, 'thirty-nine thousand six hundred eighty-five'); INSERT INTO t2 VALUES(309, 93786, 'ninety-three thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(310, 1083, 'one thousand eighty-three'); INSERT INTO t2 VALUES(311, 91893, 'ninety-one thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(312, 73800, 'seventy-three thousand eight hundred'); INSERT INTO t2 VALUES(313, 24798, 'twenty-four thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(314, 48791, 'forty-eight thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(315, 90826, 'ninety thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(316, 99175, 'ninety-nine thousand one hundred seventy-five'); INSERT INTO t2 VALUES(317, 24893, 'twenty-four thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(318, 43840, 'forty-three thousand eight hundred forty'); INSERT INTO t2 VALUES(319, 98875, 'ninety-eight thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(320, 63936, 'sixty-three thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(321, 42855, 'forty-two thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(322, 47833, 'forty-seven thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(323, 36163, 'thirty-six thousand one hundred sixty-three'); INSERT INTO t2 VALUES(324, 49870, 'forty-nine thousand eight hundred seventy'); INSERT INTO t2 VALUES(325, 81463, 'eighty-one thousand four hundred sixty-three'); INSERT INTO t2 VALUES(326, 29346, 'twenty-nine thousand three hundred forty-six'); INSERT INTO t2 VALUES(327, 66164, 'sixty-six thousand one hundred sixty-four'); INSERT INTO t2 VALUES(328, 13407, 'thirteen thousand four hundred seven'); INSERT INTO t2 VALUES(329, 3831, 'three thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(330, 47325, 'forty-seven thousand three hundred twenty-five'); INSERT INTO t2 VALUES(331, 55698, 'fifty-five thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(332, 78457, 'seventy-eight thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(333, 42971, 'forty-two thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(334, 23741, 'twenty-three thousand seven hundred forty-one'); INSERT INTO t2 VALUES(335, 5185, 'five thousand one hundred eighty-five'); INSERT INTO t2 VALUES(336, 5746, 'five thousand seven hundred forty-six'); INSERT INTO t2 VALUES(337, 25097, 'twenty-five thousand ninety-seven'); INSERT INTO t2 VALUES(338, 95283, 'ninety-five thousand two hundred eighty-three'); INSERT INTO t2 VALUES(339, 96875, 'ninety-six thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(340, 98629, 'ninety-eight thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(341, 41267, 'forty-one thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(342, 98055, 'ninety-eight thousand fifty-five'); INSERT INTO t2 VALUES(343, 73830, 'seventy-three thousand eight hundred thirty'); INSERT INTO t2 VALUES(344, 34985, 'thirty-four thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(345, 24661, 'twenty-four thousand six hundred sixty-one'); INSERT INTO t2 VALUES(346, 44424, 'forty-four thousand four hundred twenty-four'); INSERT INTO t2 VALUES(347, 74252, 'seventy-four thousand two hundred fifty-two'); INSERT INTO t2 VALUES(348, 9490, 'nine thousand four hundred ninety'); INSERT INTO t2 VALUES(349, 8125, 'eight thousand one hundred twenty-five'); INSERT INTO t2 VALUES(350, 39204, 'thirty-nine thousand two hundred four'); INSERT INTO t2 VALUES(351, 43098, 'forty-three thousand ninety-eight'); INSERT INTO t2 VALUES(352, 96899, 'ninety-six thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(353, 80442, 'eighty thousand four hundred forty-two'); INSERT INTO t2 VALUES(354, 7697, 'seven thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(355, 92162, 'ninety-two thousand one hundred sixty-two'); INSERT INTO t2 VALUES(356, 79651, 'seventy-nine thousand six hundred fifty-one'); INSERT INTO t2 VALUES(357, 81206, 'eighty-one thousand two hundred six'); INSERT INTO t2 VALUES(358, 6508, 'six thousand five hundred eight'); INSERT INTO t2 VALUES(359, 3635, 'three thousand six hundred thirty-five'); INSERT INTO t2 VALUES(360, 66733, 'sixty-six thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(361, 13695, 'thirteen thousand six hundred ninety-five'); INSERT INTO t2 VALUES(362, 17014, 'seventeen thousand fourteen'); INSERT INTO t2 VALUES(363, 57870, 'fifty-seven thousand eight hundred seventy'); INSERT INTO t2 VALUES(364, 23851, 'twenty-three thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(365, 69139, 'sixty-nine thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(366, 14381, 'fourteen thousand three hundred eighty-one'); INSERT INTO t2 VALUES(367, 39789, 'thirty-nine thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(368, 54204, 'fifty-four thousand two hundred four'); INSERT INTO t2 VALUES(369, 31110, 'thirty-one thousand one hundred ten'); INSERT INTO t2 VALUES(370, 30301, 'thirty thousand three hundred one'); INSERT INTO t2 VALUES(371, 96378, 'ninety-six thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(372, 30520, 'thirty thousand five hundred twenty'); INSERT INTO t2 VALUES(373, 49432, 'forty-nine thousand four hundred thirty-two'); INSERT INTO t2 VALUES(374, 11167, 'eleven thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(375, 23567, 'twenty-three thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(376, 39142, 'thirty-nine thousand one hundred forty-two'); INSERT INTO t2 VALUES(377, 45535, 'forty-five thousand five hundred thirty-five'); INSERT INTO t2 VALUES(378, 60086, 'sixty thousand eighty-six'); INSERT INTO t2 VALUES(379, 96700, 'ninety-six thousand seven hundred'); INSERT INTO t2 VALUES(380, 51609, 'fifty-one thousand six hundred nine'); INSERT INTO t2 VALUES(381, 19465, 'nineteen thousand four hundred sixty-five'); INSERT INTO t2 VALUES(382, 97496, 'ninety-seven thousand four hundred ninety-six'); INSERT INTO t2 VALUES(383, 40693, 'forty thousand six hundred ninety-three'); INSERT INTO t2 VALUES(384, 90384, 'ninety thousand three hundred eighty-four'); INSERT INTO t2 VALUES(385, 37018, 'thirty-seven thousand eighteen'); INSERT INTO t2 VALUES(386, 33373, 'thirty-three thousand three hundred seventy-three'); INSERT INTO t2 VALUES(387, 18129, 'eighteen thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(388, 87088, 'eighty-seven thousand eighty-eight'); INSERT INTO t2 VALUES(389, 38982, 'thirty-eight thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(390, 68852, 'sixty-eight thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(391, 67805, 'sixty-seven thousand eight hundred five'); INSERT INTO t2 VALUES(392, 85035, 'eighty-five thousand thirty-five'); INSERT INTO t2 VALUES(393, 83196, 'eighty-three thousand one hundred ninety-six'); INSERT INTO t2 VALUES(394, 66916, 'sixty-six thousand nine hundred sixteen'); INSERT INTO t2 VALUES(395, 62729, 'sixty-two thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(396, 40572, 'forty thousand five hundred seventy-two'); INSERT INTO t2 VALUES(397, 99281, 'ninety-nine thousand two hundred eighty-one'); INSERT INTO t2 VALUES(398, 13442, 'thirteen thousand four hundred forty-two'); INSERT INTO t2 VALUES(399, 62851, 'sixty-two thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(400, 88668, 'eighty-eight thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(401, 39319, 'thirty-nine thousand three hundred nineteen'); INSERT INTO t2 VALUES(402, 54573, 'fifty-four thousand five hundred seventy-three'); INSERT INTO t2 VALUES(403, 69094, 'sixty-nine thousand ninety-four'); INSERT INTO t2 VALUES(404, 22750, 'twenty-two thousand seven hundred fifty'); INSERT INTO t2 VALUES(405, 958, 'nine hundred fifty-eight'); INSERT INTO t2 VALUES(406, 37812, 'thirty-seven thousand eight hundred twelve'); INSERT INTO t2 VALUES(407, 27408, 'twenty-seven thousand four hundred eight'); INSERT INTO t2 VALUES(408, 102, 'one hundred two'); INSERT INTO t2 VALUES(409, 98842, 'ninety-eight thousand eight hundred forty-two'); INSERT INTO t2 VALUES(410, 46101, 'forty-six thousand one hundred one'); INSERT INTO t2 VALUES(411, 47116, 'forty-seven thousand one hundred sixteen'); INSERT INTO t2 VALUES(412, 83820, 'eighty-three thousand eight hundred twenty'); INSERT INTO t2 VALUES(413, 11037, 'eleven thousand thirty-seven'); INSERT INTO t2 VALUES(414, 63954, 'sixty-three thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(415, 4143, 'four thousand one hundred forty-three'); INSERT INTO t2 VALUES(416, 92284, 'ninety-two thousand two hundred eighty-four'); INSERT INTO t2 VALUES(417, 13726, 'thirteen thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(418, 19093, 'nineteen thousand ninety-three'); INSERT INTO t2 VALUES(419, 5647, 'five thousand six hundred forty-seven'); INSERT INTO t2 VALUES(420, 59306, 'fifty-nine thousand three hundred six'); INSERT INTO t2 VALUES(421, 74912, 'seventy-four thousand nine hundred twelve'); INSERT INTO t2 VALUES(422, 57291, 'fifty-seven thousand two hundred ninety-one'); INSERT INTO t2 VALUES(423, 88070, 'eighty-eight thousand seventy'); INSERT INTO t2 VALUES(424, 17250, 'seventeen thousand two hundred fifty'); INSERT INTO t2 VALUES(425, 33763, 'thirty-three thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(426, 92165, 'ninety-two thousand one hundred sixty-five'); INSERT INTO t2 VALUES(427, 71691, 'seventy-one thousand six hundred ninety-one'); INSERT INTO t2 VALUES(428, 15409, 'fifteen thousand four hundred nine'); INSERT INTO t2 VALUES(429, 78545, 'seventy-eight thousand five hundred forty-five'); INSERT INTO t2 VALUES(430, 35754, 'thirty-five thousand seven hundred fifty-four'); INSERT INTO t2 VALUES(431, 11936, 'eleven thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(432, 5900, 'five thousand nine hundred'); INSERT INTO t2 VALUES(433, 74035, 'seventy-four thousand thirty-five'); INSERT INTO t2 VALUES(434, 79581, 'seventy-nine thousand five hundred eighty-one'); INSERT INTO t2 VALUES(435, 75744, 'seventy-five thousand seven hundred forty-four'); INSERT INTO t2 VALUES(436, 63940, 'sixty-three thousand nine hundred forty'); INSERT INTO t2 VALUES(437, 23980, 'twenty-three thousand nine hundred eighty'); INSERT INTO t2 VALUES(438, 22051, 'twenty-two thousand fifty-one'); INSERT INTO t2 VALUES(439, 93445, 'ninety-three thousand four hundred forty-five'); INSERT INTO t2 VALUES(440, 34736, 'thirty-four thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(441, 31454, 'thirty-one thousand four hundred fifty-four'); INSERT INTO t2 VALUES(442, 40844, 'forty thousand eight hundred forty-four'); INSERT INTO t2 VALUES(443, 70304, 'seventy thousand three hundred four'); INSERT INTO t2 VALUES(444, 10837, 'ten thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(445, 99631, 'ninety-nine thousand six hundred thirty-one'); INSERT INTO t2 VALUES(446, 72804, 'seventy-two thousand eight hundred four'); INSERT INTO t2 VALUES(447, 92850, 'ninety-two thousand eight hundred fifty'); INSERT INTO t2 VALUES(448, 63508, 'sixty-three thousand five hundred eight'); INSERT INTO t2 VALUES(449, 25706, 'twenty-five thousand seven hundred six'); INSERT INTO t2 VALUES(450, 87944, 'eighty-seven thousand nine hundred forty-four'); INSERT INTO t2 VALUES(451, 23517, 'twenty-three thousand five hundred seventeen'); INSERT INTO t2 VALUES(452, 68961, 'sixty-eight thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(453, 74788, 'seventy-four thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(454, 16124, 'sixteen thousand one hundred twenty-four'); INSERT INTO t2 VALUES(455, 93887, 'ninety-three thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(456, 85421, 'eighty-five thousand four hundred twenty-one'); INSERT INTO t2 VALUES(457, 91515, 'ninety-one thousand five hundred fifteen'); INSERT INTO t2 VALUES(458, 15437, 'fifteen thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(459, 37400, 'thirty-seven thousand four hundred'); INSERT INTO t2 VALUES(460, 5002, 'five thousand two'); INSERT INTO t2 VALUES(461, 79204, 'seventy-nine thousand two hundred four'); INSERT INTO t2 VALUES(462, 39588, 'thirty-nine thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(463, 19821, 'nineteen thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(464, 23933, 'twenty-three thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(465, 17986, 'seventeen thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(466, 34801, 'thirty-four thousand eight hundred one'); INSERT INTO t2 VALUES(467, 63154, 'sixty-three thousand one hundred fifty-four'); INSERT INTO t2 VALUES(468, 76240, 'seventy-six thousand two hundred forty'); INSERT INTO t2 VALUES(469, 92334, 'ninety-two thousand three hundred thirty-four'); INSERT INTO t2 VALUES(470, 32094, 'thirty-two thousand ninety-four'); INSERT INTO t2 VALUES(471, 52504, 'fifty-two thousand five hundred four'); INSERT INTO t2 VALUES(472, 89226, 'eighty-nine thousand two hundred twenty-six'); INSERT INTO t2 VALUES(473, 32433, 'thirty-two thousand four hundred thirty-three'); INSERT INTO t2 VALUES(474, 68219, 'sixty-eight thousand two hundred nineteen'); INSERT INTO t2 VALUES(475, 22845, 'twenty-two thousand eight hundred forty-five'); INSERT INTO t2 VALUES(476, 9138, 'nine thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(477, 56540, 'fifty-six thousand five hundred forty'); INSERT INTO t2 VALUES(478, 60269, 'sixty thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(479, 62693, 'sixty-two thousand six hundred ninety-three'); INSERT INTO t2 VALUES(480, 31550, 'thirty-one thousand five hundred fifty'); INSERT INTO t2 VALUES(481, 23224, 'twenty-three thousand two hundred twenty-four'); INSERT INTO t2 VALUES(482, 37671, 'thirty-seven thousand six hundred seventy-one'); INSERT INTO t2 VALUES(483, 60275, 'sixty thousand two hundred seventy-five'); INSERT INTO t2 VALUES(484, 89470, 'eighty-nine thousand four hundred seventy'); INSERT INTO t2 VALUES(485, 67806, 'sixty-seven thousand eight hundred six'); INSERT INTO t2 VALUES(486, 45933, 'forty-five thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(487, 34486, 'thirty-four thousand four hundred eighty-six'); INSERT INTO t2 VALUES(488, 32311, 'thirty-two thousand three hundred eleven'); INSERT INTO t2 VALUES(489, 27956, 'twenty-seven thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(490, 3525, 'three thousand five hundred twenty-five'); INSERT INTO t2 VALUES(491, 97535, 'ninety-seven thousand five hundred thirty-five'); INSERT INTO t2 VALUES(492, 25332, 'twenty-five thousand three hundred thirty-two'); INSERT INTO t2 VALUES(493, 32005, 'thirty-two thousand five'); INSERT INTO t2 VALUES(494, 62842, 'sixty-two thousand eight hundred forty-two'); INSERT INTO t2 VALUES(495, 97388, 'ninety-seven thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(496, 9955, 'nine thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(497, 16659, 'sixteen thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(498, 36808, 'thirty-six thousand eight hundred eight'); INSERT INTO t2 VALUES(499, 96556, 'ninety-six thousand five hundred fifty-six'); INSERT INTO t2 VALUES(500, 97611, 'ninety-seven thousand six hundred eleven'); INSERT INTO t2 VALUES(501, 94797, 'ninety-four thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(502, 55526, 'fifty-five thousand five hundred twenty-six'); INSERT INTO t2 VALUES(503, 67993, 'sixty-seven thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(504, 9578, 'nine thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(505, 66639, 'sixty-six thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(506, 34736, 'thirty-four thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(507, 99062, 'ninety-nine thousand sixty-two'); INSERT INTO t2 VALUES(508, 34421, 'thirty-four thousand four hundred twenty-one'); INSERT INTO t2 VALUES(509, 2808, 'two thousand eight hundred eight'); INSERT INTO t2 VALUES(510, 95578, 'ninety-five thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(511, 59698, 'fifty-nine thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(512, 48398, 'forty-eight thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(513, 70979, 'seventy thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(514, 78429, 'seventy-eight thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(515, 54267, 'fifty-four thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(516, 23592, 'twenty-three thousand five hundred ninety-two'); INSERT INTO t2 VALUES(517, 54855, 'fifty-four thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(518, 84027, 'eighty-four thousand twenty-seven'); INSERT INTO t2 VALUES(519, 65748, 'sixty-five thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(520, 41536, 'forty-one thousand five hundred thirty-six'); INSERT INTO t2 VALUES(521, 18689, 'eighteen thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(522, 95009, 'ninety-five thousand nine'); INSERT INTO t2 VALUES(523, 67827, 'sixty-seven thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(524, 73315, 'seventy-three thousand three hundred fifteen'); INSERT INTO t2 VALUES(525, 69894, 'sixty-nine thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(526, 31763, 'thirty-one thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(527, 95172, 'ninety-five thousand one hundred seventy-two'); INSERT INTO t2 VALUES(528, 66494, 'sixty-six thousand four hundred ninety-four'); INSERT INTO t2 VALUES(529, 22046, 'twenty-two thousand forty-six'); INSERT INTO t2 VALUES(530, 88566, 'eighty-eight thousand five hundred sixty-six'); INSERT INTO t2 VALUES(531, 67887, 'sixty-seven thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(532, 40199, 'forty thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(533, 59247, 'fifty-nine thousand two hundred forty-seven'); INSERT INTO t2 VALUES(534, 68531, 'sixty-eight thousand five hundred thirty-one'); INSERT INTO t2 VALUES(535, 28157, 'twenty-eight thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(536, 40723, 'forty thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(537, 99214, 'ninety-nine thousand two hundred fourteen'); INSERT INTO t2 VALUES(538, 3380, 'three thousand three hundred eighty'); INSERT INTO t2 VALUES(539, 71751, 'seventy-one thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(540, 71340, 'seventy-one thousand three hundred forty'); INSERT INTO t2 VALUES(541, 96992, 'ninety-six thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(542, 89052, 'eighty-nine thousand fifty-two'); INSERT INTO t2 VALUES(543, 60936, 'sixty thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(544, 75893, 'seventy-five thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(545, 48708, 'forty-eight thousand seven hundred eight'); INSERT INTO t2 VALUES(546, 14104, 'fourteen thousand one hundred four'); INSERT INTO t2 VALUES(547, 45315, 'forty-five thousand three hundred fifteen'); INSERT INTO t2 VALUES(548, 95566, 'ninety-five thousand five hundred sixty-six'); INSERT INTO t2 VALUES(549, 35437, 'thirty-five thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(550, 25022, 'twenty-five thousand twenty-two'); INSERT INTO t2 VALUES(551, 79698, 'seventy-nine thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(552, 35072, 'thirty-five thousand seventy-two'); INSERT INTO t2 VALUES(553, 45001, 'forty-five thousand one'); INSERT INTO t2 VALUES(554, 34803, 'thirty-four thousand eight hundred three'); INSERT INTO t2 VALUES(555, 26429, 'twenty-six thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(556, 59919, 'fifty-nine thousand nine hundred nineteen'); INSERT INTO t2 VALUES(557, 74425, 'seventy-four thousand four hundred twenty-five'); INSERT INTO t2 VALUES(558, 71306, 'seventy-one thousand three hundred six'); INSERT INTO t2 VALUES(559, 70169, 'seventy thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(560, 45716, 'forty-five thousand seven hundred sixteen'); INSERT INTO t2 VALUES(561, 47751, 'forty-seven thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(562, 69698, 'sixty-nine thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(563, 40521, 'forty thousand five hundred twenty-one'); INSERT INTO t2 VALUES(564, 73632, 'seventy-three thousand six hundred thirty-two'); INSERT INTO t2 VALUES(565, 31778, 'thirty-one thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(566, 78531, 'seventy-eight thousand five hundred thirty-one'); INSERT INTO t2 VALUES(567, 44561, 'forty-four thousand five hundred sixty-one'); INSERT INTO t2 VALUES(568, 60621, 'sixty thousand six hundred twenty-one'); INSERT INTO t2 VALUES(569, 34958, 'thirty-four thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(570, 12259, 'twelve thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(571, 65727, 'sixty-five thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(572, 95688, 'ninety-five thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(573, 81733, 'eighty-one thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(574, 74957, 'seventy-four thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(575, 72542, 'seventy-two thousand five hundred forty-two'); INSERT INTO t2 VALUES(576, 89103, 'eighty-nine thousand one hundred three'); INSERT INTO t2 VALUES(577, 86180, 'eighty-six thousand one hundred eighty'); INSERT INTO t2 VALUES(578, 37290, 'thirty-seven thousand two hundred ninety'); INSERT INTO t2 VALUES(579, 21170, 'twenty-one thousand one hundred seventy'); INSERT INTO t2 VALUES(580, 82597, 'eighty-two thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(581, 84482, 'eighty-four thousand four hundred eighty-two'); INSERT INTO t2 VALUES(582, 37952, 'thirty-seven thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(583, 86729, 'eighty-six thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(584, 94676, 'ninety-four thousand six hundred seventy-six'); INSERT INTO t2 VALUES(585, 73021, 'seventy-three thousand twenty-one'); INSERT INTO t2 VALUES(586, 48024, 'forty-eight thousand twenty-four'); INSERT INTO t2 VALUES(587, 13143, 'thirteen thousand one hundred forty-three'); INSERT INTO t2 VALUES(588, 38531, 'thirty-eight thousand five hundred thirty-one'); INSERT INTO t2 VALUES(589, 2489, 'two thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(590, 73416, 'seventy-three thousand four hundred sixteen'); INSERT INTO t2 VALUES(591, 73717, 'seventy-three thousand seven hundred seventeen'); INSERT INTO t2 VALUES(592, 34965, 'thirty-four thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(593, 62107, 'sixty-two thousand one hundred seven'); INSERT INTO t2 VALUES(594, 56695, 'fifty-six thousand six hundred ninety-five'); INSERT INTO t2 VALUES(595, 9354, 'nine thousand three hundred fifty-four'); INSERT INTO t2 VALUES(596, 85230, 'eighty-five thousand two hundred thirty'); INSERT INTO t2 VALUES(597, 74110, 'seventy-four thousand one hundred ten'); INSERT INTO t2 VALUES(598, 11003, 'eleven thousand three'); INSERT INTO t2 VALUES(599, 78616, 'seventy-eight thousand six hundred sixteen'); INSERT INTO t2 VALUES(600, 94802, 'ninety-four thousand eight hundred two'); INSERT INTO t2 VALUES(601, 82730, 'eighty-two thousand seven hundred thirty'); INSERT INTO t2 VALUES(602, 8566, 'eight thousand five hundred sixty-six'); INSERT INTO t2 VALUES(603, 99148, 'ninety-nine thousand one hundred forty-eight'); INSERT INTO t2 VALUES(604, 3426, 'three thousand four hundred twenty-six'); INSERT INTO t2 VALUES(605, 18875, 'eighteen thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(606, 60437, 'sixty thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(607, 54616, 'fifty-four thousand six hundred sixteen'); INSERT INTO t2 VALUES(608, 9202, 'nine thousand two hundred two'); INSERT INTO t2 VALUES(609, 59573, 'fifty-nine thousand five hundred seventy-three'); INSERT INTO t2 VALUES(610, 89791, 'eighty-nine thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(611, 55268, 'fifty-five thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(612, 98308, 'ninety-eight thousand three hundred eight'); INSERT INTO t2 VALUES(613, 17680, 'seventeen thousand six hundred eighty'); INSERT INTO t2 VALUES(614, 55025, 'fifty-five thousand twenty-five'); INSERT INTO t2 VALUES(615, 77294, 'seventy-seven thousand two hundred ninety-four'); INSERT INTO t2 VALUES(616, 81062, 'eighty-one thousand sixty-two'); INSERT INTO t2 VALUES(617, 13052, 'thirteen thousand fifty-two'); INSERT INTO t2 VALUES(618, 91235, 'ninety-one thousand two hundred thirty-five'); INSERT INTO t2 VALUES(619, 66678, 'sixty-six thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(620, 56918, 'fifty-six thousand nine hundred eighteen'); INSERT INTO t2 VALUES(621, 60166, 'sixty thousand one hundred sixty-six'); INSERT INTO t2 VALUES(622, 75728, 'seventy-five thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(623, 51475, 'fifty-one thousand four hundred seventy-five'); INSERT INTO t2 VALUES(624, 18607, 'eighteen thousand six hundred seven'); INSERT INTO t2 VALUES(625, 70530, 'seventy thousand five hundred thirty'); INSERT INTO t2 VALUES(626, 99088, 'ninety-nine thousand eighty-eight'); INSERT INTO t2 VALUES(627, 27360, 'twenty-seven thousand three hundred sixty'); INSERT INTO t2 VALUES(628, 14766, 'fourteen thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(629, 38102, 'thirty-eight thousand one hundred two'); INSERT INTO t2 VALUES(630, 6368, 'six thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(631, 44679, 'forty-four thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(632, 83040, 'eighty-three thousand forty'); INSERT INTO t2 VALUES(633, 51321, 'fifty-one thousand three hundred twenty-one'); INSERT INTO t2 VALUES(634, 98071, 'ninety-eight thousand seventy-one'); INSERT INTO t2 VALUES(635, 90424, 'ninety thousand four hundred twenty-four'); INSERT INTO t2 VALUES(636, 70779, 'seventy thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(637, 30261, 'thirty thousand two hundred sixty-one'); INSERT INTO t2 VALUES(638, 96814, 'ninety-six thousand eight hundred fourteen'); INSERT INTO t2 VALUES(639, 64637, 'sixty-four thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(640, 21467, 'twenty-one thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(641, 49675, 'forty-nine thousand six hundred seventy-five'); INSERT INTO t2 VALUES(642, 49154, 'forty-nine thousand one hundred fifty-four'); INSERT INTO t2 VALUES(643, 31544, 'thirty-one thousand five hundred forty-four'); INSERT INTO t2 VALUES(644, 71290, 'seventy-one thousand two hundred ninety'); INSERT INTO t2 VALUES(645, 8215, 'eight thousand two hundred fifteen'); INSERT INTO t2 VALUES(646, 15898, 'fifteen thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(647, 42066, 'forty-two thousand sixty-six'); INSERT INTO t2 VALUES(648, 35652, 'thirty-five thousand six hundred fifty-two'); INSERT INTO t2 VALUES(649, 31326, 'thirty-one thousand three hundred twenty-six'); INSERT INTO t2 VALUES(650, 63793, 'sixty-three thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(651, 67657, 'sixty-seven thousand six hundred fifty-seven'); INSERT INTO t2 VALUES(652, 39223, 'thirty-nine thousand two hundred twenty-three'); INSERT INTO t2 VALUES(653, 13251, 'thirteen thousand two hundred fifty-one'); INSERT INTO t2 VALUES(654, 21579, 'twenty-one thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(655, 83396, 'eighty-three thousand three hundred ninety-six'); INSERT INTO t2 VALUES(656, 99715, 'ninety-nine thousand seven hundred fifteen'); INSERT INTO t2 VALUES(657, 16217, 'sixteen thousand two hundred seventeen'); INSERT INTO t2 VALUES(658, 66339, 'sixty-six thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(659, 57575, 'fifty-seven thousand five hundred seventy-five'); INSERT INTO t2 VALUES(660, 70206, 'seventy thousand two hundred six'); INSERT INTO t2 VALUES(661, 87963, 'eighty-seven thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(662, 17579, 'seventeen thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(663, 87565, 'eighty-seven thousand five hundred sixty-five'); INSERT INTO t2 VALUES(664, 86056, 'eighty-six thousand fifty-six'); INSERT INTO t2 VALUES(665, 2494, 'two thousand four hundred ninety-four'); INSERT INTO t2 VALUES(666, 91906, 'ninety-one thousand nine hundred six'); INSERT INTO t2 VALUES(667, 89821, 'eighty-nine thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(668, 30479, 'thirty thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(669, 73187, 'seventy-three thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(670, 16142, 'sixteen thousand one hundred forty-two'); INSERT INTO t2 VALUES(671, 81278, 'eighty-one thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(672, 74626, 'seventy-four thousand six hundred twenty-six'); INSERT INTO t2 VALUES(673, 11136, 'eleven thousand one hundred thirty-six'); INSERT INTO t2 VALUES(674, 77760, 'seventy-seven thousand seven hundred sixty'); INSERT INTO t2 VALUES(675, 40761, 'forty thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(676, 77786, 'seventy-seven thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(677, 78878, 'seventy-eight thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(678, 82966, 'eighty-two thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(679, 38243, 'thirty-eight thousand two hundred forty-three'); INSERT INTO t2 VALUES(680, 18097, 'eighteen thousand ninety-seven'); INSERT INTO t2 VALUES(681, 61339, 'sixty-one thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(682, 27517, 'twenty-seven thousand five hundred seventeen'); INSERT INTO t2 VALUES(683, 40926, 'forty thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(684, 90996, 'ninety thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(685, 51691, 'fifty-one thousand six hundred ninety-one'); INSERT INTO t2 VALUES(686, 2081, 'two thousand eighty-one'); INSERT INTO t2 VALUES(687, 95518, 'ninety-five thousand five hundred eighteen'); INSERT INTO t2 VALUES(688, 84035, 'eighty-four thousand thirty-five'); INSERT INTO t2 VALUES(689, 61083, 'sixty-one thousand eighty-three'); INSERT INTO t2 VALUES(690, 66953, 'sixty-six thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(691, 48888, 'forty-eight thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(692, 3728, 'three thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(693, 88539, 'eighty-eight thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(694, 24939, 'twenty-four thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(695, 12290, 'twelve thousand two hundred ninety'); INSERT INTO t2 VALUES(696, 99242, 'ninety-nine thousand two hundred forty-two'); INSERT INTO t2 VALUES(697, 32165, 'thirty-two thousand one hundred sixty-five'); INSERT INTO t2 VALUES(698, 47862, 'forty-seven thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(699, 64618, 'sixty-four thousand six hundred eighteen'); INSERT INTO t2 VALUES(700, 2534, 'two thousand five hundred thirty-four'); INSERT INTO t2 VALUES(701, 43705, 'forty-three thousand seven hundred five'); INSERT INTO t2 VALUES(702, 86086, 'eighty-six thousand eighty-six'); INSERT INTO t2 VALUES(703, 78321, 'seventy-eight thousand three hundred twenty-one'); INSERT INTO t2 VALUES(704, 30355, 'thirty thousand three hundred fifty-five'); INSERT INTO t2 VALUES(705, 78108, 'seventy-eight thousand one hundred eight'); INSERT INTO t2 VALUES(706, 32327, 'thirty-two thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(707, 66279, 'sixty-six thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(708, 99518, 'ninety-nine thousand five hundred eighteen'); INSERT INTO t2 VALUES(709, 70079, 'seventy thousand seventy-nine'); INSERT INTO t2 VALUES(710, 36441, 'thirty-six thousand four hundred forty-one'); INSERT INTO t2 VALUES(711, 2341, 'two thousand three hundred forty-one'); INSERT INTO t2 VALUES(712, 29186, 'twenty-nine thousand one hundred eighty-six'); INSERT INTO t2 VALUES(713, 43661, 'forty-three thousand six hundred sixty-one'); INSERT INTO t2 VALUES(714, 87058, 'eighty-seven thousand fifty-eight'); INSERT INTO t2 VALUES(715, 99743, 'ninety-nine thousand seven hundred forty-three'); INSERT INTO t2 VALUES(716, 89460, 'eighty-nine thousand four hundred sixty'); INSERT INTO t2 VALUES(717, 6777, 'six thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(718, 12820, 'twelve thousand eight hundred twenty'); INSERT INTO t2 VALUES(719, 1827, 'one thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(720, 5091, 'five thousand ninety-one'); INSERT INTO t2 VALUES(721, 78763, 'seventy-eight thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(722, 56599, 'fifty-six thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(723, 80592, 'eighty thousand five hundred ninety-two'); INSERT INTO t2 VALUES(724, 30909, 'thirty thousand nine hundred nine'); INSERT INTO t2 VALUES(725, 19797, 'nineteen thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(726, 62768, 'sixty-two thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(727, 94376, 'ninety-four thousand three hundred seventy-six'); INSERT INTO t2 VALUES(728, 83601, 'eighty-three thousand six hundred one'); INSERT INTO t2 VALUES(729, 42990, 'forty-two thousand nine hundred ninety'); INSERT INTO t2 VALUES(730, 7502, 'seven thousand five hundred two'); INSERT INTO t2 VALUES(731, 53674, 'fifty-three thousand six hundred seventy-four'); INSERT INTO t2 VALUES(732, 23843, 'twenty-three thousand eight hundred forty-three'); INSERT INTO t2 VALUES(733, 4838, 'four thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(734, 4619, 'four thousand six hundred nineteen'); INSERT INTO t2 VALUES(735, 59210, 'fifty-nine thousand two hundred ten'); INSERT INTO t2 VALUES(736, 66035, 'sixty-six thousand thirty-five'); INSERT INTO t2 VALUES(737, 45307, 'forty-five thousand three hundred seven'); INSERT INTO t2 VALUES(738, 3816, 'three thousand eight hundred sixteen'); INSERT INTO t2 VALUES(739, 57908, 'fifty-seven thousand nine hundred eight'); INSERT INTO t2 VALUES(740, 63148, 'sixty-three thousand one hundred forty-eight'); INSERT INTO t2 VALUES(741, 62717, 'sixty-two thousand seven hundred seventeen'); INSERT INTO t2 VALUES(742, 71595, 'seventy-one thousand five hundred ninety-five'); INSERT INTO t2 VALUES(743, 44054, 'forty-four thousand fifty-four'); INSERT INTO t2 VALUES(744, 69909, 'sixty-nine thousand nine hundred nine'); INSERT INTO t2 VALUES(745, 91551, 'ninety-one thousand five hundred fifty-one'); INSERT INTO t2 VALUES(746, 98216, 'ninety-eight thousand two hundred sixteen'); INSERT INTO t2 VALUES(747, 48437, 'forty-eight thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(748, 15086, 'fifteen thousand eighty-six'); INSERT INTO t2 VALUES(749, 63624, 'sixty-three thousand six hundred twenty-four'); INSERT INTO t2 VALUES(750, 57772, 'fifty-seven thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(751, 44176, 'forty-four thousand one hundred seventy-six'); INSERT INTO t2 VALUES(752, 45849, 'forty-five thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(753, 99996, 'ninety-nine thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(754, 95877, 'ninety-five thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(755, 2437, 'two thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(756, 20052, 'twenty thousand fifty-two'); INSERT INTO t2 VALUES(757, 71853, 'seventy-one thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(758, 29391, 'twenty-nine thousand three hundred ninety-one'); INSERT INTO t2 VALUES(759, 44050, 'forty-four thousand fifty'); INSERT INTO t2 VALUES(760, 99141, 'ninety-nine thousand one hundred forty-one'); INSERT INTO t2 VALUES(761, 23689, 'twenty-three thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(762, 11569, 'eleven thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(763, 24481, 'twenty-four thousand four hundred eighty-one'); INSERT INTO t2 VALUES(764, 78451, 'seventy-eight thousand four hundred fifty-one'); INSERT INTO t2 VALUES(765, 76265, 'seventy-six thousand two hundred sixty-five'); INSERT INTO t2 VALUES(766, 88798, 'eighty-eight thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(767, 88853, 'eighty-eight thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(768, 38634, 'thirty-eight thousand six hundred thirty-four'); INSERT INTO t2 VALUES(769, 68397, 'sixty-eight thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(770, 68598, 'sixty-eight thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(771, 83836, 'eighty-three thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(772, 40637, 'forty thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(773, 19114, 'nineteen thousand one hundred fourteen'); INSERT INTO t2 VALUES(774, 37463, 'thirty-seven thousand four hundred sixty-three'); INSERT INTO t2 VALUES(775, 97655, 'ninety-seven thousand six hundred fifty-five'); INSERT INTO t2 VALUES(776, 95507, 'ninety-five thousand five hundred seven'); INSERT INTO t2 VALUES(777, 11003, 'eleven thousand three'); INSERT INTO t2 VALUES(778, 69608, 'sixty-nine thousand six hundred eight'); INSERT INTO t2 VALUES(779, 51461, 'fifty-one thousand four hundred sixty-one'); INSERT INTO t2 VALUES(780, 20959, 'twenty thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(781, 76235, 'seventy-six thousand two hundred thirty-five'); INSERT INTO t2 VALUES(782, 95620, 'ninety-five thousand six hundred twenty'); INSERT INTO t2 VALUES(783, 29170, 'twenty-nine thousand one hundred seventy'); INSERT INTO t2 VALUES(784, 22082, 'twenty-two thousand eighty-two'); INSERT INTO t2 VALUES(785, 68667, 'sixty-eight thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(786, 33338, 'thirty-three thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(787, 90234, 'ninety thousand two hundred thirty-four'); INSERT INTO t2 VALUES(788, 65669, 'sixty-five thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(789, 38078, 'thirty-eight thousand seventy-eight'); INSERT INTO t2 VALUES(790, 87264, 'eighty-seven thousand two hundred sixty-four'); INSERT INTO t2 VALUES(791, 97614, 'ninety-seven thousand six hundred fourteen'); INSERT INTO t2 VALUES(792, 59817, 'fifty-nine thousand eight hundred seventeen'); INSERT INTO t2 VALUES(793, 5196, 'five thousand one hundred ninety-six'); INSERT INTO t2 VALUES(794, 42525, 'forty-two thousand five hundred twenty-five'); INSERT INTO t2 VALUES(795, 75267, 'seventy-five thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(796, 59459, 'fifty-nine thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(797, 17927, 'seventeen thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(798, 23710, 'twenty-three thousand seven hundred ten'); INSERT INTO t2 VALUES(799, 23131, 'twenty-three thousand one hundred thirty-one'); INSERT INTO t2 VALUES(800, 98268, 'ninety-eight thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(801, 52084, 'fifty-two thousand eighty-four'); INSERT INTO t2 VALUES(802, 6664, 'six thousand six hundred sixty-four'); INSERT INTO t2 VALUES(803, 18164, 'eighteen thousand one hundred sixty-four'); INSERT INTO t2 VALUES(804, 15805, 'fifteen thousand eight hundred five'); INSERT INTO t2 VALUES(805, 60170, 'sixty thousand one hundred seventy'); INSERT INTO t2 VALUES(806, 38797, 'thirty-eight thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(807, 6962, 'six thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(808, 54909, 'fifty-four thousand nine hundred nine'); INSERT INTO t2 VALUES(809, 81064, 'eighty-one thousand sixty-four'); INSERT INTO t2 VALUES(810, 75341, 'seventy-five thousand three hundred forty-one'); INSERT INTO t2 VALUES(811, 3138, 'three thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(812, 37465, 'thirty-seven thousand four hundred sixty-five'); INSERT INTO t2 VALUES(813, 20556, 'twenty thousand five hundred fifty-six'); INSERT INTO t2 VALUES(814, 9894, 'nine thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(815, 45227, 'forty-five thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(816, 47065, 'forty-seven thousand sixty-five'); INSERT INTO t2 VALUES(817, 48475, 'forty-eight thousand four hundred seventy-five'); INSERT INTO t2 VALUES(818, 87766, 'eighty-seven thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(819, 32488, 'thirty-two thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(820, 80760, 'eighty thousand seven hundred sixty'); INSERT INTO t2 VALUES(821, 72788, 'seventy-two thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(822, 27462, 'twenty-seven thousand four hundred sixty-two'); INSERT INTO t2 VALUES(823, 95835, 'ninety-five thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(824, 52238, 'fifty-two thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(825, 83682, 'eighty-three thousand six hundred eighty-two'); INSERT INTO t2 VALUES(826, 71799, 'seventy-one thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(827, 2127, 'two thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(828, 75416, 'seventy-five thousand four hundred sixteen'); INSERT INTO t2 VALUES(829, 76242, 'seventy-six thousand two hundred forty-two'); INSERT INTO t2 VALUES(830, 76930, 'seventy-six thousand nine hundred thirty'); INSERT INTO t2 VALUES(831, 46819, 'forty-six thousand eight hundred nineteen'); INSERT INTO t2 VALUES(832, 59100, 'fifty-nine thousand one hundred'); INSERT INTO t2 VALUES(833, 8369, 'eight thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(834, 97501, 'ninety-seven thousand five hundred one'); INSERT INTO t2 VALUES(835, 47736, 'forty-seven thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(836, 15478, 'fifteen thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(837, 14813, 'fourteen thousand eight hundred thirteen'); INSERT INTO t2 VALUES(838, 94605, 'ninety-four thousand six hundred five'); INSERT INTO t2 VALUES(839, 13218, 'thirteen thousand two hundred eighteen'); INSERT INTO t2 VALUES(840, 41949, 'forty-one thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(841, 21369, 'twenty-one thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(842, 78744, 'seventy-eight thousand seven hundred forty-four'); INSERT INTO t2 VALUES(843, 8213, 'eight thousand two hundred thirteen'); INSERT INTO t2 VALUES(844, 8523, 'eight thousand five hundred twenty-three'); INSERT INTO t2 VALUES(845, 68301, 'sixty-eight thousand three hundred one'); INSERT INTO t2 VALUES(846, 9328, 'nine thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(847, 25488, 'twenty-five thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(848, 2392, 'two thousand three hundred ninety-two'); INSERT INTO t2 VALUES(849, 10572, 'ten thousand five hundred seventy-two'); INSERT INTO t2 VALUES(850, 93297, 'ninety-three thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(851, 31561, 'thirty-one thousand five hundred sixty-one'); INSERT INTO t2 VALUES(852, 48403, 'forty-eight thousand four hundred three'); INSERT INTO t2 VALUES(853, 43405, 'forty-three thousand four hundred five'); INSERT INTO t2 VALUES(854, 52536, 'fifty-two thousand five hundred thirty-six'); INSERT INTO t2 VALUES(855, 99828, 'ninety-nine thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(856, 43458, 'forty-three thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(857, 10517, 'ten thousand five hundred seventeen'); INSERT INTO t2 VALUES(858, 38607, 'thirty-eight thousand six hundred seven'); INSERT INTO t2 VALUES(859, 81719, 'eighty-one thousand seven hundred nineteen'); INSERT INTO t2 VALUES(860, 95780, 'ninety-five thousand seven hundred eighty'); INSERT INTO t2 VALUES(861, 1119, 'one thousand one hundred nineteen'); INSERT INTO t2 VALUES(862, 42558, 'forty-two thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(863, 43669, 'forty-three thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(864, 89209, 'eighty-nine thousand two hundred nine'); INSERT INTO t2 VALUES(865, 33358, 'thirty-three thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(866, 59069, 'fifty-nine thousand sixty-nine'); INSERT INTO t2 VALUES(867, 13210, 'thirteen thousand two hundred ten'); INSERT INTO t2 VALUES(868, 72938, 'seventy-two thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(869, 99845, 'ninety-nine thousand eight hundred forty-five'); INSERT INTO t2 VALUES(870, 92956, 'ninety-two thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(871, 54213, 'fifty-four thousand two hundred thirteen'); INSERT INTO t2 VALUES(872, 9395, 'nine thousand three hundred ninety-five'); INSERT INTO t2 VALUES(873, 80128, 'eighty thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(874, 57995, 'fifty-seven thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(875, 6483, 'six thousand four hundred eighty-three'); INSERT INTO t2 VALUES(876, 3506, 'three thousand five hundred six'); INSERT INTO t2 VALUES(877, 1641, 'one thousand six hundred forty-one'); INSERT INTO t2 VALUES(878, 13790, 'thirteen thousand seven hundred ninety'); INSERT INTO t2 VALUES(879, 18154, 'eighteen thousand one hundred fifty-four'); INSERT INTO t2 VALUES(880, 24625, 'twenty-four thousand six hundred twenty-five'); INSERT INTO t2 VALUES(881, 5708, 'five thousand seven hundred eight'); INSERT INTO t2 VALUES(882, 1038, 'one thousand thirty-eight'); INSERT INTO t2 VALUES(883, 33150, 'thirty-three thousand one hundred fifty'); INSERT INTO t2 VALUES(884, 43327, 'forty-three thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(885, 53736, 'fifty-three thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(886, 24084, 'twenty-four thousand eighty-four'); INSERT INTO t2 VALUES(887, 23309, 'twenty-three thousand three hundred nine'); INSERT INTO t2 VALUES(888, 85039, 'eighty-five thousand thirty-nine'); INSERT INTO t2 VALUES(889, 18294, 'eighteen thousand two hundred ninety-four'); INSERT INTO t2 VALUES(890, 79266, 'seventy-nine thousand two hundred sixty-six'); INSERT INTO t2 VALUES(891, 14951, 'fourteen thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(892, 99565, 'ninety-nine thousand five hundred sixty-five'); INSERT INTO t2 VALUES(893, 45968, 'forty-five thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(894, 65624, 'sixty-five thousand six hundred twenty-four'); INSERT INTO t2 VALUES(895, 89551, 'eighty-nine thousand five hundred fifty-one'); INSERT INTO t2 VALUES(896, 25780, 'twenty-five thousand seven hundred eighty'); INSERT INTO t2 VALUES(897, 39132, 'thirty-nine thousand one hundred thirty-two'); INSERT INTO t2 VALUES(898, 82475, 'eighty-two thousand four hundred seventy-five'); INSERT INTO t2 VALUES(899, 44023, 'forty-four thousand twenty-three'); INSERT INTO t2 VALUES(900, 79229, 'seventy-nine thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(901, 36320, 'thirty-six thousand three hundred twenty'); INSERT INTO t2 VALUES(902, 99536, 'ninety-nine thousand five hundred thirty-six'); INSERT INTO t2 VALUES(903, 92326, 'ninety-two thousand three hundred twenty-six'); INSERT INTO t2 VALUES(904, 53945, 'fifty-three thousand nine hundred forty-five'); INSERT INTO t2 VALUES(905, 84917, 'eighty-four thousand nine hundred seventeen'); INSERT INTO t2 VALUES(906, 53411, 'fifty-three thousand four hundred eleven'); INSERT INTO t2 VALUES(907, 67719, 'sixty-seven thousand seven hundred nineteen'); INSERT INTO t2 VALUES(908, 72065, 'seventy-two thousand sixty-five'); INSERT INTO t2 VALUES(909, 6847, 'six thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(910, 48807, 'forty-eight thousand eight hundred seven'); INSERT INTO t2 VALUES(911, 478, 'four hundred seventy-eight'); INSERT INTO t2 VALUES(912, 90285, 'ninety thousand two hundred eighty-five'); INSERT INTO t2 VALUES(913, 60170, 'sixty thousand one hundred seventy'); INSERT INTO t2 VALUES(914, 64492, 'sixty-four thousand four hundred ninety-two'); INSERT INTO t2 VALUES(915, 21371, 'twenty-one thousand three hundred seventy-one'); INSERT INTO t2 VALUES(916, 77422, 'seventy-seven thousand four hundred twenty-two'); INSERT INTO t2 VALUES(917, 62537, 'sixty-two thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(918, 82323, 'eighty-two thousand three hundred twenty-three'); INSERT INTO t2 VALUES(919, 79842, 'seventy-nine thousand eight hundred forty-two'); INSERT INTO t2 VALUES(920, 84346, 'eighty-four thousand three hundred forty-six'); INSERT INTO t2 VALUES(921, 43102, 'forty-three thousand one hundred two'); INSERT INTO t2 VALUES(922, 88617, 'eighty-eight thousand six hundred seventeen'); INSERT INTO t2 VALUES(923, 53762, 'fifty-three thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(924, 46121, 'forty-six thousand one hundred twenty-one'); INSERT INTO t2 VALUES(925, 41029, 'forty-one thousand twenty-nine'); INSERT INTO t2 VALUES(926, 39186, 'thirty-nine thousand one hundred eighty-six'); INSERT INTO t2 VALUES(927, 50573, 'fifty thousand five hundred seventy-three'); INSERT INTO t2 VALUES(928, 13263, 'thirteen thousand two hundred sixty-three'); INSERT INTO t2 VALUES(929, 2703, 'two thousand seven hundred three'); INSERT INTO t2 VALUES(930, 34926, 'thirty-four thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(931, 46293, 'forty-six thousand two hundred ninety-three'); INSERT INTO t2 VALUES(932, 64806, 'sixty-four thousand eight hundred six'); INSERT INTO t2 VALUES(933, 97369, 'ninety-seven thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(934, 61719, 'sixty-one thousand seven hundred nineteen'); INSERT INTO t2 VALUES(935, 6760, 'six thousand seven hundred sixty'); INSERT INTO t2 VALUES(936, 77065, 'seventy-seven thousand sixty-five'); INSERT INTO t2 VALUES(937, 32514, 'thirty-two thousand five hundred fourteen'); INSERT INTO t2 VALUES(938, 33417, 'thirty-three thousand four hundred seventeen'); INSERT INTO t2 VALUES(939, 59607, 'fifty-nine thousand six hundred seven'); INSERT INTO t2 VALUES(940, 26987, 'twenty-six thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(941, 78753, 'seventy-eight thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(942, 15316, 'fifteen thousand three hundred sixteen'); INSERT INTO t2 VALUES(943, 27249, 'twenty-seven thousand two hundred forty-nine'); INSERT INTO t2 VALUES(944, 33011, 'thirty-three thousand eleven'); INSERT INTO t2 VALUES(945, 30349, 'thirty thousand three hundred forty-nine'); INSERT INTO t2 VALUES(946, 16474, 'sixteen thousand four hundred seventy-four'); INSERT INTO t2 VALUES(947, 91550, 'ninety-one thousand five hundred fifty'); INSERT INTO t2 VALUES(948, 7229, 'seven thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(949, 55591, 'fifty-five thousand five hundred ninety-one'); INSERT INTO t2 VALUES(950, 6494, 'six thousand four hundred ninety-four'); INSERT INTO t2 VALUES(951, 61726, 'sixty-one thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(952, 43401, 'forty-three thousand four hundred one'); INSERT INTO t2 VALUES(953, 35417, 'thirty-five thousand four hundred seventeen'); INSERT INTO t2 VALUES(954, 81064, 'eighty-one thousand sixty-four'); INSERT INTO t2 VALUES(955, 98029, 'ninety-eight thousand twenty-nine'); INSERT INTO t2 VALUES(956, 99459, 'ninety-nine thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(957, 47659, 'forty-seven thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(958, 90562, 'ninety thousand five hundred sixty-two'); INSERT INTO t2 VALUES(959, 98996, 'ninety-eight thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(960, 36814, 'thirty-six thousand eight hundred fourteen'); INSERT INTO t2 VALUES(961, 41743, 'forty-one thousand seven hundred forty-three'); INSERT INTO t2 VALUES(962, 49352, 'forty-nine thousand three hundred fifty-two'); INSERT INTO t2 VALUES(963, 2867, 'two thousand eight hundred sixty-seven'); INSERT INTO t2 VALUES(964, 77404, 'seventy-seven thousand four hundred four'); INSERT INTO t2 VALUES(965, 52039, 'fifty-two thousand thirty-nine'); INSERT INTO t2 VALUES(966, 50787, 'fifty thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(967, 72745, 'seventy-two thousand seven hundred forty-five'); INSERT INTO t2 VALUES(968, 38373, 'thirty-eight thousand three hundred seventy-three'); INSERT INTO t2 VALUES(969, 9880, 'nine thousand eight hundred eighty'); INSERT INTO t2 VALUES(970, 23368, 'twenty-three thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(971, 21878, 'twenty-one thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(972, 24879, 'twenty-four thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(973, 85139, 'eighty-five thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(974, 92663, 'ninety-two thousand six hundred sixty-three'); INSERT INTO t2 VALUES(975, 80314, 'eighty thousand three hundred fourteen'); INSERT INTO t2 VALUES(976, 68791, 'sixty-eight thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(977, 86587, 'eighty-six thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(978, 84276, 'eighty-four thousand two hundred seventy-six'); INSERT INTO t2 VALUES(979, 2611, 'two thousand six hundred eleven'); INSERT INTO t2 VALUES(980, 51394, 'fifty-one thousand three hundred ninety-four'); INSERT INTO t2 VALUES(981, 41718, 'forty-one thousand seven hundred eighteen'); INSERT INTO t2 VALUES(982, 74790, 'seventy-four thousand seven hundred ninety'); INSERT INTO t2 VALUES(983, 3722, 'three thousand seven hundred twenty-two'); INSERT INTO t2 VALUES(984, 51099, 'fifty-one thousand ninety-nine'); INSERT INTO t2 VALUES(985, 43465, 'forty-three thousand four hundred sixty-five'); INSERT INTO t2 VALUES(986, 80609, 'eighty thousand six hundred nine'); INSERT INTO t2 VALUES(987, 10740, 'ten thousand seven hundred forty'); INSERT INTO t2 VALUES(988, 46965, 'forty-six thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(989, 69448, 'sixty-nine thousand four hundred forty-eight'); INSERT INTO t2 VALUES(990, 7629, 'seven thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(991, 32001, 'thirty-two thousand one'); INSERT INTO t2 VALUES(992, 97403, 'ninety-seven thousand four hundred three'); INSERT INTO t2 VALUES(993, 38424, 'thirty-eight thousand four hundred twenty-four'); INSERT INTO t2 VALUES(994, 91197, 'ninety-one thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(995, 18954, 'eighteen thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(996, 63716, 'sixty-three thousand seven hundred sixteen'); INSERT INTO t2 VALUES(997, 47127, 'forty-seven thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(998, 35979, 'thirty-five thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(999, 73385, 'seventy-three thousand three hundred eighty-five'); INSERT INTO t2 VALUES(1000, 22356, 'twenty-two thousand three hundred fifty-six'); INSERT INTO t2 VALUES(1001, 55538, 'fifty-five thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(1002, 81376, 'eighty-one thousand three hundred seventy-six'); INSERT INTO t2 VALUES(1003, 86313, 'eighty-six thousand three hundred thirteen'); INSERT INTO t2 VALUES(1004, 49542, 'forty-nine thousand five hundred forty-two'); INSERT INTO t2 VALUES(1005, 74987, 'seventy-four thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(1006, 80722, 'eighty thousand seven hundred twenty-two'); INSERT INTO t2 VALUES(1007, 62298, 'sixty-two thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(1008, 93119, 'ninety-three thousand one hundred nineteen'); INSERT INTO t2 VALUES(1009, 37378, 'thirty-seven thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(1010, 80392, 'eighty thousand three hundred ninety-two'); INSERT INTO t2 VALUES(1011, 47524, 'forty-seven thousand five hundred twenty-four'); INSERT INTO t2 VALUES(1012, 68714, 'sixty-eight thousand seven hundred fourteen'); INSERT INTO t2 VALUES(1013, 95384, 'ninety-five thousand three hundred eighty-four'); INSERT INTO t2 VALUES(1014, 79821, 'seventy-nine thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(1015, 65915, 'sixty-five thousand nine hundred fifteen'); INSERT INTO t2 VALUES(1016, 89567, 'eighty-nine thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(1017, 6173, 'six thousand one hundred seventy-three'); INSERT INTO t2 VALUES(1018, 78190, 'seventy-eight thousand one hundred ninety'); INSERT INTO t2 VALUES(1019, 49620, 'forty-nine thousand six hundred twenty'); INSERT INTO t2 VALUES(1020, 314, 'three hundred fourteen'); INSERT INTO t2 VALUES(1021, 77071, 'seventy-seven thousand seventy-one'); INSERT INTO t2 VALUES(1022, 34897, 'thirty-four thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(1023, 50194, 'fifty thousand one hundred ninety-four'); INSERT INTO t2 VALUES(1024, 3962, 'three thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(1025, 12995, 'twelve thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(1026, 16574, 'sixteen thousand five hundred seventy-four'); INSERT INTO t2 VALUES(1027, 13011, 'thirteen thousand eleven'); INSERT INTO t2 VALUES(1028, 26129, 'twenty-six thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(1029, 25946, 'twenty-five thousand nine hundred forty-six'); INSERT INTO t2 VALUES(1030, 48646, 'forty-eight thousand six hundred forty-six'); INSERT INTO t2 VALUES(1031, 12877, 'twelve thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(1032, 54792, 'fifty-four thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(1033, 16323, 'sixteen thousand three hundred twenty-three'); INSERT INTO t2 VALUES(1034, 96597, 'ninety-six thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(1035, 12817, 'twelve thousand eight hundred seventeen'); INSERT INTO t2 VALUES(1036, 17757, 'seventeen thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(1037, 20670, 'twenty thousand six hundred seventy'); INSERT INTO t2 VALUES(1038, 43032, 'forty-three thousand thirty-two'); INSERT INTO t2 VALUES(1039, 20753, 'twenty thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(1040, 34704, 'thirty-four thousand seven hundred four'); INSERT INTO t2 VALUES(1041, 59068, 'fifty-nine thousand sixty-eight'); INSERT INTO t2 VALUES(1042, 92839, 'ninety-two thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(1043, 63337, 'sixty-three thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(1044, 13702, 'thirteen thousand seven hundred two'); INSERT INTO t2 VALUES(1045, 8161, 'eight thousand one hundred sixty-one'); INSERT INTO t2 VALUES(1046, 36141, 'thirty-six thousand one hundred forty-one'); INSERT INTO t2 VALUES(1047, 74493, 'seventy-four thousand four hundred ninety-three'); INSERT INTO t2 VALUES(1048, 93265, 'ninety-three thousand two hundred sixty-five'); INSERT INTO t2 VALUES(1049, 40870, 'forty thousand eight hundred seventy'); INSERT INTO t2 VALUES(1050, 90720, 'ninety thousand seven hundred twenty'); INSERT INTO t2 VALUES(1051, 37822, 'thirty-seven thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(1052, 37372, 'thirty-seven thousand three hundred seventy-two'); INSERT INTO t2 VALUES(1053, 83340, 'eighty-three thousand three hundred forty'); INSERT INTO t2 VALUES(1054, 65993, 'sixty-five thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(1055, 63063, 'sixty-three thousand sixty-three'); INSERT INTO t2 VALUES(1056, 96964, 'ninety-six thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(1057, 12363, 'twelve thousand three hundred sixty-three'); INSERT INTO t2 VALUES(1058, 76130, 'seventy-six thousand one hundred thirty'); INSERT INTO t2 VALUES(1059, 74871, 'seventy-four thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(1060, 72127, 'seventy-two thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(1061, 58419, 'fifty-eight thousand four hundred nineteen'); INSERT INTO t2 VALUES(1062, 55160, 'fifty-five thousand one hundred sixty'); INSERT INTO t2 VALUES(1063, 12066, 'twelve thousand sixty-six'); INSERT INTO t2 VALUES(1064, 60646, 'sixty thousand six hundred forty-six'); INSERT INTO t2 VALUES(1065, 38295, 'thirty-eight thousand two hundred ninety-five'); INSERT INTO t2 VALUES(1066, 89409, 'eighty-nine thousand four hundred nine'); INSERT INTO t2 VALUES(1067, 65373, 'sixty-five thousand three hundred seventy-three'); INSERT INTO t2 VALUES(1068, 30345, 'thirty thousand three hundred forty-five'); INSERT INTO t2 VALUES(1069, 2527, 'two thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(1070, 19833, 'nineteen thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(1071, 22166, 'twenty-two thousand one hundred sixty-six'); INSERT INTO t2 VALUES(1072, 45403, 'forty-five thousand four hundred three'); INSERT INTO t2 VALUES(1073, 13171, 'thirteen thousand one hundred seventy-one'); INSERT INTO t2 VALUES(1074, 36873, 'thirty-six thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(1075, 50278, 'fifty thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(1076, 61903, 'sixty-one thousand nine hundred three'); INSERT INTO t2 VALUES(1077, 9080, 'nine thousand eighty'); INSERT INTO t2 VALUES(1078, 27901, 'twenty-seven thousand nine hundred one'); INSERT INTO t2 VALUES(1079, 49117, 'forty-nine thousand one hundred seventeen'); INSERT INTO t2 VALUES(1080, 22201, 'twenty-two thousand two hundred one'); INSERT INTO t2 VALUES(1081, 32329, 'thirty-two thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(1082, 54240, 'fifty-four thousand two hundred forty'); INSERT INTO t2 VALUES(1083, 86819, 'eighty-six thousand eight hundred nineteen'); INSERT INTO t2 VALUES(1084, 46365, 'forty-six thousand three hundred sixty-five'); INSERT INTO t2 VALUES(1085, 78771, 'seventy-eight thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(1086, 17448, 'seventeen thousand four hundred forty-eight'); INSERT INTO t2 VALUES(1087, 31391, 'thirty-one thousand three hundred ninety-one'); INSERT INTO t2 VALUES(1088, 29459, 'twenty-nine thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(1089, 71702, 'seventy-one thousand seven hundred two'); INSERT INTO t2 VALUES(1090, 61800, 'sixty-one thousand eight hundred'); INSERT INTO t2 VALUES(1091, 63785, 'sixty-three thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(1092, 77760, 'seventy-seven thousand seven hundred sixty'); INSERT INTO t2 VALUES(1093, 41542, 'forty-one thousand five hundred forty-two'); INSERT INTO t2 VALUES(1094, 90620, 'ninety thousand six hundred twenty'); INSERT INTO t2 VALUES(1095, 28478, 'twenty-eight thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(1096, 91651, 'ninety-one thousand six hundred fifty-one'); INSERT INTO t2 VALUES(1097, 65602, 'sixty-five thousand six hundred two'); INSERT INTO t2 VALUES(1098, 78515, 'seventy-eight thousand five hundred fifteen'); INSERT INTO t2 VALUES(1099, 88720, 'eighty-eight thousand seven hundred twenty'); INSERT INTO t2 VALUES(1100, 28984, 'twenty-eight thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(1101, 1688, 'one thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(1102, 12137, 'twelve thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(1103, 5562, 'five thousand five hundred sixty-two'); INSERT INTO t2 VALUES(1104, 79483, 'seventy-nine thousand four hundred eighty-three'); INSERT INTO t2 VALUES(1105, 82573, 'eighty-two thousand five hundred seventy-three'); INSERT INTO t2 VALUES(1106, 9763, 'nine thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(1107, 32211, 'thirty-two thousand two hundred eleven'); INSERT INTO t2 VALUES(1108, 4207, 'four thousand two hundred seven'); INSERT INTO t2 VALUES(1109, 81396, 'eighty-one thousand three hundred ninety-six'); INSERT INTO t2 VALUES(1110, 43204, 'forty-three thousand two hundred four'); INSERT INTO t2 VALUES(1111, 44071, 'forty-four thousand seventy-one'); INSERT INTO t2 VALUES(1112, 43680, 'forty-three thousand six hundred eighty'); INSERT INTO t2 VALUES(1113, 17553, 'seventeen thousand five hundred fifty-three'); INSERT INTO t2 VALUES(1114, 8265, 'eight thousand two hundred sixty-five'); INSERT INTO t2 VALUES(1115, 77411, 'seventy-seven thousand four hundred eleven'); INSERT INTO t2 VALUES(1116, 40530, 'forty thousand five hundred thirty'); INSERT INTO t2 VALUES(1117, 38298, 'thirty-eight thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(1118, 77618, 'seventy-seven thousand six hundred eighteen'); INSERT INTO t2 VALUES(1119, 78116, 'seventy-eight thousand one hundred sixteen'); INSERT INTO t2 VALUES(1120, 71376, 'seventy-one thousand three hundred seventy-six'); INSERT INTO t2 VALUES(1121, 24103, 'twenty-four thousand one hundred three'); INSERT INTO t2 VALUES(1122, 54423, 'fifty-four thousand four hundred twenty-three'); INSERT INTO t2 VALUES(1123, 68801, 'sixty-eight thousand eight hundred one'); INSERT INTO t2 VALUES(1124, 15256, 'fifteen thousand two hundred fifty-six'); INSERT INTO t2 VALUES(1125, 20268, 'twenty thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(1126, 16855, 'sixteen thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(1127, 70035, 'seventy thousand thirty-five'); INSERT INTO t2 VALUES(1128, 89172, 'eighty-nine thousand one hundred seventy-two'); INSERT INTO t2 VALUES(1129, 98060, 'ninety-eight thousand sixty'); INSERT INTO t2 VALUES(1130, 54557, 'fifty-four thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(1131, 68504, 'sixty-eight thousand five hundred four'); INSERT INTO t2 VALUES(1132, 55531, 'fifty-five thousand five hundred thirty-one'); INSERT INTO t2 VALUES(1133, 50161, 'fifty thousand one hundred sixty-one'); INSERT INTO t2 VALUES(1134, 97767, 'ninety-seven thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(1135, 35200, 'thirty-five thousand two hundred'); INSERT INTO t2 VALUES(1136, 43320, 'forty-three thousand three hundred twenty'); INSERT INTO t2 VALUES(1137, 49341, 'forty-nine thousand three hundred forty-one'); INSERT INTO t2 VALUES(1138, 97800, 'ninety-seven thousand eight hundred'); INSERT INTO t2 VALUES(1139, 12026, 'twelve thousand twenty-six'); INSERT INTO t2 VALUES(1140, 40365, 'forty thousand three hundred sixty-five'); INSERT INTO t2 VALUES(1141, 78130, 'seventy-eight thousand one hundred thirty'); INSERT INTO t2 VALUES(1142, 71407, 'seventy-one thousand four hundred seven'); INSERT INTO t2 VALUES(1143, 88110, 'eighty-eight thousand one hundred ten'); INSERT INTO t2 VALUES(1144, 70075, 'seventy thousand seventy-five'); INSERT INTO t2 VALUES(1145, 39803, 'thirty-nine thousand eight hundred three'); INSERT INTO t2 VALUES(1146, 36025, 'thirty-six thousand twenty-five'); INSERT INTO t2 VALUES(1147, 95120, 'ninety-five thousand one hundred twenty'); INSERT INTO t2 VALUES(1148, 61068, 'sixty-one thousand sixty-eight'); INSERT INTO t2 VALUES(1149, 96036, 'ninety-six thousand thirty-six'); INSERT INTO t2 VALUES(1150, 63963, 'sixty-three thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(1151, 94898, 'ninety-four thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(1152, 49063, 'forty-nine thousand sixty-three'); INSERT INTO t2 VALUES(1153, 33733, 'thirty-three thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(1154, 584, 'five hundred eighty-four'); INSERT INTO t2 VALUES(1155, 6973, 'six thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(1156, 70539, 'seventy thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(1157, 56452, 'fifty-six thousand four hundred fifty-two'); INSERT INTO t2 VALUES(1158, 5590, 'five thousand five hundred ninety'); INSERT INTO t2 VALUES(1159, 15730, 'fifteen thousand seven hundred thirty'); INSERT INTO t2 VALUES(1160, 77308, 'seventy-seven thousand three hundred eight'); INSERT INTO t2 VALUES(1161, 86753, 'eighty-six thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(1162, 38210, 'thirty-eight thousand two hundred ten'); INSERT INTO t2 VALUES(1163, 77635, 'seventy-seven thousand six hundred thirty-five'); INSERT INTO t2 VALUES(1164, 14535, 'fourteen thousand five hundred thirty-five'); INSERT INTO t2 VALUES(1165, 68957, 'sixty-eight thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(1166, 19623, 'nineteen thousand six hundred twenty-three'); INSERT INTO t2 VALUES(1167, 5643, 'five thousand six hundred forty-three'); INSERT INTO t2 VALUES(1168, 77798, 'seventy-seven thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(1169, 69501, 'sixty-nine thousand five hundred one'); INSERT INTO t2 VALUES(1170, 61192, 'sixty-one thousand one hundred ninety-two'); INSERT INTO t2 VALUES(1171, 83736, 'eighty-three thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(1172, 82633, 'eighty-two thousand six hundred thirty-three'); INSERT INTO t2 VALUES(1173, 50539, 'fifty thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(1174, 87416, 'eighty-seven thousand four hundred sixteen'); INSERT INTO t2 VALUES(1175, 56737, 'fifty-six thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(1176, 33997, 'thirty-three thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(1177, 37921, 'thirty-seven thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(1178, 10244, 'ten thousand two hundred forty-four'); INSERT INTO t2 VALUES(1179, 9407, 'nine thousand four hundred seven'); INSERT INTO t2 VALUES(1180, 70784, 'seventy thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(1181, 47705, 'forty-seven thousand seven hundred five'); INSERT INTO t2 VALUES(1182, 20852, 'twenty thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(1183, 78176, 'seventy-eight thousand one hundred seventy-six'); INSERT INTO t2 VALUES(1184, 32410, 'thirty-two thousand four hundred ten'); INSERT INTO t2 VALUES(1185, 39737, 'thirty-nine thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(1186, 5142, 'five thousand one hundred forty-two'); INSERT INTO t2 VALUES(1187, 35867, 'thirty-five thousand eight hundred sixty-seven'); INSERT INTO t2 VALUES(1188, 52773, 'fifty-two thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(1189, 29699, 'twenty-nine thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(1190, 38185, 'thirty-eight thousand one hundred eighty-five'); INSERT INTO t2 VALUES(1191, 17648, 'seventeen thousand six hundred forty-eight'); INSERT INTO t2 VALUES(1192, 31242, 'thirty-one thousand two hundred forty-two'); INSERT INTO t2 VALUES(1193, 61161, 'sixty-one thousand one hundred sixty-one'); INSERT INTO t2 VALUES(1194, 1135, 'one thousand one hundred thirty-five'); INSERT INTO t2 VALUES(1195, 61402, 'sixty-one thousand four hundred two'); INSERT INTO t2 VALUES(1196, 44607, 'forty-four thousand six hundred seven'); INSERT INTO t2 VALUES(1197, 66253, 'sixty-six thousand two hundred fifty-three'); INSERT INTO t2 VALUES(1198, 53684, 'fifty-three thousand six hundred eighty-four'); INSERT INTO t2 VALUES(1199, 81819, 'eighty-one thousand eight hundred nineteen'); INSERT INTO t2 VALUES(1200, 56896, 'fifty-six thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(1201, 24164, 'twenty-four thousand one hundred sixty-four'); INSERT INTO t2 VALUES(1202, 15088, 'fifteen thousand eighty-eight'); INSERT INTO t2 VALUES(1203, 52962, 'fifty-two thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(1204, 200, 'two hundred'); INSERT INTO t2 VALUES(1205, 26958, 'twenty-six thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(1206, 91112, 'ninety-one thousand one hundred twelve'); INSERT INTO t2 VALUES(1207, 48779, 'forty-eight thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(1208, 55622, 'fifty-five thousand six hundred twenty-two'); INSERT INTO t2 VALUES(1209, 34562, 'thirty-four thousand five hundred sixty-two'); INSERT INTO t2 VALUES(1210, 88798, 'eighty-eight thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(1211, 84915, 'eighty-four thousand nine hundred fifteen'); INSERT INTO t2 VALUES(1212, 33609, 'thirty-three thousand six hundred nine'); INSERT INTO t2 VALUES(1213, 37211, 'thirty-seven thousand two hundred eleven'); INSERT INTO t2 VALUES(1214, 55843, 'fifty-five thousand eight hundred forty-three'); INSERT INTO t2 VALUES(1215, 53764, 'fifty-three thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(1216, 88733, 'eighty-eight thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(1217, 5799, 'five thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(1218, 92517, 'ninety-two thousand five hundred seventeen'); INSERT INTO t2 VALUES(1219, 91708, 'ninety-one thousand seven hundred eight'); INSERT INTO t2 VALUES(1220, 19304, 'nineteen thousand three hundred four'); INSERT INTO t2 VALUES(1221, 5130, 'five thousand one hundred thirty'); INSERT INTO t2 VALUES(1222, 20649, 'twenty thousand six hundred forty-nine'); INSERT INTO t2 VALUES(1223, 56010, 'fifty-six thousand ten'); INSERT INTO t2 VALUES(1224, 61798, 'sixty-one thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(1225, 65913, 'sixty-five thousand nine hundred thirteen'); INSERT INTO t2 VALUES(1226, 81863, 'eighty-one thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(1227, 43903, 'forty-three thousand nine hundred three'); INSERT INTO t2 VALUES(1228, 2201, 'two thousand two hundred one'); INSERT INTO t2 VALUES(1229, 74772, 'seventy-four thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(1230, 60641, 'sixty thousand six hundred forty-one'); INSERT INTO t2 VALUES(1231, 59217, 'fifty-nine thousand two hundred seventeen'); INSERT INTO t2 VALUES(1232, 47443, 'forty-seven thousand four hundred forty-three'); INSERT INTO t2 VALUES(1233, 62292, 'sixty-two thousand two hundred ninety-two'); INSERT INTO t2 VALUES(1234, 51084, 'fifty-one thousand eighty-four'); INSERT INTO t2 VALUES(1235, 34890, 'thirty-four thousand eight hundred ninety'); INSERT INTO t2 VALUES(1236, 66948, 'sixty-six thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(1237, 7314, 'seven thousand three hundred fourteen'); INSERT INTO t2 VALUES(1238, 7328, 'seven thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(1239, 50586, 'fifty thousand five hundred eighty-six'); INSERT INTO t2 VALUES(1240, 81060, 'eighty-one thousand sixty'); INSERT INTO t2 VALUES(1241, 11213, 'eleven thousand two hundred thirteen'); INSERT INTO t2 VALUES(1242, 80152, 'eighty thousand one hundred fifty-two'); INSERT INTO t2 VALUES(1243, 89587, 'eighty-nine thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(1244, 83826, 'eighty-three thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(1245, 64098, 'sixty-four thousand ninety-eight'); INSERT INTO t2 VALUES(1246, 77926, 'seventy-seven thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(1247, 47897, 'forty-seven thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(1248, 98123, 'ninety-eight thousand one hundred twenty-three'); INSERT INTO t2 VALUES(1249, 33848, 'thirty-three thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(1250, 35650, 'thirty-five thousand six hundred fifty'); INSERT INTO t2 VALUES(1251, 3746, 'three thousand seven hundred forty-six'); INSERT INTO t2 VALUES(1252, 23209, 'twenty-three thousand two hundred nine'); INSERT INTO t2 VALUES(1253, 92159, 'ninety-two thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(1254, 16517, 'sixteen thousand five hundred seventeen'); INSERT INTO t2 VALUES(1255, 51307, 'fifty-one thousand three hundred seven'); INSERT INTO t2 VALUES(1256, 52257, 'fifty-two thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(1257, 35091, 'thirty-five thousand ninety-one'); INSERT INTO t2 VALUES(1258, 75176, 'seventy-five thousand one hundred seventy-six'); INSERT INTO t2 VALUES(1259, 13954, 'thirteen thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(1260, 25101, 'twenty-five thousand one hundred one'); INSERT INTO t2 VALUES(1261, 36297, 'thirty-six thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(1262, 6364, 'six thousand three hundred sixty-four'); INSERT INTO t2 VALUES(1263, 2388, 'two thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(1264, 30295, 'thirty thousand two hundred ninety-five'); INSERT INTO t2 VALUES(1265, 42865, 'forty-two thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(1266, 9279, 'nine thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(1267, 60930, 'sixty thousand nine hundred thirty'); INSERT INTO t2 VALUES(1268, 36524, 'thirty-six thousand five hundred twenty-four'); INSERT INTO t2 VALUES(1269, 24362, 'twenty-four thousand three hundred sixty-two'); INSERT INTO t2 VALUES(1270, 17401, 'seventeen thousand four hundred one'); INSERT INTO t2 VALUES(1271, 71411, 'seventy-one thousand four hundred eleven'); INSERT INTO t2 VALUES(1272, 31655, 'thirty-one thousand six hundred fifty-five'); INSERT INTO t2 VALUES(1273, 5122, 'five thousand one hundred twenty-two'); INSERT INTO t2 VALUES(1274, 52284, 'fifty-two thousand two hundred eighty-four'); INSERT INTO t2 VALUES(1275, 19329, 'nineteen thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(1276, 13660, 'thirteen thousand six hundred sixty'); INSERT INTO t2 VALUES(1277, 1131, 'one thousand one hundred thirty-one'); INSERT INTO t2 VALUES(1278, 25081, 'twenty-five thousand eighty-one'); INSERT INTO t2 VALUES(1279, 55153, 'fifty-five thousand one hundred fifty-three'); INSERT INTO t2 VALUES(1280, 8973, 'eight thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(1281, 58069, 'fifty-eight thousand sixty-nine'); INSERT INTO t2 VALUES(1282, 79100, 'seventy-nine thousand one hundred'); INSERT INTO t2 VALUES(1283, 48768, 'forty-eight thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(1284, 60150, 'sixty thousand one hundred fifty'); INSERT INTO t2 VALUES(1285, 66552, 'sixty-six thousand five hundred fifty-two'); INSERT INTO t2 VALUES(1286, 23579, 'twenty-three thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(1287, 18058, 'eighteen thousand fifty-eight'); INSERT INTO t2 VALUES(1288, 61810, 'sixty-one thousand eight hundred ten'); INSERT INTO t2 VALUES(1289, 75622, 'seventy-five thousand six hundred twenty-two'); INSERT INTO t2 VALUES(1290, 5557, 'five thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(1291, 90854, 'ninety thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(1292, 87039, 'eighty-seven thousand thirty-nine'); INSERT INTO t2 VALUES(1293, 8757, 'eight thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(1294, 76493, 'seventy-six thousand four hundred ninety-three'); INSERT INTO t2 VALUES(1295, 33508, 'thirty-three thousand five hundred eight'); INSERT INTO t2 VALUES(1296, 15425, 'fifteen thousand four hundred twenty-five'); INSERT INTO t2 VALUES(1297, 10447, 'ten thousand four hundred forty-seven'); INSERT INTO t2 VALUES(1298, 93718, 'ninety-three thousand seven hundred eighteen'); INSERT INTO t2 VALUES(1299, 60922, 'sixty thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(1300, 11712, 'eleven thousand seven hundred twelve'); INSERT INTO t2 VALUES(1301, 56828, 'fifty-six thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(1302, 91211, 'ninety-one thousand two hundred eleven'); INSERT INTO t2 VALUES(1303, 3637, 'three thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(1304, 8958, 'eight thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(1305, 88592, 'eighty-eight thousand five hundred ninety-two'); INSERT INTO t2 VALUES(1306, 7217, 'seven thousand two hundred seventeen'); INSERT INTO t2 VALUES(1307, 58735, 'fifty-eight thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(1308, 95778, 'ninety-five thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(1309, 48851, 'forty-eight thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(1310, 69104, 'sixty-nine thousand one hundred four'); INSERT INTO t2 VALUES(1311, 41151, 'forty-one thousand one hundred fifty-one'); INSERT INTO t2 VALUES(1312, 92769, 'ninety-two thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(1313, 23517, 'twenty-three thousand five hundred seventeen'); INSERT INTO t2 VALUES(1314, 3893, 'three thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(1315, 60575, 'sixty thousand five hundred seventy-five'); INSERT INTO t2 VALUES(1316, 7296, 'seven thousand two hundred ninety-six'); INSERT INTO t2 VALUES(1317, 70279, 'seventy thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(1318, 49134, 'forty-nine thousand one hundred thirty-four'); INSERT INTO t2 VALUES(1319, 72590, 'seventy-two thousand five hundred ninety'); INSERT INTO t2 VALUES(1320, 81718, 'eighty-one thousand seven hundred eighteen'); INSERT INTO t2 VALUES(1321, 94520, 'ninety-four thousand five hundred twenty'); INSERT INTO t2 VALUES(1322, 90116, 'ninety thousand one hundred sixteen'); INSERT INTO t2 VALUES(1323, 21056, 'twenty-one thousand fifty-six'); INSERT INTO t2 VALUES(1324, 97610, 'ninety-seven thousand six hundred ten'); INSERT INTO t2 VALUES(1325, 2826, 'two thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(1326, 14063, 'fourteen thousand sixty-three'); INSERT INTO t2 VALUES(1327, 6031, 'six thousand thirty-one'); INSERT INTO t2 VALUES(1328, 65228, 'sixty-five thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(1329, 83287, 'eighty-three thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(1330, 11688, 'eleven thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(1331, 75854, 'seventy-five thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(1332, 4682, 'four thousand six hundred eighty-two'); INSERT INTO t2 VALUES(1333, 26055, 'twenty-six thousand fifty-five'); INSERT INTO t2 VALUES(1334, 73188, 'seventy-three thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(1335, 92308, 'ninety-two thousand three hundred eight'); INSERT INTO t2 VALUES(1336, 21226, 'twenty-one thousand two hundred twenty-six'); INSERT INTO t2 VALUES(1337, 67369, 'sixty-seven thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(1338, 59051, 'fifty-nine thousand fifty-one'); INSERT INTO t2 VALUES(1339, 69586, 'sixty-nine thousand five hundred eighty-six'); INSERT INTO t2 VALUES(1340, 74749, 'seventy-four thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(1341, 93121, 'ninety-three thousand one hundred twenty-one'); INSERT INTO t2 VALUES(1342, 16000, 'sixteen thousand'); INSERT INTO t2 VALUES(1343, 44870, 'forty-four thousand eight hundred seventy'); INSERT INTO t2 VALUES(1344, 5040, 'five thousand forty'); INSERT INTO t2 VALUES(1345, 33434, 'thirty-three thousand four hundred thirty-four'); INSERT INTO t2 VALUES(1346, 47321, 'forty-seven thousand three hundred twenty-one'); INSERT INTO t2 VALUES(1347, 55639, 'fifty-five thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(1348, 22157, 'twenty-two thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(1349, 17189, 'seventeen thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(1350, 77408, 'seventy-seven thousand four hundred eight'); INSERT INTO t2 VALUES(1351, 41344, 'forty-one thousand three hundred forty-four'); INSERT INTO t2 VALUES(1352, 67958, 'sixty-seven thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(1353, 48189, 'forty-eight thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(1354, 6938, 'six thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(1355, 36616, 'thirty-six thousand six hundred sixteen'); INSERT INTO t2 VALUES(1356, 23947, 'twenty-three thousand nine hundred forty-seven'); INSERT INTO t2 VALUES(1357, 16580, 'sixteen thousand five hundred eighty'); INSERT INTO t2 VALUES(1358, 33653, 'thirty-three thousand six hundred fifty-three'); INSERT INTO t2 VALUES(1359, 86494, 'eighty-six thousand four hundred ninety-four'); INSERT INTO t2 VALUES(1360, 8035, 'eight thousand thirty-five'); INSERT INTO t2 VALUES(1361, 81163, 'eighty-one thousand one hundred sixty-three'); INSERT INTO t2 VALUES(1362, 39688, 'thirty-nine thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(1363, 23191, 'twenty-three thousand one hundred ninety-one'); INSERT INTO t2 VALUES(1364, 30756, 'thirty thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(1365, 60955, 'sixty thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(1366, 37666, 'thirty-seven thousand six hundred sixty-six'); INSERT INTO t2 VALUES(1367, 32124, 'thirty-two thousand one hundred twenty-four'); INSERT INTO t2 VALUES(1368, 37601, 'thirty-seven thousand six hundred one'); INSERT INTO t2 VALUES(1369, 31697, 'thirty-one thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(1370, 70414, 'seventy thousand four hundred fourteen'); INSERT INTO t2 VALUES(1371, 83186, 'eighty-three thousand one hundred eighty-six'); INSERT INTO t2 VALUES(1372, 43212, 'forty-three thousand two hundred twelve'); INSERT INTO t2 VALUES(1373, 43706, 'forty-three thousand seven hundred six'); INSERT INTO t2 VALUES(1374, 74425, 'seventy-four thousand four hundred twenty-five'); INSERT INTO t2 VALUES(1375, 30805, 'thirty thousand eight hundred five'); INSERT INTO t2 VALUES(1376, 50862, 'fifty thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(1377, 78835, 'seventy-eight thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(1378, 13974, 'thirteen thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(1379, 9088, 'nine thousand eighty-eight'); INSERT INTO t2 VALUES(1380, 83685, 'eighty-three thousand six hundred eighty-five'); INSERT INTO t2 VALUES(1381, 42925, 'forty-two thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(1382, 52684, 'fifty-two thousand six hundred eighty-four'); INSERT INTO t2 VALUES(1383, 51846, 'fifty-one thousand eight hundred forty-six'); INSERT INTO t2 VALUES(1384, 54278, 'fifty-four thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(1385, 15094, 'fifteen thousand ninety-four'); INSERT INTO t2 VALUES(1386, 10119, 'ten thousand one hundred nineteen'); INSERT INTO t2 VALUES(1387, 65471, 'sixty-five thousand four hundred seventy-one'); INSERT INTO t2 VALUES(1388, 94045, 'ninety-four thousand forty-five'); INSERT INTO t2 VALUES(1389, 64522, 'sixty-four thousand five hundred twenty-two'); INSERT INTO t2 VALUES(1390, 16108, 'sixteen thousand one hundred eight'); INSERT INTO t2 VALUES(1391, 98475, 'ninety-eight thousand four hundred seventy-five'); INSERT INTO t2 VALUES(1392, 14889, 'fourteen thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(1393, 85081, 'eighty-five thousand eighty-one'); INSERT INTO t2 VALUES(1394, 18339, 'eighteen thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(1395, 55412, 'fifty-five thousand four hundred twelve'); INSERT INTO t2 VALUES(1396, 67410, 'sixty-seven thousand four hundred ten'); INSERT INTO t2 VALUES(1397, 59049, 'fifty-nine thousand forty-nine'); INSERT INTO t2 VALUES(1398, 42667, 'forty-two thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(1399, 81480, 'eighty-one thousand four hundred eighty'); INSERT INTO t2 VALUES(1400, 44376, 'forty-four thousand three hundred seventy-six'); INSERT INTO t2 VALUES(1401, 17086, 'seventeen thousand eighty-six'); INSERT INTO t2 VALUES(1402, 42743, 'forty-two thousand seven hundred forty-three'); INSERT INTO t2 VALUES(1403, 82977, 'eighty-two thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(1404, 89291, 'eighty-nine thousand two hundred ninety-one'); INSERT INTO t2 VALUES(1405, 91647, 'ninety-one thousand six hundred forty-seven'); INSERT INTO t2 VALUES(1406, 42961, 'forty-two thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(1407, 93206, 'ninety-three thousand two hundred six'); INSERT INTO t2 VALUES(1408, 2809, 'two thousand eight hundred nine'); INSERT INTO t2 VALUES(1409, 33098, 'thirty-three thousand ninety-eight'); INSERT INTO t2 VALUES(1410, 4394, 'four thousand three hundred ninety-four'); INSERT INTO t2 VALUES(1411, 27538, 'twenty-seven thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(1412, 70688, 'seventy thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(1413, 1847, 'one thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(1414, 64114, 'sixty-four thousand one hundred fourteen'); INSERT INTO t2 VALUES(1415, 23317, 'twenty-three thousand three hundred seventeen'); INSERT INTO t2 VALUES(1416, 74072, 'seventy-four thousand seventy-two'); INSERT INTO t2 VALUES(1417, 43940, 'forty-three thousand nine hundred forty'); INSERT INTO t2 VALUES(1418, 81265, 'eighty-one thousand two hundred sixty-five'); INSERT INTO t2 VALUES(1419, 23520, 'twenty-three thousand five hundred twenty'); INSERT INTO t2 VALUES(1420, 42393, 'forty-two thousand three hundred ninety-three'); INSERT INTO t2 VALUES(1421, 69297, 'sixty-nine thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(1422, 30522, 'thirty thousand five hundred twenty-two'); INSERT INTO t2 VALUES(1423, 19990, 'nineteen thousand nine hundred ninety'); INSERT INTO t2 VALUES(1424, 21630, 'twenty-one thousand six hundred thirty'); INSERT INTO t2 VALUES(1425, 27250, 'twenty-seven thousand two hundred fifty'); INSERT INTO t2 VALUES(1426, 30634, 'thirty thousand six hundred thirty-four'); INSERT INTO t2 VALUES(1427, 40678, 'forty thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(1428, 7137, 'seven thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(1429, 31894, 'thirty-one thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(1430, 33397, 'thirty-three thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(1431, 82540, 'eighty-two thousand five hundred forty'); INSERT INTO t2 VALUES(1432, 58521, 'fifty-eight thousand five hundred twenty-one'); INSERT INTO t2 VALUES(1433, 86494, 'eighty-six thousand four hundred ninety-four'); INSERT INTO t2 VALUES(1434, 21138, 'twenty-one thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(1435, 4279, 'four thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(1436, 87476, 'eighty-seven thousand four hundred seventy-six'); INSERT INTO t2 VALUES(1437, 2346, 'two thousand three hundred forty-six'); INSERT INTO t2 VALUES(1438, 55613, 'fifty-five thousand six hundred thirteen'); INSERT INTO t2 VALUES(1439, 62273, 'sixty-two thousand two hundred seventy-three'); INSERT INTO t2 VALUES(1440, 89495, 'eighty-nine thousand four hundred ninety-five'); INSERT INTO t2 VALUES(1441, 36912, 'thirty-six thousand nine hundred twelve'); INSERT INTO t2 VALUES(1442, 97370, 'ninety-seven thousand three hundred seventy'); INSERT INTO t2 VALUES(1443, 99718, 'ninety-nine thousand seven hundred eighteen'); INSERT INTO t2 VALUES(1444, 22755, 'twenty-two thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(1445, 25884, 'twenty-five thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(1446, 60650, 'sixty thousand six hundred fifty'); INSERT INTO t2 VALUES(1447, 63431, 'sixty-three thousand four hundred thirty-one'); INSERT INTO t2 VALUES(1448, 99037, 'ninety-nine thousand thirty-seven'); INSERT INTO t2 VALUES(1449, 46683, 'forty-six thousand six hundred eighty-three'); INSERT INTO t2 VALUES(1450, 18230, 'eighteen thousand two hundred thirty'); INSERT INTO t2 VALUES(1451, 6169, 'six thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(1452, 93756, 'ninety-three thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(1453, 82602, 'eighty-two thousand six hundred two'); INSERT INTO t2 VALUES(1454, 91464, 'ninety-one thousand four hundred sixty-four'); INSERT INTO t2 VALUES(1455, 6999, 'six thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(1456, 62243, 'sixty-two thousand two hundred forty-three'); INSERT INTO t2 VALUES(1457, 76853, 'seventy-six thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(1458, 34140, 'thirty-four thousand one hundred forty'); INSERT INTO t2 VALUES(1459, 66544, 'sixty-six thousand five hundred forty-four'); INSERT INTO t2 VALUES(1460, 28978, 'twenty-eight thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(1461, 60082, 'sixty thousand eighty-two'); INSERT INTO t2 VALUES(1462, 3594, 'three thousand five hundred ninety-four'); INSERT INTO t2 VALUES(1463, 98376, 'ninety-eight thousand three hundred seventy-six'); INSERT INTO t2 VALUES(1464, 74838, 'seventy-four thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(1465, 67943, 'sixty-seven thousand nine hundred forty-three'); INSERT INTO t2 VALUES(1466, 46797, 'forty-six thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(1467, 65802, 'sixty-five thousand eight hundred two'); INSERT INTO t2 VALUES(1468, 16924, 'sixteen thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(1469, 20053, 'twenty thousand fifty-three'); INSERT INTO t2 VALUES(1470, 79931, 'seventy-nine thousand nine hundred thirty-one'); INSERT INTO t2 VALUES(1471, 49998, 'forty-nine thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(1472, 14258, 'fourteen thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(1473, 51696, 'fifty-one thousand six hundred ninety-six'); INSERT INTO t2 VALUES(1474, 87223, 'eighty-seven thousand two hundred twenty-three'); INSERT INTO t2 VALUES(1475, 55248, 'fifty-five thousand two hundred forty-eight'); INSERT INTO t2 VALUES(1476, 40943, 'forty thousand nine hundred forty-three'); INSERT INTO t2 VALUES(1477, 70434, 'seventy thousand four hundred thirty-four'); INSERT INTO t2 VALUES(1478, 80312, 'eighty thousand three hundred twelve'); INSERT INTO t2 VALUES(1479, 69166, 'sixty-nine thousand one hundred sixty-six'); INSERT INTO t2 VALUES(1480, 30197, 'thirty thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(1481, 25526, 'twenty-five thousand five hundred twenty-six'); INSERT INTO t2 VALUES(1482, 20189, 'twenty thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(1483, 32036, 'thirty-two thousand thirty-six'); INSERT INTO t2 VALUES(1484, 86152, 'eighty-six thousand one hundred fifty-two'); INSERT INTO t2 VALUES(1485, 35840, 'thirty-five thousand eight hundred forty'); INSERT INTO t2 VALUES(1486, 3784, 'three thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(1487, 30652, 'thirty thousand six hundred fifty-two'); INSERT INTO t2 VALUES(1488, 76979, 'seventy-six thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(1489, 51493, 'fifty-one thousand four hundred ninety-three'); INSERT INTO t2 VALUES(1490, 78349, 'seventy-eight thousand three hundred forty-nine'); INSERT INTO t2 VALUES(1491, 99378, 'ninety-nine thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(1492, 9773, 'nine thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(1493, 15186, 'fifteen thousand one hundred eighty-six'); INSERT INTO t2 VALUES(1494, 47773, 'forty-seven thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(1495, 56151, 'fifty-six thousand one hundred fifty-one'); INSERT INTO t2 VALUES(1496, 15131, 'fifteen thousand one hundred thirty-one'); INSERT INTO t2 VALUES(1497, 84587, 'eighty-four thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(1498, 66398, 'sixty-six thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(1499, 32783, 'thirty-two thousand seven hundred eighty-three'); INSERT INTO t2 VALUES(1500, 52117, 'fifty-two thousand one hundred seventeen'); INSERT INTO t2 VALUES(1501, 72385, 'seventy-two thousand three hundred eighty-five'); INSERT INTO t2 VALUES(1502, 583, 'five hundred eighty-three'); INSERT INTO t2 VALUES(1503, 46991, 'forty-six thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(1504, 70432, 'seventy thousand four hundred thirty-two'); INSERT INTO t2 VALUES(1505, 29874, 'twenty-nine thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(1506, 80205, 'eighty thousand two hundred five'); INSERT INTO t2 VALUES(1507, 74951, 'seventy-four thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(1508, 20681, 'twenty thousand six hundred eighty-one'); INSERT INTO t2 VALUES(1509, 8802, 'eight thousand eight hundred two'); INSERT INTO t2 VALUES(1510, 56901, 'fifty-six thousand nine hundred one'); INSERT INTO t2 VALUES(1511, 78776, 'seventy-eight thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(1512, 61720, 'sixty-one thousand seven hundred twenty'); INSERT INTO t2 VALUES(1513, 46839, 'forty-six thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(1514, 60429, 'sixty thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(1515, 6138, 'six thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(1516, 2198, 'two thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(1517, 14553, 'fourteen thousand five hundred fifty-three'); INSERT INTO t2 VALUES(1518, 9480, 'nine thousand four hundred eighty'); INSERT INTO t2 VALUES(1519, 22985, 'twenty-two thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(1520, 66863, 'sixty-six thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(1521, 22034, 'twenty-two thousand thirty-four'); INSERT INTO t2 VALUES(1522, 86911, 'eighty-six thousand nine hundred eleven'); INSERT INTO t2 VALUES(1523, 23221, 'twenty-three thousand two hundred twenty-one'); INSERT INTO t2 VALUES(1524, 96124, 'ninety-six thousand one hundred twenty-four'); INSERT INTO t2 VALUES(1525, 13993, 'thirteen thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(1526, 97899, 'ninety-seven thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(1527, 15403, 'fifteen thousand four hundred three'); INSERT INTO t2 VALUES(1528, 36095, 'thirty-six thousand ninety-five'); INSERT INTO t2 VALUES(1529, 42817, 'forty-two thousand eight hundred seventeen'); INSERT INTO t2 VALUES(1530, 42984, 'forty-two thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(1531, 68757, 'sixty-eight thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(1532, 55896, 'fifty-five thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(1533, 53311, 'fifty-three thousand three hundred eleven'); INSERT INTO t2 VALUES(1534, 30057, 'thirty thousand fifty-seven'); INSERT INTO t2 VALUES(1535, 703, 'seven hundred three'); INSERT INTO t2 VALUES(1536, 70141, 'seventy thousand one hundred forty-one'); INSERT INTO t2 VALUES(1537, 3513, 'three thousand five hundred thirteen'); INSERT INTO t2 VALUES(1538, 96348, 'ninety-six thousand three hundred forty-eight'); INSERT INTO t2 VALUES(1539, 90443, 'ninety thousand four hundred forty-three'); INSERT INTO t2 VALUES(1540, 98539, 'ninety-eight thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(1541, 34909, 'thirty-four thousand nine hundred nine'); INSERT INTO t2 VALUES(1542, 10888, 'ten thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(1543, 22597, 'twenty-two thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(1544, 72622, 'seventy-two thousand six hundred twenty-two'); INSERT INTO t2 VALUES(1545, 8099, 'eight thousand ninety-nine'); INSERT INTO t2 VALUES(1546, 8945, 'eight thousand nine hundred forty-five'); INSERT INTO t2 VALUES(1547, 85120, 'eighty-five thousand one hundred twenty'); INSERT INTO t2 VALUES(1548, 3750, 'three thousand seven hundred fifty'); INSERT INTO t2 VALUES(1549, 98350, 'ninety-eight thousand three hundred fifty'); INSERT INTO t2 VALUES(1550, 50321, 'fifty thousand three hundred twenty-one'); INSERT INTO t2 VALUES(1551, 20989, 'twenty thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(1552, 74006, 'seventy-four thousand six'); INSERT INTO t2 VALUES(1553, 53809, 'fifty-three thousand eight hundred nine'); INSERT INTO t2 VALUES(1554, 95808, 'ninety-five thousand eight hundred eight'); INSERT INTO t2 VALUES(1555, 19023, 'nineteen thousand twenty-three'); INSERT INTO t2 VALUES(1556, 94637, 'ninety-four thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(1557, 34282, 'thirty-four thousand two hundred eighty-two'); INSERT INTO t2 VALUES(1558, 76004, 'seventy-six thousand four'); INSERT INTO t2 VALUES(1559, 41024, 'forty-one thousand twenty-four'); INSERT INTO t2 VALUES(1560, 83730, 'eighty-three thousand seven hundred thirty'); INSERT INTO t2 VALUES(1561, 42788, 'forty-two thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(1562, 98008, 'ninety-eight thousand eight'); INSERT INTO t2 VALUES(1563, 81276, 'eighty-one thousand two hundred seventy-six'); INSERT INTO t2 VALUES(1564, 46661, 'forty-six thousand six hundred sixty-one'); INSERT INTO t2 VALUES(1565, 41606, 'forty-one thousand six hundred six'); INSERT INTO t2 VALUES(1566, 71937, 'seventy-one thousand nine hundred thirty-seven'); INSERT INTO t2 VALUES(1567, 64977, 'sixty-four thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(1568, 717, 'seven hundred seventeen'); INSERT INTO t2 VALUES(1569, 79266, 'seventy-nine thousand two hundred sixty-six'); INSERT INTO t2 VALUES(1570, 2784, 'two thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(1571, 64149, 'sixty-four thousand one hundred forty-nine'); INSERT INTO t2 VALUES(1572, 46225, 'forty-six thousand two hundred twenty-five'); INSERT INTO t2 VALUES(1573, 54485, 'fifty-four thousand four hundred eighty-five'); INSERT INTO t2 VALUES(1574, 834, 'eight hundred thirty-four'); INSERT INTO t2 VALUES(1575, 87256, 'eighty-seven thousand two hundred fifty-six'); INSERT INTO t2 VALUES(1576, 50253, 'fifty thousand two hundred fifty-three'); INSERT INTO t2 VALUES(1577, 8079, 'eight thousand seventy-nine'); INSERT INTO t2 VALUES(1578, 13348, 'thirteen thousand three hundred forty-eight'); INSERT INTO t2 VALUES(1579, 96299, 'ninety-six thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(1580, 11791, 'eleven thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(1581, 52010, 'fifty-two thousand ten'); INSERT INTO t2 VALUES(1582, 75972, 'seventy-five thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(1583, 48694, 'forty-eight thousand six hundred ninety-four'); INSERT INTO t2 VALUES(1584, 47825, 'forty-seven thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(1585, 16316, 'sixteen thousand three hundred sixteen'); INSERT INTO t2 VALUES(1586, 36091, 'thirty-six thousand ninety-one'); INSERT INTO t2 VALUES(1587, 12935, 'twelve thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(1588, 73502, 'seventy-three thousand five hundred two'); INSERT INTO t2 VALUES(1589, 95386, 'ninety-five thousand three hundred eighty-six'); INSERT INTO t2 VALUES(1590, 40717, 'forty thousand seven hundred seventeen'); INSERT INTO t2 VALUES(1591, 64368, 'sixty-four thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(1592, 13031, 'thirteen thousand thirty-one'); INSERT INTO t2 VALUES(1593, 20833, 'twenty thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(1594, 42830, 'forty-two thousand eight hundred thirty'); INSERT INTO t2 VALUES(1595, 48552, 'forty-eight thousand five hundred fifty-two'); INSERT INTO t2 VALUES(1596, 25080, 'twenty-five thousand eighty'); INSERT INTO t2 VALUES(1597, 82047, 'eighty-two thousand forty-seven'); INSERT INTO t2 VALUES(1598, 17153, 'seventeen thousand one hundred fifty-three'); INSERT INTO t2 VALUES(1599, 11760, 'eleven thousand seven hundred sixty'); INSERT INTO t2 VALUES(1600, 77741, 'seventy-seven thousand seven hundred forty-one'); INSERT INTO t2 VALUES(1601, 33160, 'thirty-three thousand one hundred sixty'); INSERT INTO t2 VALUES(1602, 59277, 'fifty-nine thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(1603, 46466, 'forty-six thousand four hundred sixty-six'); INSERT INTO t2 VALUES(1604, 30377, 'thirty thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(1605, 56, 'fifty-six'); INSERT INTO t2 VALUES(1606, 7002, 'seven thousand two'); INSERT INTO t2 VALUES(1607, 42546, 'forty-two thousand five hundred forty-six'); INSERT INTO t2 VALUES(1608, 74812, 'seventy-four thousand eight hundred twelve'); INSERT INTO t2 VALUES(1609, 34393, 'thirty-four thousand three hundred ninety-three'); INSERT INTO t2 VALUES(1610, 17906, 'seventeen thousand nine hundred six'); INSERT INTO t2 VALUES(1611, 88345, 'eighty-eight thousand three hundred forty-five'); INSERT INTO t2 VALUES(1612, 89151, 'eighty-nine thousand one hundred fifty-one'); INSERT INTO t2 VALUES(1613, 61801, 'sixty-one thousand eight hundred one'); INSERT INTO t2 VALUES(1614, 91028, 'ninety-one thousand twenty-eight'); INSERT INTO t2 VALUES(1615, 21377, 'twenty-one thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(1616, 28960, 'twenty-eight thousand nine hundred sixty'); INSERT INTO t2 VALUES(1617, 19222, 'nineteen thousand two hundred twenty-two'); INSERT INTO t2 VALUES(1618, 57618, 'fifty-seven thousand six hundred eighteen'); INSERT INTO t2 VALUES(1619, 76240, 'seventy-six thousand two hundred forty'); INSERT INTO t2 VALUES(1620, 20780, 'twenty thousand seven hundred eighty'); INSERT INTO t2 VALUES(1621, 8716, 'eight thousand seven hundred sixteen'); INSERT INTO t2 VALUES(1622, 46543, 'forty-six thousand five hundred forty-three'); INSERT INTO t2 VALUES(1623, 10892, 'ten thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(1624, 17440, 'seventeen thousand four hundred forty'); INSERT INTO t2 VALUES(1625, 56921, 'fifty-six thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(1626, 1696, 'one thousand six hundred ninety-six'); INSERT INTO t2 VALUES(1627, 16761, 'sixteen thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(1628, 37810, 'thirty-seven thousand eight hundred ten'); INSERT INTO t2 VALUES(1629, 44518, 'forty-four thousand five hundred eighteen'); INSERT INTO t2 VALUES(1630, 67520, 'sixty-seven thousand five hundred twenty'); INSERT INTO t2 VALUES(1631, 40923, 'forty thousand nine hundred twenty-three'); INSERT INTO t2 VALUES(1632, 18314, 'eighteen thousand three hundred fourteen'); INSERT INTO t2 VALUES(1633, 90127, 'ninety thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(1634, 79059, 'seventy-nine thousand fifty-nine'); INSERT INTO t2 VALUES(1635, 626, 'six hundred twenty-six'); INSERT INTO t2 VALUES(1636, 80537, 'eighty thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(1637, 83954, 'eighty-three thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(1638, 17794, 'seventeen thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(1639, 68525, 'sixty-eight thousand five hundred twenty-five'); INSERT INTO t2 VALUES(1640, 61471, 'sixty-one thousand four hundred seventy-one'); INSERT INTO t2 VALUES(1641, 39712, 'thirty-nine thousand seven hundred twelve'); INSERT INTO t2 VALUES(1642, 60313, 'sixty thousand three hundred thirteen'); INSERT INTO t2 VALUES(1643, 90492, 'ninety thousand four hundred ninety-two'); INSERT INTO t2 VALUES(1644, 1376, 'one thousand three hundred seventy-six'); INSERT INTO t2 VALUES(1645, 99046, 'ninety-nine thousand forty-six'); INSERT INTO t2 VALUES(1646, 50354, 'fifty thousand three hundred fifty-four'); INSERT INTO t2 VALUES(1647, 79651, 'seventy-nine thousand six hundred fifty-one'); INSERT INTO t2 VALUES(1648, 46094, 'forty-six thousand ninety-four'); INSERT INTO t2 VALUES(1649, 42593, 'forty-two thousand five hundred ninety-three'); INSERT INTO t2 VALUES(1650, 98973, 'ninety-eight thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(1651, 53889, 'fifty-three thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(1652, 930, 'nine hundred thirty'); INSERT INTO t2 VALUES(1653, 49895, 'forty-nine thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(1654, 82975, 'eighty-two thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(1655, 7731, 'seven thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(1656, 12858, 'twelve thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(1657, 26697, 'twenty-six thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(1658, 86891, 'eighty-six thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(1659, 19521, 'nineteen thousand five hundred twenty-one'); INSERT INTO t2 VALUES(1660, 95678, 'ninety-five thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(1661, 59728, 'fifty-nine thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(1662, 68585, 'sixty-eight thousand five hundred eighty-five'); INSERT INTO t2 VALUES(1663, 75485, 'seventy-five thousand four hundred eighty-five'); INSERT INTO t2 VALUES(1664, 11566, 'eleven thousand five hundred sixty-six'); INSERT INTO t2 VALUES(1665, 23271, 'twenty-three thousand two hundred seventy-one'); INSERT INTO t2 VALUES(1666, 9462, 'nine thousand four hundred sixty-two'); INSERT INTO t2 VALUES(1667, 8978, 'eight thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(1668, 39776, 'thirty-nine thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(1669, 19840, 'nineteen thousand eight hundred forty'); INSERT INTO t2 VALUES(1670, 50040, 'fifty thousand forty'); INSERT INTO t2 VALUES(1671, 81105, 'eighty-one thousand one hundred five'); INSERT INTO t2 VALUES(1672, 81690, 'eighty-one thousand six hundred ninety'); INSERT INTO t2 VALUES(1673, 47205, 'forty-seven thousand two hundred five'); INSERT INTO t2 VALUES(1674, 26859, 'twenty-six thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(1675, 27273, 'twenty-seven thousand two hundred seventy-three'); INSERT INTO t2 VALUES(1676, 3770, 'three thousand seven hundred seventy'); INSERT INTO t2 VALUES(1677, 57118, 'fifty-seven thousand one hundred eighteen'); INSERT INTO t2 VALUES(1678, 5830, 'five thousand eight hundred thirty'); INSERT INTO t2 VALUES(1679, 44010, 'forty-four thousand ten'); INSERT INTO t2 VALUES(1680, 107, 'one hundred seven'); INSERT INTO t2 VALUES(1681, 54866, 'fifty-four thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(1682, 45623, 'forty-five thousand six hundred twenty-three'); INSERT INTO t2 VALUES(1683, 12938, 'twelve thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(1684, 84644, 'eighty-four thousand six hundred forty-four'); INSERT INTO t2 VALUES(1685, 81116, 'eighty-one thousand one hundred sixteen'); INSERT INTO t2 VALUES(1686, 6557, 'six thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(1687, 504, 'five hundred four'); INSERT INTO t2 VALUES(1688, 41242, 'forty-one thousand two hundred forty-two'); INSERT INTO t2 VALUES(1689, 40898, 'forty thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(1690, 37987, 'thirty-seven thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(1691, 91906, 'ninety-one thousand nine hundred six'); INSERT INTO t2 VALUES(1692, 74068, 'seventy-four thousand sixty-eight'); INSERT INTO t2 VALUES(1693, 47393, 'forty-seven thousand three hundred ninety-three'); INSERT INTO t2 VALUES(1694, 70527, 'seventy thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(1695, 91711, 'ninety-one thousand seven hundred eleven'); INSERT INTO t2 VALUES(1696, 85846, 'eighty-five thousand eight hundred forty-six'); INSERT INTO t2 VALUES(1697, 49866, 'forty-nine thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(1698, 78048, 'seventy-eight thousand forty-eight'); INSERT INTO t2 VALUES(1699, 46897, 'forty-six thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(1700, 43123, 'forty-three thousand one hundred twenty-three'); INSERT INTO t2 VALUES(1701, 83377, 'eighty-three thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(1702, 84298, 'eighty-four thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(1703, 13970, 'thirteen thousand nine hundred seventy'); INSERT INTO t2 VALUES(1704, 57265, 'fifty-seven thousand two hundred sixty-five'); INSERT INTO t2 VALUES(1705, 67777, 'sixty-seven thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(1706, 616, 'six hundred sixteen'); INSERT INTO t2 VALUES(1707, 40764, 'forty thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(1708, 85767, 'eighty-five thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(1709, 41836, 'forty-one thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(1710, 79865, 'seventy-nine thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(1711, 96742, 'ninety-six thousand seven hundred forty-two'); INSERT INTO t2 VALUES(1712, 80228, 'eighty thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(1713, 44642, 'forty-four thousand six hundred forty-two'); INSERT INTO t2 VALUES(1714, 70499, 'seventy thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(1715, 80722, 'eighty thousand seven hundred twenty-two'); INSERT INTO t2 VALUES(1716, 84267, 'eighty-four thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(1717, 99256, 'ninety-nine thousand two hundred fifty-six'); INSERT INTO t2 VALUES(1718, 50812, 'fifty thousand eight hundred twelve'); INSERT INTO t2 VALUES(1719, 30175, 'thirty thousand one hundred seventy-five'); INSERT INTO t2 VALUES(1720, 94760, 'ninety-four thousand seven hundred sixty'); INSERT INTO t2 VALUES(1721, 43410, 'forty-three thousand four hundred ten'); INSERT INTO t2 VALUES(1722, 67951, 'sixty-seven thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(1723, 46523, 'forty-six thousand five hundred twenty-three'); INSERT INTO t2 VALUES(1724, 23389, 'twenty-three thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(1725, 14110, 'fourteen thousand one hundred ten'); INSERT INTO t2 VALUES(1726, 45909, 'forty-five thousand nine hundred nine'); INSERT INTO t2 VALUES(1727, 65009, 'sixty-five thousand nine'); INSERT INTO t2 VALUES(1728, 8080, 'eight thousand eighty'); INSERT INTO t2 VALUES(1729, 86931, 'eighty-six thousand nine hundred thirty-one'); INSERT INTO t2 VALUES(1730, 85738, 'eighty-five thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(1731, 16610, 'sixteen thousand six hundred ten'); INSERT INTO t2 VALUES(1732, 6929, 'six thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(1733, 47186, 'forty-seven thousand one hundred eighty-six'); INSERT INTO t2 VALUES(1734, 91792, 'ninety-one thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(1735, 96935, 'ninety-six thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(1736, 71196, 'seventy-one thousand one hundred ninety-six'); INSERT INTO t2 VALUES(1737, 23429, 'twenty-three thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(1738, 72247, 'seventy-two thousand two hundred forty-seven'); INSERT INTO t2 VALUES(1739, 44134, 'forty-four thousand one hundred thirty-four'); INSERT INTO t2 VALUES(1740, 52925, 'fifty-two thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(1741, 23227, 'twenty-three thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(1742, 6111, 'six thousand one hundred eleven'); INSERT INTO t2 VALUES(1743, 51254, 'fifty-one thousand two hundred fifty-four'); INSERT INTO t2 VALUES(1744, 39973, 'thirty-nine thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(1745, 46941, 'forty-six thousand nine hundred forty-one'); INSERT INTO t2 VALUES(1746, 82749, 'eighty-two thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(1747, 27151, 'twenty-seven thousand one hundred fifty-one'); INSERT INTO t2 VALUES(1748, 51344, 'fifty-one thousand three hundred forty-four'); INSERT INTO t2 VALUES(1749, 62547, 'sixty-two thousand five hundred forty-seven'); INSERT INTO t2 VALUES(1750, 397, 'three hundred ninety-seven'); INSERT INTO t2 VALUES(1751, 65470, 'sixty-five thousand four hundred seventy'); INSERT INTO t2 VALUES(1752, 66363, 'sixty-six thousand three hundred sixty-three'); INSERT INTO t2 VALUES(1753, 40795, 'forty thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(1754, 67431, 'sixty-seven thousand four hundred thirty-one'); INSERT INTO t2 VALUES(1755, 41954, 'forty-one thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(1756, 39502, 'thirty-nine thousand five hundred two'); INSERT INTO t2 VALUES(1757, 39775, 'thirty-nine thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(1758, 90717, 'ninety thousand seven hundred seventeen'); INSERT INTO t2 VALUES(1759, 35053, 'thirty-five thousand fifty-three'); INSERT INTO t2 VALUES(1760, 11842, 'eleven thousand eight hundred forty-two'); INSERT INTO t2 VALUES(1761, 81134, 'eighty-one thousand one hundred thirty-four'); INSERT INTO t2 VALUES(1762, 75647, 'seventy-five thousand six hundred forty-seven'); INSERT INTO t2 VALUES(1763, 48715, 'forty-eight thousand seven hundred fifteen'); INSERT INTO t2 VALUES(1764, 50246, 'fifty thousand two hundred forty-six'); INSERT INTO t2 VALUES(1765, 74361, 'seventy-four thousand three hundred sixty-one'); INSERT INTO t2 VALUES(1766, 26463, 'twenty-six thousand four hundred sixty-three'); INSERT INTO t2 VALUES(1767, 85668, 'eighty-five thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(1768, 65693, 'sixty-five thousand six hundred ninety-three'); INSERT INTO t2 VALUES(1769, 62536, 'sixty-two thousand five hundred thirty-six'); INSERT INTO t2 VALUES(1770, 95905, 'ninety-five thousand nine hundred five'); INSERT INTO t2 VALUES(1771, 73166, 'seventy-three thousand one hundred sixty-six'); INSERT INTO t2 VALUES(1772, 59477, 'fifty-nine thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(1773, 1476, 'one thousand four hundred seventy-six'); INSERT INTO t2 VALUES(1774, 66052, 'sixty-six thousand fifty-two'); INSERT INTO t2 VALUES(1775, 62223, 'sixty-two thousand two hundred twenty-three'); INSERT INTO t2 VALUES(1776, 22572, 'twenty-two thousand five hundred seventy-two'); INSERT INTO t2 VALUES(1777, 15621, 'fifteen thousand six hundred twenty-one'); INSERT INTO t2 VALUES(1778, 92966, 'ninety-two thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(1779, 52093, 'fifty-two thousand ninety-three'); INSERT INTO t2 VALUES(1780, 5553, 'five thousand five hundred fifty-three'); INSERT INTO t2 VALUES(1781, 10448, 'ten thousand four hundred forty-eight'); INSERT INTO t2 VALUES(1782, 98571, 'ninety-eight thousand five hundred seventy-one'); INSERT INTO t2 VALUES(1783, 74699, 'seventy-four thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(1784, 98871, 'ninety-eight thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(1785, 94583, 'ninety-four thousand five hundred eighty-three'); INSERT INTO t2 VALUES(1786, 43498, 'forty-three thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(1787, 23619, 'twenty-three thousand six hundred nineteen'); INSERT INTO t2 VALUES(1788, 54118, 'fifty-four thousand one hundred eighteen'); INSERT INTO t2 VALUES(1789, 16473, 'sixteen thousand four hundred seventy-three'); INSERT INTO t2 VALUES(1790, 50287, 'fifty thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(1791, 31482, 'thirty-one thousand four hundred eighty-two'); INSERT INTO t2 VALUES(1792, 17518, 'seventeen thousand five hundred eighteen'); INSERT INTO t2 VALUES(1793, 67865, 'sixty-seven thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(1794, 89160, 'eighty-nine thousand one hundred sixty'); INSERT INTO t2 VALUES(1795, 36122, 'thirty-six thousand one hundred twenty-two'); INSERT INTO t2 VALUES(1796, 93188, 'ninety-three thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(1797, 44637, 'forty-four thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(1798, 89043, 'eighty-nine thousand forty-three'); INSERT INTO t2 VALUES(1799, 6372, 'six thousand three hundred seventy-two'); INSERT INTO t2 VALUES(1800, 93720, 'ninety-three thousand seven hundred twenty'); INSERT INTO t2 VALUES(1801, 29153, 'twenty-nine thousand one hundred fifty-three'); INSERT INTO t2 VALUES(1802, 50586, 'fifty thousand five hundred eighty-six'); INSERT INTO t2 VALUES(1803, 92688, 'ninety-two thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(1804, 56748, 'fifty-six thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(1805, 50236, 'fifty thousand two hundred thirty-six'); INSERT INTO t2 VALUES(1806, 57142, 'fifty-seven thousand one hundred forty-two'); INSERT INTO t2 VALUES(1807, 37675, 'thirty-seven thousand six hundred seventy-five'); INSERT INTO t2 VALUES(1808, 84293, 'eighty-four thousand two hundred ninety-three'); INSERT INTO t2 VALUES(1809, 60980, 'sixty thousand nine hundred eighty'); INSERT INTO t2 VALUES(1810, 60251, 'sixty thousand two hundred fifty-one'); INSERT INTO t2 VALUES(1811, 59472, 'fifty-nine thousand four hundred seventy-two'); INSERT INTO t2 VALUES(1812, 64149, 'sixty-four thousand one hundred forty-nine'); INSERT INTO t2 VALUES(1813, 77768, 'seventy-seven thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(1814, 98618, 'ninety-eight thousand six hundred eighteen'); INSERT INTO t2 VALUES(1815, 56268, 'fifty-six thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(1816, 62427, 'sixty-two thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(1817, 28993, 'twenty-eight thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(1818, 61428, 'sixty-one thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(1819, 49443, 'forty-nine thousand four hundred forty-three'); INSERT INTO t2 VALUES(1820, 58730, 'fifty-eight thousand seven hundred thirty'); INSERT INTO t2 VALUES(1821, 40898, 'forty thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(1822, 12437, 'twelve thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(1823, 72890, 'seventy-two thousand eight hundred ninety'); INSERT INTO t2 VALUES(1824, 8711, 'eight thousand seven hundred eleven'); INSERT INTO t2 VALUES(1825, 59677, 'fifty-nine thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(1826, 80103, 'eighty thousand one hundred three'); INSERT INTO t2 VALUES(1827, 40508, 'forty thousand five hundred eight'); INSERT INTO t2 VALUES(1828, 97476, 'ninety-seven thousand four hundred seventy-six'); INSERT INTO t2 VALUES(1829, 43339, 'forty-three thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(1830, 14865, 'fourteen thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(1831, 81064, 'eighty-one thousand sixty-four'); INSERT INTO t2 VALUES(1832, 48666, 'forty-eight thousand six hundred sixty-six'); INSERT INTO t2 VALUES(1833, 81245, 'eighty-one thousand two hundred forty-five'); INSERT INTO t2 VALUES(1834, 74794, 'seventy-four thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(1835, 31588, 'thirty-one thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(1836, 22954, 'twenty-two thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(1837, 39485, 'thirty-nine thousand four hundred eighty-five'); INSERT INTO t2 VALUES(1838, 51863, 'fifty-one thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(1839, 6271, 'six thousand two hundred seventy-one'); INSERT INTO t2 VALUES(1840, 58099, 'fifty-eight thousand ninety-nine'); INSERT INTO t2 VALUES(1841, 47285, 'forty-seven thousand two hundred eighty-five'); INSERT INTO t2 VALUES(1842, 69965, 'sixty-nine thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(1843, 69698, 'sixty-nine thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(1844, 94547, 'ninety-four thousand five hundred forty-seven'); INSERT INTO t2 VALUES(1845, 4271, 'four thousand two hundred seventy-one'); INSERT INTO t2 VALUES(1846, 68855, 'sixty-eight thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(1847, 66926, 'sixty-six thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(1848, 36352, 'thirty-six thousand three hundred fifty-two'); INSERT INTO t2 VALUES(1849, 81428, 'eighty-one thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(1850, 96278, 'ninety-six thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(1851, 77034, 'seventy-seven thousand thirty-four'); INSERT INTO t2 VALUES(1852, 63118, 'sixty-three thousand one hundred eighteen'); INSERT INTO t2 VALUES(1853, 79693, 'seventy-nine thousand six hundred ninety-three'); INSERT INTO t2 VALUES(1854, 95874, 'ninety-five thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(1855, 97169, 'ninety-seven thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(1856, 81843, 'eighty-one thousand eight hundred forty-three'); INSERT INTO t2 VALUES(1857, 33201, 'thirty-three thousand two hundred one'); INSERT INTO t2 VALUES(1858, 88509, 'eighty-eight thousand five hundred nine'); INSERT INTO t2 VALUES(1859, 77410, 'seventy-seven thousand four hundred ten'); INSERT INTO t2 VALUES(1860, 52629, 'fifty-two thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(1861, 57234, 'fifty-seven thousand two hundred thirty-four'); INSERT INTO t2 VALUES(1862, 11373, 'eleven thousand three hundred seventy-three'); INSERT INTO t2 VALUES(1863, 83775, 'eighty-three thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(1864, 22455, 'twenty-two thousand four hundred fifty-five'); INSERT INTO t2 VALUES(1865, 99903, 'ninety-nine thousand nine hundred three'); INSERT INTO t2 VALUES(1866, 67182, 'sixty-seven thousand one hundred eighty-two'); INSERT INTO t2 VALUES(1867, 79194, 'seventy-nine thousand one hundred ninety-four'); INSERT INTO t2 VALUES(1868, 38445, 'thirty-eight thousand four hundred forty-five'); INSERT INTO t2 VALUES(1869, 3916, 'three thousand nine hundred sixteen'); INSERT INTO t2 VALUES(1870, 77123, 'seventy-seven thousand one hundred twenty-three'); INSERT INTO t2 VALUES(1871, 39560, 'thirty-nine thousand five hundred sixty'); INSERT INTO t2 VALUES(1872, 72667, 'seventy-two thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(1873, 69460, 'sixty-nine thousand four hundred sixty'); INSERT INTO t2 VALUES(1874, 86336, 'eighty-six thousand three hundred thirty-six'); INSERT INTO t2 VALUES(1875, 54783, 'fifty-four thousand seven hundred eighty-three'); INSERT INTO t2 VALUES(1876, 34851, 'thirty-four thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(1877, 12818, 'twelve thousand eight hundred eighteen'); INSERT INTO t2 VALUES(1878, 42534, 'forty-two thousand five hundred thirty-four'); INSERT INTO t2 VALUES(1879, 90531, 'ninety thousand five hundred thirty-one'); INSERT INTO t2 VALUES(1880, 83545, 'eighty-three thousand five hundred forty-five'); INSERT INTO t2 VALUES(1881, 41895, 'forty-one thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(1882, 16357, 'sixteen thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(1883, 48074, 'forty-eight thousand seventy-four'); INSERT INTO t2 VALUES(1884, 65554, 'sixty-five thousand five hundred fifty-four'); INSERT INTO t2 VALUES(1885, 19168, 'nineteen thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(1886, 20457, 'twenty thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(1887, 67074, 'sixty-seven thousand seventy-four'); INSERT INTO t2 VALUES(1888, 60826, 'sixty thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(1889, 89749, 'eighty-nine thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(1890, 87651, 'eighty-seven thousand six hundred fifty-one'); INSERT INTO t2 VALUES(1891, 53525, 'fifty-three thousand five hundred twenty-five'); INSERT INTO t2 VALUES(1892, 63667, 'sixty-three thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(1893, 34728, 'thirty-four thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(1894, 30650, 'thirty thousand six hundred fifty'); INSERT INTO t2 VALUES(1895, 38017, 'thirty-eight thousand seventeen'); INSERT INTO t2 VALUES(1896, 15204, 'fifteen thousand two hundred four'); INSERT INTO t2 VALUES(1897, 89639, 'eighty-nine thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(1898, 57891, 'fifty-seven thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(1899, 47672, 'forty-seven thousand six hundred seventy-two'); INSERT INTO t2 VALUES(1900, 35597, 'thirty-five thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(1901, 75875, 'seventy-five thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(1902, 25536, 'twenty-five thousand five hundred thirty-six'); INSERT INTO t2 VALUES(1903, 39855, 'thirty-nine thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(1904, 36141, 'thirty-six thousand one hundred forty-one'); INSERT INTO t2 VALUES(1905, 72263, 'seventy-two thousand two hundred sixty-three'); INSERT INTO t2 VALUES(1906, 61262, 'sixty-one thousand two hundred sixty-two'); INSERT INTO t2 VALUES(1907, 90989, 'ninety thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(1908, 7384, 'seven thousand three hundred eighty-four'); INSERT INTO t2 VALUES(1909, 97486, 'ninety-seven thousand four hundred eighty-six'); INSERT INTO t2 VALUES(1910, 63833, 'sixty-three thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(1911, 84418, 'eighty-four thousand four hundred eighteen'); INSERT INTO t2 VALUES(1912, 1412, 'one thousand four hundred twelve'); INSERT INTO t2 VALUES(1913, 70670, 'seventy thousand six hundred seventy'); INSERT INTO t2 VALUES(1914, 69714, 'sixty-nine thousand seven hundred fourteen'); INSERT INTO t2 VALUES(1915, 9088, 'nine thousand eighty-eight'); INSERT INTO t2 VALUES(1916, 78087, 'seventy-eight thousand eighty-seven'); INSERT INTO t2 VALUES(1917, 63997, 'sixty-three thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(1918, 46926, 'forty-six thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(1919, 20635, 'twenty thousand six hundred thirty-five'); INSERT INTO t2 VALUES(1920, 83870, 'eighty-three thousand eight hundred seventy'); INSERT INTO t2 VALUES(1921, 64450, 'sixty-four thousand four hundred fifty'); INSERT INTO t2 VALUES(1922, 52555, 'fifty-two thousand five hundred fifty-five'); INSERT INTO t2 VALUES(1923, 82175, 'eighty-two thousand one hundred seventy-five'); INSERT INTO t2 VALUES(1924, 55189, 'fifty-five thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(1925, 76696, 'seventy-six thousand six hundred ninety-six'); INSERT INTO t2 VALUES(1926, 32209, 'thirty-two thousand two hundred nine'); INSERT INTO t2 VALUES(1927, 72411, 'seventy-two thousand four hundred eleven'); INSERT INTO t2 VALUES(1928, 70851, 'seventy thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(1929, 60118, 'sixty thousand one hundred eighteen'); INSERT INTO t2 VALUES(1930, 2840, 'two thousand eight hundred forty'); INSERT INTO t2 VALUES(1931, 24262, 'twenty-four thousand two hundred sixty-two'); INSERT INTO t2 VALUES(1932, 79709, 'seventy-nine thousand seven hundred nine'); INSERT INTO t2 VALUES(1933, 80918, 'eighty thousand nine hundred eighteen'); INSERT INTO t2 VALUES(1934, 74325, 'seventy-four thousand three hundred twenty-five'); INSERT INTO t2 VALUES(1935, 80878, 'eighty thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(1936, 65269, 'sixty-five thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(1937, 35093, 'thirty-five thousand ninety-three'); INSERT INTO t2 VALUES(1938, 75048, 'seventy-five thousand forty-eight'); INSERT INTO t2 VALUES(1939, 98306, 'ninety-eight thousand three hundred six'); INSERT INTO t2 VALUES(1940, 70784, 'seventy thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(1941, 63270, 'sixty-three thousand two hundred seventy'); INSERT INTO t2 VALUES(1942, 30152, 'thirty thousand one hundred fifty-two'); INSERT INTO t2 VALUES(1943, 19394, 'nineteen thousand three hundred ninety-four'); INSERT INTO t2 VALUES(1944, 55571, 'fifty-five thousand five hundred seventy-one'); INSERT INTO t2 VALUES(1945, 73532, 'seventy-three thousand five hundred thirty-two'); INSERT INTO t2 VALUES(1946, 26695, 'twenty-six thousand six hundred ninety-five'); INSERT INTO t2 VALUES(1947, 51444, 'fifty-one thousand four hundred forty-four'); INSERT INTO t2 VALUES(1948, 90130, 'ninety thousand one hundred thirty'); INSERT INTO t2 VALUES(1949, 26980, 'twenty-six thousand nine hundred eighty'); INSERT INTO t2 VALUES(1950, 80759, 'eighty thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(1951, 35243, 'thirty-five thousand two hundred forty-three'); INSERT INTO t2 VALUES(1952, 40496, 'forty thousand four hundred ninety-six'); INSERT INTO t2 VALUES(1953, 13009, 'thirteen thousand nine'); INSERT INTO t2 VALUES(1954, 84010, 'eighty-four thousand ten'); INSERT INTO t2 VALUES(1955, 42338, 'forty-two thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(1956, 74408, 'seventy-four thousand four hundred eight'); INSERT INTO t2 VALUES(1957, 7379, 'seven thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(1958, 53430, 'fifty-three thousand four hundred thirty'); INSERT INTO t2 VALUES(1959, 12777, 'twelve thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(1960, 46692, 'forty-six thousand six hundred ninety-two'); INSERT INTO t2 VALUES(1961, 2252, 'two thousand two hundred fifty-two'); INSERT INTO t2 VALUES(1962, 53478, 'fifty-three thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(1963, 36601, 'thirty-six thousand six hundred one'); INSERT INTO t2 VALUES(1964, 78479, 'seventy-eight thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(1965, 95051, 'ninety-five thousand fifty-one'); INSERT INTO t2 VALUES(1966, 50334, 'fifty thousand three hundred thirty-four'); INSERT INTO t2 VALUES(1967, 11478, 'eleven thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(1968, 6230, 'six thousand two hundred thirty'); INSERT INTO t2 VALUES(1969, 9474, 'nine thousand four hundred seventy-four'); INSERT INTO t2 VALUES(1970, 22551, 'twenty-two thousand five hundred fifty-one'); INSERT INTO t2 VALUES(1971, 18731, 'eighteen thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(1972, 87356, 'eighty-seven thousand three hundred fifty-six'); INSERT INTO t2 VALUES(1973, 31204, 'thirty-one thousand two hundred four'); INSERT INTO t2 VALUES(1974, 70236, 'seventy thousand two hundred thirty-six'); INSERT INTO t2 VALUES(1975, 90756, 'ninety thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(1976, 31003, 'thirty-one thousand three'); INSERT INTO t2 VALUES(1977, 72791, 'seventy-two thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(1978, 71381, 'seventy-one thousand three hundred eighty-one'); INSERT INTO t2 VALUES(1979, 95904, 'ninety-five thousand nine hundred four'); INSERT INTO t2 VALUES(1980, 8694, 'eight thousand six hundred ninety-four'); INSERT INTO t2 VALUES(1981, 6275, 'six thousand two hundred seventy-five'); INSERT INTO t2 VALUES(1982, 59694, 'fifty-nine thousand six hundred ninety-four'); INSERT INTO t2 VALUES(1983, 47519, 'forty-seven thousand five hundred nineteen'); INSERT INTO t2 VALUES(1984, 94880, 'ninety-four thousand eight hundred eighty'); INSERT INTO t2 VALUES(1985, 40892, 'forty thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(1986, 71479, 'seventy-one thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(1987, 64232, 'sixty-four thousand two hundred thirty-two'); INSERT INTO t2 VALUES(1988, 32742, 'thirty-two thousand seven hundred forty-two'); INSERT INTO t2 VALUES(1989, 90228, 'ninety thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(1990, 70201, 'seventy thousand two hundred one'); INSERT INTO t2 VALUES(1991, 6076, 'six thousand seventy-six'); INSERT INTO t2 VALUES(1992, 73314, 'seventy-three thousand three hundred fourteen'); INSERT INTO t2 VALUES(1993, 98832, 'ninety-eight thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(1994, 71299, 'seventy-one thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(1995, 53494, 'fifty-three thousand four hundred ninety-four'); INSERT INTO t2 VALUES(1996, 90494, 'ninety thousand four hundred ninety-four'); INSERT INTO t2 VALUES(1997, 20872, 'twenty thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(1998, 57121, 'fifty-seven thousand one hundred twenty-one'); INSERT INTO t2 VALUES(1999, 69191, 'sixty-nine thousand one hundred ninety-one'); INSERT INTO t2 VALUES(2000, 86770, 'eighty-six thousand seven hundred seventy'); INSERT INTO t2 VALUES(2001, 3752, 'three thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(2002, 96753, 'ninety-six thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(2003, 89259, 'eighty-nine thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(2004, 87880, 'eighty-seven thousand eight hundred eighty'); INSERT INTO t2 VALUES(2005, 3264, 'three thousand two hundred sixty-four'); INSERT INTO t2 VALUES(2006, 12245, 'twelve thousand two hundred forty-five'); INSERT INTO t2 VALUES(2007, 20809, 'twenty thousand eight hundred nine'); INSERT INTO t2 VALUES(2008, 90643, 'ninety thousand six hundred forty-three'); INSERT INTO t2 VALUES(2009, 27602, 'twenty-seven thousand six hundred two'); INSERT INTO t2 VALUES(2010, 44882, 'forty-four thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(2011, 85915, 'eighty-five thousand nine hundred fifteen'); INSERT INTO t2 VALUES(2012, 4239, 'four thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(2013, 23915, 'twenty-three thousand nine hundred fifteen'); INSERT INTO t2 VALUES(2014, 50728, 'fifty thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(2015, 56336, 'fifty-six thousand three hundred thirty-six'); INSERT INTO t2 VALUES(2016, 35419, 'thirty-five thousand four hundred nineteen'); INSERT INTO t2 VALUES(2017, 31335, 'thirty-one thousand three hundred thirty-five'); INSERT INTO t2 VALUES(2018, 44501, 'forty-four thousand five hundred one'); INSERT INTO t2 VALUES(2019, 85963, 'eighty-five thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(2020, 32132, 'thirty-two thousand one hundred thirty-two'); INSERT INTO t2 VALUES(2021, 58756, 'fifty-eight thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(2022, 72895, 'seventy-two thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(2023, 61577, 'sixty-one thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(2024, 60470, 'sixty thousand four hundred seventy'); INSERT INTO t2 VALUES(2025, 13247, 'thirteen thousand two hundred forty-seven'); INSERT INTO t2 VALUES(2026, 80738, 'eighty thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(2027, 47364, 'forty-seven thousand three hundred sixty-four'); INSERT INTO t2 VALUES(2028, 71398, 'seventy-one thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(2029, 11309, 'eleven thousand three hundred nine'); INSERT INTO t2 VALUES(2030, 22150, 'twenty-two thousand one hundred fifty'); INSERT INTO t2 VALUES(2031, 32179, 'thirty-two thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(2032, 56661, 'fifty-six thousand six hundred sixty-one'); INSERT INTO t2 VALUES(2033, 64991, 'sixty-four thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(2034, 61813, 'sixty-one thousand eight hundred thirteen'); INSERT INTO t2 VALUES(2035, 58145, 'fifty-eight thousand one hundred forty-five'); INSERT INTO t2 VALUES(2036, 24919, 'twenty-four thousand nine hundred nineteen'); INSERT INTO t2 VALUES(2037, 88079, 'eighty-eight thousand seventy-nine'); INSERT INTO t2 VALUES(2038, 87582, 'eighty-seven thousand five hundred eighty-two'); INSERT INTO t2 VALUES(2039, 68372, 'sixty-eight thousand three hundred seventy-two'); INSERT INTO t2 VALUES(2040, 43188, 'forty-three thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(2041, 9546, 'nine thousand five hundred forty-six'); INSERT INTO t2 VALUES(2042, 91577, 'ninety-one thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(2043, 80437, 'eighty thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(2044, 44514, 'forty-four thousand five hundred fourteen'); INSERT INTO t2 VALUES(2045, 64110, 'sixty-four thousand one hundred ten'); INSERT INTO t2 VALUES(2046, 66779, 'sixty-six thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(2047, 29449, 'twenty-nine thousand four hundred forty-nine'); INSERT INTO t2 VALUES(2048, 27665, 'twenty-seven thousand six hundred sixty-five'); INSERT INTO t2 VALUES(2049, 43531, 'forty-three thousand five hundred thirty-one'); INSERT INTO t2 VALUES(2050, 34298, 'thirty-four thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(2051, 18662, 'eighteen thousand six hundred sixty-two'); INSERT INTO t2 VALUES(2052, 7015, 'seven thousand fifteen'); INSERT INTO t2 VALUES(2053, 20067, 'twenty thousand sixty-seven'); INSERT INTO t2 VALUES(2054, 55314, 'fifty-five thousand three hundred fourteen'); INSERT INTO t2 VALUES(2055, 39696, 'thirty-nine thousand six hundred ninety-six'); INSERT INTO t2 VALUES(2056, 63429, 'sixty-three thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(2057, 38900, 'thirty-eight thousand nine hundred'); INSERT INTO t2 VALUES(2058, 30312, 'thirty thousand three hundred twelve'); INSERT INTO t2 VALUES(2059, 39502, 'thirty-nine thousand five hundred two'); INSERT INTO t2 VALUES(2060, 60364, 'sixty thousand three hundred sixty-four'); INSERT INTO t2 VALUES(2061, 51299, 'fifty-one thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(2062, 37865, 'thirty-seven thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(2063, 7407, 'seven thousand four hundred seven'); INSERT INTO t2 VALUES(2064, 9582, 'nine thousand five hundred eighty-two'); INSERT INTO t2 VALUES(2065, 58152, 'fifty-eight thousand one hundred fifty-two'); INSERT INTO t2 VALUES(2066, 79602, 'seventy-nine thousand six hundred two'); INSERT INTO t2 VALUES(2067, 90566, 'ninety thousand five hundred sixty-six'); INSERT INTO t2 VALUES(2068, 41424, 'forty-one thousand four hundred twenty-four'); INSERT INTO t2 VALUES(2069, 67171, 'sixty-seven thousand one hundred seventy-one'); INSERT INTO t2 VALUES(2070, 52445, 'fifty-two thousand four hundred forty-five'); INSERT INTO t2 VALUES(2071, 81457, 'eighty-one thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(2072, 85944, 'eighty-five thousand nine hundred forty-four'); INSERT INTO t2 VALUES(2073, 99560, 'ninety-nine thousand five hundred sixty'); INSERT INTO t2 VALUES(2074, 1276, 'one thousand two hundred seventy-six'); INSERT INTO t2 VALUES(2075, 72906, 'seventy-two thousand nine hundred six'); INSERT INTO t2 VALUES(2076, 24124, 'twenty-four thousand one hundred twenty-four'); INSERT INTO t2 VALUES(2077, 14401, 'fourteen thousand four hundred one'); INSERT INTO t2 VALUES(2078, 18253, 'eighteen thousand two hundred fifty-three'); INSERT INTO t2 VALUES(2079, 35572, 'thirty-five thousand five hundred seventy-two'); INSERT INTO t2 VALUES(2080, 71690, 'seventy-one thousand six hundred ninety'); INSERT INTO t2 VALUES(2081, 39705, 'thirty-nine thousand seven hundred five'); INSERT INTO t2 VALUES(2082, 82133, 'eighty-two thousand one hundred thirty-three'); INSERT INTO t2 VALUES(2083, 86963, 'eighty-six thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(2084, 42539, 'forty-two thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(2085, 85308, 'eighty-five thousand three hundred eight'); INSERT INTO t2 VALUES(2086, 6880, 'six thousand eight hundred eighty'); INSERT INTO t2 VALUES(2087, 71638, 'seventy-one thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(2088, 49157, 'forty-nine thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(2089, 60099, 'sixty thousand ninety-nine'); INSERT INTO t2 VALUES(2090, 35743, 'thirty-five thousand seven hundred forty-three'); INSERT INTO t2 VALUES(2091, 45104, 'forty-five thousand one hundred four'); INSERT INTO t2 VALUES(2092, 77407, 'seventy-seven thousand four hundred seven'); INSERT INTO t2 VALUES(2093, 1195, 'one thousand one hundred ninety-five'); INSERT INTO t2 VALUES(2094, 26211, 'twenty-six thousand two hundred eleven'); INSERT INTO t2 VALUES(2095, 54913, 'fifty-four thousand nine hundred thirteen'); INSERT INTO t2 VALUES(2096, 3, 'three'); INSERT INTO t2 VALUES(2097, 18998, 'eighteen thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(2098, 20280, 'twenty thousand two hundred eighty'); INSERT INTO t2 VALUES(2099, 57239, 'fifty-seven thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(2100, 90306, 'ninety thousand three hundred six'); INSERT INTO t2 VALUES(2101, 10035, 'ten thousand thirty-five'); INSERT INTO t2 VALUES(2102, 69872, 'sixty-nine thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(2103, 88639, 'eighty-eight thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(2104, 58066, 'fifty-eight thousand sixty-six'); INSERT INTO t2 VALUES(2105, 93758, 'ninety-three thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(2106, 87206, 'eighty-seven thousand two hundred six'); INSERT INTO t2 VALUES(2107, 24001, 'twenty-four thousand one'); INSERT INTO t2 VALUES(2108, 69318, 'sixty-nine thousand three hundred eighteen'); INSERT INTO t2 VALUES(2109, 67822, 'sixty-seven thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(2110, 89055, 'eighty-nine thousand fifty-five'); INSERT INTO t2 VALUES(2111, 2312, 'two thousand three hundred twelve'); INSERT INTO t2 VALUES(2112, 67472, 'sixty-seven thousand four hundred seventy-two'); INSERT INTO t2 VALUES(2113, 2197, 'two thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(2114, 51272, 'fifty-one thousand two hundred seventy-two'); INSERT INTO t2 VALUES(2115, 10536, 'ten thousand five hundred thirty-six'); INSERT INTO t2 VALUES(2116, 36248, 'thirty-six thousand two hundred forty-eight'); INSERT INTO t2 VALUES(2117, 74010, 'seventy-four thousand ten'); INSERT INTO t2 VALUES(2118, 67864, 'sixty-seven thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(2119, 83737, 'eighty-three thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(2120, 47560, 'forty-seven thousand five hundred sixty'); INSERT INTO t2 VALUES(2121, 93387, 'ninety-three thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(2122, 70188, 'seventy thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(2123, 91976, 'ninety-one thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(2124, 69804, 'sixty-nine thousand eight hundred four'); INSERT INTO t2 VALUES(2125, 6141, 'six thousand one hundred forty-one'); INSERT INTO t2 VALUES(2126, 41284, 'forty-one thousand two hundred eighty-four'); INSERT INTO t2 VALUES(2127, 89238, 'eighty-nine thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(2128, 5069, 'five thousand sixty-nine'); INSERT INTO t2 VALUES(2129, 40242, 'forty thousand two hundred forty-two'); INSERT INTO t2 VALUES(2130, 82623, 'eighty-two thousand six hundred twenty-three'); INSERT INTO t2 VALUES(2131, 21387, 'twenty-one thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(2132, 13746, 'thirteen thousand seven hundred forty-six'); INSERT INTO t2 VALUES(2133, 61939, 'sixty-one thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(2134, 64398, 'sixty-four thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(2135, 21549, 'twenty-one thousand five hundred forty-nine'); INSERT INTO t2 VALUES(2136, 97911, 'ninety-seven thousand nine hundred eleven'); INSERT INTO t2 VALUES(2137, 35818, 'thirty-five thousand eight hundred eighteen'); INSERT INTO t2 VALUES(2138, 51233, 'fifty-one thousand two hundred thirty-three'); INSERT INTO t2 VALUES(2139, 33356, 'thirty-three thousand three hundred fifty-six'); INSERT INTO t2 VALUES(2140, 38959, 'thirty-eight thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(2141, 58251, 'fifty-eight thousand two hundred fifty-one'); INSERT INTO t2 VALUES(2142, 9259, 'nine thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(2143, 53169, 'fifty-three thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(2144, 49251, 'forty-nine thousand two hundred fifty-one'); INSERT INTO t2 VALUES(2145, 43461, 'forty-three thousand four hundred sixty-one'); INSERT INTO t2 VALUES(2146, 34150, 'thirty-four thousand one hundred fifty'); INSERT INTO t2 VALUES(2147, 55577, 'fifty-five thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(2148, 63376, 'sixty-three thousand three hundred seventy-six'); INSERT INTO t2 VALUES(2149, 25029, 'twenty-five thousand twenty-nine'); INSERT INTO t2 VALUES(2150, 28149, 'twenty-eight thousand one hundred forty-nine'); INSERT INTO t2 VALUES(2151, 28311, 'twenty-eight thousand three hundred eleven'); INSERT INTO t2 VALUES(2152, 5249, 'five thousand two hundred forty-nine'); INSERT INTO t2 VALUES(2153, 85526, 'eighty-five thousand five hundred twenty-six'); INSERT INTO t2 VALUES(2154, 43414, 'forty-three thousand four hundred fourteen'); INSERT INTO t2 VALUES(2155, 47719, 'forty-seven thousand seven hundred nineteen'); INSERT INTO t2 VALUES(2156, 39694, 'thirty-nine thousand six hundred ninety-four'); INSERT INTO t2 VALUES(2157, 32096, 'thirty-two thousand ninety-six'); INSERT INTO t2 VALUES(2158, 27455, 'twenty-seven thousand four hundred fifty-five'); INSERT INTO t2 VALUES(2159, 61155, 'sixty-one thousand one hundred fifty-five'); INSERT INTO t2 VALUES(2160, 9475, 'nine thousand four hundred seventy-five'); INSERT INTO t2 VALUES(2161, 43672, 'forty-three thousand six hundred seventy-two'); INSERT INTO t2 VALUES(2162, 56556, 'fifty-six thousand five hundred fifty-six'); INSERT INTO t2 VALUES(2163, 36973, 'thirty-six thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(2164, 85094, 'eighty-five thousand ninety-four'); INSERT INTO t2 VALUES(2165, 68290, 'sixty-eight thousand two hundred ninety'); INSERT INTO t2 VALUES(2166, 27193, 'twenty-seven thousand one hundred ninety-three'); INSERT INTO t2 VALUES(2167, 31592, 'thirty-one thousand five hundred ninety-two'); INSERT INTO t2 VALUES(2168, 51130, 'fifty-one thousand one hundred thirty'); INSERT INTO t2 VALUES(2169, 74563, 'seventy-four thousand five hundred sixty-three'); INSERT INTO t2 VALUES(2170, 15013, 'fifteen thousand thirteen'); INSERT INTO t2 VALUES(2171, 80523, 'eighty thousand five hundred twenty-three'); INSERT INTO t2 VALUES(2172, 22, 'twenty-two'); INSERT INTO t2 VALUES(2173, 95473, 'ninety-five thousand four hundred seventy-three'); INSERT INTO t2 VALUES(2174, 93807, 'ninety-three thousand eight hundred seven'); INSERT INTO t2 VALUES(2175, 42106, 'forty-two thousand one hundred six'); INSERT INTO t2 VALUES(2176, 78199, 'seventy-eight thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(2177, 5356, 'five thousand three hundred fifty-six'); INSERT INTO t2 VALUES(2178, 19195, 'nineteen thousand one hundred ninety-five'); INSERT INTO t2 VALUES(2179, 80433, 'eighty thousand four hundred thirty-three'); INSERT INTO t2 VALUES(2180, 62456, 'sixty-two thousand four hundred fifty-six'); INSERT INTO t2 VALUES(2181, 85223, 'eighty-five thousand two hundred twenty-three'); INSERT INTO t2 VALUES(2182, 72599, 'seventy-two thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(2183, 97420, 'ninety-seven thousand four hundred twenty'); INSERT INTO t2 VALUES(2184, 27856, 'twenty-seven thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(2185, 95101, 'ninety-five thousand one hundred one'); INSERT INTO t2 VALUES(2186, 8371, 'eight thousand three hundred seventy-one'); INSERT INTO t2 VALUES(2187, 14046, 'fourteen thousand forty-six'); INSERT INTO t2 VALUES(2188, 6270, 'six thousand two hundred seventy'); INSERT INTO t2 VALUES(2189, 46201, 'forty-six thousand two hundred one'); INSERT INTO t2 VALUES(2190, 78681, 'seventy-eight thousand six hundred eighty-one'); INSERT INTO t2 VALUES(2191, 32539, 'thirty-two thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(2192, 95630, 'ninety-five thousand six hundred thirty'); INSERT INTO t2 VALUES(2193, 99263, 'ninety-nine thousand two hundred sixty-three'); INSERT INTO t2 VALUES(2194, 80471, 'eighty thousand four hundred seventy-one'); INSERT INTO t2 VALUES(2195, 36378, 'thirty-six thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(2196, 36099, 'thirty-six thousand ninety-nine'); INSERT INTO t2 VALUES(2197, 64056, 'sixty-four thousand fifty-six'); INSERT INTO t2 VALUES(2198, 7431, 'seven thousand four hundred thirty-one'); INSERT INTO t2 VALUES(2199, 48623, 'forty-eight thousand six hundred twenty-three'); INSERT INTO t2 VALUES(2200, 29058, 'twenty-nine thousand fifty-eight'); INSERT INTO t2 VALUES(2201, 24829, 'twenty-four thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(2202, 65681, 'sixty-five thousand six hundred eighty-one'); INSERT INTO t2 VALUES(2203, 33971, 'thirty-three thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(2204, 57254, 'fifty-seven thousand two hundred fifty-four'); INSERT INTO t2 VALUES(2205, 96450, 'ninety-six thousand four hundred fifty'); INSERT INTO t2 VALUES(2206, 71274, 'seventy-one thousand two hundred seventy-four'); INSERT INTO t2 VALUES(2207, 61255, 'sixty-one thousand two hundred fifty-five'); INSERT INTO t2 VALUES(2208, 86567, 'eighty-six thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(2209, 26341, 'twenty-six thousand three hundred forty-one'); INSERT INTO t2 VALUES(2210, 35651, 'thirty-five thousand six hundred fifty-one'); INSERT INTO t2 VALUES(2211, 29930, 'twenty-nine thousand nine hundred thirty'); INSERT INTO t2 VALUES(2212, 8986, 'eight thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(2213, 70650, 'seventy thousand six hundred fifty'); INSERT INTO t2 VALUES(2214, 25365, 'twenty-five thousand three hundred sixty-five'); INSERT INTO t2 VALUES(2215, 50253, 'fifty thousand two hundred fifty-three'); INSERT INTO t2 VALUES(2216, 22647, 'twenty-two thousand six hundred forty-seven'); INSERT INTO t2 VALUES(2217, 5939, 'five thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(2218, 21467, 'twenty-one thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(2219, 60173, 'sixty thousand one hundred seventy-three'); INSERT INTO t2 VALUES(2220, 65345, 'sixty-five thousand three hundred forty-five'); INSERT INTO t2 VALUES(2221, 17820, 'seventeen thousand eight hundred twenty'); INSERT INTO t2 VALUES(2222, 65933, 'sixty-five thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(2223, 10228, 'ten thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(2224, 32722, 'thirty-two thousand seven hundred twenty-two'); INSERT INTO t2 VALUES(2225, 19795, 'nineteen thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(2226, 41464, 'forty-one thousand four hundred sixty-four'); INSERT INTO t2 VALUES(2227, 65388, 'sixty-five thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(2228, 19735, 'nineteen thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(2229, 45011, 'forty-five thousand eleven'); INSERT INTO t2 VALUES(2230, 37315, 'thirty-seven thousand three hundred fifteen'); INSERT INTO t2 VALUES(2231, 53420, 'fifty-three thousand four hundred twenty'); INSERT INTO t2 VALUES(2232, 13137, 'thirteen thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(2233, 89350, 'eighty-nine thousand three hundred fifty'); INSERT INTO t2 VALUES(2234, 11233, 'eleven thousand two hundred thirty-three'); INSERT INTO t2 VALUES(2235, 64599, 'sixty-four thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(2236, 22046, 'twenty-two thousand forty-six'); INSERT INTO t2 VALUES(2237, 98274, 'ninety-eight thousand two hundred seventy-four'); INSERT INTO t2 VALUES(2238, 72470, 'seventy-two thousand four hundred seventy'); INSERT INTO t2 VALUES(2239, 587, 'five hundred eighty-seven'); INSERT INTO t2 VALUES(2240, 75875, 'seventy-five thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(2241, 29684, 'twenty-nine thousand six hundred eighty-four'); INSERT INTO t2 VALUES(2242, 89957, 'eighty-nine thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(2243, 37141, 'thirty-seven thousand one hundred forty-one'); INSERT INTO t2 VALUES(2244, 42203, 'forty-two thousand two hundred three'); INSERT INTO t2 VALUES(2245, 7109, 'seven thousand one hundred nine'); INSERT INTO t2 VALUES(2246, 3368, 'three thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(2247, 12747, 'twelve thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(2248, 3344, 'three thousand three hundred forty-four'); INSERT INTO t2 VALUES(2249, 70493, 'seventy thousand four hundred ninety-three'); INSERT INTO t2 VALUES(2250, 74214, 'seventy-four thousand two hundred fourteen'); INSERT INTO t2 VALUES(2251, 36198, 'thirty-six thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(2252, 86536, 'eighty-six thousand five hundred thirty-six'); INSERT INTO t2 VALUES(2253, 15696, 'fifteen thousand six hundred ninety-six'); INSERT INTO t2 VALUES(2254, 35018, 'thirty-five thousand eighteen'); INSERT INTO t2 VALUES(2255, 67545, 'sixty-seven thousand five hundred forty-five'); INSERT INTO t2 VALUES(2256, 31493, 'thirty-one thousand four hundred ninety-three'); INSERT INTO t2 VALUES(2257, 98082, 'ninety-eight thousand eighty-two'); INSERT INTO t2 VALUES(2258, 19480, 'nineteen thousand four hundred eighty'); INSERT INTO t2 VALUES(2259, 64459, 'sixty-four thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(2260, 56855, 'fifty-six thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(2261, 90207, 'ninety thousand two hundred seven'); INSERT INTO t2 VALUES(2262, 33924, 'thirty-three thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(2263, 97787, 'ninety-seven thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(2264, 9831, 'nine thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(2265, 96341, 'ninety-six thousand three hundred forty-one'); INSERT INTO t2 VALUES(2266, 94285, 'ninety-four thousand two hundred eighty-five'); INSERT INTO t2 VALUES(2267, 38535, 'thirty-eight thousand five hundred thirty-five'); INSERT INTO t2 VALUES(2268, 18406, 'eighteen thousand four hundred six'); INSERT INTO t2 VALUES(2269, 41884, 'forty-one thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(2270, 27215, 'twenty-seven thousand two hundred fifteen'); INSERT INTO t2 VALUES(2271, 78374, 'seventy-eight thousand three hundred seventy-four'); INSERT INTO t2 VALUES(2272, 70693, 'seventy thousand six hundred ninety-three'); INSERT INTO t2 VALUES(2273, 96026, 'ninety-six thousand twenty-six'); INSERT INTO t2 VALUES(2274, 87994, 'eighty-seven thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(2275, 45819, 'forty-five thousand eight hundred nineteen'); INSERT INTO t2 VALUES(2276, 52336, 'fifty-two thousand three hundred thirty-six'); INSERT INTO t2 VALUES(2277, 37564, 'thirty-seven thousand five hundred sixty-four'); INSERT INTO t2 VALUES(2278, 90518, 'ninety thousand five hundred eighteen'); INSERT INTO t2 VALUES(2279, 6198, 'six thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(2280, 64602, 'sixty-four thousand six hundred two'); INSERT INTO t2 VALUES(2281, 74861, 'seventy-four thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(2282, 99850, 'ninety-nine thousand eight hundred fifty'); INSERT INTO t2 VALUES(2283, 93344, 'ninety-three thousand three hundred forty-four'); INSERT INTO t2 VALUES(2284, 83943, 'eighty-three thousand nine hundred forty-three'); INSERT INTO t2 VALUES(2285, 89998, 'eighty-nine thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(2286, 27925, 'twenty-seven thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(2287, 78320, 'seventy-eight thousand three hundred twenty'); INSERT INTO t2 VALUES(2288, 6201, 'six thousand two hundred one'); INSERT INTO t2 VALUES(2289, 41579, 'forty-one thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(2290, 70654, 'seventy thousand six hundred fifty-four'); INSERT INTO t2 VALUES(2291, 44328, 'forty-four thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(2292, 70637, 'seventy thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(2293, 51584, 'fifty-one thousand five hundred eighty-four'); INSERT INTO t2 VALUES(2294, 40019, 'forty thousand nineteen'); INSERT INTO t2 VALUES(2295, 4733, 'four thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(2296, 63893, 'sixty-three thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(2297, 21551, 'twenty-one thousand five hundred fifty-one'); INSERT INTO t2 VALUES(2298, 72776, 'seventy-two thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(2299, 73771, 'seventy-three thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(2300, 26461, 'twenty-six thousand four hundred sixty-one'); INSERT INTO t2 VALUES(2301, 51916, 'fifty-one thousand nine hundred sixteen'); INSERT INTO t2 VALUES(2302, 7470, 'seven thousand four hundred seventy'); INSERT INTO t2 VALUES(2303, 26176, 'twenty-six thousand one hundred seventy-six'); INSERT INTO t2 VALUES(2304, 28194, 'twenty-eight thousand one hundred ninety-four'); INSERT INTO t2 VALUES(2305, 71326, 'seventy-one thousand three hundred twenty-six'); INSERT INTO t2 VALUES(2306, 19033, 'nineteen thousand thirty-three'); INSERT INTO t2 VALUES(2307, 10179, 'ten thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(2308, 51575, 'fifty-one thousand five hundred seventy-five'); INSERT INTO t2 VALUES(2309, 37690, 'thirty-seven thousand six hundred ninety'); INSERT INTO t2 VALUES(2310, 15021, 'fifteen thousand twenty-one'); INSERT INTO t2 VALUES(2311, 47954, 'forty-seven thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(2312, 99373, 'ninety-nine thousand three hundred seventy-three'); INSERT INTO t2 VALUES(2313, 60636, 'sixty thousand six hundred thirty-six'); INSERT INTO t2 VALUES(2314, 40008, 'forty thousand eight'); INSERT INTO t2 VALUES(2315, 23115, 'twenty-three thousand one hundred fifteen'); INSERT INTO t2 VALUES(2316, 83784, 'eighty-three thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(2317, 97564, 'ninety-seven thousand five hundred sixty-four'); INSERT INTO t2 VALUES(2318, 23192, 'twenty-three thousand one hundred ninety-two'); INSERT INTO t2 VALUES(2319, 35700, 'thirty-five thousand seven hundred'); INSERT INTO t2 VALUES(2320, 23968, 'twenty-three thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(2321, 30846, 'thirty thousand eight hundred forty-six'); INSERT INTO t2 VALUES(2322, 97968, 'ninety-seven thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(2323, 15842, 'fifteen thousand eight hundred forty-two'); INSERT INTO t2 VALUES(2324, 13572, 'thirteen thousand five hundred seventy-two'); INSERT INTO t2 VALUES(2325, 17630, 'seventeen thousand six hundred thirty'); INSERT INTO t2 VALUES(2326, 74055, 'seventy-four thousand fifty-five'); INSERT INTO t2 VALUES(2327, 25273, 'twenty-five thousand two hundred seventy-three'); INSERT INTO t2 VALUES(2328, 39041, 'thirty-nine thousand forty-one'); INSERT INTO t2 VALUES(2329, 11972, 'eleven thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(2330, 33519, 'thirty-three thousand five hundred nineteen'); INSERT INTO t2 VALUES(2331, 35065, 'thirty-five thousand sixty-five'); INSERT INTO t2 VALUES(2332, 65148, 'sixty-five thousand one hundred forty-eight'); INSERT INTO t2 VALUES(2333, 60959, 'sixty thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(2334, 96394, 'ninety-six thousand three hundred ninety-four'); INSERT INTO t2 VALUES(2335, 64307, 'sixty-four thousand three hundred seven'); INSERT INTO t2 VALUES(2336, 45596, 'forty-five thousand five hundred ninety-six'); INSERT INTO t2 VALUES(2337, 94741, 'ninety-four thousand seven hundred forty-one'); INSERT INTO t2 VALUES(2338, 315, 'three hundred fifteen'); INSERT INTO t2 VALUES(2339, 92997, 'ninety-two thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(2340, 61307, 'sixty-one thousand three hundred seven'); INSERT INTO t2 VALUES(2341, 25247, 'twenty-five thousand two hundred forty-seven'); INSERT INTO t2 VALUES(2342, 43658, 'forty-three thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(2343, 76134, 'seventy-six thousand one hundred thirty-four'); INSERT INTO t2 VALUES(2344, 8727, 'eight thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(2345, 82124, 'eighty-two thousand one hundred twenty-four'); INSERT INTO t2 VALUES(2346, 94208, 'ninety-four thousand two hundred eight'); INSERT INTO t2 VALUES(2347, 83546, 'eighty-three thousand five hundred forty-six'); INSERT INTO t2 VALUES(2348, 80575, 'eighty thousand five hundred seventy-five'); INSERT INTO t2 VALUES(2349, 96566, 'ninety-six thousand five hundred sixty-six'); INSERT INTO t2 VALUES(2350, 52045, 'fifty-two thousand forty-five'); INSERT INTO t2 VALUES(2351, 37304, 'thirty-seven thousand three hundred four'); INSERT INTO t2 VALUES(2352, 53861, 'fifty-three thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(2353, 40200, 'forty thousand two hundred'); INSERT INTO t2 VALUES(2354, 67604, 'sixty-seven thousand six hundred four'); INSERT INTO t2 VALUES(2355, 72285, 'seventy-two thousand two hundred eighty-five'); INSERT INTO t2 VALUES(2356, 60117, 'sixty thousand one hundred seventeen'); INSERT INTO t2 VALUES(2357, 28125, 'twenty-eight thousand one hundred twenty-five'); INSERT INTO t2 VALUES(2358, 97088, 'ninety-seven thousand eighty-eight'); INSERT INTO t2 VALUES(2359, 73809, 'seventy-three thousand eight hundred nine'); INSERT INTO t2 VALUES(2360, 89593, 'eighty-nine thousand five hundred ninety-three'); INSERT INTO t2 VALUES(2361, 80981, 'eighty thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(2362, 38214, 'thirty-eight thousand two hundred fourteen'); INSERT INTO t2 VALUES(2363, 63465, 'sixty-three thousand four hundred sixty-five'); INSERT INTO t2 VALUES(2364, 46151, 'forty-six thousand one hundred fifty-one'); INSERT INTO t2 VALUES(2365, 66353, 'sixty-six thousand three hundred fifty-three'); INSERT INTO t2 VALUES(2366, 27544, 'twenty-seven thousand five hundred forty-four'); INSERT INTO t2 VALUES(2367, 13517, 'thirteen thousand five hundred seventeen'); INSERT INTO t2 VALUES(2368, 43298, 'forty-three thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(2369, 3013, 'three thousand thirteen'); INSERT INTO t2 VALUES(2370, 43673, 'forty-three thousand six hundred seventy-three'); INSERT INTO t2 VALUES(2371, 89406, 'eighty-nine thousand four hundred six'); INSERT INTO t2 VALUES(2372, 16649, 'sixteen thousand six hundred forty-nine'); INSERT INTO t2 VALUES(2373, 58159, 'fifty-eight thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(2374, 72424, 'seventy-two thousand four hundred twenty-four'); INSERT INTO t2 VALUES(2375, 28780, 'twenty-eight thousand seven hundred eighty'); INSERT INTO t2 VALUES(2376, 15716, 'fifteen thousand seven hundred sixteen'); INSERT INTO t2 VALUES(2377, 91549, 'ninety-one thousand five hundred forty-nine'); INSERT INTO t2 VALUES(2378, 83986, 'eighty-three thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(2379, 29747, 'twenty-nine thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(2380, 82477, 'eighty-two thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(2381, 80074, 'eighty thousand seventy-four'); INSERT INTO t2 VALUES(2382, 96058, 'ninety-six thousand fifty-eight'); INSERT INTO t2 VALUES(2383, 89571, 'eighty-nine thousand five hundred seventy-one'); INSERT INTO t2 VALUES(2384, 26561, 'twenty-six thousand five hundred sixty-one'); INSERT INTO t2 VALUES(2385, 32468, 'thirty-two thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(2386, 16669, 'sixteen thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(2387, 41302, 'forty-one thousand three hundred two'); INSERT INTO t2 VALUES(2388, 75807, 'seventy-five thousand eight hundred seven'); INSERT INTO t2 VALUES(2389, 28804, 'twenty-eight thousand eight hundred four'); INSERT INTO t2 VALUES(2390, 36879, 'thirty-six thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(2391, 96669, 'ninety-six thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(2392, 90342, 'ninety thousand three hundred forty-two'); INSERT INTO t2 VALUES(2393, 7542, 'seven thousand five hundred forty-two'); INSERT INTO t2 VALUES(2394, 47970, 'forty-seven thousand nine hundred seventy'); INSERT INTO t2 VALUES(2395, 92076, 'ninety-two thousand seventy-six'); INSERT INTO t2 VALUES(2396, 39852, 'thirty-nine thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(2397, 38803, 'thirty-eight thousand eight hundred three'); INSERT INTO t2 VALUES(2398, 19442, 'nineteen thousand four hundred forty-two'); INSERT INTO t2 VALUES(2399, 78578, 'seventy-eight thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(2400, 74903, 'seventy-four thousand nine hundred three'); INSERT INTO t2 VALUES(2401, 87725, 'eighty-seven thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(2402, 87059, 'eighty-seven thousand fifty-nine'); INSERT INTO t2 VALUES(2403, 15772, 'fifteen thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(2404, 17631, 'seventeen thousand six hundred thirty-one'); INSERT INTO t2 VALUES(2405, 15798, 'fifteen thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(2406, 43104, 'forty-three thousand one hundred four'); INSERT INTO t2 VALUES(2407, 1195, 'one thousand one hundred ninety-five'); INSERT INTO t2 VALUES(2408, 43211, 'forty-three thousand two hundred eleven'); INSERT INTO t2 VALUES(2409, 73078, 'seventy-three thousand seventy-eight'); INSERT INTO t2 VALUES(2410, 23976, 'twenty-three thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(2411, 63319, 'sixty-three thousand three hundred nineteen'); INSERT INTO t2 VALUES(2412, 89991, 'eighty-nine thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(2413, 71907, 'seventy-one thousand nine hundred seven'); INSERT INTO t2 VALUES(2414, 45419, 'forty-five thousand four hundred nineteen'); INSERT INTO t2 VALUES(2415, 51615, 'fifty-one thousand six hundred fifteen'); INSERT INTO t2 VALUES(2416, 28240, 'twenty-eight thousand two hundred forty'); INSERT INTO t2 VALUES(2417, 55834, 'fifty-five thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(2418, 77916, 'seventy-seven thousand nine hundred sixteen'); INSERT INTO t2 VALUES(2419, 81683, 'eighty-one thousand six hundred eighty-three'); INSERT INTO t2 VALUES(2420, 56127, 'fifty-six thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(2421, 11304, 'eleven thousand three hundred four'); INSERT INTO t2 VALUES(2422, 48279, 'forty-eight thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(2423, 93430, 'ninety-three thousand four hundred thirty'); INSERT INTO t2 VALUES(2424, 85293, 'eighty-five thousand two hundred ninety-three'); INSERT INTO t2 VALUES(2425, 71015, 'seventy-one thousand fifteen'); INSERT INTO t2 VALUES(2426, 69462, 'sixty-nine thousand four hundred sixty-two'); INSERT INTO t2 VALUES(2427, 27337, 'twenty-seven thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(2428, 12663, 'twelve thousand six hundred sixty-three'); INSERT INTO t2 VALUES(2429, 20226, 'twenty thousand two hundred twenty-six'); INSERT INTO t2 VALUES(2430, 52823, 'fifty-two thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(2431, 13894, 'thirteen thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(2432, 15928, 'fifteen thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(2433, 98981, 'ninety-eight thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(2434, 90676, 'ninety thousand six hundred seventy-six'); INSERT INTO t2 VALUES(2435, 42296, 'forty-two thousand two hundred ninety-six'); INSERT INTO t2 VALUES(2436, 22083, 'twenty-two thousand eighty-three'); INSERT INTO t2 VALUES(2437, 75853, 'seventy-five thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(2438, 18942, 'eighteen thousand nine hundred forty-two'); INSERT INTO t2 VALUES(2439, 81482, 'eighty-one thousand four hundred eighty-two'); INSERT INTO t2 VALUES(2440, 1246, 'one thousand two hundred forty-six'); INSERT INTO t2 VALUES(2441, 61614, 'sixty-one thousand six hundred fourteen'); INSERT INTO t2 VALUES(2442, 31021, 'thirty-one thousand twenty-one'); INSERT INTO t2 VALUES(2443, 98151, 'ninety-eight thousand one hundred fifty-one'); INSERT INTO t2 VALUES(2444, 6676, 'six thousand six hundred seventy-six'); INSERT INTO t2 VALUES(2445, 45247, 'forty-five thousand two hundred forty-seven'); INSERT INTO t2 VALUES(2446, 54998, 'fifty-four thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(2447, 16592, 'sixteen thousand five hundred ninety-two'); INSERT INTO t2 VALUES(2448, 35662, 'thirty-five thousand six hundred sixty-two'); INSERT INTO t2 VALUES(2449, 76092, 'seventy-six thousand ninety-two'); INSERT INTO t2 VALUES(2450, 52, 'fifty-two'); INSERT INTO t2 VALUES(2451, 29506, 'twenty-nine thousand five hundred six'); INSERT INTO t2 VALUES(2452, 851, 'eight hundred fifty-one'); INSERT INTO t2 VALUES(2453, 40062, 'forty thousand sixty-two'); INSERT INTO t2 VALUES(2454, 28317, 'twenty-eight thousand three hundred seventeen'); INSERT INTO t2 VALUES(2455, 37254, 'thirty-seven thousand two hundred fifty-four'); INSERT INTO t2 VALUES(2456, 36890, 'thirty-six thousand eight hundred ninety'); INSERT INTO t2 VALUES(2457, 19283, 'nineteen thousand two hundred eighty-three'); INSERT INTO t2 VALUES(2458, 36251, 'thirty-six thousand two hundred fifty-one'); INSERT INTO t2 VALUES(2459, 67984, 'sixty-seven thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(2460, 67460, 'sixty-seven thousand four hundred sixty'); INSERT INTO t2 VALUES(2461, 76465, 'seventy-six thousand four hundred sixty-five'); INSERT INTO t2 VALUES(2462, 50543, 'fifty thousand five hundred forty-three'); INSERT INTO t2 VALUES(2463, 51509, 'fifty-one thousand five hundred nine'); INSERT INTO t2 VALUES(2464, 98584, 'ninety-eight thousand five hundred eighty-four'); INSERT INTO t2 VALUES(2465, 4214, 'four thousand two hundred fourteen'); INSERT INTO t2 VALUES(2466, 93388, 'ninety-three thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(2467, 62723, 'sixty-two thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(2468, 59784, 'fifty-nine thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(2469, 39638, 'thirty-nine thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(2470, 15730, 'fifteen thousand seven hundred thirty'); INSERT INTO t2 VALUES(2471, 96301, 'ninety-six thousand three hundred one'); INSERT INTO t2 VALUES(2472, 22050, 'twenty-two thousand fifty'); INSERT INTO t2 VALUES(2473, 1017, 'one thousand seventeen'); INSERT INTO t2 VALUES(2474, 24030, 'twenty-four thousand thirty'); INSERT INTO t2 VALUES(2475, 38099, 'thirty-eight thousand ninety-nine'); INSERT INTO t2 VALUES(2476, 32218, 'thirty-two thousand two hundred eighteen'); INSERT INTO t2 VALUES(2477, 20023, 'twenty thousand twenty-three'); INSERT INTO t2 VALUES(2478, 44951, 'forty-four thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(2479, 72567, 'seventy-two thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(2480, 31626, 'thirty-one thousand six hundred twenty-six'); INSERT INTO t2 VALUES(2481, 72593, 'seventy-two thousand five hundred ninety-three'); INSERT INTO t2 VALUES(2482, 54291, 'fifty-four thousand two hundred ninety-one'); INSERT INTO t2 VALUES(2483, 83063, 'eighty-three thousand sixty-three'); INSERT INTO t2 VALUES(2484, 13836, 'thirteen thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(2485, 41860, 'forty-one thousand eight hundred sixty'); INSERT INTO t2 VALUES(2486, 89723, 'eighty-nine thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(2487, 14732, 'fourteen thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(2488, 15002, 'fifteen thousand two'); INSERT INTO t2 VALUES(2489, 92065, 'ninety-two thousand sixty-five'); INSERT INTO t2 VALUES(2490, 40067, 'forty thousand sixty-seven'); INSERT INTO t2 VALUES(2491, 57828, 'fifty-seven thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(2492, 85335, 'eighty-five thousand three hundred thirty-five'); INSERT INTO t2 VALUES(2493, 10602, 'ten thousand six hundred two'); INSERT INTO t2 VALUES(2494, 1476, 'one thousand four hundred seventy-six'); INSERT INTO t2 VALUES(2495, 93934, 'ninety-three thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(2496, 78768, 'seventy-eight thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(2497, 71835, 'seventy-one thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(2498, 55943, 'fifty-five thousand nine hundred forty-three'); INSERT INTO t2 VALUES(2499, 33941, 'thirty-three thousand nine hundred forty-one'); INSERT INTO t2 VALUES(2500, 94279, 'ninety-four thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(2501, 15291, 'fifteen thousand two hundred ninety-one'); INSERT INTO t2 VALUES(2502, 41682, 'forty-one thousand six hundred eighty-two'); INSERT INTO t2 VALUES(2503, 81048, 'eighty-one thousand forty-eight'); INSERT INTO t2 VALUES(2504, 87177, 'eighty-seven thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(2505, 6726, 'six thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(2506, 75433, 'seventy-five thousand four hundred thirty-three'); INSERT INTO t2 VALUES(2507, 50001, 'fifty thousand one'); INSERT INTO t2 VALUES(2508, 65321, 'sixty-five thousand three hundred twenty-one'); INSERT INTO t2 VALUES(2509, 95932, 'ninety-five thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(2510, 50745, 'fifty thousand seven hundred forty-five'); INSERT INTO t2 VALUES(2511, 44178, 'forty-four thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(2512, 4666, 'four thousand six hundred sixty-six'); INSERT INTO t2 VALUES(2513, 86217, 'eighty-six thousand two hundred seventeen'); INSERT INTO t2 VALUES(2514, 29911, 'twenty-nine thousand nine hundred eleven'); INSERT INTO t2 VALUES(2515, 32937, 'thirty-two thousand nine hundred thirty-seven'); INSERT INTO t2 VALUES(2516, 53630, 'fifty-three thousand six hundred thirty'); INSERT INTO t2 VALUES(2517, 2615, 'two thousand six hundred fifteen'); INSERT INTO t2 VALUES(2518, 2368, 'two thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(2519, 29127, 'twenty-nine thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(2520, 5200, 'five thousand two hundred'); INSERT INTO t2 VALUES(2521, 59612, 'fifty-nine thousand six hundred twelve'); INSERT INTO t2 VALUES(2522, 28958, 'twenty-eight thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(2523, 5703, 'five thousand seven hundred three'); INSERT INTO t2 VALUES(2524, 80642, 'eighty thousand six hundred forty-two'); INSERT INTO t2 VALUES(2525, 45690, 'forty-five thousand six hundred ninety'); INSERT INTO t2 VALUES(2526, 49569, 'forty-nine thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(2527, 7904, 'seven thousand nine hundred four'); INSERT INTO t2 VALUES(2528, 11110, 'eleven thousand one hundred ten'); INSERT INTO t2 VALUES(2529, 98775, 'ninety-eight thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(2530, 20170, 'twenty thousand one hundred seventy'); INSERT INTO t2 VALUES(2531, 17019, 'seventeen thousand nineteen'); INSERT INTO t2 VALUES(2532, 96331, 'ninety-six thousand three hundred thirty-one'); INSERT INTO t2 VALUES(2533, 65337, 'sixty-five thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(2534, 38354, 'thirty-eight thousand three hundred fifty-four'); INSERT INTO t2 VALUES(2535, 60268, 'sixty thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(2536, 30622, 'thirty thousand six hundred twenty-two'); INSERT INTO t2 VALUES(2537, 32805, 'thirty-two thousand eight hundred five'); INSERT INTO t2 VALUES(2538, 49165, 'forty-nine thousand one hundred sixty-five'); INSERT INTO t2 VALUES(2539, 84538, 'eighty-four thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(2540, 32316, 'thirty-two thousand three hundred sixteen'); INSERT INTO t2 VALUES(2541, 57707, 'fifty-seven thousand seven hundred seven'); INSERT INTO t2 VALUES(2542, 95842, 'ninety-five thousand eight hundred forty-two'); INSERT INTO t2 VALUES(2543, 14067, 'fourteen thousand sixty-seven'); INSERT INTO t2 VALUES(2544, 45424, 'forty-five thousand four hundred twenty-four'); INSERT INTO t2 VALUES(2545, 13272, 'thirteen thousand two hundred seventy-two'); INSERT INTO t2 VALUES(2546, 94806, 'ninety-four thousand eight hundred six'); INSERT INTO t2 VALUES(2547, 56695, 'fifty-six thousand six hundred ninety-five'); INSERT INTO t2 VALUES(2548, 41079, 'forty-one thousand seventy-nine'); INSERT INTO t2 VALUES(2549, 73507, 'seventy-three thousand five hundred seven'); INSERT INTO t2 VALUES(2550, 49289, 'forty-nine thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(2551, 16669, 'sixteen thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(2552, 53495, 'fifty-three thousand four hundred ninety-five'); INSERT INTO t2 VALUES(2553, 33072, 'thirty-three thousand seventy-two'); INSERT INTO t2 VALUES(2554, 6951, 'six thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(2555, 77249, 'seventy-seven thousand two hundred forty-nine'); INSERT INTO t2 VALUES(2556, 33756, 'thirty-three thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(2557, 95757, 'ninety-five thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(2558, 60092, 'sixty thousand ninety-two'); INSERT INTO t2 VALUES(2559, 61249, 'sixty-one thousand two hundred forty-nine'); INSERT INTO t2 VALUES(2560, 34995, 'thirty-four thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(2561, 83682, 'eighty-three thousand six hundred eighty-two'); INSERT INTO t2 VALUES(2562, 57389, 'fifty-seven thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(2563, 12038, 'twelve thousand thirty-eight'); INSERT INTO t2 VALUES(2564, 25346, 'twenty-five thousand three hundred forty-six'); INSERT INTO t2 VALUES(2565, 21634, 'twenty-one thousand six hundred thirty-four'); INSERT INTO t2 VALUES(2566, 90352, 'ninety thousand three hundred fifty-two'); INSERT INTO t2 VALUES(2567, 908, 'nine hundred eight'); INSERT INTO t2 VALUES(2568, 29124, 'twenty-nine thousand one hundred twenty-four'); INSERT INTO t2 VALUES(2569, 13884, 'thirteen thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(2570, 53757, 'fifty-three thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(2571, 76121, 'seventy-six thousand one hundred twenty-one'); INSERT INTO t2 VALUES(2572, 71727, 'seventy-one thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(2573, 45927, 'forty-five thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(2574, 28338, 'twenty-eight thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(2575, 89504, 'eighty-nine thousand five hundred four'); INSERT INTO t2 VALUES(2576, 73450, 'seventy-three thousand four hundred fifty'); INSERT INTO t2 VALUES(2577, 19716, 'nineteen thousand seven hundred sixteen'); INSERT INTO t2 VALUES(2578, 99347, 'ninety-nine thousand three hundred forty-seven'); INSERT INTO t2 VALUES(2579, 22889, 'twenty-two thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(2580, 68280, 'sixty-eight thousand two hundred eighty'); INSERT INTO t2 VALUES(2581, 13069, 'thirteen thousand sixty-nine'); INSERT INTO t2 VALUES(2582, 13040, 'thirteen thousand forty'); INSERT INTO t2 VALUES(2583, 24883, 'twenty-four thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(2584, 84595, 'eighty-four thousand five hundred ninety-five'); INSERT INTO t2 VALUES(2585, 42369, 'forty-two thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(2586, 32863, 'thirty-two thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(2587, 61898, 'sixty-one thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(2588, 80829, 'eighty thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(2589, 17682, 'seventeen thousand six hundred eighty-two'); INSERT INTO t2 VALUES(2590, 83951, 'eighty-three thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(2591, 97139, 'ninety-seven thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(2592, 62950, 'sixty-two thousand nine hundred fifty'); INSERT INTO t2 VALUES(2593, 39594, 'thirty-nine thousand five hundred ninety-four'); INSERT INTO t2 VALUES(2594, 64139, 'sixty-four thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(2595, 8325, 'eight thousand three hundred twenty-five'); INSERT INTO t2 VALUES(2596, 71097, 'seventy-one thousand ninety-seven'); INSERT INTO t2 VALUES(2597, 49802, 'forty-nine thousand eight hundred two'); INSERT INTO t2 VALUES(2598, 23014, 'twenty-three thousand fourteen'); INSERT INTO t2 VALUES(2599, 39450, 'thirty-nine thousand four hundred fifty'); INSERT INTO t2 VALUES(2600, 23316, 'twenty-three thousand three hundred sixteen'); INSERT INTO t2 VALUES(2601, 44319, 'forty-four thousand three hundred nineteen'); INSERT INTO t2 VALUES(2602, 82480, 'eighty-two thousand four hundred eighty'); INSERT INTO t2 VALUES(2603, 35403, 'thirty-five thousand four hundred three'); INSERT INTO t2 VALUES(2604, 13285, 'thirteen thousand two hundred eighty-five'); INSERT INTO t2 VALUES(2605, 6978, 'six thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(2606, 85095, 'eighty-five thousand ninety-five'); INSERT INTO t2 VALUES(2607, 33866, 'thirty-three thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(2608, 30115, 'thirty thousand one hundred fifteen'); INSERT INTO t2 VALUES(2609, 92129, 'ninety-two thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(2610, 32864, 'thirty-two thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(2611, 29670, 'twenty-nine thousand six hundred seventy'); INSERT INTO t2 VALUES(2612, 75952, 'seventy-five thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(2613, 70948, 'seventy thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(2614, 36324, 'thirty-six thousand three hundred twenty-four'); INSERT INTO t2 VALUES(2615, 61684, 'sixty-one thousand six hundred eighty-four'); INSERT INTO t2 VALUES(2616, 85960, 'eighty-five thousand nine hundred sixty'); INSERT INTO t2 VALUES(2617, 42441, 'forty-two thousand four hundred forty-one'); INSERT INTO t2 VALUES(2618, 87302, 'eighty-seven thousand three hundred two'); INSERT INTO t2 VALUES(2619, 72994, 'seventy-two thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(2620, 86981, 'eighty-six thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(2621, 67309, 'sixty-seven thousand three hundred nine'); INSERT INTO t2 VALUES(2622, 22682, 'twenty-two thousand six hundred eighty-two'); INSERT INTO t2 VALUES(2623, 91063, 'ninety-one thousand sixty-three'); INSERT INTO t2 VALUES(2624, 42158, 'forty-two thousand one hundred fifty-eight'); INSERT INTO t2 VALUES(2625, 6380, 'six thousand three hundred eighty'); INSERT INTO t2 VALUES(2626, 83922, 'eighty-three thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(2627, 44702, 'forty-four thousand seven hundred two'); INSERT INTO t2 VALUES(2628, 45893, 'forty-five thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(2629, 91811, 'ninety-one thousand eight hundred eleven'); INSERT INTO t2 VALUES(2630, 79655, 'seventy-nine thousand six hundred fifty-five'); INSERT INTO t2 VALUES(2631, 96322, 'ninety-six thousand three hundred twenty-two'); INSERT INTO t2 VALUES(2632, 48453, 'forty-eight thousand four hundred fifty-three'); INSERT INTO t2 VALUES(2633, 37766, 'thirty-seven thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(2634, 66372, 'sixty-six thousand three hundred seventy-two'); INSERT INTO t2 VALUES(2635, 43911, 'forty-three thousand nine hundred eleven'); INSERT INTO t2 VALUES(2636, 82376, 'eighty-two thousand three hundred seventy-six'); INSERT INTO t2 VALUES(2637, 74097, 'seventy-four thousand ninety-seven'); INSERT INTO t2 VALUES(2638, 98451, 'ninety-eight thousand four hundred fifty-one'); INSERT INTO t2 VALUES(2639, 56275, 'fifty-six thousand two hundred seventy-five'); INSERT INTO t2 VALUES(2640, 58468, 'fifty-eight thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(2641, 41716, 'forty-one thousand seven hundred sixteen'); INSERT INTO t2 VALUES(2642, 29306, 'twenty-nine thousand three hundred six'); INSERT INTO t2 VALUES(2643, 9307, 'nine thousand three hundred seven'); INSERT INTO t2 VALUES(2644, 96633, 'ninety-six thousand six hundred thirty-three'); INSERT INTO t2 VALUES(2645, 25678, 'twenty-five thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(2646, 58125, 'fifty-eight thousand one hundred twenty-five'); INSERT INTO t2 VALUES(2647, 36684, 'thirty-six thousand six hundred eighty-four'); INSERT INTO t2 VALUES(2648, 63443, 'sixty-three thousand four hundred forty-three'); INSERT INTO t2 VALUES(2649, 95563, 'ninety-five thousand five hundred sixty-three'); INSERT INTO t2 VALUES(2650, 88490, 'eighty-eight thousand four hundred ninety'); INSERT INTO t2 VALUES(2651, 83347, 'eighty-three thousand three hundred forty-seven'); INSERT INTO t2 VALUES(2652, 18205, 'eighteen thousand two hundred five'); INSERT INTO t2 VALUES(2653, 86323, 'eighty-six thousand three hundred twenty-three'); INSERT INTO t2 VALUES(2654, 49008, 'forty-nine thousand eight'); INSERT INTO t2 VALUES(2655, 75828, 'seventy-five thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(2656, 92087, 'ninety-two thousand eighty-seven'); INSERT INTO t2 VALUES(2657, 91487, 'ninety-one thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(2658, 19227, 'nineteen thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(2659, 78893, 'seventy-eight thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(2660, 89026, 'eighty-nine thousand twenty-six'); INSERT INTO t2 VALUES(2661, 21292, 'twenty-one thousand two hundred ninety-two'); INSERT INTO t2 VALUES(2662, 77487, 'seventy-seven thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(2663, 30740, 'thirty thousand seven hundred forty'); INSERT INTO t2 VALUES(2664, 46554, 'forty-six thousand five hundred fifty-four'); INSERT INTO t2 VALUES(2665, 23977, 'twenty-three thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(2666, 41773, 'forty-one thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(2667, 76832, 'seventy-six thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(2668, 26031, 'twenty-six thousand thirty-one'); INSERT INTO t2 VALUES(2669, 9187, 'nine thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(2670, 79422, 'seventy-nine thousand four hundred twenty-two'); INSERT INTO t2 VALUES(2671, 43130, 'forty-three thousand one hundred thirty'); INSERT INTO t2 VALUES(2672, 98721, 'ninety-eight thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(2673, 43493, 'forty-three thousand four hundred ninety-three'); INSERT INTO t2 VALUES(2674, 59120, 'fifty-nine thousand one hundred twenty'); INSERT INTO t2 VALUES(2675, 34743, 'thirty-four thousand seven hundred forty-three'); INSERT INTO t2 VALUES(2676, 5477, 'five thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(2677, 95338, 'ninety-five thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(2678, 29313, 'twenty-nine thousand three hundred thirteen'); INSERT INTO t2 VALUES(2679, 25089, 'twenty-five thousand eighty-nine'); INSERT INTO t2 VALUES(2680, 97859, 'ninety-seven thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(2681, 54424, 'fifty-four thousand four hundred twenty-four'); INSERT INTO t2 VALUES(2682, 51457, 'fifty-one thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(2683, 33256, 'thirty-three thousand two hundred fifty-six'); INSERT INTO t2 VALUES(2684, 801, 'eight hundred one'); INSERT INTO t2 VALUES(2685, 31887, 'thirty-one thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(2686, 69467, 'sixty-nine thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(2687, 1670, 'one thousand six hundred seventy'); INSERT INTO t2 VALUES(2688, 52565, 'fifty-two thousand five hundred sixty-five'); INSERT INTO t2 VALUES(2689, 53710, 'fifty-three thousand seven hundred ten'); INSERT INTO t2 VALUES(2690, 59890, 'fifty-nine thousand eight hundred ninety'); INSERT INTO t2 VALUES(2691, 58219, 'fifty-eight thousand two hundred nineteen'); INSERT INTO t2 VALUES(2692, 32988, 'thirty-two thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(2693, 94147, 'ninety-four thousand one hundred forty-seven'); INSERT INTO t2 VALUES(2694, 12093, 'twelve thousand ninety-three'); INSERT INTO t2 VALUES(2695, 35191, 'thirty-five thousand one hundred ninety-one'); INSERT INTO t2 VALUES(2696, 99851, 'ninety-nine thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(2697, 80461, 'eighty thousand four hundred sixty-one'); INSERT INTO t2 VALUES(2698, 16576, 'sixteen thousand five hundred seventy-six'); INSERT INTO t2 VALUES(2699, 41877, 'forty-one thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(2700, 2675, 'two thousand six hundred seventy-five'); INSERT INTO t2 VALUES(2701, 1536, 'one thousand five hundred thirty-six'); INSERT INTO t2 VALUES(2702, 37067, 'thirty-seven thousand sixty-seven'); INSERT INTO t2 VALUES(2703, 30725, 'thirty thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(2704, 94221, 'ninety-four thousand two hundred twenty-one'); INSERT INTO t2 VALUES(2705, 88398, 'eighty-eight thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(2706, 22793, 'twenty-two thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(2707, 7612, 'seven thousand six hundred twelve'); INSERT INTO t2 VALUES(2708, 58746, 'fifty-eight thousand seven hundred forty-six'); INSERT INTO t2 VALUES(2709, 33773, 'thirty-three thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(2710, 99090, 'ninety-nine thousand ninety'); INSERT INTO t2 VALUES(2711, 47291, 'forty-seven thousand two hundred ninety-one'); INSERT INTO t2 VALUES(2712, 883, 'eight hundred eighty-three'); INSERT INTO t2 VALUES(2713, 65894, 'sixty-five thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(2714, 83157, 'eighty-three thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(2715, 48742, 'forty-eight thousand seven hundred forty-two'); INSERT INTO t2 VALUES(2716, 49917, 'forty-nine thousand nine hundred seventeen'); INSERT INTO t2 VALUES(2717, 86447, 'eighty-six thousand four hundred forty-seven'); INSERT INTO t2 VALUES(2718, 65548, 'sixty-five thousand five hundred forty-eight'); INSERT INTO t2 VALUES(2719, 3034, 'three thousand thirty-four'); INSERT INTO t2 VALUES(2720, 6189, 'six thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(2721, 57782, 'fifty-seven thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(2722, 67960, 'sixty-seven thousand nine hundred sixty'); INSERT INTO t2 VALUES(2723, 10192, 'ten thousand one hundred ninety-two'); INSERT INTO t2 VALUES(2724, 56062, 'fifty-six thousand sixty-two'); INSERT INTO t2 VALUES(2725, 9848, 'nine thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(2726, 64339, 'sixty-four thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(2727, 50834, 'fifty thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(2728, 14544, 'fourteen thousand five hundred forty-four'); INSERT INTO t2 VALUES(2729, 8374, 'eight thousand three hundred seventy-four'); INSERT INTO t2 VALUES(2730, 93240, 'ninety-three thousand two hundred forty'); INSERT INTO t2 VALUES(2731, 36156, 'thirty-six thousand one hundred fifty-six'); INSERT INTO t2 VALUES(2732, 41744, 'forty-one thousand seven hundred forty-four'); INSERT INTO t2 VALUES(2733, 94738, 'ninety-four thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(2734, 17004, 'seventeen thousand four'); INSERT INTO t2 VALUES(2735, 85268, 'eighty-five thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(2736, 84170, 'eighty-four thousand one hundred seventy'); INSERT INTO t2 VALUES(2737, 45120, 'forty-five thousand one hundred twenty'); INSERT INTO t2 VALUES(2738, 92340, 'ninety-two thousand three hundred forty'); INSERT INTO t2 VALUES(2739, 47942, 'forty-seven thousand nine hundred forty-two'); INSERT INTO t2 VALUES(2740, 70442, 'seventy thousand four hundred forty-two'); INSERT INTO t2 VALUES(2741, 86519, 'eighty-six thousand five hundred nineteen'); INSERT INTO t2 VALUES(2742, 56135, 'fifty-six thousand one hundred thirty-five'); INSERT INTO t2 VALUES(2743, 12326, 'twelve thousand three hundred twenty-six'); INSERT INTO t2 VALUES(2744, 50839, 'fifty thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(2745, 43007, 'forty-three thousand seven'); INSERT INTO t2 VALUES(2746, 97445, 'ninety-seven thousand four hundred forty-five'); INSERT INTO t2 VALUES(2747, 29497, 'twenty-nine thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(2748, 90283, 'ninety thousand two hundred eighty-three'); INSERT INTO t2 VALUES(2749, 62830, 'sixty-two thousand eight hundred thirty'); INSERT INTO t2 VALUES(2750, 12938, 'twelve thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(2751, 38030, 'thirty-eight thousand thirty'); INSERT INTO t2 VALUES(2752, 58329, 'fifty-eight thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(2753, 62846, 'sixty-two thousand eight hundred forty-six'); INSERT INTO t2 VALUES(2754, 63402, 'sixty-three thousand four hundred two'); INSERT INTO t2 VALUES(2755, 61888, 'sixty-one thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(2756, 30259, 'thirty thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(2757, 78508, 'seventy-eight thousand five hundred eight'); INSERT INTO t2 VALUES(2758, 19596, 'nineteen thousand five hundred ninety-six'); INSERT INTO t2 VALUES(2759, 95602, 'ninety-five thousand six hundred two'); INSERT INTO t2 VALUES(2760, 50707, 'fifty thousand seven hundred seven'); INSERT INTO t2 VALUES(2761, 20331, 'twenty thousand three hundred thirty-one'); INSERT INTO t2 VALUES(2762, 59725, 'fifty-nine thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(2763, 84974, 'eighty-four thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(2764, 83930, 'eighty-three thousand nine hundred thirty'); INSERT INTO t2 VALUES(2765, 2319, 'two thousand three hundred nineteen'); INSERT INTO t2 VALUES(2766, 35416, 'thirty-five thousand four hundred sixteen'); INSERT INTO t2 VALUES(2767, 79852, 'seventy-nine thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(2768, 28726, 'twenty-eight thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(2769, 82891, 'eighty-two thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(2770, 56494, 'fifty-six thousand four hundred ninety-four'); INSERT INTO t2 VALUES(2771, 12517, 'twelve thousand five hundred seventeen'); INSERT INTO t2 VALUES(2772, 55267, 'fifty-five thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(2773, 49822, 'forty-nine thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(2774, 23222, 'twenty-three thousand two hundred twenty-two'); INSERT INTO t2 VALUES(2775, 62918, 'sixty-two thousand nine hundred eighteen'); INSERT INTO t2 VALUES(2776, 74851, 'seventy-four thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(2777, 59567, 'fifty-nine thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(2778, 63039, 'sixty-three thousand thirty-nine'); INSERT INTO t2 VALUES(2779, 20437, 'twenty thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(2780, 28309, 'twenty-eight thousand three hundred nine'); INSERT INTO t2 VALUES(2781, 7846, 'seven thousand eight hundred forty-six'); INSERT INTO t2 VALUES(2782, 69927, 'sixty-nine thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(2783, 40390, 'forty thousand three hundred ninety'); INSERT INTO t2 VALUES(2784, 12522, 'twelve thousand five hundred twenty-two'); INSERT INTO t2 VALUES(2785, 26130, 'twenty-six thousand one hundred thirty'); INSERT INTO t2 VALUES(2786, 90941, 'ninety thousand nine hundred forty-one'); INSERT INTO t2 VALUES(2787, 84617, 'eighty-four thousand six hundred seventeen'); INSERT INTO t2 VALUES(2788, 74245, 'seventy-four thousand two hundred forty-five'); INSERT INTO t2 VALUES(2789, 71727, 'seventy-one thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(2790, 97787, 'ninety-seven thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(2791, 54779, 'fifty-four thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(2792, 5189, 'five thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(2793, 79474, 'seventy-nine thousand four hundred seventy-four'); INSERT INTO t2 VALUES(2794, 39272, 'thirty-nine thousand two hundred seventy-two'); INSERT INTO t2 VALUES(2795, 98320, 'ninety-eight thousand three hundred twenty'); INSERT INTO t2 VALUES(2796, 82818, 'eighty-two thousand eight hundred eighteen'); INSERT INTO t2 VALUES(2797, 24549, 'twenty-four thousand five hundred forty-nine'); INSERT INTO t2 VALUES(2798, 11815, 'eleven thousand eight hundred fifteen'); INSERT INTO t2 VALUES(2799, 86821, 'eighty-six thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(2800, 38136, 'thirty-eight thousand one hundred thirty-six'); INSERT INTO t2 VALUES(2801, 84869, 'eighty-four thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(2802, 59161, 'fifty-nine thousand one hundred sixty-one'); INSERT INTO t2 VALUES(2803, 41018, 'forty-one thousand eighteen'); INSERT INTO t2 VALUES(2804, 676, 'six hundred seventy-six'); INSERT INTO t2 VALUES(2805, 13822, 'thirteen thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(2806, 58913, 'fifty-eight thousand nine hundred thirteen'); INSERT INTO t2 VALUES(2807, 74789, 'seventy-four thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(2808, 82984, 'eighty-two thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(2809, 61949, 'sixty-one thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(2810, 81568, 'eighty-one thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(2811, 46679, 'forty-six thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(2812, 95766, 'ninety-five thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(2813, 86952, 'eighty-six thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(2814, 87132, 'eighty-seven thousand one hundred thirty-two'); INSERT INTO t2 VALUES(2815, 36084, 'thirty-six thousand eighty-four'); INSERT INTO t2 VALUES(2816, 7501, 'seven thousand five hundred one'); INSERT INTO t2 VALUES(2817, 70059, 'seventy thousand fifty-nine'); INSERT INTO t2 VALUES(2818, 65378, 'sixty-five thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(2819, 97106, 'ninety-seven thousand one hundred six'); INSERT INTO t2 VALUES(2820, 22396, 'twenty-two thousand three hundred ninety-six'); INSERT INTO t2 VALUES(2821, 61705, 'sixty-one thousand seven hundred five'); INSERT INTO t2 VALUES(2822, 75344, 'seventy-five thousand three hundred forty-four'); INSERT INTO t2 VALUES(2823, 89444, 'eighty-nine thousand four hundred forty-four'); INSERT INTO t2 VALUES(2824, 74330, 'seventy-four thousand three hundred thirty'); INSERT INTO t2 VALUES(2825, 22938, 'twenty-two thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(2826, 30324, 'thirty thousand three hundred twenty-four'); INSERT INTO t2 VALUES(2827, 53687, 'fifty-three thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(2828, 26628, 'twenty-six thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(2829, 62886, 'sixty-two thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(2830, 4714, 'four thousand seven hundred fourteen'); INSERT INTO t2 VALUES(2831, 31562, 'thirty-one thousand five hundred sixty-two'); INSERT INTO t2 VALUES(2832, 75798, 'seventy-five thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(2833, 30888, 'thirty thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(2834, 27929, 'twenty-seven thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(2835, 76758, 'seventy-six thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(2836, 23586, 'twenty-three thousand five hundred eighty-six'); INSERT INTO t2 VALUES(2837, 22704, 'twenty-two thousand seven hundred four'); INSERT INTO t2 VALUES(2838, 88191, 'eighty-eight thousand one hundred ninety-one'); INSERT INTO t2 VALUES(2839, 96482, 'ninety-six thousand four hundred eighty-two'); INSERT INTO t2 VALUES(2840, 51547, 'fifty-one thousand five hundred forty-seven'); INSERT INTO t2 VALUES(2841, 95984, 'ninety-five thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(2842, 64342, 'sixty-four thousand three hundred forty-two'); INSERT INTO t2 VALUES(2843, 89357, 'eighty-nine thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(2844, 14916, 'fourteen thousand nine hundred sixteen'); INSERT INTO t2 VALUES(2845, 95624, 'ninety-five thousand six hundred twenty-four'); INSERT INTO t2 VALUES(2846, 54191, 'fifty-four thousand one hundred ninety-one'); INSERT INTO t2 VALUES(2847, 52927, 'fifty-two thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(2848, 13841, 'thirteen thousand eight hundred forty-one'); INSERT INTO t2 VALUES(2849, 63983, 'sixty-three thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(2850, 49712, 'forty-nine thousand seven hundred twelve'); INSERT INTO t2 VALUES(2851, 40343, 'forty thousand three hundred forty-three'); INSERT INTO t2 VALUES(2852, 11081, 'eleven thousand eighty-one'); INSERT INTO t2 VALUES(2853, 70945, 'seventy thousand nine hundred forty-five'); INSERT INTO t2 VALUES(2854, 34152, 'thirty-four thousand one hundred fifty-two'); INSERT INTO t2 VALUES(2855, 25394, 'twenty-five thousand three hundred ninety-four'); INSERT INTO t2 VALUES(2856, 75268, 'seventy-five thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(2857, 91244, 'ninety-one thousand two hundred forty-four'); INSERT INTO t2 VALUES(2858, 55951, 'fifty-five thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(2859, 69088, 'sixty-nine thousand eighty-eight'); INSERT INTO t2 VALUES(2860, 56537, 'fifty-six thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(2861, 30024, 'thirty thousand twenty-four'); INSERT INTO t2 VALUES(2862, 9283, 'nine thousand two hundred eighty-three'); INSERT INTO t2 VALUES(2863, 92553, 'ninety-two thousand five hundred fifty-three'); INSERT INTO t2 VALUES(2864, 59970, 'fifty-nine thousand nine hundred seventy'); INSERT INTO t2 VALUES(2865, 99232, 'ninety-nine thousand two hundred thirty-two'); INSERT INTO t2 VALUES(2866, 82397, 'eighty-two thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(2867, 95482, 'ninety-five thousand four hundred eighty-two'); INSERT INTO t2 VALUES(2868, 10275, 'ten thousand two hundred seventy-five'); INSERT INTO t2 VALUES(2869, 36196, 'thirty-six thousand one hundred ninety-six'); INSERT INTO t2 VALUES(2870, 11444, 'eleven thousand four hundred forty-four'); INSERT INTO t2 VALUES(2871, 83835, 'eighty-three thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(2872, 74554, 'seventy-four thousand five hundred fifty-four'); INSERT INTO t2 VALUES(2873, 64832, 'sixty-four thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(2874, 17103, 'seventeen thousand one hundred three'); INSERT INTO t2 VALUES(2875, 69875, 'sixty-nine thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(2876, 28025, 'twenty-eight thousand twenty-five'); INSERT INTO t2 VALUES(2877, 7865, 'seven thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(2878, 65144, 'sixty-five thousand one hundred forty-four'); INSERT INTO t2 VALUES(2879, 87598, 'eighty-seven thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(2880, 20568, 'twenty thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(2881, 94521, 'ninety-four thousand five hundred twenty-one'); INSERT INTO t2 VALUES(2882, 64094, 'sixty-four thousand ninety-four'); INSERT INTO t2 VALUES(2883, 98433, 'ninety-eight thousand four hundred thirty-three'); INSERT INTO t2 VALUES(2884, 41316, 'forty-one thousand three hundred sixteen'); INSERT INTO t2 VALUES(2885, 7100, 'seven thousand one hundred'); INSERT INTO t2 VALUES(2886, 47901, 'forty-seven thousand nine hundred one'); INSERT INTO t2 VALUES(2887, 30308, 'thirty thousand three hundred eight'); INSERT INTO t2 VALUES(2888, 79929, 'seventy-nine thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(2889, 56038, 'fifty-six thousand thirty-eight'); INSERT INTO t2 VALUES(2890, 95473, 'ninety-five thousand four hundred seventy-three'); INSERT INTO t2 VALUES(2891, 45780, 'forty-five thousand seven hundred eighty'); INSERT INTO t2 VALUES(2892, 69065, 'sixty-nine thousand sixty-five'); INSERT INTO t2 VALUES(2893, 66273, 'sixty-six thousand two hundred seventy-three'); INSERT INTO t2 VALUES(2894, 44563, 'forty-four thousand five hundred sixty-three'); INSERT INTO t2 VALUES(2895, 58999, 'fifty-eight thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(2896, 5527, 'five thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(2897, 45586, 'forty-five thousand five hundred eighty-six'); INSERT INTO t2 VALUES(2898, 89539, 'eighty-nine thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(2899, 30454, 'thirty thousand four hundred fifty-four'); INSERT INTO t2 VALUES(2900, 6674, 'six thousand six hundred seventy-four'); INSERT INTO t2 VALUES(2901, 92605, 'ninety-two thousand six hundred five'); INSERT INTO t2 VALUES(2902, 55570, 'fifty-five thousand five hundred seventy'); INSERT INTO t2 VALUES(2903, 6162, 'six thousand one hundred sixty-two'); INSERT INTO t2 VALUES(2904, 10969, 'ten thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(2905, 89354, 'eighty-nine thousand three hundred fifty-four'); INSERT INTO t2 VALUES(2906, 25114, 'twenty-five thousand one hundred fourteen'); INSERT INTO t2 VALUES(2907, 69084, 'sixty-nine thousand eighty-four'); INSERT INTO t2 VALUES(2908, 56522, 'fifty-six thousand five hundred twenty-two'); INSERT INTO t2 VALUES(2909, 86596, 'eighty-six thousand five hundred ninety-six'); INSERT INTO t2 VALUES(2910, 26888, 'twenty-six thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(2911, 66491, 'sixty-six thousand four hundred ninety-one'); INSERT INTO t2 VALUES(2912, 92173, 'ninety-two thousand one hundred seventy-three'); INSERT INTO t2 VALUES(2913, 99166, 'ninety-nine thousand one hundred sixty-six'); INSERT INTO t2 VALUES(2914, 48223, 'forty-eight thousand two hundred twenty-three'); INSERT INTO t2 VALUES(2915, 79492, 'seventy-nine thousand four hundred ninety-two'); INSERT INTO t2 VALUES(2916, 86920, 'eighty-six thousand nine hundred twenty'); INSERT INTO t2 VALUES(2917, 19417, 'nineteen thousand four hundred seventeen'); INSERT INTO t2 VALUES(2918, 69327, 'sixty-nine thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(2919, 93837, 'ninety-three thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(2920, 1199, 'one thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(2921, 5761, 'five thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(2922, 34693, 'thirty-four thousand six hundred ninety-three'); INSERT INTO t2 VALUES(2923, 88188, 'eighty-eight thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(2924, 81504, 'eighty-one thousand five hundred four'); INSERT INTO t2 VALUES(2925, 15327, 'fifteen thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(2926, 68540, 'sixty-eight thousand five hundred forty'); INSERT INTO t2 VALUES(2927, 41482, 'forty-one thousand four hundred eighty-two'); INSERT INTO t2 VALUES(2928, 82895, 'eighty-two thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(2929, 7391, 'seven thousand three hundred ninety-one'); INSERT INTO t2 VALUES(2930, 47800, 'forty-seven thousand eight hundred'); INSERT INTO t2 VALUES(2931, 7269, 'seven thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(2932, 3707, 'three thousand seven hundred seven'); INSERT INTO t2 VALUES(2933, 50181, 'fifty thousand one hundred eighty-one'); INSERT INTO t2 VALUES(2934, 52643, 'fifty-two thousand six hundred forty-three'); INSERT INTO t2 VALUES(2935, 9980, 'nine thousand nine hundred eighty'); INSERT INTO t2 VALUES(2936, 92621, 'ninety-two thousand six hundred twenty-one'); INSERT INTO t2 VALUES(2937, 26730, 'twenty-six thousand seven hundred thirty'); INSERT INTO t2 VALUES(2938, 12252, 'twelve thousand two hundred fifty-two'); INSERT INTO t2 VALUES(2939, 70921, 'seventy thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(2940, 66155, 'sixty-six thousand one hundred fifty-five'); INSERT INTO t2 VALUES(2941, 89187, 'eighty-nine thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(2942, 15042, 'fifteen thousand forty-two'); INSERT INTO t2 VALUES(2943, 1324, 'one thousand three hundred twenty-four'); INSERT INTO t2 VALUES(2944, 6341, 'six thousand three hundred forty-one'); INSERT INTO t2 VALUES(2945, 70686, 'seventy thousand six hundred eighty-six'); INSERT INTO t2 VALUES(2946, 84209, 'eighty-four thousand two hundred nine'); INSERT INTO t2 VALUES(2947, 62032, 'sixty-two thousand thirty-two'); INSERT INTO t2 VALUES(2948, 70316, 'seventy thousand three hundred sixteen'); INSERT INTO t2 VALUES(2949, 63932, 'sixty-three thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(2950, 64623, 'sixty-four thousand six hundred twenty-three'); INSERT INTO t2 VALUES(2951, 30333, 'thirty thousand three hundred thirty-three'); INSERT INTO t2 VALUES(2952, 54556, 'fifty-four thousand five hundred fifty-six'); INSERT INTO t2 VALUES(2953, 64679, 'sixty-four thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(2954, 73401, 'seventy-three thousand four hundred one'); INSERT INTO t2 VALUES(2955, 79027, 'seventy-nine thousand twenty-seven'); INSERT INTO t2 VALUES(2956, 53565, 'fifty-three thousand five hundred sixty-five'); INSERT INTO t2 VALUES(2957, 77525, 'seventy-seven thousand five hundred twenty-five'); INSERT INTO t2 VALUES(2958, 45042, 'forty-five thousand forty-two'); INSERT INTO t2 VALUES(2959, 440, 'four hundred forty'); INSERT INTO t2 VALUES(2960, 75038, 'seventy-five thousand thirty-eight'); INSERT INTO t2 VALUES(2961, 90967, 'ninety thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(2962, 69347, 'sixty-nine thousand three hundred forty-seven'); INSERT INTO t2 VALUES(2963, 59055, 'fifty-nine thousand fifty-five'); INSERT INTO t2 VALUES(2964, 40643, 'forty thousand six hundred forty-three'); INSERT INTO t2 VALUES(2965, 14252, 'fourteen thousand two hundred fifty-two'); INSERT INTO t2 VALUES(2966, 75808, 'seventy-five thousand eight hundred eight'); INSERT INTO t2 VALUES(2967, 85630, 'eighty-five thousand six hundred thirty'); INSERT INTO t2 VALUES(2968, 46255, 'forty-six thousand two hundred fifty-five'); INSERT INTO t2 VALUES(2969, 35625, 'thirty-five thousand six hundred twenty-five'); INSERT INTO t2 VALUES(2970, 89525, 'eighty-nine thousand five hundred twenty-five'); INSERT INTO t2 VALUES(2971, 44141, 'forty-four thousand one hundred forty-one'); INSERT INTO t2 VALUES(2972, 42816, 'forty-two thousand eight hundred sixteen'); INSERT INTO t2 VALUES(2973, 87184, 'eighty-seven thousand one hundred eighty-four'); INSERT INTO t2 VALUES(2974, 56002, 'fifty-six thousand two'); INSERT INTO t2 VALUES(2975, 68367, 'sixty-eight thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(2976, 44941, 'forty-four thousand nine hundred forty-one'); INSERT INTO t2 VALUES(2977, 2644, 'two thousand six hundred forty-four'); INSERT INTO t2 VALUES(2978, 56330, 'fifty-six thousand three hundred thirty'); INSERT INTO t2 VALUES(2979, 5202, 'five thousand two hundred two'); INSERT INTO t2 VALUES(2980, 33139, 'thirty-three thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(2981, 51009, 'fifty-one thousand nine'); INSERT INTO t2 VALUES(2982, 47630, 'forty-seven thousand six hundred thirty'); INSERT INTO t2 VALUES(2983, 7461, 'seven thousand four hundred sixty-one'); INSERT INTO t2 VALUES(2984, 22446, 'twenty-two thousand four hundred forty-six'); INSERT INTO t2 VALUES(2985, 18427, 'eighteen thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(2986, 37025, 'thirty-seven thousand twenty-five'); INSERT INTO t2 VALUES(2987, 18904, 'eighteen thousand nine hundred four'); INSERT INTO t2 VALUES(2988, 44794, 'forty-four thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(2989, 88618, 'eighty-eight thousand six hundred eighteen'); INSERT INTO t2 VALUES(2990, 88401, 'eighty-eight thousand four hundred one'); INSERT INTO t2 VALUES(2991, 30781, 'thirty thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(2992, 92289, 'ninety-two thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(2993, 58959, 'fifty-eight thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(2994, 69620, 'sixty-nine thousand six hundred twenty'); INSERT INTO t2 VALUES(2995, 29403, 'twenty-nine thousand four hundred three'); INSERT INTO t2 VALUES(2996, 41951, 'forty-one thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(2997, 60509, 'sixty thousand five hundred nine'); INSERT INTO t2 VALUES(2998, 73380, 'seventy-three thousand three hundred eighty'); INSERT INTO t2 VALUES(2999, 99343, 'ninety-nine thousand three hundred forty-three'); INSERT INTO t2 VALUES(3000, 75507, 'seventy-five thousand five hundred seven'); INSERT INTO t2 VALUES(3001, 84133, 'eighty-four thousand one hundred thirty-three'); INSERT INTO t2 VALUES(3002, 32238, 'thirty-two thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(3003, 30080, 'thirty thousand eighty'); INSERT INTO t2 VALUES(3004, 57926, 'fifty-seven thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(3005, 65770, 'sixty-five thousand seven hundred seventy'); INSERT INTO t2 VALUES(3006, 53641, 'fifty-three thousand six hundred forty-one'); INSERT INTO t2 VALUES(3007, 17279, 'seventeen thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(3008, 69016, 'sixty-nine thousand sixteen'); INSERT INTO t2 VALUES(3009, 16784, 'sixteen thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(3010, 22297, 'twenty-two thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(3011, 5860, 'five thousand eight hundred sixty'); INSERT INTO t2 VALUES(3012, 26805, 'twenty-six thousand eight hundred five'); INSERT INTO t2 VALUES(3013, 98280, 'ninety-eight thousand two hundred eighty'); INSERT INTO t2 VALUES(3014, 78983, 'seventy-eight thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(3015, 92493, 'ninety-two thousand four hundred ninety-three'); INSERT INTO t2 VALUES(3016, 26180, 'twenty-six thousand one hundred eighty'); INSERT INTO t2 VALUES(3017, 17372, 'seventeen thousand three hundred seventy-two'); INSERT INTO t2 VALUES(3018, 70053, 'seventy thousand fifty-three'); INSERT INTO t2 VALUES(3019, 28581, 'twenty-eight thousand five hundred eighty-one'); INSERT INTO t2 VALUES(3020, 72946, 'seventy-two thousand nine hundred forty-six'); INSERT INTO t2 VALUES(3021, 89803, 'eighty-nine thousand eight hundred three'); INSERT INTO t2 VALUES(3022, 31505, 'thirty-one thousand five hundred five'); INSERT INTO t2 VALUES(3023, 98659, 'ninety-eight thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(3024, 63328, 'sixty-three thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(3025, 94483, 'ninety-four thousand four hundred eighty-three'); INSERT INTO t2 VALUES(3026, 40984, 'forty thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(3027, 38871, 'thirty-eight thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(3028, 44975, 'forty-four thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(3029, 51287, 'fifty-one thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(3030, 37854, 'thirty-seven thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(3031, 47663, 'forty-seven thousand six hundred sixty-three'); INSERT INTO t2 VALUES(3032, 42409, 'forty-two thousand four hundred nine'); INSERT INTO t2 VALUES(3033, 1586, 'one thousand five hundred eighty-six'); INSERT INTO t2 VALUES(3034, 35078, 'thirty-five thousand seventy-eight'); INSERT INTO t2 VALUES(3035, 83651, 'eighty-three thousand six hundred fifty-one'); INSERT INTO t2 VALUES(3036, 92991, 'ninety-two thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(3037, 26555, 'twenty-six thousand five hundred fifty-five'); INSERT INTO t2 VALUES(3038, 93330, 'ninety-three thousand three hundred thirty'); INSERT INTO t2 VALUES(3039, 46824, 'forty-six thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(3040, 99657, 'ninety-nine thousand six hundred fifty-seven'); INSERT INTO t2 VALUES(3041, 72179, 'seventy-two thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(3042, 80628, 'eighty thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(3043, 86982, 'eighty-six thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(3044, 12544, 'twelve thousand five hundred forty-four'); INSERT INTO t2 VALUES(3045, 10801, 'ten thousand eight hundred one'); INSERT INTO t2 VALUES(3046, 98160, 'ninety-eight thousand one hundred sixty'); INSERT INTO t2 VALUES(3047, 3930, 'three thousand nine hundred thirty'); INSERT INTO t2 VALUES(3048, 61187, 'sixty-one thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(3049, 27569, 'twenty-seven thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(3050, 39982, 'thirty-nine thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(3051, 97139, 'ninety-seven thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(3052, 70663, 'seventy thousand six hundred sixty-three'); INSERT INTO t2 VALUES(3053, 53889, 'fifty-three thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(3054, 3199, 'three thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(3055, 52922, 'fifty-two thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(3056, 96163, 'ninety-six thousand one hundred sixty-three'); INSERT INTO t2 VALUES(3057, 40751, 'forty thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(3058, 77300, 'seventy-seven thousand three hundred'); INSERT INTO t2 VALUES(3059, 80671, 'eighty thousand six hundred seventy-one'); INSERT INTO t2 VALUES(3060, 78230, 'seventy-eight thousand two hundred thirty'); INSERT INTO t2 VALUES(3061, 76552, 'seventy-six thousand five hundred fifty-two'); INSERT INTO t2 VALUES(3062, 25175, 'twenty-five thousand one hundred seventy-five'); INSERT INTO t2 VALUES(3063, 5669, 'five thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(3064, 11043, 'eleven thousand forty-three'); INSERT INTO t2 VALUES(3065, 87093, 'eighty-seven thousand ninety-three'); INSERT INTO t2 VALUES(3066, 30506, 'thirty thousand five hundred six'); INSERT INTO t2 VALUES(3067, 59005, 'fifty-nine thousand five'); INSERT INTO t2 VALUES(3068, 18562, 'eighteen thousand five hundred sixty-two'); INSERT INTO t2 VALUES(3069, 52926, 'fifty-two thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(3070, 6, 'six'); INSERT INTO t2 VALUES(3071, 77330, 'seventy-seven thousand three hundred thirty'); INSERT INTO t2 VALUES(3072, 37520, 'thirty-seven thousand five hundred twenty'); INSERT INTO t2 VALUES(3073, 36346, 'thirty-six thousand three hundred forty-six'); INSERT INTO t2 VALUES(3074, 18466, 'eighteen thousand four hundred sixty-six'); INSERT INTO t2 VALUES(3075, 69047, 'sixty-nine thousand forty-seven'); INSERT INTO t2 VALUES(3076, 34696, 'thirty-four thousand six hundred ninety-six'); INSERT INTO t2 VALUES(3077, 40382, 'forty thousand three hundred eighty-two'); INSERT INTO t2 VALUES(3078, 2283, 'two thousand two hundred eighty-three'); INSERT INTO t2 VALUES(3079, 19846, 'nineteen thousand eight hundred forty-six'); INSERT INTO t2 VALUES(3080, 44554, 'forty-four thousand five hundred fifty-four'); INSERT INTO t2 VALUES(3081, 34252, 'thirty-four thousand two hundred fifty-two'); INSERT INTO t2 VALUES(3082, 56518, 'fifty-six thousand five hundred eighteen'); INSERT INTO t2 VALUES(3083, 22294, 'twenty-two thousand two hundred ninety-four'); INSERT INTO t2 VALUES(3084, 38897, 'thirty-eight thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(3085, 85535, 'eighty-five thousand five hundred thirty-five'); INSERT INTO t2 VALUES(3086, 14707, 'fourteen thousand seven hundred seven'); INSERT INTO t2 VALUES(3087, 54579, 'fifty-four thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(3088, 12030, 'twelve thousand thirty'); INSERT INTO t2 VALUES(3089, 38198, 'thirty-eight thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(3090, 75697, 'seventy-five thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(3091, 15160, 'fifteen thousand one hundred sixty'); INSERT INTO t2 VALUES(3092, 33849, 'thirty-three thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(3093, 84634, 'eighty-four thousand six hundred thirty-four'); INSERT INTO t2 VALUES(3094, 83961, 'eighty-three thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(3095, 14431, 'fourteen thousand four hundred thirty-one'); INSERT INTO t2 VALUES(3096, 69460, 'sixty-nine thousand four hundred sixty'); INSERT INTO t2 VALUES(3097, 35173, 'thirty-five thousand one hundred seventy-three'); INSERT INTO t2 VALUES(3098, 23838, 'twenty-three thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(3099, 64731, 'sixty-four thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(3100, 42935, 'forty-two thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(3101, 5462, 'five thousand four hundred sixty-two'); INSERT INTO t2 VALUES(3102, 15907, 'fifteen thousand nine hundred seven'); INSERT INTO t2 VALUES(3103, 83848, 'eighty-three thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(3104, 55149, 'fifty-five thousand one hundred forty-nine'); INSERT INTO t2 VALUES(3105, 61711, 'sixty-one thousand seven hundred eleven'); INSERT INTO t2 VALUES(3106, 10361, 'ten thousand three hundred sixty-one'); INSERT INTO t2 VALUES(3107, 85958, 'eighty-five thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(3108, 4348, 'four thousand three hundred forty-eight'); INSERT INTO t2 VALUES(3109, 20926, 'twenty thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(3110, 2992, 'two thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(3111, 90897, 'ninety thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(3112, 77547, 'seventy-seven thousand five hundred forty-seven'); INSERT INTO t2 VALUES(3113, 74027, 'seventy-four thousand twenty-seven'); INSERT INTO t2 VALUES(3114, 97541, 'ninety-seven thousand five hundred forty-one'); INSERT INTO t2 VALUES(3115, 25939, 'twenty-five thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(3116, 83636, 'eighty-three thousand six hundred thirty-six'); INSERT INTO t2 VALUES(3117, 82314, 'eighty-two thousand three hundred fourteen'); INSERT INTO t2 VALUES(3118, 20680, 'twenty thousand six hundred eighty'); INSERT INTO t2 VALUES(3119, 64535, 'sixty-four thousand five hundred thirty-five'); INSERT INTO t2 VALUES(3120, 21480, 'twenty-one thousand four hundred eighty'); INSERT INTO t2 VALUES(3121, 31413, 'thirty-one thousand four hundred thirteen'); INSERT INTO t2 VALUES(3122, 71463, 'seventy-one thousand four hundred sixty-three'); INSERT INTO t2 VALUES(3123, 93353, 'ninety-three thousand three hundred fifty-three'); INSERT INTO t2 VALUES(3124, 42717, 'forty-two thousand seven hundred seventeen'); INSERT INTO t2 VALUES(3125, 42315, 'forty-two thousand three hundred fifteen'); INSERT INTO t2 VALUES(3126, 65749, 'sixty-five thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(3127, 50512, 'fifty thousand five hundred twelve'); INSERT INTO t2 VALUES(3128, 49159, 'forty-nine thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(3129, 5456, 'five thousand four hundred fifty-six'); INSERT INTO t2 VALUES(3130, 44222, 'forty-four thousand two hundred twenty-two'); INSERT INTO t2 VALUES(3131, 52032, 'fifty-two thousand thirty-two'); INSERT INTO t2 VALUES(3132, 46042, 'forty-six thousand forty-two'); INSERT INTO t2 VALUES(3133, 33728, 'thirty-three thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(3134, 74991, 'seventy-four thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(3135, 38135, 'thirty-eight thousand one hundred thirty-five'); INSERT INTO t2 VALUES(3136, 28199, 'twenty-eight thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(3137, 79806, 'seventy-nine thousand eight hundred six'); INSERT INTO t2 VALUES(3138, 22552, 'twenty-two thousand five hundred fifty-two'); INSERT INTO t2 VALUES(3139, 20039, 'twenty thousand thirty-nine'); INSERT INTO t2 VALUES(3140, 70719, 'seventy thousand seven hundred nineteen'); INSERT INTO t2 VALUES(3141, 43840, 'forty-three thousand eight hundred forty'); INSERT INTO t2 VALUES(3142, 49135, 'forty-nine thousand one hundred thirty-five'); INSERT INTO t2 VALUES(3143, 24607, 'twenty-four thousand six hundred seven'); INSERT INTO t2 VALUES(3144, 40095, 'forty thousand ninety-five'); INSERT INTO t2 VALUES(3145, 8362, 'eight thousand three hundred sixty-two'); INSERT INTO t2 VALUES(3146, 69275, 'sixty-nine thousand two hundred seventy-five'); INSERT INTO t2 VALUES(3147, 58609, 'fifty-eight thousand six hundred nine'); INSERT INTO t2 VALUES(3148, 96202, 'ninety-six thousand two hundred two'); INSERT INTO t2 VALUES(3149, 59445, 'fifty-nine thousand four hundred forty-five'); INSERT INTO t2 VALUES(3150, 4348, 'four thousand three hundred forty-eight'); INSERT INTO t2 VALUES(3151, 87408, 'eighty-seven thousand four hundred eight'); INSERT INTO t2 VALUES(3152, 11956, 'eleven thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(3153, 14715, 'fourteen thousand seven hundred fifteen'); INSERT INTO t2 VALUES(3154, 22321, 'twenty-two thousand three hundred twenty-one'); INSERT INTO t2 VALUES(3155, 29757, 'twenty-nine thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(3156, 91314, 'ninety-one thousand three hundred fourteen'); INSERT INTO t2 VALUES(3157, 332, 'three hundred thirty-two'); INSERT INTO t2 VALUES(3158, 54578, 'fifty-four thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(3159, 58943, 'fifty-eight thousand nine hundred forty-three'); INSERT INTO t2 VALUES(3160, 87984, 'eighty-seven thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(3161, 92178, 'ninety-two thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(3162, 70526, 'seventy thousand five hundred twenty-six'); INSERT INTO t2 VALUES(3163, 25602, 'twenty-five thousand six hundred two'); INSERT INTO t2 VALUES(3164, 54693, 'fifty-four thousand six hundred ninety-three'); INSERT INTO t2 VALUES(3165, 56334, 'fifty-six thousand three hundred thirty-four'); INSERT INTO t2 VALUES(3166, 6777, 'six thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(3167, 91040, 'ninety-one thousand forty'); INSERT INTO t2 VALUES(3168, 84644, 'eighty-four thousand six hundred forty-four'); INSERT INTO t2 VALUES(3169, 25150, 'twenty-five thousand one hundred fifty'); INSERT INTO t2 VALUES(3170, 81363, 'eighty-one thousand three hundred sixty-three'); INSERT INTO t2 VALUES(3171, 4907, 'four thousand nine hundred seven'); INSERT INTO t2 VALUES(3172, 94868, 'ninety-four thousand eight hundred sixty-eight'); INSERT INTO t2 VALUES(3173, 68858, 'sixty-eight thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(3174, 64623, 'sixty-four thousand six hundred twenty-three'); INSERT INTO t2 VALUES(3175, 64151, 'sixty-four thousand one hundred fifty-one'); INSERT INTO t2 VALUES(3176, 32160, 'thirty-two thousand one hundred sixty'); INSERT INTO t2 VALUES(3177, 8549, 'eight thousand five hundred forty-nine'); INSERT INTO t2 VALUES(3178, 53017, 'fifty-three thousand seventeen'); INSERT INTO t2 VALUES(3179, 86194, 'eighty-six thousand one hundred ninety-four'); INSERT INTO t2 VALUES(3180, 74458, 'seventy-four thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(3181, 69101, 'sixty-nine thousand one hundred one'); INSERT INTO t2 VALUES(3182, 13817, 'thirteen thousand eight hundred seventeen'); INSERT INTO t2 VALUES(3183, 64824, 'sixty-four thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(3184, 91744, 'ninety-one thousand seven hundred forty-four'); INSERT INTO t2 VALUES(3185, 35990, 'thirty-five thousand nine hundred ninety'); INSERT INTO t2 VALUES(3186, 1836, 'one thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(3187, 25180, 'twenty-five thousand one hundred eighty'); INSERT INTO t2 VALUES(3188, 78297, 'seventy-eight thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(3189, 82526, 'eighty-two thousand five hundred twenty-six'); INSERT INTO t2 VALUES(3190, 76726, 'seventy-six thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(3191, 18740, 'eighteen thousand seven hundred forty'); INSERT INTO t2 VALUES(3192, 7650, 'seven thousand six hundred fifty'); INSERT INTO t2 VALUES(3193, 76060, 'seventy-six thousand sixty'); INSERT INTO t2 VALUES(3194, 79196, 'seventy-nine thousand one hundred ninety-six'); INSERT INTO t2 VALUES(3195, 8022, 'eight thousand twenty-two'); INSERT INTO t2 VALUES(3196, 78197, 'seventy-eight thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(3197, 32855, 'thirty-two thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(3198, 80157, 'eighty thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(3199, 75220, 'seventy-five thousand two hundred twenty'); INSERT INTO t2 VALUES(3200, 18488, 'eighteen thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(3201, 52992, 'fifty-two thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(3202, 58682, 'fifty-eight thousand six hundred eighty-two'); INSERT INTO t2 VALUES(3203, 14531, 'fourteen thousand five hundred thirty-one'); INSERT INTO t2 VALUES(3204, 95036, 'ninety-five thousand thirty-six'); INSERT INTO t2 VALUES(3205, 42685, 'forty-two thousand six hundred eighty-five'); INSERT INTO t2 VALUES(3206, 64953, 'sixty-four thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(3207, 80737, 'eighty thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(3208, 85672, 'eighty-five thousand six hundred seventy-two'); INSERT INTO t2 VALUES(3209, 93810, 'ninety-three thousand eight hundred ten'); INSERT INTO t2 VALUES(3210, 74829, 'seventy-four thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(3211, 12889, 'twelve thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(3212, 65140, 'sixty-five thousand one hundred forty'); INSERT INTO t2 VALUES(3213, 17447, 'seventeen thousand four hundred forty-seven'); INSERT INTO t2 VALUES(3214, 90925, 'ninety thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(3215, 53014, 'fifty-three thousand fourteen'); INSERT INTO t2 VALUES(3216, 10052, 'ten thousand fifty-two'); INSERT INTO t2 VALUES(3217, 14944, 'fourteen thousand nine hundred forty-four'); INSERT INTO t2 VALUES(3218, 36298, 'thirty-six thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(3219, 40955, 'forty thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(3220, 13435, 'thirteen thousand four hundred thirty-five'); INSERT INTO t2 VALUES(3221, 91099, 'ninety-one thousand ninety-nine'); INSERT INTO t2 VALUES(3222, 18679, 'eighteen thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(3223, 87088, 'eighty-seven thousand eighty-eight'); INSERT INTO t2 VALUES(3224, 17448, 'seventeen thousand four hundred forty-eight'); INSERT INTO t2 VALUES(3225, 19020, 'nineteen thousand twenty'); INSERT INTO t2 VALUES(3226, 94901, 'ninety-four thousand nine hundred one'); INSERT INTO t2 VALUES(3227, 22106, 'twenty-two thousand one hundred six'); INSERT INTO t2 VALUES(3228, 10683, 'ten thousand six hundred eighty-three'); INSERT INTO t2 VALUES(3229, 51197, 'fifty-one thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(3230, 70796, 'seventy thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(3231, 11292, 'eleven thousand two hundred ninety-two'); INSERT INTO t2 VALUES(3232, 53471, 'fifty-three thousand four hundred seventy-one'); INSERT INTO t2 VALUES(3233, 47398, 'forty-seven thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(3234, 70134, 'seventy thousand one hundred thirty-four'); INSERT INTO t2 VALUES(3235, 294, 'two hundred ninety-four'); INSERT INTO t2 VALUES(3236, 90271, 'ninety thousand two hundred seventy-one'); INSERT INTO t2 VALUES(3237, 58215, 'fifty-eight thousand two hundred fifteen'); INSERT INTO t2 VALUES(3238, 17441, 'seventeen thousand four hundred forty-one'); INSERT INTO t2 VALUES(3239, 6216, 'six thousand two hundred sixteen'); INSERT INTO t2 VALUES(3240, 88339, 'eighty-eight thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(3241, 75132, 'seventy-five thousand one hundred thirty-two'); INSERT INTO t2 VALUES(3242, 44848, 'forty-four thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(3243, 95979, 'ninety-five thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(3244, 43187, 'forty-three thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(3245, 39437, 'thirty-nine thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(3246, 59833, 'fifty-nine thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(3247, 72946, 'seventy-two thousand nine hundred forty-six'); INSERT INTO t2 VALUES(3248, 76610, 'seventy-six thousand six hundred ten'); INSERT INTO t2 VALUES(3249, 81396, 'eighty-one thousand three hundred ninety-six'); INSERT INTO t2 VALUES(3250, 29025, 'twenty-nine thousand twenty-five'); INSERT INTO t2 VALUES(3251, 10017, 'ten thousand seventeen'); INSERT INTO t2 VALUES(3252, 34055, 'thirty-four thousand fifty-five'); INSERT INTO t2 VALUES(3253, 55077, 'fifty-five thousand seventy-seven'); INSERT INTO t2 VALUES(3254, 49354, 'forty-nine thousand three hundred fifty-four'); INSERT INTO t2 VALUES(3255, 71539, 'seventy-one thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(3256, 24996, 'twenty-four thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(3257, 6157, 'six thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(3258, 99514, 'ninety-nine thousand five hundred fourteen'); INSERT INTO t2 VALUES(3259, 22638, 'twenty-two thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(3260, 56997, 'fifty-six thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(3261, 58242, 'fifty-eight thousand two hundred forty-two'); INSERT INTO t2 VALUES(3262, 70538, 'seventy thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(3263, 93371, 'ninety-three thousand three hundred seventy-one'); INSERT INTO t2 VALUES(3264, 22382, 'twenty-two thousand three hundred eighty-two'); INSERT INTO t2 VALUES(3265, 6486, 'six thousand four hundred eighty-six'); INSERT INTO t2 VALUES(3266, 15838, 'fifteen thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(3267, 87220, 'eighty-seven thousand two hundred twenty'); INSERT INTO t2 VALUES(3268, 99892, 'ninety-nine thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(3269, 77807, 'seventy-seven thousand eight hundred seven'); INSERT INTO t2 VALUES(3270, 14234, 'fourteen thousand two hundred thirty-four'); INSERT INTO t2 VALUES(3271, 21101, 'twenty-one thousand one hundred one'); INSERT INTO t2 VALUES(3272, 78289, 'seventy-eight thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(3273, 823, 'eight hundred twenty-three'); INSERT INTO t2 VALUES(3274, 73770, 'seventy-three thousand seven hundred seventy'); INSERT INTO t2 VALUES(3275, 93721, 'ninety-three thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(3276, 18846, 'eighteen thousand eight hundred forty-six'); INSERT INTO t2 VALUES(3277, 56669, 'fifty-six thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(3278, 62504, 'sixty-two thousand five hundred four'); INSERT INTO t2 VALUES(3279, 69776, 'sixty-nine thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(3280, 97518, 'ninety-seven thousand five hundred eighteen'); INSERT INTO t2 VALUES(3281, 64344, 'sixty-four thousand three hundred forty-four'); INSERT INTO t2 VALUES(3282, 99638, 'ninety-nine thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(3283, 7818, 'seven thousand eight hundred eighteen'); INSERT INTO t2 VALUES(3284, 80077, 'eighty thousand seventy-seven'); INSERT INTO t2 VALUES(3285, 94195, 'ninety-four thousand one hundred ninety-five'); INSERT INTO t2 VALUES(3286, 47036, 'forty-seven thousand thirty-six'); INSERT INTO t2 VALUES(3287, 33729, 'thirty-three thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(3288, 29939, 'twenty-nine thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(3289, 9016, 'nine thousand sixteen'); INSERT INTO t2 VALUES(3290, 1702, 'one thousand seven hundred two'); INSERT INTO t2 VALUES(3291, 71645, 'seventy-one thousand six hundred forty-five'); INSERT INTO t2 VALUES(3292, 64433, 'sixty-four thousand four hundred thirty-three'); INSERT INTO t2 VALUES(3293, 37502, 'thirty-seven thousand five hundred two'); INSERT INTO t2 VALUES(3294, 44939, 'forty-four thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(3295, 68966, 'sixty-eight thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(3296, 72482, 'seventy-two thousand four hundred eighty-two'); INSERT INTO t2 VALUES(3297, 56929, 'fifty-six thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(3298, 97779, 'ninety-seven thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(3299, 73940, 'seventy-three thousand nine hundred forty'); INSERT INTO t2 VALUES(3300, 31320, 'thirty-one thousand three hundred twenty'); INSERT INTO t2 VALUES(3301, 15230, 'fifteen thousand two hundred thirty'); INSERT INTO t2 VALUES(3302, 63929, 'sixty-three thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(3303, 66155, 'sixty-six thousand one hundred fifty-five'); INSERT INTO t2 VALUES(3304, 3099, 'three thousand ninety-nine'); INSERT INTO t2 VALUES(3305, 71533, 'seventy-one thousand five hundred thirty-three'); INSERT INTO t2 VALUES(3306, 34756, 'thirty-four thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(3307, 15255, 'fifteen thousand two hundred fifty-five'); INSERT INTO t2 VALUES(3308, 11272, 'eleven thousand two hundred seventy-two'); INSERT INTO t2 VALUES(3309, 54549, 'fifty-four thousand five hundred forty-nine'); INSERT INTO t2 VALUES(3310, 28813, 'twenty-eight thousand eight hundred thirteen'); INSERT INTO t2 VALUES(3311, 94288, 'ninety-four thousand two hundred eighty-eight'); INSERT INTO t2 VALUES(3312, 92516, 'ninety-two thousand five hundred sixteen'); INSERT INTO t2 VALUES(3313, 70699, 'seventy thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(3314, 46623, 'forty-six thousand six hundred twenty-three'); INSERT INTO t2 VALUES(3315, 67829, 'sixty-seven thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(3316, 45110, 'forty-five thousand one hundred ten'); INSERT INTO t2 VALUES(3317, 58246, 'fifty-eight thousand two hundred forty-six'); INSERT INTO t2 VALUES(3318, 6254, 'six thousand two hundred fifty-four'); INSERT INTO t2 VALUES(3319, 17050, 'seventeen thousand fifty'); INSERT INTO t2 VALUES(3320, 20710, 'twenty thousand seven hundred ten'); INSERT INTO t2 VALUES(3321, 23871, 'twenty-three thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(3322, 98969, 'ninety-eight thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(3323, 25440, 'twenty-five thousand four hundred forty'); INSERT INTO t2 VALUES(3324, 56060, 'fifty-six thousand sixty'); INSERT INTO t2 VALUES(3325, 59720, 'fifty-nine thousand seven hundred twenty'); INSERT INTO t2 VALUES(3326, 87148, 'eighty-seven thousand one hundred forty-eight'); INSERT INTO t2 VALUES(3327, 60483, 'sixty thousand four hundred eighty-three'); INSERT INTO t2 VALUES(3328, 21966, 'twenty-one thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(3329, 84787, 'eighty-four thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(3330, 79780, 'seventy-nine thousand seven hundred eighty'); INSERT INTO t2 VALUES(3331, 96765, 'ninety-six thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(3332, 22987, 'twenty-two thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(3333, 53518, 'fifty-three thousand five hundred eighteen'); INSERT INTO t2 VALUES(3334, 62843, 'sixty-two thousand eight hundred forty-three'); INSERT INTO t2 VALUES(3335, 25933, 'twenty-five thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(3336, 41646, 'forty-one thousand six hundred forty-six'); INSERT INTO t2 VALUES(3337, 45237, 'forty-five thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(3338, 54961, 'fifty-four thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(3339, 85423, 'eighty-five thousand four hundred twenty-three'); INSERT INTO t2 VALUES(3340, 68927, 'sixty-eight thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(3341, 64734, 'sixty-four thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(3342, 92499, 'ninety-two thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(3343, 26274, 'twenty-six thousand two hundred seventy-four'); INSERT INTO t2 VALUES(3344, 58419, 'fifty-eight thousand four hundred nineteen'); INSERT INTO t2 VALUES(3345, 36959, 'thirty-six thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(3346, 72623, 'seventy-two thousand six hundred twenty-three'); INSERT INTO t2 VALUES(3347, 98876, 'ninety-eight thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(3348, 94411, 'ninety-four thousand four hundred eleven'); INSERT INTO t2 VALUES(3349, 69304, 'sixty-nine thousand three hundred four'); INSERT INTO t2 VALUES(3350, 13652, 'thirteen thousand six hundred fifty-two'); INSERT INTO t2 VALUES(3351, 39250, 'thirty-nine thousand two hundred fifty'); INSERT INTO t2 VALUES(3352, 19459, 'nineteen thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(3353, 66835, 'sixty-six thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(3354, 95903, 'ninety-five thousand nine hundred three'); INSERT INTO t2 VALUES(3355, 70163, 'seventy thousand one hundred sixty-three'); INSERT INTO t2 VALUES(3356, 44244, 'forty-four thousand two hundred forty-four'); INSERT INTO t2 VALUES(3357, 3362, 'three thousand three hundred sixty-two'); INSERT INTO t2 VALUES(3358, 738, 'seven hundred thirty-eight'); INSERT INTO t2 VALUES(3359, 51169, 'fifty-one thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(3360, 28504, 'twenty-eight thousand five hundred four'); INSERT INTO t2 VALUES(3361, 67979, 'sixty-seven thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(3362, 99613, 'ninety-nine thousand six hundred thirteen'); INSERT INTO t2 VALUES(3363, 36511, 'thirty-six thousand five hundred eleven'); INSERT INTO t2 VALUES(3364, 68904, 'sixty-eight thousand nine hundred four'); INSERT INTO t2 VALUES(3365, 95165, 'ninety-five thousand one hundred sixty-five'); INSERT INTO t2 VALUES(3366, 86502, 'eighty-six thousand five hundred two'); INSERT INTO t2 VALUES(3367, 55373, 'fifty-five thousand three hundred seventy-three'); INSERT INTO t2 VALUES(3368, 12702, 'twelve thousand seven hundred two'); INSERT INTO t2 VALUES(3369, 51094, 'fifty-one thousand ninety-four'); INSERT INTO t2 VALUES(3370, 50423, 'fifty thousand four hundred twenty-three'); INSERT INTO t2 VALUES(3371, 41766, 'forty-one thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(3372, 25246, 'twenty-five thousand two hundred forty-six'); INSERT INTO t2 VALUES(3373, 40366, 'forty thousand three hundred sixty-six'); INSERT INTO t2 VALUES(3374, 29845, 'twenty-nine thousand eight hundred forty-five'); INSERT INTO t2 VALUES(3375, 32808, 'thirty-two thousand eight hundred eight'); INSERT INTO t2 VALUES(3376, 52345, 'fifty-two thousand three hundred forty-five'); INSERT INTO t2 VALUES(3377, 54055, 'fifty-four thousand fifty-five'); INSERT INTO t2 VALUES(3378, 97214, 'ninety-seven thousand two hundred fourteen'); INSERT INTO t2 VALUES(3379, 81031, 'eighty-one thousand thirty-one'); INSERT INTO t2 VALUES(3380, 78559, 'seventy-eight thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(3381, 28423, 'twenty-eight thousand four hundred twenty-three'); INSERT INTO t2 VALUES(3382, 47909, 'forty-seven thousand nine hundred nine'); INSERT INTO t2 VALUES(3383, 31237, 'thirty-one thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(3384, 56385, 'fifty-six thousand three hundred eighty-five'); INSERT INTO t2 VALUES(3385, 74721, 'seventy-four thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(3386, 82882, 'eighty-two thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(3387, 99646, 'ninety-nine thousand six hundred forty-six'); INSERT INTO t2 VALUES(3388, 96020, 'ninety-six thousand twenty'); INSERT INTO t2 VALUES(3389, 59349, 'fifty-nine thousand three hundred forty-nine'); INSERT INTO t2 VALUES(3390, 46739, 'forty-six thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(3391, 91953, 'ninety-one thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(3392, 33637, 'thirty-three thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(3393, 10572, 'ten thousand five hundred seventy-two'); INSERT INTO t2 VALUES(3394, 53714, 'fifty-three thousand seven hundred fourteen'); INSERT INTO t2 VALUES(3395, 99581, 'ninety-nine thousand five hundred eighty-one'); INSERT INTO t2 VALUES(3396, 6327, 'six thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(3397, 79238, 'seventy-nine thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(3398, 38798, 'thirty-eight thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(3399, 4125, 'four thousand one hundred twenty-five'); INSERT INTO t2 VALUES(3400, 20030, 'twenty thousand thirty'); INSERT INTO t2 VALUES(3401, 31162, 'thirty-one thousand one hundred sixty-two'); INSERT INTO t2 VALUES(3402, 47698, 'forty-seven thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(3403, 77363, 'seventy-seven thousand three hundred sixty-three'); INSERT INTO t2 VALUES(3404, 76115, 'seventy-six thousand one hundred fifteen'); INSERT INTO t2 VALUES(3405, 9146, 'nine thousand one hundred forty-six'); INSERT INTO t2 VALUES(3406, 36983, 'thirty-six thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(3407, 52519, 'fifty-two thousand five hundred nineteen'); INSERT INTO t2 VALUES(3408, 7031, 'seven thousand thirty-one'); INSERT INTO t2 VALUES(3409, 80875, 'eighty thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(3410, 16111, 'sixteen thousand one hundred eleven'); INSERT INTO t2 VALUES(3411, 47006, 'forty-seven thousand six'); INSERT INTO t2 VALUES(3412, 14351, 'fourteen thousand three hundred fifty-one'); INSERT INTO t2 VALUES(3413, 16713, 'sixteen thousand seven hundred thirteen'); INSERT INTO t2 VALUES(3414, 23506, 'twenty-three thousand five hundred six'); INSERT INTO t2 VALUES(3415, 22926, 'twenty-two thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(3416, 21751, 'twenty-one thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(3417, 79164, 'seventy-nine thousand one hundred sixty-four'); INSERT INTO t2 VALUES(3418, 79122, 'seventy-nine thousand one hundred twenty-two'); INSERT INTO t2 VALUES(3419, 29793, 'twenty-nine thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(3420, 70882, 'seventy thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(3421, 58331, 'fifty-eight thousand three hundred thirty-one'); INSERT INTO t2 VALUES(3422, 77125, 'seventy-seven thousand one hundred twenty-five'); INSERT INTO t2 VALUES(3423, 57176, 'fifty-seven thousand one hundred seventy-six'); INSERT INTO t2 VALUES(3424, 55246, 'fifty-five thousand two hundred forty-six'); INSERT INTO t2 VALUES(3425, 42733, 'forty-two thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(3426, 43354, 'forty-three thousand three hundred fifty-four'); INSERT INTO t2 VALUES(3427, 66353, 'sixty-six thousand three hundred fifty-three'); INSERT INTO t2 VALUES(3428, 61320, 'sixty-one thousand three hundred twenty'); INSERT INTO t2 VALUES(3429, 17328, 'seventeen thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(3430, 59504, 'fifty-nine thousand five hundred four'); INSERT INTO t2 VALUES(3431, 77446, 'seventy-seven thousand four hundred forty-six'); INSERT INTO t2 VALUES(3432, 78882, 'seventy-eight thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(3433, 19092, 'nineteen thousand ninety-two'); INSERT INTO t2 VALUES(3434, 29837, 'twenty-nine thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(3435, 97048, 'ninety-seven thousand forty-eight'); INSERT INTO t2 VALUES(3436, 3261, 'three thousand two hundred sixty-one'); INSERT INTO t2 VALUES(3437, 93304, 'ninety-three thousand three hundred four'); INSERT INTO t2 VALUES(3438, 39311, 'thirty-nine thousand three hundred eleven'); INSERT INTO t2 VALUES(3439, 51098, 'fifty-one thousand ninety-eight'); INSERT INTO t2 VALUES(3440, 59576, 'fifty-nine thousand five hundred seventy-six'); INSERT INTO t2 VALUES(3441, 71061, 'seventy-one thousand sixty-one'); INSERT INTO t2 VALUES(3442, 70141, 'seventy thousand one hundred forty-one'); INSERT INTO t2 VALUES(3443, 80022, 'eighty thousand twenty-two'); INSERT INTO t2 VALUES(3444, 18465, 'eighteen thousand four hundred sixty-five'); INSERT INTO t2 VALUES(3445, 96572, 'ninety-six thousand five hundred seventy-two'); INSERT INTO t2 VALUES(3446, 40804, 'forty thousand eight hundred four'); INSERT INTO t2 VALUES(3447, 37781, 'thirty-seven thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(3448, 48292, 'forty-eight thousand two hundred ninety-two'); INSERT INTO t2 VALUES(3449, 8752, 'eight thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(3450, 92676, 'ninety-two thousand six hundred seventy-six'); INSERT INTO t2 VALUES(3451, 43207, 'forty-three thousand two hundred seven'); INSERT INTO t2 VALUES(3452, 613, 'six hundred thirteen'); INSERT INTO t2 VALUES(3453, 67358, 'sixty-seven thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(3454, 57843, 'fifty-seven thousand eight hundred forty-three'); INSERT INTO t2 VALUES(3455, 65505, 'sixty-five thousand five hundred five'); INSERT INTO t2 VALUES(3456, 40131, 'forty thousand one hundred thirty-one'); INSERT INTO t2 VALUES(3457, 23259, 'twenty-three thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(3458, 59068, 'fifty-nine thousand sixty-eight'); INSERT INTO t2 VALUES(3459, 18623, 'eighteen thousand six hundred twenty-three'); INSERT INTO t2 VALUES(3460, 39532, 'thirty-nine thousand five hundred thirty-two'); INSERT INTO t2 VALUES(3461, 56300, 'fifty-six thousand three hundred'); INSERT INTO t2 VALUES(3462, 16806, 'sixteen thousand eight hundred six'); INSERT INTO t2 VALUES(3463, 79329, 'seventy-nine thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(3464, 80980, 'eighty thousand nine hundred eighty'); INSERT INTO t2 VALUES(3465, 33166, 'thirty-three thousand one hundred sixty-six'); INSERT INTO t2 VALUES(3466, 63230, 'sixty-three thousand two hundred thirty'); INSERT INTO t2 VALUES(3467, 77583, 'seventy-seven thousand five hundred eighty-three'); INSERT INTO t2 VALUES(3468, 94025, 'ninety-four thousand twenty-five'); INSERT INTO t2 VALUES(3469, 89483, 'eighty-nine thousand four hundred eighty-three'); INSERT INTO t2 VALUES(3470, 91304, 'ninety-one thousand three hundred four'); INSERT INTO t2 VALUES(3471, 18692, 'eighteen thousand six hundred ninety-two'); INSERT INTO t2 VALUES(3472, 67993, 'sixty-seven thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(3473, 19362, 'nineteen thousand three hundred sixty-two'); INSERT INTO t2 VALUES(3474, 64142, 'sixty-four thousand one hundred forty-two'); INSERT INTO t2 VALUES(3475, 31830, 'thirty-one thousand eight hundred thirty'); INSERT INTO t2 VALUES(3476, 89311, 'eighty-nine thousand three hundred eleven'); INSERT INTO t2 VALUES(3477, 17025, 'seventeen thousand twenty-five'); INSERT INTO t2 VALUES(3478, 91668, 'ninety-one thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(3479, 18688, 'eighteen thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(3480, 4247, 'four thousand two hundred forty-seven'); INSERT INTO t2 VALUES(3481, 50185, 'fifty thousand one hundred eighty-five'); INSERT INTO t2 VALUES(3482, 52285, 'fifty-two thousand two hundred eighty-five'); INSERT INTO t2 VALUES(3483, 3777, 'three thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(3484, 80295, 'eighty thousand two hundred ninety-five'); INSERT INTO t2 VALUES(3485, 90562, 'ninety thousand five hundred sixty-two'); INSERT INTO t2 VALUES(3486, 10098, 'ten thousand ninety-eight'); INSERT INTO t2 VALUES(3487, 40706, 'forty thousand seven hundred six'); INSERT INTO t2 VALUES(3488, 39369, 'thirty-nine thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(3489, 4547, 'four thousand five hundred forty-seven'); INSERT INTO t2 VALUES(3490, 10985, 'ten thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(3491, 47247, 'forty-seven thousand two hundred forty-seven'); INSERT INTO t2 VALUES(3492, 36993, 'thirty-six thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(3493, 60076, 'sixty thousand seventy-six'); INSERT INTO t2 VALUES(3494, 59469, 'fifty-nine thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(3495, 31562, 'thirty-one thousand five hundred sixty-two'); INSERT INTO t2 VALUES(3496, 61847, 'sixty-one thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(3497, 37215, 'thirty-seven thousand two hundred fifteen'); INSERT INTO t2 VALUES(3498, 76642, 'seventy-six thousand six hundred forty-two'); INSERT INTO t2 VALUES(3499, 92402, 'ninety-two thousand four hundred two'); INSERT INTO t2 VALUES(3500, 41986, 'forty-one thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(3501, 2680, 'two thousand six hundred eighty'); INSERT INTO t2 VALUES(3502, 72800, 'seventy-two thousand eight hundred'); INSERT INTO t2 VALUES(3503, 98335, 'ninety-eight thousand three hundred thirty-five'); INSERT INTO t2 VALUES(3504, 71051, 'seventy-one thousand fifty-one'); INSERT INTO t2 VALUES(3505, 46202, 'forty-six thousand two hundred two'); INSERT INTO t2 VALUES(3506, 63475, 'sixty-three thousand four hundred seventy-five'); INSERT INTO t2 VALUES(3507, 71129, 'seventy-one thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(3508, 7246, 'seven thousand two hundred forty-six'); INSERT INTO t2 VALUES(3509, 64159, 'sixty-four thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(3510, 73764, 'seventy-three thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(3511, 13414, 'thirteen thousand four hundred fourteen'); INSERT INTO t2 VALUES(3512, 94177, 'ninety-four thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(3513, 56445, 'fifty-six thousand four hundred forty-five'); INSERT INTO t2 VALUES(3514, 11530, 'eleven thousand five hundred thirty'); INSERT INTO t2 VALUES(3515, 39867, 'thirty-nine thousand eight hundred sixty-seven'); INSERT INTO t2 VALUES(3516, 37914, 'thirty-seven thousand nine hundred fourteen'); INSERT INTO t2 VALUES(3517, 62936, 'sixty-two thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(3518, 83949, 'eighty-three thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(3519, 12285, 'twelve thousand two hundred eighty-five'); INSERT INTO t2 VALUES(3520, 84970, 'eighty-four thousand nine hundred seventy'); INSERT INTO t2 VALUES(3521, 94285, 'ninety-four thousand two hundred eighty-five'); INSERT INTO t2 VALUES(3522, 94582, 'ninety-four thousand five hundred eighty-two'); INSERT INTO t2 VALUES(3523, 77138, 'seventy-seven thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(3524, 96699, 'ninety-six thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(3525, 92895, 'ninety-two thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(3526, 46923, 'forty-six thousand nine hundred twenty-three'); INSERT INTO t2 VALUES(3527, 45937, 'forty-five thousand nine hundred thirty-seven'); INSERT INTO t2 VALUES(3528, 72410, 'seventy-two thousand four hundred ten'); INSERT INTO t2 VALUES(3529, 6020, 'six thousand twenty'); INSERT INTO t2 VALUES(3530, 954, 'nine hundred fifty-four'); INSERT INTO t2 VALUES(3531, 62276, 'sixty-two thousand two hundred seventy-six'); INSERT INTO t2 VALUES(3532, 30830, 'thirty thousand eight hundred thirty'); INSERT INTO t2 VALUES(3533, 15042, 'fifteen thousand forty-two'); INSERT INTO t2 VALUES(3534, 95069, 'ninety-five thousand sixty-nine'); INSERT INTO t2 VALUES(3535, 55683, 'fifty-five thousand six hundred eighty-three'); INSERT INTO t2 VALUES(3536, 55488, 'fifty-five thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(3537, 64828, 'sixty-four thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(3538, 24790, 'twenty-four thousand seven hundred ninety'); INSERT INTO t2 VALUES(3539, 19429, 'nineteen thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(3540, 34785, 'thirty-four thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(3541, 21011, 'twenty-one thousand eleven'); INSERT INTO t2 VALUES(3542, 30700, 'thirty thousand seven hundred'); INSERT INTO t2 VALUES(3543, 75483, 'seventy-five thousand four hundred eighty-three'); INSERT INTO t2 VALUES(3544, 52547, 'fifty-two thousand five hundred forty-seven'); INSERT INTO t2 VALUES(3545, 31185, 'thirty-one thousand one hundred eighty-five'); INSERT INTO t2 VALUES(3546, 70808, 'seventy thousand eight hundred eight'); INSERT INTO t2 VALUES(3547, 30730, 'thirty thousand seven hundred thirty'); INSERT INTO t2 VALUES(3548, 81751, 'eighty-one thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(3549, 59115, 'fifty-nine thousand one hundred fifteen'); INSERT INTO t2 VALUES(3550, 5455, 'five thousand four hundred fifty-five'); INSERT INTO t2 VALUES(3551, 75921, 'seventy-five thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(3552, 58632, 'fifty-eight thousand six hundred thirty-two'); INSERT INTO t2 VALUES(3553, 7828, 'seven thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(3554, 15520, 'fifteen thousand five hundred twenty'); INSERT INTO t2 VALUES(3555, 1749, 'one thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(3556, 4642, 'four thousand six hundred forty-two'); INSERT INTO t2 VALUES(3557, 4770, 'four thousand seven hundred seventy'); INSERT INTO t2 VALUES(3558, 54431, 'fifty-four thousand four hundred thirty-one'); INSERT INTO t2 VALUES(3559, 20855, 'twenty thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(3560, 69105, 'sixty-nine thousand one hundred five'); INSERT INTO t2 VALUES(3561, 40008, 'forty thousand eight'); INSERT INTO t2 VALUES(3562, 95681, 'ninety-five thousand six hundred eighty-one'); INSERT INTO t2 VALUES(3563, 75699, 'seventy-five thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(3564, 43610, 'forty-three thousand six hundred ten'); INSERT INTO t2 VALUES(3565, 55614, 'fifty-five thousand six hundred fourteen'); INSERT INTO t2 VALUES(3566, 34354, 'thirty-four thousand three hundred fifty-four'); INSERT INTO t2 VALUES(3567, 920, 'nine hundred twenty'); INSERT INTO t2 VALUES(3568, 47582, 'forty-seven thousand five hundred eighty-two'); INSERT INTO t2 VALUES(3569, 1028, 'one thousand twenty-eight'); INSERT INTO t2 VALUES(3570, 30341, 'thirty thousand three hundred forty-one'); INSERT INTO t2 VALUES(3571, 29131, 'twenty-nine thousand one hundred thirty-one'); INSERT INTO t2 VALUES(3572, 97796, 'ninety-seven thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(3573, 86793, 'eighty-six thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(3574, 5320, 'five thousand three hundred twenty'); INSERT INTO t2 VALUES(3575, 94072, 'ninety-four thousand seventy-two'); INSERT INTO t2 VALUES(3576, 24303, 'twenty-four thousand three hundred three'); INSERT INTO t2 VALUES(3577, 93820, 'ninety-three thousand eight hundred twenty'); INSERT INTO t2 VALUES(3578, 62865, 'sixty-two thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(3579, 38733, 'thirty-eight thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(3580, 42334, 'forty-two thousand three hundred thirty-four'); INSERT INTO t2 VALUES(3581, 79400, 'seventy-nine thousand four hundred'); INSERT INTO t2 VALUES(3582, 40253, 'forty thousand two hundred fifty-three'); INSERT INTO t2 VALUES(3583, 69136, 'sixty-nine thousand one hundred thirty-six'); INSERT INTO t2 VALUES(3584, 54164, 'fifty-four thousand one hundred sixty-four'); INSERT INTO t2 VALUES(3585, 62394, 'sixty-two thousand three hundred ninety-four'); INSERT INTO t2 VALUES(3586, 68173, 'sixty-eight thousand one hundred seventy-three'); INSERT INTO t2 VALUES(3587, 70208, 'seventy thousand two hundred eight'); INSERT INTO t2 VALUES(3588, 88806, 'eighty-eight thousand eight hundred six'); INSERT INTO t2 VALUES(3589, 3430, 'three thousand four hundred thirty'); INSERT INTO t2 VALUES(3590, 91534, 'ninety-one thousand five hundred thirty-four'); INSERT INTO t2 VALUES(3591, 7192, 'seven thousand one hundred ninety-two'); INSERT INTO t2 VALUES(3592, 44758, 'forty-four thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(3593, 57347, 'fifty-seven thousand three hundred forty-seven'); INSERT INTO t2 VALUES(3594, 72945, 'seventy-two thousand nine hundred forty-five'); INSERT INTO t2 VALUES(3595, 8275, 'eight thousand two hundred seventy-five'); INSERT INTO t2 VALUES(3596, 35801, 'thirty-five thousand eight hundred one'); INSERT INTO t2 VALUES(3597, 38557, 'thirty-eight thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(3598, 49555, 'forty-nine thousand five hundred fifty-five'); INSERT INTO t2 VALUES(3599, 14262, 'fourteen thousand two hundred sixty-two'); INSERT INTO t2 VALUES(3600, 43515, 'forty-three thousand five hundred fifteen'); INSERT INTO t2 VALUES(3601, 71059, 'seventy-one thousand fifty-nine'); INSERT INTO t2 VALUES(3602, 3819, 'three thousand eight hundred nineteen'); INSERT INTO t2 VALUES(3603, 19583, 'nineteen thousand five hundred eighty-three'); INSERT INTO t2 VALUES(3604, 34751, 'thirty-four thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(3605, 34237, 'thirty-four thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(3606, 33187, 'thirty-three thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(3607, 8186, 'eight thousand one hundred eighty-six'); INSERT INTO t2 VALUES(3608, 68143, 'sixty-eight thousand one hundred forty-three'); INSERT INTO t2 VALUES(3609, 92843, 'ninety-two thousand eight hundred forty-three'); INSERT INTO t2 VALUES(3610, 82475, 'eighty-two thousand four hundred seventy-five'); INSERT INTO t2 VALUES(3611, 51131, 'fifty-one thousand one hundred thirty-one'); INSERT INTO t2 VALUES(3612, 62839, 'sixty-two thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(3613, 65849, 'sixty-five thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(3614, 69164, 'sixty-nine thousand one hundred sixty-four'); INSERT INTO t2 VALUES(3615, 90354, 'ninety thousand three hundred fifty-four'); INSERT INTO t2 VALUES(3616, 35248, 'thirty-five thousand two hundred forty-eight'); INSERT INTO t2 VALUES(3617, 8706, 'eight thousand seven hundred six'); INSERT INTO t2 VALUES(3618, 53867, 'fifty-three thousand eight hundred sixty-seven'); INSERT INTO t2 VALUES(3619, 28201, 'twenty-eight thousand two hundred one'); INSERT INTO t2 VALUES(3620, 38230, 'thirty-eight thousand two hundred thirty'); INSERT INTO t2 VALUES(3621, 96085, 'ninety-six thousand eighty-five'); INSERT INTO t2 VALUES(3622, 22493, 'twenty-two thousand four hundred ninety-three'); INSERT INTO t2 VALUES(3623, 11328, 'eleven thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(3624, 78635, 'seventy-eight thousand six hundred thirty-five'); INSERT INTO t2 VALUES(3625, 17955, 'seventeen thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(3626, 62422, 'sixty-two thousand four hundred twenty-two'); INSERT INTO t2 VALUES(3627, 39236, 'thirty-nine thousand two hundred thirty-six'); INSERT INTO t2 VALUES(3628, 1788, 'one thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(3629, 71202, 'seventy-one thousand two hundred two'); INSERT INTO t2 VALUES(3630, 33719, 'thirty-three thousand seven hundred nineteen'); INSERT INTO t2 VALUES(3631, 66093, 'sixty-six thousand ninety-three'); INSERT INTO t2 VALUES(3632, 69927, 'sixty-nine thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(3633, 46523, 'forty-six thousand five hundred twenty-three'); INSERT INTO t2 VALUES(3634, 19984, 'nineteen thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(3635, 19454, 'nineteen thousand four hundred fifty-four'); INSERT INTO t2 VALUES(3636, 47699, 'forty-seven thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(3637, 45834, 'forty-five thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(3638, 14846, 'fourteen thousand eight hundred forty-six'); INSERT INTO t2 VALUES(3639, 20487, 'twenty thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(3640, 57392, 'fifty-seven thousand three hundred ninety-two'); INSERT INTO t2 VALUES(3641, 88772, 'eighty-eight thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(3642, 73118, 'seventy-three thousand one hundred eighteen'); INSERT INTO t2 VALUES(3643, 29918, 'twenty-nine thousand nine hundred eighteen'); INSERT INTO t2 VALUES(3644, 82863, 'eighty-two thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(3645, 5393, 'five thousand three hundred ninety-three'); INSERT INTO t2 VALUES(3646, 30713, 'thirty thousand seven hundred thirteen'); INSERT INTO t2 VALUES(3647, 19325, 'nineteen thousand three hundred twenty-five'); INSERT INTO t2 VALUES(3648, 11926, 'eleven thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(3649, 28917, 'twenty-eight thousand nine hundred seventeen'); INSERT INTO t2 VALUES(3650, 63194, 'sixty-three thousand one hundred ninety-four'); INSERT INTO t2 VALUES(3651, 94885, 'ninety-four thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(3652, 26602, 'twenty-six thousand six hundred two'); INSERT INTO t2 VALUES(3653, 40673, 'forty thousand six hundred seventy-three'); INSERT INTO t2 VALUES(3654, 70009, 'seventy thousand nine'); INSERT INTO t2 VALUES(3655, 12997, 'twelve thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(3656, 79751, 'seventy-nine thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(3657, 55886, 'fifty-five thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(3658, 25845, 'twenty-five thousand eight hundred forty-five'); INSERT INTO t2 VALUES(3659, 23357, 'twenty-three thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(3660, 76086, 'seventy-six thousand eighty-six'); INSERT INTO t2 VALUES(3661, 48247, 'forty-eight thousand two hundred forty-seven'); INSERT INTO t2 VALUES(3662, 61115, 'sixty-one thousand one hundred fifteen'); INSERT INTO t2 VALUES(3663, 77283, 'seventy-seven thousand two hundred eighty-three'); INSERT INTO t2 VALUES(3664, 4435, 'four thousand four hundred thirty-five'); INSERT INTO t2 VALUES(3665, 96617, 'ninety-six thousand six hundred seventeen'); INSERT INTO t2 VALUES(3666, 8807, 'eight thousand eight hundred seven'); INSERT INTO t2 VALUES(3667, 90492, 'ninety thousand four hundred ninety-two'); INSERT INTO t2 VALUES(3668, 27321, 'twenty-seven thousand three hundred twenty-one'); INSERT INTO t2 VALUES(3669, 73247, 'seventy-three thousand two hundred forty-seven'); INSERT INTO t2 VALUES(3670, 44684, 'forty-four thousand six hundred eighty-four'); INSERT INTO t2 VALUES(3671, 59641, 'fifty-nine thousand six hundred forty-one'); INSERT INTO t2 VALUES(3672, 32592, 'thirty-two thousand five hundred ninety-two'); INSERT INTO t2 VALUES(3673, 90266, 'ninety thousand two hundred sixty-six'); INSERT INTO t2 VALUES(3674, 15418, 'fifteen thousand four hundred eighteen'); INSERT INTO t2 VALUES(3675, 5464, 'five thousand four hundred sixty-four'); INSERT INTO t2 VALUES(3676, 19066, 'nineteen thousand sixty-six'); INSERT INTO t2 VALUES(3677, 70762, 'seventy thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(3678, 7286, 'seven thousand two hundred eighty-six'); INSERT INTO t2 VALUES(3679, 54476, 'fifty-four thousand four hundred seventy-six'); INSERT INTO t2 VALUES(3680, 87819, 'eighty-seven thousand eight hundred nineteen'); INSERT INTO t2 VALUES(3681, 13560, 'thirteen thousand five hundred sixty'); INSERT INTO t2 VALUES(3682, 2906, 'two thousand nine hundred six'); INSERT INTO t2 VALUES(3683, 35785, 'thirty-five thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(3684, 46144, 'forty-six thousand one hundred forty-four'); INSERT INTO t2 VALUES(3685, 83097, 'eighty-three thousand ninety-seven'); INSERT INTO t2 VALUES(3686, 61297, 'sixty-one thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(3687, 38225, 'thirty-eight thousand two hundred twenty-five'); INSERT INTO t2 VALUES(3688, 72518, 'seventy-two thousand five hundred eighteen'); INSERT INTO t2 VALUES(3689, 81165, 'eighty-one thousand one hundred sixty-five'); INSERT INTO t2 VALUES(3690, 93299, 'ninety-three thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(3691, 67364, 'sixty-seven thousand three hundred sixty-four'); INSERT INTO t2 VALUES(3692, 43724, 'forty-three thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(3693, 64556, 'sixty-four thousand five hundred fifty-six'); INSERT INTO t2 VALUES(3694, 91597, 'ninety-one thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(3695, 5257, 'five thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(3696, 67126, 'sixty-seven thousand one hundred twenty-six'); INSERT INTO t2 VALUES(3697, 53896, 'fifty-three thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(3698, 99048, 'ninety-nine thousand forty-eight'); INSERT INTO t2 VALUES(3699, 29883, 'twenty-nine thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(3700, 41000, 'forty-one thousand'); INSERT INTO t2 VALUES(3701, 98635, 'ninety-eight thousand six hundred thirty-five'); INSERT INTO t2 VALUES(3702, 29392, 'twenty-nine thousand three hundred ninety-two'); INSERT INTO t2 VALUES(3703, 10692, 'ten thousand six hundred ninety-two'); INSERT INTO t2 VALUES(3704, 94217, 'ninety-four thousand two hundred seventeen'); INSERT INTO t2 VALUES(3705, 75692, 'seventy-five thousand six hundred ninety-two'); INSERT INTO t2 VALUES(3706, 86601, 'eighty-six thousand six hundred one'); INSERT INTO t2 VALUES(3707, 73873, 'seventy-three thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(3708, 54818, 'fifty-four thousand eight hundred eighteen'); INSERT INTO t2 VALUES(3709, 25877, 'twenty-five thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(3710, 16828, 'sixteen thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(3711, 8547, 'eight thousand five hundred forty-seven'); INSERT INTO t2 VALUES(3712, 53747, 'fifty-three thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(3713, 17889, 'seventeen thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(3714, 73856, 'seventy-three thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(3715, 85289, 'eighty-five thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(3716, 15643, 'fifteen thousand six hundred forty-three'); INSERT INTO t2 VALUES(3717, 8609, 'eight thousand six hundred nine'); INSERT INTO t2 VALUES(3718, 48670, 'forty-eight thousand six hundred seventy'); INSERT INTO t2 VALUES(3719, 54886, 'fifty-four thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(3720, 87184, 'eighty-seven thousand one hundred eighty-four'); INSERT INTO t2 VALUES(3721, 44125, 'forty-four thousand one hundred twenty-five'); INSERT INTO t2 VALUES(3722, 81507, 'eighty-one thousand five hundred seven'); INSERT INTO t2 VALUES(3723, 93093, 'ninety-three thousand ninety-three'); INSERT INTO t2 VALUES(3724, 88383, 'eighty-eight thousand three hundred eighty-three'); INSERT INTO t2 VALUES(3725, 69022, 'sixty-nine thousand twenty-two'); INSERT INTO t2 VALUES(3726, 65629, 'sixty-five thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(3727, 67196, 'sixty-seven thousand one hundred ninety-six'); INSERT INTO t2 VALUES(3728, 84243, 'eighty-four thousand two hundred forty-three'); INSERT INTO t2 VALUES(3729, 42058, 'forty-two thousand fifty-eight'); INSERT INTO t2 VALUES(3730, 63197, 'sixty-three thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(3731, 22264, 'twenty-two thousand two hundred sixty-four'); INSERT INTO t2 VALUES(3732, 58744, 'fifty-eight thousand seven hundred forty-four'); INSERT INTO t2 VALUES(3733, 61203, 'sixty-one thousand two hundred three'); INSERT INTO t2 VALUES(3734, 57984, 'fifty-seven thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(3735, 26082, 'twenty-six thousand eighty-two'); INSERT INTO t2 VALUES(3736, 80371, 'eighty thousand three hundred seventy-one'); INSERT INTO t2 VALUES(3737, 63320, 'sixty-three thousand three hundred twenty'); INSERT INTO t2 VALUES(3738, 62875, 'sixty-two thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(3739, 49996, 'forty-nine thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(3740, 14711, 'fourteen thousand seven hundred eleven'); INSERT INTO t2 VALUES(3741, 69546, 'sixty-nine thousand five hundred forty-six'); INSERT INTO t2 VALUES(3742, 55878, 'fifty-five thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(3743, 32801, 'thirty-two thousand eight hundred one'); INSERT INTO t2 VALUES(3744, 67356, 'sixty-seven thousand three hundred fifty-six'); INSERT INTO t2 VALUES(3745, 86036, 'eighty-six thousand thirty-six'); INSERT INTO t2 VALUES(3746, 24650, 'twenty-four thousand six hundred fifty'); INSERT INTO t2 VALUES(3747, 83466, 'eighty-three thousand four hundred sixty-six'); INSERT INTO t2 VALUES(3748, 56492, 'fifty-six thousand four hundred ninety-two'); INSERT INTO t2 VALUES(3749, 36693, 'thirty-six thousand six hundred ninety-three'); INSERT INTO t2 VALUES(3750, 66565, 'sixty-six thousand five hundred sixty-five'); INSERT INTO t2 VALUES(3751, 34868, 'thirty-four thousand eight hundred sixty-eight'); INSERT INTO t2 VALUES(3752, 8102, 'eight thousand one hundred two'); INSERT INTO t2 VALUES(3753, 40664, 'forty thousand six hundred sixty-four'); INSERT INTO t2 VALUES(3754, 36053, 'thirty-six thousand fifty-three'); INSERT INTO t2 VALUES(3755, 13391, 'thirteen thousand three hundred ninety-one'); INSERT INTO t2 VALUES(3756, 58838, 'fifty-eight thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(3757, 11765, 'eleven thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(3758, 56726, 'fifty-six thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(3759, 94366, 'ninety-four thousand three hundred sixty-six'); INSERT INTO t2 VALUES(3760, 74777, 'seventy-four thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(3761, 63537, 'sixty-three thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(3762, 82316, 'eighty-two thousand three hundred sixteen'); INSERT INTO t2 VALUES(3763, 23294, 'twenty-three thousand two hundred ninety-four'); INSERT INTO t2 VALUES(3764, 68941, 'sixty-eight thousand nine hundred forty-one'); INSERT INTO t2 VALUES(3765, 81687, 'eighty-one thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(3766, 95960, 'ninety-five thousand nine hundred sixty'); INSERT INTO t2 VALUES(3767, 89093, 'eighty-nine thousand ninety-three'); INSERT INTO t2 VALUES(3768, 71373, 'seventy-one thousand three hundred seventy-three'); INSERT INTO t2 VALUES(3769, 67005, 'sixty-seven thousand five'); INSERT INTO t2 VALUES(3770, 16053, 'sixteen thousand fifty-three'); INSERT INTO t2 VALUES(3771, 80585, 'eighty thousand five hundred eighty-five'); INSERT INTO t2 VALUES(3772, 35969, 'thirty-five thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(3773, 38560, 'thirty-eight thousand five hundred sixty'); INSERT INTO t2 VALUES(3774, 47373, 'forty-seven thousand three hundred seventy-three'); INSERT INTO t2 VALUES(3775, 45263, 'forty-five thousand two hundred sixty-three'); INSERT INTO t2 VALUES(3776, 46904, 'forty-six thousand nine hundred four'); INSERT INTO t2 VALUES(3777, 11243, 'eleven thousand two hundred forty-three'); INSERT INTO t2 VALUES(3778, 51491, 'fifty-one thousand four hundred ninety-one'); INSERT INTO t2 VALUES(3779, 68380, 'sixty-eight thousand three hundred eighty'); INSERT INTO t2 VALUES(3780, 93130, 'ninety-three thousand one hundred thirty'); INSERT INTO t2 VALUES(3781, 58991, 'fifty-eight thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(3782, 95778, 'ninety-five thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(3783, 97498, 'ninety-seven thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(3784, 60503, 'sixty thousand five hundred three'); INSERT INTO t2 VALUES(3785, 4096, 'four thousand ninety-six'); INSERT INTO t2 VALUES(3786, 66463, 'sixty-six thousand four hundred sixty-three'); INSERT INTO t2 VALUES(3787, 22228, 'twenty-two thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(3788, 33099, 'thirty-three thousand ninety-nine'); INSERT INTO t2 VALUES(3789, 39462, 'thirty-nine thousand four hundred sixty-two'); INSERT INTO t2 VALUES(3790, 76850, 'seventy-six thousand eight hundred fifty'); INSERT INTO t2 VALUES(3791, 62149, 'sixty-two thousand one hundred forty-nine'); INSERT INTO t2 VALUES(3792, 85451, 'eighty-five thousand four hundred fifty-one'); INSERT INTO t2 VALUES(3793, 62002, 'sixty-two thousand two'); INSERT INTO t2 VALUES(3794, 21938, 'twenty-one thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(3795, 11246, 'eleven thousand two hundred forty-six'); INSERT INTO t2 VALUES(3796, 43544, 'forty-three thousand five hundred forty-four'); INSERT INTO t2 VALUES(3797, 60711, 'sixty thousand seven hundred eleven'); INSERT INTO t2 VALUES(3798, 10079, 'ten thousand seventy-nine'); INSERT INTO t2 VALUES(3799, 48214, 'forty-eight thousand two hundred fourteen'); INSERT INTO t2 VALUES(3800, 99392, 'ninety-nine thousand three hundred ninety-two'); INSERT INTO t2 VALUES(3801, 35166, 'thirty-five thousand one hundred sixty-six'); INSERT INTO t2 VALUES(3802, 9562, 'nine thousand five hundred sixty-two'); INSERT INTO t2 VALUES(3803, 46966, 'forty-six thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(3804, 55642, 'fifty-five thousand six hundred forty-two'); INSERT INTO t2 VALUES(3805, 55483, 'fifty-five thousand four hundred eighty-three'); INSERT INTO t2 VALUES(3806, 17111, 'seventeen thousand one hundred eleven'); INSERT INTO t2 VALUES(3807, 27591, 'twenty-seven thousand five hundred ninety-one'); INSERT INTO t2 VALUES(3808, 87309, 'eighty-seven thousand three hundred nine'); INSERT INTO t2 VALUES(3809, 34334, 'thirty-four thousand three hundred thirty-four'); INSERT INTO t2 VALUES(3810, 60029, 'sixty thousand twenty-nine'); INSERT INTO t2 VALUES(3811, 52959, 'fifty-two thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(3812, 79293, 'seventy-nine thousand two hundred ninety-three'); INSERT INTO t2 VALUES(3813, 6312, 'six thousand three hundred twelve'); INSERT INTO t2 VALUES(3814, 85613, 'eighty-five thousand six hundred thirteen'); INSERT INTO t2 VALUES(3815, 26533, 'twenty-six thousand five hundred thirty-three'); INSERT INTO t2 VALUES(3816, 67859, 'sixty-seven thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(3817, 34969, 'thirty-four thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(3818, 84178, 'eighty-four thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(3819, 63392, 'sixty-three thousand three hundred ninety-two'); INSERT INTO t2 VALUES(3820, 17888, 'seventeen thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(3821, 63319, 'sixty-three thousand three hundred nineteen'); INSERT INTO t2 VALUES(3822, 22573, 'twenty-two thousand five hundred seventy-three'); INSERT INTO t2 VALUES(3823, 40494, 'forty thousand four hundred ninety-four'); INSERT INTO t2 VALUES(3824, 87258, 'eighty-seven thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(3825, 41353, 'forty-one thousand three hundred fifty-three'); INSERT INTO t2 VALUES(3826, 16221, 'sixteen thousand two hundred twenty-one'); INSERT INTO t2 VALUES(3827, 47954, 'forty-seven thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(3828, 67341, 'sixty-seven thousand three hundred forty-one'); INSERT INTO t2 VALUES(3829, 42031, 'forty-two thousand thirty-one'); INSERT INTO t2 VALUES(3830, 91612, 'ninety-one thousand six hundred twelve'); INSERT INTO t2 VALUES(3831, 1916, 'one thousand nine hundred sixteen'); INSERT INTO t2 VALUES(3832, 67772, 'sixty-seven thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(3833, 71298, 'seventy-one thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(3834, 45935, 'forty-five thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(3835, 46271, 'forty-six thousand two hundred seventy-one'); INSERT INTO t2 VALUES(3836, 44317, 'forty-four thousand three hundred seventeen'); INSERT INTO t2 VALUES(3837, 19746, 'nineteen thousand seven hundred forty-six'); INSERT INTO t2 VALUES(3838, 63509, 'sixty-three thousand five hundred nine'); INSERT INTO t2 VALUES(3839, 75428, 'seventy-five thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(3840, 65418, 'sixty-five thousand four hundred eighteen'); INSERT INTO t2 VALUES(3841, 99711, 'ninety-nine thousand seven hundred eleven'); INSERT INTO t2 VALUES(3842, 84912, 'eighty-four thousand nine hundred twelve'); INSERT INTO t2 VALUES(3843, 91437, 'ninety-one thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(3844, 94740, 'ninety-four thousand seven hundred forty'); INSERT INTO t2 VALUES(3845, 90516, 'ninety thousand five hundred sixteen'); INSERT INTO t2 VALUES(3846, 67898, 'sixty-seven thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(3847, 85588, 'eighty-five thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(3848, 32780, 'thirty-two thousand seven hundred eighty'); INSERT INTO t2 VALUES(3849, 58006, 'fifty-eight thousand six'); INSERT INTO t2 VALUES(3850, 75005, 'seventy-five thousand five'); INSERT INTO t2 VALUES(3851, 75615, 'seventy-five thousand six hundred fifteen'); INSERT INTO t2 VALUES(3852, 76377, 'seventy-six thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(3853, 968, 'nine hundred sixty-eight'); INSERT INTO t2 VALUES(3854, 9238, 'nine thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(3855, 49070, 'forty-nine thousand seventy'); INSERT INTO t2 VALUES(3856, 96741, 'ninety-six thousand seven hundred forty-one'); INSERT INTO t2 VALUES(3857, 86333, 'eighty-six thousand three hundred thirty-three'); INSERT INTO t2 VALUES(3858, 95337, 'ninety-five thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(3859, 52917, 'fifty-two thousand nine hundred seventeen'); INSERT INTO t2 VALUES(3860, 54334, 'fifty-four thousand three hundred thirty-four'); INSERT INTO t2 VALUES(3861, 56139, 'fifty-six thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(3862, 93200, 'ninety-three thousand two hundred'); INSERT INTO t2 VALUES(3863, 19690, 'nineteen thousand six hundred ninety'); INSERT INTO t2 VALUES(3864, 52828, 'fifty-two thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(3865, 98402, 'ninety-eight thousand four hundred two'); INSERT INTO t2 VALUES(3866, 2100, 'two thousand one hundred'); INSERT INTO t2 VALUES(3867, 43675, 'forty-three thousand six hundred seventy-five'); INSERT INTO t2 VALUES(3868, 10024, 'ten thousand twenty-four'); INSERT INTO t2 VALUES(3869, 31538, 'thirty-one thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(3870, 21797, 'twenty-one thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(3871, 4973, 'four thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(3872, 61882, 'sixty-one thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(3873, 65290, 'sixty-five thousand two hundred ninety'); INSERT INTO t2 VALUES(3874, 1100, 'one thousand one hundred'); INSERT INTO t2 VALUES(3875, 71229, 'seventy-one thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(3876, 40275, 'forty thousand two hundred seventy-five'); INSERT INTO t2 VALUES(3877, 55184, 'fifty-five thousand one hundred eighty-four'); INSERT INTO t2 VALUES(3878, 99269, 'ninety-nine thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(3879, 12733, 'twelve thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(3880, 62441, 'sixty-two thousand four hundred forty-one'); INSERT INTO t2 VALUES(3881, 40129, 'forty thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(3882, 83255, 'eighty-three thousand two hundred fifty-five'); INSERT INTO t2 VALUES(3883, 27820, 'twenty-seven thousand eight hundred twenty'); INSERT INTO t2 VALUES(3884, 79113, 'seventy-nine thousand one hundred thirteen'); INSERT INTO t2 VALUES(3885, 14528, 'fourteen thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(3886, 20056, 'twenty thousand fifty-six'); INSERT INTO t2 VALUES(3887, 18646, 'eighteen thousand six hundred forty-six'); INSERT INTO t2 VALUES(3888, 87438, 'eighty-seven thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(3889, 9494, 'nine thousand four hundred ninety-four'); INSERT INTO t2 VALUES(3890, 50518, 'fifty thousand five hundred eighteen'); INSERT INTO t2 VALUES(3891, 86714, 'eighty-six thousand seven hundred fourteen'); INSERT INTO t2 VALUES(3892, 36556, 'thirty-six thousand five hundred fifty-six'); INSERT INTO t2 VALUES(3893, 75431, 'seventy-five thousand four hundred thirty-one'); INSERT INTO t2 VALUES(3894, 55646, 'fifty-five thousand six hundred forty-six'); INSERT INTO t2 VALUES(3895, 37113, 'thirty-seven thousand one hundred thirteen'); INSERT INTO t2 VALUES(3896, 23366, 'twenty-three thousand three hundred sixty-six'); INSERT INTO t2 VALUES(3897, 61458, 'sixty-one thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(3898, 94562, 'ninety-four thousand five hundred sixty-two'); INSERT INTO t2 VALUES(3899, 37519, 'thirty-seven thousand five hundred nineteen'); INSERT INTO t2 VALUES(3900, 17632, 'seventeen thousand six hundred thirty-two'); INSERT INTO t2 VALUES(3901, 38403, 'thirty-eight thousand four hundred three'); INSERT INTO t2 VALUES(3902, 94568, 'ninety-four thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(3903, 45163, 'forty-five thousand one hundred sixty-three'); INSERT INTO t2 VALUES(3904, 43773, 'forty-three thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(3905, 48630, 'forty-eight thousand six hundred thirty'); INSERT INTO t2 VALUES(3906, 22134, 'twenty-two thousand one hundred thirty-four'); INSERT INTO t2 VALUES(3907, 95176, 'ninety-five thousand one hundred seventy-six'); INSERT INTO t2 VALUES(3908, 87972, 'eighty-seven thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(3909, 71001, 'seventy-one thousand one'); INSERT INTO t2 VALUES(3910, 52710, 'fifty-two thousand seven hundred ten'); INSERT INTO t2 VALUES(3911, 40332, 'forty thousand three hundred thirty-two'); INSERT INTO t2 VALUES(3912, 75461, 'seventy-five thousand four hundred sixty-one'); INSERT INTO t2 VALUES(3913, 69119, 'sixty-nine thousand one hundred nineteen'); INSERT INTO t2 VALUES(3914, 3350, 'three thousand three hundred fifty'); INSERT INTO t2 VALUES(3915, 15054, 'fifteen thousand fifty-four'); INSERT INTO t2 VALUES(3916, 34744, 'thirty-four thousand seven hundred forty-four'); INSERT INTO t2 VALUES(3917, 17681, 'seventeen thousand six hundred eighty-one'); INSERT INTO t2 VALUES(3918, 6707, 'six thousand seven hundred seven'); INSERT INTO t2 VALUES(3919, 39451, 'thirty-nine thousand four hundred fifty-one'); INSERT INTO t2 VALUES(3920, 18487, 'eighteen thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(3921, 70543, 'seventy thousand five hundred forty-three'); INSERT INTO t2 VALUES(3922, 12007, 'twelve thousand seven'); INSERT INTO t2 VALUES(3923, 96737, 'ninety-six thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(3924, 12895, 'twelve thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(3925, 96657, 'ninety-six thousand six hundred fifty-seven'); INSERT INTO t2 VALUES(3926, 38542, 'thirty-eight thousand five hundred forty-two'); INSERT INTO t2 VALUES(3927, 51115, 'fifty-one thousand one hundred fifteen'); INSERT INTO t2 VALUES(3928, 81595, 'eighty-one thousand five hundred ninety-five'); INSERT INTO t2 VALUES(3929, 12185, 'twelve thousand one hundred eighty-five'); INSERT INTO t2 VALUES(3930, 4835, 'four thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(3931, 61419, 'sixty-one thousand four hundred nineteen'); INSERT INTO t2 VALUES(3932, 91269, 'ninety-one thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(3933, 52630, 'fifty-two thousand six hundred thirty'); INSERT INTO t2 VALUES(3934, 93973, 'ninety-three thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(3935, 44786, 'forty-four thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(3936, 27317, 'twenty-seven thousand three hundred seventeen'); INSERT INTO t2 VALUES(3937, 91548, 'ninety-one thousand five hundred forty-eight'); INSERT INTO t2 VALUES(3938, 1328, 'one thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(3939, 71652, 'seventy-one thousand six hundred fifty-two'); INSERT INTO t2 VALUES(3940, 80418, 'eighty thousand four hundred eighteen'); INSERT INTO t2 VALUES(3941, 23967, 'twenty-three thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(3942, 9332, 'nine thousand three hundred thirty-two'); INSERT INTO t2 VALUES(3943, 75044, 'seventy-five thousand forty-four'); INSERT INTO t2 VALUES(3944, 64751, 'sixty-four thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(3945, 77527, 'seventy-seven thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(3946, 7631, 'seven thousand six hundred thirty-one'); INSERT INTO t2 VALUES(3947, 96320, 'ninety-six thousand three hundred twenty'); INSERT INTO t2 VALUES(3948, 30337, 'thirty thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(3949, 22733, 'twenty-two thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(3950, 20506, 'twenty thousand five hundred six'); INSERT INTO t2 VALUES(3951, 83774, 'eighty-three thousand seven hundred seventy-four'); INSERT INTO t2 VALUES(3952, 80109, 'eighty thousand one hundred nine'); INSERT INTO t2 VALUES(3953, 5008, 'five thousand eight'); INSERT INTO t2 VALUES(3954, 3949, 'three thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(3955, 62418, 'sixty-two thousand four hundred eighteen'); INSERT INTO t2 VALUES(3956, 54088, 'fifty-four thousand eighty-eight'); INSERT INTO t2 VALUES(3957, 36788, 'thirty-six thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(3958, 24950, 'twenty-four thousand nine hundred fifty'); INSERT INTO t2 VALUES(3959, 37859, 'thirty-seven thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(3960, 67928, 'sixty-seven thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(3961, 65292, 'sixty-five thousand two hundred ninety-two'); INSERT INTO t2 VALUES(3962, 40668, 'forty thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(3963, 46409, 'forty-six thousand four hundred nine'); INSERT INTO t2 VALUES(3964, 111, 'one hundred eleven'); INSERT INTO t2 VALUES(3965, 64791, 'sixty-four thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(3966, 84418, 'eighty-four thousand four hundred eighteen'); INSERT INTO t2 VALUES(3967, 29140, 'twenty-nine thousand one hundred forty'); INSERT INTO t2 VALUES(3968, 48763, 'forty-eight thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(3969, 32590, 'thirty-two thousand five hundred ninety'); INSERT INTO t2 VALUES(3970, 31298, 'thirty-one thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(3971, 76630, 'seventy-six thousand six hundred thirty'); INSERT INTO t2 VALUES(3972, 32916, 'thirty-two thousand nine hundred sixteen'); INSERT INTO t2 VALUES(3973, 23346, 'twenty-three thousand three hundred forty-six'); INSERT INTO t2 VALUES(3974, 80830, 'eighty thousand eight hundred thirty'); INSERT INTO t2 VALUES(3975, 84532, 'eighty-four thousand five hundred thirty-two'); INSERT INTO t2 VALUES(3976, 59437, 'fifty-nine thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(3977, 69224, 'sixty-nine thousand two hundred twenty-four'); INSERT INTO t2 VALUES(3978, 69787, 'sixty-nine thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(3979, 85294, 'eighty-five thousand two hundred ninety-four'); INSERT INTO t2 VALUES(3980, 28056, 'twenty-eight thousand fifty-six'); INSERT INTO t2 VALUES(3981, 45672, 'forty-five thousand six hundred seventy-two'); INSERT INTO t2 VALUES(3982, 57591, 'fifty-seven thousand five hundred ninety-one'); INSERT INTO t2 VALUES(3983, 15427, 'fifteen thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(3984, 79946, 'seventy-nine thousand nine hundred forty-six'); INSERT INTO t2 VALUES(3985, 9897, 'nine thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(3986, 10501, 'ten thousand five hundred one'); INSERT INTO t2 VALUES(3987, 36033, 'thirty-six thousand thirty-three'); INSERT INTO t2 VALUES(3988, 62130, 'sixty-two thousand one hundred thirty'); INSERT INTO t2 VALUES(3989, 9579, 'nine thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(3990, 20713, 'twenty thousand seven hundred thirteen'); INSERT INTO t2 VALUES(3991, 59247, 'fifty-nine thousand two hundred forty-seven'); INSERT INTO t2 VALUES(3992, 36997, 'thirty-six thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(3993, 69292, 'sixty-nine thousand two hundred ninety-two'); INSERT INTO t2 VALUES(3994, 36219, 'thirty-six thousand two hundred nineteen'); INSERT INTO t2 VALUES(3995, 20939, 'twenty thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(3996, 17032, 'seventeen thousand thirty-two'); INSERT INTO t2 VALUES(3997, 6416, 'six thousand four hundred sixteen'); INSERT INTO t2 VALUES(3998, 97039, 'ninety-seven thousand thirty-nine'); INSERT INTO t2 VALUES(3999, 28349, 'twenty-eight thousand three hundred forty-nine'); INSERT INTO t2 VALUES(4000, 85245, 'eighty-five thousand two hundred forty-five'); INSERT INTO t2 VALUES(4001, 83826, 'eighty-three thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(4002, 94231, 'ninety-four thousand two hundred thirty-one'); INSERT INTO t2 VALUES(4003, 58912, 'fifty-eight thousand nine hundred twelve'); INSERT INTO t2 VALUES(4004, 781, 'seven hundred eighty-one'); INSERT INTO t2 VALUES(4005, 13913, 'thirteen thousand nine hundred thirteen'); INSERT INTO t2 VALUES(4006, 27851, 'twenty-seven thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(4007, 19911, 'nineteen thousand nine hundred eleven'); INSERT INTO t2 VALUES(4008, 48974, 'forty-eight thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(4009, 70757, 'seventy thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(4010, 87343, 'eighty-seven thousand three hundred forty-three'); INSERT INTO t2 VALUES(4011, 23398, 'twenty-three thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(4012, 70196, 'seventy thousand one hundred ninety-six'); INSERT INTO t2 VALUES(4013, 49130, 'forty-nine thousand one hundred thirty'); INSERT INTO t2 VALUES(4014, 96997, 'ninety-six thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(4015, 72451, 'seventy-two thousand four hundred fifty-one'); INSERT INTO t2 VALUES(4016, 32489, 'thirty-two thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(4017, 68117, 'sixty-eight thousand one hundred seventeen'); INSERT INTO t2 VALUES(4018, 6930, 'six thousand nine hundred thirty'); INSERT INTO t2 VALUES(4019, 48308, 'forty-eight thousand three hundred eight'); INSERT INTO t2 VALUES(4020, 82773, 'eighty-two thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(4021, 67732, 'sixty-seven thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(4022, 44346, 'forty-four thousand three hundred forty-six'); INSERT INTO t2 VALUES(4023, 70109, 'seventy thousand one hundred nine'); INSERT INTO t2 VALUES(4024, 46332, 'forty-six thousand three hundred thirty-two'); INSERT INTO t2 VALUES(4025, 19376, 'nineteen thousand three hundred seventy-six'); INSERT INTO t2 VALUES(4026, 72044, 'seventy-two thousand forty-four'); INSERT INTO t2 VALUES(4027, 91391, 'ninety-one thousand three hundred ninety-one'); INSERT INTO t2 VALUES(4028, 89435, 'eighty-nine thousand four hundred thirty-five'); INSERT INTO t2 VALUES(4029, 61157, 'sixty-one thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(4030, 67596, 'sixty-seven thousand five hundred ninety-six'); INSERT INTO t2 VALUES(4031, 29183, 'twenty-nine thousand one hundred eighty-three'); INSERT INTO t2 VALUES(4032, 73872, 'seventy-three thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(4033, 19767, 'nineteen thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(4034, 55028, 'fifty-five thousand twenty-eight'); INSERT INTO t2 VALUES(4035, 70173, 'seventy thousand one hundred seventy-three'); INSERT INTO t2 VALUES(4036, 91983, 'ninety-one thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(4037, 77067, 'seventy-seven thousand sixty-seven'); INSERT INTO t2 VALUES(4038, 63202, 'sixty-three thousand two hundred two'); INSERT INTO t2 VALUES(4039, 80705, 'eighty thousand seven hundred five'); INSERT INTO t2 VALUES(4040, 18086, 'eighteen thousand eighty-six'); INSERT INTO t2 VALUES(4041, 85624, 'eighty-five thousand six hundred twenty-four'); INSERT INTO t2 VALUES(4042, 1454, 'one thousand four hundred fifty-four'); INSERT INTO t2 VALUES(4043, 71581, 'seventy-one thousand five hundred eighty-one'); INSERT INTO t2 VALUES(4044, 32723, 'thirty-two thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(4045, 39370, 'thirty-nine thousand three hundred seventy'); INSERT INTO t2 VALUES(4046, 46108, 'forty-six thousand one hundred eight'); INSERT INTO t2 VALUES(4047, 97070, 'ninety-seven thousand seventy'); INSERT INTO t2 VALUES(4048, 49315, 'forty-nine thousand three hundred fifteen'); INSERT INTO t2 VALUES(4049, 31128, 'thirty-one thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(4050, 39050, 'thirty-nine thousand fifty'); INSERT INTO t2 VALUES(4051, 3030, 'three thousand thirty'); INSERT INTO t2 VALUES(4052, 85921, 'eighty-five thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(4053, 81196, 'eighty-one thousand one hundred ninety-six'); INSERT INTO t2 VALUES(4054, 25754, 'twenty-five thousand seven hundred fifty-four'); INSERT INTO t2 VALUES(4055, 4502, 'four thousand five hundred two'); INSERT INTO t2 VALUES(4056, 57215, 'fifty-seven thousand two hundred fifteen'); INSERT INTO t2 VALUES(4057, 1265, 'one thousand two hundred sixty-five'); INSERT INTO t2 VALUES(4058, 32390, 'thirty-two thousand three hundred ninety'); INSERT INTO t2 VALUES(4059, 78528, 'seventy-eight thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(4060, 17892, 'seventeen thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(4061, 73434, 'seventy-three thousand four hundred thirty-four'); INSERT INTO t2 VALUES(4062, 89191, 'eighty-nine thousand one hundred ninety-one'); INSERT INTO t2 VALUES(4063, 75876, 'seventy-five thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(4064, 6388, 'six thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(4065, 74466, 'seventy-four thousand four hundred sixty-six'); INSERT INTO t2 VALUES(4066, 32602, 'thirty-two thousand six hundred two'); INSERT INTO t2 VALUES(4067, 67555, 'sixty-seven thousand five hundred fifty-five'); INSERT INTO t2 VALUES(4068, 42344, 'forty-two thousand three hundred forty-four'); INSERT INTO t2 VALUES(4069, 41226, 'forty-one thousand two hundred twenty-six'); INSERT INTO t2 VALUES(4070, 19032, 'nineteen thousand thirty-two'); INSERT INTO t2 VALUES(4071, 63846, 'sixty-three thousand eight hundred forty-six'); INSERT INTO t2 VALUES(4072, 11858, 'eleven thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(4073, 27380, 'twenty-seven thousand three hundred eighty'); INSERT INTO t2 VALUES(4074, 79446, 'seventy-nine thousand four hundred forty-six'); INSERT INTO t2 VALUES(4075, 90992, 'ninety thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(4076, 56203, 'fifty-six thousand two hundred three'); INSERT INTO t2 VALUES(4077, 82096, 'eighty-two thousand ninety-six'); INSERT INTO t2 VALUES(4078, 13686, 'thirteen thousand six hundred eighty-six'); INSERT INTO t2 VALUES(4079, 88216, 'eighty-eight thousand two hundred sixteen'); INSERT INTO t2 VALUES(4080, 59528, 'fifty-nine thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(4081, 26392, 'twenty-six thousand three hundred ninety-two'); INSERT INTO t2 VALUES(4082, 16413, 'sixteen thousand four hundred thirteen'); INSERT INTO t2 VALUES(4083, 89480, 'eighty-nine thousand four hundred eighty'); INSERT INTO t2 VALUES(4084, 98345, 'ninety-eight thousand three hundred forty-five'); INSERT INTO t2 VALUES(4085, 43473, 'forty-three thousand four hundred seventy-three'); INSERT INTO t2 VALUES(4086, 72370, 'seventy-two thousand three hundred seventy'); INSERT INTO t2 VALUES(4087, 619, 'six hundred nineteen'); INSERT INTO t2 VALUES(4088, 87026, 'eighty-seven thousand twenty-six'); INSERT INTO t2 VALUES(4089, 17928, 'seventeen thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(4090, 34135, 'thirty-four thousand one hundred thirty-five'); INSERT INTO t2 VALUES(4091, 19336, 'nineteen thousand three hundred thirty-six'); INSERT INTO t2 VALUES(4092, 2809, 'two thousand eight hundred nine'); INSERT INTO t2 VALUES(4093, 40999, 'forty thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(4094, 50937, 'fifty thousand nine hundred thirty-seven'); INSERT INTO t2 VALUES(4095, 83436, 'eighty-three thousand four hundred thirty-six'); INSERT INTO t2 VALUES(4096, 32871, 'thirty-two thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(4097, 13520, 'thirteen thousand five hundred twenty'); INSERT INTO t2 VALUES(4098, 43081, 'forty-three thousand eighty-one'); INSERT INTO t2 VALUES(4099, 59338, 'fifty-nine thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(4100, 26710, 'twenty-six thousand seven hundred ten'); INSERT INTO t2 VALUES(4101, 65518, 'sixty-five thousand five hundred eighteen'); INSERT INTO t2 VALUES(4102, 44580, 'forty-four thousand five hundred eighty'); INSERT INTO t2 VALUES(4103, 89932, 'eighty-nine thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(4104, 75034, 'seventy-five thousand thirty-four'); INSERT INTO t2 VALUES(4105, 79956, 'seventy-nine thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(4106, 13335, 'thirteen thousand three hundred thirty-five'); INSERT INTO t2 VALUES(4107, 69733, 'sixty-nine thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(4108, 54576, 'fifty-four thousand five hundred seventy-six'); INSERT INTO t2 VALUES(4109, 43262, 'forty-three thousand two hundred sixty-two'); INSERT INTO t2 VALUES(4110, 37057, 'thirty-seven thousand fifty-seven'); INSERT INTO t2 VALUES(4111, 41140, 'forty-one thousand one hundred forty'); INSERT INTO t2 VALUES(4112, 193, 'one hundred ninety-three'); INSERT INTO t2 VALUES(4113, 96651, 'ninety-six thousand six hundred fifty-one'); INSERT INTO t2 VALUES(4114, 82748, 'eighty-two thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(4115, 40507, 'forty thousand five hundred seven'); INSERT INTO t2 VALUES(4116, 30983, 'thirty thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(4117, 91685, 'ninety-one thousand six hundred eighty-five'); INSERT INTO t2 VALUES(4118, 82567, 'eighty-two thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(4119, 95834, 'ninety-five thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(4120, 90247, 'ninety thousand two hundred forty-seven'); INSERT INTO t2 VALUES(4121, 95929, 'ninety-five thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(4122, 65483, 'sixty-five thousand four hundred eighty-three'); INSERT INTO t2 VALUES(4123, 40857, 'forty thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(4124, 311, 'three hundred eleven'); INSERT INTO t2 VALUES(4125, 94631, 'ninety-four thousand six hundred thirty-one'); INSERT INTO t2 VALUES(4126, 43534, 'forty-three thousand five hundred thirty-four'); INSERT INTO t2 VALUES(4127, 61926, 'sixty-one thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(4128, 89554, 'eighty-nine thousand five hundred fifty-four'); INSERT INTO t2 VALUES(4129, 96150, 'ninety-six thousand one hundred fifty'); INSERT INTO t2 VALUES(4130, 22874, 'twenty-two thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(4131, 83759, 'eighty-three thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(4132, 21142, 'twenty-one thousand one hundred forty-two'); INSERT INTO t2 VALUES(4133, 39229, 'thirty-nine thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(4134, 69965, 'sixty-nine thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(4135, 55660, 'fifty-five thousand six hundred sixty'); INSERT INTO t2 VALUES(4136, 64609, 'sixty-four thousand six hundred nine'); INSERT INTO t2 VALUES(4137, 18269, 'eighteen thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(4138, 39081, 'thirty-nine thousand eighty-one'); INSERT INTO t2 VALUES(4139, 19721, 'nineteen thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(4140, 46810, 'forty-six thousand eight hundred ten'); INSERT INTO t2 VALUES(4141, 86435, 'eighty-six thousand four hundred thirty-five'); INSERT INTO t2 VALUES(4142, 48824, 'forty-eight thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(4143, 70499, 'seventy thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(4144, 5703, 'five thousand seven hundred three'); INSERT INTO t2 VALUES(4145, 89264, 'eighty-nine thousand two hundred sixty-four'); INSERT INTO t2 VALUES(4146, 97829, 'ninety-seven thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(4147, 32185, 'thirty-two thousand one hundred eighty-five'); INSERT INTO t2 VALUES(4148, 29858, 'twenty-nine thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(4149, 23594, 'twenty-three thousand five hundred ninety-four'); INSERT INTO t2 VALUES(4150, 41353, 'forty-one thousand three hundred fifty-three'); INSERT INTO t2 VALUES(4151, 80253, 'eighty thousand two hundred fifty-three'); INSERT INTO t2 VALUES(4152, 54283, 'fifty-four thousand two hundred eighty-three'); INSERT INTO t2 VALUES(4153, 7819, 'seven thousand eight hundred nineteen'); INSERT INTO t2 VALUES(4154, 45330, 'forty-five thousand three hundred thirty'); INSERT INTO t2 VALUES(4155, 28019, 'twenty-eight thousand nineteen'); INSERT INTO t2 VALUES(4156, 88974, 'eighty-eight thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(4157, 14929, 'fourteen thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(4158, 32563, 'thirty-two thousand five hundred sixty-three'); INSERT INTO t2 VALUES(4159, 23270, 'twenty-three thousand two hundred seventy'); INSERT INTO t2 VALUES(4160, 94515, 'ninety-four thousand five hundred fifteen'); INSERT INTO t2 VALUES(4161, 10611, 'ten thousand six hundred eleven'); INSERT INTO t2 VALUES(4162, 64006, 'sixty-four thousand six'); INSERT INTO t2 VALUES(4163, 54926, 'fifty-four thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(4164, 4946, 'four thousand nine hundred forty-six'); INSERT INTO t2 VALUES(4165, 97283, 'ninety-seven thousand two hundred eighty-three'); INSERT INTO t2 VALUES(4166, 82690, 'eighty-two thousand six hundred ninety'); INSERT INTO t2 VALUES(4167, 22634, 'twenty-two thousand six hundred thirty-four'); INSERT INTO t2 VALUES(4168, 36046, 'thirty-six thousand forty-six'); INSERT INTO t2 VALUES(4169, 10869, 'ten thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(4170, 78937, 'seventy-eight thousand nine hundred thirty-seven'); INSERT INTO t2 VALUES(4171, 11669, 'eleven thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(4172, 73633, 'seventy-three thousand six hundred thirty-three'); INSERT INTO t2 VALUES(4173, 79652, 'seventy-nine thousand six hundred fifty-two'); INSERT INTO t2 VALUES(4174, 50908, 'fifty thousand nine hundred eight'); INSERT INTO t2 VALUES(4175, 64444, 'sixty-four thousand four hundred forty-four'); INSERT INTO t2 VALUES(4176, 93448, 'ninety-three thousand four hundred forty-eight'); INSERT INTO t2 VALUES(4177, 59940, 'fifty-nine thousand nine hundred forty'); INSERT INTO t2 VALUES(4178, 40447, 'forty thousand four hundred forty-seven'); INSERT INTO t2 VALUES(4179, 15826, 'fifteen thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(4180, 91633, 'ninety-one thousand six hundred thirty-three'); INSERT INTO t2 VALUES(4181, 47018, 'forty-seven thousand eighteen'); INSERT INTO t2 VALUES(4182, 5185, 'five thousand one hundred eighty-five'); INSERT INTO t2 VALUES(4183, 21179, 'twenty-one thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(4184, 68871, 'sixty-eight thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(4185, 27139, 'twenty-seven thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(4186, 86825, 'eighty-six thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(4187, 92794, 'ninety-two thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(4188, 60662, 'sixty thousand six hundred sixty-two'); INSERT INTO t2 VALUES(4189, 81598, 'eighty-one thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(4190, 41653, 'forty-one thousand six hundred fifty-three'); INSERT INTO t2 VALUES(4191, 17355, 'seventeen thousand three hundred fifty-five'); INSERT INTO t2 VALUES(4192, 44720, 'forty-four thousand seven hundred twenty'); INSERT INTO t2 VALUES(4193, 62909, 'sixty-two thousand nine hundred nine'); INSERT INTO t2 VALUES(4194, 31575, 'thirty-one thousand five hundred seventy-five'); INSERT INTO t2 VALUES(4195, 14296, 'fourteen thousand two hundred ninety-six'); INSERT INTO t2 VALUES(4196, 4185, 'four thousand one hundred eighty-five'); INSERT INTO t2 VALUES(4197, 45823, 'forty-five thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(4198, 28534, 'twenty-eight thousand five hundred thirty-four'); INSERT INTO t2 VALUES(4199, 3434, 'three thousand four hundred thirty-four'); INSERT INTO t2 VALUES(4200, 37538, 'thirty-seven thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(4201, 26790, 'twenty-six thousand seven hundred ninety'); INSERT INTO t2 VALUES(4202, 26480, 'twenty-six thousand four hundred eighty'); INSERT INTO t2 VALUES(4203, 36255, 'thirty-six thousand two hundred fifty-five'); INSERT INTO t2 VALUES(4204, 85790, 'eighty-five thousand seven hundred ninety'); INSERT INTO t2 VALUES(4205, 11435, 'eleven thousand four hundred thirty-five'); INSERT INTO t2 VALUES(4206, 86740, 'eighty-six thousand seven hundred forty'); INSERT INTO t2 VALUES(4207, 56856, 'fifty-six thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(4208, 88237, 'eighty-eight thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(4209, 99331, 'ninety-nine thousand three hundred thirty-one'); INSERT INTO t2 VALUES(4210, 66586, 'sixty-six thousand five hundred eighty-six'); INSERT INTO t2 VALUES(4211, 62160, 'sixty-two thousand one hundred sixty'); INSERT INTO t2 VALUES(4212, 37501, 'thirty-seven thousand five hundred one'); INSERT INTO t2 VALUES(4213, 77064, 'seventy-seven thousand sixty-four'); INSERT INTO t2 VALUES(4214, 7117, 'seven thousand one hundred seventeen'); INSERT INTO t2 VALUES(4215, 40749, 'forty thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(4216, 78269, 'seventy-eight thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(4217, 96591, 'ninety-six thousand five hundred ninety-one'); INSERT INTO t2 VALUES(4218, 41621, 'forty-one thousand six hundred twenty-one'); INSERT INTO t2 VALUES(4219, 30701, 'thirty thousand seven hundred one'); INSERT INTO t2 VALUES(4220, 18857, 'eighteen thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(4221, 33627, 'thirty-three thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(4222, 6785, 'six thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(4223, 35737, 'thirty-five thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(4224, 95335, 'ninety-five thousand three hundred thirty-five'); INSERT INTO t2 VALUES(4225, 27708, 'twenty-seven thousand seven hundred eight'); INSERT INTO t2 VALUES(4226, 53785, 'fifty-three thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(4227, 80291, 'eighty thousand two hundred ninety-one'); INSERT INTO t2 VALUES(4228, 24737, 'twenty-four thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(4229, 34695, 'thirty-four thousand six hundred ninety-five'); INSERT INTO t2 VALUES(4230, 73582, 'seventy-three thousand five hundred eighty-two'); INSERT INTO t2 VALUES(4231, 62687, 'sixty-two thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(4232, 88414, 'eighty-eight thousand four hundred fourteen'); INSERT INTO t2 VALUES(4233, 2739, 'two thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(4234, 35654, 'thirty-five thousand six hundred fifty-four'); INSERT INTO t2 VALUES(4235, 20842, 'twenty thousand eight hundred forty-two'); INSERT INTO t2 VALUES(4236, 71388, 'seventy-one thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(4237, 86025, 'eighty-six thousand twenty-five'); INSERT INTO t2 VALUES(4238, 12725, 'twelve thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(4239, 81079, 'eighty-one thousand seventy-nine'); INSERT INTO t2 VALUES(4240, 22652, 'twenty-two thousand six hundred fifty-two'); INSERT INTO t2 VALUES(4241, 66224, 'sixty-six thousand two hundred twenty-four'); INSERT INTO t2 VALUES(4242, 94099, 'ninety-four thousand ninety-nine'); INSERT INTO t2 VALUES(4243, 42084, 'forty-two thousand eighty-four'); INSERT INTO t2 VALUES(4244, 52525, 'fifty-two thousand five hundred twenty-five'); INSERT INTO t2 VALUES(4245, 11860, 'eleven thousand eight hundred sixty'); INSERT INTO t2 VALUES(4246, 58446, 'fifty-eight thousand four hundred forty-six'); INSERT INTO t2 VALUES(4247, 93814, 'ninety-three thousand eight hundred fourteen'); INSERT INTO t2 VALUES(4248, 77379, 'seventy-seven thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(4249, 84313, 'eighty-four thousand three hundred thirteen'); INSERT INTO t2 VALUES(4250, 27472, 'twenty-seven thousand four hundred seventy-two'); INSERT INTO t2 VALUES(4251, 79639, 'seventy-nine thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(4252, 62504, 'sixty-two thousand five hundred four'); INSERT INTO t2 VALUES(4253, 86553, 'eighty-six thousand five hundred fifty-three'); INSERT INTO t2 VALUES(4254, 59234, 'fifty-nine thousand two hundred thirty-four'); INSERT INTO t2 VALUES(4255, 22433, 'twenty-two thousand four hundred thirty-three'); INSERT INTO t2 VALUES(4256, 99964, 'ninety-nine thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(4257, 19492, 'nineteen thousand four hundred ninety-two'); INSERT INTO t2 VALUES(4258, 44370, 'forty-four thousand three hundred seventy'); INSERT INTO t2 VALUES(4259, 39734, 'thirty-nine thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(4260, 21789, 'twenty-one thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(4261, 3396, 'three thousand three hundred ninety-six'); INSERT INTO t2 VALUES(4262, 76944, 'seventy-six thousand nine hundred forty-four'); INSERT INTO t2 VALUES(4263, 65316, 'sixty-five thousand three hundred sixteen'); INSERT INTO t2 VALUES(4264, 33849, 'thirty-three thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(4265, 96104, 'ninety-six thousand one hundred four'); INSERT INTO t2 VALUES(4266, 57630, 'fifty-seven thousand six hundred thirty'); INSERT INTO t2 VALUES(4267, 70522, 'seventy thousand five hundred twenty-two'); INSERT INTO t2 VALUES(4268, 42601, 'forty-two thousand six hundred one'); INSERT INTO t2 VALUES(4269, 92053, 'ninety-two thousand fifty-three'); INSERT INTO t2 VALUES(4270, 45183, 'forty-five thousand one hundred eighty-three'); INSERT INTO t2 VALUES(4271, 57170, 'fifty-seven thousand one hundred seventy'); INSERT INTO t2 VALUES(4272, 15831, 'fifteen thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(4273, 38588, 'thirty-eight thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(4274, 80470, 'eighty thousand four hundred seventy'); INSERT INTO t2 VALUES(4275, 25962, 'twenty-five thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(4276, 42779, 'forty-two thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(4277, 11918, 'eleven thousand nine hundred eighteen'); INSERT INTO t2 VALUES(4278, 56420, 'fifty-six thousand four hundred twenty'); INSERT INTO t2 VALUES(4279, 74416, 'seventy-four thousand four hundred sixteen'); INSERT INTO t2 VALUES(4280, 58235, 'fifty-eight thousand two hundred thirty-five'); INSERT INTO t2 VALUES(4281, 87856, 'eighty-seven thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(4282, 13448, 'thirteen thousand four hundred forty-eight'); INSERT INTO t2 VALUES(4283, 28916, 'twenty-eight thousand nine hundred sixteen'); INSERT INTO t2 VALUES(4284, 27490, 'twenty-seven thousand four hundred ninety'); INSERT INTO t2 VALUES(4285, 83616, 'eighty-three thousand six hundred sixteen'); INSERT INTO t2 VALUES(4286, 82299, 'eighty-two thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(4287, 83745, 'eighty-three thousand seven hundred forty-five'); INSERT INTO t2 VALUES(4288, 58854, 'fifty-eight thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(4289, 712, 'seven hundred twelve'); INSERT INTO t2 VALUES(4290, 7943, 'seven thousand nine hundred forty-three'); INSERT INTO t2 VALUES(4291, 80867, 'eighty thousand eight hundred sixty-seven'); INSERT INTO t2 VALUES(4292, 61075, 'sixty-one thousand seventy-five'); INSERT INTO t2 VALUES(4293, 19266, 'nineteen thousand two hundred sixty-six'); INSERT INTO t2 VALUES(4294, 87747, 'eighty-seven thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(4295, 59620, 'fifty-nine thousand six hundred twenty'); INSERT INTO t2 VALUES(4296, 85069, 'eighty-five thousand sixty-nine'); INSERT INTO t2 VALUES(4297, 3023, 'three thousand twenty-three'); INSERT INTO t2 VALUES(4298, 3285, 'three thousand two hundred eighty-five'); INSERT INTO t2 VALUES(4299, 52482, 'fifty-two thousand four hundred eighty-two'); INSERT INTO t2 VALUES(4300, 28307, 'twenty-eight thousand three hundred seven'); INSERT INTO t2 VALUES(4301, 6063, 'six thousand sixty-three'); INSERT INTO t2 VALUES(4302, 29100, 'twenty-nine thousand one hundred'); INSERT INTO t2 VALUES(4303, 24071, 'twenty-four thousand seventy-one'); INSERT INTO t2 VALUES(4304, 7781, 'seven thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(4305, 91968, 'ninety-one thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(4306, 83326, 'eighty-three thousand three hundred twenty-six'); INSERT INTO t2 VALUES(4307, 77121, 'seventy-seven thousand one hundred twenty-one'); INSERT INTO t2 VALUES(4308, 11898, 'eleven thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(4309, 16455, 'sixteen thousand four hundred fifty-five'); INSERT INTO t2 VALUES(4310, 21402, 'twenty-one thousand four hundred two'); INSERT INTO t2 VALUES(4311, 92170, 'ninety-two thousand one hundred seventy'); INSERT INTO t2 VALUES(4312, 25538, 'twenty-five thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(4313, 57641, 'fifty-seven thousand six hundred forty-one'); INSERT INTO t2 VALUES(4314, 20659, 'twenty thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(4315, 49460, 'forty-nine thousand four hundred sixty'); INSERT INTO t2 VALUES(4316, 52615, 'fifty-two thousand six hundred fifteen'); INSERT INTO t2 VALUES(4317, 29520, 'twenty-nine thousand five hundred twenty'); INSERT INTO t2 VALUES(4318, 44000, 'forty-four thousand'); INSERT INTO t2 VALUES(4319, 31006, 'thirty-one thousand six'); INSERT INTO t2 VALUES(4320, 75457, 'seventy-five thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(4321, 19739, 'nineteen thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(4322, 46344, 'forty-six thousand three hundred forty-four'); INSERT INTO t2 VALUES(4323, 83965, 'eighty-three thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(4324, 19996, 'nineteen thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(4325, 452, 'four hundred fifty-two'); INSERT INTO t2 VALUES(4326, 13382, 'thirteen thousand three hundred eighty-two'); INSERT INTO t2 VALUES(4327, 14471, 'fourteen thousand four hundred seventy-one'); INSERT INTO t2 VALUES(4328, 79069, 'seventy-nine thousand sixty-nine'); INSERT INTO t2 VALUES(4329, 16526, 'sixteen thousand five hundred twenty-six'); INSERT INTO t2 VALUES(4330, 29052, 'twenty-nine thousand fifty-two'); INSERT INTO t2 VALUES(4331, 46977, 'forty-six thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(4332, 73327, 'seventy-three thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(4333, 44419, 'forty-four thousand four hundred nineteen'); INSERT INTO t2 VALUES(4334, 4944, 'four thousand nine hundred forty-four'); INSERT INTO t2 VALUES(4335, 22380, 'twenty-two thousand three hundred eighty'); INSERT INTO t2 VALUES(4336, 25638, 'twenty-five thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(4337, 7784, 'seven thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(4338, 65425, 'sixty-five thousand four hundred twenty-five'); INSERT INTO t2 VALUES(4339, 90983, 'ninety thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(4340, 58570, 'fifty-eight thousand five hundred seventy'); INSERT INTO t2 VALUES(4341, 2038, 'two thousand thirty-eight'); INSERT INTO t2 VALUES(4342, 63935, 'sixty-three thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(4343, 17875, 'seventeen thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(4344, 15919, 'fifteen thousand nine hundred nineteen'); INSERT INTO t2 VALUES(4345, 96091, 'ninety-six thousand ninety-one'); INSERT INTO t2 VALUES(4346, 80985, 'eighty thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(4347, 72594, 'seventy-two thousand five hundred ninety-four'); INSERT INTO t2 VALUES(4348, 7545, 'seven thousand five hundred forty-five'); INSERT INTO t2 VALUES(4349, 96620, 'ninety-six thousand six hundred twenty'); INSERT INTO t2 VALUES(4350, 29074, 'twenty-nine thousand seventy-four'); INSERT INTO t2 VALUES(4351, 86868, 'eighty-six thousand eight hundred sixty-eight'); INSERT INTO t2 VALUES(4352, 32658, 'thirty-two thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(4353, 87750, 'eighty-seven thousand seven hundred fifty'); INSERT INTO t2 VALUES(4354, 57784, 'fifty-seven thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(4355, 77227, 'seventy-seven thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(4356, 56270, 'fifty-six thousand two hundred seventy'); INSERT INTO t2 VALUES(4357, 78163, 'seventy-eight thousand one hundred sixty-three'); INSERT INTO t2 VALUES(4358, 35, 'thirty-five'); INSERT INTO t2 VALUES(4359, 99191, 'ninety-nine thousand one hundred ninety-one'); INSERT INTO t2 VALUES(4360, 72811, 'seventy-two thousand eight hundred eleven'); INSERT INTO t2 VALUES(4361, 56053, 'fifty-six thousand fifty-three'); INSERT INTO t2 VALUES(4362, 74813, 'seventy-four thousand eight hundred thirteen'); INSERT INTO t2 VALUES(4363, 83316, 'eighty-three thousand three hundred sixteen'); INSERT INTO t2 VALUES(4364, 98263, 'ninety-eight thousand two hundred sixty-three'); INSERT INTO t2 VALUES(4365, 65848, 'sixty-five thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(4366, 10213, 'ten thousand two hundred thirteen'); INSERT INTO t2 VALUES(4367, 98246, 'ninety-eight thousand two hundred forty-six'); INSERT INTO t2 VALUES(4368, 62245, 'sixty-two thousand two hundred forty-five'); INSERT INTO t2 VALUES(4369, 93505, 'ninety-three thousand five hundred five'); INSERT INTO t2 VALUES(4370, 8959, 'eight thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(4371, 37532, 'thirty-seven thousand five hundred thirty-two'); INSERT INTO t2 VALUES(4372, 5761, 'five thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(4373, 74102, 'seventy-four thousand one hundred two'); INSERT INTO t2 VALUES(4374, 34528, 'thirty-four thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(4375, 98738, 'ninety-eight thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(4376, 55141, 'fifty-five thousand one hundred forty-one'); INSERT INTO t2 VALUES(4377, 72199, 'seventy-two thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(4378, 89523, 'eighty-nine thousand five hundred twenty-three'); INSERT INTO t2 VALUES(4379, 80123, 'eighty thousand one hundred twenty-three'); INSERT INTO t2 VALUES(4380, 50641, 'fifty thousand six hundred forty-one'); INSERT INTO t2 VALUES(4381, 48796, 'forty-eight thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(4382, 95851, 'ninety-five thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(4383, 10712, 'ten thousand seven hundred twelve'); INSERT INTO t2 VALUES(4384, 40887, 'forty thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(4385, 99523, 'ninety-nine thousand five hundred twenty-three'); INSERT INTO t2 VALUES(4386, 70303, 'seventy thousand three hundred three'); INSERT INTO t2 VALUES(4387, 32752, 'thirty-two thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(4388, 31712, 'thirty-one thousand seven hundred twelve'); INSERT INTO t2 VALUES(4389, 60206, 'sixty thousand two hundred six'); INSERT INTO t2 VALUES(4390, 9127, 'nine thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(4391, 23416, 'twenty-three thousand four hundred sixteen'); INSERT INTO t2 VALUES(4392, 91711, 'ninety-one thousand seven hundred eleven'); INSERT INTO t2 VALUES(4393, 77730, 'seventy-seven thousand seven hundred thirty'); INSERT INTO t2 VALUES(4394, 7848, 'seven thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(4395, 99348, 'ninety-nine thousand three hundred forty-eight'); INSERT INTO t2 VALUES(4396, 8076, 'eight thousand seventy-six'); INSERT INTO t2 VALUES(4397, 66494, 'sixty-six thousand four hundred ninety-four'); INSERT INTO t2 VALUES(4398, 27738, 'twenty-seven thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(4399, 41187, 'forty-one thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(4400, 28345, 'twenty-eight thousand three hundred forty-five'); INSERT INTO t2 VALUES(4401, 63280, 'sixty-three thousand two hundred eighty'); INSERT INTO t2 VALUES(4402, 67785, 'sixty-seven thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(4403, 94473, 'ninety-four thousand four hundred seventy-three'); INSERT INTO t2 VALUES(4404, 94817, 'ninety-four thousand eight hundred seventeen'); INSERT INTO t2 VALUES(4405, 12443, 'twelve thousand four hundred forty-three'); INSERT INTO t2 VALUES(4406, 2285, 'two thousand two hundred eighty-five'); INSERT INTO t2 VALUES(4407, 51400, 'fifty-one thousand four hundred'); INSERT INTO t2 VALUES(4408, 74752, 'seventy-four thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(4409, 75142, 'seventy-five thousand one hundred forty-two'); INSERT INTO t2 VALUES(4410, 800, 'eight hundred'); INSERT INTO t2 VALUES(4411, 43478, 'forty-three thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(4412, 49832, 'forty-nine thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(4413, 11799, 'eleven thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(4414, 82029, 'eighty-two thousand twenty-nine'); INSERT INTO t2 VALUES(4415, 15467, 'fifteen thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(4416, 81691, 'eighty-one thousand six hundred ninety-one'); INSERT INTO t2 VALUES(4417, 98280, 'ninety-eight thousand two hundred eighty'); INSERT INTO t2 VALUES(4418, 47788, 'forty-seven thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(4419, 71283, 'seventy-one thousand two hundred eighty-three'); INSERT INTO t2 VALUES(4420, 37584, 'thirty-seven thousand five hundred eighty-four'); INSERT INTO t2 VALUES(4421, 9510, 'nine thousand five hundred ten'); INSERT INTO t2 VALUES(4422, 85829, 'eighty-five thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(4423, 61528, 'sixty-one thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(4424, 17006, 'seventeen thousand six'); INSERT INTO t2 VALUES(4425, 7205, 'seven thousand two hundred five'); INSERT INTO t2 VALUES(4426, 18266, 'eighteen thousand two hundred sixty-six'); INSERT INTO t2 VALUES(4427, 10165, 'ten thousand one hundred sixty-five'); INSERT INTO t2 VALUES(4428, 96592, 'ninety-six thousand five hundred ninety-two'); INSERT INTO t2 VALUES(4429, 52225, 'fifty-two thousand two hundred twenty-five'); INSERT INTO t2 VALUES(4430, 18297, 'eighteen thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(4431, 80152, 'eighty thousand one hundred fifty-two'); INSERT INTO t2 VALUES(4432, 54747, 'fifty-four thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(4433, 7097, 'seven thousand ninety-seven'); INSERT INTO t2 VALUES(4434, 72780, 'seventy-two thousand seven hundred eighty'); INSERT INTO t2 VALUES(4435, 3665, 'three thousand six hundred sixty-five'); INSERT INTO t2 VALUES(4436, 63624, 'sixty-three thousand six hundred twenty-four'); INSERT INTO t2 VALUES(4437, 88424, 'eighty-eight thousand four hundred twenty-four'); INSERT INTO t2 VALUES(4438, 18709, 'eighteen thousand seven hundred nine'); INSERT INTO t2 VALUES(4439, 14555, 'fourteen thousand five hundred fifty-five'); INSERT INTO t2 VALUES(4440, 95879, 'ninety-five thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(4441, 61798, 'sixty-one thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(4442, 49075, 'forty-nine thousand seventy-five'); INSERT INTO t2 VALUES(4443, 76517, 'seventy-six thousand five hundred seventeen'); INSERT INTO t2 VALUES(4444, 71524, 'seventy-one thousand five hundred twenty-four'); INSERT INTO t2 VALUES(4445, 79718, 'seventy-nine thousand seven hundred eighteen'); INSERT INTO t2 VALUES(4446, 35387, 'thirty-five thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(4447, 2913, 'two thousand nine hundred thirteen'); INSERT INTO t2 VALUES(4448, 15569, 'fifteen thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(4449, 10143, 'ten thousand one hundred forty-three'); INSERT INTO t2 VALUES(4450, 3681, 'three thousand six hundred eighty-one'); INSERT INTO t2 VALUES(4451, 62628, 'sixty-two thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(4452, 55345, 'fifty-five thousand three hundred forty-five'); INSERT INTO t2 VALUES(4453, 74335, 'seventy-four thousand three hundred thirty-five'); INSERT INTO t2 VALUES(4454, 87541, 'eighty-seven thousand five hundred forty-one'); INSERT INTO t2 VALUES(4455, 79989, 'seventy-nine thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(4456, 15788, 'fifteen thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(4457, 45203, 'forty-five thousand two hundred three'); INSERT INTO t2 VALUES(4458, 15077, 'fifteen thousand seventy-seven'); INSERT INTO t2 VALUES(4459, 95049, 'ninety-five thousand forty-nine'); INSERT INTO t2 VALUES(4460, 61922, 'sixty-one thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(4461, 75353, 'seventy-five thousand three hundred fifty-three'); INSERT INTO t2 VALUES(4462, 90282, 'ninety thousand two hundred eighty-two'); INSERT INTO t2 VALUES(4463, 86563, 'eighty-six thousand five hundred sixty-three'); INSERT INTO t2 VALUES(4464, 9224, 'nine thousand two hundred twenty-four'); INSERT INTO t2 VALUES(4465, 33026, 'thirty-three thousand twenty-six'); INSERT INTO t2 VALUES(4466, 30553, 'thirty thousand five hundred fifty-three'); INSERT INTO t2 VALUES(4467, 61393, 'sixty-one thousand three hundred ninety-three'); INSERT INTO t2 VALUES(4468, 90975, 'ninety thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(4469, 61005, 'sixty-one thousand five'); INSERT INTO t2 VALUES(4470, 6497, 'six thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(4471, 66224, 'sixty-six thousand two hundred twenty-four'); INSERT INTO t2 VALUES(4472, 798, 'seven hundred ninety-eight'); INSERT INTO t2 VALUES(4473, 41513, 'forty-one thousand five hundred thirteen'); INSERT INTO t2 VALUES(4474, 69469, 'sixty-nine thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(4475, 21, 'twenty-one'); INSERT INTO t2 VALUES(4476, 88103, 'eighty-eight thousand one hundred three'); INSERT INTO t2 VALUES(4477, 75495, 'seventy-five thousand four hundred ninety-five'); INSERT INTO t2 VALUES(4478, 98801, 'ninety-eight thousand eight hundred one'); INSERT INTO t2 VALUES(4479, 67165, 'sixty-seven thousand one hundred sixty-five'); INSERT INTO t2 VALUES(4480, 9413, 'nine thousand four hundred thirteen'); INSERT INTO t2 VALUES(4481, 50214, 'fifty thousand two hundred fourteen'); INSERT INTO t2 VALUES(4482, 37033, 'thirty-seven thousand thirty-three'); INSERT INTO t2 VALUES(4483, 25036, 'twenty-five thousand thirty-six'); INSERT INTO t2 VALUES(4484, 56330, 'fifty-six thousand three hundred thirty'); INSERT INTO t2 VALUES(4485, 81512, 'eighty-one thousand five hundred twelve'); INSERT INTO t2 VALUES(4486, 75582, 'seventy-five thousand five hundred eighty-two'); INSERT INTO t2 VALUES(4487, 86710, 'eighty-six thousand seven hundred ten'); INSERT INTO t2 VALUES(4488, 76854, 'seventy-six thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(4489, 27538, 'twenty-seven thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(4490, 38898, 'thirty-eight thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(4491, 82087, 'eighty-two thousand eighty-seven'); INSERT INTO t2 VALUES(4492, 91525, 'ninety-one thousand five hundred twenty-five'); INSERT INTO t2 VALUES(4493, 69575, 'sixty-nine thousand five hundred seventy-five'); INSERT INTO t2 VALUES(4494, 46944, 'forty-six thousand nine hundred forty-four'); INSERT INTO t2 VALUES(4495, 770, 'seven hundred seventy'); INSERT INTO t2 VALUES(4496, 77589, 'seventy-seven thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(4497, 46484, 'forty-six thousand four hundred eighty-four'); INSERT INTO t2 VALUES(4498, 26049, 'twenty-six thousand forty-nine'); INSERT INTO t2 VALUES(4499, 48002, 'forty-eight thousand two'); INSERT INTO t2 VALUES(4500, 81084, 'eighty-one thousand eighty-four'); INSERT INTO t2 VALUES(4501, 1240, 'one thousand two hundred forty'); INSERT INTO t2 VALUES(4502, 2925, 'two thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(4503, 24746, 'twenty-four thousand seven hundred forty-six'); INSERT INTO t2 VALUES(4504, 81521, 'eighty-one thousand five hundred twenty-one'); INSERT INTO t2 VALUES(4505, 16707, 'sixteen thousand seven hundred seven'); INSERT INTO t2 VALUES(4506, 96559, 'ninety-six thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(4507, 36314, 'thirty-six thousand three hundred fourteen'); INSERT INTO t2 VALUES(4508, 84985, 'eighty-four thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(4509, 41122, 'forty-one thousand one hundred twenty-two'); INSERT INTO t2 VALUES(4510, 54909, 'fifty-four thousand nine hundred nine'); INSERT INTO t2 VALUES(4511, 25504, 'twenty-five thousand five hundred four'); INSERT INTO t2 VALUES(4512, 11813, 'eleven thousand eight hundred thirteen'); INSERT INTO t2 VALUES(4513, 51895, 'fifty-one thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(4514, 93965, 'ninety-three thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(4515, 33573, 'thirty-three thousand five hundred seventy-three'); INSERT INTO t2 VALUES(4516, 77515, 'seventy-seven thousand five hundred fifteen'); INSERT INTO t2 VALUES(4517, 35612, 'thirty-five thousand six hundred twelve'); INSERT INTO t2 VALUES(4518, 93610, 'ninety-three thousand six hundred ten'); INSERT INTO t2 VALUES(4519, 75004, 'seventy-five thousand four'); INSERT INTO t2 VALUES(4520, 97891, 'ninety-seven thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(4521, 14779, 'fourteen thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(4522, 32754, 'thirty-two thousand seven hundred fifty-four'); INSERT INTO t2 VALUES(4523, 86256, 'eighty-six thousand two hundred fifty-six'); INSERT INTO t2 VALUES(4524, 90436, 'ninety thousand four hundred thirty-six'); INSERT INTO t2 VALUES(4525, 38187, 'thirty-eight thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(4526, 50949, 'fifty thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(4527, 18355, 'eighteen thousand three hundred fifty-five'); INSERT INTO t2 VALUES(4528, 63070, 'sixty-three thousand seventy'); INSERT INTO t2 VALUES(4529, 59655, 'fifty-nine thousand six hundred fifty-five'); INSERT INTO t2 VALUES(4530, 33976, 'thirty-three thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(4531, 29394, 'twenty-nine thousand three hundred ninety-four'); INSERT INTO t2 VALUES(4532, 3645, 'three thousand six hundred forty-five'); INSERT INTO t2 VALUES(4533, 21838, 'twenty-one thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(4534, 95695, 'ninety-five thousand six hundred ninety-five'); INSERT INTO t2 VALUES(4535, 87327, 'eighty-seven thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(4536, 54228, 'fifty-four thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(4537, 3927, 'three thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(4538, 93132, 'ninety-three thousand one hundred thirty-two'); INSERT INTO t2 VALUES(4539, 39703, 'thirty-nine thousand seven hundred three'); INSERT INTO t2 VALUES(4540, 36547, 'thirty-six thousand five hundred forty-seven'); INSERT INTO t2 VALUES(4541, 69841, 'sixty-nine thousand eight hundred forty-one'); INSERT INTO t2 VALUES(4542, 29401, 'twenty-nine thousand four hundred one'); INSERT INTO t2 VALUES(4543, 73235, 'seventy-three thousand two hundred thirty-five'); INSERT INTO t2 VALUES(4544, 25054, 'twenty-five thousand fifty-four'); INSERT INTO t2 VALUES(4545, 93813, 'ninety-three thousand eight hundred thirteen'); INSERT INTO t2 VALUES(4546, 50627, 'fifty thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(4547, 69063, 'sixty-nine thousand sixty-three'); INSERT INTO t2 VALUES(4548, 34191, 'thirty-four thousand one hundred ninety-one'); INSERT INTO t2 VALUES(4549, 81898, 'eighty-one thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(4550, 53809, 'fifty-three thousand eight hundred nine'); INSERT INTO t2 VALUES(4551, 40278, 'forty thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(4552, 25498, 'twenty-five thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(4553, 85055, 'eighty-five thousand fifty-five'); INSERT INTO t2 VALUES(4554, 35845, 'thirty-five thousand eight hundred forty-five'); INSERT INTO t2 VALUES(4555, 64533, 'sixty-four thousand five hundred thirty-three'); INSERT INTO t2 VALUES(4556, 28673, 'twenty-eight thousand six hundred seventy-three'); INSERT INTO t2 VALUES(4557, 13782, 'thirteen thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(4558, 35281, 'thirty-five thousand two hundred eighty-one'); INSERT INTO t2 VALUES(4559, 28515, 'twenty-eight thousand five hundred fifteen'); INSERT INTO t2 VALUES(4560, 87363, 'eighty-seven thousand three hundred sixty-three'); INSERT INTO t2 VALUES(4561, 83666, 'eighty-three thousand six hundred sixty-six'); INSERT INTO t2 VALUES(4562, 11621, 'eleven thousand six hundred twenty-one'); INSERT INTO t2 VALUES(4563, 3641, 'three thousand six hundred forty-one'); INSERT INTO t2 VALUES(4564, 16857, 'sixteen thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(4565, 5991, 'five thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(4566, 3074, 'three thousand seventy-four'); INSERT INTO t2 VALUES(4567, 24474, 'twenty-four thousand four hundred seventy-four'); INSERT INTO t2 VALUES(4568, 75954, 'seventy-five thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(4569, 88426, 'eighty-eight thousand four hundred twenty-six'); INSERT INTO t2 VALUES(4570, 79581, 'seventy-nine thousand five hundred eighty-one'); INSERT INTO t2 VALUES(4571, 56822, 'fifty-six thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(4572, 61539, 'sixty-one thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(4573, 55173, 'fifty-five thousand one hundred seventy-three'); INSERT INTO t2 VALUES(4574, 46823, 'forty-six thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(4575, 57063, 'fifty-seven thousand sixty-three'); INSERT INTO t2 VALUES(4576, 61109, 'sixty-one thousand one hundred nine'); INSERT INTO t2 VALUES(4577, 85461, 'eighty-five thousand four hundred sixty-one'); INSERT INTO t2 VALUES(4578, 84474, 'eighty-four thousand four hundred seventy-four'); INSERT INTO t2 VALUES(4579, 67682, 'sixty-seven thousand six hundred eighty-two'); INSERT INTO t2 VALUES(4580, 93659, 'ninety-three thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(4581, 1504, 'one thousand five hundred four'); INSERT INTO t2 VALUES(4582, 58717, 'fifty-eight thousand seven hundred seventeen'); INSERT INTO t2 VALUES(4583, 35761, 'thirty-five thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(4584, 66392, 'sixty-six thousand three hundred ninety-two'); INSERT INTO t2 VALUES(4585, 5477, 'five thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(4586, 77005, 'seventy-seven thousand five'); INSERT INTO t2 VALUES(4587, 66107, 'sixty-six thousand one hundred seven'); INSERT INTO t2 VALUES(4588, 25747, 'twenty-five thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(4589, 62765, 'sixty-two thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(4590, 83802, 'eighty-three thousand eight hundred two'); INSERT INTO t2 VALUES(4591, 14872, 'fourteen thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(4592, 75654, 'seventy-five thousand six hundred fifty-four'); INSERT INTO t2 VALUES(4593, 6280, 'six thousand two hundred eighty'); INSERT INTO t2 VALUES(4594, 25753, 'twenty-five thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(4595, 14555, 'fourteen thousand five hundred fifty-five'); INSERT INTO t2 VALUES(4596, 76324, 'seventy-six thousand three hundred twenty-four'); INSERT INTO t2 VALUES(4597, 94278, 'ninety-four thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(4598, 45729, 'forty-five thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(4599, 49554, 'forty-nine thousand five hundred fifty-four'); INSERT INTO t2 VALUES(4600, 57459, 'fifty-seven thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(4601, 90993, 'ninety thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(4602, 46528, 'forty-six thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(4603, 31265, 'thirty-one thousand two hundred sixty-five'); INSERT INTO t2 VALUES(4604, 90098, 'ninety thousand ninety-eight'); INSERT INTO t2 VALUES(4605, 26781, 'twenty-six thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(4606, 49781, 'forty-nine thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(4607, 4595, 'four thousand five hundred ninety-five'); INSERT INTO t2 VALUES(4608, 89477, 'eighty-nine thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(4609, 96900, 'ninety-six thousand nine hundred'); INSERT INTO t2 VALUES(4610, 60656, 'sixty thousand six hundred fifty-six'); INSERT INTO t2 VALUES(4611, 54272, 'fifty-four thousand two hundred seventy-two'); INSERT INTO t2 VALUES(4612, 41189, 'forty-one thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(4613, 56243, 'fifty-six thousand two hundred forty-three'); INSERT INTO t2 VALUES(4614, 52142, 'fifty-two thousand one hundred forty-two'); INSERT INTO t2 VALUES(4615, 24729, 'twenty-four thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(4616, 31438, 'thirty-one thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(4617, 89875, 'eighty-nine thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(4618, 75762, 'seventy-five thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(4619, 22397, 'twenty-two thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(4620, 49736, 'forty-nine thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(4621, 69296, 'sixty-nine thousand two hundred ninety-six'); INSERT INTO t2 VALUES(4622, 25552, 'twenty-five thousand five hundred fifty-two'); INSERT INTO t2 VALUES(4623, 21628, 'twenty-one thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(4624, 52433, 'fifty-two thousand four hundred thirty-three'); INSERT INTO t2 VALUES(4625, 85636, 'eighty-five thousand six hundred thirty-six'); INSERT INTO t2 VALUES(4626, 61410, 'sixty-one thousand four hundred ten'); INSERT INTO t2 VALUES(4627, 80073, 'eighty thousand seventy-three'); INSERT INTO t2 VALUES(4628, 82404, 'eighty-two thousand four hundred four'); INSERT INTO t2 VALUES(4629, 82304, 'eighty-two thousand three hundred four'); INSERT INTO t2 VALUES(4630, 29735, 'twenty-nine thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(4631, 48451, 'forty-eight thousand four hundred fifty-one'); INSERT INTO t2 VALUES(4632, 62223, 'sixty-two thousand two hundred twenty-three'); INSERT INTO t2 VALUES(4633, 147, 'one hundred forty-seven'); INSERT INTO t2 VALUES(4634, 6878, 'six thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(4635, 52925, 'fifty-two thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(4636, 56386, 'fifty-six thousand three hundred eighty-six'); INSERT INTO t2 VALUES(4637, 86400, 'eighty-six thousand four hundred'); INSERT INTO t2 VALUES(4638, 86982, 'eighty-six thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(4639, 67607, 'sixty-seven thousand six hundred seven'); INSERT INTO t2 VALUES(4640, 2173, 'two thousand one hundred seventy-three'); INSERT INTO t2 VALUES(4641, 21617, 'twenty-one thousand six hundred seventeen'); INSERT INTO t2 VALUES(4642, 41225, 'forty-one thousand two hundred twenty-five'); INSERT INTO t2 VALUES(4643, 34699, 'thirty-four thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(4644, 2195, 'two thousand one hundred ninety-five'); INSERT INTO t2 VALUES(4645, 80084, 'eighty thousand eighty-four'); INSERT INTO t2 VALUES(4646, 43347, 'forty-three thousand three hundred forty-seven'); INSERT INTO t2 VALUES(4647, 41637, 'forty-one thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(4648, 6485, 'six thousand four hundred eighty-five'); INSERT INTO t2 VALUES(4649, 34080, 'thirty-four thousand eighty'); INSERT INTO t2 VALUES(4650, 64636, 'sixty-four thousand six hundred thirty-six'); INSERT INTO t2 VALUES(4651, 54189, 'fifty-four thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(4652, 16087, 'sixteen thousand eighty-seven'); INSERT INTO t2 VALUES(4653, 69549, 'sixty-nine thousand five hundred forty-nine'); INSERT INTO t2 VALUES(4654, 14602, 'fourteen thousand six hundred two'); INSERT INTO t2 VALUES(4655, 30139, 'thirty thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(4656, 10911, 'ten thousand nine hundred eleven'); INSERT INTO t2 VALUES(4657, 57195, 'fifty-seven thousand one hundred ninety-five'); INSERT INTO t2 VALUES(4658, 84212, 'eighty-four thousand two hundred twelve'); INSERT INTO t2 VALUES(4659, 87960, 'eighty-seven thousand nine hundred sixty'); INSERT INTO t2 VALUES(4660, 72679, 'seventy-two thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(4661, 48629, 'forty-eight thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(4662, 74208, 'seventy-four thousand two hundred eight'); INSERT INTO t2 VALUES(4663, 34809, 'thirty-four thousand eight hundred nine'); INSERT INTO t2 VALUES(4664, 25138, 'twenty-five thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(4665, 88467, 'eighty-eight thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(4666, 37859, 'thirty-seven thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(4667, 86442, 'eighty-six thousand four hundred forty-two'); INSERT INTO t2 VALUES(4668, 47276, 'forty-seven thousand two hundred seventy-six'); INSERT INTO t2 VALUES(4669, 91827, 'ninety-one thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(4670, 97530, 'ninety-seven thousand five hundred thirty'); INSERT INTO t2 VALUES(4671, 81356, 'eighty-one thousand three hundred fifty-six'); INSERT INTO t2 VALUES(4672, 12399, 'twelve thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(4673, 48910, 'forty-eight thousand nine hundred ten'); INSERT INTO t2 VALUES(4674, 55625, 'fifty-five thousand six hundred twenty-five'); INSERT INTO t2 VALUES(4675, 63024, 'sixty-three thousand twenty-four'); INSERT INTO t2 VALUES(4676, 46165, 'forty-six thousand one hundred sixty-five'); INSERT INTO t2 VALUES(4677, 7778, 'seven thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(4678, 27255, 'twenty-seven thousand two hundred fifty-five'); INSERT INTO t2 VALUES(4679, 31664, 'thirty-one thousand six hundred sixty-four'); INSERT INTO t2 VALUES(4680, 59626, 'fifty-nine thousand six hundred twenty-six'); INSERT INTO t2 VALUES(4681, 35045, 'thirty-five thousand forty-five'); INSERT INTO t2 VALUES(4682, 58962, 'fifty-eight thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(4683, 79613, 'seventy-nine thousand six hundred thirteen'); INSERT INTO t2 VALUES(4684, 85752, 'eighty-five thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(4685, 15033, 'fifteen thousand thirty-three'); INSERT INTO t2 VALUES(4686, 96883, 'ninety-six thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(4687, 21002, 'twenty-one thousand two'); INSERT INTO t2 VALUES(4688, 37469, 'thirty-seven thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(4689, 16726, 'sixteen thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(4690, 70997, 'seventy thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(4691, 82097, 'eighty-two thousand ninety-seven'); INSERT INTO t2 VALUES(4692, 6697, 'six thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(4693, 16948, 'sixteen thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(4694, 11934, 'eleven thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(4695, 53419, 'fifty-three thousand four hundred nineteen'); INSERT INTO t2 VALUES(4696, 75955, 'seventy-five thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(4697, 14845, 'fourteen thousand eight hundred forty-five'); INSERT INTO t2 VALUES(4698, 15826, 'fifteen thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(4699, 61614, 'sixty-one thousand six hundred fourteen'); INSERT INTO t2 VALUES(4700, 70358, 'seventy thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(4701, 7950, 'seven thousand nine hundred fifty'); INSERT INTO t2 VALUES(4702, 72071, 'seventy-two thousand seventy-one'); INSERT INTO t2 VALUES(4703, 41427, 'forty-one thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(4704, 5793, 'five thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(4705, 99509, 'ninety-nine thousand five hundred nine'); INSERT INTO t2 VALUES(4706, 66725, 'sixty-six thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(4707, 80187, 'eighty thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(4708, 87891, 'eighty-seven thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(4709, 56902, 'fifty-six thousand nine hundred two'); INSERT INTO t2 VALUES(4710, 7062, 'seven thousand sixty-two'); INSERT INTO t2 VALUES(4711, 55492, 'fifty-five thousand four hundred ninety-two'); INSERT INTO t2 VALUES(4712, 81473, 'eighty-one thousand four hundred seventy-three'); INSERT INTO t2 VALUES(4713, 58945, 'fifty-eight thousand nine hundred forty-five'); INSERT INTO t2 VALUES(4714, 37392, 'thirty-seven thousand three hundred ninety-two'); INSERT INTO t2 VALUES(4715, 52085, 'fifty-two thousand eighty-five'); INSERT INTO t2 VALUES(4716, 77280, 'seventy-seven thousand two hundred eighty'); INSERT INTO t2 VALUES(4717, 12164, 'twelve thousand one hundred sixty-four'); INSERT INTO t2 VALUES(4718, 39604, 'thirty-nine thousand six hundred four'); INSERT INTO t2 VALUES(4719, 56620, 'fifty-six thousand six hundred twenty'); INSERT INTO t2 VALUES(4720, 80749, 'eighty thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(4721, 29119, 'twenty-nine thousand one hundred nineteen'); INSERT INTO t2 VALUES(4722, 8157, 'eight thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(4723, 72769, 'seventy-two thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(4724, 91723, 'ninety-one thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(4725, 91965, 'ninety-one thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(4726, 52001, 'fifty-two thousand one'); INSERT INTO t2 VALUES(4727, 42827, 'forty-two thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(4728, 17563, 'seventeen thousand five hundred sixty-three'); INSERT INTO t2 VALUES(4729, 28505, 'twenty-eight thousand five hundred five'); INSERT INTO t2 VALUES(4730, 69035, 'sixty-nine thousand thirty-five'); INSERT INTO t2 VALUES(4731, 7523, 'seven thousand five hundred twenty-three'); INSERT INTO t2 VALUES(4732, 61903, 'sixty-one thousand nine hundred three'); INSERT INTO t2 VALUES(4733, 82398, 'eighty-two thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(4734, 85492, 'eighty-five thousand four hundred ninety-two'); INSERT INTO t2 VALUES(4735, 2186, 'two thousand one hundred eighty-six'); INSERT INTO t2 VALUES(4736, 99572, 'ninety-nine thousand five hundred seventy-two'); INSERT INTO t2 VALUES(4737, 29294, 'twenty-nine thousand two hundred ninety-four'); INSERT INTO t2 VALUES(4738, 3750, 'three thousand seven hundred fifty'); INSERT INTO t2 VALUES(4739, 56326, 'fifty-six thousand three hundred twenty-six'); INSERT INTO t2 VALUES(4740, 52409, 'fifty-two thousand four hundred nine'); INSERT INTO t2 VALUES(4741, 19675, 'nineteen thousand six hundred seventy-five'); INSERT INTO t2 VALUES(4742, 47832, 'forty-seven thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(4743, 82499, 'eighty-two thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(4744, 48009, 'forty-eight thousand nine'); INSERT INTO t2 VALUES(4745, 9329, 'nine thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(4746, 32273, 'thirty-two thousand two hundred seventy-three'); INSERT INTO t2 VALUES(4747, 24342, 'twenty-four thousand three hundred forty-two'); INSERT INTO t2 VALUES(4748, 53164, 'fifty-three thousand one hundred sixty-four'); INSERT INTO t2 VALUES(4749, 38214, 'thirty-eight thousand two hundred fourteen'); INSERT INTO t2 VALUES(4750, 24790, 'twenty-four thousand seven hundred ninety'); INSERT INTO t2 VALUES(4751, 51209, 'fifty-one thousand two hundred nine'); INSERT INTO t2 VALUES(4752, 31913, 'thirty-one thousand nine hundred thirteen'); INSERT INTO t2 VALUES(4753, 5221, 'five thousand two hundred twenty-one'); INSERT INTO t2 VALUES(4754, 24833, 'twenty-four thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(4755, 63212, 'sixty-three thousand two hundred twelve'); INSERT INTO t2 VALUES(4756, 86686, 'eighty-six thousand six hundred eighty-six'); INSERT INTO t2 VALUES(4757, 49829, 'forty-nine thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(4758, 45560, 'forty-five thousand five hundred sixty'); INSERT INTO t2 VALUES(4759, 83083, 'eighty-three thousand eighty-three'); INSERT INTO t2 VALUES(4760, 30804, 'thirty thousand eight hundred four'); INSERT INTO t2 VALUES(4761, 83416, 'eighty-three thousand four hundred sixteen'); INSERT INTO t2 VALUES(4762, 13225, 'thirteen thousand two hundred twenty-five'); INSERT INTO t2 VALUES(4763, 78037, 'seventy-eight thousand thirty-seven'); INSERT INTO t2 VALUES(4764, 91227, 'ninety-one thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(4765, 51755, 'fifty-one thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(4766, 22163, 'twenty-two thousand one hundred sixty-three'); INSERT INTO t2 VALUES(4767, 70509, 'seventy thousand five hundred nine'); INSERT INTO t2 VALUES(4768, 79537, 'seventy-nine thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(4769, 44627, 'forty-four thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(4770, 92844, 'ninety-two thousand eight hundred forty-four'); INSERT INTO t2 VALUES(4771, 20804, 'twenty thousand eight hundred four'); INSERT INTO t2 VALUES(4772, 53296, 'fifty-three thousand two hundred ninety-six'); INSERT INTO t2 VALUES(4773, 98831, 'ninety-eight thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(4774, 22003, 'twenty-two thousand three'); INSERT INTO t2 VALUES(4775, 17198, 'seventeen thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(4776, 48790, 'forty-eight thousand seven hundred ninety'); INSERT INTO t2 VALUES(4777, 10162, 'ten thousand one hundred sixty-two'); INSERT INTO t2 VALUES(4778, 77362, 'seventy-seven thousand three hundred sixty-two'); INSERT INTO t2 VALUES(4779, 4143, 'four thousand one hundred forty-three'); INSERT INTO t2 VALUES(4780, 42531, 'forty-two thousand five hundred thirty-one'); INSERT INTO t2 VALUES(4781, 33238, 'thirty-three thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(4782, 65677, 'sixty-five thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(4783, 94766, 'ninety-four thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(4784, 85655, 'eighty-five thousand six hundred fifty-five'); INSERT INTO t2 VALUES(4785, 72849, 'seventy-two thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(4786, 59333, 'fifty-nine thousand three hundred thirty-three'); INSERT INTO t2 VALUES(4787, 84413, 'eighty-four thousand four hundred thirteen'); INSERT INTO t2 VALUES(4788, 60015, 'sixty thousand fifteen'); INSERT INTO t2 VALUES(4789, 77987, 'seventy-seven thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(4790, 49079, 'forty-nine thousand seventy-nine'); INSERT INTO t2 VALUES(4791, 16080, 'sixteen thousand eighty'); INSERT INTO t2 VALUES(4792, 64104, 'sixty-four thousand one hundred four'); INSERT INTO t2 VALUES(4793, 93471, 'ninety-three thousand four hundred seventy-one'); INSERT INTO t2 VALUES(4794, 38891, 'thirty-eight thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(4795, 91732, 'ninety-one thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(4796, 37815, 'thirty-seven thousand eight hundred fifteen'); INSERT INTO t2 VALUES(4797, 62190, 'sixty-two thousand one hundred ninety'); INSERT INTO t2 VALUES(4798, 48543, 'forty-eight thousand five hundred forty-three'); INSERT INTO t2 VALUES(4799, 97640, 'ninety-seven thousand six hundred forty'); INSERT INTO t2 VALUES(4800, 28116, 'twenty-eight thousand one hundred sixteen'); INSERT INTO t2 VALUES(4801, 58220, 'fifty-eight thousand two hundred twenty'); INSERT INTO t2 VALUES(4802, 55682, 'fifty-five thousand six hundred eighty-two'); INSERT INTO t2 VALUES(4803, 79669, 'seventy-nine thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(4804, 875, 'eight hundred seventy-five'); INSERT INTO t2 VALUES(4805, 37484, 'thirty-seven thousand four hundred eighty-four'); INSERT INTO t2 VALUES(4806, 60499, 'sixty thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(4807, 39708, 'thirty-nine thousand seven hundred eight'); INSERT INTO t2 VALUES(4808, 42126, 'forty-two thousand one hundred twenty-six'); INSERT INTO t2 VALUES(4809, 44099, 'forty-four thousand ninety-nine'); INSERT INTO t2 VALUES(4810, 22129, 'twenty-two thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(4811, 28170, 'twenty-eight thousand one hundred seventy'); INSERT INTO t2 VALUES(4812, 44039, 'forty-four thousand thirty-nine'); INSERT INTO t2 VALUES(4813, 15200, 'fifteen thousand two hundred'); INSERT INTO t2 VALUES(4814, 76217, 'seventy-six thousand two hundred seventeen'); INSERT INTO t2 VALUES(4815, 1680, 'one thousand six hundred eighty'); INSERT INTO t2 VALUES(4816, 24500, 'twenty-four thousand five hundred'); INSERT INTO t2 VALUES(4817, 41140, 'forty-one thousand one hundred forty'); INSERT INTO t2 VALUES(4818, 26863, 'twenty-six thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(4819, 97029, 'ninety-seven thousand twenty-nine'); INSERT INTO t2 VALUES(4820, 10602, 'ten thousand six hundred two'); INSERT INTO t2 VALUES(4821, 42379, 'forty-two thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(4822, 14969, 'fourteen thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(4823, 76245, 'seventy-six thousand two hundred forty-five'); INSERT INTO t2 VALUES(4824, 66360, 'sixty-six thousand three hundred sixty'); INSERT INTO t2 VALUES(4825, 75475, 'seventy-five thousand four hundred seventy-five'); INSERT INTO t2 VALUES(4826, 34858, 'thirty-four thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(4827, 74993, 'seventy-four thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(4828, 19014, 'nineteen thousand fourteen'); INSERT INTO t2 VALUES(4829, 80289, 'eighty thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(4830, 23267, 'twenty-three thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(4831, 3825, 'three thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(4832, 52691, 'fifty-two thousand six hundred ninety-one'); INSERT INTO t2 VALUES(4833, 94716, 'ninety-four thousand seven hundred sixteen'); INSERT INTO t2 VALUES(4834, 37475, 'thirty-seven thousand four hundred seventy-five'); INSERT INTO t2 VALUES(4835, 10097, 'ten thousand ninety-seven'); INSERT INTO t2 VALUES(4836, 34612, 'thirty-four thousand six hundred twelve'); INSERT INTO t2 VALUES(4837, 6177, 'six thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(4838, 79949, 'seventy-nine thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(4839, 2101, 'two thousand one hundred one'); INSERT INTO t2 VALUES(4840, 92602, 'ninety-two thousand six hundred two'); INSERT INTO t2 VALUES(4841, 86662, 'eighty-six thousand six hundred sixty-two'); INSERT INTO t2 VALUES(4842, 4550, 'four thousand five hundred fifty'); INSERT INTO t2 VALUES(4843, 19952, 'nineteen thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(4844, 85057, 'eighty-five thousand fifty-seven'); INSERT INTO t2 VALUES(4845, 89932, 'eighty-nine thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(4846, 88702, 'eighty-eight thousand seven hundred two'); INSERT INTO t2 VALUES(4847, 6053, 'six thousand fifty-three'); INSERT INTO t2 VALUES(4848, 14956, 'fourteen thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(4849, 82044, 'eighty-two thousand forty-four'); INSERT INTO t2 VALUES(4850, 40502, 'forty thousand five hundred two'); INSERT INTO t2 VALUES(4851, 66270, 'sixty-six thousand two hundred seventy'); INSERT INTO t2 VALUES(4852, 67502, 'sixty-seven thousand five hundred two'); INSERT INTO t2 VALUES(4853, 16700, 'sixteen thousand seven hundred'); INSERT INTO t2 VALUES(4854, 3480, 'three thousand four hundred eighty'); INSERT INTO t2 VALUES(4855, 54407, 'fifty-four thousand four hundred seven'); INSERT INTO t2 VALUES(4856, 17013, 'seventeen thousand thirteen'); INSERT INTO t2 VALUES(4857, 58564, 'fifty-eight thousand five hundred sixty-four'); INSERT INTO t2 VALUES(4858, 12000, 'twelve thousand'); INSERT INTO t2 VALUES(4859, 80035, 'eighty thousand thirty-five'); INSERT INTO t2 VALUES(4860, 49411, 'forty-nine thousand four hundred eleven'); INSERT INTO t2 VALUES(4861, 6612, 'six thousand six hundred twelve'); INSERT INTO t2 VALUES(4862, 35349, 'thirty-five thousand three hundred forty-nine'); INSERT INTO t2 VALUES(4863, 78876, 'seventy-eight thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(4864, 15385, 'fifteen thousand three hundred eighty-five'); INSERT INTO t2 VALUES(4865, 67216, 'sixty-seven thousand two hundred sixteen'); INSERT INTO t2 VALUES(4866, 20820, 'twenty thousand eight hundred twenty'); INSERT INTO t2 VALUES(4867, 57372, 'fifty-seven thousand three hundred seventy-two'); INSERT INTO t2 VALUES(4868, 92182, 'ninety-two thousand one hundred eighty-two'); INSERT INTO t2 VALUES(4869, 11215, 'eleven thousand two hundred fifteen'); INSERT INTO t2 VALUES(4870, 71712, 'seventy-one thousand seven hundred twelve'); INSERT INTO t2 VALUES(4871, 96324, 'ninety-six thousand three hundred twenty-four'); INSERT INTO t2 VALUES(4872, 59297, 'fifty-nine thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(4873, 41951, 'forty-one thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(4874, 94949, 'ninety-four thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(4875, 89547, 'eighty-nine thousand five hundred forty-seven'); INSERT INTO t2 VALUES(4876, 62632, 'sixty-two thousand six hundred thirty-two'); INSERT INTO t2 VALUES(4877, 73077, 'seventy-three thousand seventy-seven'); INSERT INTO t2 VALUES(4878, 92981, 'ninety-two thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(4879, 6659, 'six thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(4880, 70080, 'seventy thousand eighty'); INSERT INTO t2 VALUES(4881, 46383, 'forty-six thousand three hundred eighty-three'); INSERT INTO t2 VALUES(4882, 46585, 'forty-six thousand five hundred eighty-five'); INSERT INTO t2 VALUES(4883, 18286, 'eighteen thousand two hundred eighty-six'); INSERT INTO t2 VALUES(4884, 54538, 'fifty-four thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(4885, 36581, 'thirty-six thousand five hundred eighty-one'); INSERT INTO t2 VALUES(4886, 98167, 'ninety-eight thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(4887, 88869, 'eighty-eight thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(4888, 25749, 'twenty-five thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(4889, 63033, 'sixty-three thousand thirty-three'); INSERT INTO t2 VALUES(4890, 35900, 'thirty-five thousand nine hundred'); INSERT INTO t2 VALUES(4891, 7486, 'seven thousand four hundred eighty-six'); INSERT INTO t2 VALUES(4892, 94932, 'ninety-four thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(4893, 3554, 'three thousand five hundred fifty-four'); INSERT INTO t2 VALUES(4894, 30294, 'thirty thousand two hundred ninety-four'); INSERT INTO t2 VALUES(4895, 83844, 'eighty-three thousand eight hundred forty-four'); INSERT INTO t2 VALUES(4896, 38278, 'thirty-eight thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(4897, 39034, 'thirty-nine thousand thirty-four'); INSERT INTO t2 VALUES(4898, 27746, 'twenty-seven thousand seven hundred forty-six'); INSERT INTO t2 VALUES(4899, 43092, 'forty-three thousand ninety-two'); INSERT INTO t2 VALUES(4900, 21265, 'twenty-one thousand two hundred sixty-five'); INSERT INTO t2 VALUES(4901, 63625, 'sixty-three thousand six hundred twenty-five'); INSERT INTO t2 VALUES(4902, 5078, 'five thousand seventy-eight'); INSERT INTO t2 VALUES(4903, 52275, 'fifty-two thousand two hundred seventy-five'); INSERT INTO t2 VALUES(4904, 46559, 'forty-six thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(4905, 96165, 'ninety-six thousand one hundred sixty-five'); INSERT INTO t2 VALUES(4906, 64208, 'sixty-four thousand two hundred eight'); INSERT INTO t2 VALUES(4907, 92308, 'ninety-two thousand three hundred eight'); INSERT INTO t2 VALUES(4908, 12430, 'twelve thousand four hundred thirty'); INSERT INTO t2 VALUES(4909, 15531, 'fifteen thousand five hundred thirty-one'); INSERT INTO t2 VALUES(4910, 24735, 'twenty-four thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(4911, 67909, 'sixty-seven thousand nine hundred nine'); INSERT INTO t2 VALUES(4912, 82301, 'eighty-two thousand three hundred one'); INSERT INTO t2 VALUES(4913, 92672, 'ninety-two thousand six hundred seventy-two'); INSERT INTO t2 VALUES(4914, 85586, 'eighty-five thousand five hundred eighty-six'); INSERT INTO t2 VALUES(4915, 28340, 'twenty-eight thousand three hundred forty'); INSERT INTO t2 VALUES(4916, 61592, 'sixty-one thousand five hundred ninety-two'); INSERT INTO t2 VALUES(4917, 19250, 'nineteen thousand two hundred fifty'); INSERT INTO t2 VALUES(4918, 23888, 'twenty-three thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(4919, 2292, 'two thousand two hundred ninety-two'); INSERT INTO t2 VALUES(4920, 95415, 'ninety-five thousand four hundred fifteen'); INSERT INTO t2 VALUES(4921, 41490, 'forty-one thousand four hundred ninety'); INSERT INTO t2 VALUES(4922, 68044, 'sixty-eight thousand forty-four'); INSERT INTO t2 VALUES(4923, 71962, 'seventy-one thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(4924, 26763, 'twenty-six thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(4925, 99728, 'ninety-nine thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(4926, 61207, 'sixty-one thousand two hundred seven'); INSERT INTO t2 VALUES(4927, 45953, 'forty-five thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(4928, 99391, 'ninety-nine thousand three hundred ninety-one'); INSERT INTO t2 VALUES(4929, 9812, 'nine thousand eight hundred twelve'); INSERT INTO t2 VALUES(4930, 17705, 'seventeen thousand seven hundred five'); INSERT INTO t2 VALUES(4931, 27902, 'twenty-seven thousand nine hundred two'); INSERT INTO t2 VALUES(4932, 95210, 'ninety-five thousand two hundred ten'); INSERT INTO t2 VALUES(4933, 49364, 'forty-nine thousand three hundred sixty-four'); INSERT INTO t2 VALUES(4934, 52670, 'fifty-two thousand six hundred seventy'); INSERT INTO t2 VALUES(4935, 92511, 'ninety-two thousand five hundred eleven'); INSERT INTO t2 VALUES(4936, 97673, 'ninety-seven thousand six hundred seventy-three'); INSERT INTO t2 VALUES(4937, 54223, 'fifty-four thousand two hundred twenty-three'); INSERT INTO t2 VALUES(4938, 79805, 'seventy-nine thousand eight hundred five'); INSERT INTO t2 VALUES(4939, 21130, 'twenty-one thousand one hundred thirty'); INSERT INTO t2 VALUES(4940, 35937, 'thirty-five thousand nine hundred thirty-seven'); INSERT INTO t2 VALUES(4941, 77114, 'seventy-seven thousand one hundred fourteen'); INSERT INTO t2 VALUES(4942, 67387, 'sixty-seven thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(4943, 37801, 'thirty-seven thousand eight hundred one'); INSERT INTO t2 VALUES(4944, 77073, 'seventy-seven thousand seventy-three'); INSERT INTO t2 VALUES(4945, 30190, 'thirty thousand one hundred ninety'); INSERT INTO t2 VALUES(4946, 95547, 'ninety-five thousand five hundred forty-seven'); INSERT INTO t2 VALUES(4947, 38975, 'thirty-eight thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(4948, 68527, 'sixty-eight thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(4949, 20626, 'twenty thousand six hundred twenty-six'); INSERT INTO t2 VALUES(4950, 2671, 'two thousand six hundred seventy-one'); INSERT INTO t2 VALUES(4951, 46834, 'forty-six thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(4952, 70999, 'seventy thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(4953, 39790, 'thirty-nine thousand seven hundred ninety'); INSERT INTO t2 VALUES(4954, 25000, 'twenty-five thousand'); INSERT INTO t2 VALUES(4955, 1183, 'one thousand one hundred eighty-three'); INSERT INTO t2 VALUES(4956, 68473, 'sixty-eight thousand four hundred seventy-three'); INSERT INTO t2 VALUES(4957, 7251, 'seven thousand two hundred fifty-one'); INSERT INTO t2 VALUES(4958, 43609, 'forty-three thousand six hundred nine'); INSERT INTO t2 VALUES(4959, 5859, 'five thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(4960, 48938, 'forty-eight thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(4961, 70491, 'seventy thousand four hundred ninety-one'); INSERT INTO t2 VALUES(4962, 36344, 'thirty-six thousand three hundred forty-four'); INSERT INTO t2 VALUES(4963, 25136, 'twenty-five thousand one hundred thirty-six'); INSERT INTO t2 VALUES(4964, 5483, 'five thousand four hundred eighty-three'); INSERT INTO t2 VALUES(4965, 59782, 'fifty-nine thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(4966, 83360, 'eighty-three thousand three hundred sixty'); INSERT INTO t2 VALUES(4967, 23464, 'twenty-three thousand four hundred sixty-four'); INSERT INTO t2 VALUES(4968, 44027, 'forty-four thousand twenty-seven'); INSERT INTO t2 VALUES(4969, 43114, 'forty-three thousand one hundred fourteen'); INSERT INTO t2 VALUES(4970, 21173, 'twenty-one thousand one hundred seventy-three'); INSERT INTO t2 VALUES(4971, 73577, 'seventy-three thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(4972, 25946, 'twenty-five thousand nine hundred forty-six'); INSERT INTO t2 VALUES(4973, 80055, 'eighty thousand fifty-five'); INSERT INTO t2 VALUES(4974, 74693, 'seventy-four thousand six hundred ninety-three'); INSERT INTO t2 VALUES(4975, 72656, 'seventy-two thousand six hundred fifty-six'); INSERT INTO t2 VALUES(4976, 10775, 'ten thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(4977, 50830, 'fifty thousand eight hundred thirty'); INSERT INTO t2 VALUES(4978, 22257, 'twenty-two thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(4979, 22434, 'twenty-two thousand four hundred thirty-four'); INSERT INTO t2 VALUES(4980, 44815, 'forty-four thousand eight hundred fifteen'); INSERT INTO t2 VALUES(4981, 74790, 'seventy-four thousand seven hundred ninety'); INSERT INTO t2 VALUES(4982, 26020, 'twenty-six thousand twenty'); INSERT INTO t2 VALUES(4983, 74226, 'seventy-four thousand two hundred twenty-six'); INSERT INTO t2 VALUES(4984, 4612, 'four thousand six hundred twelve'); INSERT INTO t2 VALUES(4985, 15622, 'fifteen thousand six hundred twenty-two'); INSERT INTO t2 VALUES(4986, 40404, 'forty thousand four hundred four'); INSERT INTO t2 VALUES(4987, 57422, 'fifty-seven thousand four hundred twenty-two'); INSERT INTO t2 VALUES(4988, 29900, 'twenty-nine thousand nine hundred'); INSERT INTO t2 VALUES(4989, 76359, 'seventy-six thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(4990, 55289, 'fifty-five thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(4991, 47993, 'forty-seven thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(4992, 66117, 'sixty-six thousand one hundred seventeen'); INSERT INTO t2 VALUES(4993, 54833, 'fifty-four thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(4994, 54347, 'fifty-four thousand three hundred forty-seven'); INSERT INTO t2 VALUES(4995, 48578, 'forty-eight thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(4996, 21743, 'twenty-one thousand seven hundred forty-three'); INSERT INTO t2 VALUES(4997, 65712, 'sixty-five thousand seven hundred twelve'); INSERT INTO t2 VALUES(4998, 99309, 'ninety-nine thousand three hundred nine'); INSERT INTO t2 VALUES(4999, 56777, 'fifty-six thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(5000, 76006, 'seventy-six thousand six'); INSERT INTO t2 VALUES(5001, 54584, 'fifty-four thousand five hundred eighty-four'); INSERT INTO t2 VALUES(5002, 39790, 'thirty-nine thousand seven hundred ninety'); INSERT INTO t2 VALUES(5003, 76793, 'seventy-six thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(5004, 38354, 'thirty-eight thousand three hundred fifty-four'); INSERT INTO t2 VALUES(5005, 17321, 'seventeen thousand three hundred twenty-one'); INSERT INTO t2 VALUES(5006, 35674, 'thirty-five thousand six hundred seventy-four'); INSERT INTO t2 VALUES(5007, 69052, 'sixty-nine thousand fifty-two'); INSERT INTO t2 VALUES(5008, 37592, 'thirty-seven thousand five hundred ninety-two'); INSERT INTO t2 VALUES(5009, 19592, 'nineteen thousand five hundred ninety-two'); INSERT INTO t2 VALUES(5010, 41696, 'forty-one thousand six hundred ninety-six'); INSERT INTO t2 VALUES(5011, 46847, 'forty-six thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(5012, 5559, 'five thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(5013, 13973, 'thirteen thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(5014, 85494, 'eighty-five thousand four hundred ninety-four'); INSERT INTO t2 VALUES(5015, 10036, 'ten thousand thirty-six'); INSERT INTO t2 VALUES(5016, 3631, 'three thousand six hundred thirty-one'); INSERT INTO t2 VALUES(5017, 4271, 'four thousand two hundred seventy-one'); INSERT INTO t2 VALUES(5018, 15463, 'fifteen thousand four hundred sixty-three'); INSERT INTO t2 VALUES(5019, 90687, 'ninety thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(5020, 84615, 'eighty-four thousand six hundred fifteen'); INSERT INTO t2 VALUES(5021, 13213, 'thirteen thousand two hundred thirteen'); INSERT INTO t2 VALUES(5022, 71979, 'seventy-one thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(5023, 20880, 'twenty thousand eight hundred eighty'); INSERT INTO t2 VALUES(5024, 33689, 'thirty-three thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(5025, 2246, 'two thousand two hundred forty-six'); INSERT INTO t2 VALUES(5026, 53994, 'fifty-three thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(5027, 5916, 'five thousand nine hundred sixteen'); INSERT INTO t2 VALUES(5028, 43769, 'forty-three thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(5029, 23461, 'twenty-three thousand four hundred sixty-one'); INSERT INTO t2 VALUES(5030, 29527, 'twenty-nine thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(5031, 25637, 'twenty-five thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(5032, 23596, 'twenty-three thousand five hundred ninety-six'); INSERT INTO t2 VALUES(5033, 58673, 'fifty-eight thousand six hundred seventy-three'); INSERT INTO t2 VALUES(5034, 56218, 'fifty-six thousand two hundred eighteen'); INSERT INTO t2 VALUES(5035, 15854, 'fifteen thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(5036, 13049, 'thirteen thousand forty-nine'); INSERT INTO t2 VALUES(5037, 11890, 'eleven thousand eight hundred ninety'); INSERT INTO t2 VALUES(5038, 90603, 'ninety thousand six hundred three'); INSERT INTO t2 VALUES(5039, 7377, 'seven thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(5040, 81798, 'eighty-one thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(5041, 45721, 'forty-five thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(5042, 76444, 'seventy-six thousand four hundred forty-four'); INSERT INTO t2 VALUES(5043, 59561, 'fifty-nine thousand five hundred sixty-one'); INSERT INTO t2 VALUES(5044, 56704, 'fifty-six thousand seven hundred four'); INSERT INTO t2 VALUES(5045, 23426, 'twenty-three thousand four hundred twenty-six'); INSERT INTO t2 VALUES(5046, 83766, 'eighty-three thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(5047, 85627, 'eighty-five thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(5048, 89080, 'eighty-nine thousand eighty'); INSERT INTO t2 VALUES(5049, 78973, 'seventy-eight thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(5050, 83165, 'eighty-three thousand one hundred sixty-five'); INSERT INTO t2 VALUES(5051, 69505, 'sixty-nine thousand five hundred five'); INSERT INTO t2 VALUES(5052, 10825, 'ten thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(5053, 84581, 'eighty-four thousand five hundred eighty-one'); INSERT INTO t2 VALUES(5054, 60573, 'sixty thousand five hundred seventy-three'); INSERT INTO t2 VALUES(5055, 66580, 'sixty-six thousand five hundred eighty'); INSERT INTO t2 VALUES(5056, 21178, 'twenty-one thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(5057, 55881, 'fifty-five thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(5058, 65284, 'sixty-five thousand two hundred eighty-four'); INSERT INTO t2 VALUES(5059, 75245, 'seventy-five thousand two hundred forty-five'); INSERT INTO t2 VALUES(5060, 97129, 'ninety-seven thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(5061, 51314, 'fifty-one thousand three hundred fourteen'); INSERT INTO t2 VALUES(5062, 56590, 'fifty-six thousand five hundred ninety'); INSERT INTO t2 VALUES(5063, 80409, 'eighty thousand four hundred nine'); INSERT INTO t2 VALUES(5064, 90545, 'ninety thousand five hundred forty-five'); INSERT INTO t2 VALUES(5065, 11948, 'eleven thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(5066, 75688, 'seventy-five thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(5067, 42655, 'forty-two thousand six hundred fifty-five'); INSERT INTO t2 VALUES(5068, 48614, 'forty-eight thousand six hundred fourteen'); INSERT INTO t2 VALUES(5069, 86866, 'eighty-six thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(5070, 17972, 'seventeen thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(5071, 92293, 'ninety-two thousand two hundred ninety-three'); INSERT INTO t2 VALUES(5072, 26566, 'twenty-six thousand five hundred sixty-six'); INSERT INTO t2 VALUES(5073, 67710, 'sixty-seven thousand seven hundred ten'); INSERT INTO t2 VALUES(5074, 40950, 'forty thousand nine hundred fifty'); INSERT INTO t2 VALUES(5075, 67035, 'sixty-seven thousand thirty-five'); INSERT INTO t2 VALUES(5076, 30157, 'thirty thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(5077, 90995, 'ninety thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(5078, 23306, 'twenty-three thousand three hundred six'); INSERT INTO t2 VALUES(5079, 23727, 'twenty-three thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(5080, 28854, 'twenty-eight thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(5081, 5609, 'five thousand six hundred nine'); INSERT INTO t2 VALUES(5082, 69635, 'sixty-nine thousand six hundred thirty-five'); INSERT INTO t2 VALUES(5083, 75082, 'seventy-five thousand eighty-two'); INSERT INTO t2 VALUES(5084, 61201, 'sixty-one thousand two hundred one'); INSERT INTO t2 VALUES(5085, 64915, 'sixty-four thousand nine hundred fifteen'); INSERT INTO t2 VALUES(5086, 34554, 'thirty-four thousand five hundred fifty-four'); INSERT INTO t2 VALUES(5087, 39827, 'thirty-nine thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(5088, 36853, 'thirty-six thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(5089, 25298, 'twenty-five thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(5090, 47949, 'forty-seven thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(5091, 55069, 'fifty-five thousand sixty-nine'); INSERT INTO t2 VALUES(5092, 41503, 'forty-one thousand five hundred three'); INSERT INTO t2 VALUES(5093, 561, 'five hundred sixty-one'); INSERT INTO t2 VALUES(5094, 13146, 'thirteen thousand one hundred forty-six'); INSERT INTO t2 VALUES(5095, 51192, 'fifty-one thousand one hundred ninety-two'); INSERT INTO t2 VALUES(5096, 19, 'nineteen'); INSERT INTO t2 VALUES(5097, 23490, 'twenty-three thousand four hundred ninety'); INSERT INTO t2 VALUES(5098, 18597, 'eighteen thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(5099, 53051, 'fifty-three thousand fifty-one'); INSERT INTO t2 VALUES(5100, 97504, 'ninety-seven thousand five hundred four'); INSERT INTO t2 VALUES(5101, 53810, 'fifty-three thousand eight hundred ten'); INSERT INTO t2 VALUES(5102, 38016, 'thirty-eight thousand sixteen'); INSERT INTO t2 VALUES(5103, 94589, 'ninety-four thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(5104, 64425, 'sixty-four thousand four hundred twenty-five'); INSERT INTO t2 VALUES(5105, 77528, 'seventy-seven thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(5106, 97225, 'ninety-seven thousand two hundred twenty-five'); INSERT INTO t2 VALUES(5107, 98349, 'ninety-eight thousand three hundred forty-nine'); INSERT INTO t2 VALUES(5108, 80922, 'eighty thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(5109, 17451, 'seventeen thousand four hundred fifty-one'); INSERT INTO t2 VALUES(5110, 70869, 'seventy thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(5111, 41319, 'forty-one thousand three hundred nineteen'); INSERT INTO t2 VALUES(5112, 31242, 'thirty-one thousand two hundred forty-two'); INSERT INTO t2 VALUES(5113, 31776, 'thirty-one thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(5114, 93588, 'ninety-three thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(5115, 67748, 'sixty-seven thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(5116, 84330, 'eighty-four thousand three hundred thirty'); INSERT INTO t2 VALUES(5117, 80165, 'eighty thousand one hundred sixty-five'); INSERT INTO t2 VALUES(5118, 83666, 'eighty-three thousand six hundred sixty-six'); INSERT INTO t2 VALUES(5119, 62516, 'sixty-two thousand five hundred sixteen'); INSERT INTO t2 VALUES(5120, 24093, 'twenty-four thousand ninety-three'); INSERT INTO t2 VALUES(5121, 33489, 'thirty-three thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(5122, 38940, 'thirty-eight thousand nine hundred forty'); INSERT INTO t2 VALUES(5123, 36679, 'thirty-six thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(5124, 42106, 'forty-two thousand one hundred six'); INSERT INTO t2 VALUES(5125, 51646, 'fifty-one thousand six hundred forty-six'); INSERT INTO t2 VALUES(5126, 91814, 'ninety-one thousand eight hundred fourteen'); INSERT INTO t2 VALUES(5127, 59360, 'fifty-nine thousand three hundred sixty'); INSERT INTO t2 VALUES(5128, 17219, 'seventeen thousand two hundred nineteen'); INSERT INTO t2 VALUES(5129, 54693, 'fifty-four thousand six hundred ninety-three'); INSERT INTO t2 VALUES(5130, 88067, 'eighty-eight thousand sixty-seven'); INSERT INTO t2 VALUES(5131, 78746, 'seventy-eight thousand seven hundred forty-six'); INSERT INTO t2 VALUES(5132, 40542, 'forty thousand five hundred forty-two'); INSERT INTO t2 VALUES(5133, 82944, 'eighty-two thousand nine hundred forty-four'); INSERT INTO t2 VALUES(5134, 36885, 'thirty-six thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(5135, 6810, 'six thousand eight hundred ten'); INSERT INTO t2 VALUES(5136, 2586, 'two thousand five hundred eighty-six'); INSERT INTO t2 VALUES(5137, 26637, 'twenty-six thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(5138, 27621, 'twenty-seven thousand six hundred twenty-one'); INSERT INTO t2 VALUES(5139, 8355, 'eight thousand three hundred fifty-five'); INSERT INTO t2 VALUES(5140, 84173, 'eighty-four thousand one hundred seventy-three'); INSERT INTO t2 VALUES(5141, 36366, 'thirty-six thousand three hundred sixty-six'); INSERT INTO t2 VALUES(5142, 91644, 'ninety-one thousand six hundred forty-four'); INSERT INTO t2 VALUES(5143, 87484, 'eighty-seven thousand four hundred eighty-four'); INSERT INTO t2 VALUES(5144, 46132, 'forty-six thousand one hundred thirty-two'); INSERT INTO t2 VALUES(5145, 60494, 'sixty thousand four hundred ninety-four'); INSERT INTO t2 VALUES(5146, 76727, 'seventy-six thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(5147, 50231, 'fifty thousand two hundred thirty-one'); INSERT INTO t2 VALUES(5148, 58520, 'fifty-eight thousand five hundred twenty'); INSERT INTO t2 VALUES(5149, 87954, 'eighty-seven thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(5150, 79266, 'seventy-nine thousand two hundred sixty-six'); INSERT INTO t2 VALUES(5151, 79677, 'seventy-nine thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(5152, 93605, 'ninety-three thousand six hundred five'); INSERT INTO t2 VALUES(5153, 56204, 'fifty-six thousand two hundred four'); INSERT INTO t2 VALUES(5154, 21078, 'twenty-one thousand seventy-eight'); INSERT INTO t2 VALUES(5155, 73086, 'seventy-three thousand eighty-six'); INSERT INTO t2 VALUES(5156, 78933, 'seventy-eight thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(5157, 79104, 'seventy-nine thousand one hundred four'); INSERT INTO t2 VALUES(5158, 9544, 'nine thousand five hundred forty-four'); INSERT INTO t2 VALUES(5159, 49912, 'forty-nine thousand nine hundred twelve'); INSERT INTO t2 VALUES(5160, 93064, 'ninety-three thousand sixty-four'); INSERT INTO t2 VALUES(5161, 35041, 'thirty-five thousand forty-one'); INSERT INTO t2 VALUES(5162, 5671, 'five thousand six hundred seventy-one'); INSERT INTO t2 VALUES(5163, 52072, 'fifty-two thousand seventy-two'); INSERT INTO t2 VALUES(5164, 6455, 'six thousand four hundred fifty-five'); INSERT INTO t2 VALUES(5165, 42472, 'forty-two thousand four hundred seventy-two'); INSERT INTO t2 VALUES(5166, 47328, 'forty-seven thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(5167, 69741, 'sixty-nine thousand seven hundred forty-one'); INSERT INTO t2 VALUES(5168, 83016, 'eighty-three thousand sixteen'); INSERT INTO t2 VALUES(5169, 74810, 'seventy-four thousand eight hundred ten'); INSERT INTO t2 VALUES(5170, 18469, 'eighteen thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(5171, 32678, 'thirty-two thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(5172, 87525, 'eighty-seven thousand five hundred twenty-five'); INSERT INTO t2 VALUES(5173, 17571, 'seventeen thousand five hundred seventy-one'); INSERT INTO t2 VALUES(5174, 81233, 'eighty-one thousand two hundred thirty-three'); INSERT INTO t2 VALUES(5175, 92721, 'ninety-two thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(5176, 89026, 'eighty-nine thousand twenty-six'); INSERT INTO t2 VALUES(5177, 77797, 'seventy-seven thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(5178, 38063, 'thirty-eight thousand sixty-three'); INSERT INTO t2 VALUES(5179, 5244, 'five thousand two hundred forty-four'); INSERT INTO t2 VALUES(5180, 67173, 'sixty-seven thousand one hundred seventy-three'); INSERT INTO t2 VALUES(5181, 65154, 'sixty-five thousand one hundred fifty-four'); INSERT INTO t2 VALUES(5182, 79458, 'seventy-nine thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(5183, 24147, 'twenty-four thousand one hundred forty-seven'); INSERT INTO t2 VALUES(5184, 8676, 'eight thousand six hundred seventy-six'); INSERT INTO t2 VALUES(5185, 73329, 'seventy-three thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(5186, 2066, 'two thousand sixty-six'); INSERT INTO t2 VALUES(5187, 76724, 'seventy-six thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(5188, 44702, 'forty-four thousand seven hundred two'); INSERT INTO t2 VALUES(5189, 41851, 'forty-one thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(5190, 48920, 'forty-eight thousand nine hundred twenty'); INSERT INTO t2 VALUES(5191, 15050, 'fifteen thousand fifty'); INSERT INTO t2 VALUES(5192, 54443, 'fifty-four thousand four hundred forty-three'); INSERT INTO t2 VALUES(5193, 53268, 'fifty-three thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(5194, 8007, 'eight thousand seven'); INSERT INTO t2 VALUES(5195, 28339, 'twenty-eight thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(5196, 10340, 'ten thousand three hundred forty'); INSERT INTO t2 VALUES(5197, 84652, 'eighty-four thousand six hundred fifty-two'); INSERT INTO t2 VALUES(5198, 86770, 'eighty-six thousand seven hundred seventy'); INSERT INTO t2 VALUES(5199, 71747, 'seventy-one thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(5200, 35653, 'thirty-five thousand six hundred fifty-three'); INSERT INTO t2 VALUES(5201, 97934, 'ninety-seven thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(5202, 76458, 'seventy-six thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(5203, 61364, 'sixty-one thousand three hundred sixty-four'); INSERT INTO t2 VALUES(5204, 39435, 'thirty-nine thousand four hundred thirty-five'); INSERT INTO t2 VALUES(5205, 9286, 'nine thousand two hundred eighty-six'); INSERT INTO t2 VALUES(5206, 32518, 'thirty-two thousand five hundred eighteen'); INSERT INTO t2 VALUES(5207, 88687, 'eighty-eight thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(5208, 13900, 'thirteen thousand nine hundred'); INSERT INTO t2 VALUES(5209, 87256, 'eighty-seven thousand two hundred fifty-six'); INSERT INTO t2 VALUES(5210, 31493, 'thirty-one thousand four hundred ninety-three'); INSERT INTO t2 VALUES(5211, 28515, 'twenty-eight thousand five hundred fifteen'); INSERT INTO t2 VALUES(5212, 13386, 'thirteen thousand three hundred eighty-six'); INSERT INTO t2 VALUES(5213, 81764, 'eighty-one thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(5214, 32266, 'thirty-two thousand two hundred sixty-six'); INSERT INTO t2 VALUES(5215, 51612, 'fifty-one thousand six hundred twelve'); INSERT INTO t2 VALUES(5216, 89157, 'eighty-nine thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(5217, 55315, 'fifty-five thousand three hundred fifteen'); INSERT INTO t2 VALUES(5218, 92005, 'ninety-two thousand five'); INSERT INTO t2 VALUES(5219, 27552, 'twenty-seven thousand five hundred fifty-two'); INSERT INTO t2 VALUES(5220, 92540, 'ninety-two thousand five hundred forty'); INSERT INTO t2 VALUES(5221, 70516, 'seventy thousand five hundred sixteen'); INSERT INTO t2 VALUES(5222, 85849, 'eighty-five thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(5223, 97216, 'ninety-seven thousand two hundred sixteen'); INSERT INTO t2 VALUES(5224, 30165, 'thirty thousand one hundred sixty-five'); INSERT INTO t2 VALUES(5225, 40762, 'forty thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(5226, 56910, 'fifty-six thousand nine hundred ten'); INSERT INTO t2 VALUES(5227, 54585, 'fifty-four thousand five hundred eighty-five'); INSERT INTO t2 VALUES(5228, 13498, 'thirteen thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(5229, 97417, 'ninety-seven thousand four hundred seventeen'); INSERT INTO t2 VALUES(5230, 42402, 'forty-two thousand four hundred two'); INSERT INTO t2 VALUES(5231, 18751, 'eighteen thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(5232, 42342, 'forty-two thousand three hundred forty-two'); INSERT INTO t2 VALUES(5233, 86201, 'eighty-six thousand two hundred one'); INSERT INTO t2 VALUES(5234, 10814, 'ten thousand eight hundred fourteen'); INSERT INTO t2 VALUES(5235, 72891, 'seventy-two thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(5236, 86595, 'eighty-six thousand five hundred ninety-five'); INSERT INTO t2 VALUES(5237, 2117, 'two thousand one hundred seventeen'); INSERT INTO t2 VALUES(5238, 80556, 'eighty thousand five hundred fifty-six'); INSERT INTO t2 VALUES(5239, 16822, 'sixteen thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(5240, 28227, 'twenty-eight thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(5241, 86732, 'eighty-six thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(5242, 27483, 'twenty-seven thousand four hundred eighty-three'); INSERT INTO t2 VALUES(5243, 90741, 'ninety thousand seven hundred forty-one'); INSERT INTO t2 VALUES(5244, 76751, 'seventy-six thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(5245, 51783, 'fifty-one thousand seven hundred eighty-three'); INSERT INTO t2 VALUES(5246, 71838, 'seventy-one thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(5247, 38091, 'thirty-eight thousand ninety-one'); INSERT INTO t2 VALUES(5248, 17093, 'seventeen thousand ninety-three'); INSERT INTO t2 VALUES(5249, 93920, 'ninety-three thousand nine hundred twenty'); INSERT INTO t2 VALUES(5250, 52613, 'fifty-two thousand six hundred thirteen'); INSERT INTO t2 VALUES(5251, 86579, 'eighty-six thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(5252, 56256, 'fifty-six thousand two hundred fifty-six'); INSERT INTO t2 VALUES(5253, 98577, 'ninety-eight thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(5254, 89371, 'eighty-nine thousand three hundred seventy-one'); INSERT INTO t2 VALUES(5255, 24810, 'twenty-four thousand eight hundred ten'); INSERT INTO t2 VALUES(5256, 6151, 'six thousand one hundred fifty-one'); INSERT INTO t2 VALUES(5257, 75612, 'seventy-five thousand six hundred twelve'); INSERT INTO t2 VALUES(5258, 85805, 'eighty-five thousand eight hundred five'); INSERT INTO t2 VALUES(5259, 56894, 'fifty-six thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(5260, 35404, 'thirty-five thousand four hundred four'); INSERT INTO t2 VALUES(5261, 88306, 'eighty-eight thousand three hundred six'); INSERT INTO t2 VALUES(5262, 15494, 'fifteen thousand four hundred ninety-four'); INSERT INTO t2 VALUES(5263, 74473, 'seventy-four thousand four hundred seventy-three'); INSERT INTO t2 VALUES(5264, 12515, 'twelve thousand five hundred fifteen'); INSERT INTO t2 VALUES(5265, 52947, 'fifty-two thousand nine hundred forty-seven'); INSERT INTO t2 VALUES(5266, 15232, 'fifteen thousand two hundred thirty-two'); INSERT INTO t2 VALUES(5267, 49211, 'forty-nine thousand two hundred eleven'); INSERT INTO t2 VALUES(5268, 56245, 'fifty-six thousand two hundred forty-five'); INSERT INTO t2 VALUES(5269, 17399, 'seventeen thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(5270, 91665, 'ninety-one thousand six hundred sixty-five'); INSERT INTO t2 VALUES(5271, 25665, 'twenty-five thousand six hundred sixty-five'); INSERT INTO t2 VALUES(5272, 13642, 'thirteen thousand six hundred forty-two'); INSERT INTO t2 VALUES(5273, 48906, 'forty-eight thousand nine hundred six'); INSERT INTO t2 VALUES(5274, 98863, 'ninety-eight thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(5275, 70699, 'seventy thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(5276, 95159, 'ninety-five thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(5277, 46816, 'forty-six thousand eight hundred sixteen'); INSERT INTO t2 VALUES(5278, 29965, 'twenty-nine thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(5279, 38079, 'thirty-eight thousand seventy-nine'); INSERT INTO t2 VALUES(5280, 78684, 'seventy-eight thousand six hundred eighty-four'); INSERT INTO t2 VALUES(5281, 98015, 'ninety-eight thousand fifteen'); INSERT INTO t2 VALUES(5282, 84140, 'eighty-four thousand one hundred forty'); INSERT INTO t2 VALUES(5283, 67008, 'sixty-seven thousand eight'); INSERT INTO t2 VALUES(5284, 31002, 'thirty-one thousand two'); INSERT INTO t2 VALUES(5285, 46896, 'forty-six thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(5286, 36661, 'thirty-six thousand six hundred sixty-one'); INSERT INTO t2 VALUES(5287, 20725, 'twenty thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(5288, 71532, 'seventy-one thousand five hundred thirty-two'); INSERT INTO t2 VALUES(5289, 3593, 'three thousand five hundred ninety-three'); INSERT INTO t2 VALUES(5290, 50285, 'fifty thousand two hundred eighty-five'); INSERT INTO t2 VALUES(5291, 58550, 'fifty-eight thousand five hundred fifty'); INSERT INTO t2 VALUES(5292, 71421, 'seventy-one thousand four hundred twenty-one'); INSERT INTO t2 VALUES(5293, 96097, 'ninety-six thousand ninety-seven'); INSERT INTO t2 VALUES(5294, 4435, 'four thousand four hundred thirty-five'); INSERT INTO t2 VALUES(5295, 3892, 'three thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(5296, 51210, 'fifty-one thousand two hundred ten'); INSERT INTO t2 VALUES(5297, 53839, 'fifty-three thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(5298, 87236, 'eighty-seven thousand two hundred thirty-six'); INSERT INTO t2 VALUES(5299, 16280, 'sixteen thousand two hundred eighty'); INSERT INTO t2 VALUES(5300, 52159, 'fifty-two thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(5301, 82213, 'eighty-two thousand two hundred thirteen'); INSERT INTO t2 VALUES(5302, 26845, 'twenty-six thousand eight hundred forty-five'); INSERT INTO t2 VALUES(5303, 61810, 'sixty-one thousand eight hundred ten'); INSERT INTO t2 VALUES(5304, 9123, 'nine thousand one hundred twenty-three'); INSERT INTO t2 VALUES(5305, 81912, 'eighty-one thousand nine hundred twelve'); INSERT INTO t2 VALUES(5306, 76933, 'seventy-six thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(5307, 59179, 'fifty-nine thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(5308, 5154, 'five thousand one hundred fifty-four'); INSERT INTO t2 VALUES(5309, 15991, 'fifteen thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(5310, 26294, 'twenty-six thousand two hundred ninety-four'); INSERT INTO t2 VALUES(5311, 63443, 'sixty-three thousand four hundred forty-three'); INSERT INTO t2 VALUES(5312, 66173, 'sixty-six thousand one hundred seventy-three'); INSERT INTO t2 VALUES(5313, 92104, 'ninety-two thousand one hundred four'); INSERT INTO t2 VALUES(5314, 10510, 'ten thousand five hundred ten'); INSERT INTO t2 VALUES(5315, 16649, 'sixteen thousand six hundred forty-nine'); INSERT INTO t2 VALUES(5316, 43854, 'forty-three thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(5317, 19392, 'nineteen thousand three hundred ninety-two'); INSERT INTO t2 VALUES(5318, 21171, 'twenty-one thousand one hundred seventy-one'); INSERT INTO t2 VALUES(5319, 25855, 'twenty-five thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(5320, 95460, 'ninety-five thousand four hundred sixty'); INSERT INTO t2 VALUES(5321, 47633, 'forty-seven thousand six hundred thirty-three'); INSERT INTO t2 VALUES(5322, 18779, 'eighteen thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(5323, 84801, 'eighty-four thousand eight hundred one'); INSERT INTO t2 VALUES(5324, 22188, 'twenty-two thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(5325, 6775, 'six thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(5326, 81569, 'eighty-one thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(5327, 6448, 'six thousand four hundred forty-eight'); INSERT INTO t2 VALUES(5328, 48952, 'forty-eight thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(5329, 46673, 'forty-six thousand six hundred seventy-three'); INSERT INTO t2 VALUES(5330, 89818, 'eighty-nine thousand eight hundred eighteen'); INSERT INTO t2 VALUES(5331, 26596, 'twenty-six thousand five hundred ninety-six'); INSERT INTO t2 VALUES(5332, 75812, 'seventy-five thousand eight hundred twelve'); INSERT INTO t2 VALUES(5333, 10302, 'ten thousand three hundred two'); INSERT INTO t2 VALUES(5334, 10591, 'ten thousand five hundred ninety-one'); INSERT INTO t2 VALUES(5335, 61893, 'sixty-one thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(5336, 38316, 'thirty-eight thousand three hundred sixteen'); INSERT INTO t2 VALUES(5337, 61177, 'sixty-one thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(5338, 10551, 'ten thousand five hundred fifty-one'); INSERT INTO t2 VALUES(5339, 42025, 'forty-two thousand twenty-five'); INSERT INTO t2 VALUES(5340, 87494, 'eighty-seven thousand four hundred ninety-four'); INSERT INTO t2 VALUES(5341, 4547, 'four thousand five hundred forty-seven'); INSERT INTO t2 VALUES(5342, 46428, 'forty-six thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(5343, 79016, 'seventy-nine thousand sixteen'); INSERT INTO t2 VALUES(5344, 92130, 'ninety-two thousand one hundred thirty'); INSERT INTO t2 VALUES(5345, 79710, 'seventy-nine thousand seven hundred ten'); INSERT INTO t2 VALUES(5346, 22620, 'twenty-two thousand six hundred twenty'); INSERT INTO t2 VALUES(5347, 27008, 'twenty-seven thousand eight'); INSERT INTO t2 VALUES(5348, 57971, 'fifty-seven thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(5349, 80720, 'eighty thousand seven hundred twenty'); INSERT INTO t2 VALUES(5350, 70781, 'seventy thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(5351, 75601, 'seventy-five thousand six hundred one'); INSERT INTO t2 VALUES(5352, 53397, 'fifty-three thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(5353, 88942, 'eighty-eight thousand nine hundred forty-two'); INSERT INTO t2 VALUES(5354, 94640, 'ninety-four thousand six hundred forty'); INSERT INTO t2 VALUES(5355, 11939, 'eleven thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(5356, 40217, 'forty thousand two hundred seventeen'); INSERT INTO t2 VALUES(5357, 6737, 'six thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(5358, 4726, 'four thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(5359, 81980, 'eighty-one thousand nine hundred eighty'); INSERT INTO t2 VALUES(5360, 60457, 'sixty thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(5361, 18045, 'eighteen thousand forty-five'); INSERT INTO t2 VALUES(5362, 29445, 'twenty-nine thousand four hundred forty-five'); INSERT INTO t2 VALUES(5363, 91888, 'ninety-one thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(5364, 88004, 'eighty-eight thousand four'); INSERT INTO t2 VALUES(5365, 57146, 'fifty-seven thousand one hundred forty-six'); INSERT INTO t2 VALUES(5366, 37922, 'thirty-seven thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(5367, 88257, 'eighty-eight thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(5368, 30211, 'thirty thousand two hundred eleven'); INSERT INTO t2 VALUES(5369, 10159, 'ten thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(5370, 4876, 'four thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(5371, 43935, 'forty-three thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(5372, 12446, 'twelve thousand four hundred forty-six'); INSERT INTO t2 VALUES(5373, 64890, 'sixty-four thousand eight hundred ninety'); INSERT INTO t2 VALUES(5374, 80042, 'eighty thousand forty-two'); INSERT INTO t2 VALUES(5375, 14013, 'fourteen thousand thirteen'); INSERT INTO t2 VALUES(5376, 29042, 'twenty-nine thousand forty-two'); INSERT INTO t2 VALUES(5377, 29986, 'twenty-nine thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(5378, 84562, 'eighty-four thousand five hundred sixty-two'); INSERT INTO t2 VALUES(5379, 82043, 'eighty-two thousand forty-three'); INSERT INTO t2 VALUES(5380, 31130, 'thirty-one thousand one hundred thirty'); INSERT INTO t2 VALUES(5381, 13528, 'thirteen thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(5382, 14565, 'fourteen thousand five hundred sixty-five'); INSERT INTO t2 VALUES(5383, 6903, 'six thousand nine hundred three'); INSERT INTO t2 VALUES(5384, 93742, 'ninety-three thousand seven hundred forty-two'); INSERT INTO t2 VALUES(5385, 11882, 'eleven thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(5386, 21475, 'twenty-one thousand four hundred seventy-five'); INSERT INTO t2 VALUES(5387, 49950, 'forty-nine thousand nine hundred fifty'); INSERT INTO t2 VALUES(5388, 57661, 'fifty-seven thousand six hundred sixty-one'); INSERT INTO t2 VALUES(5389, 7120, 'seven thousand one hundred twenty'); INSERT INTO t2 VALUES(5390, 43494, 'forty-three thousand four hundred ninety-four'); INSERT INTO t2 VALUES(5391, 18687, 'eighteen thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(5392, 44254, 'forty-four thousand two hundred fifty-four'); INSERT INTO t2 VALUES(5393, 65021, 'sixty-five thousand twenty-one'); INSERT INTO t2 VALUES(5394, 94232, 'ninety-four thousand two hundred thirty-two'); INSERT INTO t2 VALUES(5395, 94726, 'ninety-four thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(5396, 60279, 'sixty thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(5397, 21576, 'twenty-one thousand five hundred seventy-six'); INSERT INTO t2 VALUES(5398, 52825, 'fifty-two thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(5399, 79015, 'seventy-nine thousand fifteen'); INSERT INTO t2 VALUES(5400, 66967, 'sixty-six thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(5401, 24511, 'twenty-four thousand five hundred eleven'); INSERT INTO t2 VALUES(5402, 48642, 'forty-eight thousand six hundred forty-two'); INSERT INTO t2 VALUES(5403, 53963, 'fifty-three thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(5404, 87270, 'eighty-seven thousand two hundred seventy'); INSERT INTO t2 VALUES(5405, 58494, 'fifty-eight thousand four hundred ninety-four'); INSERT INTO t2 VALUES(5406, 19483, 'nineteen thousand four hundred eighty-three'); INSERT INTO t2 VALUES(5407, 72540, 'seventy-two thousand five hundred forty'); INSERT INTO t2 VALUES(5408, 11120, 'eleven thousand one hundred twenty'); INSERT INTO t2 VALUES(5409, 13105, 'thirteen thousand one hundred five'); INSERT INTO t2 VALUES(5410, 57833, 'fifty-seven thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(5411, 62579, 'sixty-two thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(5412, 58150, 'fifty-eight thousand one hundred fifty'); INSERT INTO t2 VALUES(5413, 48699, 'forty-eight thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(5414, 51358, 'fifty-one thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(5415, 64428, 'sixty-four thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(5416, 66843, 'sixty-six thousand eight hundred forty-three'); INSERT INTO t2 VALUES(5417, 78413, 'seventy-eight thousand four hundred thirteen'); INSERT INTO t2 VALUES(5418, 11829, 'eleven thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(5419, 15371, 'fifteen thousand three hundred seventy-one'); INSERT INTO t2 VALUES(5420, 15426, 'fifteen thousand four hundred twenty-six'); INSERT INTO t2 VALUES(5421, 31964, 'thirty-one thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(5422, 48974, 'forty-eight thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(5423, 62210, 'sixty-two thousand two hundred ten'); INSERT INTO t2 VALUES(5424, 65849, 'sixty-five thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(5425, 50671, 'fifty thousand six hundred seventy-one'); INSERT INTO t2 VALUES(5426, 3958, 'three thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(5427, 86753, 'eighty-six thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(5428, 2371, 'two thousand three hundred seventy-one'); INSERT INTO t2 VALUES(5429, 40468, 'forty thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(5430, 58504, 'fifty-eight thousand five hundred four'); INSERT INTO t2 VALUES(5431, 57238, 'fifty-seven thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(5432, 31687, 'thirty-one thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(5433, 24129, 'twenty-four thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(5434, 64691, 'sixty-four thousand six hundred ninety-one'); INSERT INTO t2 VALUES(5435, 18869, 'eighteen thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(5436, 26724, 'twenty-six thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(5437, 36431, 'thirty-six thousand four hundred thirty-one'); INSERT INTO t2 VALUES(5438, 42625, 'forty-two thousand six hundred twenty-five'); INSERT INTO t2 VALUES(5439, 57801, 'fifty-seven thousand eight hundred one'); INSERT INTO t2 VALUES(5440, 99459, 'ninety-nine thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(5441, 49376, 'forty-nine thousand three hundred seventy-six'); INSERT INTO t2 VALUES(5442, 96477, 'ninety-six thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(5443, 77880, 'seventy-seven thousand eight hundred eighty'); INSERT INTO t2 VALUES(5444, 86640, 'eighty-six thousand six hundred forty'); INSERT INTO t2 VALUES(5445, 73522, 'seventy-three thousand five hundred twenty-two'); INSERT INTO t2 VALUES(5446, 42879, 'forty-two thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(5447, 68835, 'sixty-eight thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(5448, 88990, 'eighty-eight thousand nine hundred ninety'); INSERT INTO t2 VALUES(5449, 63962, 'sixty-three thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(5450, 55163, 'fifty-five thousand one hundred sixty-three'); INSERT INTO t2 VALUES(5451, 87425, 'eighty-seven thousand four hundred twenty-five'); INSERT INTO t2 VALUES(5452, 29853, 'twenty-nine thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(5453, 37715, 'thirty-seven thousand seven hundred fifteen'); INSERT INTO t2 VALUES(5454, 44952, 'forty-four thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(5455, 65607, 'sixty-five thousand six hundred seven'); INSERT INTO t2 VALUES(5456, 6073, 'six thousand seventy-three'); INSERT INTO t2 VALUES(5457, 9230, 'nine thousand two hundred thirty'); INSERT INTO t2 VALUES(5458, 46462, 'forty-six thousand four hundred sixty-two'); INSERT INTO t2 VALUES(5459, 59262, 'fifty-nine thousand two hundred sixty-two'); INSERT INTO t2 VALUES(5460, 94289, 'ninety-four thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(5461, 98634, 'ninety-eight thousand six hundred thirty-four'); INSERT INTO t2 VALUES(5462, 23407, 'twenty-three thousand four hundred seven'); INSERT INTO t2 VALUES(5463, 40593, 'forty thousand five hundred ninety-three'); INSERT INTO t2 VALUES(5464, 20043, 'twenty thousand forty-three'); INSERT INTO t2 VALUES(5465, 49286, 'forty-nine thousand two hundred eighty-six'); INSERT INTO t2 VALUES(5466, 95838, 'ninety-five thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(5467, 54130, 'fifty-four thousand one hundred thirty'); INSERT INTO t2 VALUES(5468, 48392, 'forty-eight thousand three hundred ninety-two'); INSERT INTO t2 VALUES(5469, 20104, 'twenty thousand one hundred four'); INSERT INTO t2 VALUES(5470, 30773, 'thirty thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(5471, 4376, 'four thousand three hundred seventy-six'); INSERT INTO t2 VALUES(5472, 77786, 'seventy-seven thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(5473, 76515, 'seventy-six thousand five hundred fifteen'); INSERT INTO t2 VALUES(5474, 68599, 'sixty-eight thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(5475, 63128, 'sixty-three thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(5476, 90837, 'ninety thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(5477, 88521, 'eighty-eight thousand five hundred twenty-one'); INSERT INTO t2 VALUES(5478, 87382, 'eighty-seven thousand three hundred eighty-two'); INSERT INTO t2 VALUES(5479, 70390, 'seventy thousand three hundred ninety'); INSERT INTO t2 VALUES(5480, 36387, 'thirty-six thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(5481, 59666, 'fifty-nine thousand six hundred sixty-six'); INSERT INTO t2 VALUES(5482, 47147, 'forty-seven thousand one hundred forty-seven'); INSERT INTO t2 VALUES(5483, 19549, 'nineteen thousand five hundred forty-nine'); INSERT INTO t2 VALUES(5484, 95069, 'ninety-five thousand sixty-nine'); INSERT INTO t2 VALUES(5485, 17021, 'seventeen thousand twenty-one'); INSERT INTO t2 VALUES(5486, 77406, 'seventy-seven thousand four hundred six'); INSERT INTO t2 VALUES(5487, 73802, 'seventy-three thousand eight hundred two'); INSERT INTO t2 VALUES(5488, 14418, 'fourteen thousand four hundred eighteen'); INSERT INTO t2 VALUES(5489, 88608, 'eighty-eight thousand six hundred eight'); INSERT INTO t2 VALUES(5490, 29278, 'twenty-nine thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(5491, 88753, 'eighty-eight thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(5492, 50061, 'fifty thousand sixty-one'); INSERT INTO t2 VALUES(5493, 17050, 'seventeen thousand fifty'); INSERT INTO t2 VALUES(5494, 95011, 'ninety-five thousand eleven'); INSERT INTO t2 VALUES(5495, 51750, 'fifty-one thousand seven hundred fifty'); INSERT INTO t2 VALUES(5496, 80705, 'eighty thousand seven hundred five'); INSERT INTO t2 VALUES(5497, 44345, 'forty-four thousand three hundred forty-five'); INSERT INTO t2 VALUES(5498, 38521, 'thirty-eight thousand five hundred twenty-one'); INSERT INTO t2 VALUES(5499, 72242, 'seventy-two thousand two hundred forty-two'); INSERT INTO t2 VALUES(5500, 3791, 'three thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(5501, 79979, 'seventy-nine thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(5502, 34828, 'thirty-four thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(5503, 59868, 'fifty-nine thousand eight hundred sixty-eight'); INSERT INTO t2 VALUES(5504, 71739, 'seventy-one thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(5505, 15740, 'fifteen thousand seven hundred forty'); INSERT INTO t2 VALUES(5506, 76279, 'seventy-six thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(5507, 31368, 'thirty-one thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(5508, 81182, 'eighty-one thousand one hundred eighty-two'); INSERT INTO t2 VALUES(5509, 84862, 'eighty-four thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(5510, 46421, 'forty-six thousand four hundred twenty-one'); INSERT INTO t2 VALUES(5511, 74788, 'seventy-four thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(5512, 84992, 'eighty-four thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(5513, 88537, 'eighty-eight thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(5514, 2609, 'two thousand six hundred nine'); INSERT INTO t2 VALUES(5515, 34928, 'thirty-four thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(5516, 82221, 'eighty-two thousand two hundred twenty-one'); INSERT INTO t2 VALUES(5517, 52138, 'fifty-two thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(5518, 73310, 'seventy-three thousand three hundred ten'); INSERT INTO t2 VALUES(5519, 89282, 'eighty-nine thousand two hundred eighty-two'); INSERT INTO t2 VALUES(5520, 33292, 'thirty-three thousand two hundred ninety-two'); INSERT INTO t2 VALUES(5521, 88606, 'eighty-eight thousand six hundred six'); INSERT INTO t2 VALUES(5522, 35217, 'thirty-five thousand two hundred seventeen'); INSERT INTO t2 VALUES(5523, 18997, 'eighteen thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(5524, 53975, 'fifty-three thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(5525, 66917, 'sixty-six thousand nine hundred seventeen'); INSERT INTO t2 VALUES(5526, 11438, 'eleven thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(5527, 94326, 'ninety-four thousand three hundred twenty-six'); INSERT INTO t2 VALUES(5528, 62255, 'sixty-two thousand two hundred fifty-five'); INSERT INTO t2 VALUES(5529, 21, 'twenty-one'); INSERT INTO t2 VALUES(5530, 38807, 'thirty-eight thousand eight hundred seven'); INSERT INTO t2 VALUES(5531, 96504, 'ninety-six thousand five hundred four'); INSERT INTO t2 VALUES(5532, 30282, 'thirty thousand two hundred eighty-two'); INSERT INTO t2 VALUES(5533, 38200, 'thirty-eight thousand two hundred'); INSERT INTO t2 VALUES(5534, 75241, 'seventy-five thousand two hundred forty-one'); INSERT INTO t2 VALUES(5535, 12441, 'twelve thousand four hundred forty-one'); INSERT INTO t2 VALUES(5536, 7669, 'seven thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(5537, 54797, 'fifty-four thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(5538, 97746, 'ninety-seven thousand seven hundred forty-six'); INSERT INTO t2 VALUES(5539, 3746, 'three thousand seven hundred forty-six'); INSERT INTO t2 VALUES(5540, 83599, 'eighty-three thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(5541, 85428, 'eighty-five thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(5542, 30066, 'thirty thousand sixty-six'); INSERT INTO t2 VALUES(5543, 17243, 'seventeen thousand two hundred forty-three'); INSERT INTO t2 VALUES(5544, 75160, 'seventy-five thousand one hundred sixty'); INSERT INTO t2 VALUES(5545, 55203, 'fifty-five thousand two hundred three'); INSERT INTO t2 VALUES(5546, 42604, 'forty-two thousand six hundred four'); INSERT INTO t2 VALUES(5547, 47921, 'forty-seven thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(5548, 16561, 'sixteen thousand five hundred sixty-one'); INSERT INTO t2 VALUES(5549, 35959, 'thirty-five thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(5550, 82256, 'eighty-two thousand two hundred fifty-six'); INSERT INTO t2 VALUES(5551, 32316, 'thirty-two thousand three hundred sixteen'); INSERT INTO t2 VALUES(5552, 48684, 'forty-eight thousand six hundred eighty-four'); INSERT INTO t2 VALUES(5553, 94375, 'ninety-four thousand three hundred seventy-five'); INSERT INTO t2 VALUES(5554, 2530, 'two thousand five hundred thirty'); INSERT INTO t2 VALUES(5555, 34569, 'thirty-four thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(5556, 69306, 'sixty-nine thousand three hundred six'); INSERT INTO t2 VALUES(5557, 76109, 'seventy-six thousand one hundred nine'); INSERT INTO t2 VALUES(5558, 34619, 'thirty-four thousand six hundred nineteen'); INSERT INTO t2 VALUES(5559, 55537, 'fifty-five thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(5560, 9274, 'nine thousand two hundred seventy-four'); INSERT INTO t2 VALUES(5561, 80654, 'eighty thousand six hundred fifty-four'); INSERT INTO t2 VALUES(5562, 88660, 'eighty-eight thousand six hundred sixty'); INSERT INTO t2 VALUES(5563, 86713, 'eighty-six thousand seven hundred thirteen'); INSERT INTO t2 VALUES(5564, 26428, 'twenty-six thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(5565, 30644, 'thirty thousand six hundred forty-four'); INSERT INTO t2 VALUES(5566, 79211, 'seventy-nine thousand two hundred eleven'); INSERT INTO t2 VALUES(5567, 2184, 'two thousand one hundred eighty-four'); INSERT INTO t2 VALUES(5568, 13264, 'thirteen thousand two hundred sixty-four'); INSERT INTO t2 VALUES(5569, 21110, 'twenty-one thousand one hundred ten'); INSERT INTO t2 VALUES(5570, 30463, 'thirty thousand four hundred sixty-three'); INSERT INTO t2 VALUES(5571, 43812, 'forty-three thousand eight hundred twelve'); INSERT INTO t2 VALUES(5572, 74889, 'seventy-four thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(5573, 77347, 'seventy-seven thousand three hundred forty-seven'); INSERT INTO t2 VALUES(5574, 75806, 'seventy-five thousand eight hundred six'); INSERT INTO t2 VALUES(5575, 35751, 'thirty-five thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(5576, 98489, 'ninety-eight thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(5577, 20337, 'twenty thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(5578, 59570, 'fifty-nine thousand five hundred seventy'); INSERT INTO t2 VALUES(5579, 67132, 'sixty-seven thousand one hundred thirty-two'); INSERT INTO t2 VALUES(5580, 64587, 'sixty-four thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(5581, 57435, 'fifty-seven thousand four hundred thirty-five'); INSERT INTO t2 VALUES(5582, 52733, 'fifty-two thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(5583, 10025, 'ten thousand twenty-five'); INSERT INTO t2 VALUES(5584, 14289, 'fourteen thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(5585, 25234, 'twenty-five thousand two hundred thirty-four'); INSERT INTO t2 VALUES(5586, 47838, 'forty-seven thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(5587, 6962, 'six thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(5588, 64479, 'sixty-four thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(5589, 92528, 'ninety-two thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(5590, 21696, 'twenty-one thousand six hundred ninety-six'); INSERT INTO t2 VALUES(5591, 48013, 'forty-eight thousand thirteen'); INSERT INTO t2 VALUES(5592, 14313, 'fourteen thousand three hundred thirteen'); INSERT INTO t2 VALUES(5593, 62297, 'sixty-two thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(5594, 19885, 'nineteen thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(5595, 17912, 'seventeen thousand nine hundred twelve'); INSERT INTO t2 VALUES(5596, 72982, 'seventy-two thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(5597, 64728, 'sixty-four thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(5598, 42807, 'forty-two thousand eight hundred seven'); INSERT INTO t2 VALUES(5599, 6279, 'six thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(5600, 83004, 'eighty-three thousand four'); INSERT INTO t2 VALUES(5601, 94580, 'ninety-four thousand five hundred eighty'); INSERT INTO t2 VALUES(5602, 2075, 'two thousand seventy-five'); INSERT INTO t2 VALUES(5603, 86052, 'eighty-six thousand fifty-two'); INSERT INTO t2 VALUES(5604, 88043, 'eighty-eight thousand forty-three'); INSERT INTO t2 VALUES(5605, 61411, 'sixty-one thousand four hundred eleven'); INSERT INTO t2 VALUES(5606, 39811, 'thirty-nine thousand eight hundred eleven'); INSERT INTO t2 VALUES(5607, 1233, 'one thousand two hundred thirty-three'); INSERT INTO t2 VALUES(5608, 51964, 'fifty-one thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(5609, 27144, 'twenty-seven thousand one hundred forty-four'); INSERT INTO t2 VALUES(5610, 84692, 'eighty-four thousand six hundred ninety-two'); INSERT INTO t2 VALUES(5611, 71114, 'seventy-one thousand one hundred fourteen'); INSERT INTO t2 VALUES(5612, 72220, 'seventy-two thousand two hundred twenty'); INSERT INTO t2 VALUES(5613, 8548, 'eight thousand five hundred forty-eight'); INSERT INTO t2 VALUES(5614, 52494, 'fifty-two thousand four hundred ninety-four'); INSERT INTO t2 VALUES(5615, 73369, 'seventy-three thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(5616, 50877, 'fifty thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(5617, 26020, 'twenty-six thousand twenty'); INSERT INTO t2 VALUES(5618, 35550, 'thirty-five thousand five hundred fifty'); INSERT INTO t2 VALUES(5619, 75390, 'seventy-five thousand three hundred ninety'); INSERT INTO t2 VALUES(5620, 89370, 'eighty-nine thousand three hundred seventy'); INSERT INTO t2 VALUES(5621, 51799, 'fifty-one thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(5622, 27167, 'twenty-seven thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(5623, 5311, 'five thousand three hundred eleven'); INSERT INTO t2 VALUES(5624, 82590, 'eighty-two thousand five hundred ninety'); INSERT INTO t2 VALUES(5625, 92976, 'ninety-two thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(5626, 29196, 'twenty-nine thousand one hundred ninety-six'); INSERT INTO t2 VALUES(5627, 90019, 'ninety thousand nineteen'); INSERT INTO t2 VALUES(5628, 62474, 'sixty-two thousand four hundred seventy-four'); INSERT INTO t2 VALUES(5629, 47399, 'forty-seven thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(5630, 37931, 'thirty-seven thousand nine hundred thirty-one'); INSERT INTO t2 VALUES(5631, 28533, 'twenty-eight thousand five hundred thirty-three'); INSERT INTO t2 VALUES(5632, 12769, 'twelve thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(5633, 28849, 'twenty-eight thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(5634, 91354, 'ninety-one thousand three hundred fifty-four'); INSERT INTO t2 VALUES(5635, 91866, 'ninety-one thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(5636, 56549, 'fifty-six thousand five hundred forty-nine'); INSERT INTO t2 VALUES(5637, 5482, 'five thousand four hundred eighty-two'); INSERT INTO t2 VALUES(5638, 40913, 'forty thousand nine hundred thirteen'); INSERT INTO t2 VALUES(5639, 47215, 'forty-seven thousand two hundred fifteen'); INSERT INTO t2 VALUES(5640, 94146, 'ninety-four thousand one hundred forty-six'); INSERT INTO t2 VALUES(5641, 13639, 'thirteen thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(5642, 62598, 'sixty-two thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(5643, 94310, 'ninety-four thousand three hundred ten'); INSERT INTO t2 VALUES(5644, 94628, 'ninety-four thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(5645, 15036, 'fifteen thousand thirty-six'); INSERT INTO t2 VALUES(5646, 42773, 'forty-two thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(5647, 7253, 'seven thousand two hundred fifty-three'); INSERT INTO t2 VALUES(5648, 39697, 'thirty-nine thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(5649, 9149, 'nine thousand one hundred forty-nine'); INSERT INTO t2 VALUES(5650, 76585, 'seventy-six thousand five hundred eighty-five'); INSERT INTO t2 VALUES(5651, 82012, 'eighty-two thousand twelve'); INSERT INTO t2 VALUES(5652, 70626, 'seventy thousand six hundred twenty-six'); INSERT INTO t2 VALUES(5653, 54755, 'fifty-four thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(5654, 61226, 'sixty-one thousand two hundred twenty-six'); INSERT INTO t2 VALUES(5655, 87628, 'eighty-seven thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(5656, 29111, 'twenty-nine thousand one hundred eleven'); INSERT INTO t2 VALUES(5657, 64680, 'sixty-four thousand six hundred eighty'); INSERT INTO t2 VALUES(5658, 51856, 'fifty-one thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(5659, 9707, 'nine thousand seven hundred seven'); INSERT INTO t2 VALUES(5660, 19498, 'nineteen thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(5661, 50049, 'fifty thousand forty-nine'); INSERT INTO t2 VALUES(5662, 49736, 'forty-nine thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(5663, 51997, 'fifty-one thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(5664, 8382, 'eight thousand three hundred eighty-two'); INSERT INTO t2 VALUES(5665, 90227, 'ninety thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(5666, 42003, 'forty-two thousand three'); INSERT INTO t2 VALUES(5667, 19768, 'nineteen thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(5668, 82300, 'eighty-two thousand three hundred'); INSERT INTO t2 VALUES(5669, 88870, 'eighty-eight thousand eight hundred seventy'); INSERT INTO t2 VALUES(5670, 8585, 'eight thousand five hundred eighty-five'); INSERT INTO t2 VALUES(5671, 17982, 'seventeen thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(5672, 10390, 'ten thousand three hundred ninety'); INSERT INTO t2 VALUES(5673, 19909, 'nineteen thousand nine hundred nine'); INSERT INTO t2 VALUES(5674, 13185, 'thirteen thousand one hundred eighty-five'); INSERT INTO t2 VALUES(5675, 83473, 'eighty-three thousand four hundred seventy-three'); INSERT INTO t2 VALUES(5676, 59359, 'fifty-nine thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(5677, 17032, 'seventeen thousand thirty-two'); INSERT INTO t2 VALUES(5678, 41473, 'forty-one thousand four hundred seventy-three'); INSERT INTO t2 VALUES(5679, 23169, 'twenty-three thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(5680, 10812, 'ten thousand eight hundred twelve'); INSERT INTO t2 VALUES(5681, 70626, 'seventy thousand six hundred twenty-six'); INSERT INTO t2 VALUES(5682, 7388, 'seven thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(5683, 47260, 'forty-seven thousand two hundred sixty'); INSERT INTO t2 VALUES(5684, 51023, 'fifty-one thousand twenty-three'); INSERT INTO t2 VALUES(5685, 42904, 'forty-two thousand nine hundred four'); INSERT INTO t2 VALUES(5686, 10625, 'ten thousand six hundred twenty-five'); INSERT INTO t2 VALUES(5687, 36720, 'thirty-six thousand seven hundred twenty'); INSERT INTO t2 VALUES(5688, 87672, 'eighty-seven thousand six hundred seventy-two'); INSERT INTO t2 VALUES(5689, 14110, 'fourteen thousand one hundred ten'); INSERT INTO t2 VALUES(5690, 10534, 'ten thousand five hundred thirty-four'); INSERT INTO t2 VALUES(5691, 73056, 'seventy-three thousand fifty-six'); INSERT INTO t2 VALUES(5692, 58175, 'fifty-eight thousand one hundred seventy-five'); INSERT INTO t2 VALUES(5693, 12859, 'twelve thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(5694, 48898, 'forty-eight thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(5695, 86126, 'eighty-six thousand one hundred twenty-six'); INSERT INTO t2 VALUES(5696, 23356, 'twenty-three thousand three hundred fifty-six'); INSERT INTO t2 VALUES(5697, 51453, 'fifty-one thousand four hundred fifty-three'); INSERT INTO t2 VALUES(5698, 59643, 'fifty-nine thousand six hundred forty-three'); INSERT INTO t2 VALUES(5699, 27465, 'twenty-seven thousand four hundred sixty-five'); INSERT INTO t2 VALUES(5700, 19676, 'nineteen thousand six hundred seventy-six'); INSERT INTO t2 VALUES(5701, 31987, 'thirty-one thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(5702, 27708, 'twenty-seven thousand seven hundred eight'); INSERT INTO t2 VALUES(5703, 10652, 'ten thousand six hundred fifty-two'); INSERT INTO t2 VALUES(5704, 16723, 'sixteen thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(5705, 14371, 'fourteen thousand three hundred seventy-one'); INSERT INTO t2 VALUES(5706, 50190, 'fifty thousand one hundred ninety'); INSERT INTO t2 VALUES(5707, 9026, 'nine thousand twenty-six'); INSERT INTO t2 VALUES(5708, 941, 'nine hundred forty-one'); INSERT INTO t2 VALUES(5709, 41496, 'forty-one thousand four hundred ninety-six'); INSERT INTO t2 VALUES(5710, 52655, 'fifty-two thousand six hundred fifty-five'); INSERT INTO t2 VALUES(5711, 2334, 'two thousand three hundred thirty-four'); INSERT INTO t2 VALUES(5712, 80961, 'eighty thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(5713, 96316, 'ninety-six thousand three hundred sixteen'); INSERT INTO t2 VALUES(5714, 1632, 'one thousand six hundred thirty-two'); INSERT INTO t2 VALUES(5715, 71922, 'seventy-one thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(5716, 1507, 'one thousand five hundred seven'); INSERT INTO t2 VALUES(5717, 22565, 'twenty-two thousand five hundred sixty-five'); INSERT INTO t2 VALUES(5718, 67371, 'sixty-seven thousand three hundred seventy-one'); INSERT INTO t2 VALUES(5719, 84523, 'eighty-four thousand five hundred twenty-three'); INSERT INTO t2 VALUES(5720, 29016, 'twenty-nine thousand sixteen'); INSERT INTO t2 VALUES(5721, 81168, 'eighty-one thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(5722, 49427, 'forty-nine thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(5723, 53836, 'fifty-three thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(5724, 84933, 'eighty-four thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(5725, 63137, 'sixty-three thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(5726, 7373, 'seven thousand three hundred seventy-three'); INSERT INTO t2 VALUES(5727, 79127, 'seventy-nine thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(5728, 39734, 'thirty-nine thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(5729, 10029, 'ten thousand twenty-nine'); INSERT INTO t2 VALUES(5730, 78553, 'seventy-eight thousand five hundred fifty-three'); INSERT INTO t2 VALUES(5731, 70221, 'seventy thousand two hundred twenty-one'); INSERT INTO t2 VALUES(5732, 63243, 'sixty-three thousand two hundred forty-three'); INSERT INTO t2 VALUES(5733, 52157, 'fifty-two thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(5734, 3629, 'three thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(5735, 31609, 'thirty-one thousand six hundred nine'); INSERT INTO t2 VALUES(5736, 69956, 'sixty-nine thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(5737, 97363, 'ninety-seven thousand three hundred sixty-three'); INSERT INTO t2 VALUES(5738, 59052, 'fifty-nine thousand fifty-two'); INSERT INTO t2 VALUES(5739, 46851, 'forty-six thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(5740, 14338, 'fourteen thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(5741, 82874, 'eighty-two thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(5742, 91348, 'ninety-one thousand three hundred forty-eight'); INSERT INTO t2 VALUES(5743, 27262, 'twenty-seven thousand two hundred sixty-two'); INSERT INTO t2 VALUES(5744, 68926, 'sixty-eight thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(5745, 36886, 'thirty-six thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(5746, 97824, 'ninety-seven thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(5747, 85933, 'eighty-five thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(5748, 40448, 'forty thousand four hundred forty-eight'); INSERT INTO t2 VALUES(5749, 846, 'eight hundred forty-six'); INSERT INTO t2 VALUES(5750, 67578, 'sixty-seven thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(5751, 15841, 'fifteen thousand eight hundred forty-one'); INSERT INTO t2 VALUES(5752, 57787, 'fifty-seven thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(5753, 44717, 'forty-four thousand seven hundred seventeen'); INSERT INTO t2 VALUES(5754, 51403, 'fifty-one thousand four hundred three'); INSERT INTO t2 VALUES(5755, 13002, 'thirteen thousand two'); INSERT INTO t2 VALUES(5756, 44434, 'forty-four thousand four hundred thirty-four'); INSERT INTO t2 VALUES(5757, 69179, 'sixty-nine thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(5758, 77078, 'seventy-seven thousand seventy-eight'); INSERT INTO t2 VALUES(5759, 82419, 'eighty-two thousand four hundred nineteen'); INSERT INTO t2 VALUES(5760, 46290, 'forty-six thousand two hundred ninety'); INSERT INTO t2 VALUES(5761, 60816, 'sixty thousand eight hundred sixteen'); INSERT INTO t2 VALUES(5762, 99965, 'ninety-nine thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(5763, 74132, 'seventy-four thousand one hundred thirty-two'); INSERT INTO t2 VALUES(5764, 33057, 'thirty-three thousand fifty-seven'); INSERT INTO t2 VALUES(5765, 45990, 'forty-five thousand nine hundred ninety'); INSERT INTO t2 VALUES(5766, 26984, 'twenty-six thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(5767, 81966, 'eighty-one thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(5768, 45035, 'forty-five thousand thirty-five'); INSERT INTO t2 VALUES(5769, 86738, 'eighty-six thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(5770, 63919, 'sixty-three thousand nine hundred nineteen'); INSERT INTO t2 VALUES(5771, 42917, 'forty-two thousand nine hundred seventeen'); INSERT INTO t2 VALUES(5772, 27805, 'twenty-seven thousand eight hundred five'); INSERT INTO t2 VALUES(5773, 86436, 'eighty-six thousand four hundred thirty-six'); INSERT INTO t2 VALUES(5774, 32285, 'thirty-two thousand two hundred eighty-five'); INSERT INTO t2 VALUES(5775, 36315, 'thirty-six thousand three hundred fifteen'); INSERT INTO t2 VALUES(5776, 90019, 'ninety thousand nineteen'); INSERT INTO t2 VALUES(5777, 98523, 'ninety-eight thousand five hundred twenty-three'); INSERT INTO t2 VALUES(5778, 56126, 'fifty-six thousand one hundred twenty-six'); INSERT INTO t2 VALUES(5779, 78930, 'seventy-eight thousand nine hundred thirty'); INSERT INTO t2 VALUES(5780, 75669, 'seventy-five thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(5781, 4198, 'four thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(5782, 72105, 'seventy-two thousand one hundred five'); INSERT INTO t2 VALUES(5783, 39464, 'thirty-nine thousand four hundred sixty-four'); INSERT INTO t2 VALUES(5784, 28769, 'twenty-eight thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(5785, 7472, 'seven thousand four hundred seventy-two'); INSERT INTO t2 VALUES(5786, 60441, 'sixty thousand four hundred forty-one'); INSERT INTO t2 VALUES(5787, 24585, 'twenty-four thousand five hundred eighty-five'); INSERT INTO t2 VALUES(5788, 31623, 'thirty-one thousand six hundred twenty-three'); INSERT INTO t2 VALUES(5789, 85058, 'eighty-five thousand fifty-eight'); INSERT INTO t2 VALUES(5790, 85102, 'eighty-five thousand one hundred two'); INSERT INTO t2 VALUES(5791, 97914, 'ninety-seven thousand nine hundred fourteen'); INSERT INTO t2 VALUES(5792, 90224, 'ninety thousand two hundred twenty-four'); INSERT INTO t2 VALUES(5793, 79027, 'seventy-nine thousand twenty-seven'); INSERT INTO t2 VALUES(5794, 30402, 'thirty thousand four hundred two'); INSERT INTO t2 VALUES(5795, 11111, 'eleven thousand one hundred eleven'); INSERT INTO t2 VALUES(5796, 99857, 'ninety-nine thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(5797, 48669, 'forty-eight thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(5798, 36480, 'thirty-six thousand four hundred eighty'); INSERT INTO t2 VALUES(5799, 30138, 'thirty thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(5800, 872, 'eight hundred seventy-two'); INSERT INTO t2 VALUES(5801, 89029, 'eighty-nine thousand twenty-nine'); INSERT INTO t2 VALUES(5802, 76871, 'seventy-six thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(5803, 80311, 'eighty thousand three hundred eleven'); INSERT INTO t2 VALUES(5804, 98490, 'ninety-eight thousand four hundred ninety'); INSERT INTO t2 VALUES(5805, 73212, 'seventy-three thousand two hundred twelve'); INSERT INTO t2 VALUES(5806, 64838, 'sixty-four thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(5807, 45609, 'forty-five thousand six hundred nine'); INSERT INTO t2 VALUES(5808, 65790, 'sixty-five thousand seven hundred ninety'); INSERT INTO t2 VALUES(5809, 83912, 'eighty-three thousand nine hundred twelve'); INSERT INTO t2 VALUES(5810, 32688, 'thirty-two thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(5811, 22842, 'twenty-two thousand eight hundred forty-two'); INSERT INTO t2 VALUES(5812, 26301, 'twenty-six thousand three hundred one'); INSERT INTO t2 VALUES(5813, 22177, 'twenty-two thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(5814, 45336, 'forty-five thousand three hundred thirty-six'); INSERT INTO t2 VALUES(5815, 29344, 'twenty-nine thousand three hundred forty-four'); INSERT INTO t2 VALUES(5816, 70758, 'seventy thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(5817, 84901, 'eighty-four thousand nine hundred one'); INSERT INTO t2 VALUES(5818, 5045, 'five thousand forty-five'); INSERT INTO t2 VALUES(5819, 56709, 'fifty-six thousand seven hundred nine'); INSERT INTO t2 VALUES(5820, 99891, 'ninety-nine thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(5821, 31764, 'thirty-one thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(5822, 11183, 'eleven thousand one hundred eighty-three'); INSERT INTO t2 VALUES(5823, 56719, 'fifty-six thousand seven hundred nineteen'); INSERT INTO t2 VALUES(5824, 62526, 'sixty-two thousand five hundred twenty-six'); INSERT INTO t2 VALUES(5825, 54338, 'fifty-four thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(5826, 14141, 'fourteen thousand one hundred forty-one'); INSERT INTO t2 VALUES(5827, 51837, 'fifty-one thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(5828, 94641, 'ninety-four thousand six hundred forty-one'); INSERT INTO t2 VALUES(5829, 87078, 'eighty-seven thousand seventy-eight'); INSERT INTO t2 VALUES(5830, 99739, 'ninety-nine thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(5831, 71819, 'seventy-one thousand eight hundred nineteen'); INSERT INTO t2 VALUES(5832, 74240, 'seventy-four thousand two hundred forty'); INSERT INTO t2 VALUES(5833, 94852, 'ninety-four thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(5834, 33726, 'thirty-three thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(5835, 44672, 'forty-four thousand six hundred seventy-two'); INSERT INTO t2 VALUES(5836, 11904, 'eleven thousand nine hundred four'); INSERT INTO t2 VALUES(5837, 89703, 'eighty-nine thousand seven hundred three'); INSERT INTO t2 VALUES(5838, 16338, 'sixteen thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(5839, 41804, 'forty-one thousand eight hundred four'); INSERT INTO t2 VALUES(5840, 40911, 'forty thousand nine hundred eleven'); INSERT INTO t2 VALUES(5841, 15050, 'fifteen thousand fifty'); INSERT INTO t2 VALUES(5842, 85635, 'eighty-five thousand six hundred thirty-five'); INSERT INTO t2 VALUES(5843, 35557, 'thirty-five thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(5844, 65950, 'sixty-five thousand nine hundred fifty'); INSERT INTO t2 VALUES(5845, 56027, 'fifty-six thousand twenty-seven'); INSERT INTO t2 VALUES(5846, 68922, 'sixty-eight thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(5847, 30224, 'thirty thousand two hundred twenty-four'); INSERT INTO t2 VALUES(5848, 98817, 'ninety-eight thousand eight hundred seventeen'); INSERT INTO t2 VALUES(5849, 19188, 'nineteen thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(5850, 931, 'nine hundred thirty-one'); INSERT INTO t2 VALUES(5851, 12938, 'twelve thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(5852, 23261, 'twenty-three thousand two hundred sixty-one'); INSERT INTO t2 VALUES(5853, 28415, 'twenty-eight thousand four hundred fifteen'); INSERT INTO t2 VALUES(5854, 64072, 'sixty-four thousand seventy-two'); INSERT INTO t2 VALUES(5855, 89865, 'eighty-nine thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(5856, 73778, 'seventy-three thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(5857, 60778, 'sixty thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(5858, 57636, 'fifty-seven thousand six hundred thirty-six'); INSERT INTO t2 VALUES(5859, 42387, 'forty-two thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(5860, 66398, 'sixty-six thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(5861, 69836, 'sixty-nine thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(5862, 37132, 'thirty-seven thousand one hundred thirty-two'); INSERT INTO t2 VALUES(5863, 17041, 'seventeen thousand forty-one'); INSERT INTO t2 VALUES(5864, 77915, 'seventy-seven thousand nine hundred fifteen'); INSERT INTO t2 VALUES(5865, 52053, 'fifty-two thousand fifty-three'); INSERT INTO t2 VALUES(5866, 66430, 'sixty-six thousand four hundred thirty'); INSERT INTO t2 VALUES(5867, 15972, 'fifteen thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(5868, 90493, 'ninety thousand four hundred ninety-three'); INSERT INTO t2 VALUES(5869, 23068, 'twenty-three thousand sixty-eight'); INSERT INTO t2 VALUES(5870, 18255, 'eighteen thousand two hundred fifty-five'); INSERT INTO t2 VALUES(5871, 81621, 'eighty-one thousand six hundred twenty-one'); INSERT INTO t2 VALUES(5872, 31045, 'thirty-one thousand forty-five'); INSERT INTO t2 VALUES(5873, 8164, 'eight thousand one hundred sixty-four'); INSERT INTO t2 VALUES(5874, 41047, 'forty-one thousand forty-seven'); INSERT INTO t2 VALUES(5875, 348, 'three hundred forty-eight'); INSERT INTO t2 VALUES(5876, 34285, 'thirty-four thousand two hundred eighty-five'); INSERT INTO t2 VALUES(5877, 77993, 'seventy-seven thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(5878, 68007, 'sixty-eight thousand seven'); INSERT INTO t2 VALUES(5879, 35477, 'thirty-five thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(5880, 70752, 'seventy thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(5881, 88070, 'eighty-eight thousand seventy'); INSERT INTO t2 VALUES(5882, 24859, 'twenty-four thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(5883, 50863, 'fifty thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(5884, 48723, 'forty-eight thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(5885, 27659, 'twenty-seven thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(5886, 76093, 'seventy-six thousand ninety-three'); INSERT INTO t2 VALUES(5887, 78651, 'seventy-eight thousand six hundred fifty-one'); INSERT INTO t2 VALUES(5888, 2010, 'two thousand ten'); INSERT INTO t2 VALUES(5889, 84802, 'eighty-four thousand eight hundred two'); INSERT INTO t2 VALUES(5890, 72872, 'seventy-two thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(5891, 20255, 'twenty thousand two hundred fifty-five'); INSERT INTO t2 VALUES(5892, 40719, 'forty thousand seven hundred nineteen'); INSERT INTO t2 VALUES(5893, 21383, 'twenty-one thousand three hundred eighty-three'); INSERT INTO t2 VALUES(5894, 32610, 'thirty-two thousand six hundred ten'); INSERT INTO t2 VALUES(5895, 77054, 'seventy-seven thousand fifty-four'); INSERT INTO t2 VALUES(5896, 14270, 'fourteen thousand two hundred seventy'); INSERT INTO t2 VALUES(5897, 4693, 'four thousand six hundred ninety-three'); INSERT INTO t2 VALUES(5898, 14193, 'fourteen thousand one hundred ninety-three'); INSERT INTO t2 VALUES(5899, 51630, 'fifty-one thousand six hundred thirty'); INSERT INTO t2 VALUES(5900, 55445, 'fifty-five thousand four hundred forty-five'); INSERT INTO t2 VALUES(5901, 25083, 'twenty-five thousand eighty-three'); INSERT INTO t2 VALUES(5902, 77234, 'seventy-seven thousand two hundred thirty-four'); INSERT INTO t2 VALUES(5903, 55286, 'fifty-five thousand two hundred eighty-six'); INSERT INTO t2 VALUES(5904, 78967, 'seventy-eight thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(5905, 47180, 'forty-seven thousand one hundred eighty'); INSERT INTO t2 VALUES(5906, 10379, 'ten thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(5907, 25455, 'twenty-five thousand four hundred fifty-five'); INSERT INTO t2 VALUES(5908, 83985, 'eighty-three thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(5909, 94826, 'ninety-four thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(5910, 28744, 'twenty-eight thousand seven hundred forty-four'); INSERT INTO t2 VALUES(5911, 75957, 'seventy-five thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(5912, 67724, 'sixty-seven thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(5913, 29467, 'twenty-nine thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(5914, 66281, 'sixty-six thousand two hundred eighty-one'); INSERT INTO t2 VALUES(5915, 68890, 'sixty-eight thousand eight hundred ninety'); INSERT INTO t2 VALUES(5916, 49025, 'forty-nine thousand twenty-five'); INSERT INTO t2 VALUES(5917, 82293, 'eighty-two thousand two hundred ninety-three'); INSERT INTO t2 VALUES(5918, 39840, 'thirty-nine thousand eight hundred forty'); INSERT INTO t2 VALUES(5919, 66006, 'sixty-six thousand six'); INSERT INTO t2 VALUES(5920, 61281, 'sixty-one thousand two hundred eighty-one'); INSERT INTO t2 VALUES(5921, 84817, 'eighty-four thousand eight hundred seventeen'); INSERT INTO t2 VALUES(5922, 89674, 'eighty-nine thousand six hundred seventy-four'); INSERT INTO t2 VALUES(5923, 69492, 'sixty-nine thousand four hundred ninety-two'); INSERT INTO t2 VALUES(5924, 7219, 'seven thousand two hundred nineteen'); INSERT INTO t2 VALUES(5925, 68104, 'sixty-eight thousand one hundred four'); INSERT INTO t2 VALUES(5926, 34043, 'thirty-four thousand forty-three'); INSERT INTO t2 VALUES(5927, 13408, 'thirteen thousand four hundred eight'); INSERT INTO t2 VALUES(5928, 23392, 'twenty-three thousand three hundred ninety-two'); INSERT INTO t2 VALUES(5929, 67417, 'sixty-seven thousand four hundred seventeen'); INSERT INTO t2 VALUES(5930, 46930, 'forty-six thousand nine hundred thirty'); INSERT INTO t2 VALUES(5931, 20384, 'twenty thousand three hundred eighty-four'); INSERT INTO t2 VALUES(5932, 61278, 'sixty-one thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(5933, 6445, 'six thousand four hundred forty-five'); INSERT INTO t2 VALUES(5934, 56211, 'fifty-six thousand two hundred eleven'); INSERT INTO t2 VALUES(5935, 66186, 'sixty-six thousand one hundred eighty-six'); INSERT INTO t2 VALUES(5936, 31908, 'thirty-one thousand nine hundred eight'); INSERT INTO t2 VALUES(5937, 95878, 'ninety-five thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(5938, 72616, 'seventy-two thousand six hundred sixteen'); INSERT INTO t2 VALUES(5939, 96212, 'ninety-six thousand two hundred twelve'); INSERT INTO t2 VALUES(5940, 28866, 'twenty-eight thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(5941, 26146, 'twenty-six thousand one hundred forty-six'); INSERT INTO t2 VALUES(5942, 95562, 'ninety-five thousand five hundred sixty-two'); INSERT INTO t2 VALUES(5943, 11929, 'eleven thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(5944, 59658, 'fifty-nine thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(5945, 83779, 'eighty-three thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(5946, 16381, 'sixteen thousand three hundred eighty-one'); INSERT INTO t2 VALUES(5947, 29106, 'twenty-nine thousand one hundred six'); INSERT INTO t2 VALUES(5948, 65974, 'sixty-five thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(5949, 99460, 'ninety-nine thousand four hundred sixty'); INSERT INTO t2 VALUES(5950, 15546, 'fifteen thousand five hundred forty-six'); INSERT INTO t2 VALUES(5951, 41211, 'forty-one thousand two hundred eleven'); INSERT INTO t2 VALUES(5952, 74537, 'seventy-four thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(5953, 63166, 'sixty-three thousand one hundred sixty-six'); INSERT INTO t2 VALUES(5954, 82473, 'eighty-two thousand four hundred seventy-three'); INSERT INTO t2 VALUES(5955, 48878, 'forty-eight thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(5956, 45189, 'forty-five thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(5957, 77752, 'seventy-seven thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(5958, 87932, 'eighty-seven thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(5959, 86277, 'eighty-six thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(5960, 20980, 'twenty thousand nine hundred eighty'); INSERT INTO t2 VALUES(5961, 37265, 'thirty-seven thousand two hundred sixty-five'); INSERT INTO t2 VALUES(5962, 81942, 'eighty-one thousand nine hundred forty-two'); INSERT INTO t2 VALUES(5963, 4031, 'four thousand thirty-one'); INSERT INTO t2 VALUES(5964, 86426, 'eighty-six thousand four hundred twenty-six'); INSERT INTO t2 VALUES(5965, 80515, 'eighty thousand five hundred fifteen'); INSERT INTO t2 VALUES(5966, 73665, 'seventy-three thousand six hundred sixty-five'); INSERT INTO t2 VALUES(5967, 85035, 'eighty-five thousand thirty-five'); INSERT INTO t2 VALUES(5968, 26935, 'twenty-six thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(5969, 9950, 'nine thousand nine hundred fifty'); INSERT INTO t2 VALUES(5970, 42306, 'forty-two thousand three hundred six'); INSERT INTO t2 VALUES(5971, 45431, 'forty-five thousand four hundred thirty-one'); INSERT INTO t2 VALUES(5972, 79241, 'seventy-nine thousand two hundred forty-one'); INSERT INTO t2 VALUES(5973, 87674, 'eighty-seven thousand six hundred seventy-four'); INSERT INTO t2 VALUES(5974, 70856, 'seventy thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(5975, 56129, 'fifty-six thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(5976, 85673, 'eighty-five thousand six hundred seventy-three'); INSERT INTO t2 VALUES(5977, 91795, 'ninety-one thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(5978, 67317, 'sixty-seven thousand three hundred seventeen'); INSERT INTO t2 VALUES(5979, 22747, 'twenty-two thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(5980, 96091, 'ninety-six thousand ninety-one'); INSERT INTO t2 VALUES(5981, 61118, 'sixty-one thousand one hundred eighteen'); INSERT INTO t2 VALUES(5982, 84339, 'eighty-four thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(5983, 99440, 'ninety-nine thousand four hundred forty'); INSERT INTO t2 VALUES(5984, 98795, 'ninety-eight thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(5985, 62418, 'sixty-two thousand four hundred eighteen'); INSERT INTO t2 VALUES(5986, 99509, 'ninety-nine thousand five hundred nine'); INSERT INTO t2 VALUES(5987, 23436, 'twenty-three thousand four hundred thirty-six'); INSERT INTO t2 VALUES(5988, 27488, 'twenty-seven thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(5989, 96075, 'ninety-six thousand seventy-five'); INSERT INTO t2 VALUES(5990, 28324, 'twenty-eight thousand three hundred twenty-four'); INSERT INTO t2 VALUES(5991, 28772, 'twenty-eight thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(5992, 20689, 'twenty thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(5993, 81518, 'eighty-one thousand five hundred eighteen'); INSERT INTO t2 VALUES(5994, 34810, 'thirty-four thousand eight hundred ten'); INSERT INTO t2 VALUES(5995, 39866, 'thirty-nine thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(5996, 68643, 'sixty-eight thousand six hundred forty-three'); INSERT INTO t2 VALUES(5997, 99629, 'ninety-nine thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(5998, 43539, 'forty-three thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(5999, 14163, 'fourteen thousand one hundred sixty-three'); INSERT INTO t2 VALUES(6000, 24293, 'twenty-four thousand two hundred ninety-three'); INSERT INTO t2 VALUES(6001, 9911, 'nine thousand nine hundred eleven'); INSERT INTO t2 VALUES(6002, 32820, 'thirty-two thousand eight hundred twenty'); INSERT INTO t2 VALUES(6003, 33855, 'thirty-three thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(6004, 32863, 'thirty-two thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(6005, 10257, 'ten thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(6006, 17293, 'seventeen thousand two hundred ninety-three'); INSERT INTO t2 VALUES(6007, 25948, 'twenty-five thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(6008, 76148, 'seventy-six thousand one hundred forty-eight'); INSERT INTO t2 VALUES(6009, 80989, 'eighty thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(6010, 13138, 'thirteen thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(6011, 18117, 'eighteen thousand one hundred seventeen'); INSERT INTO t2 VALUES(6012, 37625, 'thirty-seven thousand six hundred twenty-five'); INSERT INTO t2 VALUES(6013, 11651, 'eleven thousand six hundred fifty-one'); INSERT INTO t2 VALUES(6014, 4414, 'four thousand four hundred fourteen'); INSERT INTO t2 VALUES(6015, 96168, 'ninety-six thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(6016, 30176, 'thirty thousand one hundred seventy-six'); INSERT INTO t2 VALUES(6017, 16592, 'sixteen thousand five hundred ninety-two'); INSERT INTO t2 VALUES(6018, 19934, 'nineteen thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(6019, 61088, 'sixty-one thousand eighty-eight'); INSERT INTO t2 VALUES(6020, 41073, 'forty-one thousand seventy-three'); INSERT INTO t2 VALUES(6021, 10321, 'ten thousand three hundred twenty-one'); INSERT INTO t2 VALUES(6022, 42882, 'forty-two thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(6023, 38439, 'thirty-eight thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(6024, 67141, 'sixty-seven thousand one hundred forty-one'); INSERT INTO t2 VALUES(6025, 29710, 'twenty-nine thousand seven hundred ten'); INSERT INTO t2 VALUES(6026, 7026, 'seven thousand twenty-six'); INSERT INTO t2 VALUES(6027, 64730, 'sixty-four thousand seven hundred thirty'); INSERT INTO t2 VALUES(6028, 982, 'nine hundred eighty-two'); INSERT INTO t2 VALUES(6029, 54154, 'fifty-four thousand one hundred fifty-four'); INSERT INTO t2 VALUES(6030, 79999, 'seventy-nine thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(6031, 20139, 'twenty thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(6032, 20049, 'twenty thousand forty-nine'); INSERT INTO t2 VALUES(6033, 61382, 'sixty-one thousand three hundred eighty-two'); INSERT INTO t2 VALUES(6034, 27733, 'twenty-seven thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(6035, 30448, 'thirty thousand four hundred forty-eight'); INSERT INTO t2 VALUES(6036, 85772, 'eighty-five thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(6037, 84090, 'eighty-four thousand ninety'); INSERT INTO t2 VALUES(6038, 64591, 'sixty-four thousand five hundred ninety-one'); INSERT INTO t2 VALUES(6039, 95903, 'ninety-five thousand nine hundred three'); INSERT INTO t2 VALUES(6040, 31880, 'thirty-one thousand eight hundred eighty'); INSERT INTO t2 VALUES(6041, 81271, 'eighty-one thousand two hundred seventy-one'); INSERT INTO t2 VALUES(6042, 38059, 'thirty-eight thousand fifty-nine'); INSERT INTO t2 VALUES(6043, 31397, 'thirty-one thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(6044, 32793, 'thirty-two thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(6045, 72215, 'seventy-two thousand two hundred fifteen'); INSERT INTO t2 VALUES(6046, 79398, 'seventy-nine thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(6047, 53081, 'fifty-three thousand eighty-one'); INSERT INTO t2 VALUES(6048, 43060, 'forty-three thousand sixty'); INSERT INTO t2 VALUES(6049, 71821, 'seventy-one thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(6050, 70482, 'seventy thousand four hundred eighty-two'); INSERT INTO t2 VALUES(6051, 84735, 'eighty-four thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(6052, 98167, 'ninety-eight thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(6053, 5447, 'five thousand four hundred forty-seven'); INSERT INTO t2 VALUES(6054, 18422, 'eighteen thousand four hundred twenty-two'); INSERT INTO t2 VALUES(6055, 806, 'eight hundred six'); INSERT INTO t2 VALUES(6056, 65999, 'sixty-five thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(6057, 71788, 'seventy-one thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(6058, 45743, 'forty-five thousand seven hundred forty-three'); INSERT INTO t2 VALUES(6059, 26377, 'twenty-six thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(6060, 34155, 'thirty-four thousand one hundred fifty-five'); INSERT INTO t2 VALUES(6061, 11997, 'eleven thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(6062, 88909, 'eighty-eight thousand nine hundred nine'); INSERT INTO t2 VALUES(6063, 39965, 'thirty-nine thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(6064, 39701, 'thirty-nine thousand seven hundred one'); INSERT INTO t2 VALUES(6065, 7664, 'seven thousand six hundred sixty-four'); INSERT INTO t2 VALUES(6066, 11472, 'eleven thousand four hundred seventy-two'); INSERT INTO t2 VALUES(6067, 17373, 'seventeen thousand three hundred seventy-three'); INSERT INTO t2 VALUES(6068, 91597, 'ninety-one thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(6069, 43682, 'forty-three thousand six hundred eighty-two'); INSERT INTO t2 VALUES(6070, 40818, 'forty thousand eight hundred eighteen'); INSERT INTO t2 VALUES(6071, 8498, 'eight thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(6072, 6551, 'six thousand five hundred fifty-one'); INSERT INTO t2 VALUES(6073, 99301, 'ninety-nine thousand three hundred one'); INSERT INTO t2 VALUES(6074, 75171, 'seventy-five thousand one hundred seventy-one'); INSERT INTO t2 VALUES(6075, 58286, 'fifty-eight thousand two hundred eighty-six'); INSERT INTO t2 VALUES(6076, 33634, 'thirty-three thousand six hundred thirty-four'); INSERT INTO t2 VALUES(6077, 50119, 'fifty thousand one hundred nineteen'); INSERT INTO t2 VALUES(6078, 20595, 'twenty thousand five hundred ninety-five'); INSERT INTO t2 VALUES(6079, 91569, 'ninety-one thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(6080, 30325, 'thirty thousand three hundred twenty-five'); INSERT INTO t2 VALUES(6081, 14633, 'fourteen thousand six hundred thirty-three'); INSERT INTO t2 VALUES(6082, 95828, 'ninety-five thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(6083, 12233, 'twelve thousand two hundred thirty-three'); INSERT INTO t2 VALUES(6084, 56433, 'fifty-six thousand four hundred thirty-three'); INSERT INTO t2 VALUES(6085, 94134, 'ninety-four thousand one hundred thirty-four'); INSERT INTO t2 VALUES(6086, 63406, 'sixty-three thousand four hundred six'); INSERT INTO t2 VALUES(6087, 9358, 'nine thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(6088, 88736, 'eighty-eight thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(6089, 37829, 'thirty-seven thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(6090, 58055, 'fifty-eight thousand fifty-five'); INSERT INTO t2 VALUES(6091, 19211, 'nineteen thousand two hundred eleven'); INSERT INTO t2 VALUES(6092, 9621, 'nine thousand six hundred twenty-one'); INSERT INTO t2 VALUES(6093, 43331, 'forty-three thousand three hundred thirty-one'); INSERT INTO t2 VALUES(6094, 3025, 'three thousand twenty-five'); INSERT INTO t2 VALUES(6095, 65156, 'sixty-five thousand one hundred fifty-six'); INSERT INTO t2 VALUES(6096, 89529, 'eighty-nine thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(6097, 44712, 'forty-four thousand seven hundred twelve'); INSERT INTO t2 VALUES(6098, 60314, 'sixty thousand three hundred fourteen'); INSERT INTO t2 VALUES(6099, 98299, 'ninety-eight thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(6100, 84243, 'eighty-four thousand two hundred forty-three'); INSERT INTO t2 VALUES(6101, 74533, 'seventy-four thousand five hundred thirty-three'); INSERT INTO t2 VALUES(6102, 10785, 'ten thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(6103, 74129, 'seventy-four thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(6104, 8076, 'eight thousand seventy-six'); INSERT INTO t2 VALUES(6105, 16801, 'sixteen thousand eight hundred one'); INSERT INTO t2 VALUES(6106, 11420, 'eleven thousand four hundred twenty'); INSERT INTO t2 VALUES(6107, 62746, 'sixty-two thousand seven hundred forty-six'); INSERT INTO t2 VALUES(6108, 47304, 'forty-seven thousand three hundred four'); INSERT INTO t2 VALUES(6109, 11714, 'eleven thousand seven hundred fourteen'); INSERT INTO t2 VALUES(6110, 97748, 'ninety-seven thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(6111, 82057, 'eighty-two thousand fifty-seven'); INSERT INTO t2 VALUES(6112, 44645, 'forty-four thousand six hundred forty-five'); INSERT INTO t2 VALUES(6113, 49904, 'forty-nine thousand nine hundred four'); INSERT INTO t2 VALUES(6114, 17530, 'seventeen thousand five hundred thirty'); INSERT INTO t2 VALUES(6115, 12746, 'twelve thousand seven hundred forty-six'); INSERT INTO t2 VALUES(6116, 27698, 'twenty-seven thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(6117, 1333, 'one thousand three hundred thirty-three'); INSERT INTO t2 VALUES(6118, 93574, 'ninety-three thousand five hundred seventy-four'); INSERT INTO t2 VALUES(6119, 81450, 'eighty-one thousand four hundred fifty'); INSERT INTO t2 VALUES(6120, 75877, 'seventy-five thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(6121, 60516, 'sixty thousand five hundred sixteen'); INSERT INTO t2 VALUES(6122, 30442, 'thirty thousand four hundred forty-two'); INSERT INTO t2 VALUES(6123, 27029, 'twenty-seven thousand twenty-nine'); INSERT INTO t2 VALUES(6124, 12630, 'twelve thousand six hundred thirty'); INSERT INTO t2 VALUES(6125, 3017, 'three thousand seventeen'); INSERT INTO t2 VALUES(6126, 12658, 'twelve thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(6127, 96183, 'ninety-six thousand one hundred eighty-three'); INSERT INTO t2 VALUES(6128, 99065, 'ninety-nine thousand sixty-five'); INSERT INTO t2 VALUES(6129, 66995, 'sixty-six thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(6130, 5298, 'five thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(6131, 64425, 'sixty-four thousand four hundred twenty-five'); INSERT INTO t2 VALUES(6132, 844, 'eight hundred forty-four'); INSERT INTO t2 VALUES(6133, 21930, 'twenty-one thousand nine hundred thirty'); INSERT INTO t2 VALUES(6134, 23684, 'twenty-three thousand six hundred eighty-four'); INSERT INTO t2 VALUES(6135, 35982, 'thirty-five thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(6136, 11008, 'eleven thousand eight'); INSERT INTO t2 VALUES(6137, 19763, 'nineteen thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(6138, 60512, 'sixty thousand five hundred twelve'); INSERT INTO t2 VALUES(6139, 21885, 'twenty-one thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(6140, 83640, 'eighty-three thousand six hundred forty'); INSERT INTO t2 VALUES(6141, 94539, 'ninety-four thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(6142, 52823, 'fifty-two thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(6143, 6389, 'six thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(6144, 19177, 'nineteen thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(6145, 89475, 'eighty-nine thousand four hundred seventy-five'); INSERT INTO t2 VALUES(6146, 20380, 'twenty thousand three hundred eighty'); INSERT INTO t2 VALUES(6147, 87303, 'eighty-seven thousand three hundred three'); INSERT INTO t2 VALUES(6148, 52516, 'fifty-two thousand five hundred sixteen'); INSERT INTO t2 VALUES(6149, 14393, 'fourteen thousand three hundred ninety-three'); INSERT INTO t2 VALUES(6150, 68834, 'sixty-eight thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(6151, 85944, 'eighty-five thousand nine hundred forty-four'); INSERT INTO t2 VALUES(6152, 78341, 'seventy-eight thousand three hundred forty-one'); INSERT INTO t2 VALUES(6153, 82521, 'eighty-two thousand five hundred twenty-one'); INSERT INTO t2 VALUES(6154, 48666, 'forty-eight thousand six hundred sixty-six'); INSERT INTO t2 VALUES(6155, 57268, 'fifty-seven thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(6156, 29428, 'twenty-nine thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(6157, 91941, 'ninety-one thousand nine hundred forty-one'); INSERT INTO t2 VALUES(6158, 55696, 'fifty-five thousand six hundred ninety-six'); INSERT INTO t2 VALUES(6159, 10591, 'ten thousand five hundred ninety-one'); INSERT INTO t2 VALUES(6160, 73189, 'seventy-three thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(6161, 5545, 'five thousand five hundred forty-five'); INSERT INTO t2 VALUES(6162, 71766, 'seventy-one thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(6163, 60261, 'sixty thousand two hundred sixty-one'); INSERT INTO t2 VALUES(6164, 6771, 'six thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(6165, 61833, 'sixty-one thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(6166, 42807, 'forty-two thousand eight hundred seven'); INSERT INTO t2 VALUES(6167, 12021, 'twelve thousand twenty-one'); INSERT INTO t2 VALUES(6168, 47884, 'forty-seven thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(6169, 24662, 'twenty-four thousand six hundred sixty-two'); INSERT INTO t2 VALUES(6170, 98069, 'ninety-eight thousand sixty-nine'); INSERT INTO t2 VALUES(6171, 2270, 'two thousand two hundred seventy'); INSERT INTO t2 VALUES(6172, 26039, 'twenty-six thousand thirty-nine'); INSERT INTO t2 VALUES(6173, 65640, 'sixty-five thousand six hundred forty'); INSERT INTO t2 VALUES(6174, 46988, 'forty-six thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(6175, 88153, 'eighty-eight thousand one hundred fifty-three'); INSERT INTO t2 VALUES(6176, 89564, 'eighty-nine thousand five hundred sixty-four'); INSERT INTO t2 VALUES(6177, 25319, 'twenty-five thousand three hundred nineteen'); INSERT INTO t2 VALUES(6178, 12171, 'twelve thousand one hundred seventy-one'); INSERT INTO t2 VALUES(6179, 27465, 'twenty-seven thousand four hundred sixty-five'); INSERT INTO t2 VALUES(6180, 36456, 'thirty-six thousand four hundred fifty-six'); INSERT INTO t2 VALUES(6181, 70611, 'seventy thousand six hundred eleven'); INSERT INTO t2 VALUES(6182, 43880, 'forty-three thousand eight hundred eighty'); INSERT INTO t2 VALUES(6183, 62758, 'sixty-two thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(6184, 38437, 'thirty-eight thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(6185, 43518, 'forty-three thousand five hundred eighteen'); INSERT INTO t2 VALUES(6186, 44228, 'forty-four thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(6187, 17698, 'seventeen thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(6188, 77514, 'seventy-seven thousand five hundred fourteen'); INSERT INTO t2 VALUES(6189, 32407, 'thirty-two thousand four hundred seven'); INSERT INTO t2 VALUES(6190, 19508, 'nineteen thousand five hundred eight'); INSERT INTO t2 VALUES(6191, 25144, 'twenty-five thousand one hundred forty-four'); INSERT INTO t2 VALUES(6192, 40712, 'forty thousand seven hundred twelve'); INSERT INTO t2 VALUES(6193, 80425, 'eighty thousand four hundred twenty-five'); INSERT INTO t2 VALUES(6194, 11179, 'eleven thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(6195, 27124, 'twenty-seven thousand one hundred twenty-four'); INSERT INTO t2 VALUES(6196, 15279, 'fifteen thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(6197, 42399, 'forty-two thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(6198, 726, 'seven hundred twenty-six'); INSERT INTO t2 VALUES(6199, 80053, 'eighty thousand fifty-three'); INSERT INTO t2 VALUES(6200, 37164, 'thirty-seven thousand one hundred sixty-four'); INSERT INTO t2 VALUES(6201, 1416, 'one thousand four hundred sixteen'); INSERT INTO t2 VALUES(6202, 86978, 'eighty-six thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(6203, 74014, 'seventy-four thousand fourteen'); INSERT INTO t2 VALUES(6204, 88463, 'eighty-eight thousand four hundred sixty-three'); INSERT INTO t2 VALUES(6205, 45408, 'forty-five thousand four hundred eight'); INSERT INTO t2 VALUES(6206, 92533, 'ninety-two thousand five hundred thirty-three'); INSERT INTO t2 VALUES(6207, 83478, 'eighty-three thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(6208, 53937, 'fifty-three thousand nine hundred thirty-seven'); INSERT INTO t2 VALUES(6209, 79527, 'seventy-nine thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(6210, 70018, 'seventy thousand eighteen'); INSERT INTO t2 VALUES(6211, 55734, 'fifty-five thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(6212, 45979, 'forty-five thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(6213, 35933, 'thirty-five thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(6214, 32057, 'thirty-two thousand fifty-seven'); INSERT INTO t2 VALUES(6215, 81084, 'eighty-one thousand eighty-four'); INSERT INTO t2 VALUES(6216, 48355, 'forty-eight thousand three hundred fifty-five'); INSERT INTO t2 VALUES(6217, 95606, 'ninety-five thousand six hundred six'); INSERT INTO t2 VALUES(6218, 81945, 'eighty-one thousand nine hundred forty-five'); INSERT INTO t2 VALUES(6219, 84258, 'eighty-four thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(6220, 40989, 'forty thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(6221, 54235, 'fifty-four thousand two hundred thirty-five'); INSERT INTO t2 VALUES(6222, 28354, 'twenty-eight thousand three hundred fifty-four'); INSERT INTO t2 VALUES(6223, 23029, 'twenty-three thousand twenty-nine'); INSERT INTO t2 VALUES(6224, 28527, 'twenty-eight thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(6225, 54782, 'fifty-four thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(6226, 63834, 'sixty-three thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(6227, 31714, 'thirty-one thousand seven hundred fourteen'); INSERT INTO t2 VALUES(6228, 1076, 'one thousand seventy-six'); INSERT INTO t2 VALUES(6229, 72732, 'seventy-two thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(6230, 98839, 'ninety-eight thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(6231, 87124, 'eighty-seven thousand one hundred twenty-four'); INSERT INTO t2 VALUES(6232, 66213, 'sixty-six thousand two hundred thirteen'); INSERT INTO t2 VALUES(6233, 23091, 'twenty-three thousand ninety-one'); INSERT INTO t2 VALUES(6234, 43627, 'forty-three thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(6235, 76741, 'seventy-six thousand seven hundred forty-one'); INSERT INTO t2 VALUES(6236, 86983, 'eighty-six thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(6237, 66646, 'sixty-six thousand six hundred forty-six'); INSERT INTO t2 VALUES(6238, 4490, 'four thousand four hundred ninety'); INSERT INTO t2 VALUES(6239, 72257, 'seventy-two thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(6240, 89622, 'eighty-nine thousand six hundred twenty-two'); INSERT INTO t2 VALUES(6241, 13763, 'thirteen thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(6242, 65227, 'sixty-five thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(6243, 25420, 'twenty-five thousand four hundred twenty'); INSERT INTO t2 VALUES(6244, 32765, 'thirty-two thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(6245, 87872, 'eighty-seven thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(6246, 33704, 'thirty-three thousand seven hundred four'); INSERT INTO t2 VALUES(6247, 92939, 'ninety-two thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(6248, 5830, 'five thousand eight hundred thirty'); INSERT INTO t2 VALUES(6249, 12851, 'twelve thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(6250, 42166, 'forty-two thousand one hundred sixty-six'); INSERT INTO t2 VALUES(6251, 55694, 'fifty-five thousand six hundred ninety-four'); INSERT INTO t2 VALUES(6252, 14530, 'fourteen thousand five hundred thirty'); INSERT INTO t2 VALUES(6253, 56005, 'fifty-six thousand five'); INSERT INTO t2 VALUES(6254, 76667, 'seventy-six thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(6255, 47309, 'forty-seven thousand three hundred nine'); INSERT INTO t2 VALUES(6256, 60041, 'sixty thousand forty-one'); INSERT INTO t2 VALUES(6257, 98988, 'ninety-eight thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(6258, 87103, 'eighty-seven thousand one hundred three'); INSERT INTO t2 VALUES(6259, 43646, 'forty-three thousand six hundred forty-six'); INSERT INTO t2 VALUES(6260, 58177, 'fifty-eight thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(6261, 10901, 'ten thousand nine hundred one'); INSERT INTO t2 VALUES(6262, 97988, 'ninety-seven thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(6263, 15056, 'fifteen thousand fifty-six'); INSERT INTO t2 VALUES(6264, 57504, 'fifty-seven thousand five hundred four'); INSERT INTO t2 VALUES(6265, 49228, 'forty-nine thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(6266, 13081, 'thirteen thousand eighty-one'); INSERT INTO t2 VALUES(6267, 42925, 'forty-two thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(6268, 89450, 'eighty-nine thousand four hundred fifty'); INSERT INTO t2 VALUES(6269, 28088, 'twenty-eight thousand eighty-eight'); INSERT INTO t2 VALUES(6270, 13883, 'thirteen thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(6271, 62491, 'sixty-two thousand four hundred ninety-one'); INSERT INTO t2 VALUES(6272, 54510, 'fifty-four thousand five hundred ten'); INSERT INTO t2 VALUES(6273, 25477, 'twenty-five thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(6274, 36892, 'thirty-six thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(6275, 44686, 'forty-four thousand six hundred eighty-six'); INSERT INTO t2 VALUES(6276, 623, 'six hundred twenty-three'); INSERT INTO t2 VALUES(6277, 74026, 'seventy-four thousand twenty-six'); INSERT INTO t2 VALUES(6278, 6620, 'six thousand six hundred twenty'); INSERT INTO t2 VALUES(6279, 97614, 'ninety-seven thousand six hundred fourteen'); INSERT INTO t2 VALUES(6280, 87690, 'eighty-seven thousand six hundred ninety'); INSERT INTO t2 VALUES(6281, 37529, 'thirty-seven thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(6282, 61052, 'sixty-one thousand fifty-two'); INSERT INTO t2 VALUES(6283, 33322, 'thirty-three thousand three hundred twenty-two'); INSERT INTO t2 VALUES(6284, 14694, 'fourteen thousand six hundred ninety-four'); INSERT INTO t2 VALUES(6285, 68015, 'sixty-eight thousand fifteen'); INSERT INTO t2 VALUES(6286, 247, 'two hundred forty-seven'); INSERT INTO t2 VALUES(6287, 33736, 'thirty-three thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(6288, 86318, 'eighty-six thousand three hundred eighteen'); INSERT INTO t2 VALUES(6289, 67992, 'sixty-seven thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(6290, 2689, 'two thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(6291, 73700, 'seventy-three thousand seven hundred'); INSERT INTO t2 VALUES(6292, 50034, 'fifty thousand thirty-four'); INSERT INTO t2 VALUES(6293, 26225, 'twenty-six thousand two hundred twenty-five'); INSERT INTO t2 VALUES(6294, 3238, 'three thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(6295, 82917, 'eighty-two thousand nine hundred seventeen'); INSERT INTO t2 VALUES(6296, 88035, 'eighty-eight thousand thirty-five'); INSERT INTO t2 VALUES(6297, 31791, 'thirty-one thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(6298, 90092, 'ninety thousand ninety-two'); INSERT INTO t2 VALUES(6299, 80174, 'eighty thousand one hundred seventy-four'); INSERT INTO t2 VALUES(6300, 4836, 'four thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(6301, 53563, 'fifty-three thousand five hundred sixty-three'); INSERT INTO t2 VALUES(6302, 39432, 'thirty-nine thousand four hundred thirty-two'); INSERT INTO t2 VALUES(6303, 29551, 'twenty-nine thousand five hundred fifty-one'); INSERT INTO t2 VALUES(6304, 75845, 'seventy-five thousand eight hundred forty-five'); INSERT INTO t2 VALUES(6305, 38821, 'thirty-eight thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(6306, 56215, 'fifty-six thousand two hundred fifteen'); INSERT INTO t2 VALUES(6307, 59089, 'fifty-nine thousand eighty-nine'); INSERT INTO t2 VALUES(6308, 96917, 'ninety-six thousand nine hundred seventeen'); INSERT INTO t2 VALUES(6309, 28136, 'twenty-eight thousand one hundred thirty-six'); INSERT INTO t2 VALUES(6310, 62247, 'sixty-two thousand two hundred forty-seven'); INSERT INTO t2 VALUES(6311, 92031, 'ninety-two thousand thirty-one'); INSERT INTO t2 VALUES(6312, 22252, 'twenty-two thousand two hundred fifty-two'); INSERT INTO t2 VALUES(6313, 14414, 'fourteen thousand four hundred fourteen'); INSERT INTO t2 VALUES(6314, 88576, 'eighty-eight thousand five hundred seventy-six'); INSERT INTO t2 VALUES(6315, 42941, 'forty-two thousand nine hundred forty-one'); INSERT INTO t2 VALUES(6316, 80753, 'eighty thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(6317, 63991, 'sixty-three thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(6318, 81264, 'eighty-one thousand two hundred sixty-four'); INSERT INTO t2 VALUES(6319, 21916, 'twenty-one thousand nine hundred sixteen'); INSERT INTO t2 VALUES(6320, 78785, 'seventy-eight thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(6321, 9211, 'nine thousand two hundred eleven'); INSERT INTO t2 VALUES(6322, 60477, 'sixty thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(6323, 11677, 'eleven thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(6324, 99402, 'ninety-nine thousand four hundred two'); INSERT INTO t2 VALUES(6325, 45164, 'forty-five thousand one hundred sixty-four'); INSERT INTO t2 VALUES(6326, 2457, 'two thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(6327, 4987, 'four thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(6328, 99422, 'ninety-nine thousand four hundred twenty-two'); INSERT INTO t2 VALUES(6329, 84484, 'eighty-four thousand four hundred eighty-four'); INSERT INTO t2 VALUES(6330, 96512, 'ninety-six thousand five hundred twelve'); INSERT INTO t2 VALUES(6331, 74147, 'seventy-four thousand one hundred forty-seven'); INSERT INTO t2 VALUES(6332, 46153, 'forty-six thousand one hundred fifty-three'); INSERT INTO t2 VALUES(6333, 48853, 'forty-eight thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(6334, 65540, 'sixty-five thousand five hundred forty'); INSERT INTO t2 VALUES(6335, 28107, 'twenty-eight thousand one hundred seven'); INSERT INTO t2 VALUES(6336, 29441, 'twenty-nine thousand four hundred forty-one'); INSERT INTO t2 VALUES(6337, 53313, 'fifty-three thousand three hundred thirteen'); INSERT INTO t2 VALUES(6338, 79738, 'seventy-nine thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(6339, 69030, 'sixty-nine thousand thirty'); INSERT INTO t2 VALUES(6340, 95058, 'ninety-five thousand fifty-eight'); INSERT INTO t2 VALUES(6341, 40977, 'forty thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(6342, 93352, 'ninety-three thousand three hundred fifty-two'); INSERT INTO t2 VALUES(6343, 59833, 'fifty-nine thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(6344, 45957, 'forty-five thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(6345, 96727, 'ninety-six thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(6346, 34117, 'thirty-four thousand one hundred seventeen'); INSERT INTO t2 VALUES(6347, 99900, 'ninety-nine thousand nine hundred'); INSERT INTO t2 VALUES(6348, 22656, 'twenty-two thousand six hundred fifty-six'); INSERT INTO t2 VALUES(6349, 36404, 'thirty-six thousand four hundred four'); INSERT INTO t2 VALUES(6350, 80787, 'eighty thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(6351, 96035, 'ninety-six thousand thirty-five'); INSERT INTO t2 VALUES(6352, 697, 'six hundred ninety-seven'); INSERT INTO t2 VALUES(6353, 7210, 'seven thousand two hundred ten'); INSERT INTO t2 VALUES(6354, 14584, 'fourteen thousand five hundred eighty-four'); INSERT INTO t2 VALUES(6355, 15248, 'fifteen thousand two hundred forty-eight'); INSERT INTO t2 VALUES(6356, 159, 'one hundred fifty-nine'); INSERT INTO t2 VALUES(6357, 39531, 'thirty-nine thousand five hundred thirty-one'); INSERT INTO t2 VALUES(6358, 29322, 'twenty-nine thousand three hundred twenty-two'); INSERT INTO t2 VALUES(6359, 52603, 'fifty-two thousand six hundred three'); INSERT INTO t2 VALUES(6360, 16485, 'sixteen thousand four hundred eighty-five'); INSERT INTO t2 VALUES(6361, 51069, 'fifty-one thousand sixty-nine'); INSERT INTO t2 VALUES(6362, 86442, 'eighty-six thousand four hundred forty-two'); INSERT INTO t2 VALUES(6363, 40547, 'forty thousand five hundred forty-seven'); INSERT INTO t2 VALUES(6364, 8011, 'eight thousand eleven'); INSERT INTO t2 VALUES(6365, 15798, 'fifteen thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(6366, 8431, 'eight thousand four hundred thirty-one'); INSERT INTO t2 VALUES(6367, 54606, 'fifty-four thousand six hundred six'); INSERT INTO t2 VALUES(6368, 6730, 'six thousand seven hundred thirty'); INSERT INTO t2 VALUES(6369, 74250, 'seventy-four thousand two hundred fifty'); INSERT INTO t2 VALUES(6370, 98563, 'ninety-eight thousand five hundred sixty-three'); INSERT INTO t2 VALUES(6371, 23258, 'twenty-three thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(6372, 79820, 'seventy-nine thousand eight hundred twenty'); INSERT INTO t2 VALUES(6373, 66722, 'sixty-six thousand seven hundred twenty-two'); INSERT INTO t2 VALUES(6374, 32083, 'thirty-two thousand eighty-three'); INSERT INTO t2 VALUES(6375, 38101, 'thirty-eight thousand one hundred one'); INSERT INTO t2 VALUES(6376, 97170, 'ninety-seven thousand one hundred seventy'); INSERT INTO t2 VALUES(6377, 62549, 'sixty-two thousand five hundred forty-nine'); INSERT INTO t2 VALUES(6378, 10450, 'ten thousand four hundred fifty'); INSERT INTO t2 VALUES(6379, 2058, 'two thousand fifty-eight'); INSERT INTO t2 VALUES(6380, 63483, 'sixty-three thousand four hundred eighty-three'); INSERT INTO t2 VALUES(6381, 76032, 'seventy-six thousand thirty-two'); INSERT INTO t2 VALUES(6382, 65603, 'sixty-five thousand six hundred three'); INSERT INTO t2 VALUES(6383, 32631, 'thirty-two thousand six hundred thirty-one'); INSERT INTO t2 VALUES(6384, 86527, 'eighty-six thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(6385, 42345, 'forty-two thousand three hundred forty-five'); INSERT INTO t2 VALUES(6386, 76644, 'seventy-six thousand six hundred forty-four'); INSERT INTO t2 VALUES(6387, 8509, 'eight thousand five hundred nine'); INSERT INTO t2 VALUES(6388, 48035, 'forty-eight thousand thirty-five'); INSERT INTO t2 VALUES(6389, 40802, 'forty thousand eight hundred two'); INSERT INTO t2 VALUES(6390, 2238, 'two thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(6391, 66518, 'sixty-six thousand five hundred eighteen'); INSERT INTO t2 VALUES(6392, 42723, 'forty-two thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(6393, 411, 'four hundred eleven'); INSERT INTO t2 VALUES(6394, 71064, 'seventy-one thousand sixty-four'); INSERT INTO t2 VALUES(6395, 75111, 'seventy-five thousand one hundred eleven'); INSERT INTO t2 VALUES(6396, 29646, 'twenty-nine thousand six hundred forty-six'); INSERT INTO t2 VALUES(6397, 25777, 'twenty-five thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(6398, 95760, 'ninety-five thousand seven hundred sixty'); INSERT INTO t2 VALUES(6399, 26311, 'twenty-six thousand three hundred eleven'); INSERT INTO t2 VALUES(6400, 68057, 'sixty-eight thousand fifty-seven'); INSERT INTO t2 VALUES(6401, 86442, 'eighty-six thousand four hundred forty-two'); INSERT INTO t2 VALUES(6402, 56758, 'fifty-six thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(6403, 98766, 'ninety-eight thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(6404, 85045, 'eighty-five thousand forty-five'); INSERT INTO t2 VALUES(6405, 38693, 'thirty-eight thousand six hundred ninety-three'); INSERT INTO t2 VALUES(6406, 88482, 'eighty-eight thousand four hundred eighty-two'); INSERT INTO t2 VALUES(6407, 27747, 'twenty-seven thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(6408, 85182, 'eighty-five thousand one hundred eighty-two'); INSERT INTO t2 VALUES(6409, 32398, 'thirty-two thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(6410, 55913, 'fifty-five thousand nine hundred thirteen'); INSERT INTO t2 VALUES(6411, 31702, 'thirty-one thousand seven hundred two'); INSERT INTO t2 VALUES(6412, 98943, 'ninety-eight thousand nine hundred forty-three'); INSERT INTO t2 VALUES(6413, 70579, 'seventy thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(6414, 90523, 'ninety thousand five hundred twenty-three'); INSERT INTO t2 VALUES(6415, 81321, 'eighty-one thousand three hundred twenty-one'); INSERT INTO t2 VALUES(6416, 93603, 'ninety-three thousand six hundred three'); INSERT INTO t2 VALUES(6417, 84198, 'eighty-four thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(6418, 19537, 'nineteen thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(6419, 72503, 'seventy-two thousand five hundred three'); INSERT INTO t2 VALUES(6420, 91695, 'ninety-one thousand six hundred ninety-five'); INSERT INTO t2 VALUES(6421, 70579, 'seventy thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(6422, 14607, 'fourteen thousand six hundred seven'); INSERT INTO t2 VALUES(6423, 22638, 'twenty-two thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(6424, 70894, 'seventy thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(6425, 87045, 'eighty-seven thousand forty-five'); INSERT INTO t2 VALUES(6426, 90446, 'ninety thousand four hundred forty-six'); INSERT INTO t2 VALUES(6427, 9012, 'nine thousand twelve'); INSERT INTO t2 VALUES(6428, 32693, 'thirty-two thousand six hundred ninety-three'); INSERT INTO t2 VALUES(6429, 16281, 'sixteen thousand two hundred eighty-one'); INSERT INTO t2 VALUES(6430, 86034, 'eighty-six thousand thirty-four'); INSERT INTO t2 VALUES(6431, 81060, 'eighty-one thousand sixty'); INSERT INTO t2 VALUES(6432, 81880, 'eighty-one thousand eight hundred eighty'); INSERT INTO t2 VALUES(6433, 69098, 'sixty-nine thousand ninety-eight'); INSERT INTO t2 VALUES(6434, 96616, 'ninety-six thousand six hundred sixteen'); INSERT INTO t2 VALUES(6435, 17714, 'seventeen thousand seven hundred fourteen'); INSERT INTO t2 VALUES(6436, 96329, 'ninety-six thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(6437, 21702, 'twenty-one thousand seven hundred two'); INSERT INTO t2 VALUES(6438, 65357, 'sixty-five thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(6439, 53554, 'fifty-three thousand five hundred fifty-four'); INSERT INTO t2 VALUES(6440, 84396, 'eighty-four thousand three hundred ninety-six'); INSERT INTO t2 VALUES(6441, 98027, 'ninety-eight thousand twenty-seven'); INSERT INTO t2 VALUES(6442, 58883, 'fifty-eight thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(6443, 86208, 'eighty-six thousand two hundred eight'); INSERT INTO t2 VALUES(6444, 10831, 'ten thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(6445, 22454, 'twenty-two thousand four hundred fifty-four'); INSERT INTO t2 VALUES(6446, 24336, 'twenty-four thousand three hundred thirty-six'); INSERT INTO t2 VALUES(6447, 94127, 'ninety-four thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(6448, 77752, 'seventy-seven thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(6449, 30211, 'thirty thousand two hundred eleven'); INSERT INTO t2 VALUES(6450, 72104, 'seventy-two thousand one hundred four'); INSERT INTO t2 VALUES(6451, 14312, 'fourteen thousand three hundred twelve'); INSERT INTO t2 VALUES(6452, 30821, 'thirty thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(6453, 88440, 'eighty-eight thousand four hundred forty'); INSERT INTO t2 VALUES(6454, 80336, 'eighty thousand three hundred thirty-six'); INSERT INTO t2 VALUES(6455, 17921, 'seventeen thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(6456, 72075, 'seventy-two thousand seventy-five'); INSERT INTO t2 VALUES(6457, 68952, 'sixty-eight thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(6458, 50976, 'fifty thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(6459, 17339, 'seventeen thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(6460, 76275, 'seventy-six thousand two hundred seventy-five'); INSERT INTO t2 VALUES(6461, 5063, 'five thousand sixty-three'); INSERT INTO t2 VALUES(6462, 56282, 'fifty-six thousand two hundred eighty-two'); INSERT INTO t2 VALUES(6463, 58924, 'fifty-eight thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(6464, 61997, 'sixty-one thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(6465, 6748, 'six thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(6466, 2445, 'two thousand four hundred forty-five'); INSERT INTO t2 VALUES(6467, 95279, 'ninety-five thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(6468, 58370, 'fifty-eight thousand three hundred seventy'); INSERT INTO t2 VALUES(6469, 79648, 'seventy-nine thousand six hundred forty-eight'); INSERT INTO t2 VALUES(6470, 19836, 'nineteen thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(6471, 26488, 'twenty-six thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(6472, 46300, 'forty-six thousand three hundred'); INSERT INTO t2 VALUES(6473, 59242, 'fifty-nine thousand two hundred forty-two'); INSERT INTO t2 VALUES(6474, 94537, 'ninety-four thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(6475, 48770, 'forty-eight thousand seven hundred seventy'); INSERT INTO t2 VALUES(6476, 73293, 'seventy-three thousand two hundred ninety-three'); INSERT INTO t2 VALUES(6477, 71587, 'seventy-one thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(6478, 34578, 'thirty-four thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(6479, 395, 'three hundred ninety-five'); INSERT INTO t2 VALUES(6480, 49738, 'forty-nine thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(6481, 39372, 'thirty-nine thousand three hundred seventy-two'); INSERT INTO t2 VALUES(6482, 58806, 'fifty-eight thousand eight hundred six'); INSERT INTO t2 VALUES(6483, 81494, 'eighty-one thousand four hundred ninety-four'); INSERT INTO t2 VALUES(6484, 50298, 'fifty thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(6485, 91193, 'ninety-one thousand one hundred ninety-three'); INSERT INTO t2 VALUES(6486, 84418, 'eighty-four thousand four hundred eighteen'); INSERT INTO t2 VALUES(6487, 43246, 'forty-three thousand two hundred forty-six'); INSERT INTO t2 VALUES(6488, 99111, 'ninety-nine thousand one hundred eleven'); INSERT INTO t2 VALUES(6489, 87337, 'eighty-seven thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(6490, 353, 'three hundred fifty-three'); INSERT INTO t2 VALUES(6491, 20434, 'twenty thousand four hundred thirty-four'); INSERT INTO t2 VALUES(6492, 63428, 'sixty-three thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(6493, 33969, 'thirty-three thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(6494, 3224, 'three thousand two hundred twenty-four'); INSERT INTO t2 VALUES(6495, 64553, 'sixty-four thousand five hundred fifty-three'); INSERT INTO t2 VALUES(6496, 950, 'nine hundred fifty'); INSERT INTO t2 VALUES(6497, 47927, 'forty-seven thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(6498, 5149, 'five thousand one hundred forty-nine'); INSERT INTO t2 VALUES(6499, 30719, 'thirty thousand seven hundred nineteen'); INSERT INTO t2 VALUES(6500, 50162, 'fifty thousand one hundred sixty-two'); INSERT INTO t2 VALUES(6501, 76386, 'seventy-six thousand three hundred eighty-six'); INSERT INTO t2 VALUES(6502, 5514, 'five thousand five hundred fourteen'); INSERT INTO t2 VALUES(6503, 98674, 'ninety-eight thousand six hundred seventy-four'); INSERT INTO t2 VALUES(6504, 7134, 'seven thousand one hundred thirty-four'); INSERT INTO t2 VALUES(6505, 43648, 'forty-three thousand six hundred forty-eight'); INSERT INTO t2 VALUES(6506, 63879, 'sixty-three thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(6507, 5557, 'five thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(6508, 48890, 'forty-eight thousand eight hundred ninety'); INSERT INTO t2 VALUES(6509, 18033, 'eighteen thousand thirty-three'); INSERT INTO t2 VALUES(6510, 72800, 'seventy-two thousand eight hundred'); INSERT INTO t2 VALUES(6511, 45062, 'forty-five thousand sixty-two'); INSERT INTO t2 VALUES(6512, 89541, 'eighty-nine thousand five hundred forty-one'); INSERT INTO t2 VALUES(6513, 337, 'three hundred thirty-seven'); INSERT INTO t2 VALUES(6514, 42970, 'forty-two thousand nine hundred seventy'); INSERT INTO t2 VALUES(6515, 5347, 'five thousand three hundred forty-seven'); INSERT INTO t2 VALUES(6516, 13576, 'thirteen thousand five hundred seventy-six'); INSERT INTO t2 VALUES(6517, 69606, 'sixty-nine thousand six hundred six'); INSERT INTO t2 VALUES(6518, 52446, 'fifty-two thousand four hundred forty-six'); INSERT INTO t2 VALUES(6519, 36405, 'thirty-six thousand four hundred five'); INSERT INTO t2 VALUES(6520, 35661, 'thirty-five thousand six hundred sixty-one'); INSERT INTO t2 VALUES(6521, 46459, 'forty-six thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(6522, 77111, 'seventy-seven thousand one hundred eleven'); INSERT INTO t2 VALUES(6523, 12640, 'twelve thousand six hundred forty'); INSERT INTO t2 VALUES(6524, 90869, 'ninety thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(6525, 71557, 'seventy-one thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(6526, 714, 'seven hundred fourteen'); INSERT INTO t2 VALUES(6527, 95355, 'ninety-five thousand three hundred fifty-five'); INSERT INTO t2 VALUES(6528, 10730, 'ten thousand seven hundred thirty'); INSERT INTO t2 VALUES(6529, 6696, 'six thousand six hundred ninety-six'); INSERT INTO t2 VALUES(6530, 96869, 'ninety-six thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(6531, 68136, 'sixty-eight thousand one hundred thirty-six'); INSERT INTO t2 VALUES(6532, 67764, 'sixty-seven thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(6533, 12977, 'twelve thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(6534, 64121, 'sixty-four thousand one hundred twenty-one'); INSERT INTO t2 VALUES(6535, 29262, 'twenty-nine thousand two hundred sixty-two'); INSERT INTO t2 VALUES(6536, 8828, 'eight thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(6537, 11408, 'eleven thousand four hundred eight'); INSERT INTO t2 VALUES(6538, 98612, 'ninety-eight thousand six hundred twelve'); INSERT INTO t2 VALUES(6539, 42095, 'forty-two thousand ninety-five'); INSERT INTO t2 VALUES(6540, 58308, 'fifty-eight thousand three hundred eight'); INSERT INTO t2 VALUES(6541, 17618, 'seventeen thousand six hundred eighteen'); INSERT INTO t2 VALUES(6542, 91229, 'ninety-one thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(6543, 93349, 'ninety-three thousand three hundred forty-nine'); INSERT INTO t2 VALUES(6544, 40588, 'forty thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(6545, 93831, 'ninety-three thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(6546, 83235, 'eighty-three thousand two hundred thirty-five'); INSERT INTO t2 VALUES(6547, 98016, 'ninety-eight thousand sixteen'); INSERT INTO t2 VALUES(6548, 78127, 'seventy-eight thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(6549, 65915, 'sixty-five thousand nine hundred fifteen'); INSERT INTO t2 VALUES(6550, 35927, 'thirty-five thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(6551, 81793, 'eighty-one thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(6552, 4105, 'four thousand one hundred five'); INSERT INTO t2 VALUES(6553, 98613, 'ninety-eight thousand six hundred thirteen'); INSERT INTO t2 VALUES(6554, 31952, 'thirty-one thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(6555, 18668, 'eighteen thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(6556, 70762, 'seventy thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(6557, 37556, 'thirty-seven thousand five hundred fifty-six'); INSERT INTO t2 VALUES(6558, 64423, 'sixty-four thousand four hundred twenty-three'); INSERT INTO t2 VALUES(6559, 61176, 'sixty-one thousand one hundred seventy-six'); INSERT INTO t2 VALUES(6560, 27820, 'twenty-seven thousand eight hundred twenty'); INSERT INTO t2 VALUES(6561, 29432, 'twenty-nine thousand four hundred thirty-two'); INSERT INTO t2 VALUES(6562, 67897, 'sixty-seven thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(6563, 75938, 'seventy-five thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(6564, 35003, 'thirty-five thousand three'); INSERT INTO t2 VALUES(6565, 21286, 'twenty-one thousand two hundred eighty-six'); INSERT INTO t2 VALUES(6566, 12470, 'twelve thousand four hundred seventy'); INSERT INTO t2 VALUES(6567, 71891, 'seventy-one thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(6568, 2784, 'two thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(6569, 22162, 'twenty-two thousand one hundred sixty-two'); INSERT INTO t2 VALUES(6570, 52367, 'fifty-two thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(6571, 50157, 'fifty thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(6572, 20175, 'twenty thousand one hundred seventy-five'); INSERT INTO t2 VALUES(6573, 25136, 'twenty-five thousand one hundred thirty-six'); INSERT INTO t2 VALUES(6574, 67773, 'sixty-seven thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(6575, 22905, 'twenty-two thousand nine hundred five'); INSERT INTO t2 VALUES(6576, 7527, 'seven thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(6577, 99972, 'ninety-nine thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(6578, 26244, 'twenty-six thousand two hundred forty-four'); INSERT INTO t2 VALUES(6579, 3988, 'three thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(6580, 78093, 'seventy-eight thousand ninety-three'); INSERT INTO t2 VALUES(6581, 51433, 'fifty-one thousand four hundred thirty-three'); INSERT INTO t2 VALUES(6582, 46328, 'forty-six thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(6583, 86139, 'eighty-six thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(6584, 4370, 'four thousand three hundred seventy'); INSERT INTO t2 VALUES(6585, 6155, 'six thousand one hundred fifty-five'); INSERT INTO t2 VALUES(6586, 44537, 'forty-four thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(6587, 61247, 'sixty-one thousand two hundred forty-seven'); INSERT INTO t2 VALUES(6588, 81676, 'eighty-one thousand six hundred seventy-six'); INSERT INTO t2 VALUES(6589, 82034, 'eighty-two thousand thirty-four'); INSERT INTO t2 VALUES(6590, 51474, 'fifty-one thousand four hundred seventy-four'); INSERT INTO t2 VALUES(6591, 57140, 'fifty-seven thousand one hundred forty'); INSERT INTO t2 VALUES(6592, 77032, 'seventy-seven thousand thirty-two'); INSERT INTO t2 VALUES(6593, 85202, 'eighty-five thousand two hundred two'); INSERT INTO t2 VALUES(6594, 97387, 'ninety-seven thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(6595, 36699, 'thirty-six thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(6596, 95494, 'ninety-five thousand four hundred ninety-four'); INSERT INTO t2 VALUES(6597, 60862, 'sixty thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(6598, 12721, 'twelve thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(6599, 46185, 'forty-six thousand one hundred eighty-five'); INSERT INTO t2 VALUES(6600, 5960, 'five thousand nine hundred sixty'); INSERT INTO t2 VALUES(6601, 59841, 'fifty-nine thousand eight hundred forty-one'); INSERT INTO t2 VALUES(6602, 20040, 'twenty thousand forty'); INSERT INTO t2 VALUES(6603, 52851, 'fifty-two thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(6604, 98369, 'ninety-eight thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(6605, 47209, 'forty-seven thousand two hundred nine'); INSERT INTO t2 VALUES(6606, 1166, 'one thousand one hundred sixty-six'); INSERT INTO t2 VALUES(6607, 94770, 'ninety-four thousand seven hundred seventy'); INSERT INTO t2 VALUES(6608, 89349, 'eighty-nine thousand three hundred forty-nine'); INSERT INTO t2 VALUES(6609, 7611, 'seven thousand six hundred eleven'); INSERT INTO t2 VALUES(6610, 12467, 'twelve thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(6611, 93893, 'ninety-three thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(6612, 59941, 'fifty-nine thousand nine hundred forty-one'); INSERT INTO t2 VALUES(6613, 42902, 'forty-two thousand nine hundred two'); INSERT INTO t2 VALUES(6614, 57172, 'fifty-seven thousand one hundred seventy-two'); INSERT INTO t2 VALUES(6615, 61256, 'sixty-one thousand two hundred fifty-six'); INSERT INTO t2 VALUES(6616, 38110, 'thirty-eight thousand one hundred ten'); INSERT INTO t2 VALUES(6617, 35078, 'thirty-five thousand seventy-eight'); INSERT INTO t2 VALUES(6618, 57155, 'fifty-seven thousand one hundred fifty-five'); INSERT INTO t2 VALUES(6619, 29333, 'twenty-nine thousand three hundred thirty-three'); INSERT INTO t2 VALUES(6620, 3543, 'three thousand five hundred forty-three'); INSERT INTO t2 VALUES(6621, 55935, 'fifty-five thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(6622, 28858, 'twenty-eight thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(6623, 94101, 'ninety-four thousand one hundred one'); INSERT INTO t2 VALUES(6624, 91360, 'ninety-one thousand three hundred sixty'); INSERT INTO t2 VALUES(6625, 79815, 'seventy-nine thousand eight hundred fifteen'); INSERT INTO t2 VALUES(6626, 14822, 'fourteen thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(6627, 23427, 'twenty-three thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(6628, 51242, 'fifty-one thousand two hundred forty-two'); INSERT INTO t2 VALUES(6629, 7058, 'seven thousand fifty-eight'); INSERT INTO t2 VALUES(6630, 89467, 'eighty-nine thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(6631, 79717, 'seventy-nine thousand seven hundred seventeen'); INSERT INTO t2 VALUES(6632, 16821, 'sixteen thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(6633, 33223, 'thirty-three thousand two hundred twenty-three'); INSERT INTO t2 VALUES(6634, 96635, 'ninety-six thousand six hundred thirty-five'); INSERT INTO t2 VALUES(6635, 19409, 'nineteen thousand four hundred nine'); INSERT INTO t2 VALUES(6636, 45622, 'forty-five thousand six hundred twenty-two'); INSERT INTO t2 VALUES(6637, 70150, 'seventy thousand one hundred fifty'); INSERT INTO t2 VALUES(6638, 17916, 'seventeen thousand nine hundred sixteen'); INSERT INTO t2 VALUES(6639, 84015, 'eighty-four thousand fifteen'); INSERT INTO t2 VALUES(6640, 52708, 'fifty-two thousand seven hundred eight'); INSERT INTO t2 VALUES(6641, 79712, 'seventy-nine thousand seven hundred twelve'); INSERT INTO t2 VALUES(6642, 52733, 'fifty-two thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(6643, 10721, 'ten thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(6644, 63701, 'sixty-three thousand seven hundred one'); INSERT INTO t2 VALUES(6645, 71130, 'seventy-one thousand one hundred thirty'); INSERT INTO t2 VALUES(6646, 99480, 'ninety-nine thousand four hundred eighty'); INSERT INTO t2 VALUES(6647, 92378, 'ninety-two thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(6648, 26104, 'twenty-six thousand one hundred four'); INSERT INTO t2 VALUES(6649, 9611, 'nine thousand six hundred eleven'); INSERT INTO t2 VALUES(6650, 55174, 'fifty-five thousand one hundred seventy-four'); INSERT INTO t2 VALUES(6651, 5313, 'five thousand three hundred thirteen'); INSERT INTO t2 VALUES(6652, 73525, 'seventy-three thousand five hundred twenty-five'); INSERT INTO t2 VALUES(6653, 76530, 'seventy-six thousand five hundred thirty'); INSERT INTO t2 VALUES(6654, 39395, 'thirty-nine thousand three hundred ninety-five'); INSERT INTO t2 VALUES(6655, 21956, 'twenty-one thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(6656, 78486, 'seventy-eight thousand four hundred eighty-six'); INSERT INTO t2 VALUES(6657, 14857, 'fourteen thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(6658, 53768, 'fifty-three thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(6659, 39320, 'thirty-nine thousand three hundred twenty'); INSERT INTO t2 VALUES(6660, 15883, 'fifteen thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(6661, 4770, 'four thousand seven hundred seventy'); INSERT INTO t2 VALUES(6662, 72020, 'seventy-two thousand twenty'); INSERT INTO t2 VALUES(6663, 26000, 'twenty-six thousand'); INSERT INTO t2 VALUES(6664, 95474, 'ninety-five thousand four hundred seventy-four'); INSERT INTO t2 VALUES(6665, 95154, 'ninety-five thousand one hundred fifty-four'); INSERT INTO t2 VALUES(6666, 53852, 'fifty-three thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(6667, 53561, 'fifty-three thousand five hundred sixty-one'); INSERT INTO t2 VALUES(6668, 76098, 'seventy-six thousand ninety-eight'); INSERT INTO t2 VALUES(6669, 19230, 'nineteen thousand two hundred thirty'); INSERT INTO t2 VALUES(6670, 2424, 'two thousand four hundred twenty-four'); INSERT INTO t2 VALUES(6671, 33583, 'thirty-three thousand five hundred eighty-three'); INSERT INTO t2 VALUES(6672, 30537, 'thirty thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(6673, 95682, 'ninety-five thousand six hundred eighty-two'); INSERT INTO t2 VALUES(6674, 89282, 'eighty-nine thousand two hundred eighty-two'); INSERT INTO t2 VALUES(6675, 57914, 'fifty-seven thousand nine hundred fourteen'); INSERT INTO t2 VALUES(6676, 19324, 'nineteen thousand three hundred twenty-four'); INSERT INTO t2 VALUES(6677, 38619, 'thirty-eight thousand six hundred nineteen'); INSERT INTO t2 VALUES(6678, 4945, 'four thousand nine hundred forty-five'); INSERT INTO t2 VALUES(6679, 10780, 'ten thousand seven hundred eighty'); INSERT INTO t2 VALUES(6680, 4347, 'four thousand three hundred forty-seven'); INSERT INTO t2 VALUES(6681, 24282, 'twenty-four thousand two hundred eighty-two'); INSERT INTO t2 VALUES(6682, 7485, 'seven thousand four hundred eighty-five'); INSERT INTO t2 VALUES(6683, 58345, 'fifty-eight thousand three hundred forty-five'); INSERT INTO t2 VALUES(6684, 68449, 'sixty-eight thousand four hundred forty-nine'); INSERT INTO t2 VALUES(6685, 28984, 'twenty-eight thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(6686, 91546, 'ninety-one thousand five hundred forty-six'); INSERT INTO t2 VALUES(6687, 61582, 'sixty-one thousand five hundred eighty-two'); INSERT INTO t2 VALUES(6688, 30617, 'thirty thousand six hundred seventeen'); INSERT INTO t2 VALUES(6689, 23961, 'twenty-three thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(6690, 52806, 'fifty-two thousand eight hundred six'); INSERT INTO t2 VALUES(6691, 96082, 'ninety-six thousand eighty-two'); INSERT INTO t2 VALUES(6692, 56194, 'fifty-six thousand one hundred ninety-four'); INSERT INTO t2 VALUES(6693, 22806, 'twenty-two thousand eight hundred six'); INSERT INTO t2 VALUES(6694, 46566, 'forty-six thousand five hundred sixty-six'); INSERT INTO t2 VALUES(6695, 3627, 'three thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(6696, 14933, 'fourteen thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(6697, 37558, 'thirty-seven thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(6698, 33543, 'thirty-three thousand five hundred forty-three'); INSERT INTO t2 VALUES(6699, 13103, 'thirteen thousand one hundred three'); INSERT INTO t2 VALUES(6700, 86573, 'eighty-six thousand five hundred seventy-three'); INSERT INTO t2 VALUES(6701, 1830, 'one thousand eight hundred thirty'); INSERT INTO t2 VALUES(6702, 89933, 'eighty-nine thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(6703, 26476, 'twenty-six thousand four hundred seventy-six'); INSERT INTO t2 VALUES(6704, 32688, 'thirty-two thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(6705, 79443, 'seventy-nine thousand four hundred forty-three'); INSERT INTO t2 VALUES(6706, 51404, 'fifty-one thousand four hundred four'); INSERT INTO t2 VALUES(6707, 92220, 'ninety-two thousand two hundred twenty'); INSERT INTO t2 VALUES(6708, 19932, 'nineteen thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(6709, 77340, 'seventy-seven thousand three hundred forty'); INSERT INTO t2 VALUES(6710, 78238, 'seventy-eight thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(6711, 54462, 'fifty-four thousand four hundred sixty-two'); INSERT INTO t2 VALUES(6712, 69871, 'sixty-nine thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(6713, 70202, 'seventy thousand two hundred two'); INSERT INTO t2 VALUES(6714, 77044, 'seventy-seven thousand forty-four'); INSERT INTO t2 VALUES(6715, 8101, 'eight thousand one hundred one'); INSERT INTO t2 VALUES(6716, 50150, 'fifty thousand one hundred fifty'); INSERT INTO t2 VALUES(6717, 53488, 'fifty-three thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(6718, 82723, 'eighty-two thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(6719, 38840, 'thirty-eight thousand eight hundred forty'); INSERT INTO t2 VALUES(6720, 36854, 'thirty-six thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(6721, 73289, 'seventy-three thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(6722, 5460, 'five thousand four hundred sixty'); INSERT INTO t2 VALUES(6723, 86116, 'eighty-six thousand one hundred sixteen'); INSERT INTO t2 VALUES(6724, 91671, 'ninety-one thousand six hundred seventy-one'); INSERT INTO t2 VALUES(6725, 25718, 'twenty-five thousand seven hundred eighteen'); INSERT INTO t2 VALUES(6726, 49405, 'forty-nine thousand four hundred five'); INSERT INTO t2 VALUES(6727, 2805, 'two thousand eight hundred five'); INSERT INTO t2 VALUES(6728, 63907, 'sixty-three thousand nine hundred seven'); INSERT INTO t2 VALUES(6729, 44633, 'forty-four thousand six hundred thirty-three'); INSERT INTO t2 VALUES(6730, 83729, 'eighty-three thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(6731, 98111, 'ninety-eight thousand one hundred eleven'); INSERT INTO t2 VALUES(6732, 84927, 'eighty-four thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(6733, 27815, 'twenty-seven thousand eight hundred fifteen'); INSERT INTO t2 VALUES(6734, 65523, 'sixty-five thousand five hundred twenty-three'); INSERT INTO t2 VALUES(6735, 39927, 'thirty-nine thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(6736, 26574, 'twenty-six thousand five hundred seventy-four'); INSERT INTO t2 VALUES(6737, 95730, 'ninety-five thousand seven hundred thirty'); INSERT INTO t2 VALUES(6738, 77103, 'seventy-seven thousand one hundred three'); INSERT INTO t2 VALUES(6739, 94895, 'ninety-four thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(6740, 12374, 'twelve thousand three hundred seventy-four'); INSERT INTO t2 VALUES(6741, 84618, 'eighty-four thousand six hundred eighteen'); INSERT INTO t2 VALUES(6742, 70940, 'seventy thousand nine hundred forty'); INSERT INTO t2 VALUES(6743, 95197, 'ninety-five thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(6744, 8114, 'eight thousand one hundred fourteen'); INSERT INTO t2 VALUES(6745, 48574, 'forty-eight thousand five hundred seventy-four'); INSERT INTO t2 VALUES(6746, 41804, 'forty-one thousand eight hundred four'); INSERT INTO t2 VALUES(6747, 18518, 'eighteen thousand five hundred eighteen'); INSERT INTO t2 VALUES(6748, 39717, 'thirty-nine thousand seven hundred seventeen'); INSERT INTO t2 VALUES(6749, 54606, 'fifty-four thousand six hundred six'); INSERT INTO t2 VALUES(6750, 75763, 'seventy-five thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(6751, 8546, 'eight thousand five hundred forty-six'); INSERT INTO t2 VALUES(6752, 37046, 'thirty-seven thousand forty-six'); INSERT INTO t2 VALUES(6753, 76160, 'seventy-six thousand one hundred sixty'); INSERT INTO t2 VALUES(6754, 79606, 'seventy-nine thousand six hundred six'); INSERT INTO t2 VALUES(6755, 77839, 'seventy-seven thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(6756, 20977, 'twenty thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(6757, 5614, 'five thousand six hundred fourteen'); INSERT INTO t2 VALUES(6758, 45285, 'forty-five thousand two hundred eighty-five'); INSERT INTO t2 VALUES(6759, 75021, 'seventy-five thousand twenty-one'); INSERT INTO t2 VALUES(6760, 75872, 'seventy-five thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(6761, 40849, 'forty thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(6762, 24484, 'twenty-four thousand four hundred eighty-four'); INSERT INTO t2 VALUES(6763, 27909, 'twenty-seven thousand nine hundred nine'); INSERT INTO t2 VALUES(6764, 78913, 'seventy-eight thousand nine hundred thirteen'); INSERT INTO t2 VALUES(6765, 88805, 'eighty-eight thousand eight hundred five'); INSERT INTO t2 VALUES(6766, 63580, 'sixty-three thousand five hundred eighty'); INSERT INTO t2 VALUES(6767, 7919, 'seven thousand nine hundred nineteen'); INSERT INTO t2 VALUES(6768, 93222, 'ninety-three thousand two hundred twenty-two'); INSERT INTO t2 VALUES(6769, 24430, 'twenty-four thousand four hundred thirty'); INSERT INTO t2 VALUES(6770, 43950, 'forty-three thousand nine hundred fifty'); INSERT INTO t2 VALUES(6771, 1310, 'one thousand three hundred ten'); INSERT INTO t2 VALUES(6772, 70080, 'seventy thousand eighty'); INSERT INTO t2 VALUES(6773, 81148, 'eighty-one thousand one hundred forty-eight'); INSERT INTO t2 VALUES(6774, 62541, 'sixty-two thousand five hundred forty-one'); INSERT INTO t2 VALUES(6775, 19398, 'nineteen thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(6776, 97179, 'ninety-seven thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(6777, 34684, 'thirty-four thousand six hundred eighty-four'); INSERT INTO t2 VALUES(6778, 88874, 'eighty-eight thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(6779, 57409, 'fifty-seven thousand four hundred nine'); INSERT INTO t2 VALUES(6780, 49870, 'forty-nine thousand eight hundred seventy'); INSERT INTO t2 VALUES(6781, 35463, 'thirty-five thousand four hundred sixty-three'); INSERT INTO t2 VALUES(6782, 36057, 'thirty-six thousand fifty-seven'); INSERT INTO t2 VALUES(6783, 65851, 'sixty-five thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(6784, 13579, 'thirteen thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(6785, 47773, 'forty-seven thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(6786, 32848, 'thirty-two thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(6787, 79542, 'seventy-nine thousand five hundred forty-two'); INSERT INTO t2 VALUES(6788, 90578, 'ninety thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(6789, 35204, 'thirty-five thousand two hundred four'); INSERT INTO t2 VALUES(6790, 95491, 'ninety-five thousand four hundred ninety-one'); INSERT INTO t2 VALUES(6791, 7086, 'seven thousand eighty-six'); INSERT INTO t2 VALUES(6792, 70457, 'seventy thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(6793, 34926, 'thirty-four thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(6794, 36612, 'thirty-six thousand six hundred twelve'); INSERT INTO t2 VALUES(6795, 99637, 'ninety-nine thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(6796, 82112, 'eighty-two thousand one hundred twelve'); INSERT INTO t2 VALUES(6797, 15285, 'fifteen thousand two hundred eighty-five'); INSERT INTO t2 VALUES(6798, 90602, 'ninety thousand six hundred two'); INSERT INTO t2 VALUES(6799, 79256, 'seventy-nine thousand two hundred fifty-six'); INSERT INTO t2 VALUES(6800, 35128, 'thirty-five thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(6801, 12135, 'twelve thousand one hundred thirty-five'); INSERT INTO t2 VALUES(6802, 4111, 'four thousand one hundred eleven'); INSERT INTO t2 VALUES(6803, 66888, 'sixty-six thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(6804, 13525, 'thirteen thousand five hundred twenty-five'); INSERT INTO t2 VALUES(6805, 6429, 'six thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(6806, 9298, 'nine thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(6807, 69879, 'sixty-nine thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(6808, 95797, 'ninety-five thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(6809, 1046, 'one thousand forty-six'); INSERT INTO t2 VALUES(6810, 44336, 'forty-four thousand three hundred thirty-six'); INSERT INTO t2 VALUES(6811, 48541, 'forty-eight thousand five hundred forty-one'); INSERT INTO t2 VALUES(6812, 17256, 'seventeen thousand two hundred fifty-six'); INSERT INTO t2 VALUES(6813, 23456, 'twenty-three thousand four hundred fifty-six'); INSERT INTO t2 VALUES(6814, 32192, 'thirty-two thousand one hundred ninety-two'); INSERT INTO t2 VALUES(6815, 78220, 'seventy-eight thousand two hundred twenty'); INSERT INTO t2 VALUES(6816, 78461, 'seventy-eight thousand four hundred sixty-one'); INSERT INTO t2 VALUES(6817, 87653, 'eighty-seven thousand six hundred fifty-three'); INSERT INTO t2 VALUES(6818, 45130, 'forty-five thousand one hundred thirty'); INSERT INTO t2 VALUES(6819, 80243, 'eighty thousand two hundred forty-three'); INSERT INTO t2 VALUES(6820, 46284, 'forty-six thousand two hundred eighty-four'); INSERT INTO t2 VALUES(6821, 75250, 'seventy-five thousand two hundred fifty'); INSERT INTO t2 VALUES(6822, 66744, 'sixty-six thousand seven hundred forty-four'); INSERT INTO t2 VALUES(6823, 37184, 'thirty-seven thousand one hundred eighty-four'); INSERT INTO t2 VALUES(6824, 58755, 'fifty-eight thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(6825, 63300, 'sixty-three thousand three hundred'); INSERT INTO t2 VALUES(6826, 62363, 'sixty-two thousand three hundred sixty-three'); INSERT INTO t2 VALUES(6827, 8186, 'eight thousand one hundred eighty-six'); INSERT INTO t2 VALUES(6828, 50989, 'fifty thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(6829, 30688, 'thirty thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(6830, 72070, 'seventy-two thousand seventy'); INSERT INTO t2 VALUES(6831, 87929, 'eighty-seven thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(6832, 81492, 'eighty-one thousand four hundred ninety-two'); INSERT INTO t2 VALUES(6833, 90838, 'ninety thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(6834, 3276, 'three thousand two hundred seventy-six'); INSERT INTO t2 VALUES(6835, 74391, 'seventy-four thousand three hundred ninety-one'); INSERT INTO t2 VALUES(6836, 47180, 'forty-seven thousand one hundred eighty'); INSERT INTO t2 VALUES(6837, 16898, 'sixteen thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(6838, 42432, 'forty-two thousand four hundred thirty-two'); INSERT INTO t2 VALUES(6839, 61035, 'sixty-one thousand thirty-five'); INSERT INTO t2 VALUES(6840, 17760, 'seventeen thousand seven hundred sixty'); INSERT INTO t2 VALUES(6841, 12117, 'twelve thousand one hundred seventeen'); INSERT INTO t2 VALUES(6842, 65747, 'sixty-five thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(6843, 32344, 'thirty-two thousand three hundred forty-four'); INSERT INTO t2 VALUES(6844, 73543, 'seventy-three thousand five hundred forty-three'); INSERT INTO t2 VALUES(6845, 51745, 'fifty-one thousand seven hundred forty-five'); INSERT INTO t2 VALUES(6846, 5895, 'five thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(6847, 85829, 'eighty-five thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(6848, 9788, 'nine thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(6849, 22687, 'twenty-two thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(6850, 21778, 'twenty-one thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(6851, 98821, 'ninety-eight thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(6852, 27493, 'twenty-seven thousand four hundred ninety-three'); INSERT INTO t2 VALUES(6853, 49087, 'forty-nine thousand eighty-seven'); INSERT INTO t2 VALUES(6854, 20492, 'twenty thousand four hundred ninety-two'); INSERT INTO t2 VALUES(6855, 34648, 'thirty-four thousand six hundred forty-eight'); INSERT INTO t2 VALUES(6856, 63848, 'sixty-three thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(6857, 10977, 'ten thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(6858, 39101, 'thirty-nine thousand one hundred one'); INSERT INTO t2 VALUES(6859, 56572, 'fifty-six thousand five hundred seventy-two'); INSERT INTO t2 VALUES(6860, 16325, 'sixteen thousand three hundred twenty-five'); INSERT INTO t2 VALUES(6861, 34890, 'thirty-four thousand eight hundred ninety'); INSERT INTO t2 VALUES(6862, 8901, 'eight thousand nine hundred one'); INSERT INTO t2 VALUES(6863, 58120, 'fifty-eight thousand one hundred twenty'); INSERT INTO t2 VALUES(6864, 9539, 'nine thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(6865, 18936, 'eighteen thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(6866, 67666, 'sixty-seven thousand six hundred sixty-six'); INSERT INTO t2 VALUES(6867, 43303, 'forty-three thousand three hundred three'); INSERT INTO t2 VALUES(6868, 67804, 'sixty-seven thousand eight hundred four'); INSERT INTO t2 VALUES(6869, 33925, 'thirty-three thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(6870, 86284, 'eighty-six thousand two hundred eighty-four'); INSERT INTO t2 VALUES(6871, 582, 'five hundred eighty-two'); INSERT INTO t2 VALUES(6872, 48012, 'forty-eight thousand twelve'); INSERT INTO t2 VALUES(6873, 56226, 'fifty-six thousand two hundred twenty-six'); INSERT INTO t2 VALUES(6874, 83017, 'eighty-three thousand seventeen'); INSERT INTO t2 VALUES(6875, 52765, 'fifty-two thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(6876, 9757, 'nine thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(6877, 95014, 'ninety-five thousand fourteen'); INSERT INTO t2 VALUES(6878, 8705, 'eight thousand seven hundred five'); INSERT INTO t2 VALUES(6879, 99481, 'ninety-nine thousand four hundred eighty-one'); INSERT INTO t2 VALUES(6880, 26805, 'twenty-six thousand eight hundred five'); INSERT INTO t2 VALUES(6881, 54671, 'fifty-four thousand six hundred seventy-one'); INSERT INTO t2 VALUES(6882, 77647, 'seventy-seven thousand six hundred forty-seven'); INSERT INTO t2 VALUES(6883, 47193, 'forty-seven thousand one hundred ninety-three'); INSERT INTO t2 VALUES(6884, 17244, 'seventeen thousand two hundred forty-four'); INSERT INTO t2 VALUES(6885, 76324, 'seventy-six thousand three hundred twenty-four'); INSERT INTO t2 VALUES(6886, 35193, 'thirty-five thousand one hundred ninety-three'); INSERT INTO t2 VALUES(6887, 28642, 'twenty-eight thousand six hundred forty-two'); INSERT INTO t2 VALUES(6888, 53149, 'fifty-three thousand one hundred forty-nine'); INSERT INTO t2 VALUES(6889, 53230, 'fifty-three thousand two hundred thirty'); INSERT INTO t2 VALUES(6890, 448, 'four hundred forty-eight'); INSERT INTO t2 VALUES(6891, 81316, 'eighty-one thousand three hundred sixteen'); INSERT INTO t2 VALUES(6892, 89411, 'eighty-nine thousand four hundred eleven'); INSERT INTO t2 VALUES(6893, 90177, 'ninety thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(6894, 60157, 'sixty thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(6895, 52740, 'fifty-two thousand seven hundred forty'); INSERT INTO t2 VALUES(6896, 12324, 'twelve thousand three hundred twenty-four'); INSERT INTO t2 VALUES(6897, 90240, 'ninety thousand two hundred forty'); INSERT INTO t2 VALUES(6898, 46272, 'forty-six thousand two hundred seventy-two'); INSERT INTO t2 VALUES(6899, 3926, 'three thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(6900, 66331, 'sixty-six thousand three hundred thirty-one'); INSERT INTO t2 VALUES(6901, 39669, 'thirty-nine thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(6902, 96184, 'ninety-six thousand one hundred eighty-four'); INSERT INTO t2 VALUES(6903, 8073, 'eight thousand seventy-three'); INSERT INTO t2 VALUES(6904, 28504, 'twenty-eight thousand five hundred four'); INSERT INTO t2 VALUES(6905, 39372, 'thirty-nine thousand three hundred seventy-two'); INSERT INTO t2 VALUES(6906, 14669, 'fourteen thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(6907, 59393, 'fifty-nine thousand three hundred ninety-three'); INSERT INTO t2 VALUES(6908, 36396, 'thirty-six thousand three hundred ninety-six'); INSERT INTO t2 VALUES(6909, 99219, 'ninety-nine thousand two hundred nineteen'); INSERT INTO t2 VALUES(6910, 31371, 'thirty-one thousand three hundred seventy-one'); INSERT INTO t2 VALUES(6911, 35693, 'thirty-five thousand six hundred ninety-three'); INSERT INTO t2 VALUES(6912, 58788, 'fifty-eight thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(6913, 41832, 'forty-one thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(6914, 75661, 'seventy-five thousand six hundred sixty-one'); INSERT INTO t2 VALUES(6915, 47359, 'forty-seven thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(6916, 73195, 'seventy-three thousand one hundred ninety-five'); INSERT INTO t2 VALUES(6917, 80499, 'eighty thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(6918, 5963, 'five thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(6919, 27733, 'twenty-seven thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(6920, 86525, 'eighty-six thousand five hundred twenty-five'); INSERT INTO t2 VALUES(6921, 44667, 'forty-four thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(6922, 23624, 'twenty-three thousand six hundred twenty-four'); INSERT INTO t2 VALUES(6923, 49974, 'forty-nine thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(6924, 30988, 'thirty thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(6925, 52525, 'fifty-two thousand five hundred twenty-five'); INSERT INTO t2 VALUES(6926, 7567, 'seven thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(6927, 29063, 'twenty-nine thousand sixty-three'); INSERT INTO t2 VALUES(6928, 59760, 'fifty-nine thousand seven hundred sixty'); INSERT INTO t2 VALUES(6929, 64774, 'sixty-four thousand seven hundred seventy-four'); INSERT INTO t2 VALUES(6930, 56241, 'fifty-six thousand two hundred forty-one'); INSERT INTO t2 VALUES(6931, 21318, 'twenty-one thousand three hundred eighteen'); INSERT INTO t2 VALUES(6932, 29993, 'twenty-nine thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(6933, 13052, 'thirteen thousand fifty-two'); INSERT INTO t2 VALUES(6934, 63940, 'sixty-three thousand nine hundred forty'); INSERT INTO t2 VALUES(6935, 10944, 'ten thousand nine hundred forty-four'); INSERT INTO t2 VALUES(6936, 53517, 'fifty-three thousand five hundred seventeen'); INSERT INTO t2 VALUES(6937, 3365, 'three thousand three hundred sixty-five'); INSERT INTO t2 VALUES(6938, 78936, 'seventy-eight thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(6939, 19479, 'nineteen thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(6940, 75930, 'seventy-five thousand nine hundred thirty'); INSERT INTO t2 VALUES(6941, 37705, 'thirty-seven thousand seven hundred five'); INSERT INTO t2 VALUES(6942, 69175, 'sixty-nine thousand one hundred seventy-five'); INSERT INTO t2 VALUES(6943, 22232, 'twenty-two thousand two hundred thirty-two'); INSERT INTO t2 VALUES(6944, 28248, 'twenty-eight thousand two hundred forty-eight'); INSERT INTO t2 VALUES(6945, 25273, 'twenty-five thousand two hundred seventy-three'); INSERT INTO t2 VALUES(6946, 63132, 'sixty-three thousand one hundred thirty-two'); INSERT INTO t2 VALUES(6947, 65891, 'sixty-five thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(6948, 38574, 'thirty-eight thousand five hundred seventy-four'); INSERT INTO t2 VALUES(6949, 68375, 'sixty-eight thousand three hundred seventy-five'); INSERT INTO t2 VALUES(6950, 22814, 'twenty-two thousand eight hundred fourteen'); INSERT INTO t2 VALUES(6951, 12251, 'twelve thousand two hundred fifty-one'); INSERT INTO t2 VALUES(6952, 67307, 'sixty-seven thousand three hundred seven'); INSERT INTO t2 VALUES(6953, 91833, 'ninety-one thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(6954, 89215, 'eighty-nine thousand two hundred fifteen'); INSERT INTO t2 VALUES(6955, 9285, 'nine thousand two hundred eighty-five'); INSERT INTO t2 VALUES(6956, 84710, 'eighty-four thousand seven hundred ten'); INSERT INTO t2 VALUES(6957, 14144, 'fourteen thousand one hundred forty-four'); INSERT INTO t2 VALUES(6958, 45960, 'forty-five thousand nine hundred sixty'); INSERT INTO t2 VALUES(6959, 9668, 'nine thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(6960, 52309, 'fifty-two thousand three hundred nine'); INSERT INTO t2 VALUES(6961, 79198, 'seventy-nine thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(6962, 8711, 'eight thousand seven hundred eleven'); INSERT INTO t2 VALUES(6963, 31513, 'thirty-one thousand five hundred thirteen'); INSERT INTO t2 VALUES(6964, 68737, 'sixty-eight thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(6965, 7604, 'seven thousand six hundred four'); INSERT INTO t2 VALUES(6966, 51620, 'fifty-one thousand six hundred twenty'); INSERT INTO t2 VALUES(6967, 10426, 'ten thousand four hundred twenty-six'); INSERT INTO t2 VALUES(6968, 17702, 'seventeen thousand seven hundred two'); INSERT INTO t2 VALUES(6969, 42070, 'forty-two thousand seventy'); INSERT INTO t2 VALUES(6970, 10874, 'ten thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(6971, 25463, 'twenty-five thousand four hundred sixty-three'); INSERT INTO t2 VALUES(6972, 43564, 'forty-three thousand five hundred sixty-four'); INSERT INTO t2 VALUES(6973, 91781, 'ninety-one thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(6974, 5253, 'five thousand two hundred fifty-three'); INSERT INTO t2 VALUES(6975, 4171, 'four thousand one hundred seventy-one'); INSERT INTO t2 VALUES(6976, 26368, 'twenty-six thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(6977, 32680, 'thirty-two thousand six hundred eighty'); INSERT INTO t2 VALUES(6978, 74249, 'seventy-four thousand two hundred forty-nine'); INSERT INTO t2 VALUES(6979, 61362, 'sixty-one thousand three hundred sixty-two'); INSERT INTO t2 VALUES(6980, 65168, 'sixty-five thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(6981, 4076, 'four thousand seventy-six'); INSERT INTO t2 VALUES(6982, 64368, 'sixty-four thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(6983, 71973, 'seventy-one thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(6984, 36830, 'thirty-six thousand eight hundred thirty'); INSERT INTO t2 VALUES(6985, 91370, 'ninety-one thousand three hundred seventy'); INSERT INTO t2 VALUES(6986, 64732, 'sixty-four thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(6987, 14905, 'fourteen thousand nine hundred five'); INSERT INTO t2 VALUES(6988, 35130, 'thirty-five thousand one hundred thirty'); INSERT INTO t2 VALUES(6989, 41914, 'forty-one thousand nine hundred fourteen'); INSERT INTO t2 VALUES(6990, 51521, 'fifty-one thousand five hundred twenty-one'); INSERT INTO t2 VALUES(6991, 58490, 'fifty-eight thousand four hundred ninety'); INSERT INTO t2 VALUES(6992, 49421, 'forty-nine thousand four hundred twenty-one'); INSERT INTO t2 VALUES(6993, 98396, 'ninety-eight thousand three hundred ninety-six'); INSERT INTO t2 VALUES(6994, 50358, 'fifty thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(6995, 57482, 'fifty-seven thousand four hundred eighty-two'); INSERT INTO t2 VALUES(6996, 46105, 'forty-six thousand one hundred five'); INSERT INTO t2 VALUES(6997, 847, 'eight hundred forty-seven'); INSERT INTO t2 VALUES(6998, 40844, 'forty thousand eight hundred forty-four'); INSERT INTO t2 VALUES(6999, 87739, 'eighty-seven thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(7000, 37428, 'thirty-seven thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(7001, 49604, 'forty-nine thousand six hundred four'); INSERT INTO t2 VALUES(7002, 78936, 'seventy-eight thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(7003, 89645, 'eighty-nine thousand six hundred forty-five'); INSERT INTO t2 VALUES(7004, 86177, 'eighty-six thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(7005, 17366, 'seventeen thousand three hundred sixty-six'); INSERT INTO t2 VALUES(7006, 31491, 'thirty-one thousand four hundred ninety-one'); INSERT INTO t2 VALUES(7007, 41212, 'forty-one thousand two hundred twelve'); INSERT INTO t2 VALUES(7008, 43175, 'forty-three thousand one hundred seventy-five'); INSERT INTO t2 VALUES(7009, 2477, 'two thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(7010, 6010, 'six thousand ten'); INSERT INTO t2 VALUES(7011, 69722, 'sixty-nine thousand seven hundred twenty-two'); INSERT INTO t2 VALUES(7012, 27385, 'twenty-seven thousand three hundred eighty-five'); INSERT INTO t2 VALUES(7013, 45249, 'forty-five thousand two hundred forty-nine'); INSERT INTO t2 VALUES(7014, 28782, 'twenty-eight thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(7015, 141, 'one hundred forty-one'); INSERT INTO t2 VALUES(7016, 80806, 'eighty thousand eight hundred six'); INSERT INTO t2 VALUES(7017, 84533, 'eighty-four thousand five hundred thirty-three'); INSERT INTO t2 VALUES(7018, 12518, 'twelve thousand five hundred eighteen'); INSERT INTO t2 VALUES(7019, 91872, 'ninety-one thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(7020, 72529, 'seventy-two thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(7021, 21474, 'twenty-one thousand four hundred seventy-four'); INSERT INTO t2 VALUES(7022, 23707, 'twenty-three thousand seven hundred seven'); INSERT INTO t2 VALUES(7023, 52041, 'fifty-two thousand forty-one'); INSERT INTO t2 VALUES(7024, 36648, 'thirty-six thousand six hundred forty-eight'); INSERT INTO t2 VALUES(7025, 39847, 'thirty-nine thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(7026, 53629, 'fifty-three thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(7027, 7427, 'seven thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(7028, 75143, 'seventy-five thousand one hundred forty-three'); INSERT INTO t2 VALUES(7029, 54824, 'fifty-four thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(7030, 36351, 'thirty-six thousand three hundred fifty-one'); INSERT INTO t2 VALUES(7031, 93789, 'ninety-three thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(7032, 95852, 'ninety-five thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(7033, 32725, 'thirty-two thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(7034, 48260, 'forty-eight thousand two hundred sixty'); INSERT INTO t2 VALUES(7035, 68480, 'sixty-eight thousand four hundred eighty'); INSERT INTO t2 VALUES(7036, 33039, 'thirty-three thousand thirty-nine'); INSERT INTO t2 VALUES(7037, 50746, 'fifty thousand seven hundred forty-six'); INSERT INTO t2 VALUES(7038, 62754, 'sixty-two thousand seven hundred fifty-four'); INSERT INTO t2 VALUES(7039, 26859, 'twenty-six thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(7040, 32622, 'thirty-two thousand six hundred twenty-two'); INSERT INTO t2 VALUES(7041, 1123, 'one thousand one hundred twenty-three'); INSERT INTO t2 VALUES(7042, 73551, 'seventy-three thousand five hundred fifty-one'); INSERT INTO t2 VALUES(7043, 87616, 'eighty-seven thousand six hundred sixteen'); INSERT INTO t2 VALUES(7044, 78741, 'seventy-eight thousand seven hundred forty-one'); INSERT INTO t2 VALUES(7045, 15746, 'fifteen thousand seven hundred forty-six'); INSERT INTO t2 VALUES(7046, 75876, 'seventy-five thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(7047, 47990, 'forty-seven thousand nine hundred ninety'); INSERT INTO t2 VALUES(7048, 15987, 'fifteen thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(7049, 13907, 'thirteen thousand nine hundred seven'); INSERT INTO t2 VALUES(7050, 7052, 'seven thousand fifty-two'); INSERT INTO t2 VALUES(7051, 73916, 'seventy-three thousand nine hundred sixteen'); INSERT INTO t2 VALUES(7052, 4671, 'four thousand six hundred seventy-one'); INSERT INTO t2 VALUES(7053, 72315, 'seventy-two thousand three hundred fifteen'); INSERT INTO t2 VALUES(7054, 74506, 'seventy-four thousand five hundred six'); INSERT INTO t2 VALUES(7055, 11918, 'eleven thousand nine hundred eighteen'); INSERT INTO t2 VALUES(7056, 57309, 'fifty-seven thousand three hundred nine'); INSERT INTO t2 VALUES(7057, 13626, 'thirteen thousand six hundred twenty-six'); INSERT INTO t2 VALUES(7058, 48392, 'forty-eight thousand three hundred ninety-two'); INSERT INTO t2 VALUES(7059, 47636, 'forty-seven thousand six hundred thirty-six'); INSERT INTO t2 VALUES(7060, 18743, 'eighteen thousand seven hundred forty-three'); INSERT INTO t2 VALUES(7061, 38692, 'thirty-eight thousand six hundred ninety-two'); INSERT INTO t2 VALUES(7062, 70530, 'seventy thousand five hundred thirty'); INSERT INTO t2 VALUES(7063, 62964, 'sixty-two thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(7064, 73613, 'seventy-three thousand six hundred thirteen'); INSERT INTO t2 VALUES(7065, 59421, 'fifty-nine thousand four hundred twenty-one'); INSERT INTO t2 VALUES(7066, 5700, 'five thousand seven hundred'); INSERT INTO t2 VALUES(7067, 27176, 'twenty-seven thousand one hundred seventy-six'); INSERT INTO t2 VALUES(7068, 48998, 'forty-eight thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(7069, 79311, 'seventy-nine thousand three hundred eleven'); INSERT INTO t2 VALUES(7070, 73508, 'seventy-three thousand five hundred eight'); INSERT INTO t2 VALUES(7071, 2711, 'two thousand seven hundred eleven'); INSERT INTO t2 VALUES(7072, 25577, 'twenty-five thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(7073, 61225, 'sixty-one thousand two hundred twenty-five'); INSERT INTO t2 VALUES(7074, 64789, 'sixty-four thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(7075, 74509, 'seventy-four thousand five hundred nine'); INSERT INTO t2 VALUES(7076, 29661, 'twenty-nine thousand six hundred sixty-one'); INSERT INTO t2 VALUES(7077, 82521, 'eighty-two thousand five hundred twenty-one'); INSERT INTO t2 VALUES(7078, 83901, 'eighty-three thousand nine hundred one'); INSERT INTO t2 VALUES(7079, 82200, 'eighty-two thousand two hundred'); INSERT INTO t2 VALUES(7080, 81811, 'eighty-one thousand eight hundred eleven'); INSERT INTO t2 VALUES(7081, 41680, 'forty-one thousand six hundred eighty'); INSERT INTO t2 VALUES(7082, 83328, 'eighty-three thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(7083, 15653, 'fifteen thousand six hundred fifty-three'); INSERT INTO t2 VALUES(7084, 56438, 'fifty-six thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(7085, 58737, 'fifty-eight thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(7086, 41835, 'forty-one thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(7087, 28160, 'twenty-eight thousand one hundred sixty'); INSERT INTO t2 VALUES(7088, 65510, 'sixty-five thousand five hundred ten'); INSERT INTO t2 VALUES(7089, 56165, 'fifty-six thousand one hundred sixty-five'); INSERT INTO t2 VALUES(7090, 25838, 'twenty-five thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(7091, 61693, 'sixty-one thousand six hundred ninety-three'); INSERT INTO t2 VALUES(7092, 36263, 'thirty-six thousand two hundred sixty-three'); INSERT INTO t2 VALUES(7093, 24346, 'twenty-four thousand three hundred forty-six'); INSERT INTO t2 VALUES(7094, 97724, 'ninety-seven thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(7095, 47865, 'forty-seven thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(7096, 80729, 'eighty thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(7097, 60014, 'sixty thousand fourteen'); INSERT INTO t2 VALUES(7098, 33462, 'thirty-three thousand four hundred sixty-two'); INSERT INTO t2 VALUES(7099, 60569, 'sixty thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(7100, 55267, 'fifty-five thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(7101, 96726, 'ninety-six thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(7102, 11627, 'eleven thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(7103, 95666, 'ninety-five thousand six hundred sixty-six'); INSERT INTO t2 VALUES(7104, 90785, 'ninety thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(7105, 46858, 'forty-six thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(7106, 23384, 'twenty-three thousand three hundred eighty-four'); INSERT INTO t2 VALUES(7107, 97789, 'ninety-seven thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(7108, 59434, 'fifty-nine thousand four hundred thirty-four'); INSERT INTO t2 VALUES(7109, 79464, 'seventy-nine thousand four hundred sixty-four'); INSERT INTO t2 VALUES(7110, 76330, 'seventy-six thousand three hundred thirty'); INSERT INTO t2 VALUES(7111, 53787, 'fifty-three thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(7112, 69766, 'sixty-nine thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(7113, 52806, 'fifty-two thousand eight hundred six'); INSERT INTO t2 VALUES(7114, 45628, 'forty-five thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(7115, 3361, 'three thousand three hundred sixty-one'); INSERT INTO t2 VALUES(7116, 75441, 'seventy-five thousand four hundred forty-one'); INSERT INTO t2 VALUES(7117, 75175, 'seventy-five thousand one hundred seventy-five'); INSERT INTO t2 VALUES(7118, 74744, 'seventy-four thousand seven hundred forty-four'); INSERT INTO t2 VALUES(7119, 54538, 'fifty-four thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(7120, 76323, 'seventy-six thousand three hundred twenty-three'); INSERT INTO t2 VALUES(7121, 72204, 'seventy-two thousand two hundred four'); INSERT INTO t2 VALUES(7122, 86654, 'eighty-six thousand six hundred fifty-four'); INSERT INTO t2 VALUES(7123, 28364, 'twenty-eight thousand three hundred sixty-four'); INSERT INTO t2 VALUES(7124, 32182, 'thirty-two thousand one hundred eighty-two'); INSERT INTO t2 VALUES(7125, 71417, 'seventy-one thousand four hundred seventeen'); INSERT INTO t2 VALUES(7126, 48162, 'forty-eight thousand one hundred sixty-two'); INSERT INTO t2 VALUES(7127, 5968, 'five thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(7128, 11580, 'eleven thousand five hundred eighty'); INSERT INTO t2 VALUES(7129, 30605, 'thirty thousand six hundred five'); INSERT INTO t2 VALUES(7130, 71480, 'seventy-one thousand four hundred eighty'); INSERT INTO t2 VALUES(7131, 98055, 'ninety-eight thousand fifty-five'); INSERT INTO t2 VALUES(7132, 53802, 'fifty-three thousand eight hundred two'); INSERT INTO t2 VALUES(7133, 78630, 'seventy-eight thousand six hundred thirty'); INSERT INTO t2 VALUES(7134, 77822, 'seventy-seven thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(7135, 61816, 'sixty-one thousand eight hundred sixteen'); INSERT INTO t2 VALUES(7136, 41188, 'forty-one thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(7137, 96746, 'ninety-six thousand seven hundred forty-six'); INSERT INTO t2 VALUES(7138, 57021, 'fifty-seven thousand twenty-one'); INSERT INTO t2 VALUES(7139, 74719, 'seventy-four thousand seven hundred nineteen'); INSERT INTO t2 VALUES(7140, 21455, 'twenty-one thousand four hundred fifty-five'); INSERT INTO t2 VALUES(7141, 21564, 'twenty-one thousand five hundred sixty-four'); INSERT INTO t2 VALUES(7142, 58682, 'fifty-eight thousand six hundred eighty-two'); INSERT INTO t2 VALUES(7143, 98656, 'ninety-eight thousand six hundred fifty-six'); INSERT INTO t2 VALUES(7144, 95290, 'ninety-five thousand two hundred ninety'); INSERT INTO t2 VALUES(7145, 59429, 'fifty-nine thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(7146, 52039, 'fifty-two thousand thirty-nine'); INSERT INTO t2 VALUES(7147, 26126, 'twenty-six thousand one hundred twenty-six'); INSERT INTO t2 VALUES(7148, 76788, 'seventy-six thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(7149, 54726, 'fifty-four thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(7150, 87468, 'eighty-seven thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(7151, 96623, 'ninety-six thousand six hundred twenty-three'); INSERT INTO t2 VALUES(7152, 52206, 'fifty-two thousand two hundred six'); INSERT INTO t2 VALUES(7153, 90161, 'ninety thousand one hundred sixty-one'); INSERT INTO t2 VALUES(7154, 28158, 'twenty-eight thousand one hundred fifty-eight'); INSERT INTO t2 VALUES(7155, 72176, 'seventy-two thousand one hundred seventy-six'); INSERT INTO t2 VALUES(7156, 5698, 'five thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(7157, 8426, 'eight thousand four hundred twenty-six'); INSERT INTO t2 VALUES(7158, 92481, 'ninety-two thousand four hundred eighty-one'); INSERT INTO t2 VALUES(7159, 2162, 'two thousand one hundred sixty-two'); INSERT INTO t2 VALUES(7160, 19418, 'nineteen thousand four hundred eighteen'); INSERT INTO t2 VALUES(7161, 83044, 'eighty-three thousand forty-four'); INSERT INTO t2 VALUES(7162, 83576, 'eighty-three thousand five hundred seventy-six'); INSERT INTO t2 VALUES(7163, 1767, 'one thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(7164, 96772, 'ninety-six thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(7165, 22264, 'twenty-two thousand two hundred sixty-four'); INSERT INTO t2 VALUES(7166, 77369, 'seventy-seven thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(7167, 15079, 'fifteen thousand seventy-nine'); INSERT INTO t2 VALUES(7168, 60060, 'sixty thousand sixty'); INSERT INTO t2 VALUES(7169, 35293, 'thirty-five thousand two hundred ninety-three'); INSERT INTO t2 VALUES(7170, 18806, 'eighteen thousand eight hundred six'); INSERT INTO t2 VALUES(7171, 2635, 'two thousand six hundred thirty-five'); INSERT INTO t2 VALUES(7172, 68586, 'sixty-eight thousand five hundred eighty-six'); INSERT INTO t2 VALUES(7173, 90063, 'ninety thousand sixty-three'); INSERT INTO t2 VALUES(7174, 27121, 'twenty-seven thousand one hundred twenty-one'); INSERT INTO t2 VALUES(7175, 23663, 'twenty-three thousand six hundred sixty-three'); INSERT INTO t2 VALUES(7176, 12320, 'twelve thousand three hundred twenty'); INSERT INTO t2 VALUES(7177, 47548, 'forty-seven thousand five hundred forty-eight'); INSERT INTO t2 VALUES(7178, 73974, 'seventy-three thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(7179, 72131, 'seventy-two thousand one hundred thirty-one'); INSERT INTO t2 VALUES(7180, 63094, 'sixty-three thousand ninety-four'); INSERT INTO t2 VALUES(7181, 70707, 'seventy thousand seven hundred seven'); INSERT INTO t2 VALUES(7182, 83552, 'eighty-three thousand five hundred fifty-two'); INSERT INTO t2 VALUES(7183, 1399, 'one thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(7184, 17442, 'seventeen thousand four hundred forty-two'); INSERT INTO t2 VALUES(7185, 48623, 'forty-eight thousand six hundred twenty-three'); INSERT INTO t2 VALUES(7186, 23729, 'twenty-three thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(7187, 72285, 'seventy-two thousand two hundred eighty-five'); INSERT INTO t2 VALUES(7188, 39670, 'thirty-nine thousand six hundred seventy'); INSERT INTO t2 VALUES(7189, 60904, 'sixty thousand nine hundred four'); INSERT INTO t2 VALUES(7190, 1785, 'one thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(7191, 84436, 'eighty-four thousand four hundred thirty-six'); INSERT INTO t2 VALUES(7192, 70556, 'seventy thousand five hundred fifty-six'); INSERT INTO t2 VALUES(7193, 32525, 'thirty-two thousand five hundred twenty-five'); INSERT INTO t2 VALUES(7194, 41107, 'forty-one thousand one hundred seven'); INSERT INTO t2 VALUES(7195, 71807, 'seventy-one thousand eight hundred seven'); INSERT INTO t2 VALUES(7196, 22727, 'twenty-two thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(7197, 70424, 'seventy thousand four hundred twenty-four'); INSERT INTO t2 VALUES(7198, 92449, 'ninety-two thousand four hundred forty-nine'); INSERT INTO t2 VALUES(7199, 52643, 'fifty-two thousand six hundred forty-three'); INSERT INTO t2 VALUES(7200, 16081, 'sixteen thousand eighty-one'); INSERT INTO t2 VALUES(7201, 60250, 'sixty thousand two hundred fifty'); INSERT INTO t2 VALUES(7202, 94701, 'ninety-four thousand seven hundred one'); INSERT INTO t2 VALUES(7203, 90475, 'ninety thousand four hundred seventy-five'); INSERT INTO t2 VALUES(7204, 12219, 'twelve thousand two hundred nineteen'); INSERT INTO t2 VALUES(7205, 36279, 'thirty-six thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(7206, 43716, 'forty-three thousand seven hundred sixteen'); INSERT INTO t2 VALUES(7207, 52901, 'fifty-two thousand nine hundred one'); INSERT INTO t2 VALUES(7208, 78651, 'seventy-eight thousand six hundred fifty-one'); INSERT INTO t2 VALUES(7209, 48687, 'forty-eight thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(7210, 28557, 'twenty-eight thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(7211, 90629, 'ninety thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(7212, 27021, 'twenty-seven thousand twenty-one'); INSERT INTO t2 VALUES(7213, 31323, 'thirty-one thousand three hundred twenty-three'); INSERT INTO t2 VALUES(7214, 47663, 'forty-seven thousand six hundred sixty-three'); INSERT INTO t2 VALUES(7215, 8334, 'eight thousand three hundred thirty-four'); INSERT INTO t2 VALUES(7216, 59740, 'fifty-nine thousand seven hundred forty'); INSERT INTO t2 VALUES(7217, 42329, 'forty-two thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(7218, 52985, 'fifty-two thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(7219, 22678, 'twenty-two thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(7220, 53115, 'fifty-three thousand one hundred fifteen'); INSERT INTO t2 VALUES(7221, 85625, 'eighty-five thousand six hundred twenty-five'); INSERT INTO t2 VALUES(7222, 44904, 'forty-four thousand nine hundred four'); INSERT INTO t2 VALUES(7223, 57919, 'fifty-seven thousand nine hundred nineteen'); INSERT INTO t2 VALUES(7224, 81652, 'eighty-one thousand six hundred fifty-two'); INSERT INTO t2 VALUES(7225, 29091, 'twenty-nine thousand ninety-one'); INSERT INTO t2 VALUES(7226, 35671, 'thirty-five thousand six hundred seventy-one'); INSERT INTO t2 VALUES(7227, 8807, 'eight thousand eight hundred seven'); INSERT INTO t2 VALUES(7228, 56823, 'fifty-six thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(7229, 39061, 'thirty-nine thousand sixty-one'); INSERT INTO t2 VALUES(7230, 52089, 'fifty-two thousand eighty-nine'); INSERT INTO t2 VALUES(7231, 25385, 'twenty-five thousand three hundred eighty-five'); INSERT INTO t2 VALUES(7232, 56523, 'fifty-six thousand five hundred twenty-three'); INSERT INTO t2 VALUES(7233, 1270, 'one thousand two hundred seventy'); INSERT INTO t2 VALUES(7234, 69681, 'sixty-nine thousand six hundred eighty-one'); INSERT INTO t2 VALUES(7235, 34725, 'thirty-four thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(7236, 14204, 'fourteen thousand two hundred four'); INSERT INTO t2 VALUES(7237, 31187, 'thirty-one thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(7238, 3064, 'three thousand sixty-four'); INSERT INTO t2 VALUES(7239, 41116, 'forty-one thousand one hundred sixteen'); INSERT INTO t2 VALUES(7240, 32053, 'thirty-two thousand fifty-three'); INSERT INTO t2 VALUES(7241, 37747, 'thirty-seven thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(7242, 51524, 'fifty-one thousand five hundred twenty-four'); INSERT INTO t2 VALUES(7243, 70906, 'seventy thousand nine hundred six'); INSERT INTO t2 VALUES(7244, 57027, 'fifty-seven thousand twenty-seven'); INSERT INTO t2 VALUES(7245, 12947, 'twelve thousand nine hundred forty-seven'); INSERT INTO t2 VALUES(7246, 15873, 'fifteen thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(7247, 14092, 'fourteen thousand ninety-two'); INSERT INTO t2 VALUES(7248, 28021, 'twenty-eight thousand twenty-one'); INSERT INTO t2 VALUES(7249, 68997, 'sixty-eight thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(7250, 60229, 'sixty thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(7251, 23600, 'twenty-three thousand six hundred'); INSERT INTO t2 VALUES(7252, 21443, 'twenty-one thousand four hundred forty-three'); INSERT INTO t2 VALUES(7253, 88451, 'eighty-eight thousand four hundred fifty-one'); INSERT INTO t2 VALUES(7254, 22689, 'twenty-two thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(7255, 85222, 'eighty-five thousand two hundred twenty-two'); INSERT INTO t2 VALUES(7256, 39886, 'thirty-nine thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(7257, 9680, 'nine thousand six hundred eighty'); INSERT INTO t2 VALUES(7258, 50619, 'fifty thousand six hundred nineteen'); INSERT INTO t2 VALUES(7259, 73014, 'seventy-three thousand fourteen'); INSERT INTO t2 VALUES(7260, 10557, 'ten thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(7261, 23929, 'twenty-three thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(7262, 75594, 'seventy-five thousand five hundred ninety-four'); INSERT INTO t2 VALUES(7263, 70513, 'seventy thousand five hundred thirteen'); INSERT INTO t2 VALUES(7264, 31217, 'thirty-one thousand two hundred seventeen'); INSERT INTO t2 VALUES(7265, 24165, 'twenty-four thousand one hundred sixty-five'); INSERT INTO t2 VALUES(7266, 74008, 'seventy-four thousand eight'); INSERT INTO t2 VALUES(7267, 69773, 'sixty-nine thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(7268, 326, 'three hundred twenty-six'); INSERT INTO t2 VALUES(7269, 94924, 'ninety-four thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(7270, 79707, 'seventy-nine thousand seven hundred seven'); INSERT INTO t2 VALUES(7271, 51429, 'fifty-one thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(7272, 22659, 'twenty-two thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(7273, 87289, 'eighty-seven thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(7274, 90894, 'ninety thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(7275, 74629, 'seventy-four thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(7276, 57761, 'fifty-seven thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(7277, 95848, 'ninety-five thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(7278, 58163, 'fifty-eight thousand one hundred sixty-three'); INSERT INTO t2 VALUES(7279, 50309, 'fifty thousand three hundred nine'); INSERT INTO t2 VALUES(7280, 20537, 'twenty thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(7281, 28395, 'twenty-eight thousand three hundred ninety-five'); INSERT INTO t2 VALUES(7282, 53961, 'fifty-three thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(7283, 47561, 'forty-seven thousand five hundred sixty-one'); INSERT INTO t2 VALUES(7284, 28769, 'twenty-eight thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(7285, 86346, 'eighty-six thousand three hundred forty-six'); INSERT INTO t2 VALUES(7286, 6277, 'six thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(7287, 49920, 'forty-nine thousand nine hundred twenty'); INSERT INTO t2 VALUES(7288, 43192, 'forty-three thousand one hundred ninety-two'); INSERT INTO t2 VALUES(7289, 24672, 'twenty-four thousand six hundred seventy-two'); INSERT INTO t2 VALUES(7290, 31494, 'thirty-one thousand four hundred ninety-four'); INSERT INTO t2 VALUES(7291, 55066, 'fifty-five thousand sixty-six'); INSERT INTO t2 VALUES(7292, 96699, 'ninety-six thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(7293, 79530, 'seventy-nine thousand five hundred thirty'); INSERT INTO t2 VALUES(7294, 43758, 'forty-three thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(7295, 67039, 'sixty-seven thousand thirty-nine'); INSERT INTO t2 VALUES(7296, 48547, 'forty-eight thousand five hundred forty-seven'); INSERT INTO t2 VALUES(7297, 50040, 'fifty thousand forty'); INSERT INTO t2 VALUES(7298, 66898, 'sixty-six thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(7299, 58823, 'fifty-eight thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(7300, 85770, 'eighty-five thousand seven hundred seventy'); INSERT INTO t2 VALUES(7301, 44663, 'forty-four thousand six hundred sixty-three'); INSERT INTO t2 VALUES(7302, 18667, 'eighteen thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(7303, 29835, 'twenty-nine thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(7304, 56850, 'fifty-six thousand eight hundred fifty'); INSERT INTO t2 VALUES(7305, 62411, 'sixty-two thousand four hundred eleven'); INSERT INTO t2 VALUES(7306, 33775, 'thirty-three thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(7307, 90386, 'ninety thousand three hundred eighty-six'); INSERT INTO t2 VALUES(7308, 70117, 'seventy thousand one hundred seventeen'); INSERT INTO t2 VALUES(7309, 74740, 'seventy-four thousand seven hundred forty'); INSERT INTO t2 VALUES(7310, 6417, 'six thousand four hundred seventeen'); INSERT INTO t2 VALUES(7311, 32319, 'thirty-two thousand three hundred nineteen'); INSERT INTO t2 VALUES(7312, 50577, 'fifty thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(7313, 2107, 'two thousand one hundred seven'); INSERT INTO t2 VALUES(7314, 75768, 'seventy-five thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(7315, 12697, 'twelve thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(7316, 38568, 'thirty-eight thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(7317, 34363, 'thirty-four thousand three hundred sixty-three'); INSERT INTO t2 VALUES(7318, 27633, 'twenty-seven thousand six hundred thirty-three'); INSERT INTO t2 VALUES(7319, 25184, 'twenty-five thousand one hundred eighty-four'); INSERT INTO t2 VALUES(7320, 90043, 'ninety thousand forty-three'); INSERT INTO t2 VALUES(7321, 15466, 'fifteen thousand four hundred sixty-six'); INSERT INTO t2 VALUES(7322, 98395, 'ninety-eight thousand three hundred ninety-five'); INSERT INTO t2 VALUES(7323, 86939, 'eighty-six thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(7324, 71406, 'seventy-one thousand four hundred six'); INSERT INTO t2 VALUES(7325, 34343, 'thirty-four thousand three hundred forty-three'); INSERT INTO t2 VALUES(7326, 69196, 'sixty-nine thousand one hundred ninety-six'); INSERT INTO t2 VALUES(7327, 28252, 'twenty-eight thousand two hundred fifty-two'); INSERT INTO t2 VALUES(7328, 38711, 'thirty-eight thousand seven hundred eleven'); INSERT INTO t2 VALUES(7329, 60611, 'sixty thousand six hundred eleven'); INSERT INTO t2 VALUES(7330, 31187, 'thirty-one thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(7331, 73989, 'seventy-three thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(7332, 12806, 'twelve thousand eight hundred six'); INSERT INTO t2 VALUES(7333, 4428, 'four thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(7334, 52658, 'fifty-two thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(7335, 26588, 'twenty-six thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(7336, 93535, 'ninety-three thousand five hundred thirty-five'); INSERT INTO t2 VALUES(7337, 65359, 'sixty-five thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(7338, 66113, 'sixty-six thousand one hundred thirteen'); INSERT INTO t2 VALUES(7339, 39558, 'thirty-nine thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(7340, 11391, 'eleven thousand three hundred ninety-one'); INSERT INTO t2 VALUES(7341, 57170, 'fifty-seven thousand one hundred seventy'); INSERT INTO t2 VALUES(7342, 3581, 'three thousand five hundred eighty-one'); INSERT INTO t2 VALUES(7343, 69696, 'sixty-nine thousand six hundred ninety-six'); INSERT INTO t2 VALUES(7344, 81121, 'eighty-one thousand one hundred twenty-one'); INSERT INTO t2 VALUES(7345, 21914, 'twenty-one thousand nine hundred fourteen'); INSERT INTO t2 VALUES(7346, 74050, 'seventy-four thousand fifty'); INSERT INTO t2 VALUES(7347, 60829, 'sixty thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(7348, 6834, 'six thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(7349, 64576, 'sixty-four thousand five hundred seventy-six'); INSERT INTO t2 VALUES(7350, 13583, 'thirteen thousand five hundred eighty-three'); INSERT INTO t2 VALUES(7351, 56388, 'fifty-six thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(7352, 62811, 'sixty-two thousand eight hundred eleven'); INSERT INTO t2 VALUES(7353, 37727, 'thirty-seven thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(7354, 4532, 'four thousand five hundred thirty-two'); INSERT INTO t2 VALUES(7355, 14187, 'fourteen thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(7356, 69094, 'sixty-nine thousand ninety-four'); INSERT INTO t2 VALUES(7357, 31945, 'thirty-one thousand nine hundred forty-five'); INSERT INTO t2 VALUES(7358, 2093, 'two thousand ninety-three'); INSERT INTO t2 VALUES(7359, 3369, 'three thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(7360, 18640, 'eighteen thousand six hundred forty'); INSERT INTO t2 VALUES(7361, 25004, 'twenty-five thousand four'); INSERT INTO t2 VALUES(7362, 12074, 'twelve thousand seventy-four'); INSERT INTO t2 VALUES(7363, 34016, 'thirty-four thousand sixteen'); INSERT INTO t2 VALUES(7364, 40014, 'forty thousand fourteen'); INSERT INTO t2 VALUES(7365, 64857, 'sixty-four thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(7366, 51079, 'fifty-one thousand seventy-nine'); INSERT INTO t2 VALUES(7367, 88576, 'eighty-eight thousand five hundred seventy-six'); INSERT INTO t2 VALUES(7368, 9726, 'nine thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(7369, 8822, 'eight thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(7370, 34811, 'thirty-four thousand eight hundred eleven'); INSERT INTO t2 VALUES(7371, 80758, 'eighty thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(7372, 54617, 'fifty-four thousand six hundred seventeen'); INSERT INTO t2 VALUES(7373, 42541, 'forty-two thousand five hundred forty-one'); INSERT INTO t2 VALUES(7374, 3815, 'three thousand eight hundred fifteen'); INSERT INTO t2 VALUES(7375, 42879, 'forty-two thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(7376, 5202, 'five thousand two hundred two'); INSERT INTO t2 VALUES(7377, 50572, 'fifty thousand five hundred seventy-two'); INSERT INTO t2 VALUES(7378, 65409, 'sixty-five thousand four hundred nine'); INSERT INTO t2 VALUES(7379, 70497, 'seventy thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(7380, 96842, 'ninety-six thousand eight hundred forty-two'); INSERT INTO t2 VALUES(7381, 46539, 'forty-six thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(7382, 1095, 'one thousand ninety-five'); INSERT INTO t2 VALUES(7383, 97422, 'ninety-seven thousand four hundred twenty-two'); INSERT INTO t2 VALUES(7384, 88070, 'eighty-eight thousand seventy'); INSERT INTO t2 VALUES(7385, 13150, 'thirteen thousand one hundred fifty'); INSERT INTO t2 VALUES(7386, 52772, 'fifty-two thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(7387, 37085, 'thirty-seven thousand eighty-five'); INSERT INTO t2 VALUES(7388, 1011, 'one thousand eleven'); INSERT INTO t2 VALUES(7389, 15563, 'fifteen thousand five hundred sixty-three'); INSERT INTO t2 VALUES(7390, 38544, 'thirty-eight thousand five hundred forty-four'); INSERT INTO t2 VALUES(7391, 55831, 'fifty-five thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(7392, 27070, 'twenty-seven thousand seventy'); INSERT INTO t2 VALUES(7393, 15441, 'fifteen thousand four hundred forty-one'); INSERT INTO t2 VALUES(7394, 70654, 'seventy thousand six hundred fifty-four'); INSERT INTO t2 VALUES(7395, 52382, 'fifty-two thousand three hundred eighty-two'); INSERT INTO t2 VALUES(7396, 54344, 'fifty-four thousand three hundred forty-four'); INSERT INTO t2 VALUES(7397, 17325, 'seventeen thousand three hundred twenty-five'); INSERT INTO t2 VALUES(7398, 58157, 'fifty-eight thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(7399, 47176, 'forty-seven thousand one hundred seventy-six'); INSERT INTO t2 VALUES(7400, 55736, 'fifty-five thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(7401, 26334, 'twenty-six thousand three hundred thirty-four'); INSERT INTO t2 VALUES(7402, 99781, 'ninety-nine thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(7403, 57477, 'fifty-seven thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(7404, 29110, 'twenty-nine thousand one hundred ten'); INSERT INTO t2 VALUES(7405, 21429, 'twenty-one thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(7406, 76884, 'seventy-six thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(7407, 47046, 'forty-seven thousand forty-six'); INSERT INTO t2 VALUES(7408, 48753, 'forty-eight thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(7409, 63093, 'sixty-three thousand ninety-three'); INSERT INTO t2 VALUES(7410, 69577, 'sixty-nine thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(7411, 48992, 'forty-eight thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(7412, 43715, 'forty-three thousand seven hundred fifteen'); INSERT INTO t2 VALUES(7413, 82980, 'eighty-two thousand nine hundred eighty'); INSERT INTO t2 VALUES(7414, 89305, 'eighty-nine thousand three hundred five'); INSERT INTO t2 VALUES(7415, 66707, 'sixty-six thousand seven hundred seven'); INSERT INTO t2 VALUES(7416, 67756, 'sixty-seven thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(7417, 47398, 'forty-seven thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(7418, 72037, 'seventy-two thousand thirty-seven'); INSERT INTO t2 VALUES(7419, 50845, 'fifty thousand eight hundred forty-five'); INSERT INTO t2 VALUES(7420, 9216, 'nine thousand two hundred sixteen'); INSERT INTO t2 VALUES(7421, 18579, 'eighteen thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(7422, 38300, 'thirty-eight thousand three hundred'); INSERT INTO t2 VALUES(7423, 17222, 'seventeen thousand two hundred twenty-two'); INSERT INTO t2 VALUES(7424, 49143, 'forty-nine thousand one hundred forty-three'); INSERT INTO t2 VALUES(7425, 87515, 'eighty-seven thousand five hundred fifteen'); INSERT INTO t2 VALUES(7426, 73305, 'seventy-three thousand three hundred five'); INSERT INTO t2 VALUES(7427, 53735, 'fifty-three thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(7428, 95473, 'ninety-five thousand four hundred seventy-three'); INSERT INTO t2 VALUES(7429, 50421, 'fifty thousand four hundred twenty-one'); INSERT INTO t2 VALUES(7430, 2980, 'two thousand nine hundred eighty'); INSERT INTO t2 VALUES(7431, 50521, 'fifty thousand five hundred twenty-one'); INSERT INTO t2 VALUES(7432, 5811, 'five thousand eight hundred eleven'); INSERT INTO t2 VALUES(7433, 78960, 'seventy-eight thousand nine hundred sixty'); INSERT INTO t2 VALUES(7434, 72439, 'seventy-two thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(7435, 76914, 'seventy-six thousand nine hundred fourteen'); INSERT INTO t2 VALUES(7436, 41540, 'forty-one thousand five hundred forty'); INSERT INTO t2 VALUES(7437, 43029, 'forty-three thousand twenty-nine'); INSERT INTO t2 VALUES(7438, 24933, 'twenty-four thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(7439, 49859, 'forty-nine thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(7440, 8913, 'eight thousand nine hundred thirteen'); INSERT INTO t2 VALUES(7441, 30415, 'thirty thousand four hundred fifteen'); INSERT INTO t2 VALUES(7442, 41776, 'forty-one thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(7443, 20000, 'twenty thousand'); INSERT INTO t2 VALUES(7444, 34964, 'thirty-four thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(7445, 51821, 'fifty-one thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(7446, 40249, 'forty thousand two hundred forty-nine'); INSERT INTO t2 VALUES(7447, 47510, 'forty-seven thousand five hundred ten'); INSERT INTO t2 VALUES(7448, 95059, 'ninety-five thousand fifty-nine'); INSERT INTO t2 VALUES(7449, 84450, 'eighty-four thousand four hundred fifty'); INSERT INTO t2 VALUES(7450, 72587, 'seventy-two thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(7451, 21355, 'twenty-one thousand three hundred fifty-five'); INSERT INTO t2 VALUES(7452, 87515, 'eighty-seven thousand five hundred fifteen'); INSERT INTO t2 VALUES(7453, 23870, 'twenty-three thousand eight hundred seventy'); INSERT INTO t2 VALUES(7454, 21133, 'twenty-one thousand one hundred thirty-three'); INSERT INTO t2 VALUES(7455, 15582, 'fifteen thousand five hundred eighty-two'); INSERT INTO t2 VALUES(7456, 81860, 'eighty-one thousand eight hundred sixty'); INSERT INTO t2 VALUES(7457, 48135, 'forty-eight thousand one hundred thirty-five'); INSERT INTO t2 VALUES(7458, 47787, 'forty-seven thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(7459, 30531, 'thirty thousand five hundred thirty-one'); INSERT INTO t2 VALUES(7460, 97144, 'ninety-seven thousand one hundred forty-four'); INSERT INTO t2 VALUES(7461, 66513, 'sixty-six thousand five hundred thirteen'); INSERT INTO t2 VALUES(7462, 96659, 'ninety-six thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(7463, 45617, 'forty-five thousand six hundred seventeen'); INSERT INTO t2 VALUES(7464, 43237, 'forty-three thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(7465, 2471, 'two thousand four hundred seventy-one'); INSERT INTO t2 VALUES(7466, 82236, 'eighty-two thousand two hundred thirty-six'); INSERT INTO t2 VALUES(7467, 62891, 'sixty-two thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(7468, 15829, 'fifteen thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(7469, 57841, 'fifty-seven thousand eight hundred forty-one'); INSERT INTO t2 VALUES(7470, 21213, 'twenty-one thousand two hundred thirteen'); INSERT INTO t2 VALUES(7471, 76853, 'seventy-six thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(7472, 25941, 'twenty-five thousand nine hundred forty-one'); INSERT INTO t2 VALUES(7473, 82358, 'eighty-two thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(7474, 63626, 'sixty-three thousand six hundred twenty-six'); INSERT INTO t2 VALUES(7475, 73642, 'seventy-three thousand six hundred forty-two'); INSERT INTO t2 VALUES(7476, 69275, 'sixty-nine thousand two hundred seventy-five'); INSERT INTO t2 VALUES(7477, 23645, 'twenty-three thousand six hundred forty-five'); INSERT INTO t2 VALUES(7478, 23681, 'twenty-three thousand six hundred eighty-one'); INSERT INTO t2 VALUES(7479, 14696, 'fourteen thousand six hundred ninety-six'); INSERT INTO t2 VALUES(7480, 27515, 'twenty-seven thousand five hundred fifteen'); INSERT INTO t2 VALUES(7481, 62466, 'sixty-two thousand four hundred sixty-six'); INSERT INTO t2 VALUES(7482, 75667, 'seventy-five thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(7483, 81874, 'eighty-one thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(7484, 95866, 'ninety-five thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(7485, 36386, 'thirty-six thousand three hundred eighty-six'); INSERT INTO t2 VALUES(7486, 64485, 'sixty-four thousand four hundred eighty-five'); INSERT INTO t2 VALUES(7487, 90022, 'ninety thousand twenty-two'); INSERT INTO t2 VALUES(7488, 51619, 'fifty-one thousand six hundred nineteen'); INSERT INTO t2 VALUES(7489, 27169, 'twenty-seven thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(7490, 17655, 'seventeen thousand six hundred fifty-five'); INSERT INTO t2 VALUES(7491, 67188, 'sixty-seven thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(7492, 17321, 'seventeen thousand three hundred twenty-one'); INSERT INTO t2 VALUES(7493, 95245, 'ninety-five thousand two hundred forty-five'); INSERT INTO t2 VALUES(7494, 48780, 'forty-eight thousand seven hundred eighty'); INSERT INTO t2 VALUES(7495, 33982, 'thirty-three thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(7496, 61939, 'sixty-one thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(7497, 69069, 'sixty-nine thousand sixty-nine'); INSERT INTO t2 VALUES(7498, 62713, 'sixty-two thousand seven hundred thirteen'); INSERT INTO t2 VALUES(7499, 43685, 'forty-three thousand six hundred eighty-five'); INSERT INTO t2 VALUES(7500, 57927, 'fifty-seven thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(7501, 96470, 'ninety-six thousand four hundred seventy'); INSERT INTO t2 VALUES(7502, 35948, 'thirty-five thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(7503, 63060, 'sixty-three thousand sixty'); INSERT INTO t2 VALUES(7504, 44399, 'forty-four thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(7505, 97397, 'ninety-seven thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(7506, 89584, 'eighty-nine thousand five hundred eighty-four'); INSERT INTO t2 VALUES(7507, 58673, 'fifty-eight thousand six hundred seventy-three'); INSERT INTO t2 VALUES(7508, 89552, 'eighty-nine thousand five hundred fifty-two'); INSERT INTO t2 VALUES(7509, 53729, 'fifty-three thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(7510, 16507, 'sixteen thousand five hundred seven'); INSERT INTO t2 VALUES(7511, 68717, 'sixty-eight thousand seven hundred seventeen'); INSERT INTO t2 VALUES(7512, 80771, 'eighty thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(7513, 41974, 'forty-one thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(7514, 52507, 'fifty-two thousand five hundred seven'); INSERT INTO t2 VALUES(7515, 22505, 'twenty-two thousand five hundred five'); INSERT INTO t2 VALUES(7516, 28179, 'twenty-eight thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(7517, 42313, 'forty-two thousand three hundred thirteen'); INSERT INTO t2 VALUES(7518, 73205, 'seventy-three thousand two hundred five'); INSERT INTO t2 VALUES(7519, 35773, 'thirty-five thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(7520, 3191, 'three thousand one hundred ninety-one'); INSERT INTO t2 VALUES(7521, 99153, 'ninety-nine thousand one hundred fifty-three'); INSERT INTO t2 VALUES(7522, 36884, 'thirty-six thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(7523, 33393, 'thirty-three thousand three hundred ninety-three'); INSERT INTO t2 VALUES(7524, 78679, 'seventy-eight thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(7525, 33427, 'thirty-three thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(7526, 92166, 'ninety-two thousand one hundred sixty-six'); INSERT INTO t2 VALUES(7527, 57863, 'fifty-seven thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(7528, 48513, 'forty-eight thousand five hundred thirteen'); INSERT INTO t2 VALUES(7529, 64604, 'sixty-four thousand six hundred four'); INSERT INTO t2 VALUES(7530, 42568, 'forty-two thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(7531, 40599, 'forty thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(7532, 26112, 'twenty-six thousand one hundred twelve'); INSERT INTO t2 VALUES(7533, 64220, 'sixty-four thousand two hundred twenty'); INSERT INTO t2 VALUES(7534, 15706, 'fifteen thousand seven hundred six'); INSERT INTO t2 VALUES(7535, 40185, 'forty thousand one hundred eighty-five'); INSERT INTO t2 VALUES(7536, 1528, 'one thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(7537, 42906, 'forty-two thousand nine hundred six'); INSERT INTO t2 VALUES(7538, 33416, 'thirty-three thousand four hundred sixteen'); INSERT INTO t2 VALUES(7539, 12521, 'twelve thousand five hundred twenty-one'); INSERT INTO t2 VALUES(7540, 10976, 'ten thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(7541, 31686, 'thirty-one thousand six hundred eighty-six'); INSERT INTO t2 VALUES(7542, 53218, 'fifty-three thousand two hundred eighteen'); INSERT INTO t2 VALUES(7543, 49056, 'forty-nine thousand fifty-six'); INSERT INTO t2 VALUES(7544, 61375, 'sixty-one thousand three hundred seventy-five'); INSERT INTO t2 VALUES(7545, 70557, 'seventy thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(7546, 41451, 'forty-one thousand four hundred fifty-one'); INSERT INTO t2 VALUES(7547, 67002, 'sixty-seven thousand two'); INSERT INTO t2 VALUES(7548, 78676, 'seventy-eight thousand six hundred seventy-six'); INSERT INTO t2 VALUES(7549, 34278, 'thirty-four thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(7550, 92849, 'ninety-two thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(7551, 10020, 'ten thousand twenty'); INSERT INTO t2 VALUES(7552, 66557, 'sixty-six thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(7553, 58425, 'fifty-eight thousand four hundred twenty-five'); INSERT INTO t2 VALUES(7554, 31844, 'thirty-one thousand eight hundred forty-four'); INSERT INTO t2 VALUES(7555, 38934, 'thirty-eight thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(7556, 3768, 'three thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(7557, 11387, 'eleven thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(7558, 51096, 'fifty-one thousand ninety-six'); INSERT INTO t2 VALUES(7559, 2040, 'two thousand forty'); INSERT INTO t2 VALUES(7560, 73370, 'seventy-three thousand three hundred seventy'); INSERT INTO t2 VALUES(7561, 63765, 'sixty-three thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(7562, 5630, 'five thousand six hundred thirty'); INSERT INTO t2 VALUES(7563, 48149, 'forty-eight thousand one hundred forty-nine'); INSERT INTO t2 VALUES(7564, 65940, 'sixty-five thousand nine hundred forty'); INSERT INTO t2 VALUES(7565, 14696, 'fourteen thousand six hundred ninety-six'); INSERT INTO t2 VALUES(7566, 84264, 'eighty-four thousand two hundred sixty-four'); INSERT INTO t2 VALUES(7567, 28148, 'twenty-eight thousand one hundred forty-eight'); INSERT INTO t2 VALUES(7568, 56964, 'fifty-six thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(7569, 77611, 'seventy-seven thousand six hundred eleven'); INSERT INTO t2 VALUES(7570, 38955, 'thirty-eight thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(7571, 42357, 'forty-two thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(7572, 68317, 'sixty-eight thousand three hundred seventeen'); INSERT INTO t2 VALUES(7573, 9676, 'nine thousand six hundred seventy-six'); INSERT INTO t2 VALUES(7574, 97886, 'ninety-seven thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(7575, 5372, 'five thousand three hundred seventy-two'); INSERT INTO t2 VALUES(7576, 65924, 'sixty-five thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(7577, 33045, 'thirty-three thousand forty-five'); INSERT INTO t2 VALUES(7578, 49238, 'forty-nine thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(7579, 2480, 'two thousand four hundred eighty'); INSERT INTO t2 VALUES(7580, 39492, 'thirty-nine thousand four hundred ninety-two'); INSERT INTO t2 VALUES(7581, 91785, 'ninety-one thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(7582, 50532, 'fifty thousand five hundred thirty-two'); INSERT INTO t2 VALUES(7583, 57073, 'fifty-seven thousand seventy-three'); INSERT INTO t2 VALUES(7584, 37226, 'thirty-seven thousand two hundred twenty-six'); INSERT INTO t2 VALUES(7585, 44803, 'forty-four thousand eight hundred three'); INSERT INTO t2 VALUES(7586, 81713, 'eighty-one thousand seven hundred thirteen'); INSERT INTO t2 VALUES(7587, 85593, 'eighty-five thousand five hundred ninety-three'); INSERT INTO t2 VALUES(7588, 9911, 'nine thousand nine hundred eleven'); INSERT INTO t2 VALUES(7589, 81534, 'eighty-one thousand five hundred thirty-four'); INSERT INTO t2 VALUES(7590, 48184, 'forty-eight thousand one hundred eighty-four'); INSERT INTO t2 VALUES(7591, 8434, 'eight thousand four hundred thirty-four'); INSERT INTO t2 VALUES(7592, 97111, 'ninety-seven thousand one hundred eleven'); INSERT INTO t2 VALUES(7593, 81993, 'eighty-one thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(7594, 6325, 'six thousand three hundred twenty-five'); INSERT INTO t2 VALUES(7595, 3988, 'three thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(7596, 95168, 'ninety-five thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(7597, 92244, 'ninety-two thousand two hundred forty-four'); INSERT INTO t2 VALUES(7598, 14998, 'fourteen thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(7599, 26106, 'twenty-six thousand one hundred six'); INSERT INTO t2 VALUES(7600, 89553, 'eighty-nine thousand five hundred fifty-three'); INSERT INTO t2 VALUES(7601, 88785, 'eighty-eight thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(7602, 37747, 'thirty-seven thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(7603, 28314, 'twenty-eight thousand three hundred fourteen'); INSERT INTO t2 VALUES(7604, 94690, 'ninety-four thousand six hundred ninety'); INSERT INTO t2 VALUES(7605, 85341, 'eighty-five thousand three hundred forty-one'); INSERT INTO t2 VALUES(7606, 71559, 'seventy-one thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(7607, 44200, 'forty-four thousand two hundred'); INSERT INTO t2 VALUES(7608, 27012, 'twenty-seven thousand twelve'); INSERT INTO t2 VALUES(7609, 85555, 'eighty-five thousand five hundred fifty-five'); INSERT INTO t2 VALUES(7610, 66236, 'sixty-six thousand two hundred thirty-six'); INSERT INTO t2 VALUES(7611, 50861, 'fifty thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(7612, 58399, 'fifty-eight thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(7613, 88626, 'eighty-eight thousand six hundred twenty-six'); INSERT INTO t2 VALUES(7614, 2970, 'two thousand nine hundred seventy'); INSERT INTO t2 VALUES(7615, 45944, 'forty-five thousand nine hundred forty-four'); INSERT INTO t2 VALUES(7616, 97327, 'ninety-seven thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(7617, 51299, 'fifty-one thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(7618, 65136, 'sixty-five thousand one hundred thirty-six'); INSERT INTO t2 VALUES(7619, 41212, 'forty-one thousand two hundred twelve'); INSERT INTO t2 VALUES(7620, 24046, 'twenty-four thousand forty-six'); INSERT INTO t2 VALUES(7621, 34768, 'thirty-four thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(7622, 43164, 'forty-three thousand one hundred sixty-four'); INSERT INTO t2 VALUES(7623, 46960, 'forty-six thousand nine hundred sixty'); INSERT INTO t2 VALUES(7624, 93105, 'ninety-three thousand one hundred five'); INSERT INTO t2 VALUES(7625, 59291, 'fifty-nine thousand two hundred ninety-one'); INSERT INTO t2 VALUES(7626, 94936, 'ninety-four thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(7627, 33012, 'thirty-three thousand twelve'); INSERT INTO t2 VALUES(7628, 57210, 'fifty-seven thousand two hundred ten'); INSERT INTO t2 VALUES(7629, 89151, 'eighty-nine thousand one hundred fifty-one'); INSERT INTO t2 VALUES(7630, 37067, 'thirty-seven thousand sixty-seven'); INSERT INTO t2 VALUES(7631, 83823, 'eighty-three thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(7632, 43281, 'forty-three thousand two hundred eighty-one'); INSERT INTO t2 VALUES(7633, 43502, 'forty-three thousand five hundred two'); INSERT INTO t2 VALUES(7634, 88432, 'eighty-eight thousand four hundred thirty-two'); INSERT INTO t2 VALUES(7635, 96282, 'ninety-six thousand two hundred eighty-two'); INSERT INTO t2 VALUES(7636, 22310, 'twenty-two thousand three hundred ten'); INSERT INTO t2 VALUES(7637, 63184, 'sixty-three thousand one hundred eighty-four'); INSERT INTO t2 VALUES(7638, 38854, 'thirty-eight thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(7639, 32014, 'thirty-two thousand fourteen'); INSERT INTO t2 VALUES(7640, 47591, 'forty-seven thousand five hundred ninety-one'); INSERT INTO t2 VALUES(7641, 66203, 'sixty-six thousand two hundred three'); INSERT INTO t2 VALUES(7642, 10901, 'ten thousand nine hundred one'); INSERT INTO t2 VALUES(7643, 63363, 'sixty-three thousand three hundred sixty-three'); INSERT INTO t2 VALUES(7644, 40060, 'forty thousand sixty'); INSERT INTO t2 VALUES(7645, 89536, 'eighty-nine thousand five hundred thirty-six'); INSERT INTO t2 VALUES(7646, 13, 'thirteen'); INSERT INTO t2 VALUES(7647, 52827, 'fifty-two thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(7648, 76482, 'seventy-six thousand four hundred eighty-two'); INSERT INTO t2 VALUES(7649, 48210, 'forty-eight thousand two hundred ten'); INSERT INTO t2 VALUES(7650, 52849, 'fifty-two thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(7651, 33200, 'thirty-three thousand two hundred'); INSERT INTO t2 VALUES(7652, 58898, 'fifty-eight thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(7653, 24149, 'twenty-four thousand one hundred forty-nine'); INSERT INTO t2 VALUES(7654, 81107, 'eighty-one thousand one hundred seven'); INSERT INTO t2 VALUES(7655, 35910, 'thirty-five thousand nine hundred ten'); INSERT INTO t2 VALUES(7656, 38307, 'thirty-eight thousand three hundred seven'); INSERT INTO t2 VALUES(7657, 54300, 'fifty-four thousand three hundred'); INSERT INTO t2 VALUES(7658, 31626, 'thirty-one thousand six hundred twenty-six'); INSERT INTO t2 VALUES(7659, 4551, 'four thousand five hundred fifty-one'); INSERT INTO t2 VALUES(7660, 5962, 'five thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(7661, 2501, 'two thousand five hundred one'); INSERT INTO t2 VALUES(7662, 96696, 'ninety-six thousand six hundred ninety-six'); INSERT INTO t2 VALUES(7663, 88731, 'eighty-eight thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(7664, 74200, 'seventy-four thousand two hundred'); INSERT INTO t2 VALUES(7665, 17154, 'seventeen thousand one hundred fifty-four'); INSERT INTO t2 VALUES(7666, 13238, 'thirteen thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(7667, 48064, 'forty-eight thousand sixty-four'); INSERT INTO t2 VALUES(7668, 7940, 'seven thousand nine hundred forty'); INSERT INTO t2 VALUES(7669, 14029, 'fourteen thousand twenty-nine'); INSERT INTO t2 VALUES(7670, 40366, 'forty thousand three hundred sixty-six'); INSERT INTO t2 VALUES(7671, 39973, 'thirty-nine thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(7672, 57265, 'fifty-seven thousand two hundred sixty-five'); INSERT INTO t2 VALUES(7673, 39000, 'thirty-nine thousand'); INSERT INTO t2 VALUES(7674, 39485, 'thirty-nine thousand four hundred eighty-five'); INSERT INTO t2 VALUES(7675, 84542, 'eighty-four thousand five hundred forty-two'); INSERT INTO t2 VALUES(7676, 61773, 'sixty-one thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(7677, 41641, 'forty-one thousand six hundred forty-one'); INSERT INTO t2 VALUES(7678, 7886, 'seven thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(7679, 30700, 'thirty thousand seven hundred'); INSERT INTO t2 VALUES(7680, 95970, 'ninety-five thousand nine hundred seventy'); INSERT INTO t2 VALUES(7681, 64922, 'sixty-four thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(7682, 14021, 'fourteen thousand twenty-one'); INSERT INTO t2 VALUES(7683, 99256, 'ninety-nine thousand two hundred fifty-six'); INSERT INTO t2 VALUES(7684, 91940, 'ninety-one thousand nine hundred forty'); INSERT INTO t2 VALUES(7685, 27372, 'twenty-seven thousand three hundred seventy-two'); INSERT INTO t2 VALUES(7686, 57008, 'fifty-seven thousand eight'); INSERT INTO t2 VALUES(7687, 69222, 'sixty-nine thousand two hundred twenty-two'); INSERT INTO t2 VALUES(7688, 7614, 'seven thousand six hundred fourteen'); INSERT INTO t2 VALUES(7689, 69469, 'sixty-nine thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(7690, 60236, 'sixty thousand two hundred thirty-six'); INSERT INTO t2 VALUES(7691, 95005, 'ninety-five thousand five'); INSERT INTO t2 VALUES(7692, 70671, 'seventy thousand six hundred seventy-one'); INSERT INTO t2 VALUES(7693, 18886, 'eighteen thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(7694, 80435, 'eighty thousand four hundred thirty-five'); INSERT INTO t2 VALUES(7695, 77160, 'seventy-seven thousand one hundred sixty'); INSERT INTO t2 VALUES(7696, 29415, 'twenty-nine thousand four hundred fifteen'); INSERT INTO t2 VALUES(7697, 72605, 'seventy-two thousand six hundred five'); INSERT INTO t2 VALUES(7698, 64737, 'sixty-four thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(7699, 46033, 'forty-six thousand thirty-three'); INSERT INTO t2 VALUES(7700, 1345, 'one thousand three hundred forty-five'); INSERT INTO t2 VALUES(7701, 76566, 'seventy-six thousand five hundred sixty-six'); INSERT INTO t2 VALUES(7702, 24009, 'twenty-four thousand nine'); INSERT INTO t2 VALUES(7703, 748, 'seven hundred forty-eight'); INSERT INTO t2 VALUES(7704, 6824, 'six thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(7705, 41462, 'forty-one thousand four hundred sixty-two'); INSERT INTO t2 VALUES(7706, 25743, 'twenty-five thousand seven hundred forty-three'); INSERT INTO t2 VALUES(7707, 11884, 'eleven thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(7708, 48287, 'forty-eight thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(7709, 12828, 'twelve thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(7710, 55232, 'fifty-five thousand two hundred thirty-two'); INSERT INTO t2 VALUES(7711, 7121, 'seven thousand one hundred twenty-one'); INSERT INTO t2 VALUES(7712, 64242, 'sixty-four thousand two hundred forty-two'); INSERT INTO t2 VALUES(7713, 24992, 'twenty-four thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(7714, 34382, 'thirty-four thousand three hundred eighty-two'); INSERT INTO t2 VALUES(7715, 70019, 'seventy thousand nineteen'); INSERT INTO t2 VALUES(7716, 96928, 'ninety-six thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(7717, 99259, 'ninety-nine thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(7718, 74890, 'seventy-four thousand eight hundred ninety'); INSERT INTO t2 VALUES(7719, 31251, 'thirty-one thousand two hundred fifty-one'); INSERT INTO t2 VALUES(7720, 53203, 'fifty-three thousand two hundred three'); INSERT INTO t2 VALUES(7721, 80806, 'eighty thousand eight hundred six'); INSERT INTO t2 VALUES(7722, 15184, 'fifteen thousand one hundred eighty-four'); INSERT INTO t2 VALUES(7723, 83156, 'eighty-three thousand one hundred fifty-six'); INSERT INTO t2 VALUES(7724, 46068, 'forty-six thousand sixty-eight'); INSERT INTO t2 VALUES(7725, 54273, 'fifty-four thousand two hundred seventy-three'); INSERT INTO t2 VALUES(7726, 33264, 'thirty-three thousand two hundred sixty-four'); INSERT INTO t2 VALUES(7727, 91237, 'ninety-one thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(7728, 50759, 'fifty thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(7729, 59848, 'fifty-nine thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(7730, 46658, 'forty-six thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(7731, 23471, 'twenty-three thousand four hundred seventy-one'); INSERT INTO t2 VALUES(7732, 99924, 'ninety-nine thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(7733, 84228, 'eighty-four thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(7734, 64993, 'sixty-four thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(7735, 35824, 'thirty-five thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(7736, 86124, 'eighty-six thousand one hundred twenty-four'); INSERT INTO t2 VALUES(7737, 1997, 'one thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(7738, 30925, 'thirty thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(7739, 9794, 'nine thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(7740, 21703, 'twenty-one thousand seven hundred three'); INSERT INTO t2 VALUES(7741, 47667, 'forty-seven thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(7742, 78875, 'seventy-eight thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(7743, 68845, 'sixty-eight thousand eight hundred forty-five'); INSERT INTO t2 VALUES(7744, 75832, 'seventy-five thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(7745, 4127, 'four thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(7746, 92351, 'ninety-two thousand three hundred fifty-one'); INSERT INTO t2 VALUES(7747, 36960, 'thirty-six thousand nine hundred sixty'); INSERT INTO t2 VALUES(7748, 53797, 'fifty-three thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(7749, 22166, 'twenty-two thousand one hundred sixty-six'); INSERT INTO t2 VALUES(7750, 39652, 'thirty-nine thousand six hundred fifty-two'); INSERT INTO t2 VALUES(7751, 30846, 'thirty thousand eight hundred forty-six'); INSERT INTO t2 VALUES(7752, 30187, 'thirty thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(7753, 68871, 'sixty-eight thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(7754, 16967, 'sixteen thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(7755, 89961, 'eighty-nine thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(7756, 13958, 'thirteen thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(7757, 86908, 'eighty-six thousand nine hundred eight'); INSERT INTO t2 VALUES(7758, 78938, 'seventy-eight thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(7759, 81787, 'eighty-one thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(7760, 73914, 'seventy-three thousand nine hundred fourteen'); INSERT INTO t2 VALUES(7761, 81978, 'eighty-one thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(7762, 76608, 'seventy-six thousand six hundred eight'); INSERT INTO t2 VALUES(7763, 40940, 'forty thousand nine hundred forty'); INSERT INTO t2 VALUES(7764, 21769, 'twenty-one thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(7765, 64411, 'sixty-four thousand four hundred eleven'); INSERT INTO t2 VALUES(7766, 12013, 'twelve thousand thirteen'); INSERT INTO t2 VALUES(7767, 44515, 'forty-four thousand five hundred fifteen'); INSERT INTO t2 VALUES(7768, 64042, 'sixty-four thousand forty-two'); INSERT INTO t2 VALUES(7769, 95415, 'ninety-five thousand four hundred fifteen'); INSERT INTO t2 VALUES(7770, 46241, 'forty-six thousand two hundred forty-one'); INSERT INTO t2 VALUES(7771, 38038, 'thirty-eight thousand thirty-eight'); INSERT INTO t2 VALUES(7772, 29915, 'twenty-nine thousand nine hundred fifteen'); INSERT INTO t2 VALUES(7773, 47079, 'forty-seven thousand seventy-nine'); INSERT INTO t2 VALUES(7774, 40975, 'forty thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(7775, 25189, 'twenty-five thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(7776, 84219, 'eighty-four thousand two hundred nineteen'); INSERT INTO t2 VALUES(7777, 65775, 'sixty-five thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(7778, 83133, 'eighty-three thousand one hundred thirty-three'); INSERT INTO t2 VALUES(7779, 18759, 'eighteen thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(7780, 24673, 'twenty-four thousand six hundred seventy-three'); INSERT INTO t2 VALUES(7781, 89363, 'eighty-nine thousand three hundred sixty-three'); INSERT INTO t2 VALUES(7782, 94126, 'ninety-four thousand one hundred twenty-six'); INSERT INTO t2 VALUES(7783, 736, 'seven hundred thirty-six'); INSERT INTO t2 VALUES(7784, 67024, 'sixty-seven thousand twenty-four'); INSERT INTO t2 VALUES(7785, 7486, 'seven thousand four hundred eighty-six'); INSERT INTO t2 VALUES(7786, 67916, 'sixty-seven thousand nine hundred sixteen'); INSERT INTO t2 VALUES(7787, 17289, 'seventeen thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(7788, 47031, 'forty-seven thousand thirty-one'); INSERT INTO t2 VALUES(7789, 22555, 'twenty-two thousand five hundred fifty-five'); INSERT INTO t2 VALUES(7790, 55086, 'fifty-five thousand eighty-six'); INSERT INTO t2 VALUES(7791, 47896, 'forty-seven thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(7792, 24885, 'twenty-four thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(7793, 12920, 'twelve thousand nine hundred twenty'); INSERT INTO t2 VALUES(7794, 749, 'seven hundred forty-nine'); INSERT INTO t2 VALUES(7795, 55204, 'fifty-five thousand two hundred four'); INSERT INTO t2 VALUES(7796, 5101, 'five thousand one hundred one'); INSERT INTO t2 VALUES(7797, 70030, 'seventy thousand thirty'); INSERT INTO t2 VALUES(7798, 7459, 'seven thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(7799, 48899, 'forty-eight thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(7800, 93683, 'ninety-three thousand six hundred eighty-three'); INSERT INTO t2 VALUES(7801, 16451, 'sixteen thousand four hundred fifty-one'); INSERT INTO t2 VALUES(7802, 25104, 'twenty-five thousand one hundred four'); INSERT INTO t2 VALUES(7803, 9893, 'nine thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(7804, 14245, 'fourteen thousand two hundred forty-five'); INSERT INTO t2 VALUES(7805, 5970, 'five thousand nine hundred seventy'); INSERT INTO t2 VALUES(7806, 34885, 'thirty-four thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(7807, 16332, 'sixteen thousand three hundred thirty-two'); INSERT INTO t2 VALUES(7808, 54012, 'fifty-four thousand twelve'); INSERT INTO t2 VALUES(7809, 11996, 'eleven thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(7810, 21344, 'twenty-one thousand three hundred forty-four'); INSERT INTO t2 VALUES(7811, 35258, 'thirty-five thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(7812, 9275, 'nine thousand two hundred seventy-five'); INSERT INTO t2 VALUES(7813, 85031, 'eighty-five thousand thirty-one'); INSERT INTO t2 VALUES(7814, 29581, 'twenty-nine thousand five hundred eighty-one'); INSERT INTO t2 VALUES(7815, 37798, 'thirty-seven thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(7816, 43311, 'forty-three thousand three hundred eleven'); INSERT INTO t2 VALUES(7817, 26374, 'twenty-six thousand three hundred seventy-four'); INSERT INTO t2 VALUES(7818, 44818, 'forty-four thousand eight hundred eighteen'); INSERT INTO t2 VALUES(7819, 44149, 'forty-four thousand one hundred forty-nine'); INSERT INTO t2 VALUES(7820, 54167, 'fifty-four thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(7821, 80354, 'eighty thousand three hundred fifty-four'); INSERT INTO t2 VALUES(7822, 72843, 'seventy-two thousand eight hundred forty-three'); INSERT INTO t2 VALUES(7823, 3938, 'three thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(7824, 67512, 'sixty-seven thousand five hundred twelve'); INSERT INTO t2 VALUES(7825, 54793, 'fifty-four thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(7826, 78915, 'seventy-eight thousand nine hundred fifteen'); INSERT INTO t2 VALUES(7827, 87426, 'eighty-seven thousand four hundred twenty-six'); INSERT INTO t2 VALUES(7828, 76112, 'seventy-six thousand one hundred twelve'); INSERT INTO t2 VALUES(7829, 46418, 'forty-six thousand four hundred eighteen'); INSERT INTO t2 VALUES(7830, 63056, 'sixty-three thousand fifty-six'); INSERT INTO t2 VALUES(7831, 18738, 'eighteen thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(7832, 71922, 'seventy-one thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(7833, 10485, 'ten thousand four hundred eighty-five'); INSERT INTO t2 VALUES(7834, 30335, 'thirty thousand three hundred thirty-five'); INSERT INTO t2 VALUES(7835, 68428, 'sixty-eight thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(7836, 28843, 'twenty-eight thousand eight hundred forty-three'); INSERT INTO t2 VALUES(7837, 11189, 'eleven thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(7838, 27674, 'twenty-seven thousand six hundred seventy-four'); INSERT INTO t2 VALUES(7839, 8179, 'eight thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(7840, 62895, 'sixty-two thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(7841, 37338, 'thirty-seven thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(7842, 31953, 'thirty-one thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(7843, 32622, 'thirty-two thousand six hundred twenty-two'); INSERT INTO t2 VALUES(7844, 76187, 'seventy-six thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(7845, 43656, 'forty-three thousand six hundred fifty-six'); INSERT INTO t2 VALUES(7846, 87332, 'eighty-seven thousand three hundred thirty-two'); INSERT INTO t2 VALUES(7847, 92268, 'ninety-two thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(7848, 95283, 'ninety-five thousand two hundred eighty-three'); INSERT INTO t2 VALUES(7849, 50468, 'fifty thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(7850, 91856, 'ninety-one thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(7851, 69233, 'sixty-nine thousand two hundred thirty-three'); INSERT INTO t2 VALUES(7852, 17016, 'seventeen thousand sixteen'); INSERT INTO t2 VALUES(7853, 96332, 'ninety-six thousand three hundred thirty-two'); INSERT INTO t2 VALUES(7854, 76291, 'seventy-six thousand two hundred ninety-one'); INSERT INTO t2 VALUES(7855, 34565, 'thirty-four thousand five hundred sixty-five'); INSERT INTO t2 VALUES(7856, 39586, 'thirty-nine thousand five hundred eighty-six'); INSERT INTO t2 VALUES(7857, 61213, 'sixty-one thousand two hundred thirteen'); INSERT INTO t2 VALUES(7858, 18928, 'eighteen thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(7859, 21888, 'twenty-one thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(7860, 51536, 'fifty-one thousand five hundred thirty-six'); INSERT INTO t2 VALUES(7861, 81074, 'eighty-one thousand seventy-four'); INSERT INTO t2 VALUES(7862, 21568, 'twenty-one thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(7863, 48621, 'forty-eight thousand six hundred twenty-one'); INSERT INTO t2 VALUES(7864, 90284, 'ninety thousand two hundred eighty-four'); INSERT INTO t2 VALUES(7865, 6140, 'six thousand one hundred forty'); INSERT INTO t2 VALUES(7866, 3388, 'three thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(7867, 54350, 'fifty-four thousand three hundred fifty'); INSERT INTO t2 VALUES(7868, 88335, 'eighty-eight thousand three hundred thirty-five'); INSERT INTO t2 VALUES(7869, 55056, 'fifty-five thousand fifty-six'); INSERT INTO t2 VALUES(7870, 80523, 'eighty thousand five hundred twenty-three'); INSERT INTO t2 VALUES(7871, 36453, 'thirty-six thousand four hundred fifty-three'); INSERT INTO t2 VALUES(7872, 637, 'six hundred thirty-seven'); INSERT INTO t2 VALUES(7873, 46560, 'forty-six thousand five hundred sixty'); INSERT INTO t2 VALUES(7874, 64868, 'sixty-four thousand eight hundred sixty-eight'); INSERT INTO t2 VALUES(7875, 80928, 'eighty thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(7876, 73574, 'seventy-three thousand five hundred seventy-four'); INSERT INTO t2 VALUES(7877, 17541, 'seventeen thousand five hundred forty-one'); INSERT INTO t2 VALUES(7878, 94826, 'ninety-four thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(7879, 65383, 'sixty-five thousand three hundred eighty-three'); INSERT INTO t2 VALUES(7880, 82342, 'eighty-two thousand three hundred forty-two'); INSERT INTO t2 VALUES(7881, 37458, 'thirty-seven thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(7882, 99149, 'ninety-nine thousand one hundred forty-nine'); INSERT INTO t2 VALUES(7883, 71689, 'seventy-one thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(7884, 78085, 'seventy-eight thousand eighty-five'); INSERT INTO t2 VALUES(7885, 57552, 'fifty-seven thousand five hundred fifty-two'); INSERT INTO t2 VALUES(7886, 2761, 'two thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(7887, 45520, 'forty-five thousand five hundred twenty'); INSERT INTO t2 VALUES(7888, 45625, 'forty-five thousand six hundred twenty-five'); INSERT INTO t2 VALUES(7889, 4598, 'four thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(7890, 55, 'fifty-five'); INSERT INTO t2 VALUES(7891, 35004, 'thirty-five thousand four'); INSERT INTO t2 VALUES(7892, 55327, 'fifty-five thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(7893, 11166, 'eleven thousand one hundred sixty-six'); INSERT INTO t2 VALUES(7894, 26140, 'twenty-six thousand one hundred forty'); INSERT INTO t2 VALUES(7895, 91477, 'ninety-one thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(7896, 42203, 'forty-two thousand two hundred three'); INSERT INTO t2 VALUES(7897, 84780, 'eighty-four thousand seven hundred eighty'); INSERT INTO t2 VALUES(7898, 67536, 'sixty-seven thousand five hundred thirty-six'); INSERT INTO t2 VALUES(7899, 19055, 'nineteen thousand fifty-five'); INSERT INTO t2 VALUES(7900, 59432, 'fifty-nine thousand four hundred thirty-two'); INSERT INTO t2 VALUES(7901, 21613, 'twenty-one thousand six hundred thirteen'); INSERT INTO t2 VALUES(7902, 61666, 'sixty-one thousand six hundred sixty-six'); INSERT INTO t2 VALUES(7903, 77311, 'seventy-seven thousand three hundred eleven'); INSERT INTO t2 VALUES(7904, 27206, 'twenty-seven thousand two hundred six'); INSERT INTO t2 VALUES(7905, 92854, 'ninety-two thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(7906, 35248, 'thirty-five thousand two hundred forty-eight'); INSERT INTO t2 VALUES(7907, 61592, 'sixty-one thousand five hundred ninety-two'); INSERT INTO t2 VALUES(7908, 98527, 'ninety-eight thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(7909, 48236, 'forty-eight thousand two hundred thirty-six'); INSERT INTO t2 VALUES(7910, 9447, 'nine thousand four hundred forty-seven'); INSERT INTO t2 VALUES(7911, 30822, 'thirty thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(7912, 14984, 'fourteen thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(7913, 31991, 'thirty-one thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(7914, 54422, 'fifty-four thousand four hundred twenty-two'); INSERT INTO t2 VALUES(7915, 79383, 'seventy-nine thousand three hundred eighty-three'); INSERT INTO t2 VALUES(7916, 73590, 'seventy-three thousand five hundred ninety'); INSERT INTO t2 VALUES(7917, 95713, 'ninety-five thousand seven hundred thirteen'); INSERT INTO t2 VALUES(7918, 18969, 'eighteen thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(7919, 14662, 'fourteen thousand six hundred sixty-two'); INSERT INTO t2 VALUES(7920, 45256, 'forty-five thousand two hundred fifty-six'); INSERT INTO t2 VALUES(7921, 37455, 'thirty-seven thousand four hundred fifty-five'); INSERT INTO t2 VALUES(7922, 10143, 'ten thousand one hundred forty-three'); INSERT INTO t2 VALUES(7923, 97947, 'ninety-seven thousand nine hundred forty-seven'); INSERT INTO t2 VALUES(7924, 48008, 'forty-eight thousand eight'); INSERT INTO t2 VALUES(7925, 62549, 'sixty-two thousand five hundred forty-nine'); INSERT INTO t2 VALUES(7926, 45256, 'forty-five thousand two hundred fifty-six'); INSERT INTO t2 VALUES(7927, 40634, 'forty thousand six hundred thirty-four'); INSERT INTO t2 VALUES(7928, 10988, 'ten thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(7929, 33825, 'thirty-three thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(7930, 96608, 'ninety-six thousand six hundred eight'); INSERT INTO t2 VALUES(7931, 5533, 'five thousand five hundred thirty-three'); INSERT INTO t2 VALUES(7932, 26864, 'twenty-six thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(7933, 85451, 'eighty-five thousand four hundred fifty-one'); INSERT INTO t2 VALUES(7934, 26640, 'twenty-six thousand six hundred forty'); INSERT INTO t2 VALUES(7935, 51622, 'fifty-one thousand six hundred twenty-two'); INSERT INTO t2 VALUES(7936, 14219, 'fourteen thousand two hundred nineteen'); INSERT INTO t2 VALUES(7937, 6403, 'six thousand four hundred three'); INSERT INTO t2 VALUES(7938, 38686, 'thirty-eight thousand six hundred eighty-six'); INSERT INTO t2 VALUES(7939, 57470, 'fifty-seven thousand four hundred seventy'); INSERT INTO t2 VALUES(7940, 70153, 'seventy thousand one hundred fifty-three'); INSERT INTO t2 VALUES(7941, 84092, 'eighty-four thousand ninety-two'); INSERT INTO t2 VALUES(7942, 40361, 'forty thousand three hundred sixty-one'); INSERT INTO t2 VALUES(7943, 55743, 'fifty-five thousand seven hundred forty-three'); INSERT INTO t2 VALUES(7944, 98943, 'ninety-eight thousand nine hundred forty-three'); INSERT INTO t2 VALUES(7945, 44077, 'forty-four thousand seventy-seven'); INSERT INTO t2 VALUES(7946, 15704, 'fifteen thousand seven hundred four'); INSERT INTO t2 VALUES(7947, 33561, 'thirty-three thousand five hundred sixty-one'); INSERT INTO t2 VALUES(7948, 19774, 'nineteen thousand seven hundred seventy-four'); INSERT INTO t2 VALUES(7949, 41637, 'forty-one thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(7950, 66247, 'sixty-six thousand two hundred forty-seven'); INSERT INTO t2 VALUES(7951, 49218, 'forty-nine thousand two hundred eighteen'); INSERT INTO t2 VALUES(7952, 36083, 'thirty-six thousand eighty-three'); INSERT INTO t2 VALUES(7953, 95461, 'ninety-five thousand four hundred sixty-one'); INSERT INTO t2 VALUES(7954, 72804, 'seventy-two thousand eight hundred four'); INSERT INTO t2 VALUES(7955, 9216, 'nine thousand two hundred sixteen'); INSERT INTO t2 VALUES(7956, 73606, 'seventy-three thousand six hundred six'); INSERT INTO t2 VALUES(7957, 93155, 'ninety-three thousand one hundred fifty-five'); INSERT INTO t2 VALUES(7958, 55561, 'fifty-five thousand five hundred sixty-one'); INSERT INTO t2 VALUES(7959, 89373, 'eighty-nine thousand three hundred seventy-three'); INSERT INTO t2 VALUES(7960, 7478, 'seven thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(7961, 32969, 'thirty-two thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(7962, 16085, 'sixteen thousand eighty-five'); INSERT INTO t2 VALUES(7963, 24821, 'twenty-four thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(7964, 17232, 'seventeen thousand two hundred thirty-two'); INSERT INTO t2 VALUES(7965, 37906, 'thirty-seven thousand nine hundred six'); INSERT INTO t2 VALUES(7966, 1280, 'one thousand two hundred eighty'); INSERT INTO t2 VALUES(7967, 93357, 'ninety-three thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(7968, 62662, 'sixty-two thousand six hundred sixty-two'); INSERT INTO t2 VALUES(7969, 69554, 'sixty-nine thousand five hundred fifty-four'); INSERT INTO t2 VALUES(7970, 68837, 'sixty-eight thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(7971, 49333, 'forty-nine thousand three hundred thirty-three'); INSERT INTO t2 VALUES(7972, 61065, 'sixty-one thousand sixty-five'); INSERT INTO t2 VALUES(7973, 45391, 'forty-five thousand three hundred ninety-one'); INSERT INTO t2 VALUES(7974, 12556, 'twelve thousand five hundred fifty-six'); INSERT INTO t2 VALUES(7975, 5031, 'five thousand thirty-one'); INSERT INTO t2 VALUES(7976, 62986, 'sixty-two thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(7977, 25975, 'twenty-five thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(7978, 33655, 'thirty-three thousand six hundred fifty-five'); INSERT INTO t2 VALUES(7979, 6028, 'six thousand twenty-eight'); INSERT INTO t2 VALUES(7980, 36020, 'thirty-six thousand twenty'); INSERT INTO t2 VALUES(7981, 41558, 'forty-one thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(7982, 87946, 'eighty-seven thousand nine hundred forty-six'); INSERT INTO t2 VALUES(7983, 21756, 'twenty-one thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(7984, 44874, 'forty-four thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(7985, 7220, 'seven thousand two hundred twenty'); INSERT INTO t2 VALUES(7986, 94122, 'ninety-four thousand one hundred twenty-two'); INSERT INTO t2 VALUES(7987, 43802, 'forty-three thousand eight hundred two'); INSERT INTO t2 VALUES(7988, 36249, 'thirty-six thousand two hundred forty-nine'); INSERT INTO t2 VALUES(7989, 39796, 'thirty-nine thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(7990, 54710, 'fifty-four thousand seven hundred ten'); INSERT INTO t2 VALUES(7991, 71277, 'seventy-one thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(7992, 8893, 'eight thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(7993, 12683, 'twelve thousand six hundred eighty-three'); INSERT INTO t2 VALUES(7994, 3436, 'three thousand four hundred thirty-six'); INSERT INTO t2 VALUES(7995, 5482, 'five thousand four hundred eighty-two'); INSERT INTO t2 VALUES(7996, 16251, 'sixteen thousand two hundred fifty-one'); INSERT INTO t2 VALUES(7997, 33887, 'thirty-three thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(7998, 49286, 'forty-nine thousand two hundred eighty-six'); INSERT INTO t2 VALUES(7999, 16522, 'sixteen thousand five hundred twenty-two'); INSERT INTO t2 VALUES(8000, 89509, 'eighty-nine thousand five hundred nine'); INSERT INTO t2 VALUES(8001, 84684, 'eighty-four thousand six hundred eighty-four'); INSERT INTO t2 VALUES(8002, 81188, 'eighty-one thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(8003, 14015, 'fourteen thousand fifteen'); INSERT INTO t2 VALUES(8004, 34039, 'thirty-four thousand thirty-nine'); INSERT INTO t2 VALUES(8005, 49709, 'forty-nine thousand seven hundred nine'); INSERT INTO t2 VALUES(8006, 39236, 'thirty-nine thousand two hundred thirty-six'); INSERT INTO t2 VALUES(8007, 59391, 'fifty-nine thousand three hundred ninety-one'); INSERT INTO t2 VALUES(8008, 76537, 'seventy-six thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(8009, 85992, 'eighty-five thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(8010, 8549, 'eight thousand five hundred forty-nine'); INSERT INTO t2 VALUES(8011, 66771, 'sixty-six thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(8012, 88442, 'eighty-eight thousand four hundred forty-two'); INSERT INTO t2 VALUES(8013, 9094, 'nine thousand ninety-four'); INSERT INTO t2 VALUES(8014, 90515, 'ninety thousand five hundred fifteen'); INSERT INTO t2 VALUES(8015, 8703, 'eight thousand seven hundred three'); INSERT INTO t2 VALUES(8016, 21314, 'twenty-one thousand three hundred fourteen'); INSERT INTO t2 VALUES(8017, 98166, 'ninety-eight thousand one hundred sixty-six'); INSERT INTO t2 VALUES(8018, 5343, 'five thousand three hundred forty-three'); INSERT INTO t2 VALUES(8019, 24040, 'twenty-four thousand forty'); INSERT INTO t2 VALUES(8020, 70025, 'seventy thousand twenty-five'); INSERT INTO t2 VALUES(8021, 57450, 'fifty-seven thousand four hundred fifty'); INSERT INTO t2 VALUES(8022, 91323, 'ninety-one thousand three hundred twenty-three'); INSERT INTO t2 VALUES(8023, 67726, 'sixty-seven thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(8024, 33298, 'thirty-three thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(8025, 8794, 'eight thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(8026, 57450, 'fifty-seven thousand four hundred fifty'); INSERT INTO t2 VALUES(8027, 16655, 'sixteen thousand six hundred fifty-five'); INSERT INTO t2 VALUES(8028, 84049, 'eighty-four thousand forty-nine'); INSERT INTO t2 VALUES(8029, 49266, 'forty-nine thousand two hundred sixty-six'); INSERT INTO t2 VALUES(8030, 31481, 'thirty-one thousand four hundred eighty-one'); INSERT INTO t2 VALUES(8031, 30149, 'thirty thousand one hundred forty-nine'); INSERT INTO t2 VALUES(8032, 45816, 'forty-five thousand eight hundred sixteen'); INSERT INTO t2 VALUES(8033, 59526, 'fifty-nine thousand five hundred twenty-six'); INSERT INTO t2 VALUES(8034, 79025, 'seventy-nine thousand twenty-five'); INSERT INTO t2 VALUES(8035, 53187, 'fifty-three thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(8036, 75727, 'seventy-five thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(8037, 37740, 'thirty-seven thousand seven hundred forty'); INSERT INTO t2 VALUES(8038, 69474, 'sixty-nine thousand four hundred seventy-four'); INSERT INTO t2 VALUES(8039, 51373, 'fifty-one thousand three hundred seventy-three'); INSERT INTO t2 VALUES(8040, 17139, 'seventeen thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(8041, 40365, 'forty thousand three hundred sixty-five'); INSERT INTO t2 VALUES(8042, 4212, 'four thousand two hundred twelve'); INSERT INTO t2 VALUES(8043, 49019, 'forty-nine thousand nineteen'); INSERT INTO t2 VALUES(8044, 11575, 'eleven thousand five hundred seventy-five'); INSERT INTO t2 VALUES(8045, 28312, 'twenty-eight thousand three hundred twelve'); INSERT INTO t2 VALUES(8046, 84096, 'eighty-four thousand ninety-six'); INSERT INTO t2 VALUES(8047, 65289, 'sixty-five thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(8048, 5827, 'five thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(8049, 51448, 'fifty-one thousand four hundred forty-eight'); INSERT INTO t2 VALUES(8050, 67755, 'sixty-seven thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(8051, 27094, 'twenty-seven thousand ninety-four'); INSERT INTO t2 VALUES(8052, 7500, 'seven thousand five hundred'); INSERT INTO t2 VALUES(8053, 70116, 'seventy thousand one hundred sixteen'); INSERT INTO t2 VALUES(8054, 16929, 'sixteen thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(8055, 11348, 'eleven thousand three hundred forty-eight'); INSERT INTO t2 VALUES(8056, 98296, 'ninety-eight thousand two hundred ninety-six'); INSERT INTO t2 VALUES(8057, 6597, 'six thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(8058, 93592, 'ninety-three thousand five hundred ninety-two'); INSERT INTO t2 VALUES(8059, 44437, 'forty-four thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(8060, 27975, 'twenty-seven thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(8061, 72177, 'seventy-two thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(8062, 29195, 'twenty-nine thousand one hundred ninety-five'); INSERT INTO t2 VALUES(8063, 24306, 'twenty-four thousand three hundred six'); INSERT INTO t2 VALUES(8064, 75219, 'seventy-five thousand two hundred nineteen'); INSERT INTO t2 VALUES(8065, 35188, 'thirty-five thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(8066, 22006, 'twenty-two thousand six'); INSERT INTO t2 VALUES(8067, 90157, 'ninety thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(8068, 13172, 'thirteen thousand one hundred seventy-two'); INSERT INTO t2 VALUES(8069, 74536, 'seventy-four thousand five hundred thirty-six'); INSERT INTO t2 VALUES(8070, 87353, 'eighty-seven thousand three hundred fifty-three'); INSERT INTO t2 VALUES(8071, 9950, 'nine thousand nine hundred fifty'); INSERT INTO t2 VALUES(8072, 22537, 'twenty-two thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(8073, 10732, 'ten thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(8074, 10571, 'ten thousand five hundred seventy-one'); INSERT INTO t2 VALUES(8075, 98607, 'ninety-eight thousand six hundred seven'); INSERT INTO t2 VALUES(8076, 53888, 'fifty-three thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(8077, 3175, 'three thousand one hundred seventy-five'); INSERT INTO t2 VALUES(8078, 12578, 'twelve thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(8079, 93344, 'ninety-three thousand three hundred forty-four'); INSERT INTO t2 VALUES(8080, 87802, 'eighty-seven thousand eight hundred two'); INSERT INTO t2 VALUES(8081, 60090, 'sixty thousand ninety'); INSERT INTO t2 VALUES(8082, 59423, 'fifty-nine thousand four hundred twenty-three'); INSERT INTO t2 VALUES(8083, 47984, 'forty-seven thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(8084, 56162, 'fifty-six thousand one hundred sixty-two'); INSERT INTO t2 VALUES(8085, 23863, 'twenty-three thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(8086, 4487, 'four thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(8087, 97406, 'ninety-seven thousand four hundred six'); INSERT INTO t2 VALUES(8088, 86519, 'eighty-six thousand five hundred nineteen'); INSERT INTO t2 VALUES(8089, 71098, 'seventy-one thousand ninety-eight'); INSERT INTO t2 VALUES(8090, 28632, 'twenty-eight thousand six hundred thirty-two'); INSERT INTO t2 VALUES(8091, 93932, 'ninety-three thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(8092, 20421, 'twenty thousand four hundred twenty-one'); INSERT INTO t2 VALUES(8093, 29267, 'twenty-nine thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(8094, 74567, 'seventy-four thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(8095, 99457, 'ninety-nine thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(8096, 59667, 'fifty-nine thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(8097, 60872, 'sixty thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(8098, 53594, 'fifty-three thousand five hundred ninety-four'); INSERT INTO t2 VALUES(8099, 66800, 'sixty-six thousand eight hundred'); INSERT INTO t2 VALUES(8100, 81708, 'eighty-one thousand seven hundred eight'); INSERT INTO t2 VALUES(8101, 82388, 'eighty-two thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(8102, 31922, 'thirty-one thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(8103, 28907, 'twenty-eight thousand nine hundred seven'); INSERT INTO t2 VALUES(8104, 33393, 'thirty-three thousand three hundred ninety-three'); INSERT INTO t2 VALUES(8105, 82827, 'eighty-two thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(8106, 16882, 'sixteen thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(8107, 61644, 'sixty-one thousand six hundred forty-four'); INSERT INTO t2 VALUES(8108, 71826, 'seventy-one thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(8109, 19410, 'nineteen thousand four hundred ten'); INSERT INTO t2 VALUES(8110, 81318, 'eighty-one thousand three hundred eighteen'); INSERT INTO t2 VALUES(8111, 65374, 'sixty-five thousand three hundred seventy-four'); INSERT INTO t2 VALUES(8112, 66995, 'sixty-six thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(8113, 94637, 'ninety-four thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(8114, 78707, 'seventy-eight thousand seven hundred seven'); INSERT INTO t2 VALUES(8115, 98440, 'ninety-eight thousand four hundred forty'); INSERT INTO t2 VALUES(8116, 60845, 'sixty thousand eight hundred forty-five'); INSERT INTO t2 VALUES(8117, 36430, 'thirty-six thousand four hundred thirty'); INSERT INTO t2 VALUES(8118, 74905, 'seventy-four thousand nine hundred five'); INSERT INTO t2 VALUES(8119, 5597, 'five thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(8120, 26767, 'twenty-six thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(8121, 83070, 'eighty-three thousand seventy'); INSERT INTO t2 VALUES(8122, 67202, 'sixty-seven thousand two hundred two'); INSERT INTO t2 VALUES(8123, 86283, 'eighty-six thousand two hundred eighty-three'); INSERT INTO t2 VALUES(8124, 96463, 'ninety-six thousand four hundred sixty-three'); INSERT INTO t2 VALUES(8125, 14179, 'fourteen thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(8126, 64056, 'sixty-four thousand fifty-six'); INSERT INTO t2 VALUES(8127, 58519, 'fifty-eight thousand five hundred nineteen'); INSERT INTO t2 VALUES(8128, 18920, 'eighteen thousand nine hundred twenty'); INSERT INTO t2 VALUES(8129, 69584, 'sixty-nine thousand five hundred eighty-four'); INSERT INTO t2 VALUES(8130, 27796, 'twenty-seven thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(8131, 45307, 'forty-five thousand three hundred seven'); INSERT INTO t2 VALUES(8132, 28813, 'twenty-eight thousand eight hundred thirteen'); INSERT INTO t2 VALUES(8133, 99647, 'ninety-nine thousand six hundred forty-seven'); INSERT INTO t2 VALUES(8134, 16545, 'sixteen thousand five hundred forty-five'); INSERT INTO t2 VALUES(8135, 74537, 'seventy-four thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(8136, 90134, 'ninety thousand one hundred thirty-four'); INSERT INTO t2 VALUES(8137, 45851, 'forty-five thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(8138, 38243, 'thirty-eight thousand two hundred forty-three'); INSERT INTO t2 VALUES(8139, 31534, 'thirty-one thousand five hundred thirty-four'); INSERT INTO t2 VALUES(8140, 1804, 'one thousand eight hundred four'); INSERT INTO t2 VALUES(8141, 71584, 'seventy-one thousand five hundred eighty-four'); INSERT INTO t2 VALUES(8142, 44572, 'forty-four thousand five hundred seventy-two'); INSERT INTO t2 VALUES(8143, 27202, 'twenty-seven thousand two hundred two'); INSERT INTO t2 VALUES(8144, 70639, 'seventy thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(8145, 42204, 'forty-two thousand two hundred four'); INSERT INTO t2 VALUES(8146, 76588, 'seventy-six thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(8147, 79050, 'seventy-nine thousand fifty'); INSERT INTO t2 VALUES(8148, 55518, 'fifty-five thousand five hundred eighteen'); INSERT INTO t2 VALUES(8149, 26840, 'twenty-six thousand eight hundred forty'); INSERT INTO t2 VALUES(8150, 25692, 'twenty-five thousand six hundred ninety-two'); INSERT INTO t2 VALUES(8151, 28384, 'twenty-eight thousand three hundred eighty-four'); INSERT INTO t2 VALUES(8152, 24195, 'twenty-four thousand one hundred ninety-five'); INSERT INTO t2 VALUES(8153, 81289, 'eighty-one thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(8154, 56024, 'fifty-six thousand twenty-four'); INSERT INTO t2 VALUES(8155, 91563, 'ninety-one thousand five hundred sixty-three'); INSERT INTO t2 VALUES(8156, 55950, 'fifty-five thousand nine hundred fifty'); INSERT INTO t2 VALUES(8157, 28486, 'twenty-eight thousand four hundred eighty-six'); INSERT INTO t2 VALUES(8158, 98589, 'ninety-eight thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(8159, 9670, 'nine thousand six hundred seventy'); INSERT INTO t2 VALUES(8160, 37363, 'thirty-seven thousand three hundred sixty-three'); INSERT INTO t2 VALUES(8161, 50339, 'fifty thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(8162, 19513, 'nineteen thousand five hundred thirteen'); INSERT INTO t2 VALUES(8163, 22954, 'twenty-two thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(8164, 96959, 'ninety-six thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(8165, 28263, 'twenty-eight thousand two hundred sixty-three'); INSERT INTO t2 VALUES(8166, 88725, 'eighty-eight thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(8167, 19414, 'nineteen thousand four hundred fourteen'); INSERT INTO t2 VALUES(8168, 83966, 'eighty-three thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(8169, 46804, 'forty-six thousand eight hundred four'); INSERT INTO t2 VALUES(8170, 72825, 'seventy-two thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(8171, 49946, 'forty-nine thousand nine hundred forty-six'); INSERT INTO t2 VALUES(8172, 1105, 'one thousand one hundred five'); INSERT INTO t2 VALUES(8173, 32495, 'thirty-two thousand four hundred ninety-five'); INSERT INTO t2 VALUES(8174, 62329, 'sixty-two thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(8175, 43010, 'forty-three thousand ten'); INSERT INTO t2 VALUES(8176, 94084, 'ninety-four thousand eighty-four'); INSERT INTO t2 VALUES(8177, 59631, 'fifty-nine thousand six hundred thirty-one'); INSERT INTO t2 VALUES(8178, 6291, 'six thousand two hundred ninety-one'); INSERT INTO t2 VALUES(8179, 24610, 'twenty-four thousand six hundred ten'); INSERT INTO t2 VALUES(8180, 7376, 'seven thousand three hundred seventy-six'); INSERT INTO t2 VALUES(8181, 75663, 'seventy-five thousand six hundred sixty-three'); INSERT INTO t2 VALUES(8182, 20917, 'twenty thousand nine hundred seventeen'); INSERT INTO t2 VALUES(8183, 90871, 'ninety thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(8184, 84249, 'eighty-four thousand two hundred forty-nine'); INSERT INTO t2 VALUES(8185, 11208, 'eleven thousand two hundred eight'); INSERT INTO t2 VALUES(8186, 16820, 'sixteen thousand eight hundred twenty'); INSERT INTO t2 VALUES(8187, 87115, 'eighty-seven thousand one hundred fifteen'); INSERT INTO t2 VALUES(8188, 14205, 'fourteen thousand two hundred five'); INSERT INTO t2 VALUES(8189, 49986, 'forty-nine thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(8190, 32588, 'thirty-two thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(8191, 77871, 'seventy-seven thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(8192, 88917, 'eighty-eight thousand nine hundred seventeen'); INSERT INTO t2 VALUES(8193, 73062, 'seventy-three thousand sixty-two'); INSERT INTO t2 VALUES(8194, 69440, 'sixty-nine thousand four hundred forty'); INSERT INTO t2 VALUES(8195, 90830, 'ninety thousand eight hundred thirty'); INSERT INTO t2 VALUES(8196, 38787, 'thirty-eight thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(8197, 32760, 'thirty-two thousand seven hundred sixty'); INSERT INTO t2 VALUES(8198, 22170, 'twenty-two thousand one hundred seventy'); INSERT INTO t2 VALUES(8199, 83455, 'eighty-three thousand four hundred fifty-five'); INSERT INTO t2 VALUES(8200, 73609, 'seventy-three thousand six hundred nine'); INSERT INTO t2 VALUES(8201, 8014, 'eight thousand fourteen'); INSERT INTO t2 VALUES(8202, 57772, 'fifty-seven thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(8203, 29503, 'twenty-nine thousand five hundred three'); INSERT INTO t2 VALUES(8204, 27966, 'twenty-seven thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(8205, 95704, 'ninety-five thousand seven hundred four'); INSERT INTO t2 VALUES(8206, 95989, 'ninety-five thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(8207, 53489, 'fifty-three thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(8208, 8600, 'eight thousand six hundred'); INSERT INTO t2 VALUES(8209, 46229, 'forty-six thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(8210, 69907, 'sixty-nine thousand nine hundred seven'); INSERT INTO t2 VALUES(8211, 93903, 'ninety-three thousand nine hundred three'); INSERT INTO t2 VALUES(8212, 96791, 'ninety-six thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(8213, 8081, 'eight thousand eighty-one'); INSERT INTO t2 VALUES(8214, 84716, 'eighty-four thousand seven hundred sixteen'); INSERT INTO t2 VALUES(8215, 61370, 'sixty-one thousand three hundred seventy'); INSERT INTO t2 VALUES(8216, 26047, 'twenty-six thousand forty-seven'); INSERT INTO t2 VALUES(8217, 80025, 'eighty thousand twenty-five'); INSERT INTO t2 VALUES(8218, 73171, 'seventy-three thousand one hundred seventy-one'); INSERT INTO t2 VALUES(8219, 39985, 'thirty-nine thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(8220, 98244, 'ninety-eight thousand two hundred forty-four'); INSERT INTO t2 VALUES(8221, 33072, 'thirty-three thousand seventy-two'); INSERT INTO t2 VALUES(8222, 95789, 'ninety-five thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(8223, 10495, 'ten thousand four hundred ninety-five'); INSERT INTO t2 VALUES(8224, 51058, 'fifty-one thousand fifty-eight'); INSERT INTO t2 VALUES(8225, 77375, 'seventy-seven thousand three hundred seventy-five'); INSERT INTO t2 VALUES(8226, 46019, 'forty-six thousand nineteen'); INSERT INTO t2 VALUES(8227, 15747, 'fifteen thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(8228, 81964, 'eighty-one thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(8229, 24858, 'twenty-four thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(8230, 23459, 'twenty-three thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(8231, 79754, 'seventy-nine thousand seven hundred fifty-four'); INSERT INTO t2 VALUES(8232, 54760, 'fifty-four thousand seven hundred sixty'); INSERT INTO t2 VALUES(8233, 95811, 'ninety-five thousand eight hundred eleven'); INSERT INTO t2 VALUES(8234, 5062, 'five thousand sixty-two'); INSERT INTO t2 VALUES(8235, 7109, 'seven thousand one hundred nine'); INSERT INTO t2 VALUES(8236, 51387, 'fifty-one thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(8237, 71637, 'seventy-one thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(8238, 73206, 'seventy-three thousand two hundred six'); INSERT INTO t2 VALUES(8239, 46295, 'forty-six thousand two hundred ninety-five'); INSERT INTO t2 VALUES(8240, 13009, 'thirteen thousand nine'); INSERT INTO t2 VALUES(8241, 60087, 'sixty thousand eighty-seven'); INSERT INTO t2 VALUES(8242, 25923, 'twenty-five thousand nine hundred twenty-three'); INSERT INTO t2 VALUES(8243, 9805, 'nine thousand eight hundred five'); INSERT INTO t2 VALUES(8244, 30861, 'thirty thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(8245, 32953, 'thirty-two thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(8246, 67589, 'sixty-seven thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(8247, 27326, 'twenty-seven thousand three hundred twenty-six'); INSERT INTO t2 VALUES(8248, 69656, 'sixty-nine thousand six hundred fifty-six'); INSERT INTO t2 VALUES(8249, 16501, 'sixteen thousand five hundred one'); INSERT INTO t2 VALUES(8250, 37315, 'thirty-seven thousand three hundred fifteen'); INSERT INTO t2 VALUES(8251, 89883, 'eighty-nine thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(8252, 36652, 'thirty-six thousand six hundred fifty-two'); INSERT INTO t2 VALUES(8253, 31530, 'thirty-one thousand five hundred thirty'); INSERT INTO t2 VALUES(8254, 86312, 'eighty-six thousand three hundred twelve'); INSERT INTO t2 VALUES(8255, 95217, 'ninety-five thousand two hundred seventeen'); INSERT INTO t2 VALUES(8256, 62570, 'sixty-two thousand five hundred seventy'); INSERT INTO t2 VALUES(8257, 62573, 'sixty-two thousand five hundred seventy-three'); INSERT INTO t2 VALUES(8258, 97, 'ninety-seven'); INSERT INTO t2 VALUES(8259, 8161, 'eight thousand one hundred sixty-one'); INSERT INTO t2 VALUES(8260, 78891, 'seventy-eight thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(8261, 23796, 'twenty-three thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(8262, 86320, 'eighty-six thousand three hundred twenty'); INSERT INTO t2 VALUES(8263, 15800, 'fifteen thousand eight hundred'); INSERT INTO t2 VALUES(8264, 39336, 'thirty-nine thousand three hundred thirty-six'); INSERT INTO t2 VALUES(8265, 8304, 'eight thousand three hundred four'); INSERT INTO t2 VALUES(8266, 85651, 'eighty-five thousand six hundred fifty-one'); INSERT INTO t2 VALUES(8267, 28403, 'twenty-eight thousand four hundred three'); INSERT INTO t2 VALUES(8268, 1622, 'one thousand six hundred twenty-two'); INSERT INTO t2 VALUES(8269, 38657, 'thirty-eight thousand six hundred fifty-seven'); INSERT INTO t2 VALUES(8270, 81801, 'eighty-one thousand eight hundred one'); INSERT INTO t2 VALUES(8271, 78027, 'seventy-eight thousand twenty-seven'); INSERT INTO t2 VALUES(8272, 55338, 'fifty-five thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(8273, 66066, 'sixty-six thousand sixty-six'); INSERT INTO t2 VALUES(8274, 48209, 'forty-eight thousand two hundred nine'); INSERT INTO t2 VALUES(8275, 51056, 'fifty-one thousand fifty-six'); INSERT INTO t2 VALUES(8276, 17367, 'seventeen thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(8277, 42270, 'forty-two thousand two hundred seventy'); INSERT INTO t2 VALUES(8278, 69366, 'sixty-nine thousand three hundred sixty-six'); INSERT INTO t2 VALUES(8279, 24319, 'twenty-four thousand three hundred nineteen'); INSERT INTO t2 VALUES(8280, 85464, 'eighty-five thousand four hundred sixty-four'); INSERT INTO t2 VALUES(8281, 25889, 'twenty-five thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(8282, 74094, 'seventy-four thousand ninety-four'); INSERT INTO t2 VALUES(8283, 47837, 'forty-seven thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(8284, 38957, 'thirty-eight thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(8285, 7458, 'seven thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(8286, 95300, 'ninety-five thousand three hundred'); INSERT INTO t2 VALUES(8287, 29642, 'twenty-nine thousand six hundred forty-two'); INSERT INTO t2 VALUES(8288, 14033, 'fourteen thousand thirty-three'); INSERT INTO t2 VALUES(8289, 37044, 'thirty-seven thousand forty-four'); INSERT INTO t2 VALUES(8290, 26910, 'twenty-six thousand nine hundred ten'); INSERT INTO t2 VALUES(8291, 87193, 'eighty-seven thousand one hundred ninety-three'); INSERT INTO t2 VALUES(8292, 32544, 'thirty-two thousand five hundred forty-four'); INSERT INTO t2 VALUES(8293, 56606, 'fifty-six thousand six hundred six'); INSERT INTO t2 VALUES(8294, 5305, 'five thousand three hundred five'); INSERT INTO t2 VALUES(8295, 99438, 'ninety-nine thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(8296, 90665, 'ninety thousand six hundred sixty-five'); INSERT INTO t2 VALUES(8297, 38974, 'thirty-eight thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(8298, 68109, 'sixty-eight thousand one hundred nine'); INSERT INTO t2 VALUES(8299, 15877, 'fifteen thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(8300, 52230, 'fifty-two thousand two hundred thirty'); INSERT INTO t2 VALUES(8301, 47332, 'forty-seven thousand three hundred thirty-two'); INSERT INTO t2 VALUES(8302, 48457, 'forty-eight thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(8303, 34780, 'thirty-four thousand seven hundred eighty'); INSERT INTO t2 VALUES(8304, 14553, 'fourteen thousand five hundred fifty-three'); INSERT INTO t2 VALUES(8305, 59943, 'fifty-nine thousand nine hundred forty-three'); INSERT INTO t2 VALUES(8306, 1094, 'one thousand ninety-four'); INSERT INTO t2 VALUES(8307, 92145, 'ninety-two thousand one hundred forty-five'); INSERT INTO t2 VALUES(8308, 74060, 'seventy-four thousand sixty'); INSERT INTO t2 VALUES(8309, 38193, 'thirty-eight thousand one hundred ninety-three'); INSERT INTO t2 VALUES(8310, 20192, 'twenty thousand one hundred ninety-two'); INSERT INTO t2 VALUES(8311, 45702, 'forty-five thousand seven hundred two'); INSERT INTO t2 VALUES(8312, 97277, 'ninety-seven thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(8313, 43935, 'forty-three thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(8314, 32421, 'thirty-two thousand four hundred twenty-one'); INSERT INTO t2 VALUES(8315, 59341, 'fifty-nine thousand three hundred forty-one'); INSERT INTO t2 VALUES(8316, 73382, 'seventy-three thousand three hundred eighty-two'); INSERT INTO t2 VALUES(8317, 10733, 'ten thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(8318, 97129, 'ninety-seven thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(8319, 54919, 'fifty-four thousand nine hundred nineteen'); INSERT INTO t2 VALUES(8320, 10259, 'ten thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(8321, 39614, 'thirty-nine thousand six hundred fourteen'); INSERT INTO t2 VALUES(8322, 27633, 'twenty-seven thousand six hundred thirty-three'); INSERT INTO t2 VALUES(8323, 69950, 'sixty-nine thousand nine hundred fifty'); INSERT INTO t2 VALUES(8324, 8919, 'eight thousand nine hundred nineteen'); INSERT INTO t2 VALUES(8325, 28733, 'twenty-eight thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(8326, 20390, 'twenty thousand three hundred ninety'); INSERT INTO t2 VALUES(8327, 77228, 'seventy-seven thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(8328, 35351, 'thirty-five thousand three hundred fifty-one'); INSERT INTO t2 VALUES(8329, 13857, 'thirteen thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(8330, 42468, 'forty-two thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(8331, 84999, 'eighty-four thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(8332, 72470, 'seventy-two thousand four hundred seventy'); INSERT INTO t2 VALUES(8333, 72452, 'seventy-two thousand four hundred fifty-two'); INSERT INTO t2 VALUES(8334, 94155, 'ninety-four thousand one hundred fifty-five'); INSERT INTO t2 VALUES(8335, 6664, 'six thousand six hundred sixty-four'); INSERT INTO t2 VALUES(8336, 18849, 'eighteen thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(8337, 68314, 'sixty-eight thousand three hundred fourteen'); INSERT INTO t2 VALUES(8338, 94744, 'ninety-four thousand seven hundred forty-four'); INSERT INTO t2 VALUES(8339, 92363, 'ninety-two thousand three hundred sixty-three'); INSERT INTO t2 VALUES(8340, 93019, 'ninety-three thousand nineteen'); INSERT INTO t2 VALUES(8341, 78500, 'seventy-eight thousand five hundred'); INSERT INTO t2 VALUES(8342, 44088, 'forty-four thousand eighty-eight'); INSERT INTO t2 VALUES(8343, 75584, 'seventy-five thousand five hundred eighty-four'); INSERT INTO t2 VALUES(8344, 84360, 'eighty-four thousand three hundred sixty'); INSERT INTO t2 VALUES(8345, 70735, 'seventy thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(8346, 12457, 'twelve thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(8347, 92143, 'ninety-two thousand one hundred forty-three'); INSERT INTO t2 VALUES(8348, 1204, 'one thousand two hundred four'); INSERT INTO t2 VALUES(8349, 80695, 'eighty thousand six hundred ninety-five'); INSERT INTO t2 VALUES(8350, 62627, 'sixty-two thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(8351, 21967, 'twenty-one thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(8352, 45548, 'forty-five thousand five hundred forty-eight'); INSERT INTO t2 VALUES(8353, 33384, 'thirty-three thousand three hundred eighty-four'); INSERT INTO t2 VALUES(8354, 23888, 'twenty-three thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(8355, 90151, 'ninety thousand one hundred fifty-one'); INSERT INTO t2 VALUES(8356, 97427, 'ninety-seven thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(8357, 51779, 'fifty-one thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(8358, 86397, 'eighty-six thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(8359, 59564, 'fifty-nine thousand five hundred sixty-four'); INSERT INTO t2 VALUES(8360, 38636, 'thirty-eight thousand six hundred thirty-six'); INSERT INTO t2 VALUES(8361, 64780, 'sixty-four thousand seven hundred eighty'); INSERT INTO t2 VALUES(8362, 37535, 'thirty-seven thousand five hundred thirty-five'); INSERT INTO t2 VALUES(8363, 78783, 'seventy-eight thousand seven hundred eighty-three'); INSERT INTO t2 VALUES(8364, 4100, 'four thousand one hundred'); INSERT INTO t2 VALUES(8365, 30252, 'thirty thousand two hundred fifty-two'); INSERT INTO t2 VALUES(8366, 84723, 'eighty-four thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(8367, 20077, 'twenty thousand seventy-seven'); INSERT INTO t2 VALUES(8368, 34092, 'thirty-four thousand ninety-two'); INSERT INTO t2 VALUES(8369, 35114, 'thirty-five thousand one hundred fourteen'); INSERT INTO t2 VALUES(8370, 86839, 'eighty-six thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(8371, 95103, 'ninety-five thousand one hundred three'); INSERT INTO t2 VALUES(8372, 36892, 'thirty-six thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(8373, 99387, 'ninety-nine thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(8374, 88180, 'eighty-eight thousand one hundred eighty'); INSERT INTO t2 VALUES(8375, 75130, 'seventy-five thousand one hundred thirty'); INSERT INTO t2 VALUES(8376, 72000, 'seventy-two thousand'); INSERT INTO t2 VALUES(8377, 52097, 'fifty-two thousand ninety-seven'); INSERT INTO t2 VALUES(8378, 93419, 'ninety-three thousand four hundred nineteen'); INSERT INTO t2 VALUES(8379, 55083, 'fifty-five thousand eighty-three'); INSERT INTO t2 VALUES(8380, 55503, 'fifty-five thousand five hundred three'); INSERT INTO t2 VALUES(8381, 81232, 'eighty-one thousand two hundred thirty-two'); INSERT INTO t2 VALUES(8382, 95887, 'ninety-five thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(8383, 32005, 'thirty-two thousand five'); INSERT INTO t2 VALUES(8384, 5590, 'five thousand five hundred ninety'); INSERT INTO t2 VALUES(8385, 53004, 'fifty-three thousand four'); INSERT INTO t2 VALUES(8386, 60414, 'sixty thousand four hundred fourteen'); INSERT INTO t2 VALUES(8387, 39286, 'thirty-nine thousand two hundred eighty-six'); INSERT INTO t2 VALUES(8388, 61723, 'sixty-one thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(8389, 28696, 'twenty-eight thousand six hundred ninety-six'); INSERT INTO t2 VALUES(8390, 30502, 'thirty thousand five hundred two'); INSERT INTO t2 VALUES(8391, 40868, 'forty thousand eight hundred sixty-eight'); INSERT INTO t2 VALUES(8392, 56747, 'fifty-six thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(8393, 72695, 'seventy-two thousand six hundred ninety-five'); INSERT INTO t2 VALUES(8394, 90719, 'ninety thousand seven hundred nineteen'); INSERT INTO t2 VALUES(8395, 22263, 'twenty-two thousand two hundred sixty-three'); INSERT INTO t2 VALUES(8396, 10971, 'ten thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(8397, 67956, 'sixty-seven thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(8398, 5266, 'five thousand two hundred sixty-six'); INSERT INTO t2 VALUES(8399, 65629, 'sixty-five thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(8400, 60456, 'sixty thousand four hundred fifty-six'); INSERT INTO t2 VALUES(8401, 52701, 'fifty-two thousand seven hundred one'); INSERT INTO t2 VALUES(8402, 11101, 'eleven thousand one hundred one'); INSERT INTO t2 VALUES(8403, 31802, 'thirty-one thousand eight hundred two'); INSERT INTO t2 VALUES(8404, 57050, 'fifty-seven thousand fifty'); INSERT INTO t2 VALUES(8405, 57178, 'fifty-seven thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(8406, 43050, 'forty-three thousand fifty'); INSERT INTO t2 VALUES(8407, 54219, 'fifty-four thousand two hundred nineteen'); INSERT INTO t2 VALUES(8408, 30077, 'thirty thousand seventy-seven'); INSERT INTO t2 VALUES(8409, 26188, 'twenty-six thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(8410, 86172, 'eighty-six thousand one hundred seventy-two'); INSERT INTO t2 VALUES(8411, 50520, 'fifty thousand five hundred twenty'); INSERT INTO t2 VALUES(8412, 71227, 'seventy-one thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(8413, 9944, 'nine thousand nine hundred forty-four'); INSERT INTO t2 VALUES(8414, 24896, 'twenty-four thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(8415, 98924, 'ninety-eight thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(8416, 23715, 'twenty-three thousand seven hundred fifteen'); INSERT INTO t2 VALUES(8417, 85708, 'eighty-five thousand seven hundred eight'); INSERT INTO t2 VALUES(8418, 65832, 'sixty-five thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(8419, 71091, 'seventy-one thousand ninety-one'); INSERT INTO t2 VALUES(8420, 45450, 'forty-five thousand four hundred fifty'); INSERT INTO t2 VALUES(8421, 72707, 'seventy-two thousand seven hundred seven'); INSERT INTO t2 VALUES(8422, 4941, 'four thousand nine hundred forty-one'); INSERT INTO t2 VALUES(8423, 59988, 'fifty-nine thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(8424, 74020, 'seventy-four thousand twenty'); INSERT INTO t2 VALUES(8425, 47480, 'forty-seven thousand four hundred eighty'); INSERT INTO t2 VALUES(8426, 29522, 'twenty-nine thousand five hundred twenty-two'); INSERT INTO t2 VALUES(8427, 28655, 'twenty-eight thousand six hundred fifty-five'); INSERT INTO t2 VALUES(8428, 50172, 'fifty thousand one hundred seventy-two'); INSERT INTO t2 VALUES(8429, 91225, 'ninety-one thousand two hundred twenty-five'); INSERT INTO t2 VALUES(8430, 51844, 'fifty-one thousand eight hundred forty-four'); INSERT INTO t2 VALUES(8431, 40306, 'forty thousand three hundred six'); INSERT INTO t2 VALUES(8432, 42886, 'forty-two thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(8433, 96895, 'ninety-six thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(8434, 75928, 'seventy-five thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(8435, 30316, 'thirty thousand three hundred sixteen'); INSERT INTO t2 VALUES(8436, 83563, 'eighty-three thousand five hundred sixty-three'); INSERT INTO t2 VALUES(8437, 82660, 'eighty-two thousand six hundred sixty'); INSERT INTO t2 VALUES(8438, 85621, 'eighty-five thousand six hundred twenty-one'); INSERT INTO t2 VALUES(8439, 42335, 'forty-two thousand three hundred thirty-five'); INSERT INTO t2 VALUES(8440, 79863, 'seventy-nine thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(8441, 3905, 'three thousand nine hundred five'); INSERT INTO t2 VALUES(8442, 93351, 'ninety-three thousand three hundred fifty-one'); INSERT INTO t2 VALUES(8443, 14415, 'fourteen thousand four hundred fifteen'); INSERT INTO t2 VALUES(8444, 38678, 'thirty-eight thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(8445, 51745, 'fifty-one thousand seven hundred forty-five'); INSERT INTO t2 VALUES(8446, 86197, 'eighty-six thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(8447, 358, 'three hundred fifty-eight'); INSERT INTO t2 VALUES(8448, 87031, 'eighty-seven thousand thirty-one'); INSERT INTO t2 VALUES(8449, 83811, 'eighty-three thousand eight hundred eleven'); INSERT INTO t2 VALUES(8450, 11528, 'eleven thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(8451, 54017, 'fifty-four thousand seventeen'); INSERT INTO t2 VALUES(8452, 17978, 'seventeen thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(8453, 22946, 'twenty-two thousand nine hundred forty-six'); INSERT INTO t2 VALUES(8454, 52647, 'fifty-two thousand six hundred forty-seven'); INSERT INTO t2 VALUES(8455, 62893, 'sixty-two thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(8456, 45727, 'forty-five thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(8457, 27751, 'twenty-seven thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(8458, 9583, 'nine thousand five hundred eighty-three'); INSERT INTO t2 VALUES(8459, 74362, 'seventy-four thousand three hundred sixty-two'); INSERT INTO t2 VALUES(8460, 18952, 'eighteen thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(8461, 78973, 'seventy-eight thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(8462, 84630, 'eighty-four thousand six hundred thirty'); INSERT INTO t2 VALUES(8463, 90779, 'ninety thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(8464, 40841, 'forty thousand eight hundred forty-one'); INSERT INTO t2 VALUES(8465, 17142, 'seventeen thousand one hundred forty-two'); INSERT INTO t2 VALUES(8466, 92416, 'ninety-two thousand four hundred sixteen'); INSERT INTO t2 VALUES(8467, 72365, 'seventy-two thousand three hundred sixty-five'); INSERT INTO t2 VALUES(8468, 33423, 'thirty-three thousand four hundred twenty-three'); INSERT INTO t2 VALUES(8469, 336, 'three hundred thirty-six'); INSERT INTO t2 VALUES(8470, 99184, 'ninety-nine thousand one hundred eighty-four'); INSERT INTO t2 VALUES(8471, 59078, 'fifty-nine thousand seventy-eight'); INSERT INTO t2 VALUES(8472, 49452, 'forty-nine thousand four hundred fifty-two'); INSERT INTO t2 VALUES(8473, 95896, 'ninety-five thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(8474, 51552, 'fifty-one thousand five hundred fifty-two'); INSERT INTO t2 VALUES(8475, 69558, 'sixty-nine thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(8476, 12738, 'twelve thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(8477, 19046, 'nineteen thousand forty-six'); INSERT INTO t2 VALUES(8478, 76213, 'seventy-six thousand two hundred thirteen'); INSERT INTO t2 VALUES(8479, 48274, 'forty-eight thousand two hundred seventy-four'); INSERT INTO t2 VALUES(8480, 15545, 'fifteen thousand five hundred forty-five'); INSERT INTO t2 VALUES(8481, 61304, 'sixty-one thousand three hundred four'); INSERT INTO t2 VALUES(8482, 94968, 'ninety-four thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(8483, 19481, 'nineteen thousand four hundred eighty-one'); INSERT INTO t2 VALUES(8484, 93482, 'ninety-three thousand four hundred eighty-two'); INSERT INTO t2 VALUES(8485, 6179, 'six thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(8486, 43347, 'forty-three thousand three hundred forty-seven'); INSERT INTO t2 VALUES(8487, 77653, 'seventy-seven thousand six hundred fifty-three'); INSERT INTO t2 VALUES(8488, 20406, 'twenty thousand four hundred six'); INSERT INTO t2 VALUES(8489, 62035, 'sixty-two thousand thirty-five'); INSERT INTO t2 VALUES(8490, 90587, 'ninety thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(8491, 2946, 'two thousand nine hundred forty-six'); INSERT INTO t2 VALUES(8492, 53306, 'fifty-three thousand three hundred six'); INSERT INTO t2 VALUES(8493, 10132, 'ten thousand one hundred thirty-two'); INSERT INTO t2 VALUES(8494, 77462, 'seventy-seven thousand four hundred sixty-two'); INSERT INTO t2 VALUES(8495, 58595, 'fifty-eight thousand five hundred ninety-five'); INSERT INTO t2 VALUES(8496, 79911, 'seventy-nine thousand nine hundred eleven'); INSERT INTO t2 VALUES(8497, 25078, 'twenty-five thousand seventy-eight'); INSERT INTO t2 VALUES(8498, 9200, 'nine thousand two hundred'); INSERT INTO t2 VALUES(8499, 60512, 'sixty thousand five hundred twelve'); INSERT INTO t2 VALUES(8500, 96701, 'ninety-six thousand seven hundred one'); INSERT INTO t2 VALUES(8501, 72934, 'seventy-two thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(8502, 34124, 'thirty-four thousand one hundred twenty-four'); INSERT INTO t2 VALUES(8503, 95356, 'ninety-five thousand three hundred fifty-six'); INSERT INTO t2 VALUES(8504, 69879, 'sixty-nine thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(8505, 71591, 'seventy-one thousand five hundred ninety-one'); INSERT INTO t2 VALUES(8506, 44776, 'forty-four thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(8507, 6508, 'six thousand five hundred eight'); INSERT INTO t2 VALUES(8508, 36488, 'thirty-six thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(8509, 12847, 'twelve thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(8510, 74853, 'seventy-four thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(8511, 84745, 'eighty-four thousand seven hundred forty-five'); INSERT INTO t2 VALUES(8512, 80531, 'eighty thousand five hundred thirty-one'); INSERT INTO t2 VALUES(8513, 94078, 'ninety-four thousand seventy-eight'); INSERT INTO t2 VALUES(8514, 93822, 'ninety-three thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(8515, 88476, 'eighty-eight thousand four hundred seventy-six'); INSERT INTO t2 VALUES(8516, 84245, 'eighty-four thousand two hundred forty-five'); INSERT INTO t2 VALUES(8517, 84395, 'eighty-four thousand three hundred ninety-five'); INSERT INTO t2 VALUES(8518, 2007, 'two thousand seven'); INSERT INTO t2 VALUES(8519, 70123, 'seventy thousand one hundred twenty-three'); INSERT INTO t2 VALUES(8520, 3056, 'three thousand fifty-six'); INSERT INTO t2 VALUES(8521, 10942, 'ten thousand nine hundred forty-two'); INSERT INTO t2 VALUES(8522, 10013, 'ten thousand thirteen'); INSERT INTO t2 VALUES(8523, 61214, 'sixty-one thousand two hundred fourteen'); INSERT INTO t2 VALUES(8524, 54374, 'fifty-four thousand three hundred seventy-four'); INSERT INTO t2 VALUES(8525, 43644, 'forty-three thousand six hundred forty-four'); INSERT INTO t2 VALUES(8526, 69136, 'sixty-nine thousand one hundred thirty-six'); INSERT INTO t2 VALUES(8527, 26273, 'twenty-six thousand two hundred seventy-three'); INSERT INTO t2 VALUES(8528, 40148, 'forty thousand one hundred forty-eight'); INSERT INTO t2 VALUES(8529, 67790, 'sixty-seven thousand seven hundred ninety'); INSERT INTO t2 VALUES(8530, 91834, 'ninety-one thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(8531, 35669, 'thirty-five thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(8532, 35187, 'thirty-five thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(8533, 2047, 'two thousand forty-seven'); INSERT INTO t2 VALUES(8534, 10640, 'ten thousand six hundred forty'); INSERT INTO t2 VALUES(8535, 92444, 'ninety-two thousand four hundred forty-four'); INSERT INTO t2 VALUES(8536, 5582, 'five thousand five hundred eighty-two'); INSERT INTO t2 VALUES(8537, 25235, 'twenty-five thousand two hundred thirty-five'); INSERT INTO t2 VALUES(8538, 51952, 'fifty-one thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(8539, 17616, 'seventeen thousand six hundred sixteen'); INSERT INTO t2 VALUES(8540, 71144, 'seventy-one thousand one hundred forty-four'); INSERT INTO t2 VALUES(8541, 16618, 'sixteen thousand six hundred eighteen'); INSERT INTO t2 VALUES(8542, 18205, 'eighteen thousand two hundred five'); INSERT INTO t2 VALUES(8543, 80186, 'eighty thousand one hundred eighty-six'); INSERT INTO t2 VALUES(8544, 61942, 'sixty-one thousand nine hundred forty-two'); INSERT INTO t2 VALUES(8545, 61044, 'sixty-one thousand forty-four'); INSERT INTO t2 VALUES(8546, 27629, 'twenty-seven thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(8547, 21920, 'twenty-one thousand nine hundred twenty'); INSERT INTO t2 VALUES(8548, 18074, 'eighteen thousand seventy-four'); INSERT INTO t2 VALUES(8549, 77500, 'seventy-seven thousand five hundred'); INSERT INTO t2 VALUES(8550, 7506, 'seven thousand five hundred six'); INSERT INTO t2 VALUES(8551, 1172, 'one thousand one hundred seventy-two'); INSERT INTO t2 VALUES(8552, 82477, 'eighty-two thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(8553, 53691, 'fifty-three thousand six hundred ninety-one'); INSERT INTO t2 VALUES(8554, 72027, 'seventy-two thousand twenty-seven'); INSERT INTO t2 VALUES(8555, 31763, 'thirty-one thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(8556, 35087, 'thirty-five thousand eighty-seven'); INSERT INTO t2 VALUES(8557, 58296, 'fifty-eight thousand two hundred ninety-six'); INSERT INTO t2 VALUES(8558, 78481, 'seventy-eight thousand four hundred eighty-one'); INSERT INTO t2 VALUES(8559, 16043, 'sixteen thousand forty-three'); INSERT INTO t2 VALUES(8560, 76737, 'seventy-six thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(8561, 75570, 'seventy-five thousand five hundred seventy'); INSERT INTO t2 VALUES(8562, 95820, 'ninety-five thousand eight hundred twenty'); INSERT INTO t2 VALUES(8563, 45974, 'forty-five thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(8564, 56270, 'fifty-six thousand two hundred seventy'); INSERT INTO t2 VALUES(8565, 97244, 'ninety-seven thousand two hundred forty-four'); INSERT INTO t2 VALUES(8566, 85545, 'eighty-five thousand five hundred forty-five'); INSERT INTO t2 VALUES(8567, 14500, 'fourteen thousand five hundred'); INSERT INTO t2 VALUES(8568, 53416, 'fifty-three thousand four hundred sixteen'); INSERT INTO t2 VALUES(8569, 81913, 'eighty-one thousand nine hundred thirteen'); INSERT INTO t2 VALUES(8570, 82487, 'eighty-two thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(8571, 50845, 'fifty thousand eight hundred forty-five'); INSERT INTO t2 VALUES(8572, 57160, 'fifty-seven thousand one hundred sixty'); INSERT INTO t2 VALUES(8573, 29717, 'twenty-nine thousand seven hundred seventeen'); INSERT INTO t2 VALUES(8574, 76, 'seventy-six'); INSERT INTO t2 VALUES(8575, 55307, 'fifty-five thousand three hundred seven'); INSERT INTO t2 VALUES(8576, 48259, 'forty-eight thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(8577, 17068, 'seventeen thousand sixty-eight'); INSERT INTO t2 VALUES(8578, 50442, 'fifty thousand four hundred forty-two'); INSERT INTO t2 VALUES(8579, 48056, 'forty-eight thousand fifty-six'); INSERT INTO t2 VALUES(8580, 99483, 'ninety-nine thousand four hundred eighty-three'); INSERT INTO t2 VALUES(8581, 233, 'two hundred thirty-three'); INSERT INTO t2 VALUES(8582, 24262, 'twenty-four thousand two hundred sixty-two'); INSERT INTO t2 VALUES(8583, 7703, 'seven thousand seven hundred three'); INSERT INTO t2 VALUES(8584, 48131, 'forty-eight thousand one hundred thirty-one'); INSERT INTO t2 VALUES(8585, 76997, 'seventy-six thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(8586, 25102, 'twenty-five thousand one hundred two'); INSERT INTO t2 VALUES(8587, 74011, 'seventy-four thousand eleven'); INSERT INTO t2 VALUES(8588, 29487, 'twenty-nine thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(8589, 54798, 'fifty-four thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(8590, 42449, 'forty-two thousand four hundred forty-nine'); INSERT INTO t2 VALUES(8591, 49835, 'forty-nine thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(8592, 48213, 'forty-eight thousand two hundred thirteen'); INSERT INTO t2 VALUES(8593, 70699, 'seventy thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(8594, 77261, 'seventy-seven thousand two hundred sixty-one'); INSERT INTO t2 VALUES(8595, 28770, 'twenty-eight thousand seven hundred seventy'); INSERT INTO t2 VALUES(8596, 78418, 'seventy-eight thousand four hundred eighteen'); INSERT INTO t2 VALUES(8597, 1713, 'one thousand seven hundred thirteen'); INSERT INTO t2 VALUES(8598, 18612, 'eighteen thousand six hundred twelve'); INSERT INTO t2 VALUES(8599, 86638, 'eighty-six thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(8600, 45093, 'forty-five thousand ninety-three'); INSERT INTO t2 VALUES(8601, 47829, 'forty-seven thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(8602, 95589, 'ninety-five thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(8603, 13318, 'thirteen thousand three hundred eighteen'); INSERT INTO t2 VALUES(8604, 96785, 'ninety-six thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(8605, 2152, 'two thousand one hundred fifty-two'); INSERT INTO t2 VALUES(8606, 45752, 'forty-five thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(8607, 12506, 'twelve thousand five hundred six'); INSERT INTO t2 VALUES(8608, 47588, 'forty-seven thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(8609, 62692, 'sixty-two thousand six hundred ninety-two'); INSERT INTO t2 VALUES(8610, 26224, 'twenty-six thousand two hundred twenty-four'); INSERT INTO t2 VALUES(8611, 44256, 'forty-four thousand two hundred fifty-six'); INSERT INTO t2 VALUES(8612, 57118, 'fifty-seven thousand one hundred eighteen'); INSERT INTO t2 VALUES(8613, 84336, 'eighty-four thousand three hundred thirty-six'); INSERT INTO t2 VALUES(8614, 96929, 'ninety-six thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(8615, 49830, 'forty-nine thousand eight hundred thirty'); INSERT INTO t2 VALUES(8616, 21745, 'twenty-one thousand seven hundred forty-five'); INSERT INTO t2 VALUES(8617, 79088, 'seventy-nine thousand eighty-eight'); INSERT INTO t2 VALUES(8618, 76255, 'seventy-six thousand two hundred fifty-five'); INSERT INTO t2 VALUES(8619, 61846, 'sixty-one thousand eight hundred forty-six'); INSERT INTO t2 VALUES(8620, 84031, 'eighty-four thousand thirty-one'); INSERT INTO t2 VALUES(8621, 45812, 'forty-five thousand eight hundred twelve'); INSERT INTO t2 VALUES(8622, 62552, 'sixty-two thousand five hundred fifty-two'); INSERT INTO t2 VALUES(8623, 2926, 'two thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(8624, 50694, 'fifty thousand six hundred ninety-four'); INSERT INTO t2 VALUES(8625, 16077, 'sixteen thousand seventy-seven'); INSERT INTO t2 VALUES(8626, 46748, 'forty-six thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(8627, 30989, 'thirty thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(8628, 63812, 'sixty-three thousand eight hundred twelve'); INSERT INTO t2 VALUES(8629, 89220, 'eighty-nine thousand two hundred twenty'); INSERT INTO t2 VALUES(8630, 48440, 'forty-eight thousand four hundred forty'); INSERT INTO t2 VALUES(8631, 37696, 'thirty-seven thousand six hundred ninety-six'); INSERT INTO t2 VALUES(8632, 55331, 'fifty-five thousand three hundred thirty-one'); INSERT INTO t2 VALUES(8633, 26063, 'twenty-six thousand sixty-three'); INSERT INTO t2 VALUES(8634, 26615, 'twenty-six thousand six hundred fifteen'); INSERT INTO t2 VALUES(8635, 7384, 'seven thousand three hundred eighty-four'); INSERT INTO t2 VALUES(8636, 77258, 'seventy-seven thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(8637, 95407, 'ninety-five thousand four hundred seven'); INSERT INTO t2 VALUES(8638, 68228, 'sixty-eight thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(8639, 34816, 'thirty-four thousand eight hundred sixteen'); INSERT INTO t2 VALUES(8640, 89065, 'eighty-nine thousand sixty-five'); INSERT INTO t2 VALUES(8641, 45247, 'forty-five thousand two hundred forty-seven'); INSERT INTO t2 VALUES(8642, 92187, 'ninety-two thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(8643, 27567, 'twenty-seven thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(8644, 16730, 'sixteen thousand seven hundred thirty'); INSERT INTO t2 VALUES(8645, 13930, 'thirteen thousand nine hundred thirty'); INSERT INTO t2 VALUES(8646, 23266, 'twenty-three thousand two hundred sixty-six'); INSERT INTO t2 VALUES(8647, 56009, 'fifty-six thousand nine'); INSERT INTO t2 VALUES(8648, 34112, 'thirty-four thousand one hundred twelve'); INSERT INTO t2 VALUES(8649, 83188, 'eighty-three thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(8650, 72338, 'seventy-two thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(8651, 17468, 'seventeen thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(8652, 45092, 'forty-five thousand ninety-two'); INSERT INTO t2 VALUES(8653, 94057, 'ninety-four thousand fifty-seven'); INSERT INTO t2 VALUES(8654, 83202, 'eighty-three thousand two hundred two'); INSERT INTO t2 VALUES(8655, 92984, 'ninety-two thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(8656, 77442, 'seventy-seven thousand four hundred forty-two'); INSERT INTO t2 VALUES(8657, 22530, 'twenty-two thousand five hundred thirty'); INSERT INTO t2 VALUES(8658, 90172, 'ninety thousand one hundred seventy-two'); INSERT INTO t2 VALUES(8659, 58338, 'fifty-eight thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(8660, 80604, 'eighty thousand six hundred four'); INSERT INTO t2 VALUES(8661, 89556, 'eighty-nine thousand five hundred fifty-six'); INSERT INTO t2 VALUES(8662, 17999, 'seventeen thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(8663, 45559, 'forty-five thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(8664, 11687, 'eleven thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(8665, 36697, 'thirty-six thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(8666, 33682, 'thirty-three thousand six hundred eighty-two'); INSERT INTO t2 VALUES(8667, 13180, 'thirteen thousand one hundred eighty'); INSERT INTO t2 VALUES(8668, 34928, 'thirty-four thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(8669, 17627, 'seventeen thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(8670, 20085, 'twenty thousand eighty-five'); INSERT INTO t2 VALUES(8671, 86689, 'eighty-six thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(8672, 17955, 'seventeen thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(8673, 19842, 'nineteen thousand eight hundred forty-two'); INSERT INTO t2 VALUES(8674, 74782, 'seventy-four thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(8675, 53152, 'fifty-three thousand one hundred fifty-two'); INSERT INTO t2 VALUES(8676, 81107, 'eighty-one thousand one hundred seven'); INSERT INTO t2 VALUES(8677, 35428, 'thirty-five thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(8678, 72530, 'seventy-two thousand five hundred thirty'); INSERT INTO t2 VALUES(8679, 43305, 'forty-three thousand three hundred five'); INSERT INTO t2 VALUES(8680, 2974, 'two thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(8681, 48008, 'forty-eight thousand eight'); INSERT INTO t2 VALUES(8682, 6103, 'six thousand one hundred three'); INSERT INTO t2 VALUES(8683, 59783, 'fifty-nine thousand seven hundred eighty-three'); INSERT INTO t2 VALUES(8684, 15411, 'fifteen thousand four hundred eleven'); INSERT INTO t2 VALUES(8685, 2820, 'two thousand eight hundred twenty'); INSERT INTO t2 VALUES(8686, 83120, 'eighty-three thousand one hundred twenty'); INSERT INTO t2 VALUES(8687, 6211, 'six thousand two hundred eleven'); INSERT INTO t2 VALUES(8688, 92685, 'ninety-two thousand six hundred eighty-five'); INSERT INTO t2 VALUES(8689, 17114, 'seventeen thousand one hundred fourteen'); INSERT INTO t2 VALUES(8690, 71302, 'seventy-one thousand three hundred two'); INSERT INTO t2 VALUES(8691, 6916, 'six thousand nine hundred sixteen'); INSERT INTO t2 VALUES(8692, 70097, 'seventy thousand ninety-seven'); INSERT INTO t2 VALUES(8693, 10476, 'ten thousand four hundred seventy-six'); INSERT INTO t2 VALUES(8694, 94509, 'ninety-four thousand five hundred nine'); INSERT INTO t2 VALUES(8695, 19795, 'nineteen thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(8696, 56289, 'fifty-six thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(8697, 28884, 'twenty-eight thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(8698, 22976, 'twenty-two thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(8699, 32841, 'thirty-two thousand eight hundred forty-one'); INSERT INTO t2 VALUES(8700, 21053, 'twenty-one thousand fifty-three'); INSERT INTO t2 VALUES(8701, 30033, 'thirty thousand thirty-three'); INSERT INTO t2 VALUES(8702, 54554, 'fifty-four thousand five hundred fifty-four'); INSERT INTO t2 VALUES(8703, 56229, 'fifty-six thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(8704, 45239, 'forty-five thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(8705, 54039, 'fifty-four thousand thirty-nine'); INSERT INTO t2 VALUES(8706, 45041, 'forty-five thousand forty-one'); INSERT INTO t2 VALUES(8707, 28822, 'twenty-eight thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(8708, 94080, 'ninety-four thousand eighty'); INSERT INTO t2 VALUES(8709, 91265, 'ninety-one thousand two hundred sixty-five'); INSERT INTO t2 VALUES(8710, 94998, 'ninety-four thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(8711, 64507, 'sixty-four thousand five hundred seven'); INSERT INTO t2 VALUES(8712, 25414, 'twenty-five thousand four hundred fourteen'); INSERT INTO t2 VALUES(8713, 50479, 'fifty thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(8714, 55078, 'fifty-five thousand seventy-eight'); INSERT INTO t2 VALUES(8715, 21183, 'twenty-one thousand one hundred eighty-three'); INSERT INTO t2 VALUES(8716, 83990, 'eighty-three thousand nine hundred ninety'); INSERT INTO t2 VALUES(8717, 68150, 'sixty-eight thousand one hundred fifty'); INSERT INTO t2 VALUES(8718, 87764, 'eighty-seven thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(8719, 16736, 'sixteen thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(8720, 95461, 'ninety-five thousand four hundred sixty-one'); INSERT INTO t2 VALUES(8721, 81193, 'eighty-one thousand one hundred ninety-three'); INSERT INTO t2 VALUES(8722, 17999, 'seventeen thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(8723, 44183, 'forty-four thousand one hundred eighty-three'); INSERT INTO t2 VALUES(8724, 35526, 'thirty-five thousand five hundred twenty-six'); INSERT INTO t2 VALUES(8725, 20312, 'twenty thousand three hundred twelve'); INSERT INTO t2 VALUES(8726, 56297, 'fifty-six thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(8727, 35769, 'thirty-five thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(8728, 48461, 'forty-eight thousand four hundred sixty-one'); INSERT INTO t2 VALUES(8729, 23810, 'twenty-three thousand eight hundred ten'); INSERT INTO t2 VALUES(8730, 74838, 'seventy-four thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(8731, 77600, 'seventy-seven thousand six hundred'); INSERT INTO t2 VALUES(8732, 85446, 'eighty-five thousand four hundred forty-six'); INSERT INTO t2 VALUES(8733, 1154, 'one thousand one hundred fifty-four'); INSERT INTO t2 VALUES(8734, 18177, 'eighteen thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(8735, 3336, 'three thousand three hundred thirty-six'); INSERT INTO t2 VALUES(8736, 56829, 'fifty-six thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(8737, 24010, 'twenty-four thousand ten'); INSERT INTO t2 VALUES(8738, 42910, 'forty-two thousand nine hundred ten'); INSERT INTO t2 VALUES(8739, 8378, 'eight thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(8740, 59197, 'fifty-nine thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(8741, 91327, 'ninety-one thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(8742, 76659, 'seventy-six thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(8743, 36896, 'thirty-six thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(8744, 87615, 'eighty-seven thousand six hundred fifteen'); INSERT INTO t2 VALUES(8745, 11755, 'eleven thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(8746, 79658, 'seventy-nine thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(8747, 56728, 'fifty-six thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(8748, 32266, 'thirty-two thousand two hundred sixty-six'); INSERT INTO t2 VALUES(8749, 6088, 'six thousand eighty-eight'); INSERT INTO t2 VALUES(8750, 35046, 'thirty-five thousand forty-six'); INSERT INTO t2 VALUES(8751, 19133, 'nineteen thousand one hundred thirty-three'); INSERT INTO t2 VALUES(8752, 81608, 'eighty-one thousand six hundred eight'); INSERT INTO t2 VALUES(8753, 8352, 'eight thousand three hundred fifty-two'); INSERT INTO t2 VALUES(8754, 97987, 'ninety-seven thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(8755, 12939, 'twelve thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(8756, 36514, 'thirty-six thousand five hundred fourteen'); INSERT INTO t2 VALUES(8757, 41168, 'forty-one thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(8758, 39249, 'thirty-nine thousand two hundred forty-nine'); INSERT INTO t2 VALUES(8759, 98313, 'ninety-eight thousand three hundred thirteen'); INSERT INTO t2 VALUES(8760, 46874, 'forty-six thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(8761, 80452, 'eighty thousand four hundred fifty-two'); INSERT INTO t2 VALUES(8762, 3514, 'three thousand five hundred fourteen'); INSERT INTO t2 VALUES(8763, 31558, 'thirty-one thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(8764, 20051, 'twenty thousand fifty-one'); INSERT INTO t2 VALUES(8765, 174, 'one hundred seventy-four'); INSERT INTO t2 VALUES(8766, 26461, 'twenty-six thousand four hundred sixty-one'); INSERT INTO t2 VALUES(8767, 68367, 'sixty-eight thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(8768, 98050, 'ninety-eight thousand fifty'); INSERT INTO t2 VALUES(8769, 96396, 'ninety-six thousand three hundred ninety-six'); INSERT INTO t2 VALUES(8770, 87274, 'eighty-seven thousand two hundred seventy-four'); INSERT INTO t2 VALUES(8771, 85993, 'eighty-five thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(8772, 29446, 'twenty-nine thousand four hundred forty-six'); INSERT INTO t2 VALUES(8773, 53555, 'fifty-three thousand five hundred fifty-five'); INSERT INTO t2 VALUES(8774, 43621, 'forty-three thousand six hundred twenty-one'); INSERT INTO t2 VALUES(8775, 16216, 'sixteen thousand two hundred sixteen'); INSERT INTO t2 VALUES(8776, 4240, 'four thousand two hundred forty'); INSERT INTO t2 VALUES(8777, 95429, 'ninety-five thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(8778, 36099, 'thirty-six thousand ninety-nine'); INSERT INTO t2 VALUES(8779, 22866, 'twenty-two thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(8780, 26070, 'twenty-six thousand seventy'); INSERT INTO t2 VALUES(8781, 15960, 'fifteen thousand nine hundred sixty'); INSERT INTO t2 VALUES(8782, 31071, 'thirty-one thousand seventy-one'); INSERT INTO t2 VALUES(8783, 69365, 'sixty-nine thousand three hundred sixty-five'); INSERT INTO t2 VALUES(8784, 6348, 'six thousand three hundred forty-eight'); INSERT INTO t2 VALUES(8785, 7231, 'seven thousand two hundred thirty-one'); INSERT INTO t2 VALUES(8786, 80596, 'eighty thousand five hundred ninety-six'); INSERT INTO t2 VALUES(8787, 62860, 'sixty-two thousand eight hundred sixty'); INSERT INTO t2 VALUES(8788, 21329, 'twenty-one thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(8789, 80341, 'eighty thousand three hundred forty-one'); INSERT INTO t2 VALUES(8790, 39607, 'thirty-nine thousand six hundred seven'); INSERT INTO t2 VALUES(8791, 33663, 'thirty-three thousand six hundred sixty-three'); INSERT INTO t2 VALUES(8792, 68265, 'sixty-eight thousand two hundred sixty-five'); INSERT INTO t2 VALUES(8793, 48596, 'forty-eight thousand five hundred ninety-six'); INSERT INTO t2 VALUES(8794, 93676, 'ninety-three thousand six hundred seventy-six'); INSERT INTO t2 VALUES(8795, 64289, 'sixty-four thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(8796, 54742, 'fifty-four thousand seven hundred forty-two'); INSERT INTO t2 VALUES(8797, 25770, 'twenty-five thousand seven hundred seventy'); INSERT INTO t2 VALUES(8798, 77514, 'seventy-seven thousand five hundred fourteen'); INSERT INTO t2 VALUES(8799, 24809, 'twenty-four thousand eight hundred nine'); INSERT INTO t2 VALUES(8800, 47728, 'forty-seven thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(8801, 69116, 'sixty-nine thousand one hundred sixteen'); INSERT INTO t2 VALUES(8802, 2508, 'two thousand five hundred eight'); INSERT INTO t2 VALUES(8803, 94461, 'ninety-four thousand four hundred sixty-one'); INSERT INTO t2 VALUES(8804, 43526, 'forty-three thousand five hundred twenty-six'); INSERT INTO t2 VALUES(8805, 85148, 'eighty-five thousand one hundred forty-eight'); INSERT INTO t2 VALUES(8806, 68809, 'sixty-eight thousand eight hundred nine'); INSERT INTO t2 VALUES(8807, 21229, 'twenty-one thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(8808, 20926, 'twenty thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(8809, 95358, 'ninety-five thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(8810, 24603, 'twenty-four thousand six hundred three'); INSERT INTO t2 VALUES(8811, 20601, 'twenty thousand six hundred one'); INSERT INTO t2 VALUES(8812, 21149, 'twenty-one thousand one hundred forty-nine'); INSERT INTO t2 VALUES(8813, 16401, 'sixteen thousand four hundred one'); INSERT INTO t2 VALUES(8814, 36559, 'thirty-six thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(8815, 61493, 'sixty-one thousand four hundred ninety-three'); INSERT INTO t2 VALUES(8816, 92910, 'ninety-two thousand nine hundred ten'); INSERT INTO t2 VALUES(8817, 47394, 'forty-seven thousand three hundred ninety-four'); INSERT INTO t2 VALUES(8818, 7008, 'seven thousand eight'); INSERT INTO t2 VALUES(8819, 6667, 'six thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(8820, 51875, 'fifty-one thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(8821, 98458, 'ninety-eight thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(8822, 1291, 'one thousand two hundred ninety-one'); INSERT INTO t2 VALUES(8823, 92609, 'ninety-two thousand six hundred nine'); INSERT INTO t2 VALUES(8824, 49897, 'forty-nine thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(8825, 19672, 'nineteen thousand six hundred seventy-two'); INSERT INTO t2 VALUES(8826, 33905, 'thirty-three thousand nine hundred five'); INSERT INTO t2 VALUES(8827, 25063, 'twenty-five thousand sixty-three'); INSERT INTO t2 VALUES(8828, 26354, 'twenty-six thousand three hundred fifty-four'); INSERT INTO t2 VALUES(8829, 62055, 'sixty-two thousand fifty-five'); INSERT INTO t2 VALUES(8830, 48191, 'forty-eight thousand one hundred ninety-one'); INSERT INTO t2 VALUES(8831, 2531, 'two thousand five hundred thirty-one'); INSERT INTO t2 VALUES(8832, 97209, 'ninety-seven thousand two hundred nine'); INSERT INTO t2 VALUES(8833, 83353, 'eighty-three thousand three hundred fifty-three'); INSERT INTO t2 VALUES(8834, 21619, 'twenty-one thousand six hundred nineteen'); INSERT INTO t2 VALUES(8835, 81317, 'eighty-one thousand three hundred seventeen'); INSERT INTO t2 VALUES(8836, 45325, 'forty-five thousand three hundred twenty-five'); INSERT INTO t2 VALUES(8837, 83136, 'eighty-three thousand one hundred thirty-six'); INSERT INTO t2 VALUES(8838, 89377, 'eighty-nine thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(8839, 47721, 'forty-seven thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(8840, 6441, 'six thousand four hundred forty-one'); INSERT INTO t2 VALUES(8841, 92087, 'ninety-two thousand eighty-seven'); INSERT INTO t2 VALUES(8842, 10737, 'ten thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(8843, 97666, 'ninety-seven thousand six hundred sixty-six'); INSERT INTO t2 VALUES(8844, 75539, 'seventy-five thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(8845, 65961, 'sixty-five thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(8846, 7786, 'seven thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(8847, 66364, 'sixty-six thousand three hundred sixty-four'); INSERT INTO t2 VALUES(8848, 96654, 'ninety-six thousand six hundred fifty-four'); INSERT INTO t2 VALUES(8849, 11049, 'eleven thousand forty-nine'); INSERT INTO t2 VALUES(8850, 11569, 'eleven thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(8851, 55142, 'fifty-five thousand one hundred forty-two'); INSERT INTO t2 VALUES(8852, 85985, 'eighty-five thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(8853, 82146, 'eighty-two thousand one hundred forty-six'); INSERT INTO t2 VALUES(8854, 13656, 'thirteen thousand six hundred fifty-six'); INSERT INTO t2 VALUES(8855, 10304, 'ten thousand three hundred four'); INSERT INTO t2 VALUES(8856, 49971, 'forty-nine thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(8857, 47467, 'forty-seven thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(8858, 44903, 'forty-four thousand nine hundred three'); INSERT INTO t2 VALUES(8859, 70403, 'seventy thousand four hundred three'); INSERT INTO t2 VALUES(8860, 96926, 'ninety-six thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(8861, 44974, 'forty-four thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(8862, 51428, 'fifty-one thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(8863, 77303, 'seventy-seven thousand three hundred three'); INSERT INTO t2 VALUES(8864, 64539, 'sixty-four thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(8865, 8197, 'eight thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(8866, 46172, 'forty-six thousand one hundred seventy-two'); INSERT INTO t2 VALUES(8867, 55154, 'fifty-five thousand one hundred fifty-four'); INSERT INTO t2 VALUES(8868, 96213, 'ninety-six thousand two hundred thirteen'); INSERT INTO t2 VALUES(8869, 78942, 'seventy-eight thousand nine hundred forty-two'); INSERT INTO t2 VALUES(8870, 50775, 'fifty thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(8871, 59875, 'fifty-nine thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(8872, 25186, 'twenty-five thousand one hundred eighty-six'); INSERT INTO t2 VALUES(8873, 62320, 'sixty-two thousand three hundred twenty'); INSERT INTO t2 VALUES(8874, 51320, 'fifty-one thousand three hundred twenty'); INSERT INTO t2 VALUES(8875, 65552, 'sixty-five thousand five hundred fifty-two'); INSERT INTO t2 VALUES(8876, 80498, 'eighty thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(8877, 6865, 'six thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(8878, 39692, 'thirty-nine thousand six hundred ninety-two'); INSERT INTO t2 VALUES(8879, 65024, 'sixty-five thousand twenty-four'); INSERT INTO t2 VALUES(8880, 39564, 'thirty-nine thousand five hundred sixty-four'); INSERT INTO t2 VALUES(8881, 88474, 'eighty-eight thousand four hundred seventy-four'); INSERT INTO t2 VALUES(8882, 79744, 'seventy-nine thousand seven hundred forty-four'); INSERT INTO t2 VALUES(8883, 76880, 'seventy-six thousand eight hundred eighty'); INSERT INTO t2 VALUES(8884, 36549, 'thirty-six thousand five hundred forty-nine'); INSERT INTO t2 VALUES(8885, 13497, 'thirteen thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(8886, 68912, 'sixty-eight thousand nine hundred twelve'); INSERT INTO t2 VALUES(8887, 58536, 'fifty-eight thousand five hundred thirty-six'); INSERT INTO t2 VALUES(8888, 49032, 'forty-nine thousand thirty-two'); INSERT INTO t2 VALUES(8889, 91048, 'ninety-one thousand forty-eight'); INSERT INTO t2 VALUES(8890, 27109, 'twenty-seven thousand one hundred nine'); INSERT INTO t2 VALUES(8891, 62303, 'sixty-two thousand three hundred three'); INSERT INTO t2 VALUES(8892, 46713, 'forty-six thousand seven hundred thirteen'); INSERT INTO t2 VALUES(8893, 29509, 'twenty-nine thousand five hundred nine'); INSERT INTO t2 VALUES(8894, 97802, 'ninety-seven thousand eight hundred two'); INSERT INTO t2 VALUES(8895, 44556, 'forty-four thousand five hundred fifty-six'); INSERT INTO t2 VALUES(8896, 5497, 'five thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(8897, 25520, 'twenty-five thousand five hundred twenty'); INSERT INTO t2 VALUES(8898, 59553, 'fifty-nine thousand five hundred fifty-three'); INSERT INTO t2 VALUES(8899, 47547, 'forty-seven thousand five hundred forty-seven'); INSERT INTO t2 VALUES(8900, 98328, 'ninety-eight thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(8901, 43350, 'forty-three thousand three hundred fifty'); INSERT INTO t2 VALUES(8902, 70041, 'seventy thousand forty-one'); INSERT INTO t2 VALUES(8903, 46790, 'forty-six thousand seven hundred ninety'); INSERT INTO t2 VALUES(8904, 63700, 'sixty-three thousand seven hundred'); INSERT INTO t2 VALUES(8905, 1874, 'one thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(8906, 76509, 'seventy-six thousand five hundred nine'); INSERT INTO t2 VALUES(8907, 11677, 'eleven thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(8908, 9172, 'nine thousand one hundred seventy-two'); INSERT INTO t2 VALUES(8909, 97636, 'ninety-seven thousand six hundred thirty-six'); INSERT INTO t2 VALUES(8910, 43749, 'forty-three thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(8911, 40142, 'forty thousand one hundred forty-two'); INSERT INTO t2 VALUES(8912, 84893, 'eighty-four thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(8913, 69096, 'sixty-nine thousand ninety-six'); INSERT INTO t2 VALUES(8914, 21742, 'twenty-one thousand seven hundred forty-two'); INSERT INTO t2 VALUES(8915, 2143, 'two thousand one hundred forty-three'); INSERT INTO t2 VALUES(8916, 5636, 'five thousand six hundred thirty-six'); INSERT INTO t2 VALUES(8917, 35218, 'thirty-five thousand two hundred eighteen'); INSERT INTO t2 VALUES(8918, 54891, 'fifty-four thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(8919, 84106, 'eighty-four thousand one hundred six'); INSERT INTO t2 VALUES(8920, 10062, 'ten thousand sixty-two'); INSERT INTO t2 VALUES(8921, 53287, 'fifty-three thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(8922, 29599, 'twenty-nine thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(8923, 28047, 'twenty-eight thousand forty-seven'); INSERT INTO t2 VALUES(8924, 72747, 'seventy-two thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(8925, 94010, 'ninety-four thousand ten'); INSERT INTO t2 VALUES(8926, 71607, 'seventy-one thousand six hundred seven'); INSERT INTO t2 VALUES(8927, 58411, 'fifty-eight thousand four hundred eleven'); INSERT INTO t2 VALUES(8928, 29394, 'twenty-nine thousand three hundred ninety-four'); INSERT INTO t2 VALUES(8929, 2245, 'two thousand two hundred forty-five'); INSERT INTO t2 VALUES(8930, 94946, 'ninety-four thousand nine hundred forty-six'); INSERT INTO t2 VALUES(8931, 72192, 'seventy-two thousand one hundred ninety-two'); INSERT INTO t2 VALUES(8932, 74118, 'seventy-four thousand one hundred eighteen'); INSERT INTO t2 VALUES(8933, 18975, 'eighteen thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(8934, 19624, 'nineteen thousand six hundred twenty-four'); INSERT INTO t2 VALUES(8935, 27786, 'twenty-seven thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(8936, 66755, 'sixty-six thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(8937, 75729, 'seventy-five thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(8938, 16637, 'sixteen thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(8939, 8952, 'eight thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(8940, 50266, 'fifty thousand two hundred sixty-six'); INSERT INTO t2 VALUES(8941, 39453, 'thirty-nine thousand four hundred fifty-three'); INSERT INTO t2 VALUES(8942, 98307, 'ninety-eight thousand three hundred seven'); INSERT INTO t2 VALUES(8943, 52979, 'fifty-two thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(8944, 1207, 'one thousand two hundred seven'); INSERT INTO t2 VALUES(8945, 41546, 'forty-one thousand five hundred forty-six'); INSERT INTO t2 VALUES(8946, 45453, 'forty-five thousand four hundred fifty-three'); INSERT INTO t2 VALUES(8947, 59251, 'fifty-nine thousand two hundred fifty-one'); INSERT INTO t2 VALUES(8948, 6339, 'six thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(8949, 13732, 'thirteen thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(8950, 71798, 'seventy-one thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(8951, 14864, 'fourteen thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(8952, 56612, 'fifty-six thousand six hundred twelve'); INSERT INTO t2 VALUES(8953, 78046, 'seventy-eight thousand forty-six'); INSERT INTO t2 VALUES(8954, 18800, 'eighteen thousand eight hundred'); INSERT INTO t2 VALUES(8955, 22659, 'twenty-two thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(8956, 33144, 'thirty-three thousand one hundred forty-four'); INSERT INTO t2 VALUES(8957, 64103, 'sixty-four thousand one hundred three'); INSERT INTO t2 VALUES(8958, 96543, 'ninety-six thousand five hundred forty-three'); INSERT INTO t2 VALUES(8959, 79466, 'seventy-nine thousand four hundred sixty-six'); INSERT INTO t2 VALUES(8960, 64542, 'sixty-four thousand five hundred forty-two'); INSERT INTO t2 VALUES(8961, 67406, 'sixty-seven thousand four hundred six'); INSERT INTO t2 VALUES(8962, 92088, 'ninety-two thousand eighty-eight'); INSERT INTO t2 VALUES(8963, 87731, 'eighty-seven thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(8964, 10933, 'ten thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(8965, 79658, 'seventy-nine thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(8966, 39486, 'thirty-nine thousand four hundred eighty-six'); INSERT INTO t2 VALUES(8967, 27642, 'twenty-seven thousand six hundred forty-two'); INSERT INTO t2 VALUES(8968, 18531, 'eighteen thousand five hundred thirty-one'); INSERT INTO t2 VALUES(8969, 65412, 'sixty-five thousand four hundred twelve'); INSERT INTO t2 VALUES(8970, 43478, 'forty-three thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(8971, 50522, 'fifty thousand five hundred twenty-two'); INSERT INTO t2 VALUES(8972, 74117, 'seventy-four thousand one hundred seventeen'); INSERT INTO t2 VALUES(8973, 90745, 'ninety thousand seven hundred forty-five'); INSERT INTO t2 VALUES(8974, 23237, 'twenty-three thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(8975, 57047, 'fifty-seven thousand forty-seven'); INSERT INTO t2 VALUES(8976, 1198, 'one thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(8977, 13445, 'thirteen thousand four hundred forty-five'); INSERT INTO t2 VALUES(8978, 21928, 'twenty-one thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(8979, 65524, 'sixty-five thousand five hundred twenty-four'); INSERT INTO t2 VALUES(8980, 76433, 'seventy-six thousand four hundred thirty-three'); INSERT INTO t2 VALUES(8981, 27187, 'twenty-seven thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(8982, 1220, 'one thousand two hundred twenty'); INSERT INTO t2 VALUES(8983, 65201, 'sixty-five thousand two hundred one'); INSERT INTO t2 VALUES(8984, 33508, 'thirty-three thousand five hundred eight'); INSERT INTO t2 VALUES(8985, 79567, 'seventy-nine thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(8986, 57891, 'fifty-seven thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(8987, 88043, 'eighty-eight thousand forty-three'); INSERT INTO t2 VALUES(8988, 67273, 'sixty-seven thousand two hundred seventy-three'); INSERT INTO t2 VALUES(8989, 59250, 'fifty-nine thousand two hundred fifty'); INSERT INTO t2 VALUES(8990, 16652, 'sixteen thousand six hundred fifty-two'); INSERT INTO t2 VALUES(8991, 8824, 'eight thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(8992, 71409, 'seventy-one thousand four hundred nine'); INSERT INTO t2 VALUES(8993, 26349, 'twenty-six thousand three hundred forty-nine'); INSERT INTO t2 VALUES(8994, 70580, 'seventy thousand five hundred eighty'); INSERT INTO t2 VALUES(8995, 42193, 'forty-two thousand one hundred ninety-three'); INSERT INTO t2 VALUES(8996, 18168, 'eighteen thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(8997, 2223, 'two thousand two hundred twenty-three'); INSERT INTO t2 VALUES(8998, 42209, 'forty-two thousand two hundred nine'); INSERT INTO t2 VALUES(8999, 41704, 'forty-one thousand seven hundred four'); INSERT INTO t2 VALUES(9000, 47265, 'forty-seven thousand two hundred sixty-five'); INSERT INTO t2 VALUES(9001, 72545, 'seventy-two thousand five hundred forty-five'); INSERT INTO t2 VALUES(9002, 44849, 'forty-four thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(9003, 30204, 'thirty thousand two hundred four'); INSERT INTO t2 VALUES(9004, 8644, 'eight thousand six hundred forty-four'); INSERT INTO t2 VALUES(9005, 98294, 'ninety-eight thousand two hundred ninety-four'); INSERT INTO t2 VALUES(9006, 72624, 'seventy-two thousand six hundred twenty-four'); INSERT INTO t2 VALUES(9007, 24537, 'twenty-four thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(9008, 82120, 'eighty-two thousand one hundred twenty'); INSERT INTO t2 VALUES(9009, 77601, 'seventy-seven thousand six hundred one'); INSERT INTO t2 VALUES(9010, 75426, 'seventy-five thousand four hundred twenty-six'); INSERT INTO t2 VALUES(9011, 13571, 'thirteen thousand five hundred seventy-one'); INSERT INTO t2 VALUES(9012, 15433, 'fifteen thousand four hundred thirty-three'); INSERT INTO t2 VALUES(9013, 87400, 'eighty-seven thousand four hundred'); INSERT INTO t2 VALUES(9014, 70696, 'seventy thousand six hundred ninety-six'); INSERT INTO t2 VALUES(9015, 64448, 'sixty-four thousand four hundred forty-eight'); INSERT INTO t2 VALUES(9016, 5710, 'five thousand seven hundred ten'); INSERT INTO t2 VALUES(9017, 77765, 'seventy-seven thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(9018, 14911, 'fourteen thousand nine hundred eleven'); INSERT INTO t2 VALUES(9019, 95192, 'ninety-five thousand one hundred ninety-two'); INSERT INTO t2 VALUES(9020, 12800, 'twelve thousand eight hundred'); INSERT INTO t2 VALUES(9021, 11553, 'eleven thousand five hundred fifty-three'); INSERT INTO t2 VALUES(9022, 20986, 'twenty thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(9023, 45636, 'forty-five thousand six hundred thirty-six'); INSERT INTO t2 VALUES(9024, 15259, 'fifteen thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(9025, 85665, 'eighty-five thousand six hundred sixty-five'); INSERT INTO t2 VALUES(9026, 94631, 'ninety-four thousand six hundred thirty-one'); INSERT INTO t2 VALUES(9027, 18275, 'eighteen thousand two hundred seventy-five'); INSERT INTO t2 VALUES(9028, 17479, 'seventeen thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(9029, 29074, 'twenty-nine thousand seventy-four'); INSERT INTO t2 VALUES(9030, 36288, 'thirty-six thousand two hundred eighty-eight'); INSERT INTO t2 VALUES(9031, 38724, 'thirty-eight thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(9032, 36917, 'thirty-six thousand nine hundred seventeen'); INSERT INTO t2 VALUES(9033, 50959, 'fifty thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(9034, 40294, 'forty thousand two hundred ninety-four'); INSERT INTO t2 VALUES(9035, 13877, 'thirteen thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(9036, 21680, 'twenty-one thousand six hundred eighty'); INSERT INTO t2 VALUES(9037, 47588, 'forty-seven thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(9038, 68859, 'sixty-eight thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(9039, 1388, 'one thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(9040, 39594, 'thirty-nine thousand five hundred ninety-four'); INSERT INTO t2 VALUES(9041, 34961, 'thirty-four thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(9042, 58399, 'fifty-eight thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(9043, 60409, 'sixty thousand four hundred nine'); INSERT INTO t2 VALUES(9044, 92031, 'ninety-two thousand thirty-one'); INSERT INTO t2 VALUES(9045, 81569, 'eighty-one thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(9046, 69272, 'sixty-nine thousand two hundred seventy-two'); INSERT INTO t2 VALUES(9047, 63080, 'sixty-three thousand eighty'); INSERT INTO t2 VALUES(9048, 72366, 'seventy-two thousand three hundred sixty-six'); INSERT INTO t2 VALUES(9049, 78403, 'seventy-eight thousand four hundred three'); INSERT INTO t2 VALUES(9050, 74272, 'seventy-four thousand two hundred seventy-two'); INSERT INTO t2 VALUES(9051, 92504, 'ninety-two thousand five hundred four'); INSERT INTO t2 VALUES(9052, 52040, 'fifty-two thousand forty'); INSERT INTO t2 VALUES(9053, 16682, 'sixteen thousand six hundred eighty-two'); INSERT INTO t2 VALUES(9054, 84420, 'eighty-four thousand four hundred twenty'); INSERT INTO t2 VALUES(9055, 22051, 'twenty-two thousand fifty-one'); INSERT INTO t2 VALUES(9056, 25728, 'twenty-five thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(9057, 9062, 'nine thousand sixty-two'); INSERT INTO t2 VALUES(9058, 83578, 'eighty-three thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(9059, 16698, 'sixteen thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(9060, 90904, 'ninety thousand nine hundred four'); INSERT INTO t2 VALUES(9061, 92143, 'ninety-two thousand one hundred forty-three'); INSERT INTO t2 VALUES(9062, 41489, 'forty-one thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(9063, 41463, 'forty-one thousand four hundred sixty-three'); INSERT INTO t2 VALUES(9064, 56285, 'fifty-six thousand two hundred eighty-five'); INSERT INTO t2 VALUES(9065, 9501, 'nine thousand five hundred one'); INSERT INTO t2 VALUES(9066, 8798, 'eight thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(9067, 52952, 'fifty-two thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(9068, 19648, 'nineteen thousand six hundred forty-eight'); INSERT INTO t2 VALUES(9069, 46538, 'forty-six thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(9070, 84859, 'eighty-four thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(9071, 89801, 'eighty-nine thousand eight hundred one'); INSERT INTO t2 VALUES(9072, 83337, 'eighty-three thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(9073, 18314, 'eighteen thousand three hundred fourteen'); INSERT INTO t2 VALUES(9074, 41944, 'forty-one thousand nine hundred forty-four'); INSERT INTO t2 VALUES(9075, 28894, 'twenty-eight thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(9076, 11182, 'eleven thousand one hundred eighty-two'); INSERT INTO t2 VALUES(9077, 4470, 'four thousand four hundred seventy'); INSERT INTO t2 VALUES(9078, 6545, 'six thousand five hundred forty-five'); INSERT INTO t2 VALUES(9079, 18450, 'eighteen thousand four hundred fifty'); INSERT INTO t2 VALUES(9080, 59891, 'fifty-nine thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(9081, 14079, 'fourteen thousand seventy-nine'); INSERT INTO t2 VALUES(9082, 493, 'four hundred ninety-three'); INSERT INTO t2 VALUES(9083, 51059, 'fifty-one thousand fifty-nine'); INSERT INTO t2 VALUES(9084, 69569, 'sixty-nine thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(9085, 48058, 'forty-eight thousand fifty-eight'); INSERT INTO t2 VALUES(9086, 93376, 'ninety-three thousand three hundred seventy-six'); INSERT INTO t2 VALUES(9087, 3512, 'three thousand five hundred twelve'); INSERT INTO t2 VALUES(9088, 34603, 'thirty-four thousand six hundred three'); INSERT INTO t2 VALUES(9089, 37577, 'thirty-seven thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(9090, 96520, 'ninety-six thousand five hundred twenty'); INSERT INTO t2 VALUES(9091, 94347, 'ninety-four thousand three hundred forty-seven'); INSERT INTO t2 VALUES(9092, 36664, 'thirty-six thousand six hundred sixty-four'); INSERT INTO t2 VALUES(9093, 66240, 'sixty-six thousand two hundred forty'); INSERT INTO t2 VALUES(9094, 98725, 'ninety-eight thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(9095, 53715, 'fifty-three thousand seven hundred fifteen'); INSERT INTO t2 VALUES(9096, 3137, 'three thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(9097, 44103, 'forty-four thousand one hundred three'); INSERT INTO t2 VALUES(9098, 87368, 'eighty-seven thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(9099, 57042, 'fifty-seven thousand forty-two'); INSERT INTO t2 VALUES(9100, 29761, 'twenty-nine thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(9101, 87985, 'eighty-seven thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(9102, 63277, 'sixty-three thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(9103, 84961, 'eighty-four thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(9104, 75307, 'seventy-five thousand three hundred seven'); INSERT INTO t2 VALUES(9105, 42729, 'forty-two thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(9106, 85873, 'eighty-five thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(9107, 3983, 'three thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(9108, 36607, 'thirty-six thousand six hundred seven'); INSERT INTO t2 VALUES(9109, 55814, 'fifty-five thousand eight hundred fourteen'); INSERT INTO t2 VALUES(9110, 18117, 'eighteen thousand one hundred seventeen'); INSERT INTO t2 VALUES(9111, 12887, 'twelve thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(9112, 30494, 'thirty thousand four hundred ninety-four'); INSERT INTO t2 VALUES(9113, 52338, 'fifty-two thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(9114, 80206, 'eighty thousand two hundred six'); INSERT INTO t2 VALUES(9115, 24533, 'twenty-four thousand five hundred thirty-three'); INSERT INTO t2 VALUES(9116, 44832, 'forty-four thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(9117, 47489, 'forty-seven thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(9118, 8504, 'eight thousand five hundred four'); INSERT INTO t2 VALUES(9119, 47621, 'forty-seven thousand six hundred twenty-one'); INSERT INTO t2 VALUES(9120, 10406, 'ten thousand four hundred six'); INSERT INTO t2 VALUES(9121, 38895, 'thirty-eight thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(9122, 15264, 'fifteen thousand two hundred sixty-four'); INSERT INTO t2 VALUES(9123, 35635, 'thirty-five thousand six hundred thirty-five'); INSERT INTO t2 VALUES(9124, 18576, 'eighteen thousand five hundred seventy-six'); INSERT INTO t2 VALUES(9125, 81105, 'eighty-one thousand one hundred five'); INSERT INTO t2 VALUES(9126, 66310, 'sixty-six thousand three hundred ten'); INSERT INTO t2 VALUES(9127, 55519, 'fifty-five thousand five hundred nineteen'); INSERT INTO t2 VALUES(9128, 75799, 'seventy-five thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(9129, 97585, 'ninety-seven thousand five hundred eighty-five'); INSERT INTO t2 VALUES(9130, 4743, 'four thousand seven hundred forty-three'); INSERT INTO t2 VALUES(9131, 19892, 'nineteen thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(9132, 36848, 'thirty-six thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(9133, 58513, 'fifty-eight thousand five hundred thirteen'); INSERT INTO t2 VALUES(9134, 34212, 'thirty-four thousand two hundred twelve'); INSERT INTO t2 VALUES(9135, 66454, 'sixty-six thousand four hundred fifty-four'); INSERT INTO t2 VALUES(9136, 32685, 'thirty-two thousand six hundred eighty-five'); INSERT INTO t2 VALUES(9137, 29310, 'twenty-nine thousand three hundred ten'); INSERT INTO t2 VALUES(9138, 87268, 'eighty-seven thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(9139, 45023, 'forty-five thousand twenty-three'); INSERT INTO t2 VALUES(9140, 71538, 'seventy-one thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(9141, 96983, 'ninety-six thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(9142, 70920, 'seventy thousand nine hundred twenty'); INSERT INTO t2 VALUES(9143, 15194, 'fifteen thousand one hundred ninety-four'); INSERT INTO t2 VALUES(9144, 31297, 'thirty-one thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(9145, 96061, 'ninety-six thousand sixty-one'); INSERT INTO t2 VALUES(9146, 45673, 'forty-five thousand six hundred seventy-three'); INSERT INTO t2 VALUES(9147, 13200, 'thirteen thousand two hundred'); INSERT INTO t2 VALUES(9148, 37673, 'thirty-seven thousand six hundred seventy-three'); INSERT INTO t2 VALUES(9149, 21236, 'twenty-one thousand two hundred thirty-six'); INSERT INTO t2 VALUES(9150, 80021, 'eighty thousand twenty-one'); INSERT INTO t2 VALUES(9151, 70383, 'seventy thousand three hundred eighty-three'); INSERT INTO t2 VALUES(9152, 24400, 'twenty-four thousand four hundred'); INSERT INTO t2 VALUES(9153, 4740, 'four thousand seven hundred forty'); INSERT INTO t2 VALUES(9154, 68401, 'sixty-eight thousand four hundred one'); INSERT INTO t2 VALUES(9155, 63470, 'sixty-three thousand four hundred seventy'); INSERT INTO t2 VALUES(9156, 13977, 'thirteen thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(9157, 14138, 'fourteen thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(9158, 30075, 'thirty thousand seventy-five'); INSERT INTO t2 VALUES(9159, 7684, 'seven thousand six hundred eighty-four'); INSERT INTO t2 VALUES(9160, 37382, 'thirty-seven thousand three hundred eighty-two'); INSERT INTO t2 VALUES(9161, 51074, 'fifty-one thousand seventy-four'); INSERT INTO t2 VALUES(9162, 32413, 'thirty-two thousand four hundred thirteen'); INSERT INTO t2 VALUES(9163, 95519, 'ninety-five thousand five hundred nineteen'); INSERT INTO t2 VALUES(9164, 81342, 'eighty-one thousand three hundred forty-two'); INSERT INTO t2 VALUES(9165, 83870, 'eighty-three thousand eight hundred seventy'); INSERT INTO t2 VALUES(9166, 97186, 'ninety-seven thousand one hundred eighty-six'); INSERT INTO t2 VALUES(9167, 28563, 'twenty-eight thousand five hundred sixty-three'); INSERT INTO t2 VALUES(9168, 55274, 'fifty-five thousand two hundred seventy-four'); INSERT INTO t2 VALUES(9169, 66171, 'sixty-six thousand one hundred seventy-one'); INSERT INTO t2 VALUES(9170, 51477, 'fifty-one thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(9171, 85345, 'eighty-five thousand three hundred forty-five'); INSERT INTO t2 VALUES(9172, 17918, 'seventeen thousand nine hundred eighteen'); INSERT INTO t2 VALUES(9173, 3711, 'three thousand seven hundred eleven'); INSERT INTO t2 VALUES(9174, 65063, 'sixty-five thousand sixty-three'); INSERT INTO t2 VALUES(9175, 77979, 'seventy-seven thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(9176, 74922, 'seventy-four thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(9177, 35549, 'thirty-five thousand five hundred forty-nine'); INSERT INTO t2 VALUES(9178, 17908, 'seventeen thousand nine hundred eight'); INSERT INTO t2 VALUES(9179, 40312, 'forty thousand three hundred twelve'); INSERT INTO t2 VALUES(9180, 57888, 'fifty-seven thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(9181, 94800, 'ninety-four thousand eight hundred'); INSERT INTO t2 VALUES(9182, 88574, 'eighty-eight thousand five hundred seventy-four'); INSERT INTO t2 VALUES(9183, 49016, 'forty-nine thousand sixteen'); INSERT INTO t2 VALUES(9184, 23742, 'twenty-three thousand seven hundred forty-two'); INSERT INTO t2 VALUES(9185, 86656, 'eighty-six thousand six hundred fifty-six'); INSERT INTO t2 VALUES(9186, 50749, 'fifty thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(9187, 12446, 'twelve thousand four hundred forty-six'); INSERT INTO t2 VALUES(9188, 98024, 'ninety-eight thousand twenty-four'); INSERT INTO t2 VALUES(9189, 57253, 'fifty-seven thousand two hundred fifty-three'); INSERT INTO t2 VALUES(9190, 69315, 'sixty-nine thousand three hundred fifteen'); INSERT INTO t2 VALUES(9191, 92635, 'ninety-two thousand six hundred thirty-five'); INSERT INTO t2 VALUES(9192, 19044, 'nineteen thousand forty-four'); INSERT INTO t2 VALUES(9193, 50229, 'fifty thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(9194, 7691, 'seven thousand six hundred ninety-one'); INSERT INTO t2 VALUES(9195, 31349, 'thirty-one thousand three hundred forty-nine'); INSERT INTO t2 VALUES(9196, 21118, 'twenty-one thousand one hundred eighteen'); INSERT INTO t2 VALUES(9197, 97045, 'ninety-seven thousand forty-five'); INSERT INTO t2 VALUES(9198, 5454, 'five thousand four hundred fifty-four'); INSERT INTO t2 VALUES(9199, 68766, 'sixty-eight thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(9200, 50406, 'fifty thousand four hundred six'); INSERT INTO t2 VALUES(9201, 92867, 'ninety-two thousand eight hundred sixty-seven'); INSERT INTO t2 VALUES(9202, 18343, 'eighteen thousand three hundred forty-three'); INSERT INTO t2 VALUES(9203, 39347, 'thirty-nine thousand three hundred forty-seven'); INSERT INTO t2 VALUES(9204, 39519, 'thirty-nine thousand five hundred nineteen'); INSERT INTO t2 VALUES(9205, 91687, 'ninety-one thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(9206, 30626, 'thirty thousand six hundred twenty-six'); INSERT INTO t2 VALUES(9207, 77896, 'seventy-seven thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(9208, 5713, 'five thousand seven hundred thirteen'); INSERT INTO t2 VALUES(9209, 70211, 'seventy thousand two hundred eleven'); INSERT INTO t2 VALUES(9210, 52132, 'fifty-two thousand one hundred thirty-two'); INSERT INTO t2 VALUES(9211, 71921, 'seventy-one thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(9212, 85753, 'eighty-five thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(9213, 22211, 'twenty-two thousand two hundred eleven'); INSERT INTO t2 VALUES(9214, 14714, 'fourteen thousand seven hundred fourteen'); INSERT INTO t2 VALUES(9215, 47957, 'forty-seven thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(9216, 67867, 'sixty-seven thousand eight hundred sixty-seven'); INSERT INTO t2 VALUES(9217, 4372, 'four thousand three hundred seventy-two'); INSERT INTO t2 VALUES(9218, 3134, 'three thousand one hundred thirty-four'); INSERT INTO t2 VALUES(9219, 38687, 'thirty-eight thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(9220, 4799, 'four thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(9221, 38295, 'thirty-eight thousand two hundred ninety-five'); INSERT INTO t2 VALUES(9222, 70443, 'seventy thousand four hundred forty-three'); INSERT INTO t2 VALUES(9223, 33871, 'thirty-three thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(9224, 45367, 'forty-five thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(9225, 81287, 'eighty-one thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(9226, 73414, 'seventy-three thousand four hundred fourteen'); INSERT INTO t2 VALUES(9227, 73746, 'seventy-three thousand seven hundred forty-six'); INSERT INTO t2 VALUES(9228, 7579, 'seven thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(9229, 42253, 'forty-two thousand two hundred fifty-three'); INSERT INTO t2 VALUES(9230, 19213, 'nineteen thousand two hundred thirteen'); INSERT INTO t2 VALUES(9231, 79120, 'seventy-nine thousand one hundred twenty'); INSERT INTO t2 VALUES(9232, 17001, 'seventeen thousand one'); INSERT INTO t2 VALUES(9233, 82992, 'eighty-two thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(9234, 39801, 'thirty-nine thousand eight hundred one'); INSERT INTO t2 VALUES(9235, 39907, 'thirty-nine thousand nine hundred seven'); INSERT INTO t2 VALUES(9236, 97892, 'ninety-seven thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(9237, 51197, 'fifty-one thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(9238, 48630, 'forty-eight thousand six hundred thirty'); INSERT INTO t2 VALUES(9239, 87649, 'eighty-seven thousand six hundred forty-nine'); INSERT INTO t2 VALUES(9240, 90576, 'ninety thousand five hundred seventy-six'); INSERT INTO t2 VALUES(9241, 26048, 'twenty-six thousand forty-eight'); INSERT INTO t2 VALUES(9242, 76114, 'seventy-six thousand one hundred fourteen'); INSERT INTO t2 VALUES(9243, 58204, 'fifty-eight thousand two hundred four'); INSERT INTO t2 VALUES(9244, 98612, 'ninety-eight thousand six hundred twelve'); INSERT INTO t2 VALUES(9245, 86470, 'eighty-six thousand four hundred seventy'); INSERT INTO t2 VALUES(9246, 78258, 'seventy-eight thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(9247, 11347, 'eleven thousand three hundred forty-seven'); INSERT INTO t2 VALUES(9248, 26374, 'twenty-six thousand three hundred seventy-four'); INSERT INTO t2 VALUES(9249, 96647, 'ninety-six thousand six hundred forty-seven'); INSERT INTO t2 VALUES(9250, 95816, 'ninety-five thousand eight hundred sixteen'); INSERT INTO t2 VALUES(9251, 27239, 'twenty-seven thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(9252, 22610, 'twenty-two thousand six hundred ten'); INSERT INTO t2 VALUES(9253, 44620, 'forty-four thousand six hundred twenty'); INSERT INTO t2 VALUES(9254, 26021, 'twenty-six thousand twenty-one'); INSERT INTO t2 VALUES(9255, 24197, 'twenty-four thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(9256, 42183, 'forty-two thousand one hundred eighty-three'); INSERT INTO t2 VALUES(9257, 72526, 'seventy-two thousand five hundred twenty-six'); INSERT INTO t2 VALUES(9258, 35207, 'thirty-five thousand two hundred seven'); INSERT INTO t2 VALUES(9259, 92524, 'ninety-two thousand five hundred twenty-four'); INSERT INTO t2 VALUES(9260, 95185, 'ninety-five thousand one hundred eighty-five'); INSERT INTO t2 VALUES(9261, 38071, 'thirty-eight thousand seventy-one'); INSERT INTO t2 VALUES(9262, 9049, 'nine thousand forty-nine'); INSERT INTO t2 VALUES(9263, 47693, 'forty-seven thousand six hundred ninety-three'); INSERT INTO t2 VALUES(9264, 83846, 'eighty-three thousand eight hundred forty-six'); INSERT INTO t2 VALUES(9265, 11549, 'eleven thousand five hundred forty-nine'); INSERT INTO t2 VALUES(9266, 36414, 'thirty-six thousand four hundred fourteen'); INSERT INTO t2 VALUES(9267, 78632, 'seventy-eight thousand six hundred thirty-two'); INSERT INTO t2 VALUES(9268, 33438, 'thirty-three thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(9269, 50465, 'fifty thousand four hundred sixty-five'); INSERT INTO t2 VALUES(9270, 64075, 'sixty-four thousand seventy-five'); INSERT INTO t2 VALUES(9271, 99695, 'ninety-nine thousand six hundred ninety-five'); INSERT INTO t2 VALUES(9272, 83342, 'eighty-three thousand three hundred forty-two'); INSERT INTO t2 VALUES(9273, 6498, 'six thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(9274, 25008, 'twenty-five thousand eight'); INSERT INTO t2 VALUES(9275, 56233, 'fifty-six thousand two hundred thirty-three'); INSERT INTO t2 VALUES(9276, 61233, 'sixty-one thousand two hundred thirty-three'); INSERT INTO t2 VALUES(9277, 52338, 'fifty-two thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(9278, 65044, 'sixty-five thousand forty-four'); INSERT INTO t2 VALUES(9279, 13969, 'thirteen thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(9280, 98431, 'ninety-eight thousand four hundred thirty-one'); INSERT INTO t2 VALUES(9281, 60655, 'sixty thousand six hundred fifty-five'); INSERT INTO t2 VALUES(9282, 78662, 'seventy-eight thousand six hundred sixty-two'); INSERT INTO t2 VALUES(9283, 19926, 'nineteen thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(9284, 40295, 'forty thousand two hundred ninety-five'); INSERT INTO t2 VALUES(9285, 73494, 'seventy-three thousand four hundred ninety-four'); INSERT INTO t2 VALUES(9286, 47895, 'forty-seven thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(9287, 74753, 'seventy-four thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(9288, 44197, 'forty-four thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(9289, 15540, 'fifteen thousand five hundred forty'); INSERT INTO t2 VALUES(9290, 62565, 'sixty-two thousand five hundred sixty-five'); INSERT INTO t2 VALUES(9291, 67677, 'sixty-seven thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(9292, 78102, 'seventy-eight thousand one hundred two'); INSERT INTO t2 VALUES(9293, 11197, 'eleven thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(9294, 35893, 'thirty-five thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(9295, 7969, 'seven thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(9296, 24802, 'twenty-four thousand eight hundred two'); INSERT INTO t2 VALUES(9297, 48936, 'forty-eight thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(9298, 5711, 'five thousand seven hundred eleven'); INSERT INTO t2 VALUES(9299, 63335, 'sixty-three thousand three hundred thirty-five'); INSERT INTO t2 VALUES(9300, 92230, 'ninety-two thousand two hundred thirty'); INSERT INTO t2 VALUES(9301, 71216, 'seventy-one thousand two hundred sixteen'); INSERT INTO t2 VALUES(9302, 40874, 'forty thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(9303, 4409, 'four thousand four hundred nine'); INSERT INTO t2 VALUES(9304, 1767, 'one thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(9305, 25589, 'twenty-five thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(9306, 33929, 'thirty-three thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(9307, 12472, 'twelve thousand four hundred seventy-two'); INSERT INTO t2 VALUES(9308, 80058, 'eighty thousand fifty-eight'); INSERT INTO t2 VALUES(9309, 21499, 'twenty-one thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(9310, 34393, 'thirty-four thousand three hundred ninety-three'); INSERT INTO t2 VALUES(9311, 98529, 'ninety-eight thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(9312, 27375, 'twenty-seven thousand three hundred seventy-five'); INSERT INTO t2 VALUES(9313, 83557, 'eighty-three thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(9314, 33473, 'thirty-three thousand four hundred seventy-three'); INSERT INTO t2 VALUES(9315, 10352, 'ten thousand three hundred fifty-two'); INSERT INTO t2 VALUES(9316, 34182, 'thirty-four thousand one hundred eighty-two'); INSERT INTO t2 VALUES(9317, 10750, 'ten thousand seven hundred fifty'); INSERT INTO t2 VALUES(9318, 42903, 'forty-two thousand nine hundred three'); INSERT INTO t2 VALUES(9319, 60628, 'sixty thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(9320, 82460, 'eighty-two thousand four hundred sixty'); INSERT INTO t2 VALUES(9321, 41144, 'forty-one thousand one hundred forty-four'); INSERT INTO t2 VALUES(9322, 80916, 'eighty thousand nine hundred sixteen'); INSERT INTO t2 VALUES(9323, 39817, 'thirty-nine thousand eight hundred seventeen'); INSERT INTO t2 VALUES(9324, 10338, 'ten thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(9325, 68058, 'sixty-eight thousand fifty-eight'); INSERT INTO t2 VALUES(9326, 23224, 'twenty-three thousand two hundred twenty-four'); INSERT INTO t2 VALUES(9327, 6304, 'six thousand three hundred four'); INSERT INTO t2 VALUES(9328, 31083, 'thirty-one thousand eighty-three'); INSERT INTO t2 VALUES(9329, 87939, 'eighty-seven thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(9330, 38949, 'thirty-eight thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(9331, 26294, 'twenty-six thousand two hundred ninety-four'); INSERT INTO t2 VALUES(9332, 34191, 'thirty-four thousand one hundred ninety-one'); INSERT INTO t2 VALUES(9333, 80000, 'eighty thousand'); INSERT INTO t2 VALUES(9334, 16885, 'sixteen thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(9335, 96173, 'ninety-six thousand one hundred seventy-three'); INSERT INTO t2 VALUES(9336, 68596, 'sixty-eight thousand five hundred ninety-six'); INSERT INTO t2 VALUES(9337, 72711, 'seventy-two thousand seven hundred eleven'); INSERT INTO t2 VALUES(9338, 71545, 'seventy-one thousand five hundred forty-five'); INSERT INTO t2 VALUES(9339, 61996, 'sixty-one thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(9340, 68801, 'sixty-eight thousand eight hundred one'); INSERT INTO t2 VALUES(9341, 26792, 'twenty-six thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(9342, 73947, 'seventy-three thousand nine hundred forty-seven'); INSERT INTO t2 VALUES(9343, 14713, 'fourteen thousand seven hundred thirteen'); INSERT INTO t2 VALUES(9344, 79149, 'seventy-nine thousand one hundred forty-nine'); INSERT INTO t2 VALUES(9345, 10711, 'ten thousand seven hundred eleven'); INSERT INTO t2 VALUES(9346, 42410, 'forty-two thousand four hundred ten'); INSERT INTO t2 VALUES(9347, 27736, 'twenty-seven thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(9348, 48017, 'forty-eight thousand seventeen'); INSERT INTO t2 VALUES(9349, 14655, 'fourteen thousand six hundred fifty-five'); INSERT INTO t2 VALUES(9350, 37513, 'thirty-seven thousand five hundred thirteen'); INSERT INTO t2 VALUES(9351, 56325, 'fifty-six thousand three hundred twenty-five'); INSERT INTO t2 VALUES(9352, 36251, 'thirty-six thousand two hundred fifty-one'); INSERT INTO t2 VALUES(9353, 84050, 'eighty-four thousand fifty'); INSERT INTO t2 VALUES(9354, 99886, 'ninety-nine thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(9355, 36997, 'thirty-six thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(9356, 47435, 'forty-seven thousand four hundred thirty-five'); INSERT INTO t2 VALUES(9357, 99736, 'ninety-nine thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(9358, 20499, 'twenty thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(9359, 70636, 'seventy thousand six hundred thirty-six'); INSERT INTO t2 VALUES(9360, 55045, 'fifty-five thousand forty-five'); INSERT INTO t2 VALUES(9361, 83284, 'eighty-three thousand two hundred eighty-four'); INSERT INTO t2 VALUES(9362, 95381, 'ninety-five thousand three hundred eighty-one'); INSERT INTO t2 VALUES(9363, 44975, 'forty-four thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(9364, 35334, 'thirty-five thousand three hundred thirty-four'); INSERT INTO t2 VALUES(9365, 98581, 'ninety-eight thousand five hundred eighty-one'); INSERT INTO t2 VALUES(9366, 74836, 'seventy-four thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(9367, 31911, 'thirty-one thousand nine hundred eleven'); INSERT INTO t2 VALUES(9368, 83550, 'eighty-three thousand five hundred fifty'); INSERT INTO t2 VALUES(9369, 59749, 'fifty-nine thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(9370, 22048, 'twenty-two thousand forty-eight'); INSERT INTO t2 VALUES(9371, 77168, 'seventy-seven thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(9372, 34265, 'thirty-four thousand two hundred sixty-five'); INSERT INTO t2 VALUES(9373, 64598, 'sixty-four thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(9374, 56825, 'fifty-six thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(9375, 6105, 'six thousand one hundred five'); INSERT INTO t2 VALUES(9376, 50099, 'fifty thousand ninety-nine'); INSERT INTO t2 VALUES(9377, 7719, 'seven thousand seven hundred nineteen'); INSERT INTO t2 VALUES(9378, 78128, 'seventy-eight thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(9379, 29798, 'twenty-nine thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(9380, 29342, 'twenty-nine thousand three hundred forty-two'); INSERT INTO t2 VALUES(9381, 929, 'nine hundred twenty-nine'); INSERT INTO t2 VALUES(9382, 75085, 'seventy-five thousand eighty-five'); INSERT INTO t2 VALUES(9383, 14889, 'fourteen thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(9384, 42080, 'forty-two thousand eighty'); INSERT INTO t2 VALUES(9385, 96706, 'ninety-six thousand seven hundred six'); INSERT INTO t2 VALUES(9386, 63983, 'sixty-three thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(9387, 56614, 'fifty-six thousand six hundred fourteen'); INSERT INTO t2 VALUES(9388, 8128, 'eight thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(9389, 47893, 'forty-seven thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(9390, 21491, 'twenty-one thousand four hundred ninety-one'); INSERT INTO t2 VALUES(9391, 98349, 'ninety-eight thousand three hundred forty-nine'); INSERT INTO t2 VALUES(9392, 2600, 'two thousand six hundred'); INSERT INTO t2 VALUES(9393, 62776, 'sixty-two thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(9394, 235, 'two hundred thirty-five'); INSERT INTO t2 VALUES(9395, 24642, 'twenty-four thousand six hundred forty-two'); INSERT INTO t2 VALUES(9396, 8573, 'eight thousand five hundred seventy-three'); INSERT INTO t2 VALUES(9397, 4973, 'four thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(9398, 10118, 'ten thousand one hundred eighteen'); INSERT INTO t2 VALUES(9399, 68282, 'sixty-eight thousand two hundred eighty-two'); INSERT INTO t2 VALUES(9400, 25461, 'twenty-five thousand four hundred sixty-one'); INSERT INTO t2 VALUES(9401, 88512, 'eighty-eight thousand five hundred twelve'); INSERT INTO t2 VALUES(9402, 57955, 'fifty-seven thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(9403, 29978, 'twenty-nine thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(9404, 4266, 'four thousand two hundred sixty-six'); INSERT INTO t2 VALUES(9405, 81952, 'eighty-one thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(9406, 80372, 'eighty thousand three hundred seventy-two'); INSERT INTO t2 VALUES(9407, 41591, 'forty-one thousand five hundred ninety-one'); INSERT INTO t2 VALUES(9408, 32117, 'thirty-two thousand one hundred seventeen'); INSERT INTO t2 VALUES(9409, 8638, 'eight thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(9410, 3751, 'three thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(9411, 96206, 'ninety-six thousand two hundred six'); INSERT INTO t2 VALUES(9412, 12973, 'twelve thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(9413, 26453, 'twenty-six thousand four hundred fifty-three'); INSERT INTO t2 VALUES(9414, 77494, 'seventy-seven thousand four hundred ninety-four'); INSERT INTO t2 VALUES(9415, 55029, 'fifty-five thousand twenty-nine'); INSERT INTO t2 VALUES(9416, 14160, 'fourteen thousand one hundred sixty'); INSERT INTO t2 VALUES(9417, 64801, 'sixty-four thousand eight hundred one'); INSERT INTO t2 VALUES(9418, 31111, 'thirty-one thousand one hundred eleven'); INSERT INTO t2 VALUES(9419, 13869, 'thirteen thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(9420, 59804, 'fifty-nine thousand eight hundred four'); INSERT INTO t2 VALUES(9421, 99583, 'ninety-nine thousand five hundred eighty-three'); INSERT INTO t2 VALUES(9422, 94327, 'ninety-four thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(9423, 88312, 'eighty-eight thousand three hundred twelve'); INSERT INTO t2 VALUES(9424, 75793, 'seventy-five thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(9425, 98157, 'ninety-eight thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(9426, 65820, 'sixty-five thousand eight hundred twenty'); INSERT INTO t2 VALUES(9427, 92481, 'ninety-two thousand four hundred eighty-one'); INSERT INTO t2 VALUES(9428, 76234, 'seventy-six thousand two hundred thirty-four'); INSERT INTO t2 VALUES(9429, 96895, 'ninety-six thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(9430, 81425, 'eighty-one thousand four hundred twenty-five'); INSERT INTO t2 VALUES(9431, 62758, 'sixty-two thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(9432, 37220, 'thirty-seven thousand two hundred twenty'); INSERT INTO t2 VALUES(9433, 26325, 'twenty-six thousand three hundred twenty-five'); INSERT INTO t2 VALUES(9434, 8769, 'eight thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(9435, 46716, 'forty-six thousand seven hundred sixteen'); INSERT INTO t2 VALUES(9436, 6459, 'six thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(9437, 21174, 'twenty-one thousand one hundred seventy-four'); INSERT INTO t2 VALUES(9438, 92097, 'ninety-two thousand ninety-seven'); INSERT INTO t2 VALUES(9439, 16150, 'sixteen thousand one hundred fifty'); INSERT INTO t2 VALUES(9440, 59341, 'fifty-nine thousand three hundred forty-one'); INSERT INTO t2 VALUES(9441, 71836, 'seventy-one thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(9442, 65805, 'sixty-five thousand eight hundred five'); INSERT INTO t2 VALUES(9443, 84411, 'eighty-four thousand four hundred eleven'); INSERT INTO t2 VALUES(9444, 97540, 'ninety-seven thousand five hundred forty'); INSERT INTO t2 VALUES(9445, 74195, 'seventy-four thousand one hundred ninety-five'); INSERT INTO t2 VALUES(9446, 52156, 'fifty-two thousand one hundred fifty-six'); INSERT INTO t2 VALUES(9447, 35694, 'thirty-five thousand six hundred ninety-four'); INSERT INTO t2 VALUES(9448, 51467, 'fifty-one thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(9449, 34703, 'thirty-four thousand seven hundred three'); INSERT INTO t2 VALUES(9450, 13358, 'thirteen thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(9451, 82038, 'eighty-two thousand thirty-eight'); INSERT INTO t2 VALUES(9452, 38386, 'thirty-eight thousand three hundred eighty-six'); INSERT INTO t2 VALUES(9453, 3177, 'three thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(9454, 43645, 'forty-three thousand six hundred forty-five'); INSERT INTO t2 VALUES(9455, 99522, 'ninety-nine thousand five hundred twenty-two'); INSERT INTO t2 VALUES(9456, 20315, 'twenty thousand three hundred fifteen'); INSERT INTO t2 VALUES(9457, 1802, 'one thousand eight hundred two'); INSERT INTO t2 VALUES(9458, 49795, 'forty-nine thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(9459, 35616, 'thirty-five thousand six hundred sixteen'); INSERT INTO t2 VALUES(9460, 71746, 'seventy-one thousand seven hundred forty-six'); INSERT INTO t2 VALUES(9461, 74082, 'seventy-four thousand eighty-two'); INSERT INTO t2 VALUES(9462, 41226, 'forty-one thousand two hundred twenty-six'); INSERT INTO t2 VALUES(9463, 63345, 'sixty-three thousand three hundred forty-five'); INSERT INTO t2 VALUES(9464, 44605, 'forty-four thousand six hundred five'); INSERT INTO t2 VALUES(9465, 8098, 'eight thousand ninety-eight'); INSERT INTO t2 VALUES(9466, 41926, 'forty-one thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(9467, 37074, 'thirty-seven thousand seventy-four'); INSERT INTO t2 VALUES(9468, 70002, 'seventy thousand two'); INSERT INTO t2 VALUES(9469, 17521, 'seventeen thousand five hundred twenty-one'); INSERT INTO t2 VALUES(9470, 58169, 'fifty-eight thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(9471, 83810, 'eighty-three thousand eight hundred ten'); INSERT INTO t2 VALUES(9472, 89578, 'eighty-nine thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(9473, 71207, 'seventy-one thousand two hundred seven'); INSERT INTO t2 VALUES(9474, 97719, 'ninety-seven thousand seven hundred nineteen'); INSERT INTO t2 VALUES(9475, 17989, 'seventeen thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(9476, 39086, 'thirty-nine thousand eighty-six'); INSERT INTO t2 VALUES(9477, 17877, 'seventeen thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(9478, 38203, 'thirty-eight thousand two hundred three'); INSERT INTO t2 VALUES(9479, 19397, 'nineteen thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(9480, 20033, 'twenty thousand thirty-three'); INSERT INTO t2 VALUES(9481, 71427, 'seventy-one thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(9482, 25944, 'twenty-five thousand nine hundred forty-four'); INSERT INTO t2 VALUES(9483, 54851, 'fifty-four thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(9484, 37141, 'thirty-seven thousand one hundred forty-one'); INSERT INTO t2 VALUES(9485, 29557, 'twenty-nine thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(9486, 11738, 'eleven thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(9487, 85734, 'eighty-five thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(9488, 63877, 'sixty-three thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(9489, 58775, 'fifty-eight thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(9490, 30173, 'thirty thousand one hundred seventy-three'); INSERT INTO t2 VALUES(9491, 49119, 'forty-nine thousand one hundred nineteen'); INSERT INTO t2 VALUES(9492, 33005, 'thirty-three thousand five'); INSERT INTO t2 VALUES(9493, 83050, 'eighty-three thousand fifty'); INSERT INTO t2 VALUES(9494, 47003, 'forty-seven thousand three'); INSERT INTO t2 VALUES(9495, 58182, 'fifty-eight thousand one hundred eighty-two'); INSERT INTO t2 VALUES(9496, 21381, 'twenty-one thousand three hundred eighty-one'); INSERT INTO t2 VALUES(9497, 45927, 'forty-five thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(9498, 43288, 'forty-three thousand two hundred eighty-eight'); INSERT INTO t2 VALUES(9499, 40391, 'forty thousand three hundred ninety-one'); INSERT INTO t2 VALUES(9500, 72427, 'seventy-two thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(9501, 30415, 'thirty thousand four hundred fifteen'); INSERT INTO t2 VALUES(9502, 30057, 'thirty thousand fifty-seven'); INSERT INTO t2 VALUES(9503, 47369, 'forty-seven thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(9504, 32613, 'thirty-two thousand six hundred thirteen'); INSERT INTO t2 VALUES(9505, 27530, 'twenty-seven thousand five hundred thirty'); INSERT INTO t2 VALUES(9506, 93003, 'ninety-three thousand three'); INSERT INTO t2 VALUES(9507, 51684, 'fifty-one thousand six hundred eighty-four'); INSERT INTO t2 VALUES(9508, 82316, 'eighty-two thousand three hundred sixteen'); INSERT INTO t2 VALUES(9509, 30442, 'thirty thousand four hundred forty-two'); INSERT INTO t2 VALUES(9510, 8476, 'eight thousand four hundred seventy-six'); INSERT INTO t2 VALUES(9511, 74375, 'seventy-four thousand three hundred seventy-five'); INSERT INTO t2 VALUES(9512, 42314, 'forty-two thousand three hundred fourteen'); INSERT INTO t2 VALUES(9513, 79144, 'seventy-nine thousand one hundred forty-four'); INSERT INTO t2 VALUES(9514, 78205, 'seventy-eight thousand two hundred five'); INSERT INTO t2 VALUES(9515, 44246, 'forty-four thousand two hundred forty-six'); INSERT INTO t2 VALUES(9516, 13712, 'thirteen thousand seven hundred twelve'); INSERT INTO t2 VALUES(9517, 71308, 'seventy-one thousand three hundred eight'); INSERT INTO t2 VALUES(9518, 85869, 'eighty-five thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(9519, 94064, 'ninety-four thousand sixty-four'); INSERT INTO t2 VALUES(9520, 36711, 'thirty-six thousand seven hundred eleven'); INSERT INTO t2 VALUES(9521, 9489, 'nine thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(9522, 21369, 'twenty-one thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(9523, 18452, 'eighteen thousand four hundred fifty-two'); INSERT INTO t2 VALUES(9524, 74370, 'seventy-four thousand three hundred seventy'); INSERT INTO t2 VALUES(9525, 58042, 'fifty-eight thousand forty-two'); INSERT INTO t2 VALUES(9526, 63639, 'sixty-three thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(9527, 1474, 'one thousand four hundred seventy-four'); INSERT INTO t2 VALUES(9528, 32040, 'thirty-two thousand forty'); INSERT INTO t2 VALUES(9529, 72021, 'seventy-two thousand twenty-one'); INSERT INTO t2 VALUES(9530, 54244, 'fifty-four thousand two hundred forty-four'); INSERT INTO t2 VALUES(9531, 81954, 'eighty-one thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(9532, 42751, 'forty-two thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(9533, 23841, 'twenty-three thousand eight hundred forty-one'); INSERT INTO t2 VALUES(9534, 47028, 'forty-seven thousand twenty-eight'); INSERT INTO t2 VALUES(9535, 39364, 'thirty-nine thousand three hundred sixty-four'); INSERT INTO t2 VALUES(9536, 16957, 'sixteen thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(9537, 26435, 'twenty-six thousand four hundred thirty-five'); INSERT INTO t2 VALUES(9538, 57264, 'fifty-seven thousand two hundred sixty-four'); INSERT INTO t2 VALUES(9539, 15807, 'fifteen thousand eight hundred seven'); INSERT INTO t2 VALUES(9540, 88338, 'eighty-eight thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(9541, 79107, 'seventy-nine thousand one hundred seven'); INSERT INTO t2 VALUES(9542, 10166, 'ten thousand one hundred sixty-six'); INSERT INTO t2 VALUES(9543, 18201, 'eighteen thousand two hundred one'); INSERT INTO t2 VALUES(9544, 68522, 'sixty-eight thousand five hundred twenty-two'); INSERT INTO t2 VALUES(9545, 2822, 'two thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(9546, 5756, 'five thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(9547, 71527, 'seventy-one thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(9548, 82622, 'eighty-two thousand six hundred twenty-two'); INSERT INTO t2 VALUES(9549, 82385, 'eighty-two thousand three hundred eighty-five'); INSERT INTO t2 VALUES(9550, 95123, 'ninety-five thousand one hundred twenty-three'); INSERT INTO t2 VALUES(9551, 28331, 'twenty-eight thousand three hundred thirty-one'); INSERT INTO t2 VALUES(9552, 21298, 'twenty-one thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(9553, 63107, 'sixty-three thousand one hundred seven'); INSERT INTO t2 VALUES(9554, 89693, 'eighty-nine thousand six hundred ninety-three'); INSERT INTO t2 VALUES(9555, 63053, 'sixty-three thousand fifty-three'); INSERT INTO t2 VALUES(9556, 77658, 'seventy-seven thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(9557, 14497, 'fourteen thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(9558, 7231, 'seven thousand two hundred thirty-one'); INSERT INTO t2 VALUES(9559, 97234, 'ninety-seven thousand two hundred thirty-four'); INSERT INTO t2 VALUES(9560, 61062, 'sixty-one thousand sixty-two'); INSERT INTO t2 VALUES(9561, 78573, 'seventy-eight thousand five hundred seventy-three'); INSERT INTO t2 VALUES(9562, 44875, 'forty-four thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(9563, 4498, 'four thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(9564, 63052, 'sixty-three thousand fifty-two'); INSERT INTO t2 VALUES(9565, 31595, 'thirty-one thousand five hundred ninety-five'); INSERT INTO t2 VALUES(9566, 18072, 'eighteen thousand seventy-two'); INSERT INTO t2 VALUES(9567, 64680, 'sixty-four thousand six hundred eighty'); INSERT INTO t2 VALUES(9568, 19117, 'nineteen thousand one hundred seventeen'); INSERT INTO t2 VALUES(9569, 80586, 'eighty thousand five hundred eighty-six'); INSERT INTO t2 VALUES(9570, 28520, 'twenty-eight thousand five hundred twenty'); INSERT INTO t2 VALUES(9571, 83391, 'eighty-three thousand three hundred ninety-one'); INSERT INTO t2 VALUES(9572, 74098, 'seventy-four thousand ninety-eight'); INSERT INTO t2 VALUES(9573, 69761, 'sixty-nine thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(9574, 93558, 'ninety-three thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(9575, 43576, 'forty-three thousand five hundred seventy-six'); INSERT INTO t2 VALUES(9576, 71034, 'seventy-one thousand thirty-four'); INSERT INTO t2 VALUES(9577, 4764, 'four thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(9578, 19011, 'nineteen thousand eleven'); INSERT INTO t2 VALUES(9579, 18241, 'eighteen thousand two hundred forty-one'); INSERT INTO t2 VALUES(9580, 53064, 'fifty-three thousand sixty-four'); INSERT INTO t2 VALUES(9581, 97427, 'ninety-seven thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(9582, 38042, 'thirty-eight thousand forty-two'); INSERT INTO t2 VALUES(9583, 18513, 'eighteen thousand five hundred thirteen'); INSERT INTO t2 VALUES(9584, 76654, 'seventy-six thousand six hundred fifty-four'); INSERT INTO t2 VALUES(9585, 2036, 'two thousand thirty-six'); INSERT INTO t2 VALUES(9586, 36887, 'thirty-six thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(9587, 11745, 'eleven thousand seven hundred forty-five'); INSERT INTO t2 VALUES(9588, 19822, 'nineteen thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(9589, 38271, 'thirty-eight thousand two hundred seventy-one'); INSERT INTO t2 VALUES(9590, 62637, 'sixty-two thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(9591, 45137, 'forty-five thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(9592, 11251, 'eleven thousand two hundred fifty-one'); INSERT INTO t2 VALUES(9593, 49827, 'forty-nine thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(9594, 34370, 'thirty-four thousand three hundred seventy'); INSERT INTO t2 VALUES(9595, 5848, 'five thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(9596, 42684, 'forty-two thousand six hundred eighty-four'); INSERT INTO t2 VALUES(9597, 55186, 'fifty-five thousand one hundred eighty-six'); INSERT INTO t2 VALUES(9598, 76470, 'seventy-six thousand four hundred seventy'); INSERT INTO t2 VALUES(9599, 71701, 'seventy-one thousand seven hundred one'); INSERT INTO t2 VALUES(9600, 37517, 'thirty-seven thousand five hundred seventeen'); INSERT INTO t2 VALUES(9601, 6431, 'six thousand four hundred thirty-one'); INSERT INTO t2 VALUES(9602, 9515, 'nine thousand five hundred fifteen'); INSERT INTO t2 VALUES(9603, 65573, 'sixty-five thousand five hundred seventy-three'); INSERT INTO t2 VALUES(9604, 38146, 'thirty-eight thousand one hundred forty-six'); INSERT INTO t2 VALUES(9605, 36234, 'thirty-six thousand two hundred thirty-four'); INSERT INTO t2 VALUES(9606, 58725, 'fifty-eight thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(9607, 79791, 'seventy-nine thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(9608, 93627, 'ninety-three thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(9609, 47049, 'forty-seven thousand forty-nine'); INSERT INTO t2 VALUES(9610, 68872, 'sixty-eight thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(9611, 83787, 'eighty-three thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(9612, 91188, 'ninety-one thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(9613, 2014, 'two thousand fourteen'); INSERT INTO t2 VALUES(9614, 44487, 'forty-four thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(9615, 56038, 'fifty-six thousand thirty-eight'); INSERT INTO t2 VALUES(9616, 82029, 'eighty-two thousand twenty-nine'); INSERT INTO t2 VALUES(9617, 4887, 'four thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(9618, 31410, 'thirty-one thousand four hundred ten'); INSERT INTO t2 VALUES(9619, 19337, 'nineteen thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(9620, 4546, 'four thousand five hundred forty-six'); INSERT INTO t2 VALUES(9621, 83168, 'eighty-three thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(9622, 58470, 'fifty-eight thousand four hundred seventy'); INSERT INTO t2 VALUES(9623, 16420, 'sixteen thousand four hundred twenty'); INSERT INTO t2 VALUES(9624, 5149, 'five thousand one hundred forty-nine'); INSERT INTO t2 VALUES(9625, 55887, 'fifty-five thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(9626, 76622, 'seventy-six thousand six hundred twenty-two'); INSERT INTO t2 VALUES(9627, 13516, 'thirteen thousand five hundred sixteen'); INSERT INTO t2 VALUES(9628, 16472, 'sixteen thousand four hundred seventy-two'); INSERT INTO t2 VALUES(9629, 23940, 'twenty-three thousand nine hundred forty'); INSERT INTO t2 VALUES(9630, 44666, 'forty-four thousand six hundred sixty-six'); INSERT INTO t2 VALUES(9631, 74694, 'seventy-four thousand six hundred ninety-four'); INSERT INTO t2 VALUES(9632, 57541, 'fifty-seven thousand five hundred forty-one'); INSERT INTO t2 VALUES(9633, 84917, 'eighty-four thousand nine hundred seventeen'); INSERT INTO t2 VALUES(9634, 65400, 'sixty-five thousand four hundred'); INSERT INTO t2 VALUES(9635, 40485, 'forty thousand four hundred eighty-five'); INSERT INTO t2 VALUES(9636, 57426, 'fifty-seven thousand four hundred twenty-six'); INSERT INTO t2 VALUES(9637, 36843, 'thirty-six thousand eight hundred forty-three'); INSERT INTO t2 VALUES(9638, 54970, 'fifty-four thousand nine hundred seventy'); INSERT INTO t2 VALUES(9639, 505, 'five hundred five'); INSERT INTO t2 VALUES(9640, 99275, 'ninety-nine thousand two hundred seventy-five'); INSERT INTO t2 VALUES(9641, 81986, 'eighty-one thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(9642, 4001, 'four thousand one'); INSERT INTO t2 VALUES(9643, 72323, 'seventy-two thousand three hundred twenty-three'); INSERT INTO t2 VALUES(9644, 8637, 'eight thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(9645, 38278, 'thirty-eight thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(9646, 34157, 'thirty-four thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(9647, 82456, 'eighty-two thousand four hundred fifty-six'); INSERT INTO t2 VALUES(9648, 75899, 'seventy-five thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(9649, 69900, 'sixty-nine thousand nine hundred'); INSERT INTO t2 VALUES(9650, 28219, 'twenty-eight thousand two hundred nineteen'); INSERT INTO t2 VALUES(9651, 39732, 'thirty-nine thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(9652, 44157, 'forty-four thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(9653, 88485, 'eighty-eight thousand four hundred eighty-five'); INSERT INTO t2 VALUES(9654, 28815, 'twenty-eight thousand eight hundred fifteen'); INSERT INTO t2 VALUES(9655, 55922, 'fifty-five thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(9656, 16694, 'sixteen thousand six hundred ninety-four'); INSERT INTO t2 VALUES(9657, 85307, 'eighty-five thousand three hundred seven'); INSERT INTO t2 VALUES(9658, 69030, 'sixty-nine thousand thirty'); INSERT INTO t2 VALUES(9659, 35486, 'thirty-five thousand four hundred eighty-six'); INSERT INTO t2 VALUES(9660, 8239, 'eight thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(9661, 45034, 'forty-five thousand thirty-four'); INSERT INTO t2 VALUES(9662, 50057, 'fifty thousand fifty-seven'); INSERT INTO t2 VALUES(9663, 97937, 'ninety-seven thousand nine hundred thirty-seven'); INSERT INTO t2 VALUES(9664, 52222, 'fifty-two thousand two hundred twenty-two'); INSERT INTO t2 VALUES(9665, 78106, 'seventy-eight thousand one hundred six'); INSERT INTO t2 VALUES(9666, 5327, 'five thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(9667, 76445, 'seventy-six thousand four hundred forty-five'); INSERT INTO t2 VALUES(9668, 37700, 'thirty-seven thousand seven hundred'); INSERT INTO t2 VALUES(9669, 74825, 'seventy-four thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(9670, 28573, 'twenty-eight thousand five hundred seventy-three'); INSERT INTO t2 VALUES(9671, 35683, 'thirty-five thousand six hundred eighty-three'); INSERT INTO t2 VALUES(9672, 28758, 'twenty-eight thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(9673, 78116, 'seventy-eight thousand one hundred sixteen'); INSERT INTO t2 VALUES(9674, 79955, 'seventy-nine thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(9675, 78044, 'seventy-eight thousand forty-four'); INSERT INTO t2 VALUES(9676, 675, 'six hundred seventy-five'); INSERT INTO t2 VALUES(9677, 1789, 'one thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(9678, 92206, 'ninety-two thousand two hundred six'); INSERT INTO t2 VALUES(9679, 68014, 'sixty-eight thousand fourteen'); INSERT INTO t2 VALUES(9680, 30145, 'thirty thousand one hundred forty-five'); INSERT INTO t2 VALUES(9681, 45648, 'forty-five thousand six hundred forty-eight'); INSERT INTO t2 VALUES(9682, 60284, 'sixty thousand two hundred eighty-four'); INSERT INTO t2 VALUES(9683, 28878, 'twenty-eight thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(9684, 28138, 'twenty-eight thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(9685, 61885, 'sixty-one thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(9686, 94810, 'ninety-four thousand eight hundred ten'); INSERT INTO t2 VALUES(9687, 65845, 'sixty-five thousand eight hundred forty-five'); INSERT INTO t2 VALUES(9688, 61143, 'sixty-one thousand one hundred forty-three'); INSERT INTO t2 VALUES(9689, 9851, 'nine thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(9690, 42245, 'forty-two thousand two hundred forty-five'); INSERT INTO t2 VALUES(9691, 10692, 'ten thousand six hundred ninety-two'); INSERT INTO t2 VALUES(9692, 22345, 'twenty-two thousand three hundred forty-five'); INSERT INTO t2 VALUES(9693, 75615, 'seventy-five thousand six hundred fifteen'); INSERT INTO t2 VALUES(9694, 79866, 'seventy-nine thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(9695, 12699, 'twelve thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(9696, 58122, 'fifty-eight thousand one hundred twenty-two'); INSERT INTO t2 VALUES(9697, 11746, 'eleven thousand seven hundred forty-six'); INSERT INTO t2 VALUES(9698, 50624, 'fifty thousand six hundred twenty-four'); INSERT INTO t2 VALUES(9699, 40387, 'forty thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(9700, 85919, 'eighty-five thousand nine hundred nineteen'); INSERT INTO t2 VALUES(9701, 8174, 'eight thousand one hundred seventy-four'); INSERT INTO t2 VALUES(9702, 55142, 'fifty-five thousand one hundred forty-two'); INSERT INTO t2 VALUES(9703, 68303, 'sixty-eight thousand three hundred three'); INSERT INTO t2 VALUES(9704, 17335, 'seventeen thousand three hundred thirty-five'); INSERT INTO t2 VALUES(9705, 78513, 'seventy-eight thousand five hundred thirteen'); INSERT INTO t2 VALUES(9706, 29582, 'twenty-nine thousand five hundred eighty-two'); INSERT INTO t2 VALUES(9707, 49634, 'forty-nine thousand six hundred thirty-four'); INSERT INTO t2 VALUES(9708, 34458, 'thirty-four thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(9709, 10180, 'ten thousand one hundred eighty'); INSERT INTO t2 VALUES(9710, 88642, 'eighty-eight thousand six hundred forty-two'); INSERT INTO t2 VALUES(9711, 2390, 'two thousand three hundred ninety'); INSERT INTO t2 VALUES(9712, 51507, 'fifty-one thousand five hundred seven'); INSERT INTO t2 VALUES(9713, 7460, 'seven thousand four hundred sixty'); INSERT INTO t2 VALUES(9714, 35102, 'thirty-five thousand one hundred two'); INSERT INTO t2 VALUES(9715, 32204, 'thirty-two thousand two hundred four'); INSERT INTO t2 VALUES(9716, 76392, 'seventy-six thousand three hundred ninety-two'); INSERT INTO t2 VALUES(9717, 70336, 'seventy thousand three hundred thirty-six'); INSERT INTO t2 VALUES(9718, 50161, 'fifty thousand one hundred sixty-one'); INSERT INTO t2 VALUES(9719, 30585, 'thirty thousand five hundred eighty-five'); INSERT INTO t2 VALUES(9720, 35284, 'thirty-five thousand two hundred eighty-four'); INSERT INTO t2 VALUES(9721, 23587, 'twenty-three thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(9722, 78092, 'seventy-eight thousand ninety-two'); INSERT INTO t2 VALUES(9723, 8243, 'eight thousand two hundred forty-three'); INSERT INTO t2 VALUES(9724, 54607, 'fifty-four thousand six hundred seven'); INSERT INTO t2 VALUES(9725, 36361, 'thirty-six thousand three hundred sixty-one'); INSERT INTO t2 VALUES(9726, 88933, 'eighty-eight thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(9727, 78190, 'seventy-eight thousand one hundred ninety'); INSERT INTO t2 VALUES(9728, 96301, 'ninety-six thousand three hundred one'); INSERT INTO t2 VALUES(9729, 44856, 'forty-four thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(9730, 43572, 'forty-three thousand five hundred seventy-two'); INSERT INTO t2 VALUES(9731, 32711, 'thirty-two thousand seven hundred eleven'); INSERT INTO t2 VALUES(9732, 28725, 'twenty-eight thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(9733, 55115, 'fifty-five thousand one hundred fifteen'); INSERT INTO t2 VALUES(9734, 88085, 'eighty-eight thousand eighty-five'); INSERT INTO t2 VALUES(9735, 68574, 'sixty-eight thousand five hundred seventy-four'); INSERT INTO t2 VALUES(9736, 95856, 'ninety-five thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(9737, 81099, 'eighty-one thousand ninety-nine'); INSERT INTO t2 VALUES(9738, 42379, 'forty-two thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(9739, 99904, 'ninety-nine thousand nine hundred four'); INSERT INTO t2 VALUES(9740, 16858, 'sixteen thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(9741, 49841, 'forty-nine thousand eight hundred forty-one'); INSERT INTO t2 VALUES(9742, 93672, 'ninety-three thousand six hundred seventy-two'); INSERT INTO t2 VALUES(9743, 92965, 'ninety-two thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(9744, 50582, 'fifty thousand five hundred eighty-two'); INSERT INTO t2 VALUES(9745, 71144, 'seventy-one thousand one hundred forty-four'); INSERT INTO t2 VALUES(9746, 71120, 'seventy-one thousand one hundred twenty'); INSERT INTO t2 VALUES(9747, 57022, 'fifty-seven thousand twenty-two'); INSERT INTO t2 VALUES(9748, 10747, 'ten thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(9749, 63470, 'sixty-three thousand four hundred seventy'); INSERT INTO t2 VALUES(9750, 20061, 'twenty thousand sixty-one'); INSERT INTO t2 VALUES(9751, 98579, 'ninety-eight thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(9752, 76644, 'seventy-six thousand six hundred forty-four'); INSERT INTO t2 VALUES(9753, 82180, 'eighty-two thousand one hundred eighty'); INSERT INTO t2 VALUES(9754, 71048, 'seventy-one thousand forty-eight'); INSERT INTO t2 VALUES(9755, 19490, 'nineteen thousand four hundred ninety'); INSERT INTO t2 VALUES(9756, 447, 'four hundred forty-seven'); INSERT INTO t2 VALUES(9757, 54146, 'fifty-four thousand one hundred forty-six'); INSERT INTO t2 VALUES(9758, 73685, 'seventy-three thousand six hundred eighty-five'); INSERT INTO t2 VALUES(9759, 4764, 'four thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(9760, 91378, 'ninety-one thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(9761, 40529, 'forty thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(9762, 55119, 'fifty-five thousand one hundred nineteen'); INSERT INTO t2 VALUES(9763, 14168, 'fourteen thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(9764, 75876, 'seventy-five thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(9765, 50908, 'fifty thousand nine hundred eight'); INSERT INTO t2 VALUES(9766, 42444, 'forty-two thousand four hundred forty-four'); INSERT INTO t2 VALUES(9767, 62467, 'sixty-two thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(9768, 79928, 'seventy-nine thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(9769, 65733, 'sixty-five thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(9770, 90346, 'ninety thousand three hundred forty-six'); INSERT INTO t2 VALUES(9771, 72647, 'seventy-two thousand six hundred forty-seven'); INSERT INTO t2 VALUES(9772, 99071, 'ninety-nine thousand seventy-one'); INSERT INTO t2 VALUES(9773, 99461, 'ninety-nine thousand four hundred sixty-one'); INSERT INTO t2 VALUES(9774, 77471, 'seventy-seven thousand four hundred seventy-one'); INSERT INTO t2 VALUES(9775, 44708, 'forty-four thousand seven hundred eight'); INSERT INTO t2 VALUES(9776, 88340, 'eighty-eight thousand three hundred forty'); INSERT INTO t2 VALUES(9777, 12533, 'twelve thousand five hundred thirty-three'); INSERT INTO t2 VALUES(9778, 88424, 'eighty-eight thousand four hundred twenty-four'); INSERT INTO t2 VALUES(9779, 80718, 'eighty thousand seven hundred eighteen'); INSERT INTO t2 VALUES(9780, 3636, 'three thousand six hundred thirty-six'); INSERT INTO t2 VALUES(9781, 86715, 'eighty-six thousand seven hundred fifteen'); INSERT INTO t2 VALUES(9782, 70985, 'seventy thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(9783, 89054, 'eighty-nine thousand fifty-four'); INSERT INTO t2 VALUES(9784, 55579, 'fifty-five thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(9785, 26745, 'twenty-six thousand seven hundred forty-five'); INSERT INTO t2 VALUES(9786, 67271, 'sixty-seven thousand two hundred seventy-one'); INSERT INTO t2 VALUES(9787, 24548, 'twenty-four thousand five hundred forty-eight'); INSERT INTO t2 VALUES(9788, 32762, 'thirty-two thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(9789, 23787, 'twenty-three thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(9790, 52358, 'fifty-two thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(9791, 64224, 'sixty-four thousand two hundred twenty-four'); INSERT INTO t2 VALUES(9792, 88096, 'eighty-eight thousand ninety-six'); INSERT INTO t2 VALUES(9793, 45220, 'forty-five thousand two hundred twenty'); INSERT INTO t2 VALUES(9794, 68875, 'sixty-eight thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(9795, 6662, 'six thousand six hundred sixty-two'); INSERT INTO t2 VALUES(9796, 16645, 'sixteen thousand six hundred forty-five'); INSERT INTO t2 VALUES(9797, 63361, 'sixty-three thousand three hundred sixty-one'); INSERT INTO t2 VALUES(9798, 8274, 'eight thousand two hundred seventy-four'); INSERT INTO t2 VALUES(9799, 6532, 'six thousand five hundred thirty-two'); INSERT INTO t2 VALUES(9800, 19965, 'nineteen thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(9801, 80285, 'eighty thousand two hundred eighty-five'); INSERT INTO t2 VALUES(9802, 60856, 'sixty thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(9803, 67409, 'sixty-seven thousand four hundred nine'); INSERT INTO t2 VALUES(9804, 20871, 'twenty thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(9805, 72000, 'seventy-two thousand'); INSERT INTO t2 VALUES(9806, 15279, 'fifteen thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(9807, 42589, 'forty-two thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(9808, 42872, 'forty-two thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(9809, 8091, 'eight thousand ninety-one'); INSERT INTO t2 VALUES(9810, 40812, 'forty thousand eight hundred twelve'); INSERT INTO t2 VALUES(9811, 74285, 'seventy-four thousand two hundred eighty-five'); INSERT INTO t2 VALUES(9812, 3039, 'three thousand thirty-nine'); INSERT INTO t2 VALUES(9813, 91575, 'ninety-one thousand five hundred seventy-five'); INSERT INTO t2 VALUES(9814, 69928, 'sixty-nine thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(9815, 11574, 'eleven thousand five hundred seventy-four'); INSERT INTO t2 VALUES(9816, 87237, 'eighty-seven thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(9817, 85439, 'eighty-five thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(9818, 78822, 'seventy-eight thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(9819, 30048, 'thirty thousand forty-eight'); INSERT INTO t2 VALUES(9820, 79138, 'seventy-nine thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(9821, 9060, 'nine thousand sixty'); INSERT INTO t2 VALUES(9822, 5465, 'five thousand four hundred sixty-five'); INSERT INTO t2 VALUES(9823, 26276, 'twenty-six thousand two hundred seventy-six'); INSERT INTO t2 VALUES(9824, 85783, 'eighty-five thousand seven hundred eighty-three'); INSERT INTO t2 VALUES(9825, 80145, 'eighty thousand one hundred forty-five'); INSERT INTO t2 VALUES(9826, 41733, 'forty-one thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(9827, 88913, 'eighty-eight thousand nine hundred thirteen'); INSERT INTO t2 VALUES(9828, 10742, 'ten thousand seven hundred forty-two'); INSERT INTO t2 VALUES(9829, 6810, 'six thousand eight hundred ten'); INSERT INTO t2 VALUES(9830, 69735, 'sixty-nine thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(9831, 98911, 'ninety-eight thousand nine hundred eleven'); INSERT INTO t2 VALUES(9832, 37083, 'thirty-seven thousand eighty-three'); INSERT INTO t2 VALUES(9833, 72333, 'seventy-two thousand three hundred thirty-three'); INSERT INTO t2 VALUES(9834, 19909, 'nineteen thousand nine hundred nine'); INSERT INTO t2 VALUES(9835, 15371, 'fifteen thousand three hundred seventy-one'); INSERT INTO t2 VALUES(9836, 33627, 'thirty-three thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(9837, 79364, 'seventy-nine thousand three hundred sixty-four'); INSERT INTO t2 VALUES(9838, 17020, 'seventeen thousand twenty'); INSERT INTO t2 VALUES(9839, 2514, 'two thousand five hundred fourteen'); INSERT INTO t2 VALUES(9840, 220, 'two hundred twenty'); INSERT INTO t2 VALUES(9841, 85011, 'eighty-five thousand eleven'); INSERT INTO t2 VALUES(9842, 86302, 'eighty-six thousand three hundred two'); INSERT INTO t2 VALUES(9843, 36977, 'thirty-six thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(9844, 33081, 'thirty-three thousand eighty-one'); INSERT INTO t2 VALUES(9845, 18211, 'eighteen thousand two hundred eleven'); INSERT INTO t2 VALUES(9846, 30006, 'thirty thousand six'); INSERT INTO t2 VALUES(9847, 47967, 'forty-seven thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(9848, 44090, 'forty-four thousand ninety'); INSERT INTO t2 VALUES(9849, 88043, 'eighty-eight thousand forty-three'); INSERT INTO t2 VALUES(9850, 63998, 'sixty-three thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(9851, 67265, 'sixty-seven thousand two hundred sixty-five'); INSERT INTO t2 VALUES(9852, 78154, 'seventy-eight thousand one hundred fifty-four'); INSERT INTO t2 VALUES(9853, 27541, 'twenty-seven thousand five hundred forty-one'); INSERT INTO t2 VALUES(9854, 16935, 'sixteen thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(9855, 75241, 'seventy-five thousand two hundred forty-one'); INSERT INTO t2 VALUES(9856, 12951, 'twelve thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(9857, 39670, 'thirty-nine thousand six hundred seventy'); INSERT INTO t2 VALUES(9858, 93047, 'ninety-three thousand forty-seven'); INSERT INTO t2 VALUES(9859, 78639, 'seventy-eight thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(9860, 5202, 'five thousand two hundred two'); INSERT INTO t2 VALUES(9861, 17204, 'seventeen thousand two hundred four'); INSERT INTO t2 VALUES(9862, 39432, 'thirty-nine thousand four hundred thirty-two'); INSERT INTO t2 VALUES(9863, 44518, 'forty-four thousand five hundred eighteen'); INSERT INTO t2 VALUES(9864, 91369, 'ninety-one thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(9865, 40140, 'forty thousand one hundred forty'); INSERT INTO t2 VALUES(9866, 19559, 'nineteen thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(9867, 26216, 'twenty-six thousand two hundred sixteen'); INSERT INTO t2 VALUES(9868, 8647, 'eight thousand six hundred forty-seven'); INSERT INTO t2 VALUES(9869, 28889, 'twenty-eight thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(9870, 46851, 'forty-six thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(9871, 13014, 'thirteen thousand fourteen'); INSERT INTO t2 VALUES(9872, 77239, 'seventy-seven thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(9873, 41515, 'forty-one thousand five hundred fifteen'); INSERT INTO t2 VALUES(9874, 25126, 'twenty-five thousand one hundred twenty-six'); INSERT INTO t2 VALUES(9875, 24678, 'twenty-four thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(9876, 22524, 'twenty-two thousand five hundred twenty-four'); INSERT INTO t2 VALUES(9877, 36719, 'thirty-six thousand seven hundred nineteen'); INSERT INTO t2 VALUES(9878, 90976, 'ninety thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(9879, 45387, 'forty-five thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(9880, 25918, 'twenty-five thousand nine hundred eighteen'); INSERT INTO t2 VALUES(9881, 4799, 'four thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(9882, 90468, 'ninety thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(9883, 35652, 'thirty-five thousand six hundred fifty-two'); INSERT INTO t2 VALUES(9884, 84626, 'eighty-four thousand six hundred twenty-six'); INSERT INTO t2 VALUES(9885, 73446, 'seventy-three thousand four hundred forty-six'); INSERT INTO t2 VALUES(9886, 18877, 'eighteen thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(9887, 2012, 'two thousand twelve'); INSERT INTO t2 VALUES(9888, 38502, 'thirty-eight thousand five hundred two'); INSERT INTO t2 VALUES(9889, 2784, 'two thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(9890, 11098, 'eleven thousand ninety-eight'); INSERT INTO t2 VALUES(9891, 96913, 'ninety-six thousand nine hundred thirteen'); INSERT INTO t2 VALUES(9892, 65007, 'sixty-five thousand seven'); INSERT INTO t2 VALUES(9893, 4446, 'four thousand four hundred forty-six'); INSERT INTO t2 VALUES(9894, 13760, 'thirteen thousand seven hundred sixty'); INSERT INTO t2 VALUES(9895, 15589, 'fifteen thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(9896, 13053, 'thirteen thousand fifty-three'); INSERT INTO t2 VALUES(9897, 46297, 'forty-six thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(9898, 32446, 'thirty-two thousand four hundred forty-six'); INSERT INTO t2 VALUES(9899, 46298, 'forty-six thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(9900, 31498, 'thirty-one thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(9901, 53844, 'fifty-three thousand eight hundred forty-four'); INSERT INTO t2 VALUES(9902, 22677, 'twenty-two thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(9903, 32112, 'thirty-two thousand one hundred twelve'); INSERT INTO t2 VALUES(9904, 78055, 'seventy-eight thousand fifty-five'); INSERT INTO t2 VALUES(9905, 37196, 'thirty-seven thousand one hundred ninety-six'); INSERT INTO t2 VALUES(9906, 17198, 'seventeen thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(9907, 26387, 'twenty-six thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(9908, 66172, 'sixty-six thousand one hundred seventy-two'); INSERT INTO t2 VALUES(9909, 2890, 'two thousand eight hundred ninety'); INSERT INTO t2 VALUES(9910, 78349, 'seventy-eight thousand three hundred forty-nine'); INSERT INTO t2 VALUES(9911, 73305, 'seventy-three thousand three hundred five'); INSERT INTO t2 VALUES(9912, 46865, 'forty-six thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(9913, 51014, 'fifty-one thousand fourteen'); INSERT INTO t2 VALUES(9914, 57484, 'fifty-seven thousand four hundred eighty-four'); INSERT INTO t2 VALUES(9915, 95182, 'ninety-five thousand one hundred eighty-two'); INSERT INTO t2 VALUES(9916, 47178, 'forty-seven thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(9917, 61210, 'sixty-one thousand two hundred ten'); INSERT INTO t2 VALUES(9918, 2861, 'two thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(9919, 42747, 'forty-two thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(9920, 2524, 'two thousand five hundred twenty-four'); INSERT INTO t2 VALUES(9921, 33984, 'thirty-three thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(9922, 70995, 'seventy thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(9923, 2751, 'two thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(9924, 17949, 'seventeen thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(9925, 83674, 'eighty-three thousand six hundred seventy-four'); INSERT INTO t2 VALUES(9926, 62038, 'sixty-two thousand thirty-eight'); INSERT INTO t2 VALUES(9927, 91191, 'ninety-one thousand one hundred ninety-one'); INSERT INTO t2 VALUES(9928, 62705, 'sixty-two thousand seven hundred five'); INSERT INTO t2 VALUES(9929, 15215, 'fifteen thousand two hundred fifteen'); INSERT INTO t2 VALUES(9930, 11635, 'eleven thousand six hundred thirty-five'); INSERT INTO t2 VALUES(9931, 83994, 'eighty-three thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(9932, 76669, 'seventy-six thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(9933, 7591, 'seven thousand five hundred ninety-one'); INSERT INTO t2 VALUES(9934, 58851, 'fifty-eight thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(9935, 86336, 'eighty-six thousand three hundred thirty-six'); INSERT INTO t2 VALUES(9936, 74312, 'seventy-four thousand three hundred twelve'); INSERT INTO t2 VALUES(9937, 29583, 'twenty-nine thousand five hundred eighty-three'); INSERT INTO t2 VALUES(9938, 98197, 'ninety-eight thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(9939, 65908, 'sixty-five thousand nine hundred eight'); INSERT INTO t2 VALUES(9940, 87238, 'eighty-seven thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(9941, 54069, 'fifty-four thousand sixty-nine'); INSERT INTO t2 VALUES(9942, 23443, 'twenty-three thousand four hundred forty-three'); INSERT INTO t2 VALUES(9943, 10265, 'ten thousand two hundred sixty-five'); INSERT INTO t2 VALUES(9944, 94297, 'ninety-four thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(9945, 54499, 'fifty-four thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(9946, 10995, 'ten thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(9947, 16429, 'sixteen thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(9948, 45090, 'forty-five thousand ninety'); INSERT INTO t2 VALUES(9949, 2196, 'two thousand one hundred ninety-six'); INSERT INTO t2 VALUES(9950, 15974, 'fifteen thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(9951, 72950, 'seventy-two thousand nine hundred fifty'); INSERT INTO t2 VALUES(9952, 86199, 'eighty-six thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(9953, 8768, 'eight thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(9954, 94335, 'ninety-four thousand three hundred thirty-five'); INSERT INTO t2 VALUES(9955, 73289, 'seventy-three thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(9956, 8369, 'eight thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(9957, 20192, 'twenty thousand one hundred ninety-two'); INSERT INTO t2 VALUES(9958, 70239, 'seventy thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(9959, 52640, 'fifty-two thousand six hundred forty'); INSERT INTO t2 VALUES(9960, 42186, 'forty-two thousand one hundred eighty-six'); INSERT INTO t2 VALUES(9961, 94872, 'ninety-four thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(9962, 63106, 'sixty-three thousand one hundred six'); INSERT INTO t2 VALUES(9963, 92597, 'ninety-two thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(9964, 98430, 'ninety-eight thousand four hundred thirty'); INSERT INTO t2 VALUES(9965, 33505, 'thirty-three thousand five hundred five'); INSERT INTO t2 VALUES(9966, 10796, 'ten thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(9967, 45097, 'forty-five thousand ninety-seven'); INSERT INTO t2 VALUES(9968, 60873, 'sixty thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(9969, 72539, 'seventy-two thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(9970, 74421, 'seventy-four thousand four hundred twenty-one'); INSERT INTO t2 VALUES(9971, 11566, 'eleven thousand five hundred sixty-six'); INSERT INTO t2 VALUES(9972, 45366, 'forty-five thousand three hundred sixty-six'); INSERT INTO t2 VALUES(9973, 10507, 'ten thousand five hundred seven'); INSERT INTO t2 VALUES(9974, 40969, 'forty thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(9975, 26089, 'twenty-six thousand eighty-nine'); INSERT INTO t2 VALUES(9976, 94907, 'ninety-four thousand nine hundred seven'); INSERT INTO t2 VALUES(9977, 67663, 'sixty-seven thousand six hundred sixty-three'); INSERT INTO t2 VALUES(9978, 59388, 'fifty-nine thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(9979, 67936, 'sixty-seven thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(9980, 1514, 'one thousand five hundred fourteen'); INSERT INTO t2 VALUES(9981, 83008, 'eighty-three thousand eight'); INSERT INTO t2 VALUES(9982, 52449, 'fifty-two thousand four hundred forty-nine'); INSERT INTO t2 VALUES(9983, 35805, 'thirty-five thousand eight hundred five'); INSERT INTO t2 VALUES(9984, 89354, 'eighty-nine thousand three hundred fifty-four'); INSERT INTO t2 VALUES(9985, 28275, 'twenty-eight thousand two hundred seventy-five'); INSERT INTO t2 VALUES(9986, 86168, 'eighty-six thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(9987, 70733, 'seventy thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(9988, 1525, 'one thousand five hundred twenty-five'); INSERT INTO t2 VALUES(9989, 88430, 'eighty-eight thousand four hundred thirty'); INSERT INTO t2 VALUES(9990, 93781, 'ninety-three thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(9991, 83529, 'eighty-three thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(9992, 15257, 'fifteen thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(9993, 66222, 'sixty-six thousand two hundred twenty-two'); INSERT INTO t2 VALUES(9994, 12762, 'twelve thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(9995, 32485, 'thirty-two thousand four hundred eighty-five'); INSERT INTO t2 VALUES(9996, 25438, 'twenty-five thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(9997, 7362, 'seven thousand three hundred sixty-two'); INSERT INTO t2 VALUES(9998, 9721, 'nine thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(9999, 44707, 'forty-four thousand seven hundred seven'); INSERT INTO t2 VALUES(10000, 43668, 'forty-three thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(10001, 93422, 'ninety-three thousand four hundred twenty-two'); INSERT INTO t2 VALUES(10002, 78511, 'seventy-eight thousand five hundred eleven'); INSERT INTO t2 VALUES(10003, 79651, 'seventy-nine thousand six hundred fifty-one'); INSERT INTO t2 VALUES(10004, 37643, 'thirty-seven thousand six hundred forty-three'); INSERT INTO t2 VALUES(10005, 78783, 'seventy-eight thousand seven hundred eighty-three'); INSERT INTO t2 VALUES(10006, 18116, 'eighteen thousand one hundred sixteen'); INSERT INTO t2 VALUES(10007, 71239, 'seventy-one thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(10008, 18194, 'eighteen thousand one hundred ninety-four'); INSERT INTO t2 VALUES(10009, 51355, 'fifty-one thousand three hundred fifty-five'); INSERT INTO t2 VALUES(10010, 98261, 'ninety-eight thousand two hundred sixty-one'); INSERT INTO t2 VALUES(10011, 83984, 'eighty-three thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(10012, 44407, 'forty-four thousand four hundred seven'); INSERT INTO t2 VALUES(10013, 19078, 'nineteen thousand seventy-eight'); INSERT INTO t2 VALUES(10014, 70902, 'seventy thousand nine hundred two'); INSERT INTO t2 VALUES(10015, 16982, 'sixteen thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(10016, 95419, 'ninety-five thousand four hundred nineteen'); INSERT INTO t2 VALUES(10017, 33354, 'thirty-three thousand three hundred fifty-four'); INSERT INTO t2 VALUES(10018, 50334, 'fifty thousand three hundred thirty-four'); INSERT INTO t2 VALUES(10019, 82156, 'eighty-two thousand one hundred fifty-six'); INSERT INTO t2 VALUES(10020, 89745, 'eighty-nine thousand seven hundred forty-five'); INSERT INTO t2 VALUES(10021, 20522, 'twenty thousand five hundred twenty-two'); INSERT INTO t2 VALUES(10022, 63411, 'sixty-three thousand four hundred eleven'); INSERT INTO t2 VALUES(10023, 54961, 'fifty-four thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(10024, 40258, 'forty thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(10025, 46240, 'forty-six thousand two hundred forty'); INSERT INTO t2 VALUES(10026, 24737, 'twenty-four thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(10027, 45625, 'forty-five thousand six hundred twenty-five'); INSERT INTO t2 VALUES(10028, 88518, 'eighty-eight thousand five hundred eighteen'); INSERT INTO t2 VALUES(10029, 37460, 'thirty-seven thousand four hundred sixty'); INSERT INTO t2 VALUES(10030, 94325, 'ninety-four thousand three hundred twenty-five'); INSERT INTO t2 VALUES(10031, 37456, 'thirty-seven thousand four hundred fifty-six'); INSERT INTO t2 VALUES(10032, 40991, 'forty thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(10033, 96882, 'ninety-six thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(10034, 96794, 'ninety-six thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(10035, 10767, 'ten thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(10036, 29290, 'twenty-nine thousand two hundred ninety'); INSERT INTO t2 VALUES(10037, 85526, 'eighty-five thousand five hundred twenty-six'); INSERT INTO t2 VALUES(10038, 77321, 'seventy-seven thousand three hundred twenty-one'); INSERT INTO t2 VALUES(10039, 22133, 'twenty-two thousand one hundred thirty-three'); INSERT INTO t2 VALUES(10040, 40317, 'forty thousand three hundred seventeen'); INSERT INTO t2 VALUES(10041, 60739, 'sixty thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(10042, 51801, 'fifty-one thousand eight hundred one'); INSERT INTO t2 VALUES(10043, 69537, 'sixty-nine thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(10044, 31020, 'thirty-one thousand twenty'); INSERT INTO t2 VALUES(10045, 7191, 'seven thousand one hundred ninety-one'); INSERT INTO t2 VALUES(10046, 14202, 'fourteen thousand two hundred two'); INSERT INTO t2 VALUES(10047, 27420, 'twenty-seven thousand four hundred twenty'); INSERT INTO t2 VALUES(10048, 59056, 'fifty-nine thousand fifty-six'); INSERT INTO t2 VALUES(10049, 13581, 'thirteen thousand five hundred eighty-one'); INSERT INTO t2 VALUES(10050, 43958, 'forty-three thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(10051, 95227, 'ninety-five thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(10052, 29350, 'twenty-nine thousand three hundred fifty'); INSERT INTO t2 VALUES(10053, 5887, 'five thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(10054, 2986, 'two thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(10055, 95791, 'ninety-five thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(10056, 35488, 'thirty-five thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(10057, 65926, 'sixty-five thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(10058, 26652, 'twenty-six thousand six hundred fifty-two'); INSERT INTO t2 VALUES(10059, 75019, 'seventy-five thousand nineteen'); INSERT INTO t2 VALUES(10060, 48662, 'forty-eight thousand six hundred sixty-two'); INSERT INTO t2 VALUES(10061, 25582, 'twenty-five thousand five hundred eighty-two'); INSERT INTO t2 VALUES(10062, 62775, 'sixty-two thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(10063, 82872, 'eighty-two thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(10064, 87807, 'eighty-seven thousand eight hundred seven'); INSERT INTO t2 VALUES(10065, 82316, 'eighty-two thousand three hundred sixteen'); INSERT INTO t2 VALUES(10066, 36033, 'thirty-six thousand thirty-three'); INSERT INTO t2 VALUES(10067, 64136, 'sixty-four thousand one hundred thirty-six'); INSERT INTO t2 VALUES(10068, 36927, 'thirty-six thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(10069, 27451, 'twenty-seven thousand four hundred fifty-one'); INSERT INTO t2 VALUES(10070, 18288, 'eighteen thousand two hundred eighty-eight'); INSERT INTO t2 VALUES(10071, 70862, 'seventy thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(10072, 58332, 'fifty-eight thousand three hundred thirty-two'); INSERT INTO t2 VALUES(10073, 67341, 'sixty-seven thousand three hundred forty-one'); INSERT INTO t2 VALUES(10074, 14209, 'fourteen thousand two hundred nine'); INSERT INTO t2 VALUES(10075, 11369, 'eleven thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(10076, 90453, 'ninety thousand four hundred fifty-three'); INSERT INTO t2 VALUES(10077, 89961, 'eighty-nine thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(10078, 29873, 'twenty-nine thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(10079, 95342, 'ninety-five thousand three hundred forty-two'); INSERT INTO t2 VALUES(10080, 28876, 'twenty-eight thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(10081, 38591, 'thirty-eight thousand five hundred ninety-one'); INSERT INTO t2 VALUES(10082, 22255, 'twenty-two thousand two hundred fifty-five'); INSERT INTO t2 VALUES(10083, 32250, 'thirty-two thousand two hundred fifty'); INSERT INTO t2 VALUES(10084, 60760, 'sixty thousand seven hundred sixty'); INSERT INTO t2 VALUES(10085, 60606, 'sixty thousand six hundred six'); INSERT INTO t2 VALUES(10086, 28914, 'twenty-eight thousand nine hundred fourteen'); INSERT INTO t2 VALUES(10087, 48145, 'forty-eight thousand one hundred forty-five'); INSERT INTO t2 VALUES(10088, 67051, 'sixty-seven thousand fifty-one'); INSERT INTO t2 VALUES(10089, 80224, 'eighty thousand two hundred twenty-four'); INSERT INTO t2 VALUES(10090, 67729, 'sixty-seven thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(10091, 91224, 'ninety-one thousand two hundred twenty-four'); INSERT INTO t2 VALUES(10092, 25412, 'twenty-five thousand four hundred twelve'); INSERT INTO t2 VALUES(10093, 21678, 'twenty-one thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(10094, 85068, 'eighty-five thousand sixty-eight'); INSERT INTO t2 VALUES(10095, 40462, 'forty thousand four hundred sixty-two'); INSERT INTO t2 VALUES(10096, 6854, 'six thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(10097, 31721, 'thirty-one thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(10098, 12954, 'twelve thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(10099, 22132, 'twenty-two thousand one hundred thirty-two'); INSERT INTO t2 VALUES(10100, 11088, 'eleven thousand eighty-eight'); INSERT INTO t2 VALUES(10101, 56936, 'fifty-six thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(10102, 4088, 'four thousand eighty-eight'); INSERT INTO t2 VALUES(10103, 71434, 'seventy-one thousand four hundred thirty-four'); INSERT INTO t2 VALUES(10104, 30525, 'thirty thousand five hundred twenty-five'); INSERT INTO t2 VALUES(10105, 10768, 'ten thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(10106, 59864, 'fifty-nine thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(10107, 86995, 'eighty-six thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(10108, 46828, 'forty-six thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(10109, 92437, 'ninety-two thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(10110, 67956, 'sixty-seven thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(10111, 3135, 'three thousand one hundred thirty-five'); INSERT INTO t2 VALUES(10112, 17166, 'seventeen thousand one hundred sixty-six'); INSERT INTO t2 VALUES(10113, 95375, 'ninety-five thousand three hundred seventy-five'); INSERT INTO t2 VALUES(10114, 10317, 'ten thousand three hundred seventeen'); INSERT INTO t2 VALUES(10115, 92095, 'ninety-two thousand ninety-five'); INSERT INTO t2 VALUES(10116, 15089, 'fifteen thousand eighty-nine'); INSERT INTO t2 VALUES(10117, 22295, 'twenty-two thousand two hundred ninety-five'); INSERT INTO t2 VALUES(10118, 69161, 'sixty-nine thousand one hundred sixty-one'); INSERT INTO t2 VALUES(10119, 6487, 'six thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(10120, 10844, 'ten thousand eight hundred forty-four'); INSERT INTO t2 VALUES(10121, 96110, 'ninety-six thousand one hundred ten'); INSERT INTO t2 VALUES(10122, 18819, 'eighteen thousand eight hundred nineteen'); INSERT INTO t2 VALUES(10123, 10972, 'ten thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(10124, 33732, 'thirty-three thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(10125, 52138, 'fifty-two thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(10126, 48624, 'forty-eight thousand six hundred twenty-four'); INSERT INTO t2 VALUES(10127, 94840, 'ninety-four thousand eight hundred forty'); INSERT INTO t2 VALUES(10128, 42108, 'forty-two thousand one hundred eight'); INSERT INTO t2 VALUES(10129, 41793, 'forty-one thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(10130, 64579, 'sixty-four thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(10131, 41902, 'forty-one thousand nine hundred two'); INSERT INTO t2 VALUES(10132, 9141, 'nine thousand one hundred forty-one'); INSERT INTO t2 VALUES(10133, 69247, 'sixty-nine thousand two hundred forty-seven'); INSERT INTO t2 VALUES(10134, 64837, 'sixty-four thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(10135, 44654, 'forty-four thousand six hundred fifty-four'); INSERT INTO t2 VALUES(10136, 17940, 'seventeen thousand nine hundred forty'); INSERT INTO t2 VALUES(10137, 67097, 'sixty-seven thousand ninety-seven'); INSERT INTO t2 VALUES(10138, 94388, 'ninety-four thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(10139, 97454, 'ninety-seven thousand four hundred fifty-four'); INSERT INTO t2 VALUES(10140, 49395, 'forty-nine thousand three hundred ninety-five'); INSERT INTO t2 VALUES(10141, 28209, 'twenty-eight thousand two hundred nine'); INSERT INTO t2 VALUES(10142, 94587, 'ninety-four thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(10143, 76900, 'seventy-six thousand nine hundred'); INSERT INTO t2 VALUES(10144, 50976, 'fifty thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(10145, 42009, 'forty-two thousand nine'); INSERT INTO t2 VALUES(10146, 55337, 'fifty-five thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(10147, 43386, 'forty-three thousand three hundred eighty-six'); INSERT INTO t2 VALUES(10148, 71133, 'seventy-one thousand one hundred thirty-three'); INSERT INTO t2 VALUES(10149, 18762, 'eighteen thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(10150, 83631, 'eighty-three thousand six hundred thirty-one'); INSERT INTO t2 VALUES(10151, 48583, 'forty-eight thousand five hundred eighty-three'); INSERT INTO t2 VALUES(10152, 37275, 'thirty-seven thousand two hundred seventy-five'); INSERT INTO t2 VALUES(10153, 74334, 'seventy-four thousand three hundred thirty-four'); INSERT INTO t2 VALUES(10154, 2982, 'two thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(10155, 6976, 'six thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(10156, 39273, 'thirty-nine thousand two hundred seventy-three'); INSERT INTO t2 VALUES(10157, 27624, 'twenty-seven thousand six hundred twenty-four'); INSERT INTO t2 VALUES(10158, 98848, 'ninety-eight thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(10159, 27469, 'twenty-seven thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(10160, 84326, 'eighty-four thousand three hundred twenty-six'); INSERT INTO t2 VALUES(10161, 63020, 'sixty-three thousand twenty'); INSERT INTO t2 VALUES(10162, 75022, 'seventy-five thousand twenty-two'); INSERT INTO t2 VALUES(10163, 27420, 'twenty-seven thousand four hundred twenty'); INSERT INTO t2 VALUES(10164, 41052, 'forty-one thousand fifty-two'); INSERT INTO t2 VALUES(10165, 21534, 'twenty-one thousand five hundred thirty-four'); INSERT INTO t2 VALUES(10166, 71154, 'seventy-one thousand one hundred fifty-four'); INSERT INTO t2 VALUES(10167, 98187, 'ninety-eight thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(10168, 67507, 'sixty-seven thousand five hundred seven'); INSERT INTO t2 VALUES(10169, 29966, 'twenty-nine thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(10170, 25408, 'twenty-five thousand four hundred eight'); INSERT INTO t2 VALUES(10171, 18694, 'eighteen thousand six hundred ninety-four'); INSERT INTO t2 VALUES(10172, 44142, 'forty-four thousand one hundred forty-two'); INSERT INTO t2 VALUES(10173, 89828, 'eighty-nine thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(10174, 42489, 'forty-two thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(10175, 56553, 'fifty-six thousand five hundred fifty-three'); INSERT INTO t2 VALUES(10176, 21233, 'twenty-one thousand two hundred thirty-three'); INSERT INTO t2 VALUES(10177, 71442, 'seventy-one thousand four hundred forty-two'); INSERT INTO t2 VALUES(10178, 94227, 'ninety-four thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(10179, 31597, 'thirty-one thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(10180, 93967, 'ninety-three thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(10181, 60897, 'sixty thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(10182, 43723, 'forty-three thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(10183, 82011, 'eighty-two thousand eleven'); INSERT INTO t2 VALUES(10184, 86358, 'eighty-six thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(10185, 78704, 'seventy-eight thousand seven hundred four'); INSERT INTO t2 VALUES(10186, 51381, 'fifty-one thousand three hundred eighty-one'); INSERT INTO t2 VALUES(10187, 9489, 'nine thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(10188, 32395, 'thirty-two thousand three hundred ninety-five'); INSERT INTO t2 VALUES(10189, 66736, 'sixty-six thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(10190, 72421, 'seventy-two thousand four hundred twenty-one'); INSERT INTO t2 VALUES(10191, 20505, 'twenty thousand five hundred five'); INSERT INTO t2 VALUES(10192, 60892, 'sixty thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(10193, 86125, 'eighty-six thousand one hundred twenty-five'); INSERT INTO t2 VALUES(10194, 16480, 'sixteen thousand four hundred eighty'); INSERT INTO t2 VALUES(10195, 67149, 'sixty-seven thousand one hundred forty-nine'); INSERT INTO t2 VALUES(10196, 49960, 'forty-nine thousand nine hundred sixty'); INSERT INTO t2 VALUES(10197, 43029, 'forty-three thousand twenty-nine'); INSERT INTO t2 VALUES(10198, 5057, 'five thousand fifty-seven'); INSERT INTO t2 VALUES(10199, 29649, 'twenty-nine thousand six hundred forty-nine'); INSERT INTO t2 VALUES(10200, 62197, 'sixty-two thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(10201, 98587, 'ninety-eight thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(10202, 32622, 'thirty-two thousand six hundred twenty-two'); INSERT INTO t2 VALUES(10203, 31145, 'thirty-one thousand one hundred forty-five'); INSERT INTO t2 VALUES(10204, 56582, 'fifty-six thousand five hundred eighty-two'); INSERT INTO t2 VALUES(10205, 8708, 'eight thousand seven hundred eight'); INSERT INTO t2 VALUES(10206, 80782, 'eighty thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(10207, 1834, 'one thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(10208, 21888, 'twenty-one thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(10209, 52793, 'fifty-two thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(10210, 98913, 'ninety-eight thousand nine hundred thirteen'); INSERT INTO t2 VALUES(10211, 788, 'seven hundred eighty-eight'); INSERT INTO t2 VALUES(10212, 78848, 'seventy-eight thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(10213, 43230, 'forty-three thousand two hundred thirty'); INSERT INTO t2 VALUES(10214, 8799, 'eight thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(10215, 54038, 'fifty-four thousand thirty-eight'); INSERT INTO t2 VALUES(10216, 92344, 'ninety-two thousand three hundred forty-four'); INSERT INTO t2 VALUES(10217, 19882, 'nineteen thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(10218, 66941, 'sixty-six thousand nine hundred forty-one'); INSERT INTO t2 VALUES(10219, 90274, 'ninety thousand two hundred seventy-four'); INSERT INTO t2 VALUES(10220, 70729, 'seventy thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(10221, 41013, 'forty-one thousand thirteen'); INSERT INTO t2 VALUES(10222, 65717, 'sixty-five thousand seven hundred seventeen'); INSERT INTO t2 VALUES(10223, 6157, 'six thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(10224, 52191, 'fifty-two thousand one hundred ninety-one'); INSERT INTO t2 VALUES(10225, 77086, 'seventy-seven thousand eighty-six'); INSERT INTO t2 VALUES(10226, 92092, 'ninety-two thousand ninety-two'); INSERT INTO t2 VALUES(10227, 98823, 'ninety-eight thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(10228, 19498, 'nineteen thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(10229, 14181, 'fourteen thousand one hundred eighty-one'); INSERT INTO t2 VALUES(10230, 53665, 'fifty-three thousand six hundred sixty-five'); INSERT INTO t2 VALUES(10231, 38861, 'thirty-eight thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(10232, 512, 'five hundred twelve'); INSERT INTO t2 VALUES(10233, 99022, 'ninety-nine thousand twenty-two'); INSERT INTO t2 VALUES(10234, 77947, 'seventy-seven thousand nine hundred forty-seven'); INSERT INTO t2 VALUES(10235, 45582, 'forty-five thousand five hundred eighty-two'); INSERT INTO t2 VALUES(10236, 17177, 'seventeen thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(10237, 83840, 'eighty-three thousand eight hundred forty'); INSERT INTO t2 VALUES(10238, 92528, 'ninety-two thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(10239, 22333, 'twenty-two thousand three hundred thirty-three'); INSERT INTO t2 VALUES(10240, 80183, 'eighty thousand one hundred eighty-three'); INSERT INTO t2 VALUES(10241, 91124, 'ninety-one thousand one hundred twenty-four'); INSERT INTO t2 VALUES(10242, 50219, 'fifty thousand two hundred nineteen'); INSERT INTO t2 VALUES(10243, 86522, 'eighty-six thousand five hundred twenty-two'); INSERT INTO t2 VALUES(10244, 91434, 'ninety-one thousand four hundred thirty-four'); INSERT INTO t2 VALUES(10245, 43887, 'forty-three thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(10246, 33478, 'thirty-three thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(10247, 62924, 'sixty-two thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(10248, 89057, 'eighty-nine thousand fifty-seven'); INSERT INTO t2 VALUES(10249, 46407, 'forty-six thousand four hundred seven'); INSERT INTO t2 VALUES(10250, 90629, 'ninety thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(10251, 63581, 'sixty-three thousand five hundred eighty-one'); INSERT INTO t2 VALUES(10252, 5364, 'five thousand three hundred sixty-four'); INSERT INTO t2 VALUES(10253, 22919, 'twenty-two thousand nine hundred nineteen'); INSERT INTO t2 VALUES(10254, 93301, 'ninety-three thousand three hundred one'); INSERT INTO t2 VALUES(10255, 47925, 'forty-seven thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(10256, 62950, 'sixty-two thousand nine hundred fifty'); INSERT INTO t2 VALUES(10257, 72924, 'seventy-two thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(10258, 55715, 'fifty-five thousand seven hundred fifteen'); INSERT INTO t2 VALUES(10259, 29794, 'twenty-nine thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(10260, 87159, 'eighty-seven thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(10261, 35726, 'thirty-five thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(10262, 25290, 'twenty-five thousand two hundred ninety'); INSERT INTO t2 VALUES(10263, 71038, 'seventy-one thousand thirty-eight'); INSERT INTO t2 VALUES(10264, 27862, 'twenty-seven thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(10265, 23841, 'twenty-three thousand eight hundred forty-one'); INSERT INTO t2 VALUES(10266, 60438, 'sixty thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(10267, 83993, 'eighty-three thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(10268, 62405, 'sixty-two thousand four hundred five'); INSERT INTO t2 VALUES(10269, 24054, 'twenty-four thousand fifty-four'); INSERT INTO t2 VALUES(10270, 57272, 'fifty-seven thousand two hundred seventy-two'); INSERT INTO t2 VALUES(10271, 11856, 'eleven thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(10272, 57422, 'fifty-seven thousand four hundred twenty-two'); INSERT INTO t2 VALUES(10273, 11750, 'eleven thousand seven hundred fifty'); INSERT INTO t2 VALUES(10274, 73859, 'seventy-three thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(10275, 68654, 'sixty-eight thousand six hundred fifty-four'); INSERT INTO t2 VALUES(10276, 20089, 'twenty thousand eighty-nine'); INSERT INTO t2 VALUES(10277, 59911, 'fifty-nine thousand nine hundred eleven'); INSERT INTO t2 VALUES(10278, 49931, 'forty-nine thousand nine hundred thirty-one'); INSERT INTO t2 VALUES(10279, 54876, 'fifty-four thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(10280, 46280, 'forty-six thousand two hundred eighty'); INSERT INTO t2 VALUES(10281, 24422, 'twenty-four thousand four hundred twenty-two'); INSERT INTO t2 VALUES(10282, 48733, 'forty-eight thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(10283, 13374, 'thirteen thousand three hundred seventy-four'); INSERT INTO t2 VALUES(10284, 57736, 'fifty-seven thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(10285, 37380, 'thirty-seven thousand three hundred eighty'); INSERT INTO t2 VALUES(10286, 96731, 'ninety-six thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(10287, 97572, 'ninety-seven thousand five hundred seventy-two'); INSERT INTO t2 VALUES(10288, 72194, 'seventy-two thousand one hundred ninety-four'); INSERT INTO t2 VALUES(10289, 44460, 'forty-four thousand four hundred sixty'); INSERT INTO t2 VALUES(10290, 53187, 'fifty-three thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(10291, 8786, 'eight thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(10292, 4737, 'four thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(10293, 68178, 'sixty-eight thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(10294, 37344, 'thirty-seven thousand three hundred forty-four'); INSERT INTO t2 VALUES(10295, 49195, 'forty-nine thousand one hundred ninety-five'); INSERT INTO t2 VALUES(10296, 81421, 'eighty-one thousand four hundred twenty-one'); INSERT INTO t2 VALUES(10297, 97365, 'ninety-seven thousand three hundred sixty-five'); INSERT INTO t2 VALUES(10298, 87319, 'eighty-seven thousand three hundred nineteen'); INSERT INTO t2 VALUES(10299, 30615, 'thirty thousand six hundred fifteen'); INSERT INTO t2 VALUES(10300, 86579, 'eighty-six thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(10301, 40921, 'forty thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(10302, 89272, 'eighty-nine thousand two hundred seventy-two'); INSERT INTO t2 VALUES(10303, 50023, 'fifty thousand twenty-three'); INSERT INTO t2 VALUES(10304, 95552, 'ninety-five thousand five hundred fifty-two'); INSERT INTO t2 VALUES(10305, 77200, 'seventy-seven thousand two hundred'); INSERT INTO t2 VALUES(10306, 80643, 'eighty thousand six hundred forty-three'); INSERT INTO t2 VALUES(10307, 88530, 'eighty-eight thousand five hundred thirty'); INSERT INTO t2 VALUES(10308, 52392, 'fifty-two thousand three hundred ninety-two'); INSERT INTO t2 VALUES(10309, 88186, 'eighty-eight thousand one hundred eighty-six'); INSERT INTO t2 VALUES(10310, 35070, 'thirty-five thousand seventy'); INSERT INTO t2 VALUES(10311, 72151, 'seventy-two thousand one hundred fifty-one'); INSERT INTO t2 VALUES(10312, 88942, 'eighty-eight thousand nine hundred forty-two'); INSERT INTO t2 VALUES(10313, 84646, 'eighty-four thousand six hundred forty-six'); INSERT INTO t2 VALUES(10314, 3944, 'three thousand nine hundred forty-four'); INSERT INTO t2 VALUES(10315, 20533, 'twenty thousand five hundred thirty-three'); INSERT INTO t2 VALUES(10316, 28512, 'twenty-eight thousand five hundred twelve'); INSERT INTO t2 VALUES(10317, 79617, 'seventy-nine thousand six hundred seventeen'); INSERT INTO t2 VALUES(10318, 345, 'three hundred forty-five'); INSERT INTO t2 VALUES(10319, 48197, 'forty-eight thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(10320, 73820, 'seventy-three thousand eight hundred twenty'); INSERT INTO t2 VALUES(10321, 73203, 'seventy-three thousand two hundred three'); INSERT INTO t2 VALUES(10322, 79567, 'seventy-nine thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(10323, 7196, 'seven thousand one hundred ninety-six'); INSERT INTO t2 VALUES(10324, 46206, 'forty-six thousand two hundred six'); INSERT INTO t2 VALUES(10325, 44181, 'forty-four thousand one hundred eighty-one'); INSERT INTO t2 VALUES(10326, 11792, 'eleven thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(10327, 12881, 'twelve thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(10328, 95524, 'ninety-five thousand five hundred twenty-four'); INSERT INTO t2 VALUES(10329, 72593, 'seventy-two thousand five hundred ninety-three'); INSERT INTO t2 VALUES(10330, 80211, 'eighty thousand two hundred eleven'); INSERT INTO t2 VALUES(10331, 48611, 'forty-eight thousand six hundred eleven'); INSERT INTO t2 VALUES(10332, 82047, 'eighty-two thousand forty-seven'); INSERT INTO t2 VALUES(10333, 77177, 'seventy-seven thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(10334, 257, 'two hundred fifty-seven'); INSERT INTO t2 VALUES(10335, 36466, 'thirty-six thousand four hundred sixty-six'); INSERT INTO t2 VALUES(10336, 14574, 'fourteen thousand five hundred seventy-four'); INSERT INTO t2 VALUES(10337, 45098, 'forty-five thousand ninety-eight'); INSERT INTO t2 VALUES(10338, 77630, 'seventy-seven thousand six hundred thirty'); INSERT INTO t2 VALUES(10339, 71570, 'seventy-one thousand five hundred seventy'); INSERT INTO t2 VALUES(10340, 97718, 'ninety-seven thousand seven hundred eighteen'); INSERT INTO t2 VALUES(10341, 47146, 'forty-seven thousand one hundred forty-six'); INSERT INTO t2 VALUES(10342, 29410, 'twenty-nine thousand four hundred ten'); INSERT INTO t2 VALUES(10343, 4725, 'four thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(10344, 61692, 'sixty-one thousand six hundred ninety-two'); INSERT INTO t2 VALUES(10345, 91558, 'ninety-one thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(10346, 77971, 'seventy-seven thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(10347, 35749, 'thirty-five thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(10348, 58875, 'fifty-eight thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(10349, 22918, 'twenty-two thousand nine hundred eighteen'); INSERT INTO t2 VALUES(10350, 86802, 'eighty-six thousand eight hundred two'); INSERT INTO t2 VALUES(10351, 87662, 'eighty-seven thousand six hundred sixty-two'); INSERT INTO t2 VALUES(10352, 76394, 'seventy-six thousand three hundred ninety-four'); INSERT INTO t2 VALUES(10353, 2366, 'two thousand three hundred sixty-six'); INSERT INTO t2 VALUES(10354, 69310, 'sixty-nine thousand three hundred ten'); INSERT INTO t2 VALUES(10355, 14691, 'fourteen thousand six hundred ninety-one'); INSERT INTO t2 VALUES(10356, 39756, 'thirty-nine thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(10357, 58155, 'fifty-eight thousand one hundred fifty-five'); INSERT INTO t2 VALUES(10358, 70934, 'seventy thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(10359, 24249, 'twenty-four thousand two hundred forty-nine'); INSERT INTO t2 VALUES(10360, 67762, 'sixty-seven thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(10361, 22437, 'twenty-two thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(10362, 81112, 'eighty-one thousand one hundred twelve'); INSERT INTO t2 VALUES(10363, 51440, 'fifty-one thousand four hundred forty'); INSERT INTO t2 VALUES(10364, 94451, 'ninety-four thousand four hundred fifty-one'); INSERT INTO t2 VALUES(10365, 23046, 'twenty-three thousand forty-six'); INSERT INTO t2 VALUES(10366, 36970, 'thirty-six thousand nine hundred seventy'); INSERT INTO t2 VALUES(10367, 26965, 'twenty-six thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(10368, 71037, 'seventy-one thousand thirty-seven'); INSERT INTO t2 VALUES(10369, 85529, 'eighty-five thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(10370, 57720, 'fifty-seven thousand seven hundred twenty'); INSERT INTO t2 VALUES(10371, 68703, 'sixty-eight thousand seven hundred three'); INSERT INTO t2 VALUES(10372, 48093, 'forty-eight thousand ninety-three'); INSERT INTO t2 VALUES(10373, 32222, 'thirty-two thousand two hundred twenty-two'); INSERT INTO t2 VALUES(10374, 24780, 'twenty-four thousand seven hundred eighty'); INSERT INTO t2 VALUES(10375, 98605, 'ninety-eight thousand six hundred five'); INSERT INTO t2 VALUES(10376, 80788, 'eighty thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(10377, 78338, 'seventy-eight thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(10378, 2806, 'two thousand eight hundred six'); INSERT INTO t2 VALUES(10379, 80487, 'eighty thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(10380, 512, 'five hundred twelve'); INSERT INTO t2 VALUES(10381, 86173, 'eighty-six thousand one hundred seventy-three'); INSERT INTO t2 VALUES(10382, 82160, 'eighty-two thousand one hundred sixty'); INSERT INTO t2 VALUES(10383, 77475, 'seventy-seven thousand four hundred seventy-five'); INSERT INTO t2 VALUES(10384, 17441, 'seventeen thousand four hundred forty-one'); INSERT INTO t2 VALUES(10385, 9143, 'nine thousand one hundred forty-three'); INSERT INTO t2 VALUES(10386, 47682, 'forty-seven thousand six hundred eighty-two'); INSERT INTO t2 VALUES(10387, 45608, 'forty-five thousand six hundred eight'); INSERT INTO t2 VALUES(10388, 25793, 'twenty-five thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(10389, 97514, 'ninety-seven thousand five hundred fourteen'); INSERT INTO t2 VALUES(10390, 68165, 'sixty-eight thousand one hundred sixty-five'); INSERT INTO t2 VALUES(10391, 69801, 'sixty-nine thousand eight hundred one'); INSERT INTO t2 VALUES(10392, 41587, 'forty-one thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(10393, 13432, 'thirteen thousand four hundred thirty-two'); INSERT INTO t2 VALUES(10394, 89619, 'eighty-nine thousand six hundred nineteen'); INSERT INTO t2 VALUES(10395, 41244, 'forty-one thousand two hundred forty-four'); INSERT INTO t2 VALUES(10396, 83446, 'eighty-three thousand four hundred forty-six'); INSERT INTO t2 VALUES(10397, 30914, 'thirty thousand nine hundred fourteen'); INSERT INTO t2 VALUES(10398, 45369, 'forty-five thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(10399, 81742, 'eighty-one thousand seven hundred forty-two'); INSERT INTO t2 VALUES(10400, 76009, 'seventy-six thousand nine'); INSERT INTO t2 VALUES(10401, 38569, 'thirty-eight thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(10402, 13362, 'thirteen thousand three hundred sixty-two'); INSERT INTO t2 VALUES(10403, 84025, 'eighty-four thousand twenty-five'); INSERT INTO t2 VALUES(10404, 56985, 'fifty-six thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(10405, 11889, 'eleven thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(10406, 74233, 'seventy-four thousand two hundred thirty-three'); INSERT INTO t2 VALUES(10407, 6279, 'six thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(10408, 10398, 'ten thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(10409, 54466, 'fifty-four thousand four hundred sixty-six'); INSERT INTO t2 VALUES(10410, 83572, 'eighty-three thousand five hundred seventy-two'); INSERT INTO t2 VALUES(10411, 68894, 'sixty-eight thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(10412, 49574, 'forty-nine thousand five hundred seventy-four'); INSERT INTO t2 VALUES(10413, 32964, 'thirty-two thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(10414, 55112, 'fifty-five thousand one hundred twelve'); INSERT INTO t2 VALUES(10415, 57379, 'fifty-seven thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(10416, 56799, 'fifty-six thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(10417, 59788, 'fifty-nine thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(10418, 40118, 'forty thousand one hundred eighteen'); INSERT INTO t2 VALUES(10419, 9262, 'nine thousand two hundred sixty-two'); INSERT INTO t2 VALUES(10420, 91864, 'ninety-one thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(10421, 83889, 'eighty-three thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(10422, 64947, 'sixty-four thousand nine hundred forty-seven'); INSERT INTO t2 VALUES(10423, 40464, 'forty thousand four hundred sixty-four'); INSERT INTO t2 VALUES(10424, 65685, 'sixty-five thousand six hundred eighty-five'); INSERT INTO t2 VALUES(10425, 1184, 'one thousand one hundred eighty-four'); INSERT INTO t2 VALUES(10426, 73744, 'seventy-three thousand seven hundred forty-four'); INSERT INTO t2 VALUES(10427, 43448, 'forty-three thousand four hundred forty-eight'); INSERT INTO t2 VALUES(10428, 9633, 'nine thousand six hundred thirty-three'); INSERT INTO t2 VALUES(10429, 82246, 'eighty-two thousand two hundred forty-six'); INSERT INTO t2 VALUES(10430, 44276, 'forty-four thousand two hundred seventy-six'); INSERT INTO t2 VALUES(10431, 98338, 'ninety-eight thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(10432, 35746, 'thirty-five thousand seven hundred forty-six'); INSERT INTO t2 VALUES(10433, 34509, 'thirty-four thousand five hundred nine'); INSERT INTO t2 VALUES(10434, 50233, 'fifty thousand two hundred thirty-three'); INSERT INTO t2 VALUES(10435, 3988, 'three thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(10436, 62096, 'sixty-two thousand ninety-six'); INSERT INTO t2 VALUES(10437, 45120, 'forty-five thousand one hundred twenty'); INSERT INTO t2 VALUES(10438, 10384, 'ten thousand three hundred eighty-four'); INSERT INTO t2 VALUES(10439, 58412, 'fifty-eight thousand four hundred twelve'); INSERT INTO t2 VALUES(10440, 6210, 'six thousand two hundred ten'); INSERT INTO t2 VALUES(10441, 92060, 'ninety-two thousand sixty'); INSERT INTO t2 VALUES(10442, 22549, 'twenty-two thousand five hundred forty-nine'); INSERT INTO t2 VALUES(10443, 14654, 'fourteen thousand six hundred fifty-four'); INSERT INTO t2 VALUES(10444, 79862, 'seventy-nine thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(10445, 13827, 'thirteen thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(10446, 70994, 'seventy thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(10447, 29434, 'twenty-nine thousand four hundred thirty-four'); INSERT INTO t2 VALUES(10448, 27259, 'twenty-seven thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(10449, 99804, 'ninety-nine thousand eight hundred four'); INSERT INTO t2 VALUES(10450, 45028, 'forty-five thousand twenty-eight'); INSERT INTO t2 VALUES(10451, 11398, 'eleven thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(10452, 55444, 'fifty-five thousand four hundred forty-four'); INSERT INTO t2 VALUES(10453, 99800, 'ninety-nine thousand eight hundred'); INSERT INTO t2 VALUES(10454, 58161, 'fifty-eight thousand one hundred sixty-one'); INSERT INTO t2 VALUES(10455, 40784, 'forty thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(10456, 95158, 'ninety-five thousand one hundred fifty-eight'); INSERT INTO t2 VALUES(10457, 82507, 'eighty-two thousand five hundred seven'); INSERT INTO t2 VALUES(10458, 61525, 'sixty-one thousand five hundred twenty-five'); INSERT INTO t2 VALUES(10459, 98305, 'ninety-eight thousand three hundred five'); INSERT INTO t2 VALUES(10460, 78610, 'seventy-eight thousand six hundred ten'); INSERT INTO t2 VALUES(10461, 887, 'eight hundred eighty-seven'); INSERT INTO t2 VALUES(10462, 30663, 'thirty thousand six hundred sixty-three'); INSERT INTO t2 VALUES(10463, 24156, 'twenty-four thousand one hundred fifty-six'); INSERT INTO t2 VALUES(10464, 89993, 'eighty-nine thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(10465, 62451, 'sixty-two thousand four hundred fifty-one'); INSERT INTO t2 VALUES(10466, 32897, 'thirty-two thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(10467, 72206, 'seventy-two thousand two hundred six'); INSERT INTO t2 VALUES(10468, 85870, 'eighty-five thousand eight hundred seventy'); INSERT INTO t2 VALUES(10469, 10562, 'ten thousand five hundred sixty-two'); INSERT INTO t2 VALUES(10470, 90397, 'ninety thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(10471, 40363, 'forty thousand three hundred sixty-three'); INSERT INTO t2 VALUES(10472, 43581, 'forty-three thousand five hundred eighty-one'); INSERT INTO t2 VALUES(10473, 63066, 'sixty-three thousand sixty-six'); INSERT INTO t2 VALUES(10474, 63630, 'sixty-three thousand six hundred thirty'); INSERT INTO t2 VALUES(10475, 59944, 'fifty-nine thousand nine hundred forty-four'); INSERT INTO t2 VALUES(10476, 79379, 'seventy-nine thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(10477, 56319, 'fifty-six thousand three hundred nineteen'); INSERT INTO t2 VALUES(10478, 25832, 'twenty-five thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(10479, 69714, 'sixty-nine thousand seven hundred fourteen'); INSERT INTO t2 VALUES(10480, 72589, 'seventy-two thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(10481, 64426, 'sixty-four thousand four hundred twenty-six'); INSERT INTO t2 VALUES(10482, 15595, 'fifteen thousand five hundred ninety-five'); INSERT INTO t2 VALUES(10483, 94937, 'ninety-four thousand nine hundred thirty-seven'); INSERT INTO t2 VALUES(10484, 20544, 'twenty thousand five hundred forty-four'); INSERT INTO t2 VALUES(10485, 73212, 'seventy-three thousand two hundred twelve'); INSERT INTO t2 VALUES(10486, 78272, 'seventy-eight thousand two hundred seventy-two'); INSERT INTO t2 VALUES(10487, 96263, 'ninety-six thousand two hundred sixty-three'); INSERT INTO t2 VALUES(10488, 57888, 'fifty-seven thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(10489, 6577, 'six thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(10490, 87243, 'eighty-seven thousand two hundred forty-three'); INSERT INTO t2 VALUES(10491, 45050, 'forty-five thousand fifty'); INSERT INTO t2 VALUES(10492, 47420, 'forty-seven thousand four hundred twenty'); INSERT INTO t2 VALUES(10493, 22551, 'twenty-two thousand five hundred fifty-one'); INSERT INTO t2 VALUES(10494, 79991, 'seventy-nine thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(10495, 57365, 'fifty-seven thousand three hundred sixty-five'); INSERT INTO t2 VALUES(10496, 70310, 'seventy thousand three hundred ten'); INSERT INTO t2 VALUES(10497, 7280, 'seven thousand two hundred eighty'); INSERT INTO t2 VALUES(10498, 92371, 'ninety-two thousand three hundred seventy-one'); INSERT INTO t2 VALUES(10499, 94230, 'ninety-four thousand two hundred thirty'); INSERT INTO t2 VALUES(10500, 92527, 'ninety-two thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(10501, 47272, 'forty-seven thousand two hundred seventy-two'); INSERT INTO t2 VALUES(10502, 3044, 'three thousand forty-four'); INSERT INTO t2 VALUES(10503, 36605, 'thirty-six thousand six hundred five'); INSERT INTO t2 VALUES(10504, 6326, 'six thousand three hundred twenty-six'); INSERT INTO t2 VALUES(10505, 46589, 'forty-six thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(10506, 4232, 'four thousand two hundred thirty-two'); INSERT INTO t2 VALUES(10507, 13303, 'thirteen thousand three hundred three'); INSERT INTO t2 VALUES(10508, 18564, 'eighteen thousand five hundred sixty-four'); INSERT INTO t2 VALUES(10509, 35064, 'thirty-five thousand sixty-four'); INSERT INTO t2 VALUES(10510, 16968, 'sixteen thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(10511, 20300, 'twenty thousand three hundred'); INSERT INTO t2 VALUES(10512, 31944, 'thirty-one thousand nine hundred forty-four'); INSERT INTO t2 VALUES(10513, 15710, 'fifteen thousand seven hundred ten'); INSERT INTO t2 VALUES(10514, 99425, 'ninety-nine thousand four hundred twenty-five'); INSERT INTO t2 VALUES(10515, 57071, 'fifty-seven thousand seventy-one'); INSERT INTO t2 VALUES(10516, 42888, 'forty-two thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(10517, 90675, 'ninety thousand six hundred seventy-five'); INSERT INTO t2 VALUES(10518, 13798, 'thirteen thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(10519, 72321, 'seventy-two thousand three hundred twenty-one'); INSERT INTO t2 VALUES(10520, 70031, 'seventy thousand thirty-one'); INSERT INTO t2 VALUES(10521, 38013, 'thirty-eight thousand thirteen'); INSERT INTO t2 VALUES(10522, 29874, 'twenty-nine thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(10523, 96220, 'ninety-six thousand two hundred twenty'); INSERT INTO t2 VALUES(10524, 21856, 'twenty-one thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(10525, 28721, 'twenty-eight thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(10526, 11024, 'eleven thousand twenty-four'); INSERT INTO t2 VALUES(10527, 26017, 'twenty-six thousand seventeen'); INSERT INTO t2 VALUES(10528, 2275, 'two thousand two hundred seventy-five'); INSERT INTO t2 VALUES(10529, 29804, 'twenty-nine thousand eight hundred four'); INSERT INTO t2 VALUES(10530, 41864, 'forty-one thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(10531, 77439, 'seventy-seven thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(10532, 37600, 'thirty-seven thousand six hundred'); INSERT INTO t2 VALUES(10533, 88606, 'eighty-eight thousand six hundred six'); INSERT INTO t2 VALUES(10534, 57478, 'fifty-seven thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(10535, 96296, 'ninety-six thousand two hundred ninety-six'); INSERT INTO t2 VALUES(10536, 96516, 'ninety-six thousand five hundred sixteen'); INSERT INTO t2 VALUES(10537, 59728, 'fifty-nine thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(10538, 47356, 'forty-seven thousand three hundred fifty-six'); INSERT INTO t2 VALUES(10539, 22521, 'twenty-two thousand five hundred twenty-one'); INSERT INTO t2 VALUES(10540, 41674, 'forty-one thousand six hundred seventy-four'); INSERT INTO t2 VALUES(10541, 16290, 'sixteen thousand two hundred ninety'); INSERT INTO t2 VALUES(10542, 41543, 'forty-one thousand five hundred forty-three'); INSERT INTO t2 VALUES(10543, 44586, 'forty-four thousand five hundred eighty-six'); INSERT INTO t2 VALUES(10544, 90745, 'ninety thousand seven hundred forty-five'); INSERT INTO t2 VALUES(10545, 35670, 'thirty-five thousand six hundred seventy'); INSERT INTO t2 VALUES(10546, 67549, 'sixty-seven thousand five hundred forty-nine'); INSERT INTO t2 VALUES(10547, 730, 'seven hundred thirty'); INSERT INTO t2 VALUES(10548, 59043, 'fifty-nine thousand forty-three'); INSERT INTO t2 VALUES(10549, 73793, 'seventy-three thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(10550, 98827, 'ninety-eight thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(10551, 71793, 'seventy-one thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(10552, 29182, 'twenty-nine thousand one hundred eighty-two'); INSERT INTO t2 VALUES(10553, 176, 'one hundred seventy-six'); INSERT INTO t2 VALUES(10554, 21840, 'twenty-one thousand eight hundred forty'); INSERT INTO t2 VALUES(10555, 28531, 'twenty-eight thousand five hundred thirty-one'); INSERT INTO t2 VALUES(10556, 22179, 'twenty-two thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(10557, 16960, 'sixteen thousand nine hundred sixty'); INSERT INTO t2 VALUES(10558, 64718, 'sixty-four thousand seven hundred eighteen'); INSERT INTO t2 VALUES(10559, 84285, 'eighty-four thousand two hundred eighty-five'); INSERT INTO t2 VALUES(10560, 73736, 'seventy-three thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(10561, 3162, 'three thousand one hundred sixty-two'); INSERT INTO t2 VALUES(10562, 19906, 'nineteen thousand nine hundred six'); INSERT INTO t2 VALUES(10563, 82494, 'eighty-two thousand four hundred ninety-four'); INSERT INTO t2 VALUES(10564, 13709, 'thirteen thousand seven hundred nine'); INSERT INTO t2 VALUES(10565, 85142, 'eighty-five thousand one hundred forty-two'); INSERT INTO t2 VALUES(10566, 17599, 'seventeen thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(10567, 58182, 'fifty-eight thousand one hundred eighty-two'); INSERT INTO t2 VALUES(10568, 97223, 'ninety-seven thousand two hundred twenty-three'); INSERT INTO t2 VALUES(10569, 43151, 'forty-three thousand one hundred fifty-one'); INSERT INTO t2 VALUES(10570, 92278, 'ninety-two thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(10571, 15314, 'fifteen thousand three hundred fourteen'); INSERT INTO t2 VALUES(10572, 8992, 'eight thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(10573, 49577, 'forty-nine thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(10574, 84386, 'eighty-four thousand three hundred eighty-six'); INSERT INTO t2 VALUES(10575, 28630, 'twenty-eight thousand six hundred thirty'); INSERT INTO t2 VALUES(10576, 99953, 'ninety-nine thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(10577, 80631, 'eighty thousand six hundred thirty-one'); INSERT INTO t2 VALUES(10578, 38218, 'thirty-eight thousand two hundred eighteen'); INSERT INTO t2 VALUES(10579, 39377, 'thirty-nine thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(10580, 40538, 'forty thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(10581, 20431, 'twenty thousand four hundred thirty-one'); INSERT INTO t2 VALUES(10582, 69201, 'sixty-nine thousand two hundred one'); INSERT INTO t2 VALUES(10583, 78909, 'seventy-eight thousand nine hundred nine'); INSERT INTO t2 VALUES(10584, 28408, 'twenty-eight thousand four hundred eight'); INSERT INTO t2 VALUES(10585, 59650, 'fifty-nine thousand six hundred fifty'); INSERT INTO t2 VALUES(10586, 79370, 'seventy-nine thousand three hundred seventy'); INSERT INTO t2 VALUES(10587, 89798, 'eighty-nine thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(10588, 53262, 'fifty-three thousand two hundred sixty-two'); INSERT INTO t2 VALUES(10589, 27597, 'twenty-seven thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(10590, 66559, 'sixty-six thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(10591, 67211, 'sixty-seven thousand two hundred eleven'); INSERT INTO t2 VALUES(10592, 7642, 'seven thousand six hundred forty-two'); INSERT INTO t2 VALUES(10593, 47231, 'forty-seven thousand two hundred thirty-one'); INSERT INTO t2 VALUES(10594, 18254, 'eighteen thousand two hundred fifty-four'); INSERT INTO t2 VALUES(10595, 41055, 'forty-one thousand fifty-five'); INSERT INTO t2 VALUES(10596, 28738, 'twenty-eight thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(10597, 44634, 'forty-four thousand six hundred thirty-four'); INSERT INTO t2 VALUES(10598, 31702, 'thirty-one thousand seven hundred two'); INSERT INTO t2 VALUES(10599, 97882, 'ninety-seven thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(10600, 71255, 'seventy-one thousand two hundred fifty-five'); INSERT INTO t2 VALUES(10601, 69403, 'sixty-nine thousand four hundred three'); INSERT INTO t2 VALUES(10602, 72524, 'seventy-two thousand five hundred twenty-four'); INSERT INTO t2 VALUES(10603, 11006, 'eleven thousand six'); INSERT INTO t2 VALUES(10604, 77631, 'seventy-seven thousand six hundred thirty-one'); INSERT INTO t2 VALUES(10605, 56710, 'fifty-six thousand seven hundred ten'); INSERT INTO t2 VALUES(10606, 56683, 'fifty-six thousand six hundred eighty-three'); INSERT INTO t2 VALUES(10607, 7541, 'seven thousand five hundred forty-one'); INSERT INTO t2 VALUES(10608, 25996, 'twenty-five thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(10609, 45750, 'forty-five thousand seven hundred fifty'); INSERT INTO t2 VALUES(10610, 77245, 'seventy-seven thousand two hundred forty-five'); INSERT INTO t2 VALUES(10611, 15069, 'fifteen thousand sixty-nine'); INSERT INTO t2 VALUES(10612, 40452, 'forty thousand four hundred fifty-two'); INSERT INTO t2 VALUES(10613, 11630, 'eleven thousand six hundred thirty'); INSERT INTO t2 VALUES(10614, 68728, 'sixty-eight thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(10615, 11092, 'eleven thousand ninety-two'); INSERT INTO t2 VALUES(10616, 67431, 'sixty-seven thousand four hundred thirty-one'); INSERT INTO t2 VALUES(10617, 58899, 'fifty-eight thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(10618, 92849, 'ninety-two thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(10619, 68706, 'sixty-eight thousand seven hundred six'); INSERT INTO t2 VALUES(10620, 21084, 'twenty-one thousand eighty-four'); INSERT INTO t2 VALUES(10621, 48157, 'forty-eight thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(10622, 69309, 'sixty-nine thousand three hundred nine'); INSERT INTO t2 VALUES(10623, 6823, 'six thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(10624, 47851, 'forty-seven thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(10625, 61922, 'sixty-one thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(10626, 39528, 'thirty-nine thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(10627, 83483, 'eighty-three thousand four hundred eighty-three'); INSERT INTO t2 VALUES(10628, 18146, 'eighteen thousand one hundred forty-six'); INSERT INTO t2 VALUES(10629, 28857, 'twenty-eight thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(10630, 60797, 'sixty thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(10631, 34235, 'thirty-four thousand two hundred thirty-five'); INSERT INTO t2 VALUES(10632, 7846, 'seven thousand eight hundred forty-six'); INSERT INTO t2 VALUES(10633, 82029, 'eighty-two thousand twenty-nine'); INSERT INTO t2 VALUES(10634, 34976, 'thirty-four thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(10635, 64398, 'sixty-four thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(10636, 89786, 'eighty-nine thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(10637, 55503, 'fifty-five thousand five hundred three'); INSERT INTO t2 VALUES(10638, 9319, 'nine thousand three hundred nineteen'); INSERT INTO t2 VALUES(10639, 94828, 'ninety-four thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(10640, 37753, 'thirty-seven thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(10641, 38692, 'thirty-eight thousand six hundred ninety-two'); INSERT INTO t2 VALUES(10642, 64692, 'sixty-four thousand six hundred ninety-two'); INSERT INTO t2 VALUES(10643, 74697, 'seventy-four thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(10644, 17303, 'seventeen thousand three hundred three'); INSERT INTO t2 VALUES(10645, 63072, 'sixty-three thousand seventy-two'); INSERT INTO t2 VALUES(10646, 11344, 'eleven thousand three hundred forty-four'); INSERT INTO t2 VALUES(10647, 74468, 'seventy-four thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(10648, 89290, 'eighty-nine thousand two hundred ninety'); INSERT INTO t2 VALUES(10649, 4172, 'four thousand one hundred seventy-two'); INSERT INTO t2 VALUES(10650, 60904, 'sixty thousand nine hundred four'); INSERT INTO t2 VALUES(10651, 14303, 'fourteen thousand three hundred three'); INSERT INTO t2 VALUES(10652, 77367, 'seventy-seven thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(10653, 27700, 'twenty-seven thousand seven hundred'); INSERT INTO t2 VALUES(10654, 29665, 'twenty-nine thousand six hundred sixty-five'); INSERT INTO t2 VALUES(10655, 1738, 'one thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(10656, 32214, 'thirty-two thousand two hundred fourteen'); INSERT INTO t2 VALUES(10657, 72124, 'seventy-two thousand one hundred twenty-four'); INSERT INTO t2 VALUES(10658, 88569, 'eighty-eight thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(10659, 75708, 'seventy-five thousand seven hundred eight'); INSERT INTO t2 VALUES(10660, 38860, 'thirty-eight thousand eight hundred sixty'); INSERT INTO t2 VALUES(10661, 59928, 'fifty-nine thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(10662, 37915, 'thirty-seven thousand nine hundred fifteen'); INSERT INTO t2 VALUES(10663, 83641, 'eighty-three thousand six hundred forty-one'); INSERT INTO t2 VALUES(10664, 92471, 'ninety-two thousand four hundred seventy-one'); INSERT INTO t2 VALUES(10665, 49483, 'forty-nine thousand four hundred eighty-three'); INSERT INTO t2 VALUES(10666, 43960, 'forty-three thousand nine hundred sixty'); INSERT INTO t2 VALUES(10667, 4448, 'four thousand four hundred forty-eight'); INSERT INTO t2 VALUES(10668, 69225, 'sixty-nine thousand two hundred twenty-five'); INSERT INTO t2 VALUES(10669, 59130, 'fifty-nine thousand one hundred thirty'); INSERT INTO t2 VALUES(10670, 72997, 'seventy-two thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(10671, 83128, 'eighty-three thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(10672, 69655, 'sixty-nine thousand six hundred fifty-five'); INSERT INTO t2 VALUES(10673, 88838, 'eighty-eight thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(10674, 55192, 'fifty-five thousand one hundred ninety-two'); INSERT INTO t2 VALUES(10675, 38515, 'thirty-eight thousand five hundred fifteen'); INSERT INTO t2 VALUES(10676, 56034, 'fifty-six thousand thirty-four'); INSERT INTO t2 VALUES(10677, 65644, 'sixty-five thousand six hundred forty-four'); INSERT INTO t2 VALUES(10678, 89931, 'eighty-nine thousand nine hundred thirty-one'); INSERT INTO t2 VALUES(10679, 37174, 'thirty-seven thousand one hundred seventy-four'); INSERT INTO t2 VALUES(10680, 71928, 'seventy-one thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(10681, 26192, 'twenty-six thousand one hundred ninety-two'); INSERT INTO t2 VALUES(10682, 89994, 'eighty-nine thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(10683, 24821, 'twenty-four thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(10684, 52649, 'fifty-two thousand six hundred forty-nine'); INSERT INTO t2 VALUES(10685, 25694, 'twenty-five thousand six hundred ninety-four'); INSERT INTO t2 VALUES(10686, 72433, 'seventy-two thousand four hundred thirty-three'); INSERT INTO t2 VALUES(10687, 87725, 'eighty-seven thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(10688, 13395, 'thirteen thousand three hundred ninety-five'); INSERT INTO t2 VALUES(10689, 25126, 'twenty-five thousand one hundred twenty-six'); INSERT INTO t2 VALUES(10690, 88564, 'eighty-eight thousand five hundred sixty-four'); INSERT INTO t2 VALUES(10691, 47447, 'forty-seven thousand four hundred forty-seven'); INSERT INTO t2 VALUES(10692, 50203, 'fifty thousand two hundred three'); INSERT INTO t2 VALUES(10693, 93609, 'ninety-three thousand six hundred nine'); INSERT INTO t2 VALUES(10694, 28282, 'twenty-eight thousand two hundred eighty-two'); INSERT INTO t2 VALUES(10695, 340, 'three hundred forty'); INSERT INTO t2 VALUES(10696, 56672, 'fifty-six thousand six hundred seventy-two'); INSERT INTO t2 VALUES(10697, 54043, 'fifty-four thousand forty-three'); INSERT INTO t2 VALUES(10698, 60470, 'sixty thousand four hundred seventy'); INSERT INTO t2 VALUES(10699, 36094, 'thirty-six thousand ninety-four'); INSERT INTO t2 VALUES(10700, 67389, 'sixty-seven thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(10701, 63320, 'sixty-three thousand three hundred twenty'); INSERT INTO t2 VALUES(10702, 65356, 'sixty-five thousand three hundred fifty-six'); INSERT INTO t2 VALUES(10703, 76204, 'seventy-six thousand two hundred four'); INSERT INTO t2 VALUES(10704, 58666, 'fifty-eight thousand six hundred sixty-six'); INSERT INTO t2 VALUES(10705, 36466, 'thirty-six thousand four hundred sixty-six'); INSERT INTO t2 VALUES(10706, 4679, 'four thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(10707, 27467, 'twenty-seven thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(10708, 28724, 'twenty-eight thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(10709, 27094, 'twenty-seven thousand ninety-four'); INSERT INTO t2 VALUES(10710, 59500, 'fifty-nine thousand five hundred'); INSERT INTO t2 VALUES(10711, 26473, 'twenty-six thousand four hundred seventy-three'); INSERT INTO t2 VALUES(10712, 14153, 'fourteen thousand one hundred fifty-three'); INSERT INTO t2 VALUES(10713, 88585, 'eighty-eight thousand five hundred eighty-five'); INSERT INTO t2 VALUES(10714, 97716, 'ninety-seven thousand seven hundred sixteen'); INSERT INTO t2 VALUES(10715, 48671, 'forty-eight thousand six hundred seventy-one'); INSERT INTO t2 VALUES(10716, 79805, 'seventy-nine thousand eight hundred five'); INSERT INTO t2 VALUES(10717, 56084, 'fifty-six thousand eighty-four'); INSERT INTO t2 VALUES(10718, 11175, 'eleven thousand one hundred seventy-five'); INSERT INTO t2 VALUES(10719, 23375, 'twenty-three thousand three hundred seventy-five'); INSERT INTO t2 VALUES(10720, 58311, 'fifty-eight thousand three hundred eleven'); INSERT INTO t2 VALUES(10721, 51404, 'fifty-one thousand four hundred four'); INSERT INTO t2 VALUES(10722, 67711, 'sixty-seven thousand seven hundred eleven'); INSERT INTO t2 VALUES(10723, 12209, 'twelve thousand two hundred nine'); INSERT INTO t2 VALUES(10724, 39613, 'thirty-nine thousand six hundred thirteen'); INSERT INTO t2 VALUES(10725, 87999, 'eighty-seven thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(10726, 3514, 'three thousand five hundred fourteen'); INSERT INTO t2 VALUES(10727, 18092, 'eighteen thousand ninety-two'); INSERT INTO t2 VALUES(10728, 43583, 'forty-three thousand five hundred eighty-three'); INSERT INTO t2 VALUES(10729, 23103, 'twenty-three thousand one hundred three'); INSERT INTO t2 VALUES(10730, 81384, 'eighty-one thousand three hundred eighty-four'); INSERT INTO t2 VALUES(10731, 26286, 'twenty-six thousand two hundred eighty-six'); INSERT INTO t2 VALUES(10732, 94855, 'ninety-four thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(10733, 75849, 'seventy-five thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(10734, 18198, 'eighteen thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(10735, 92810, 'ninety-two thousand eight hundred ten'); INSERT INTO t2 VALUES(10736, 7140, 'seven thousand one hundred forty'); INSERT INTO t2 VALUES(10737, 75210, 'seventy-five thousand two hundred ten'); INSERT INTO t2 VALUES(10738, 10530, 'ten thousand five hundred thirty'); INSERT INTO t2 VALUES(10739, 24349, 'twenty-four thousand three hundred forty-nine'); INSERT INTO t2 VALUES(10740, 18551, 'eighteen thousand five hundred fifty-one'); INSERT INTO t2 VALUES(10741, 35815, 'thirty-five thousand eight hundred fifteen'); INSERT INTO t2 VALUES(10742, 55969, 'fifty-five thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(10743, 34475, 'thirty-four thousand four hundred seventy-five'); INSERT INTO t2 VALUES(10744, 52758, 'fifty-two thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(10745, 14418, 'fourteen thousand four hundred eighteen'); INSERT INTO t2 VALUES(10746, 84544, 'eighty-four thousand five hundred forty-four'); INSERT INTO t2 VALUES(10747, 92836, 'ninety-two thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(10748, 19636, 'nineteen thousand six hundred thirty-six'); INSERT INTO t2 VALUES(10749, 63412, 'sixty-three thousand four hundred twelve'); INSERT INTO t2 VALUES(10750, 28284, 'twenty-eight thousand two hundred eighty-four'); INSERT INTO t2 VALUES(10751, 79234, 'seventy-nine thousand two hundred thirty-four'); INSERT INTO t2 VALUES(10752, 8164, 'eight thousand one hundred sixty-four'); INSERT INTO t2 VALUES(10753, 74914, 'seventy-four thousand nine hundred fourteen'); INSERT INTO t2 VALUES(10754, 31733, 'thirty-one thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(10755, 69954, 'sixty-nine thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(10756, 44118, 'forty-four thousand one hundred eighteen'); INSERT INTO t2 VALUES(10757, 73454, 'seventy-three thousand four hundred fifty-four'); INSERT INTO t2 VALUES(10758, 38685, 'thirty-eight thousand six hundred eighty-five'); INSERT INTO t2 VALUES(10759, 61503, 'sixty-one thousand five hundred three'); INSERT INTO t2 VALUES(10760, 6231, 'six thousand two hundred thirty-one'); INSERT INTO t2 VALUES(10761, 60366, 'sixty thousand three hundred sixty-six'); INSERT INTO t2 VALUES(10762, 50989, 'fifty thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(10763, 21423, 'twenty-one thousand four hundred twenty-three'); INSERT INTO t2 VALUES(10764, 78163, 'seventy-eight thousand one hundred sixty-three'); INSERT INTO t2 VALUES(10765, 4930, 'four thousand nine hundred thirty'); INSERT INTO t2 VALUES(10766, 68137, 'sixty-eight thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(10767, 70190, 'seventy thousand one hundred ninety'); INSERT INTO t2 VALUES(10768, 24999, 'twenty-four thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(10769, 26462, 'twenty-six thousand four hundred sixty-two'); INSERT INTO t2 VALUES(10770, 22526, 'twenty-two thousand five hundred twenty-six'); INSERT INTO t2 VALUES(10771, 98808, 'ninety-eight thousand eight hundred eight'); INSERT INTO t2 VALUES(10772, 87470, 'eighty-seven thousand four hundred seventy'); INSERT INTO t2 VALUES(10773, 6252, 'six thousand two hundred fifty-two'); INSERT INTO t2 VALUES(10774, 37938, 'thirty-seven thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(10775, 88639, 'eighty-eight thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(10776, 57730, 'fifty-seven thousand seven hundred thirty'); INSERT INTO t2 VALUES(10777, 28511, 'twenty-eight thousand five hundred eleven'); INSERT INTO t2 VALUES(10778, 66067, 'sixty-six thousand sixty-seven'); INSERT INTO t2 VALUES(10779, 18084, 'eighteen thousand eighty-four'); INSERT INTO t2 VALUES(10780, 67669, 'sixty-seven thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(10781, 6972, 'six thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(10782, 34181, 'thirty-four thousand one hundred eighty-one'); INSERT INTO t2 VALUES(10783, 89491, 'eighty-nine thousand four hundred ninety-one'); INSERT INTO t2 VALUES(10784, 99624, 'ninety-nine thousand six hundred twenty-four'); INSERT INTO t2 VALUES(10785, 72356, 'seventy-two thousand three hundred fifty-six'); INSERT INTO t2 VALUES(10786, 79924, 'seventy-nine thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(10787, 23567, 'twenty-three thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(10788, 83639, 'eighty-three thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(10789, 89510, 'eighty-nine thousand five hundred ten'); INSERT INTO t2 VALUES(10790, 13745, 'thirteen thousand seven hundred forty-five'); INSERT INTO t2 VALUES(10791, 31065, 'thirty-one thousand sixty-five'); INSERT INTO t2 VALUES(10792, 30323, 'thirty thousand three hundred twenty-three'); INSERT INTO t2 VALUES(10793, 5997, 'five thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(10794, 55682, 'fifty-five thousand six hundred eighty-two'); INSERT INTO t2 VALUES(10795, 14852, 'fourteen thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(10796, 31681, 'thirty-one thousand six hundred eighty-one'); INSERT INTO t2 VALUES(10797, 62939, 'sixty-two thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(10798, 12121, 'twelve thousand one hundred twenty-one'); INSERT INTO t2 VALUES(10799, 94852, 'ninety-four thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(10800, 99297, 'ninety-nine thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(10801, 34861, 'thirty-four thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(10802, 79531, 'seventy-nine thousand five hundred thirty-one'); INSERT INTO t2 VALUES(10803, 89549, 'eighty-nine thousand five hundred forty-nine'); INSERT INTO t2 VALUES(10804, 43943, 'forty-three thousand nine hundred forty-three'); INSERT INTO t2 VALUES(10805, 42746, 'forty-two thousand seven hundred forty-six'); INSERT INTO t2 VALUES(10806, 41285, 'forty-one thousand two hundred eighty-five'); INSERT INTO t2 VALUES(10807, 92272, 'ninety-two thousand two hundred seventy-two'); INSERT INTO t2 VALUES(10808, 1800, 'one thousand eight hundred'); INSERT INTO t2 VALUES(10809, 99991, 'ninety-nine thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(10810, 21516, 'twenty-one thousand five hundred sixteen'); INSERT INTO t2 VALUES(10811, 36026, 'thirty-six thousand twenty-six'); INSERT INTO t2 VALUES(10812, 21447, 'twenty-one thousand four hundred forty-seven'); INSERT INTO t2 VALUES(10813, 50457, 'fifty thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(10814, 3694, 'three thousand six hundred ninety-four'); INSERT INTO t2 VALUES(10815, 82787, 'eighty-two thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(10816, 54403, 'fifty-four thousand four hundred three'); INSERT INTO t2 VALUES(10817, 84102, 'eighty-four thousand one hundred two'); INSERT INTO t2 VALUES(10818, 38996, 'thirty-eight thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(10819, 15596, 'fifteen thousand five hundred ninety-six'); INSERT INTO t2 VALUES(10820, 43086, 'forty-three thousand eighty-six'); INSERT INTO t2 VALUES(10821, 50109, 'fifty thousand one hundred nine'); INSERT INTO t2 VALUES(10822, 79831, 'seventy-nine thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(10823, 96309, 'ninety-six thousand three hundred nine'); INSERT INTO t2 VALUES(10824, 86256, 'eighty-six thousand two hundred fifty-six'); INSERT INTO t2 VALUES(10825, 3893, 'three thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(10826, 79264, 'seventy-nine thousand two hundred sixty-four'); INSERT INTO t2 VALUES(10827, 76783, 'seventy-six thousand seven hundred eighty-three'); INSERT INTO t2 VALUES(10828, 19945, 'nineteen thousand nine hundred forty-five'); INSERT INTO t2 VALUES(10829, 77444, 'seventy-seven thousand four hundred forty-four'); INSERT INTO t2 VALUES(10830, 77707, 'seventy-seven thousand seven hundred seven'); INSERT INTO t2 VALUES(10831, 22474, 'twenty-two thousand four hundred seventy-four'); INSERT INTO t2 VALUES(10832, 69607, 'sixty-nine thousand six hundred seven'); INSERT INTO t2 VALUES(10833, 13592, 'thirteen thousand five hundred ninety-two'); INSERT INTO t2 VALUES(10834, 63966, 'sixty-three thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(10835, 99606, 'ninety-nine thousand six hundred six'); INSERT INTO t2 VALUES(10836, 76777, 'seventy-six thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(10837, 60483, 'sixty thousand four hundred eighty-three'); INSERT INTO t2 VALUES(10838, 83488, 'eighty-three thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(10839, 16832, 'sixteen thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(10840, 95683, 'ninety-five thousand six hundred eighty-three'); INSERT INTO t2 VALUES(10841, 92213, 'ninety-two thousand two hundred thirteen'); INSERT INTO t2 VALUES(10842, 52507, 'fifty-two thousand five hundred seven'); INSERT INTO t2 VALUES(10843, 72085, 'seventy-two thousand eighty-five'); INSERT INTO t2 VALUES(10844, 86689, 'eighty-six thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(10845, 48476, 'forty-eight thousand four hundred seventy-six'); INSERT INTO t2 VALUES(10846, 53168, 'fifty-three thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(10847, 27474, 'twenty-seven thousand four hundred seventy-four'); INSERT INTO t2 VALUES(10848, 42524, 'forty-two thousand five hundred twenty-four'); INSERT INTO t2 VALUES(10849, 23269, 'twenty-three thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(10850, 79452, 'seventy-nine thousand four hundred fifty-two'); INSERT INTO t2 VALUES(10851, 69910, 'sixty-nine thousand nine hundred ten'); INSERT INTO t2 VALUES(10852, 16739, 'sixteen thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(10853, 48765, 'forty-eight thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(10854, 66684, 'sixty-six thousand six hundred eighty-four'); INSERT INTO t2 VALUES(10855, 83353, 'eighty-three thousand three hundred fifty-three'); INSERT INTO t2 VALUES(10856, 18824, 'eighteen thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(10857, 64499, 'sixty-four thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(10858, 1897, 'one thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(10859, 24645, 'twenty-four thousand six hundred forty-five'); INSERT INTO t2 VALUES(10860, 84415, 'eighty-four thousand four hundred fifteen'); INSERT INTO t2 VALUES(10861, 80293, 'eighty thousand two hundred ninety-three'); INSERT INTO t2 VALUES(10862, 83655, 'eighty-three thousand six hundred fifty-five'); INSERT INTO t2 VALUES(10863, 77079, 'seventy-seven thousand seventy-nine'); INSERT INTO t2 VALUES(10864, 87494, 'eighty-seven thousand four hundred ninety-four'); INSERT INTO t2 VALUES(10865, 20426, 'twenty thousand four hundred twenty-six'); INSERT INTO t2 VALUES(10866, 25450, 'twenty-five thousand four hundred fifty'); INSERT INTO t2 VALUES(10867, 46757, 'forty-six thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(10868, 6326, 'six thousand three hundred twenty-six'); INSERT INTO t2 VALUES(10869, 76854, 'seventy-six thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(10870, 42256, 'forty-two thousand two hundred fifty-six'); INSERT INTO t2 VALUES(10871, 28333, 'twenty-eight thousand three hundred thirty-three'); INSERT INTO t2 VALUES(10872, 76827, 'seventy-six thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(10873, 56774, 'fifty-six thousand seven hundred seventy-four'); INSERT INTO t2 VALUES(10874, 20271, 'twenty thousand two hundred seventy-one'); INSERT INTO t2 VALUES(10875, 33737, 'thirty-three thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(10876, 49849, 'forty-nine thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(10877, 71387, 'seventy-one thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(10878, 84244, 'eighty-four thousand two hundred forty-four'); INSERT INTO t2 VALUES(10879, 23404, 'twenty-three thousand four hundred four'); INSERT INTO t2 VALUES(10880, 57105, 'fifty-seven thousand one hundred five'); INSERT INTO t2 VALUES(10881, 10308, 'ten thousand three hundred eight'); INSERT INTO t2 VALUES(10882, 53225, 'fifty-three thousand two hundred twenty-five'); INSERT INTO t2 VALUES(10883, 22316, 'twenty-two thousand three hundred sixteen'); INSERT INTO t2 VALUES(10884, 55519, 'fifty-five thousand five hundred nineteen'); INSERT INTO t2 VALUES(10885, 62031, 'sixty-two thousand thirty-one'); INSERT INTO t2 VALUES(10886, 98416, 'ninety-eight thousand four hundred sixteen'); INSERT INTO t2 VALUES(10887, 78805, 'seventy-eight thousand eight hundred five'); INSERT INTO t2 VALUES(10888, 91010, 'ninety-one thousand ten'); INSERT INTO t2 VALUES(10889, 91909, 'ninety-one thousand nine hundred nine'); INSERT INTO t2 VALUES(10890, 24768, 'twenty-four thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(10891, 7446, 'seven thousand four hundred forty-six'); INSERT INTO t2 VALUES(10892, 68281, 'sixty-eight thousand two hundred eighty-one'); INSERT INTO t2 VALUES(10893, 56866, 'fifty-six thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(10894, 87152, 'eighty-seven thousand one hundred fifty-two'); INSERT INTO t2 VALUES(10895, 27620, 'twenty-seven thousand six hundred twenty'); INSERT INTO t2 VALUES(10896, 97035, 'ninety-seven thousand thirty-five'); INSERT INTO t2 VALUES(10897, 60815, 'sixty thousand eight hundred fifteen'); INSERT INTO t2 VALUES(10898, 6009, 'six thousand nine'); INSERT INTO t2 VALUES(10899, 14173, 'fourteen thousand one hundred seventy-three'); INSERT INTO t2 VALUES(10900, 29077, 'twenty-nine thousand seventy-seven'); INSERT INTO t2 VALUES(10901, 12808, 'twelve thousand eight hundred eight'); INSERT INTO t2 VALUES(10902, 39829, 'thirty-nine thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(10903, 97966, 'ninety-seven thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(10904, 687, 'six hundred eighty-seven'); INSERT INTO t2 VALUES(10905, 16722, 'sixteen thousand seven hundred twenty-two'); INSERT INTO t2 VALUES(10906, 52339, 'fifty-two thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(10907, 11129, 'eleven thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(10908, 12667, 'twelve thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(10909, 76205, 'seventy-six thousand two hundred five'); INSERT INTO t2 VALUES(10910, 95793, 'ninety-five thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(10911, 24445, 'twenty-four thousand four hundred forty-five'); INSERT INTO t2 VALUES(10912, 5669, 'five thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(10913, 50407, 'fifty thousand four hundred seven'); INSERT INTO t2 VALUES(10914, 22850, 'twenty-two thousand eight hundred fifty'); INSERT INTO t2 VALUES(10915, 20959, 'twenty thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(10916, 36678, 'thirty-six thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(10917, 31718, 'thirty-one thousand seven hundred eighteen'); INSERT INTO t2 VALUES(10918, 77318, 'seventy-seven thousand three hundred eighteen'); INSERT INTO t2 VALUES(10919, 30829, 'thirty thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(10920, 21796, 'twenty-one thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(10921, 43332, 'forty-three thousand three hundred thirty-two'); INSERT INTO t2 VALUES(10922, 85776, 'eighty-five thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(10923, 88671, 'eighty-eight thousand six hundred seventy-one'); INSERT INTO t2 VALUES(10924, 13810, 'thirteen thousand eight hundred ten'); INSERT INTO t2 VALUES(10925, 45766, 'forty-five thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(10926, 13213, 'thirteen thousand two hundred thirteen'); INSERT INTO t2 VALUES(10927, 46815, 'forty-six thousand eight hundred fifteen'); INSERT INTO t2 VALUES(10928, 17776, 'seventeen thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(10929, 79604, 'seventy-nine thousand six hundred four'); INSERT INTO t2 VALUES(10930, 56394, 'fifty-six thousand three hundred ninety-four'); INSERT INTO t2 VALUES(10931, 97400, 'ninety-seven thousand four hundred'); INSERT INTO t2 VALUES(10932, 88192, 'eighty-eight thousand one hundred ninety-two'); INSERT INTO t2 VALUES(10933, 73944, 'seventy-three thousand nine hundred forty-four'); INSERT INTO t2 VALUES(10934, 19323, 'nineteen thousand three hundred twenty-three'); INSERT INTO t2 VALUES(10935, 48364, 'forty-eight thousand three hundred sixty-four'); INSERT INTO t2 VALUES(10936, 68051, 'sixty-eight thousand fifty-one'); INSERT INTO t2 VALUES(10937, 69280, 'sixty-nine thousand two hundred eighty'); INSERT INTO t2 VALUES(10938, 25227, 'twenty-five thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(10939, 20913, 'twenty thousand nine hundred thirteen'); INSERT INTO t2 VALUES(10940, 95092, 'ninety-five thousand ninety-two'); INSERT INTO t2 VALUES(10941, 97423, 'ninety-seven thousand four hundred twenty-three'); INSERT INTO t2 VALUES(10942, 86661, 'eighty-six thousand six hundred sixty-one'); INSERT INTO t2 VALUES(10943, 81235, 'eighty-one thousand two hundred thirty-five'); INSERT INTO t2 VALUES(10944, 74133, 'seventy-four thousand one hundred thirty-three'); INSERT INTO t2 VALUES(10945, 66947, 'sixty-six thousand nine hundred forty-seven'); INSERT INTO t2 VALUES(10946, 59842, 'fifty-nine thousand eight hundred forty-two'); INSERT INTO t2 VALUES(10947, 28041, 'twenty-eight thousand forty-one'); INSERT INTO t2 VALUES(10948, 71678, 'seventy-one thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(10949, 17366, 'seventeen thousand three hundred sixty-six'); INSERT INTO t2 VALUES(10950, 69829, 'sixty-nine thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(10951, 79703, 'seventy-nine thousand seven hundred three'); INSERT INTO t2 VALUES(10952, 88285, 'eighty-eight thousand two hundred eighty-five'); INSERT INTO t2 VALUES(10953, 12128, 'twelve thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(10954, 61107, 'sixty-one thousand one hundred seven'); INSERT INTO t2 VALUES(10955, 46535, 'forty-six thousand five hundred thirty-five'); INSERT INTO t2 VALUES(10956, 50874, 'fifty thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(10957, 31829, 'thirty-one thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(10958, 25709, 'twenty-five thousand seven hundred nine'); INSERT INTO t2 VALUES(10959, 98403, 'ninety-eight thousand four hundred three'); INSERT INTO t2 VALUES(10960, 18546, 'eighteen thousand five hundred forty-six'); INSERT INTO t2 VALUES(10961, 96806, 'ninety-six thousand eight hundred six'); INSERT INTO t2 VALUES(10962, 51320, 'fifty-one thousand three hundred twenty'); INSERT INTO t2 VALUES(10963, 68888, 'sixty-eight thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(10964, 29801, 'twenty-nine thousand eight hundred one'); INSERT INTO t2 VALUES(10965, 82083, 'eighty-two thousand eighty-three'); INSERT INTO t2 VALUES(10966, 80826, 'eighty thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(10967, 25599, 'twenty-five thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(10968, 99441, 'ninety-nine thousand four hundred forty-one'); INSERT INTO t2 VALUES(10969, 67990, 'sixty-seven thousand nine hundred ninety'); INSERT INTO t2 VALUES(10970, 86872, 'eighty-six thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(10971, 38112, 'thirty-eight thousand one hundred twelve'); INSERT INTO t2 VALUES(10972, 83330, 'eighty-three thousand three hundred thirty'); INSERT INTO t2 VALUES(10973, 23907, 'twenty-three thousand nine hundred seven'); INSERT INTO t2 VALUES(10974, 92240, 'ninety-two thousand two hundred forty'); INSERT INTO t2 VALUES(10975, 87860, 'eighty-seven thousand eight hundred sixty'); INSERT INTO t2 VALUES(10976, 80781, 'eighty thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(10977, 33514, 'thirty-three thousand five hundred fourteen'); INSERT INTO t2 VALUES(10978, 89202, 'eighty-nine thousand two hundred two'); INSERT INTO t2 VALUES(10979, 51134, 'fifty-one thousand one hundred thirty-four'); INSERT INTO t2 VALUES(10980, 13255, 'thirteen thousand two hundred fifty-five'); INSERT INTO t2 VALUES(10981, 48732, 'forty-eight thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(10982, 71919, 'seventy-one thousand nine hundred nineteen'); INSERT INTO t2 VALUES(10983, 83827, 'eighty-three thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(10984, 17450, 'seventeen thousand four hundred fifty'); INSERT INTO t2 VALUES(10985, 16502, 'sixteen thousand five hundred two'); INSERT INTO t2 VALUES(10986, 71914, 'seventy-one thousand nine hundred fourteen'); INSERT INTO t2 VALUES(10987, 77896, 'seventy-seven thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(10988, 52849, 'fifty-two thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(10989, 76570, 'seventy-six thousand five hundred seventy'); INSERT INTO t2 VALUES(10990, 27514, 'twenty-seven thousand five hundred fourteen'); INSERT INTO t2 VALUES(10991, 50267, 'fifty thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(10992, 70041, 'seventy thousand forty-one'); INSERT INTO t2 VALUES(10993, 70264, 'seventy thousand two hundred sixty-four'); INSERT INTO t2 VALUES(10994, 17474, 'seventeen thousand four hundred seventy-four'); INSERT INTO t2 VALUES(10995, 71737, 'seventy-one thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(10996, 51956, 'fifty-one thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(10997, 30555, 'thirty thousand five hundred fifty-five'); INSERT INTO t2 VALUES(10998, 51404, 'fifty-one thousand four hundred four'); INSERT INTO t2 VALUES(10999, 65603, 'sixty-five thousand six hundred three'); INSERT INTO t2 VALUES(11000, 89946, 'eighty-nine thousand nine hundred forty-six'); INSERT INTO t2 VALUES(11001, 95690, 'ninety-five thousand six hundred ninety'); INSERT INTO t2 VALUES(11002, 44375, 'forty-four thousand three hundred seventy-five'); INSERT INTO t2 VALUES(11003, 80579, 'eighty thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(11004, 55264, 'fifty-five thousand two hundred sixty-four'); INSERT INTO t2 VALUES(11005, 5664, 'five thousand six hundred sixty-four'); INSERT INTO t2 VALUES(11006, 71180, 'seventy-one thousand one hundred eighty'); INSERT INTO t2 VALUES(11007, 29479, 'twenty-nine thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(11008, 81332, 'eighty-one thousand three hundred thirty-two'); INSERT INTO t2 VALUES(11009, 74558, 'seventy-four thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(11010, 30712, 'thirty thousand seven hundred twelve'); INSERT INTO t2 VALUES(11011, 25073, 'twenty-five thousand seventy-three'); INSERT INTO t2 VALUES(11012, 99322, 'ninety-nine thousand three hundred twenty-two'); INSERT INTO t2 VALUES(11013, 10091, 'ten thousand ninety-one'); INSERT INTO t2 VALUES(11014, 54073, 'fifty-four thousand seventy-three'); INSERT INTO t2 VALUES(11015, 35525, 'thirty-five thousand five hundred twenty-five'); INSERT INTO t2 VALUES(11016, 38115, 'thirty-eight thousand one hundred fifteen'); INSERT INTO t2 VALUES(11017, 53515, 'fifty-three thousand five hundred fifteen'); INSERT INTO t2 VALUES(11018, 54383, 'fifty-four thousand three hundred eighty-three'); INSERT INTO t2 VALUES(11019, 78708, 'seventy-eight thousand seven hundred eight'); INSERT INTO t2 VALUES(11020, 70507, 'seventy thousand five hundred seven'); INSERT INTO t2 VALUES(11021, 86465, 'eighty-six thousand four hundred sixty-five'); INSERT INTO t2 VALUES(11022, 53726, 'fifty-three thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(11023, 83728, 'eighty-three thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(11024, 98432, 'ninety-eight thousand four hundred thirty-two'); INSERT INTO t2 VALUES(11025, 72654, 'seventy-two thousand six hundred fifty-four'); INSERT INTO t2 VALUES(11026, 17398, 'seventeen thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(11027, 93682, 'ninety-three thousand six hundred eighty-two'); INSERT INTO t2 VALUES(11028, 17142, 'seventeen thousand one hundred forty-two'); INSERT INTO t2 VALUES(11029, 90899, 'ninety thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(11030, 88618, 'eighty-eight thousand six hundred eighteen'); INSERT INTO t2 VALUES(11031, 10818, 'ten thousand eight hundred eighteen'); INSERT INTO t2 VALUES(11032, 11278, 'eleven thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(11033, 49406, 'forty-nine thousand four hundred six'); INSERT INTO t2 VALUES(11034, 25370, 'twenty-five thousand three hundred seventy'); INSERT INTO t2 VALUES(11035, 60755, 'sixty thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(11036, 9455, 'nine thousand four hundred fifty-five'); INSERT INTO t2 VALUES(11037, 52054, 'fifty-two thousand fifty-four'); INSERT INTO t2 VALUES(11038, 29373, 'twenty-nine thousand three hundred seventy-three'); INSERT INTO t2 VALUES(11039, 81464, 'eighty-one thousand four hundred sixty-four'); INSERT INTO t2 VALUES(11040, 78036, 'seventy-eight thousand thirty-six'); INSERT INTO t2 VALUES(11041, 86589, 'eighty-six thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(11042, 92884, 'ninety-two thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(11043, 20886, 'twenty thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(11044, 45433, 'forty-five thousand four hundred thirty-three'); INSERT INTO t2 VALUES(11045, 46926, 'forty-six thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(11046, 97624, 'ninety-seven thousand six hundred twenty-four'); INSERT INTO t2 VALUES(11047, 35001, 'thirty-five thousand one'); INSERT INTO t2 VALUES(11048, 2896, 'two thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(11049, 2623, 'two thousand six hundred twenty-three'); INSERT INTO t2 VALUES(11050, 48313, 'forty-eight thousand three hundred thirteen'); INSERT INTO t2 VALUES(11051, 19472, 'nineteen thousand four hundred seventy-two'); INSERT INTO t2 VALUES(11052, 65149, 'sixty-five thousand one hundred forty-nine'); INSERT INTO t2 VALUES(11053, 63538, 'sixty-three thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(11054, 68727, 'sixty-eight thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(11055, 78802, 'seventy-eight thousand eight hundred two'); INSERT INTO t2 VALUES(11056, 64430, 'sixty-four thousand four hundred thirty'); INSERT INTO t2 VALUES(11057, 93158, 'ninety-three thousand one hundred fifty-eight'); INSERT INTO t2 VALUES(11058, 77277, 'seventy-seven thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(11059, 30571, 'thirty thousand five hundred seventy-one'); INSERT INTO t2 VALUES(11060, 6045, 'six thousand forty-five'); INSERT INTO t2 VALUES(11061, 94702, 'ninety-four thousand seven hundred two'); INSERT INTO t2 VALUES(11062, 49535, 'forty-nine thousand five hundred thirty-five'); INSERT INTO t2 VALUES(11063, 35387, 'thirty-five thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(11064, 57822, 'fifty-seven thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(11065, 57331, 'fifty-seven thousand three hundred thirty-one'); INSERT INTO t2 VALUES(11066, 26207, 'twenty-six thousand two hundred seven'); INSERT INTO t2 VALUES(11067, 98731, 'ninety-eight thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(11068, 19871, 'nineteen thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(11069, 80542, 'eighty thousand five hundred forty-two'); INSERT INTO t2 VALUES(11070, 93010, 'ninety-three thousand ten'); INSERT INTO t2 VALUES(11071, 65983, 'sixty-five thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(11072, 98626, 'ninety-eight thousand six hundred twenty-six'); INSERT INTO t2 VALUES(11073, 44205, 'forty-four thousand two hundred five'); INSERT INTO t2 VALUES(11074, 73955, 'seventy-three thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(11075, 68851, 'sixty-eight thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(11076, 83412, 'eighty-three thousand four hundred twelve'); INSERT INTO t2 VALUES(11077, 65024, 'sixty-five thousand twenty-four'); INSERT INTO t2 VALUES(11078, 56643, 'fifty-six thousand six hundred forty-three'); INSERT INTO t2 VALUES(11079, 8944, 'eight thousand nine hundred forty-four'); INSERT INTO t2 VALUES(11080, 81046, 'eighty-one thousand forty-six'); INSERT INTO t2 VALUES(11081, 31978, 'thirty-one thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(11082, 26444, 'twenty-six thousand four hundred forty-four'); INSERT INTO t2 VALUES(11083, 37187, 'thirty-seven thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(11084, 29012, 'twenty-nine thousand twelve'); INSERT INTO t2 VALUES(11085, 63489, 'sixty-three thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(11086, 25285, 'twenty-five thousand two hundred eighty-five'); INSERT INTO t2 VALUES(11087, 69593, 'sixty-nine thousand five hundred ninety-three'); INSERT INTO t2 VALUES(11088, 73612, 'seventy-three thousand six hundred twelve'); INSERT INTO t2 VALUES(11089, 80948, 'eighty thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(11090, 1773, 'one thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(11091, 21454, 'twenty-one thousand four hundred fifty-four'); INSERT INTO t2 VALUES(11092, 94047, 'ninety-four thousand forty-seven'); INSERT INTO t2 VALUES(11093, 82533, 'eighty-two thousand five hundred thirty-three'); INSERT INTO t2 VALUES(11094, 94783, 'ninety-four thousand seven hundred eighty-three'); INSERT INTO t2 VALUES(11095, 10226, 'ten thousand two hundred twenty-six'); INSERT INTO t2 VALUES(11096, 26287, 'twenty-six thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(11097, 13571, 'thirteen thousand five hundred seventy-one'); INSERT INTO t2 VALUES(11098, 84086, 'eighty-four thousand eighty-six'); INSERT INTO t2 VALUES(11099, 29013, 'twenty-nine thousand thirteen'); INSERT INTO t2 VALUES(11100, 37013, 'thirty-seven thousand thirteen'); INSERT INTO t2 VALUES(11101, 2412, 'two thousand four hundred twelve'); INSERT INTO t2 VALUES(11102, 70505, 'seventy thousand five hundred five'); INSERT INTO t2 VALUES(11103, 92981, 'ninety-two thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(11104, 655, 'six hundred fifty-five'); INSERT INTO t2 VALUES(11105, 24216, 'twenty-four thousand two hundred sixteen'); INSERT INTO t2 VALUES(11106, 72354, 'seventy-two thousand three hundred fifty-four'); INSERT INTO t2 VALUES(11107, 66760, 'sixty-six thousand seven hundred sixty'); INSERT INTO t2 VALUES(11108, 73648, 'seventy-three thousand six hundred forty-eight'); INSERT INTO t2 VALUES(11109, 66951, 'sixty-six thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(11110, 82632, 'eighty-two thousand six hundred thirty-two'); INSERT INTO t2 VALUES(11111, 14724, 'fourteen thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(11112, 4917, 'four thousand nine hundred seventeen'); INSERT INTO t2 VALUES(11113, 62041, 'sixty-two thousand forty-one'); INSERT INTO t2 VALUES(11114, 42471, 'forty-two thousand four hundred seventy-one'); INSERT INTO t2 VALUES(11115, 14534, 'fourteen thousand five hundred thirty-four'); INSERT INTO t2 VALUES(11116, 58190, 'fifty-eight thousand one hundred ninety'); INSERT INTO t2 VALUES(11117, 49776, 'forty-nine thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(11118, 94313, 'ninety-four thousand three hundred thirteen'); INSERT INTO t2 VALUES(11119, 84177, 'eighty-four thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(11120, 30738, 'thirty thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(11121, 57318, 'fifty-seven thousand three hundred eighteen'); INSERT INTO t2 VALUES(11122, 95043, 'ninety-five thousand forty-three'); INSERT INTO t2 VALUES(11123, 58830, 'fifty-eight thousand eight hundred thirty'); INSERT INTO t2 VALUES(11124, 24284, 'twenty-four thousand two hundred eighty-four'); INSERT INTO t2 VALUES(11125, 98477, 'ninety-eight thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(11126, 12613, 'twelve thousand six hundred thirteen'); INSERT INTO t2 VALUES(11127, 37619, 'thirty-seven thousand six hundred nineteen'); INSERT INTO t2 VALUES(11128, 11500, 'eleven thousand five hundred'); INSERT INTO t2 VALUES(11129, 55604, 'fifty-five thousand six hundred four'); INSERT INTO t2 VALUES(11130, 22877, 'twenty-two thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(11131, 16749, 'sixteen thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(11132, 18828, 'eighteen thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(11133, 60940, 'sixty thousand nine hundred forty'); INSERT INTO t2 VALUES(11134, 48183, 'forty-eight thousand one hundred eighty-three'); INSERT INTO t2 VALUES(11135, 58944, 'fifty-eight thousand nine hundred forty-four'); INSERT INTO t2 VALUES(11136, 15084, 'fifteen thousand eighty-four'); INSERT INTO t2 VALUES(11137, 44036, 'forty-four thousand thirty-six'); INSERT INTO t2 VALUES(11138, 42693, 'forty-two thousand six hundred ninety-three'); INSERT INTO t2 VALUES(11139, 54940, 'fifty-four thousand nine hundred forty'); INSERT INTO t2 VALUES(11140, 23992, 'twenty-three thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(11141, 1492, 'one thousand four hundred ninety-two'); INSERT INTO t2 VALUES(11142, 31980, 'thirty-one thousand nine hundred eighty'); INSERT INTO t2 VALUES(11143, 83912, 'eighty-three thousand nine hundred twelve'); INSERT INTO t2 VALUES(11144, 77782, 'seventy-seven thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(11145, 27882, 'twenty-seven thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(11146, 93825, 'ninety-three thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(11147, 37891, 'thirty-seven thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(11148, 72808, 'seventy-two thousand eight hundred eight'); INSERT INTO t2 VALUES(11149, 8201, 'eight thousand two hundred one'); INSERT INTO t2 VALUES(11150, 73251, 'seventy-three thousand two hundred fifty-one'); INSERT INTO t2 VALUES(11151, 51390, 'fifty-one thousand three hundred ninety'); INSERT INTO t2 VALUES(11152, 3938, 'three thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(11153, 57, 'fifty-seven'); INSERT INTO t2 VALUES(11154, 63034, 'sixty-three thousand thirty-four'); INSERT INTO t2 VALUES(11155, 57609, 'fifty-seven thousand six hundred nine'); INSERT INTO t2 VALUES(11156, 59675, 'fifty-nine thousand six hundred seventy-five'); INSERT INTO t2 VALUES(11157, 34098, 'thirty-four thousand ninety-eight'); INSERT INTO t2 VALUES(11158, 57002, 'fifty-seven thousand two'); INSERT INTO t2 VALUES(11159, 11066, 'eleven thousand sixty-six'); INSERT INTO t2 VALUES(11160, 39384, 'thirty-nine thousand three hundred eighty-four'); INSERT INTO t2 VALUES(11161, 68040, 'sixty-eight thousand forty'); INSERT INTO t2 VALUES(11162, 35644, 'thirty-five thousand six hundred forty-four'); INSERT INTO t2 VALUES(11163, 39798, 'thirty-nine thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(11164, 87549, 'eighty-seven thousand five hundred forty-nine'); INSERT INTO t2 VALUES(11165, 1478, 'one thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(11166, 91272, 'ninety-one thousand two hundred seventy-two'); INSERT INTO t2 VALUES(11167, 59416, 'fifty-nine thousand four hundred sixteen'); INSERT INTO t2 VALUES(11168, 66762, 'sixty-six thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(11169, 53341, 'fifty-three thousand three hundred forty-one'); INSERT INTO t2 VALUES(11170, 38118, 'thirty-eight thousand one hundred eighteen'); INSERT INTO t2 VALUES(11171, 99703, 'ninety-nine thousand seven hundred three'); INSERT INTO t2 VALUES(11172, 95658, 'ninety-five thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(11173, 42111, 'forty-two thousand one hundred eleven'); INSERT INTO t2 VALUES(11174, 37474, 'thirty-seven thousand four hundred seventy-four'); INSERT INTO t2 VALUES(11175, 5121, 'five thousand one hundred twenty-one'); INSERT INTO t2 VALUES(11176, 3951, 'three thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(11177, 60485, 'sixty thousand four hundred eighty-five'); INSERT INTO t2 VALUES(11178, 47007, 'forty-seven thousand seven'); INSERT INTO t2 VALUES(11179, 19326, 'nineteen thousand three hundred twenty-six'); INSERT INTO t2 VALUES(11180, 73597, 'seventy-three thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(11181, 3136, 'three thousand one hundred thirty-six'); INSERT INTO t2 VALUES(11182, 34164, 'thirty-four thousand one hundred sixty-four'); INSERT INTO t2 VALUES(11183, 40361, 'forty thousand three hundred sixty-one'); INSERT INTO t2 VALUES(11184, 91454, 'ninety-one thousand four hundred fifty-four'); INSERT INTO t2 VALUES(11185, 91800, 'ninety-one thousand eight hundred'); INSERT INTO t2 VALUES(11186, 49879, 'forty-nine thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(11187, 97187, 'ninety-seven thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(11188, 53084, 'fifty-three thousand eighty-four'); INSERT INTO t2 VALUES(11189, 44839, 'forty-four thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(11190, 8010, 'eight thousand ten'); INSERT INTO t2 VALUES(11191, 88273, 'eighty-eight thousand two hundred seventy-three'); INSERT INTO t2 VALUES(11192, 82247, 'eighty-two thousand two hundred forty-seven'); INSERT INTO t2 VALUES(11193, 38086, 'thirty-eight thousand eighty-six'); INSERT INTO t2 VALUES(11194, 78740, 'seventy-eight thousand seven hundred forty'); INSERT INTO t2 VALUES(11195, 80562, 'eighty thousand five hundred sixty-two'); INSERT INTO t2 VALUES(11196, 17653, 'seventeen thousand six hundred fifty-three'); INSERT INTO t2 VALUES(11197, 84794, 'eighty-four thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(11198, 19449, 'nineteen thousand four hundred forty-nine'); INSERT INTO t2 VALUES(11199, 82418, 'eighty-two thousand four hundred eighteen'); INSERT INTO t2 VALUES(11200, 50280, 'fifty thousand two hundred eighty'); INSERT INTO t2 VALUES(11201, 44819, 'forty-four thousand eight hundred nineteen'); INSERT INTO t2 VALUES(11202, 44731, 'forty-four thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(11203, 45659, 'forty-five thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(11204, 88278, 'eighty-eight thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(11205, 62226, 'sixty-two thousand two hundred twenty-six'); INSERT INTO t2 VALUES(11206, 67097, 'sixty-seven thousand ninety-seven'); INSERT INTO t2 VALUES(11207, 56630, 'fifty-six thousand six hundred thirty'); INSERT INTO t2 VALUES(11208, 98209, 'ninety-eight thousand two hundred nine'); INSERT INTO t2 VALUES(11209, 4773, 'four thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(11210, 78222, 'seventy-eight thousand two hundred twenty-two'); INSERT INTO t2 VALUES(11211, 65454, 'sixty-five thousand four hundred fifty-four'); INSERT INTO t2 VALUES(11212, 16231, 'sixteen thousand two hundred thirty-one'); INSERT INTO t2 VALUES(11213, 98520, 'ninety-eight thousand five hundred twenty'); INSERT INTO t2 VALUES(11214, 45929, 'forty-five thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(11215, 71350, 'seventy-one thousand three hundred fifty'); INSERT INTO t2 VALUES(11216, 91623, 'ninety-one thousand six hundred twenty-three'); INSERT INTO t2 VALUES(11217, 69422, 'sixty-nine thousand four hundred twenty-two'); INSERT INTO t2 VALUES(11218, 45140, 'forty-five thousand one hundred forty'); INSERT INTO t2 VALUES(11219, 9926, 'nine thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(11220, 25606, 'twenty-five thousand six hundred six'); INSERT INTO t2 VALUES(11221, 67415, 'sixty-seven thousand four hundred fifteen'); INSERT INTO t2 VALUES(11222, 4901, 'four thousand nine hundred one'); INSERT INTO t2 VALUES(11223, 54286, 'fifty-four thousand two hundred eighty-six'); INSERT INTO t2 VALUES(11224, 43243, 'forty-three thousand two hundred forty-three'); INSERT INTO t2 VALUES(11225, 97005, 'ninety-seven thousand five'); INSERT INTO t2 VALUES(11226, 58465, 'fifty-eight thousand four hundred sixty-five'); INSERT INTO t2 VALUES(11227, 23787, 'twenty-three thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(11228, 44946, 'forty-four thousand nine hundred forty-six'); INSERT INTO t2 VALUES(11229, 13309, 'thirteen thousand three hundred nine'); INSERT INTO t2 VALUES(11230, 79963, 'seventy-nine thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(11231, 96714, 'ninety-six thousand seven hundred fourteen'); INSERT INTO t2 VALUES(11232, 12624, 'twelve thousand six hundred twenty-four'); INSERT INTO t2 VALUES(11233, 24612, 'twenty-four thousand six hundred twelve'); INSERT INTO t2 VALUES(11234, 54446, 'fifty-four thousand four hundred forty-six'); INSERT INTO t2 VALUES(11235, 50194, 'fifty thousand one hundred ninety-four'); INSERT INTO t2 VALUES(11236, 70959, 'seventy thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(11237, 8674, 'eight thousand six hundred seventy-four'); INSERT INTO t2 VALUES(11238, 32088, 'thirty-two thousand eighty-eight'); INSERT INTO t2 VALUES(11239, 22540, 'twenty-two thousand five hundred forty'); INSERT INTO t2 VALUES(11240, 74948, 'seventy-four thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(11241, 52210, 'fifty-two thousand two hundred ten'); INSERT INTO t2 VALUES(11242, 97912, 'ninety-seven thousand nine hundred twelve'); INSERT INTO t2 VALUES(11243, 36294, 'thirty-six thousand two hundred ninety-four'); INSERT INTO t2 VALUES(11244, 9121, 'nine thousand one hundred twenty-one'); INSERT INTO t2 VALUES(11245, 8471, 'eight thousand four hundred seventy-one'); INSERT INTO t2 VALUES(11246, 40388, 'forty thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(11247, 27986, 'twenty-seven thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(11248, 81506, 'eighty-one thousand five hundred six'); INSERT INTO t2 VALUES(11249, 4755, 'four thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(11250, 2410, 'two thousand four hundred ten'); INSERT INTO t2 VALUES(11251, 77363, 'seventy-seven thousand three hundred sixty-three'); INSERT INTO t2 VALUES(11252, 96853, 'ninety-six thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(11253, 34296, 'thirty-four thousand two hundred ninety-six'); INSERT INTO t2 VALUES(11254, 65621, 'sixty-five thousand six hundred twenty-one'); INSERT INTO t2 VALUES(11255, 70002, 'seventy thousand two'); INSERT INTO t2 VALUES(11256, 53791, 'fifty-three thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(11257, 82414, 'eighty-two thousand four hundred fourteen'); INSERT INTO t2 VALUES(11258, 5405, 'five thousand four hundred five'); INSERT INTO t2 VALUES(11259, 87720, 'eighty-seven thousand seven hundred twenty'); INSERT INTO t2 VALUES(11260, 63913, 'sixty-three thousand nine hundred thirteen'); INSERT INTO t2 VALUES(11261, 77891, 'seventy-seven thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(11262, 94606, 'ninety-four thousand six hundred six'); INSERT INTO t2 VALUES(11263, 85213, 'eighty-five thousand two hundred thirteen'); INSERT INTO t2 VALUES(11264, 38974, 'thirty-eight thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(11265, 99226, 'ninety-nine thousand two hundred twenty-six'); INSERT INTO t2 VALUES(11266, 9572, 'nine thousand five hundred seventy-two'); INSERT INTO t2 VALUES(11267, 57776, 'fifty-seven thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(11268, 51724, 'fifty-one thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(11269, 16859, 'sixteen thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(11270, 18462, 'eighteen thousand four hundred sixty-two'); INSERT INTO t2 VALUES(11271, 12263, 'twelve thousand two hundred sixty-three'); INSERT INTO t2 VALUES(11272, 3997, 'three thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(11273, 79652, 'seventy-nine thousand six hundred fifty-two'); INSERT INTO t2 VALUES(11274, 43995, 'forty-three thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(11275, 11411, 'eleven thousand four hundred eleven'); INSERT INTO t2 VALUES(11276, 39174, 'thirty-nine thousand one hundred seventy-four'); INSERT INTO t2 VALUES(11277, 46702, 'forty-six thousand seven hundred two'); INSERT INTO t2 VALUES(11278, 79103, 'seventy-nine thousand one hundred three'); INSERT INTO t2 VALUES(11279, 49238, 'forty-nine thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(11280, 55764, 'fifty-five thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(11281, 86412, 'eighty-six thousand four hundred twelve'); INSERT INTO t2 VALUES(11282, 21709, 'twenty-one thousand seven hundred nine'); INSERT INTO t2 VALUES(11283, 70217, 'seventy thousand two hundred seventeen'); INSERT INTO t2 VALUES(11284, 64361, 'sixty-four thousand three hundred sixty-one'); INSERT INTO t2 VALUES(11285, 51986, 'fifty-one thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(11286, 68338, 'sixty-eight thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(11287, 76554, 'seventy-six thousand five hundred fifty-four'); INSERT INTO t2 VALUES(11288, 49223, 'forty-nine thousand two hundred twenty-three'); INSERT INTO t2 VALUES(11289, 66987, 'sixty-six thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(11290, 56180, 'fifty-six thousand one hundred eighty'); INSERT INTO t2 VALUES(11291, 12501, 'twelve thousand five hundred one'); INSERT INTO t2 VALUES(11292, 18213, 'eighteen thousand two hundred thirteen'); INSERT INTO t2 VALUES(11293, 4998, 'four thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(11294, 71028, 'seventy-one thousand twenty-eight'); INSERT INTO t2 VALUES(11295, 682, 'six hundred eighty-two'); INSERT INTO t2 VALUES(11296, 69445, 'sixty-nine thousand four hundred forty-five'); INSERT INTO t2 VALUES(11297, 96604, 'ninety-six thousand six hundred four'); INSERT INTO t2 VALUES(11298, 72066, 'seventy-two thousand sixty-six'); INSERT INTO t2 VALUES(11299, 41132, 'forty-one thousand one hundred thirty-two'); INSERT INTO t2 VALUES(11300, 97323, 'ninety-seven thousand three hundred twenty-three'); INSERT INTO t2 VALUES(11301, 17820, 'seventeen thousand eight hundred twenty'); INSERT INTO t2 VALUES(11302, 26196, 'twenty-six thousand one hundred ninety-six'); INSERT INTO t2 VALUES(11303, 1358, 'one thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(11304, 49685, 'forty-nine thousand six hundred eighty-five'); INSERT INTO t2 VALUES(11305, 81597, 'eighty-one thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(11306, 48301, 'forty-eight thousand three hundred one'); INSERT INTO t2 VALUES(11307, 99068, 'ninety-nine thousand sixty-eight'); INSERT INTO t2 VALUES(11308, 55647, 'fifty-five thousand six hundred forty-seven'); INSERT INTO t2 VALUES(11309, 95134, 'ninety-five thousand one hundred thirty-four'); INSERT INTO t2 VALUES(11310, 58462, 'fifty-eight thousand four hundred sixty-two'); INSERT INTO t2 VALUES(11311, 60162, 'sixty thousand one hundred sixty-two'); INSERT INTO t2 VALUES(11312, 37805, 'thirty-seven thousand eight hundred five'); INSERT INTO t2 VALUES(11313, 87966, 'eighty-seven thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(11314, 19272, 'nineteen thousand two hundred seventy-two'); INSERT INTO t2 VALUES(11315, 5036, 'five thousand thirty-six'); INSERT INTO t2 VALUES(11316, 25234, 'twenty-five thousand two hundred thirty-four'); INSERT INTO t2 VALUES(11317, 99980, 'ninety-nine thousand nine hundred eighty'); INSERT INTO t2 VALUES(11318, 18415, 'eighteen thousand four hundred fifteen'); INSERT INTO t2 VALUES(11319, 99659, 'ninety-nine thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(11320, 8262, 'eight thousand two hundred sixty-two'); INSERT INTO t2 VALUES(11321, 63517, 'sixty-three thousand five hundred seventeen'); INSERT INTO t2 VALUES(11322, 93941, 'ninety-three thousand nine hundred forty-one'); INSERT INTO t2 VALUES(11323, 41639, 'forty-one thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(11324, 58264, 'fifty-eight thousand two hundred sixty-four'); INSERT INTO t2 VALUES(11325, 43052, 'forty-three thousand fifty-two'); INSERT INTO t2 VALUES(11326, 17263, 'seventeen thousand two hundred sixty-three'); INSERT INTO t2 VALUES(11327, 84864, 'eighty-four thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(11328, 95325, 'ninety-five thousand three hundred twenty-five'); INSERT INTO t2 VALUES(11329, 39384, 'thirty-nine thousand three hundred eighty-four'); INSERT INTO t2 VALUES(11330, 86682, 'eighty-six thousand six hundred eighty-two'); INSERT INTO t2 VALUES(11331, 94815, 'ninety-four thousand eight hundred fifteen'); INSERT INTO t2 VALUES(11332, 34357, 'thirty-four thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(11333, 18962, 'eighteen thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(11334, 92813, 'ninety-two thousand eight hundred thirteen'); INSERT INTO t2 VALUES(11335, 20683, 'twenty thousand six hundred eighty-three'); INSERT INTO t2 VALUES(11336, 67774, 'sixty-seven thousand seven hundred seventy-four'); INSERT INTO t2 VALUES(11337, 2195, 'two thousand one hundred ninety-five'); INSERT INTO t2 VALUES(11338, 44505, 'forty-four thousand five hundred five'); INSERT INTO t2 VALUES(11339, 32619, 'thirty-two thousand six hundred nineteen'); INSERT INTO t2 VALUES(11340, 97144, 'ninety-seven thousand one hundred forty-four'); INSERT INTO t2 VALUES(11341, 65466, 'sixty-five thousand four hundred sixty-six'); INSERT INTO t2 VALUES(11342, 93088, 'ninety-three thousand eighty-eight'); INSERT INTO t2 VALUES(11343, 82054, 'eighty-two thousand fifty-four'); INSERT INTO t2 VALUES(11344, 44290, 'forty-four thousand two hundred ninety'); INSERT INTO t2 VALUES(11345, 90710, 'ninety thousand seven hundred ten'); INSERT INTO t2 VALUES(11346, 78039, 'seventy-eight thousand thirty-nine'); INSERT INTO t2 VALUES(11347, 97936, 'ninety-seven thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(11348, 84543, 'eighty-four thousand five hundred forty-three'); INSERT INTO t2 VALUES(11349, 4454, 'four thousand four hundred fifty-four'); INSERT INTO t2 VALUES(11350, 64766, 'sixty-four thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(11351, 98230, 'ninety-eight thousand two hundred thirty'); INSERT INTO t2 VALUES(11352, 80456, 'eighty thousand four hundred fifty-six'); INSERT INTO t2 VALUES(11353, 97469, 'ninety-seven thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(11354, 29708, 'twenty-nine thousand seven hundred eight'); INSERT INTO t2 VALUES(11355, 72899, 'seventy-two thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(11356, 84166, 'eighty-four thousand one hundred sixty-six'); INSERT INTO t2 VALUES(11357, 44137, 'forty-four thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(11358, 90092, 'ninety thousand ninety-two'); INSERT INTO t2 VALUES(11359, 25981, 'twenty-five thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(11360, 54521, 'fifty-four thousand five hundred twenty-one'); INSERT INTO t2 VALUES(11361, 10960, 'ten thousand nine hundred sixty'); INSERT INTO t2 VALUES(11362, 97533, 'ninety-seven thousand five hundred thirty-three'); INSERT INTO t2 VALUES(11363, 38415, 'thirty-eight thousand four hundred fifteen'); INSERT INTO t2 VALUES(11364, 82531, 'eighty-two thousand five hundred thirty-one'); INSERT INTO t2 VALUES(11365, 25737, 'twenty-five thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(11366, 72723, 'seventy-two thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(11367, 11245, 'eleven thousand two hundred forty-five'); INSERT INTO t2 VALUES(11368, 72638, 'seventy-two thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(11369, 35158, 'thirty-five thousand one hundred fifty-eight'); INSERT INTO t2 VALUES(11370, 10151, 'ten thousand one hundred fifty-one'); INSERT INTO t2 VALUES(11371, 98778, 'ninety-eight thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(11372, 64933, 'sixty-four thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(11373, 5031, 'five thousand thirty-one'); INSERT INTO t2 VALUES(11374, 57671, 'fifty-seven thousand six hundred seventy-one'); INSERT INTO t2 VALUES(11375, 89451, 'eighty-nine thousand four hundred fifty-one'); INSERT INTO t2 VALUES(11376, 97789, 'ninety-seven thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(11377, 22269, 'twenty-two thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(11378, 28418, 'twenty-eight thousand four hundred eighteen'); INSERT INTO t2 VALUES(11379, 79055, 'seventy-nine thousand fifty-five'); INSERT INTO t2 VALUES(11380, 53497, 'fifty-three thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(11381, 73553, 'seventy-three thousand five hundred fifty-three'); INSERT INTO t2 VALUES(11382, 28232, 'twenty-eight thousand two hundred thirty-two'); INSERT INTO t2 VALUES(11383, 44596, 'forty-four thousand five hundred ninety-six'); INSERT INTO t2 VALUES(11384, 32902, 'thirty-two thousand nine hundred two'); INSERT INTO t2 VALUES(11385, 75976, 'seventy-five thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(11386, 24375, 'twenty-four thousand three hundred seventy-five'); INSERT INTO t2 VALUES(11387, 19413, 'nineteen thousand four hundred thirteen'); INSERT INTO t2 VALUES(11388, 30768, 'thirty thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(11389, 54280, 'fifty-four thousand two hundred eighty'); INSERT INTO t2 VALUES(11390, 92101, 'ninety-two thousand one hundred one'); INSERT INTO t2 VALUES(11391, 63374, 'sixty-three thousand three hundred seventy-four'); INSERT INTO t2 VALUES(11392, 46798, 'forty-six thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(11393, 67780, 'sixty-seven thousand seven hundred eighty'); INSERT INTO t2 VALUES(11394, 91916, 'ninety-one thousand nine hundred sixteen'); INSERT INTO t2 VALUES(11395, 15311, 'fifteen thousand three hundred eleven'); INSERT INTO t2 VALUES(11396, 36292, 'thirty-six thousand two hundred ninety-two'); INSERT INTO t2 VALUES(11397, 1411, 'one thousand four hundred eleven'); INSERT INTO t2 VALUES(11398, 48828, 'forty-eight thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(11399, 74199, 'seventy-four thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(11400, 38939, 'thirty-eight thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(11401, 8412, 'eight thousand four hundred twelve'); INSERT INTO t2 VALUES(11402, 64788, 'sixty-four thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(11403, 27639, 'twenty-seven thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(11404, 2082, 'two thousand eighty-two'); INSERT INTO t2 VALUES(11405, 60516, 'sixty thousand five hundred sixteen'); INSERT INTO t2 VALUES(11406, 41992, 'forty-one thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(11407, 63459, 'sixty-three thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(11408, 22722, 'twenty-two thousand seven hundred twenty-two'); INSERT INTO t2 VALUES(11409, 5917, 'five thousand nine hundred seventeen'); INSERT INTO t2 VALUES(11410, 19909, 'nineteen thousand nine hundred nine'); INSERT INTO t2 VALUES(11411, 30427, 'thirty thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(11412, 96446, 'ninety-six thousand four hundred forty-six'); INSERT INTO t2 VALUES(11413, 18572, 'eighteen thousand five hundred seventy-two'); INSERT INTO t2 VALUES(11414, 15934, 'fifteen thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(11415, 50971, 'fifty thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(11416, 11234, 'eleven thousand two hundred thirty-four'); INSERT INTO t2 VALUES(11417, 70857, 'seventy thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(11418, 47694, 'forty-seven thousand six hundred ninety-four'); INSERT INTO t2 VALUES(11419, 69520, 'sixty-nine thousand five hundred twenty'); INSERT INTO t2 VALUES(11420, 35356, 'thirty-five thousand three hundred fifty-six'); INSERT INTO t2 VALUES(11421, 33500, 'thirty-three thousand five hundred'); INSERT INTO t2 VALUES(11422, 58444, 'fifty-eight thousand four hundred forty-four'); INSERT INTO t2 VALUES(11423, 77609, 'seventy-seven thousand six hundred nine'); INSERT INTO t2 VALUES(11424, 69195, 'sixty-nine thousand one hundred ninety-five'); INSERT INTO t2 VALUES(11425, 26739, 'twenty-six thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(11426, 83383, 'eighty-three thousand three hundred eighty-three'); INSERT INTO t2 VALUES(11427, 78422, 'seventy-eight thousand four hundred twenty-two'); INSERT INTO t2 VALUES(11428, 84205, 'eighty-four thousand two hundred five'); INSERT INTO t2 VALUES(11429, 66904, 'sixty-six thousand nine hundred four'); INSERT INTO t2 VALUES(11430, 39264, 'thirty-nine thousand two hundred sixty-four'); INSERT INTO t2 VALUES(11431, 28084, 'twenty-eight thousand eighty-four'); INSERT INTO t2 VALUES(11432, 82944, 'eighty-two thousand nine hundred forty-four'); INSERT INTO t2 VALUES(11433, 83718, 'eighty-three thousand seven hundred eighteen'); INSERT INTO t2 VALUES(11434, 89759, 'eighty-nine thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(11435, 91386, 'ninety-one thousand three hundred eighty-six'); INSERT INTO t2 VALUES(11436, 10329, 'ten thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(11437, 55462, 'fifty-five thousand four hundred sixty-two'); INSERT INTO t2 VALUES(11438, 58996, 'fifty-eight thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(11439, 26648, 'twenty-six thousand six hundred forty-eight'); INSERT INTO t2 VALUES(11440, 29325, 'twenty-nine thousand three hundred twenty-five'); INSERT INTO t2 VALUES(11441, 72918, 'seventy-two thousand nine hundred eighteen'); INSERT INTO t2 VALUES(11442, 14732, 'fourteen thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(11443, 3321, 'three thousand three hundred twenty-one'); INSERT INTO t2 VALUES(11444, 47202, 'forty-seven thousand two hundred two'); INSERT INTO t2 VALUES(11445, 37812, 'thirty-seven thousand eight hundred twelve'); INSERT INTO t2 VALUES(11446, 21032, 'twenty-one thousand thirty-two'); INSERT INTO t2 VALUES(11447, 81871, 'eighty-one thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(11448, 50975, 'fifty thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(11449, 57084, 'fifty-seven thousand eighty-four'); INSERT INTO t2 VALUES(11450, 33860, 'thirty-three thousand eight hundred sixty'); INSERT INTO t2 VALUES(11451, 8294, 'eight thousand two hundred ninety-four'); INSERT INTO t2 VALUES(11452, 50084, 'fifty thousand eighty-four'); INSERT INTO t2 VALUES(11453, 21911, 'twenty-one thousand nine hundred eleven'); INSERT INTO t2 VALUES(11454, 36990, 'thirty-six thousand nine hundred ninety'); INSERT INTO t2 VALUES(11455, 94253, 'ninety-four thousand two hundred fifty-three'); INSERT INTO t2 VALUES(11456, 11338, 'eleven thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(11457, 92754, 'ninety-two thousand seven hundred fifty-four'); INSERT INTO t2 VALUES(11458, 98163, 'ninety-eight thousand one hundred sixty-three'); INSERT INTO t2 VALUES(11459, 27244, 'twenty-seven thousand two hundred forty-four'); INSERT INTO t2 VALUES(11460, 24958, 'twenty-four thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(11461, 40685, 'forty thousand six hundred eighty-five'); INSERT INTO t2 VALUES(11462, 52858, 'fifty-two thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(11463, 18989, 'eighteen thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(11464, 49621, 'forty-nine thousand six hundred twenty-one'); INSERT INTO t2 VALUES(11465, 3621, 'three thousand six hundred twenty-one'); INSERT INTO t2 VALUES(11466, 17378, 'seventeen thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(11467, 15046, 'fifteen thousand forty-six'); INSERT INTO t2 VALUES(11468, 41537, 'forty-one thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(11469, 4487, 'four thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(11470, 28446, 'twenty-eight thousand four hundred forty-six'); INSERT INTO t2 VALUES(11471, 87330, 'eighty-seven thousand three hundred thirty'); INSERT INTO t2 VALUES(11472, 9864, 'nine thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(11473, 78678, 'seventy-eight thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(11474, 61738, 'sixty-one thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(11475, 32515, 'thirty-two thousand five hundred fifteen'); INSERT INTO t2 VALUES(11476, 54501, 'fifty-four thousand five hundred one'); INSERT INTO t2 VALUES(11477, 28080, 'twenty-eight thousand eighty'); INSERT INTO t2 VALUES(11478, 80667, 'eighty thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(11479, 41590, 'forty-one thousand five hundred ninety'); INSERT INTO t2 VALUES(11480, 59287, 'fifty-nine thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(11481, 29845, 'twenty-nine thousand eight hundred forty-five'); INSERT INTO t2 VALUES(11482, 19612, 'nineteen thousand six hundred twelve'); INSERT INTO t2 VALUES(11483, 56760, 'fifty-six thousand seven hundred sixty'); INSERT INTO t2 VALUES(11484, 59205, 'fifty-nine thousand two hundred five'); INSERT INTO t2 VALUES(11485, 3400, 'three thousand four hundred'); INSERT INTO t2 VALUES(11486, 6700, 'six thousand seven hundred'); INSERT INTO t2 VALUES(11487, 25784, 'twenty-five thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(11488, 19886, 'nineteen thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(11489, 74984, 'seventy-four thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(11490, 3878, 'three thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(11491, 93780, 'ninety-three thousand seven hundred eighty'); INSERT INTO t2 VALUES(11492, 76292, 'seventy-six thousand two hundred ninety-two'); INSERT INTO t2 VALUES(11493, 57769, 'fifty-seven thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(11494, 11048, 'eleven thousand forty-eight'); INSERT INTO t2 VALUES(11495, 87273, 'eighty-seven thousand two hundred seventy-three'); INSERT INTO t2 VALUES(11496, 82585, 'eighty-two thousand five hundred eighty-five'); INSERT INTO t2 VALUES(11497, 40590, 'forty thousand five hundred ninety'); INSERT INTO t2 VALUES(11498, 86326, 'eighty-six thousand three hundred twenty-six'); INSERT INTO t2 VALUES(11499, 71296, 'seventy-one thousand two hundred ninety-six'); INSERT INTO t2 VALUES(11500, 75529, 'seventy-five thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(11501, 22983, 'twenty-two thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(11502, 75241, 'seventy-five thousand two hundred forty-one'); INSERT INTO t2 VALUES(11503, 22661, 'twenty-two thousand six hundred sixty-one'); INSERT INTO t2 VALUES(11504, 15292, 'fifteen thousand two hundred ninety-two'); INSERT INTO t2 VALUES(11505, 33737, 'thirty-three thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(11506, 86442, 'eighty-six thousand four hundred forty-two'); INSERT INTO t2 VALUES(11507, 38103, 'thirty-eight thousand one hundred three'); INSERT INTO t2 VALUES(11508, 12856, 'twelve thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(11509, 91418, 'ninety-one thousand four hundred eighteen'); INSERT INTO t2 VALUES(11510, 41216, 'forty-one thousand two hundred sixteen'); INSERT INTO t2 VALUES(11511, 88053, 'eighty-eight thousand fifty-three'); INSERT INTO t2 VALUES(11512, 16632, 'sixteen thousand six hundred thirty-two'); INSERT INTO t2 VALUES(11513, 3301, 'three thousand three hundred one'); INSERT INTO t2 VALUES(11514, 40509, 'forty thousand five hundred nine'); INSERT INTO t2 VALUES(11515, 55230, 'fifty-five thousand two hundred thirty'); INSERT INTO t2 VALUES(11516, 48768, 'forty-eight thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(11517, 25557, 'twenty-five thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(11518, 99963, 'ninety-nine thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(11519, 87785, 'eighty-seven thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(11520, 22195, 'twenty-two thousand one hundred ninety-five'); INSERT INTO t2 VALUES(11521, 22650, 'twenty-two thousand six hundred fifty'); INSERT INTO t2 VALUES(11522, 78557, 'seventy-eight thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(11523, 27753, 'twenty-seven thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(11524, 13636, 'thirteen thousand six hundred thirty-six'); INSERT INTO t2 VALUES(11525, 78658, 'seventy-eight thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(11526, 11699, 'eleven thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(11527, 28448, 'twenty-eight thousand four hundred forty-eight'); INSERT INTO t2 VALUES(11528, 55043, 'fifty-five thousand forty-three'); INSERT INTO t2 VALUES(11529, 99425, 'ninety-nine thousand four hundred twenty-five'); INSERT INTO t2 VALUES(11530, 39744, 'thirty-nine thousand seven hundred forty-four'); INSERT INTO t2 VALUES(11531, 50342, 'fifty thousand three hundred forty-two'); INSERT INTO t2 VALUES(11532, 77911, 'seventy-seven thousand nine hundred eleven'); INSERT INTO t2 VALUES(11533, 88221, 'eighty-eight thousand two hundred twenty-one'); INSERT INTO t2 VALUES(11534, 81782, 'eighty-one thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(11535, 40313, 'forty thousand three hundred thirteen'); INSERT INTO t2 VALUES(11536, 30474, 'thirty thousand four hundred seventy-four'); INSERT INTO t2 VALUES(11537, 81654, 'eighty-one thousand six hundred fifty-four'); INSERT INTO t2 VALUES(11538, 46081, 'forty-six thousand eighty-one'); INSERT INTO t2 VALUES(11539, 55466, 'fifty-five thousand four hundred sixty-six'); INSERT INTO t2 VALUES(11540, 48454, 'forty-eight thousand four hundred fifty-four'); INSERT INTO t2 VALUES(11541, 66152, 'sixty-six thousand one hundred fifty-two'); INSERT INTO t2 VALUES(11542, 27506, 'twenty-seven thousand five hundred six'); INSERT INTO t2 VALUES(11543, 95044, 'ninety-five thousand forty-four'); INSERT INTO t2 VALUES(11544, 94203, 'ninety-four thousand two hundred three'); INSERT INTO t2 VALUES(11545, 78778, 'seventy-eight thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(11546, 45039, 'forty-five thousand thirty-nine'); INSERT INTO t2 VALUES(11547, 39406, 'thirty-nine thousand four hundred six'); INSERT INTO t2 VALUES(11548, 86168, 'eighty-six thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(11549, 43540, 'forty-three thousand five hundred forty'); INSERT INTO t2 VALUES(11550, 27572, 'twenty-seven thousand five hundred seventy-two'); INSERT INTO t2 VALUES(11551, 73728, 'seventy-three thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(11552, 25816, 'twenty-five thousand eight hundred sixteen'); INSERT INTO t2 VALUES(11553, 36768, 'thirty-six thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(11554, 34951, 'thirty-four thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(11555, 95059, 'ninety-five thousand fifty-nine'); INSERT INTO t2 VALUES(11556, 30835, 'thirty thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(11557, 60341, 'sixty thousand three hundred forty-one'); INSERT INTO t2 VALUES(11558, 82900, 'eighty-two thousand nine hundred'); INSERT INTO t2 VALUES(11559, 81691, 'eighty-one thousand six hundred ninety-one'); INSERT INTO t2 VALUES(11560, 25799, 'twenty-five thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(11561, 94758, 'ninety-four thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(11562, 69261, 'sixty-nine thousand two hundred sixty-one'); INSERT INTO t2 VALUES(11563, 29110, 'twenty-nine thousand one hundred ten'); INSERT INTO t2 VALUES(11564, 65144, 'sixty-five thousand one hundred forty-four'); INSERT INTO t2 VALUES(11565, 74266, 'seventy-four thousand two hundred sixty-six'); INSERT INTO t2 VALUES(11566, 94472, 'ninety-four thousand four hundred seventy-two'); INSERT INTO t2 VALUES(11567, 58557, 'fifty-eight thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(11568, 915, 'nine hundred fifteen'); INSERT INTO t2 VALUES(11569, 70276, 'seventy thousand two hundred seventy-six'); INSERT INTO t2 VALUES(11570, 24671, 'twenty-four thousand six hundred seventy-one'); INSERT INTO t2 VALUES(11571, 53119, 'fifty-three thousand one hundred nineteen'); INSERT INTO t2 VALUES(11572, 37604, 'thirty-seven thousand six hundred four'); INSERT INTO t2 VALUES(11573, 55582, 'fifty-five thousand five hundred eighty-two'); INSERT INTO t2 VALUES(11574, 77352, 'seventy-seven thousand three hundred fifty-two'); INSERT INTO t2 VALUES(11575, 21073, 'twenty-one thousand seventy-three'); INSERT INTO t2 VALUES(11576, 2906, 'two thousand nine hundred six'); INSERT INTO t2 VALUES(11577, 25103, 'twenty-five thousand one hundred three'); INSERT INTO t2 VALUES(11578, 78848, 'seventy-eight thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(11579, 93961, 'ninety-three thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(11580, 24452, 'twenty-four thousand four hundred fifty-two'); INSERT INTO t2 VALUES(11581, 655, 'six hundred fifty-five'); INSERT INTO t2 VALUES(11582, 23581, 'twenty-three thousand five hundred eighty-one'); INSERT INTO t2 VALUES(11583, 11271, 'eleven thousand two hundred seventy-one'); INSERT INTO t2 VALUES(11584, 3988, 'three thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(11585, 47170, 'forty-seven thousand one hundred seventy'); INSERT INTO t2 VALUES(11586, 7551, 'seven thousand five hundred fifty-one'); INSERT INTO t2 VALUES(11587, 89706, 'eighty-nine thousand seven hundred six'); INSERT INTO t2 VALUES(11588, 2722, 'two thousand seven hundred twenty-two'); INSERT INTO t2 VALUES(11589, 5827, 'five thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(11590, 37014, 'thirty-seven thousand fourteen'); INSERT INTO t2 VALUES(11591, 80512, 'eighty thousand five hundred twelve'); INSERT INTO t2 VALUES(11592, 86931, 'eighty-six thousand nine hundred thirty-one'); INSERT INTO t2 VALUES(11593, 3692, 'three thousand six hundred ninety-two'); INSERT INTO t2 VALUES(11594, 35041, 'thirty-five thousand forty-one'); INSERT INTO t2 VALUES(11595, 79204, 'seventy-nine thousand two hundred four'); INSERT INTO t2 VALUES(11596, 90127, 'ninety thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(11597, 93917, 'ninety-three thousand nine hundred seventeen'); INSERT INTO t2 VALUES(11598, 17719, 'seventeen thousand seven hundred nineteen'); INSERT INTO t2 VALUES(11599, 38939, 'thirty-eight thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(11600, 65091, 'sixty-five thousand ninety-one'); INSERT INTO t2 VALUES(11601, 88889, 'eighty-eight thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(11602, 90521, 'ninety thousand five hundred twenty-one'); INSERT INTO t2 VALUES(11603, 9186, 'nine thousand one hundred eighty-six'); INSERT INTO t2 VALUES(11604, 99879, 'ninety-nine thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(11605, 19362, 'nineteen thousand three hundred sixty-two'); INSERT INTO t2 VALUES(11606, 39854, 'thirty-nine thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(11607, 35175, 'thirty-five thousand one hundred seventy-five'); INSERT INTO t2 VALUES(11608, 80696, 'eighty thousand six hundred ninety-six'); INSERT INTO t2 VALUES(11609, 82112, 'eighty-two thousand one hundred twelve'); INSERT INTO t2 VALUES(11610, 62532, 'sixty-two thousand five hundred thirty-two'); INSERT INTO t2 VALUES(11611, 86508, 'eighty-six thousand five hundred eight'); INSERT INTO t2 VALUES(11612, 22622, 'twenty-two thousand six hundred twenty-two'); INSERT INTO t2 VALUES(11613, 53400, 'fifty-three thousand four hundred'); INSERT INTO t2 VALUES(11614, 97074, 'ninety-seven thousand seventy-four'); INSERT INTO t2 VALUES(11615, 7015, 'seven thousand fifteen'); INSERT INTO t2 VALUES(11616, 96968, 'ninety-six thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(11617, 50906, 'fifty thousand nine hundred six'); INSERT INTO t2 VALUES(11618, 43056, 'forty-three thousand fifty-six'); INSERT INTO t2 VALUES(11619, 88245, 'eighty-eight thousand two hundred forty-five'); INSERT INTO t2 VALUES(11620, 94630, 'ninety-four thousand six hundred thirty'); INSERT INTO t2 VALUES(11621, 19938, 'nineteen thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(11622, 58807, 'fifty-eight thousand eight hundred seven'); INSERT INTO t2 VALUES(11623, 3789, 'three thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(11624, 51857, 'fifty-one thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(11625, 5078, 'five thousand seventy-eight'); INSERT INTO t2 VALUES(11626, 97253, 'ninety-seven thousand two hundred fifty-three'); INSERT INTO t2 VALUES(11627, 12749, 'twelve thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(11628, 59149, 'fifty-nine thousand one hundred forty-nine'); INSERT INTO t2 VALUES(11629, 1930, 'one thousand nine hundred thirty'); INSERT INTO t2 VALUES(11630, 11491, 'eleven thousand four hundred ninety-one'); INSERT INTO t2 VALUES(11631, 92160, 'ninety-two thousand one hundred sixty'); INSERT INTO t2 VALUES(11632, 78798, 'seventy-eight thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(11633, 99457, 'ninety-nine thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(11634, 88198, 'eighty-eight thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(11635, 83208, 'eighty-three thousand two hundred eight'); INSERT INTO t2 VALUES(11636, 55187, 'fifty-five thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(11637, 14457, 'fourteen thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(11638, 36275, 'thirty-six thousand two hundred seventy-five'); INSERT INTO t2 VALUES(11639, 19125, 'nineteen thousand one hundred twenty-five'); INSERT INTO t2 VALUES(11640, 57261, 'fifty-seven thousand two hundred sixty-one'); INSERT INTO t2 VALUES(11641, 79264, 'seventy-nine thousand two hundred sixty-four'); INSERT INTO t2 VALUES(11642, 27963, 'twenty-seven thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(11643, 97746, 'ninety-seven thousand seven hundred forty-six'); INSERT INTO t2 VALUES(11644, 59654, 'fifty-nine thousand six hundred fifty-four'); INSERT INTO t2 VALUES(11645, 85754, 'eighty-five thousand seven hundred fifty-four'); INSERT INTO t2 VALUES(11646, 95921, 'ninety-five thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(11647, 63436, 'sixty-three thousand four hundred thirty-six'); INSERT INTO t2 VALUES(11648, 14110, 'fourteen thousand one hundred ten'); INSERT INTO t2 VALUES(11649, 61418, 'sixty-one thousand four hundred eighteen'); INSERT INTO t2 VALUES(11650, 31755, 'thirty-one thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(11651, 67385, 'sixty-seven thousand three hundred eighty-five'); INSERT INTO t2 VALUES(11652, 20453, 'twenty thousand four hundred fifty-three'); INSERT INTO t2 VALUES(11653, 69497, 'sixty-nine thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(11654, 74906, 'seventy-four thousand nine hundred six'); INSERT INTO t2 VALUES(11655, 79118, 'seventy-nine thousand one hundred eighteen'); INSERT INTO t2 VALUES(11656, 80095, 'eighty thousand ninety-five'); INSERT INTO t2 VALUES(11657, 51949, 'fifty-one thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(11658, 42010, 'forty-two thousand ten'); INSERT INTO t2 VALUES(11659, 97668, 'ninety-seven thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(11660, 11900, 'eleven thousand nine hundred'); INSERT INTO t2 VALUES(11661, 79948, 'seventy-nine thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(11662, 27477, 'twenty-seven thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(11663, 84663, 'eighty-four thousand six hundred sixty-three'); INSERT INTO t2 VALUES(11664, 12813, 'twelve thousand eight hundred thirteen'); INSERT INTO t2 VALUES(11665, 14113, 'fourteen thousand one hundred thirteen'); INSERT INTO t2 VALUES(11666, 78422, 'seventy-eight thousand four hundred twenty-two'); INSERT INTO t2 VALUES(11667, 62573, 'sixty-two thousand five hundred seventy-three'); INSERT INTO t2 VALUES(11668, 93457, 'ninety-three thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(11669, 3905, 'three thousand nine hundred five'); INSERT INTO t2 VALUES(11670, 96751, 'ninety-six thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(11671, 27515, 'twenty-seven thousand five hundred fifteen'); INSERT INTO t2 VALUES(11672, 89238, 'eighty-nine thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(11673, 79207, 'seventy-nine thousand two hundred seven'); INSERT INTO t2 VALUES(11674, 52155, 'fifty-two thousand one hundred fifty-five'); INSERT INTO t2 VALUES(11675, 66379, 'sixty-six thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(11676, 82828, 'eighty-two thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(11677, 28213, 'twenty-eight thousand two hundred thirteen'); INSERT INTO t2 VALUES(11678, 14871, 'fourteen thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(11679, 56550, 'fifty-six thousand five hundred fifty'); INSERT INTO t2 VALUES(11680, 52816, 'fifty-two thousand eight hundred sixteen'); INSERT INTO t2 VALUES(11681, 18178, 'eighteen thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(11682, 69353, 'sixty-nine thousand three hundred fifty-three'); INSERT INTO t2 VALUES(11683, 59914, 'fifty-nine thousand nine hundred fourteen'); INSERT INTO t2 VALUES(11684, 562, 'five hundred sixty-two'); INSERT INTO t2 VALUES(11685, 45702, 'forty-five thousand seven hundred two'); INSERT INTO t2 VALUES(11686, 82182, 'eighty-two thousand one hundred eighty-two'); INSERT INTO t2 VALUES(11687, 13595, 'thirteen thousand five hundred ninety-five'); INSERT INTO t2 VALUES(11688, 24475, 'twenty-four thousand four hundred seventy-five'); INSERT INTO t2 VALUES(11689, 59214, 'fifty-nine thousand two hundred fourteen'); INSERT INTO t2 VALUES(11690, 10141, 'ten thousand one hundred forty-one'); INSERT INTO t2 VALUES(11691, 75815, 'seventy-five thousand eight hundred fifteen'); INSERT INTO t2 VALUES(11692, 34818, 'thirty-four thousand eight hundred eighteen'); INSERT INTO t2 VALUES(11693, 33234, 'thirty-three thousand two hundred thirty-four'); INSERT INTO t2 VALUES(11694, 44507, 'forty-four thousand five hundred seven'); INSERT INTO t2 VALUES(11695, 38488, 'thirty-eight thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(11696, 14629, 'fourteen thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(11697, 39234, 'thirty-nine thousand two hundred thirty-four'); INSERT INTO t2 VALUES(11698, 44093, 'forty-four thousand ninety-three'); INSERT INTO t2 VALUES(11699, 64442, 'sixty-four thousand four hundred forty-two'); INSERT INTO t2 VALUES(11700, 33592, 'thirty-three thousand five hundred ninety-two'); INSERT INTO t2 VALUES(11701, 92143, 'ninety-two thousand one hundred forty-three'); INSERT INTO t2 VALUES(11702, 91737, 'ninety-one thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(11703, 13863, 'thirteen thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(11704, 89828, 'eighty-nine thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(11705, 75670, 'seventy-five thousand six hundred seventy'); INSERT INTO t2 VALUES(11706, 26145, 'twenty-six thousand one hundred forty-five'); INSERT INTO t2 VALUES(11707, 79179, 'seventy-nine thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(11708, 56352, 'fifty-six thousand three hundred fifty-two'); INSERT INTO t2 VALUES(11709, 31213, 'thirty-one thousand two hundred thirteen'); INSERT INTO t2 VALUES(11710, 31000, 'thirty-one thousand'); INSERT INTO t2 VALUES(11711, 13600, 'thirteen thousand six hundred'); INSERT INTO t2 VALUES(11712, 2726, 'two thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(11713, 11741, 'eleven thousand seven hundred forty-one'); INSERT INTO t2 VALUES(11714, 33712, 'thirty-three thousand seven hundred twelve'); INSERT INTO t2 VALUES(11715, 8952, 'eight thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(11716, 48531, 'forty-eight thousand five hundred thirty-one'); INSERT INTO t2 VALUES(11717, 17784, 'seventeen thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(11718, 42203, 'forty-two thousand two hundred three'); INSERT INTO t2 VALUES(11719, 40299, 'forty thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(11720, 11575, 'eleven thousand five hundred seventy-five'); INSERT INTO t2 VALUES(11721, 70826, 'seventy thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(11722, 39325, 'thirty-nine thousand three hundred twenty-five'); INSERT INTO t2 VALUES(11723, 12430, 'twelve thousand four hundred thirty'); INSERT INTO t2 VALUES(11724, 20568, 'twenty thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(11725, 46411, 'forty-six thousand four hundred eleven'); INSERT INTO t2 VALUES(11726, 43225, 'forty-three thousand two hundred twenty-five'); INSERT INTO t2 VALUES(11727, 74946, 'seventy-four thousand nine hundred forty-six'); INSERT INTO t2 VALUES(11728, 38168, 'thirty-eight thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(11729, 97285, 'ninety-seven thousand two hundred eighty-five'); INSERT INTO t2 VALUES(11730, 25114, 'twenty-five thousand one hundred fourteen'); INSERT INTO t2 VALUES(11731, 97553, 'ninety-seven thousand five hundred fifty-three'); INSERT INTO t2 VALUES(11732, 55344, 'fifty-five thousand three hundred forty-four'); INSERT INTO t2 VALUES(11733, 46716, 'forty-six thousand seven hundred sixteen'); INSERT INTO t2 VALUES(11734, 1349, 'one thousand three hundred forty-nine'); INSERT INTO t2 VALUES(11735, 18571, 'eighteen thousand five hundred seventy-one'); INSERT INTO t2 VALUES(11736, 81118, 'eighty-one thousand one hundred eighteen'); INSERT INTO t2 VALUES(11737, 2245, 'two thousand two hundred forty-five'); INSERT INTO t2 VALUES(11738, 43621, 'forty-three thousand six hundred twenty-one'); INSERT INTO t2 VALUES(11739, 53745, 'fifty-three thousand seven hundred forty-five'); INSERT INTO t2 VALUES(11740, 19570, 'nineteen thousand five hundred seventy'); INSERT INTO t2 VALUES(11741, 95121, 'ninety-five thousand one hundred twenty-one'); INSERT INTO t2 VALUES(11742, 41019, 'forty-one thousand nineteen'); INSERT INTO t2 VALUES(11743, 84235, 'eighty-four thousand two hundred thirty-five'); INSERT INTO t2 VALUES(11744, 62069, 'sixty-two thousand sixty-nine'); INSERT INTO t2 VALUES(11745, 12518, 'twelve thousand five hundred eighteen'); INSERT INTO t2 VALUES(11746, 32230, 'thirty-two thousand two hundred thirty'); INSERT INTO t2 VALUES(11747, 47606, 'forty-seven thousand six hundred six'); INSERT INTO t2 VALUES(11748, 36829, 'thirty-six thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(11749, 53947, 'fifty-three thousand nine hundred forty-seven'); INSERT INTO t2 VALUES(11750, 76149, 'seventy-six thousand one hundred forty-nine'); INSERT INTO t2 VALUES(11751, 62405, 'sixty-two thousand four hundred five'); INSERT INTO t2 VALUES(11752, 69111, 'sixty-nine thousand one hundred eleven'); INSERT INTO t2 VALUES(11753, 1164, 'one thousand one hundred sixty-four'); INSERT INTO t2 VALUES(11754, 11790, 'eleven thousand seven hundred ninety'); INSERT INTO t2 VALUES(11755, 31454, 'thirty-one thousand four hundred fifty-four'); INSERT INTO t2 VALUES(11756, 76515, 'seventy-six thousand five hundred fifteen'); INSERT INTO t2 VALUES(11757, 91747, 'ninety-one thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(11758, 49758, 'forty-nine thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(11759, 49956, 'forty-nine thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(11760, 16991, 'sixteen thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(11761, 32057, 'thirty-two thousand fifty-seven'); INSERT INTO t2 VALUES(11762, 97275, 'ninety-seven thousand two hundred seventy-five'); INSERT INTO t2 VALUES(11763, 9684, 'nine thousand six hundred eighty-four'); INSERT INTO t2 VALUES(11764, 75187, 'seventy-five thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(11765, 58824, 'fifty-eight thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(11766, 37976, 'thirty-seven thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(11767, 95642, 'ninety-five thousand six hundred forty-two'); INSERT INTO t2 VALUES(11768, 15224, 'fifteen thousand two hundred twenty-four'); INSERT INTO t2 VALUES(11769, 81348, 'eighty-one thousand three hundred forty-eight'); INSERT INTO t2 VALUES(11770, 53234, 'fifty-three thousand two hundred thirty-four'); INSERT INTO t2 VALUES(11771, 86414, 'eighty-six thousand four hundred fourteen'); INSERT INTO t2 VALUES(11772, 8898, 'eight thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(11773, 64085, 'sixty-four thousand eighty-five'); INSERT INTO t2 VALUES(11774, 97702, 'ninety-seven thousand seven hundred two'); INSERT INTO t2 VALUES(11775, 966, 'nine hundred sixty-six'); INSERT INTO t2 VALUES(11776, 84065, 'eighty-four thousand sixty-five'); INSERT INTO t2 VALUES(11777, 70166, 'seventy thousand one hundred sixty-six'); INSERT INTO t2 VALUES(11778, 41677, 'forty-one thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(11779, 88721, 'eighty-eight thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(11780, 92083, 'ninety-two thousand eighty-three'); INSERT INTO t2 VALUES(11781, 24249, 'twenty-four thousand two hundred forty-nine'); INSERT INTO t2 VALUES(11782, 32369, 'thirty-two thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(11783, 67490, 'sixty-seven thousand four hundred ninety'); INSERT INTO t2 VALUES(11784, 92358, 'ninety-two thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(11785, 97952, 'ninety-seven thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(11786, 8684, 'eight thousand six hundred eighty-four'); INSERT INTO t2 VALUES(11787, 96902, 'ninety-six thousand nine hundred two'); INSERT INTO t2 VALUES(11788, 25621, 'twenty-five thousand six hundred twenty-one'); INSERT INTO t2 VALUES(11789, 94190, 'ninety-four thousand one hundred ninety'); INSERT INTO t2 VALUES(11790, 79891, 'seventy-nine thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(11791, 18128, 'eighteen thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(11792, 57520, 'fifty-seven thousand five hundred twenty'); INSERT INTO t2 VALUES(11793, 31279, 'thirty-one thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(11794, 24861, 'twenty-four thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(11795, 41493, 'forty-one thousand four hundred ninety-three'); INSERT INTO t2 VALUES(11796, 70009, 'seventy thousand nine'); INSERT INTO t2 VALUES(11797, 84847, 'eighty-four thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(11798, 49539, 'forty-nine thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(11799, 39700, 'thirty-nine thousand seven hundred'); INSERT INTO t2 VALUES(11800, 69440, 'sixty-nine thousand four hundred forty'); INSERT INTO t2 VALUES(11801, 47244, 'forty-seven thousand two hundred forty-four'); INSERT INTO t2 VALUES(11802, 16192, 'sixteen thousand one hundred ninety-two'); INSERT INTO t2 VALUES(11803, 99894, 'ninety-nine thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(11804, 71204, 'seventy-one thousand two hundred four'); INSERT INTO t2 VALUES(11805, 36631, 'thirty-six thousand six hundred thirty-one'); INSERT INTO t2 VALUES(11806, 99249, 'ninety-nine thousand two hundred forty-nine'); INSERT INTO t2 VALUES(11807, 23762, 'twenty-three thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(11808, 84769, 'eighty-four thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(11809, 26880, 'twenty-six thousand eight hundred eighty'); INSERT INTO t2 VALUES(11810, 49808, 'forty-nine thousand eight hundred eight'); INSERT INTO t2 VALUES(11811, 84554, 'eighty-four thousand five hundred fifty-four'); INSERT INTO t2 VALUES(11812, 77249, 'seventy-seven thousand two hundred forty-nine'); INSERT INTO t2 VALUES(11813, 71398, 'seventy-one thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(11814, 52325, 'fifty-two thousand three hundred twenty-five'); INSERT INTO t2 VALUES(11815, 59096, 'fifty-nine thousand ninety-six'); INSERT INTO t2 VALUES(11816, 10416, 'ten thousand four hundred sixteen'); INSERT INTO t2 VALUES(11817, 63116, 'sixty-three thousand one hundred sixteen'); INSERT INTO t2 VALUES(11818, 35076, 'thirty-five thousand seventy-six'); INSERT INTO t2 VALUES(11819, 47678, 'forty-seven thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(11820, 5183, 'five thousand one hundred eighty-three'); INSERT INTO t2 VALUES(11821, 45622, 'forty-five thousand six hundred twenty-two'); INSERT INTO t2 VALUES(11822, 17876, 'seventeen thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(11823, 31904, 'thirty-one thousand nine hundred four'); INSERT INTO t2 VALUES(11824, 31790, 'thirty-one thousand seven hundred ninety'); INSERT INTO t2 VALUES(11825, 30066, 'thirty thousand sixty-six'); INSERT INTO t2 VALUES(11826, 64004, 'sixty-four thousand four'); INSERT INTO t2 VALUES(11827, 67585, 'sixty-seven thousand five hundred eighty-five'); INSERT INTO t2 VALUES(11828, 15185, 'fifteen thousand one hundred eighty-five'); INSERT INTO t2 VALUES(11829, 52327, 'fifty-two thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(11830, 82876, 'eighty-two thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(11831, 54559, 'fifty-four thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(11832, 9727, 'nine thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(11833, 20149, 'twenty thousand one hundred forty-nine'); INSERT INTO t2 VALUES(11834, 25430, 'twenty-five thousand four hundred thirty'); INSERT INTO t2 VALUES(11835, 19266, 'nineteen thousand two hundred sixty-six'); INSERT INTO t2 VALUES(11836, 33438, 'thirty-three thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(11837, 41013, 'forty-one thousand thirteen'); INSERT INTO t2 VALUES(11838, 98248, 'ninety-eight thousand two hundred forty-eight'); INSERT INTO t2 VALUES(11839, 18937, 'eighteen thousand nine hundred thirty-seven'); INSERT INTO t2 VALUES(11840, 47637, 'forty-seven thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(11841, 9573, 'nine thousand five hundred seventy-three'); INSERT INTO t2 VALUES(11842, 31136, 'thirty-one thousand one hundred thirty-six'); INSERT INTO t2 VALUES(11843, 52945, 'fifty-two thousand nine hundred forty-five'); INSERT INTO t2 VALUES(11844, 32821, 'thirty-two thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(11845, 4434, 'four thousand four hundred thirty-four'); INSERT INTO t2 VALUES(11846, 96124, 'ninety-six thousand one hundred twenty-four'); INSERT INTO t2 VALUES(11847, 99069, 'ninety-nine thousand sixty-nine'); INSERT INTO t2 VALUES(11848, 31254, 'thirty-one thousand two hundred fifty-four'); INSERT INTO t2 VALUES(11849, 98873, 'ninety-eight thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(11850, 38549, 'thirty-eight thousand five hundred forty-nine'); INSERT INTO t2 VALUES(11851, 49908, 'forty-nine thousand nine hundred eight'); INSERT INTO t2 VALUES(11852, 45663, 'forty-five thousand six hundred sixty-three'); INSERT INTO t2 VALUES(11853, 2026, 'two thousand twenty-six'); INSERT INTO t2 VALUES(11854, 14456, 'fourteen thousand four hundred fifty-six'); INSERT INTO t2 VALUES(11855, 77276, 'seventy-seven thousand two hundred seventy-six'); INSERT INTO t2 VALUES(11856, 53456, 'fifty-three thousand four hundred fifty-six'); INSERT INTO t2 VALUES(11857, 57725, 'fifty-seven thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(11858, 76567, 'seventy-six thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(11859, 8924, 'eight thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(11860, 29174, 'twenty-nine thousand one hundred seventy-four'); INSERT INTO t2 VALUES(11861, 23749, 'twenty-three thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(11862, 8948, 'eight thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(11863, 47281, 'forty-seven thousand two hundred eighty-one'); INSERT INTO t2 VALUES(11864, 97353, 'ninety-seven thousand three hundred fifty-three'); INSERT INTO t2 VALUES(11865, 95489, 'ninety-five thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(11866, 22196, 'twenty-two thousand one hundred ninety-six'); INSERT INTO t2 VALUES(11867, 35474, 'thirty-five thousand four hundred seventy-four'); INSERT INTO t2 VALUES(11868, 58670, 'fifty-eight thousand six hundred seventy'); INSERT INTO t2 VALUES(11869, 11890, 'eleven thousand eight hundred ninety'); INSERT INTO t2 VALUES(11870, 17015, 'seventeen thousand fifteen'); INSERT INTO t2 VALUES(11871, 6450, 'six thousand four hundred fifty'); INSERT INTO t2 VALUES(11872, 43611, 'forty-three thousand six hundred eleven'); INSERT INTO t2 VALUES(11873, 45989, 'forty-five thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(11874, 76160, 'seventy-six thousand one hundred sixty'); INSERT INTO t2 VALUES(11875, 12144, 'twelve thousand one hundred forty-four'); INSERT INTO t2 VALUES(11876, 27854, 'twenty-seven thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(11877, 64368, 'sixty-four thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(11878, 75500, 'seventy-five thousand five hundred'); INSERT INTO t2 VALUES(11879, 31444, 'thirty-one thousand four hundred forty-four'); INSERT INTO t2 VALUES(11880, 71191, 'seventy-one thousand one hundred ninety-one'); INSERT INTO t2 VALUES(11881, 72558, 'seventy-two thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(11882, 14077, 'fourteen thousand seventy-seven'); INSERT INTO t2 VALUES(11883, 69105, 'sixty-nine thousand one hundred five'); INSERT INTO t2 VALUES(11884, 30009, 'thirty thousand nine'); INSERT INTO t2 VALUES(11885, 40839, 'forty thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(11886, 46701, 'forty-six thousand seven hundred one'); INSERT INTO t2 VALUES(11887, 97943, 'ninety-seven thousand nine hundred forty-three'); INSERT INTO t2 VALUES(11888, 98288, 'ninety-eight thousand two hundred eighty-eight'); INSERT INTO t2 VALUES(11889, 28912, 'twenty-eight thousand nine hundred twelve'); INSERT INTO t2 VALUES(11890, 86088, 'eighty-six thousand eighty-eight'); INSERT INTO t2 VALUES(11891, 43432, 'forty-three thousand four hundred thirty-two'); INSERT INTO t2 VALUES(11892, 141, 'one hundred forty-one'); INSERT INTO t2 VALUES(11893, 16512, 'sixteen thousand five hundred twelve'); INSERT INTO t2 VALUES(11894, 61314, 'sixty-one thousand three hundred fourteen'); INSERT INTO t2 VALUES(11895, 31222, 'thirty-one thousand two hundred twenty-two'); INSERT INTO t2 VALUES(11896, 25684, 'twenty-five thousand six hundred eighty-four'); INSERT INTO t2 VALUES(11897, 54535, 'fifty-four thousand five hundred thirty-five'); INSERT INTO t2 VALUES(11898, 71056, 'seventy-one thousand fifty-six'); INSERT INTO t2 VALUES(11899, 9672, 'nine thousand six hundred seventy-two'); INSERT INTO t2 VALUES(11900, 57088, 'fifty-seven thousand eighty-eight'); INSERT INTO t2 VALUES(11901, 54500, 'fifty-four thousand five hundred'); INSERT INTO t2 VALUES(11902, 53216, 'fifty-three thousand two hundred sixteen'); INSERT INTO t2 VALUES(11903, 66047, 'sixty-six thousand forty-seven'); INSERT INTO t2 VALUES(11904, 43537, 'forty-three thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(11905, 79581, 'seventy-nine thousand five hundred eighty-one'); INSERT INTO t2 VALUES(11906, 55622, 'fifty-five thousand six hundred twenty-two'); INSERT INTO t2 VALUES(11907, 31563, 'thirty-one thousand five hundred sixty-three'); INSERT INTO t2 VALUES(11908, 40715, 'forty thousand seven hundred fifteen'); INSERT INTO t2 VALUES(11909, 25270, 'twenty-five thousand two hundred seventy'); INSERT INTO t2 VALUES(11910, 71683, 'seventy-one thousand six hundred eighty-three'); INSERT INTO t2 VALUES(11911, 46112, 'forty-six thousand one hundred twelve'); INSERT INTO t2 VALUES(11912, 69541, 'sixty-nine thousand five hundred forty-one'); INSERT INTO t2 VALUES(11913, 39070, 'thirty-nine thousand seventy'); INSERT INTO t2 VALUES(11914, 92860, 'ninety-two thousand eight hundred sixty'); INSERT INTO t2 VALUES(11915, 51286, 'fifty-one thousand two hundred eighty-six'); INSERT INTO t2 VALUES(11916, 89662, 'eighty-nine thousand six hundred sixty-two'); INSERT INTO t2 VALUES(11917, 63997, 'sixty-three thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(11918, 61622, 'sixty-one thousand six hundred twenty-two'); INSERT INTO t2 VALUES(11919, 71599, 'seventy-one thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(11920, 66126, 'sixty-six thousand one hundred twenty-six'); INSERT INTO t2 VALUES(11921, 17672, 'seventeen thousand six hundred seventy-two'); INSERT INTO t2 VALUES(11922, 63136, 'sixty-three thousand one hundred thirty-six'); INSERT INTO t2 VALUES(11923, 30246, 'thirty thousand two hundred forty-six'); INSERT INTO t2 VALUES(11924, 652, 'six hundred fifty-two'); INSERT INTO t2 VALUES(11925, 68252, 'sixty-eight thousand two hundred fifty-two'); INSERT INTO t2 VALUES(11926, 98243, 'ninety-eight thousand two hundred forty-three'); INSERT INTO t2 VALUES(11927, 1528, 'one thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(11928, 46700, 'forty-six thousand seven hundred'); INSERT INTO t2 VALUES(11929, 20258, 'twenty thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(11930, 28333, 'twenty-eight thousand three hundred thirty-three'); INSERT INTO t2 VALUES(11931, 74623, 'seventy-four thousand six hundred twenty-three'); INSERT INTO t2 VALUES(11932, 73797, 'seventy-three thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(11933, 44919, 'forty-four thousand nine hundred nineteen'); INSERT INTO t2 VALUES(11934, 45484, 'forty-five thousand four hundred eighty-four'); INSERT INTO t2 VALUES(11935, 74024, 'seventy-four thousand twenty-four'); INSERT INTO t2 VALUES(11936, 23851, 'twenty-three thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(11937, 34416, 'thirty-four thousand four hundred sixteen'); INSERT INTO t2 VALUES(11938, 18345, 'eighteen thousand three hundred forty-five'); INSERT INTO t2 VALUES(11939, 74186, 'seventy-four thousand one hundred eighty-six'); INSERT INTO t2 VALUES(11940, 15208, 'fifteen thousand two hundred eight'); INSERT INTO t2 VALUES(11941, 88294, 'eighty-eight thousand two hundred ninety-four'); INSERT INTO t2 VALUES(11942, 45589, 'forty-five thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(11943, 85941, 'eighty-five thousand nine hundred forty-one'); INSERT INTO t2 VALUES(11944, 72767, 'seventy-two thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(11945, 82383, 'eighty-two thousand three hundred eighty-three'); INSERT INTO t2 VALUES(11946, 13687, 'thirteen thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(11947, 61670, 'sixty-one thousand six hundred seventy'); INSERT INTO t2 VALUES(11948, 27324, 'twenty-seven thousand three hundred twenty-four'); INSERT INTO t2 VALUES(11949, 94486, 'ninety-four thousand four hundred eighty-six'); INSERT INTO t2 VALUES(11950, 60133, 'sixty thousand one hundred thirty-three'); INSERT INTO t2 VALUES(11951, 33852, 'thirty-three thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(11952, 40356, 'forty thousand three hundred fifty-six'); INSERT INTO t2 VALUES(11953, 36392, 'thirty-six thousand three hundred ninety-two'); INSERT INTO t2 VALUES(11954, 45489, 'forty-five thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(11955, 59903, 'fifty-nine thousand nine hundred three'); INSERT INTO t2 VALUES(11956, 36891, 'thirty-six thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(11957, 59980, 'fifty-nine thousand nine hundred eighty'); INSERT INTO t2 VALUES(11958, 30197, 'thirty thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(11959, 74634, 'seventy-four thousand six hundred thirty-four'); INSERT INTO t2 VALUES(11960, 85306, 'eighty-five thousand three hundred six'); INSERT INTO t2 VALUES(11961, 80605, 'eighty thousand six hundred five'); INSERT INTO t2 VALUES(11962, 61051, 'sixty-one thousand fifty-one'); INSERT INTO t2 VALUES(11963, 90780, 'ninety thousand seven hundred eighty'); INSERT INTO t2 VALUES(11964, 80431, 'eighty thousand four hundred thirty-one'); INSERT INTO t2 VALUES(11965, 85074, 'eighty-five thousand seventy-four'); INSERT INTO t2 VALUES(11966, 7006, 'seven thousand six'); INSERT INTO t2 VALUES(11967, 22805, 'twenty-two thousand eight hundred five'); INSERT INTO t2 VALUES(11968, 12958, 'twelve thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(11969, 89558, 'eighty-nine thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(11970, 54607, 'fifty-four thousand six hundred seven'); INSERT INTO t2 VALUES(11971, 79718, 'seventy-nine thousand seven hundred eighteen'); INSERT INTO t2 VALUES(11972, 2951, 'two thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(11973, 81787, 'eighty-one thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(11974, 93892, 'ninety-three thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(11975, 54587, 'fifty-four thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(11976, 61550, 'sixty-one thousand five hundred fifty'); INSERT INTO t2 VALUES(11977, 8255, 'eight thousand two hundred fifty-five'); INSERT INTO t2 VALUES(11978, 32437, 'thirty-two thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(11979, 31627, 'thirty-one thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(11980, 51876, 'fifty-one thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(11981, 76292, 'seventy-six thousand two hundred ninety-two'); INSERT INTO t2 VALUES(11982, 84070, 'eighty-four thousand seventy'); INSERT INTO t2 VALUES(11983, 77462, 'seventy-seven thousand four hundred sixty-two'); INSERT INTO t2 VALUES(11984, 93584, 'ninety-three thousand five hundred eighty-four'); INSERT INTO t2 VALUES(11985, 9629, 'nine thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(11986, 86058, 'eighty-six thousand fifty-eight'); INSERT INTO t2 VALUES(11987, 27023, 'twenty-seven thousand twenty-three'); INSERT INTO t2 VALUES(11988, 96387, 'ninety-six thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(11989, 57237, 'fifty-seven thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(11990, 77443, 'seventy-seven thousand four hundred forty-three'); INSERT INTO t2 VALUES(11991, 13032, 'thirteen thousand thirty-two'); INSERT INTO t2 VALUES(11992, 75312, 'seventy-five thousand three hundred twelve'); INSERT INTO t2 VALUES(11993, 74218, 'seventy-four thousand two hundred eighteen'); INSERT INTO t2 VALUES(11994, 52174, 'fifty-two thousand one hundred seventy-four'); INSERT INTO t2 VALUES(11995, 82639, 'eighty-two thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(11996, 64422, 'sixty-four thousand four hundred twenty-two'); INSERT INTO t2 VALUES(11997, 98138, 'ninety-eight thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(11998, 96761, 'ninety-six thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(11999, 4582, 'four thousand five hundred eighty-two'); INSERT INTO t2 VALUES(12000, 6209, 'six thousand two hundred nine'); INSERT INTO t2 VALUES(12001, 78080, 'seventy-eight thousand eighty'); INSERT INTO t2 VALUES(12002, 35352, 'thirty-five thousand three hundred fifty-two'); INSERT INTO t2 VALUES(12003, 78899, 'seventy-eight thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(12004, 17227, 'seventeen thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(12005, 4726, 'four thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(12006, 74902, 'seventy-four thousand nine hundred two'); INSERT INTO t2 VALUES(12007, 75582, 'seventy-five thousand five hundred eighty-two'); INSERT INTO t2 VALUES(12008, 3597, 'three thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(12009, 23732, 'twenty-three thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(12010, 21848, 'twenty-one thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(12011, 1842, 'one thousand eight hundred forty-two'); INSERT INTO t2 VALUES(12012, 62225, 'sixty-two thousand two hundred twenty-five'); INSERT INTO t2 VALUES(12013, 98303, 'ninety-eight thousand three hundred three'); INSERT INTO t2 VALUES(12014, 67860, 'sixty-seven thousand eight hundred sixty'); INSERT INTO t2 VALUES(12015, 87733, 'eighty-seven thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(12016, 44193, 'forty-four thousand one hundred ninety-three'); INSERT INTO t2 VALUES(12017, 5024, 'five thousand twenty-four'); INSERT INTO t2 VALUES(12018, 80503, 'eighty thousand five hundred three'); INSERT INTO t2 VALUES(12019, 44968, 'forty-four thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(12020, 1775, 'one thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(12021, 90687, 'ninety thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(12022, 32791, 'thirty-two thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(12023, 88837, 'eighty-eight thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(12024, 66802, 'sixty-six thousand eight hundred two'); INSERT INTO t2 VALUES(12025, 93401, 'ninety-three thousand four hundred one'); INSERT INTO t2 VALUES(12026, 56424, 'fifty-six thousand four hundred twenty-four'); INSERT INTO t2 VALUES(12027, 34182, 'thirty-four thousand one hundred eighty-two'); INSERT INTO t2 VALUES(12028, 95190, 'ninety-five thousand one hundred ninety'); INSERT INTO t2 VALUES(12029, 55994, 'fifty-five thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(12030, 21357, 'twenty-one thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(12031, 71324, 'seventy-one thousand three hundred twenty-four'); INSERT INTO t2 VALUES(12032, 92769, 'ninety-two thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(12033, 19257, 'nineteen thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(12034, 28154, 'twenty-eight thousand one hundred fifty-four'); INSERT INTO t2 VALUES(12035, 79926, 'seventy-nine thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(12036, 3807, 'three thousand eight hundred seven'); INSERT INTO t2 VALUES(12037, 92542, 'ninety-two thousand five hundred forty-two'); INSERT INTO t2 VALUES(12038, 41857, 'forty-one thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(12039, 99224, 'ninety-nine thousand two hundred twenty-four'); INSERT INTO t2 VALUES(12040, 28124, 'twenty-eight thousand one hundred twenty-four'); INSERT INTO t2 VALUES(12041, 24823, 'twenty-four thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(12042, 39786, 'thirty-nine thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(12043, 30406, 'thirty thousand four hundred six'); INSERT INTO t2 VALUES(12044, 95118, 'ninety-five thousand one hundred eighteen'); INSERT INTO t2 VALUES(12045, 94458, 'ninety-four thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(12046, 23326, 'twenty-three thousand three hundred twenty-six'); INSERT INTO t2 VALUES(12047, 81287, 'eighty-one thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(12048, 35749, 'thirty-five thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(12049, 13223, 'thirteen thousand two hundred twenty-three'); INSERT INTO t2 VALUES(12050, 28907, 'twenty-eight thousand nine hundred seven'); INSERT INTO t2 VALUES(12051, 27947, 'twenty-seven thousand nine hundred forty-seven'); INSERT INTO t2 VALUES(12052, 58608, 'fifty-eight thousand six hundred eight'); INSERT INTO t2 VALUES(12053, 92961, 'ninety-two thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(12054, 69605, 'sixty-nine thousand six hundred five'); INSERT INTO t2 VALUES(12055, 52464, 'fifty-two thousand four hundred sixty-four'); INSERT INTO t2 VALUES(12056, 93458, 'ninety-three thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(12057, 70854, 'seventy thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(12058, 13130, 'thirteen thousand one hundred thirty'); INSERT INTO t2 VALUES(12059, 41633, 'forty-one thousand six hundred thirty-three'); INSERT INTO t2 VALUES(12060, 18300, 'eighteen thousand three hundred'); INSERT INTO t2 VALUES(12061, 52547, 'fifty-two thousand five hundred forty-seven'); INSERT INTO t2 VALUES(12062, 13523, 'thirteen thousand five hundred twenty-three'); INSERT INTO t2 VALUES(12063, 84997, 'eighty-four thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(12064, 64646, 'sixty-four thousand six hundred forty-six'); INSERT INTO t2 VALUES(12065, 11803, 'eleven thousand eight hundred three'); INSERT INTO t2 VALUES(12066, 53679, 'fifty-three thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(12067, 29379, 'twenty-nine thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(12068, 59549, 'fifty-nine thousand five hundred forty-nine'); INSERT INTO t2 VALUES(12069, 96219, 'ninety-six thousand two hundred nineteen'); INSERT INTO t2 VALUES(12070, 56954, 'fifty-six thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(12071, 79549, 'seventy-nine thousand five hundred forty-nine'); INSERT INTO t2 VALUES(12072, 77960, 'seventy-seven thousand nine hundred sixty'); INSERT INTO t2 VALUES(12073, 62591, 'sixty-two thousand five hundred ninety-one'); INSERT INTO t2 VALUES(12074, 72297, 'seventy-two thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(12075, 1606, 'one thousand six hundred six'); INSERT INTO t2 VALUES(12076, 36496, 'thirty-six thousand four hundred ninety-six'); INSERT INTO t2 VALUES(12077, 52053, 'fifty-two thousand fifty-three'); INSERT INTO t2 VALUES(12078, 85304, 'eighty-five thousand three hundred four'); INSERT INTO t2 VALUES(12079, 2493, 'two thousand four hundred ninety-three'); INSERT INTO t2 VALUES(12080, 47966, 'forty-seven thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(12081, 35092, 'thirty-five thousand ninety-two'); INSERT INTO t2 VALUES(12082, 74571, 'seventy-four thousand five hundred seventy-one'); INSERT INTO t2 VALUES(12083, 85359, 'eighty-five thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(12084, 30082, 'thirty thousand eighty-two'); INSERT INTO t2 VALUES(12085, 14735, 'fourteen thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(12086, 93257, 'ninety-three thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(12087, 53666, 'fifty-three thousand six hundred sixty-six'); INSERT INTO t2 VALUES(12088, 74083, 'seventy-four thousand eighty-three'); INSERT INTO t2 VALUES(12089, 86892, 'eighty-six thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(12090, 91726, 'ninety-one thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(12091, 28735, 'twenty-eight thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(12092, 39033, 'thirty-nine thousand thirty-three'); INSERT INTO t2 VALUES(12093, 21608, 'twenty-one thousand six hundred eight'); INSERT INTO t2 VALUES(12094, 30588, 'thirty thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(12095, 36846, 'thirty-six thousand eight hundred forty-six'); INSERT INTO t2 VALUES(12096, 92425, 'ninety-two thousand four hundred twenty-five'); INSERT INTO t2 VALUES(12097, 55883, 'fifty-five thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(12098, 22250, 'twenty-two thousand two hundred fifty'); INSERT INTO t2 VALUES(12099, 45860, 'forty-five thousand eight hundred sixty'); INSERT INTO t2 VALUES(12100, 30744, 'thirty thousand seven hundred forty-four'); INSERT INTO t2 VALUES(12101, 34829, 'thirty-four thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(12102, 96978, 'ninety-six thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(12103, 24470, 'twenty-four thousand four hundred seventy'); INSERT INTO t2 VALUES(12104, 33096, 'thirty-three thousand ninety-six'); INSERT INTO t2 VALUES(12105, 49415, 'forty-nine thousand four hundred fifteen'); INSERT INTO t2 VALUES(12106, 5216, 'five thousand two hundred sixteen'); INSERT INTO t2 VALUES(12107, 9347, 'nine thousand three hundred forty-seven'); INSERT INTO t2 VALUES(12108, 9865, 'nine thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(12109, 93190, 'ninety-three thousand one hundred ninety'); INSERT INTO t2 VALUES(12110, 63217, 'sixty-three thousand two hundred seventeen'); INSERT INTO t2 VALUES(12111, 36516, 'thirty-six thousand five hundred sixteen'); INSERT INTO t2 VALUES(12112, 62330, 'sixty-two thousand three hundred thirty'); INSERT INTO t2 VALUES(12113, 786, 'seven hundred eighty-six'); INSERT INTO t2 VALUES(12114, 99356, 'ninety-nine thousand three hundred fifty-six'); INSERT INTO t2 VALUES(12115, 54332, 'fifty-four thousand three hundred thirty-two'); INSERT INTO t2 VALUES(12116, 71533, 'seventy-one thousand five hundred thirty-three'); INSERT INTO t2 VALUES(12117, 68263, 'sixty-eight thousand two hundred sixty-three'); INSERT INTO t2 VALUES(12118, 86100, 'eighty-six thousand one hundred'); INSERT INTO t2 VALUES(12119, 16879, 'sixteen thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(12120, 72121, 'seventy-two thousand one hundred twenty-one'); INSERT INTO t2 VALUES(12121, 54512, 'fifty-four thousand five hundred twelve'); INSERT INTO t2 VALUES(12122, 25791, 'twenty-five thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(12123, 8576, 'eight thousand five hundred seventy-six'); INSERT INTO t2 VALUES(12124, 64064, 'sixty-four thousand sixty-four'); INSERT INTO t2 VALUES(12125, 83319, 'eighty-three thousand three hundred nineteen'); INSERT INTO t2 VALUES(12126, 88386, 'eighty-eight thousand three hundred eighty-six'); INSERT INTO t2 VALUES(12127, 33513, 'thirty-three thousand five hundred thirteen'); INSERT INTO t2 VALUES(12128, 88564, 'eighty-eight thousand five hundred sixty-four'); INSERT INTO t2 VALUES(12129, 65299, 'sixty-five thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(12130, 52720, 'fifty-two thousand seven hundred twenty'); INSERT INTO t2 VALUES(12131, 23604, 'twenty-three thousand six hundred four'); INSERT INTO t2 VALUES(12132, 42959, 'forty-two thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(12133, 26637, 'twenty-six thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(12134, 90758, 'ninety thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(12135, 39463, 'thirty-nine thousand four hundred sixty-three'); INSERT INTO t2 VALUES(12136, 67973, 'sixty-seven thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(12137, 35897, 'thirty-five thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(12138, 25051, 'twenty-five thousand fifty-one'); INSERT INTO t2 VALUES(12139, 92027, 'ninety-two thousand twenty-seven'); INSERT INTO t2 VALUES(12140, 76551, 'seventy-six thousand five hundred fifty-one'); INSERT INTO t2 VALUES(12141, 67406, 'sixty-seven thousand four hundred six'); INSERT INTO t2 VALUES(12142, 78730, 'seventy-eight thousand seven hundred thirty'); INSERT INTO t2 VALUES(12143, 2327, 'two thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(12144, 49857, 'forty-nine thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(12145, 71071, 'seventy-one thousand seventy-one'); INSERT INTO t2 VALUES(12146, 62878, 'sixty-two thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(12147, 64558, 'sixty-four thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(12148, 97507, 'ninety-seven thousand five hundred seven'); INSERT INTO t2 VALUES(12149, 1813, 'one thousand eight hundred thirteen'); INSERT INTO t2 VALUES(12150, 6176, 'six thousand one hundred seventy-six'); INSERT INTO t2 VALUES(12151, 24817, 'twenty-four thousand eight hundred seventeen'); INSERT INTO t2 VALUES(12152, 50946, 'fifty thousand nine hundred forty-six'); INSERT INTO t2 VALUES(12153, 55529, 'fifty-five thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(12154, 8122, 'eight thousand one hundred twenty-two'); INSERT INTO t2 VALUES(12155, 80826, 'eighty thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(12156, 47924, 'forty-seven thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(12157, 44175, 'forty-four thousand one hundred seventy-five'); INSERT INTO t2 VALUES(12158, 45190, 'forty-five thousand one hundred ninety'); INSERT INTO t2 VALUES(12159, 73238, 'seventy-three thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(12160, 7085, 'seven thousand eighty-five'); INSERT INTO t2 VALUES(12161, 3607, 'three thousand six hundred seven'); INSERT INTO t2 VALUES(12162, 2122, 'two thousand one hundred twenty-two'); INSERT INTO t2 VALUES(12163, 58362, 'fifty-eight thousand three hundred sixty-two'); INSERT INTO t2 VALUES(12164, 60497, 'sixty thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(12165, 70062, 'seventy thousand sixty-two'); INSERT INTO t2 VALUES(12166, 60827, 'sixty thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(12167, 18172, 'eighteen thousand one hundred seventy-two'); INSERT INTO t2 VALUES(12168, 74207, 'seventy-four thousand two hundred seven'); INSERT INTO t2 VALUES(12169, 71080, 'seventy-one thousand eighty'); INSERT INTO t2 VALUES(12170, 13839, 'thirteen thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(12171, 89290, 'eighty-nine thousand two hundred ninety'); INSERT INTO t2 VALUES(12172, 39482, 'thirty-nine thousand four hundred eighty-two'); INSERT INTO t2 VALUES(12173, 67801, 'sixty-seven thousand eight hundred one'); INSERT INTO t2 VALUES(12174, 25226, 'twenty-five thousand two hundred twenty-six'); INSERT INTO t2 VALUES(12175, 19676, 'nineteen thousand six hundred seventy-six'); INSERT INTO t2 VALUES(12176, 72848, 'seventy-two thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(12177, 28054, 'twenty-eight thousand fifty-four'); INSERT INTO t2 VALUES(12178, 76639, 'seventy-six thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(12179, 42445, 'forty-two thousand four hundred forty-five'); INSERT INTO t2 VALUES(12180, 30299, 'thirty thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(12181, 55329, 'fifty-five thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(12182, 40899, 'forty thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(12183, 29180, 'twenty-nine thousand one hundred eighty'); INSERT INTO t2 VALUES(12184, 52892, 'fifty-two thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(12185, 52002, 'fifty-two thousand two'); INSERT INTO t2 VALUES(12186, 84816, 'eighty-four thousand eight hundred sixteen'); INSERT INTO t2 VALUES(12187, 29265, 'twenty-nine thousand two hundred sixty-five'); INSERT INTO t2 VALUES(12188, 43137, 'forty-three thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(12189, 96602, 'ninety-six thousand six hundred two'); INSERT INTO t2 VALUES(12190, 19642, 'nineteen thousand six hundred forty-two'); INSERT INTO t2 VALUES(12191, 30171, 'thirty thousand one hundred seventy-one'); INSERT INTO t2 VALUES(12192, 23830, 'twenty-three thousand eight hundred thirty'); INSERT INTO t2 VALUES(12193, 30552, 'thirty thousand five hundred fifty-two'); INSERT INTO t2 VALUES(12194, 25989, 'twenty-five thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(12195, 71307, 'seventy-one thousand three hundred seven'); INSERT INTO t2 VALUES(12196, 73492, 'seventy-three thousand four hundred ninety-two'); INSERT INTO t2 VALUES(12197, 56640, 'fifty-six thousand six hundred forty'); INSERT INTO t2 VALUES(12198, 75755, 'seventy-five thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(12199, 91713, 'ninety-one thousand seven hundred thirteen'); INSERT INTO t2 VALUES(12200, 83528, 'eighty-three thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(12201, 52843, 'fifty-two thousand eight hundred forty-three'); INSERT INTO t2 VALUES(12202, 1420, 'one thousand four hundred twenty'); INSERT INTO t2 VALUES(12203, 48160, 'forty-eight thousand one hundred sixty'); INSERT INTO t2 VALUES(12204, 48789, 'forty-eight thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(12205, 80881, 'eighty thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(12206, 86454, 'eighty-six thousand four hundred fifty-four'); INSERT INTO t2 VALUES(12207, 55861, 'fifty-five thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(12208, 73894, 'seventy-three thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(12209, 25268, 'twenty-five thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(12210, 63367, 'sixty-three thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(12211, 6405, 'six thousand four hundred five'); INSERT INTO t2 VALUES(12212, 19080, 'nineteen thousand eighty'); INSERT INTO t2 VALUES(12213, 33111, 'thirty-three thousand one hundred eleven'); INSERT INTO t2 VALUES(12214, 41973, 'forty-one thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(12215, 75260, 'seventy-five thousand two hundred sixty'); INSERT INTO t2 VALUES(12216, 5754, 'five thousand seven hundred fifty-four'); INSERT INTO t2 VALUES(12217, 84202, 'eighty-four thousand two hundred two'); INSERT INTO t2 VALUES(12218, 91018, 'ninety-one thousand eighteen'); INSERT INTO t2 VALUES(12219, 22588, 'twenty-two thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(12220, 63973, 'sixty-three thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(12221, 19906, 'nineteen thousand nine hundred six'); INSERT INTO t2 VALUES(12222, 98196, 'ninety-eight thousand one hundred ninety-six'); INSERT INTO t2 VALUES(12223, 14860, 'fourteen thousand eight hundred sixty'); INSERT INTO t2 VALUES(12224, 51848, 'fifty-one thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(12225, 34090, 'thirty-four thousand ninety'); INSERT INTO t2 VALUES(12226, 11671, 'eleven thousand six hundred seventy-one'); INSERT INTO t2 VALUES(12227, 6585, 'six thousand five hundred eighty-five'); INSERT INTO t2 VALUES(12228, 40686, 'forty thousand six hundred eighty-six'); INSERT INTO t2 VALUES(12229, 84118, 'eighty-four thousand one hundred eighteen'); INSERT INTO t2 VALUES(12230, 58590, 'fifty-eight thousand five hundred ninety'); INSERT INTO t2 VALUES(12231, 98857, 'ninety-eight thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(12232, 89544, 'eighty-nine thousand five hundred forty-four'); INSERT INTO t2 VALUES(12233, 53821, 'fifty-three thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(12234, 33318, 'thirty-three thousand three hundred eighteen'); INSERT INTO t2 VALUES(12235, 26043, 'twenty-six thousand forty-three'); INSERT INTO t2 VALUES(12236, 48281, 'forty-eight thousand two hundred eighty-one'); INSERT INTO t2 VALUES(12237, 29938, 'twenty-nine thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(12238, 6697, 'six thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(12239, 62781, 'sixty-two thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(12240, 54537, 'fifty-four thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(12241, 51026, 'fifty-one thousand twenty-six'); INSERT INTO t2 VALUES(12242, 31972, 'thirty-one thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(12243, 82938, 'eighty-two thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(12244, 9145, 'nine thousand one hundred forty-five'); INSERT INTO t2 VALUES(12245, 37567, 'thirty-seven thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(12246, 30936, 'thirty thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(12247, 10344, 'ten thousand three hundred forty-four'); INSERT INTO t2 VALUES(12248, 8213, 'eight thousand two hundred thirteen'); INSERT INTO t2 VALUES(12249, 28529, 'twenty-eight thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(12250, 41079, 'forty-one thousand seventy-nine'); INSERT INTO t2 VALUES(12251, 53803, 'fifty-three thousand eight hundred three'); INSERT INTO t2 VALUES(12252, 42259, 'forty-two thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(12253, 41989, 'forty-one thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(12254, 70215, 'seventy thousand two hundred fifteen'); INSERT INTO t2 VALUES(12255, 11850, 'eleven thousand eight hundred fifty'); INSERT INTO t2 VALUES(12256, 13274, 'thirteen thousand two hundred seventy-four'); INSERT INTO t2 VALUES(12257, 29394, 'twenty-nine thousand three hundred ninety-four'); INSERT INTO t2 VALUES(12258, 99859, 'ninety-nine thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(12259, 75423, 'seventy-five thousand four hundred twenty-three'); INSERT INTO t2 VALUES(12260, 52447, 'fifty-two thousand four hundred forty-seven'); INSERT INTO t2 VALUES(12261, 63383, 'sixty-three thousand three hundred eighty-three'); INSERT INTO t2 VALUES(12262, 79578, 'seventy-nine thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(12263, 31439, 'thirty-one thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(12264, 54486, 'fifty-four thousand four hundred eighty-six'); INSERT INTO t2 VALUES(12265, 86599, 'eighty-six thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(12266, 10536, 'ten thousand five hundred thirty-six'); INSERT INTO t2 VALUES(12267, 52046, 'fifty-two thousand forty-six'); INSERT INTO t2 VALUES(12268, 3438, 'three thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(12269, 78848, 'seventy-eight thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(12270, 25318, 'twenty-five thousand three hundred eighteen'); INSERT INTO t2 VALUES(12271, 25220, 'twenty-five thousand two hundred twenty'); INSERT INTO t2 VALUES(12272, 82668, 'eighty-two thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(12273, 10255, 'ten thousand two hundred fifty-five'); INSERT INTO t2 VALUES(12274, 53838, 'fifty-three thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(12275, 58037, 'fifty-eight thousand thirty-seven'); INSERT INTO t2 VALUES(12276, 12809, 'twelve thousand eight hundred nine'); INSERT INTO t2 VALUES(12277, 89671, 'eighty-nine thousand six hundred seventy-one'); INSERT INTO t2 VALUES(12278, 96811, 'ninety-six thousand eight hundred eleven'); INSERT INTO t2 VALUES(12279, 69244, 'sixty-nine thousand two hundred forty-four'); INSERT INTO t2 VALUES(12280, 35057, 'thirty-five thousand fifty-seven'); INSERT INTO t2 VALUES(12281, 71045, 'seventy-one thousand forty-five'); INSERT INTO t2 VALUES(12282, 82984, 'eighty-two thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(12283, 95160, 'ninety-five thousand one hundred sixty'); INSERT INTO t2 VALUES(12284, 7287, 'seven thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(12285, 51887, 'fifty-one thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(12286, 20786, 'twenty thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(12287, 69513, 'sixty-nine thousand five hundred thirteen'); INSERT INTO t2 VALUES(12288, 57050, 'fifty-seven thousand fifty'); INSERT INTO t2 VALUES(12289, 85885, 'eighty-five thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(12290, 7933, 'seven thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(12291, 49332, 'forty-nine thousand three hundred thirty-two'); INSERT INTO t2 VALUES(12292, 25889, 'twenty-five thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(12293, 18142, 'eighteen thousand one hundred forty-two'); INSERT INTO t2 VALUES(12294, 15069, 'fifteen thousand sixty-nine'); INSERT INTO t2 VALUES(12295, 76497, 'seventy-six thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(12296, 6859, 'six thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(12297, 51426, 'fifty-one thousand four hundred twenty-six'); INSERT INTO t2 VALUES(12298, 54449, 'fifty-four thousand four hundred forty-nine'); INSERT INTO t2 VALUES(12299, 39365, 'thirty-nine thousand three hundred sixty-five'); INSERT INTO t2 VALUES(12300, 80565, 'eighty thousand five hundred sixty-five'); INSERT INTO t2 VALUES(12301, 84310, 'eighty-four thousand three hundred ten'); INSERT INTO t2 VALUES(12302, 81282, 'eighty-one thousand two hundred eighty-two'); INSERT INTO t2 VALUES(12303, 47045, 'forty-seven thousand forty-five'); INSERT INTO t2 VALUES(12304, 25644, 'twenty-five thousand six hundred forty-four'); INSERT INTO t2 VALUES(12305, 54249, 'fifty-four thousand two hundred forty-nine'); INSERT INTO t2 VALUES(12306, 78917, 'seventy-eight thousand nine hundred seventeen'); INSERT INTO t2 VALUES(12307, 24516, 'twenty-four thousand five hundred sixteen'); INSERT INTO t2 VALUES(12308, 56776, 'fifty-six thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(12309, 59310, 'fifty-nine thousand three hundred ten'); INSERT INTO t2 VALUES(12310, 6642, 'six thousand six hundred forty-two'); INSERT INTO t2 VALUES(12311, 92751, 'ninety-two thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(12312, 43548, 'forty-three thousand five hundred forty-eight'); INSERT INTO t2 VALUES(12313, 10328, 'ten thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(12314, 4504, 'four thousand five hundred four'); INSERT INTO t2 VALUES(12315, 34368, 'thirty-four thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(12316, 5429, 'five thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(12317, 11693, 'eleven thousand six hundred ninety-three'); INSERT INTO t2 VALUES(12318, 58070, 'fifty-eight thousand seventy'); INSERT INTO t2 VALUES(12319, 5743, 'five thousand seven hundred forty-three'); INSERT INTO t2 VALUES(12320, 33981, 'thirty-three thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(12321, 81115, 'eighty-one thousand one hundred fifteen'); INSERT INTO t2 VALUES(12322, 66923, 'sixty-six thousand nine hundred twenty-three'); INSERT INTO t2 VALUES(12323, 85256, 'eighty-five thousand two hundred fifty-six'); INSERT INTO t2 VALUES(12324, 17389, 'seventeen thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(12325, 51630, 'fifty-one thousand six hundred thirty'); INSERT INTO t2 VALUES(12326, 2347, 'two thousand three hundred forty-seven'); INSERT INTO t2 VALUES(12327, 10001, 'ten thousand one'); INSERT INTO t2 VALUES(12328, 13498, 'thirteen thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(12329, 90259, 'ninety thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(12330, 77607, 'seventy-seven thousand six hundred seven'); INSERT INTO t2 VALUES(12331, 83392, 'eighty-three thousand three hundred ninety-two'); INSERT INTO t2 VALUES(12332, 8612, 'eight thousand six hundred twelve'); INSERT INTO t2 VALUES(12333, 87856, 'eighty-seven thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(12334, 79804, 'seventy-nine thousand eight hundred four'); INSERT INTO t2 VALUES(12335, 79144, 'seventy-nine thousand one hundred forty-four'); INSERT INTO t2 VALUES(12336, 99885, 'ninety-nine thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(12337, 89617, 'eighty-nine thousand six hundred seventeen'); INSERT INTO t2 VALUES(12338, 72743, 'seventy-two thousand seven hundred forty-three'); INSERT INTO t2 VALUES(12339, 29473, 'twenty-nine thousand four hundred seventy-three'); INSERT INTO t2 VALUES(12340, 65606, 'sixty-five thousand six hundred six'); INSERT INTO t2 VALUES(12341, 82093, 'eighty-two thousand ninety-three'); INSERT INTO t2 VALUES(12342, 75704, 'seventy-five thousand seven hundred four'); INSERT INTO t2 VALUES(12343, 51583, 'fifty-one thousand five hundred eighty-three'); INSERT INTO t2 VALUES(12344, 87750, 'eighty-seven thousand seven hundred fifty'); INSERT INTO t2 VALUES(12345, 30807, 'thirty thousand eight hundred seven'); INSERT INTO t2 VALUES(12346, 43634, 'forty-three thousand six hundred thirty-four'); INSERT INTO t2 VALUES(12347, 63906, 'sixty-three thousand nine hundred six'); INSERT INTO t2 VALUES(12348, 48042, 'forty-eight thousand forty-two'); INSERT INTO t2 VALUES(12349, 13080, 'thirteen thousand eighty'); INSERT INTO t2 VALUES(12350, 46924, 'forty-six thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(12351, 4705, 'four thousand seven hundred five'); INSERT INTO t2 VALUES(12352, 24807, 'twenty-four thousand eight hundred seven'); INSERT INTO t2 VALUES(12353, 15508, 'fifteen thousand five hundred eight'); INSERT INTO t2 VALUES(12354, 78974, 'seventy-eight thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(12355, 67963, 'sixty-seven thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(12356, 9967, 'nine thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(12357, 29620, 'twenty-nine thousand six hundred twenty'); INSERT INTO t2 VALUES(12358, 97574, 'ninety-seven thousand five hundred seventy-four'); INSERT INTO t2 VALUES(12359, 46898, 'forty-six thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(12360, 91949, 'ninety-one thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(12361, 24001, 'twenty-four thousand one'); INSERT INTO t2 VALUES(12362, 37340, 'thirty-seven thousand three hundred forty'); INSERT INTO t2 VALUES(12363, 74190, 'seventy-four thousand one hundred ninety'); INSERT INTO t2 VALUES(12364, 90123, 'ninety thousand one hundred twenty-three'); INSERT INTO t2 VALUES(12365, 74066, 'seventy-four thousand sixty-six'); INSERT INTO t2 VALUES(12366, 53244, 'fifty-three thousand two hundred forty-four'); INSERT INTO t2 VALUES(12367, 78664, 'seventy-eight thousand six hundred sixty-four'); INSERT INTO t2 VALUES(12368, 5096, 'five thousand ninety-six'); INSERT INTO t2 VALUES(12369, 84981, 'eighty-four thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(12370, 78508, 'seventy-eight thousand five hundred eight'); INSERT INTO t2 VALUES(12371, 56274, 'fifty-six thousand two hundred seventy-four'); INSERT INTO t2 VALUES(12372, 11935, 'eleven thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(12373, 47434, 'forty-seven thousand four hundred thirty-four'); INSERT INTO t2 VALUES(12374, 5929, 'five thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(12375, 49918, 'forty-nine thousand nine hundred eighteen'); INSERT INTO t2 VALUES(12376, 55855, 'fifty-five thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(12377, 79168, 'seventy-nine thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(12378, 48938, 'forty-eight thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(12379, 55363, 'fifty-five thousand three hundred sixty-three'); INSERT INTO t2 VALUES(12380, 87819, 'eighty-seven thousand eight hundred nineteen'); INSERT INTO t2 VALUES(12381, 53080, 'fifty-three thousand eighty'); INSERT INTO t2 VALUES(12382, 14882, 'fourteen thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(12383, 6312, 'six thousand three hundred twelve'); INSERT INTO t2 VALUES(12384, 79339, 'seventy-nine thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(12385, 6538, 'six thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(12386, 43578, 'forty-three thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(12387, 18912, 'eighteen thousand nine hundred twelve'); INSERT INTO t2 VALUES(12388, 37735, 'thirty-seven thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(12389, 22348, 'twenty-two thousand three hundred forty-eight'); INSERT INTO t2 VALUES(12390, 96195, 'ninety-six thousand one hundred ninety-five'); INSERT INTO t2 VALUES(12391, 98151, 'ninety-eight thousand one hundred fifty-one'); INSERT INTO t2 VALUES(12392, 43135, 'forty-three thousand one hundred thirty-five'); INSERT INTO t2 VALUES(12393, 16904, 'sixteen thousand nine hundred four'); INSERT INTO t2 VALUES(12394, 27160, 'twenty-seven thousand one hundred sixty'); INSERT INTO t2 VALUES(12395, 71701, 'seventy-one thousand seven hundred one'); INSERT INTO t2 VALUES(12396, 46695, 'forty-six thousand six hundred ninety-five'); INSERT INTO t2 VALUES(12397, 37360, 'thirty-seven thousand three hundred sixty'); INSERT INTO t2 VALUES(12398, 72023, 'seventy-two thousand twenty-three'); INSERT INTO t2 VALUES(12399, 99512, 'ninety-nine thousand five hundred twelve'); INSERT INTO t2 VALUES(12400, 59230, 'fifty-nine thousand two hundred thirty'); INSERT INTO t2 VALUES(12401, 89088, 'eighty-nine thousand eighty-eight'); INSERT INTO t2 VALUES(12402, 5179, 'five thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(12403, 22065, 'twenty-two thousand sixty-five'); INSERT INTO t2 VALUES(12404, 83182, 'eighty-three thousand one hundred eighty-two'); INSERT INTO t2 VALUES(12405, 44080, 'forty-four thousand eighty'); INSERT INTO t2 VALUES(12406, 87365, 'eighty-seven thousand three hundred sixty-five'); INSERT INTO t2 VALUES(12407, 21815, 'twenty-one thousand eight hundred fifteen'); INSERT INTO t2 VALUES(12408, 48128, 'forty-eight thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(12409, 11797, 'eleven thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(12410, 34523, 'thirty-four thousand five hundred twenty-three'); INSERT INTO t2 VALUES(12411, 43112, 'forty-three thousand one hundred twelve'); INSERT INTO t2 VALUES(12412, 7165, 'seven thousand one hundred sixty-five'); INSERT INTO t2 VALUES(12413, 57265, 'fifty-seven thousand two hundred sixty-five'); INSERT INTO t2 VALUES(12414, 85802, 'eighty-five thousand eight hundred two'); INSERT INTO t2 VALUES(12415, 8449, 'eight thousand four hundred forty-nine'); INSERT INTO t2 VALUES(12416, 44829, 'forty-four thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(12417, 76544, 'seventy-six thousand five hundred forty-four'); INSERT INTO t2 VALUES(12418, 36108, 'thirty-six thousand one hundred eight'); INSERT INTO t2 VALUES(12419, 58122, 'fifty-eight thousand one hundred twenty-two'); INSERT INTO t2 VALUES(12420, 94531, 'ninety-four thousand five hundred thirty-one'); INSERT INTO t2 VALUES(12421, 79127, 'seventy-nine thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(12422, 81039, 'eighty-one thousand thirty-nine'); INSERT INTO t2 VALUES(12423, 54386, 'fifty-four thousand three hundred eighty-six'); INSERT INTO t2 VALUES(12424, 96969, 'ninety-six thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(12425, 65374, 'sixty-five thousand three hundred seventy-four'); INSERT INTO t2 VALUES(12426, 57434, 'fifty-seven thousand four hundred thirty-four'); INSERT INTO t2 VALUES(12427, 57308, 'fifty-seven thousand three hundred eight'); INSERT INTO t2 VALUES(12428, 87415, 'eighty-seven thousand four hundred fifteen'); INSERT INTO t2 VALUES(12429, 47818, 'forty-seven thousand eight hundred eighteen'); INSERT INTO t2 VALUES(12430, 88685, 'eighty-eight thousand six hundred eighty-five'); INSERT INTO t2 VALUES(12431, 75500, 'seventy-five thousand five hundred'); INSERT INTO t2 VALUES(12432, 88831, 'eighty-eight thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(12433, 99896, 'ninety-nine thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(12434, 4614, 'four thousand six hundred fourteen'); INSERT INTO t2 VALUES(12435, 16059, 'sixteen thousand fifty-nine'); INSERT INTO t2 VALUES(12436, 21699, 'twenty-one thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(12437, 76496, 'seventy-six thousand four hundred ninety-six'); INSERT INTO t2 VALUES(12438, 54927, 'fifty-four thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(12439, 57888, 'fifty-seven thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(12440, 98713, 'ninety-eight thousand seven hundred thirteen'); INSERT INTO t2 VALUES(12441, 10039, 'ten thousand thirty-nine'); INSERT INTO t2 VALUES(12442, 74768, 'seventy-four thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(12443, 31123, 'thirty-one thousand one hundred twenty-three'); INSERT INTO t2 VALUES(12444, 3117, 'three thousand one hundred seventeen'); INSERT INTO t2 VALUES(12445, 71809, 'seventy-one thousand eight hundred nine'); INSERT INTO t2 VALUES(12446, 20612, 'twenty thousand six hundred twelve'); INSERT INTO t2 VALUES(12447, 33991, 'thirty-three thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(12448, 17885, 'seventeen thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(12449, 55950, 'fifty-five thousand nine hundred fifty'); INSERT INTO t2 VALUES(12450, 79687, 'seventy-nine thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(12451, 64151, 'sixty-four thousand one hundred fifty-one'); INSERT INTO t2 VALUES(12452, 91814, 'ninety-one thousand eight hundred fourteen'); INSERT INTO t2 VALUES(12453, 47908, 'forty-seven thousand nine hundred eight'); INSERT INTO t2 VALUES(12454, 42794, 'forty-two thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(12455, 19303, 'nineteen thousand three hundred three'); INSERT INTO t2 VALUES(12456, 77083, 'seventy-seven thousand eighty-three'); INSERT INTO t2 VALUES(12457, 49044, 'forty-nine thousand forty-four'); INSERT INTO t2 VALUES(12458, 7847, 'seven thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(12459, 43587, 'forty-three thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(12460, 94462, 'ninety-four thousand four hundred sixty-two'); INSERT INTO t2 VALUES(12461, 15135, 'fifteen thousand one hundred thirty-five'); INSERT INTO t2 VALUES(12462, 76030, 'seventy-six thousand thirty'); INSERT INTO t2 VALUES(12463, 94328, 'ninety-four thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(12464, 74772, 'seventy-four thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(12465, 11991, 'eleven thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(12466, 44574, 'forty-four thousand five hundred seventy-four'); INSERT INTO t2 VALUES(12467, 68432, 'sixty-eight thousand four hundred thirty-two'); INSERT INTO t2 VALUES(12468, 72767, 'seventy-two thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(12469, 64969, 'sixty-four thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(12470, 88069, 'eighty-eight thousand sixty-nine'); INSERT INTO t2 VALUES(12471, 1759, 'one thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(12472, 88080, 'eighty-eight thousand eighty'); INSERT INTO t2 VALUES(12473, 71548, 'seventy-one thousand five hundred forty-eight'); INSERT INTO t2 VALUES(12474, 4462, 'four thousand four hundred sixty-two'); INSERT INTO t2 VALUES(12475, 2842, 'two thousand eight hundred forty-two'); INSERT INTO t2 VALUES(12476, 96629, 'ninety-six thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(12477, 62891, 'sixty-two thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(12478, 2039, 'two thousand thirty-nine'); INSERT INTO t2 VALUES(12479, 50274, 'fifty thousand two hundred seventy-four'); INSERT INTO t2 VALUES(12480, 85582, 'eighty-five thousand five hundred eighty-two'); INSERT INTO t2 VALUES(12481, 22884, 'twenty-two thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(12482, 97906, 'ninety-seven thousand nine hundred six'); INSERT INTO t2 VALUES(12483, 827, 'eight hundred twenty-seven'); INSERT INTO t2 VALUES(12484, 16137, 'sixteen thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(12485, 87666, 'eighty-seven thousand six hundred sixty-six'); INSERT INTO t2 VALUES(12486, 71645, 'seventy-one thousand six hundred forty-five'); INSERT INTO t2 VALUES(12487, 55716, 'fifty-five thousand seven hundred sixteen'); INSERT INTO t2 VALUES(12488, 72454, 'seventy-two thousand four hundred fifty-four'); INSERT INTO t2 VALUES(12489, 98179, 'ninety-eight thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(12490, 86153, 'eighty-six thousand one hundred fifty-three'); INSERT INTO t2 VALUES(12491, 55534, 'fifty-five thousand five hundred thirty-four'); INSERT INTO t2 VALUES(12492, 39347, 'thirty-nine thousand three hundred forty-seven'); INSERT INTO t2 VALUES(12493, 66116, 'sixty-six thousand one hundred sixteen'); INSERT INTO t2 VALUES(12494, 74248, 'seventy-four thousand two hundred forty-eight'); INSERT INTO t2 VALUES(12495, 28155, 'twenty-eight thousand one hundred fifty-five'); INSERT INTO t2 VALUES(12496, 56934, 'fifty-six thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(12497, 61751, 'sixty-one thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(12498, 45333, 'forty-five thousand three hundred thirty-three'); INSERT INTO t2 VALUES(12499, 22112, 'twenty-two thousand one hundred twelve'); INSERT INTO t2 VALUES(12500, 99531, 'ninety-nine thousand five hundred thirty-one'); INSERT INTO t2 VALUES(12501, 14744, 'fourteen thousand seven hundred forty-four'); INSERT INTO t2 VALUES(12502, 65450, 'sixty-five thousand four hundred fifty'); INSERT INTO t2 VALUES(12503, 61578, 'sixty-one thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(12504, 75814, 'seventy-five thousand eight hundred fourteen'); INSERT INTO t2 VALUES(12505, 87361, 'eighty-seven thousand three hundred sixty-one'); INSERT INTO t2 VALUES(12506, 58065, 'fifty-eight thousand sixty-five'); INSERT INTO t2 VALUES(12507, 19902, 'nineteen thousand nine hundred two'); INSERT INTO t2 VALUES(12508, 97460, 'ninety-seven thousand four hundred sixty'); INSERT INTO t2 VALUES(12509, 72898, 'seventy-two thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(12510, 70929, 'seventy thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(12511, 26760, 'twenty-six thousand seven hundred sixty'); INSERT INTO t2 VALUES(12512, 51622, 'fifty-one thousand six hundred twenty-two'); INSERT INTO t2 VALUES(12513, 71772, 'seventy-one thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(12514, 81545, 'eighty-one thousand five hundred forty-five'); INSERT INTO t2 VALUES(12515, 67980, 'sixty-seven thousand nine hundred eighty'); INSERT INTO t2 VALUES(12516, 46599, 'forty-six thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(12517, 46621, 'forty-six thousand six hundred twenty-one'); INSERT INTO t2 VALUES(12518, 7074, 'seven thousand seventy-four'); INSERT INTO t2 VALUES(12519, 41885, 'forty-one thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(12520, 37138, 'thirty-seven thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(12521, 60585, 'sixty thousand five hundred eighty-five'); INSERT INTO t2 VALUES(12522, 68583, 'sixty-eight thousand five hundred eighty-three'); INSERT INTO t2 VALUES(12523, 40974, 'forty thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(12524, 32852, 'thirty-two thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(12525, 98517, 'ninety-eight thousand five hundred seventeen'); INSERT INTO t2 VALUES(12526, 81161, 'eighty-one thousand one hundred sixty-one'); INSERT INTO t2 VALUES(12527, 65708, 'sixty-five thousand seven hundred eight'); INSERT INTO t2 VALUES(12528, 14574, 'fourteen thousand five hundred seventy-four'); INSERT INTO t2 VALUES(12529, 15982, 'fifteen thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(12530, 69951, 'sixty-nine thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(12531, 31094, 'thirty-one thousand ninety-four'); INSERT INTO t2 VALUES(12532, 70790, 'seventy thousand seven hundred ninety'); INSERT INTO t2 VALUES(12533, 37653, 'thirty-seven thousand six hundred fifty-three'); INSERT INTO t2 VALUES(12534, 94366, 'ninety-four thousand three hundred sixty-six'); INSERT INTO t2 VALUES(12535, 99168, 'ninety-nine thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(12536, 85889, 'eighty-five thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(12537, 47104, 'forty-seven thousand one hundred four'); INSERT INTO t2 VALUES(12538, 45987, 'forty-five thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(12539, 68900, 'sixty-eight thousand nine hundred'); INSERT INTO t2 VALUES(12540, 55151, 'fifty-five thousand one hundred fifty-one'); INSERT INTO t2 VALUES(12541, 49375, 'forty-nine thousand three hundred seventy-five'); INSERT INTO t2 VALUES(12542, 56738, 'fifty-six thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(12543, 71529, 'seventy-one thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(12544, 39153, 'thirty-nine thousand one hundred fifty-three'); INSERT INTO t2 VALUES(12545, 89096, 'eighty-nine thousand ninety-six'); INSERT INTO t2 VALUES(12546, 72827, 'seventy-two thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(12547, 39486, 'thirty-nine thousand four hundred eighty-six'); INSERT INTO t2 VALUES(12548, 57301, 'fifty-seven thousand three hundred one'); INSERT INTO t2 VALUES(12549, 64846, 'sixty-four thousand eight hundred forty-six'); INSERT INTO t2 VALUES(12550, 37189, 'thirty-seven thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(12551, 45679, 'forty-five thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(12552, 39682, 'thirty-nine thousand six hundred eighty-two'); INSERT INTO t2 VALUES(12553, 63872, 'sixty-three thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(12554, 93567, 'ninety-three thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(12555, 85240, 'eighty-five thousand two hundred forty'); INSERT INTO t2 VALUES(12556, 23567, 'twenty-three thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(12557, 27413, 'twenty-seven thousand four hundred thirteen'); INSERT INTO t2 VALUES(12558, 54510, 'fifty-four thousand five hundred ten'); INSERT INTO t2 VALUES(12559, 84298, 'eighty-four thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(12560, 97063, 'ninety-seven thousand sixty-three'); INSERT INTO t2 VALUES(12561, 29551, 'twenty-nine thousand five hundred fifty-one'); INSERT INTO t2 VALUES(12562, 94326, 'ninety-four thousand three hundred twenty-six'); INSERT INTO t2 VALUES(12563, 13148, 'thirteen thousand one hundred forty-eight'); INSERT INTO t2 VALUES(12564, 6692, 'six thousand six hundred ninety-two'); INSERT INTO t2 VALUES(12565, 17839, 'seventeen thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(12566, 22602, 'twenty-two thousand six hundred two'); INSERT INTO t2 VALUES(12567, 75301, 'seventy-five thousand three hundred one'); INSERT INTO t2 VALUES(12568, 17279, 'seventeen thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(12569, 26062, 'twenty-six thousand sixty-two'); INSERT INTO t2 VALUES(12570, 89010, 'eighty-nine thousand ten'); INSERT INTO t2 VALUES(12571, 65833, 'sixty-five thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(12572, 11717, 'eleven thousand seven hundred seventeen'); INSERT INTO t2 VALUES(12573, 2836, 'two thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(12574, 27468, 'twenty-seven thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(12575, 85048, 'eighty-five thousand forty-eight'); INSERT INTO t2 VALUES(12576, 10335, 'ten thousand three hundred thirty-five'); INSERT INTO t2 VALUES(12577, 21872, 'twenty-one thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(12578, 6750, 'six thousand seven hundred fifty'); INSERT INTO t2 VALUES(12579, 41564, 'forty-one thousand five hundred sixty-four'); INSERT INTO t2 VALUES(12580, 28302, 'twenty-eight thousand three hundred two'); INSERT INTO t2 VALUES(12581, 87662, 'eighty-seven thousand six hundred sixty-two'); INSERT INTO t2 VALUES(12582, 76996, 'seventy-six thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(12583, 30131, 'thirty thousand one hundred thirty-one'); INSERT INTO t2 VALUES(12584, 60259, 'sixty thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(12585, 36278, 'thirty-six thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(12586, 32818, 'thirty-two thousand eight hundred eighteen'); INSERT INTO t2 VALUES(12587, 73372, 'seventy-three thousand three hundred seventy-two'); INSERT INTO t2 VALUES(12588, 12590, 'twelve thousand five hundred ninety'); INSERT INTO t2 VALUES(12589, 28038, 'twenty-eight thousand thirty-eight'); INSERT INTO t2 VALUES(12590, 87755, 'eighty-seven thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(12591, 30461, 'thirty thousand four hundred sixty-one'); INSERT INTO t2 VALUES(12592, 6063, 'six thousand sixty-three'); INSERT INTO t2 VALUES(12593, 25807, 'twenty-five thousand eight hundred seven'); INSERT INTO t2 VALUES(12594, 44551, 'forty-four thousand five hundred fifty-one'); INSERT INTO t2 VALUES(12595, 3422, 'three thousand four hundred twenty-two'); INSERT INTO t2 VALUES(12596, 73881, 'seventy-three thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(12597, 59737, 'fifty-nine thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(12598, 33448, 'thirty-three thousand four hundred forty-eight'); INSERT INTO t2 VALUES(12599, 37697, 'thirty-seven thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(12600, 81875, 'eighty-one thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(12601, 341, 'three hundred forty-one'); INSERT INTO t2 VALUES(12602, 12096, 'twelve thousand ninety-six'); INSERT INTO t2 VALUES(12603, 33300, 'thirty-three thousand three hundred'); INSERT INTO t2 VALUES(12604, 82707, 'eighty-two thousand seven hundred seven'); INSERT INTO t2 VALUES(12605, 36654, 'thirty-six thousand six hundred fifty-four'); INSERT INTO t2 VALUES(12606, 57164, 'fifty-seven thousand one hundred sixty-four'); INSERT INTO t2 VALUES(12607, 38579, 'thirty-eight thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(12608, 55103, 'fifty-five thousand one hundred three'); INSERT INTO t2 VALUES(12609, 49, 'forty-nine'); INSERT INTO t2 VALUES(12610, 89120, 'eighty-nine thousand one hundred twenty'); INSERT INTO t2 VALUES(12611, 64031, 'sixty-four thousand thirty-one'); INSERT INTO t2 VALUES(12612, 81715, 'eighty-one thousand seven hundred fifteen'); INSERT INTO t2 VALUES(12613, 74140, 'seventy-four thousand one hundred forty'); INSERT INTO t2 VALUES(12614, 77810, 'seventy-seven thousand eight hundred ten'); INSERT INTO t2 VALUES(12615, 23874, 'twenty-three thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(12616, 11269, 'eleven thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(12617, 48975, 'forty-eight thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(12618, 34702, 'thirty-four thousand seven hundred two'); INSERT INTO t2 VALUES(12619, 31495, 'thirty-one thousand four hundred ninety-five'); INSERT INTO t2 VALUES(12620, 33985, 'thirty-three thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(12621, 55958, 'fifty-five thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(12622, 64040, 'sixty-four thousand forty'); INSERT INTO t2 VALUES(12623, 15700, 'fifteen thousand seven hundred'); INSERT INTO t2 VALUES(12624, 91866, 'ninety-one thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(12625, 48729, 'forty-eight thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(12626, 50735, 'fifty thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(12627, 27221, 'twenty-seven thousand two hundred twenty-one'); INSERT INTO t2 VALUES(12628, 89406, 'eighty-nine thousand four hundred six'); INSERT INTO t2 VALUES(12629, 7412, 'seven thousand four hundred twelve'); INSERT INTO t2 VALUES(12630, 84827, 'eighty-four thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(12631, 58206, 'fifty-eight thousand two hundred six'); INSERT INTO t2 VALUES(12632, 77286, 'seventy-seven thousand two hundred eighty-six'); INSERT INTO t2 VALUES(12633, 57636, 'fifty-seven thousand six hundred thirty-six'); INSERT INTO t2 VALUES(12634, 28745, 'twenty-eight thousand seven hundred forty-five'); INSERT INTO t2 VALUES(12635, 1221, 'one thousand two hundred twenty-one'); INSERT INTO t2 VALUES(12636, 42082, 'forty-two thousand eighty-two'); INSERT INTO t2 VALUES(12637, 23456, 'twenty-three thousand four hundred fifty-six'); INSERT INTO t2 VALUES(12638, 25511, 'twenty-five thousand five hundred eleven'); INSERT INTO t2 VALUES(12639, 94709, 'ninety-four thousand seven hundred nine'); INSERT INTO t2 VALUES(12640, 32505, 'thirty-two thousand five hundred five'); INSERT INTO t2 VALUES(12641, 38679, 'thirty-eight thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(12642, 60015, 'sixty thousand fifteen'); INSERT INTO t2 VALUES(12643, 17694, 'seventeen thousand six hundred ninety-four'); INSERT INTO t2 VALUES(12644, 55634, 'fifty-five thousand six hundred thirty-four'); INSERT INTO t2 VALUES(12645, 54043, 'fifty-four thousand forty-three'); INSERT INTO t2 VALUES(12646, 55354, 'fifty-five thousand three hundred fifty-four'); INSERT INTO t2 VALUES(12647, 59841, 'fifty-nine thousand eight hundred forty-one'); INSERT INTO t2 VALUES(12648, 46896, 'forty-six thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(12649, 29103, 'twenty-nine thousand one hundred three'); INSERT INTO t2 VALUES(12650, 46926, 'forty-six thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(12651, 38232, 'thirty-eight thousand two hundred thirty-two'); INSERT INTO t2 VALUES(12652, 67203, 'sixty-seven thousand two hundred three'); INSERT INTO t2 VALUES(12653, 98305, 'ninety-eight thousand three hundred five'); INSERT INTO t2 VALUES(12654, 75262, 'seventy-five thousand two hundred sixty-two'); INSERT INTO t2 VALUES(12655, 51044, 'fifty-one thousand forty-four'); INSERT INTO t2 VALUES(12656, 24410, 'twenty-four thousand four hundred ten'); INSERT INTO t2 VALUES(12657, 46431, 'forty-six thousand four hundred thirty-one'); INSERT INTO t2 VALUES(12658, 60254, 'sixty thousand two hundred fifty-four'); INSERT INTO t2 VALUES(12659, 98685, 'ninety-eight thousand six hundred eighty-five'); INSERT INTO t2 VALUES(12660, 75358, 'seventy-five thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(12661, 87741, 'eighty-seven thousand seven hundred forty-one'); INSERT INTO t2 VALUES(12662, 48253, 'forty-eight thousand two hundred fifty-three'); INSERT INTO t2 VALUES(12663, 83092, 'eighty-three thousand ninety-two'); INSERT INTO t2 VALUES(12664, 32609, 'thirty-two thousand six hundred nine'); INSERT INTO t2 VALUES(12665, 76744, 'seventy-six thousand seven hundred forty-four'); INSERT INTO t2 VALUES(12666, 31524, 'thirty-one thousand five hundred twenty-four'); INSERT INTO t2 VALUES(12667, 68959, 'sixty-eight thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(12668, 31549, 'thirty-one thousand five hundred forty-nine'); INSERT INTO t2 VALUES(12669, 19074, 'nineteen thousand seventy-four'); INSERT INTO t2 VALUES(12670, 99788, 'ninety-nine thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(12671, 98808, 'ninety-eight thousand eight hundred eight'); INSERT INTO t2 VALUES(12672, 71340, 'seventy-one thousand three hundred forty'); INSERT INTO t2 VALUES(12673, 78608, 'seventy-eight thousand six hundred eight'); INSERT INTO t2 VALUES(12674, 54074, 'fifty-four thousand seventy-four'); INSERT INTO t2 VALUES(12675, 18310, 'eighteen thousand three hundred ten'); INSERT INTO t2 VALUES(12676, 8874, 'eight thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(12677, 51017, 'fifty-one thousand seventeen'); INSERT INTO t2 VALUES(12678, 45090, 'forty-five thousand ninety'); INSERT INTO t2 VALUES(12679, 87858, 'eighty-seven thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(12680, 62932, 'sixty-two thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(12681, 71313, 'seventy-one thousand three hundred thirteen'); INSERT INTO t2 VALUES(12682, 17523, 'seventeen thousand five hundred twenty-three'); INSERT INTO t2 VALUES(12683, 47376, 'forty-seven thousand three hundred seventy-six'); INSERT INTO t2 VALUES(12684, 10065, 'ten thousand sixty-five'); INSERT INTO t2 VALUES(12685, 82308, 'eighty-two thousand three hundred eight'); INSERT INTO t2 VALUES(12686, 48199, 'forty-eight thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(12687, 55931, 'fifty-five thousand nine hundred thirty-one'); INSERT INTO t2 VALUES(12688, 15461, 'fifteen thousand four hundred sixty-one'); INSERT INTO t2 VALUES(12689, 13502, 'thirteen thousand five hundred two'); INSERT INTO t2 VALUES(12690, 68126, 'sixty-eight thousand one hundred twenty-six'); INSERT INTO t2 VALUES(12691, 84777, 'eighty-four thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(12692, 24947, 'twenty-four thousand nine hundred forty-seven'); INSERT INTO t2 VALUES(12693, 84968, 'eighty-four thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(12694, 27249, 'twenty-seven thousand two hundred forty-nine'); INSERT INTO t2 VALUES(12695, 3025, 'three thousand twenty-five'); INSERT INTO t2 VALUES(12696, 56981, 'fifty-six thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(12697, 97479, 'ninety-seven thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(12698, 80969, 'eighty thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(12699, 71722, 'seventy-one thousand seven hundred twenty-two'); INSERT INTO t2 VALUES(12700, 17833, 'seventeen thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(12701, 72092, 'seventy-two thousand ninety-two'); INSERT INTO t2 VALUES(12702, 27657, 'twenty-seven thousand six hundred fifty-seven'); INSERT INTO t2 VALUES(12703, 48708, 'forty-eight thousand seven hundred eight'); INSERT INTO t2 VALUES(12704, 72549, 'seventy-two thousand five hundred forty-nine'); INSERT INTO t2 VALUES(12705, 53203, 'fifty-three thousand two hundred three'); INSERT INTO t2 VALUES(12706, 3320, 'three thousand three hundred twenty'); INSERT INTO t2 VALUES(12707, 73978, 'seventy-three thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(12708, 80083, 'eighty thousand eighty-three'); INSERT INTO t2 VALUES(12709, 45347, 'forty-five thousand three hundred forty-seven'); INSERT INTO t2 VALUES(12710, 23713, 'twenty-three thousand seven hundred thirteen'); INSERT INTO t2 VALUES(12711, 91256, 'ninety-one thousand two hundred fifty-six'); INSERT INTO t2 VALUES(12712, 84112, 'eighty-four thousand one hundred twelve'); INSERT INTO t2 VALUES(12713, 88280, 'eighty-eight thousand two hundred eighty'); INSERT INTO t2 VALUES(12714, 84621, 'eighty-four thousand six hundred twenty-one'); INSERT INTO t2 VALUES(12715, 63263, 'sixty-three thousand two hundred sixty-three'); INSERT INTO t2 VALUES(12716, 39124, 'thirty-nine thousand one hundred twenty-four'); INSERT INTO t2 VALUES(12717, 42785, 'forty-two thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(12718, 26797, 'twenty-six thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(12719, 62518, 'sixty-two thousand five hundred eighteen'); INSERT INTO t2 VALUES(12720, 8640, 'eight thousand six hundred forty'); INSERT INTO t2 VALUES(12721, 25589, 'twenty-five thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(12722, 351, 'three hundred fifty-one'); INSERT INTO t2 VALUES(12723, 22904, 'twenty-two thousand nine hundred four'); INSERT INTO t2 VALUES(12724, 5160, 'five thousand one hundred sixty'); INSERT INTO t2 VALUES(12725, 91646, 'ninety-one thousand six hundred forty-six'); INSERT INTO t2 VALUES(12726, 61314, 'sixty-one thousand three hundred fourteen'); INSERT INTO t2 VALUES(12727, 93782, 'ninety-three thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(12728, 37006, 'thirty-seven thousand six'); INSERT INTO t2 VALUES(12729, 38451, 'thirty-eight thousand four hundred fifty-one'); INSERT INTO t2 VALUES(12730, 35434, 'thirty-five thousand four hundred thirty-four'); INSERT INTO t2 VALUES(12731, 85499, 'eighty-five thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(12732, 48641, 'forty-eight thousand six hundred forty-one'); INSERT INTO t2 VALUES(12733, 273, 'two hundred seventy-three'); INSERT INTO t2 VALUES(12734, 29340, 'twenty-nine thousand three hundred forty'); INSERT INTO t2 VALUES(12735, 5279, 'five thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(12736, 84050, 'eighty-four thousand fifty'); INSERT INTO t2 VALUES(12737, 17282, 'seventeen thousand two hundred eighty-two'); INSERT INTO t2 VALUES(12738, 28789, 'twenty-eight thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(12739, 17097, 'seventeen thousand ninety-seven'); INSERT INTO t2 VALUES(12740, 22432, 'twenty-two thousand four hundred thirty-two'); INSERT INTO t2 VALUES(12741, 16820, 'sixteen thousand eight hundred twenty'); INSERT INTO t2 VALUES(12742, 53508, 'fifty-three thousand five hundred eight'); INSERT INTO t2 VALUES(12743, 94135, 'ninety-four thousand one hundred thirty-five'); INSERT INTO t2 VALUES(12744, 75030, 'seventy-five thousand thirty'); INSERT INTO t2 VALUES(12745, 84367, 'eighty-four thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(12746, 37510, 'thirty-seven thousand five hundred ten'); INSERT INTO t2 VALUES(12747, 15447, 'fifteen thousand four hundred forty-seven'); INSERT INTO t2 VALUES(12748, 50394, 'fifty thousand three hundred ninety-four'); INSERT INTO t2 VALUES(12749, 53109, 'fifty-three thousand one hundred nine'); INSERT INTO t2 VALUES(12750, 94074, 'ninety-four thousand seventy-four'); INSERT INTO t2 VALUES(12751, 44533, 'forty-four thousand five hundred thirty-three'); INSERT INTO t2 VALUES(12752, 46988, 'forty-six thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(12753, 94799, 'ninety-four thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(12754, 90383, 'ninety thousand three hundred eighty-three'); INSERT INTO t2 VALUES(12755, 84364, 'eighty-four thousand three hundred sixty-four'); INSERT INTO t2 VALUES(12756, 53591, 'fifty-three thousand five hundred ninety-one'); INSERT INTO t2 VALUES(12757, 86335, 'eighty-six thousand three hundred thirty-five'); INSERT INTO t2 VALUES(12758, 1902, 'one thousand nine hundred two'); INSERT INTO t2 VALUES(12759, 38419, 'thirty-eight thousand four hundred nineteen'); INSERT INTO t2 VALUES(12760, 34700, 'thirty-four thousand seven hundred'); INSERT INTO t2 VALUES(12761, 99480, 'ninety-nine thousand four hundred eighty'); INSERT INTO t2 VALUES(12762, 11679, 'eleven thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(12763, 38545, 'thirty-eight thousand five hundred forty-five'); INSERT INTO t2 VALUES(12764, 95644, 'ninety-five thousand six hundred forty-four'); INSERT INTO t2 VALUES(12765, 1290, 'one thousand two hundred ninety'); INSERT INTO t2 VALUES(12766, 59726, 'fifty-nine thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(12767, 94997, 'ninety-four thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(12768, 67254, 'sixty-seven thousand two hundred fifty-four'); INSERT INTO t2 VALUES(12769, 14653, 'fourteen thousand six hundred fifty-three'); INSERT INTO t2 VALUES(12770, 88412, 'eighty-eight thousand four hundred twelve'); INSERT INTO t2 VALUES(12771, 33937, 'thirty-three thousand nine hundred thirty-seven'); INSERT INTO t2 VALUES(12772, 19610, 'nineteen thousand six hundred ten'); INSERT INTO t2 VALUES(12773, 90505, 'ninety thousand five hundred five'); INSERT INTO t2 VALUES(12774, 9043, 'nine thousand forty-three'); INSERT INTO t2 VALUES(12775, 38038, 'thirty-eight thousand thirty-eight'); INSERT INTO t2 VALUES(12776, 73223, 'seventy-three thousand two hundred twenty-three'); INSERT INTO t2 VALUES(12777, 12215, 'twelve thousand two hundred fifteen'); INSERT INTO t2 VALUES(12778, 42517, 'forty-two thousand five hundred seventeen'); INSERT INTO t2 VALUES(12779, 97719, 'ninety-seven thousand seven hundred nineteen'); INSERT INTO t2 VALUES(12780, 82493, 'eighty-two thousand four hundred ninety-three'); INSERT INTO t2 VALUES(12781, 1465, 'one thousand four hundred sixty-five'); INSERT INTO t2 VALUES(12782, 65935, 'sixty-five thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(12783, 10752, 'ten thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(12784, 41441, 'forty-one thousand four hundred forty-one'); INSERT INTO t2 VALUES(12785, 14670, 'fourteen thousand six hundred seventy'); INSERT INTO t2 VALUES(12786, 22687, 'twenty-two thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(12787, 42904, 'forty-two thousand nine hundred four'); INSERT INTO t2 VALUES(12788, 48511, 'forty-eight thousand five hundred eleven'); INSERT INTO t2 VALUES(12789, 8135, 'eight thousand one hundred thirty-five'); INSERT INTO t2 VALUES(12790, 77551, 'seventy-seven thousand five hundred fifty-one'); INSERT INTO t2 VALUES(12791, 40575, 'forty thousand five hundred seventy-five'); INSERT INTO t2 VALUES(12792, 38451, 'thirty-eight thousand four hundred fifty-one'); INSERT INTO t2 VALUES(12793, 87935, 'eighty-seven thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(12794, 15382, 'fifteen thousand three hundred eighty-two'); INSERT INTO t2 VALUES(12795, 25292, 'twenty-five thousand two hundred ninety-two'); INSERT INTO t2 VALUES(12796, 66157, 'sixty-six thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(12797, 95879, 'ninety-five thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(12798, 29664, 'twenty-nine thousand six hundred sixty-four'); INSERT INTO t2 VALUES(12799, 68150, 'sixty-eight thousand one hundred fifty'); INSERT INTO t2 VALUES(12800, 42576, 'forty-two thousand five hundred seventy-six'); INSERT INTO t2 VALUES(12801, 54257, 'fifty-four thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(12802, 91548, 'ninety-one thousand five hundred forty-eight'); INSERT INTO t2 VALUES(12803, 19302, 'nineteen thousand three hundred two'); INSERT INTO t2 VALUES(12804, 14043, 'fourteen thousand forty-three'); INSERT INTO t2 VALUES(12805, 50292, 'fifty thousand two hundred ninety-two'); INSERT INTO t2 VALUES(12806, 82995, 'eighty-two thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(12807, 74002, 'seventy-four thousand two'); INSERT INTO t2 VALUES(12808, 32517, 'thirty-two thousand five hundred seventeen'); INSERT INTO t2 VALUES(12809, 26885, 'twenty-six thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(12810, 92621, 'ninety-two thousand six hundred twenty-one'); INSERT INTO t2 VALUES(12811, 57417, 'fifty-seven thousand four hundred seventeen'); INSERT INTO t2 VALUES(12812, 33465, 'thirty-three thousand four hundred sixty-five'); INSERT INTO t2 VALUES(12813, 20416, 'twenty thousand four hundred sixteen'); INSERT INTO t2 VALUES(12814, 56124, 'fifty-six thousand one hundred twenty-four'); INSERT INTO t2 VALUES(12815, 46067, 'forty-six thousand sixty-seven'); INSERT INTO t2 VALUES(12816, 39386, 'thirty-nine thousand three hundred eighty-six'); INSERT INTO t2 VALUES(12817, 79949, 'seventy-nine thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(12818, 91960, 'ninety-one thousand nine hundred sixty'); INSERT INTO t2 VALUES(12819, 72770, 'seventy-two thousand seven hundred seventy'); INSERT INTO t2 VALUES(12820, 71993, 'seventy-one thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(12821, 84252, 'eighty-four thousand two hundred fifty-two'); INSERT INTO t2 VALUES(12822, 19078, 'nineteen thousand seventy-eight'); INSERT INTO t2 VALUES(12823, 67071, 'sixty-seven thousand seventy-one'); INSERT INTO t2 VALUES(12824, 25905, 'twenty-five thousand nine hundred five'); INSERT INTO t2 VALUES(12825, 24508, 'twenty-four thousand five hundred eight'); INSERT INTO t2 VALUES(12826, 5443, 'five thousand four hundred forty-three'); INSERT INTO t2 VALUES(12827, 92870, 'ninety-two thousand eight hundred seventy'); INSERT INTO t2 VALUES(12828, 56853, 'fifty-six thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(12829, 24852, 'twenty-four thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(12830, 13687, 'thirteen thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(12831, 17332, 'seventeen thousand three hundred thirty-two'); INSERT INTO t2 VALUES(12832, 14460, 'fourteen thousand four hundred sixty'); INSERT INTO t2 VALUES(12833, 81086, 'eighty-one thousand eighty-six'); INSERT INTO t2 VALUES(12834, 7884, 'seven thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(12835, 83508, 'eighty-three thousand five hundred eight'); INSERT INTO t2 VALUES(12836, 69657, 'sixty-nine thousand six hundred fifty-seven'); INSERT INTO t2 VALUES(12837, 44143, 'forty-four thousand one hundred forty-three'); INSERT INTO t2 VALUES(12838, 81363, 'eighty-one thousand three hundred sixty-three'); INSERT INTO t2 VALUES(12839, 71061, 'seventy-one thousand sixty-one'); INSERT INTO t2 VALUES(12840, 18734, 'eighteen thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(12841, 44796, 'forty-four thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(12842, 19063, 'nineteen thousand sixty-three'); INSERT INTO t2 VALUES(12843, 36851, 'thirty-six thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(12844, 6243, 'six thousand two hundred forty-three'); INSERT INTO t2 VALUES(12845, 80756, 'eighty thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(12846, 76024, 'seventy-six thousand twenty-four'); INSERT INTO t2 VALUES(12847, 65444, 'sixty-five thousand four hundred forty-four'); INSERT INTO t2 VALUES(12848, 74297, 'seventy-four thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(12849, 61080, 'sixty-one thousand eighty'); INSERT INTO t2 VALUES(12850, 47659, 'forty-seven thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(12851, 51887, 'fifty-one thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(12852, 21369, 'twenty-one thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(12853, 63464, 'sixty-three thousand four hundred sixty-four'); INSERT INTO t2 VALUES(12854, 73265, 'seventy-three thousand two hundred sixty-five'); INSERT INTO t2 VALUES(12855, 81129, 'eighty-one thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(12856, 14852, 'fourteen thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(12857, 86379, 'eighty-six thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(12858, 90964, 'ninety thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(12859, 62673, 'sixty-two thousand six hundred seventy-three'); INSERT INTO t2 VALUES(12860, 82954, 'eighty-two thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(12861, 36211, 'thirty-six thousand two hundred eleven'); INSERT INTO t2 VALUES(12862, 18351, 'eighteen thousand three hundred fifty-one'); INSERT INTO t2 VALUES(12863, 79590, 'seventy-nine thousand five hundred ninety'); INSERT INTO t2 VALUES(12864, 77315, 'seventy-seven thousand three hundred fifteen'); INSERT INTO t2 VALUES(12865, 88413, 'eighty-eight thousand four hundred thirteen'); INSERT INTO t2 VALUES(12866, 14572, 'fourteen thousand five hundred seventy-two'); INSERT INTO t2 VALUES(12867, 42962, 'forty-two thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(12868, 26686, 'twenty-six thousand six hundred eighty-six'); INSERT INTO t2 VALUES(12869, 52599, 'fifty-two thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(12870, 36091, 'thirty-six thousand ninety-one'); INSERT INTO t2 VALUES(12871, 75689, 'seventy-five thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(12872, 58595, 'fifty-eight thousand five hundred ninety-five'); INSERT INTO t2 VALUES(12873, 96901, 'ninety-six thousand nine hundred one'); INSERT INTO t2 VALUES(12874, 58548, 'fifty-eight thousand five hundred forty-eight'); INSERT INTO t2 VALUES(12875, 89596, 'eighty-nine thousand five hundred ninety-six'); INSERT INTO t2 VALUES(12876, 38378, 'thirty-eight thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(12877, 29383, 'twenty-nine thousand three hundred eighty-three'); INSERT INTO t2 VALUES(12878, 41611, 'forty-one thousand six hundred eleven'); INSERT INTO t2 VALUES(12879, 7871, 'seven thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(12880, 28664, 'twenty-eight thousand six hundred sixty-four'); INSERT INTO t2 VALUES(12881, 22282, 'twenty-two thousand two hundred eighty-two'); INSERT INTO t2 VALUES(12882, 64291, 'sixty-four thousand two hundred ninety-one'); INSERT INTO t2 VALUES(12883, 63841, 'sixty-three thousand eight hundred forty-one'); INSERT INTO t2 VALUES(12884, 5644, 'five thousand six hundred forty-four'); INSERT INTO t2 VALUES(12885, 87763, 'eighty-seven thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(12886, 71258, 'seventy-one thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(12887, 98969, 'ninety-eight thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(12888, 97564, 'ninety-seven thousand five hundred sixty-four'); INSERT INTO t2 VALUES(12889, 89038, 'eighty-nine thousand thirty-eight'); INSERT INTO t2 VALUES(12890, 70619, 'seventy thousand six hundred nineteen'); INSERT INTO t2 VALUES(12891, 31542, 'thirty-one thousand five hundred forty-two'); INSERT INTO t2 VALUES(12892, 89204, 'eighty-nine thousand two hundred four'); INSERT INTO t2 VALUES(12893, 88392, 'eighty-eight thousand three hundred ninety-two'); INSERT INTO t2 VALUES(12894, 16625, 'sixteen thousand six hundred twenty-five'); INSERT INTO t2 VALUES(12895, 4785, 'four thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(12896, 47685, 'forty-seven thousand six hundred eighty-five'); INSERT INTO t2 VALUES(12897, 11192, 'eleven thousand one hundred ninety-two'); INSERT INTO t2 VALUES(12898, 32073, 'thirty-two thousand seventy-three'); INSERT INTO t2 VALUES(12899, 78085, 'seventy-eight thousand eighty-five'); INSERT INTO t2 VALUES(12900, 503, 'five hundred three'); INSERT INTO t2 VALUES(12901, 46088, 'forty-six thousand eighty-eight'); INSERT INTO t2 VALUES(12902, 94004, 'ninety-four thousand four'); INSERT INTO t2 VALUES(12903, 22694, 'twenty-two thousand six hundred ninety-four'); INSERT INTO t2 VALUES(12904, 56386, 'fifty-six thousand three hundred eighty-six'); INSERT INTO t2 VALUES(12905, 2151, 'two thousand one hundred fifty-one'); INSERT INTO t2 VALUES(12906, 71433, 'seventy-one thousand four hundred thirty-three'); INSERT INTO t2 VALUES(12907, 70973, 'seventy thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(12908, 77969, 'seventy-seven thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(12909, 57592, 'fifty-seven thousand five hundred ninety-two'); INSERT INTO t2 VALUES(12910, 54666, 'fifty-four thousand six hundred sixty-six'); INSERT INTO t2 VALUES(12911, 49893, 'forty-nine thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(12912, 6148, 'six thousand one hundred forty-eight'); INSERT INTO t2 VALUES(12913, 60475, 'sixty thousand four hundred seventy-five'); INSERT INTO t2 VALUES(12914, 76054, 'seventy-six thousand fifty-four'); INSERT INTO t2 VALUES(12915, 89714, 'eighty-nine thousand seven hundred fourteen'); INSERT INTO t2 VALUES(12916, 90057, 'ninety thousand fifty-seven'); INSERT INTO t2 VALUES(12917, 93441, 'ninety-three thousand four hundred forty-one'); INSERT INTO t2 VALUES(12918, 77868, 'seventy-seven thousand eight hundred sixty-eight'); INSERT INTO t2 VALUES(12919, 52884, 'fifty-two thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(12920, 42957, 'forty-two thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(12921, 80056, 'eighty thousand fifty-six'); INSERT INTO t2 VALUES(12922, 94672, 'ninety-four thousand six hundred seventy-two'); INSERT INTO t2 VALUES(12923, 69476, 'sixty-nine thousand four hundred seventy-six'); INSERT INTO t2 VALUES(12924, 47443, 'forty-seven thousand four hundred forty-three'); INSERT INTO t2 VALUES(12925, 1464, 'one thousand four hundred sixty-four'); INSERT INTO t2 VALUES(12926, 59499, 'fifty-nine thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(12927, 20766, 'twenty thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(12928, 35904, 'thirty-five thousand nine hundred four'); INSERT INTO t2 VALUES(12929, 16391, 'sixteen thousand three hundred ninety-one'); INSERT INTO t2 VALUES(12930, 14525, 'fourteen thousand five hundred twenty-five'); INSERT INTO t2 VALUES(12931, 61799, 'sixty-one thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(12932, 58118, 'fifty-eight thousand one hundred eighteen'); INSERT INTO t2 VALUES(12933, 86526, 'eighty-six thousand five hundred twenty-six'); INSERT INTO t2 VALUES(12934, 31895, 'thirty-one thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(12935, 45567, 'forty-five thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(12936, 29187, 'twenty-nine thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(12937, 29988, 'twenty-nine thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(12938, 77665, 'seventy-seven thousand six hundred sixty-five'); INSERT INTO t2 VALUES(12939, 91083, 'ninety-one thousand eighty-three'); INSERT INTO t2 VALUES(12940, 80714, 'eighty thousand seven hundred fourteen'); INSERT INTO t2 VALUES(12941, 98362, 'ninety-eight thousand three hundred sixty-two'); INSERT INTO t2 VALUES(12942, 8985, 'eight thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(12943, 42413, 'forty-two thousand four hundred thirteen'); INSERT INTO t2 VALUES(12944, 32181, 'thirty-two thousand one hundred eighty-one'); INSERT INTO t2 VALUES(12945, 96375, 'ninety-six thousand three hundred seventy-five'); INSERT INTO t2 VALUES(12946, 7972, 'seven thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(12947, 78864, 'seventy-eight thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(12948, 43524, 'forty-three thousand five hundred twenty-four'); INSERT INTO t2 VALUES(12949, 54870, 'fifty-four thousand eight hundred seventy'); INSERT INTO t2 VALUES(12950, 9549, 'nine thousand five hundred forty-nine'); INSERT INTO t2 VALUES(12951, 71122, 'seventy-one thousand one hundred twenty-two'); INSERT INTO t2 VALUES(12952, 74872, 'seventy-four thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(12953, 67421, 'sixty-seven thousand four hundred twenty-one'); INSERT INTO t2 VALUES(12954, 91784, 'ninety-one thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(12955, 93531, 'ninety-three thousand five hundred thirty-one'); INSERT INTO t2 VALUES(12956, 89621, 'eighty-nine thousand six hundred twenty-one'); INSERT INTO t2 VALUES(12957, 80613, 'eighty thousand six hundred thirteen'); INSERT INTO t2 VALUES(12958, 4054, 'four thousand fifty-four'); INSERT INTO t2 VALUES(12959, 40155, 'forty thousand one hundred fifty-five'); INSERT INTO t2 VALUES(12960, 53778, 'fifty-three thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(12961, 75829, 'seventy-five thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(12962, 75078, 'seventy-five thousand seventy-eight'); INSERT INTO t2 VALUES(12963, 14544, 'fourteen thousand five hundred forty-four'); INSERT INTO t2 VALUES(12964, 95138, 'ninety-five thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(12965, 40098, 'forty thousand ninety-eight'); INSERT INTO t2 VALUES(12966, 70972, 'seventy thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(12967, 3327, 'three thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(12968, 54851, 'fifty-four thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(12969, 48095, 'forty-eight thousand ninety-five'); INSERT INTO t2 VALUES(12970, 74296, 'seventy-four thousand two hundred ninety-six'); INSERT INTO t2 VALUES(12971, 72389, 'seventy-two thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(12972, 20726, 'twenty thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(12973, 76543, 'seventy-six thousand five hundred forty-three'); INSERT INTO t2 VALUES(12974, 20326, 'twenty thousand three hundred twenty-six'); INSERT INTO t2 VALUES(12975, 63210, 'sixty-three thousand two hundred ten'); INSERT INTO t2 VALUES(12976, 5038, 'five thousand thirty-eight'); INSERT INTO t2 VALUES(12977, 75155, 'seventy-five thousand one hundred fifty-five'); INSERT INTO t2 VALUES(12978, 6163, 'six thousand one hundred sixty-three'); INSERT INTO t2 VALUES(12979, 50030, 'fifty thousand thirty'); INSERT INTO t2 VALUES(12980, 98458, 'ninety-eight thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(12981, 97940, 'ninety-seven thousand nine hundred forty'); INSERT INTO t2 VALUES(12982, 22001, 'twenty-two thousand one'); INSERT INTO t2 VALUES(12983, 11763, 'eleven thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(12984, 72730, 'seventy-two thousand seven hundred thirty'); INSERT INTO t2 VALUES(12985, 95710, 'ninety-five thousand seven hundred ten'); INSERT INTO t2 VALUES(12986, 51318, 'fifty-one thousand three hundred eighteen'); INSERT INTO t2 VALUES(12987, 43493, 'forty-three thousand four hundred ninety-three'); INSERT INTO t2 VALUES(12988, 24425, 'twenty-four thousand four hundred twenty-five'); INSERT INTO t2 VALUES(12989, 30973, 'thirty thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(12990, 15094, 'fifteen thousand ninety-four'); INSERT INTO t2 VALUES(12991, 44550, 'forty-four thousand five hundred fifty'); INSERT INTO t2 VALUES(12992, 39778, 'thirty-nine thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(12993, 3393, 'three thousand three hundred ninety-three'); INSERT INTO t2 VALUES(12994, 99931, 'ninety-nine thousand nine hundred thirty-one'); INSERT INTO t2 VALUES(12995, 65492, 'sixty-five thousand four hundred ninety-two'); INSERT INTO t2 VALUES(12996, 52057, 'fifty-two thousand fifty-seven'); INSERT INTO t2 VALUES(12997, 30194, 'thirty thousand one hundred ninety-four'); INSERT INTO t2 VALUES(12998, 90986, 'ninety thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(12999, 43629, 'forty-three thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(13000, 25038, 'twenty-five thousand thirty-eight'); INSERT INTO t2 VALUES(13001, 55729, 'fifty-five thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(13002, 88732, 'eighty-eight thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(13003, 68437, 'sixty-eight thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(13004, 71645, 'seventy-one thousand six hundred forty-five'); INSERT INTO t2 VALUES(13005, 53387, 'fifty-three thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(13006, 82609, 'eighty-two thousand six hundred nine'); INSERT INTO t2 VALUES(13007, 13864, 'thirteen thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(13008, 91106, 'ninety-one thousand one hundred six'); INSERT INTO t2 VALUES(13009, 35798, 'thirty-five thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(13010, 77114, 'seventy-seven thousand one hundred fourteen'); INSERT INTO t2 VALUES(13011, 59246, 'fifty-nine thousand two hundred forty-six'); INSERT INTO t2 VALUES(13012, 25971, 'twenty-five thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(13013, 21001, 'twenty-one thousand one'); INSERT INTO t2 VALUES(13014, 17681, 'seventeen thousand six hundred eighty-one'); INSERT INTO t2 VALUES(13015, 10887, 'ten thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(13016, 3308, 'three thousand three hundred eight'); INSERT INTO t2 VALUES(13017, 16851, 'sixteen thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(13018, 73626, 'seventy-three thousand six hundred twenty-six'); INSERT INTO t2 VALUES(13019, 39209, 'thirty-nine thousand two hundred nine'); INSERT INTO t2 VALUES(13020, 44747, 'forty-four thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(13021, 48379, 'forty-eight thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(13022, 95384, 'ninety-five thousand three hundred eighty-four'); INSERT INTO t2 VALUES(13023, 9559, 'nine thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(13024, 22617, 'twenty-two thousand six hundred seventeen'); INSERT INTO t2 VALUES(13025, 26012, 'twenty-six thousand twelve'); INSERT INTO t2 VALUES(13026, 98347, 'ninety-eight thousand three hundred forty-seven'); INSERT INTO t2 VALUES(13027, 37304, 'thirty-seven thousand three hundred four'); INSERT INTO t2 VALUES(13028, 38813, 'thirty-eight thousand eight hundred thirteen'); INSERT INTO t2 VALUES(13029, 46145, 'forty-six thousand one hundred forty-five'); INSERT INTO t2 VALUES(13030, 46570, 'forty-six thousand five hundred seventy'); INSERT INTO t2 VALUES(13031, 50681, 'fifty thousand six hundred eighty-one'); INSERT INTO t2 VALUES(13032, 84182, 'eighty-four thousand one hundred eighty-two'); INSERT INTO t2 VALUES(13033, 39559, 'thirty-nine thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(13034, 63151, 'sixty-three thousand one hundred fifty-one'); INSERT INTO t2 VALUES(13035, 5028, 'five thousand twenty-eight'); INSERT INTO t2 VALUES(13036, 77886, 'seventy-seven thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(13037, 68258, 'sixty-eight thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(13038, 66907, 'sixty-six thousand nine hundred seven'); INSERT INTO t2 VALUES(13039, 88, 'eighty-eight'); INSERT INTO t2 VALUES(13040, 7729, 'seven thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(13041, 30994, 'thirty thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(13042, 27415, 'twenty-seven thousand four hundred fifteen'); INSERT INTO t2 VALUES(13043, 67390, 'sixty-seven thousand three hundred ninety'); INSERT INTO t2 VALUES(13044, 30356, 'thirty thousand three hundred fifty-six'); INSERT INTO t2 VALUES(13045, 10276, 'ten thousand two hundred seventy-six'); INSERT INTO t2 VALUES(13046, 94756, 'ninety-four thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(13047, 31440, 'thirty-one thousand four hundred forty'); INSERT INTO t2 VALUES(13048, 7856, 'seven thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(13049, 52568, 'fifty-two thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(13050, 16510, 'sixteen thousand five hundred ten'); INSERT INTO t2 VALUES(13051, 72650, 'seventy-two thousand six hundred fifty'); INSERT INTO t2 VALUES(13052, 70648, 'seventy thousand six hundred forty-eight'); INSERT INTO t2 VALUES(13053, 83477, 'eighty-three thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(13054, 6684, 'six thousand six hundred eighty-four'); INSERT INTO t2 VALUES(13055, 93352, 'ninety-three thousand three hundred fifty-two'); INSERT INTO t2 VALUES(13056, 39802, 'thirty-nine thousand eight hundred two'); INSERT INTO t2 VALUES(13057, 34203, 'thirty-four thousand two hundred three'); INSERT INTO t2 VALUES(13058, 65817, 'sixty-five thousand eight hundred seventeen'); INSERT INTO t2 VALUES(13059, 33706, 'thirty-three thousand seven hundred six'); INSERT INTO t2 VALUES(13060, 6095, 'six thousand ninety-five'); INSERT INTO t2 VALUES(13061, 99711, 'ninety-nine thousand seven hundred eleven'); INSERT INTO t2 VALUES(13062, 97379, 'ninety-seven thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(13063, 59598, 'fifty-nine thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(13064, 44929, 'forty-four thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(13065, 50358, 'fifty thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(13066, 55998, 'fifty-five thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(13067, 24931, 'twenty-four thousand nine hundred thirty-one'); INSERT INTO t2 VALUES(13068, 1909, 'one thousand nine hundred nine'); INSERT INTO t2 VALUES(13069, 13762, 'thirteen thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(13070, 82104, 'eighty-two thousand one hundred four'); INSERT INTO t2 VALUES(13071, 98747, 'ninety-eight thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(13072, 77978, 'seventy-seven thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(13073, 11771, 'eleven thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(13074, 11831, 'eleven thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(13075, 3838, 'three thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(13076, 36656, 'thirty-six thousand six hundred fifty-six'); INSERT INTO t2 VALUES(13077, 81809, 'eighty-one thousand eight hundred nine'); INSERT INTO t2 VALUES(13078, 59234, 'fifty-nine thousand two hundred thirty-four'); INSERT INTO t2 VALUES(13079, 48911, 'forty-eight thousand nine hundred eleven'); INSERT INTO t2 VALUES(13080, 10925, 'ten thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(13081, 33733, 'thirty-three thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(13082, 10417, 'ten thousand four hundred seventeen'); INSERT INTO t2 VALUES(13083, 4775, 'four thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(13084, 27816, 'twenty-seven thousand eight hundred sixteen'); INSERT INTO t2 VALUES(13085, 57227, 'fifty-seven thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(13086, 51662, 'fifty-one thousand six hundred sixty-two'); INSERT INTO t2 VALUES(13087, 18961, 'eighteen thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(13088, 17700, 'seventeen thousand seven hundred'); INSERT INTO t2 VALUES(13089, 5420, 'five thousand four hundred twenty'); INSERT INTO t2 VALUES(13090, 55440, 'fifty-five thousand four hundred forty'); INSERT INTO t2 VALUES(13091, 66680, 'sixty-six thousand six hundred eighty'); INSERT INTO t2 VALUES(13092, 5923, 'five thousand nine hundred twenty-three'); INSERT INTO t2 VALUES(13093, 49544, 'forty-nine thousand five hundred forty-four'); INSERT INTO t2 VALUES(13094, 34480, 'thirty-four thousand four hundred eighty'); INSERT INTO t2 VALUES(13095, 13248, 'thirteen thousand two hundred forty-eight'); INSERT INTO t2 VALUES(13096, 36359, 'thirty-six thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(13097, 42391, 'forty-two thousand three hundred ninety-one'); INSERT INTO t2 VALUES(13098, 90361, 'ninety thousand three hundred sixty-one'); INSERT INTO t2 VALUES(13099, 78799, 'seventy-eight thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(13100, 85497, 'eighty-five thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(13101, 70559, 'seventy thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(13102, 66041, 'sixty-six thousand forty-one'); INSERT INTO t2 VALUES(13103, 24343, 'twenty-four thousand three hundred forty-three'); INSERT INTO t2 VALUES(13104, 61475, 'sixty-one thousand four hundred seventy-five'); INSERT INTO t2 VALUES(13105, 10975, 'ten thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(13106, 69803, 'sixty-nine thousand eight hundred three'); INSERT INTO t2 VALUES(13107, 98004, 'ninety-eight thousand four'); INSERT INTO t2 VALUES(13108, 16349, 'sixteen thousand three hundred forty-nine'); INSERT INTO t2 VALUES(13109, 9929, 'nine thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(13110, 36080, 'thirty-six thousand eighty'); INSERT INTO t2 VALUES(13111, 12242, 'twelve thousand two hundred forty-two'); INSERT INTO t2 VALUES(13112, 97028, 'ninety-seven thousand twenty-eight'); INSERT INTO t2 VALUES(13113, 29384, 'twenty-nine thousand three hundred eighty-four'); INSERT INTO t2 VALUES(13114, 38221, 'thirty-eight thousand two hundred twenty-one'); INSERT INTO t2 VALUES(13115, 53447, 'fifty-three thousand four hundred forty-seven'); INSERT INTO t2 VALUES(13116, 98000, 'ninety-eight thousand'); INSERT INTO t2 VALUES(13117, 68425, 'sixty-eight thousand four hundred twenty-five'); INSERT INTO t2 VALUES(13118, 4350, 'four thousand three hundred fifty'); INSERT INTO t2 VALUES(13119, 1708, 'one thousand seven hundred eight'); INSERT INTO t2 VALUES(13120, 28134, 'twenty-eight thousand one hundred thirty-four'); INSERT INTO t2 VALUES(13121, 4813, 'four thousand eight hundred thirteen'); INSERT INTO t2 VALUES(13122, 93787, 'ninety-three thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(13123, 8822, 'eight thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(13124, 72982, 'seventy-two thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(13125, 33244, 'thirty-three thousand two hundred forty-four'); INSERT INTO t2 VALUES(13126, 48771, 'forty-eight thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(13127, 48958, 'forty-eight thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(13128, 10980, 'ten thousand nine hundred eighty'); INSERT INTO t2 VALUES(13129, 23503, 'twenty-three thousand five hundred three'); INSERT INTO t2 VALUES(13130, 97517, 'ninety-seven thousand five hundred seventeen'); INSERT INTO t2 VALUES(13131, 75226, 'seventy-five thousand two hundred twenty-six'); INSERT INTO t2 VALUES(13132, 65680, 'sixty-five thousand six hundred eighty'); INSERT INTO t2 VALUES(13133, 81768, 'eighty-one thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(13134, 26780, 'twenty-six thousand seven hundred eighty'); INSERT INTO t2 VALUES(13135, 13112, 'thirteen thousand one hundred twelve'); INSERT INTO t2 VALUES(13136, 30779, 'thirty thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(13137, 69018, 'sixty-nine thousand eighteen'); INSERT INTO t2 VALUES(13138, 54064, 'fifty-four thousand sixty-four'); INSERT INTO t2 VALUES(13139, 64860, 'sixty-four thousand eight hundred sixty'); INSERT INTO t2 VALUES(13140, 34161, 'thirty-four thousand one hundred sixty-one'); INSERT INTO t2 VALUES(13141, 2837, 'two thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(13142, 36341, 'thirty-six thousand three hundred forty-one'); INSERT INTO t2 VALUES(13143, 1197, 'one thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(13144, 11929, 'eleven thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(13145, 87437, 'eighty-seven thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(13146, 73747, 'seventy-three thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(13147, 3822, 'three thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(13148, 63132, 'sixty-three thousand one hundred thirty-two'); INSERT INTO t2 VALUES(13149, 74858, 'seventy-four thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(13150, 60719, 'sixty thousand seven hundred nineteen'); INSERT INTO t2 VALUES(13151, 11534, 'eleven thousand five hundred thirty-four'); INSERT INTO t2 VALUES(13152, 89423, 'eighty-nine thousand four hundred twenty-three'); INSERT INTO t2 VALUES(13153, 64825, 'sixty-four thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(13154, 67448, 'sixty-seven thousand four hundred forty-eight'); INSERT INTO t2 VALUES(13155, 27193, 'twenty-seven thousand one hundred ninety-three'); INSERT INTO t2 VALUES(13156, 9647, 'nine thousand six hundred forty-seven'); INSERT INTO t2 VALUES(13157, 35185, 'thirty-five thousand one hundred eighty-five'); INSERT INTO t2 VALUES(13158, 8076, 'eight thousand seventy-six'); INSERT INTO t2 VALUES(13159, 50827, 'fifty thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(13160, 56347, 'fifty-six thousand three hundred forty-seven'); INSERT INTO t2 VALUES(13161, 63542, 'sixty-three thousand five hundred forty-two'); INSERT INTO t2 VALUES(13162, 36439, 'thirty-six thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(13163, 17371, 'seventeen thousand three hundred seventy-one'); INSERT INTO t2 VALUES(13164, 51837, 'fifty-one thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(13165, 87903, 'eighty-seven thousand nine hundred three'); INSERT INTO t2 VALUES(13166, 95923, 'ninety-five thousand nine hundred twenty-three'); INSERT INTO t2 VALUES(13167, 90815, 'ninety thousand eight hundred fifteen'); INSERT INTO t2 VALUES(13168, 22562, 'twenty-two thousand five hundred sixty-two'); INSERT INTO t2 VALUES(13169, 50782, 'fifty thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(13170, 82861, 'eighty-two thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(13171, 70222, 'seventy thousand two hundred twenty-two'); INSERT INTO t2 VALUES(13172, 12179, 'twelve thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(13173, 54493, 'fifty-four thousand four hundred ninety-three'); INSERT INTO t2 VALUES(13174, 78149, 'seventy-eight thousand one hundred forty-nine'); INSERT INTO t2 VALUES(13175, 46002, 'forty-six thousand two'); INSERT INTO t2 VALUES(13176, 7700, 'seven thousand seven hundred'); INSERT INTO t2 VALUES(13177, 77620, 'seventy-seven thousand six hundred twenty'); INSERT INTO t2 VALUES(13178, 3474, 'three thousand four hundred seventy-four'); INSERT INTO t2 VALUES(13179, 73851, 'seventy-three thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(13180, 15905, 'fifteen thousand nine hundred five'); INSERT INTO t2 VALUES(13181, 59004, 'fifty-nine thousand four'); INSERT INTO t2 VALUES(13182, 96704, 'ninety-six thousand seven hundred four'); INSERT INTO t2 VALUES(13183, 36024, 'thirty-six thousand twenty-four'); INSERT INTO t2 VALUES(13184, 28203, 'twenty-eight thousand two hundred three'); INSERT INTO t2 VALUES(13185, 52029, 'fifty-two thousand twenty-nine'); INSERT INTO t2 VALUES(13186, 78390, 'seventy-eight thousand three hundred ninety'); INSERT INTO t2 VALUES(13187, 87978, 'eighty-seven thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(13188, 17610, 'seventeen thousand six hundred ten'); INSERT INTO t2 VALUES(13189, 72739, 'seventy-two thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(13190, 34316, 'thirty-four thousand three hundred sixteen'); INSERT INTO t2 VALUES(13191, 24071, 'twenty-four thousand seventy-one'); INSERT INTO t2 VALUES(13192, 53318, 'fifty-three thousand three hundred eighteen'); INSERT INTO t2 VALUES(13193, 75735, 'seventy-five thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(13194, 41541, 'forty-one thousand five hundred forty-one'); INSERT INTO t2 VALUES(13195, 32100, 'thirty-two thousand one hundred'); INSERT INTO t2 VALUES(13196, 61417, 'sixty-one thousand four hundred seventeen'); INSERT INTO t2 VALUES(13197, 11863, 'eleven thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(13198, 29375, 'twenty-nine thousand three hundred seventy-five'); INSERT INTO t2 VALUES(13199, 37859, 'thirty-seven thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(13200, 87694, 'eighty-seven thousand six hundred ninety-four'); INSERT INTO t2 VALUES(13201, 26526, 'twenty-six thousand five hundred twenty-six'); INSERT INTO t2 VALUES(13202, 15888, 'fifteen thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(13203, 70807, 'seventy thousand eight hundred seven'); INSERT INTO t2 VALUES(13204, 94343, 'ninety-four thousand three hundred forty-three'); INSERT INTO t2 VALUES(13205, 81494, 'eighty-one thousand four hundred ninety-four'); INSERT INTO t2 VALUES(13206, 29740, 'twenty-nine thousand seven hundred forty'); INSERT INTO t2 VALUES(13207, 23823, 'twenty-three thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(13208, 59185, 'fifty-nine thousand one hundred eighty-five'); INSERT INTO t2 VALUES(13209, 20678, 'twenty thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(13210, 29307, 'twenty-nine thousand three hundred seven'); INSERT INTO t2 VALUES(13211, 13134, 'thirteen thousand one hundred thirty-four'); INSERT INTO t2 VALUES(13212, 4661, 'four thousand six hundred sixty-one'); INSERT INTO t2 VALUES(13213, 35977, 'thirty-five thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(13214, 50793, 'fifty thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(13215, 61478, 'sixty-one thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(13216, 98202, 'ninety-eight thousand two hundred two'); INSERT INTO t2 VALUES(13217, 69740, 'sixty-nine thousand seven hundred forty'); INSERT INTO t2 VALUES(13218, 75275, 'seventy-five thousand two hundred seventy-five'); INSERT INTO t2 VALUES(13219, 56925, 'fifty-six thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(13220, 60715, 'sixty thousand seven hundred fifteen'); INSERT INTO t2 VALUES(13221, 64929, 'sixty-four thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(13222, 27801, 'twenty-seven thousand eight hundred one'); INSERT INTO t2 VALUES(13223, 18972, 'eighteen thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(13224, 11691, 'eleven thousand six hundred ninety-one'); INSERT INTO t2 VALUES(13225, 341, 'three hundred forty-one'); INSERT INTO t2 VALUES(13226, 19298, 'nineteen thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(13227, 40105, 'forty thousand one hundred five'); INSERT INTO t2 VALUES(13228, 26635, 'twenty-six thousand six hundred thirty-five'); INSERT INTO t2 VALUES(13229, 24978, 'twenty-four thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(13230, 47689, 'forty-seven thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(13231, 11586, 'eleven thousand five hundred eighty-six'); INSERT INTO t2 VALUES(13232, 84336, 'eighty-four thousand three hundred thirty-six'); INSERT INTO t2 VALUES(13233, 123, 'one hundred twenty-three'); INSERT INTO t2 VALUES(13234, 8505, 'eight thousand five hundred five'); INSERT INTO t2 VALUES(13235, 49402, 'forty-nine thousand four hundred two'); INSERT INTO t2 VALUES(13236, 26740, 'twenty-six thousand seven hundred forty'); INSERT INTO t2 VALUES(13237, 83351, 'eighty-three thousand three hundred fifty-one'); INSERT INTO t2 VALUES(13238, 35659, 'thirty-five thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(13239, 87846, 'eighty-seven thousand eight hundred forty-six'); INSERT INTO t2 VALUES(13240, 16244, 'sixteen thousand two hundred forty-four'); INSERT INTO t2 VALUES(13241, 6127, 'six thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(13242, 12441, 'twelve thousand four hundred forty-one'); INSERT INTO t2 VALUES(13243, 27672, 'twenty-seven thousand six hundred seventy-two'); INSERT INTO t2 VALUES(13244, 41610, 'forty-one thousand six hundred ten'); INSERT INTO t2 VALUES(13245, 77801, 'seventy-seven thousand eight hundred one'); INSERT INTO t2 VALUES(13246, 64605, 'sixty-four thousand six hundred five'); INSERT INTO t2 VALUES(13247, 55341, 'fifty-five thousand three hundred forty-one'); INSERT INTO t2 VALUES(13248, 38208, 'thirty-eight thousand two hundred eight'); INSERT INTO t2 VALUES(13249, 31076, 'thirty-one thousand seventy-six'); INSERT INTO t2 VALUES(13250, 10181, 'ten thousand one hundred eighty-one'); INSERT INTO t2 VALUES(13251, 5654, 'five thousand six hundred fifty-four'); INSERT INTO t2 VALUES(13252, 14005, 'fourteen thousand five'); INSERT INTO t2 VALUES(13253, 84968, 'eighty-four thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(13254, 21314, 'twenty-one thousand three hundred fourteen'); INSERT INTO t2 VALUES(13255, 62093, 'sixty-two thousand ninety-three'); INSERT INTO t2 VALUES(13256, 37291, 'thirty-seven thousand two hundred ninety-one'); INSERT INTO t2 VALUES(13257, 97748, 'ninety-seven thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(13258, 71656, 'seventy-one thousand six hundred fifty-six'); INSERT INTO t2 VALUES(13259, 71265, 'seventy-one thousand two hundred sixty-five'); INSERT INTO t2 VALUES(13260, 48969, 'forty-eight thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(13261, 53751, 'fifty-three thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(13262, 57532, 'fifty-seven thousand five hundred thirty-two'); INSERT INTO t2 VALUES(13263, 36202, 'thirty-six thousand two hundred two'); INSERT INTO t2 VALUES(13264, 76502, 'seventy-six thousand five hundred two'); INSERT INTO t2 VALUES(13265, 74362, 'seventy-four thousand three hundred sixty-two'); INSERT INTO t2 VALUES(13266, 99653, 'ninety-nine thousand six hundred fifty-three'); INSERT INTO t2 VALUES(13267, 69060, 'sixty-nine thousand sixty'); INSERT INTO t2 VALUES(13268, 75713, 'seventy-five thousand seven hundred thirteen'); INSERT INTO t2 VALUES(13269, 76046, 'seventy-six thousand forty-six'); INSERT INTO t2 VALUES(13270, 61747, 'sixty-one thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(13271, 10396, 'ten thousand three hundred ninety-six'); INSERT INTO t2 VALUES(13272, 71149, 'seventy-one thousand one hundred forty-nine'); INSERT INTO t2 VALUES(13273, 75232, 'seventy-five thousand two hundred thirty-two'); INSERT INTO t2 VALUES(13274, 83474, 'eighty-three thousand four hundred seventy-four'); INSERT INTO t2 VALUES(13275, 16281, 'sixteen thousand two hundred eighty-one'); INSERT INTO t2 VALUES(13276, 30919, 'thirty thousand nine hundred nineteen'); INSERT INTO t2 VALUES(13277, 65978, 'sixty-five thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(13278, 20388, 'twenty thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(13279, 52887, 'fifty-two thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(13280, 74633, 'seventy-four thousand six hundred thirty-three'); INSERT INTO t2 VALUES(13281, 25362, 'twenty-five thousand three hundred sixty-two'); INSERT INTO t2 VALUES(13282, 89761, 'eighty-nine thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(13283, 96460, 'ninety-six thousand four hundred sixty'); INSERT INTO t2 VALUES(13284, 9072, 'nine thousand seventy-two'); INSERT INTO t2 VALUES(13285, 20196, 'twenty thousand one hundred ninety-six'); INSERT INTO t2 VALUES(13286, 35750, 'thirty-five thousand seven hundred fifty'); INSERT INTO t2 VALUES(13287, 34201, 'thirty-four thousand two hundred one'); INSERT INTO t2 VALUES(13288, 71435, 'seventy-one thousand four hundred thirty-five'); INSERT INTO t2 VALUES(13289, 12565, 'twelve thousand five hundred sixty-five'); INSERT INTO t2 VALUES(13290, 15407, 'fifteen thousand four hundred seven'); INSERT INTO t2 VALUES(13291, 60897, 'sixty thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(13292, 97271, 'ninety-seven thousand two hundred seventy-one'); INSERT INTO t2 VALUES(13293, 42621, 'forty-two thousand six hundred twenty-one'); INSERT INTO t2 VALUES(13294, 21222, 'twenty-one thousand two hundred twenty-two'); INSERT INTO t2 VALUES(13295, 97913, 'ninety-seven thousand nine hundred thirteen'); INSERT INTO t2 VALUES(13296, 58094, 'fifty-eight thousand ninety-four'); INSERT INTO t2 VALUES(13297, 2904, 'two thousand nine hundred four'); INSERT INTO t2 VALUES(13298, 42591, 'forty-two thousand five hundred ninety-one'); INSERT INTO t2 VALUES(13299, 55707, 'fifty-five thousand seven hundred seven'); INSERT INTO t2 VALUES(13300, 16614, 'sixteen thousand six hundred fourteen'); INSERT INTO t2 VALUES(13301, 37020, 'thirty-seven thousand twenty'); INSERT INTO t2 VALUES(13302, 13345, 'thirteen thousand three hundred forty-five'); INSERT INTO t2 VALUES(13303, 79461, 'seventy-nine thousand four hundred sixty-one'); INSERT INTO t2 VALUES(13304, 45382, 'forty-five thousand three hundred eighty-two'); INSERT INTO t2 VALUES(13305, 6165, 'six thousand one hundred sixty-five'); INSERT INTO t2 VALUES(13306, 3455, 'three thousand four hundred fifty-five'); INSERT INTO t2 VALUES(13307, 17674, 'seventeen thousand six hundred seventy-four'); INSERT INTO t2 VALUES(13308, 61058, 'sixty-one thousand fifty-eight'); INSERT INTO t2 VALUES(13309, 15826, 'fifteen thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(13310, 92302, 'ninety-two thousand three hundred two'); INSERT INTO t2 VALUES(13311, 27210, 'twenty-seven thousand two hundred ten'); INSERT INTO t2 VALUES(13312, 36885, 'thirty-six thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(13313, 92064, 'ninety-two thousand sixty-four'); INSERT INTO t2 VALUES(13314, 12520, 'twelve thousand five hundred twenty'); INSERT INTO t2 VALUES(13315, 69500, 'sixty-nine thousand five hundred'); INSERT INTO t2 VALUES(13316, 24016, 'twenty-four thousand sixteen'); INSERT INTO t2 VALUES(13317, 31056, 'thirty-one thousand fifty-six'); INSERT INTO t2 VALUES(13318, 59995, 'fifty-nine thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(13319, 24884, 'twenty-four thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(13320, 24883, 'twenty-four thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(13321, 76276, 'seventy-six thousand two hundred seventy-six'); INSERT INTO t2 VALUES(13322, 2489, 'two thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(13323, 64878, 'sixty-four thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(13324, 44163, 'forty-four thousand one hundred sixty-three'); INSERT INTO t2 VALUES(13325, 77423, 'seventy-seven thousand four hundred twenty-three'); INSERT INTO t2 VALUES(13326, 40235, 'forty thousand two hundred thirty-five'); INSERT INTO t2 VALUES(13327, 27180, 'twenty-seven thousand one hundred eighty'); INSERT INTO t2 VALUES(13328, 43594, 'forty-three thousand five hundred ninety-four'); INSERT INTO t2 VALUES(13329, 3690, 'three thousand six hundred ninety'); INSERT INTO t2 VALUES(13330, 11373, 'eleven thousand three hundred seventy-three'); INSERT INTO t2 VALUES(13331, 43537, 'forty-three thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(13332, 17400, 'seventeen thousand four hundred'); INSERT INTO t2 VALUES(13333, 54819, 'fifty-four thousand eight hundred nineteen'); INSERT INTO t2 VALUES(13334, 19330, 'nineteen thousand three hundred thirty'); INSERT INTO t2 VALUES(13335, 66430, 'sixty-six thousand four hundred thirty'); INSERT INTO t2 VALUES(13336, 47395, 'forty-seven thousand three hundred ninety-five'); INSERT INTO t2 VALUES(13337, 99786, 'ninety-nine thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(13338, 32878, 'thirty-two thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(13339, 90252, 'ninety thousand two hundred fifty-two'); INSERT INTO t2 VALUES(13340, 67410, 'sixty-seven thousand four hundred ten'); INSERT INTO t2 VALUES(13341, 46816, 'forty-six thousand eight hundred sixteen'); INSERT INTO t2 VALUES(13342, 42763, 'forty-two thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(13343, 13614, 'thirteen thousand six hundred fourteen'); INSERT INTO t2 VALUES(13344, 79965, 'seventy-nine thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(13345, 43649, 'forty-three thousand six hundred forty-nine'); INSERT INTO t2 VALUES(13346, 55494, 'fifty-five thousand four hundred ninety-four'); INSERT INTO t2 VALUES(13347, 643, 'six hundred forty-three'); INSERT INTO t2 VALUES(13348, 24370, 'twenty-four thousand three hundred seventy'); INSERT INTO t2 VALUES(13349, 88900, 'eighty-eight thousand nine hundred'); INSERT INTO t2 VALUES(13350, 45332, 'forty-five thousand three hundred thirty-two'); INSERT INTO t2 VALUES(13351, 87119, 'eighty-seven thousand one hundred nineteen'); INSERT INTO t2 VALUES(13352, 5424, 'five thousand four hundred twenty-four'); INSERT INTO t2 VALUES(13353, 6691, 'six thousand six hundred ninety-one'); INSERT INTO t2 VALUES(13354, 82112, 'eighty-two thousand one hundred twelve'); INSERT INTO t2 VALUES(13355, 15691, 'fifteen thousand six hundred ninety-one'); INSERT INTO t2 VALUES(13356, 68239, 'sixty-eight thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(13357, 7515, 'seven thousand five hundred fifteen'); INSERT INTO t2 VALUES(13358, 19529, 'nineteen thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(13359, 30609, 'thirty thousand six hundred nine'); INSERT INTO t2 VALUES(13360, 49734, 'forty-nine thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(13361, 81504, 'eighty-one thousand five hundred four'); INSERT INTO t2 VALUES(13362, 92661, 'ninety-two thousand six hundred sixty-one'); INSERT INTO t2 VALUES(13363, 24630, 'twenty-four thousand six hundred thirty'); INSERT INTO t2 VALUES(13364, 11629, 'eleven thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(13365, 90377, 'ninety thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(13366, 29404, 'twenty-nine thousand four hundred four'); INSERT INTO t2 VALUES(13367, 4049, 'four thousand forty-nine'); INSERT INTO t2 VALUES(13368, 85679, 'eighty-five thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(13369, 50669, 'fifty thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(13370, 39943, 'thirty-nine thousand nine hundred forty-three'); INSERT INTO t2 VALUES(13371, 61686, 'sixty-one thousand six hundred eighty-six'); INSERT INTO t2 VALUES(13372, 95689, 'ninety-five thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(13373, 13156, 'thirteen thousand one hundred fifty-six'); INSERT INTO t2 VALUES(13374, 85078, 'eighty-five thousand seventy-eight'); INSERT INTO t2 VALUES(13375, 43209, 'forty-three thousand two hundred nine'); INSERT INTO t2 VALUES(13376, 24774, 'twenty-four thousand seven hundred seventy-four'); INSERT INTO t2 VALUES(13377, 1892, 'one thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(13378, 95840, 'ninety-five thousand eight hundred forty'); INSERT INTO t2 VALUES(13379, 78703, 'seventy-eight thousand seven hundred three'); INSERT INTO t2 VALUES(13380, 88084, 'eighty-eight thousand eighty-four'); INSERT INTO t2 VALUES(13381, 32355, 'thirty-two thousand three hundred fifty-five'); INSERT INTO t2 VALUES(13382, 90626, 'ninety thousand six hundred twenty-six'); INSERT INTO t2 VALUES(13383, 85351, 'eighty-five thousand three hundred fifty-one'); INSERT INTO t2 VALUES(13384, 58896, 'fifty-eight thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(13385, 96485, 'ninety-six thousand four hundred eighty-five'); INSERT INTO t2 VALUES(13386, 64726, 'sixty-four thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(13387, 23011, 'twenty-three thousand eleven'); INSERT INTO t2 VALUES(13388, 31760, 'thirty-one thousand seven hundred sixty'); INSERT INTO t2 VALUES(13389, 73563, 'seventy-three thousand five hundred sixty-three'); INSERT INTO t2 VALUES(13390, 1457, 'one thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(13391, 54956, 'fifty-four thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(13392, 97576, 'ninety-seven thousand five hundred seventy-six'); INSERT INTO t2 VALUES(13393, 18120, 'eighteen thousand one hundred twenty'); INSERT INTO t2 VALUES(13394, 11749, 'eleven thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(13395, 11871, 'eleven thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(13396, 46306, 'forty-six thousand three hundred six'); INSERT INTO t2 VALUES(13397, 4920, 'four thousand nine hundred twenty'); INSERT INTO t2 VALUES(13398, 86397, 'eighty-six thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(13399, 4421, 'four thousand four hundred twenty-one'); INSERT INTO t2 VALUES(13400, 22687, 'twenty-two thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(13401, 18312, 'eighteen thousand three hundred twelve'); INSERT INTO t2 VALUES(13402, 19119, 'nineteen thousand one hundred nineteen'); INSERT INTO t2 VALUES(13403, 67993, 'sixty-seven thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(13404, 41345, 'forty-one thousand three hundred forty-five'); INSERT INTO t2 VALUES(13405, 31791, 'thirty-one thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(13406, 9790, 'nine thousand seven hundred ninety'); INSERT INTO t2 VALUES(13407, 33943, 'thirty-three thousand nine hundred forty-three'); INSERT INTO t2 VALUES(13408, 13551, 'thirteen thousand five hundred fifty-one'); INSERT INTO t2 VALUES(13409, 21684, 'twenty-one thousand six hundred eighty-four'); INSERT INTO t2 VALUES(13410, 34528, 'thirty-four thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(13411, 34653, 'thirty-four thousand six hundred fifty-three'); INSERT INTO t2 VALUES(13412, 2531, 'two thousand five hundred thirty-one'); INSERT INTO t2 VALUES(13413, 55823, 'fifty-five thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(13414, 247, 'two hundred forty-seven'); INSERT INTO t2 VALUES(13415, 58488, 'fifty-eight thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(13416, 24881, 'twenty-four thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(13417, 80859, 'eighty thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(13418, 35264, 'thirty-five thousand two hundred sixty-four'); INSERT INTO t2 VALUES(13419, 82193, 'eighty-two thousand one hundred ninety-three'); INSERT INTO t2 VALUES(13420, 51840, 'fifty-one thousand eight hundred forty'); INSERT INTO t2 VALUES(13421, 64702, 'sixty-four thousand seven hundred two'); INSERT INTO t2 VALUES(13422, 38351, 'thirty-eight thousand three hundred fifty-one'); INSERT INTO t2 VALUES(13423, 71390, 'seventy-one thousand three hundred ninety'); INSERT INTO t2 VALUES(13424, 91759, 'ninety-one thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(13425, 9395, 'nine thousand three hundred ninety-five'); INSERT INTO t2 VALUES(13426, 14921, 'fourteen thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(13427, 82772, 'eighty-two thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(13428, 42233, 'forty-two thousand two hundred thirty-three'); INSERT INTO t2 VALUES(13429, 21197, 'twenty-one thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(13430, 27454, 'twenty-seven thousand four hundred fifty-four'); INSERT INTO t2 VALUES(13431, 24640, 'twenty-four thousand six hundred forty'); INSERT INTO t2 VALUES(13432, 64911, 'sixty-four thousand nine hundred eleven'); INSERT INTO t2 VALUES(13433, 55943, 'fifty-five thousand nine hundred forty-three'); INSERT INTO t2 VALUES(13434, 74409, 'seventy-four thousand four hundred nine'); INSERT INTO t2 VALUES(13435, 98584, 'ninety-eight thousand five hundred eighty-four'); INSERT INTO t2 VALUES(13436, 50969, 'fifty thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(13437, 17820, 'seventeen thousand eight hundred twenty'); INSERT INTO t2 VALUES(13438, 1380, 'one thousand three hundred eighty'); INSERT INTO t2 VALUES(13439, 75904, 'seventy-five thousand nine hundred four'); INSERT INTO t2 VALUES(13440, 58169, 'fifty-eight thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(13441, 89505, 'eighty-nine thousand five hundred five'); INSERT INTO t2 VALUES(13442, 76161, 'seventy-six thousand one hundred sixty-one'); INSERT INTO t2 VALUES(13443, 85191, 'eighty-five thousand one hundred ninety-one'); INSERT INTO t2 VALUES(13444, 3654, 'three thousand six hundred fifty-four'); INSERT INTO t2 VALUES(13445, 7270, 'seven thousand two hundred seventy'); INSERT INTO t2 VALUES(13446, 58449, 'fifty-eight thousand four hundred forty-nine'); INSERT INTO t2 VALUES(13447, 18421, 'eighteen thousand four hundred twenty-one'); INSERT INTO t2 VALUES(13448, 87540, 'eighty-seven thousand five hundred forty'); INSERT INTO t2 VALUES(13449, 64988, 'sixty-four thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(13450, 62539, 'sixty-two thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(13451, 5489, 'five thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(13452, 11447, 'eleven thousand four hundred forty-seven'); INSERT INTO t2 VALUES(13453, 12538, 'twelve thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(13454, 84432, 'eighty-four thousand four hundred thirty-two'); INSERT INTO t2 VALUES(13455, 43221, 'forty-three thousand two hundred twenty-one'); INSERT INTO t2 VALUES(13456, 73702, 'seventy-three thousand seven hundred two'); INSERT INTO t2 VALUES(13457, 62350, 'sixty-two thousand three hundred fifty'); INSERT INTO t2 VALUES(13458, 90981, 'ninety thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(13459, 84845, 'eighty-four thousand eight hundred forty-five'); INSERT INTO t2 VALUES(13460, 52796, 'fifty-two thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(13461, 66773, 'sixty-six thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(13462, 41435, 'forty-one thousand four hundred thirty-five'); INSERT INTO t2 VALUES(13463, 7761, 'seven thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(13464, 28007, 'twenty-eight thousand seven'); INSERT INTO t2 VALUES(13465, 96963, 'ninety-six thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(13466, 93009, 'ninety-three thousand nine'); INSERT INTO t2 VALUES(13467, 2819, 'two thousand eight hundred nineteen'); INSERT INTO t2 VALUES(13468, 924, 'nine hundred twenty-four'); INSERT INTO t2 VALUES(13469, 24234, 'twenty-four thousand two hundred thirty-four'); INSERT INTO t2 VALUES(13470, 80264, 'eighty thousand two hundred sixty-four'); INSERT INTO t2 VALUES(13471, 84051, 'eighty-four thousand fifty-one'); INSERT INTO t2 VALUES(13472, 1310, 'one thousand three hundred ten'); INSERT INTO t2 VALUES(13473, 2837, 'two thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(13474, 87686, 'eighty-seven thousand six hundred eighty-six'); INSERT INTO t2 VALUES(13475, 15872, 'fifteen thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(13476, 84167, 'eighty-four thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(13477, 59391, 'fifty-nine thousand three hundred ninety-one'); INSERT INTO t2 VALUES(13478, 85732, 'eighty-five thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(13479, 37927, 'thirty-seven thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(13480, 2578, 'two thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(13481, 44012, 'forty-four thousand twelve'); INSERT INTO t2 VALUES(13482, 14290, 'fourteen thousand two hundred ninety'); INSERT INTO t2 VALUES(13483, 25567, 'twenty-five thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(13484, 38059, 'thirty-eight thousand fifty-nine'); INSERT INTO t2 VALUES(13485, 59733, 'fifty-nine thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(13486, 32897, 'thirty-two thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(13487, 12843, 'twelve thousand eight hundred forty-three'); INSERT INTO t2 VALUES(13488, 25993, 'twenty-five thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(13489, 84519, 'eighty-four thousand five hundred nineteen'); INSERT INTO t2 VALUES(13490, 22645, 'twenty-two thousand six hundred forty-five'); INSERT INTO t2 VALUES(13491, 40121, 'forty thousand one hundred twenty-one'); INSERT INTO t2 VALUES(13492, 31797, 'thirty-one thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(13493, 67194, 'sixty-seven thousand one hundred ninety-four'); INSERT INTO t2 VALUES(13494, 41318, 'forty-one thousand three hundred eighteen'); INSERT INTO t2 VALUES(13495, 23003, 'twenty-three thousand three'); INSERT INTO t2 VALUES(13496, 27605, 'twenty-seven thousand six hundred five'); INSERT INTO t2 VALUES(13497, 93482, 'ninety-three thousand four hundred eighty-two'); INSERT INTO t2 VALUES(13498, 75579, 'seventy-five thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(13499, 1265, 'one thousand two hundred sixty-five'); INSERT INTO t2 VALUES(13500, 19780, 'nineteen thousand seven hundred eighty'); INSERT INTO t2 VALUES(13501, 85838, 'eighty-five thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(13502, 65705, 'sixty-five thousand seven hundred five'); INSERT INTO t2 VALUES(13503, 4730, 'four thousand seven hundred thirty'); INSERT INTO t2 VALUES(13504, 15590, 'fifteen thousand five hundred ninety'); INSERT INTO t2 VALUES(13505, 16963, 'sixteen thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(13506, 71713, 'seventy-one thousand seven hundred thirteen'); INSERT INTO t2 VALUES(13507, 69032, 'sixty-nine thousand thirty-two'); INSERT INTO t2 VALUES(13508, 8635, 'eight thousand six hundred thirty-five'); INSERT INTO t2 VALUES(13509, 47461, 'forty-seven thousand four hundred sixty-one'); INSERT INTO t2 VALUES(13510, 34107, 'thirty-four thousand one hundred seven'); INSERT INTO t2 VALUES(13511, 13665, 'thirteen thousand six hundred sixty-five'); INSERT INTO t2 VALUES(13512, 10762, 'ten thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(13513, 94365, 'ninety-four thousand three hundred sixty-five'); INSERT INTO t2 VALUES(13514, 11060, 'eleven thousand sixty'); INSERT INTO t2 VALUES(13515, 58344, 'fifty-eight thousand three hundred forty-four'); INSERT INTO t2 VALUES(13516, 74773, 'seventy-four thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(13517, 19797, 'nineteen thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(13518, 38729, 'thirty-eight thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(13519, 69522, 'sixty-nine thousand five hundred twenty-two'); INSERT INTO t2 VALUES(13520, 62413, 'sixty-two thousand four hundred thirteen'); INSERT INTO t2 VALUES(13521, 86445, 'eighty-six thousand four hundred forty-five'); INSERT INTO t2 VALUES(13522, 94331, 'ninety-four thousand three hundred thirty-one'); INSERT INTO t2 VALUES(13523, 78354, 'seventy-eight thousand three hundred fifty-four'); INSERT INTO t2 VALUES(13524, 6332, 'six thousand three hundred thirty-two'); INSERT INTO t2 VALUES(13525, 45405, 'forty-five thousand four hundred five'); INSERT INTO t2 VALUES(13526, 19955, 'nineteen thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(13527, 21999, 'twenty-one thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(13528, 81769, 'eighty-one thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(13529, 28807, 'twenty-eight thousand eight hundred seven'); INSERT INTO t2 VALUES(13530, 45547, 'forty-five thousand five hundred forty-seven'); INSERT INTO t2 VALUES(13531, 16980, 'sixteen thousand nine hundred eighty'); INSERT INTO t2 VALUES(13532, 63331, 'sixty-three thousand three hundred thirty-one'); INSERT INTO t2 VALUES(13533, 43602, 'forty-three thousand six hundred two'); INSERT INTO t2 VALUES(13534, 31850, 'thirty-one thousand eight hundred fifty'); INSERT INTO t2 VALUES(13535, 25922, 'twenty-five thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(13536, 86241, 'eighty-six thousand two hundred forty-one'); INSERT INTO t2 VALUES(13537, 23191, 'twenty-three thousand one hundred ninety-one'); INSERT INTO t2 VALUES(13538, 45128, 'forty-five thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(13539, 32189, 'thirty-two thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(13540, 15541, 'fifteen thousand five hundred forty-one'); INSERT INTO t2 VALUES(13541, 73582, 'seventy-three thousand five hundred eighty-two'); INSERT INTO t2 VALUES(13542, 34331, 'thirty-four thousand three hundred thirty-one'); INSERT INTO t2 VALUES(13543, 33372, 'thirty-three thousand three hundred seventy-two'); INSERT INTO t2 VALUES(13544, 79229, 'seventy-nine thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(13545, 96487, 'ninety-six thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(13546, 35287, 'thirty-five thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(13547, 66978, 'sixty-six thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(13548, 17467, 'seventeen thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(13549, 7598, 'seven thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(13550, 81921, 'eighty-one thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(13551, 14983, 'fourteen thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(13552, 54865, 'fifty-four thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(13553, 42039, 'forty-two thousand thirty-nine'); INSERT INTO t2 VALUES(13554, 46505, 'forty-six thousand five hundred five'); INSERT INTO t2 VALUES(13555, 30935, 'thirty thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(13556, 42183, 'forty-two thousand one hundred eighty-three'); INSERT INTO t2 VALUES(13557, 14094, 'fourteen thousand ninety-four'); INSERT INTO t2 VALUES(13558, 29876, 'twenty-nine thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(13559, 57726, 'fifty-seven thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(13560, 7731, 'seven thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(13561, 30694, 'thirty thousand six hundred ninety-four'); INSERT INTO t2 VALUES(13562, 53227, 'fifty-three thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(13563, 85669, 'eighty-five thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(13564, 90753, 'ninety thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(13565, 45573, 'forty-five thousand five hundred seventy-three'); INSERT INTO t2 VALUES(13566, 38817, 'thirty-eight thousand eight hundred seventeen'); INSERT INTO t2 VALUES(13567, 91332, 'ninety-one thousand three hundred thirty-two'); INSERT INTO t2 VALUES(13568, 76530, 'seventy-six thousand five hundred thirty'); INSERT INTO t2 VALUES(13569, 80829, 'eighty thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(13570, 47663, 'forty-seven thousand six hundred sixty-three'); INSERT INTO t2 VALUES(13571, 69575, 'sixty-nine thousand five hundred seventy-five'); INSERT INTO t2 VALUES(13572, 60932, 'sixty thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(13573, 91394, 'ninety-one thousand three hundred ninety-four'); INSERT INTO t2 VALUES(13574, 9005, 'nine thousand five'); INSERT INTO t2 VALUES(13575, 61146, 'sixty-one thousand one hundred forty-six'); INSERT INTO t2 VALUES(13576, 66212, 'sixty-six thousand two hundred twelve'); INSERT INTO t2 VALUES(13577, 50640, 'fifty thousand six hundred forty'); INSERT INTO t2 VALUES(13578, 50146, 'fifty thousand one hundred forty-six'); INSERT INTO t2 VALUES(13579, 25970, 'twenty-five thousand nine hundred seventy'); INSERT INTO t2 VALUES(13580, 63852, 'sixty-three thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(13581, 24647, 'twenty-four thousand six hundred forty-seven'); INSERT INTO t2 VALUES(13582, 15971, 'fifteen thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(13583, 70457, 'seventy thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(13584, 54764, 'fifty-four thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(13585, 24990, 'twenty-four thousand nine hundred ninety'); INSERT INTO t2 VALUES(13586, 69399, 'sixty-nine thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(13587, 90990, 'ninety thousand nine hundred ninety'); INSERT INTO t2 VALUES(13588, 67029, 'sixty-seven thousand twenty-nine'); INSERT INTO t2 VALUES(13589, 77976, 'seventy-seven thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(13590, 91331, 'ninety-one thousand three hundred thirty-one'); INSERT INTO t2 VALUES(13591, 76717, 'seventy-six thousand seven hundred seventeen'); INSERT INTO t2 VALUES(13592, 51540, 'fifty-one thousand five hundred forty'); INSERT INTO t2 VALUES(13593, 8526, 'eight thousand five hundred twenty-six'); INSERT INTO t2 VALUES(13594, 41123, 'forty-one thousand one hundred twenty-three'); INSERT INTO t2 VALUES(13595, 94873, 'ninety-four thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(13596, 24189, 'twenty-four thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(13597, 48310, 'forty-eight thousand three hundred ten'); INSERT INTO t2 VALUES(13598, 13437, 'thirteen thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(13599, 48614, 'forty-eight thousand six hundred fourteen'); INSERT INTO t2 VALUES(13600, 65706, 'sixty-five thousand seven hundred six'); INSERT INTO t2 VALUES(13601, 40556, 'forty thousand five hundred fifty-six'); INSERT INTO t2 VALUES(13602, 65902, 'sixty-five thousand nine hundred two'); INSERT INTO t2 VALUES(13603, 95212, 'ninety-five thousand two hundred twelve'); INSERT INTO t2 VALUES(13604, 475, 'four hundred seventy-five'); INSERT INTO t2 VALUES(13605, 63035, 'sixty-three thousand thirty-five'); INSERT INTO t2 VALUES(13606, 22866, 'twenty-two thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(13607, 71775, 'seventy-one thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(13608, 89843, 'eighty-nine thousand eight hundred forty-three'); INSERT INTO t2 VALUES(13609, 43237, 'forty-three thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(13610, 8653, 'eight thousand six hundred fifty-three'); INSERT INTO t2 VALUES(13611, 79069, 'seventy-nine thousand sixty-nine'); INSERT INTO t2 VALUES(13612, 987, 'nine hundred eighty-seven'); INSERT INTO t2 VALUES(13613, 17396, 'seventeen thousand three hundred ninety-six'); INSERT INTO t2 VALUES(13614, 57167, 'fifty-seven thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(13615, 13001, 'thirteen thousand one'); INSERT INTO t2 VALUES(13616, 25197, 'twenty-five thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(13617, 76542, 'seventy-six thousand five hundred forty-two'); INSERT INTO t2 VALUES(13618, 66067, 'sixty-six thousand sixty-seven'); INSERT INTO t2 VALUES(13619, 68736, 'sixty-eight thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(13620, 94207, 'ninety-four thousand two hundred seven'); INSERT INTO t2 VALUES(13621, 37605, 'thirty-seven thousand six hundred five'); INSERT INTO t2 VALUES(13622, 1482, 'one thousand four hundred eighty-two'); INSERT INTO t2 VALUES(13623, 90353, 'ninety thousand three hundred fifty-three'); INSERT INTO t2 VALUES(13624, 70863, 'seventy thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(13625, 66587, 'sixty-six thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(13626, 96557, 'ninety-six thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(13627, 4233, 'four thousand two hundred thirty-three'); INSERT INTO t2 VALUES(13628, 50958, 'fifty thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(13629, 11156, 'eleven thousand one hundred fifty-six'); INSERT INTO t2 VALUES(13630, 84869, 'eighty-four thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(13631, 36240, 'thirty-six thousand two hundred forty'); INSERT INTO t2 VALUES(13632, 70414, 'seventy thousand four hundred fourteen'); INSERT INTO t2 VALUES(13633, 10625, 'ten thousand six hundred twenty-five'); INSERT INTO t2 VALUES(13634, 88677, 'eighty-eight thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(13635, 51460, 'fifty-one thousand four hundred sixty'); INSERT INTO t2 VALUES(13636, 30192, 'thirty thousand one hundred ninety-two'); INSERT INTO t2 VALUES(13637, 45114, 'forty-five thousand one hundred fourteen'); INSERT INTO t2 VALUES(13638, 50980, 'fifty thousand nine hundred eighty'); INSERT INTO t2 VALUES(13639, 79041, 'seventy-nine thousand forty-one'); INSERT INTO t2 VALUES(13640, 13333, 'thirteen thousand three hundred thirty-three'); INSERT INTO t2 VALUES(13641, 8134, 'eight thousand one hundred thirty-four'); INSERT INTO t2 VALUES(13642, 71735, 'seventy-one thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(13643, 52192, 'fifty-two thousand one hundred ninety-two'); INSERT INTO t2 VALUES(13644, 84157, 'eighty-four thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(13645, 50936, 'fifty thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(13646, 14307, 'fourteen thousand three hundred seven'); INSERT INTO t2 VALUES(13647, 25668, 'twenty-five thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(13648, 44503, 'forty-four thousand five hundred three'); INSERT INTO t2 VALUES(13649, 20978, 'twenty thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(13650, 59805, 'fifty-nine thousand eight hundred five'); INSERT INTO t2 VALUES(13651, 53483, 'fifty-three thousand four hundred eighty-three'); INSERT INTO t2 VALUES(13652, 33857, 'thirty-three thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(13653, 95460, 'ninety-five thousand four hundred sixty'); INSERT INTO t2 VALUES(13654, 59699, 'fifty-nine thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(13655, 23865, 'twenty-three thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(13656, 86569, 'eighty-six thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(13657, 40275, 'forty thousand two hundred seventy-five'); INSERT INTO t2 VALUES(13658, 22081, 'twenty-two thousand eighty-one'); INSERT INTO t2 VALUES(13659, 14997, 'fourteen thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(13660, 30873, 'thirty thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(13661, 57839, 'fifty-seven thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(13662, 80026, 'eighty thousand twenty-six'); INSERT INTO t2 VALUES(13663, 66472, 'sixty-six thousand four hundred seventy-two'); INSERT INTO t2 VALUES(13664, 13000, 'thirteen thousand'); INSERT INTO t2 VALUES(13665, 40121, 'forty thousand one hundred twenty-one'); INSERT INTO t2 VALUES(13666, 15251, 'fifteen thousand two hundred fifty-one'); INSERT INTO t2 VALUES(13667, 30927, 'thirty thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(13668, 78140, 'seventy-eight thousand one hundred forty'); INSERT INTO t2 VALUES(13669, 84081, 'eighty-four thousand eighty-one'); INSERT INTO t2 VALUES(13670, 50335, 'fifty thousand three hundred thirty-five'); INSERT INTO t2 VALUES(13671, 92674, 'ninety-two thousand six hundred seventy-four'); INSERT INTO t2 VALUES(13672, 33679, 'thirty-three thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(13673, 7606, 'seven thousand six hundred six'); INSERT INTO t2 VALUES(13674, 92005, 'ninety-two thousand five'); INSERT INTO t2 VALUES(13675, 5434, 'five thousand four hundred thirty-four'); INSERT INTO t2 VALUES(13676, 13517, 'thirteen thousand five hundred seventeen'); INSERT INTO t2 VALUES(13677, 12443, 'twelve thousand four hundred forty-three'); INSERT INTO t2 VALUES(13678, 46815, 'forty-six thousand eight hundred fifteen'); INSERT INTO t2 VALUES(13679, 7753, 'seven thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(13680, 82427, 'eighty-two thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(13681, 47973, 'forty-seven thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(13682, 98467, 'ninety-eight thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(13683, 60533, 'sixty thousand five hundred thirty-three'); INSERT INTO t2 VALUES(13684, 52394, 'fifty-two thousand three hundred ninety-four'); INSERT INTO t2 VALUES(13685, 71816, 'seventy-one thousand eight hundred sixteen'); INSERT INTO t2 VALUES(13686, 8326, 'eight thousand three hundred twenty-six'); INSERT INTO t2 VALUES(13687, 65632, 'sixty-five thousand six hundred thirty-two'); INSERT INTO t2 VALUES(13688, 59581, 'fifty-nine thousand five hundred eighty-one'); INSERT INTO t2 VALUES(13689, 91354, 'ninety-one thousand three hundred fifty-four'); INSERT INTO t2 VALUES(13690, 56213, 'fifty-six thousand two hundred thirteen'); INSERT INTO t2 VALUES(13691, 31000, 'thirty-one thousand'); INSERT INTO t2 VALUES(13692, 38897, 'thirty-eight thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(13693, 62487, 'sixty-two thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(13694, 72147, 'seventy-two thousand one hundred forty-seven'); INSERT INTO t2 VALUES(13695, 14074, 'fourteen thousand seventy-four'); INSERT INTO t2 VALUES(13696, 40583, 'forty thousand five hundred eighty-three'); INSERT INTO t2 VALUES(13697, 72494, 'seventy-two thousand four hundred ninety-four'); INSERT INTO t2 VALUES(13698, 62041, 'sixty-two thousand forty-one'); INSERT INTO t2 VALUES(13699, 63286, 'sixty-three thousand two hundred eighty-six'); INSERT INTO t2 VALUES(13700, 34725, 'thirty-four thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(13701, 77753, 'seventy-seven thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(13702, 45506, 'forty-five thousand five hundred six'); INSERT INTO t2 VALUES(13703, 94021, 'ninety-four thousand twenty-one'); INSERT INTO t2 VALUES(13704, 52052, 'fifty-two thousand fifty-two'); INSERT INTO t2 VALUES(13705, 91936, 'ninety-one thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(13706, 60384, 'sixty thousand three hundred eighty-four'); INSERT INTO t2 VALUES(13707, 9721, 'nine thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(13708, 31031, 'thirty-one thousand thirty-one'); INSERT INTO t2 VALUES(13709, 74978, 'seventy-four thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(13710, 22814, 'twenty-two thousand eight hundred fourteen'); INSERT INTO t2 VALUES(13711, 67919, 'sixty-seven thousand nine hundred nineteen'); INSERT INTO t2 VALUES(13712, 37144, 'thirty-seven thousand one hundred forty-four'); INSERT INTO t2 VALUES(13713, 77122, 'seventy-seven thousand one hundred twenty-two'); INSERT INTO t2 VALUES(13714, 83969, 'eighty-three thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(13715, 67269, 'sixty-seven thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(13716, 39758, 'thirty-nine thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(13717, 32750, 'thirty-two thousand seven hundred fifty'); INSERT INTO t2 VALUES(13718, 15333, 'fifteen thousand three hundred thirty-three'); INSERT INTO t2 VALUES(13719, 14699, 'fourteen thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(13720, 28863, 'twenty-eight thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(13721, 19065, 'nineteen thousand sixty-five'); INSERT INTO t2 VALUES(13722, 65366, 'sixty-five thousand three hundred sixty-six'); INSERT INTO t2 VALUES(13723, 31543, 'thirty-one thousand five hundred forty-three'); INSERT INTO t2 VALUES(13724, 66953, 'sixty-six thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(13725, 31089, 'thirty-one thousand eighty-nine'); INSERT INTO t2 VALUES(13726, 92292, 'ninety-two thousand two hundred ninety-two'); INSERT INTO t2 VALUES(13727, 45605, 'forty-five thousand six hundred five'); INSERT INTO t2 VALUES(13728, 39718, 'thirty-nine thousand seven hundred eighteen'); INSERT INTO t2 VALUES(13729, 50362, 'fifty thousand three hundred sixty-two'); INSERT INTO t2 VALUES(13730, 71154, 'seventy-one thousand one hundred fifty-four'); INSERT INTO t2 VALUES(13731, 34712, 'thirty-four thousand seven hundred twelve'); INSERT INTO t2 VALUES(13732, 18775, 'eighteen thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(13733, 67596, 'sixty-seven thousand five hundred ninety-six'); INSERT INTO t2 VALUES(13734, 44008, 'forty-four thousand eight'); INSERT INTO t2 VALUES(13735, 13487, 'thirteen thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(13736, 81686, 'eighty-one thousand six hundred eighty-six'); INSERT INTO t2 VALUES(13737, 93496, 'ninety-three thousand four hundred ninety-six'); INSERT INTO t2 VALUES(13738, 68425, 'sixty-eight thousand four hundred twenty-five'); INSERT INTO t2 VALUES(13739, 19463, 'nineteen thousand four hundred sixty-three'); INSERT INTO t2 VALUES(13740, 25695, 'twenty-five thousand six hundred ninety-five'); INSERT INTO t2 VALUES(13741, 72636, 'seventy-two thousand six hundred thirty-six'); INSERT INTO t2 VALUES(13742, 56790, 'fifty-six thousand seven hundred ninety'); INSERT INTO t2 VALUES(13743, 81229, 'eighty-one thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(13744, 85159, 'eighty-five thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(13745, 49307, 'forty-nine thousand three hundred seven'); INSERT INTO t2 VALUES(13746, 2207, 'two thousand two hundred seven'); INSERT INTO t2 VALUES(13747, 72435, 'seventy-two thousand four hundred thirty-five'); INSERT INTO t2 VALUES(13748, 40335, 'forty thousand three hundred thirty-five'); INSERT INTO t2 VALUES(13749, 26055, 'twenty-six thousand fifty-five'); INSERT INTO t2 VALUES(13750, 1511, 'one thousand five hundred eleven'); INSERT INTO t2 VALUES(13751, 84572, 'eighty-four thousand five hundred seventy-two'); INSERT INTO t2 VALUES(13752, 61971, 'sixty-one thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(13753, 70945, 'seventy thousand nine hundred forty-five'); INSERT INTO t2 VALUES(13754, 61648, 'sixty-one thousand six hundred forty-eight'); INSERT INTO t2 VALUES(13755, 938, 'nine hundred thirty-eight'); INSERT INTO t2 VALUES(13756, 43068, 'forty-three thousand sixty-eight'); INSERT INTO t2 VALUES(13757, 27896, 'twenty-seven thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(13758, 52616, 'fifty-two thousand six hundred sixteen'); INSERT INTO t2 VALUES(13759, 48165, 'forty-eight thousand one hundred sixty-five'); INSERT INTO t2 VALUES(13760, 2164, 'two thousand one hundred sixty-four'); INSERT INTO t2 VALUES(13761, 23721, 'twenty-three thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(13762, 52476, 'fifty-two thousand four hundred seventy-six'); INSERT INTO t2 VALUES(13763, 62231, 'sixty-two thousand two hundred thirty-one'); INSERT INTO t2 VALUES(13764, 33567, 'thirty-three thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(13765, 57681, 'fifty-seven thousand six hundred eighty-one'); INSERT INTO t2 VALUES(13766, 88349, 'eighty-eight thousand three hundred forty-nine'); INSERT INTO t2 VALUES(13767, 19735, 'nineteen thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(13768, 47280, 'forty-seven thousand two hundred eighty'); INSERT INTO t2 VALUES(13769, 83506, 'eighty-three thousand five hundred six'); INSERT INTO t2 VALUES(13770, 21295, 'twenty-one thousand two hundred ninety-five'); INSERT INTO t2 VALUES(13771, 26390, 'twenty-six thousand three hundred ninety'); INSERT INTO t2 VALUES(13772, 40762, 'forty thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(13773, 62863, 'sixty-two thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(13774, 28296, 'twenty-eight thousand two hundred ninety-six'); INSERT INTO t2 VALUES(13775, 38257, 'thirty-eight thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(13776, 36423, 'thirty-six thousand four hundred twenty-three'); INSERT INTO t2 VALUES(13777, 31282, 'thirty-one thousand two hundred eighty-two'); INSERT INTO t2 VALUES(13778, 76158, 'seventy-six thousand one hundred fifty-eight'); INSERT INTO t2 VALUES(13779, 15672, 'fifteen thousand six hundred seventy-two'); INSERT INTO t2 VALUES(13780, 93834, 'ninety-three thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(13781, 63963, 'sixty-three thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(13782, 83022, 'eighty-three thousand twenty-two'); INSERT INTO t2 VALUES(13783, 72549, 'seventy-two thousand five hundred forty-nine'); INSERT INTO t2 VALUES(13784, 61398, 'sixty-one thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(13785, 65676, 'sixty-five thousand six hundred seventy-six'); INSERT INTO t2 VALUES(13786, 51490, 'fifty-one thousand four hundred ninety'); INSERT INTO t2 VALUES(13787, 43370, 'forty-three thousand three hundred seventy'); INSERT INTO t2 VALUES(13788, 5813, 'five thousand eight hundred thirteen'); INSERT INTO t2 VALUES(13789, 75003, 'seventy-five thousand three'); INSERT INTO t2 VALUES(13790, 53449, 'fifty-three thousand four hundred forty-nine'); INSERT INTO t2 VALUES(13791, 77865, 'seventy-seven thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(13792, 83687, 'eighty-three thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(13793, 96305, 'ninety-six thousand three hundred five'); INSERT INTO t2 VALUES(13794, 49568, 'forty-nine thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(13795, 15967, 'fifteen thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(13796, 89032, 'eighty-nine thousand thirty-two'); INSERT INTO t2 VALUES(13797, 20415, 'twenty thousand four hundred fifteen'); INSERT INTO t2 VALUES(13798, 80226, 'eighty thousand two hundred twenty-six'); INSERT INTO t2 VALUES(13799, 93558, 'ninety-three thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(13800, 93706, 'ninety-three thousand seven hundred six'); INSERT INTO t2 VALUES(13801, 27507, 'twenty-seven thousand five hundred seven'); INSERT INTO t2 VALUES(13802, 88167, 'eighty-eight thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(13803, 23815, 'twenty-three thousand eight hundred fifteen'); INSERT INTO t2 VALUES(13804, 9192, 'nine thousand one hundred ninety-two'); INSERT INTO t2 VALUES(13805, 95524, 'ninety-five thousand five hundred twenty-four'); INSERT INTO t2 VALUES(13806, 33704, 'thirty-three thousand seven hundred four'); INSERT INTO t2 VALUES(13807, 54328, 'fifty-four thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(13808, 94822, 'ninety-four thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(13809, 82078, 'eighty-two thousand seventy-eight'); INSERT INTO t2 VALUES(13810, 42892, 'forty-two thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(13811, 9847, 'nine thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(13812, 51487, 'fifty-one thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(13813, 73613, 'seventy-three thousand six hundred thirteen'); INSERT INTO t2 VALUES(13814, 11225, 'eleven thousand two hundred twenty-five'); INSERT INTO t2 VALUES(13815, 21855, 'twenty-one thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(13816, 56850, 'fifty-six thousand eight hundred fifty'); INSERT INTO t2 VALUES(13817, 98933, 'ninety-eight thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(13818, 64832, 'sixty-four thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(13819, 49910, 'forty-nine thousand nine hundred ten'); INSERT INTO t2 VALUES(13820, 40944, 'forty thousand nine hundred forty-four'); INSERT INTO t2 VALUES(13821, 91430, 'ninety-one thousand four hundred thirty'); INSERT INTO t2 VALUES(13822, 85725, 'eighty-five thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(13823, 88200, 'eighty-eight thousand two hundred'); INSERT INTO t2 VALUES(13824, 85983, 'eighty-five thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(13825, 2003, 'two thousand three'); INSERT INTO t2 VALUES(13826, 97278, 'ninety-seven thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(13827, 64222, 'sixty-four thousand two hundred twenty-two'); INSERT INTO t2 VALUES(13828, 99213, 'ninety-nine thousand two hundred thirteen'); INSERT INTO t2 VALUES(13829, 11659, 'eleven thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(13830, 50991, 'fifty thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(13831, 29481, 'twenty-nine thousand four hundred eighty-one'); INSERT INTO t2 VALUES(13832, 54400, 'fifty-four thousand four hundred'); INSERT INTO t2 VALUES(13833, 40258, 'forty thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(13834, 95042, 'ninety-five thousand forty-two'); INSERT INTO t2 VALUES(13835, 8704, 'eight thousand seven hundred four'); INSERT INTO t2 VALUES(13836, 42689, 'forty-two thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(13837, 78620, 'seventy-eight thousand six hundred twenty'); INSERT INTO t2 VALUES(13838, 52949, 'fifty-two thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(13839, 9565, 'nine thousand five hundred sixty-five'); INSERT INTO t2 VALUES(13840, 68254, 'sixty-eight thousand two hundred fifty-four'); INSERT INTO t2 VALUES(13841, 33211, 'thirty-three thousand two hundred eleven'); INSERT INTO t2 VALUES(13842, 80035, 'eighty thousand thirty-five'); INSERT INTO t2 VALUES(13843, 87332, 'eighty-seven thousand three hundred thirty-two'); INSERT INTO t2 VALUES(13844, 79933, 'seventy-nine thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(13845, 52004, 'fifty-two thousand four'); INSERT INTO t2 VALUES(13846, 1440, 'one thousand four hundred forty'); INSERT INTO t2 VALUES(13847, 91185, 'ninety-one thousand one hundred eighty-five'); INSERT INTO t2 VALUES(13848, 9933, 'nine thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(13849, 34667, 'thirty-four thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(13850, 97866, 'ninety-seven thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(13851, 82399, 'eighty-two thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(13852, 41453, 'forty-one thousand four hundred fifty-three'); INSERT INTO t2 VALUES(13853, 88606, 'eighty-eight thousand six hundred six'); INSERT INTO t2 VALUES(13854, 98991, 'ninety-eight thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(13855, 74902, 'seventy-four thousand nine hundred two'); INSERT INTO t2 VALUES(13856, 99281, 'ninety-nine thousand two hundred eighty-one'); INSERT INTO t2 VALUES(13857, 73926, 'seventy-three thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(13858, 45190, 'forty-five thousand one hundred ninety'); INSERT INTO t2 VALUES(13859, 41484, 'forty-one thousand four hundred eighty-four'); INSERT INTO t2 VALUES(13860, 70994, 'seventy thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(13861, 21271, 'twenty-one thousand two hundred seventy-one'); INSERT INTO t2 VALUES(13862, 51480, 'fifty-one thousand four hundred eighty'); INSERT INTO t2 VALUES(13863, 51347, 'fifty-one thousand three hundred forty-seven'); INSERT INTO t2 VALUES(13864, 61407, 'sixty-one thousand four hundred seven'); INSERT INTO t2 VALUES(13865, 36644, 'thirty-six thousand six hundred forty-four'); INSERT INTO t2 VALUES(13866, 24674, 'twenty-four thousand six hundred seventy-four'); INSERT INTO t2 VALUES(13867, 83153, 'eighty-three thousand one hundred fifty-three'); INSERT INTO t2 VALUES(13868, 46673, 'forty-six thousand six hundred seventy-three'); INSERT INTO t2 VALUES(13869, 37895, 'thirty-seven thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(13870, 30440, 'thirty thousand four hundred forty'); INSERT INTO t2 VALUES(13871, 16861, 'sixteen thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(13872, 78951, 'seventy-eight thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(13873, 78606, 'seventy-eight thousand six hundred six'); INSERT INTO t2 VALUES(13874, 61033, 'sixty-one thousand thirty-three'); INSERT INTO t2 VALUES(13875, 30587, 'thirty thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(13876, 88874, 'eighty-eight thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(13877, 93154, 'ninety-three thousand one hundred fifty-four'); INSERT INTO t2 VALUES(13878, 34811, 'thirty-four thousand eight hundred eleven'); INSERT INTO t2 VALUES(13879, 2338, 'two thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(13880, 43317, 'forty-three thousand three hundred seventeen'); INSERT INTO t2 VALUES(13881, 53449, 'fifty-three thousand four hundred forty-nine'); INSERT INTO t2 VALUES(13882, 78767, 'seventy-eight thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(13883, 34807, 'thirty-four thousand eight hundred seven'); INSERT INTO t2 VALUES(13884, 34968, 'thirty-four thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(13885, 68556, 'sixty-eight thousand five hundred fifty-six'); INSERT INTO t2 VALUES(13886, 6349, 'six thousand three hundred forty-nine'); INSERT INTO t2 VALUES(13887, 56051, 'fifty-six thousand fifty-one'); INSERT INTO t2 VALUES(13888, 73344, 'seventy-three thousand three hundred forty-four'); INSERT INTO t2 VALUES(13889, 40586, 'forty thousand five hundred eighty-six'); INSERT INTO t2 VALUES(13890, 19476, 'nineteen thousand four hundred seventy-six'); INSERT INTO t2 VALUES(13891, 38249, 'thirty-eight thousand two hundred forty-nine'); INSERT INTO t2 VALUES(13892, 97501, 'ninety-seven thousand five hundred one'); INSERT INTO t2 VALUES(13893, 63302, 'sixty-three thousand three hundred two'); INSERT INTO t2 VALUES(13894, 90758, 'ninety thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(13895, 72862, 'seventy-two thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(13896, 58676, 'fifty-eight thousand six hundred seventy-six'); INSERT INTO t2 VALUES(13897, 36707, 'thirty-six thousand seven hundred seven'); INSERT INTO t2 VALUES(13898, 17956, 'seventeen thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(13899, 72766, 'seventy-two thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(13900, 89128, 'eighty-nine thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(13901, 83385, 'eighty-three thousand three hundred eighty-five'); INSERT INTO t2 VALUES(13902, 25194, 'twenty-five thousand one hundred ninety-four'); INSERT INTO t2 VALUES(13903, 44013, 'forty-four thousand thirteen'); INSERT INTO t2 VALUES(13904, 89011, 'eighty-nine thousand eleven'); INSERT INTO t2 VALUES(13905, 51016, 'fifty-one thousand sixteen'); INSERT INTO t2 VALUES(13906, 35996, 'thirty-five thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(13907, 27611, 'twenty-seven thousand six hundred eleven'); INSERT INTO t2 VALUES(13908, 57361, 'fifty-seven thousand three hundred sixty-one'); INSERT INTO t2 VALUES(13909, 86452, 'eighty-six thousand four hundred fifty-two'); INSERT INTO t2 VALUES(13910, 77518, 'seventy-seven thousand five hundred eighteen'); INSERT INTO t2 VALUES(13911, 80973, 'eighty thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(13912, 61964, 'sixty-one thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(13913, 3251, 'three thousand two hundred fifty-one'); INSERT INTO t2 VALUES(13914, 63106, 'sixty-three thousand one hundred six'); INSERT INTO t2 VALUES(13915, 53350, 'fifty-three thousand three hundred fifty'); INSERT INTO t2 VALUES(13916, 99154, 'ninety-nine thousand one hundred fifty-four'); INSERT INTO t2 VALUES(13917, 43555, 'forty-three thousand five hundred fifty-five'); INSERT INTO t2 VALUES(13918, 96295, 'ninety-six thousand two hundred ninety-five'); INSERT INTO t2 VALUES(13919, 86465, 'eighty-six thousand four hundred sixty-five'); INSERT INTO t2 VALUES(13920, 91632, 'ninety-one thousand six hundred thirty-two'); INSERT INTO t2 VALUES(13921, 91836, 'ninety-one thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(13922, 71253, 'seventy-one thousand two hundred fifty-three'); INSERT INTO t2 VALUES(13923, 36697, 'thirty-six thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(13924, 23856, 'twenty-three thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(13925, 49197, 'forty-nine thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(13926, 38104, 'thirty-eight thousand one hundred four'); INSERT INTO t2 VALUES(13927, 71804, 'seventy-one thousand eight hundred four'); INSERT INTO t2 VALUES(13928, 15065, 'fifteen thousand sixty-five'); INSERT INTO t2 VALUES(13929, 12796, 'twelve thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(13930, 15274, 'fifteen thousand two hundred seventy-four'); INSERT INTO t2 VALUES(13931, 17301, 'seventeen thousand three hundred one'); INSERT INTO t2 VALUES(13932, 87202, 'eighty-seven thousand two hundred two'); INSERT INTO t2 VALUES(13933, 8047, 'eight thousand forty-seven'); INSERT INTO t2 VALUES(13934, 94508, 'ninety-four thousand five hundred eight'); INSERT INTO t2 VALUES(13935, 7695, 'seven thousand six hundred ninety-five'); INSERT INTO t2 VALUES(13936, 57747, 'fifty-seven thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(13937, 76757, 'seventy-six thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(13938, 86236, 'eighty-six thousand two hundred thirty-six'); INSERT INTO t2 VALUES(13939, 83947, 'eighty-three thousand nine hundred forty-seven'); INSERT INTO t2 VALUES(13940, 97702, 'ninety-seven thousand seven hundred two'); INSERT INTO t2 VALUES(13941, 3238, 'three thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(13942, 27691, 'twenty-seven thousand six hundred ninety-one'); INSERT INTO t2 VALUES(13943, 34740, 'thirty-four thousand seven hundred forty'); INSERT INTO t2 VALUES(13944, 2386, 'two thousand three hundred eighty-six'); INSERT INTO t2 VALUES(13945, 90130, 'ninety thousand one hundred thirty'); INSERT INTO t2 VALUES(13946, 48987, 'forty-eight thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(13947, 98125, 'ninety-eight thousand one hundred twenty-five'); INSERT INTO t2 VALUES(13948, 78467, 'seventy-eight thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(13949, 70854, 'seventy thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(13950, 48218, 'forty-eight thousand two hundred eighteen'); INSERT INTO t2 VALUES(13951, 5946, 'five thousand nine hundred forty-six'); INSERT INTO t2 VALUES(13952, 11519, 'eleven thousand five hundred nineteen'); INSERT INTO t2 VALUES(13953, 60573, 'sixty thousand five hundred seventy-three'); INSERT INTO t2 VALUES(13954, 35881, 'thirty-five thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(13955, 47791, 'forty-seven thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(13956, 99904, 'ninety-nine thousand nine hundred four'); INSERT INTO t2 VALUES(13957, 36866, 'thirty-six thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(13958, 89614, 'eighty-nine thousand six hundred fourteen'); INSERT INTO t2 VALUES(13959, 859, 'eight hundred fifty-nine'); INSERT INTO t2 VALUES(13960, 62675, 'sixty-two thousand six hundred seventy-five'); INSERT INTO t2 VALUES(13961, 37473, 'thirty-seven thousand four hundred seventy-three'); INSERT INTO t2 VALUES(13962, 76363, 'seventy-six thousand three hundred sixty-three'); INSERT INTO t2 VALUES(13963, 46688, 'forty-six thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(13964, 30725, 'thirty thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(13965, 23868, 'twenty-three thousand eight hundred sixty-eight'); INSERT INTO t2 VALUES(13966, 24462, 'twenty-four thousand four hundred sixty-two'); INSERT INTO t2 VALUES(13967, 76391, 'seventy-six thousand three hundred ninety-one'); INSERT INTO t2 VALUES(13968, 8677, 'eight thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(13969, 57181, 'fifty-seven thousand one hundred eighty-one'); INSERT INTO t2 VALUES(13970, 34929, 'thirty-four thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(13971, 31327, 'thirty-one thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(13972, 87922, 'eighty-seven thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(13973, 52613, 'fifty-two thousand six hundred thirteen'); INSERT INTO t2 VALUES(13974, 74791, 'seventy-four thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(13975, 15088, 'fifteen thousand eighty-eight'); INSERT INTO t2 VALUES(13976, 50704, 'fifty thousand seven hundred four'); INSERT INTO t2 VALUES(13977, 36698, 'thirty-six thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(13978, 79795, 'seventy-nine thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(13979, 39883, 'thirty-nine thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(13980, 45815, 'forty-five thousand eight hundred fifteen'); INSERT INTO t2 VALUES(13981, 96733, 'ninety-six thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(13982, 77956, 'seventy-seven thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(13983, 46657, 'forty-six thousand six hundred fifty-seven'); INSERT INTO t2 VALUES(13984, 96364, 'ninety-six thousand three hundred sixty-four'); INSERT INTO t2 VALUES(13985, 97613, 'ninety-seven thousand six hundred thirteen'); INSERT INTO t2 VALUES(13986, 57521, 'fifty-seven thousand five hundred twenty-one'); INSERT INTO t2 VALUES(13987, 73702, 'seventy-three thousand seven hundred two'); INSERT INTO t2 VALUES(13988, 21268, 'twenty-one thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(13989, 91936, 'ninety-one thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(13990, 35456, 'thirty-five thousand four hundred fifty-six'); INSERT INTO t2 VALUES(13991, 30104, 'thirty thousand one hundred four'); INSERT INTO t2 VALUES(13992, 57361, 'fifty-seven thousand three hundred sixty-one'); INSERT INTO t2 VALUES(13993, 25314, 'twenty-five thousand three hundred fourteen'); INSERT INTO t2 VALUES(13994, 10812, 'ten thousand eight hundred twelve'); INSERT INTO t2 VALUES(13995, 78032, 'seventy-eight thousand thirty-two'); INSERT INTO t2 VALUES(13996, 11893, 'eleven thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(13997, 94525, 'ninety-four thousand five hundred twenty-five'); INSERT INTO t2 VALUES(13998, 764, 'seven hundred sixty-four'); INSERT INTO t2 VALUES(13999, 26473, 'twenty-six thousand four hundred seventy-three'); INSERT INTO t2 VALUES(14000, 93524, 'ninety-three thousand five hundred twenty-four'); INSERT INTO t2 VALUES(14001, 48089, 'forty-eight thousand eighty-nine'); INSERT INTO t2 VALUES(14002, 33084, 'thirty-three thousand eighty-four'); INSERT INTO t2 VALUES(14003, 70651, 'seventy thousand six hundred fifty-one'); INSERT INTO t2 VALUES(14004, 44699, 'forty-four thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(14005, 88393, 'eighty-eight thousand three hundred ninety-three'); INSERT INTO t2 VALUES(14006, 26194, 'twenty-six thousand one hundred ninety-four'); INSERT INTO t2 VALUES(14007, 27517, 'twenty-seven thousand five hundred seventeen'); INSERT INTO t2 VALUES(14008, 22053, 'twenty-two thousand fifty-three'); INSERT INTO t2 VALUES(14009, 67449, 'sixty-seven thousand four hundred forty-nine'); INSERT INTO t2 VALUES(14010, 43377, 'forty-three thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(14011, 30918, 'thirty thousand nine hundred eighteen'); INSERT INTO t2 VALUES(14012, 81078, 'eighty-one thousand seventy-eight'); INSERT INTO t2 VALUES(14013, 81845, 'eighty-one thousand eight hundred forty-five'); INSERT INTO t2 VALUES(14014, 86146, 'eighty-six thousand one hundred forty-six'); INSERT INTO t2 VALUES(14015, 24503, 'twenty-four thousand five hundred three'); INSERT INTO t2 VALUES(14016, 85140, 'eighty-five thousand one hundred forty'); INSERT INTO t2 VALUES(14017, 24264, 'twenty-four thousand two hundred sixty-four'); INSERT INTO t2 VALUES(14018, 71489, 'seventy-one thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(14019, 89328, 'eighty-nine thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(14020, 43416, 'forty-three thousand four hundred sixteen'); INSERT INTO t2 VALUES(14021, 19290, 'nineteen thousand two hundred ninety'); INSERT INTO t2 VALUES(14022, 51317, 'fifty-one thousand three hundred seventeen'); INSERT INTO t2 VALUES(14023, 30745, 'thirty thousand seven hundred forty-five'); INSERT INTO t2 VALUES(14024, 6893, 'six thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(14025, 7728, 'seven thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(14026, 30853, 'thirty thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(14027, 56696, 'fifty-six thousand six hundred ninety-six'); INSERT INTO t2 VALUES(14028, 30697, 'thirty thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(14029, 85100, 'eighty-five thousand one hundred'); INSERT INTO t2 VALUES(14030, 81131, 'eighty-one thousand one hundred thirty-one'); INSERT INTO t2 VALUES(14031, 70351, 'seventy thousand three hundred fifty-one'); INSERT INTO t2 VALUES(14032, 75388, 'seventy-five thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(14033, 78371, 'seventy-eight thousand three hundred seventy-one'); INSERT INTO t2 VALUES(14034, 97449, 'ninety-seven thousand four hundred forty-nine'); INSERT INTO t2 VALUES(14035, 49630, 'forty-nine thousand six hundred thirty'); INSERT INTO t2 VALUES(14036, 8596, 'eight thousand five hundred ninety-six'); INSERT INTO t2 VALUES(14037, 20871, 'twenty thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(14038, 31609, 'thirty-one thousand six hundred nine'); INSERT INTO t2 VALUES(14039, 6120, 'six thousand one hundred twenty'); INSERT INTO t2 VALUES(14040, 67128, 'sixty-seven thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(14041, 59450, 'fifty-nine thousand four hundred fifty'); INSERT INTO t2 VALUES(14042, 77594, 'seventy-seven thousand five hundred ninety-four'); INSERT INTO t2 VALUES(14043, 51131, 'fifty-one thousand one hundred thirty-one'); INSERT INTO t2 VALUES(14044, 25044, 'twenty-five thousand forty-four'); INSERT INTO t2 VALUES(14045, 60734, 'sixty thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(14046, 20548, 'twenty thousand five hundred forty-eight'); INSERT INTO t2 VALUES(14047, 95306, 'ninety-five thousand three hundred six'); INSERT INTO t2 VALUES(14048, 1528, 'one thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(14049, 3190, 'three thousand one hundred ninety'); INSERT INTO t2 VALUES(14050, 94084, 'ninety-four thousand eighty-four'); INSERT INTO t2 VALUES(14051, 77125, 'seventy-seven thousand one hundred twenty-five'); INSERT INTO t2 VALUES(14052, 74287, 'seventy-four thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(14053, 17486, 'seventeen thousand four hundred eighty-six'); INSERT INTO t2 VALUES(14054, 7105, 'seven thousand one hundred five'); INSERT INTO t2 VALUES(14055, 8205, 'eight thousand two hundred five'); INSERT INTO t2 VALUES(14056, 61936, 'sixty-one thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(14057, 8605, 'eight thousand six hundred five'); INSERT INTO t2 VALUES(14058, 38360, 'thirty-eight thousand three hundred sixty'); INSERT INTO t2 VALUES(14059, 41533, 'forty-one thousand five hundred thirty-three'); INSERT INTO t2 VALUES(14060, 41766, 'forty-one thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(14061, 19976, 'nineteen thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(14062, 42147, 'forty-two thousand one hundred forty-seven'); INSERT INTO t2 VALUES(14063, 34098, 'thirty-four thousand ninety-eight'); INSERT INTO t2 VALUES(14064, 9611, 'nine thousand six hundred eleven'); INSERT INTO t2 VALUES(14065, 6548, 'six thousand five hundred forty-eight'); INSERT INTO t2 VALUES(14066, 30058, 'thirty thousand fifty-eight'); INSERT INTO t2 VALUES(14067, 60331, 'sixty thousand three hundred thirty-one'); INSERT INTO t2 VALUES(14068, 74256, 'seventy-four thousand two hundred fifty-six'); INSERT INTO t2 VALUES(14069, 19062, 'nineteen thousand sixty-two'); INSERT INTO t2 VALUES(14070, 1283, 'one thousand two hundred eighty-three'); INSERT INTO t2 VALUES(14071, 89259, 'eighty-nine thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(14072, 13353, 'thirteen thousand three hundred fifty-three'); INSERT INTO t2 VALUES(14073, 32996, 'thirty-two thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(14074, 89448, 'eighty-nine thousand four hundred forty-eight'); INSERT INTO t2 VALUES(14075, 28879, 'twenty-eight thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(14076, 90619, 'ninety thousand six hundred nineteen'); INSERT INTO t2 VALUES(14077, 24506, 'twenty-four thousand five hundred six'); INSERT INTO t2 VALUES(14078, 61589, 'sixty-one thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(14079, 99359, 'ninety-nine thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(14080, 93608, 'ninety-three thousand six hundred eight'); INSERT INTO t2 VALUES(14081, 87138, 'eighty-seven thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(14082, 46461, 'forty-six thousand four hundred sixty-one'); INSERT INTO t2 VALUES(14083, 83799, 'eighty-three thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(14084, 35463, 'thirty-five thousand four hundred sixty-three'); INSERT INTO t2 VALUES(14085, 79998, 'seventy-nine thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(14086, 22968, 'twenty-two thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(14087, 37241, 'thirty-seven thousand two hundred forty-one'); INSERT INTO t2 VALUES(14088, 28563, 'twenty-eight thousand five hundred sixty-three'); INSERT INTO t2 VALUES(14089, 39317, 'thirty-nine thousand three hundred seventeen'); INSERT INTO t2 VALUES(14090, 5442, 'five thousand four hundred forty-two'); INSERT INTO t2 VALUES(14091, 11532, 'eleven thousand five hundred thirty-two'); INSERT INTO t2 VALUES(14092, 87055, 'eighty-seven thousand fifty-five'); INSERT INTO t2 VALUES(14093, 50842, 'fifty thousand eight hundred forty-two'); INSERT INTO t2 VALUES(14094, 6020, 'six thousand twenty'); INSERT INTO t2 VALUES(14095, 8566, 'eight thousand five hundred sixty-six'); INSERT INTO t2 VALUES(14096, 22534, 'twenty-two thousand five hundred thirty-four'); INSERT INTO t2 VALUES(14097, 61450, 'sixty-one thousand four hundred fifty'); INSERT INTO t2 VALUES(14098, 11539, 'eleven thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(14099, 80554, 'eighty thousand five hundred fifty-four'); INSERT INTO t2 VALUES(14100, 95489, 'ninety-five thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(14101, 15518, 'fifteen thousand five hundred eighteen'); INSERT INTO t2 VALUES(14102, 45826, 'forty-five thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(14103, 22357, 'twenty-two thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(14104, 37115, 'thirty-seven thousand one hundred fifteen'); INSERT INTO t2 VALUES(14105, 23129, 'twenty-three thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(14106, 91289, 'ninety-one thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(14107, 41531, 'forty-one thousand five hundred thirty-one'); INSERT INTO t2 VALUES(14108, 32849, 'thirty-two thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(14109, 57653, 'fifty-seven thousand six hundred fifty-three'); INSERT INTO t2 VALUES(14110, 512, 'five hundred twelve'); INSERT INTO t2 VALUES(14111, 91709, 'ninety-one thousand seven hundred nine'); INSERT INTO t2 VALUES(14112, 56868, 'fifty-six thousand eight hundred sixty-eight'); INSERT INTO t2 VALUES(14113, 74964, 'seventy-four thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(14114, 11532, 'eleven thousand five hundred thirty-two'); INSERT INTO t2 VALUES(14115, 11820, 'eleven thousand eight hundred twenty'); INSERT INTO t2 VALUES(14116, 7363, 'seven thousand three hundred sixty-three'); INSERT INTO t2 VALUES(14117, 9014, 'nine thousand fourteen'); INSERT INTO t2 VALUES(14118, 61128, 'sixty-one thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(14119, 25673, 'twenty-five thousand six hundred seventy-three'); INSERT INTO t2 VALUES(14120, 95259, 'ninety-five thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(14121, 7436, 'seven thousand four hundred thirty-six'); INSERT INTO t2 VALUES(14122, 76903, 'seventy-six thousand nine hundred three'); INSERT INTO t2 VALUES(14123, 24080, 'twenty-four thousand eighty'); INSERT INTO t2 VALUES(14124, 99231, 'ninety-nine thousand two hundred thirty-one'); INSERT INTO t2 VALUES(14125, 42743, 'forty-two thousand seven hundred forty-three'); INSERT INTO t2 VALUES(14126, 24811, 'twenty-four thousand eight hundred eleven'); INSERT INTO t2 VALUES(14127, 76524, 'seventy-six thousand five hundred twenty-four'); INSERT INTO t2 VALUES(14128, 1170, 'one thousand one hundred seventy'); INSERT INTO t2 VALUES(14129, 84350, 'eighty-four thousand three hundred fifty'); INSERT INTO t2 VALUES(14130, 91746, 'ninety-one thousand seven hundred forty-six'); INSERT INTO t2 VALUES(14131, 61122, 'sixty-one thousand one hundred twenty-two'); INSERT INTO t2 VALUES(14132, 70522, 'seventy thousand five hundred twenty-two'); INSERT INTO t2 VALUES(14133, 82880, 'eighty-two thousand eight hundred eighty'); INSERT INTO t2 VALUES(14134, 27328, 'twenty-seven thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(14135, 12200, 'twelve thousand two hundred'); INSERT INTO t2 VALUES(14136, 38289, 'thirty-eight thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(14137, 98483, 'ninety-eight thousand four hundred eighty-three'); INSERT INTO t2 VALUES(14138, 968, 'nine hundred sixty-eight'); INSERT INTO t2 VALUES(14139, 57611, 'fifty-seven thousand six hundred eleven'); INSERT INTO t2 VALUES(14140, 27068, 'twenty-seven thousand sixty-eight'); INSERT INTO t2 VALUES(14141, 43525, 'forty-three thousand five hundred twenty-five'); INSERT INTO t2 VALUES(14142, 56185, 'fifty-six thousand one hundred eighty-five'); INSERT INTO t2 VALUES(14143, 73749, 'seventy-three thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(14144, 83889, 'eighty-three thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(14145, 4452, 'four thousand four hundred fifty-two'); INSERT INTO t2 VALUES(14146, 34514, 'thirty-four thousand five hundred fourteen'); INSERT INTO t2 VALUES(14147, 60337, 'sixty thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(14148, 20242, 'twenty thousand two hundred forty-two'); INSERT INTO t2 VALUES(14149, 16080, 'sixteen thousand eighty'); INSERT INTO t2 VALUES(14150, 93294, 'ninety-three thousand two hundred ninety-four'); INSERT INTO t2 VALUES(14151, 68110, 'sixty-eight thousand one hundred ten'); INSERT INTO t2 VALUES(14152, 11205, 'eleven thousand two hundred five'); INSERT INTO t2 VALUES(14153, 19978, 'nineteen thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(14154, 96160, 'ninety-six thousand one hundred sixty'); INSERT INTO t2 VALUES(14155, 20747, 'twenty thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(14156, 1801, 'one thousand eight hundred one'); INSERT INTO t2 VALUES(14157, 87128, 'eighty-seven thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(14158, 70350, 'seventy thousand three hundred fifty'); INSERT INTO t2 VALUES(14159, 22719, 'twenty-two thousand seven hundred nineteen'); INSERT INTO t2 VALUES(14160, 29784, 'twenty-nine thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(14161, 26890, 'twenty-six thousand eight hundred ninety'); INSERT INTO t2 VALUES(14162, 43136, 'forty-three thousand one hundred thirty-six'); INSERT INTO t2 VALUES(14163, 70386, 'seventy thousand three hundred eighty-six'); INSERT INTO t2 VALUES(14164, 67975, 'sixty-seven thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(14165, 67604, 'sixty-seven thousand six hundred four'); INSERT INTO t2 VALUES(14166, 77550, 'seventy-seven thousand five hundred fifty'); INSERT INTO t2 VALUES(14167, 57899, 'fifty-seven thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(14168, 17634, 'seventeen thousand six hundred thirty-four'); INSERT INTO t2 VALUES(14169, 18196, 'eighteen thousand one hundred ninety-six'); INSERT INTO t2 VALUES(14170, 81286, 'eighty-one thousand two hundred eighty-six'); INSERT INTO t2 VALUES(14171, 6009, 'six thousand nine'); INSERT INTO t2 VALUES(14172, 23234, 'twenty-three thousand two hundred thirty-four'); INSERT INTO t2 VALUES(14173, 48608, 'forty-eight thousand six hundred eight'); INSERT INTO t2 VALUES(14174, 36683, 'thirty-six thousand six hundred eighty-three'); INSERT INTO t2 VALUES(14175, 23910, 'twenty-three thousand nine hundred ten'); INSERT INTO t2 VALUES(14176, 64193, 'sixty-four thousand one hundred ninety-three'); INSERT INTO t2 VALUES(14177, 91715, 'ninety-one thousand seven hundred fifteen'); INSERT INTO t2 VALUES(14178, 11693, 'eleven thousand six hundred ninety-three'); INSERT INTO t2 VALUES(14179, 93013, 'ninety-three thousand thirteen'); INSERT INTO t2 VALUES(14180, 35463, 'thirty-five thousand four hundred sixty-three'); INSERT INTO t2 VALUES(14181, 64911, 'sixty-four thousand nine hundred eleven'); INSERT INTO t2 VALUES(14182, 55910, 'fifty-five thousand nine hundred ten'); INSERT INTO t2 VALUES(14183, 40828, 'forty thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(14184, 81764, 'eighty-one thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(14185, 3213, 'three thousand two hundred thirteen'); INSERT INTO t2 VALUES(14186, 68229, 'sixty-eight thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(14187, 16544, 'sixteen thousand five hundred forty-four'); INSERT INTO t2 VALUES(14188, 71522, 'seventy-one thousand five hundred twenty-two'); INSERT INTO t2 VALUES(14189, 84980, 'eighty-four thousand nine hundred eighty'); INSERT INTO t2 VALUES(14190, 77805, 'seventy-seven thousand eight hundred five'); INSERT INTO t2 VALUES(14191, 14741, 'fourteen thousand seven hundred forty-one'); INSERT INTO t2 VALUES(14192, 10054, 'ten thousand fifty-four'); INSERT INTO t2 VALUES(14193, 33356, 'thirty-three thousand three hundred fifty-six'); INSERT INTO t2 VALUES(14194, 65755, 'sixty-five thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(14195, 34429, 'thirty-four thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(14196, 30076, 'thirty thousand seventy-six'); INSERT INTO t2 VALUES(14197, 19415, 'nineteen thousand four hundred fifteen'); INSERT INTO t2 VALUES(14198, 22449, 'twenty-two thousand four hundred forty-nine'); INSERT INTO t2 VALUES(14199, 77488, 'seventy-seven thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(14200, 40212, 'forty thousand two hundred twelve'); INSERT INTO t2 VALUES(14201, 24713, 'twenty-four thousand seven hundred thirteen'); INSERT INTO t2 VALUES(14202, 92904, 'ninety-two thousand nine hundred four'); INSERT INTO t2 VALUES(14203, 56418, 'fifty-six thousand four hundred eighteen'); INSERT INTO t2 VALUES(14204, 90773, 'ninety thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(14205, 56940, 'fifty-six thousand nine hundred forty'); INSERT INTO t2 VALUES(14206, 760, 'seven hundred sixty'); INSERT INTO t2 VALUES(14207, 83622, 'eighty-three thousand six hundred twenty-two'); INSERT INTO t2 VALUES(14208, 51504, 'fifty-one thousand five hundred four'); INSERT INTO t2 VALUES(14209, 91729, 'ninety-one thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(14210, 5714, 'five thousand seven hundred fourteen'); INSERT INTO t2 VALUES(14211, 49926, 'forty-nine thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(14212, 91641, 'ninety-one thousand six hundred forty-one'); INSERT INTO t2 VALUES(14213, 84900, 'eighty-four thousand nine hundred'); INSERT INTO t2 VALUES(14214, 14352, 'fourteen thousand three hundred fifty-two'); INSERT INTO t2 VALUES(14215, 3609, 'three thousand six hundred nine'); INSERT INTO t2 VALUES(14216, 84750, 'eighty-four thousand seven hundred fifty'); INSERT INTO t2 VALUES(14217, 48185, 'forty-eight thousand one hundred eighty-five'); INSERT INTO t2 VALUES(14218, 6764, 'six thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(14219, 75816, 'seventy-five thousand eight hundred sixteen'); INSERT INTO t2 VALUES(14220, 62682, 'sixty-two thousand six hundred eighty-two'); INSERT INTO t2 VALUES(14221, 80745, 'eighty thousand seven hundred forty-five'); INSERT INTO t2 VALUES(14222, 7627, 'seven thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(14223, 60213, 'sixty thousand two hundred thirteen'); INSERT INTO t2 VALUES(14224, 30625, 'thirty thousand six hundred twenty-five'); INSERT INTO t2 VALUES(14225, 59323, 'fifty-nine thousand three hundred twenty-three'); INSERT INTO t2 VALUES(14226, 58273, 'fifty-eight thousand two hundred seventy-three'); INSERT INTO t2 VALUES(14227, 44194, 'forty-four thousand one hundred ninety-four'); INSERT INTO t2 VALUES(14228, 27674, 'twenty-seven thousand six hundred seventy-four'); INSERT INTO t2 VALUES(14229, 80797, 'eighty thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(14230, 16078, 'sixteen thousand seventy-eight'); INSERT INTO t2 VALUES(14231, 96698, 'ninety-six thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(14232, 62663, 'sixty-two thousand six hundred sixty-three'); INSERT INTO t2 VALUES(14233, 87183, 'eighty-seven thousand one hundred eighty-three'); INSERT INTO t2 VALUES(14234, 77227, 'seventy-seven thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(14235, 2866, 'two thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(14236, 44393, 'forty-four thousand three hundred ninety-three'); INSERT INTO t2 VALUES(14237, 82492, 'eighty-two thousand four hundred ninety-two'); INSERT INTO t2 VALUES(14238, 48620, 'forty-eight thousand six hundred twenty'); INSERT INTO t2 VALUES(14239, 6027, 'six thousand twenty-seven'); INSERT INTO t2 VALUES(14240, 72042, 'seventy-two thousand forty-two'); INSERT INTO t2 VALUES(14241, 56110, 'fifty-six thousand one hundred ten'); INSERT INTO t2 VALUES(14242, 54009, 'fifty-four thousand nine'); INSERT INTO t2 VALUES(14243, 72301, 'seventy-two thousand three hundred one'); INSERT INTO t2 VALUES(14244, 87768, 'eighty-seven thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(14245, 45056, 'forty-five thousand fifty-six'); INSERT INTO t2 VALUES(14246, 24933, 'twenty-four thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(14247, 980, 'nine hundred eighty'); INSERT INTO t2 VALUES(14248, 83370, 'eighty-three thousand three hundred seventy'); INSERT INTO t2 VALUES(14249, 1898, 'one thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(14250, 66101, 'sixty-six thousand one hundred one'); INSERT INTO t2 VALUES(14251, 9898, 'nine thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(14252, 47523, 'forty-seven thousand five hundred twenty-three'); INSERT INTO t2 VALUES(14253, 4472, 'four thousand four hundred seventy-two'); INSERT INTO t2 VALUES(14254, 64133, 'sixty-four thousand one hundred thirty-three'); INSERT INTO t2 VALUES(14255, 69064, 'sixty-nine thousand sixty-four'); INSERT INTO t2 VALUES(14256, 35841, 'thirty-five thousand eight hundred forty-one'); INSERT INTO t2 VALUES(14257, 16050, 'sixteen thousand fifty'); INSERT INTO t2 VALUES(14258, 76394, 'seventy-six thousand three hundred ninety-four'); INSERT INTO t2 VALUES(14259, 207, 'two hundred seven'); INSERT INTO t2 VALUES(14260, 74962, 'seventy-four thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(14261, 38036, 'thirty-eight thousand thirty-six'); INSERT INTO t2 VALUES(14262, 33511, 'thirty-three thousand five hundred eleven'); INSERT INTO t2 VALUES(14263, 53831, 'fifty-three thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(14264, 56955, 'fifty-six thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(14265, 71888, 'seventy-one thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(14266, 65549, 'sixty-five thousand five hundred forty-nine'); INSERT INTO t2 VALUES(14267, 47599, 'forty-seven thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(14268, 44616, 'forty-four thousand six hundred sixteen'); INSERT INTO t2 VALUES(14269, 91995, 'ninety-one thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(14270, 50058, 'fifty thousand fifty-eight'); INSERT INTO t2 VALUES(14271, 58460, 'fifty-eight thousand four hundred sixty'); INSERT INTO t2 VALUES(14272, 25941, 'twenty-five thousand nine hundred forty-one'); INSERT INTO t2 VALUES(14273, 36118, 'thirty-six thousand one hundred eighteen'); INSERT INTO t2 VALUES(14274, 34262, 'thirty-four thousand two hundred sixty-two'); INSERT INTO t2 VALUES(14275, 79120, 'seventy-nine thousand one hundred twenty'); INSERT INTO t2 VALUES(14276, 82177, 'eighty-two thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(14277, 23589, 'twenty-three thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(14278, 38250, 'thirty-eight thousand two hundred fifty'); INSERT INTO t2 VALUES(14279, 46963, 'forty-six thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(14280, 846, 'eight hundred forty-six'); INSERT INTO t2 VALUES(14281, 3120, 'three thousand one hundred twenty'); INSERT INTO t2 VALUES(14282, 69995, 'sixty-nine thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(14283, 40276, 'forty thousand two hundred seventy-six'); INSERT INTO t2 VALUES(14284, 9565, 'nine thousand five hundred sixty-five'); INSERT INTO t2 VALUES(14285, 65011, 'sixty-five thousand eleven'); INSERT INTO t2 VALUES(14286, 1580, 'one thousand five hundred eighty'); INSERT INTO t2 VALUES(14287, 747, 'seven hundred forty-seven'); INSERT INTO t2 VALUES(14288, 28151, 'twenty-eight thousand one hundred fifty-one'); INSERT INTO t2 VALUES(14289, 27755, 'twenty-seven thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(14290, 78382, 'seventy-eight thousand three hundred eighty-two'); INSERT INTO t2 VALUES(14291, 59977, 'fifty-nine thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(14292, 74822, 'seventy-four thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(14293, 57591, 'fifty-seven thousand five hundred ninety-one'); INSERT INTO t2 VALUES(14294, 56999, 'fifty-six thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(14295, 65638, 'sixty-five thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(14296, 96840, 'ninety-six thousand eight hundred forty'); INSERT INTO t2 VALUES(14297, 33353, 'thirty-three thousand three hundred fifty-three'); INSERT INTO t2 VALUES(14298, 96614, 'ninety-six thousand six hundred fourteen'); INSERT INTO t2 VALUES(14299, 62892, 'sixty-two thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(14300, 67802, 'sixty-seven thousand eight hundred two'); INSERT INTO t2 VALUES(14301, 46035, 'forty-six thousand thirty-five'); INSERT INTO t2 VALUES(14302, 43939, 'forty-three thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(14303, 25508, 'twenty-five thousand five hundred eight'); INSERT INTO t2 VALUES(14304, 97792, 'ninety-seven thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(14305, 43848, 'forty-three thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(14306, 56644, 'fifty-six thousand six hundred forty-four'); INSERT INTO t2 VALUES(14307, 28126, 'twenty-eight thousand one hundred twenty-six'); INSERT INTO t2 VALUES(14308, 99115, 'ninety-nine thousand one hundred fifteen'); INSERT INTO t2 VALUES(14309, 42923, 'forty-two thousand nine hundred twenty-three'); INSERT INTO t2 VALUES(14310, 18702, 'eighteen thousand seven hundred two'); INSERT INTO t2 VALUES(14311, 67108, 'sixty-seven thousand one hundred eight'); INSERT INTO t2 VALUES(14312, 50270, 'fifty thousand two hundred seventy'); INSERT INTO t2 VALUES(14313, 47478, 'forty-seven thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(14314, 74111, 'seventy-four thousand one hundred eleven'); INSERT INTO t2 VALUES(14315, 68941, 'sixty-eight thousand nine hundred forty-one'); INSERT INTO t2 VALUES(14316, 16402, 'sixteen thousand four hundred two'); INSERT INTO t2 VALUES(14317, 46934, 'forty-six thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(14318, 83113, 'eighty-three thousand one hundred thirteen'); INSERT INTO t2 VALUES(14319, 74555, 'seventy-four thousand five hundred fifty-five'); INSERT INTO t2 VALUES(14320, 30249, 'thirty thousand two hundred forty-nine'); INSERT INTO t2 VALUES(14321, 6033, 'six thousand thirty-three'); INSERT INTO t2 VALUES(14322, 10896, 'ten thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(14323, 44308, 'forty-four thousand three hundred eight'); INSERT INTO t2 VALUES(14324, 44712, 'forty-four thousand seven hundred twelve'); INSERT INTO t2 VALUES(14325, 60887, 'sixty thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(14326, 90686, 'ninety thousand six hundred eighty-six'); INSERT INTO t2 VALUES(14327, 86099, 'eighty-six thousand ninety-nine'); INSERT INTO t2 VALUES(14328, 16600, 'sixteen thousand six hundred'); INSERT INTO t2 VALUES(14329, 79994, 'seventy-nine thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(14330, 6058, 'six thousand fifty-eight'); INSERT INTO t2 VALUES(14331, 55816, 'fifty-five thousand eight hundred sixteen'); INSERT INTO t2 VALUES(14332, 28277, 'twenty-eight thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(14333, 93195, 'ninety-three thousand one hundred ninety-five'); INSERT INTO t2 VALUES(14334, 41347, 'forty-one thousand three hundred forty-seven'); INSERT INTO t2 VALUES(14335, 73114, 'seventy-three thousand one hundred fourteen'); INSERT INTO t2 VALUES(14336, 73852, 'seventy-three thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(14337, 14877, 'fourteen thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(14338, 94235, 'ninety-four thousand two hundred thirty-five'); INSERT INTO t2 VALUES(14339, 63341, 'sixty-three thousand three hundred forty-one'); INSERT INTO t2 VALUES(14340, 47527, 'forty-seven thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(14341, 53322, 'fifty-three thousand three hundred twenty-two'); INSERT INTO t2 VALUES(14342, 31321, 'thirty-one thousand three hundred twenty-one'); INSERT INTO t2 VALUES(14343, 76309, 'seventy-six thousand three hundred nine'); INSERT INTO t2 VALUES(14344, 30000, 'thirty thousand'); INSERT INTO t2 VALUES(14345, 30073, 'thirty thousand seventy-three'); INSERT INTO t2 VALUES(14346, 64561, 'sixty-four thousand five hundred sixty-one'); INSERT INTO t2 VALUES(14347, 12210, 'twelve thousand two hundred ten'); INSERT INTO t2 VALUES(14348, 16779, 'sixteen thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(14349, 60070, 'sixty thousand seventy'); INSERT INTO t2 VALUES(14350, 74369, 'seventy-four thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(14351, 18823, 'eighteen thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(14352, 21267, 'twenty-one thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(14353, 20966, 'twenty thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(14354, 68562, 'sixty-eight thousand five hundred sixty-two'); INSERT INTO t2 VALUES(14355, 1375, 'one thousand three hundred seventy-five'); INSERT INTO t2 VALUES(14356, 10454, 'ten thousand four hundred fifty-four'); INSERT INTO t2 VALUES(14357, 65954, 'sixty-five thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(14358, 55940, 'fifty-five thousand nine hundred forty'); INSERT INTO t2 VALUES(14359, 77322, 'seventy-seven thousand three hundred twenty-two'); INSERT INTO t2 VALUES(14360, 86742, 'eighty-six thousand seven hundred forty-two'); INSERT INTO t2 VALUES(14361, 70675, 'seventy thousand six hundred seventy-five'); INSERT INTO t2 VALUES(14362, 92018, 'ninety-two thousand eighteen'); INSERT INTO t2 VALUES(14363, 86063, 'eighty-six thousand sixty-three'); INSERT INTO t2 VALUES(14364, 97294, 'ninety-seven thousand two hundred ninety-four'); INSERT INTO t2 VALUES(14365, 23091, 'twenty-three thousand ninety-one'); INSERT INTO t2 VALUES(14366, 44814, 'forty-four thousand eight hundred fourteen'); INSERT INTO t2 VALUES(14367, 93664, 'ninety-three thousand six hundred sixty-four'); INSERT INTO t2 VALUES(14368, 77366, 'seventy-seven thousand three hundred sixty-six'); INSERT INTO t2 VALUES(14369, 4818, 'four thousand eight hundred eighteen'); INSERT INTO t2 VALUES(14370, 29353, 'twenty-nine thousand three hundred fifty-three'); INSERT INTO t2 VALUES(14371, 6908, 'six thousand nine hundred eight'); INSERT INTO t2 VALUES(14372, 23857, 'twenty-three thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(14373, 73945, 'seventy-three thousand nine hundred forty-five'); INSERT INTO t2 VALUES(14374, 95923, 'ninety-five thousand nine hundred twenty-three'); INSERT INTO t2 VALUES(14375, 88534, 'eighty-eight thousand five hundred thirty-four'); INSERT INTO t2 VALUES(14376, 1044, 'one thousand forty-four'); INSERT INTO t2 VALUES(14377, 33068, 'thirty-three thousand sixty-eight'); INSERT INTO t2 VALUES(14378, 96724, 'ninety-six thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(14379, 21204, 'twenty-one thousand two hundred four'); INSERT INTO t2 VALUES(14380, 8359, 'eight thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(14381, 29818, 'twenty-nine thousand eight hundred eighteen'); INSERT INTO t2 VALUES(14382, 81248, 'eighty-one thousand two hundred forty-eight'); INSERT INTO t2 VALUES(14383, 79900, 'seventy-nine thousand nine hundred'); INSERT INTO t2 VALUES(14384, 21224, 'twenty-one thousand two hundred twenty-four'); INSERT INTO t2 VALUES(14385, 29076, 'twenty-nine thousand seventy-six'); INSERT INTO t2 VALUES(14386, 37818, 'thirty-seven thousand eight hundred eighteen'); INSERT INTO t2 VALUES(14387, 41380, 'forty-one thousand three hundred eighty'); INSERT INTO t2 VALUES(14388, 6662, 'six thousand six hundred sixty-two'); INSERT INTO t2 VALUES(14389, 85533, 'eighty-five thousand five hundred thirty-three'); INSERT INTO t2 VALUES(14390, 52747, 'fifty-two thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(14391, 99424, 'ninety-nine thousand four hundred twenty-four'); INSERT INTO t2 VALUES(14392, 99569, 'ninety-nine thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(14393, 76915, 'seventy-six thousand nine hundred fifteen'); INSERT INTO t2 VALUES(14394, 98238, 'ninety-eight thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(14395, 3643, 'three thousand six hundred forty-three'); INSERT INTO t2 VALUES(14396, 10580, 'ten thousand five hundred eighty'); INSERT INTO t2 VALUES(14397, 27369, 'twenty-seven thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(14398, 19576, 'nineteen thousand five hundred seventy-six'); INSERT INTO t2 VALUES(14399, 17462, 'seventeen thousand four hundred sixty-two'); INSERT INTO t2 VALUES(14400, 27190, 'twenty-seven thousand one hundred ninety'); INSERT INTO t2 VALUES(14401, 57559, 'fifty-seven thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(14402, 38918, 'thirty-eight thousand nine hundred eighteen'); INSERT INTO t2 VALUES(14403, 18910, 'eighteen thousand nine hundred ten'); INSERT INTO t2 VALUES(14404, 58855, 'fifty-eight thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(14405, 51161, 'fifty-one thousand one hundred sixty-one'); INSERT INTO t2 VALUES(14406, 45122, 'forty-five thousand one hundred twenty-two'); INSERT INTO t2 VALUES(14407, 25422, 'twenty-five thousand four hundred twenty-two'); INSERT INTO t2 VALUES(14408, 50018, 'fifty thousand eighteen'); INSERT INTO t2 VALUES(14409, 88341, 'eighty-eight thousand three hundred forty-one'); INSERT INTO t2 VALUES(14410, 41047, 'forty-one thousand forty-seven'); INSERT INTO t2 VALUES(14411, 53684, 'fifty-three thousand six hundred eighty-four'); INSERT INTO t2 VALUES(14412, 7018, 'seven thousand eighteen'); INSERT INTO t2 VALUES(14413, 14324, 'fourteen thousand three hundred twenty-four'); INSERT INTO t2 VALUES(14414, 15849, 'fifteen thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(14415, 47940, 'forty-seven thousand nine hundred forty'); INSERT INTO t2 VALUES(14416, 49096, 'forty-nine thousand ninety-six'); INSERT INTO t2 VALUES(14417, 21937, 'twenty-one thousand nine hundred thirty-seven'); INSERT INTO t2 VALUES(14418, 90158, 'ninety thousand one hundred fifty-eight'); INSERT INTO t2 VALUES(14419, 4770, 'four thousand seven hundred seventy'); INSERT INTO t2 VALUES(14420, 80185, 'eighty thousand one hundred eighty-five'); INSERT INTO t2 VALUES(14421, 30812, 'thirty thousand eight hundred twelve'); INSERT INTO t2 VALUES(14422, 88137, 'eighty-eight thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(14423, 18892, 'eighteen thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(14424, 31402, 'thirty-one thousand four hundred two'); INSERT INTO t2 VALUES(14425, 67043, 'sixty-seven thousand forty-three'); INSERT INTO t2 VALUES(14426, 96734, 'ninety-six thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(14427, 35005, 'thirty-five thousand five'); INSERT INTO t2 VALUES(14428, 42841, 'forty-two thousand eight hundred forty-one'); INSERT INTO t2 VALUES(14429, 15230, 'fifteen thousand two hundred thirty'); INSERT INTO t2 VALUES(14430, 13797, 'thirteen thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(14431, 6752, 'six thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(14432, 65526, 'sixty-five thousand five hundred twenty-six'); INSERT INTO t2 VALUES(14433, 39873, 'thirty-nine thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(14434, 4606, 'four thousand six hundred six'); INSERT INTO t2 VALUES(14435, 39525, 'thirty-nine thousand five hundred twenty-five'); INSERT INTO t2 VALUES(14436, 27048, 'twenty-seven thousand forty-eight'); INSERT INTO t2 VALUES(14437, 25952, 'twenty-five thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(14438, 33402, 'thirty-three thousand four hundred two'); INSERT INTO t2 VALUES(14439, 31317, 'thirty-one thousand three hundred seventeen'); INSERT INTO t2 VALUES(14440, 24397, 'twenty-four thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(14441, 65864, 'sixty-five thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(14442, 9789, 'nine thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(14443, 58604, 'fifty-eight thousand six hundred four'); INSERT INTO t2 VALUES(14444, 34957, 'thirty-four thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(14445, 70353, 'seventy thousand three hundred fifty-three'); INSERT INTO t2 VALUES(14446, 97333, 'ninety-seven thousand three hundred thirty-three'); INSERT INTO t2 VALUES(14447, 43578, 'forty-three thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(14448, 94679, 'ninety-four thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(14449, 77060, 'seventy-seven thousand sixty'); INSERT INTO t2 VALUES(14450, 90869, 'ninety thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(14451, 47435, 'forty-seven thousand four hundred thirty-five'); INSERT INTO t2 VALUES(14452, 37198, 'thirty-seven thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(14453, 13044, 'thirteen thousand forty-four'); INSERT INTO t2 VALUES(14454, 51680, 'fifty-one thousand six hundred eighty'); INSERT INTO t2 VALUES(14455, 28456, 'twenty-eight thousand four hundred fifty-six'); INSERT INTO t2 VALUES(14456, 46979, 'forty-six thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(14457, 268, 'two hundred sixty-eight'); INSERT INTO t2 VALUES(14458, 59496, 'fifty-nine thousand four hundred ninety-six'); INSERT INTO t2 VALUES(14459, 47830, 'forty-seven thousand eight hundred thirty'); INSERT INTO t2 VALUES(14460, 72576, 'seventy-two thousand five hundred seventy-six'); INSERT INTO t2 VALUES(14461, 89045, 'eighty-nine thousand forty-five'); INSERT INTO t2 VALUES(14462, 9247, 'nine thousand two hundred forty-seven'); INSERT INTO t2 VALUES(14463, 45771, 'forty-five thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(14464, 9818, 'nine thousand eight hundred eighteen'); INSERT INTO t2 VALUES(14465, 80356, 'eighty thousand three hundred fifty-six'); INSERT INTO t2 VALUES(14466, 77184, 'seventy-seven thousand one hundred eighty-four'); INSERT INTO t2 VALUES(14467, 95275, 'ninety-five thousand two hundred seventy-five'); INSERT INTO t2 VALUES(14468, 14950, 'fourteen thousand nine hundred fifty'); INSERT INTO t2 VALUES(14469, 25886, 'twenty-five thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(14470, 76665, 'seventy-six thousand six hundred sixty-five'); INSERT INTO t2 VALUES(14471, 93690, 'ninety-three thousand six hundred ninety'); INSERT INTO t2 VALUES(14472, 59731, 'fifty-nine thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(14473, 84252, 'eighty-four thousand two hundred fifty-two'); INSERT INTO t2 VALUES(14474, 50778, 'fifty thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(14475, 85611, 'eighty-five thousand six hundred eleven'); INSERT INTO t2 VALUES(14476, 64788, 'sixty-four thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(14477, 1364, 'one thousand three hundred sixty-four'); INSERT INTO t2 VALUES(14478, 95924, 'ninety-five thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(14479, 77564, 'seventy-seven thousand five hundred sixty-four'); INSERT INTO t2 VALUES(14480, 16477, 'sixteen thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(14481, 57138, 'fifty-seven thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(14482, 5847, 'five thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(14483, 39001, 'thirty-nine thousand one'); INSERT INTO t2 VALUES(14484, 2050, 'two thousand fifty'); INSERT INTO t2 VALUES(14485, 33564, 'thirty-three thousand five hundred sixty-four'); INSERT INTO t2 VALUES(14486, 4178, 'four thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(14487, 78178, 'seventy-eight thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(14488, 49514, 'forty-nine thousand five hundred fourteen'); INSERT INTO t2 VALUES(14489, 78921, 'seventy-eight thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(14490, 71208, 'seventy-one thousand two hundred eight'); INSERT INTO t2 VALUES(14491, 38465, 'thirty-eight thousand four hundred sixty-five'); INSERT INTO t2 VALUES(14492, 86416, 'eighty-six thousand four hundred sixteen'); INSERT INTO t2 VALUES(14493, 93193, 'ninety-three thousand one hundred ninety-three'); INSERT INTO t2 VALUES(14494, 61818, 'sixty-one thousand eight hundred eighteen'); INSERT INTO t2 VALUES(14495, 5089, 'five thousand eighty-nine'); INSERT INTO t2 VALUES(14496, 36936, 'thirty-six thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(14497, 95692, 'ninety-five thousand six hundred ninety-two'); INSERT INTO t2 VALUES(14498, 33382, 'thirty-three thousand three hundred eighty-two'); INSERT INTO t2 VALUES(14499, 59107, 'fifty-nine thousand one hundred seven'); INSERT INTO t2 VALUES(14500, 71623, 'seventy-one thousand six hundred twenty-three'); INSERT INTO t2 VALUES(14501, 69461, 'sixty-nine thousand four hundred sixty-one'); INSERT INTO t2 VALUES(14502, 7733, 'seven thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(14503, 73507, 'seventy-three thousand five hundred seven'); INSERT INTO t2 VALUES(14504, 58103, 'fifty-eight thousand one hundred three'); INSERT INTO t2 VALUES(14505, 86934, 'eighty-six thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(14506, 75588, 'seventy-five thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(14507, 21769, 'twenty-one thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(14508, 31140, 'thirty-one thousand one hundred forty'); INSERT INTO t2 VALUES(14509, 19322, 'nineteen thousand three hundred twenty-two'); INSERT INTO t2 VALUES(14510, 33203, 'thirty-three thousand two hundred three'); INSERT INTO t2 VALUES(14511, 86313, 'eighty-six thousand three hundred thirteen'); INSERT INTO t2 VALUES(14512, 49083, 'forty-nine thousand eighty-three'); INSERT INTO t2 VALUES(14513, 76586, 'seventy-six thousand five hundred eighty-six'); INSERT INTO t2 VALUES(14514, 50635, 'fifty thousand six hundred thirty-five'); INSERT INTO t2 VALUES(14515, 76844, 'seventy-six thousand eight hundred forty-four'); INSERT INTO t2 VALUES(14516, 41924, 'forty-one thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(14517, 5724, 'five thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(14518, 15808, 'fifteen thousand eight hundred eight'); INSERT INTO t2 VALUES(14519, 22083, 'twenty-two thousand eighty-three'); INSERT INTO t2 VALUES(14520, 97749, 'ninety-seven thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(14521, 33479, 'thirty-three thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(14522, 23304, 'twenty-three thousand three hundred four'); INSERT INTO t2 VALUES(14523, 37432, 'thirty-seven thousand four hundred thirty-two'); INSERT INTO t2 VALUES(14524, 8914, 'eight thousand nine hundred fourteen'); INSERT INTO t2 VALUES(14525, 98746, 'ninety-eight thousand seven hundred forty-six'); INSERT INTO t2 VALUES(14526, 84990, 'eighty-four thousand nine hundred ninety'); INSERT INTO t2 VALUES(14527, 31971, 'thirty-one thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(14528, 73077, 'seventy-three thousand seventy-seven'); INSERT INTO t2 VALUES(14529, 23102, 'twenty-three thousand one hundred two'); INSERT INTO t2 VALUES(14530, 72328, 'seventy-two thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(14531, 25679, 'twenty-five thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(14532, 25580, 'twenty-five thousand five hundred eighty'); INSERT INTO t2 VALUES(14533, 79422, 'seventy-nine thousand four hundred twenty-two'); INSERT INTO t2 VALUES(14534, 96682, 'ninety-six thousand six hundred eighty-two'); INSERT INTO t2 VALUES(14535, 44352, 'forty-four thousand three hundred fifty-two'); INSERT INTO t2 VALUES(14536, 49609, 'forty-nine thousand six hundred nine'); INSERT INTO t2 VALUES(14537, 16865, 'sixteen thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(14538, 64205, 'sixty-four thousand two hundred five'); INSERT INTO t2 VALUES(14539, 56860, 'fifty-six thousand eight hundred sixty'); INSERT INTO t2 VALUES(14540, 8452, 'eight thousand four hundred fifty-two'); INSERT INTO t2 VALUES(14541, 75790, 'seventy-five thousand seven hundred ninety'); INSERT INTO t2 VALUES(14542, 25874, 'twenty-five thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(14543, 9540, 'nine thousand five hundred forty'); INSERT INTO t2 VALUES(14544, 56970, 'fifty-six thousand nine hundred seventy'); INSERT INTO t2 VALUES(14545, 57375, 'fifty-seven thousand three hundred seventy-five'); INSERT INTO t2 VALUES(14546, 83455, 'eighty-three thousand four hundred fifty-five'); INSERT INTO t2 VALUES(14547, 52887, 'fifty-two thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(14548, 66815, 'sixty-six thousand eight hundred fifteen'); INSERT INTO t2 VALUES(14549, 52147, 'fifty-two thousand one hundred forty-seven'); INSERT INTO t2 VALUES(14550, 36436, 'thirty-six thousand four hundred thirty-six'); INSERT INTO t2 VALUES(14551, 1746, 'one thousand seven hundred forty-six'); INSERT INTO t2 VALUES(14552, 19615, 'nineteen thousand six hundred fifteen'); INSERT INTO t2 VALUES(14553, 75751, 'seventy-five thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(14554, 81234, 'eighty-one thousand two hundred thirty-four'); INSERT INTO t2 VALUES(14555, 9563, 'nine thousand five hundred sixty-three'); INSERT INTO t2 VALUES(14556, 89360, 'eighty-nine thousand three hundred sixty'); INSERT INTO t2 VALUES(14557, 49508, 'forty-nine thousand five hundred eight'); INSERT INTO t2 VALUES(14558, 35066, 'thirty-five thousand sixty-six'); INSERT INTO t2 VALUES(14559, 32617, 'thirty-two thousand six hundred seventeen'); INSERT INTO t2 VALUES(14560, 83483, 'eighty-three thousand four hundred eighty-three'); INSERT INTO t2 VALUES(14561, 39994, 'thirty-nine thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(14562, 30187, 'thirty thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(14563, 27214, 'twenty-seven thousand two hundred fourteen'); INSERT INTO t2 VALUES(14564, 92335, 'ninety-two thousand three hundred thirty-five'); INSERT INTO t2 VALUES(14565, 22552, 'twenty-two thousand five hundred fifty-two'); INSERT INTO t2 VALUES(14566, 30410, 'thirty thousand four hundred ten'); INSERT INTO t2 VALUES(14567, 37347, 'thirty-seven thousand three hundred forty-seven'); INSERT INTO t2 VALUES(14568, 54313, 'fifty-four thousand three hundred thirteen'); INSERT INTO t2 VALUES(14569, 97665, 'ninety-seven thousand six hundred sixty-five'); INSERT INTO t2 VALUES(14570, 16804, 'sixteen thousand eight hundred four'); INSERT INTO t2 VALUES(14571, 23093, 'twenty-three thousand ninety-three'); INSERT INTO t2 VALUES(14572, 61173, 'sixty-one thousand one hundred seventy-three'); INSERT INTO t2 VALUES(14573, 44, 'forty-four'); INSERT INTO t2 VALUES(14574, 47884, 'forty-seven thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(14575, 5983, 'five thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(14576, 92504, 'ninety-two thousand five hundred four'); INSERT INTO t2 VALUES(14577, 10497, 'ten thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(14578, 85725, 'eighty-five thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(14579, 49351, 'forty-nine thousand three hundred fifty-one'); INSERT INTO t2 VALUES(14580, 39541, 'thirty-nine thousand five hundred forty-one'); INSERT INTO t2 VALUES(14581, 39732, 'thirty-nine thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(14582, 69622, 'sixty-nine thousand six hundred twenty-two'); INSERT INTO t2 VALUES(14583, 81213, 'eighty-one thousand two hundred thirteen'); INSERT INTO t2 VALUES(14584, 30193, 'thirty thousand one hundred ninety-three'); INSERT INTO t2 VALUES(14585, 94533, 'ninety-four thousand five hundred thirty-three'); INSERT INTO t2 VALUES(14586, 78540, 'seventy-eight thousand five hundred forty'); INSERT INTO t2 VALUES(14587, 12224, 'twelve thousand two hundred twenty-four'); INSERT INTO t2 VALUES(14588, 79454, 'seventy-nine thousand four hundred fifty-four'); INSERT INTO t2 VALUES(14589, 19749, 'nineteen thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(14590, 75920, 'seventy-five thousand nine hundred twenty'); INSERT INTO t2 VALUES(14591, 77552, 'seventy-seven thousand five hundred fifty-two'); INSERT INTO t2 VALUES(14592, 28470, 'twenty-eight thousand four hundred seventy'); INSERT INTO t2 VALUES(14593, 23457, 'twenty-three thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(14594, 89400, 'eighty-nine thousand four hundred'); INSERT INTO t2 VALUES(14595, 41108, 'forty-one thousand one hundred eight'); INSERT INTO t2 VALUES(14596, 67525, 'sixty-seven thousand five hundred twenty-five'); INSERT INTO t2 VALUES(14597, 99322, 'ninety-nine thousand three hundred twenty-two'); INSERT INTO t2 VALUES(14598, 76627, 'seventy-six thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(14599, 47635, 'forty-seven thousand six hundred thirty-five'); INSERT INTO t2 VALUES(14600, 2882, 'two thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(14601, 84683, 'eighty-four thousand six hundred eighty-three'); INSERT INTO t2 VALUES(14602, 554, 'five hundred fifty-four'); INSERT INTO t2 VALUES(14603, 62019, 'sixty-two thousand nineteen'); INSERT INTO t2 VALUES(14604, 45721, 'forty-five thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(14605, 4448, 'four thousand four hundred forty-eight'); INSERT INTO t2 VALUES(14606, 28686, 'twenty-eight thousand six hundred eighty-six'); INSERT INTO t2 VALUES(14607, 3705, 'three thousand seven hundred five'); INSERT INTO t2 VALUES(14608, 18731, 'eighteen thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(14609, 84238, 'eighty-four thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(14610, 20284, 'twenty thousand two hundred eighty-four'); INSERT INTO t2 VALUES(14611, 71682, 'seventy-one thousand six hundred eighty-two'); INSERT INTO t2 VALUES(14612, 47259, 'forty-seven thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(14613, 30209, 'thirty thousand two hundred nine'); INSERT INTO t2 VALUES(14614, 30489, 'thirty thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(14615, 15266, 'fifteen thousand two hundred sixty-six'); INSERT INTO t2 VALUES(14616, 49968, 'forty-nine thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(14617, 64851, 'sixty-four thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(14618, 92183, 'ninety-two thousand one hundred eighty-three'); INSERT INTO t2 VALUES(14619, 84467, 'eighty-four thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(14620, 45437, 'forty-five thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(14621, 68933, 'sixty-eight thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(14622, 6125, 'six thousand one hundred twenty-five'); INSERT INTO t2 VALUES(14623, 10108, 'ten thousand one hundred eight'); INSERT INTO t2 VALUES(14624, 33129, 'thirty-three thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(14625, 67935, 'sixty-seven thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(14626, 92622, 'ninety-two thousand six hundred twenty-two'); INSERT INTO t2 VALUES(14627, 48124, 'forty-eight thousand one hundred twenty-four'); INSERT INTO t2 VALUES(14628, 9437, 'nine thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(14629, 52731, 'fifty-two thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(14630, 72782, 'seventy-two thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(14631, 85991, 'eighty-five thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(14632, 34199, 'thirty-four thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(14633, 19327, 'nineteen thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(14634, 29821, 'twenty-nine thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(14635, 22018, 'twenty-two thousand eighteen'); INSERT INTO t2 VALUES(14636, 95469, 'ninety-five thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(14637, 35270, 'thirty-five thousand two hundred seventy'); INSERT INTO t2 VALUES(14638, 21753, 'twenty-one thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(14639, 41787, 'forty-one thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(14640, 80088, 'eighty thousand eighty-eight'); INSERT INTO t2 VALUES(14641, 18458, 'eighteen thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(14642, 78593, 'seventy-eight thousand five hundred ninety-three'); INSERT INTO t2 VALUES(14643, 37960, 'thirty-seven thousand nine hundred sixty'); INSERT INTO t2 VALUES(14644, 79870, 'seventy-nine thousand eight hundred seventy'); INSERT INTO t2 VALUES(14645, 84724, 'eighty-four thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(14646, 31792, 'thirty-one thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(14647, 59671, 'fifty-nine thousand six hundred seventy-one'); INSERT INTO t2 VALUES(14648, 6769, 'six thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(14649, 89178, 'eighty-nine thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(14650, 6896, 'six thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(14651, 16672, 'sixteen thousand six hundred seventy-two'); INSERT INTO t2 VALUES(14652, 43227, 'forty-three thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(14653, 61393, 'sixty-one thousand three hundred ninety-three'); INSERT INTO t2 VALUES(14654, 15848, 'fifteen thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(14655, 15662, 'fifteen thousand six hundred sixty-two'); INSERT INTO t2 VALUES(14656, 15993, 'fifteen thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(14657, 35739, 'thirty-five thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(14658, 41226, 'forty-one thousand two hundred twenty-six'); INSERT INTO t2 VALUES(14659, 85900, 'eighty-five thousand nine hundred'); INSERT INTO t2 VALUES(14660, 87213, 'eighty-seven thousand two hundred thirteen'); INSERT INTO t2 VALUES(14661, 41971, 'forty-one thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(14662, 98755, 'ninety-eight thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(14663, 87227, 'eighty-seven thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(14664, 38837, 'thirty-eight thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(14665, 9866, 'nine thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(14666, 18765, 'eighteen thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(14667, 37507, 'thirty-seven thousand five hundred seven'); INSERT INTO t2 VALUES(14668, 93594, 'ninety-three thousand five hundred ninety-four'); INSERT INTO t2 VALUES(14669, 71161, 'seventy-one thousand one hundred sixty-one'); INSERT INTO t2 VALUES(14670, 13162, 'thirteen thousand one hundred sixty-two'); INSERT INTO t2 VALUES(14671, 30257, 'thirty thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(14672, 72955, 'seventy-two thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(14673, 24431, 'twenty-four thousand four hundred thirty-one'); INSERT INTO t2 VALUES(14674, 92187, 'ninety-two thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(14675, 71340, 'seventy-one thousand three hundred forty'); INSERT INTO t2 VALUES(14676, 91891, 'ninety-one thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(14677, 46095, 'forty-six thousand ninety-five'); INSERT INTO t2 VALUES(14678, 51437, 'fifty-one thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(14679, 57660, 'fifty-seven thousand six hundred sixty'); INSERT INTO t2 VALUES(14680, 79428, 'seventy-nine thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(14681, 32269, 'thirty-two thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(14682, 83066, 'eighty-three thousand sixty-six'); INSERT INTO t2 VALUES(14683, 4752, 'four thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(14684, 50841, 'fifty thousand eight hundred forty-one'); INSERT INTO t2 VALUES(14685, 83277, 'eighty-three thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(14686, 80797, 'eighty thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(14687, 24346, 'twenty-four thousand three hundred forty-six'); INSERT INTO t2 VALUES(14688, 55514, 'fifty-five thousand five hundred fourteen'); INSERT INTO t2 VALUES(14689, 75013, 'seventy-five thousand thirteen'); INSERT INTO t2 VALUES(14690, 97262, 'ninety-seven thousand two hundred sixty-two'); INSERT INTO t2 VALUES(14691, 22236, 'twenty-two thousand two hundred thirty-six'); INSERT INTO t2 VALUES(14692, 97617, 'ninety-seven thousand six hundred seventeen'); INSERT INTO t2 VALUES(14693, 63703, 'sixty-three thousand seven hundred three'); INSERT INTO t2 VALUES(14694, 42773, 'forty-two thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(14695, 69803, 'sixty-nine thousand eight hundred three'); INSERT INTO t2 VALUES(14696, 87220, 'eighty-seven thousand two hundred twenty'); INSERT INTO t2 VALUES(14697, 38313, 'thirty-eight thousand three hundred thirteen'); INSERT INTO t2 VALUES(14698, 39602, 'thirty-nine thousand six hundred two'); INSERT INTO t2 VALUES(14699, 91627, 'ninety-one thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(14700, 94788, 'ninety-four thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(14701, 94296, 'ninety-four thousand two hundred ninety-six'); INSERT INTO t2 VALUES(14702, 90119, 'ninety thousand one hundred nineteen'); INSERT INTO t2 VALUES(14703, 59321, 'fifty-nine thousand three hundred twenty-one'); INSERT INTO t2 VALUES(14704, 40631, 'forty thousand six hundred thirty-one'); INSERT INTO t2 VALUES(14705, 11223, 'eleven thousand two hundred twenty-three'); INSERT INTO t2 VALUES(14706, 96046, 'ninety-six thousand forty-six'); INSERT INTO t2 VALUES(14707, 45279, 'forty-five thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(14708, 80973, 'eighty thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(14709, 33518, 'thirty-three thousand five hundred eighteen'); INSERT INTO t2 VALUES(14710, 44180, 'forty-four thousand one hundred eighty'); INSERT INTO t2 VALUES(14711, 22497, 'twenty-two thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(14712, 90451, 'ninety thousand four hundred fifty-one'); INSERT INTO t2 VALUES(14713, 43890, 'forty-three thousand eight hundred ninety'); INSERT INTO t2 VALUES(14714, 54182, 'fifty-four thousand one hundred eighty-two'); INSERT INTO t2 VALUES(14715, 5065, 'five thousand sixty-five'); INSERT INTO t2 VALUES(14716, 16813, 'sixteen thousand eight hundred thirteen'); INSERT INTO t2 VALUES(14717, 48067, 'forty-eight thousand sixty-seven'); INSERT INTO t2 VALUES(14718, 3549, 'three thousand five hundred forty-nine'); INSERT INTO t2 VALUES(14719, 4978, 'four thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(14720, 98801, 'ninety-eight thousand eight hundred one'); INSERT INTO t2 VALUES(14721, 8691, 'eight thousand six hundred ninety-one'); INSERT INTO t2 VALUES(14722, 28395, 'twenty-eight thousand three hundred ninety-five'); INSERT INTO t2 VALUES(14723, 3896, 'three thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(14724, 8632, 'eight thousand six hundred thirty-two'); INSERT INTO t2 VALUES(14725, 23899, 'twenty-three thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(14726, 41455, 'forty-one thousand four hundred fifty-five'); INSERT INTO t2 VALUES(14727, 61002, 'sixty-one thousand two'); INSERT INTO t2 VALUES(14728, 52544, 'fifty-two thousand five hundred forty-four'); INSERT INTO t2 VALUES(14729, 35834, 'thirty-five thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(14730, 17708, 'seventeen thousand seven hundred eight'); INSERT INTO t2 VALUES(14731, 25189, 'twenty-five thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(14732, 60534, 'sixty thousand five hundred thirty-four'); INSERT INTO t2 VALUES(14733, 62842, 'sixty-two thousand eight hundred forty-two'); INSERT INTO t2 VALUES(14734, 41457, 'forty-one thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(14735, 88861, 'eighty-eight thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(14736, 44132, 'forty-four thousand one hundred thirty-two'); INSERT INTO t2 VALUES(14737, 71118, 'seventy-one thousand one hundred eighteen'); INSERT INTO t2 VALUES(14738, 57340, 'fifty-seven thousand three hundred forty'); INSERT INTO t2 VALUES(14739, 57778, 'fifty-seven thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(14740, 51943, 'fifty-one thousand nine hundred forty-three'); INSERT INTO t2 VALUES(14741, 27593, 'twenty-seven thousand five hundred ninety-three'); INSERT INTO t2 VALUES(14742, 53238, 'fifty-three thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(14743, 74640, 'seventy-four thousand six hundred forty'); INSERT INTO t2 VALUES(14744, 50657, 'fifty thousand six hundred fifty-seven'); INSERT INTO t2 VALUES(14745, 66555, 'sixty-six thousand five hundred fifty-five'); INSERT INTO t2 VALUES(14746, 22670, 'twenty-two thousand six hundred seventy'); INSERT INTO t2 VALUES(14747, 29122, 'twenty-nine thousand one hundred twenty-two'); INSERT INTO t2 VALUES(14748, 31386, 'thirty-one thousand three hundred eighty-six'); INSERT INTO t2 VALUES(14749, 19318, 'nineteen thousand three hundred eighteen'); INSERT INTO t2 VALUES(14750, 43989, 'forty-three thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(14751, 70279, 'seventy thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(14752, 128, 'one hundred twenty-eight'); INSERT INTO t2 VALUES(14753, 93486, 'ninety-three thousand four hundred eighty-six'); INSERT INTO t2 VALUES(14754, 48970, 'forty-eight thousand nine hundred seventy'); INSERT INTO t2 VALUES(14755, 60722, 'sixty thousand seven hundred twenty-two'); INSERT INTO t2 VALUES(14756, 68139, 'sixty-eight thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(14757, 52036, 'fifty-two thousand thirty-six'); INSERT INTO t2 VALUES(14758, 24053, 'twenty-four thousand fifty-three'); INSERT INTO t2 VALUES(14759, 44905, 'forty-four thousand nine hundred five'); INSERT INTO t2 VALUES(14760, 66280, 'sixty-six thousand two hundred eighty'); INSERT INTO t2 VALUES(14761, 55151, 'fifty-five thousand one hundred fifty-one'); INSERT INTO t2 VALUES(14762, 41343, 'forty-one thousand three hundred forty-three'); INSERT INTO t2 VALUES(14763, 72538, 'seventy-two thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(14764, 44348, 'forty-four thousand three hundred forty-eight'); INSERT INTO t2 VALUES(14765, 79547, 'seventy-nine thousand five hundred forty-seven'); INSERT INTO t2 VALUES(14766, 30808, 'thirty thousand eight hundred eight'); INSERT INTO t2 VALUES(14767, 27990, 'twenty-seven thousand nine hundred ninety'); INSERT INTO t2 VALUES(14768, 62192, 'sixty-two thousand one hundred ninety-two'); INSERT INTO t2 VALUES(14769, 23859, 'twenty-three thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(14770, 15552, 'fifteen thousand five hundred fifty-two'); INSERT INTO t2 VALUES(14771, 55528, 'fifty-five thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(14772, 85365, 'eighty-five thousand three hundred sixty-five'); INSERT INTO t2 VALUES(14773, 42672, 'forty-two thousand six hundred seventy-two'); INSERT INTO t2 VALUES(14774, 25794, 'twenty-five thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(14775, 49961, 'forty-nine thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(14776, 27547, 'twenty-seven thousand five hundred forty-seven'); INSERT INTO t2 VALUES(14777, 86964, 'eighty-six thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(14778, 49007, 'forty-nine thousand seven'); INSERT INTO t2 VALUES(14779, 78423, 'seventy-eight thousand four hundred twenty-three'); INSERT INTO t2 VALUES(14780, 28165, 'twenty-eight thousand one hundred sixty-five'); INSERT INTO t2 VALUES(14781, 19329, 'nineteen thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(14782, 10369, 'ten thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(14783, 66493, 'sixty-six thousand four hundred ninety-three'); INSERT INTO t2 VALUES(14784, 17724, 'seventeen thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(14785, 79241, 'seventy-nine thousand two hundred forty-one'); INSERT INTO t2 VALUES(14786, 80382, 'eighty thousand three hundred eighty-two'); INSERT INTO t2 VALUES(14787, 25588, 'twenty-five thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(14788, 59566, 'fifty-nine thousand five hundred sixty-six'); INSERT INTO t2 VALUES(14789, 70032, 'seventy thousand thirty-two'); INSERT INTO t2 VALUES(14790, 84071, 'eighty-four thousand seventy-one'); INSERT INTO t2 VALUES(14791, 17353, 'seventeen thousand three hundred fifty-three'); INSERT INTO t2 VALUES(14792, 28303, 'twenty-eight thousand three hundred three'); INSERT INTO t2 VALUES(14793, 75399, 'seventy-five thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(14794, 37078, 'thirty-seven thousand seventy-eight'); INSERT INTO t2 VALUES(14795, 75173, 'seventy-five thousand one hundred seventy-three'); INSERT INTO t2 VALUES(14796, 12391, 'twelve thousand three hundred ninety-one'); INSERT INTO t2 VALUES(14797, 21236, 'twenty-one thousand two hundred thirty-six'); INSERT INTO t2 VALUES(14798, 66286, 'sixty-six thousand two hundred eighty-six'); INSERT INTO t2 VALUES(14799, 25510, 'twenty-five thousand five hundred ten'); INSERT INTO t2 VALUES(14800, 99877, 'ninety-nine thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(14801, 75418, 'seventy-five thousand four hundred eighteen'); INSERT INTO t2 VALUES(14802, 10969, 'ten thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(14803, 8020, 'eight thousand twenty'); INSERT INTO t2 VALUES(14804, 6590, 'six thousand five hundred ninety'); INSERT INTO t2 VALUES(14805, 85993, 'eighty-five thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(14806, 83083, 'eighty-three thousand eighty-three'); INSERT INTO t2 VALUES(14807, 89009, 'eighty-nine thousand nine'); INSERT INTO t2 VALUES(14808, 54416, 'fifty-four thousand four hundred sixteen'); INSERT INTO t2 VALUES(14809, 28310, 'twenty-eight thousand three hundred ten'); INSERT INTO t2 VALUES(14810, 39845, 'thirty-nine thousand eight hundred forty-five'); INSERT INTO t2 VALUES(14811, 18317, 'eighteen thousand three hundred seventeen'); INSERT INTO t2 VALUES(14812, 42100, 'forty-two thousand one hundred'); INSERT INTO t2 VALUES(14813, 80698, 'eighty thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(14814, 66337, 'sixty-six thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(14815, 61059, 'sixty-one thousand fifty-nine'); INSERT INTO t2 VALUES(14816, 54376, 'fifty-four thousand three hundred seventy-six'); INSERT INTO t2 VALUES(14817, 48273, 'forty-eight thousand two hundred seventy-three'); INSERT INTO t2 VALUES(14818, 60827, 'sixty thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(14819, 46299, 'forty-six thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(14820, 84933, 'eighty-four thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(14821, 28730, 'twenty-eight thousand seven hundred thirty'); INSERT INTO t2 VALUES(14822, 8060, 'eight thousand sixty'); INSERT INTO t2 VALUES(14823, 79376, 'seventy-nine thousand three hundred seventy-six'); INSERT INTO t2 VALUES(14824, 36887, 'thirty-six thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(14825, 84973, 'eighty-four thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(14826, 38684, 'thirty-eight thousand six hundred eighty-four'); INSERT INTO t2 VALUES(14827, 73188, 'seventy-three thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(14828, 75108, 'seventy-five thousand one hundred eight'); INSERT INTO t2 VALUES(14829, 87237, 'eighty-seven thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(14830, 58693, 'fifty-eight thousand six hundred ninety-three'); INSERT INTO t2 VALUES(14831, 43371, 'forty-three thousand three hundred seventy-one'); INSERT INTO t2 VALUES(14832, 2894, 'two thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(14833, 49611, 'forty-nine thousand six hundred eleven'); INSERT INTO t2 VALUES(14834, 28226, 'twenty-eight thousand two hundred twenty-six'); INSERT INTO t2 VALUES(14835, 33043, 'thirty-three thousand forty-three'); INSERT INTO t2 VALUES(14836, 13541, 'thirteen thousand five hundred forty-one'); INSERT INTO t2 VALUES(14837, 28871, 'twenty-eight thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(14838, 20181, 'twenty thousand one hundred eighty-one'); INSERT INTO t2 VALUES(14839, 83446, 'eighty-three thousand four hundred forty-six'); INSERT INTO t2 VALUES(14840, 43040, 'forty-three thousand forty'); INSERT INTO t2 VALUES(14841, 7590, 'seven thousand five hundred ninety'); INSERT INTO t2 VALUES(14842, 65978, 'sixty-five thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(14843, 91188, 'ninety-one thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(14844, 98032, 'ninety-eight thousand thirty-two'); INSERT INTO t2 VALUES(14845, 39240, 'thirty-nine thousand two hundred forty'); INSERT INTO t2 VALUES(14846, 21482, 'twenty-one thousand four hundred eighty-two'); INSERT INTO t2 VALUES(14847, 88160, 'eighty-eight thousand one hundred sixty'); INSERT INTO t2 VALUES(14848, 16389, 'sixteen thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(14849, 24738, 'twenty-four thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(14850, 39290, 'thirty-nine thousand two hundred ninety'); INSERT INTO t2 VALUES(14851, 54251, 'fifty-four thousand two hundred fifty-one'); INSERT INTO t2 VALUES(14852, 38312, 'thirty-eight thousand three hundred twelve'); INSERT INTO t2 VALUES(14853, 33579, 'thirty-three thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(14854, 66306, 'sixty-six thousand three hundred six'); INSERT INTO t2 VALUES(14855, 83598, 'eighty-three thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(14856, 18308, 'eighteen thousand three hundred eight'); INSERT INTO t2 VALUES(14857, 81083, 'eighty-one thousand eighty-three'); INSERT INTO t2 VALUES(14858, 13799, 'thirteen thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(14859, 1751, 'one thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(14860, 43130, 'forty-three thousand one hundred thirty'); INSERT INTO t2 VALUES(14861, 14252, 'fourteen thousand two hundred fifty-two'); INSERT INTO t2 VALUES(14862, 40845, 'forty thousand eight hundred forty-five'); INSERT INTO t2 VALUES(14863, 137, 'one hundred thirty-seven'); INSERT INTO t2 VALUES(14864, 38375, 'thirty-eight thousand three hundred seventy-five'); INSERT INTO t2 VALUES(14865, 93507, 'ninety-three thousand five hundred seven'); INSERT INTO t2 VALUES(14866, 68768, 'sixty-eight thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(14867, 41546, 'forty-one thousand five hundred forty-six'); INSERT INTO t2 VALUES(14868, 39802, 'thirty-nine thousand eight hundred two'); INSERT INTO t2 VALUES(14869, 82342, 'eighty-two thousand three hundred forty-two'); INSERT INTO t2 VALUES(14870, 18338, 'eighteen thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(14871, 12695, 'twelve thousand six hundred ninety-five'); INSERT INTO t2 VALUES(14872, 33942, 'thirty-three thousand nine hundred forty-two'); INSERT INTO t2 VALUES(14873, 55081, 'fifty-five thousand eighty-one'); INSERT INTO t2 VALUES(14874, 94942, 'ninety-four thousand nine hundred forty-two'); INSERT INTO t2 VALUES(14875, 89156, 'eighty-nine thousand one hundred fifty-six'); INSERT INTO t2 VALUES(14876, 51544, 'fifty-one thousand five hundred forty-four'); INSERT INTO t2 VALUES(14877, 67560, 'sixty-seven thousand five hundred sixty'); INSERT INTO t2 VALUES(14878, 8687, 'eight thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(14879, 43582, 'forty-three thousand five hundred eighty-two'); INSERT INTO t2 VALUES(14880, 20648, 'twenty thousand six hundred forty-eight'); INSERT INTO t2 VALUES(14881, 18081, 'eighteen thousand eighty-one'); INSERT INTO t2 VALUES(14882, 65047, 'sixty-five thousand forty-seven'); INSERT INTO t2 VALUES(14883, 99684, 'ninety-nine thousand six hundred eighty-four'); INSERT INTO t2 VALUES(14884, 97758, 'ninety-seven thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(14885, 4171, 'four thousand one hundred seventy-one'); INSERT INTO t2 VALUES(14886, 79899, 'seventy-nine thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(14887, 6764, 'six thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(14888, 54068, 'fifty-four thousand sixty-eight'); INSERT INTO t2 VALUES(14889, 75627, 'seventy-five thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(14890, 50157, 'fifty thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(14891, 6893, 'six thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(14892, 92589, 'ninety-two thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(14893, 6833, 'six thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(14894, 37330, 'thirty-seven thousand three hundred thirty'); INSERT INTO t2 VALUES(14895, 92032, 'ninety-two thousand thirty-two'); INSERT INTO t2 VALUES(14896, 85158, 'eighty-five thousand one hundred fifty-eight'); INSERT INTO t2 VALUES(14897, 83664, 'eighty-three thousand six hundred sixty-four'); INSERT INTO t2 VALUES(14898, 40988, 'forty thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(14899, 74366, 'seventy-four thousand three hundred sixty-six'); INSERT INTO t2 VALUES(14900, 75343, 'seventy-five thousand three hundred forty-three'); INSERT INTO t2 VALUES(14901, 50935, 'fifty thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(14902, 85815, 'eighty-five thousand eight hundred fifteen'); INSERT INTO t2 VALUES(14903, 54240, 'fifty-four thousand two hundred forty'); INSERT INTO t2 VALUES(14904, 87892, 'eighty-seven thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(14905, 40957, 'forty thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(14906, 82076, 'eighty-two thousand seventy-six'); INSERT INTO t2 VALUES(14907, 75856, 'seventy-five thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(14908, 14385, 'fourteen thousand three hundred eighty-five'); INSERT INTO t2 VALUES(14909, 97969, 'ninety-seven thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(14910, 5575, 'five thousand five hundred seventy-five'); INSERT INTO t2 VALUES(14911, 74463, 'seventy-four thousand four hundred sixty-three'); INSERT INTO t2 VALUES(14912, 13970, 'thirteen thousand nine hundred seventy'); INSERT INTO t2 VALUES(14913, 53165, 'fifty-three thousand one hundred sixty-five'); INSERT INTO t2 VALUES(14914, 8372, 'eight thousand three hundred seventy-two'); INSERT INTO t2 VALUES(14915, 24049, 'twenty-four thousand forty-nine'); INSERT INTO t2 VALUES(14916, 56316, 'fifty-six thousand three hundred sixteen'); INSERT INTO t2 VALUES(14917, 17773, 'seventeen thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(14918, 66781, 'sixty-six thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(14919, 44535, 'forty-four thousand five hundred thirty-five'); INSERT INTO t2 VALUES(14920, 92205, 'ninety-two thousand two hundred five'); INSERT INTO t2 VALUES(14921, 60210, 'sixty thousand two hundred ten'); INSERT INTO t2 VALUES(14922, 14668, 'fourteen thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(14923, 17568, 'seventeen thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(14924, 12673, 'twelve thousand six hundred seventy-three'); INSERT INTO t2 VALUES(14925, 72966, 'seventy-two thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(14926, 94656, 'ninety-four thousand six hundred fifty-six'); INSERT INTO t2 VALUES(14927, 59749, 'fifty-nine thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(14928, 78924, 'seventy-eight thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(14929, 13228, 'thirteen thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(14930, 51270, 'fifty-one thousand two hundred seventy'); INSERT INTO t2 VALUES(14931, 88752, 'eighty-eight thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(14932, 54559, 'fifty-four thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(14933, 31468, 'thirty-one thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(14934, 17891, 'seventeen thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(14935, 53675, 'fifty-three thousand six hundred seventy-five'); INSERT INTO t2 VALUES(14936, 53525, 'fifty-three thousand five hundred twenty-five'); INSERT INTO t2 VALUES(14937, 15904, 'fifteen thousand nine hundred four'); INSERT INTO t2 VALUES(14938, 88317, 'eighty-eight thousand three hundred seventeen'); INSERT INTO t2 VALUES(14939, 84193, 'eighty-four thousand one hundred ninety-three'); INSERT INTO t2 VALUES(14940, 92710, 'ninety-two thousand seven hundred ten'); INSERT INTO t2 VALUES(14941, 12551, 'twelve thousand five hundred fifty-one'); INSERT INTO t2 VALUES(14942, 64502, 'sixty-four thousand five hundred two'); INSERT INTO t2 VALUES(14943, 94730, 'ninety-four thousand seven hundred thirty'); INSERT INTO t2 VALUES(14944, 83729, 'eighty-three thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(14945, 57078, 'fifty-seven thousand seventy-eight'); INSERT INTO t2 VALUES(14946, 11601, 'eleven thousand six hundred one'); INSERT INTO t2 VALUES(14947, 15255, 'fifteen thousand two hundred fifty-five'); INSERT INTO t2 VALUES(14948, 41045, 'forty-one thousand forty-five'); INSERT INTO t2 VALUES(14949, 69736, 'sixty-nine thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(14950, 87368, 'eighty-seven thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(14951, 71634, 'seventy-one thousand six hundred thirty-four'); INSERT INTO t2 VALUES(14952, 22893, 'twenty-two thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(14953, 67128, 'sixty-seven thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(14954, 9599, 'nine thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(14955, 82583, 'eighty-two thousand five hundred eighty-three'); INSERT INTO t2 VALUES(14956, 74237, 'seventy-four thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(14957, 80721, 'eighty thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(14958, 16870, 'sixteen thousand eight hundred seventy'); INSERT INTO t2 VALUES(14959, 13515, 'thirteen thousand five hundred fifteen'); INSERT INTO t2 VALUES(14960, 1932, 'one thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(14961, 47699, 'forty-seven thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(14962, 44529, 'forty-four thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(14963, 18489, 'eighteen thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(14964, 92906, 'ninety-two thousand nine hundred six'); INSERT INTO t2 VALUES(14965, 10703, 'ten thousand seven hundred three'); INSERT INTO t2 VALUES(14966, 40741, 'forty thousand seven hundred forty-one'); INSERT INTO t2 VALUES(14967, 16068, 'sixteen thousand sixty-eight'); INSERT INTO t2 VALUES(14968, 40236, 'forty thousand two hundred thirty-six'); INSERT INTO t2 VALUES(14969, 51691, 'fifty-one thousand six hundred ninety-one'); INSERT INTO t2 VALUES(14970, 17276, 'seventeen thousand two hundred seventy-six'); INSERT INTO t2 VALUES(14971, 70934, 'seventy thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(14972, 27180, 'twenty-seven thousand one hundred eighty'); INSERT INTO t2 VALUES(14973, 13627, 'thirteen thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(14974, 47417, 'forty-seven thousand four hundred seventeen'); INSERT INTO t2 VALUES(14975, 76436, 'seventy-six thousand four hundred thirty-six'); INSERT INTO t2 VALUES(14976, 30513, 'thirty thousand five hundred thirteen'); INSERT INTO t2 VALUES(14977, 23691, 'twenty-three thousand six hundred ninety-one'); INSERT INTO t2 VALUES(14978, 88469, 'eighty-eight thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(14979, 32252, 'thirty-two thousand two hundred fifty-two'); INSERT INTO t2 VALUES(14980, 42581, 'forty-two thousand five hundred eighty-one'); INSERT INTO t2 VALUES(14981, 10119, 'ten thousand one hundred nineteen'); INSERT INTO t2 VALUES(14982, 83578, 'eighty-three thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(14983, 59346, 'fifty-nine thousand three hundred forty-six'); INSERT INTO t2 VALUES(14984, 50595, 'fifty thousand five hundred ninety-five'); INSERT INTO t2 VALUES(14985, 61599, 'sixty-one thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(14986, 80737, 'eighty thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(14987, 3882, 'three thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(14988, 59778, 'fifty-nine thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(14989, 50978, 'fifty thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(14990, 10198, 'ten thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(14991, 17030, 'seventeen thousand thirty'); INSERT INTO t2 VALUES(14992, 74677, 'seventy-four thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(14993, 70154, 'seventy thousand one hundred fifty-four'); INSERT INTO t2 VALUES(14994, 34025, 'thirty-four thousand twenty-five'); INSERT INTO t2 VALUES(14995, 88399, 'eighty-eight thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(14996, 13547, 'thirteen thousand five hundred forty-seven'); INSERT INTO t2 VALUES(14997, 75524, 'seventy-five thousand five hundred twenty-four'); INSERT INTO t2 VALUES(14998, 54179, 'fifty-four thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(14999, 55756, 'fifty-five thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(15000, 43850, 'forty-three thousand eight hundred fifty'); INSERT INTO t2 VALUES(15001, 22374, 'twenty-two thousand three hundred seventy-four'); INSERT INTO t2 VALUES(15002, 46758, 'forty-six thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(15003, 7508, 'seven thousand five hundred eight'); INSERT INTO t2 VALUES(15004, 17290, 'seventeen thousand two hundred ninety'); INSERT INTO t2 VALUES(15005, 76910, 'seventy-six thousand nine hundred ten'); INSERT INTO t2 VALUES(15006, 50603, 'fifty thousand six hundred three'); INSERT INTO t2 VALUES(15007, 10383, 'ten thousand three hundred eighty-three'); INSERT INTO t2 VALUES(15008, 32156, 'thirty-two thousand one hundred fifty-six'); INSERT INTO t2 VALUES(15009, 68438, 'sixty-eight thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(15010, 27612, 'twenty-seven thousand six hundred twelve'); INSERT INTO t2 VALUES(15011, 39143, 'thirty-nine thousand one hundred forty-three'); INSERT INTO t2 VALUES(15012, 98547, 'ninety-eight thousand five hundred forty-seven'); INSERT INTO t2 VALUES(15013, 48307, 'forty-eight thousand three hundred seven'); INSERT INTO t2 VALUES(15014, 17969, 'seventeen thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(15015, 76793, 'seventy-six thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(15016, 93091, 'ninety-three thousand ninety-one'); INSERT INTO t2 VALUES(15017, 47612, 'forty-seven thousand six hundred twelve'); INSERT INTO t2 VALUES(15018, 63439, 'sixty-three thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(15019, 81077, 'eighty-one thousand seventy-seven'); INSERT INTO t2 VALUES(15020, 62653, 'sixty-two thousand six hundred fifty-three'); INSERT INTO t2 VALUES(15021, 69399, 'sixty-nine thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(15022, 12431, 'twelve thousand four hundred thirty-one'); INSERT INTO t2 VALUES(15023, 39932, 'thirty-nine thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(15024, 59592, 'fifty-nine thousand five hundred ninety-two'); INSERT INTO t2 VALUES(15025, 44789, 'forty-four thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(15026, 75520, 'seventy-five thousand five hundred twenty'); INSERT INTO t2 VALUES(15027, 48424, 'forty-eight thousand four hundred twenty-four'); INSERT INTO t2 VALUES(15028, 30984, 'thirty thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(15029, 89003, 'eighty-nine thousand three'); INSERT INTO t2 VALUES(15030, 77770, 'seventy-seven thousand seven hundred seventy'); INSERT INTO t2 VALUES(15031, 76647, 'seventy-six thousand six hundred forty-seven'); INSERT INTO t2 VALUES(15032, 82707, 'eighty-two thousand seven hundred seven'); INSERT INTO t2 VALUES(15033, 44158, 'forty-four thousand one hundred fifty-eight'); INSERT INTO t2 VALUES(15034, 74164, 'seventy-four thousand one hundred sixty-four'); INSERT INTO t2 VALUES(15035, 48329, 'forty-eight thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(15036, 40291, 'forty thousand two hundred ninety-one'); INSERT INTO t2 VALUES(15037, 19669, 'nineteen thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(15038, 77524, 'seventy-seven thousand five hundred twenty-four'); INSERT INTO t2 VALUES(15039, 62050, 'sixty-two thousand fifty'); INSERT INTO t2 VALUES(15040, 76706, 'seventy-six thousand seven hundred six'); INSERT INTO t2 VALUES(15041, 25442, 'twenty-five thousand four hundred forty-two'); INSERT INTO t2 VALUES(15042, 29584, 'twenty-nine thousand five hundred eighty-four'); INSERT INTO t2 VALUES(15043, 78280, 'seventy-eight thousand two hundred eighty'); INSERT INTO t2 VALUES(15044, 65004, 'sixty-five thousand four'); INSERT INTO t2 VALUES(15045, 27679, 'twenty-seven thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(15046, 13080, 'thirteen thousand eighty'); INSERT INTO t2 VALUES(15047, 54692, 'fifty-four thousand six hundred ninety-two'); INSERT INTO t2 VALUES(15048, 36284, 'thirty-six thousand two hundred eighty-four'); INSERT INTO t2 VALUES(15049, 57009, 'fifty-seven thousand nine'); INSERT INTO t2 VALUES(15050, 44112, 'forty-four thousand one hundred twelve'); INSERT INTO t2 VALUES(15051, 13598, 'thirteen thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(15052, 1432, 'one thousand four hundred thirty-two'); INSERT INTO t2 VALUES(15053, 16430, 'sixteen thousand four hundred thirty'); INSERT INTO t2 VALUES(15054, 25656, 'twenty-five thousand six hundred fifty-six'); INSERT INTO t2 VALUES(15055, 82356, 'eighty-two thousand three hundred fifty-six'); INSERT INTO t2 VALUES(15056, 18364, 'eighteen thousand three hundred sixty-four'); INSERT INTO t2 VALUES(15057, 19485, 'nineteen thousand four hundred eighty-five'); INSERT INTO t2 VALUES(15058, 21280, 'twenty-one thousand two hundred eighty'); INSERT INTO t2 VALUES(15059, 5880, 'five thousand eight hundred eighty'); INSERT INTO t2 VALUES(15060, 3051, 'three thousand fifty-one'); INSERT INTO t2 VALUES(15061, 91744, 'ninety-one thousand seven hundred forty-four'); INSERT INTO t2 VALUES(15062, 7056, 'seven thousand fifty-six'); INSERT INTO t2 VALUES(15063, 21495, 'twenty-one thousand four hundred ninety-five'); INSERT INTO t2 VALUES(15064, 18694, 'eighteen thousand six hundred ninety-four'); INSERT INTO t2 VALUES(15065, 54635, 'fifty-four thousand six hundred thirty-five'); INSERT INTO t2 VALUES(15066, 91735, 'ninety-one thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(15067, 65049, 'sixty-five thousand forty-nine'); INSERT INTO t2 VALUES(15068, 4716, 'four thousand seven hundred sixteen'); INSERT INTO t2 VALUES(15069, 90635, 'ninety thousand six hundred thirty-five'); INSERT INTO t2 VALUES(15070, 60723, 'sixty thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(15071, 99959, 'ninety-nine thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(15072, 27602, 'twenty-seven thousand six hundred two'); INSERT INTO t2 VALUES(15073, 38150, 'thirty-eight thousand one hundred fifty'); INSERT INTO t2 VALUES(15074, 27266, 'twenty-seven thousand two hundred sixty-six'); INSERT INTO t2 VALUES(15075, 5634, 'five thousand six hundred thirty-four'); INSERT INTO t2 VALUES(15076, 40735, 'forty thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(15077, 35728, 'thirty-five thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(15078, 88799, 'eighty-eight thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(15079, 76820, 'seventy-six thousand eight hundred twenty'); INSERT INTO t2 VALUES(15080, 22403, 'twenty-two thousand four hundred three'); INSERT INTO t2 VALUES(15081, 77299, 'seventy-seven thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(15082, 32372, 'thirty-two thousand three hundred seventy-two'); INSERT INTO t2 VALUES(15083, 32383, 'thirty-two thousand three hundred eighty-three'); INSERT INTO t2 VALUES(15084, 59041, 'fifty-nine thousand forty-one'); INSERT INTO t2 VALUES(15085, 44132, 'forty-four thousand one hundred thirty-two'); INSERT INTO t2 VALUES(15086, 5942, 'five thousand nine hundred forty-two'); INSERT INTO t2 VALUES(15087, 9132, 'nine thousand one hundred thirty-two'); INSERT INTO t2 VALUES(15088, 60139, 'sixty thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(15089, 60443, 'sixty thousand four hundred forty-three'); INSERT INTO t2 VALUES(15090, 82142, 'eighty-two thousand one hundred forty-two'); INSERT INTO t2 VALUES(15091, 42971, 'forty-two thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(15092, 79414, 'seventy-nine thousand four hundred fourteen'); INSERT INTO t2 VALUES(15093, 37209, 'thirty-seven thousand two hundred nine'); INSERT INTO t2 VALUES(15094, 98057, 'ninety-eight thousand fifty-seven'); INSERT INTO t2 VALUES(15095, 17434, 'seventeen thousand four hundred thirty-four'); INSERT INTO t2 VALUES(15096, 75387, 'seventy-five thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(15097, 35237, 'thirty-five thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(15098, 49659, 'forty-nine thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(15099, 86761, 'eighty-six thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(15100, 46207, 'forty-six thousand two hundred seven'); INSERT INTO t2 VALUES(15101, 39626, 'thirty-nine thousand six hundred twenty-six'); INSERT INTO t2 VALUES(15102, 87094, 'eighty-seven thousand ninety-four'); INSERT INTO t2 VALUES(15103, 98995, 'ninety-eight thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(15104, 32231, 'thirty-two thousand two hundred thirty-one'); INSERT INTO t2 VALUES(15105, 51801, 'fifty-one thousand eight hundred one'); INSERT INTO t2 VALUES(15106, 51335, 'fifty-one thousand three hundred thirty-five'); INSERT INTO t2 VALUES(15107, 56, 'fifty-six'); INSERT INTO t2 VALUES(15108, 52259, 'fifty-two thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(15109, 49545, 'forty-nine thousand five hundred forty-five'); INSERT INTO t2 VALUES(15110, 82724, 'eighty-two thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(15111, 16479, 'sixteen thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(15112, 84442, 'eighty-four thousand four hundred forty-two'); INSERT INTO t2 VALUES(15113, 95210, 'ninety-five thousand two hundred ten'); INSERT INTO t2 VALUES(15114, 3556, 'three thousand five hundred fifty-six'); INSERT INTO t2 VALUES(15115, 78560, 'seventy-eight thousand five hundred sixty'); INSERT INTO t2 VALUES(15116, 69718, 'sixty-nine thousand seven hundred eighteen'); INSERT INTO t2 VALUES(15117, 88444, 'eighty-eight thousand four hundred forty-four'); INSERT INTO t2 VALUES(15118, 43758, 'forty-three thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(15119, 56154, 'fifty-six thousand one hundred fifty-four'); INSERT INTO t2 VALUES(15120, 69000, 'sixty-nine thousand'); INSERT INTO t2 VALUES(15121, 75221, 'seventy-five thousand two hundred twenty-one'); INSERT INTO t2 VALUES(15122, 66822, 'sixty-six thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(15123, 66617, 'sixty-six thousand six hundred seventeen'); INSERT INTO t2 VALUES(15124, 68022, 'sixty-eight thousand twenty-two'); INSERT INTO t2 VALUES(15125, 85016, 'eighty-five thousand sixteen'); INSERT INTO t2 VALUES(15126, 45801, 'forty-five thousand eight hundred one'); INSERT INTO t2 VALUES(15127, 95672, 'ninety-five thousand six hundred seventy-two'); INSERT INTO t2 VALUES(15128, 96871, 'ninety-six thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(15129, 87468, 'eighty-seven thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(15130, 53152, 'fifty-three thousand one hundred fifty-two'); INSERT INTO t2 VALUES(15131, 95677, 'ninety-five thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(15132, 63568, 'sixty-three thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(15133, 87628, 'eighty-seven thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(15134, 13785, 'thirteen thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(15135, 15039, 'fifteen thousand thirty-nine'); INSERT INTO t2 VALUES(15136, 77330, 'seventy-seven thousand three hundred thirty'); INSERT INTO t2 VALUES(15137, 42267, 'forty-two thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(15138, 97874, 'ninety-seven thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(15139, 51193, 'fifty-one thousand one hundred ninety-three'); INSERT INTO t2 VALUES(15140, 73062, 'seventy-three thousand sixty-two'); INSERT INTO t2 VALUES(15141, 98436, 'ninety-eight thousand four hundred thirty-six'); INSERT INTO t2 VALUES(15142, 82620, 'eighty-two thousand six hundred twenty'); INSERT INTO t2 VALUES(15143, 36742, 'thirty-six thousand seven hundred forty-two'); INSERT INTO t2 VALUES(15144, 60906, 'sixty thousand nine hundred six'); INSERT INTO t2 VALUES(15145, 39809, 'thirty-nine thousand eight hundred nine'); INSERT INTO t2 VALUES(15146, 69883, 'sixty-nine thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(15147, 15032, 'fifteen thousand thirty-two'); INSERT INTO t2 VALUES(15148, 63924, 'sixty-three thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(15149, 13744, 'thirteen thousand seven hundred forty-four'); INSERT INTO t2 VALUES(15150, 949, 'nine hundred forty-nine'); INSERT INTO t2 VALUES(15151, 60203, 'sixty thousand two hundred three'); INSERT INTO t2 VALUES(15152, 91944, 'ninety-one thousand nine hundred forty-four'); INSERT INTO t2 VALUES(15153, 28432, 'twenty-eight thousand four hundred thirty-two'); INSERT INTO t2 VALUES(15154, 29038, 'twenty-nine thousand thirty-eight'); INSERT INTO t2 VALUES(15155, 66625, 'sixty-six thousand six hundred twenty-five'); INSERT INTO t2 VALUES(15156, 99063, 'ninety-nine thousand sixty-three'); INSERT INTO t2 VALUES(15157, 8946, 'eight thousand nine hundred forty-six'); INSERT INTO t2 VALUES(15158, 51651, 'fifty-one thousand six hundred fifty-one'); INSERT INTO t2 VALUES(15159, 34876, 'thirty-four thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(15160, 88950, 'eighty-eight thousand nine hundred fifty'); INSERT INTO t2 VALUES(15161, 90025, 'ninety thousand twenty-five'); INSERT INTO t2 VALUES(15162, 82170, 'eighty-two thousand one hundred seventy'); INSERT INTO t2 VALUES(15163, 19233, 'nineteen thousand two hundred thirty-three'); INSERT INTO t2 VALUES(15164, 2705, 'two thousand seven hundred five'); INSERT INTO t2 VALUES(15165, 47370, 'forty-seven thousand three hundred seventy'); INSERT INTO t2 VALUES(15166, 97939, 'ninety-seven thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(15167, 80568, 'eighty thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(15168, 53886, 'fifty-three thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(15169, 80045, 'eighty thousand forty-five'); INSERT INTO t2 VALUES(15170, 90212, 'ninety thousand two hundred twelve'); INSERT INTO t2 VALUES(15171, 91703, 'ninety-one thousand seven hundred three'); INSERT INTO t2 VALUES(15172, 43816, 'forty-three thousand eight hundred sixteen'); INSERT INTO t2 VALUES(15173, 16798, 'sixteen thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(15174, 35487, 'thirty-five thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(15175, 16395, 'sixteen thousand three hundred ninety-five'); INSERT INTO t2 VALUES(15176, 37818, 'thirty-seven thousand eight hundred eighteen'); INSERT INTO t2 VALUES(15177, 39963, 'thirty-nine thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(15178, 138, 'one hundred thirty-eight'); INSERT INTO t2 VALUES(15179, 8295, 'eight thousand two hundred ninety-five'); INSERT INTO t2 VALUES(15180, 54714, 'fifty-four thousand seven hundred fourteen'); INSERT INTO t2 VALUES(15181, 58020, 'fifty-eight thousand twenty'); INSERT INTO t2 VALUES(15182, 49458, 'forty-nine thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(15183, 9303, 'nine thousand three hundred three'); INSERT INTO t2 VALUES(15184, 4736, 'four thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(15185, 11424, 'eleven thousand four hundred twenty-four'); INSERT INTO t2 VALUES(15186, 93132, 'ninety-three thousand one hundred thirty-two'); INSERT INTO t2 VALUES(15187, 23626, 'twenty-three thousand six hundred twenty-six'); INSERT INTO t2 VALUES(15188, 10794, 'ten thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(15189, 6668, 'six thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(15190, 8121, 'eight thousand one hundred twenty-one'); INSERT INTO t2 VALUES(15191, 32573, 'thirty-two thousand five hundred seventy-three'); INSERT INTO t2 VALUES(15192, 34386, 'thirty-four thousand three hundred eighty-six'); INSERT INTO t2 VALUES(15193, 33288, 'thirty-three thousand two hundred eighty-eight'); INSERT INTO t2 VALUES(15194, 4142, 'four thousand one hundred forty-two'); INSERT INTO t2 VALUES(15195, 39571, 'thirty-nine thousand five hundred seventy-one'); INSERT INTO t2 VALUES(15196, 66014, 'sixty-six thousand fourteen'); INSERT INTO t2 VALUES(15197, 73969, 'seventy-three thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(15198, 69570, 'sixty-nine thousand five hundred seventy'); INSERT INTO t2 VALUES(15199, 39659, 'thirty-nine thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(15200, 21545, 'twenty-one thousand five hundred forty-five'); INSERT INTO t2 VALUES(15201, 88646, 'eighty-eight thousand six hundred forty-six'); INSERT INTO t2 VALUES(15202, 99188, 'ninety-nine thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(15203, 43045, 'forty-three thousand forty-five'); INSERT INTO t2 VALUES(15204, 94952, 'ninety-four thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(15205, 77797, 'seventy-seven thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(15206, 82065, 'eighty-two thousand sixty-five'); INSERT INTO t2 VALUES(15207, 97625, 'ninety-seven thousand six hundred twenty-five'); INSERT INTO t2 VALUES(15208, 59614, 'fifty-nine thousand six hundred fourteen'); INSERT INTO t2 VALUES(15209, 25885, 'twenty-five thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(15210, 71065, 'seventy-one thousand sixty-five'); INSERT INTO t2 VALUES(15211, 4361, 'four thousand three hundred sixty-one'); INSERT INTO t2 VALUES(15212, 18097, 'eighteen thousand ninety-seven'); INSERT INTO t2 VALUES(15213, 78333, 'seventy-eight thousand three hundred thirty-three'); INSERT INTO t2 VALUES(15214, 74844, 'seventy-four thousand eight hundred forty-four'); INSERT INTO t2 VALUES(15215, 93932, 'ninety-three thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(15216, 72185, 'seventy-two thousand one hundred eighty-five'); INSERT INTO t2 VALUES(15217, 62820, 'sixty-two thousand eight hundred twenty'); INSERT INTO t2 VALUES(15218, 6529, 'six thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(15219, 92800, 'ninety-two thousand eight hundred'); INSERT INTO t2 VALUES(15220, 47066, 'forty-seven thousand sixty-six'); INSERT INTO t2 VALUES(15221, 13814, 'thirteen thousand eight hundred fourteen'); INSERT INTO t2 VALUES(15222, 43089, 'forty-three thousand eighty-nine'); INSERT INTO t2 VALUES(15223, 22362, 'twenty-two thousand three hundred sixty-two'); INSERT INTO t2 VALUES(15224, 17489, 'seventeen thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(15225, 65027, 'sixty-five thousand twenty-seven'); INSERT INTO t2 VALUES(15226, 9565, 'nine thousand five hundred sixty-five'); INSERT INTO t2 VALUES(15227, 48508, 'forty-eight thousand five hundred eight'); INSERT INTO t2 VALUES(15228, 13113, 'thirteen thousand one hundred thirteen'); INSERT INTO t2 VALUES(15229, 73212, 'seventy-three thousand two hundred twelve'); INSERT INTO t2 VALUES(15230, 92011, 'ninety-two thousand eleven'); INSERT INTO t2 VALUES(15231, 16123, 'sixteen thousand one hundred twenty-three'); INSERT INTO t2 VALUES(15232, 20854, 'twenty thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(15233, 57608, 'fifty-seven thousand six hundred eight'); INSERT INTO t2 VALUES(15234, 55653, 'fifty-five thousand six hundred fifty-three'); INSERT INTO t2 VALUES(15235, 68135, 'sixty-eight thousand one hundred thirty-five'); INSERT INTO t2 VALUES(15236, 28956, 'twenty-eight thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(15237, 28837, 'twenty-eight thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(15238, 28260, 'twenty-eight thousand two hundred sixty'); INSERT INTO t2 VALUES(15239, 13693, 'thirteen thousand six hundred ninety-three'); INSERT INTO t2 VALUES(15240, 878, 'eight hundred seventy-eight'); INSERT INTO t2 VALUES(15241, 11061, 'eleven thousand sixty-one'); INSERT INTO t2 VALUES(15242, 72986, 'seventy-two thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(15243, 43988, 'forty-three thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(15244, 62841, 'sixty-two thousand eight hundred forty-one'); INSERT INTO t2 VALUES(15245, 841, 'eight hundred forty-one'); INSERT INTO t2 VALUES(15246, 98046, 'ninety-eight thousand forty-six'); INSERT INTO t2 VALUES(15247, 27528, 'twenty-seven thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(15248, 22751, 'twenty-two thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(15249, 61470, 'sixty-one thousand four hundred seventy'); INSERT INTO t2 VALUES(15250, 51588, 'fifty-one thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(15251, 4367, 'four thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(15252, 77357, 'seventy-seven thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(15253, 23607, 'twenty-three thousand six hundred seven'); INSERT INTO t2 VALUES(15254, 86336, 'eighty-six thousand three hundred thirty-six'); INSERT INTO t2 VALUES(15255, 26424, 'twenty-six thousand four hundred twenty-four'); INSERT INTO t2 VALUES(15256, 66565, 'sixty-six thousand five hundred sixty-five'); INSERT INTO t2 VALUES(15257, 54626, 'fifty-four thousand six hundred twenty-six'); INSERT INTO t2 VALUES(15258, 70193, 'seventy thousand one hundred ninety-three'); INSERT INTO t2 VALUES(15259, 61363, 'sixty-one thousand three hundred sixty-three'); INSERT INTO t2 VALUES(15260, 62408, 'sixty-two thousand four hundred eight'); INSERT INTO t2 VALUES(15261, 98196, 'ninety-eight thousand one hundred ninety-six'); INSERT INTO t2 VALUES(15262, 73709, 'seventy-three thousand seven hundred nine'); INSERT INTO t2 VALUES(15263, 77095, 'seventy-seven thousand ninety-five'); INSERT INTO t2 VALUES(15264, 68693, 'sixty-eight thousand six hundred ninety-three'); INSERT INTO t2 VALUES(15265, 18144, 'eighteen thousand one hundred forty-four'); INSERT INTO t2 VALUES(15266, 35983, 'thirty-five thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(15267, 25990, 'twenty-five thousand nine hundred ninety'); INSERT INTO t2 VALUES(15268, 57263, 'fifty-seven thousand two hundred sixty-three'); INSERT INTO t2 VALUES(15269, 10204, 'ten thousand two hundred four'); INSERT INTO t2 VALUES(15270, 18355, 'eighteen thousand three hundred fifty-five'); INSERT INTO t2 VALUES(15271, 23545, 'twenty-three thousand five hundred forty-five'); INSERT INTO t2 VALUES(15272, 94662, 'ninety-four thousand six hundred sixty-two'); INSERT INTO t2 VALUES(15273, 71068, 'seventy-one thousand sixty-eight'); INSERT INTO t2 VALUES(15274, 38716, 'thirty-eight thousand seven hundred sixteen'); INSERT INTO t2 VALUES(15275, 61144, 'sixty-one thousand one hundred forty-four'); INSERT INTO t2 VALUES(15276, 56982, 'fifty-six thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(15277, 79055, 'seventy-nine thousand fifty-five'); INSERT INTO t2 VALUES(15278, 11257, 'eleven thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(15279, 48219, 'forty-eight thousand two hundred nineteen'); INSERT INTO t2 VALUES(15280, 25441, 'twenty-five thousand four hundred forty-one'); INSERT INTO t2 VALUES(15281, 27190, 'twenty-seven thousand one hundred ninety'); INSERT INTO t2 VALUES(15282, 77629, 'seventy-seven thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(15283, 17797, 'seventeen thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(15284, 29156, 'twenty-nine thousand one hundred fifty-six'); INSERT INTO t2 VALUES(15285, 88189, 'eighty-eight thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(15286, 38575, 'thirty-eight thousand five hundred seventy-five'); INSERT INTO t2 VALUES(15287, 92783, 'ninety-two thousand seven hundred eighty-three'); INSERT INTO t2 VALUES(15288, 5750, 'five thousand seven hundred fifty'); INSERT INTO t2 VALUES(15289, 22181, 'twenty-two thousand one hundred eighty-one'); INSERT INTO t2 VALUES(15290, 75427, 'seventy-five thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(15291, 9216, 'nine thousand two hundred sixteen'); INSERT INTO t2 VALUES(15292, 75943, 'seventy-five thousand nine hundred forty-three'); INSERT INTO t2 VALUES(15293, 3790, 'three thousand seven hundred ninety'); INSERT INTO t2 VALUES(15294, 63545, 'sixty-three thousand five hundred forty-five'); INSERT INTO t2 VALUES(15295, 74078, 'seventy-four thousand seventy-eight'); INSERT INTO t2 VALUES(15296, 47475, 'forty-seven thousand four hundred seventy-five'); INSERT INTO t2 VALUES(15297, 12016, 'twelve thousand sixteen'); INSERT INTO t2 VALUES(15298, 17015, 'seventeen thousand fifteen'); INSERT INTO t2 VALUES(15299, 99357, 'ninety-nine thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(15300, 43847, 'forty-three thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(15301, 96848, 'ninety-six thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(15302, 10492, 'ten thousand four hundred ninety-two'); INSERT INTO t2 VALUES(15303, 37781, 'thirty-seven thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(15304, 4824, 'four thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(15305, 66562, 'sixty-six thousand five hundred sixty-two'); INSERT INTO t2 VALUES(15306, 4622, 'four thousand six hundred twenty-two'); INSERT INTO t2 VALUES(15307, 79546, 'seventy-nine thousand five hundred forty-six'); INSERT INTO t2 VALUES(15308, 90717, 'ninety thousand seven hundred seventeen'); INSERT INTO t2 VALUES(15309, 36082, 'thirty-six thousand eighty-two'); INSERT INTO t2 VALUES(15310, 18416, 'eighteen thousand four hundred sixteen'); INSERT INTO t2 VALUES(15311, 8373, 'eight thousand three hundred seventy-three'); INSERT INTO t2 VALUES(15312, 38161, 'thirty-eight thousand one hundred sixty-one'); INSERT INTO t2 VALUES(15313, 67157, 'sixty-seven thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(15314, 1751, 'one thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(15315, 30673, 'thirty thousand six hundred seventy-three'); INSERT INTO t2 VALUES(15316, 43865, 'forty-three thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(15317, 73724, 'seventy-three thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(15318, 22982, 'twenty-two thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(15319, 82190, 'eighty-two thousand one hundred ninety'); INSERT INTO t2 VALUES(15320, 42632, 'forty-two thousand six hundred thirty-two'); INSERT INTO t2 VALUES(15321, 31231, 'thirty-one thousand two hundred thirty-one'); INSERT INTO t2 VALUES(15322, 19622, 'nineteen thousand six hundred twenty-two'); INSERT INTO t2 VALUES(15323, 27495, 'twenty-seven thousand four hundred ninety-five'); INSERT INTO t2 VALUES(15324, 5385, 'five thousand three hundred eighty-five'); INSERT INTO t2 VALUES(15325, 94076, 'ninety-four thousand seventy-six'); INSERT INTO t2 VALUES(15326, 44504, 'forty-four thousand five hundred four'); INSERT INTO t2 VALUES(15327, 96536, 'ninety-six thousand five hundred thirty-six'); INSERT INTO t2 VALUES(15328, 42248, 'forty-two thousand two hundred forty-eight'); INSERT INTO t2 VALUES(15329, 29206, 'twenty-nine thousand two hundred six'); INSERT INTO t2 VALUES(15330, 75455, 'seventy-five thousand four hundred fifty-five'); INSERT INTO t2 VALUES(15331, 87854, 'eighty-seven thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(15332, 90815, 'ninety thousand eight hundred fifteen'); INSERT INTO t2 VALUES(15333, 94246, 'ninety-four thousand two hundred forty-six'); INSERT INTO t2 VALUES(15334, 76187, 'seventy-six thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(15335, 28407, 'twenty-eight thousand four hundred seven'); INSERT INTO t2 VALUES(15336, 44191, 'forty-four thousand one hundred ninety-one'); INSERT INTO t2 VALUES(15337, 3637, 'three thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(15338, 46981, 'forty-six thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(15339, 73004, 'seventy-three thousand four'); INSERT INTO t2 VALUES(15340, 7098, 'seven thousand ninety-eight'); INSERT INTO t2 VALUES(15341, 147, 'one hundred forty-seven'); INSERT INTO t2 VALUES(15342, 90561, 'ninety thousand five hundred sixty-one'); INSERT INTO t2 VALUES(15343, 20089, 'twenty thousand eighty-nine'); INSERT INTO t2 VALUES(15344, 37149, 'thirty-seven thousand one hundred forty-nine'); INSERT INTO t2 VALUES(15345, 7301, 'seven thousand three hundred one'); INSERT INTO t2 VALUES(15346, 59134, 'fifty-nine thousand one hundred thirty-four'); INSERT INTO t2 VALUES(15347, 65023, 'sixty-five thousand twenty-three'); INSERT INTO t2 VALUES(15348, 90823, 'ninety thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(15349, 54893, 'fifty-four thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(15350, 58271, 'fifty-eight thousand two hundred seventy-one'); INSERT INTO t2 VALUES(15351, 92604, 'ninety-two thousand six hundred four'); INSERT INTO t2 VALUES(15352, 50255, 'fifty thousand two hundred fifty-five'); INSERT INTO t2 VALUES(15353, 84628, 'eighty-four thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(15354, 65434, 'sixty-five thousand four hundred thirty-four'); INSERT INTO t2 VALUES(15355, 17633, 'seventeen thousand six hundred thirty-three'); INSERT INTO t2 VALUES(15356, 92894, 'ninety-two thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(15357, 48623, 'forty-eight thousand six hundred twenty-three'); INSERT INTO t2 VALUES(15358, 87876, 'eighty-seven thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(15359, 62902, 'sixty-two thousand nine hundred two'); INSERT INTO t2 VALUES(15360, 43327, 'forty-three thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(15361, 67439, 'sixty-seven thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(15362, 12642, 'twelve thousand six hundred forty-two'); INSERT INTO t2 VALUES(15363, 24981, 'twenty-four thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(15364, 28583, 'twenty-eight thousand five hundred eighty-three'); INSERT INTO t2 VALUES(15365, 60299, 'sixty thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(15366, 89200, 'eighty-nine thousand two hundred'); INSERT INTO t2 VALUES(15367, 8050, 'eight thousand fifty'); INSERT INTO t2 VALUES(15368, 11423, 'eleven thousand four hundred twenty-three'); INSERT INTO t2 VALUES(15369, 62777, 'sixty-two thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(15370, 89835, 'eighty-nine thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(15371, 25405, 'twenty-five thousand four hundred five'); INSERT INTO t2 VALUES(15372, 30195, 'thirty thousand one hundred ninety-five'); INSERT INTO t2 VALUES(15373, 50933, 'fifty thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(15374, 39237, 'thirty-nine thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(15375, 11106, 'eleven thousand one hundred six'); INSERT INTO t2 VALUES(15376, 97238, 'ninety-seven thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(15377, 34956, 'thirty-four thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(15378, 83366, 'eighty-three thousand three hundred sixty-six'); INSERT INTO t2 VALUES(15379, 34877, 'thirty-four thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(15380, 87942, 'eighty-seven thousand nine hundred forty-two'); INSERT INTO t2 VALUES(15381, 22663, 'twenty-two thousand six hundred sixty-three'); INSERT INTO t2 VALUES(15382, 25887, 'twenty-five thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(15383, 30447, 'thirty thousand four hundred forty-seven'); INSERT INTO t2 VALUES(15384, 19410, 'nineteen thousand four hundred ten'); INSERT INTO t2 VALUES(15385, 59787, 'fifty-nine thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(15386, 77755, 'seventy-seven thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(15387, 67147, 'sixty-seven thousand one hundred forty-seven'); INSERT INTO t2 VALUES(15388, 69423, 'sixty-nine thousand four hundred twenty-three'); INSERT INTO t2 VALUES(15389, 43649, 'forty-three thousand six hundred forty-nine'); INSERT INTO t2 VALUES(15390, 74525, 'seventy-four thousand five hundred twenty-five'); INSERT INTO t2 VALUES(15391, 20720, 'twenty thousand seven hundred twenty'); INSERT INTO t2 VALUES(15392, 24305, 'twenty-four thousand three hundred five'); INSERT INTO t2 VALUES(15393, 92612, 'ninety-two thousand six hundred twelve'); INSERT INTO t2 VALUES(15394, 10940, 'ten thousand nine hundred forty'); INSERT INTO t2 VALUES(15395, 18822, 'eighteen thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(15396, 18216, 'eighteen thousand two hundred sixteen'); INSERT INTO t2 VALUES(15397, 20286, 'twenty thousand two hundred eighty-six'); INSERT INTO t2 VALUES(15398, 89727, 'eighty-nine thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(15399, 48711, 'forty-eight thousand seven hundred eleven'); INSERT INTO t2 VALUES(15400, 96866, 'ninety-six thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(15401, 52295, 'fifty-two thousand two hundred ninety-five'); INSERT INTO t2 VALUES(15402, 55393, 'fifty-five thousand three hundred ninety-three'); INSERT INTO t2 VALUES(15403, 65285, 'sixty-five thousand two hundred eighty-five'); INSERT INTO t2 VALUES(15404, 70250, 'seventy thousand two hundred fifty'); INSERT INTO t2 VALUES(15405, 93421, 'ninety-three thousand four hundred twenty-one'); INSERT INTO t2 VALUES(15406, 73473, 'seventy-three thousand four hundred seventy-three'); INSERT INTO t2 VALUES(15407, 99667, 'ninety-nine thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(15408, 31507, 'thirty-one thousand five hundred seven'); INSERT INTO t2 VALUES(15409, 93969, 'ninety-three thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(15410, 24546, 'twenty-four thousand five hundred forty-six'); INSERT INTO t2 VALUES(15411, 50689, 'fifty thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(15412, 95878, 'ninety-five thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(15413, 40319, 'forty thousand three hundred nineteen'); INSERT INTO t2 VALUES(15414, 42772, 'forty-two thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(15415, 22352, 'twenty-two thousand three hundred fifty-two'); INSERT INTO t2 VALUES(15416, 11198, 'eleven thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(15417, 98627, 'ninety-eight thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(15418, 54516, 'fifty-four thousand five hundred sixteen'); INSERT INTO t2 VALUES(15419, 46274, 'forty-six thousand two hundred seventy-four'); INSERT INTO t2 VALUES(15420, 43755, 'forty-three thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(15421, 50050, 'fifty thousand fifty'); INSERT INTO t2 VALUES(15422, 11996, 'eleven thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(15423, 99752, 'ninety-nine thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(15424, 1868, 'one thousand eight hundred sixty-eight'); INSERT INTO t2 VALUES(15425, 55366, 'fifty-five thousand three hundred sixty-six'); INSERT INTO t2 VALUES(15426, 29855, 'twenty-nine thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(15427, 72464, 'seventy-two thousand four hundred sixty-four'); INSERT INTO t2 VALUES(15428, 60158, 'sixty thousand one hundred fifty-eight'); INSERT INTO t2 VALUES(15429, 39867, 'thirty-nine thousand eight hundred sixty-seven'); INSERT INTO t2 VALUES(15430, 92860, 'ninety-two thousand eight hundred sixty'); INSERT INTO t2 VALUES(15431, 61580, 'sixty-one thousand five hundred eighty'); INSERT INTO t2 VALUES(15432, 6212, 'six thousand two hundred twelve'); INSERT INTO t2 VALUES(15433, 82828, 'eighty-two thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(15434, 62919, 'sixty-two thousand nine hundred nineteen'); INSERT INTO t2 VALUES(15435, 15465, 'fifteen thousand four hundred sixty-five'); INSERT INTO t2 VALUES(15436, 93209, 'ninety-three thousand two hundred nine'); INSERT INTO t2 VALUES(15437, 53891, 'fifty-three thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(15438, 67834, 'sixty-seven thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(15439, 82459, 'eighty-two thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(15440, 42603, 'forty-two thousand six hundred three'); INSERT INTO t2 VALUES(15441, 90595, 'ninety thousand five hundred ninety-five'); INSERT INTO t2 VALUES(15442, 93731, 'ninety-three thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(15443, 96385, 'ninety-six thousand three hundred eighty-five'); INSERT INTO t2 VALUES(15444, 93702, 'ninety-three thousand seven hundred two'); INSERT INTO t2 VALUES(15445, 47292, 'forty-seven thousand two hundred ninety-two'); INSERT INTO t2 VALUES(15446, 84439, 'eighty-four thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(15447, 52088, 'fifty-two thousand eighty-eight'); INSERT INTO t2 VALUES(15448, 63151, 'sixty-three thousand one hundred fifty-one'); INSERT INTO t2 VALUES(15449, 34454, 'thirty-four thousand four hundred fifty-four'); INSERT INTO t2 VALUES(15450, 50805, 'fifty thousand eight hundred five'); INSERT INTO t2 VALUES(15451, 57924, 'fifty-seven thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(15452, 54111, 'fifty-four thousand one hundred eleven'); INSERT INTO t2 VALUES(15453, 59615, 'fifty-nine thousand six hundred fifteen'); INSERT INTO t2 VALUES(15454, 67802, 'sixty-seven thousand eight hundred two'); INSERT INTO t2 VALUES(15455, 47508, 'forty-seven thousand five hundred eight'); INSERT INTO t2 VALUES(15456, 59560, 'fifty-nine thousand five hundred sixty'); INSERT INTO t2 VALUES(15457, 63565, 'sixty-three thousand five hundred sixty-five'); INSERT INTO t2 VALUES(15458, 77048, 'seventy-seven thousand forty-eight'); INSERT INTO t2 VALUES(15459, 51269, 'fifty-one thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(15460, 83568, 'eighty-three thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(15461, 68846, 'sixty-eight thousand eight hundred forty-six'); INSERT INTO t2 VALUES(15462, 67516, 'sixty-seven thousand five hundred sixteen'); INSERT INTO t2 VALUES(15463, 19922, 'nineteen thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(15464, 52611, 'fifty-two thousand six hundred eleven'); INSERT INTO t2 VALUES(15465, 24338, 'twenty-four thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(15466, 64661, 'sixty-four thousand six hundred sixty-one'); INSERT INTO t2 VALUES(15467, 95295, 'ninety-five thousand two hundred ninety-five'); INSERT INTO t2 VALUES(15468, 3510, 'three thousand five hundred ten'); INSERT INTO t2 VALUES(15469, 60057, 'sixty thousand fifty-seven'); INSERT INTO t2 VALUES(15470, 39376, 'thirty-nine thousand three hundred seventy-six'); INSERT INTO t2 VALUES(15471, 72066, 'seventy-two thousand sixty-six'); INSERT INTO t2 VALUES(15472, 24803, 'twenty-four thousand eight hundred three'); INSERT INTO t2 VALUES(15473, 37056, 'thirty-seven thousand fifty-six'); INSERT INTO t2 VALUES(15474, 51195, 'fifty-one thousand one hundred ninety-five'); INSERT INTO t2 VALUES(15475, 98889, 'ninety-eight thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(15476, 75488, 'seventy-five thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(15477, 42469, 'forty-two thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(15478, 49150, 'forty-nine thousand one hundred fifty'); INSERT INTO t2 VALUES(15479, 85066, 'eighty-five thousand sixty-six'); INSERT INTO t2 VALUES(15480, 54015, 'fifty-four thousand fifteen'); INSERT INTO t2 VALUES(15481, 81555, 'eighty-one thousand five hundred fifty-five'); INSERT INTO t2 VALUES(15482, 97357, 'ninety-seven thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(15483, 66744, 'sixty-six thousand seven hundred forty-four'); INSERT INTO t2 VALUES(15484, 32806, 'thirty-two thousand eight hundred six'); INSERT INTO t2 VALUES(15485, 11632, 'eleven thousand six hundred thirty-two'); INSERT INTO t2 VALUES(15486, 96839, 'ninety-six thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(15487, 88098, 'eighty-eight thousand ninety-eight'); INSERT INTO t2 VALUES(15488, 60489, 'sixty thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(15489, 22812, 'twenty-two thousand eight hundred twelve'); INSERT INTO t2 VALUES(15490, 52056, 'fifty-two thousand fifty-six'); INSERT INTO t2 VALUES(15491, 15199, 'fifteen thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(15492, 45295, 'forty-five thousand two hundred ninety-five'); INSERT INTO t2 VALUES(15493, 18710, 'eighteen thousand seven hundred ten'); INSERT INTO t2 VALUES(15494, 1270, 'one thousand two hundred seventy'); INSERT INTO t2 VALUES(15495, 31235, 'thirty-one thousand two hundred thirty-five'); INSERT INTO t2 VALUES(15496, 31310, 'thirty-one thousand three hundred ten'); INSERT INTO t2 VALUES(15497, 69567, 'sixty-nine thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(15498, 7552, 'seven thousand five hundred fifty-two'); INSERT INTO t2 VALUES(15499, 81760, 'eighty-one thousand seven hundred sixty'); INSERT INTO t2 VALUES(15500, 24472, 'twenty-four thousand four hundred seventy-two'); INSERT INTO t2 VALUES(15501, 12944, 'twelve thousand nine hundred forty-four'); INSERT INTO t2 VALUES(15502, 15917, 'fifteen thousand nine hundred seventeen'); INSERT INTO t2 VALUES(15503, 59459, 'fifty-nine thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(15504, 81424, 'eighty-one thousand four hundred twenty-four'); INSERT INTO t2 VALUES(15505, 77348, 'seventy-seven thousand three hundred forty-eight'); INSERT INTO t2 VALUES(15506, 99429, 'ninety-nine thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(15507, 25494, 'twenty-five thousand four hundred ninety-four'); INSERT INTO t2 VALUES(15508, 65411, 'sixty-five thousand four hundred eleven'); INSERT INTO t2 VALUES(15509, 93643, 'ninety-three thousand six hundred forty-three'); INSERT INTO t2 VALUES(15510, 29963, 'twenty-nine thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(15511, 83596, 'eighty-three thousand five hundred ninety-six'); INSERT INTO t2 VALUES(15512, 64819, 'sixty-four thousand eight hundred nineteen'); INSERT INTO t2 VALUES(15513, 68713, 'sixty-eight thousand seven hundred thirteen'); INSERT INTO t2 VALUES(15514, 37885, 'thirty-seven thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(15515, 41922, 'forty-one thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(15516, 15729, 'fifteen thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(15517, 77893, 'seventy-seven thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(15518, 46203, 'forty-six thousand two hundred three'); INSERT INTO t2 VALUES(15519, 46226, 'forty-six thousand two hundred twenty-six'); INSERT INTO t2 VALUES(15520, 97826, 'ninety-seven thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(15521, 26589, 'twenty-six thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(15522, 83990, 'eighty-three thousand nine hundred ninety'); INSERT INTO t2 VALUES(15523, 72646, 'seventy-two thousand six hundred forty-six'); INSERT INTO t2 VALUES(15524, 2105, 'two thousand one hundred five'); INSERT INTO t2 VALUES(15525, 22161, 'twenty-two thousand one hundred sixty-one'); INSERT INTO t2 VALUES(15526, 84899, 'eighty-four thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(15527, 2102, 'two thousand one hundred two'); INSERT INTO t2 VALUES(15528, 36255, 'thirty-six thousand two hundred fifty-five'); INSERT INTO t2 VALUES(15529, 25618, 'twenty-five thousand six hundred eighteen'); INSERT INTO t2 VALUES(15530, 14837, 'fourteen thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(15531, 87808, 'eighty-seven thousand eight hundred eight'); INSERT INTO t2 VALUES(15532, 98142, 'ninety-eight thousand one hundred forty-two'); INSERT INTO t2 VALUES(15533, 36292, 'thirty-six thousand two hundred ninety-two'); INSERT INTO t2 VALUES(15534, 3279, 'three thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(15535, 78626, 'seventy-eight thousand six hundred twenty-six'); INSERT INTO t2 VALUES(15536, 26768, 'twenty-six thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(15537, 80691, 'eighty thousand six hundred ninety-one'); INSERT INTO t2 VALUES(15538, 50597, 'fifty thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(15539, 90986, 'ninety thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(15540, 52652, 'fifty-two thousand six hundred fifty-two'); INSERT INTO t2 VALUES(15541, 52101, 'fifty-two thousand one hundred one'); INSERT INTO t2 VALUES(15542, 41309, 'forty-one thousand three hundred nine'); INSERT INTO t2 VALUES(15543, 68436, 'sixty-eight thousand four hundred thirty-six'); INSERT INTO t2 VALUES(15544, 61824, 'sixty-one thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(15545, 21345, 'twenty-one thousand three hundred forty-five'); INSERT INTO t2 VALUES(15546, 17744, 'seventeen thousand seven hundred forty-four'); INSERT INTO t2 VALUES(15547, 16263, 'sixteen thousand two hundred sixty-three'); INSERT INTO t2 VALUES(15548, 94070, 'ninety-four thousand seventy'); INSERT INTO t2 VALUES(15549, 48117, 'forty-eight thousand one hundred seventeen'); INSERT INTO t2 VALUES(15550, 59852, 'fifty-nine thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(15551, 90850, 'ninety thousand eight hundred fifty'); INSERT INTO t2 VALUES(15552, 60815, 'sixty thousand eight hundred fifteen'); INSERT INTO t2 VALUES(15553, 51835, 'fifty-one thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(15554, 55658, 'fifty-five thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(15555, 98621, 'ninety-eight thousand six hundred twenty-one'); INSERT INTO t2 VALUES(15556, 55698, 'fifty-five thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(15557, 37635, 'thirty-seven thousand six hundred thirty-five'); INSERT INTO t2 VALUES(15558, 64378, 'sixty-four thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(15559, 89291, 'eighty-nine thousand two hundred ninety-one'); INSERT INTO t2 VALUES(15560, 88040, 'eighty-eight thousand forty'); INSERT INTO t2 VALUES(15561, 76340, 'seventy-six thousand three hundred forty'); INSERT INTO t2 VALUES(15562, 47161, 'forty-seven thousand one hundred sixty-one'); INSERT INTO t2 VALUES(15563, 28387, 'twenty-eight thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(15564, 29715, 'twenty-nine thousand seven hundred fifteen'); INSERT INTO t2 VALUES(15565, 14403, 'fourteen thousand four hundred three'); INSERT INTO t2 VALUES(15566, 9579, 'nine thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(15567, 4936, 'four thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(15568, 31298, 'thirty-one thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(15569, 1756, 'one thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(15570, 92144, 'ninety-two thousand one hundred forty-four'); INSERT INTO t2 VALUES(15571, 44931, 'forty-four thousand nine hundred thirty-one'); INSERT INTO t2 VALUES(15572, 16544, 'sixteen thousand five hundred forty-four'); INSERT INTO t2 VALUES(15573, 79428, 'seventy-nine thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(15574, 11404, 'eleven thousand four hundred four'); INSERT INTO t2 VALUES(15575, 31449, 'thirty-one thousand four hundred forty-nine'); INSERT INTO t2 VALUES(15576, 4270, 'four thousand two hundred seventy'); INSERT INTO t2 VALUES(15577, 45029, 'forty-five thousand twenty-nine'); INSERT INTO t2 VALUES(15578, 39026, 'thirty-nine thousand twenty-six'); INSERT INTO t2 VALUES(15579, 4605, 'four thousand six hundred five'); INSERT INTO t2 VALUES(15580, 5860, 'five thousand eight hundred sixty'); INSERT INTO t2 VALUES(15581, 64363, 'sixty-four thousand three hundred sixty-three'); INSERT INTO t2 VALUES(15582, 58297, 'fifty-eight thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(15583, 33459, 'thirty-three thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(15584, 59193, 'fifty-nine thousand one hundred ninety-three'); INSERT INTO t2 VALUES(15585, 81536, 'eighty-one thousand five hundred thirty-six'); INSERT INTO t2 VALUES(15586, 76947, 'seventy-six thousand nine hundred forty-seven'); INSERT INTO t2 VALUES(15587, 44471, 'forty-four thousand four hundred seventy-one'); INSERT INTO t2 VALUES(15588, 69851, 'sixty-nine thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(15589, 45895, 'forty-five thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(15590, 92759, 'ninety-two thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(15591, 40856, 'forty thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(15592, 11506, 'eleven thousand five hundred six'); INSERT INTO t2 VALUES(15593, 5862, 'five thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(15594, 70418, 'seventy thousand four hundred eighteen'); INSERT INTO t2 VALUES(15595, 29836, 'twenty-nine thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(15596, 5514, 'five thousand five hundred fourteen'); INSERT INTO t2 VALUES(15597, 57932, 'fifty-seven thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(15598, 84976, 'eighty-four thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(15599, 68439, 'sixty-eight thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(15600, 99490, 'ninety-nine thousand four hundred ninety'); INSERT INTO t2 VALUES(15601, 94135, 'ninety-four thousand one hundred thirty-five'); INSERT INTO t2 VALUES(15602, 30823, 'thirty thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(15603, 27451, 'twenty-seven thousand four hundred fifty-one'); INSERT INTO t2 VALUES(15604, 71974, 'seventy-one thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(15605, 34816, 'thirty-four thousand eight hundred sixteen'); INSERT INTO t2 VALUES(15606, 57497, 'fifty-seven thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(15607, 43596, 'forty-three thousand five hundred ninety-six'); INSERT INTO t2 VALUES(15608, 17797, 'seventeen thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(15609, 87723, 'eighty-seven thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(15610, 44052, 'forty-four thousand fifty-two'); INSERT INTO t2 VALUES(15611, 71816, 'seventy-one thousand eight hundred sixteen'); INSERT INTO t2 VALUES(15612, 63176, 'sixty-three thousand one hundred seventy-six'); INSERT INTO t2 VALUES(15613, 61880, 'sixty-one thousand eight hundred eighty'); INSERT INTO t2 VALUES(15614, 11725, 'eleven thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(15615, 18665, 'eighteen thousand six hundred sixty-five'); INSERT INTO t2 VALUES(15616, 18215, 'eighteen thousand two hundred fifteen'); INSERT INTO t2 VALUES(15617, 76647, 'seventy-six thousand six hundred forty-seven'); INSERT INTO t2 VALUES(15618, 94777, 'ninety-four thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(15619, 12571, 'twelve thousand five hundred seventy-one'); INSERT INTO t2 VALUES(15620, 17450, 'seventeen thousand four hundred fifty'); INSERT INTO t2 VALUES(15621, 69675, 'sixty-nine thousand six hundred seventy-five'); INSERT INTO t2 VALUES(15622, 3555, 'three thousand five hundred fifty-five'); INSERT INTO t2 VALUES(15623, 63435, 'sixty-three thousand four hundred thirty-five'); INSERT INTO t2 VALUES(15624, 64818, 'sixty-four thousand eight hundred eighteen'); INSERT INTO t2 VALUES(15625, 11605, 'eleven thousand six hundred five'); INSERT INTO t2 VALUES(15626, 7872, 'seven thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(15627, 61547, 'sixty-one thousand five hundred forty-seven'); INSERT INTO t2 VALUES(15628, 43116, 'forty-three thousand one hundred sixteen'); INSERT INTO t2 VALUES(15629, 48788, 'forty-eight thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(15630, 79748, 'seventy-nine thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(15631, 53201, 'fifty-three thousand two hundred one'); INSERT INTO t2 VALUES(15632, 39735, 'thirty-nine thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(15633, 62759, 'sixty-two thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(15634, 42749, 'forty-two thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(15635, 35018, 'thirty-five thousand eighteen'); INSERT INTO t2 VALUES(15636, 68053, 'sixty-eight thousand fifty-three'); INSERT INTO t2 VALUES(15637, 9848, 'nine thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(15638, 86110, 'eighty-six thousand one hundred ten'); INSERT INTO t2 VALUES(15639, 17467, 'seventeen thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(15640, 79544, 'seventy-nine thousand five hundred forty-four'); INSERT INTO t2 VALUES(15641, 25175, 'twenty-five thousand one hundred seventy-five'); INSERT INTO t2 VALUES(15642, 85717, 'eighty-five thousand seven hundred seventeen'); INSERT INTO t2 VALUES(15643, 48374, 'forty-eight thousand three hundred seventy-four'); INSERT INTO t2 VALUES(15644, 38063, 'thirty-eight thousand sixty-three'); INSERT INTO t2 VALUES(15645, 19210, 'nineteen thousand two hundred ten'); INSERT INTO t2 VALUES(15646, 96865, 'ninety-six thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(15647, 29209, 'twenty-nine thousand two hundred nine'); INSERT INTO t2 VALUES(15648, 81531, 'eighty-one thousand five hundred thirty-one'); INSERT INTO t2 VALUES(15649, 32174, 'thirty-two thousand one hundred seventy-four'); INSERT INTO t2 VALUES(15650, 4973, 'four thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(15651, 49262, 'forty-nine thousand two hundred sixty-two'); INSERT INTO t2 VALUES(15652, 95542, 'ninety-five thousand five hundred forty-two'); INSERT INTO t2 VALUES(15653, 88219, 'eighty-eight thousand two hundred nineteen'); INSERT INTO t2 VALUES(15654, 16996, 'sixteen thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(15655, 63924, 'sixty-three thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(15656, 69687, 'sixty-nine thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(15657, 20597, 'twenty thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(15658, 31839, 'thirty-one thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(15659, 11766, 'eleven thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(15660, 91155, 'ninety-one thousand one hundred fifty-five'); INSERT INTO t2 VALUES(15661, 4188, 'four thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(15662, 66933, 'sixty-six thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(15663, 72850, 'seventy-two thousand eight hundred fifty'); INSERT INTO t2 VALUES(15664, 80618, 'eighty thousand six hundred eighteen'); INSERT INTO t2 VALUES(15665, 21622, 'twenty-one thousand six hundred twenty-two'); INSERT INTO t2 VALUES(15666, 37043, 'thirty-seven thousand forty-three'); INSERT INTO t2 VALUES(15667, 12766, 'twelve thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(15668, 43165, 'forty-three thousand one hundred sixty-five'); INSERT INTO t2 VALUES(15669, 85152, 'eighty-five thousand one hundred fifty-two'); INSERT INTO t2 VALUES(15670, 36120, 'thirty-six thousand one hundred twenty'); INSERT INTO t2 VALUES(15671, 65436, 'sixty-five thousand four hundred thirty-six'); INSERT INTO t2 VALUES(15672, 19332, 'nineteen thousand three hundred thirty-two'); INSERT INTO t2 VALUES(15673, 49216, 'forty-nine thousand two hundred sixteen'); INSERT INTO t2 VALUES(15674, 61322, 'sixty-one thousand three hundred twenty-two'); INSERT INTO t2 VALUES(15675, 41147, 'forty-one thousand one hundred forty-seven'); INSERT INTO t2 VALUES(15676, 63864, 'sixty-three thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(15677, 19328, 'nineteen thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(15678, 92877, 'ninety-two thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(15679, 42696, 'forty-two thousand six hundred ninety-six'); INSERT INTO t2 VALUES(15680, 89108, 'eighty-nine thousand one hundred eight'); INSERT INTO t2 VALUES(15681, 22031, 'twenty-two thousand thirty-one'); INSERT INTO t2 VALUES(15682, 39057, 'thirty-nine thousand fifty-seven'); INSERT INTO t2 VALUES(15683, 58551, 'fifty-eight thousand five hundred fifty-one'); INSERT INTO t2 VALUES(15684, 44747, 'forty-four thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(15685, 32329, 'thirty-two thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(15686, 52888, 'fifty-two thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(15687, 16704, 'sixteen thousand seven hundred four'); INSERT INTO t2 VALUES(15688, 41197, 'forty-one thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(15689, 46288, 'forty-six thousand two hundred eighty-eight'); INSERT INTO t2 VALUES(15690, 72820, 'seventy-two thousand eight hundred twenty'); INSERT INTO t2 VALUES(15691, 24914, 'twenty-four thousand nine hundred fourteen'); INSERT INTO t2 VALUES(15692, 40832, 'forty thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(15693, 65655, 'sixty-five thousand six hundred fifty-five'); INSERT INTO t2 VALUES(15694, 45081, 'forty-five thousand eighty-one'); INSERT INTO t2 VALUES(15695, 27034, 'twenty-seven thousand thirty-four'); INSERT INTO t2 VALUES(15696, 34997, 'thirty-four thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(15697, 37604, 'thirty-seven thousand six hundred four'); INSERT INTO t2 VALUES(15698, 91329, 'ninety-one thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(15699, 81517, 'eighty-one thousand five hundred seventeen'); INSERT INTO t2 VALUES(15700, 55791, 'fifty-five thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(15701, 43675, 'forty-three thousand six hundred seventy-five'); INSERT INTO t2 VALUES(15702, 97901, 'ninety-seven thousand nine hundred one'); INSERT INTO t2 VALUES(15703, 21633, 'twenty-one thousand six hundred thirty-three'); INSERT INTO t2 VALUES(15704, 53911, 'fifty-three thousand nine hundred eleven'); INSERT INTO t2 VALUES(15705, 32666, 'thirty-two thousand six hundred sixty-six'); INSERT INTO t2 VALUES(15706, 66059, 'sixty-six thousand fifty-nine'); INSERT INTO t2 VALUES(15707, 93468, 'ninety-three thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(15708, 69825, 'sixty-nine thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(15709, 59698, 'fifty-nine thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(15710, 26718, 'twenty-six thousand seven hundred eighteen'); INSERT INTO t2 VALUES(15711, 43706, 'forty-three thousand seven hundred six'); INSERT INTO t2 VALUES(15712, 94219, 'ninety-four thousand two hundred nineteen'); INSERT INTO t2 VALUES(15713, 13486, 'thirteen thousand four hundred eighty-six'); INSERT INTO t2 VALUES(15714, 67202, 'sixty-seven thousand two hundred two'); INSERT INTO t2 VALUES(15715, 74060, 'seventy-four thousand sixty'); INSERT INTO t2 VALUES(15716, 77731, 'seventy-seven thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(15717, 77732, 'seventy-seven thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(15718, 28718, 'twenty-eight thousand seven hundred eighteen'); INSERT INTO t2 VALUES(15719, 96642, 'ninety-six thousand six hundred forty-two'); INSERT INTO t2 VALUES(15720, 54665, 'fifty-four thousand six hundred sixty-five'); INSERT INTO t2 VALUES(15721, 64256, 'sixty-four thousand two hundred fifty-six'); INSERT INTO t2 VALUES(15722, 52600, 'fifty-two thousand six hundred'); INSERT INTO t2 VALUES(15723, 98974, 'ninety-eight thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(15724, 69925, 'sixty-nine thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(15725, 42561, 'forty-two thousand five hundred sixty-one'); INSERT INTO t2 VALUES(15726, 91144, 'ninety-one thousand one hundred forty-four'); INSERT INTO t2 VALUES(15727, 65572, 'sixty-five thousand five hundred seventy-two'); INSERT INTO t2 VALUES(15728, 31857, 'thirty-one thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(15729, 99414, 'ninety-nine thousand four hundred fourteen'); INSERT INTO t2 VALUES(15730, 92586, 'ninety-two thousand five hundred eighty-six'); INSERT INTO t2 VALUES(15731, 4229, 'four thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(15732, 92992, 'ninety-two thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(15733, 25972, 'twenty-five thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(15734, 59536, 'fifty-nine thousand five hundred thirty-six'); INSERT INTO t2 VALUES(15735, 29525, 'twenty-nine thousand five hundred twenty-five'); INSERT INTO t2 VALUES(15736, 58306, 'fifty-eight thousand three hundred six'); INSERT INTO t2 VALUES(15737, 38178, 'thirty-eight thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(15738, 24258, 'twenty-four thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(15739, 4210, 'four thousand two hundred ten'); INSERT INTO t2 VALUES(15740, 37326, 'thirty-seven thousand three hundred twenty-six'); INSERT INTO t2 VALUES(15741, 48560, 'forty-eight thousand five hundred sixty'); INSERT INTO t2 VALUES(15742, 40522, 'forty thousand five hundred twenty-two'); INSERT INTO t2 VALUES(15743, 87111, 'eighty-seven thousand one hundred eleven'); INSERT INTO t2 VALUES(15744, 93856, 'ninety-three thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(15745, 40944, 'forty thousand nine hundred forty-four'); INSERT INTO t2 VALUES(15746, 34745, 'thirty-four thousand seven hundred forty-five'); INSERT INTO t2 VALUES(15747, 91884, 'ninety-one thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(15748, 33277, 'thirty-three thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(15749, 98638, 'ninety-eight thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(15750, 35790, 'thirty-five thousand seven hundred ninety'); INSERT INTO t2 VALUES(15751, 25847, 'twenty-five thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(15752, 74394, 'seventy-four thousand three hundred ninety-four'); INSERT INTO t2 VALUES(15753, 75598, 'seventy-five thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(15754, 93823, 'ninety-three thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(15755, 43607, 'forty-three thousand six hundred seven'); INSERT INTO t2 VALUES(15756, 1996, 'one thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(15757, 43585, 'forty-three thousand five hundred eighty-five'); INSERT INTO t2 VALUES(15758, 25498, 'twenty-five thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(15759, 6693, 'six thousand six hundred ninety-three'); INSERT INTO t2 VALUES(15760, 5413, 'five thousand four hundred thirteen'); INSERT INTO t2 VALUES(15761, 98080, 'ninety-eight thousand eighty'); INSERT INTO t2 VALUES(15762, 90212, 'ninety thousand two hundred twelve'); INSERT INTO t2 VALUES(15763, 80334, 'eighty thousand three hundred thirty-four'); INSERT INTO t2 VALUES(15764, 66086, 'sixty-six thousand eighty-six'); INSERT INTO t2 VALUES(15765, 25179, 'twenty-five thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(15766, 17907, 'seventeen thousand nine hundred seven'); INSERT INTO t2 VALUES(15767, 12495, 'twelve thousand four hundred ninety-five'); INSERT INTO t2 VALUES(15768, 65610, 'sixty-five thousand six hundred ten'); INSERT INTO t2 VALUES(15769, 21380, 'twenty-one thousand three hundred eighty'); INSERT INTO t2 VALUES(15770, 58684, 'fifty-eight thousand six hundred eighty-four'); INSERT INTO t2 VALUES(15771, 11175, 'eleven thousand one hundred seventy-five'); INSERT INTO t2 VALUES(15772, 23235, 'twenty-three thousand two hundred thirty-five'); INSERT INTO t2 VALUES(15773, 75318, 'seventy-five thousand three hundred eighteen'); INSERT INTO t2 VALUES(15774, 72185, 'seventy-two thousand one hundred eighty-five'); INSERT INTO t2 VALUES(15775, 72689, 'seventy-two thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(15776, 92985, 'ninety-two thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(15777, 59223, 'fifty-nine thousand two hundred twenty-three'); INSERT INTO t2 VALUES(15778, 4445, 'four thousand four hundred forty-five'); INSERT INTO t2 VALUES(15779, 83347, 'eighty-three thousand three hundred forty-seven'); INSERT INTO t2 VALUES(15780, 84382, 'eighty-four thousand three hundred eighty-two'); INSERT INTO t2 VALUES(15781, 40426, 'forty thousand four hundred twenty-six'); INSERT INTO t2 VALUES(15782, 26994, 'twenty-six thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(15783, 2096, 'two thousand ninety-six'); INSERT INTO t2 VALUES(15784, 53119, 'fifty-three thousand one hundred nineteen'); INSERT INTO t2 VALUES(15785, 83994, 'eighty-three thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(15786, 98841, 'ninety-eight thousand eight hundred forty-one'); INSERT INTO t2 VALUES(15787, 33638, 'thirty-three thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(15788, 50104, 'fifty thousand one hundred four'); INSERT INTO t2 VALUES(15789, 4557, 'four thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(15790, 71155, 'seventy-one thousand one hundred fifty-five'); INSERT INTO t2 VALUES(15791, 39118, 'thirty-nine thousand one hundred eighteen'); INSERT INTO t2 VALUES(15792, 92201, 'ninety-two thousand two hundred one'); INSERT INTO t2 VALUES(15793, 93141, 'ninety-three thousand one hundred forty-one'); INSERT INTO t2 VALUES(15794, 43521, 'forty-three thousand five hundred twenty-one'); INSERT INTO t2 VALUES(15795, 67315, 'sixty-seven thousand three hundred fifteen'); INSERT INTO t2 VALUES(15796, 78521, 'seventy-eight thousand five hundred twenty-one'); INSERT INTO t2 VALUES(15797, 24113, 'twenty-four thousand one hundred thirteen'); INSERT INTO t2 VALUES(15798, 68189, 'sixty-eight thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(15799, 61865, 'sixty-one thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(15800, 46165, 'forty-six thousand one hundred sixty-five'); INSERT INTO t2 VALUES(15801, 14418, 'fourteen thousand four hundred eighteen'); INSERT INTO t2 VALUES(15802, 61208, 'sixty-one thousand two hundred eight'); INSERT INTO t2 VALUES(15803, 99043, 'ninety-nine thousand forty-three'); INSERT INTO t2 VALUES(15804, 20662, 'twenty thousand six hundred sixty-two'); INSERT INTO t2 VALUES(15805, 21396, 'twenty-one thousand three hundred ninety-six'); INSERT INTO t2 VALUES(15806, 56437, 'fifty-six thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(15807, 43992, 'forty-three thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(15808, 84982, 'eighty-four thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(15809, 62228, 'sixty-two thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(15810, 68314, 'sixty-eight thousand three hundred fourteen'); INSERT INTO t2 VALUES(15811, 9211, 'nine thousand two hundred eleven'); INSERT INTO t2 VALUES(15812, 34369, 'thirty-four thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(15813, 38328, 'thirty-eight thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(15814, 42354, 'forty-two thousand three hundred fifty-four'); INSERT INTO t2 VALUES(15815, 95668, 'ninety-five thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(15816, 17301, 'seventeen thousand three hundred one'); INSERT INTO t2 VALUES(15817, 99826, 'ninety-nine thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(15818, 91260, 'ninety-one thousand two hundred sixty'); INSERT INTO t2 VALUES(15819, 16815, 'sixteen thousand eight hundred fifteen'); INSERT INTO t2 VALUES(15820, 49040, 'forty-nine thousand forty'); INSERT INTO t2 VALUES(15821, 17261, 'seventeen thousand two hundred sixty-one'); INSERT INTO t2 VALUES(15822, 10944, 'ten thousand nine hundred forty-four'); INSERT INTO t2 VALUES(15823, 96146, 'ninety-six thousand one hundred forty-six'); INSERT INTO t2 VALUES(15824, 80399, 'eighty thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(15825, 15139, 'fifteen thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(15826, 97864, 'ninety-seven thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(15827, 70054, 'seventy thousand fifty-four'); INSERT INTO t2 VALUES(15828, 79807, 'seventy-nine thousand eight hundred seven'); INSERT INTO t2 VALUES(15829, 40204, 'forty thousand two hundred four'); INSERT INTO t2 VALUES(15830, 50679, 'fifty thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(15831, 52273, 'fifty-two thousand two hundred seventy-three'); INSERT INTO t2 VALUES(15832, 68219, 'sixty-eight thousand two hundred nineteen'); INSERT INTO t2 VALUES(15833, 78023, 'seventy-eight thousand twenty-three'); INSERT INTO t2 VALUES(15834, 43634, 'forty-three thousand six hundred thirty-four'); INSERT INTO t2 VALUES(15835, 5211, 'five thousand two hundred eleven'); INSERT INTO t2 VALUES(15836, 39783, 'thirty-nine thousand seven hundred eighty-three'); INSERT INTO t2 VALUES(15837, 2122, 'two thousand one hundred twenty-two'); INSERT INTO t2 VALUES(15838, 83333, 'eighty-three thousand three hundred thirty-three'); INSERT INTO t2 VALUES(15839, 603, 'six hundred three'); INSERT INTO t2 VALUES(15840, 17301, 'seventeen thousand three hundred one'); INSERT INTO t2 VALUES(15841, 51333, 'fifty-one thousand three hundred thirty-three'); INSERT INTO t2 VALUES(15842, 96097, 'ninety-six thousand ninety-seven'); INSERT INTO t2 VALUES(15843, 98866, 'ninety-eight thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(15844, 53335, 'fifty-three thousand three hundred thirty-five'); INSERT INTO t2 VALUES(15845, 96912, 'ninety-six thousand nine hundred twelve'); INSERT INTO t2 VALUES(15846, 64573, 'sixty-four thousand five hundred seventy-three'); INSERT INTO t2 VALUES(15847, 46755, 'forty-six thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(15848, 798, 'seven hundred ninety-eight'); INSERT INTO t2 VALUES(15849, 64921, 'sixty-four thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(15850, 33689, 'thirty-three thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(15851, 39179, 'thirty-nine thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(15852, 82318, 'eighty-two thousand three hundred eighteen'); INSERT INTO t2 VALUES(15853, 3840, 'three thousand eight hundred forty'); INSERT INTO t2 VALUES(15854, 55927, 'fifty-five thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(15855, 9776, 'nine thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(15856, 65450, 'sixty-five thousand four hundred fifty'); INSERT INTO t2 VALUES(15857, 61984, 'sixty-one thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(15858, 60152, 'sixty thousand one hundred fifty-two'); INSERT INTO t2 VALUES(15859, 66670, 'sixty-six thousand six hundred seventy'); INSERT INTO t2 VALUES(15860, 49118, 'forty-nine thousand one hundred eighteen'); INSERT INTO t2 VALUES(15861, 78227, 'seventy-eight thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(15862, 744, 'seven hundred forty-four'); INSERT INTO t2 VALUES(15863, 11166, 'eleven thousand one hundred sixty-six'); INSERT INTO t2 VALUES(15864, 47097, 'forty-seven thousand ninety-seven'); INSERT INTO t2 VALUES(15865, 57886, 'fifty-seven thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(15866, 87623, 'eighty-seven thousand six hundred twenty-three'); INSERT INTO t2 VALUES(15867, 97491, 'ninety-seven thousand four hundred ninety-one'); INSERT INTO t2 VALUES(15868, 30058, 'thirty thousand fifty-eight'); INSERT INTO t2 VALUES(15869, 1551, 'one thousand five hundred fifty-one'); INSERT INTO t2 VALUES(15870, 31301, 'thirty-one thousand three hundred one'); INSERT INTO t2 VALUES(15871, 84567, 'eighty-four thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(15872, 77068, 'seventy-seven thousand sixty-eight'); INSERT INTO t2 VALUES(15873, 76172, 'seventy-six thousand one hundred seventy-two'); INSERT INTO t2 VALUES(15874, 36069, 'thirty-six thousand sixty-nine'); INSERT INTO t2 VALUES(15875, 93185, 'ninety-three thousand one hundred eighty-five'); INSERT INTO t2 VALUES(15876, 69686, 'sixty-nine thousand six hundred eighty-six'); INSERT INTO t2 VALUES(15877, 99235, 'ninety-nine thousand two hundred thirty-five'); INSERT INTO t2 VALUES(15878, 83211, 'eighty-three thousand two hundred eleven'); INSERT INTO t2 VALUES(15879, 76908, 'seventy-six thousand nine hundred eight'); INSERT INTO t2 VALUES(15880, 36042, 'thirty-six thousand forty-two'); INSERT INTO t2 VALUES(15881, 8421, 'eight thousand four hundred twenty-one'); INSERT INTO t2 VALUES(15882, 7780, 'seven thousand seven hundred eighty'); INSERT INTO t2 VALUES(15883, 77417, 'seventy-seven thousand four hundred seventeen'); INSERT INTO t2 VALUES(15884, 90133, 'ninety thousand one hundred thirty-three'); INSERT INTO t2 VALUES(15885, 78079, 'seventy-eight thousand seventy-nine'); INSERT INTO t2 VALUES(15886, 54830, 'fifty-four thousand eight hundred thirty'); INSERT INTO t2 VALUES(15887, 24977, 'twenty-four thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(15888, 70974, 'seventy thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(15889, 77095, 'seventy-seven thousand ninety-five'); INSERT INTO t2 VALUES(15890, 51306, 'fifty-one thousand three hundred six'); INSERT INTO t2 VALUES(15891, 58044, 'fifty-eight thousand forty-four'); INSERT INTO t2 VALUES(15892, 88308, 'eighty-eight thousand three hundred eight'); INSERT INTO t2 VALUES(15893, 1551, 'one thousand five hundred fifty-one'); INSERT INTO t2 VALUES(15894, 29311, 'twenty-nine thousand three hundred eleven'); INSERT INTO t2 VALUES(15895, 79399, 'seventy-nine thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(15896, 62728, 'sixty-two thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(15897, 27716, 'twenty-seven thousand seven hundred sixteen'); INSERT INTO t2 VALUES(15898, 91020, 'ninety-one thousand twenty'); INSERT INTO t2 VALUES(15899, 22067, 'twenty-two thousand sixty-seven'); INSERT INTO t2 VALUES(15900, 29936, 'twenty-nine thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(15901, 81032, 'eighty-one thousand thirty-two'); INSERT INTO t2 VALUES(15902, 73073, 'seventy-three thousand seventy-three'); INSERT INTO t2 VALUES(15903, 17993, 'seventeen thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(15904, 70475, 'seventy thousand four hundred seventy-five'); INSERT INTO t2 VALUES(15905, 91139, 'ninety-one thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(15906, 93044, 'ninety-three thousand forty-four'); INSERT INTO t2 VALUES(15907, 56672, 'fifty-six thousand six hundred seventy-two'); INSERT INTO t2 VALUES(15908, 8574, 'eight thousand five hundred seventy-four'); INSERT INTO t2 VALUES(15909, 99775, 'ninety-nine thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(15910, 98409, 'ninety-eight thousand four hundred nine'); INSERT INTO t2 VALUES(15911, 52874, 'fifty-two thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(15912, 60677, 'sixty thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(15913, 74511, 'seventy-four thousand five hundred eleven'); INSERT INTO t2 VALUES(15914, 38728, 'thirty-eight thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(15915, 5302, 'five thousand three hundred two'); INSERT INTO t2 VALUES(15916, 50159, 'fifty thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(15917, 12641, 'twelve thousand six hundred forty-one'); INSERT INTO t2 VALUES(15918, 68110, 'sixty-eight thousand one hundred ten'); INSERT INTO t2 VALUES(15919, 89350, 'eighty-nine thousand three hundred fifty'); INSERT INTO t2 VALUES(15920, 70579, 'seventy thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(15921, 17149, 'seventeen thousand one hundred forty-nine'); INSERT INTO t2 VALUES(15922, 57276, 'fifty-seven thousand two hundred seventy-six'); INSERT INTO t2 VALUES(15923, 9657, 'nine thousand six hundred fifty-seven'); INSERT INTO t2 VALUES(15924, 51466, 'fifty-one thousand four hundred sixty-six'); INSERT INTO t2 VALUES(15925, 36532, 'thirty-six thousand five hundred thirty-two'); INSERT INTO t2 VALUES(15926, 60852, 'sixty thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(15927, 76838, 'seventy-six thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(15928, 48278, 'forty-eight thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(15929, 44557, 'forty-four thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(15930, 93247, 'ninety-three thousand two hundred forty-seven'); INSERT INTO t2 VALUES(15931, 25113, 'twenty-five thousand one hundred thirteen'); INSERT INTO t2 VALUES(15932, 27324, 'twenty-seven thousand three hundred twenty-four'); INSERT INTO t2 VALUES(15933, 67270, 'sixty-seven thousand two hundred seventy'); INSERT INTO t2 VALUES(15934, 86752, 'eighty-six thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(15935, 86862, 'eighty-six thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(15936, 69694, 'sixty-nine thousand six hundred ninety-four'); INSERT INTO t2 VALUES(15937, 16990, 'sixteen thousand nine hundred ninety'); INSERT INTO t2 VALUES(15938, 37531, 'thirty-seven thousand five hundred thirty-one'); INSERT INTO t2 VALUES(15939, 37787, 'thirty-seven thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(15940, 52082, 'fifty-two thousand eighty-two'); INSERT INTO t2 VALUES(15941, 4136, 'four thousand one hundred thirty-six'); INSERT INTO t2 VALUES(15942, 97125, 'ninety-seven thousand one hundred twenty-five'); INSERT INTO t2 VALUES(15943, 39025, 'thirty-nine thousand twenty-five'); INSERT INTO t2 VALUES(15944, 43628, 'forty-three thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(15945, 24790, 'twenty-four thousand seven hundred ninety'); INSERT INTO t2 VALUES(15946, 90849, 'ninety thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(15947, 28804, 'twenty-eight thousand eight hundred four'); INSERT INTO t2 VALUES(15948, 26308, 'twenty-six thousand three hundred eight'); INSERT INTO t2 VALUES(15949, 97680, 'ninety-seven thousand six hundred eighty'); INSERT INTO t2 VALUES(15950, 97444, 'ninety-seven thousand four hundred forty-four'); INSERT INTO t2 VALUES(15951, 3829, 'three thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(15952, 69996, 'sixty-nine thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(15953, 93038, 'ninety-three thousand thirty-eight'); INSERT INTO t2 VALUES(15954, 97206, 'ninety-seven thousand two hundred six'); INSERT INTO t2 VALUES(15955, 52615, 'fifty-two thousand six hundred fifteen'); INSERT INTO t2 VALUES(15956, 34883, 'thirty-four thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(15957, 26101, 'twenty-six thousand one hundred one'); INSERT INTO t2 VALUES(15958, 73641, 'seventy-three thousand six hundred forty-one'); INSERT INTO t2 VALUES(15959, 41882, 'forty-one thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(15960, 45415, 'forty-five thousand four hundred fifteen'); INSERT INTO t2 VALUES(15961, 22395, 'twenty-two thousand three hundred ninety-five'); INSERT INTO t2 VALUES(15962, 8821, 'eight thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(15963, 55844, 'fifty-five thousand eight hundred forty-four'); INSERT INTO t2 VALUES(15964, 46763, 'forty-six thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(15965, 78945, 'seventy-eight thousand nine hundred forty-five'); INSERT INTO t2 VALUES(15966, 55236, 'fifty-five thousand two hundred thirty-six'); INSERT INTO t2 VALUES(15967, 61422, 'sixty-one thousand four hundred twenty-two'); INSERT INTO t2 VALUES(15968, 76060, 'seventy-six thousand sixty'); INSERT INTO t2 VALUES(15969, 30024, 'thirty thousand twenty-four'); INSERT INTO t2 VALUES(15970, 54977, 'fifty-four thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(15971, 39697, 'thirty-nine thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(15972, 4943, 'four thousand nine hundred forty-three'); INSERT INTO t2 VALUES(15973, 75830, 'seventy-five thousand eight hundred thirty'); INSERT INTO t2 VALUES(15974, 75024, 'seventy-five thousand twenty-four'); INSERT INTO t2 VALUES(15975, 57935, 'fifty-seven thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(15976, 54814, 'fifty-four thousand eight hundred fourteen'); INSERT INTO t2 VALUES(15977, 99572, 'ninety-nine thousand five hundred seventy-two'); INSERT INTO t2 VALUES(15978, 40185, 'forty thousand one hundred eighty-five'); INSERT INTO t2 VALUES(15979, 9988, 'nine thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(15980, 51925, 'fifty-one thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(15981, 37191, 'thirty-seven thousand one hundred ninety-one'); INSERT INTO t2 VALUES(15982, 91240, 'ninety-one thousand two hundred forty'); INSERT INTO t2 VALUES(15983, 83574, 'eighty-three thousand five hundred seventy-four'); INSERT INTO t2 VALUES(15984, 46447, 'forty-six thousand four hundred forty-seven'); INSERT INTO t2 VALUES(15985, 84079, 'eighty-four thousand seventy-nine'); INSERT INTO t2 VALUES(15986, 68993, 'sixty-eight thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(15987, 50877, 'fifty thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(15988, 46667, 'forty-six thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(15989, 58255, 'fifty-eight thousand two hundred fifty-five'); INSERT INTO t2 VALUES(15990, 5215, 'five thousand two hundred fifteen'); INSERT INTO t2 VALUES(15991, 2736, 'two thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(15992, 45885, 'forty-five thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(15993, 52343, 'fifty-two thousand three hundred forty-three'); INSERT INTO t2 VALUES(15994, 1900, 'one thousand nine hundred'); INSERT INTO t2 VALUES(15995, 52932, 'fifty-two thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(15996, 48382, 'forty-eight thousand three hundred eighty-two'); INSERT INTO t2 VALUES(15997, 55256, 'fifty-five thousand two hundred fifty-six'); INSERT INTO t2 VALUES(15998, 73536, 'seventy-three thousand five hundred thirty-six'); INSERT INTO t2 VALUES(15999, 62821, 'sixty-two thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(16000, 71480, 'seventy-one thousand four hundred eighty'); INSERT INTO t2 VALUES(16001, 92908, 'ninety-two thousand nine hundred eight'); INSERT INTO t2 VALUES(16002, 40281, 'forty thousand two hundred eighty-one'); INSERT INTO t2 VALUES(16003, 60055, 'sixty thousand fifty-five'); INSERT INTO t2 VALUES(16004, 59310, 'fifty-nine thousand three hundred ten'); INSERT INTO t2 VALUES(16005, 98080, 'ninety-eight thousand eighty'); INSERT INTO t2 VALUES(16006, 63368, 'sixty-three thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(16007, 89021, 'eighty-nine thousand twenty-one'); INSERT INTO t2 VALUES(16008, 59499, 'fifty-nine thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(16009, 22050, 'twenty-two thousand fifty'); INSERT INTO t2 VALUES(16010, 60758, 'sixty thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(16011, 98253, 'ninety-eight thousand two hundred fifty-three'); INSERT INTO t2 VALUES(16012, 175, 'one hundred seventy-five'); INSERT INTO t2 VALUES(16013, 2030, 'two thousand thirty'); INSERT INTO t2 VALUES(16014, 80948, 'eighty thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(16015, 36059, 'thirty-six thousand fifty-nine'); INSERT INTO t2 VALUES(16016, 52071, 'fifty-two thousand seventy-one'); INSERT INTO t2 VALUES(16017, 83705, 'eighty-three thousand seven hundred five'); INSERT INTO t2 VALUES(16018, 60985, 'sixty thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(16019, 61632, 'sixty-one thousand six hundred thirty-two'); INSERT INTO t2 VALUES(16020, 34740, 'thirty-four thousand seven hundred forty'); INSERT INTO t2 VALUES(16021, 19212, 'nineteen thousand two hundred twelve'); INSERT INTO t2 VALUES(16022, 12860, 'twelve thousand eight hundred sixty'); INSERT INTO t2 VALUES(16023, 99628, 'ninety-nine thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(16024, 62177, 'sixty-two thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(16025, 85818, 'eighty-five thousand eight hundred eighteen'); INSERT INTO t2 VALUES(16026, 17621, 'seventeen thousand six hundred twenty-one'); INSERT INTO t2 VALUES(16027, 452, 'four hundred fifty-two'); INSERT INTO t2 VALUES(16028, 61336, 'sixty-one thousand three hundred thirty-six'); INSERT INTO t2 VALUES(16029, 17500, 'seventeen thousand five hundred'); INSERT INTO t2 VALUES(16030, 22747, 'twenty-two thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(16031, 18211, 'eighteen thousand two hundred eleven'); INSERT INTO t2 VALUES(16032, 93359, 'ninety-three thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(16033, 49357, 'forty-nine thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(16034, 64020, 'sixty-four thousand twenty'); INSERT INTO t2 VALUES(16035, 12282, 'twelve thousand two hundred eighty-two'); INSERT INTO t2 VALUES(16036, 44106, 'forty-four thousand one hundred six'); INSERT INTO t2 VALUES(16037, 85472, 'eighty-five thousand four hundred seventy-two'); INSERT INTO t2 VALUES(16038, 43586, 'forty-three thousand five hundred eighty-six'); INSERT INTO t2 VALUES(16039, 50717, 'fifty thousand seven hundred seventeen'); INSERT INTO t2 VALUES(16040, 21904, 'twenty-one thousand nine hundred four'); INSERT INTO t2 VALUES(16041, 19973, 'nineteen thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(16042, 32010, 'thirty-two thousand ten'); INSERT INTO t2 VALUES(16043, 7681, 'seven thousand six hundred eighty-one'); INSERT INTO t2 VALUES(16044, 43907, 'forty-three thousand nine hundred seven'); INSERT INTO t2 VALUES(16045, 92559, 'ninety-two thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(16046, 74737, 'seventy-four thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(16047, 41361, 'forty-one thousand three hundred sixty-one'); INSERT INTO t2 VALUES(16048, 63652, 'sixty-three thousand six hundred fifty-two'); INSERT INTO t2 VALUES(16049, 95499, 'ninety-five thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(16050, 11250, 'eleven thousand two hundred fifty'); INSERT INTO t2 VALUES(16051, 29555, 'twenty-nine thousand five hundred fifty-five'); INSERT INTO t2 VALUES(16052, 50887, 'fifty thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(16053, 75120, 'seventy-five thousand one hundred twenty'); INSERT INTO t2 VALUES(16054, 70541, 'seventy thousand five hundred forty-one'); INSERT INTO t2 VALUES(16055, 16164, 'sixteen thousand one hundred sixty-four'); INSERT INTO t2 VALUES(16056, 77795, 'seventy-seven thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(16057, 94479, 'ninety-four thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(16058, 71824, 'seventy-one thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(16059, 82936, 'eighty-two thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(16060, 540, 'five hundred forty'); INSERT INTO t2 VALUES(16061, 87563, 'eighty-seven thousand five hundred sixty-three'); INSERT INTO t2 VALUES(16062, 56827, 'fifty-six thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(16063, 17633, 'seventeen thousand six hundred thirty-three'); INSERT INTO t2 VALUES(16064, 39580, 'thirty-nine thousand five hundred eighty'); INSERT INTO t2 VALUES(16065, 44379, 'forty-four thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(16066, 42202, 'forty-two thousand two hundred two'); INSERT INTO t2 VALUES(16067, 489, 'four hundred eighty-nine'); INSERT INTO t2 VALUES(16068, 21410, 'twenty-one thousand four hundred ten'); INSERT INTO t2 VALUES(16069, 24792, 'twenty-four thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(16070, 64478, 'sixty-four thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(16071, 16835, 'sixteen thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(16072, 98735, 'ninety-eight thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(16073, 4138, 'four thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(16074, 16230, 'sixteen thousand two hundred thirty'); INSERT INTO t2 VALUES(16075, 46317, 'forty-six thousand three hundred seventeen'); INSERT INTO t2 VALUES(16076, 20244, 'twenty thousand two hundred forty-four'); INSERT INTO t2 VALUES(16077, 76262, 'seventy-six thousand two hundred sixty-two'); INSERT INTO t2 VALUES(16078, 61887, 'sixty-one thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(16079, 38336, 'thirty-eight thousand three hundred thirty-six'); INSERT INTO t2 VALUES(16080, 60960, 'sixty thousand nine hundred sixty'); INSERT INTO t2 VALUES(16081, 57789, 'fifty-seven thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(16082, 99854, 'ninety-nine thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(16083, 52051, 'fifty-two thousand fifty-one'); INSERT INTO t2 VALUES(16084, 53572, 'fifty-three thousand five hundred seventy-two'); INSERT INTO t2 VALUES(16085, 7476, 'seven thousand four hundred seventy-six'); INSERT INTO t2 VALUES(16086, 78317, 'seventy-eight thousand three hundred seventeen'); INSERT INTO t2 VALUES(16087, 91767, 'ninety-one thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(16088, 67706, 'sixty-seven thousand seven hundred six'); INSERT INTO t2 VALUES(16089, 92031, 'ninety-two thousand thirty-one'); INSERT INTO t2 VALUES(16090, 69508, 'sixty-nine thousand five hundred eight'); INSERT INTO t2 VALUES(16091, 26314, 'twenty-six thousand three hundred fourteen'); INSERT INTO t2 VALUES(16092, 58858, 'fifty-eight thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(16093, 13599, 'thirteen thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(16094, 18515, 'eighteen thousand five hundred fifteen'); INSERT INTO t2 VALUES(16095, 73374, 'seventy-three thousand three hundred seventy-four'); INSERT INTO t2 VALUES(16096, 49281, 'forty-nine thousand two hundred eighty-one'); INSERT INTO t2 VALUES(16097, 77458, 'seventy-seven thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(16098, 61112, 'sixty-one thousand one hundred twelve'); INSERT INTO t2 VALUES(16099, 71786, 'seventy-one thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(16100, 29715, 'twenty-nine thousand seven hundred fifteen'); INSERT INTO t2 VALUES(16101, 43700, 'forty-three thousand seven hundred'); INSERT INTO t2 VALUES(16102, 37603, 'thirty-seven thousand six hundred three'); INSERT INTO t2 VALUES(16103, 59207, 'fifty-nine thousand two hundred seven'); INSERT INTO t2 VALUES(16104, 16234, 'sixteen thousand two hundred thirty-four'); INSERT INTO t2 VALUES(16105, 69260, 'sixty-nine thousand two hundred sixty'); INSERT INTO t2 VALUES(16106, 85665, 'eighty-five thousand six hundred sixty-five'); INSERT INTO t2 VALUES(16107, 22662, 'twenty-two thousand six hundred sixty-two'); INSERT INTO t2 VALUES(16108, 56317, 'fifty-six thousand three hundred seventeen'); INSERT INTO t2 VALUES(16109, 94136, 'ninety-four thousand one hundred thirty-six'); INSERT INTO t2 VALUES(16110, 89060, 'eighty-nine thousand sixty'); INSERT INTO t2 VALUES(16111, 99324, 'ninety-nine thousand three hundred twenty-four'); INSERT INTO t2 VALUES(16112, 40323, 'forty thousand three hundred twenty-three'); INSERT INTO t2 VALUES(16113, 25227, 'twenty-five thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(16114, 79601, 'seventy-nine thousand six hundred one'); INSERT INTO t2 VALUES(16115, 17795, 'seventeen thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(16116, 27280, 'twenty-seven thousand two hundred eighty'); INSERT INTO t2 VALUES(16117, 6623, 'six thousand six hundred twenty-three'); INSERT INTO t2 VALUES(16118, 44016, 'forty-four thousand sixteen'); INSERT INTO t2 VALUES(16119, 47457, 'forty-seven thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(16120, 49815, 'forty-nine thousand eight hundred fifteen'); INSERT INTO t2 VALUES(16121, 6374, 'six thousand three hundred seventy-four'); INSERT INTO t2 VALUES(16122, 32173, 'thirty-two thousand one hundred seventy-three'); INSERT INTO t2 VALUES(16123, 31527, 'thirty-one thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(16124, 22886, 'twenty-two thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(16125, 6343, 'six thousand three hundred forty-three'); INSERT INTO t2 VALUES(16126, 82249, 'eighty-two thousand two hundred forty-nine'); INSERT INTO t2 VALUES(16127, 38617, 'thirty-eight thousand six hundred seventeen'); INSERT INTO t2 VALUES(16128, 93634, 'ninety-three thousand six hundred thirty-four'); INSERT INTO t2 VALUES(16129, 67769, 'sixty-seven thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(16130, 23369, 'twenty-three thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(16131, 87506, 'eighty-seven thousand five hundred six'); INSERT INTO t2 VALUES(16132, 39817, 'thirty-nine thousand eight hundred seventeen'); INSERT INTO t2 VALUES(16133, 5730, 'five thousand seven hundred thirty'); INSERT INTO t2 VALUES(16134, 94254, 'ninety-four thousand two hundred fifty-four'); INSERT INTO t2 VALUES(16135, 99119, 'ninety-nine thousand one hundred nineteen'); INSERT INTO t2 VALUES(16136, 2980, 'two thousand nine hundred eighty'); INSERT INTO t2 VALUES(16137, 98050, 'ninety-eight thousand fifty'); INSERT INTO t2 VALUES(16138, 40896, 'forty thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(16139, 4640, 'four thousand six hundred forty'); INSERT INTO t2 VALUES(16140, 92837, 'ninety-two thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(16141, 14735, 'fourteen thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(16142, 55717, 'fifty-five thousand seven hundred seventeen'); INSERT INTO t2 VALUES(16143, 23711, 'twenty-three thousand seven hundred eleven'); INSERT INTO t2 VALUES(16144, 78552, 'seventy-eight thousand five hundred fifty-two'); INSERT INTO t2 VALUES(16145, 32368, 'thirty-two thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(16146, 97189, 'ninety-seven thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(16147, 3220, 'three thousand two hundred twenty'); INSERT INTO t2 VALUES(16148, 20461, 'twenty thousand four hundred sixty-one'); INSERT INTO t2 VALUES(16149, 14066, 'fourteen thousand sixty-six'); INSERT INTO t2 VALUES(16150, 1397, 'one thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(16151, 54977, 'fifty-four thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(16152, 52195, 'fifty-two thousand one hundred ninety-five'); INSERT INTO t2 VALUES(16153, 82346, 'eighty-two thousand three hundred forty-six'); INSERT INTO t2 VALUES(16154, 8844, 'eight thousand eight hundred forty-four'); INSERT INTO t2 VALUES(16155, 55534, 'fifty-five thousand five hundred thirty-four'); INSERT INTO t2 VALUES(16156, 12301, 'twelve thousand three hundred one'); INSERT INTO t2 VALUES(16157, 86108, 'eighty-six thousand one hundred eight'); INSERT INTO t2 VALUES(16158, 3085, 'three thousand eighty-five'); INSERT INTO t2 VALUES(16159, 12289, 'twelve thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(16160, 89357, 'eighty-nine thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(16161, 13666, 'thirteen thousand six hundred sixty-six'); INSERT INTO t2 VALUES(16162, 83477, 'eighty-three thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(16163, 95107, 'ninety-five thousand one hundred seven'); INSERT INTO t2 VALUES(16164, 8315, 'eight thousand three hundred fifteen'); INSERT INTO t2 VALUES(16165, 44988, 'forty-four thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(16166, 94529, 'ninety-four thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(16167, 3042, 'three thousand forty-two'); INSERT INTO t2 VALUES(16168, 61932, 'sixty-one thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(16169, 59615, 'fifty-nine thousand six hundred fifteen'); INSERT INTO t2 VALUES(16170, 46488, 'forty-six thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(16171, 41124, 'forty-one thousand one hundred twenty-four'); INSERT INTO t2 VALUES(16172, 71428, 'seventy-one thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(16173, 40727, 'forty thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(16174, 89654, 'eighty-nine thousand six hundred fifty-four'); INSERT INTO t2 VALUES(16175, 27757, 'twenty-seven thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(16176, 85031, 'eighty-five thousand thirty-one'); INSERT INTO t2 VALUES(16177, 74155, 'seventy-four thousand one hundred fifty-five'); INSERT INTO t2 VALUES(16178, 26689, 'twenty-six thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(16179, 44332, 'forty-four thousand three hundred thirty-two'); INSERT INTO t2 VALUES(16180, 92054, 'ninety-two thousand fifty-four'); INSERT INTO t2 VALUES(16181, 65503, 'sixty-five thousand five hundred three'); INSERT INTO t2 VALUES(16182, 39652, 'thirty-nine thousand six hundred fifty-two'); INSERT INTO t2 VALUES(16183, 69557, 'sixty-nine thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(16184, 19050, 'nineteen thousand fifty'); INSERT INTO t2 VALUES(16185, 18021, 'eighteen thousand twenty-one'); INSERT INTO t2 VALUES(16186, 14458, 'fourteen thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(16187, 76327, 'seventy-six thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(16188, 79846, 'seventy-nine thousand eight hundred forty-six'); INSERT INTO t2 VALUES(16189, 19131, 'nineteen thousand one hundred thirty-one'); INSERT INTO t2 VALUES(16190, 5839, 'five thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(16191, 44043, 'forty-four thousand forty-three'); INSERT INTO t2 VALUES(16192, 63405, 'sixty-three thousand four hundred five'); INSERT INTO t2 VALUES(16193, 30066, 'thirty thousand sixty-six'); INSERT INTO t2 VALUES(16194, 47142, 'forty-seven thousand one hundred forty-two'); INSERT INTO t2 VALUES(16195, 87465, 'eighty-seven thousand four hundred sixty-five'); INSERT INTO t2 VALUES(16196, 57878, 'fifty-seven thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(16197, 23196, 'twenty-three thousand one hundred ninety-six'); INSERT INTO t2 VALUES(16198, 50816, 'fifty thousand eight hundred sixteen'); INSERT INTO t2 VALUES(16199, 38194, 'thirty-eight thousand one hundred ninety-four'); INSERT INTO t2 VALUES(16200, 84336, 'eighty-four thousand three hundred thirty-six'); INSERT INTO t2 VALUES(16201, 97601, 'ninety-seven thousand six hundred one'); INSERT INTO t2 VALUES(16202, 58317, 'fifty-eight thousand three hundred seventeen'); INSERT INTO t2 VALUES(16203, 97255, 'ninety-seven thousand two hundred fifty-five'); INSERT INTO t2 VALUES(16204, 8056, 'eight thousand fifty-six'); INSERT INTO t2 VALUES(16205, 95081, 'ninety-five thousand eighty-one'); INSERT INTO t2 VALUES(16206, 12946, 'twelve thousand nine hundred forty-six'); INSERT INTO t2 VALUES(16207, 74745, 'seventy-four thousand seven hundred forty-five'); INSERT INTO t2 VALUES(16208, 51215, 'fifty-one thousand two hundred fifteen'); INSERT INTO t2 VALUES(16209, 18338, 'eighteen thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(16210, 93590, 'ninety-three thousand five hundred ninety'); INSERT INTO t2 VALUES(16211, 44736, 'forty-four thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(16212, 18104, 'eighteen thousand one hundred four'); INSERT INTO t2 VALUES(16213, 66016, 'sixty-six thousand sixteen'); INSERT INTO t2 VALUES(16214, 60424, 'sixty thousand four hundred twenty-four'); INSERT INTO t2 VALUES(16215, 69008, 'sixty-nine thousand eight'); INSERT INTO t2 VALUES(16216, 2809, 'two thousand eight hundred nine'); INSERT INTO t2 VALUES(16217, 66904, 'sixty-six thousand nine hundred four'); INSERT INTO t2 VALUES(16218, 62527, 'sixty-two thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(16219, 91785, 'ninety-one thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(16220, 50726, 'fifty thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(16221, 67174, 'sixty-seven thousand one hundred seventy-four'); INSERT INTO t2 VALUES(16222, 54032, 'fifty-four thousand thirty-two'); INSERT INTO t2 VALUES(16223, 17883, 'seventeen thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(16224, 41373, 'forty-one thousand three hundred seventy-three'); INSERT INTO t2 VALUES(16225, 972, 'nine hundred seventy-two'); INSERT INTO t2 VALUES(16226, 88410, 'eighty-eight thousand four hundred ten'); INSERT INTO t2 VALUES(16227, 26306, 'twenty-six thousand three hundred six'); INSERT INTO t2 VALUES(16228, 43858, 'forty-three thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(16229, 27039, 'twenty-seven thousand thirty-nine'); INSERT INTO t2 VALUES(16230, 6953, 'six thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(16231, 85665, 'eighty-five thousand six hundred sixty-five'); INSERT INTO t2 VALUES(16232, 52992, 'fifty-two thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(16233, 59727, 'fifty-nine thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(16234, 45860, 'forty-five thousand eight hundred sixty'); INSERT INTO t2 VALUES(16235, 91271, 'ninety-one thousand two hundred seventy-one'); INSERT INTO t2 VALUES(16236, 60752, 'sixty thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(16237, 87274, 'eighty-seven thousand two hundred seventy-four'); INSERT INTO t2 VALUES(16238, 87060, 'eighty-seven thousand sixty'); INSERT INTO t2 VALUES(16239, 77805, 'seventy-seven thousand eight hundred five'); INSERT INTO t2 VALUES(16240, 2814, 'two thousand eight hundred fourteen'); INSERT INTO t2 VALUES(16241, 59542, 'fifty-nine thousand five hundred forty-two'); INSERT INTO t2 VALUES(16242, 43225, 'forty-three thousand two hundred twenty-five'); INSERT INTO t2 VALUES(16243, 87456, 'eighty-seven thousand four hundred fifty-six'); INSERT INTO t2 VALUES(16244, 43361, 'forty-three thousand three hundred sixty-one'); INSERT INTO t2 VALUES(16245, 62392, 'sixty-two thousand three hundred ninety-two'); INSERT INTO t2 VALUES(16246, 31119, 'thirty-one thousand one hundred nineteen'); INSERT INTO t2 VALUES(16247, 72847, 'seventy-two thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(16248, 49466, 'forty-nine thousand four hundred sixty-six'); INSERT INTO t2 VALUES(16249, 14930, 'fourteen thousand nine hundred thirty'); INSERT INTO t2 VALUES(16250, 55942, 'fifty-five thousand nine hundred forty-two'); INSERT INTO t2 VALUES(16251, 14274, 'fourteen thousand two hundred seventy-four'); INSERT INTO t2 VALUES(16252, 57987, 'fifty-seven thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(16253, 98842, 'ninety-eight thousand eight hundred forty-two'); INSERT INTO t2 VALUES(16254, 71280, 'seventy-one thousand two hundred eighty'); INSERT INTO t2 VALUES(16255, 91828, 'ninety-one thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(16256, 89036, 'eighty-nine thousand thirty-six'); INSERT INTO t2 VALUES(16257, 32711, 'thirty-two thousand seven hundred eleven'); INSERT INTO t2 VALUES(16258, 10873, 'ten thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(16259, 29863, 'twenty-nine thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(16260, 78799, 'seventy-eight thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(16261, 10873, 'ten thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(16262, 90157, 'ninety thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(16263, 5204, 'five thousand two hundred four'); INSERT INTO t2 VALUES(16264, 49483, 'forty-nine thousand four hundred eighty-three'); INSERT INTO t2 VALUES(16265, 45161, 'forty-five thousand one hundred sixty-one'); INSERT INTO t2 VALUES(16266, 65961, 'sixty-five thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(16267, 43300, 'forty-three thousand three hundred'); INSERT INTO t2 VALUES(16268, 95356, 'ninety-five thousand three hundred fifty-six'); INSERT INTO t2 VALUES(16269, 72773, 'seventy-two thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(16270, 54822, 'fifty-four thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(16271, 2113, 'two thousand one hundred thirteen'); INSERT INTO t2 VALUES(16272, 5442, 'five thousand four hundred forty-two'); INSERT INTO t2 VALUES(16273, 66294, 'sixty-six thousand two hundred ninety-four'); INSERT INTO t2 VALUES(16274, 42545, 'forty-two thousand five hundred forty-five'); INSERT INTO t2 VALUES(16275, 59123, 'fifty-nine thousand one hundred twenty-three'); INSERT INTO t2 VALUES(16276, 69177, 'sixty-nine thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(16277, 69706, 'sixty-nine thousand seven hundred six'); INSERT INTO t2 VALUES(16278, 27256, 'twenty-seven thousand two hundred fifty-six'); INSERT INTO t2 VALUES(16279, 26192, 'twenty-six thousand one hundred ninety-two'); INSERT INTO t2 VALUES(16280, 48549, 'forty-eight thousand five hundred forty-nine'); INSERT INTO t2 VALUES(16281, 23144, 'twenty-three thousand one hundred forty-four'); INSERT INTO t2 VALUES(16282, 651, 'six hundred fifty-one'); INSERT INTO t2 VALUES(16283, 37920, 'thirty-seven thousand nine hundred twenty'); INSERT INTO t2 VALUES(16284, 42319, 'forty-two thousand three hundred nineteen'); INSERT INTO t2 VALUES(16285, 34174, 'thirty-four thousand one hundred seventy-four'); INSERT INTO t2 VALUES(16286, 10483, 'ten thousand four hundred eighty-three'); INSERT INTO t2 VALUES(16287, 21220, 'twenty-one thousand two hundred twenty'); INSERT INTO t2 VALUES(16288, 84490, 'eighty-four thousand four hundred ninety'); INSERT INTO t2 VALUES(16289, 62444, 'sixty-two thousand four hundred forty-four'); INSERT INTO t2 VALUES(16290, 28703, 'twenty-eight thousand seven hundred three'); INSERT INTO t2 VALUES(16291, 75606, 'seventy-five thousand six hundred six'); INSERT INTO t2 VALUES(16292, 90353, 'ninety thousand three hundred fifty-three'); INSERT INTO t2 VALUES(16293, 33493, 'thirty-three thousand four hundred ninety-three'); INSERT INTO t2 VALUES(16294, 39382, 'thirty-nine thousand three hundred eighty-two'); INSERT INTO t2 VALUES(16295, 18619, 'eighteen thousand six hundred nineteen'); INSERT INTO t2 VALUES(16296, 59367, 'fifty-nine thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(16297, 65457, 'sixty-five thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(16298, 67637, 'sixty-seven thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(16299, 96162, 'ninety-six thousand one hundred sixty-two'); INSERT INTO t2 VALUES(16300, 4175, 'four thousand one hundred seventy-five'); INSERT INTO t2 VALUES(16301, 33759, 'thirty-three thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(16302, 62597, 'sixty-two thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(16303, 6885, 'six thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(16304, 67623, 'sixty-seven thousand six hundred twenty-three'); INSERT INTO t2 VALUES(16305, 50288, 'fifty thousand two hundred eighty-eight'); INSERT INTO t2 VALUES(16306, 73792, 'seventy-three thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(16307, 29088, 'twenty-nine thousand eighty-eight'); INSERT INTO t2 VALUES(16308, 61366, 'sixty-one thousand three hundred sixty-six'); INSERT INTO t2 VALUES(16309, 57577, 'fifty-seven thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(16310, 35627, 'thirty-five thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(16311, 33607, 'thirty-three thousand six hundred seven'); INSERT INTO t2 VALUES(16312, 38930, 'thirty-eight thousand nine hundred thirty'); INSERT INTO t2 VALUES(16313, 82055, 'eighty-two thousand fifty-five'); INSERT INTO t2 VALUES(16314, 83614, 'eighty-three thousand six hundred fourteen'); INSERT INTO t2 VALUES(16315, 30726, 'thirty thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(16316, 83908, 'eighty-three thousand nine hundred eight'); INSERT INTO t2 VALUES(16317, 55766, 'fifty-five thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(16318, 83773, 'eighty-three thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(16319, 23891, 'twenty-three thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(16320, 39398, 'thirty-nine thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(16321, 67260, 'sixty-seven thousand two hundred sixty'); INSERT INTO t2 VALUES(16322, 80283, 'eighty thousand two hundred eighty-three'); INSERT INTO t2 VALUES(16323, 55617, 'fifty-five thousand six hundred seventeen'); INSERT INTO t2 VALUES(16324, 65215, 'sixty-five thousand two hundred fifteen'); INSERT INTO t2 VALUES(16325, 437, 'four hundred thirty-seven'); INSERT INTO t2 VALUES(16326, 56810, 'fifty-six thousand eight hundred ten'); INSERT INTO t2 VALUES(16327, 438, 'four hundred thirty-eight'); INSERT INTO t2 VALUES(16328, 88671, 'eighty-eight thousand six hundred seventy-one'); INSERT INTO t2 VALUES(16329, 29397, 'twenty-nine thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(16330, 91946, 'ninety-one thousand nine hundred forty-six'); INSERT INTO t2 VALUES(16331, 1841, 'one thousand eight hundred forty-one'); INSERT INTO t2 VALUES(16332, 44648, 'forty-four thousand six hundred forty-eight'); INSERT INTO t2 VALUES(16333, 58631, 'fifty-eight thousand six hundred thirty-one'); INSERT INTO t2 VALUES(16334, 9334, 'nine thousand three hundred thirty-four'); INSERT INTO t2 VALUES(16335, 93055, 'ninety-three thousand fifty-five'); INSERT INTO t2 VALUES(16336, 70389, 'seventy thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(16337, 86675, 'eighty-six thousand six hundred seventy-five'); INSERT INTO t2 VALUES(16338, 42012, 'forty-two thousand twelve'); INSERT INTO t2 VALUES(16339, 38035, 'thirty-eight thousand thirty-five'); INSERT INTO t2 VALUES(16340, 42707, 'forty-two thousand seven hundred seven'); INSERT INTO t2 VALUES(16341, 96258, 'ninety-six thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(16342, 85244, 'eighty-five thousand two hundred forty-four'); INSERT INTO t2 VALUES(16343, 67037, 'sixty-seven thousand thirty-seven'); INSERT INTO t2 VALUES(16344, 15659, 'fifteen thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(16345, 30025, 'thirty thousand twenty-five'); INSERT INTO t2 VALUES(16346, 26793, 'twenty-six thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(16347, 15654, 'fifteen thousand six hundred fifty-four'); INSERT INTO t2 VALUES(16348, 15482, 'fifteen thousand four hundred eighty-two'); INSERT INTO t2 VALUES(16349, 35324, 'thirty-five thousand three hundred twenty-four'); INSERT INTO t2 VALUES(16350, 90616, 'ninety thousand six hundred sixteen'); INSERT INTO t2 VALUES(16351, 7671, 'seven thousand six hundred seventy-one'); INSERT INTO t2 VALUES(16352, 89670, 'eighty-nine thousand six hundred seventy'); INSERT INTO t2 VALUES(16353, 60029, 'sixty thousand twenty-nine'); INSERT INTO t2 VALUES(16354, 83944, 'eighty-three thousand nine hundred forty-four'); INSERT INTO t2 VALUES(16355, 79726, 'seventy-nine thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(16356, 75123, 'seventy-five thousand one hundred twenty-three'); INSERT INTO t2 VALUES(16357, 94220, 'ninety-four thousand two hundred twenty'); INSERT INTO t2 VALUES(16358, 1618, 'one thousand six hundred eighteen'); INSERT INTO t2 VALUES(16359, 1007, 'one thousand seven'); INSERT INTO t2 VALUES(16360, 8037, 'eight thousand thirty-seven'); INSERT INTO t2 VALUES(16361, 15157, 'fifteen thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(16362, 76616, 'seventy-six thousand six hundred sixteen'); INSERT INTO t2 VALUES(16363, 52655, 'fifty-two thousand six hundred fifty-five'); INSERT INTO t2 VALUES(16364, 53270, 'fifty-three thousand two hundred seventy'); INSERT INTO t2 VALUES(16365, 67386, 'sixty-seven thousand three hundred eighty-six'); INSERT INTO t2 VALUES(16366, 13735, 'thirteen thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(16367, 4217, 'four thousand two hundred seventeen'); INSERT INTO t2 VALUES(16368, 36915, 'thirty-six thousand nine hundred fifteen'); INSERT INTO t2 VALUES(16369, 93171, 'ninety-three thousand one hundred seventy-one'); INSERT INTO t2 VALUES(16370, 42370, 'forty-two thousand three hundred seventy'); INSERT INTO t2 VALUES(16371, 45498, 'forty-five thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(16372, 65950, 'sixty-five thousand nine hundred fifty'); INSERT INTO t2 VALUES(16373, 70214, 'seventy thousand two hundred fourteen'); INSERT INTO t2 VALUES(16374, 55707, 'fifty-five thousand seven hundred seven'); INSERT INTO t2 VALUES(16375, 77836, 'seventy-seven thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(16376, 30633, 'thirty thousand six hundred thirty-three'); INSERT INTO t2 VALUES(16377, 47063, 'forty-seven thousand sixty-three'); INSERT INTO t2 VALUES(16378, 37314, 'thirty-seven thousand three hundred fourteen'); INSERT INTO t2 VALUES(16379, 75521, 'seventy-five thousand five hundred twenty-one'); INSERT INTO t2 VALUES(16380, 54752, 'fifty-four thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(16381, 52610, 'fifty-two thousand six hundred ten'); INSERT INTO t2 VALUES(16382, 55893, 'fifty-five thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(16383, 34842, 'thirty-four thousand eight hundred forty-two'); INSERT INTO t2 VALUES(16384, 77317, 'seventy-seven thousand three hundred seventeen'); INSERT INTO t2 VALUES(16385, 37717, 'thirty-seven thousand seven hundred seventeen'); INSERT INTO t2 VALUES(16386, 8909, 'eight thousand nine hundred nine'); INSERT INTO t2 VALUES(16387, 53752, 'fifty-three thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(16388, 4216, 'four thousand two hundred sixteen'); INSERT INTO t2 VALUES(16389, 69445, 'sixty-nine thousand four hundred forty-five'); INSERT INTO t2 VALUES(16390, 24744, 'twenty-four thousand seven hundred forty-four'); INSERT INTO t2 VALUES(16391, 689, 'six hundred eighty-nine'); INSERT INTO t2 VALUES(16392, 73776, 'seventy-three thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(16393, 35784, 'thirty-five thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(16394, 26517, 'twenty-six thousand five hundred seventeen'); INSERT INTO t2 VALUES(16395, 36715, 'thirty-six thousand seven hundred fifteen'); INSERT INTO t2 VALUES(16396, 62011, 'sixty-two thousand eleven'); INSERT INTO t2 VALUES(16397, 82038, 'eighty-two thousand thirty-eight'); INSERT INTO t2 VALUES(16398, 65734, 'sixty-five thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(16399, 99683, 'ninety-nine thousand six hundred eighty-three'); INSERT INTO t2 VALUES(16400, 92561, 'ninety-two thousand five hundred sixty-one'); INSERT INTO t2 VALUES(16401, 81422, 'eighty-one thousand four hundred twenty-two'); INSERT INTO t2 VALUES(16402, 89360, 'eighty-nine thousand three hundred sixty'); INSERT INTO t2 VALUES(16403, 71584, 'seventy-one thousand five hundred eighty-four'); INSERT INTO t2 VALUES(16404, 67622, 'sixty-seven thousand six hundred twenty-two'); INSERT INTO t2 VALUES(16405, 16749, 'sixteen thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(16406, 68108, 'sixty-eight thousand one hundred eight'); INSERT INTO t2 VALUES(16407, 40276, 'forty thousand two hundred seventy-six'); INSERT INTO t2 VALUES(16408, 88928, 'eighty-eight thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(16409, 53328, 'fifty-three thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(16410, 13428, 'thirteen thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(16411, 51950, 'fifty-one thousand nine hundred fifty'); INSERT INTO t2 VALUES(16412, 56220, 'fifty-six thousand two hundred twenty'); INSERT INTO t2 VALUES(16413, 84591, 'eighty-four thousand five hundred ninety-one'); INSERT INTO t2 VALUES(16414, 48035, 'forty-eight thousand thirty-five'); INSERT INTO t2 VALUES(16415, 98654, 'ninety-eight thousand six hundred fifty-four'); INSERT INTO t2 VALUES(16416, 3088, 'three thousand eighty-eight'); INSERT INTO t2 VALUES(16417, 73261, 'seventy-three thousand two hundred sixty-one'); INSERT INTO t2 VALUES(16418, 61489, 'sixty-one thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(16419, 52502, 'fifty-two thousand five hundred two'); INSERT INTO t2 VALUES(16420, 58633, 'fifty-eight thousand six hundred thirty-three'); INSERT INTO t2 VALUES(16421, 88204, 'eighty-eight thousand two hundred four'); INSERT INTO t2 VALUES(16422, 41549, 'forty-one thousand five hundred forty-nine'); INSERT INTO t2 VALUES(16423, 55414, 'fifty-five thousand four hundred fourteen'); INSERT INTO t2 VALUES(16424, 40902, 'forty thousand nine hundred two'); INSERT INTO t2 VALUES(16425, 89970, 'eighty-nine thousand nine hundred seventy'); INSERT INTO t2 VALUES(16426, 73233, 'seventy-three thousand two hundred thirty-three'); INSERT INTO t2 VALUES(16427, 80971, 'eighty thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(16428, 88587, 'eighty-eight thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(16429, 34164, 'thirty-four thousand one hundred sixty-four'); INSERT INTO t2 VALUES(16430, 23612, 'twenty-three thousand six hundred twelve'); INSERT INTO t2 VALUES(16431, 71749, 'seventy-one thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(16432, 98149, 'ninety-eight thousand one hundred forty-nine'); INSERT INTO t2 VALUES(16433, 48951, 'forty-eight thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(16434, 90645, 'ninety thousand six hundred forty-five'); INSERT INTO t2 VALUES(16435, 50664, 'fifty thousand six hundred sixty-four'); INSERT INTO t2 VALUES(16436, 23111, 'twenty-three thousand one hundred eleven'); INSERT INTO t2 VALUES(16437, 18775, 'eighteen thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(16438, 34702, 'thirty-four thousand seven hundred two'); INSERT INTO t2 VALUES(16439, 87310, 'eighty-seven thousand three hundred ten'); INSERT INTO t2 VALUES(16440, 77109, 'seventy-seven thousand one hundred nine'); INSERT INTO t2 VALUES(16441, 96710, 'ninety-six thousand seven hundred ten'); INSERT INTO t2 VALUES(16442, 65213, 'sixty-five thousand two hundred thirteen'); INSERT INTO t2 VALUES(16443, 77656, 'seventy-seven thousand six hundred fifty-six'); INSERT INTO t2 VALUES(16444, 33076, 'thirty-three thousand seventy-six'); INSERT INTO t2 VALUES(16445, 54161, 'fifty-four thousand one hundred sixty-one'); INSERT INTO t2 VALUES(16446, 2367, 'two thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(16447, 21023, 'twenty-one thousand twenty-three'); INSERT INTO t2 VALUES(16448, 16137, 'sixteen thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(16449, 68626, 'sixty-eight thousand six hundred twenty-six'); INSERT INTO t2 VALUES(16450, 41773, 'forty-one thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(16451, 72723, 'seventy-two thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(16452, 39225, 'thirty-nine thousand two hundred twenty-five'); INSERT INTO t2 VALUES(16453, 89941, 'eighty-nine thousand nine hundred forty-one'); INSERT INTO t2 VALUES(16454, 38076, 'thirty-eight thousand seventy-six'); INSERT INTO t2 VALUES(16455, 94996, 'ninety-four thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(16456, 30319, 'thirty thousand three hundred nineteen'); INSERT INTO t2 VALUES(16457, 33596, 'thirty-three thousand five hundred ninety-six'); INSERT INTO t2 VALUES(16458, 45240, 'forty-five thousand two hundred forty'); INSERT INTO t2 VALUES(16459, 87914, 'eighty-seven thousand nine hundred fourteen'); INSERT INTO t2 VALUES(16460, 31557, 'thirty-one thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(16461, 20954, 'twenty thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(16462, 48338, 'forty-eight thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(16463, 80992, 'eighty thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(16464, 70979, 'seventy thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(16465, 42578, 'forty-two thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(16466, 50789, 'fifty thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(16467, 59835, 'fifty-nine thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(16468, 64635, 'sixty-four thousand six hundred thirty-five'); INSERT INTO t2 VALUES(16469, 81816, 'eighty-one thousand eight hundred sixteen'); INSERT INTO t2 VALUES(16470, 70787, 'seventy thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(16471, 97583, 'ninety-seven thousand five hundred eighty-three'); INSERT INTO t2 VALUES(16472, 93716, 'ninety-three thousand seven hundred sixteen'); INSERT INTO t2 VALUES(16473, 91414, 'ninety-one thousand four hundred fourteen'); INSERT INTO t2 VALUES(16474, 40471, 'forty thousand four hundred seventy-one'); INSERT INTO t2 VALUES(16475, 91223, 'ninety-one thousand two hundred twenty-three'); INSERT INTO t2 VALUES(16476, 90427, 'ninety thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(16477, 3320, 'three thousand three hundred twenty'); INSERT INTO t2 VALUES(16478, 56499, 'fifty-six thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(16479, 85799, 'eighty-five thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(16480, 51833, 'fifty-one thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(16481, 71941, 'seventy-one thousand nine hundred forty-one'); INSERT INTO t2 VALUES(16482, 66293, 'sixty-six thousand two hundred ninety-three'); INSERT INTO t2 VALUES(16483, 40203, 'forty thousand two hundred three'); INSERT INTO t2 VALUES(16484, 46343, 'forty-six thousand three hundred forty-three'); INSERT INTO t2 VALUES(16485, 9820, 'nine thousand eight hundred twenty'); INSERT INTO t2 VALUES(16486, 19316, 'nineteen thousand three hundred sixteen'); INSERT INTO t2 VALUES(16487, 18298, 'eighteen thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(16488, 36507, 'thirty-six thousand five hundred seven'); INSERT INTO t2 VALUES(16489, 26218, 'twenty-six thousand two hundred eighteen'); INSERT INTO t2 VALUES(16490, 63782, 'sixty-three thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(16491, 18218, 'eighteen thousand two hundred eighteen'); INSERT INTO t2 VALUES(16492, 95986, 'ninety-five thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(16493, 67780, 'sixty-seven thousand seven hundred eighty'); INSERT INTO t2 VALUES(16494, 12942, 'twelve thousand nine hundred forty-two'); INSERT INTO t2 VALUES(16495, 32681, 'thirty-two thousand six hundred eighty-one'); INSERT INTO t2 VALUES(16496, 80359, 'eighty thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(16497, 24729, 'twenty-four thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(16498, 27548, 'twenty-seven thousand five hundred forty-eight'); INSERT INTO t2 VALUES(16499, 48161, 'forty-eight thousand one hundred sixty-one'); INSERT INTO t2 VALUES(16500, 50494, 'fifty thousand four hundred ninety-four'); INSERT INTO t2 VALUES(16501, 48162, 'forty-eight thousand one hundred sixty-two'); INSERT INTO t2 VALUES(16502, 33647, 'thirty-three thousand six hundred forty-seven'); INSERT INTO t2 VALUES(16503, 58346, 'fifty-eight thousand three hundred forty-six'); INSERT INTO t2 VALUES(16504, 19370, 'nineteen thousand three hundred seventy'); INSERT INTO t2 VALUES(16505, 75765, 'seventy-five thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(16506, 45323, 'forty-five thousand three hundred twenty-three'); INSERT INTO t2 VALUES(16507, 67482, 'sixty-seven thousand four hundred eighty-two'); INSERT INTO t2 VALUES(16508, 37911, 'thirty-seven thousand nine hundred eleven'); INSERT INTO t2 VALUES(16509, 56614, 'fifty-six thousand six hundred fourteen'); INSERT INTO t2 VALUES(16510, 65081, 'sixty-five thousand eighty-one'); INSERT INTO t2 VALUES(16511, 67355, 'sixty-seven thousand three hundred fifty-five'); INSERT INTO t2 VALUES(16512, 72157, 'seventy-two thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(16513, 64123, 'sixty-four thousand one hundred twenty-three'); INSERT INTO t2 VALUES(16514, 7643, 'seven thousand six hundred forty-three'); INSERT INTO t2 VALUES(16515, 42302, 'forty-two thousand three hundred two'); INSERT INTO t2 VALUES(16516, 80053, 'eighty thousand fifty-three'); INSERT INTO t2 VALUES(16517, 92982, 'ninety-two thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(16518, 432, 'four hundred thirty-two'); INSERT INTO t2 VALUES(16519, 37292, 'thirty-seven thousand two hundred ninety-two'); INSERT INTO t2 VALUES(16520, 94118, 'ninety-four thousand one hundred eighteen'); INSERT INTO t2 VALUES(16521, 70572, 'seventy thousand five hundred seventy-two'); INSERT INTO t2 VALUES(16522, 81383, 'eighty-one thousand three hundred eighty-three'); INSERT INTO t2 VALUES(16523, 21709, 'twenty-one thousand seven hundred nine'); INSERT INTO t2 VALUES(16524, 55450, 'fifty-five thousand four hundred fifty'); INSERT INTO t2 VALUES(16525, 5086, 'five thousand eighty-six'); INSERT INTO t2 VALUES(16526, 66669, 'sixty-six thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(16527, 42869, 'forty-two thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(16528, 72745, 'seventy-two thousand seven hundred forty-five'); INSERT INTO t2 VALUES(16529, 14828, 'fourteen thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(16530, 4621, 'four thousand six hundred twenty-one'); INSERT INTO t2 VALUES(16531, 47935, 'forty-seven thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(16532, 31775, 'thirty-one thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(16533, 55028, 'fifty-five thousand twenty-eight'); INSERT INTO t2 VALUES(16534, 47991, 'forty-seven thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(16535, 62429, 'sixty-two thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(16536, 97285, 'ninety-seven thousand two hundred eighty-five'); INSERT INTO t2 VALUES(16537, 32210, 'thirty-two thousand two hundred ten'); INSERT INTO t2 VALUES(16538, 22698, 'twenty-two thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(16539, 81414, 'eighty-one thousand four hundred fourteen'); INSERT INTO t2 VALUES(16540, 82896, 'eighty-two thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(16541, 20290, 'twenty thousand two hundred ninety'); INSERT INTO t2 VALUES(16542, 39712, 'thirty-nine thousand seven hundred twelve'); INSERT INTO t2 VALUES(16543, 65256, 'sixty-five thousand two hundred fifty-six'); INSERT INTO t2 VALUES(16544, 5118, 'five thousand one hundred eighteen'); INSERT INTO t2 VALUES(16545, 39196, 'thirty-nine thousand one hundred ninety-six'); INSERT INTO t2 VALUES(16546, 40806, 'forty thousand eight hundred six'); INSERT INTO t2 VALUES(16547, 62391, 'sixty-two thousand three hundred ninety-one'); INSERT INTO t2 VALUES(16548, 50223, 'fifty thousand two hundred twenty-three'); INSERT INTO t2 VALUES(16549, 43614, 'forty-three thousand six hundred fourteen'); INSERT INTO t2 VALUES(16550, 3586, 'three thousand five hundred eighty-six'); INSERT INTO t2 VALUES(16551, 3193, 'three thousand one hundred ninety-three'); INSERT INTO t2 VALUES(16552, 84122, 'eighty-four thousand one hundred twenty-two'); INSERT INTO t2 VALUES(16553, 22070, 'twenty-two thousand seventy'); INSERT INTO t2 VALUES(16554, 68449, 'sixty-eight thousand four hundred forty-nine'); INSERT INTO t2 VALUES(16555, 95168, 'ninety-five thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(16556, 77287, 'seventy-seven thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(16557, 83653, 'eighty-three thousand six hundred fifty-three'); INSERT INTO t2 VALUES(16558, 12220, 'twelve thousand two hundred twenty'); INSERT INTO t2 VALUES(16559, 58862, 'fifty-eight thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(16560, 34558, 'thirty-four thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(16561, 96997, 'ninety-six thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(16562, 18883, 'eighteen thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(16563, 69662, 'sixty-nine thousand six hundred sixty-two'); INSERT INTO t2 VALUES(16564, 62622, 'sixty-two thousand six hundred twenty-two'); INSERT INTO t2 VALUES(16565, 70972, 'seventy thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(16566, 37525, 'thirty-seven thousand five hundred twenty-five'); INSERT INTO t2 VALUES(16567, 38447, 'thirty-eight thousand four hundred forty-seven'); INSERT INTO t2 VALUES(16568, 76784, 'seventy-six thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(16569, 53760, 'fifty-three thousand seven hundred sixty'); INSERT INTO t2 VALUES(16570, 79674, 'seventy-nine thousand six hundred seventy-four'); INSERT INTO t2 VALUES(16571, 59939, 'fifty-nine thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(16572, 7210, 'seven thousand two hundred ten'); INSERT INTO t2 VALUES(16573, 29992, 'twenty-nine thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(16574, 64170, 'sixty-four thousand one hundred seventy'); INSERT INTO t2 VALUES(16575, 87277, 'eighty-seven thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(16576, 74012, 'seventy-four thousand twelve'); INSERT INTO t2 VALUES(16577, 62299, 'sixty-two thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(16578, 968, 'nine hundred sixty-eight'); INSERT INTO t2 VALUES(16579, 73274, 'seventy-three thousand two hundred seventy-four'); INSERT INTO t2 VALUES(16580, 75610, 'seventy-five thousand six hundred ten'); INSERT INTO t2 VALUES(16581, 49036, 'forty-nine thousand thirty-six'); INSERT INTO t2 VALUES(16582, 75544, 'seventy-five thousand five hundred forty-four'); INSERT INTO t2 VALUES(16583, 8656, 'eight thousand six hundred fifty-six'); INSERT INTO t2 VALUES(16584, 98333, 'ninety-eight thousand three hundred thirty-three'); INSERT INTO t2 VALUES(16585, 90721, 'ninety thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(16586, 83856, 'eighty-three thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(16587, 6477, 'six thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(16588, 25813, 'twenty-five thousand eight hundred thirteen'); INSERT INTO t2 VALUES(16589, 94111, 'ninety-four thousand one hundred eleven'); INSERT INTO t2 VALUES(16590, 53899, 'fifty-three thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(16591, 87576, 'eighty-seven thousand five hundred seventy-six'); INSERT INTO t2 VALUES(16592, 37205, 'thirty-seven thousand two hundred five'); INSERT INTO t2 VALUES(16593, 66518, 'sixty-six thousand five hundred eighteen'); INSERT INTO t2 VALUES(16594, 49213, 'forty-nine thousand two hundred thirteen'); INSERT INTO t2 VALUES(16595, 3034, 'three thousand thirty-four'); INSERT INTO t2 VALUES(16596, 97592, 'ninety-seven thousand five hundred ninety-two'); INSERT INTO t2 VALUES(16597, 49342, 'forty-nine thousand three hundred forty-two'); INSERT INTO t2 VALUES(16598, 43565, 'forty-three thousand five hundred sixty-five'); INSERT INTO t2 VALUES(16599, 34861, 'thirty-four thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(16600, 54894, 'fifty-four thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(16601, 95894, 'ninety-five thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(16602, 33603, 'thirty-three thousand six hundred three'); INSERT INTO t2 VALUES(16603, 17876, 'seventeen thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(16604, 37795, 'thirty-seven thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(16605, 1571, 'one thousand five hundred seventy-one'); INSERT INTO t2 VALUES(16606, 52715, 'fifty-two thousand seven hundred fifteen'); INSERT INTO t2 VALUES(16607, 44981, 'forty-four thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(16608, 13627, 'thirteen thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(16609, 23786, 'twenty-three thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(16610, 67684, 'sixty-seven thousand six hundred eighty-four'); INSERT INTO t2 VALUES(16611, 31972, 'thirty-one thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(16612, 45826, 'forty-five thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(16613, 33690, 'thirty-three thousand six hundred ninety'); INSERT INTO t2 VALUES(16614, 24457, 'twenty-four thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(16615, 7291, 'seven thousand two hundred ninety-one'); INSERT INTO t2 VALUES(16616, 30936, 'thirty thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(16617, 92212, 'ninety-two thousand two hundred twelve'); INSERT INTO t2 VALUES(16618, 12305, 'twelve thousand three hundred five'); INSERT INTO t2 VALUES(16619, 26396, 'twenty-six thousand three hundred ninety-six'); INSERT INTO t2 VALUES(16620, 42394, 'forty-two thousand three hundred ninety-four'); INSERT INTO t2 VALUES(16621, 87865, 'eighty-seven thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(16622, 65060, 'sixty-five thousand sixty'); INSERT INTO t2 VALUES(16623, 82099, 'eighty-two thousand ninety-nine'); INSERT INTO t2 VALUES(16624, 45080, 'forty-five thousand eighty'); INSERT INTO t2 VALUES(16625, 29100, 'twenty-nine thousand one hundred'); INSERT INTO t2 VALUES(16626, 32059, 'thirty-two thousand fifty-nine'); INSERT INTO t2 VALUES(16627, 41599, 'forty-one thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(16628, 64331, 'sixty-four thousand three hundred thirty-one'); INSERT INTO t2 VALUES(16629, 48273, 'forty-eight thousand two hundred seventy-three'); INSERT INTO t2 VALUES(16630, 11325, 'eleven thousand three hundred twenty-five'); INSERT INTO t2 VALUES(16631, 15835, 'fifteen thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(16632, 59196, 'fifty-nine thousand one hundred ninety-six'); INSERT INTO t2 VALUES(16633, 80805, 'eighty thousand eight hundred five'); INSERT INTO t2 VALUES(16634, 42990, 'forty-two thousand nine hundred ninety'); INSERT INTO t2 VALUES(16635, 63146, 'sixty-three thousand one hundred forty-six'); INSERT INTO t2 VALUES(16636, 5053, 'five thousand fifty-three'); INSERT INTO t2 VALUES(16637, 27481, 'twenty-seven thousand four hundred eighty-one'); INSERT INTO t2 VALUES(16638, 15489, 'fifteen thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(16639, 53241, 'fifty-three thousand two hundred forty-one'); INSERT INTO t2 VALUES(16640, 35502, 'thirty-five thousand five hundred two'); INSERT INTO t2 VALUES(16641, 97716, 'ninety-seven thousand seven hundred sixteen'); INSERT INTO t2 VALUES(16642, 29715, 'twenty-nine thousand seven hundred fifteen'); INSERT INTO t2 VALUES(16643, 50003, 'fifty thousand three'); INSERT INTO t2 VALUES(16644, 70356, 'seventy thousand three hundred fifty-six'); INSERT INTO t2 VALUES(16645, 99225, 'ninety-nine thousand two hundred twenty-five'); INSERT INTO t2 VALUES(16646, 95867, 'ninety-five thousand eight hundred sixty-seven'); INSERT INTO t2 VALUES(16647, 25365, 'twenty-five thousand three hundred sixty-five'); INSERT INTO t2 VALUES(16648, 87161, 'eighty-seven thousand one hundred sixty-one'); INSERT INTO t2 VALUES(16649, 10321, 'ten thousand three hundred twenty-one'); INSERT INTO t2 VALUES(16650, 89143, 'eighty-nine thousand one hundred forty-three'); INSERT INTO t2 VALUES(16651, 77604, 'seventy-seven thousand six hundred four'); INSERT INTO t2 VALUES(16652, 76229, 'seventy-six thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(16653, 8943, 'eight thousand nine hundred forty-three'); INSERT INTO t2 VALUES(16654, 91992, 'ninety-one thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(16655, 60568, 'sixty thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(16656, 58897, 'fifty-eight thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(16657, 50100, 'fifty thousand one hundred'); INSERT INTO t2 VALUES(16658, 25836, 'twenty-five thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(16659, 9845, 'nine thousand eight hundred forty-five'); INSERT INTO t2 VALUES(16660, 77823, 'seventy-seven thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(16661, 95567, 'ninety-five thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(16662, 5665, 'five thousand six hundred sixty-five'); INSERT INTO t2 VALUES(16663, 47644, 'forty-seven thousand six hundred forty-four'); INSERT INTO t2 VALUES(16664, 78534, 'seventy-eight thousand five hundred thirty-four'); INSERT INTO t2 VALUES(16665, 98272, 'ninety-eight thousand two hundred seventy-two'); INSERT INTO t2 VALUES(16666, 71964, 'seventy-one thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(16667, 56251, 'fifty-six thousand two hundred fifty-one'); INSERT INTO t2 VALUES(16668, 11740, 'eleven thousand seven hundred forty'); INSERT INTO t2 VALUES(16669, 36362, 'thirty-six thousand three hundred sixty-two'); INSERT INTO t2 VALUES(16670, 1351, 'one thousand three hundred fifty-one'); INSERT INTO t2 VALUES(16671, 99147, 'ninety-nine thousand one hundred forty-seven'); INSERT INTO t2 VALUES(16672, 5910, 'five thousand nine hundred ten'); INSERT INTO t2 VALUES(16673, 20392, 'twenty thousand three hundred ninety-two'); INSERT INTO t2 VALUES(16674, 10597, 'ten thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(16675, 80237, 'eighty thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(16676, 22963, 'twenty-two thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(16677, 20732, 'twenty thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(16678, 29366, 'twenty-nine thousand three hundred sixty-six'); INSERT INTO t2 VALUES(16679, 32, 'thirty-two'); INSERT INTO t2 VALUES(16680, 76150, 'seventy-six thousand one hundred fifty'); INSERT INTO t2 VALUES(16681, 10297, 'ten thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(16682, 4496, 'four thousand four hundred ninety-six'); INSERT INTO t2 VALUES(16683, 91830, 'ninety-one thousand eight hundred thirty'); INSERT INTO t2 VALUES(16684, 79050, 'seventy-nine thousand fifty'); INSERT INTO t2 VALUES(16685, 32127, 'thirty-two thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(16686, 2648, 'two thousand six hundred forty-eight'); INSERT INTO t2 VALUES(16687, 16962, 'sixteen thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(16688, 94946, 'ninety-four thousand nine hundred forty-six'); INSERT INTO t2 VALUES(16689, 78936, 'seventy-eight thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(16690, 56866, 'fifty-six thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(16691, 77976, 'seventy-seven thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(16692, 6955, 'six thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(16693, 59775, 'fifty-nine thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(16694, 26897, 'twenty-six thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(16695, 73649, 'seventy-three thousand six hundred forty-nine'); INSERT INTO t2 VALUES(16696, 96955, 'ninety-six thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(16697, 6287, 'six thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(16698, 50941, 'fifty thousand nine hundred forty-one'); INSERT INTO t2 VALUES(16699, 71342, 'seventy-one thousand three hundred forty-two'); INSERT INTO t2 VALUES(16700, 20010, 'twenty thousand ten'); INSERT INTO t2 VALUES(16701, 24081, 'twenty-four thousand eighty-one'); INSERT INTO t2 VALUES(16702, 94590, 'ninety-four thousand five hundred ninety'); INSERT INTO t2 VALUES(16703, 69908, 'sixty-nine thousand nine hundred eight'); INSERT INTO t2 VALUES(16704, 46576, 'forty-six thousand five hundred seventy-six'); INSERT INTO t2 VALUES(16705, 89833, 'eighty-nine thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(16706, 13367, 'thirteen thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(16707, 49059, 'forty-nine thousand fifty-nine'); INSERT INTO t2 VALUES(16708, 3060, 'three thousand sixty'); INSERT INTO t2 VALUES(16709, 86590, 'eighty-six thousand five hundred ninety'); INSERT INTO t2 VALUES(16710, 48071, 'forty-eight thousand seventy-one'); INSERT INTO t2 VALUES(16711, 49325, 'forty-nine thousand three hundred twenty-five'); INSERT INTO t2 VALUES(16712, 57486, 'fifty-seven thousand four hundred eighty-six'); INSERT INTO t2 VALUES(16713, 31330, 'thirty-one thousand three hundred thirty'); INSERT INTO t2 VALUES(16714, 23312, 'twenty-three thousand three hundred twelve'); INSERT INTO t2 VALUES(16715, 47545, 'forty-seven thousand five hundred forty-five'); INSERT INTO t2 VALUES(16716, 33706, 'thirty-three thousand seven hundred six'); INSERT INTO t2 VALUES(16717, 85785, 'eighty-five thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(16718, 13463, 'thirteen thousand four hundred sixty-three'); INSERT INTO t2 VALUES(16719, 33548, 'thirty-three thousand five hundred forty-eight'); INSERT INTO t2 VALUES(16720, 48986, 'forty-eight thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(16721, 63924, 'sixty-three thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(16722, 40236, 'forty thousand two hundred thirty-six'); INSERT INTO t2 VALUES(16723, 11759, 'eleven thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(16724, 54573, 'fifty-four thousand five hundred seventy-three'); INSERT INTO t2 VALUES(16725, 63626, 'sixty-three thousand six hundred twenty-six'); INSERT INTO t2 VALUES(16726, 3023, 'three thousand twenty-three'); INSERT INTO t2 VALUES(16727, 26456, 'twenty-six thousand four hundred fifty-six'); INSERT INTO t2 VALUES(16728, 73494, 'seventy-three thousand four hundred ninety-four'); INSERT INTO t2 VALUES(16729, 85219, 'eighty-five thousand two hundred nineteen'); INSERT INTO t2 VALUES(16730, 20045, 'twenty thousand forty-five'); INSERT INTO t2 VALUES(16731, 6444, 'six thousand four hundred forty-four'); INSERT INTO t2 VALUES(16732, 53572, 'fifty-three thousand five hundred seventy-two'); INSERT INTO t2 VALUES(16733, 224, 'two hundred twenty-four'); INSERT INTO t2 VALUES(16734, 80802, 'eighty thousand eight hundred two'); INSERT INTO t2 VALUES(16735, 50393, 'fifty thousand three hundred ninety-three'); INSERT INTO t2 VALUES(16736, 72125, 'seventy-two thousand one hundred twenty-five'); INSERT INTO t2 VALUES(16737, 95693, 'ninety-five thousand six hundred ninety-three'); INSERT INTO t2 VALUES(16738, 90252, 'ninety thousand two hundred fifty-two'); INSERT INTO t2 VALUES(16739, 94316, 'ninety-four thousand three hundred sixteen'); INSERT INTO t2 VALUES(16740, 96754, 'ninety-six thousand seven hundred fifty-four'); INSERT INTO t2 VALUES(16741, 96154, 'ninety-six thousand one hundred fifty-four'); INSERT INTO t2 VALUES(16742, 82511, 'eighty-two thousand five hundred eleven'); INSERT INTO t2 VALUES(16743, 35499, 'thirty-five thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(16744, 69425, 'sixty-nine thousand four hundred twenty-five'); INSERT INTO t2 VALUES(16745, 82509, 'eighty-two thousand five hundred nine'); INSERT INTO t2 VALUES(16746, 66258, 'sixty-six thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(16747, 66468, 'sixty-six thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(16748, 758, 'seven hundred fifty-eight'); INSERT INTO t2 VALUES(16749, 96114, 'ninety-six thousand one hundred fourteen'); INSERT INTO t2 VALUES(16750, 55282, 'fifty-five thousand two hundred eighty-two'); INSERT INTO t2 VALUES(16751, 21404, 'twenty-one thousand four hundred four'); INSERT INTO t2 VALUES(16752, 31650, 'thirty-one thousand six hundred fifty'); INSERT INTO t2 VALUES(16753, 89569, 'eighty-nine thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(16754, 17534, 'seventeen thousand five hundred thirty-four'); INSERT INTO t2 VALUES(16755, 71289, 'seventy-one thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(16756, 79638, 'seventy-nine thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(16757, 26632, 'twenty-six thousand six hundred thirty-two'); INSERT INTO t2 VALUES(16758, 75796, 'seventy-five thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(16759, 66222, 'sixty-six thousand two hundred twenty-two'); INSERT INTO t2 VALUES(16760, 895, 'eight hundred ninety-five'); INSERT INTO t2 VALUES(16761, 74284, 'seventy-four thousand two hundred eighty-four'); INSERT INTO t2 VALUES(16762, 5200, 'five thousand two hundred'); INSERT INTO t2 VALUES(16763, 28231, 'twenty-eight thousand two hundred thirty-one'); INSERT INTO t2 VALUES(16764, 50740, 'fifty thousand seven hundred forty'); INSERT INTO t2 VALUES(16765, 38771, 'thirty-eight thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(16766, 21789, 'twenty-one thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(16767, 29552, 'twenty-nine thousand five hundred fifty-two'); INSERT INTO t2 VALUES(16768, 34713, 'thirty-four thousand seven hundred thirteen'); INSERT INTO t2 VALUES(16769, 29363, 'twenty-nine thousand three hundred sixty-three'); INSERT INTO t2 VALUES(16770, 35504, 'thirty-five thousand five hundred four'); INSERT INTO t2 VALUES(16771, 36599, 'thirty-six thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(16772, 97777, 'ninety-seven thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(16773, 38018, 'thirty-eight thousand eighteen'); INSERT INTO t2 VALUES(16774, 26574, 'twenty-six thousand five hundred seventy-four'); INSERT INTO t2 VALUES(16775, 93001, 'ninety-three thousand one'); INSERT INTO t2 VALUES(16776, 8248, 'eight thousand two hundred forty-eight'); INSERT INTO t2 VALUES(16777, 48301, 'forty-eight thousand three hundred one'); INSERT INTO t2 VALUES(16778, 92101, 'ninety-two thousand one hundred one'); INSERT INTO t2 VALUES(16779, 59231, 'fifty-nine thousand two hundred thirty-one'); INSERT INTO t2 VALUES(16780, 73737, 'seventy-three thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(16781, 20087, 'twenty thousand eighty-seven'); INSERT INTO t2 VALUES(16782, 85653, 'eighty-five thousand six hundred fifty-three'); INSERT INTO t2 VALUES(16783, 98769, 'ninety-eight thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(16784, 99625, 'ninety-nine thousand six hundred twenty-five'); INSERT INTO t2 VALUES(16785, 79337, 'seventy-nine thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(16786, 88711, 'eighty-eight thousand seven hundred eleven'); INSERT INTO t2 VALUES(16787, 9546, 'nine thousand five hundred forty-six'); INSERT INTO t2 VALUES(16788, 91864, 'ninety-one thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(16789, 19490, 'nineteen thousand four hundred ninety'); INSERT INTO t2 VALUES(16790, 17966, 'seventeen thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(16791, 98496, 'ninety-eight thousand four hundred ninety-six'); INSERT INTO t2 VALUES(16792, 59780, 'fifty-nine thousand seven hundred eighty'); INSERT INTO t2 VALUES(16793, 86695, 'eighty-six thousand six hundred ninety-five'); INSERT INTO t2 VALUES(16794, 43773, 'forty-three thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(16795, 93708, 'ninety-three thousand seven hundred eight'); INSERT INTO t2 VALUES(16796, 51788, 'fifty-one thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(16797, 22670, 'twenty-two thousand six hundred seventy'); INSERT INTO t2 VALUES(16798, 3298, 'three thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(16799, 56189, 'fifty-six thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(16800, 80737, 'eighty thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(16801, 83858, 'eighty-three thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(16802, 63661, 'sixty-three thousand six hundred sixty-one'); INSERT INTO t2 VALUES(16803, 54273, 'fifty-four thousand two hundred seventy-three'); INSERT INTO t2 VALUES(16804, 69968, 'sixty-nine thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(16805, 93309, 'ninety-three thousand three hundred nine'); INSERT INTO t2 VALUES(16806, 36574, 'thirty-six thousand five hundred seventy-four'); INSERT INTO t2 VALUES(16807, 69948, 'sixty-nine thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(16808, 53272, 'fifty-three thousand two hundred seventy-two'); INSERT INTO t2 VALUES(16809, 99938, 'ninety-nine thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(16810, 39910, 'thirty-nine thousand nine hundred ten'); INSERT INTO t2 VALUES(16811, 78303, 'seventy-eight thousand three hundred three'); INSERT INTO t2 VALUES(16812, 92131, 'ninety-two thousand one hundred thirty-one'); INSERT INTO t2 VALUES(16813, 30429, 'thirty thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(16814, 5163, 'five thousand one hundred sixty-three'); INSERT INTO t2 VALUES(16815, 83452, 'eighty-three thousand four hundred fifty-two'); INSERT INTO t2 VALUES(16816, 67769, 'sixty-seven thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(16817, 4818, 'four thousand eight hundred eighteen'); INSERT INTO t2 VALUES(16818, 21035, 'twenty-one thousand thirty-five'); INSERT INTO t2 VALUES(16819, 7568, 'seven thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(16820, 50553, 'fifty thousand five hundred fifty-three'); INSERT INTO t2 VALUES(16821, 46052, 'forty-six thousand fifty-two'); INSERT INTO t2 VALUES(16822, 92711, 'ninety-two thousand seven hundred eleven'); INSERT INTO t2 VALUES(16823, 56309, 'fifty-six thousand three hundred nine'); INSERT INTO t2 VALUES(16824, 83852, 'eighty-three thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(16825, 77424, 'seventy-seven thousand four hundred twenty-four'); INSERT INTO t2 VALUES(16826, 71271, 'seventy-one thousand two hundred seventy-one'); INSERT INTO t2 VALUES(16827, 46684, 'forty-six thousand six hundred eighty-four'); INSERT INTO t2 VALUES(16828, 80565, 'eighty thousand five hundred sixty-five'); INSERT INTO t2 VALUES(16829, 53575, 'fifty-three thousand five hundred seventy-five'); INSERT INTO t2 VALUES(16830, 25129, 'twenty-five thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(16831, 1358, 'one thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(16832, 81577, 'eighty-one thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(16833, 78030, 'seventy-eight thousand thirty'); INSERT INTO t2 VALUES(16834, 60487, 'sixty thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(16835, 38143, 'thirty-eight thousand one hundred forty-three'); INSERT INTO t2 VALUES(16836, 26690, 'twenty-six thousand six hundred ninety'); INSERT INTO t2 VALUES(16837, 20257, 'twenty thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(16838, 51050, 'fifty-one thousand fifty'); INSERT INTO t2 VALUES(16839, 84275, 'eighty-four thousand two hundred seventy-five'); INSERT INTO t2 VALUES(16840, 9355, 'nine thousand three hundred fifty-five'); INSERT INTO t2 VALUES(16841, 79084, 'seventy-nine thousand eighty-four'); INSERT INTO t2 VALUES(16842, 48511, 'forty-eight thousand five hundred eleven'); INSERT INTO t2 VALUES(16843, 38572, 'thirty-eight thousand five hundred seventy-two'); INSERT INTO t2 VALUES(16844, 17542, 'seventeen thousand five hundred forty-two'); INSERT INTO t2 VALUES(16845, 84312, 'eighty-four thousand three hundred twelve'); INSERT INTO t2 VALUES(16846, 84045, 'eighty-four thousand forty-five'); INSERT INTO t2 VALUES(16847, 34557, 'thirty-four thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(16848, 43150, 'forty-three thousand one hundred fifty'); INSERT INTO t2 VALUES(16849, 30884, 'thirty thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(16850, 79738, 'seventy-nine thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(16851, 59708, 'fifty-nine thousand seven hundred eight'); INSERT INTO t2 VALUES(16852, 79036, 'seventy-nine thousand thirty-six'); INSERT INTO t2 VALUES(16853, 7889, 'seven thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(16854, 59194, 'fifty-nine thousand one hundred ninety-four'); INSERT INTO t2 VALUES(16855, 59006, 'fifty-nine thousand six'); INSERT INTO t2 VALUES(16856, 61520, 'sixty-one thousand five hundred twenty'); INSERT INTO t2 VALUES(16857, 66134, 'sixty-six thousand one hundred thirty-four'); INSERT INTO t2 VALUES(16858, 55137, 'fifty-five thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(16859, 78653, 'seventy-eight thousand six hundred fifty-three'); INSERT INTO t2 VALUES(16860, 144, 'one hundred forty-four'); INSERT INTO t2 VALUES(16861, 78111, 'seventy-eight thousand one hundred eleven'); INSERT INTO t2 VALUES(16862, 17291, 'seventeen thousand two hundred ninety-one'); INSERT INTO t2 VALUES(16863, 63251, 'sixty-three thousand two hundred fifty-one'); INSERT INTO t2 VALUES(16864, 50649, 'fifty thousand six hundred forty-nine'); INSERT INTO t2 VALUES(16865, 58273, 'fifty-eight thousand two hundred seventy-three'); INSERT INTO t2 VALUES(16866, 80823, 'eighty thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(16867, 21500, 'twenty-one thousand five hundred'); INSERT INTO t2 VALUES(16868, 69765, 'sixty-nine thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(16869, 96778, 'ninety-six thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(16870, 24095, 'twenty-four thousand ninety-five'); INSERT INTO t2 VALUES(16871, 2249, 'two thousand two hundred forty-nine'); INSERT INTO t2 VALUES(16872, 57226, 'fifty-seven thousand two hundred twenty-six'); INSERT INTO t2 VALUES(16873, 11711, 'eleven thousand seven hundred eleven'); INSERT INTO t2 VALUES(16874, 77965, 'seventy-seven thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(16875, 50856, 'fifty thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(16876, 81998, 'eighty-one thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(16877, 9088, 'nine thousand eighty-eight'); INSERT INTO t2 VALUES(16878, 55263, 'fifty-five thousand two hundred sixty-three'); INSERT INTO t2 VALUES(16879, 19610, 'nineteen thousand six hundred ten'); INSERT INTO t2 VALUES(16880, 8199, 'eight thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(16881, 88536, 'eighty-eight thousand five hundred thirty-six'); INSERT INTO t2 VALUES(16882, 537, 'five hundred thirty-seven'); INSERT INTO t2 VALUES(16883, 84043, 'eighty-four thousand forty-three'); INSERT INTO t2 VALUES(16884, 72479, 'seventy-two thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(16885, 99147, 'ninety-nine thousand one hundred forty-seven'); INSERT INTO t2 VALUES(16886, 80163, 'eighty thousand one hundred sixty-three'); INSERT INTO t2 VALUES(16887, 84818, 'eighty-four thousand eight hundred eighteen'); INSERT INTO t2 VALUES(16888, 26336, 'twenty-six thousand three hundred thirty-six'); INSERT INTO t2 VALUES(16889, 13715, 'thirteen thousand seven hundred fifteen'); INSERT INTO t2 VALUES(16890, 46663, 'forty-six thousand six hundred sixty-three'); INSERT INTO t2 VALUES(16891, 77217, 'seventy-seven thousand two hundred seventeen'); INSERT INTO t2 VALUES(16892, 32708, 'thirty-two thousand seven hundred eight'); INSERT INTO t2 VALUES(16893, 52817, 'fifty-two thousand eight hundred seventeen'); INSERT INTO t2 VALUES(16894, 3123, 'three thousand one hundred twenty-three'); INSERT INTO t2 VALUES(16895, 28899, 'twenty-eight thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(16896, 20344, 'twenty thousand three hundred forty-four'); INSERT INTO t2 VALUES(16897, 23896, 'twenty-three thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(16898, 41436, 'forty-one thousand four hundred thirty-six'); INSERT INTO t2 VALUES(16899, 73642, 'seventy-three thousand six hundred forty-two'); INSERT INTO t2 VALUES(16900, 20949, 'twenty thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(16901, 82973, 'eighty-two thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(16902, 54094, 'fifty-four thousand ninety-four'); INSERT INTO t2 VALUES(16903, 61723, 'sixty-one thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(16904, 53202, 'fifty-three thousand two hundred two'); INSERT INTO t2 VALUES(16905, 32281, 'thirty-two thousand two hundred eighty-one'); INSERT INTO t2 VALUES(16906, 18216, 'eighteen thousand two hundred sixteen'); INSERT INTO t2 VALUES(16907, 72970, 'seventy-two thousand nine hundred seventy'); INSERT INTO t2 VALUES(16908, 39624, 'thirty-nine thousand six hundred twenty-four'); INSERT INTO t2 VALUES(16909, 44485, 'forty-four thousand four hundred eighty-five'); INSERT INTO t2 VALUES(16910, 73003, 'seventy-three thousand three'); INSERT INTO t2 VALUES(16911, 38199, 'thirty-eight thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(16912, 85191, 'eighty-five thousand one hundred ninety-one'); INSERT INTO t2 VALUES(16913, 35176, 'thirty-five thousand one hundred seventy-six'); INSERT INTO t2 VALUES(16914, 86845, 'eighty-six thousand eight hundred forty-five'); INSERT INTO t2 VALUES(16915, 75568, 'seventy-five thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(16916, 51429, 'fifty-one thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(16917, 83650, 'eighty-three thousand six hundred fifty'); INSERT INTO t2 VALUES(16918, 62219, 'sixty-two thousand two hundred nineteen'); INSERT INTO t2 VALUES(16919, 43170, 'forty-three thousand one hundred seventy'); INSERT INTO t2 VALUES(16920, 66911, 'sixty-six thousand nine hundred eleven'); INSERT INTO t2 VALUES(16921, 73434, 'seventy-three thousand four hundred thirty-four'); INSERT INTO t2 VALUES(16922, 69968, 'sixty-nine thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(16923, 74481, 'seventy-four thousand four hundred eighty-one'); INSERT INTO t2 VALUES(16924, 71262, 'seventy-one thousand two hundred sixty-two'); INSERT INTO t2 VALUES(16925, 92144, 'ninety-two thousand one hundred forty-four'); INSERT INTO t2 VALUES(16926, 43944, 'forty-three thousand nine hundred forty-four'); INSERT INTO t2 VALUES(16927, 40176, 'forty thousand one hundred seventy-six'); INSERT INTO t2 VALUES(16928, 21060, 'twenty-one thousand sixty'); INSERT INTO t2 VALUES(16929, 64531, 'sixty-four thousand five hundred thirty-one'); INSERT INTO t2 VALUES(16930, 59645, 'fifty-nine thousand six hundred forty-five'); INSERT INTO t2 VALUES(16931, 82117, 'eighty-two thousand one hundred seventeen'); INSERT INTO t2 VALUES(16932, 17350, 'seventeen thousand three hundred fifty'); INSERT INTO t2 VALUES(16933, 26518, 'twenty-six thousand five hundred eighteen'); INSERT INTO t2 VALUES(16934, 72553, 'seventy-two thousand five hundred fifty-three'); INSERT INTO t2 VALUES(16935, 75415, 'seventy-five thousand four hundred fifteen'); INSERT INTO t2 VALUES(16936, 91622, 'ninety-one thousand six hundred twenty-two'); INSERT INTO t2 VALUES(16937, 66857, 'sixty-six thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(16938, 21786, 'twenty-one thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(16939, 47193, 'forty-seven thousand one hundred ninety-three'); INSERT INTO t2 VALUES(16940, 64820, 'sixty-four thousand eight hundred twenty'); INSERT INTO t2 VALUES(16941, 54833, 'fifty-four thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(16942, 1033, 'one thousand thirty-three'); INSERT INTO t2 VALUES(16943, 50329, 'fifty thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(16944, 40680, 'forty thousand six hundred eighty'); INSERT INTO t2 VALUES(16945, 79601, 'seventy-nine thousand six hundred one'); INSERT INTO t2 VALUES(16946, 50810, 'fifty thousand eight hundred ten'); INSERT INTO t2 VALUES(16947, 48369, 'forty-eight thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(16948, 64124, 'sixty-four thousand one hundred twenty-four'); INSERT INTO t2 VALUES(16949, 96680, 'ninety-six thousand six hundred eighty'); INSERT INTO t2 VALUES(16950, 37033, 'thirty-seven thousand thirty-three'); INSERT INTO t2 VALUES(16951, 80560, 'eighty thousand five hundred sixty'); INSERT INTO t2 VALUES(16952, 80273, 'eighty thousand two hundred seventy-three'); INSERT INTO t2 VALUES(16953, 40447, 'forty thousand four hundred forty-seven'); INSERT INTO t2 VALUES(16954, 26470, 'twenty-six thousand four hundred seventy'); INSERT INTO t2 VALUES(16955, 69188, 'sixty-nine thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(16956, 91406, 'ninety-one thousand four hundred six'); INSERT INTO t2 VALUES(16957, 17373, 'seventeen thousand three hundred seventy-three'); INSERT INTO t2 VALUES(16958, 96640, 'ninety-six thousand six hundred forty'); INSERT INTO t2 VALUES(16959, 95479, 'ninety-five thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(16960, 84319, 'eighty-four thousand three hundred nineteen'); INSERT INTO t2 VALUES(16961, 80870, 'eighty thousand eight hundred seventy'); INSERT INTO t2 VALUES(16962, 5162, 'five thousand one hundred sixty-two'); INSERT INTO t2 VALUES(16963, 30566, 'thirty thousand five hundred sixty-six'); INSERT INTO t2 VALUES(16964, 9985, 'nine thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(16965, 35200, 'thirty-five thousand two hundred'); INSERT INTO t2 VALUES(16966, 42246, 'forty-two thousand two hundred forty-six'); INSERT INTO t2 VALUES(16967, 7420, 'seven thousand four hundred twenty'); INSERT INTO t2 VALUES(16968, 75893, 'seventy-five thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(16969, 42667, 'forty-two thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(16970, 1333, 'one thousand three hundred thirty-three'); INSERT INTO t2 VALUES(16971, 4574, 'four thousand five hundred seventy-four'); INSERT INTO t2 VALUES(16972, 84825, 'eighty-four thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(16973, 68546, 'sixty-eight thousand five hundred forty-six'); INSERT INTO t2 VALUES(16974, 91310, 'ninety-one thousand three hundred ten'); INSERT INTO t2 VALUES(16975, 94755, 'ninety-four thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(16976, 63474, 'sixty-three thousand four hundred seventy-four'); INSERT INTO t2 VALUES(16977, 55404, 'fifty-five thousand four hundred four'); INSERT INTO t2 VALUES(16978, 67332, 'sixty-seven thousand three hundred thirty-two'); INSERT INTO t2 VALUES(16979, 51974, 'fifty-one thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(16980, 4123, 'four thousand one hundred twenty-three'); INSERT INTO t2 VALUES(16981, 97780, 'ninety-seven thousand seven hundred eighty'); INSERT INTO t2 VALUES(16982, 7005, 'seven thousand five'); INSERT INTO t2 VALUES(16983, 95316, 'ninety-five thousand three hundred sixteen'); INSERT INTO t2 VALUES(16984, 21480, 'twenty-one thousand four hundred eighty'); INSERT INTO t2 VALUES(16985, 11413, 'eleven thousand four hundred thirteen'); INSERT INTO t2 VALUES(16986, 88116, 'eighty-eight thousand one hundred sixteen'); INSERT INTO t2 VALUES(16987, 40724, 'forty thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(16988, 66342, 'sixty-six thousand three hundred forty-two'); INSERT INTO t2 VALUES(16989, 79624, 'seventy-nine thousand six hundred twenty-four'); INSERT INTO t2 VALUES(16990, 65664, 'sixty-five thousand six hundred sixty-four'); INSERT INTO t2 VALUES(16991, 89811, 'eighty-nine thousand eight hundred eleven'); INSERT INTO t2 VALUES(16992, 85186, 'eighty-five thousand one hundred eighty-six'); INSERT INTO t2 VALUES(16993, 70255, 'seventy thousand two hundred fifty-five'); INSERT INTO t2 VALUES(16994, 24962, 'twenty-four thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(16995, 700, 'seven hundred'); INSERT INTO t2 VALUES(16996, 94613, 'ninety-four thousand six hundred thirteen'); INSERT INTO t2 VALUES(16997, 55395, 'fifty-five thousand three hundred ninety-five'); INSERT INTO t2 VALUES(16998, 41440, 'forty-one thousand four hundred forty'); INSERT INTO t2 VALUES(16999, 83895, 'eighty-three thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(17000, 76898, 'seventy-six thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(17001, 65305, 'sixty-five thousand three hundred five'); INSERT INTO t2 VALUES(17002, 21110, 'twenty-one thousand one hundred ten'); INSERT INTO t2 VALUES(17003, 4343, 'four thousand three hundred forty-three'); INSERT INTO t2 VALUES(17004, 78814, 'seventy-eight thousand eight hundred fourteen'); INSERT INTO t2 VALUES(17005, 34056, 'thirty-four thousand fifty-six'); INSERT INTO t2 VALUES(17006, 17606, 'seventeen thousand six hundred six'); INSERT INTO t2 VALUES(17007, 54536, 'fifty-four thousand five hundred thirty-six'); INSERT INTO t2 VALUES(17008, 3280, 'three thousand two hundred eighty'); INSERT INTO t2 VALUES(17009, 33053, 'thirty-three thousand fifty-three'); INSERT INTO t2 VALUES(17010, 73540, 'seventy-three thousand five hundred forty'); INSERT INTO t2 VALUES(17011, 15375, 'fifteen thousand three hundred seventy-five'); INSERT INTO t2 VALUES(17012, 46052, 'forty-six thousand fifty-two'); INSERT INTO t2 VALUES(17013, 76222, 'seventy-six thousand two hundred twenty-two'); INSERT INTO t2 VALUES(17014, 90058, 'ninety thousand fifty-eight'); INSERT INTO t2 VALUES(17015, 30522, 'thirty thousand five hundred twenty-two'); INSERT INTO t2 VALUES(17016, 58042, 'fifty-eight thousand forty-two'); INSERT INTO t2 VALUES(17017, 71365, 'seventy-one thousand three hundred sixty-five'); INSERT INTO t2 VALUES(17018, 81584, 'eighty-one thousand five hundred eighty-four'); INSERT INTO t2 VALUES(17019, 95687, 'ninety-five thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(17020, 901, 'nine hundred one'); INSERT INTO t2 VALUES(17021, 92202, 'ninety-two thousand two hundred two'); INSERT INTO t2 VALUES(17022, 68063, 'sixty-eight thousand sixty-three'); INSERT INTO t2 VALUES(17023, 15472, 'fifteen thousand four hundred seventy-two'); INSERT INTO t2 VALUES(17024, 92864, 'ninety-two thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(17025, 85073, 'eighty-five thousand seventy-three'); INSERT INTO t2 VALUES(17026, 61548, 'sixty-one thousand five hundred forty-eight'); INSERT INTO t2 VALUES(17027, 88037, 'eighty-eight thousand thirty-seven'); INSERT INTO t2 VALUES(17028, 35407, 'thirty-five thousand four hundred seven'); INSERT INTO t2 VALUES(17029, 58611, 'fifty-eight thousand six hundred eleven'); INSERT INTO t2 VALUES(17030, 51455, 'fifty-one thousand four hundred fifty-five'); INSERT INTO t2 VALUES(17031, 97984, 'ninety-seven thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(17032, 83554, 'eighty-three thousand five hundred fifty-four'); INSERT INTO t2 VALUES(17033, 31688, 'thirty-one thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(17034, 57555, 'fifty-seven thousand five hundred fifty-five'); INSERT INTO t2 VALUES(17035, 54533, 'fifty-four thousand five hundred thirty-three'); INSERT INTO t2 VALUES(17036, 57271, 'fifty-seven thousand two hundred seventy-one'); INSERT INTO t2 VALUES(17037, 18957, 'eighteen thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(17038, 72477, 'seventy-two thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(17039, 30217, 'thirty thousand two hundred seventeen'); INSERT INTO t2 VALUES(17040, 67737, 'sixty-seven thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(17041, 31267, 'thirty-one thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(17042, 28796, 'twenty-eight thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(17043, 56667, 'fifty-six thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(17044, 39204, 'thirty-nine thousand two hundred four'); INSERT INTO t2 VALUES(17045, 11674, 'eleven thousand six hundred seventy-four'); INSERT INTO t2 VALUES(17046, 27446, 'twenty-seven thousand four hundred forty-six'); INSERT INTO t2 VALUES(17047, 41105, 'forty-one thousand one hundred five'); INSERT INTO t2 VALUES(17048, 98525, 'ninety-eight thousand five hundred twenty-five'); INSERT INTO t2 VALUES(17049, 89806, 'eighty-nine thousand eight hundred six'); INSERT INTO t2 VALUES(17050, 46997, 'forty-six thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(17051, 87564, 'eighty-seven thousand five hundred sixty-four'); INSERT INTO t2 VALUES(17052, 73223, 'seventy-three thousand two hundred twenty-three'); INSERT INTO t2 VALUES(17053, 31891, 'thirty-one thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(17054, 66762, 'sixty-six thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(17055, 30880, 'thirty thousand eight hundred eighty'); INSERT INTO t2 VALUES(17056, 76386, 'seventy-six thousand three hundred eighty-six'); INSERT INTO t2 VALUES(17057, 25093, 'twenty-five thousand ninety-three'); INSERT INTO t2 VALUES(17058, 94667, 'ninety-four thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(17059, 8108, 'eight thousand one hundred eight'); INSERT INTO t2 VALUES(17060, 99325, 'ninety-nine thousand three hundred twenty-five'); INSERT INTO t2 VALUES(17061, 66480, 'sixty-six thousand four hundred eighty'); INSERT INTO t2 VALUES(17062, 66167, 'sixty-six thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(17063, 74152, 'seventy-four thousand one hundred fifty-two'); INSERT INTO t2 VALUES(17064, 863, 'eight hundred sixty-three'); INSERT INTO t2 VALUES(17065, 638, 'six hundred thirty-eight'); INSERT INTO t2 VALUES(17066, 7758, 'seven thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(17067, 41152, 'forty-one thousand one hundred fifty-two'); INSERT INTO t2 VALUES(17068, 52229, 'fifty-two thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(17069, 6799, 'six thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(17070, 26714, 'twenty-six thousand seven hundred fourteen'); INSERT INTO t2 VALUES(17071, 45046, 'forty-five thousand forty-six'); INSERT INTO t2 VALUES(17072, 3503, 'three thousand five hundred three'); INSERT INTO t2 VALUES(17073, 58650, 'fifty-eight thousand six hundred fifty'); INSERT INTO t2 VALUES(17074, 81376, 'eighty-one thousand three hundred seventy-six'); INSERT INTO t2 VALUES(17075, 33971, 'thirty-three thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(17076, 8329, 'eight thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(17077, 87736, 'eighty-seven thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(17078, 54033, 'fifty-four thousand thirty-three'); INSERT INTO t2 VALUES(17079, 46063, 'forty-six thousand sixty-three'); INSERT INTO t2 VALUES(17080, 30563, 'thirty thousand five hundred sixty-three'); INSERT INTO t2 VALUES(17081, 56526, 'fifty-six thousand five hundred twenty-six'); INSERT INTO t2 VALUES(17082, 62197, 'sixty-two thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(17083, 84182, 'eighty-four thousand one hundred eighty-two'); INSERT INTO t2 VALUES(17084, 89052, 'eighty-nine thousand fifty-two'); INSERT INTO t2 VALUES(17085, 56765, 'fifty-six thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(17086, 73509, 'seventy-three thousand five hundred nine'); INSERT INTO t2 VALUES(17087, 86672, 'eighty-six thousand six hundred seventy-two'); INSERT INTO t2 VALUES(17088, 91559, 'ninety-one thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(17089, 29836, 'twenty-nine thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(17090, 81734, 'eighty-one thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(17091, 7602, 'seven thousand six hundred two'); INSERT INTO t2 VALUES(17092, 19578, 'nineteen thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(17093, 67603, 'sixty-seven thousand six hundred three'); INSERT INTO t2 VALUES(17094, 86777, 'eighty-six thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(17095, 68304, 'sixty-eight thousand three hundred four'); INSERT INTO t2 VALUES(17096, 74266, 'seventy-four thousand two hundred sixty-six'); INSERT INTO t2 VALUES(17097, 77659, 'seventy-seven thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(17098, 84722, 'eighty-four thousand seven hundred twenty-two'); INSERT INTO t2 VALUES(17099, 90542, 'ninety thousand five hundred forty-two'); INSERT INTO t2 VALUES(17100, 78766, 'seventy-eight thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(17101, 34798, 'thirty-four thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(17102, 34228, 'thirty-four thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(17103, 54264, 'fifty-four thousand two hundred sixty-four'); INSERT INTO t2 VALUES(17104, 46084, 'forty-six thousand eighty-four'); INSERT INTO t2 VALUES(17105, 55182, 'fifty-five thousand one hundred eighty-two'); INSERT INTO t2 VALUES(17106, 32264, 'thirty-two thousand two hundred sixty-four'); INSERT INTO t2 VALUES(17107, 48309, 'forty-eight thousand three hundred nine'); INSERT INTO t2 VALUES(17108, 36498, 'thirty-six thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(17109, 43392, 'forty-three thousand three hundred ninety-two'); INSERT INTO t2 VALUES(17110, 62051, 'sixty-two thousand fifty-one'); INSERT INTO t2 VALUES(17111, 45687, 'forty-five thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(17112, 68579, 'sixty-eight thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(17113, 93920, 'ninety-three thousand nine hundred twenty'); INSERT INTO t2 VALUES(17114, 13601, 'thirteen thousand six hundred one'); INSERT INTO t2 VALUES(17115, 82078, 'eighty-two thousand seventy-eight'); INSERT INTO t2 VALUES(17116, 69420, 'sixty-nine thousand four hundred twenty'); INSERT INTO t2 VALUES(17117, 76797, 'seventy-six thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(17118, 35405, 'thirty-five thousand four hundred five'); INSERT INTO t2 VALUES(17119, 63872, 'sixty-three thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(17120, 91641, 'ninety-one thousand six hundred forty-one'); INSERT INTO t2 VALUES(17121, 70224, 'seventy thousand two hundred twenty-four'); INSERT INTO t2 VALUES(17122, 72907, 'seventy-two thousand nine hundred seven'); INSERT INTO t2 VALUES(17123, 8900, 'eight thousand nine hundred'); INSERT INTO t2 VALUES(17124, 43506, 'forty-three thousand five hundred six'); INSERT INTO t2 VALUES(17125, 88184, 'eighty-eight thousand one hundred eighty-four'); INSERT INTO t2 VALUES(17126, 14156, 'fourteen thousand one hundred fifty-six'); INSERT INTO t2 VALUES(17127, 83988, 'eighty-three thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(17128, 95863, 'ninety-five thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(17129, 85501, 'eighty-five thousand five hundred one'); INSERT INTO t2 VALUES(17130, 25377, 'twenty-five thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(17131, 42550, 'forty-two thousand five hundred fifty'); INSERT INTO t2 VALUES(17132, 23031, 'twenty-three thousand thirty-one'); INSERT INTO t2 VALUES(17133, 8499, 'eight thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(17134, 88478, 'eighty-eight thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(17135, 27972, 'twenty-seven thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(17136, 95246, 'ninety-five thousand two hundred forty-six'); INSERT INTO t2 VALUES(17137, 32861, 'thirty-two thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(17138, 81529, 'eighty-one thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(17139, 84892, 'eighty-four thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(17140, 86423, 'eighty-six thousand four hundred twenty-three'); INSERT INTO t2 VALUES(17141, 39653, 'thirty-nine thousand six hundred fifty-three'); INSERT INTO t2 VALUES(17142, 12833, 'twelve thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(17143, 3016, 'three thousand sixteen'); INSERT INTO t2 VALUES(17144, 91532, 'ninety-one thousand five hundred thirty-two'); INSERT INTO t2 VALUES(17145, 98187, 'ninety-eight thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(17146, 4900, 'four thousand nine hundred'); INSERT INTO t2 VALUES(17147, 22506, 'twenty-two thousand five hundred six'); INSERT INTO t2 VALUES(17148, 42714, 'forty-two thousand seven hundred fourteen'); INSERT INTO t2 VALUES(17149, 12858, 'twelve thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(17150, 86395, 'eighty-six thousand three hundred ninety-five'); INSERT INTO t2 VALUES(17151, 75314, 'seventy-five thousand three hundred fourteen'); INSERT INTO t2 VALUES(17152, 18464, 'eighteen thousand four hundred sixty-four'); INSERT INTO t2 VALUES(17153, 16178, 'sixteen thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(17154, 55292, 'fifty-five thousand two hundred ninety-two'); INSERT INTO t2 VALUES(17155, 74300, 'seventy-four thousand three hundred'); INSERT INTO t2 VALUES(17156, 14345, 'fourteen thousand three hundred forty-five'); INSERT INTO t2 VALUES(17157, 79716, 'seventy-nine thousand seven hundred sixteen'); INSERT INTO t2 VALUES(17158, 56450, 'fifty-six thousand four hundred fifty'); INSERT INTO t2 VALUES(17159, 70772, 'seventy thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(17160, 1548, 'one thousand five hundred forty-eight'); INSERT INTO t2 VALUES(17161, 44228, 'forty-four thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(17162, 93200, 'ninety-three thousand two hundred'); INSERT INTO t2 VALUES(17163, 2014, 'two thousand fourteen'); INSERT INTO t2 VALUES(17164, 12596, 'twelve thousand five hundred ninety-six'); INSERT INTO t2 VALUES(17165, 83499, 'eighty-three thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(17166, 12749, 'twelve thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(17167, 76654, 'seventy-six thousand six hundred fifty-four'); INSERT INTO t2 VALUES(17168, 15145, 'fifteen thousand one hundred forty-five'); INSERT INTO t2 VALUES(17169, 4215, 'four thousand two hundred fifteen'); INSERT INTO t2 VALUES(17170, 33778, 'thirty-three thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(17171, 49717, 'forty-nine thousand seven hundred seventeen'); INSERT INTO t2 VALUES(17172, 68017, 'sixty-eight thousand seventeen'); INSERT INTO t2 VALUES(17173, 64708, 'sixty-four thousand seven hundred eight'); INSERT INTO t2 VALUES(17174, 41002, 'forty-one thousand two'); INSERT INTO t2 VALUES(17175, 62181, 'sixty-two thousand one hundred eighty-one'); INSERT INTO t2 VALUES(17176, 92058, 'ninety-two thousand fifty-eight'); INSERT INTO t2 VALUES(17177, 4886, 'four thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(17178, 64723, 'sixty-four thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(17179, 87866, 'eighty-seven thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(17180, 90830, 'ninety thousand eight hundred thirty'); INSERT INTO t2 VALUES(17181, 211, 'two hundred eleven'); INSERT INTO t2 VALUES(17182, 84668, 'eighty-four thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(17183, 69983, 'sixty-nine thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(17184, 53817, 'fifty-three thousand eight hundred seventeen'); INSERT INTO t2 VALUES(17185, 41119, 'forty-one thousand one hundred nineteen'); INSERT INTO t2 VALUES(17186, 97739, 'ninety-seven thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(17187, 5976, 'five thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(17188, 81647, 'eighty-one thousand six hundred forty-seven'); INSERT INTO t2 VALUES(17189, 83498, 'eighty-three thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(17190, 52981, 'fifty-two thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(17191, 82111, 'eighty-two thousand one hundred eleven'); INSERT INTO t2 VALUES(17192, 69991, 'sixty-nine thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(17193, 15580, 'fifteen thousand five hundred eighty'); INSERT INTO t2 VALUES(17194, 34385, 'thirty-four thousand three hundred eighty-five'); INSERT INTO t2 VALUES(17195, 11275, 'eleven thousand two hundred seventy-five'); INSERT INTO t2 VALUES(17196, 98676, 'ninety-eight thousand six hundred seventy-six'); INSERT INTO t2 VALUES(17197, 10751, 'ten thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(17198, 93225, 'ninety-three thousand two hundred twenty-five'); INSERT INTO t2 VALUES(17199, 83639, 'eighty-three thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(17200, 6676, 'six thousand six hundred seventy-six'); INSERT INTO t2 VALUES(17201, 66995, 'sixty-six thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(17202, 61324, 'sixty-one thousand three hundred twenty-four'); INSERT INTO t2 VALUES(17203, 80165, 'eighty thousand one hundred sixty-five'); INSERT INTO t2 VALUES(17204, 57070, 'fifty-seven thousand seventy'); INSERT INTO t2 VALUES(17205, 21613, 'twenty-one thousand six hundred thirteen'); INSERT INTO t2 VALUES(17206, 65455, 'sixty-five thousand four hundred fifty-five'); INSERT INTO t2 VALUES(17207, 68220, 'sixty-eight thousand two hundred twenty'); INSERT INTO t2 VALUES(17208, 53120, 'fifty-three thousand one hundred twenty'); INSERT INTO t2 VALUES(17209, 77174, 'seventy-seven thousand one hundred seventy-four'); INSERT INTO t2 VALUES(17210, 12018, 'twelve thousand eighteen'); INSERT INTO t2 VALUES(17211, 25315, 'twenty-five thousand three hundred fifteen'); INSERT INTO t2 VALUES(17212, 80467, 'eighty thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(17213, 57054, 'fifty-seven thousand fifty-four'); INSERT INTO t2 VALUES(17214, 74832, 'seventy-four thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(17215, 37741, 'thirty-seven thousand seven hundred forty-one'); INSERT INTO t2 VALUES(17216, 25135, 'twenty-five thousand one hundred thirty-five'); INSERT INTO t2 VALUES(17217, 69785, 'sixty-nine thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(17218, 99936, 'ninety-nine thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(17219, 14674, 'fourteen thousand six hundred seventy-four'); INSERT INTO t2 VALUES(17220, 8674, 'eight thousand six hundred seventy-four'); INSERT INTO t2 VALUES(17221, 77319, 'seventy-seven thousand three hundred nineteen'); INSERT INTO t2 VALUES(17222, 93747, 'ninety-three thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(17223, 74611, 'seventy-four thousand six hundred eleven'); INSERT INTO t2 VALUES(17224, 4687, 'four thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(17225, 54571, 'fifty-four thousand five hundred seventy-one'); INSERT INTO t2 VALUES(17226, 73353, 'seventy-three thousand three hundred fifty-three'); INSERT INTO t2 VALUES(17227, 20275, 'twenty thousand two hundred seventy-five'); INSERT INTO t2 VALUES(17228, 13140, 'thirteen thousand one hundred forty'); INSERT INTO t2 VALUES(17229, 89521, 'eighty-nine thousand five hundred twenty-one'); INSERT INTO t2 VALUES(17230, 29135, 'twenty-nine thousand one hundred thirty-five'); INSERT INTO t2 VALUES(17231, 38123, 'thirty-eight thousand one hundred twenty-three'); INSERT INTO t2 VALUES(17232, 68568, 'sixty-eight thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(17233, 42529, 'forty-two thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(17234, 22732, 'twenty-two thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(17235, 42081, 'forty-two thousand eighty-one'); INSERT INTO t2 VALUES(17236, 27247, 'twenty-seven thousand two hundred forty-seven'); INSERT INTO t2 VALUES(17237, 85138, 'eighty-five thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(17238, 86157, 'eighty-six thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(17239, 41461, 'forty-one thousand four hundred sixty-one'); INSERT INTO t2 VALUES(17240, 34570, 'thirty-four thousand five hundred seventy'); INSERT INTO t2 VALUES(17241, 52775, 'fifty-two thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(17242, 25624, 'twenty-five thousand six hundred twenty-four'); INSERT INTO t2 VALUES(17243, 4443, 'four thousand four hundred forty-three'); INSERT INTO t2 VALUES(17244, 43970, 'forty-three thousand nine hundred seventy'); INSERT INTO t2 VALUES(17245, 76497, 'seventy-six thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(17246, 75163, 'seventy-five thousand one hundred sixty-three'); INSERT INTO t2 VALUES(17247, 68324, 'sixty-eight thousand three hundred twenty-four'); INSERT INTO t2 VALUES(17248, 32366, 'thirty-two thousand three hundred sixty-six'); INSERT INTO t2 VALUES(17249, 46515, 'forty-six thousand five hundred fifteen'); INSERT INTO t2 VALUES(17250, 72462, 'seventy-two thousand four hundred sixty-two'); INSERT INTO t2 VALUES(17251, 73690, 'seventy-three thousand six hundred ninety'); INSERT INTO t2 VALUES(17252, 78971, 'seventy-eight thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(17253, 53915, 'fifty-three thousand nine hundred fifteen'); INSERT INTO t2 VALUES(17254, 45379, 'forty-five thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(17255, 8151, 'eight thousand one hundred fifty-one'); INSERT INTO t2 VALUES(17256, 74124, 'seventy-four thousand one hundred twenty-four'); INSERT INTO t2 VALUES(17257, 42208, 'forty-two thousand two hundred eight'); INSERT INTO t2 VALUES(17258, 64365, 'sixty-four thousand three hundred sixty-five'); INSERT INTO t2 VALUES(17259, 62381, 'sixty-two thousand three hundred eighty-one'); INSERT INTO t2 VALUES(17260, 6153, 'six thousand one hundred fifty-three'); INSERT INTO t2 VALUES(17261, 96485, 'ninety-six thousand four hundred eighty-five'); INSERT INTO t2 VALUES(17262, 78041, 'seventy-eight thousand forty-one'); INSERT INTO t2 VALUES(17263, 64751, 'sixty-four thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(17264, 16555, 'sixteen thousand five hundred fifty-five'); INSERT INTO t2 VALUES(17265, 59323, 'fifty-nine thousand three hundred twenty-three'); INSERT INTO t2 VALUES(17266, 83636, 'eighty-three thousand six hundred thirty-six'); INSERT INTO t2 VALUES(17267, 97504, 'ninety-seven thousand five hundred four'); INSERT INTO t2 VALUES(17268, 15840, 'fifteen thousand eight hundred forty'); INSERT INTO t2 VALUES(17269, 95684, 'ninety-five thousand six hundred eighty-four'); INSERT INTO t2 VALUES(17270, 64917, 'sixty-four thousand nine hundred seventeen'); INSERT INTO t2 VALUES(17271, 51726, 'fifty-one thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(17272, 41265, 'forty-one thousand two hundred sixty-five'); INSERT INTO t2 VALUES(17273, 86079, 'eighty-six thousand seventy-nine'); INSERT INTO t2 VALUES(17274, 19818, 'nineteen thousand eight hundred eighteen'); INSERT INTO t2 VALUES(17275, 3601, 'three thousand six hundred one'); INSERT INTO t2 VALUES(17276, 63636, 'sixty-three thousand six hundred thirty-six'); INSERT INTO t2 VALUES(17277, 98518, 'ninety-eight thousand five hundred eighteen'); INSERT INTO t2 VALUES(17278, 99102, 'ninety-nine thousand one hundred two'); INSERT INTO t2 VALUES(17279, 79815, 'seventy-nine thousand eight hundred fifteen'); INSERT INTO t2 VALUES(17280, 92037, 'ninety-two thousand thirty-seven'); INSERT INTO t2 VALUES(17281, 76336, 'seventy-six thousand three hundred thirty-six'); INSERT INTO t2 VALUES(17282, 54144, 'fifty-four thousand one hundred forty-four'); INSERT INTO t2 VALUES(17283, 68520, 'sixty-eight thousand five hundred twenty'); INSERT INTO t2 VALUES(17284, 97240, 'ninety-seven thousand two hundred forty'); INSERT INTO t2 VALUES(17285, 69414, 'sixty-nine thousand four hundred fourteen'); INSERT INTO t2 VALUES(17286, 73228, 'seventy-three thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(17287, 47121, 'forty-seven thousand one hundred twenty-one'); INSERT INTO t2 VALUES(17288, 25047, 'twenty-five thousand forty-seven'); INSERT INTO t2 VALUES(17289, 74276, 'seventy-four thousand two hundred seventy-six'); INSERT INTO t2 VALUES(17290, 78508, 'seventy-eight thousand five hundred eight'); INSERT INTO t2 VALUES(17291, 18493, 'eighteen thousand four hundred ninety-three'); INSERT INTO t2 VALUES(17292, 38166, 'thirty-eight thousand one hundred sixty-six'); INSERT INTO t2 VALUES(17293, 4325, 'four thousand three hundred twenty-five'); INSERT INTO t2 VALUES(17294, 29170, 'twenty-nine thousand one hundred seventy'); INSERT INTO t2 VALUES(17295, 99618, 'ninety-nine thousand six hundred eighteen'); INSERT INTO t2 VALUES(17296, 12260, 'twelve thousand two hundred sixty'); INSERT INTO t2 VALUES(17297, 78527, 'seventy-eight thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(17298, 77638, 'seventy-seven thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(17299, 51436, 'fifty-one thousand four hundred thirty-six'); INSERT INTO t2 VALUES(17300, 13708, 'thirteen thousand seven hundred eight'); INSERT INTO t2 VALUES(17301, 80836, 'eighty thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(17302, 60009, 'sixty thousand nine'); INSERT INTO t2 VALUES(17303, 78734, 'seventy-eight thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(17304, 21329, 'twenty-one thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(17305, 2069, 'two thousand sixty-nine'); INSERT INTO t2 VALUES(17306, 74423, 'seventy-four thousand four hundred twenty-three'); INSERT INTO t2 VALUES(17307, 17643, 'seventeen thousand six hundred forty-three'); INSERT INTO t2 VALUES(17308, 19965, 'nineteen thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(17309, 97627, 'ninety-seven thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(17310, 65989, 'sixty-five thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(17311, 23138, 'twenty-three thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(17312, 9974, 'nine thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(17313, 33534, 'thirty-three thousand five hundred thirty-four'); INSERT INTO t2 VALUES(17314, 33175, 'thirty-three thousand one hundred seventy-five'); INSERT INTO t2 VALUES(17315, 56319, 'fifty-six thousand three hundred nineteen'); INSERT INTO t2 VALUES(17316, 96535, 'ninety-six thousand five hundred thirty-five'); INSERT INTO t2 VALUES(17317, 82944, 'eighty-two thousand nine hundred forty-four'); INSERT INTO t2 VALUES(17318, 98273, 'ninety-eight thousand two hundred seventy-three'); INSERT INTO t2 VALUES(17319, 19810, 'nineteen thousand eight hundred ten'); INSERT INTO t2 VALUES(17320, 2565, 'two thousand five hundred sixty-five'); INSERT INTO t2 VALUES(17321, 30171, 'thirty thousand one hundred seventy-one'); INSERT INTO t2 VALUES(17322, 33775, 'thirty-three thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(17323, 29606, 'twenty-nine thousand six hundred six'); INSERT INTO t2 VALUES(17324, 18029, 'eighteen thousand twenty-nine'); INSERT INTO t2 VALUES(17325, 3869, 'three thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(17326, 90548, 'ninety thousand five hundred forty-eight'); INSERT INTO t2 VALUES(17327, 71791, 'seventy-one thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(17328, 5031, 'five thousand thirty-one'); INSERT INTO t2 VALUES(17329, 53723, 'fifty-three thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(17330, 46932, 'forty-six thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(17331, 95528, 'ninety-five thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(17332, 93529, 'ninety-three thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(17333, 7926, 'seven thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(17334, 81680, 'eighty-one thousand six hundred eighty'); INSERT INTO t2 VALUES(17335, 22336, 'twenty-two thousand three hundred thirty-six'); INSERT INTO t2 VALUES(17336, 21718, 'twenty-one thousand seven hundred eighteen'); INSERT INTO t2 VALUES(17337, 70106, 'seventy thousand one hundred six'); INSERT INTO t2 VALUES(17338, 45527, 'forty-five thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(17339, 22561, 'twenty-two thousand five hundred sixty-one'); INSERT INTO t2 VALUES(17340, 688, 'six hundred eighty-eight'); INSERT INTO t2 VALUES(17341, 52976, 'fifty-two thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(17342, 90461, 'ninety thousand four hundred sixty-one'); INSERT INTO t2 VALUES(17343, 39450, 'thirty-nine thousand four hundred fifty'); INSERT INTO t2 VALUES(17344, 70554, 'seventy thousand five hundred fifty-four'); INSERT INTO t2 VALUES(17345, 41115, 'forty-one thousand one hundred fifteen'); INSERT INTO t2 VALUES(17346, 98998, 'ninety-eight thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(17347, 78136, 'seventy-eight thousand one hundred thirty-six'); INSERT INTO t2 VALUES(17348, 52418, 'fifty-two thousand four hundred eighteen'); INSERT INTO t2 VALUES(17349, 55026, 'fifty-five thousand twenty-six'); INSERT INTO t2 VALUES(17350, 93818, 'ninety-three thousand eight hundred eighteen'); INSERT INTO t2 VALUES(17351, 82360, 'eighty-two thousand three hundred sixty'); INSERT INTO t2 VALUES(17352, 81551, 'eighty-one thousand five hundred fifty-one'); INSERT INTO t2 VALUES(17353, 55924, 'fifty-five thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(17354, 19569, 'nineteen thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(17355, 1090, 'one thousand ninety'); INSERT INTO t2 VALUES(17356, 22790, 'twenty-two thousand seven hundred ninety'); INSERT INTO t2 VALUES(17357, 3355, 'three thousand three hundred fifty-five'); INSERT INTO t2 VALUES(17358, 74313, 'seventy-four thousand three hundred thirteen'); INSERT INTO t2 VALUES(17359, 87548, 'eighty-seven thousand five hundred forty-eight'); INSERT INTO t2 VALUES(17360, 40000, 'forty thousand'); INSERT INTO t2 VALUES(17361, 81975, 'eighty-one thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(17362, 59330, 'fifty-nine thousand three hundred thirty'); INSERT INTO t2 VALUES(17363, 17792, 'seventeen thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(17364, 50008, 'fifty thousand eight'); INSERT INTO t2 VALUES(17365, 28168, 'twenty-eight thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(17366, 87561, 'eighty-seven thousand five hundred sixty-one'); INSERT INTO t2 VALUES(17367, 53163, 'fifty-three thousand one hundred sixty-three'); INSERT INTO t2 VALUES(17368, 16819, 'sixteen thousand eight hundred nineteen'); INSERT INTO t2 VALUES(17369, 41086, 'forty-one thousand eighty-six'); INSERT INTO t2 VALUES(17370, 30976, 'thirty thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(17371, 39645, 'thirty-nine thousand six hundred forty-five'); INSERT INTO t2 VALUES(17372, 4872, 'four thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(17373, 21678, 'twenty-one thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(17374, 4820, 'four thousand eight hundred twenty'); INSERT INTO t2 VALUES(17375, 90094, 'ninety thousand ninety-four'); INSERT INTO t2 VALUES(17376, 23632, 'twenty-three thousand six hundred thirty-two'); INSERT INTO t2 VALUES(17377, 25243, 'twenty-five thousand two hundred forty-three'); INSERT INTO t2 VALUES(17378, 73537, 'seventy-three thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(17379, 33276, 'thirty-three thousand two hundred seventy-six'); INSERT INTO t2 VALUES(17380, 24621, 'twenty-four thousand six hundred twenty-one'); INSERT INTO t2 VALUES(17381, 64038, 'sixty-four thousand thirty-eight'); INSERT INTO t2 VALUES(17382, 67006, 'sixty-seven thousand six'); INSERT INTO t2 VALUES(17383, 28470, 'twenty-eight thousand four hundred seventy'); INSERT INTO t2 VALUES(17384, 23544, 'twenty-three thousand five hundred forty-four'); INSERT INTO t2 VALUES(17385, 22191, 'twenty-two thousand one hundred ninety-one'); INSERT INTO t2 VALUES(17386, 34798, 'thirty-four thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(17387, 75247, 'seventy-five thousand two hundred forty-seven'); INSERT INTO t2 VALUES(17388, 19299, 'nineteen thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(17389, 81115, 'eighty-one thousand one hundred fifteen'); INSERT INTO t2 VALUES(17390, 44912, 'forty-four thousand nine hundred twelve'); INSERT INTO t2 VALUES(17391, 68529, 'sixty-eight thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(17392, 87856, 'eighty-seven thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(17393, 40439, 'forty thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(17394, 8472, 'eight thousand four hundred seventy-two'); INSERT INTO t2 VALUES(17395, 18075, 'eighteen thousand seventy-five'); INSERT INTO t2 VALUES(17396, 34365, 'thirty-four thousand three hundred sixty-five'); INSERT INTO t2 VALUES(17397, 6748, 'six thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(17398, 60657, 'sixty thousand six hundred fifty-seven'); INSERT INTO t2 VALUES(17399, 23229, 'twenty-three thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(17400, 47854, 'forty-seven thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(17401, 32587, 'thirty-two thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(17402, 69613, 'sixty-nine thousand six hundred thirteen'); INSERT INTO t2 VALUES(17403, 53980, 'fifty-three thousand nine hundred eighty'); INSERT INTO t2 VALUES(17404, 73534, 'seventy-three thousand five hundred thirty-four'); INSERT INTO t2 VALUES(17405, 61194, 'sixty-one thousand one hundred ninety-four'); INSERT INTO t2 VALUES(17406, 55794, 'fifty-five thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(17407, 87123, 'eighty-seven thousand one hundred twenty-three'); INSERT INTO t2 VALUES(17408, 51183, 'fifty-one thousand one hundred eighty-three'); INSERT INTO t2 VALUES(17409, 78046, 'seventy-eight thousand forty-six'); INSERT INTO t2 VALUES(17410, 8089, 'eight thousand eighty-nine'); INSERT INTO t2 VALUES(17411, 59953, 'fifty-nine thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(17412, 54022, 'fifty-four thousand twenty-two'); INSERT INTO t2 VALUES(17413, 63243, 'sixty-three thousand two hundred forty-three'); INSERT INTO t2 VALUES(17414, 49922, 'forty-nine thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(17415, 1815, 'one thousand eight hundred fifteen'); INSERT INTO t2 VALUES(17416, 593, 'five hundred ninety-three'); INSERT INTO t2 VALUES(17417, 78631, 'seventy-eight thousand six hundred thirty-one'); INSERT INTO t2 VALUES(17418, 39771, 'thirty-nine thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(17419, 592, 'five hundred ninety-two'); INSERT INTO t2 VALUES(17420, 69837, 'sixty-nine thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(17421, 80466, 'eighty thousand four hundred sixty-six'); INSERT INTO t2 VALUES(17422, 68067, 'sixty-eight thousand sixty-seven'); INSERT INTO t2 VALUES(17423, 75514, 'seventy-five thousand five hundred fourteen'); INSERT INTO t2 VALUES(17424, 48793, 'forty-eight thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(17425, 77150, 'seventy-seven thousand one hundred fifty'); INSERT INTO t2 VALUES(17426, 21912, 'twenty-one thousand nine hundred twelve'); INSERT INTO t2 VALUES(17427, 32284, 'thirty-two thousand two hundred eighty-four'); INSERT INTO t2 VALUES(17428, 15178, 'fifteen thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(17429, 75465, 'seventy-five thousand four hundred sixty-five'); INSERT INTO t2 VALUES(17430, 74181, 'seventy-four thousand one hundred eighty-one'); INSERT INTO t2 VALUES(17431, 85713, 'eighty-five thousand seven hundred thirteen'); INSERT INTO t2 VALUES(17432, 13154, 'thirteen thousand one hundred fifty-four'); INSERT INTO t2 VALUES(17433, 31601, 'thirty-one thousand six hundred one'); INSERT INTO t2 VALUES(17434, 43690, 'forty-three thousand six hundred ninety'); INSERT INTO t2 VALUES(17435, 13959, 'thirteen thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(17436, 15305, 'fifteen thousand three hundred five'); INSERT INTO t2 VALUES(17437, 16736, 'sixteen thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(17438, 58541, 'fifty-eight thousand five hundred forty-one'); INSERT INTO t2 VALUES(17439, 86269, 'eighty-six thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(17440, 34013, 'thirty-four thousand thirteen'); INSERT INTO t2 VALUES(17441, 61139, 'sixty-one thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(17442, 74970, 'seventy-four thousand nine hundred seventy'); INSERT INTO t2 VALUES(17443, 14037, 'fourteen thousand thirty-seven'); INSERT INTO t2 VALUES(17444, 61203, 'sixty-one thousand two hundred three'); INSERT INTO t2 VALUES(17445, 6286, 'six thousand two hundred eighty-six'); INSERT INTO t2 VALUES(17446, 87866, 'eighty-seven thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(17447, 64733, 'sixty-four thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(17448, 98527, 'ninety-eight thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(17449, 82137, 'eighty-two thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(17450, 11654, 'eleven thousand six hundred fifty-four'); INSERT INTO t2 VALUES(17451, 34752, 'thirty-four thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(17452, 38514, 'thirty-eight thousand five hundred fourteen'); INSERT INTO t2 VALUES(17453, 29696, 'twenty-nine thousand six hundred ninety-six'); INSERT INTO t2 VALUES(17454, 42080, 'forty-two thousand eighty'); INSERT INTO t2 VALUES(17455, 60695, 'sixty thousand six hundred ninety-five'); INSERT INTO t2 VALUES(17456, 76575, 'seventy-six thousand five hundred seventy-five'); INSERT INTO t2 VALUES(17457, 65233, 'sixty-five thousand two hundred thirty-three'); INSERT INTO t2 VALUES(17458, 47021, 'forty-seven thousand twenty-one'); INSERT INTO t2 VALUES(17459, 48397, 'forty-eight thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(17460, 81046, 'eighty-one thousand forty-six'); INSERT INTO t2 VALUES(17461, 99274, 'ninety-nine thousand two hundred seventy-four'); INSERT INTO t2 VALUES(17462, 60267, 'sixty thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(17463, 94097, 'ninety-four thousand ninety-seven'); INSERT INTO t2 VALUES(17464, 14852, 'fourteen thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(17465, 26676, 'twenty-six thousand six hundred seventy-six'); INSERT INTO t2 VALUES(17466, 95851, 'ninety-five thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(17467, 2585, 'two thousand five hundred eighty-five'); INSERT INTO t2 VALUES(17468, 4803, 'four thousand eight hundred three'); INSERT INTO t2 VALUES(17469, 16920, 'sixteen thousand nine hundred twenty'); INSERT INTO t2 VALUES(17470, 60986, 'sixty thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(17471, 55847, 'fifty-five thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(17472, 68490, 'sixty-eight thousand four hundred ninety'); INSERT INTO t2 VALUES(17473, 69215, 'sixty-nine thousand two hundred fifteen'); INSERT INTO t2 VALUES(17474, 10660, 'ten thousand six hundred sixty'); INSERT INTO t2 VALUES(17475, 29114, 'twenty-nine thousand one hundred fourteen'); INSERT INTO t2 VALUES(17476, 31781, 'thirty-one thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(17477, 29191, 'twenty-nine thousand one hundred ninety-one'); INSERT INTO t2 VALUES(17478, 52378, 'fifty-two thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(17479, 14022, 'fourteen thousand twenty-two'); INSERT INTO t2 VALUES(17480, 36873, 'thirty-six thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(17481, 81951, 'eighty-one thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(17482, 1003, 'one thousand three'); INSERT INTO t2 VALUES(17483, 87526, 'eighty-seven thousand five hundred twenty-six'); INSERT INTO t2 VALUES(17484, 74753, 'seventy-four thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(17485, 79057, 'seventy-nine thousand fifty-seven'); INSERT INTO t2 VALUES(17486, 13075, 'thirteen thousand seventy-five'); INSERT INTO t2 VALUES(17487, 51381, 'fifty-one thousand three hundred eighty-one'); INSERT INTO t2 VALUES(17488, 83654, 'eighty-three thousand six hundred fifty-four'); INSERT INTO t2 VALUES(17489, 18811, 'eighteen thousand eight hundred eleven'); INSERT INTO t2 VALUES(17490, 98219, 'ninety-eight thousand two hundred nineteen'); INSERT INTO t2 VALUES(17491, 80679, 'eighty thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(17492, 60515, 'sixty thousand five hundred fifteen'); INSERT INTO t2 VALUES(17493, 32984, 'thirty-two thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(17494, 75016, 'seventy-five thousand sixteen'); INSERT INTO t2 VALUES(17495, 20309, 'twenty thousand three hundred nine'); INSERT INTO t2 VALUES(17496, 25709, 'twenty-five thousand seven hundred nine'); INSERT INTO t2 VALUES(17497, 23825, 'twenty-three thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(17498, 46275, 'forty-six thousand two hundred seventy-five'); INSERT INTO t2 VALUES(17499, 26567, 'twenty-six thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(17500, 18382, 'eighteen thousand three hundred eighty-two'); INSERT INTO t2 VALUES(17501, 90156, 'ninety thousand one hundred fifty-six'); INSERT INTO t2 VALUES(17502, 39556, 'thirty-nine thousand five hundred fifty-six'); INSERT INTO t2 VALUES(17503, 26543, 'twenty-six thousand five hundred forty-three'); INSERT INTO t2 VALUES(17504, 42789, 'forty-two thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(17505, 8036, 'eight thousand thirty-six'); INSERT INTO t2 VALUES(17506, 7760, 'seven thousand seven hundred sixty'); INSERT INTO t2 VALUES(17507, 67082, 'sixty-seven thousand eighty-two'); INSERT INTO t2 VALUES(17508, 43117, 'forty-three thousand one hundred seventeen'); INSERT INTO t2 VALUES(17509, 74691, 'seventy-four thousand six hundred ninety-one'); INSERT INTO t2 VALUES(17510, 74995, 'seventy-four thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(17511, 75096, 'seventy-five thousand ninety-six'); INSERT INTO t2 VALUES(17512, 14771, 'fourteen thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(17513, 92557, 'ninety-two thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(17514, 86848, 'eighty-six thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(17515, 69858, 'sixty-nine thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(17516, 51142, 'fifty-one thousand one hundred forty-two'); INSERT INTO t2 VALUES(17517, 88028, 'eighty-eight thousand twenty-eight'); INSERT INTO t2 VALUES(17518, 32494, 'thirty-two thousand four hundred ninety-four'); INSERT INTO t2 VALUES(17519, 65874, 'sixty-five thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(17520, 42536, 'forty-two thousand five hundred thirty-six'); INSERT INTO t2 VALUES(17521, 45844, 'forty-five thousand eight hundred forty-four'); INSERT INTO t2 VALUES(17522, 87207, 'eighty-seven thousand two hundred seven'); INSERT INTO t2 VALUES(17523, 47107, 'forty-seven thousand one hundred seven'); INSERT INTO t2 VALUES(17524, 69097, 'sixty-nine thousand ninety-seven'); INSERT INTO t2 VALUES(17525, 94085, 'ninety-four thousand eighty-five'); INSERT INTO t2 VALUES(17526, 31850, 'thirty-one thousand eight hundred fifty'); INSERT INTO t2 VALUES(17527, 784, 'seven hundred eighty-four'); INSERT INTO t2 VALUES(17528, 63301, 'sixty-three thousand three hundred one'); INSERT INTO t2 VALUES(17529, 53734, 'fifty-three thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(17530, 65987, 'sixty-five thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(17531, 10, 'ten'); INSERT INTO t2 VALUES(17532, 8151, 'eight thousand one hundred fifty-one'); INSERT INTO t2 VALUES(17533, 30655, 'thirty thousand six hundred fifty-five'); INSERT INTO t2 VALUES(17534, 9301, 'nine thousand three hundred one'); INSERT INTO t2 VALUES(17535, 53040, 'fifty-three thousand forty'); INSERT INTO t2 VALUES(17536, 63417, 'sixty-three thousand four hundred seventeen'); INSERT INTO t2 VALUES(17537, 90407, 'ninety thousand four hundred seven'); INSERT INTO t2 VALUES(17538, 53487, 'fifty-three thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(17539, 48281, 'forty-eight thousand two hundred eighty-one'); INSERT INTO t2 VALUES(17540, 11619, 'eleven thousand six hundred nineteen'); INSERT INTO t2 VALUES(17541, 57508, 'fifty-seven thousand five hundred eight'); INSERT INTO t2 VALUES(17542, 78920, 'seventy-eight thousand nine hundred twenty'); INSERT INTO t2 VALUES(17543, 33433, 'thirty-three thousand four hundred thirty-three'); INSERT INTO t2 VALUES(17544, 14615, 'fourteen thousand six hundred fifteen'); INSERT INTO t2 VALUES(17545, 91128, 'ninety-one thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(17546, 63688, 'sixty-three thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(17547, 20464, 'twenty thousand four hundred sixty-four'); INSERT INTO t2 VALUES(17548, 57080, 'fifty-seven thousand eighty'); INSERT INTO t2 VALUES(17549, 75088, 'seventy-five thousand eighty-eight'); INSERT INTO t2 VALUES(17550, 53567, 'fifty-three thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(17551, 98573, 'ninety-eight thousand five hundred seventy-three'); INSERT INTO t2 VALUES(17552, 10065, 'ten thousand sixty-five'); INSERT INTO t2 VALUES(17553, 71457, 'seventy-one thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(17554, 18394, 'eighteen thousand three hundred ninety-four'); INSERT INTO t2 VALUES(17555, 81965, 'eighty-one thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(17556, 60340, 'sixty thousand three hundred forty'); INSERT INTO t2 VALUES(17557, 87855, 'eighty-seven thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(17558, 34763, 'thirty-four thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(17559, 50361, 'fifty thousand three hundred sixty-one'); INSERT INTO t2 VALUES(17560, 35538, 'thirty-five thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(17561, 85747, 'eighty-five thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(17562, 50403, 'fifty thousand four hundred three'); INSERT INTO t2 VALUES(17563, 5505, 'five thousand five hundred five'); INSERT INTO t2 VALUES(17564, 42224, 'forty-two thousand two hundred twenty-four'); INSERT INTO t2 VALUES(17565, 1640, 'one thousand six hundred forty'); INSERT INTO t2 VALUES(17566, 69530, 'sixty-nine thousand five hundred thirty'); INSERT INTO t2 VALUES(17567, 3996, 'three thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(17568, 94782, 'ninety-four thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(17569, 64938, 'sixty-four thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(17570, 83231, 'eighty-three thousand two hundred thirty-one'); INSERT INTO t2 VALUES(17571, 96826, 'ninety-six thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(17572, 46506, 'forty-six thousand five hundred six'); INSERT INTO t2 VALUES(17573, 91450, 'ninety-one thousand four hundred fifty'); INSERT INTO t2 VALUES(17574, 55155, 'fifty-five thousand one hundred fifty-five'); INSERT INTO t2 VALUES(17575, 73726, 'seventy-three thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(17576, 42395, 'forty-two thousand three hundred ninety-five'); INSERT INTO t2 VALUES(17577, 33837, 'thirty-three thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(17578, 35891, 'thirty-five thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(17579, 80658, 'eighty thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(17580, 5275, 'five thousand two hundred seventy-five'); INSERT INTO t2 VALUES(17581, 34057, 'thirty-four thousand fifty-seven'); INSERT INTO t2 VALUES(17582, 28571, 'twenty-eight thousand five hundred seventy-one'); INSERT INTO t2 VALUES(17583, 80810, 'eighty thousand eight hundred ten'); INSERT INTO t2 VALUES(17584, 29970, 'twenty-nine thousand nine hundred seventy'); INSERT INTO t2 VALUES(17585, 93375, 'ninety-three thousand three hundred seventy-five'); INSERT INTO t2 VALUES(17586, 60814, 'sixty thousand eight hundred fourteen'); INSERT INTO t2 VALUES(17587, 14497, 'fourteen thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(17588, 66959, 'sixty-six thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(17589, 94576, 'ninety-four thousand five hundred seventy-six'); INSERT INTO t2 VALUES(17590, 7204, 'seven thousand two hundred four'); INSERT INTO t2 VALUES(17591, 58077, 'fifty-eight thousand seventy-seven'); INSERT INTO t2 VALUES(17592, 69262, 'sixty-nine thousand two hundred sixty-two'); INSERT INTO t2 VALUES(17593, 39440, 'thirty-nine thousand four hundred forty'); INSERT INTO t2 VALUES(17594, 5776, 'five thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(17595, 3577, 'three thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(17596, 62317, 'sixty-two thousand three hundred seventeen'); INSERT INTO t2 VALUES(17597, 28699, 'twenty-eight thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(17598, 47334, 'forty-seven thousand three hundred thirty-four'); INSERT INTO t2 VALUES(17599, 7365, 'seven thousand three hundred sixty-five'); INSERT INTO t2 VALUES(17600, 32115, 'thirty-two thousand one hundred fifteen'); INSERT INTO t2 VALUES(17601, 81957, 'eighty-one thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(17602, 95412, 'ninety-five thousand four hundred twelve'); INSERT INTO t2 VALUES(17603, 57706, 'fifty-seven thousand seven hundred six'); INSERT INTO t2 VALUES(17604, 43495, 'forty-three thousand four hundred ninety-five'); INSERT INTO t2 VALUES(17605, 7886, 'seven thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(17606, 84909, 'eighty-four thousand nine hundred nine'); INSERT INTO t2 VALUES(17607, 62411, 'sixty-two thousand four hundred eleven'); INSERT INTO t2 VALUES(17608, 2932, 'two thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(17609, 59963, 'fifty-nine thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(17610, 81409, 'eighty-one thousand four hundred nine'); INSERT INTO t2 VALUES(17611, 39271, 'thirty-nine thousand two hundred seventy-one'); INSERT INTO t2 VALUES(17612, 68812, 'sixty-eight thousand eight hundred twelve'); INSERT INTO t2 VALUES(17613, 86126, 'eighty-six thousand one hundred twenty-six'); INSERT INTO t2 VALUES(17614, 56839, 'fifty-six thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(17615, 97575, 'ninety-seven thousand five hundred seventy-five'); INSERT INTO t2 VALUES(17616, 20757, 'twenty thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(17617, 92670, 'ninety-two thousand six hundred seventy'); INSERT INTO t2 VALUES(17618, 18335, 'eighteen thousand three hundred thirty-five'); INSERT INTO t2 VALUES(17619, 50036, 'fifty thousand thirty-six'); INSERT INTO t2 VALUES(17620, 62174, 'sixty-two thousand one hundred seventy-four'); INSERT INTO t2 VALUES(17621, 28314, 'twenty-eight thousand three hundred fourteen'); INSERT INTO t2 VALUES(17622, 89834, 'eighty-nine thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(17623, 30820, 'thirty thousand eight hundred twenty'); INSERT INTO t2 VALUES(17624, 29684, 'twenty-nine thousand six hundred eighty-four'); INSERT INTO t2 VALUES(17625, 57920, 'fifty-seven thousand nine hundred twenty'); INSERT INTO t2 VALUES(17626, 71996, 'seventy-one thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(17627, 86372, 'eighty-six thousand three hundred seventy-two'); INSERT INTO t2 VALUES(17628, 41908, 'forty-one thousand nine hundred eight'); INSERT INTO t2 VALUES(17629, 64805, 'sixty-four thousand eight hundred five'); INSERT INTO t2 VALUES(17630, 56776, 'fifty-six thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(17631, 77770, 'seventy-seven thousand seven hundred seventy'); INSERT INTO t2 VALUES(17632, 2377, 'two thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(17633, 25462, 'twenty-five thousand four hundred sixty-two'); INSERT INTO t2 VALUES(17634, 43426, 'forty-three thousand four hundred twenty-six'); INSERT INTO t2 VALUES(17635, 56638, 'fifty-six thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(17636, 9466, 'nine thousand four hundred sixty-six'); INSERT INTO t2 VALUES(17637, 45623, 'forty-five thousand six hundred twenty-three'); INSERT INTO t2 VALUES(17638, 37195, 'thirty-seven thousand one hundred ninety-five'); INSERT INTO t2 VALUES(17639, 54882, 'fifty-four thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(17640, 88345, 'eighty-eight thousand three hundred forty-five'); INSERT INTO t2 VALUES(17641, 47347, 'forty-seven thousand three hundred forty-seven'); INSERT INTO t2 VALUES(17642, 95118, 'ninety-five thousand one hundred eighteen'); INSERT INTO t2 VALUES(17643, 32358, 'thirty-two thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(17644, 90089, 'ninety thousand eighty-nine'); INSERT INTO t2 VALUES(17645, 1529, 'one thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(17646, 35685, 'thirty-five thousand six hundred eighty-five'); INSERT INTO t2 VALUES(17647, 39437, 'thirty-nine thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(17648, 18190, 'eighteen thousand one hundred ninety'); INSERT INTO t2 VALUES(17649, 38978, 'thirty-eight thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(17650, 1791, 'one thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(17651, 74754, 'seventy-four thousand seven hundred fifty-four'); INSERT INTO t2 VALUES(17652, 91202, 'ninety-one thousand two hundred two'); INSERT INTO t2 VALUES(17653, 21518, 'twenty-one thousand five hundred eighteen'); INSERT INTO t2 VALUES(17654, 20430, 'twenty thousand four hundred thirty'); INSERT INTO t2 VALUES(17655, 2415, 'two thousand four hundred fifteen'); INSERT INTO t2 VALUES(17656, 92893, 'ninety-two thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(17657, 89810, 'eighty-nine thousand eight hundred ten'); INSERT INTO t2 VALUES(17658, 11670, 'eleven thousand six hundred seventy'); INSERT INTO t2 VALUES(17659, 86149, 'eighty-six thousand one hundred forty-nine'); INSERT INTO t2 VALUES(17660, 99042, 'ninety-nine thousand forty-two'); INSERT INTO t2 VALUES(17661, 94584, 'ninety-four thousand five hundred eighty-four'); INSERT INTO t2 VALUES(17662, 86757, 'eighty-six thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(17663, 58473, 'fifty-eight thousand four hundred seventy-three'); INSERT INTO t2 VALUES(17664, 28482, 'twenty-eight thousand four hundred eighty-two'); INSERT INTO t2 VALUES(17665, 50879, 'fifty thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(17666, 88914, 'eighty-eight thousand nine hundred fourteen'); INSERT INTO t2 VALUES(17667, 49203, 'forty-nine thousand two hundred three'); INSERT INTO t2 VALUES(17668, 69985, 'sixty-nine thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(17669, 67933, 'sixty-seven thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(17670, 50267, 'fifty thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(17671, 18242, 'eighteen thousand two hundred forty-two'); INSERT INTO t2 VALUES(17672, 28220, 'twenty-eight thousand two hundred twenty'); INSERT INTO t2 VALUES(17673, 8581, 'eight thousand five hundred eighty-one'); INSERT INTO t2 VALUES(17674, 31099, 'thirty-one thousand ninety-nine'); INSERT INTO t2 VALUES(17675, 1358, 'one thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(17676, 94548, 'ninety-four thousand five hundred forty-eight'); INSERT INTO t2 VALUES(17677, 56710, 'fifty-six thousand seven hundred ten'); INSERT INTO t2 VALUES(17678, 50616, 'fifty thousand six hundred sixteen'); INSERT INTO t2 VALUES(17679, 40611, 'forty thousand six hundred eleven'); INSERT INTO t2 VALUES(17680, 30701, 'thirty thousand seven hundred one'); INSERT INTO t2 VALUES(17681, 6558, 'six thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(17682, 10011, 'ten thousand eleven'); INSERT INTO t2 VALUES(17683, 64410, 'sixty-four thousand four hundred ten'); INSERT INTO t2 VALUES(17684, 22672, 'twenty-two thousand six hundred seventy-two'); INSERT INTO t2 VALUES(17685, 62046, 'sixty-two thousand forty-six'); INSERT INTO t2 VALUES(17686, 73322, 'seventy-three thousand three hundred twenty-two'); INSERT INTO t2 VALUES(17687, 35780, 'thirty-five thousand seven hundred eighty'); INSERT INTO t2 VALUES(17688, 21756, 'twenty-one thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(17689, 86908, 'eighty-six thousand nine hundred eight'); INSERT INTO t2 VALUES(17690, 82599, 'eighty-two thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(17691, 83141, 'eighty-three thousand one hundred forty-one'); INSERT INTO t2 VALUES(17692, 91794, 'ninety-one thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(17693, 58591, 'fifty-eight thousand five hundred ninety-one'); INSERT INTO t2 VALUES(17694, 20080, 'twenty thousand eighty'); INSERT INTO t2 VALUES(17695, 80911, 'eighty thousand nine hundred eleven'); INSERT INTO t2 VALUES(17696, 77428, 'seventy-seven thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(17697, 90445, 'ninety thousand four hundred forty-five'); INSERT INTO t2 VALUES(17698, 19983, 'nineteen thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(17699, 93323, 'ninety-three thousand three hundred twenty-three'); INSERT INTO t2 VALUES(17700, 30613, 'thirty thousand six hundred thirteen'); INSERT INTO t2 VALUES(17701, 48193, 'forty-eight thousand one hundred ninety-three'); INSERT INTO t2 VALUES(17702, 12920, 'twelve thousand nine hundred twenty'); INSERT INTO t2 VALUES(17703, 97445, 'ninety-seven thousand four hundred forty-five'); INSERT INTO t2 VALUES(17704, 22573, 'twenty-two thousand five hundred seventy-three'); INSERT INTO t2 VALUES(17705, 56968, 'fifty-six thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(17706, 27375, 'twenty-seven thousand three hundred seventy-five'); INSERT INTO t2 VALUES(17707, 56745, 'fifty-six thousand seven hundred forty-five'); INSERT INTO t2 VALUES(17708, 86035, 'eighty-six thousand thirty-five'); INSERT INTO t2 VALUES(17709, 70811, 'seventy thousand eight hundred eleven'); INSERT INTO t2 VALUES(17710, 48482, 'forty-eight thousand four hundred eighty-two'); INSERT INTO t2 VALUES(17711, 34173, 'thirty-four thousand one hundred seventy-three'); INSERT INTO t2 VALUES(17712, 39888, 'thirty-nine thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(17713, 41643, 'forty-one thousand six hundred forty-three'); INSERT INTO t2 VALUES(17714, 13073, 'thirteen thousand seventy-three'); INSERT INTO t2 VALUES(17715, 71444, 'seventy-one thousand four hundred forty-four'); INSERT INTO t2 VALUES(17716, 76947, 'seventy-six thousand nine hundred forty-seven'); INSERT INTO t2 VALUES(17717, 94255, 'ninety-four thousand two hundred fifty-five'); INSERT INTO t2 VALUES(17718, 8891, 'eight thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(17719, 17896, 'seventeen thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(17720, 85157, 'eighty-five thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(17721, 54433, 'fifty-four thousand four hundred thirty-three'); INSERT INTO t2 VALUES(17722, 85159, 'eighty-five thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(17723, 33390, 'thirty-three thousand three hundred ninety'); INSERT INTO t2 VALUES(17724, 47652, 'forty-seven thousand six hundred fifty-two'); INSERT INTO t2 VALUES(17725, 50918, 'fifty thousand nine hundred eighteen'); INSERT INTO t2 VALUES(17726, 47557, 'forty-seven thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(17727, 20422, 'twenty thousand four hundred twenty-two'); INSERT INTO t2 VALUES(17728, 95736, 'ninety-five thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(17729, 67572, 'sixty-seven thousand five hundred seventy-two'); INSERT INTO t2 VALUES(17730, 22268, 'twenty-two thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(17731, 47115, 'forty-seven thousand one hundred fifteen'); INSERT INTO t2 VALUES(17732, 248, 'two hundred forty-eight'); INSERT INTO t2 VALUES(17733, 42577, 'forty-two thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(17734, 11162, 'eleven thousand one hundred sixty-two'); INSERT INTO t2 VALUES(17735, 27281, 'twenty-seven thousand two hundred eighty-one'); INSERT INTO t2 VALUES(17736, 76521, 'seventy-six thousand five hundred twenty-one'); INSERT INTO t2 VALUES(17737, 49789, 'forty-nine thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(17738, 87521, 'eighty-seven thousand five hundred twenty-one'); INSERT INTO t2 VALUES(17739, 42104, 'forty-two thousand one hundred four'); INSERT INTO t2 VALUES(17740, 67454, 'sixty-seven thousand four hundred fifty-four'); INSERT INTO t2 VALUES(17741, 37768, 'thirty-seven thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(17742, 65332, 'sixty-five thousand three hundred thirty-two'); INSERT INTO t2 VALUES(17743, 67693, 'sixty-seven thousand six hundred ninety-three'); INSERT INTO t2 VALUES(17744, 20146, 'twenty thousand one hundred forty-six'); INSERT INTO t2 VALUES(17745, 40333, 'forty thousand three hundred thirty-three'); INSERT INTO t2 VALUES(17746, 40196, 'forty thousand one hundred ninety-six'); INSERT INTO t2 VALUES(17747, 60754, 'sixty thousand seven hundred fifty-four'); INSERT INTO t2 VALUES(17748, 35794, 'thirty-five thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(17749, 34985, 'thirty-four thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(17750, 10447, 'ten thousand four hundred forty-seven'); INSERT INTO t2 VALUES(17751, 9496, 'nine thousand four hundred ninety-six'); INSERT INTO t2 VALUES(17752, 68533, 'sixty-eight thousand five hundred thirty-three'); INSERT INTO t2 VALUES(17753, 38678, 'thirty-eight thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(17754, 27527, 'twenty-seven thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(17755, 15490, 'fifteen thousand four hundred ninety'); INSERT INTO t2 VALUES(17756, 3588, 'three thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(17757, 33010, 'thirty-three thousand ten'); INSERT INTO t2 VALUES(17758, 96746, 'ninety-six thousand seven hundred forty-six'); INSERT INTO t2 VALUES(17759, 27566, 'twenty-seven thousand five hundred sixty-six'); INSERT INTO t2 VALUES(17760, 11148, 'eleven thousand one hundred forty-eight'); INSERT INTO t2 VALUES(17761, 25407, 'twenty-five thousand four hundred seven'); INSERT INTO t2 VALUES(17762, 1267, 'one thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(17763, 72450, 'seventy-two thousand four hundred fifty'); INSERT INTO t2 VALUES(17764, 72779, 'seventy-two thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(17765, 18050, 'eighteen thousand fifty'); INSERT INTO t2 VALUES(17766, 89190, 'eighty-nine thousand one hundred ninety'); INSERT INTO t2 VALUES(17767, 93864, 'ninety-three thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(17768, 56843, 'fifty-six thousand eight hundred forty-three'); INSERT INTO t2 VALUES(17769, 50247, 'fifty thousand two hundred forty-seven'); INSERT INTO t2 VALUES(17770, 5133, 'five thousand one hundred thirty-three'); INSERT INTO t2 VALUES(17771, 25791, 'twenty-five thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(17772, 27109, 'twenty-seven thousand one hundred nine'); INSERT INTO t2 VALUES(17773, 40378, 'forty thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(17774, 41441, 'forty-one thousand four hundred forty-one'); INSERT INTO t2 VALUES(17775, 96991, 'ninety-six thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(17776, 59920, 'fifty-nine thousand nine hundred twenty'); INSERT INTO t2 VALUES(17777, 40919, 'forty thousand nine hundred nineteen'); INSERT INTO t2 VALUES(17778, 28516, 'twenty-eight thousand five hundred sixteen'); INSERT INTO t2 VALUES(17779, 31281, 'thirty-one thousand two hundred eighty-one'); INSERT INTO t2 VALUES(17780, 29335, 'twenty-nine thousand three hundred thirty-five'); INSERT INTO t2 VALUES(17781, 52496, 'fifty-two thousand four hundred ninety-six'); INSERT INTO t2 VALUES(17782, 88620, 'eighty-eight thousand six hundred twenty'); INSERT INTO t2 VALUES(17783, 36927, 'thirty-six thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(17784, 10315, 'ten thousand three hundred fifteen'); INSERT INTO t2 VALUES(17785, 34723, 'thirty-four thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(17786, 62596, 'sixty-two thousand five hundred ninety-six'); INSERT INTO t2 VALUES(17787, 14434, 'fourteen thousand four hundred thirty-four'); INSERT INTO t2 VALUES(17788, 53148, 'fifty-three thousand one hundred forty-eight'); INSERT INTO t2 VALUES(17789, 55478, 'fifty-five thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(17790, 63181, 'sixty-three thousand one hundred eighty-one'); INSERT INTO t2 VALUES(17791, 81577, 'eighty-one thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(17792, 62462, 'sixty-two thousand four hundred sixty-two'); INSERT INTO t2 VALUES(17793, 6561, 'six thousand five hundred sixty-one'); INSERT INTO t2 VALUES(17794, 57054, 'fifty-seven thousand fifty-four'); INSERT INTO t2 VALUES(17795, 50885, 'fifty thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(17796, 27445, 'twenty-seven thousand four hundred forty-five'); INSERT INTO t2 VALUES(17797, 39053, 'thirty-nine thousand fifty-three'); INSERT INTO t2 VALUES(17798, 61207, 'sixty-one thousand two hundred seven'); INSERT INTO t2 VALUES(17799, 43877, 'forty-three thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(17800, 36530, 'thirty-six thousand five hundred thirty'); INSERT INTO t2 VALUES(17801, 10200, 'ten thousand two hundred'); INSERT INTO t2 VALUES(17802, 79093, 'seventy-nine thousand ninety-three'); INSERT INTO t2 VALUES(17803, 87354, 'eighty-seven thousand three hundred fifty-four'); INSERT INTO t2 VALUES(17804, 29405, 'twenty-nine thousand four hundred five'); INSERT INTO t2 VALUES(17805, 7329, 'seven thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(17806, 78214, 'seventy-eight thousand two hundred fourteen'); INSERT INTO t2 VALUES(17807, 65092, 'sixty-five thousand ninety-two'); INSERT INTO t2 VALUES(17808, 94549, 'ninety-four thousand five hundred forty-nine'); INSERT INTO t2 VALUES(17809, 30555, 'thirty thousand five hundred fifty-five'); INSERT INTO t2 VALUES(17810, 65847, 'sixty-five thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(17811, 54402, 'fifty-four thousand four hundred two'); INSERT INTO t2 VALUES(17812, 86122, 'eighty-six thousand one hundred twenty-two'); INSERT INTO t2 VALUES(17813, 64421, 'sixty-four thousand four hundred twenty-one'); INSERT INTO t2 VALUES(17814, 12171, 'twelve thousand one hundred seventy-one'); INSERT INTO t2 VALUES(17815, 3917, 'three thousand nine hundred seventeen'); INSERT INTO t2 VALUES(17816, 13016, 'thirteen thousand sixteen'); INSERT INTO t2 VALUES(17817, 37537, 'thirty-seven thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(17818, 32908, 'thirty-two thousand nine hundred eight'); INSERT INTO t2 VALUES(17819, 49325, 'forty-nine thousand three hundred twenty-five'); INSERT INTO t2 VALUES(17820, 97279, 'ninety-seven thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(17821, 63860, 'sixty-three thousand eight hundred sixty'); INSERT INTO t2 VALUES(17822, 13388, 'thirteen thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(17823, 26429, 'twenty-six thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(17824, 22111, 'twenty-two thousand one hundred eleven'); INSERT INTO t2 VALUES(17825, 74317, 'seventy-four thousand three hundred seventeen'); INSERT INTO t2 VALUES(17826, 82535, 'eighty-two thousand five hundred thirty-five'); INSERT INTO t2 VALUES(17827, 32396, 'thirty-two thousand three hundred ninety-six'); INSERT INTO t2 VALUES(17828, 15348, 'fifteen thousand three hundred forty-eight'); INSERT INTO t2 VALUES(17829, 55403, 'fifty-five thousand four hundred three'); INSERT INTO t2 VALUES(17830, 16606, 'sixteen thousand six hundred six'); INSERT INTO t2 VALUES(17831, 32068, 'thirty-two thousand sixty-eight'); INSERT INTO t2 VALUES(17832, 82729, 'eighty-two thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(17833, 40022, 'forty thousand twenty-two'); INSERT INTO t2 VALUES(17834, 24520, 'twenty-four thousand five hundred twenty'); INSERT INTO t2 VALUES(17835, 32486, 'thirty-two thousand four hundred eighty-six'); INSERT INTO t2 VALUES(17836, 70518, 'seventy thousand five hundred eighteen'); INSERT INTO t2 VALUES(17837, 23219, 'twenty-three thousand two hundred nineteen'); INSERT INTO t2 VALUES(17838, 37991, 'thirty-seven thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(17839, 67004, 'sixty-seven thousand four'); INSERT INTO t2 VALUES(17840, 77068, 'seventy-seven thousand sixty-eight'); INSERT INTO t2 VALUES(17841, 872, 'eight hundred seventy-two'); INSERT INTO t2 VALUES(17842, 56930, 'fifty-six thousand nine hundred thirty'); INSERT INTO t2 VALUES(17843, 32275, 'thirty-two thousand two hundred seventy-five'); INSERT INTO t2 VALUES(17844, 45873, 'forty-five thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(17845, 90608, 'ninety thousand six hundred eight'); INSERT INTO t2 VALUES(17846, 64738, 'sixty-four thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(17847, 53831, 'fifty-three thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(17848, 52433, 'fifty-two thousand four hundred thirty-three'); INSERT INTO t2 VALUES(17849, 43735, 'forty-three thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(17850, 14348, 'fourteen thousand three hundred forty-eight'); INSERT INTO t2 VALUES(17851, 10042, 'ten thousand forty-two'); INSERT INTO t2 VALUES(17852, 20370, 'twenty thousand three hundred seventy'); INSERT INTO t2 VALUES(17853, 90275, 'ninety thousand two hundred seventy-five'); INSERT INTO t2 VALUES(17854, 22466, 'twenty-two thousand four hundred sixty-six'); INSERT INTO t2 VALUES(17855, 52097, 'fifty-two thousand ninety-seven'); INSERT INTO t2 VALUES(17856, 37542, 'thirty-seven thousand five hundred forty-two'); INSERT INTO t2 VALUES(17857, 62769, 'sixty-two thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(17858, 51605, 'fifty-one thousand six hundred five'); INSERT INTO t2 VALUES(17859, 29792, 'twenty-nine thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(17860, 90454, 'ninety thousand four hundred fifty-four'); INSERT INTO t2 VALUES(17861, 95382, 'ninety-five thousand three hundred eighty-two'); INSERT INTO t2 VALUES(17862, 27144, 'twenty-seven thousand one hundred forty-four'); INSERT INTO t2 VALUES(17863, 66977, 'sixty-six thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(17864, 94268, 'ninety-four thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(17865, 13611, 'thirteen thousand six hundred eleven'); INSERT INTO t2 VALUES(17866, 71186, 'seventy-one thousand one hundred eighty-six'); INSERT INTO t2 VALUES(17867, 64571, 'sixty-four thousand five hundred seventy-one'); INSERT INTO t2 VALUES(17868, 58990, 'fifty-eight thousand nine hundred ninety'); INSERT INTO t2 VALUES(17869, 157, 'one hundred fifty-seven'); INSERT INTO t2 VALUES(17870, 10606, 'ten thousand six hundred six'); INSERT INTO t2 VALUES(17871, 74402, 'seventy-four thousand four hundred two'); INSERT INTO t2 VALUES(17872, 11844, 'eleven thousand eight hundred forty-four'); INSERT INTO t2 VALUES(17873, 25479, 'twenty-five thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(17874, 33863, 'thirty-three thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(17875, 32873, 'thirty-two thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(17876, 65041, 'sixty-five thousand forty-one'); INSERT INTO t2 VALUES(17877, 14210, 'fourteen thousand two hundred ten'); INSERT INTO t2 VALUES(17878, 11718, 'eleven thousand seven hundred eighteen'); INSERT INTO t2 VALUES(17879, 83333, 'eighty-three thousand three hundred thirty-three'); INSERT INTO t2 VALUES(17880, 2636, 'two thousand six hundred thirty-six'); INSERT INTO t2 VALUES(17881, 61898, 'sixty-one thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(17882, 77091, 'seventy-seven thousand ninety-one'); INSERT INTO t2 VALUES(17883, 63332, 'sixty-three thousand three hundred thirty-two'); INSERT INTO t2 VALUES(17884, 12141, 'twelve thousand one hundred forty-one'); INSERT INTO t2 VALUES(17885, 49258, 'forty-nine thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(17886, 97641, 'ninety-seven thousand six hundred forty-one'); INSERT INTO t2 VALUES(17887, 96816, 'ninety-six thousand eight hundred sixteen'); INSERT INTO t2 VALUES(17888, 53313, 'fifty-three thousand three hundred thirteen'); INSERT INTO t2 VALUES(17889, 80779, 'eighty thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(17890, 487, 'four hundred eighty-seven'); INSERT INTO t2 VALUES(17891, 42645, 'forty-two thousand six hundred forty-five'); INSERT INTO t2 VALUES(17892, 23915, 'twenty-three thousand nine hundred fifteen'); INSERT INTO t2 VALUES(17893, 60290, 'sixty thousand two hundred ninety'); INSERT INTO t2 VALUES(17894, 70154, 'seventy thousand one hundred fifty-four'); INSERT INTO t2 VALUES(17895, 36921, 'thirty-six thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(17896, 46074, 'forty-six thousand seventy-four'); INSERT INTO t2 VALUES(17897, 76865, 'seventy-six thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(17898, 38338, 'thirty-eight thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(17899, 71718, 'seventy-one thousand seven hundred eighteen'); INSERT INTO t2 VALUES(17900, 14949, 'fourteen thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(17901, 60348, 'sixty thousand three hundred forty-eight'); INSERT INTO t2 VALUES(17902, 12581, 'twelve thousand five hundred eighty-one'); INSERT INTO t2 VALUES(17903, 67406, 'sixty-seven thousand four hundred six'); INSERT INTO t2 VALUES(17904, 43194, 'forty-three thousand one hundred ninety-four'); INSERT INTO t2 VALUES(17905, 21354, 'twenty-one thousand three hundred fifty-four'); INSERT INTO t2 VALUES(17906, 59475, 'fifty-nine thousand four hundred seventy-five'); INSERT INTO t2 VALUES(17907, 97593, 'ninety-seven thousand five hundred ninety-three'); INSERT INTO t2 VALUES(17908, 47316, 'forty-seven thousand three hundred sixteen'); INSERT INTO t2 VALUES(17909, 20038, 'twenty thousand thirty-eight'); INSERT INTO t2 VALUES(17910, 10123, 'ten thousand one hundred twenty-three'); INSERT INTO t2 VALUES(17911, 65713, 'sixty-five thousand seven hundred thirteen'); INSERT INTO t2 VALUES(17912, 78976, 'seventy-eight thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(17913, 87792, 'eighty-seven thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(17914, 65029, 'sixty-five thousand twenty-nine'); INSERT INTO t2 VALUES(17915, 34278, 'thirty-four thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(17916, 16956, 'sixteen thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(17917, 58622, 'fifty-eight thousand six hundred twenty-two'); INSERT INTO t2 VALUES(17918, 26614, 'twenty-six thousand six hundred fourteen'); INSERT INTO t2 VALUES(17919, 63734, 'sixty-three thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(17920, 45065, 'forty-five thousand sixty-five'); INSERT INTO t2 VALUES(17921, 64259, 'sixty-four thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(17922, 57639, 'fifty-seven thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(17923, 29609, 'twenty-nine thousand six hundred nine'); INSERT INTO t2 VALUES(17924, 21771, 'twenty-one thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(17925, 88757, 'eighty-eight thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(17926, 52284, 'fifty-two thousand two hundred eighty-four'); INSERT INTO t2 VALUES(17927, 1777, 'one thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(17928, 152, 'one hundred fifty-two'); INSERT INTO t2 VALUES(17929, 21701, 'twenty-one thousand seven hundred one'); INSERT INTO t2 VALUES(17930, 5853, 'five thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(17931, 46708, 'forty-six thousand seven hundred eight'); INSERT INTO t2 VALUES(17932, 69319, 'sixty-nine thousand three hundred nineteen'); INSERT INTO t2 VALUES(17933, 42168, 'forty-two thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(17934, 58380, 'fifty-eight thousand three hundred eighty'); INSERT INTO t2 VALUES(17935, 39463, 'thirty-nine thousand four hundred sixty-three'); INSERT INTO t2 VALUES(17936, 44739, 'forty-four thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(17937, 23642, 'twenty-three thousand six hundred forty-two'); INSERT INTO t2 VALUES(17938, 18211, 'eighteen thousand two hundred eleven'); INSERT INTO t2 VALUES(17939, 56881, 'fifty-six thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(17940, 52282, 'fifty-two thousand two hundred eighty-two'); INSERT INTO t2 VALUES(17941, 95481, 'ninety-five thousand four hundred eighty-one'); INSERT INTO t2 VALUES(17942, 99683, 'ninety-nine thousand six hundred eighty-three'); INSERT INTO t2 VALUES(17943, 35120, 'thirty-five thousand one hundred twenty'); INSERT INTO t2 VALUES(17944, 20986, 'twenty thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(17945, 52171, 'fifty-two thousand one hundred seventy-one'); INSERT INTO t2 VALUES(17946, 94489, 'ninety-four thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(17947, 97093, 'ninety-seven thousand ninety-three'); INSERT INTO t2 VALUES(17948, 86752, 'eighty-six thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(17949, 80924, 'eighty thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(17950, 50412, 'fifty thousand four hundred twelve'); INSERT INTO t2 VALUES(17951, 38262, 'thirty-eight thousand two hundred sixty-two'); INSERT INTO t2 VALUES(17952, 40808, 'forty thousand eight hundred eight'); INSERT INTO t2 VALUES(17953, 92467, 'ninety-two thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(17954, 53853, 'fifty-three thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(17955, 5696, 'five thousand six hundred ninety-six'); INSERT INTO t2 VALUES(17956, 37384, 'thirty-seven thousand three hundred eighty-four'); INSERT INTO t2 VALUES(17957, 99104, 'ninety-nine thousand one hundred four'); INSERT INTO t2 VALUES(17958, 63154, 'sixty-three thousand one hundred fifty-four'); INSERT INTO t2 VALUES(17959, 68905, 'sixty-eight thousand nine hundred five'); INSERT INTO t2 VALUES(17960, 72986, 'seventy-two thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(17961, 9729, 'nine thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(17962, 78016, 'seventy-eight thousand sixteen'); INSERT INTO t2 VALUES(17963, 99492, 'ninety-nine thousand four hundred ninety-two'); INSERT INTO t2 VALUES(17964, 35081, 'thirty-five thousand eighty-one'); INSERT INTO t2 VALUES(17965, 39297, 'thirty-nine thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(17966, 81024, 'eighty-one thousand twenty-four'); INSERT INTO t2 VALUES(17967, 3950, 'three thousand nine hundred fifty'); INSERT INTO t2 VALUES(17968, 45067, 'forty-five thousand sixty-seven'); INSERT INTO t2 VALUES(17969, 52812, 'fifty-two thousand eight hundred twelve'); INSERT INTO t2 VALUES(17970, 55743, 'fifty-five thousand seven hundred forty-three'); INSERT INTO t2 VALUES(17971, 69439, 'sixty-nine thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(17972, 52771, 'fifty-two thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(17973, 70455, 'seventy thousand four hundred fifty-five'); INSERT INTO t2 VALUES(17974, 3820, 'three thousand eight hundred twenty'); INSERT INTO t2 VALUES(17975, 91813, 'ninety-one thousand eight hundred thirteen'); INSERT INTO t2 VALUES(17976, 69818, 'sixty-nine thousand eight hundred eighteen'); INSERT INTO t2 VALUES(17977, 55919, 'fifty-five thousand nine hundred nineteen'); INSERT INTO t2 VALUES(17978, 98893, 'ninety-eight thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(17979, 64366, 'sixty-four thousand three hundred sixty-six'); INSERT INTO t2 VALUES(17980, 82159, 'eighty-two thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(17981, 55522, 'fifty-five thousand five hundred twenty-two'); INSERT INTO t2 VALUES(17982, 91460, 'ninety-one thousand four hundred sixty'); INSERT INTO t2 VALUES(17983, 8503, 'eight thousand five hundred three'); INSERT INTO t2 VALUES(17984, 3069, 'three thousand sixty-nine'); INSERT INTO t2 VALUES(17985, 67114, 'sixty-seven thousand one hundred fourteen'); INSERT INTO t2 VALUES(17986, 37930, 'thirty-seven thousand nine hundred thirty'); INSERT INTO t2 VALUES(17987, 8077, 'eight thousand seventy-seven'); INSERT INTO t2 VALUES(17988, 89288, 'eighty-nine thousand two hundred eighty-eight'); INSERT INTO t2 VALUES(17989, 67341, 'sixty-seven thousand three hundred forty-one'); INSERT INTO t2 VALUES(17990, 35574, 'thirty-five thousand five hundred seventy-four'); INSERT INTO t2 VALUES(17991, 75908, 'seventy-five thousand nine hundred eight'); INSERT INTO t2 VALUES(17992, 60655, 'sixty thousand six hundred fifty-five'); INSERT INTO t2 VALUES(17993, 93094, 'ninety-three thousand ninety-four'); INSERT INTO t2 VALUES(17994, 5406, 'five thousand four hundred six'); INSERT INTO t2 VALUES(17995, 58503, 'fifty-eight thousand five hundred three'); INSERT INTO t2 VALUES(17996, 33109, 'thirty-three thousand one hundred nine'); INSERT INTO t2 VALUES(17997, 52908, 'fifty-two thousand nine hundred eight'); INSERT INTO t2 VALUES(17998, 78264, 'seventy-eight thousand two hundred sixty-four'); INSERT INTO t2 VALUES(17999, 19820, 'nineteen thousand eight hundred twenty'); INSERT INTO t2 VALUES(18000, 69222, 'sixty-nine thousand two hundred twenty-two'); INSERT INTO t2 VALUES(18001, 11344, 'eleven thousand three hundred forty-four'); INSERT INTO t2 VALUES(18002, 16549, 'sixteen thousand five hundred forty-nine'); INSERT INTO t2 VALUES(18003, 32202, 'thirty-two thousand two hundred two'); INSERT INTO t2 VALUES(18004, 71942, 'seventy-one thousand nine hundred forty-two'); INSERT INTO t2 VALUES(18005, 82521, 'eighty-two thousand five hundred twenty-one'); INSERT INTO t2 VALUES(18006, 68078, 'sixty-eight thousand seventy-eight'); INSERT INTO t2 VALUES(18007, 65688, 'sixty-five thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(18008, 49403, 'forty-nine thousand four hundred three'); INSERT INTO t2 VALUES(18009, 77360, 'seventy-seven thousand three hundred sixty'); INSERT INTO t2 VALUES(18010, 18164, 'eighteen thousand one hundred sixty-four'); INSERT INTO t2 VALUES(18011, 73993, 'seventy-three thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(18012, 19775, 'nineteen thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(18013, 69957, 'sixty-nine thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(18014, 33962, 'thirty-three thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(18015, 82716, 'eighty-two thousand seven hundred sixteen'); INSERT INTO t2 VALUES(18016, 29186, 'twenty-nine thousand one hundred eighty-six'); INSERT INTO t2 VALUES(18017, 67157, 'sixty-seven thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(18018, 49874, 'forty-nine thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(18019, 66754, 'sixty-six thousand seven hundred fifty-four'); INSERT INTO t2 VALUES(18020, 66623, 'sixty-six thousand six hundred twenty-three'); INSERT INTO t2 VALUES(18021, 64804, 'sixty-four thousand eight hundred four'); INSERT INTO t2 VALUES(18022, 64670, 'sixty-four thousand six hundred seventy'); INSERT INTO t2 VALUES(18023, 8471, 'eight thousand four hundred seventy-one'); INSERT INTO t2 VALUES(18024, 53459, 'fifty-three thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(18025, 61326, 'sixty-one thousand three hundred twenty-six'); INSERT INTO t2 VALUES(18026, 47055, 'forty-seven thousand fifty-five'); INSERT INTO t2 VALUES(18027, 240, 'two hundred forty'); INSERT INTO t2 VALUES(18028, 79895, 'seventy-nine thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(18029, 8113, 'eight thousand one hundred thirteen'); INSERT INTO t2 VALUES(18030, 31497, 'thirty-one thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(18031, 41529, 'forty-one thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(18032, 98580, 'ninety-eight thousand five hundred eighty'); INSERT INTO t2 VALUES(18033, 32902, 'thirty-two thousand nine hundred two'); INSERT INTO t2 VALUES(18034, 31551, 'thirty-one thousand five hundred fifty-one'); INSERT INTO t2 VALUES(18035, 57650, 'fifty-seven thousand six hundred fifty'); INSERT INTO t2 VALUES(18036, 91597, 'ninety-one thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(18037, 70813, 'seventy thousand eight hundred thirteen'); INSERT INTO t2 VALUES(18038, 96030, 'ninety-six thousand thirty'); INSERT INTO t2 VALUES(18039, 94049, 'ninety-four thousand forty-nine'); INSERT INTO t2 VALUES(18040, 14632, 'fourteen thousand six hundred thirty-two'); INSERT INTO t2 VALUES(18041, 86333, 'eighty-six thousand three hundred thirty-three'); INSERT INTO t2 VALUES(18042, 49202, 'forty-nine thousand two hundred two'); INSERT INTO t2 VALUES(18043, 12388, 'twelve thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(18044, 89225, 'eighty-nine thousand two hundred twenty-five'); INSERT INTO t2 VALUES(18045, 69657, 'sixty-nine thousand six hundred fifty-seven'); INSERT INTO t2 VALUES(18046, 48643, 'forty-eight thousand six hundred forty-three'); INSERT INTO t2 VALUES(18047, 98850, 'ninety-eight thousand eight hundred fifty'); INSERT INTO t2 VALUES(18048, 51890, 'fifty-one thousand eight hundred ninety'); INSERT INTO t2 VALUES(18049, 25730, 'twenty-five thousand seven hundred thirty'); INSERT INTO t2 VALUES(18050, 13491, 'thirteen thousand four hundred ninety-one'); INSERT INTO t2 VALUES(18051, 29215, 'twenty-nine thousand two hundred fifteen'); INSERT INTO t2 VALUES(18052, 75378, 'seventy-five thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(18053, 12394, 'twelve thousand three hundred ninety-four'); INSERT INTO t2 VALUES(18054, 62517, 'sixty-two thousand five hundred seventeen'); INSERT INTO t2 VALUES(18055, 21796, 'twenty-one thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(18056, 92824, 'ninety-two thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(18057, 83018, 'eighty-three thousand eighteen'); INSERT INTO t2 VALUES(18058, 84938, 'eighty-four thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(18059, 73132, 'seventy-three thousand one hundred thirty-two'); INSERT INTO t2 VALUES(18060, 82761, 'eighty-two thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(18061, 10641, 'ten thousand six hundred forty-one'); INSERT INTO t2 VALUES(18062, 92567, 'ninety-two thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(18063, 99559, 'ninety-nine thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(18064, 53723, 'fifty-three thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(18065, 31493, 'thirty-one thousand four hundred ninety-three'); INSERT INTO t2 VALUES(18066, 10340, 'ten thousand three hundred forty'); INSERT INTO t2 VALUES(18067, 28405, 'twenty-eight thousand four hundred five'); INSERT INTO t2 VALUES(18068, 59210, 'fifty-nine thousand two hundred ten'); INSERT INTO t2 VALUES(18069, 98540, 'ninety-eight thousand five hundred forty'); INSERT INTO t2 VALUES(18070, 70488, 'seventy thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(18071, 67152, 'sixty-seven thousand one hundred fifty-two'); INSERT INTO t2 VALUES(18072, 5995, 'five thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(18073, 41583, 'forty-one thousand five hundred eighty-three'); INSERT INTO t2 VALUES(18074, 15155, 'fifteen thousand one hundred fifty-five'); INSERT INTO t2 VALUES(18075, 7412, 'seven thousand four hundred twelve'); INSERT INTO t2 VALUES(18076, 83748, 'eighty-three thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(18077, 80117, 'eighty thousand one hundred seventeen'); INSERT INTO t2 VALUES(18078, 86084, 'eighty-six thousand eighty-four'); INSERT INTO t2 VALUES(18079, 39231, 'thirty-nine thousand two hundred thirty-one'); INSERT INTO t2 VALUES(18080, 82455, 'eighty-two thousand four hundred fifty-five'); INSERT INTO t2 VALUES(18081, 13541, 'thirteen thousand five hundred forty-one'); INSERT INTO t2 VALUES(18082, 71737, 'seventy-one thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(18083, 34045, 'thirty-four thousand forty-five'); INSERT INTO t2 VALUES(18084, 56671, 'fifty-six thousand six hundred seventy-one'); INSERT INTO t2 VALUES(18085, 40559, 'forty thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(18086, 40852, 'forty thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(18087, 31524, 'thirty-one thousand five hundred twenty-four'); INSERT INTO t2 VALUES(18088, 36714, 'thirty-six thousand seven hundred fourteen'); INSERT INTO t2 VALUES(18089, 77971, 'seventy-seven thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(18090, 46440, 'forty-six thousand four hundred forty'); INSERT INTO t2 VALUES(18091, 83734, 'eighty-three thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(18092, 28864, 'twenty-eight thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(18093, 87334, 'eighty-seven thousand three hundred thirty-four'); INSERT INTO t2 VALUES(18094, 59821, 'fifty-nine thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(18095, 58367, 'fifty-eight thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(18096, 57033, 'fifty-seven thousand thirty-three'); INSERT INTO t2 VALUES(18097, 77686, 'seventy-seven thousand six hundred eighty-six'); INSERT INTO t2 VALUES(18098, 31095, 'thirty-one thousand ninety-five'); INSERT INTO t2 VALUES(18099, 83822, 'eighty-three thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(18100, 38240, 'thirty-eight thousand two hundred forty'); INSERT INTO t2 VALUES(18101, 69205, 'sixty-nine thousand two hundred five'); INSERT INTO t2 VALUES(18102, 69114, 'sixty-nine thousand one hundred fourteen'); INSERT INTO t2 VALUES(18103, 83844, 'eighty-three thousand eight hundred forty-four'); INSERT INTO t2 VALUES(18104, 25945, 'twenty-five thousand nine hundred forty-five'); INSERT INTO t2 VALUES(18105, 16850, 'sixteen thousand eight hundred fifty'); INSERT INTO t2 VALUES(18106, 35607, 'thirty-five thousand six hundred seven'); INSERT INTO t2 VALUES(18107, 29803, 'twenty-nine thousand eight hundred three'); INSERT INTO t2 VALUES(18108, 52399, 'fifty-two thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(18109, 52957, 'fifty-two thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(18110, 86802, 'eighty-six thousand eight hundred two'); INSERT INTO t2 VALUES(18111, 32652, 'thirty-two thousand six hundred fifty-two'); INSERT INTO t2 VALUES(18112, 23084, 'twenty-three thousand eighty-four'); INSERT INTO t2 VALUES(18113, 24066, 'twenty-four thousand sixty-six'); INSERT INTO t2 VALUES(18114, 37875, 'thirty-seven thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(18115, 77684, 'seventy-seven thousand six hundred eighty-four'); INSERT INTO t2 VALUES(18116, 22519, 'twenty-two thousand five hundred nineteen'); INSERT INTO t2 VALUES(18117, 66477, 'sixty-six thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(18118, 11312, 'eleven thousand three hundred twelve'); INSERT INTO t2 VALUES(18119, 42113, 'forty-two thousand one hundred thirteen'); INSERT INTO t2 VALUES(18120, 10071, 'ten thousand seventy-one'); INSERT INTO t2 VALUES(18121, 78343, 'seventy-eight thousand three hundred forty-three'); INSERT INTO t2 VALUES(18122, 76358, 'seventy-six thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(18123, 38064, 'thirty-eight thousand sixty-four'); INSERT INTO t2 VALUES(18124, 5225, 'five thousand two hundred twenty-five'); INSERT INTO t2 VALUES(18125, 75410, 'seventy-five thousand four hundred ten'); INSERT INTO t2 VALUES(18126, 22516, 'twenty-two thousand five hundred sixteen'); INSERT INTO t2 VALUES(18127, 94831, 'ninety-four thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(18128, 68601, 'sixty-eight thousand six hundred one'); INSERT INTO t2 VALUES(18129, 40943, 'forty thousand nine hundred forty-three'); INSERT INTO t2 VALUES(18130, 71809, 'seventy-one thousand eight hundred nine'); INSERT INTO t2 VALUES(18131, 49824, 'forty-nine thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(18132, 34991, 'thirty-four thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(18133, 28434, 'twenty-eight thousand four hundred thirty-four'); INSERT INTO t2 VALUES(18134, 839, 'eight hundred thirty-nine'); INSERT INTO t2 VALUES(18135, 40123, 'forty thousand one hundred twenty-three'); INSERT INTO t2 VALUES(18136, 52661, 'fifty-two thousand six hundred sixty-one'); INSERT INTO t2 VALUES(18137, 68593, 'sixty-eight thousand five hundred ninety-three'); INSERT INTO t2 VALUES(18138, 79340, 'seventy-nine thousand three hundred forty'); INSERT INTO t2 VALUES(18139, 96850, 'ninety-six thousand eight hundred fifty'); INSERT INTO t2 VALUES(18140, 19722, 'nineteen thousand seven hundred twenty-two'); INSERT INTO t2 VALUES(18141, 81963, 'eighty-one thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(18142, 42237, 'forty-two thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(18143, 53259, 'fifty-three thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(18144, 8696, 'eight thousand six hundred ninety-six'); INSERT INTO t2 VALUES(18145, 89432, 'eighty-nine thousand four hundred thirty-two'); INSERT INTO t2 VALUES(18146, 34865, 'thirty-four thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(18147, 778, 'seven hundred seventy-eight'); INSERT INTO t2 VALUES(18148, 3752, 'three thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(18149, 80337, 'eighty thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(18150, 60257, 'sixty thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(18151, 12644, 'twelve thousand six hundred forty-four'); INSERT INTO t2 VALUES(18152, 22016, 'twenty-two thousand sixteen'); INSERT INTO t2 VALUES(18153, 41847, 'forty-one thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(18154, 55242, 'fifty-five thousand two hundred forty-two'); INSERT INTO t2 VALUES(18155, 77675, 'seventy-seven thousand six hundred seventy-five'); INSERT INTO t2 VALUES(18156, 93515, 'ninety-three thousand five hundred fifteen'); INSERT INTO t2 VALUES(18157, 19247, 'nineteen thousand two hundred forty-seven'); INSERT INTO t2 VALUES(18158, 31076, 'thirty-one thousand seventy-six'); INSERT INTO t2 VALUES(18159, 57615, 'fifty-seven thousand six hundred fifteen'); INSERT INTO t2 VALUES(18160, 6157, 'six thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(18161, 7705, 'seven thousand seven hundred five'); INSERT INTO t2 VALUES(18162, 45019, 'forty-five thousand nineteen'); INSERT INTO t2 VALUES(18163, 52243, 'fifty-two thousand two hundred forty-three'); INSERT INTO t2 VALUES(18164, 72361, 'seventy-two thousand three hundred sixty-one'); INSERT INTO t2 VALUES(18165, 28395, 'twenty-eight thousand three hundred ninety-five'); INSERT INTO t2 VALUES(18166, 17535, 'seventeen thousand five hundred thirty-five'); INSERT INTO t2 VALUES(18167, 99667, 'ninety-nine thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(18168, 51057, 'fifty-one thousand fifty-seven'); INSERT INTO t2 VALUES(18169, 65821, 'sixty-five thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(18170, 35024, 'thirty-five thousand twenty-four'); INSERT INTO t2 VALUES(18171, 28036, 'twenty-eight thousand thirty-six'); INSERT INTO t2 VALUES(18172, 9423, 'nine thousand four hundred twenty-three'); INSERT INTO t2 VALUES(18173, 676, 'six hundred seventy-six'); INSERT INTO t2 VALUES(18174, 1979, 'one thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(18175, 92631, 'ninety-two thousand six hundred thirty-one'); INSERT INTO t2 VALUES(18176, 587, 'five hundred eighty-seven'); INSERT INTO t2 VALUES(18177, 53312, 'fifty-three thousand three hundred twelve'); INSERT INTO t2 VALUES(18178, 86244, 'eighty-six thousand two hundred forty-four'); INSERT INTO t2 VALUES(18179, 47708, 'forty-seven thousand seven hundred eight'); INSERT INTO t2 VALUES(18180, 69902, 'sixty-nine thousand nine hundred two'); INSERT INTO t2 VALUES(18181, 18642, 'eighteen thousand six hundred forty-two'); INSERT INTO t2 VALUES(18182, 3677, 'three thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(18183, 48693, 'forty-eight thousand six hundred ninety-three'); INSERT INTO t2 VALUES(18184, 54616, 'fifty-four thousand six hundred sixteen'); INSERT INTO t2 VALUES(18185, 44953, 'forty-four thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(18186, 26769, 'twenty-six thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(18187, 88681, 'eighty-eight thousand six hundred eighty-one'); INSERT INTO t2 VALUES(18188, 13297, 'thirteen thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(18189, 2813, 'two thousand eight hundred thirteen'); INSERT INTO t2 VALUES(18190, 99334, 'ninety-nine thousand three hundred thirty-four'); INSERT INTO t2 VALUES(18191, 35489, 'thirty-five thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(18192, 83455, 'eighty-three thousand four hundred fifty-five'); INSERT INTO t2 VALUES(18193, 74751, 'seventy-four thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(18194, 31216, 'thirty-one thousand two hundred sixteen'); INSERT INTO t2 VALUES(18195, 41458, 'forty-one thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(18196, 22365, 'twenty-two thousand three hundred sixty-five'); INSERT INTO t2 VALUES(18197, 28797, 'twenty-eight thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(18198, 70043, 'seventy thousand forty-three'); INSERT INTO t2 VALUES(18199, 34360, 'thirty-four thousand three hundred sixty'); INSERT INTO t2 VALUES(18200, 84768, 'eighty-four thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(18201, 1763, 'one thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(18202, 17630, 'seventeen thousand six hundred thirty'); INSERT INTO t2 VALUES(18203, 94790, 'ninety-four thousand seven hundred ninety'); INSERT INTO t2 VALUES(18204, 52108, 'fifty-two thousand one hundred eight'); INSERT INTO t2 VALUES(18205, 78884, 'seventy-eight thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(18206, 25468, 'twenty-five thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(18207, 6545, 'six thousand five hundred forty-five'); INSERT INTO t2 VALUES(18208, 46144, 'forty-six thousand one hundred forty-four'); INSERT INTO t2 VALUES(18209, 68943, 'sixty-eight thousand nine hundred forty-three'); INSERT INTO t2 VALUES(18210, 85902, 'eighty-five thousand nine hundred two'); INSERT INTO t2 VALUES(18211, 36142, 'thirty-six thousand one hundred forty-two'); INSERT INTO t2 VALUES(18212, 18879, 'eighteen thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(18213, 49729, 'forty-nine thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(18214, 77988, 'seventy-seven thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(18215, 54039, 'fifty-four thousand thirty-nine'); INSERT INTO t2 VALUES(18216, 49744, 'forty-nine thousand seven hundred forty-four'); INSERT INTO t2 VALUES(18217, 36567, 'thirty-six thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(18218, 95884, 'ninety-five thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(18219, 36545, 'thirty-six thousand five hundred forty-five'); INSERT INTO t2 VALUES(18220, 17832, 'seventeen thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(18221, 4554, 'four thousand five hundred fifty-four'); INSERT INTO t2 VALUES(18222, 91185, 'ninety-one thousand one hundred eighty-five'); INSERT INTO t2 VALUES(18223, 36481, 'thirty-six thousand four hundred eighty-one'); INSERT INTO t2 VALUES(18224, 91760, 'ninety-one thousand seven hundred sixty'); INSERT INTO t2 VALUES(18225, 18298, 'eighteen thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(18226, 274, 'two hundred seventy-four'); INSERT INTO t2 VALUES(18227, 19481, 'nineteen thousand four hundred eighty-one'); INSERT INTO t2 VALUES(18228, 87851, 'eighty-seven thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(18229, 29251, 'twenty-nine thousand two hundred fifty-one'); INSERT INTO t2 VALUES(18230, 67116, 'sixty-seven thousand one hundred sixteen'); INSERT INTO t2 VALUES(18231, 17167, 'seventeen thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(18232, 45900, 'forty-five thousand nine hundred'); INSERT INTO t2 VALUES(18233, 10692, 'ten thousand six hundred ninety-two'); INSERT INTO t2 VALUES(18234, 40811, 'forty thousand eight hundred eleven'); INSERT INTO t2 VALUES(18235, 72354, 'seventy-two thousand three hundred fifty-four'); INSERT INTO t2 VALUES(18236, 71532, 'seventy-one thousand five hundred thirty-two'); INSERT INTO t2 VALUES(18237, 16272, 'sixteen thousand two hundred seventy-two'); INSERT INTO t2 VALUES(18238, 4062, 'four thousand sixty-two'); INSERT INTO t2 VALUES(18239, 20263, 'twenty thousand two hundred sixty-three'); INSERT INTO t2 VALUES(18240, 81813, 'eighty-one thousand eight hundred thirteen'); INSERT INTO t2 VALUES(18241, 16476, 'sixteen thousand four hundred seventy-six'); INSERT INTO t2 VALUES(18242, 75110, 'seventy-five thousand one hundred ten'); INSERT INTO t2 VALUES(18243, 99463, 'ninety-nine thousand four hundred sixty-three'); INSERT INTO t2 VALUES(18244, 73235, 'seventy-three thousand two hundred thirty-five'); INSERT INTO t2 VALUES(18245, 45277, 'forty-five thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(18246, 9513, 'nine thousand five hundred thirteen'); INSERT INTO t2 VALUES(18247, 18211, 'eighteen thousand two hundred eleven'); INSERT INTO t2 VALUES(18248, 91367, 'ninety-one thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(18249, 5333, 'five thousand three hundred thirty-three'); INSERT INTO t2 VALUES(18250, 18915, 'eighteen thousand nine hundred fifteen'); INSERT INTO t2 VALUES(18251, 5699, 'five thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(18252, 40111, 'forty thousand one hundred eleven'); INSERT INTO t2 VALUES(18253, 85893, 'eighty-five thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(18254, 41574, 'forty-one thousand five hundred seventy-four'); INSERT INTO t2 VALUES(18255, 84297, 'eighty-four thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(18256, 27290, 'twenty-seven thousand two hundred ninety'); INSERT INTO t2 VALUES(18257, 69072, 'sixty-nine thousand seventy-two'); INSERT INTO t2 VALUES(18258, 10164, 'ten thousand one hundred sixty-four'); INSERT INTO t2 VALUES(18259, 6548, 'six thousand five hundred forty-eight'); INSERT INTO t2 VALUES(18260, 20490, 'twenty thousand four hundred ninety'); INSERT INTO t2 VALUES(18261, 67949, 'sixty-seven thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(18262, 87172, 'eighty-seven thousand one hundred seventy-two'); INSERT INTO t2 VALUES(18263, 8892, 'eight thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(18264, 3556, 'three thousand five hundred fifty-six'); INSERT INTO t2 VALUES(18265, 46688, 'forty-six thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(18266, 87914, 'eighty-seven thousand nine hundred fourteen'); INSERT INTO t2 VALUES(18267, 84136, 'eighty-four thousand one hundred thirty-six'); INSERT INTO t2 VALUES(18268, 71777, 'seventy-one thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(18269, 94267, 'ninety-four thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(18270, 63858, 'sixty-three thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(18271, 92642, 'ninety-two thousand six hundred forty-two'); INSERT INTO t2 VALUES(18272, 14729, 'fourteen thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(18273, 98973, 'ninety-eight thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(18274, 48860, 'forty-eight thousand eight hundred sixty'); INSERT INTO t2 VALUES(18275, 37651, 'thirty-seven thousand six hundred fifty-one'); INSERT INTO t2 VALUES(18276, 69811, 'sixty-nine thousand eight hundred eleven'); INSERT INTO t2 VALUES(18277, 11237, 'eleven thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(18278, 70313, 'seventy thousand three hundred thirteen'); INSERT INTO t2 VALUES(18279, 65118, 'sixty-five thousand one hundred eighteen'); INSERT INTO t2 VALUES(18280, 14955, 'fourteen thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(18281, 98985, 'ninety-eight thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(18282, 99399, 'ninety-nine thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(18283, 57169, 'fifty-seven thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(18284, 1567, 'one thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(18285, 27944, 'twenty-seven thousand nine hundred forty-four'); INSERT INTO t2 VALUES(18286, 36695, 'thirty-six thousand six hundred ninety-five'); INSERT INTO t2 VALUES(18287, 1291, 'one thousand two hundred ninety-one'); INSERT INTO t2 VALUES(18288, 73497, 'seventy-three thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(18289, 37604, 'thirty-seven thousand six hundred four'); INSERT INTO t2 VALUES(18290, 7905, 'seven thousand nine hundred five'); INSERT INTO t2 VALUES(18291, 64460, 'sixty-four thousand four hundred sixty'); INSERT INTO t2 VALUES(18292, 83021, 'eighty-three thousand twenty-one'); INSERT INTO t2 VALUES(18293, 71975, 'seventy-one thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(18294, 70278, 'seventy thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(18295, 83557, 'eighty-three thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(18296, 3290, 'three thousand two hundred ninety'); INSERT INTO t2 VALUES(18297, 16423, 'sixteen thousand four hundred twenty-three'); INSERT INTO t2 VALUES(18298, 7116, 'seven thousand one hundred sixteen'); INSERT INTO t2 VALUES(18299, 40651, 'forty thousand six hundred fifty-one'); INSERT INTO t2 VALUES(18300, 25838, 'twenty-five thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(18301, 48834, 'forty-eight thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(18302, 23328, 'twenty-three thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(18303, 39680, 'thirty-nine thousand six hundred eighty'); INSERT INTO t2 VALUES(18304, 51819, 'fifty-one thousand eight hundred nineteen'); INSERT INTO t2 VALUES(18305, 18813, 'eighteen thousand eight hundred thirteen'); INSERT INTO t2 VALUES(18306, 97323, 'ninety-seven thousand three hundred twenty-three'); INSERT INTO t2 VALUES(18307, 66364, 'sixty-six thousand three hundred sixty-four'); INSERT INTO t2 VALUES(18308, 39522, 'thirty-nine thousand five hundred twenty-two'); INSERT INTO t2 VALUES(18309, 77707, 'seventy-seven thousand seven hundred seven'); INSERT INTO t2 VALUES(18310, 71715, 'seventy-one thousand seven hundred fifteen'); INSERT INTO t2 VALUES(18311, 33025, 'thirty-three thousand twenty-five'); INSERT INTO t2 VALUES(18312, 79680, 'seventy-nine thousand six hundred eighty'); INSERT INTO t2 VALUES(18313, 18046, 'eighteen thousand forty-six'); INSERT INTO t2 VALUES(18314, 49728, 'forty-nine thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(18315, 59022, 'fifty-nine thousand twenty-two'); INSERT INTO t2 VALUES(18316, 9095, 'nine thousand ninety-five'); INSERT INTO t2 VALUES(18317, 71199, 'seventy-one thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(18318, 30752, 'thirty thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(18319, 54095, 'fifty-four thousand ninety-five'); INSERT INTO t2 VALUES(18320, 1270, 'one thousand two hundred seventy'); INSERT INTO t2 VALUES(18321, 59571, 'fifty-nine thousand five hundred seventy-one'); INSERT INTO t2 VALUES(18322, 4220, 'four thousand two hundred twenty'); INSERT INTO t2 VALUES(18323, 80585, 'eighty thousand five hundred eighty-five'); INSERT INTO t2 VALUES(18324, 49780, 'forty-nine thousand seven hundred eighty'); INSERT INTO t2 VALUES(18325, 47903, 'forty-seven thousand nine hundred three'); INSERT INTO t2 VALUES(18326, 25873, 'twenty-five thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(18327, 97236, 'ninety-seven thousand two hundred thirty-six'); INSERT INTO t2 VALUES(18328, 34016, 'thirty-four thousand sixteen'); INSERT INTO t2 VALUES(18329, 48672, 'forty-eight thousand six hundred seventy-two'); INSERT INTO t2 VALUES(18330, 23157, 'twenty-three thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(18331, 29013, 'twenty-nine thousand thirteen'); INSERT INTO t2 VALUES(18332, 73871, 'seventy-three thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(18333, 54368, 'fifty-four thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(18334, 15501, 'fifteen thousand five hundred one'); INSERT INTO t2 VALUES(18335, 27693, 'twenty-seven thousand six hundred ninety-three'); INSERT INTO t2 VALUES(18336, 53497, 'fifty-three thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(18337, 54265, 'fifty-four thousand two hundred sixty-five'); INSERT INTO t2 VALUES(18338, 11577, 'eleven thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(18339, 69842, 'sixty-nine thousand eight hundred forty-two'); INSERT INTO t2 VALUES(18340, 47179, 'forty-seven thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(18341, 70405, 'seventy thousand four hundred five'); INSERT INTO t2 VALUES(18342, 92551, 'ninety-two thousand five hundred fifty-one'); INSERT INTO t2 VALUES(18343, 95152, 'ninety-five thousand one hundred fifty-two'); INSERT INTO t2 VALUES(18344, 76207, 'seventy-six thousand two hundred seven'); INSERT INTO t2 VALUES(18345, 12115, 'twelve thousand one hundred fifteen'); INSERT INTO t2 VALUES(18346, 66037, 'sixty-six thousand thirty-seven'); INSERT INTO t2 VALUES(18347, 10383, 'ten thousand three hundred eighty-three'); INSERT INTO t2 VALUES(18348, 73366, 'seventy-three thousand three hundred sixty-six'); INSERT INTO t2 VALUES(18349, 69571, 'sixty-nine thousand five hundred seventy-one'); INSERT INTO t2 VALUES(18350, 60840, 'sixty thousand eight hundred forty'); INSERT INTO t2 VALUES(18351, 52305, 'fifty-two thousand three hundred five'); INSERT INTO t2 VALUES(18352, 92931, 'ninety-two thousand nine hundred thirty-one'); INSERT INTO t2 VALUES(18353, 79433, 'seventy-nine thousand four hundred thirty-three'); INSERT INTO t2 VALUES(18354, 24661, 'twenty-four thousand six hundred sixty-one'); INSERT INTO t2 VALUES(18355, 72030, 'seventy-two thousand thirty'); INSERT INTO t2 VALUES(18356, 94222, 'ninety-four thousand two hundred twenty-two'); INSERT INTO t2 VALUES(18357, 773, 'seven hundred seventy-three'); INSERT INTO t2 VALUES(18358, 16424, 'sixteen thousand four hundred twenty-four'); INSERT INTO t2 VALUES(18359, 56226, 'fifty-six thousand two hundred twenty-six'); INSERT INTO t2 VALUES(18360, 731, 'seven hundred thirty-one'); INSERT INTO t2 VALUES(18361, 10683, 'ten thousand six hundred eighty-three'); INSERT INTO t2 VALUES(18362, 31441, 'thirty-one thousand four hundred forty-one'); INSERT INTO t2 VALUES(18363, 34988, 'thirty-four thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(18364, 36140, 'thirty-six thousand one hundred forty'); INSERT INTO t2 VALUES(18365, 78345, 'seventy-eight thousand three hundred forty-five'); INSERT INTO t2 VALUES(18366, 5815, 'five thousand eight hundred fifteen'); INSERT INTO t2 VALUES(18367, 83776, 'eighty-three thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(18368, 46842, 'forty-six thousand eight hundred forty-two'); INSERT INTO t2 VALUES(18369, 42829, 'forty-two thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(18370, 27079, 'twenty-seven thousand seventy-nine'); INSERT INTO t2 VALUES(18371, 97533, 'ninety-seven thousand five hundred thirty-three'); INSERT INTO t2 VALUES(18372, 9006, 'nine thousand six'); INSERT INTO t2 VALUES(18373, 57559, 'fifty-seven thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(18374, 67778, 'sixty-seven thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(18375, 29581, 'twenty-nine thousand five hundred eighty-one'); INSERT INTO t2 VALUES(18376, 91225, 'ninety-one thousand two hundred twenty-five'); INSERT INTO t2 VALUES(18377, 95131, 'ninety-five thousand one hundred thirty-one'); INSERT INTO t2 VALUES(18378, 52717, 'fifty-two thousand seven hundred seventeen'); INSERT INTO t2 VALUES(18379, 48972, 'forty-eight thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(18380, 453, 'four hundred fifty-three'); INSERT INTO t2 VALUES(18381, 21128, 'twenty-one thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(18382, 47788, 'forty-seven thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(18383, 99462, 'ninety-nine thousand four hundred sixty-two'); INSERT INTO t2 VALUES(18384, 21760, 'twenty-one thousand seven hundred sixty'); INSERT INTO t2 VALUES(18385, 36089, 'thirty-six thousand eighty-nine'); INSERT INTO t2 VALUES(18386, 92991, 'ninety-two thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(18387, 48698, 'forty-eight thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(18388, 85285, 'eighty-five thousand two hundred eighty-five'); INSERT INTO t2 VALUES(18389, 32287, 'thirty-two thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(18390, 38926, 'thirty-eight thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(18391, 642, 'six hundred forty-two'); INSERT INTO t2 VALUES(18392, 44543, 'forty-four thousand five hundred forty-three'); INSERT INTO t2 VALUES(18393, 63281, 'sixty-three thousand two hundred eighty-one'); INSERT INTO t2 VALUES(18394, 112, 'one hundred twelve'); INSERT INTO t2 VALUES(18395, 91476, 'ninety-one thousand four hundred seventy-six'); INSERT INTO t2 VALUES(18396, 82160, 'eighty-two thousand one hundred sixty'); INSERT INTO t2 VALUES(18397, 25391, 'twenty-five thousand three hundred ninety-one'); INSERT INTO t2 VALUES(18398, 66435, 'sixty-six thousand four hundred thirty-five'); INSERT INTO t2 VALUES(18399, 96523, 'ninety-six thousand five hundred twenty-three'); INSERT INTO t2 VALUES(18400, 37965, 'thirty-seven thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(18401, 48181, 'forty-eight thousand one hundred eighty-one'); INSERT INTO t2 VALUES(18402, 40891, 'forty thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(18403, 20979, 'twenty thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(18404, 76332, 'seventy-six thousand three hundred thirty-two'); INSERT INTO t2 VALUES(18405, 73666, 'seventy-three thousand six hundred sixty-six'); INSERT INTO t2 VALUES(18406, 15137, 'fifteen thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(18407, 20201, 'twenty thousand two hundred one'); INSERT INTO t2 VALUES(18408, 71520, 'seventy-one thousand five hundred twenty'); INSERT INTO t2 VALUES(18409, 68896, 'sixty-eight thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(18410, 77980, 'seventy-seven thousand nine hundred eighty'); INSERT INTO t2 VALUES(18411, 42240, 'forty-two thousand two hundred forty'); INSERT INTO t2 VALUES(18412, 73414, 'seventy-three thousand four hundred fourteen'); INSERT INTO t2 VALUES(18413, 36228, 'thirty-six thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(18414, 53431, 'fifty-three thousand four hundred thirty-one'); INSERT INTO t2 VALUES(18415, 65419, 'sixty-five thousand four hundred nineteen'); INSERT INTO t2 VALUES(18416, 12234, 'twelve thousand two hundred thirty-four'); INSERT INTO t2 VALUES(18417, 34417, 'thirty-four thousand four hundred seventeen'); INSERT INTO t2 VALUES(18418, 22648, 'twenty-two thousand six hundred forty-eight'); INSERT INTO t2 VALUES(18419, 90857, 'ninety thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(18420, 35979, 'thirty-five thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(18421, 76857, 'seventy-six thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(18422, 52915, 'fifty-two thousand nine hundred fifteen'); INSERT INTO t2 VALUES(18423, 60994, 'sixty thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(18424, 58900, 'fifty-eight thousand nine hundred'); INSERT INTO t2 VALUES(18425, 49329, 'forty-nine thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(18426, 95885, 'ninety-five thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(18427, 8966, 'eight thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(18428, 20307, 'twenty thousand three hundred seven'); INSERT INTO t2 VALUES(18429, 98936, 'ninety-eight thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(18430, 78825, 'seventy-eight thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(18431, 99762, 'ninety-nine thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(18432, 58314, 'fifty-eight thousand three hundred fourteen'); INSERT INTO t2 VALUES(18433, 73188, 'seventy-three thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(18434, 44479, 'forty-four thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(18435, 8871, 'eight thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(18436, 46605, 'forty-six thousand six hundred five'); INSERT INTO t2 VALUES(18437, 73824, 'seventy-three thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(18438, 67113, 'sixty-seven thousand one hundred thirteen'); INSERT INTO t2 VALUES(18439, 15026, 'fifteen thousand twenty-six'); INSERT INTO t2 VALUES(18440, 41522, 'forty-one thousand five hundred twenty-two'); INSERT INTO t2 VALUES(18441, 40006, 'forty thousand six'); INSERT INTO t2 VALUES(18442, 24713, 'twenty-four thousand seven hundred thirteen'); INSERT INTO t2 VALUES(18443, 87002, 'eighty-seven thousand two'); INSERT INTO t2 VALUES(18444, 77684, 'seventy-seven thousand six hundred eighty-four'); INSERT INTO t2 VALUES(18445, 22088, 'twenty-two thousand eighty-eight'); INSERT INTO t2 VALUES(18446, 41906, 'forty-one thousand nine hundred six'); INSERT INTO t2 VALUES(18447, 81118, 'eighty-one thousand one hundred eighteen'); INSERT INTO t2 VALUES(18448, 68019, 'sixty-eight thousand nineteen'); INSERT INTO t2 VALUES(18449, 27091, 'twenty-seven thousand ninety-one'); INSERT INTO t2 VALUES(18450, 269, 'two hundred sixty-nine'); INSERT INTO t2 VALUES(18451, 45754, 'forty-five thousand seven hundred fifty-four'); INSERT INTO t2 VALUES(18452, 52984, 'fifty-two thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(18453, 47739, 'forty-seven thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(18454, 92242, 'ninety-two thousand two hundred forty-two'); INSERT INTO t2 VALUES(18455, 44980, 'forty-four thousand nine hundred eighty'); INSERT INTO t2 VALUES(18456, 85263, 'eighty-five thousand two hundred sixty-three'); INSERT INTO t2 VALUES(18457, 33523, 'thirty-three thousand five hundred twenty-three'); INSERT INTO t2 VALUES(18458, 61498, 'sixty-one thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(18459, 11967, 'eleven thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(18460, 86916, 'eighty-six thousand nine hundred sixteen'); INSERT INTO t2 VALUES(18461, 66604, 'sixty-six thousand six hundred four'); INSERT INTO t2 VALUES(18462, 11573, 'eleven thousand five hundred seventy-three'); INSERT INTO t2 VALUES(18463, 95539, 'ninety-five thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(18464, 63919, 'sixty-three thousand nine hundred nineteen'); INSERT INTO t2 VALUES(18465, 33303, 'thirty-three thousand three hundred three'); INSERT INTO t2 VALUES(18466, 11044, 'eleven thousand forty-four'); INSERT INTO t2 VALUES(18467, 42204, 'forty-two thousand two hundred four'); INSERT INTO t2 VALUES(18468, 1980, 'one thousand nine hundred eighty'); INSERT INTO t2 VALUES(18469, 91357, 'ninety-one thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(18470, 77608, 'seventy-seven thousand six hundred eight'); INSERT INTO t2 VALUES(18471, 90179, 'ninety thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(18472, 95179, 'ninety-five thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(18473, 19139, 'nineteen thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(18474, 72643, 'seventy-two thousand six hundred forty-three'); INSERT INTO t2 VALUES(18475, 90378, 'ninety thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(18476, 45013, 'forty-five thousand thirteen'); INSERT INTO t2 VALUES(18477, 40148, 'forty thousand one hundred forty-eight'); INSERT INTO t2 VALUES(18478, 43707, 'forty-three thousand seven hundred seven'); INSERT INTO t2 VALUES(18479, 71646, 'seventy-one thousand six hundred forty-six'); INSERT INTO t2 VALUES(18480, 95245, 'ninety-five thousand two hundred forty-five'); INSERT INTO t2 VALUES(18481, 43246, 'forty-three thousand two hundred forty-six'); INSERT INTO t2 VALUES(18482, 365, 'three hundred sixty-five'); INSERT INTO t2 VALUES(18483, 51969, 'fifty-one thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(18484, 5843, 'five thousand eight hundred forty-three'); INSERT INTO t2 VALUES(18485, 3828, 'three thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(18486, 58379, 'fifty-eight thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(18487, 74200, 'seventy-four thousand two hundred'); INSERT INTO t2 VALUES(18488, 59107, 'fifty-nine thousand one hundred seven'); INSERT INTO t2 VALUES(18489, 76795, 'seventy-six thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(18490, 48598, 'forty-eight thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(18491, 91706, 'ninety-one thousand seven hundred six'); INSERT INTO t2 VALUES(18492, 42898, 'forty-two thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(18493, 65592, 'sixty-five thousand five hundred ninety-two'); INSERT INTO t2 VALUES(18494, 96537, 'ninety-six thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(18495, 48672, 'forty-eight thousand six hundred seventy-two'); INSERT INTO t2 VALUES(18496, 23875, 'twenty-three thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(18497, 83166, 'eighty-three thousand one hundred sixty-six'); INSERT INTO t2 VALUES(18498, 42429, 'forty-two thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(18499, 18568, 'eighteen thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(18500, 57129, 'fifty-seven thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(18501, 61487, 'sixty-one thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(18502, 69362, 'sixty-nine thousand three hundred sixty-two'); INSERT INTO t2 VALUES(18503, 77196, 'seventy-seven thousand one hundred ninety-six'); INSERT INTO t2 VALUES(18504, 6345, 'six thousand three hundred forty-five'); INSERT INTO t2 VALUES(18505, 29764, 'twenty-nine thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(18506, 64701, 'sixty-four thousand seven hundred one'); INSERT INTO t2 VALUES(18507, 94106, 'ninety-four thousand one hundred six'); INSERT INTO t2 VALUES(18508, 82139, 'eighty-two thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(18509, 13942, 'thirteen thousand nine hundred forty-two'); INSERT INTO t2 VALUES(18510, 54637, 'fifty-four thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(18511, 91858, 'ninety-one thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(18512, 22644, 'twenty-two thousand six hundred forty-four'); INSERT INTO t2 VALUES(18513, 6650, 'six thousand six hundred fifty'); INSERT INTO t2 VALUES(18514, 26503, 'twenty-six thousand five hundred three'); INSERT INTO t2 VALUES(18515, 10175, 'ten thousand one hundred seventy-five'); INSERT INTO t2 VALUES(18516, 28465, 'twenty-eight thousand four hundred sixty-five'); INSERT INTO t2 VALUES(18517, 67619, 'sixty-seven thousand six hundred nineteen'); INSERT INTO t2 VALUES(18518, 8101, 'eight thousand one hundred one'); INSERT INTO t2 VALUES(18519, 51724, 'fifty-one thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(18520, 41982, 'forty-one thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(18521, 38074, 'thirty-eight thousand seventy-four'); INSERT INTO t2 VALUES(18522, 65986, 'sixty-five thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(18523, 3129, 'three thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(18524, 84377, 'eighty-four thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(18525, 65259, 'sixty-five thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(18526, 75261, 'seventy-five thousand two hundred sixty-one'); INSERT INTO t2 VALUES(18527, 65940, 'sixty-five thousand nine hundred forty'); INSERT INTO t2 VALUES(18528, 59338, 'fifty-nine thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(18529, 5876, 'five thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(18530, 20579, 'twenty thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(18531, 48540, 'forty-eight thousand five hundred forty'); INSERT INTO t2 VALUES(18532, 32525, 'thirty-two thousand five hundred twenty-five'); INSERT INTO t2 VALUES(18533, 88647, 'eighty-eight thousand six hundred forty-seven'); INSERT INTO t2 VALUES(18534, 95211, 'ninety-five thousand two hundred eleven'); INSERT INTO t2 VALUES(18535, 27514, 'twenty-seven thousand five hundred fourteen'); INSERT INTO t2 VALUES(18536, 36100, 'thirty-six thousand one hundred'); INSERT INTO t2 VALUES(18537, 94982, 'ninety-four thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(18538, 89385, 'eighty-nine thousand three hundred eighty-five'); INSERT INTO t2 VALUES(18539, 93106, 'ninety-three thousand one hundred six'); INSERT INTO t2 VALUES(18540, 53853, 'fifty-three thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(18541, 92085, 'ninety-two thousand eighty-five'); INSERT INTO t2 VALUES(18542, 56081, 'fifty-six thousand eighty-one'); INSERT INTO t2 VALUES(18543, 97739, 'ninety-seven thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(18544, 73183, 'seventy-three thousand one hundred eighty-three'); INSERT INTO t2 VALUES(18545, 12467, 'twelve thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(18546, 90255, 'ninety thousand two hundred fifty-five'); INSERT INTO t2 VALUES(18547, 85859, 'eighty-five thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(18548, 61442, 'sixty-one thousand four hundred forty-two'); INSERT INTO t2 VALUES(18549, 16110, 'sixteen thousand one hundred ten'); INSERT INTO t2 VALUES(18550, 78169, 'seventy-eight thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(18551, 23116, 'twenty-three thousand one hundred sixteen'); INSERT INTO t2 VALUES(18552, 20721, 'twenty thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(18553, 84712, 'eighty-four thousand seven hundred twelve'); INSERT INTO t2 VALUES(18554, 24409, 'twenty-four thousand four hundred nine'); INSERT INTO t2 VALUES(18555, 77579, 'seventy-seven thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(18556, 21145, 'twenty-one thousand one hundred forty-five'); INSERT INTO t2 VALUES(18557, 55837, 'fifty-five thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(18558, 93883, 'ninety-three thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(18559, 38706, 'thirty-eight thousand seven hundred six'); INSERT INTO t2 VALUES(18560, 57058, 'fifty-seven thousand fifty-eight'); INSERT INTO t2 VALUES(18561, 36434, 'thirty-six thousand four hundred thirty-four'); INSERT INTO t2 VALUES(18562, 92663, 'ninety-two thousand six hundred sixty-three'); INSERT INTO t2 VALUES(18563, 84145, 'eighty-four thousand one hundred forty-five'); INSERT INTO t2 VALUES(18564, 71327, 'seventy-one thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(18565, 77240, 'seventy-seven thousand two hundred forty'); INSERT INTO t2 VALUES(18566, 83331, 'eighty-three thousand three hundred thirty-one'); INSERT INTO t2 VALUES(18567, 94907, 'ninety-four thousand nine hundred seven'); INSERT INTO t2 VALUES(18568, 62003, 'sixty-two thousand three'); INSERT INTO t2 VALUES(18569, 56659, 'fifty-six thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(18570, 97384, 'ninety-seven thousand three hundred eighty-four'); INSERT INTO t2 VALUES(18571, 68455, 'sixty-eight thousand four hundred fifty-five'); INSERT INTO t2 VALUES(18572, 29622, 'twenty-nine thousand six hundred twenty-two'); INSERT INTO t2 VALUES(18573, 55847, 'fifty-five thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(18574, 26537, 'twenty-six thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(18575, 66035, 'sixty-six thousand thirty-five'); INSERT INTO t2 VALUES(18576, 47454, 'forty-seven thousand four hundred fifty-four'); INSERT INTO t2 VALUES(18577, 23839, 'twenty-three thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(18578, 69033, 'sixty-nine thousand thirty-three'); INSERT INTO t2 VALUES(18579, 78914, 'seventy-eight thousand nine hundred fourteen'); INSERT INTO t2 VALUES(18580, 50252, 'fifty thousand two hundred fifty-two'); INSERT INTO t2 VALUES(18581, 2307, 'two thousand three hundred seven'); INSERT INTO t2 VALUES(18582, 58588, 'fifty-eight thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(18583, 98427, 'ninety-eight thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(18584, 1793, 'one thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(18585, 62900, 'sixty-two thousand nine hundred'); INSERT INTO t2 VALUES(18586, 82209, 'eighty-two thousand two hundred nine'); INSERT INTO t2 VALUES(18587, 79054, 'seventy-nine thousand fifty-four'); INSERT INTO t2 VALUES(18588, 21329, 'twenty-one thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(18589, 8775, 'eight thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(18590, 67466, 'sixty-seven thousand four hundred sixty-six'); INSERT INTO t2 VALUES(18591, 65686, 'sixty-five thousand six hundred eighty-six'); INSERT INTO t2 VALUES(18592, 83934, 'eighty-three thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(18593, 26678, 'twenty-six thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(18594, 63786, 'sixty-three thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(18595, 47475, 'forty-seven thousand four hundred seventy-five'); INSERT INTO t2 VALUES(18596, 19359, 'nineteen thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(18597, 55237, 'fifty-five thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(18598, 59231, 'fifty-nine thousand two hundred thirty-one'); INSERT INTO t2 VALUES(18599, 77603, 'seventy-seven thousand six hundred three'); INSERT INTO t2 VALUES(18600, 61299, 'sixty-one thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(18601, 93489, 'ninety-three thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(18602, 96309, 'ninety-six thousand three hundred nine'); INSERT INTO t2 VALUES(18603, 90300, 'ninety thousand three hundred'); INSERT INTO t2 VALUES(18604, 50215, 'fifty thousand two hundred fifteen'); INSERT INTO t2 VALUES(18605, 67750, 'sixty-seven thousand seven hundred fifty'); INSERT INTO t2 VALUES(18606, 28571, 'twenty-eight thousand five hundred seventy-one'); INSERT INTO t2 VALUES(18607, 61326, 'sixty-one thousand three hundred twenty-six'); INSERT INTO t2 VALUES(18608, 84577, 'eighty-four thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(18609, 15631, 'fifteen thousand six hundred thirty-one'); INSERT INTO t2 VALUES(18610, 69316, 'sixty-nine thousand three hundred sixteen'); INSERT INTO t2 VALUES(18611, 43954, 'forty-three thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(18612, 34538, 'thirty-four thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(18613, 97738, 'ninety-seven thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(18614, 40210, 'forty thousand two hundred ten'); INSERT INTO t2 VALUES(18615, 6042, 'six thousand forty-two'); INSERT INTO t2 VALUES(18616, 66239, 'sixty-six thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(18617, 62056, 'sixty-two thousand fifty-six'); INSERT INTO t2 VALUES(18618, 1981, 'one thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(18619, 51704, 'fifty-one thousand seven hundred four'); INSERT INTO t2 VALUES(18620, 34157, 'thirty-four thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(18621, 9763, 'nine thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(18622, 7582, 'seven thousand five hundred eighty-two'); INSERT INTO t2 VALUES(18623, 20044, 'twenty thousand forty-four'); INSERT INTO t2 VALUES(18624, 89128, 'eighty-nine thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(18625, 81508, 'eighty-one thousand five hundred eight'); INSERT INTO t2 VALUES(18626, 3473, 'three thousand four hundred seventy-three'); INSERT INTO t2 VALUES(18627, 8503, 'eight thousand five hundred three'); INSERT INTO t2 VALUES(18628, 13097, 'thirteen thousand ninety-seven'); INSERT INTO t2 VALUES(18629, 39206, 'thirty-nine thousand two hundred six'); INSERT INTO t2 VALUES(18630, 21739, 'twenty-one thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(18631, 67295, 'sixty-seven thousand two hundred ninety-five'); INSERT INTO t2 VALUES(18632, 20358, 'twenty thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(18633, 52274, 'fifty-two thousand two hundred seventy-four'); INSERT INTO t2 VALUES(18634, 53056, 'fifty-three thousand fifty-six'); INSERT INTO t2 VALUES(18635, 80750, 'eighty thousand seven hundred fifty'); INSERT INTO t2 VALUES(18636, 85084, 'eighty-five thousand eighty-four'); INSERT INTO t2 VALUES(18637, 5926, 'five thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(18638, 87945, 'eighty-seven thousand nine hundred forty-five'); INSERT INTO t2 VALUES(18639, 96042, 'ninety-six thousand forty-two'); INSERT INTO t2 VALUES(18640, 72083, 'seventy-two thousand eighty-three'); INSERT INTO t2 VALUES(18641, 54517, 'fifty-four thousand five hundred seventeen'); INSERT INTO t2 VALUES(18642, 58251, 'fifty-eight thousand two hundred fifty-one'); INSERT INTO t2 VALUES(18643, 17566, 'seventeen thousand five hundred sixty-six'); INSERT INTO t2 VALUES(18644, 32752, 'thirty-two thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(18645, 98985, 'ninety-eight thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(18646, 16796, 'sixteen thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(18647, 39379, 'thirty-nine thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(18648, 39380, 'thirty-nine thousand three hundred eighty'); INSERT INTO t2 VALUES(18649, 82948, 'eighty-two thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(18650, 7854, 'seven thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(18651, 7308, 'seven thousand three hundred eight'); INSERT INTO t2 VALUES(18652, 94650, 'ninety-four thousand six hundred fifty'); INSERT INTO t2 VALUES(18653, 59034, 'fifty-nine thousand thirty-four'); INSERT INTO t2 VALUES(18654, 43598, 'forty-three thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(18655, 37405, 'thirty-seven thousand four hundred five'); INSERT INTO t2 VALUES(18656, 22872, 'twenty-two thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(18657, 24592, 'twenty-four thousand five hundred ninety-two'); INSERT INTO t2 VALUES(18658, 39243, 'thirty-nine thousand two hundred forty-three'); INSERT INTO t2 VALUES(18659, 4120, 'four thousand one hundred twenty'); INSERT INTO t2 VALUES(18660, 74950, 'seventy-four thousand nine hundred fifty'); INSERT INTO t2 VALUES(18661, 83333, 'eighty-three thousand three hundred thirty-three'); INSERT INTO t2 VALUES(18662, 83157, 'eighty-three thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(18663, 67567, 'sixty-seven thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(18664, 87579, 'eighty-seven thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(18665, 91246, 'ninety-one thousand two hundred forty-six'); INSERT INTO t2 VALUES(18666, 66539, 'sixty-six thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(18667, 83293, 'eighty-three thousand two hundred ninety-three'); INSERT INTO t2 VALUES(18668, 52342, 'fifty-two thousand three hundred forty-two'); INSERT INTO t2 VALUES(18669, 29678, 'twenty-nine thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(18670, 37210, 'thirty-seven thousand two hundred ten'); INSERT INTO t2 VALUES(18671, 90276, 'ninety thousand two hundred seventy-six'); INSERT INTO t2 VALUES(18672, 44350, 'forty-four thousand three hundred fifty'); INSERT INTO t2 VALUES(18673, 44241, 'forty-four thousand two hundred forty-one'); INSERT INTO t2 VALUES(18674, 66086, 'sixty-six thousand eighty-six'); INSERT INTO t2 VALUES(18675, 15280, 'fifteen thousand two hundred eighty'); INSERT INTO t2 VALUES(18676, 84374, 'eighty-four thousand three hundred seventy-four'); INSERT INTO t2 VALUES(18677, 81132, 'eighty-one thousand one hundred thirty-two'); INSERT INTO t2 VALUES(18678, 39694, 'thirty-nine thousand six hundred ninety-four'); INSERT INTO t2 VALUES(18679, 81179, 'eighty-one thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(18680, 42861, 'forty-two thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(18681, 93983, 'ninety-three thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(18682, 18468, 'eighteen thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(18683, 12486, 'twelve thousand four hundred eighty-six'); INSERT INTO t2 VALUES(18684, 82452, 'eighty-two thousand four hundred fifty-two'); INSERT INTO t2 VALUES(18685, 6399, 'six thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(18686, 58448, 'fifty-eight thousand four hundred forty-eight'); INSERT INTO t2 VALUES(18687, 22074, 'twenty-two thousand seventy-four'); INSERT INTO t2 VALUES(18688, 24913, 'twenty-four thousand nine hundred thirteen'); INSERT INTO t2 VALUES(18689, 89605, 'eighty-nine thousand six hundred five'); INSERT INTO t2 VALUES(18690, 86248, 'eighty-six thousand two hundred forty-eight'); INSERT INTO t2 VALUES(18691, 38484, 'thirty-eight thousand four hundred eighty-four'); INSERT INTO t2 VALUES(18692, 57865, 'fifty-seven thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(18693, 49110, 'forty-nine thousand one hundred ten'); INSERT INTO t2 VALUES(18694, 39104, 'thirty-nine thousand one hundred four'); INSERT INTO t2 VALUES(18695, 73831, 'seventy-three thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(18696, 68340, 'sixty-eight thousand three hundred forty'); INSERT INTO t2 VALUES(18697, 69172, 'sixty-nine thousand one hundred seventy-two'); INSERT INTO t2 VALUES(18698, 72872, 'seventy-two thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(18699, 91381, 'ninety-one thousand three hundred eighty-one'); INSERT INTO t2 VALUES(18700, 16952, 'sixteen thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(18701, 50080, 'fifty thousand eighty'); INSERT INTO t2 VALUES(18702, 36745, 'thirty-six thousand seven hundred forty-five'); INSERT INTO t2 VALUES(18703, 36373, 'thirty-six thousand three hundred seventy-three'); INSERT INTO t2 VALUES(18704, 24046, 'twenty-four thousand forty-six'); INSERT INTO t2 VALUES(18705, 36647, 'thirty-six thousand six hundred forty-seven'); INSERT INTO t2 VALUES(18706, 39396, 'thirty-nine thousand three hundred ninety-six'); INSERT INTO t2 VALUES(18707, 35907, 'thirty-five thousand nine hundred seven'); INSERT INTO t2 VALUES(18708, 96731, 'ninety-six thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(18709, 5654, 'five thousand six hundred fifty-four'); INSERT INTO t2 VALUES(18710, 46087, 'forty-six thousand eighty-seven'); INSERT INTO t2 VALUES(18711, 87602, 'eighty-seven thousand six hundred two'); INSERT INTO t2 VALUES(18712, 60015, 'sixty thousand fifteen'); INSERT INTO t2 VALUES(18713, 23547, 'twenty-three thousand five hundred forty-seven'); INSERT INTO t2 VALUES(18714, 14953, 'fourteen thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(18715, 7654, 'seven thousand six hundred fifty-four'); INSERT INTO t2 VALUES(18716, 83481, 'eighty-three thousand four hundred eighty-one'); INSERT INTO t2 VALUES(18717, 98558, 'ninety-eight thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(18718, 30836, 'thirty thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(18719, 70424, 'seventy thousand four hundred twenty-four'); INSERT INTO t2 VALUES(18720, 84554, 'eighty-four thousand five hundred fifty-four'); INSERT INTO t2 VALUES(18721, 24047, 'twenty-four thousand forty-seven'); INSERT INTO t2 VALUES(18722, 91840, 'ninety-one thousand eight hundred forty'); INSERT INTO t2 VALUES(18723, 39872, 'thirty-nine thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(18724, 50273, 'fifty thousand two hundred seventy-three'); INSERT INTO t2 VALUES(18725, 50130, 'fifty thousand one hundred thirty'); INSERT INTO t2 VALUES(18726, 88720, 'eighty-eight thousand seven hundred twenty'); INSERT INTO t2 VALUES(18727, 65194, 'sixty-five thousand one hundred ninety-four'); INSERT INTO t2 VALUES(18728, 87478, 'eighty-seven thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(18729, 77463, 'seventy-seven thousand four hundred sixty-three'); INSERT INTO t2 VALUES(18730, 90659, 'ninety thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(18731, 74621, 'seventy-four thousand six hundred twenty-one'); INSERT INTO t2 VALUES(18732, 96558, 'ninety-six thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(18733, 29388, 'twenty-nine thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(18734, 77584, 'seventy-seven thousand five hundred eighty-four'); INSERT INTO t2 VALUES(18735, 19517, 'nineteen thousand five hundred seventeen'); INSERT INTO t2 VALUES(18736, 29673, 'twenty-nine thousand six hundred seventy-three'); INSERT INTO t2 VALUES(18737, 11652, 'eleven thousand six hundred fifty-two'); INSERT INTO t2 VALUES(18738, 99629, 'ninety-nine thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(18739, 98497, 'ninety-eight thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(18740, 70677, 'seventy thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(18741, 56885, 'fifty-six thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(18742, 50300, 'fifty thousand three hundred'); INSERT INTO t2 VALUES(18743, 88670, 'eighty-eight thousand six hundred seventy'); INSERT INTO t2 VALUES(18744, 65077, 'sixty-five thousand seventy-seven'); INSERT INTO t2 VALUES(18745, 2047, 'two thousand forty-seven'); INSERT INTO t2 VALUES(18746, 61124, 'sixty-one thousand one hundred twenty-four'); INSERT INTO t2 VALUES(18747, 10165, 'ten thousand one hundred sixty-five'); INSERT INTO t2 VALUES(18748, 27550, 'twenty-seven thousand five hundred fifty'); INSERT INTO t2 VALUES(18749, 34580, 'thirty-four thousand five hundred eighty'); INSERT INTO t2 VALUES(18750, 99940, 'ninety-nine thousand nine hundred forty'); INSERT INTO t2 VALUES(18751, 98411, 'ninety-eight thousand four hundred eleven'); INSERT INTO t2 VALUES(18752, 97643, 'ninety-seven thousand six hundred forty-three'); INSERT INTO t2 VALUES(18753, 6033, 'six thousand thirty-three'); INSERT INTO t2 VALUES(18754, 25087, 'twenty-five thousand eighty-seven'); INSERT INTO t2 VALUES(18755, 29830, 'twenty-nine thousand eight hundred thirty'); INSERT INTO t2 VALUES(18756, 30176, 'thirty thousand one hundred seventy-six'); INSERT INTO t2 VALUES(18757, 81701, 'eighty-one thousand seven hundred one'); INSERT INTO t2 VALUES(18758, 82815, 'eighty-two thousand eight hundred fifteen'); INSERT INTO t2 VALUES(18759, 34076, 'thirty-four thousand seventy-six'); INSERT INTO t2 VALUES(18760, 93687, 'ninety-three thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(18761, 9092, 'nine thousand ninety-two'); INSERT INTO t2 VALUES(18762, 13389, 'thirteen thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(18763, 249, 'two hundred forty-nine'); INSERT INTO t2 VALUES(18764, 51285, 'fifty-one thousand two hundred eighty-five'); INSERT INTO t2 VALUES(18765, 21602, 'twenty-one thousand six hundred two'); INSERT INTO t2 VALUES(18766, 11, 'eleven'); INSERT INTO t2 VALUES(18767, 6955, 'six thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(18768, 34289, 'thirty-four thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(18769, 3155, 'three thousand one hundred fifty-five'); INSERT INTO t2 VALUES(18770, 45927, 'forty-five thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(18771, 45515, 'forty-five thousand five hundred fifteen'); INSERT INTO t2 VALUES(18772, 5901, 'five thousand nine hundred one'); INSERT INTO t2 VALUES(18773, 29983, 'twenty-nine thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(18774, 3029, 'three thousand twenty-nine'); INSERT INTO t2 VALUES(18775, 5043, 'five thousand forty-three'); INSERT INTO t2 VALUES(18776, 53633, 'fifty-three thousand six hundred thirty-three'); INSERT INTO t2 VALUES(18777, 65066, 'sixty-five thousand sixty-six'); INSERT INTO t2 VALUES(18778, 73856, 'seventy-three thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(18779, 83138, 'eighty-three thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(18780, 80891, 'eighty thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(18781, 9830, 'nine thousand eight hundred thirty'); INSERT INTO t2 VALUES(18782, 41074, 'forty-one thousand seventy-four'); INSERT INTO t2 VALUES(18783, 85980, 'eighty-five thousand nine hundred eighty'); INSERT INTO t2 VALUES(18784, 75946, 'seventy-five thousand nine hundred forty-six'); INSERT INTO t2 VALUES(18785, 977, 'nine hundred seventy-seven'); INSERT INTO t2 VALUES(18786, 93832, 'ninety-three thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(18787, 68079, 'sixty-eight thousand seventy-nine'); INSERT INTO t2 VALUES(18788, 78524, 'seventy-eight thousand five hundred twenty-four'); INSERT INTO t2 VALUES(18789, 66498, 'sixty-six thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(18790, 10305, 'ten thousand three hundred five'); INSERT INTO t2 VALUES(18791, 47656, 'forty-seven thousand six hundred fifty-six'); INSERT INTO t2 VALUES(18792, 62053, 'sixty-two thousand fifty-three'); INSERT INTO t2 VALUES(18793, 514, 'five hundred fourteen'); INSERT INTO t2 VALUES(18794, 46264, 'forty-six thousand two hundred sixty-four'); INSERT INTO t2 VALUES(18795, 87502, 'eighty-seven thousand five hundred two'); INSERT INTO t2 VALUES(18796, 38452, 'thirty-eight thousand four hundred fifty-two'); INSERT INTO t2 VALUES(18797, 35515, 'thirty-five thousand five hundred fifteen'); INSERT INTO t2 VALUES(18798, 40423, 'forty thousand four hundred twenty-three'); INSERT INTO t2 VALUES(18799, 99524, 'ninety-nine thousand five hundred twenty-four'); INSERT INTO t2 VALUES(18800, 77832, 'seventy-seven thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(18801, 71463, 'seventy-one thousand four hundred sixty-three'); INSERT INTO t2 VALUES(18802, 41421, 'forty-one thousand four hundred twenty-one'); INSERT INTO t2 VALUES(18803, 72748, 'seventy-two thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(18804, 19888, 'nineteen thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(18805, 89845, 'eighty-nine thousand eight hundred forty-five'); INSERT INTO t2 VALUES(18806, 29159, 'twenty-nine thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(18807, 97771, 'ninety-seven thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(18808, 15300, 'fifteen thousand three hundred'); INSERT INTO t2 VALUES(18809, 37323, 'thirty-seven thousand three hundred twenty-three'); INSERT INTO t2 VALUES(18810, 6598, 'six thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(18811, 56937, 'fifty-six thousand nine hundred thirty-seven'); INSERT INTO t2 VALUES(18812, 34564, 'thirty-four thousand five hundred sixty-four'); INSERT INTO t2 VALUES(18813, 46600, 'forty-six thousand six hundred'); INSERT INTO t2 VALUES(18814, 26017, 'twenty-six thousand seventeen'); INSERT INTO t2 VALUES(18815, 41326, 'forty-one thousand three hundred twenty-six'); INSERT INTO t2 VALUES(18816, 15241, 'fifteen thousand two hundred forty-one'); INSERT INTO t2 VALUES(18817, 42026, 'forty-two thousand twenty-six'); INSERT INTO t2 VALUES(18818, 59163, 'fifty-nine thousand one hundred sixty-three'); INSERT INTO t2 VALUES(18819, 38012, 'thirty-eight thousand twelve'); INSERT INTO t2 VALUES(18820, 54765, 'fifty-four thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(18821, 99795, 'ninety-nine thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(18822, 99092, 'ninety-nine thousand ninety-two'); INSERT INTO t2 VALUES(18823, 8715, 'eight thousand seven hundred fifteen'); INSERT INTO t2 VALUES(18824, 73440, 'seventy-three thousand four hundred forty'); INSERT INTO t2 VALUES(18825, 71756, 'seventy-one thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(18826, 8910, 'eight thousand nine hundred ten'); INSERT INTO t2 VALUES(18827, 3117, 'three thousand one hundred seventeen'); INSERT INTO t2 VALUES(18828, 16094, 'sixteen thousand ninety-four'); INSERT INTO t2 VALUES(18829, 83916, 'eighty-three thousand nine hundred sixteen'); INSERT INTO t2 VALUES(18830, 17671, 'seventeen thousand six hundred seventy-one'); INSERT INTO t2 VALUES(18831, 878, 'eight hundred seventy-eight'); INSERT INTO t2 VALUES(18832, 10788, 'ten thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(18833, 97871, 'ninety-seven thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(18834, 27623, 'twenty-seven thousand six hundred twenty-three'); INSERT INTO t2 VALUES(18835, 94876, 'ninety-four thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(18836, 3106, 'three thousand one hundred six'); INSERT INTO t2 VALUES(18837, 39224, 'thirty-nine thousand two hundred twenty-four'); INSERT INTO t2 VALUES(18838, 58444, 'fifty-eight thousand four hundred forty-four'); INSERT INTO t2 VALUES(18839, 14452, 'fourteen thousand four hundred fifty-two'); INSERT INTO t2 VALUES(18840, 29211, 'twenty-nine thousand two hundred eleven'); INSERT INTO t2 VALUES(18841, 35892, 'thirty-five thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(18842, 38531, 'thirty-eight thousand five hundred thirty-one'); INSERT INTO t2 VALUES(18843, 87443, 'eighty-seven thousand four hundred forty-three'); INSERT INTO t2 VALUES(18844, 68228, 'sixty-eight thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(18845, 37597, 'thirty-seven thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(18846, 61031, 'sixty-one thousand thirty-one'); INSERT INTO t2 VALUES(18847, 33517, 'thirty-three thousand five hundred seventeen'); INSERT INTO t2 VALUES(18848, 90411, 'ninety thousand four hundred eleven'); INSERT INTO t2 VALUES(18849, 58083, 'fifty-eight thousand eighty-three'); INSERT INTO t2 VALUES(18850, 17349, 'seventeen thousand three hundred forty-nine'); INSERT INTO t2 VALUES(18851, 84115, 'eighty-four thousand one hundred fifteen'); INSERT INTO t2 VALUES(18852, 79451, 'seventy-nine thousand four hundred fifty-one'); INSERT INTO t2 VALUES(18853, 70685, 'seventy thousand six hundred eighty-five'); INSERT INTO t2 VALUES(18854, 53320, 'fifty-three thousand three hundred twenty'); INSERT INTO t2 VALUES(18855, 36845, 'thirty-six thousand eight hundred forty-five'); INSERT INTO t2 VALUES(18856, 18337, 'eighteen thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(18857, 97153, 'ninety-seven thousand one hundred fifty-three'); INSERT INTO t2 VALUES(18858, 79596, 'seventy-nine thousand five hundred ninety-six'); INSERT INTO t2 VALUES(18859, 29565, 'twenty-nine thousand five hundred sixty-five'); INSERT INTO t2 VALUES(18860, 39715, 'thirty-nine thousand seven hundred fifteen'); INSERT INTO t2 VALUES(18861, 45640, 'forty-five thousand six hundred forty'); INSERT INTO t2 VALUES(18862, 87335, 'eighty-seven thousand three hundred thirty-five'); INSERT INTO t2 VALUES(18863, 60625, 'sixty thousand six hundred twenty-five'); INSERT INTO t2 VALUES(18864, 15626, 'fifteen thousand six hundred twenty-six'); INSERT INTO t2 VALUES(18865, 92850, 'ninety-two thousand eight hundred fifty'); INSERT INTO t2 VALUES(18866, 42716, 'forty-two thousand seven hundred sixteen'); INSERT INTO t2 VALUES(18867, 52742, 'fifty-two thousand seven hundred forty-two'); INSERT INTO t2 VALUES(18868, 55667, 'fifty-five thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(18869, 19032, 'nineteen thousand thirty-two'); INSERT INTO t2 VALUES(18870, 99178, 'ninety-nine thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(18871, 51263, 'fifty-one thousand two hundred sixty-three'); INSERT INTO t2 VALUES(18872, 91787, 'ninety-one thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(18873, 53781, 'fifty-three thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(18874, 52400, 'fifty-two thousand four hundred'); INSERT INTO t2 VALUES(18875, 62631, 'sixty-two thousand six hundred thirty-one'); INSERT INTO t2 VALUES(18876, 63636, 'sixty-three thousand six hundred thirty-six'); INSERT INTO t2 VALUES(18877, 29864, 'twenty-nine thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(18878, 22760, 'twenty-two thousand seven hundred sixty'); INSERT INTO t2 VALUES(18879, 40055, 'forty thousand fifty-five'); INSERT INTO t2 VALUES(18880, 48697, 'forty-eight thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(18881, 38560, 'thirty-eight thousand five hundred sixty'); INSERT INTO t2 VALUES(18882, 20775, 'twenty thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(18883, 42998, 'forty-two thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(18884, 80624, 'eighty thousand six hundred twenty-four'); INSERT INTO t2 VALUES(18885, 41739, 'forty-one thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(18886, 14934, 'fourteen thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(18887, 12255, 'twelve thousand two hundred fifty-five'); INSERT INTO t2 VALUES(18888, 81374, 'eighty-one thousand three hundred seventy-four'); INSERT INTO t2 VALUES(18889, 34287, 'thirty-four thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(18890, 12624, 'twelve thousand six hundred twenty-four'); INSERT INTO t2 VALUES(18891, 64354, 'sixty-four thousand three hundred fifty-four'); INSERT INTO t2 VALUES(18892, 52825, 'fifty-two thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(18893, 19958, 'nineteen thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(18894, 58308, 'fifty-eight thousand three hundred eight'); INSERT INTO t2 VALUES(18895, 9671, 'nine thousand six hundred seventy-one'); INSERT INTO t2 VALUES(18896, 96751, 'ninety-six thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(18897, 24420, 'twenty-four thousand four hundred twenty'); INSERT INTO t2 VALUES(18898, 68507, 'sixty-eight thousand five hundred seven'); INSERT INTO t2 VALUES(18899, 82598, 'eighty-two thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(18900, 12017, 'twelve thousand seventeen'); INSERT INTO t2 VALUES(18901, 64991, 'sixty-four thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(18902, 52247, 'fifty-two thousand two hundred forty-seven'); INSERT INTO t2 VALUES(18903, 76658, 'seventy-six thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(18904, 77452, 'seventy-seven thousand four hundred fifty-two'); INSERT INTO t2 VALUES(18905, 63547, 'sixty-three thousand five hundred forty-seven'); INSERT INTO t2 VALUES(18906, 18299, 'eighteen thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(18907, 83659, 'eighty-three thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(18908, 95758, 'ninety-five thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(18909, 54484, 'fifty-four thousand four hundred eighty-four'); INSERT INTO t2 VALUES(18910, 8547, 'eight thousand five hundred forty-seven'); INSERT INTO t2 VALUES(18911, 55616, 'fifty-five thousand six hundred sixteen'); INSERT INTO t2 VALUES(18912, 22436, 'twenty-two thousand four hundred thirty-six'); INSERT INTO t2 VALUES(18913, 56354, 'fifty-six thousand three hundred fifty-four'); INSERT INTO t2 VALUES(18914, 48276, 'forty-eight thousand two hundred seventy-six'); INSERT INTO t2 VALUES(18915, 26876, 'twenty-six thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(18916, 8676, 'eight thousand six hundred seventy-six'); INSERT INTO t2 VALUES(18917, 69218, 'sixty-nine thousand two hundred eighteen'); INSERT INTO t2 VALUES(18918, 77478, 'seventy-seven thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(18919, 59658, 'fifty-nine thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(18920, 54517, 'fifty-four thousand five hundred seventeen'); INSERT INTO t2 VALUES(18921, 35129, 'thirty-five thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(18922, 26263, 'twenty-six thousand two hundred sixty-three'); INSERT INTO t2 VALUES(18923, 80335, 'eighty thousand three hundred thirty-five'); INSERT INTO t2 VALUES(18924, 39566, 'thirty-nine thousand five hundred sixty-six'); INSERT INTO t2 VALUES(18925, 99649, 'ninety-nine thousand six hundred forty-nine'); INSERT INTO t2 VALUES(18926, 46261, 'forty-six thousand two hundred sixty-one'); INSERT INTO t2 VALUES(18927, 3305, 'three thousand three hundred five'); INSERT INTO t2 VALUES(18928, 14787, 'fourteen thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(18929, 39940, 'thirty-nine thousand nine hundred forty'); INSERT INTO t2 VALUES(18930, 17261, 'seventeen thousand two hundred sixty-one'); INSERT INTO t2 VALUES(18931, 49417, 'forty-nine thousand four hundred seventeen'); INSERT INTO t2 VALUES(18932, 32668, 'thirty-two thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(18933, 31290, 'thirty-one thousand two hundred ninety'); INSERT INTO t2 VALUES(18934, 44232, 'forty-four thousand two hundred thirty-two'); INSERT INTO t2 VALUES(18935, 50531, 'fifty thousand five hundred thirty-one'); INSERT INTO t2 VALUES(18936, 65895, 'sixty-five thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(18937, 52227, 'fifty-two thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(18938, 75235, 'seventy-five thousand two hundred thirty-five'); INSERT INTO t2 VALUES(18939, 45151, 'forty-five thousand one hundred fifty-one'); INSERT INTO t2 VALUES(18940, 44494, 'forty-four thousand four hundred ninety-four'); INSERT INTO t2 VALUES(18941, 65286, 'sixty-five thousand two hundred eighty-six'); INSERT INTO t2 VALUES(18942, 49716, 'forty-nine thousand seven hundred sixteen'); INSERT INTO t2 VALUES(18943, 45708, 'forty-five thousand seven hundred eight'); INSERT INTO t2 VALUES(18944, 9136, 'nine thousand one hundred thirty-six'); INSERT INTO t2 VALUES(18945, 21538, 'twenty-one thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(18946, 4381, 'four thousand three hundred eighty-one'); INSERT INTO t2 VALUES(18947, 49958, 'forty-nine thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(18948, 5912, 'five thousand nine hundred twelve'); INSERT INTO t2 VALUES(18949, 85077, 'eighty-five thousand seventy-seven'); INSERT INTO t2 VALUES(18950, 1854, 'one thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(18951, 89035, 'eighty-nine thousand thirty-five'); INSERT INTO t2 VALUES(18952, 64295, 'sixty-four thousand two hundred ninety-five'); INSERT INTO t2 VALUES(18953, 85437, 'eighty-five thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(18954, 82909, 'eighty-two thousand nine hundred nine'); INSERT INTO t2 VALUES(18955, 20692, 'twenty thousand six hundred ninety-two'); INSERT INTO t2 VALUES(18956, 25026, 'twenty-five thousand twenty-six'); INSERT INTO t2 VALUES(18957, 56705, 'fifty-six thousand seven hundred five'); INSERT INTO t2 VALUES(18958, 29832, 'twenty-nine thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(18959, 12228, 'twelve thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(18960, 37710, 'thirty-seven thousand seven hundred ten'); INSERT INTO t2 VALUES(18961, 27001, 'twenty-seven thousand one'); INSERT INTO t2 VALUES(18962, 54140, 'fifty-four thousand one hundred forty'); INSERT INTO t2 VALUES(18963, 77872, 'seventy-seven thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(18964, 34254, 'thirty-four thousand two hundred fifty-four'); INSERT INTO t2 VALUES(18965, 12869, 'twelve thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(18966, 53837, 'fifty-three thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(18967, 44302, 'forty-four thousand three hundred two'); INSERT INTO t2 VALUES(18968, 71988, 'seventy-one thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(18969, 59052, 'fifty-nine thousand fifty-two'); INSERT INTO t2 VALUES(18970, 81771, 'eighty-one thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(18971, 65920, 'sixty-five thousand nine hundred twenty'); INSERT INTO t2 VALUES(18972, 20014, 'twenty thousand fourteen'); INSERT INTO t2 VALUES(18973, 58262, 'fifty-eight thousand two hundred sixty-two'); INSERT INTO t2 VALUES(18974, 4498, 'four thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(18975, 45523, 'forty-five thousand five hundred twenty-three'); INSERT INTO t2 VALUES(18976, 26741, 'twenty-six thousand seven hundred forty-one'); INSERT INTO t2 VALUES(18977, 90323, 'ninety thousand three hundred twenty-three'); INSERT INTO t2 VALUES(18978, 95532, 'ninety-five thousand five hundred thirty-two'); INSERT INTO t2 VALUES(18979, 11494, 'eleven thousand four hundred ninety-four'); INSERT INTO t2 VALUES(18980, 51732, 'fifty-one thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(18981, 64287, 'sixty-four thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(18982, 87066, 'eighty-seven thousand sixty-six'); INSERT INTO t2 VALUES(18983, 58939, 'fifty-eight thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(18984, 60175, 'sixty thousand one hundred seventy-five'); INSERT INTO t2 VALUES(18985, 4656, 'four thousand six hundred fifty-six'); INSERT INTO t2 VALUES(18986, 44600, 'forty-four thousand six hundred'); INSERT INTO t2 VALUES(18987, 55426, 'fifty-five thousand four hundred twenty-six'); INSERT INTO t2 VALUES(18988, 59201, 'fifty-nine thousand two hundred one'); INSERT INTO t2 VALUES(18989, 57906, 'fifty-seven thousand nine hundred six'); INSERT INTO t2 VALUES(18990, 32790, 'thirty-two thousand seven hundred ninety'); INSERT INTO t2 VALUES(18991, 51625, 'fifty-one thousand six hundred twenty-five'); INSERT INTO t2 VALUES(18992, 38843, 'thirty-eight thousand eight hundred forty-three'); INSERT INTO t2 VALUES(18993, 88356, 'eighty-eight thousand three hundred fifty-six'); INSERT INTO t2 VALUES(18994, 14911, 'fourteen thousand nine hundred eleven'); INSERT INTO t2 VALUES(18995, 6240, 'six thousand two hundred forty'); INSERT INTO t2 VALUES(18996, 8196, 'eight thousand one hundred ninety-six'); INSERT INTO t2 VALUES(18997, 69323, 'sixty-nine thousand three hundred twenty-three'); INSERT INTO t2 VALUES(18998, 21472, 'twenty-one thousand four hundred seventy-two'); INSERT INTO t2 VALUES(18999, 42759, 'forty-two thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(19000, 95694, 'ninety-five thousand six hundred ninety-four'); INSERT INTO t2 VALUES(19001, 7868, 'seven thousand eight hundred sixty-eight'); INSERT INTO t2 VALUES(19002, 56355, 'fifty-six thousand three hundred fifty-five'); INSERT INTO t2 VALUES(19003, 84603, 'eighty-four thousand six hundred three'); INSERT INTO t2 VALUES(19004, 36516, 'thirty-six thousand five hundred sixteen'); INSERT INTO t2 VALUES(19005, 47060, 'forty-seven thousand sixty'); INSERT INTO t2 VALUES(19006, 5579, 'five thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(19007, 97001, 'ninety-seven thousand one'); INSERT INTO t2 VALUES(19008, 3206, 'three thousand two hundred six'); INSERT INTO t2 VALUES(19009, 84535, 'eighty-four thousand five hundred thirty-five'); INSERT INTO t2 VALUES(19010, 63355, 'sixty-three thousand three hundred fifty-five'); INSERT INTO t2 VALUES(19011, 20955, 'twenty thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(19012, 68146, 'sixty-eight thousand one hundred forty-six'); INSERT INTO t2 VALUES(19013, 35059, 'thirty-five thousand fifty-nine'); INSERT INTO t2 VALUES(19014, 36380, 'thirty-six thousand three hundred eighty'); INSERT INTO t2 VALUES(19015, 26685, 'twenty-six thousand six hundred eighty-five'); INSERT INTO t2 VALUES(19016, 18344, 'eighteen thousand three hundred forty-four'); INSERT INTO t2 VALUES(19017, 33545, 'thirty-three thousand five hundred forty-five'); INSERT INTO t2 VALUES(19018, 41479, 'forty-one thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(19019, 19622, 'nineteen thousand six hundred twenty-two'); INSERT INTO t2 VALUES(19020, 83640, 'eighty-three thousand six hundred forty'); INSERT INTO t2 VALUES(19021, 33865, 'thirty-three thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(19022, 2777, 'two thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(19023, 45928, 'forty-five thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(19024, 67567, 'sixty-seven thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(19025, 89509, 'eighty-nine thousand five hundred nine'); INSERT INTO t2 VALUES(19026, 14363, 'fourteen thousand three hundred sixty-three'); INSERT INTO t2 VALUES(19027, 13142, 'thirteen thousand one hundred forty-two'); INSERT INTO t2 VALUES(19028, 74945, 'seventy-four thousand nine hundred forty-five'); INSERT INTO t2 VALUES(19029, 30508, 'thirty thousand five hundred eight'); INSERT INTO t2 VALUES(19030, 41484, 'forty-one thousand four hundred eighty-four'); INSERT INTO t2 VALUES(19031, 3995, 'three thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(19032, 54071, 'fifty-four thousand seventy-one'); INSERT INTO t2 VALUES(19033, 66377, 'sixty-six thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(19034, 18931, 'eighteen thousand nine hundred thirty-one'); INSERT INTO t2 VALUES(19035, 81728, 'eighty-one thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(19036, 64193, 'sixty-four thousand one hundred ninety-three'); INSERT INTO t2 VALUES(19037, 63077, 'sixty-three thousand seventy-seven'); INSERT INTO t2 VALUES(19038, 75760, 'seventy-five thousand seven hundred sixty'); INSERT INTO t2 VALUES(19039, 45176, 'forty-five thousand one hundred seventy-six'); INSERT INTO t2 VALUES(19040, 49495, 'forty-nine thousand four hundred ninety-five'); INSERT INTO t2 VALUES(19041, 23953, 'twenty-three thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(19042, 30807, 'thirty thousand eight hundred seven'); INSERT INTO t2 VALUES(19043, 84432, 'eighty-four thousand four hundred thirty-two'); INSERT INTO t2 VALUES(19044, 6884, 'six thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(19045, 71966, 'seventy-one thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(19046, 65569, 'sixty-five thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(19047, 15617, 'fifteen thousand six hundred seventeen'); INSERT INTO t2 VALUES(19048, 49244, 'forty-nine thousand two hundred forty-four'); INSERT INTO t2 VALUES(19049, 72542, 'seventy-two thousand five hundred forty-two'); INSERT INTO t2 VALUES(19050, 51806, 'fifty-one thousand eight hundred six'); INSERT INTO t2 VALUES(19051, 53389, 'fifty-three thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(19052, 23506, 'twenty-three thousand five hundred six'); INSERT INTO t2 VALUES(19053, 63209, 'sixty-three thousand two hundred nine'); INSERT INTO t2 VALUES(19054, 9826, 'nine thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(19055, 75631, 'seventy-five thousand six hundred thirty-one'); INSERT INTO t2 VALUES(19056, 15555, 'fifteen thousand five hundred fifty-five'); INSERT INTO t2 VALUES(19057, 79187, 'seventy-nine thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(19058, 75915, 'seventy-five thousand nine hundred fifteen'); INSERT INTO t2 VALUES(19059, 33512, 'thirty-three thousand five hundred twelve'); INSERT INTO t2 VALUES(19060, 22996, 'twenty-two thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(19061, 20687, 'twenty thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(19062, 37828, 'thirty-seven thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(19063, 46900, 'forty-six thousand nine hundred'); INSERT INTO t2 VALUES(19064, 25811, 'twenty-five thousand eight hundred eleven'); INSERT INTO t2 VALUES(19065, 93443, 'ninety-three thousand four hundred forty-three'); INSERT INTO t2 VALUES(19066, 53314, 'fifty-three thousand three hundred fourteen'); INSERT INTO t2 VALUES(19067, 19042, 'nineteen thousand forty-two'); INSERT INTO t2 VALUES(19068, 80681, 'eighty thousand six hundred eighty-one'); INSERT INTO t2 VALUES(19069, 62655, 'sixty-two thousand six hundred fifty-five'); INSERT INTO t2 VALUES(19070, 64478, 'sixty-four thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(19071, 93568, 'ninety-three thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(19072, 71184, 'seventy-one thousand one hundred eighty-four'); INSERT INTO t2 VALUES(19073, 46349, 'forty-six thousand three hundred forty-nine'); INSERT INTO t2 VALUES(19074, 17332, 'seventeen thousand three hundred thirty-two'); INSERT INTO t2 VALUES(19075, 3078, 'three thousand seventy-eight'); INSERT INTO t2 VALUES(19076, 70995, 'seventy thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(19077, 5056, 'five thousand fifty-six'); INSERT INTO t2 VALUES(19078, 68252, 'sixty-eight thousand two hundred fifty-two'); INSERT INTO t2 VALUES(19079, 6002, 'six thousand two'); INSERT INTO t2 VALUES(19080, 50714, 'fifty thousand seven hundred fourteen'); INSERT INTO t2 VALUES(19081, 12655, 'twelve thousand six hundred fifty-five'); INSERT INTO t2 VALUES(19082, 44405, 'forty-four thousand four hundred five'); INSERT INTO t2 VALUES(19083, 66729, 'sixty-six thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(19084, 83802, 'eighty-three thousand eight hundred two'); INSERT INTO t2 VALUES(19085, 88524, 'eighty-eight thousand five hundred twenty-four'); INSERT INTO t2 VALUES(19086, 53687, 'fifty-three thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(19087, 20075, 'twenty thousand seventy-five'); INSERT INTO t2 VALUES(19088, 23867, 'twenty-three thousand eight hundred sixty-seven'); INSERT INTO t2 VALUES(19089, 45296, 'forty-five thousand two hundred ninety-six'); INSERT INTO t2 VALUES(19090, 68474, 'sixty-eight thousand four hundred seventy-four'); INSERT INTO t2 VALUES(19091, 64963, 'sixty-four thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(19092, 63629, 'sixty-three thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(19093, 68918, 'sixty-eight thousand nine hundred eighteen'); INSERT INTO t2 VALUES(19094, 84979, 'eighty-four thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(19095, 46533, 'forty-six thousand five hundred thirty-three'); INSERT INTO t2 VALUES(19096, 5738, 'five thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(19097, 64281, 'sixty-four thousand two hundred eighty-one'); INSERT INTO t2 VALUES(19098, 23618, 'twenty-three thousand six hundred eighteen'); INSERT INTO t2 VALUES(19099, 18092, 'eighteen thousand ninety-two'); INSERT INTO t2 VALUES(19100, 91857, 'ninety-one thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(19101, 86699, 'eighty-six thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(19102, 77769, 'seventy-seven thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(19103, 53988, 'fifty-three thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(19104, 51167, 'fifty-one thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(19105, 621, 'six hundred twenty-one'); INSERT INTO t2 VALUES(19106, 73178, 'seventy-three thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(19107, 35166, 'thirty-five thousand one hundred sixty-six'); INSERT INTO t2 VALUES(19108, 6609, 'six thousand six hundred nine'); INSERT INTO t2 VALUES(19109, 44953, 'forty-four thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(19110, 15511, 'fifteen thousand five hundred eleven'); INSERT INTO t2 VALUES(19111, 53648, 'fifty-three thousand six hundred forty-eight'); INSERT INTO t2 VALUES(19112, 83729, 'eighty-three thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(19113, 55438, 'fifty-five thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(19114, 61437, 'sixty-one thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(19115, 28033, 'twenty-eight thousand thirty-three'); INSERT INTO t2 VALUES(19116, 33323, 'thirty-three thousand three hundred twenty-three'); INSERT INTO t2 VALUES(19117, 4828, 'four thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(19118, 47205, 'forty-seven thousand two hundred five'); INSERT INTO t2 VALUES(19119, 58332, 'fifty-eight thousand three hundred thirty-two'); INSERT INTO t2 VALUES(19120, 41066, 'forty-one thousand sixty-six'); INSERT INTO t2 VALUES(19121, 94989, 'ninety-four thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(19122, 94426, 'ninety-four thousand four hundred twenty-six'); INSERT INTO t2 VALUES(19123, 22059, 'twenty-two thousand fifty-nine'); INSERT INTO t2 VALUES(19124, 91133, 'ninety-one thousand one hundred thirty-three'); INSERT INTO t2 VALUES(19125, 92327, 'ninety-two thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(19126, 51599, 'fifty-one thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(19127, 43984, 'forty-three thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(19128, 30427, 'thirty thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(19129, 75376, 'seventy-five thousand three hundred seventy-six'); INSERT INTO t2 VALUES(19130, 69139, 'sixty-nine thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(19131, 4525, 'four thousand five hundred twenty-five'); INSERT INTO t2 VALUES(19132, 54018, 'fifty-four thousand eighteen'); INSERT INTO t2 VALUES(19133, 47735, 'forty-seven thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(19134, 11168, 'eleven thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(19135, 70787, 'seventy thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(19136, 84789, 'eighty-four thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(19137, 27344, 'twenty-seven thousand three hundred forty-four'); INSERT INTO t2 VALUES(19138, 38401, 'thirty-eight thousand four hundred one'); INSERT INTO t2 VALUES(19139, 88983, 'eighty-eight thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(19140, 59937, 'fifty-nine thousand nine hundred thirty-seven'); INSERT INTO t2 VALUES(19141, 97464, 'ninety-seven thousand four hundred sixty-four'); INSERT INTO t2 VALUES(19142, 27361, 'twenty-seven thousand three hundred sixty-one'); INSERT INTO t2 VALUES(19143, 68881, 'sixty-eight thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(19144, 93728, 'ninety-three thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(19145, 67674, 'sixty-seven thousand six hundred seventy-four'); INSERT INTO t2 VALUES(19146, 60647, 'sixty thousand six hundred forty-seven'); INSERT INTO t2 VALUES(19147, 47812, 'forty-seven thousand eight hundred twelve'); INSERT INTO t2 VALUES(19148, 52620, 'fifty-two thousand six hundred twenty'); INSERT INTO t2 VALUES(19149, 55378, 'fifty-five thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(19150, 1983, 'one thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(19151, 55759, 'fifty-five thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(19152, 51276, 'fifty-one thousand two hundred seventy-six'); INSERT INTO t2 VALUES(19153, 2656, 'two thousand six hundred fifty-six'); INSERT INTO t2 VALUES(19154, 21718, 'twenty-one thousand seven hundred eighteen'); INSERT INTO t2 VALUES(19155, 81395, 'eighty-one thousand three hundred ninety-five'); INSERT INTO t2 VALUES(19156, 45772, 'forty-five thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(19157, 40801, 'forty thousand eight hundred one'); INSERT INTO t2 VALUES(19158, 61516, 'sixty-one thousand five hundred sixteen'); INSERT INTO t2 VALUES(19159, 98103, 'ninety-eight thousand one hundred three'); INSERT INTO t2 VALUES(19160, 92758, 'ninety-two thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(19161, 78281, 'seventy-eight thousand two hundred eighty-one'); INSERT INTO t2 VALUES(19162, 81014, 'eighty-one thousand fourteen'); INSERT INTO t2 VALUES(19163, 43639, 'forty-three thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(19164, 56325, 'fifty-six thousand three hundred twenty-five'); INSERT INTO t2 VALUES(19165, 16505, 'sixteen thousand five hundred five'); INSERT INTO t2 VALUES(19166, 99756, 'ninety-nine thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(19167, 76540, 'seventy-six thousand five hundred forty'); INSERT INTO t2 VALUES(19168, 79601, 'seventy-nine thousand six hundred one'); INSERT INTO t2 VALUES(19169, 32571, 'thirty-two thousand five hundred seventy-one'); INSERT INTO t2 VALUES(19170, 53496, 'fifty-three thousand four hundred ninety-six'); INSERT INTO t2 VALUES(19171, 52103, 'fifty-two thousand one hundred three'); INSERT INTO t2 VALUES(19172, 48441, 'forty-eight thousand four hundred forty-one'); INSERT INTO t2 VALUES(19173, 11183, 'eleven thousand one hundred eighty-three'); INSERT INTO t2 VALUES(19174, 11999, 'eleven thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(19175, 64784, 'sixty-four thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(19176, 57648, 'fifty-seven thousand six hundred forty-eight'); INSERT INTO t2 VALUES(19177, 93896, 'ninety-three thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(19178, 86705, 'eighty-six thousand seven hundred five'); INSERT INTO t2 VALUES(19179, 56557, 'fifty-six thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(19180, 85082, 'eighty-five thousand eighty-two'); INSERT INTO t2 VALUES(19181, 44066, 'forty-four thousand sixty-six'); INSERT INTO t2 VALUES(19182, 79643, 'seventy-nine thousand six hundred forty-three'); INSERT INTO t2 VALUES(19183, 26669, 'twenty-six thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(19184, 7086, 'seven thousand eighty-six'); INSERT INTO t2 VALUES(19185, 72203, 'seventy-two thousand two hundred three'); INSERT INTO t2 VALUES(19186, 26621, 'twenty-six thousand six hundred twenty-one'); INSERT INTO t2 VALUES(19187, 35360, 'thirty-five thousand three hundred sixty'); INSERT INTO t2 VALUES(19188, 25153, 'twenty-five thousand one hundred fifty-three'); INSERT INTO t2 VALUES(19189, 89327, 'eighty-nine thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(19190, 14725, 'fourteen thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(19191, 4851, 'four thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(19192, 51849, 'fifty-one thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(19193, 43102, 'forty-three thousand one hundred two'); INSERT INTO t2 VALUES(19194, 43324, 'forty-three thousand three hundred twenty-four'); INSERT INTO t2 VALUES(19195, 17926, 'seventeen thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(19196, 92550, 'ninety-two thousand five hundred fifty'); INSERT INTO t2 VALUES(19197, 43796, 'forty-three thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(19198, 40213, 'forty thousand two hundred thirteen'); INSERT INTO t2 VALUES(19199, 61732, 'sixty-one thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(19200, 205, 'two hundred five'); INSERT INTO t2 VALUES(19201, 10938, 'ten thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(19202, 24595, 'twenty-four thousand five hundred ninety-five'); INSERT INTO t2 VALUES(19203, 24242, 'twenty-four thousand two hundred forty-two'); INSERT INTO t2 VALUES(19204, 9634, 'nine thousand six hundred thirty-four'); INSERT INTO t2 VALUES(19205, 47434, 'forty-seven thousand four hundred thirty-four'); INSERT INTO t2 VALUES(19206, 39636, 'thirty-nine thousand six hundred thirty-six'); INSERT INTO t2 VALUES(19207, 9980, 'nine thousand nine hundred eighty'); INSERT INTO t2 VALUES(19208, 14582, 'fourteen thousand five hundred eighty-two'); INSERT INTO t2 VALUES(19209, 67735, 'sixty-seven thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(19210, 64889, 'sixty-four thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(19211, 96877, 'ninety-six thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(19212, 19382, 'nineteen thousand three hundred eighty-two'); INSERT INTO t2 VALUES(19213, 48212, 'forty-eight thousand two hundred twelve'); INSERT INTO t2 VALUES(19214, 48582, 'forty-eight thousand five hundred eighty-two'); INSERT INTO t2 VALUES(19215, 24328, 'twenty-four thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(19216, 23197, 'twenty-three thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(19217, 98912, 'ninety-eight thousand nine hundred twelve'); INSERT INTO t2 VALUES(19218, 48167, 'forty-eight thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(19219, 25883, 'twenty-five thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(19220, 54818, 'fifty-four thousand eight hundred eighteen'); INSERT INTO t2 VALUES(19221, 40567, 'forty thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(19222, 77049, 'seventy-seven thousand forty-nine'); INSERT INTO t2 VALUES(19223, 33584, 'thirty-three thousand five hundred eighty-four'); INSERT INTO t2 VALUES(19224, 5195, 'five thousand one hundred ninety-five'); INSERT INTO t2 VALUES(19225, 74944, 'seventy-four thousand nine hundred forty-four'); INSERT INTO t2 VALUES(19226, 69132, 'sixty-nine thousand one hundred thirty-two'); INSERT INTO t2 VALUES(19227, 77605, 'seventy-seven thousand six hundred five'); INSERT INTO t2 VALUES(19228, 70128, 'seventy thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(19229, 30240, 'thirty thousand two hundred forty'); INSERT INTO t2 VALUES(19230, 1878, 'one thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(19231, 40839, 'forty thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(19232, 4747, 'four thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(19233, 50732, 'fifty thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(19234, 8809, 'eight thousand eight hundred nine'); INSERT INTO t2 VALUES(19235, 80568, 'eighty thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(19236, 86070, 'eighty-six thousand seventy'); INSERT INTO t2 VALUES(19237, 38015, 'thirty-eight thousand fifteen'); INSERT INTO t2 VALUES(19238, 89633, 'eighty-nine thousand six hundred thirty-three'); INSERT INTO t2 VALUES(19239, 37092, 'thirty-seven thousand ninety-two'); INSERT INTO t2 VALUES(19240, 2970, 'two thousand nine hundred seventy'); INSERT INTO t2 VALUES(19241, 69240, 'sixty-nine thousand two hundred forty'); INSERT INTO t2 VALUES(19242, 91051, 'ninety-one thousand fifty-one'); INSERT INTO t2 VALUES(19243, 17647, 'seventeen thousand six hundred forty-seven'); INSERT INTO t2 VALUES(19244, 91738, 'ninety-one thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(19245, 26665, 'twenty-six thousand six hundred sixty-five'); INSERT INTO t2 VALUES(19246, 70403, 'seventy thousand four hundred three'); INSERT INTO t2 VALUES(19247, 75347, 'seventy-five thousand three hundred forty-seven'); INSERT INTO t2 VALUES(19248, 56070, 'fifty-six thousand seventy'); INSERT INTO t2 VALUES(19249, 7900, 'seven thousand nine hundred'); INSERT INTO t2 VALUES(19250, 28888, 'twenty-eight thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(19251, 65215, 'sixty-five thousand two hundred fifteen'); INSERT INTO t2 VALUES(19252, 55049, 'fifty-five thousand forty-nine'); INSERT INTO t2 VALUES(19253, 77193, 'seventy-seven thousand one hundred ninety-three'); INSERT INTO t2 VALUES(19254, 61672, 'sixty-one thousand six hundred seventy-two'); INSERT INTO t2 VALUES(19255, 65044, 'sixty-five thousand forty-four'); INSERT INTO t2 VALUES(19256, 49607, 'forty-nine thousand six hundred seven'); INSERT INTO t2 VALUES(19257, 65861, 'sixty-five thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(19258, 34911, 'thirty-four thousand nine hundred eleven'); INSERT INTO t2 VALUES(19259, 69887, 'sixty-nine thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(19260, 36633, 'thirty-six thousand six hundred thirty-three'); INSERT INTO t2 VALUES(19261, 19044, 'nineteen thousand forty-four'); INSERT INTO t2 VALUES(19262, 62796, 'sixty-two thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(19263, 2099, 'two thousand ninety-nine'); INSERT INTO t2 VALUES(19264, 21442, 'twenty-one thousand four hundred forty-two'); INSERT INTO t2 VALUES(19265, 1105, 'one thousand one hundred five'); INSERT INTO t2 VALUES(19266, 9088, 'nine thousand eighty-eight'); INSERT INTO t2 VALUES(19267, 32553, 'thirty-two thousand five hundred fifty-three'); INSERT INTO t2 VALUES(19268, 45639, 'forty-five thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(19269, 83968, 'eighty-three thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(19270, 74415, 'seventy-four thousand four hundred fifteen'); INSERT INTO t2 VALUES(19271, 61705, 'sixty-one thousand seven hundred five'); INSERT INTO t2 VALUES(19272, 83611, 'eighty-three thousand six hundred eleven'); INSERT INTO t2 VALUES(19273, 72558, 'seventy-two thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(19274, 70563, 'seventy thousand five hundred sixty-three'); INSERT INTO t2 VALUES(19275, 89775, 'eighty-nine thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(19276, 30899, 'thirty thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(19277, 36201, 'thirty-six thousand two hundred one'); INSERT INTO t2 VALUES(19278, 11355, 'eleven thousand three hundred fifty-five'); INSERT INTO t2 VALUES(19279, 11681, 'eleven thousand six hundred eighty-one'); INSERT INTO t2 VALUES(19280, 51729, 'fifty-one thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(19281, 9610, 'nine thousand six hundred ten'); INSERT INTO t2 VALUES(19282, 76630, 'seventy-six thousand six hundred thirty'); INSERT INTO t2 VALUES(19283, 54242, 'fifty-four thousand two hundred forty-two'); INSERT INTO t2 VALUES(19284, 43089, 'forty-three thousand eighty-nine'); INSERT INTO t2 VALUES(19285, 20028, 'twenty thousand twenty-eight'); INSERT INTO t2 VALUES(19286, 44382, 'forty-four thousand three hundred eighty-two'); INSERT INTO t2 VALUES(19287, 24297, 'twenty-four thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(19288, 42826, 'forty-two thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(19289, 32397, 'thirty-two thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(19290, 27360, 'twenty-seven thousand three hundred sixty'); INSERT INTO t2 VALUES(19291, 68466, 'sixty-eight thousand four hundred sixty-six'); INSERT INTO t2 VALUES(19292, 43800, 'forty-three thousand eight hundred'); INSERT INTO t2 VALUES(19293, 53218, 'fifty-three thousand two hundred eighteen'); INSERT INTO t2 VALUES(19294, 96719, 'ninety-six thousand seven hundred nineteen'); INSERT INTO t2 VALUES(19295, 22882, 'twenty-two thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(19296, 56150, 'fifty-six thousand one hundred fifty'); INSERT INTO t2 VALUES(19297, 7635, 'seven thousand six hundred thirty-five'); INSERT INTO t2 VALUES(19298, 96949, 'ninety-six thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(19299, 48472, 'forty-eight thousand four hundred seventy-two'); INSERT INTO t2 VALUES(19300, 50260, 'fifty thousand two hundred sixty'); INSERT INTO t2 VALUES(19301, 66430, 'sixty-six thousand four hundred thirty'); INSERT INTO t2 VALUES(19302, 67692, 'sixty-seven thousand six hundred ninety-two'); INSERT INTO t2 VALUES(19303, 23852, 'twenty-three thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(19304, 43309, 'forty-three thousand three hundred nine'); INSERT INTO t2 VALUES(19305, 1511, 'one thousand five hundred eleven'); INSERT INTO t2 VALUES(19306, 47202, 'forty-seven thousand two hundred two'); INSERT INTO t2 VALUES(19307, 46243, 'forty-six thousand two hundred forty-three'); INSERT INTO t2 VALUES(19308, 5669, 'five thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(19309, 94119, 'ninety-four thousand one hundred nineteen'); INSERT INTO t2 VALUES(19310, 32175, 'thirty-two thousand one hundred seventy-five'); INSERT INTO t2 VALUES(19311, 32083, 'thirty-two thousand eighty-three'); INSERT INTO t2 VALUES(19312, 22509, 'twenty-two thousand five hundred nine'); INSERT INTO t2 VALUES(19313, 25422, 'twenty-five thousand four hundred twenty-two'); INSERT INTO t2 VALUES(19314, 4357, 'four thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(19315, 52869, 'fifty-two thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(19316, 17900, 'seventeen thousand nine hundred'); INSERT INTO t2 VALUES(19317, 70938, 'seventy thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(19318, 2002, 'two thousand two'); INSERT INTO t2 VALUES(19319, 33008, 'thirty-three thousand eight'); INSERT INTO t2 VALUES(19320, 42110, 'forty-two thousand one hundred ten'); INSERT INTO t2 VALUES(19321, 28239, 'twenty-eight thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(19322, 49620, 'forty-nine thousand six hundred twenty'); INSERT INTO t2 VALUES(19323, 50859, 'fifty thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(19324, 43373, 'forty-three thousand three hundred seventy-three'); INSERT INTO t2 VALUES(19325, 45449, 'forty-five thousand four hundred forty-nine'); INSERT INTO t2 VALUES(19326, 99210, 'ninety-nine thousand two hundred ten'); INSERT INTO t2 VALUES(19327, 59515, 'fifty-nine thousand five hundred fifteen'); INSERT INTO t2 VALUES(19328, 15559, 'fifteen thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(19329, 75239, 'seventy-five thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(19330, 61016, 'sixty-one thousand sixteen'); INSERT INTO t2 VALUES(19331, 13073, 'thirteen thousand seventy-three'); INSERT INTO t2 VALUES(19332, 17545, 'seventeen thousand five hundred forty-five'); INSERT INTO t2 VALUES(19333, 48173, 'forty-eight thousand one hundred seventy-three'); INSERT INTO t2 VALUES(19334, 46919, 'forty-six thousand nine hundred nineteen'); INSERT INTO t2 VALUES(19335, 40774, 'forty thousand seven hundred seventy-four'); INSERT INTO t2 VALUES(19336, 10810, 'ten thousand eight hundred ten'); INSERT INTO t2 VALUES(19337, 10772, 'ten thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(19338, 31839, 'thirty-one thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(19339, 77514, 'seventy-seven thousand five hundred fourteen'); INSERT INTO t2 VALUES(19340, 25507, 'twenty-five thousand five hundred seven'); INSERT INTO t2 VALUES(19341, 24718, 'twenty-four thousand seven hundred eighteen'); INSERT INTO t2 VALUES(19342, 96088, 'ninety-six thousand eighty-eight'); INSERT INTO t2 VALUES(19343, 37808, 'thirty-seven thousand eight hundred eight'); INSERT INTO t2 VALUES(19344, 28096, 'twenty-eight thousand ninety-six'); INSERT INTO t2 VALUES(19345, 47087, 'forty-seven thousand eighty-seven'); INSERT INTO t2 VALUES(19346, 89794, 'eighty-nine thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(19347, 43305, 'forty-three thousand three hundred five'); INSERT INTO t2 VALUES(19348, 51530, 'fifty-one thousand five hundred thirty'); INSERT INTO t2 VALUES(19349, 72237, 'seventy-two thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(19350, 48165, 'forty-eight thousand one hundred sixty-five'); INSERT INTO t2 VALUES(19351, 87052, 'eighty-seven thousand fifty-two'); INSERT INTO t2 VALUES(19352, 91088, 'ninety-one thousand eighty-eight'); INSERT INTO t2 VALUES(19353, 21787, 'twenty-one thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(19354, 7438, 'seven thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(19355, 93809, 'ninety-three thousand eight hundred nine'); INSERT INTO t2 VALUES(19356, 53387, 'fifty-three thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(19357, 50148, 'fifty thousand one hundred forty-eight'); INSERT INTO t2 VALUES(19358, 2324, 'two thousand three hundred twenty-four'); INSERT INTO t2 VALUES(19359, 62523, 'sixty-two thousand five hundred twenty-three'); INSERT INTO t2 VALUES(19360, 79984, 'seventy-nine thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(19361, 39614, 'thirty-nine thousand six hundred fourteen'); INSERT INTO t2 VALUES(19362, 95101, 'ninety-five thousand one hundred one'); INSERT INTO t2 VALUES(19363, 66708, 'sixty-six thousand seven hundred eight'); INSERT INTO t2 VALUES(19364, 46374, 'forty-six thousand three hundred seventy-four'); INSERT INTO t2 VALUES(19365, 49233, 'forty-nine thousand two hundred thirty-three'); INSERT INTO t2 VALUES(19366, 41598, 'forty-one thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(19367, 35646, 'thirty-five thousand six hundred forty-six'); INSERT INTO t2 VALUES(19368, 42860, 'forty-two thousand eight hundred sixty'); INSERT INTO t2 VALUES(19369, 32294, 'thirty-two thousand two hundred ninety-four'); INSERT INTO t2 VALUES(19370, 43382, 'forty-three thousand three hundred eighty-two'); INSERT INTO t2 VALUES(19371, 93880, 'ninety-three thousand eight hundred eighty'); INSERT INTO t2 VALUES(19372, 73122, 'seventy-three thousand one hundred twenty-two'); INSERT INTO t2 VALUES(19373, 73350, 'seventy-three thousand three hundred fifty'); INSERT INTO t2 VALUES(19374, 2592, 'two thousand five hundred ninety-two'); INSERT INTO t2 VALUES(19375, 31114, 'thirty-one thousand one hundred fourteen'); INSERT INTO t2 VALUES(19376, 18208, 'eighteen thousand two hundred eight'); INSERT INTO t2 VALUES(19377, 66715, 'sixty-six thousand seven hundred fifteen'); INSERT INTO t2 VALUES(19378, 87081, 'eighty-seven thousand eighty-one'); INSERT INTO t2 VALUES(19379, 63922, 'sixty-three thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(19380, 65135, 'sixty-five thousand one hundred thirty-five'); INSERT INTO t2 VALUES(19381, 34806, 'thirty-four thousand eight hundred six'); INSERT INTO t2 VALUES(19382, 16721, 'sixteen thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(19383, 201, 'two hundred one'); INSERT INTO t2 VALUES(19384, 26400, 'twenty-six thousand four hundred'); INSERT INTO t2 VALUES(19385, 33252, 'thirty-three thousand two hundred fifty-two'); INSERT INTO t2 VALUES(19386, 28363, 'twenty-eight thousand three hundred sixty-three'); INSERT INTO t2 VALUES(19387, 6289, 'six thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(19388, 92145, 'ninety-two thousand one hundred forty-five'); INSERT INTO t2 VALUES(19389, 84960, 'eighty-four thousand nine hundred sixty'); INSERT INTO t2 VALUES(19390, 66476, 'sixty-six thousand four hundred seventy-six'); INSERT INTO t2 VALUES(19391, 19786, 'nineteen thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(19392, 95230, 'ninety-five thousand two hundred thirty'); INSERT INTO t2 VALUES(19393, 43209, 'forty-three thousand two hundred nine'); INSERT INTO t2 VALUES(19394, 52268, 'fifty-two thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(19395, 62133, 'sixty-two thousand one hundred thirty-three'); INSERT INTO t2 VALUES(19396, 49167, 'forty-nine thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(19397, 10010, 'ten thousand ten'); INSERT INTO t2 VALUES(19398, 10877, 'ten thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(19399, 48856, 'forty-eight thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(19400, 83792, 'eighty-three thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(19401, 70348, 'seventy thousand three hundred forty-eight'); INSERT INTO t2 VALUES(19402, 47192, 'forty-seven thousand one hundred ninety-two'); INSERT INTO t2 VALUES(19403, 14386, 'fourteen thousand three hundred eighty-six'); INSERT INTO t2 VALUES(19404, 66552, 'sixty-six thousand five hundred fifty-two'); INSERT INTO t2 VALUES(19405, 71672, 'seventy-one thousand six hundred seventy-two'); INSERT INTO t2 VALUES(19406, 52616, 'fifty-two thousand six hundred sixteen'); INSERT INTO t2 VALUES(19407, 4293, 'four thousand two hundred ninety-three'); INSERT INTO t2 VALUES(19408, 51794, 'fifty-one thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(19409, 66831, 'sixty-six thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(19410, 32429, 'thirty-two thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(19411, 47330, 'forty-seven thousand three hundred thirty'); INSERT INTO t2 VALUES(19412, 6712, 'six thousand seven hundred twelve'); INSERT INTO t2 VALUES(19413, 22318, 'twenty-two thousand three hundred eighteen'); INSERT INTO t2 VALUES(19414, 81768, 'eighty-one thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(19415, 17420, 'seventeen thousand four hundred twenty'); INSERT INTO t2 VALUES(19416, 52444, 'fifty-two thousand four hundred forty-four'); INSERT INTO t2 VALUES(19417, 66892, 'sixty-six thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(19418, 9876, 'nine thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(19419, 97886, 'ninety-seven thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(19420, 48250, 'forty-eight thousand two hundred fifty'); INSERT INTO t2 VALUES(19421, 2444, 'two thousand four hundred forty-four'); INSERT INTO t2 VALUES(19422, 25141, 'twenty-five thousand one hundred forty-one'); INSERT INTO t2 VALUES(19423, 76082, 'seventy-six thousand eighty-two'); INSERT INTO t2 VALUES(19424, 65144, 'sixty-five thousand one hundred forty-four'); INSERT INTO t2 VALUES(19425, 97353, 'ninety-seven thousand three hundred fifty-three'); INSERT INTO t2 VALUES(19426, 90269, 'ninety thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(19427, 53684, 'fifty-three thousand six hundred eighty-four'); INSERT INTO t2 VALUES(19428, 72658, 'seventy-two thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(19429, 11347, 'eleven thousand three hundred forty-seven'); INSERT INTO t2 VALUES(19430, 56510, 'fifty-six thousand five hundred ten'); INSERT INTO t2 VALUES(19431, 45481, 'forty-five thousand four hundred eighty-one'); INSERT INTO t2 VALUES(19432, 22, 'twenty-two'); INSERT INTO t2 VALUES(19433, 28940, 'twenty-eight thousand nine hundred forty'); INSERT INTO t2 VALUES(19434, 91707, 'ninety-one thousand seven hundred seven'); INSERT INTO t2 VALUES(19435, 90242, 'ninety thousand two hundred forty-two'); INSERT INTO t2 VALUES(19436, 83129, 'eighty-three thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(19437, 14988, 'fourteen thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(19438, 59144, 'fifty-nine thousand one hundred forty-four'); INSERT INTO t2 VALUES(19439, 89946, 'eighty-nine thousand nine hundred forty-six'); INSERT INTO t2 VALUES(19440, 1864, 'one thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(19441, 94618, 'ninety-four thousand six hundred eighteen'); INSERT INTO t2 VALUES(19442, 62704, 'sixty-two thousand seven hundred four'); INSERT INTO t2 VALUES(19443, 48949, 'forty-eight thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(19444, 57557, 'fifty-seven thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(19445, 99652, 'ninety-nine thousand six hundred fifty-two'); INSERT INTO t2 VALUES(19446, 65442, 'sixty-five thousand four hundred forty-two'); INSERT INTO t2 VALUES(19447, 86076, 'eighty-six thousand seventy-six'); INSERT INTO t2 VALUES(19448, 67110, 'sixty-seven thousand one hundred ten'); INSERT INTO t2 VALUES(19449, 48685, 'forty-eight thousand six hundred eighty-five'); INSERT INTO t2 VALUES(19450, 7597, 'seven thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(19451, 61705, 'sixty-one thousand seven hundred five'); INSERT INTO t2 VALUES(19452, 28462, 'twenty-eight thousand four hundred sixty-two'); INSERT INTO t2 VALUES(19453, 68515, 'sixty-eight thousand five hundred fifteen'); INSERT INTO t2 VALUES(19454, 28122, 'twenty-eight thousand one hundred twenty-two'); INSERT INTO t2 VALUES(19455, 57963, 'fifty-seven thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(19456, 22132, 'twenty-two thousand one hundred thirty-two'); INSERT INTO t2 VALUES(19457, 80751, 'eighty thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(19458, 95004, 'ninety-five thousand four'); INSERT INTO t2 VALUES(19459, 41140, 'forty-one thousand one hundred forty'); INSERT INTO t2 VALUES(19460, 64038, 'sixty-four thousand thirty-eight'); INSERT INTO t2 VALUES(19461, 62227, 'sixty-two thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(19462, 64229, 'sixty-four thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(19463, 96822, 'ninety-six thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(19464, 39952, 'thirty-nine thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(19465, 23326, 'twenty-three thousand three hundred twenty-six'); INSERT INTO t2 VALUES(19466, 75334, 'seventy-five thousand three hundred thirty-four'); INSERT INTO t2 VALUES(19467, 19972, 'nineteen thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(19468, 67975, 'sixty-seven thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(19469, 69206, 'sixty-nine thousand two hundred six'); INSERT INTO t2 VALUES(19470, 30012, 'thirty thousand twelve'); INSERT INTO t2 VALUES(19471, 10368, 'ten thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(19472, 79123, 'seventy-nine thousand one hundred twenty-three'); INSERT INTO t2 VALUES(19473, 96431, 'ninety-six thousand four hundred thirty-one'); INSERT INTO t2 VALUES(19474, 72369, 'seventy-two thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(19475, 42306, 'forty-two thousand three hundred six'); INSERT INTO t2 VALUES(19476, 21722, 'twenty-one thousand seven hundred twenty-two'); INSERT INTO t2 VALUES(19477, 74826, 'seventy-four thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(19478, 91822, 'ninety-one thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(19479, 25361, 'twenty-five thousand three hundred sixty-one'); INSERT INTO t2 VALUES(19480, 80880, 'eighty thousand eight hundred eighty'); INSERT INTO t2 VALUES(19481, 19020, 'nineteen thousand twenty'); INSERT INTO t2 VALUES(19482, 26467, 'twenty-six thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(19483, 55168, 'fifty-five thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(19484, 27838, 'twenty-seven thousand eight hundred thirty-eight'); INSERT INTO t2 VALUES(19485, 75097, 'seventy-five thousand ninety-seven'); INSERT INTO t2 VALUES(19486, 58121, 'fifty-eight thousand one hundred twenty-one'); INSERT INTO t2 VALUES(19487, 67684, 'sixty-seven thousand six hundred eighty-four'); INSERT INTO t2 VALUES(19488, 34533, 'thirty-four thousand five hundred thirty-three'); INSERT INTO t2 VALUES(19489, 65004, 'sixty-five thousand four'); INSERT INTO t2 VALUES(19490, 81753, 'eighty-one thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(19491, 22928, 'twenty-two thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(19492, 89768, 'eighty-nine thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(19493, 80066, 'eighty thousand sixty-six'); INSERT INTO t2 VALUES(19494, 63, 'sixty-three'); INSERT INTO t2 VALUES(19495, 81133, 'eighty-one thousand one hundred thirty-three'); INSERT INTO t2 VALUES(19496, 62368, 'sixty-two thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(19497, 96655, 'ninety-six thousand six hundred fifty-five'); INSERT INTO t2 VALUES(19498, 58355, 'fifty-eight thousand three hundred fifty-five'); INSERT INTO t2 VALUES(19499, 57203, 'fifty-seven thousand two hundred three'); INSERT INTO t2 VALUES(19500, 4648, 'four thousand six hundred forty-eight'); INSERT INTO t2 VALUES(19501, 61347, 'sixty-one thousand three hundred forty-seven'); INSERT INTO t2 VALUES(19502, 25546, 'twenty-five thousand five hundred forty-six'); INSERT INTO t2 VALUES(19503, 96284, 'ninety-six thousand two hundred eighty-four'); INSERT INTO t2 VALUES(19504, 41149, 'forty-one thousand one hundred forty-nine'); INSERT INTO t2 VALUES(19505, 4904, 'four thousand nine hundred four'); INSERT INTO t2 VALUES(19506, 18995, 'eighteen thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(19507, 96790, 'ninety-six thousand seven hundred ninety'); INSERT INTO t2 VALUES(19508, 92836, 'ninety-two thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(19509, 8992, 'eight thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(19510, 69370, 'sixty-nine thousand three hundred seventy'); INSERT INTO t2 VALUES(19511, 60765, 'sixty thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(19512, 16653, 'sixteen thousand six hundred fifty-three'); INSERT INTO t2 VALUES(19513, 10060, 'ten thousand sixty'); INSERT INTO t2 VALUES(19514, 35796, 'thirty-five thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(19515, 93618, 'ninety-three thousand six hundred eighteen'); INSERT INTO t2 VALUES(19516, 80694, 'eighty thousand six hundred ninety-four'); INSERT INTO t2 VALUES(19517, 20147, 'twenty thousand one hundred forty-seven'); INSERT INTO t2 VALUES(19518, 3429, 'three thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(19519, 83564, 'eighty-three thousand five hundred sixty-four'); INSERT INTO t2 VALUES(19520, 88829, 'eighty-eight thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(19521, 77754, 'seventy-seven thousand seven hundred fifty-four'); INSERT INTO t2 VALUES(19522, 12284, 'twelve thousand two hundred eighty-four'); INSERT INTO t2 VALUES(19523, 35935, 'thirty-five thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(19524, 27183, 'twenty-seven thousand one hundred eighty-three'); INSERT INTO t2 VALUES(19525, 64198, 'sixty-four thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(19526, 38675, 'thirty-eight thousand six hundred seventy-five'); INSERT INTO t2 VALUES(19527, 70844, 'seventy thousand eight hundred forty-four'); INSERT INTO t2 VALUES(19528, 22704, 'twenty-two thousand seven hundred four'); INSERT INTO t2 VALUES(19529, 79958, 'seventy-nine thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(19530, 95929, 'ninety-five thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(19531, 6916, 'six thousand nine hundred sixteen'); INSERT INTO t2 VALUES(19532, 54743, 'fifty-four thousand seven hundred forty-three'); INSERT INTO t2 VALUES(19533, 60604, 'sixty thousand six hundred four'); INSERT INTO t2 VALUES(19534, 22325, 'twenty-two thousand three hundred twenty-five'); INSERT INTO t2 VALUES(19535, 26066, 'twenty-six thousand sixty-six'); INSERT INTO t2 VALUES(19536, 25068, 'twenty-five thousand sixty-eight'); INSERT INTO t2 VALUES(19537, 73999, 'seventy-three thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(19538, 90102, 'ninety thousand one hundred two'); INSERT INTO t2 VALUES(19539, 50796, 'fifty thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(19540, 56825, 'fifty-six thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(19541, 94460, 'ninety-four thousand four hundred sixty'); INSERT INTO t2 VALUES(19542, 16262, 'sixteen thousand two hundred sixty-two'); INSERT INTO t2 VALUES(19543, 28322, 'twenty-eight thousand three hundred twenty-two'); INSERT INTO t2 VALUES(19544, 34284, 'thirty-four thousand two hundred eighty-four'); INSERT INTO t2 VALUES(19545, 32065, 'thirty-two thousand sixty-five'); INSERT INTO t2 VALUES(19546, 77081, 'seventy-seven thousand eighty-one'); INSERT INTO t2 VALUES(19547, 96591, 'ninety-six thousand five hundred ninety-one'); INSERT INTO t2 VALUES(19548, 16485, 'sixteen thousand four hundred eighty-five'); INSERT INTO t2 VALUES(19549, 82703, 'eighty-two thousand seven hundred three'); INSERT INTO t2 VALUES(19550, 48669, 'forty-eight thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(19551, 20707, 'twenty thousand seven hundred seven'); INSERT INTO t2 VALUES(19552, 41545, 'forty-one thousand five hundred forty-five'); INSERT INTO t2 VALUES(19553, 27933, 'twenty-seven thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(19554, 66292, 'sixty-six thousand two hundred ninety-two'); INSERT INTO t2 VALUES(19555, 24202, 'twenty-four thousand two hundred two'); INSERT INTO t2 VALUES(19556, 62431, 'sixty-two thousand four hundred thirty-one'); INSERT INTO t2 VALUES(19557, 78840, 'seventy-eight thousand eight hundred forty'); INSERT INTO t2 VALUES(19558, 16413, 'sixteen thousand four hundred thirteen'); INSERT INTO t2 VALUES(19559, 70175, 'seventy thousand one hundred seventy-five'); INSERT INTO t2 VALUES(19560, 60832, 'sixty thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(19561, 23019, 'twenty-three thousand nineteen'); INSERT INTO t2 VALUES(19562, 12209, 'twelve thousand two hundred nine'); INSERT INTO t2 VALUES(19563, 80853, 'eighty thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(19564, 92697, 'ninety-two thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(19565, 28415, 'twenty-eight thousand four hundred fifteen'); INSERT INTO t2 VALUES(19566, 32499, 'thirty-two thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(19567, 27750, 'twenty-seven thousand seven hundred fifty'); INSERT INTO t2 VALUES(19568, 76482, 'seventy-six thousand four hundred eighty-two'); INSERT INTO t2 VALUES(19569, 61990, 'sixty-one thousand nine hundred ninety'); INSERT INTO t2 VALUES(19570, 45851, 'forty-five thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(19571, 70133, 'seventy thousand one hundred thirty-three'); INSERT INTO t2 VALUES(19572, 10924, 'ten thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(19573, 14232, 'fourteen thousand two hundred thirty-two'); INSERT INTO t2 VALUES(19574, 42897, 'forty-two thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(19575, 43859, 'forty-three thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(19576, 45896, 'forty-five thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(19577, 80573, 'eighty thousand five hundred seventy-three'); INSERT INTO t2 VALUES(19578, 33263, 'thirty-three thousand two hundred sixty-three'); INSERT INTO t2 VALUES(19579, 11309, 'eleven thousand three hundred nine'); INSERT INTO t2 VALUES(19580, 51548, 'fifty-one thousand five hundred forty-eight'); INSERT INTO t2 VALUES(19581, 84810, 'eighty-four thousand eight hundred ten'); INSERT INTO t2 VALUES(19582, 5351, 'five thousand three hundred fifty-one'); INSERT INTO t2 VALUES(19583, 49954, 'forty-nine thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(19584, 77970, 'seventy-seven thousand nine hundred seventy'); INSERT INTO t2 VALUES(19585, 38837, 'thirty-eight thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(19586, 84518, 'eighty-four thousand five hundred eighteen'); INSERT INTO t2 VALUES(19587, 77835, 'seventy-seven thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(19588, 79133, 'seventy-nine thousand one hundred thirty-three'); INSERT INTO t2 VALUES(19589, 66653, 'sixty-six thousand six hundred fifty-three'); INSERT INTO t2 VALUES(19590, 66560, 'sixty-six thousand five hundred sixty'); INSERT INTO t2 VALUES(19591, 49271, 'forty-nine thousand two hundred seventy-one'); INSERT INTO t2 VALUES(19592, 51718, 'fifty-one thousand seven hundred eighteen'); INSERT INTO t2 VALUES(19593, 29659, 'twenty-nine thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(19594, 95580, 'ninety-five thousand five hundred eighty'); INSERT INTO t2 VALUES(19595, 96407, 'ninety-six thousand four hundred seven'); INSERT INTO t2 VALUES(19596, 10534, 'ten thousand five hundred thirty-four'); INSERT INTO t2 VALUES(19597, 87778, 'eighty-seven thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(19598, 15207, 'fifteen thousand two hundred seven'); INSERT INTO t2 VALUES(19599, 34221, 'thirty-four thousand two hundred twenty-one'); INSERT INTO t2 VALUES(19600, 94870, 'ninety-four thousand eight hundred seventy'); INSERT INTO t2 VALUES(19601, 58996, 'fifty-eight thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(19602, 60626, 'sixty thousand six hundred twenty-six'); INSERT INTO t2 VALUES(19603, 53579, 'fifty-three thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(19604, 23647, 'twenty-three thousand six hundred forty-seven'); INSERT INTO t2 VALUES(19605, 68599, 'sixty-eight thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(19606, 58470, 'fifty-eight thousand four hundred seventy'); INSERT INTO t2 VALUES(19607, 14979, 'fourteen thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(19608, 92082, 'ninety-two thousand eighty-two'); INSERT INTO t2 VALUES(19609, 89164, 'eighty-nine thousand one hundred sixty-four'); INSERT INTO t2 VALUES(19610, 8578, 'eight thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(19611, 21507, 'twenty-one thousand five hundred seven'); INSERT INTO t2 VALUES(19612, 78285, 'seventy-eight thousand two hundred eighty-five'); INSERT INTO t2 VALUES(19613, 28293, 'twenty-eight thousand two hundred ninety-three'); INSERT INTO t2 VALUES(19614, 93758, 'ninety-three thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(19615, 94719, 'ninety-four thousand seven hundred nineteen'); INSERT INTO t2 VALUES(19616, 51661, 'fifty-one thousand six hundred sixty-one'); INSERT INTO t2 VALUES(19617, 82080, 'eighty-two thousand eighty'); INSERT INTO t2 VALUES(19618, 10941, 'ten thousand nine hundred forty-one'); INSERT INTO t2 VALUES(19619, 17836, 'seventeen thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(19620, 28320, 'twenty-eight thousand three hundred twenty'); INSERT INTO t2 VALUES(19621, 83908, 'eighty-three thousand nine hundred eight'); INSERT INTO t2 VALUES(19622, 60471, 'sixty thousand four hundred seventy-one'); INSERT INTO t2 VALUES(19623, 91459, 'ninety-one thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(19624, 82685, 'eighty-two thousand six hundred eighty-five'); INSERT INTO t2 VALUES(19625, 19443, 'nineteen thousand four hundred forty-three'); INSERT INTO t2 VALUES(19626, 91953, 'ninety-one thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(19627, 3738, 'three thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(19628, 56988, 'fifty-six thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(19629, 96647, 'ninety-six thousand six hundred forty-seven'); INSERT INTO t2 VALUES(19630, 43647, 'forty-three thousand six hundred forty-seven'); INSERT INTO t2 VALUES(19631, 85166, 'eighty-five thousand one hundred sixty-six'); INSERT INTO t2 VALUES(19632, 12253, 'twelve thousand two hundred fifty-three'); INSERT INTO t2 VALUES(19633, 74525, 'seventy-four thousand five hundred twenty-five'); INSERT INTO t2 VALUES(19634, 90349, 'ninety thousand three hundred forty-nine'); INSERT INTO t2 VALUES(19635, 74598, 'seventy-four thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(19636, 1249, 'one thousand two hundred forty-nine'); INSERT INTO t2 VALUES(19637, 50478, 'fifty thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(19638, 2228, 'two thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(19639, 52153, 'fifty-two thousand one hundred fifty-three'); INSERT INTO t2 VALUES(19640, 27915, 'twenty-seven thousand nine hundred fifteen'); INSERT INTO t2 VALUES(19641, 11883, 'eleven thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(19642, 30767, 'thirty thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(19643, 97278, 'ninety-seven thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(19644, 16183, 'sixteen thousand one hundred eighty-three'); INSERT INTO t2 VALUES(19645, 54272, 'fifty-four thousand two hundred seventy-two'); INSERT INTO t2 VALUES(19646, 10524, 'ten thousand five hundred twenty-four'); INSERT INTO t2 VALUES(19647, 91389, 'ninety-one thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(19648, 30152, 'thirty thousand one hundred fifty-two'); INSERT INTO t2 VALUES(19649, 42300, 'forty-two thousand three hundred'); INSERT INTO t2 VALUES(19650, 66381, 'sixty-six thousand three hundred eighty-one'); INSERT INTO t2 VALUES(19651, 61423, 'sixty-one thousand four hundred twenty-three'); INSERT INTO t2 VALUES(19652, 2439, 'two thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(19653, 38459, 'thirty-eight thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(19654, 18236, 'eighteen thousand two hundred thirty-six'); INSERT INTO t2 VALUES(19655, 59684, 'fifty-nine thousand six hundred eighty-four'); INSERT INTO t2 VALUES(19656, 81523, 'eighty-one thousand five hundred twenty-three'); INSERT INTO t2 VALUES(19657, 13311, 'thirteen thousand three hundred eleven'); INSERT INTO t2 VALUES(19658, 64452, 'sixty-four thousand four hundred fifty-two'); INSERT INTO t2 VALUES(19659, 38101, 'thirty-eight thousand one hundred one'); INSERT INTO t2 VALUES(19660, 47148, 'forty-seven thousand one hundred forty-eight'); INSERT INTO t2 VALUES(19661, 11105, 'eleven thousand one hundred five'); INSERT INTO t2 VALUES(19662, 12623, 'twelve thousand six hundred twenty-three'); INSERT INTO t2 VALUES(19663, 19114, 'nineteen thousand one hundred fourteen'); INSERT INTO t2 VALUES(19664, 55521, 'fifty-five thousand five hundred twenty-one'); INSERT INTO t2 VALUES(19665, 61789, 'sixty-one thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(19666, 95109, 'ninety-five thousand one hundred nine'); INSERT INTO t2 VALUES(19667, 6761, 'six thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(19668, 69469, 'sixty-nine thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(19669, 26772, 'twenty-six thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(19670, 27451, 'twenty-seven thousand four hundred fifty-one'); INSERT INTO t2 VALUES(19671, 21995, 'twenty-one thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(19672, 59876, 'fifty-nine thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(19673, 13762, 'thirteen thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(19674, 26792, 'twenty-six thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(19675, 81084, 'eighty-one thousand eighty-four'); INSERT INTO t2 VALUES(19676, 37351, 'thirty-seven thousand three hundred fifty-one'); INSERT INTO t2 VALUES(19677, 65250, 'sixty-five thousand two hundred fifty'); INSERT INTO t2 VALUES(19678, 81527, 'eighty-one thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(19679, 36905, 'thirty-six thousand nine hundred five'); INSERT INTO t2 VALUES(19680, 47660, 'forty-seven thousand six hundred sixty'); INSERT INTO t2 VALUES(19681, 22995, 'twenty-two thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(19682, 19225, 'nineteen thousand two hundred twenty-five'); INSERT INTO t2 VALUES(19683, 2693, 'two thousand six hundred ninety-three'); INSERT INTO t2 VALUES(19684, 64964, 'sixty-four thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(19685, 91691, 'ninety-one thousand six hundred ninety-one'); INSERT INTO t2 VALUES(19686, 15382, 'fifteen thousand three hundred eighty-two'); INSERT INTO t2 VALUES(19687, 67817, 'sixty-seven thousand eight hundred seventeen'); INSERT INTO t2 VALUES(19688, 78111, 'seventy-eight thousand one hundred eleven'); INSERT INTO t2 VALUES(19689, 11356, 'eleven thousand three hundred fifty-six'); INSERT INTO t2 VALUES(19690, 6504, 'six thousand five hundred four'); INSERT INTO t2 VALUES(19691, 97517, 'ninety-seven thousand five hundred seventeen'); INSERT INTO t2 VALUES(19692, 98220, 'ninety-eight thousand two hundred twenty'); INSERT INTO t2 VALUES(19693, 71863, 'seventy-one thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(19694, 85460, 'eighty-five thousand four hundred sixty'); INSERT INTO t2 VALUES(19695, 28314, 'twenty-eight thousand three hundred fourteen'); INSERT INTO t2 VALUES(19696, 3256, 'three thousand two hundred fifty-six'); INSERT INTO t2 VALUES(19697, 58069, 'fifty-eight thousand sixty-nine'); INSERT INTO t2 VALUES(19698, 94678, 'ninety-four thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(19699, 54302, 'fifty-four thousand three hundred two'); INSERT INTO t2 VALUES(19700, 25576, 'twenty-five thousand five hundred seventy-six'); INSERT INTO t2 VALUES(19701, 35569, 'thirty-five thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(19702, 61789, 'sixty-one thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(19703, 99265, 'ninety-nine thousand two hundred sixty-five'); INSERT INTO t2 VALUES(19704, 16493, 'sixteen thousand four hundred ninety-three'); INSERT INTO t2 VALUES(19705, 86940, 'eighty-six thousand nine hundred forty'); INSERT INTO t2 VALUES(19706, 4691, 'four thousand six hundred ninety-one'); INSERT INTO t2 VALUES(19707, 99848, 'ninety-nine thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(19708, 61625, 'sixty-one thousand six hundred twenty-five'); INSERT INTO t2 VALUES(19709, 7584, 'seven thousand five hundred eighty-four'); INSERT INTO t2 VALUES(19710, 61591, 'sixty-one thousand five hundred ninety-one'); INSERT INTO t2 VALUES(19711, 48565, 'forty-eight thousand five hundred sixty-five'); INSERT INTO t2 VALUES(19712, 30013, 'thirty thousand thirteen'); INSERT INTO t2 VALUES(19713, 43751, 'forty-three thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(19714, 94680, 'ninety-four thousand six hundred eighty'); INSERT INTO t2 VALUES(19715, 8761, 'eight thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(19716, 6462, 'six thousand four hundred sixty-two'); INSERT INTO t2 VALUES(19717, 52834, 'fifty-two thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(19718, 29130, 'twenty-nine thousand one hundred thirty'); INSERT INTO t2 VALUES(19719, 46559, 'forty-six thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(19720, 58524, 'fifty-eight thousand five hundred twenty-four'); INSERT INTO t2 VALUES(19721, 30948, 'thirty thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(19722, 83340, 'eighty-three thousand three hundred forty'); INSERT INTO t2 VALUES(19723, 33399, 'thirty-three thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(19724, 35963, 'thirty-five thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(19725, 53570, 'fifty-three thousand five hundred seventy'); INSERT INTO t2 VALUES(19726, 22531, 'twenty-two thousand five hundred thirty-one'); INSERT INTO t2 VALUES(19727, 65702, 'sixty-five thousand seven hundred two'); INSERT INTO t2 VALUES(19728, 6151, 'six thousand one hundred fifty-one'); INSERT INTO t2 VALUES(19729, 22564, 'twenty-two thousand five hundred sixty-four'); INSERT INTO t2 VALUES(19730, 51186, 'fifty-one thousand one hundred eighty-six'); INSERT INTO t2 VALUES(19731, 4282, 'four thousand two hundred eighty-two'); INSERT INTO t2 VALUES(19732, 18315, 'eighteen thousand three hundred fifteen'); INSERT INTO t2 VALUES(19733, 76796, 'seventy-six thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(19734, 72166, 'seventy-two thousand one hundred sixty-six'); INSERT INTO t2 VALUES(19735, 53644, 'fifty-three thousand six hundred forty-four'); INSERT INTO t2 VALUES(19736, 10619, 'ten thousand six hundred nineteen'); INSERT INTO t2 VALUES(19737, 64997, 'sixty-four thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(19738, 22161, 'twenty-two thousand one hundred sixty-one'); INSERT INTO t2 VALUES(19739, 8142, 'eight thousand one hundred forty-two'); INSERT INTO t2 VALUES(19740, 10780, 'ten thousand seven hundred eighty'); INSERT INTO t2 VALUES(19741, 69248, 'sixty-nine thousand two hundred forty-eight'); INSERT INTO t2 VALUES(19742, 56786, 'fifty-six thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(19743, 53398, 'fifty-three thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(19744, 84795, 'eighty-four thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(19745, 4636, 'four thousand six hundred thirty-six'); INSERT INTO t2 VALUES(19746, 6238, 'six thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(19747, 3622, 'three thousand six hundred twenty-two'); INSERT INTO t2 VALUES(19748, 48162, 'forty-eight thousand one hundred sixty-two'); INSERT INTO t2 VALUES(19749, 2440, 'two thousand four hundred forty'); INSERT INTO t2 VALUES(19750, 77308, 'seventy-seven thousand three hundred eight'); INSERT INTO t2 VALUES(19751, 94800, 'ninety-four thousand eight hundred'); INSERT INTO t2 VALUES(19752, 24943, 'twenty-four thousand nine hundred forty-three'); INSERT INTO t2 VALUES(19753, 53543, 'fifty-three thousand five hundred forty-three'); INSERT INTO t2 VALUES(19754, 57778, 'fifty-seven thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(19755, 1733, 'one thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(19756, 38360, 'thirty-eight thousand three hundred sixty'); INSERT INTO t2 VALUES(19757, 32098, 'thirty-two thousand ninety-eight'); INSERT INTO t2 VALUES(19758, 66809, 'sixty-six thousand eight hundred nine'); INSERT INTO t2 VALUES(19759, 18557, 'eighteen thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(19760, 45597, 'forty-five thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(19761, 19556, 'nineteen thousand five hundred fifty-six'); INSERT INTO t2 VALUES(19762, 82911, 'eighty-two thousand nine hundred eleven'); INSERT INTO t2 VALUES(19763, 6948, 'six thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(19764, 22761, 'twenty-two thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(19765, 19630, 'nineteen thousand six hundred thirty'); INSERT INTO t2 VALUES(19766, 56186, 'fifty-six thousand one hundred eighty-six'); INSERT INTO t2 VALUES(19767, 35048, 'thirty-five thousand forty-eight'); INSERT INTO t2 VALUES(19768, 95893, 'ninety-five thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(19769, 79559, 'seventy-nine thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(19770, 455, 'four hundred fifty-five'); INSERT INTO t2 VALUES(19771, 13704, 'thirteen thousand seven hundred four'); INSERT INTO t2 VALUES(19772, 84552, 'eighty-four thousand five hundred fifty-two'); INSERT INTO t2 VALUES(19773, 79148, 'seventy-nine thousand one hundred forty-eight'); INSERT INTO t2 VALUES(19774, 79150, 'seventy-nine thousand one hundred fifty'); INSERT INTO t2 VALUES(19775, 707, 'seven hundred seven'); INSERT INTO t2 VALUES(19776, 85901, 'eighty-five thousand nine hundred one'); INSERT INTO t2 VALUES(19777, 27109, 'twenty-seven thousand one hundred nine'); INSERT INTO t2 VALUES(19778, 21154, 'twenty-one thousand one hundred fifty-four'); INSERT INTO t2 VALUES(19779, 50486, 'fifty thousand four hundred eighty-six'); INSERT INTO t2 VALUES(19780, 41518, 'forty-one thousand five hundred eighteen'); INSERT INTO t2 VALUES(19781, 85460, 'eighty-five thousand four hundred sixty'); INSERT INTO t2 VALUES(19782, 9865, 'nine thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(19783, 3551, 'three thousand five hundred fifty-one'); INSERT INTO t2 VALUES(19784, 14149, 'fourteen thousand one hundred forty-nine'); INSERT INTO t2 VALUES(19785, 11263, 'eleven thousand two hundred sixty-three'); INSERT INTO t2 VALUES(19786, 29249, 'twenty-nine thousand two hundred forty-nine'); INSERT INTO t2 VALUES(19787, 92742, 'ninety-two thousand seven hundred forty-two'); INSERT INTO t2 VALUES(19788, 23738, 'twenty-three thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(19789, 8569, 'eight thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(19790, 73611, 'seventy-three thousand six hundred eleven'); INSERT INTO t2 VALUES(19791, 17528, 'seventeen thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(19792, 87132, 'eighty-seven thousand one hundred thirty-two'); INSERT INTO t2 VALUES(19793, 89576, 'eighty-nine thousand five hundred seventy-six'); INSERT INTO t2 VALUES(19794, 58548, 'fifty-eight thousand five hundred forty-eight'); INSERT INTO t2 VALUES(19795, 76515, 'seventy-six thousand five hundred fifteen'); INSERT INTO t2 VALUES(19796, 85275, 'eighty-five thousand two hundred seventy-five'); INSERT INTO t2 VALUES(19797, 74078, 'seventy-four thousand seventy-eight'); INSERT INTO t2 VALUES(19798, 92504, 'ninety-two thousand five hundred four'); INSERT INTO t2 VALUES(19799, 22474, 'twenty-two thousand four hundred seventy-four'); INSERT INTO t2 VALUES(19800, 80380, 'eighty thousand three hundred eighty'); INSERT INTO t2 VALUES(19801, 82322, 'eighty-two thousand three hundred twenty-two'); INSERT INTO t2 VALUES(19802, 2313, 'two thousand three hundred thirteen'); INSERT INTO t2 VALUES(19803, 79813, 'seventy-nine thousand eight hundred thirteen'); INSERT INTO t2 VALUES(19804, 47837, 'forty-seven thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(19805, 2108, 'two thousand one hundred eight'); INSERT INTO t2 VALUES(19806, 16093, 'sixteen thousand ninety-three'); INSERT INTO t2 VALUES(19807, 60147, 'sixty thousand one hundred forty-seven'); INSERT INTO t2 VALUES(19808, 20895, 'twenty thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(19809, 74249, 'seventy-four thousand two hundred forty-nine'); INSERT INTO t2 VALUES(19810, 55563, 'fifty-five thousand five hundred sixty-three'); INSERT INTO t2 VALUES(19811, 10747, 'ten thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(19812, 6585, 'six thousand five hundred eighty-five'); INSERT INTO t2 VALUES(19813, 29215, 'twenty-nine thousand two hundred fifteen'); INSERT INTO t2 VALUES(19814, 76396, 'seventy-six thousand three hundred ninety-six'); INSERT INTO t2 VALUES(19815, 85241, 'eighty-five thousand two hundred forty-one'); INSERT INTO t2 VALUES(19816, 2360, 'two thousand three hundred sixty'); INSERT INTO t2 VALUES(19817, 53226, 'fifty-three thousand two hundred twenty-six'); INSERT INTO t2 VALUES(19818, 51942, 'fifty-one thousand nine hundred forty-two'); INSERT INTO t2 VALUES(19819, 26759, 'twenty-six thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(19820, 59110, 'fifty-nine thousand one hundred ten'); INSERT INTO t2 VALUES(19821, 35304, 'thirty-five thousand three hundred four'); INSERT INTO t2 VALUES(19822, 8459, 'eight thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(19823, 69970, 'sixty-nine thousand nine hundred seventy'); INSERT INTO t2 VALUES(19824, 41987, 'forty-one thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(19825, 27392, 'twenty-seven thousand three hundred ninety-two'); INSERT INTO t2 VALUES(19826, 85072, 'eighty-five thousand seventy-two'); INSERT INTO t2 VALUES(19827, 78015, 'seventy-eight thousand fifteen'); INSERT INTO t2 VALUES(19828, 71128, 'seventy-one thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(19829, 78156, 'seventy-eight thousand one hundred fifty-six'); INSERT INTO t2 VALUES(19830, 38900, 'thirty-eight thousand nine hundred'); INSERT INTO t2 VALUES(19831, 86028, 'eighty-six thousand twenty-eight'); INSERT INTO t2 VALUES(19832, 97658, 'ninety-seven thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(19833, 22026, 'twenty-two thousand twenty-six'); INSERT INTO t2 VALUES(19834, 60160, 'sixty thousand one hundred sixty'); INSERT INTO t2 VALUES(19835, 78417, 'seventy-eight thousand four hundred seventeen'); INSERT INTO t2 VALUES(19836, 32551, 'thirty-two thousand five hundred fifty-one'); INSERT INTO t2 VALUES(19837, 61239, 'sixty-one thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(19838, 73367, 'seventy-three thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(19839, 46572, 'forty-six thousand five hundred seventy-two'); INSERT INTO t2 VALUES(19840, 72377, 'seventy-two thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(19841, 862, 'eight hundred sixty-two'); INSERT INTO t2 VALUES(19842, 18676, 'eighteen thousand six hundred seventy-six'); INSERT INTO t2 VALUES(19843, 64473, 'sixty-four thousand four hundred seventy-three'); INSERT INTO t2 VALUES(19844, 42674, 'forty-two thousand six hundred seventy-four'); INSERT INTO t2 VALUES(19845, 59521, 'fifty-nine thousand five hundred twenty-one'); INSERT INTO t2 VALUES(19846, 30886, 'thirty thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(19847, 79158, 'seventy-nine thousand one hundred fifty-eight'); INSERT INTO t2 VALUES(19848, 88093, 'eighty-eight thousand ninety-three'); INSERT INTO t2 VALUES(19849, 32744, 'thirty-two thousand seven hundred forty-four'); INSERT INTO t2 VALUES(19850, 50025, 'fifty thousand twenty-five'); INSERT INTO t2 VALUES(19851, 41811, 'forty-one thousand eight hundred eleven'); INSERT INTO t2 VALUES(19852, 73961, 'seventy-three thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(19853, 60616, 'sixty thousand six hundred sixteen'); INSERT INTO t2 VALUES(19854, 84485, 'eighty-four thousand four hundred eighty-five'); INSERT INTO t2 VALUES(19855, 26608, 'twenty-six thousand six hundred eight'); INSERT INTO t2 VALUES(19856, 48960, 'forty-eight thousand nine hundred sixty'); INSERT INTO t2 VALUES(19857, 54946, 'fifty-four thousand nine hundred forty-six'); INSERT INTO t2 VALUES(19858, 38908, 'thirty-eight thousand nine hundred eight'); INSERT INTO t2 VALUES(19859, 4862, 'four thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(19860, 26032, 'twenty-six thousand thirty-two'); INSERT INTO t2 VALUES(19861, 17124, 'seventeen thousand one hundred twenty-four'); INSERT INTO t2 VALUES(19862, 4788, 'four thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(19863, 34230, 'thirty-four thousand two hundred thirty'); INSERT INTO t2 VALUES(19864, 14896, 'fourteen thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(19865, 96684, 'ninety-six thousand six hundred eighty-four'); INSERT INTO t2 VALUES(19866, 281, 'two hundred eighty-one'); INSERT INTO t2 VALUES(19867, 78748, 'seventy-eight thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(19868, 71545, 'seventy-one thousand five hundred forty-five'); INSERT INTO t2 VALUES(19869, 3317, 'three thousand three hundred seventeen'); INSERT INTO t2 VALUES(19870, 32683, 'thirty-two thousand six hundred eighty-three'); INSERT INTO t2 VALUES(19871, 32391, 'thirty-two thousand three hundred ninety-one'); INSERT INTO t2 VALUES(19872, 98739, 'ninety-eight thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(19873, 30040, 'thirty thousand forty'); INSERT INTO t2 VALUES(19874, 42821, 'forty-two thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(19875, 43253, 'forty-three thousand two hundred fifty-three'); INSERT INTO t2 VALUES(19876, 54301, 'fifty-four thousand three hundred one'); INSERT INTO t2 VALUES(19877, 74672, 'seventy-four thousand six hundred seventy-two'); INSERT INTO t2 VALUES(19878, 43022, 'forty-three thousand twenty-two'); INSERT INTO t2 VALUES(19879, 85675, 'eighty-five thousand six hundred seventy-five'); INSERT INTO t2 VALUES(19880, 33331, 'thirty-three thousand three hundred thirty-one'); INSERT INTO t2 VALUES(19881, 16335, 'sixteen thousand three hundred thirty-five'); INSERT INTO t2 VALUES(19882, 97169, 'ninety-seven thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(19883, 77461, 'seventy-seven thousand four hundred sixty-one'); INSERT INTO t2 VALUES(19884, 29652, 'twenty-nine thousand six hundred fifty-two'); INSERT INTO t2 VALUES(19885, 10484, 'ten thousand four hundred eighty-four'); INSERT INTO t2 VALUES(19886, 44133, 'forty-four thousand one hundred thirty-three'); INSERT INTO t2 VALUES(19887, 13265, 'thirteen thousand two hundred sixty-five'); INSERT INTO t2 VALUES(19888, 52115, 'fifty-two thousand one hundred fifteen'); INSERT INTO t2 VALUES(19889, 75885, 'seventy-five thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(19890, 2600, 'two thousand six hundred'); INSERT INTO t2 VALUES(19891, 61847, 'sixty-one thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(19892, 72430, 'seventy-two thousand four hundred thirty'); INSERT INTO t2 VALUES(19893, 55107, 'fifty-five thousand one hundred seven'); INSERT INTO t2 VALUES(19894, 5971, 'five thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(19895, 6481, 'six thousand four hundred eighty-one'); INSERT INTO t2 VALUES(19896, 55638, 'fifty-five thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(19897, 48151, 'forty-eight thousand one hundred fifty-one'); INSERT INTO t2 VALUES(19898, 84748, 'eighty-four thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(19899, 19029, 'nineteen thousand twenty-nine'); INSERT INTO t2 VALUES(19900, 7061, 'seven thousand sixty-one'); INSERT INTO t2 VALUES(19901, 94578, 'ninety-four thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(19902, 3663, 'three thousand six hundred sixty-three'); INSERT INTO t2 VALUES(19903, 66318, 'sixty-six thousand three hundred eighteen'); INSERT INTO t2 VALUES(19904, 31563, 'thirty-one thousand five hundred sixty-three'); INSERT INTO t2 VALUES(19905, 79248, 'seventy-nine thousand two hundred forty-eight'); INSERT INTO t2 VALUES(19906, 25074, 'twenty-five thousand seventy-four'); INSERT INTO t2 VALUES(19907, 98071, 'ninety-eight thousand seventy-one'); INSERT INTO t2 VALUES(19908, 24780, 'twenty-four thousand seven hundred eighty'); INSERT INTO t2 VALUES(19909, 77806, 'seventy-seven thousand eight hundred six'); INSERT INTO t2 VALUES(19910, 58941, 'fifty-eight thousand nine hundred forty-one'); INSERT INTO t2 VALUES(19911, 2663, 'two thousand six hundred sixty-three'); INSERT INTO t2 VALUES(19912, 31506, 'thirty-one thousand five hundred six'); INSERT INTO t2 VALUES(19913, 75696, 'seventy-five thousand six hundred ninety-six'); INSERT INTO t2 VALUES(19914, 54651, 'fifty-four thousand six hundred fifty-one'); INSERT INTO t2 VALUES(19915, 71359, 'seventy-one thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(19916, 69997, 'sixty-nine thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(19917, 12752, 'twelve thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(19918, 65267, 'sixty-five thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(19919, 65878, 'sixty-five thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(19920, 65887, 'sixty-five thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(19921, 46064, 'forty-six thousand sixty-four'); INSERT INTO t2 VALUES(19922, 19555, 'nineteen thousand five hundred fifty-five'); INSERT INTO t2 VALUES(19923, 65599, 'sixty-five thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(19924, 20196, 'twenty thousand one hundred ninety-six'); INSERT INTO t2 VALUES(19925, 90752, 'ninety thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(19926, 17180, 'seventeen thousand one hundred eighty'); INSERT INTO t2 VALUES(19927, 65179, 'sixty-five thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(19928, 5079, 'five thousand seventy-nine'); INSERT INTO t2 VALUES(19929, 30209, 'thirty thousand two hundred nine'); INSERT INTO t2 VALUES(19930, 84827, 'eighty-four thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(19931, 11487, 'eleven thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(19932, 27339, 'twenty-seven thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(19933, 57949, 'fifty-seven thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(19934, 47261, 'forty-seven thousand two hundred sixty-one'); INSERT INTO t2 VALUES(19935, 44199, 'forty-four thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(19936, 86673, 'eighty-six thousand six hundred seventy-three'); INSERT INTO t2 VALUES(19937, 7578, 'seven thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(19938, 41773, 'forty-one thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(19939, 91968, 'ninety-one thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(19940, 2132, 'two thousand one hundred thirty-two'); INSERT INTO t2 VALUES(19941, 83697, 'eighty-three thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(19942, 87742, 'eighty-seven thousand seven hundred forty-two'); INSERT INTO t2 VALUES(19943, 55557, 'fifty-five thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(19944, 63580, 'sixty-three thousand five hundred eighty'); INSERT INTO t2 VALUES(19945, 1672, 'one thousand six hundred seventy-two'); INSERT INTO t2 VALUES(19946, 65420, 'sixty-five thousand four hundred twenty'); INSERT INTO t2 VALUES(19947, 29197, 'twenty-nine thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(19948, 62945, 'sixty-two thousand nine hundred forty-five'); INSERT INTO t2 VALUES(19949, 9304, 'nine thousand three hundred four'); INSERT INTO t2 VALUES(19950, 9521, 'nine thousand five hundred twenty-one'); INSERT INTO t2 VALUES(19951, 36574, 'thirty-six thousand five hundred seventy-four'); INSERT INTO t2 VALUES(19952, 89705, 'eighty-nine thousand seven hundred five'); INSERT INTO t2 VALUES(19953, 33556, 'thirty-three thousand five hundred fifty-six'); INSERT INTO t2 VALUES(19954, 59207, 'fifty-nine thousand two hundred seven'); INSERT INTO t2 VALUES(19955, 49013, 'forty-nine thousand thirteen'); INSERT INTO t2 VALUES(19956, 61215, 'sixty-one thousand two hundred fifteen'); INSERT INTO t2 VALUES(19957, 30798, 'thirty thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(19958, 43824, 'forty-three thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(19959, 64218, 'sixty-four thousand two hundred eighteen'); INSERT INTO t2 VALUES(19960, 40424, 'forty thousand four hundred twenty-four'); INSERT INTO t2 VALUES(19961, 4351, 'four thousand three hundred fifty-one'); INSERT INTO t2 VALUES(19962, 81330, 'eighty-one thousand three hundred thirty'); INSERT INTO t2 VALUES(19963, 86096, 'eighty-six thousand ninety-six'); INSERT INTO t2 VALUES(19964, 30436, 'thirty thousand four hundred thirty-six'); INSERT INTO t2 VALUES(19965, 72176, 'seventy-two thousand one hundred seventy-six'); INSERT INTO t2 VALUES(19966, 69239, 'sixty-nine thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(19967, 68840, 'sixty-eight thousand eight hundred forty'); INSERT INTO t2 VALUES(19968, 49386, 'forty-nine thousand three hundred eighty-six'); INSERT INTO t2 VALUES(19969, 2031, 'two thousand thirty-one'); INSERT INTO t2 VALUES(19970, 14886, 'fourteen thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(19971, 56536, 'fifty-six thousand five hundred thirty-six'); INSERT INTO t2 VALUES(19972, 80156, 'eighty thousand one hundred fifty-six'); INSERT INTO t2 VALUES(19973, 75291, 'seventy-five thousand two hundred ninety-one'); INSERT INTO t2 VALUES(19974, 90942, 'ninety thousand nine hundred forty-two'); INSERT INTO t2 VALUES(19975, 45226, 'forty-five thousand two hundred twenty-six'); INSERT INTO t2 VALUES(19976, 12983, 'twelve thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(19977, 18267, 'eighteen thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(19978, 45047, 'forty-five thousand forty-seven'); INSERT INTO t2 VALUES(19979, 99153, 'ninety-nine thousand one hundred fifty-three'); INSERT INTO t2 VALUES(19980, 3947, 'three thousand nine hundred forty-seven'); INSERT INTO t2 VALUES(19981, 61329, 'sixty-one thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(19982, 281, 'two hundred eighty-one'); INSERT INTO t2 VALUES(19983, 86403, 'eighty-six thousand four hundred three'); INSERT INTO t2 VALUES(19984, 99446, 'ninety-nine thousand four hundred forty-six'); INSERT INTO t2 VALUES(19985, 32030, 'thirty-two thousand thirty'); INSERT INTO t2 VALUES(19986, 48799, 'forty-eight thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(19987, 57741, 'fifty-seven thousand seven hundred forty-one'); INSERT INTO t2 VALUES(19988, 41067, 'forty-one thousand sixty-seven'); INSERT INTO t2 VALUES(19989, 52472, 'fifty-two thousand four hundred seventy-two'); INSERT INTO t2 VALUES(19990, 27076, 'twenty-seven thousand seventy-six'); INSERT INTO t2 VALUES(19991, 56150, 'fifty-six thousand one hundred fifty'); INSERT INTO t2 VALUES(19992, 96902, 'ninety-six thousand nine hundred two'); INSERT INTO t2 VALUES(19993, 4169, 'four thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(19994, 75886, 'seventy-five thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(19995, 5044, 'five thousand forty-four'); INSERT INTO t2 VALUES(19996, 15261, 'fifteen thousand two hundred sixty-one'); INSERT INTO t2 VALUES(19997, 9837, 'nine thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(19998, 93782, 'ninety-three thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(19999, 1390, 'one thousand three hundred ninety'); INSERT INTO t2 VALUES(20000, 17798, 'seventeen thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(20001, 42503, 'forty-two thousand five hundred three'); INSERT INTO t2 VALUES(20002, 38557, 'thirty-eight thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(20003, 34048, 'thirty-four thousand forty-eight'); INSERT INTO t2 VALUES(20004, 99840, 'ninety-nine thousand eight hundred forty'); INSERT INTO t2 VALUES(20005, 31007, 'thirty-one thousand seven'); INSERT INTO t2 VALUES(20006, 30240, 'thirty thousand two hundred forty'); INSERT INTO t2 VALUES(20007, 26524, 'twenty-six thousand five hundred twenty-four'); INSERT INTO t2 VALUES(20008, 31543, 'thirty-one thousand five hundred forty-three'); INSERT INTO t2 VALUES(20009, 64768, 'sixty-four thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(20010, 54272, 'fifty-four thousand two hundred seventy-two'); INSERT INTO t2 VALUES(20011, 88423, 'eighty-eight thousand four hundred twenty-three'); INSERT INTO t2 VALUES(20012, 58659, 'fifty-eight thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(20013, 61602, 'sixty-one thousand six hundred two'); INSERT INTO t2 VALUES(20014, 17823, 'seventeen thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(20015, 29058, 'twenty-nine thousand fifty-eight'); INSERT INTO t2 VALUES(20016, 24299, 'twenty-four thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(20017, 10527, 'ten thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(20018, 28501, 'twenty-eight thousand five hundred one'); INSERT INTO t2 VALUES(20019, 60591, 'sixty thousand five hundred ninety-one'); INSERT INTO t2 VALUES(20020, 13557, 'thirteen thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(20021, 55375, 'fifty-five thousand three hundred seventy-five'); INSERT INTO t2 VALUES(20022, 76017, 'seventy-six thousand seventeen'); INSERT INTO t2 VALUES(20023, 89706, 'eighty-nine thousand seven hundred six'); INSERT INTO t2 VALUES(20024, 72938, 'seventy-two thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(20025, 84953, 'eighty-four thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(20026, 37602, 'thirty-seven thousand six hundred two'); INSERT INTO t2 VALUES(20027, 32115, 'thirty-two thousand one hundred fifteen'); INSERT INTO t2 VALUES(20028, 44930, 'forty-four thousand nine hundred thirty'); INSERT INTO t2 VALUES(20029, 20967, 'twenty thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(20030, 13195, 'thirteen thousand one hundred ninety-five'); INSERT INTO t2 VALUES(20031, 92107, 'ninety-two thousand one hundred seven'); INSERT INTO t2 VALUES(20032, 11648, 'eleven thousand six hundred forty-eight'); INSERT INTO t2 VALUES(20033, 49707, 'forty-nine thousand seven hundred seven'); INSERT INTO t2 VALUES(20034, 70924, 'seventy thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(20035, 77205, 'seventy-seven thousand two hundred five'); INSERT INTO t2 VALUES(20036, 62144, 'sixty-two thousand one hundred forty-four'); INSERT INTO t2 VALUES(20037, 2889, 'two thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(20038, 20793, 'twenty thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(20039, 13352, 'thirteen thousand three hundred fifty-two'); INSERT INTO t2 VALUES(20040, 99327, 'ninety-nine thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(20041, 76507, 'seventy-six thousand five hundred seven'); INSERT INTO t2 VALUES(20042, 40658, 'forty thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(20043, 63959, 'sixty-three thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(20044, 3508, 'three thousand five hundred eight'); INSERT INTO t2 VALUES(20045, 30481, 'thirty thousand four hundred eighty-one'); INSERT INTO t2 VALUES(20046, 62331, 'sixty-two thousand three hundred thirty-one'); INSERT INTO t2 VALUES(20047, 56441, 'fifty-six thousand four hundred forty-one'); INSERT INTO t2 VALUES(20048, 70111, 'seventy thousand one hundred eleven'); INSERT INTO t2 VALUES(20049, 40543, 'forty thousand five hundred forty-three'); INSERT INTO t2 VALUES(20050, 81236, 'eighty-one thousand two hundred thirty-six'); INSERT INTO t2 VALUES(20051, 1887, 'one thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(20052, 78388, 'seventy-eight thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(20053, 59594, 'fifty-nine thousand five hundred ninety-four'); INSERT INTO t2 VALUES(20054, 25612, 'twenty-five thousand six hundred twelve'); INSERT INTO t2 VALUES(20055, 97881, 'ninety-seven thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(20056, 84065, 'eighty-four thousand sixty-five'); INSERT INTO t2 VALUES(20057, 20841, 'twenty thousand eight hundred forty-one'); INSERT INTO t2 VALUES(20058, 70864, 'seventy thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(20059, 24, 'twenty-four'); INSERT INTO t2 VALUES(20060, 59460, 'fifty-nine thousand four hundred sixty'); INSERT INTO t2 VALUES(20061, 36940, 'thirty-six thousand nine hundred forty'); INSERT INTO t2 VALUES(20062, 31766, 'thirty-one thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(20063, 99651, 'ninety-nine thousand six hundred fifty-one'); INSERT INTO t2 VALUES(20064, 32179, 'thirty-two thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(20065, 8549, 'eight thousand five hundred forty-nine'); INSERT INTO t2 VALUES(20066, 47691, 'forty-seven thousand six hundred ninety-one'); INSERT INTO t2 VALUES(20067, 58807, 'fifty-eight thousand eight hundred seven'); INSERT INTO t2 VALUES(20068, 54156, 'fifty-four thousand one hundred fifty-six'); INSERT INTO t2 VALUES(20069, 91741, 'ninety-one thousand seven hundred forty-one'); INSERT INTO t2 VALUES(20070, 20641, 'twenty thousand six hundred forty-one'); INSERT INTO t2 VALUES(20071, 74369, 'seventy-four thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(20072, 56627, 'fifty-six thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(20073, 55334, 'fifty-five thousand three hundred thirty-four'); INSERT INTO t2 VALUES(20074, 39563, 'thirty-nine thousand five hundred sixty-three'); INSERT INTO t2 VALUES(20075, 51001, 'fifty-one thousand one'); INSERT INTO t2 VALUES(20076, 35125, 'thirty-five thousand one hundred twenty-five'); INSERT INTO t2 VALUES(20077, 4518, 'four thousand five hundred eighteen'); INSERT INTO t2 VALUES(20078, 492, 'four hundred ninety-two'); INSERT INTO t2 VALUES(20079, 84850, 'eighty-four thousand eight hundred fifty'); INSERT INTO t2 VALUES(20080, 9344, 'nine thousand three hundred forty-four'); INSERT INTO t2 VALUES(20081, 20218, 'twenty thousand two hundred eighteen'); INSERT INTO t2 VALUES(20082, 70399, 'seventy thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(20083, 4405, 'four thousand four hundred five'); INSERT INTO t2 VALUES(20084, 36926, 'thirty-six thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(20085, 24812, 'twenty-four thousand eight hundred twelve'); INSERT INTO t2 VALUES(20086, 61510, 'sixty-one thousand five hundred ten'); INSERT INTO t2 VALUES(20087, 13932, 'thirteen thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(20088, 68178, 'sixty-eight thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(20089, 65749, 'sixty-five thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(20090, 76233, 'seventy-six thousand two hundred thirty-three'); INSERT INTO t2 VALUES(20091, 40858, 'forty thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(20092, 58206, 'fifty-eight thousand two hundred six'); INSERT INTO t2 VALUES(20093, 62129, 'sixty-two thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(20094, 59911, 'fifty-nine thousand nine hundred eleven'); INSERT INTO t2 VALUES(20095, 88659, 'eighty-eight thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(20096, 77263, 'seventy-seven thousand two hundred sixty-three'); INSERT INTO t2 VALUES(20097, 27296, 'twenty-seven thousand two hundred ninety-six'); INSERT INTO t2 VALUES(20098, 61605, 'sixty-one thousand six hundred five'); INSERT INTO t2 VALUES(20099, 1597, 'one thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(20100, 54857, 'fifty-four thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(20101, 52421, 'fifty-two thousand four hundred twenty-one'); INSERT INTO t2 VALUES(20102, 60895, 'sixty thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(20103, 92149, 'ninety-two thousand one hundred forty-nine'); INSERT INTO t2 VALUES(20104, 8905, 'eight thousand nine hundred five'); INSERT INTO t2 VALUES(20105, 53444, 'fifty-three thousand four hundred forty-four'); INSERT INTO t2 VALUES(20106, 43750, 'forty-three thousand seven hundred fifty'); INSERT INTO t2 VALUES(20107, 2619, 'two thousand six hundred nineteen'); INSERT INTO t2 VALUES(20108, 30994, 'thirty thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(20109, 59684, 'fifty-nine thousand six hundred eighty-four'); INSERT INTO t2 VALUES(20110, 50801, 'fifty thousand eight hundred one'); INSERT INTO t2 VALUES(20111, 9781, 'nine thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(20112, 56016, 'fifty-six thousand sixteen'); INSERT INTO t2 VALUES(20113, 68971, 'sixty-eight thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(20114, 97782, 'ninety-seven thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(20115, 49862, 'forty-nine thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(20116, 72948, 'seventy-two thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(20117, 75898, 'seventy-five thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(20118, 50373, 'fifty thousand three hundred seventy-three'); INSERT INTO t2 VALUES(20119, 57588, 'fifty-seven thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(20120, 45271, 'forty-five thousand two hundred seventy-one'); INSERT INTO t2 VALUES(20121, 81570, 'eighty-one thousand five hundred seventy'); INSERT INTO t2 VALUES(20122, 22299, 'twenty-two thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(20123, 23548, 'twenty-three thousand five hundred forty-eight'); INSERT INTO t2 VALUES(20124, 19814, 'nineteen thousand eight hundred fourteen'); INSERT INTO t2 VALUES(20125, 53403, 'fifty-three thousand four hundred three'); INSERT INTO t2 VALUES(20126, 52996, 'fifty-two thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(20127, 85266, 'eighty-five thousand two hundred sixty-six'); INSERT INTO t2 VALUES(20128, 52259, 'fifty-two thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(20129, 19140, 'nineteen thousand one hundred forty'); INSERT INTO t2 VALUES(20130, 18919, 'eighteen thousand nine hundred nineteen'); INSERT INTO t2 VALUES(20131, 53499, 'fifty-three thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(20132, 5135, 'five thousand one hundred thirty-five'); INSERT INTO t2 VALUES(20133, 13267, 'thirteen thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(20134, 9012, 'nine thousand twelve'); INSERT INTO t2 VALUES(20135, 46791, 'forty-six thousand seven hundred ninety-one'); INSERT INTO t2 VALUES(20136, 75896, 'seventy-five thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(20137, 90172, 'ninety thousand one hundred seventy-two'); INSERT INTO t2 VALUES(20138, 28825, 'twenty-eight thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(20139, 31334, 'thirty-one thousand three hundred thirty-four'); INSERT INTO t2 VALUES(20140, 69579, 'sixty-nine thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(20141, 82442, 'eighty-two thousand four hundred forty-two'); INSERT INTO t2 VALUES(20142, 34421, 'thirty-four thousand four hundred twenty-one'); INSERT INTO t2 VALUES(20143, 74961, 'seventy-four thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(20144, 85862, 'eighty-five thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(20145, 90481, 'ninety thousand four hundred eighty-one'); INSERT INTO t2 VALUES(20146, 68394, 'sixty-eight thousand three hundred ninety-four'); INSERT INTO t2 VALUES(20147, 8445, 'eight thousand four hundred forty-five'); INSERT INTO t2 VALUES(20148, 38830, 'thirty-eight thousand eight hundred thirty'); INSERT INTO t2 VALUES(20149, 11034, 'eleven thousand thirty-four'); INSERT INTO t2 VALUES(20150, 31231, 'thirty-one thousand two hundred thirty-one'); INSERT INTO t2 VALUES(20151, 22335, 'twenty-two thousand three hundred thirty-five'); INSERT INTO t2 VALUES(20152, 59186, 'fifty-nine thousand one hundred eighty-six'); INSERT INTO t2 VALUES(20153, 17706, 'seventeen thousand seven hundred six'); INSERT INTO t2 VALUES(20154, 22502, 'twenty-two thousand five hundred two'); INSERT INTO t2 VALUES(20155, 61252, 'sixty-one thousand two hundred fifty-two'); INSERT INTO t2 VALUES(20156, 94795, 'ninety-four thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(20157, 97363, 'ninety-seven thousand three hundred sixty-three'); INSERT INTO t2 VALUES(20158, 2586, 'two thousand five hundred eighty-six'); INSERT INTO t2 VALUES(20159, 85084, 'eighty-five thousand eighty-four'); INSERT INTO t2 VALUES(20160, 82312, 'eighty-two thousand three hundred twelve'); INSERT INTO t2 VALUES(20161, 64735, 'sixty-four thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(20162, 17168, 'seventeen thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(20163, 23309, 'twenty-three thousand three hundred nine'); INSERT INTO t2 VALUES(20164, 43513, 'forty-three thousand five hundred thirteen'); INSERT INTO t2 VALUES(20165, 23799, 'twenty-three thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(20166, 3217, 'three thousand two hundred seventeen'); INSERT INTO t2 VALUES(20167, 95340, 'ninety-five thousand three hundred forty'); INSERT INTO t2 VALUES(20168, 70602, 'seventy thousand six hundred two'); INSERT INTO t2 VALUES(20169, 20351, 'twenty thousand three hundred fifty-one'); INSERT INTO t2 VALUES(20170, 24845, 'twenty-four thousand eight hundred forty-five'); INSERT INTO t2 VALUES(20171, 35949, 'thirty-five thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(20172, 50394, 'fifty thousand three hundred ninety-four'); INSERT INTO t2 VALUES(20173, 79107, 'seventy-nine thousand one hundred seven'); INSERT INTO t2 VALUES(20174, 35970, 'thirty-five thousand nine hundred seventy'); INSERT INTO t2 VALUES(20175, 70893, 'seventy thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(20176, 98818, 'ninety-eight thousand eight hundred eighteen'); INSERT INTO t2 VALUES(20177, 21591, 'twenty-one thousand five hundred ninety-one'); INSERT INTO t2 VALUES(20178, 30420, 'thirty thousand four hundred twenty'); INSERT INTO t2 VALUES(20179, 53188, 'fifty-three thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(20180, 5982, 'five thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(20181, 90666, 'ninety thousand six hundred sixty-six'); INSERT INTO t2 VALUES(20182, 9432, 'nine thousand four hundred thirty-two'); INSERT INTO t2 VALUES(20183, 93587, 'ninety-three thousand five hundred eighty-seven'); INSERT INTO t2 VALUES(20184, 97535, 'ninety-seven thousand five hundred thirty-five'); INSERT INTO t2 VALUES(20185, 82558, 'eighty-two thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(20186, 91057, 'ninety-one thousand fifty-seven'); INSERT INTO t2 VALUES(20187, 5136, 'five thousand one hundred thirty-six'); INSERT INTO t2 VALUES(20188, 58203, 'fifty-eight thousand two hundred three'); INSERT INTO t2 VALUES(20189, 27930, 'twenty-seven thousand nine hundred thirty'); INSERT INTO t2 VALUES(20190, 14079, 'fourteen thousand seventy-nine'); INSERT INTO t2 VALUES(20191, 28240, 'twenty-eight thousand two hundred forty'); INSERT INTO t2 VALUES(20192, 35740, 'thirty-five thousand seven hundred forty'); INSERT INTO t2 VALUES(20193, 5761, 'five thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(20194, 95035, 'ninety-five thousand thirty-five'); INSERT INTO t2 VALUES(20195, 41961, 'forty-one thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(20196, 80072, 'eighty thousand seventy-two'); INSERT INTO t2 VALUES(20197, 19463, 'nineteen thousand four hundred sixty-three'); INSERT INTO t2 VALUES(20198, 83077, 'eighty-three thousand seventy-seven'); INSERT INTO t2 VALUES(20199, 18275, 'eighteen thousand two hundred seventy-five'); INSERT INTO t2 VALUES(20200, 10747, 'ten thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(20201, 44058, 'forty-four thousand fifty-eight'); INSERT INTO t2 VALUES(20202, 57614, 'fifty-seven thousand six hundred fourteen'); INSERT INTO t2 VALUES(20203, 71589, 'seventy-one thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(20204, 54440, 'fifty-four thousand four hundred forty'); INSERT INTO t2 VALUES(20205, 13715, 'thirteen thousand seven hundred fifteen'); INSERT INTO t2 VALUES(20206, 6479, 'six thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(20207, 71980, 'seventy-one thousand nine hundred eighty'); INSERT INTO t2 VALUES(20208, 12738, 'twelve thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(20209, 58303, 'fifty-eight thousand three hundred three'); INSERT INTO t2 VALUES(20210, 76557, 'seventy-six thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(20211, 79044, 'seventy-nine thousand forty-four'); INSERT INTO t2 VALUES(20212, 80736, 'eighty thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(20213, 45741, 'forty-five thousand seven hundred forty-one'); INSERT INTO t2 VALUES(20214, 92739, 'ninety-two thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(20215, 45169, 'forty-five thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(20216, 41351, 'forty-one thousand three hundred fifty-one'); INSERT INTO t2 VALUES(20217, 90996, 'ninety thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(20218, 21494, 'twenty-one thousand four hundred ninety-four'); INSERT INTO t2 VALUES(20219, 88697, 'eighty-eight thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(20220, 43073, 'forty-three thousand seventy-three'); INSERT INTO t2 VALUES(20221, 69997, 'sixty-nine thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(20222, 20907, 'twenty thousand nine hundred seven'); INSERT INTO t2 VALUES(20223, 73037, 'seventy-three thousand thirty-seven'); INSERT INTO t2 VALUES(20224, 45704, 'forty-five thousand seven hundred four'); INSERT INTO t2 VALUES(20225, 59100, 'fifty-nine thousand one hundred'); INSERT INTO t2 VALUES(20226, 36816, 'thirty-six thousand eight hundred sixteen'); INSERT INTO t2 VALUES(20227, 50966, 'fifty thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(20228, 98003, 'ninety-eight thousand three'); INSERT INTO t2 VALUES(20229, 84626, 'eighty-four thousand six hundred twenty-six'); INSERT INTO t2 VALUES(20230, 26257, 'twenty-six thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(20231, 60629, 'sixty thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(20232, 49680, 'forty-nine thousand six hundred eighty'); INSERT INTO t2 VALUES(20233, 70114, 'seventy thousand one hundred fourteen'); INSERT INTO t2 VALUES(20234, 58637, 'fifty-eight thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(20235, 62562, 'sixty-two thousand five hundred sixty-two'); INSERT INTO t2 VALUES(20236, 54682, 'fifty-four thousand six hundred eighty-two'); INSERT INTO t2 VALUES(20237, 54353, 'fifty-four thousand three hundred fifty-three'); INSERT INTO t2 VALUES(20238, 92896, 'ninety-two thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(20239, 94425, 'ninety-four thousand four hundred twenty-five'); INSERT INTO t2 VALUES(20240, 80353, 'eighty thousand three hundred fifty-three'); INSERT INTO t2 VALUES(20241, 65809, 'sixty-five thousand eight hundred nine'); INSERT INTO t2 VALUES(20242, 49786, 'forty-nine thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(20243, 65147, 'sixty-five thousand one hundred forty-seven'); INSERT INTO t2 VALUES(20244, 31331, 'thirty-one thousand three hundred thirty-one'); INSERT INTO t2 VALUES(20245, 49542, 'forty-nine thousand five hundred forty-two'); INSERT INTO t2 VALUES(20246, 6856, 'six thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(20247, 76064, 'seventy-six thousand sixty-four'); INSERT INTO t2 VALUES(20248, 60702, 'sixty thousand seven hundred two'); INSERT INTO t2 VALUES(20249, 21229, 'twenty-one thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(20250, 2003, 'two thousand three'); INSERT INTO t2 VALUES(20251, 17884, 'seventeen thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(20252, 10085, 'ten thousand eighty-five'); INSERT INTO t2 VALUES(20253, 36315, 'thirty-six thousand three hundred fifteen'); INSERT INTO t2 VALUES(20254, 64835, 'sixty-four thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(20255, 58745, 'fifty-eight thousand seven hundred forty-five'); INSERT INTO t2 VALUES(20256, 13245, 'thirteen thousand two hundred forty-five'); INSERT INTO t2 VALUES(20257, 2753, 'two thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(20258, 16625, 'sixteen thousand six hundred twenty-five'); INSERT INTO t2 VALUES(20259, 86585, 'eighty-six thousand five hundred eighty-five'); INSERT INTO t2 VALUES(20260, 8156, 'eight thousand one hundred fifty-six'); INSERT INTO t2 VALUES(20261, 73769, 'seventy-three thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(20262, 2438, 'two thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(20263, 81168, 'eighty-one thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(20264, 53391, 'fifty-three thousand three hundred ninety-one'); INSERT INTO t2 VALUES(20265, 89153, 'eighty-nine thousand one hundred fifty-three'); INSERT INTO t2 VALUES(20266, 10212, 'ten thousand two hundred twelve'); INSERT INTO t2 VALUES(20267, 2484, 'two thousand four hundred eighty-four'); INSERT INTO t2 VALUES(20268, 70558, 'seventy thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(20269, 51682, 'fifty-one thousand six hundred eighty-two'); INSERT INTO t2 VALUES(20270, 29301, 'twenty-nine thousand three hundred one'); INSERT INTO t2 VALUES(20271, 90159, 'ninety thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(20272, 5497, 'five thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(20273, 24146, 'twenty-four thousand one hundred forty-six'); INSERT INTO t2 VALUES(20274, 64063, 'sixty-four thousand sixty-three'); INSERT INTO t2 VALUES(20275, 13840, 'thirteen thousand eight hundred forty'); INSERT INTO t2 VALUES(20276, 79603, 'seventy-nine thousand six hundred three'); INSERT INTO t2 VALUES(20277, 14101, 'fourteen thousand one hundred one'); INSERT INTO t2 VALUES(20278, 70381, 'seventy thousand three hundred eighty-one'); INSERT INTO t2 VALUES(20279, 63229, 'sixty-three thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(20280, 40294, 'forty thousand two hundred ninety-four'); INSERT INTO t2 VALUES(20281, 13414, 'thirteen thousand four hundred fourteen'); INSERT INTO t2 VALUES(20282, 8670, 'eight thousand six hundred seventy'); INSERT INTO t2 VALUES(20283, 51517, 'fifty-one thousand five hundred seventeen'); INSERT INTO t2 VALUES(20284, 29134, 'twenty-nine thousand one hundred thirty-four'); INSERT INTO t2 VALUES(20285, 10901, 'ten thousand nine hundred one'); INSERT INTO t2 VALUES(20286, 6581, 'six thousand five hundred eighty-one'); INSERT INTO t2 VALUES(20287, 87225, 'eighty-seven thousand two hundred twenty-five'); INSERT INTO t2 VALUES(20288, 75868, 'seventy-five thousand eight hundred sixty-eight'); INSERT INTO t2 VALUES(20289, 72804, 'seventy-two thousand eight hundred four'); INSERT INTO t2 VALUES(20290, 23544, 'twenty-three thousand five hundred forty-four'); INSERT INTO t2 VALUES(20291, 14553, 'fourteen thousand five hundred fifty-three'); INSERT INTO t2 VALUES(20292, 48227, 'forty-eight thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(20293, 17071, 'seventeen thousand seventy-one'); INSERT INTO t2 VALUES(20294, 1319, 'one thousand three hundred nineteen'); INSERT INTO t2 VALUES(20295, 91479, 'ninety-one thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(20296, 87657, 'eighty-seven thousand six hundred fifty-seven'); INSERT INTO t2 VALUES(20297, 41603, 'forty-one thousand six hundred three'); INSERT INTO t2 VALUES(20298, 174, 'one hundred seventy-four'); INSERT INTO t2 VALUES(20299, 48224, 'forty-eight thousand two hundred twenty-four'); INSERT INTO t2 VALUES(20300, 54888, 'fifty-four thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(20301, 54929, 'fifty-four thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(20302, 96010, 'ninety-six thousand ten'); INSERT INTO t2 VALUES(20303, 2593, 'two thousand five hundred ninety-three'); INSERT INTO t2 VALUES(20304, 16481, 'sixteen thousand four hundred eighty-one'); INSERT INTO t2 VALUES(20305, 56432, 'fifty-six thousand four hundred thirty-two'); INSERT INTO t2 VALUES(20306, 82761, 'eighty-two thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(20307, 25441, 'twenty-five thousand four hundred forty-one'); INSERT INTO t2 VALUES(20308, 81835, 'eighty-one thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(20309, 30207, 'thirty thousand two hundred seven'); INSERT INTO t2 VALUES(20310, 55306, 'fifty-five thousand three hundred six'); INSERT INTO t2 VALUES(20311, 13397, 'thirteen thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(20312, 55484, 'fifty-five thousand four hundred eighty-four'); INSERT INTO t2 VALUES(20313, 23271, 'twenty-three thousand two hundred seventy-one'); INSERT INTO t2 VALUES(20314, 81517, 'eighty-one thousand five hundred seventeen'); INSERT INTO t2 VALUES(20315, 65882, 'sixty-five thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(20316, 43002, 'forty-three thousand two'); INSERT INTO t2 VALUES(20317, 55469, 'fifty-five thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(20318, 48602, 'forty-eight thousand six hundred two'); INSERT INTO t2 VALUES(20319, 34597, 'thirty-four thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(20320, 70213, 'seventy thousand two hundred thirteen'); INSERT INTO t2 VALUES(20321, 11998, 'eleven thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(20322, 34809, 'thirty-four thousand eight hundred nine'); INSERT INTO t2 VALUES(20323, 73173, 'seventy-three thousand one hundred seventy-three'); INSERT INTO t2 VALUES(20324, 15528, 'fifteen thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(20325, 43515, 'forty-three thousand five hundred fifteen'); INSERT INTO t2 VALUES(20326, 3817, 'three thousand eight hundred seventeen'); INSERT INTO t2 VALUES(20327, 39286, 'thirty-nine thousand two hundred eighty-six'); INSERT INTO t2 VALUES(20328, 37847, 'thirty-seven thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(20329, 1772, 'one thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(20330, 90816, 'ninety thousand eight hundred sixteen'); INSERT INTO t2 VALUES(20331, 12593, 'twelve thousand five hundred ninety-three'); INSERT INTO t2 VALUES(20332, 6190, 'six thousand one hundred ninety'); INSERT INTO t2 VALUES(20333, 50553, 'fifty thousand five hundred fifty-three'); INSERT INTO t2 VALUES(20334, 30029, 'thirty thousand twenty-nine'); INSERT INTO t2 VALUES(20335, 65562, 'sixty-five thousand five hundred sixty-two'); INSERT INTO t2 VALUES(20336, 53107, 'fifty-three thousand one hundred seven'); INSERT INTO t2 VALUES(20337, 14726, 'fourteen thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(20338, 48302, 'forty-eight thousand three hundred two'); INSERT INTO t2 VALUES(20339, 52743, 'fifty-two thousand seven hundred forty-three'); INSERT INTO t2 VALUES(20340, 53337, 'fifty-three thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(20341, 1414, 'one thousand four hundred fourteen'); INSERT INTO t2 VALUES(20342, 77952, 'seventy-seven thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(20343, 65802, 'sixty-five thousand eight hundred two'); INSERT INTO t2 VALUES(20344, 69572, 'sixty-nine thousand five hundred seventy-two'); INSERT INTO t2 VALUES(20345, 57233, 'fifty-seven thousand two hundred thirty-three'); INSERT INTO t2 VALUES(20346, 6468, 'six thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(20347, 46107, 'forty-six thousand one hundred seven'); INSERT INTO t2 VALUES(20348, 11913, 'eleven thousand nine hundred thirteen'); INSERT INTO t2 VALUES(20349, 5465, 'five thousand four hundred sixty-five'); INSERT INTO t2 VALUES(20350, 8829, 'eight thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(20351, 79857, 'seventy-nine thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(20352, 44479, 'forty-four thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(20353, 51139, 'fifty-one thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(20354, 12021, 'twelve thousand twenty-one'); INSERT INTO t2 VALUES(20355, 63039, 'sixty-three thousand thirty-nine'); INSERT INTO t2 VALUES(20356, 25638, 'twenty-five thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(20357, 44006, 'forty-four thousand six'); INSERT INTO t2 VALUES(20358, 36836, 'thirty-six thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(20359, 48347, 'forty-eight thousand three hundred forty-seven'); INSERT INTO t2 VALUES(20360, 96654, 'ninety-six thousand six hundred fifty-four'); INSERT INTO t2 VALUES(20361, 26944, 'twenty-six thousand nine hundred forty-four'); INSERT INTO t2 VALUES(20362, 32915, 'thirty-two thousand nine hundred fifteen'); INSERT INTO t2 VALUES(20363, 35790, 'thirty-five thousand seven hundred ninety'); INSERT INTO t2 VALUES(20364, 53996, 'fifty-three thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(20365, 42199, 'forty-two thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(20366, 41593, 'forty-one thousand five hundred ninety-three'); INSERT INTO t2 VALUES(20367, 56532, 'fifty-six thousand five hundred thirty-two'); INSERT INTO t2 VALUES(20368, 43214, 'forty-three thousand two hundred fourteen'); INSERT INTO t2 VALUES(20369, 37436, 'thirty-seven thousand four hundred thirty-six'); INSERT INTO t2 VALUES(20370, 19747, 'nineteen thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(20371, 47188, 'forty-seven thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(20372, 73553, 'seventy-three thousand five hundred fifty-three'); INSERT INTO t2 VALUES(20373, 18596, 'eighteen thousand five hundred ninety-six'); INSERT INTO t2 VALUES(20374, 67614, 'sixty-seven thousand six hundred fourteen'); INSERT INTO t2 VALUES(20375, 85304, 'eighty-five thousand three hundred four'); INSERT INTO t2 VALUES(20376, 63543, 'sixty-three thousand five hundred forty-three'); INSERT INTO t2 VALUES(20377, 87483, 'eighty-seven thousand four hundred eighty-three'); INSERT INTO t2 VALUES(20378, 48989, 'forty-eight thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(20379, 24757, 'twenty-four thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(20380, 19155, 'nineteen thousand one hundred fifty-five'); INSERT INTO t2 VALUES(20381, 67853, 'sixty-seven thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(20382, 26459, 'twenty-six thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(20383, 65209, 'sixty-five thousand two hundred nine'); INSERT INTO t2 VALUES(20384, 53187, 'fifty-three thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(20385, 44750, 'forty-four thousand seven hundred fifty'); INSERT INTO t2 VALUES(20386, 30488, 'thirty thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(20387, 4768, 'four thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(20388, 52651, 'fifty-two thousand six hundred fifty-one'); INSERT INTO t2 VALUES(20389, 84459, 'eighty-four thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(20390, 65066, 'sixty-five thousand sixty-six'); INSERT INTO t2 VALUES(20391, 37166, 'thirty-seven thousand one hundred sixty-six'); INSERT INTO t2 VALUES(20392, 79846, 'seventy-nine thousand eight hundred forty-six'); INSERT INTO t2 VALUES(20393, 32541, 'thirty-two thousand five hundred forty-one'); INSERT INTO t2 VALUES(20394, 54373, 'fifty-four thousand three hundred seventy-three'); INSERT INTO t2 VALUES(20395, 13305, 'thirteen thousand three hundred five'); INSERT INTO t2 VALUES(20396, 63929, 'sixty-three thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(20397, 95045, 'ninety-five thousand forty-five'); INSERT INTO t2 VALUES(20398, 67461, 'sixty-seven thousand four hundred sixty-one'); INSERT INTO t2 VALUES(20399, 73774, 'seventy-three thousand seven hundred seventy-four'); INSERT INTO t2 VALUES(20400, 57650, 'fifty-seven thousand six hundred fifty'); INSERT INTO t2 VALUES(20401, 70015, 'seventy thousand fifteen'); INSERT INTO t2 VALUES(20402, 67994, 'sixty-seven thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(20403, 31402, 'thirty-one thousand four hundred two'); INSERT INTO t2 VALUES(20404, 27349, 'twenty-seven thousand three hundred forty-nine'); INSERT INTO t2 VALUES(20405, 55286, 'fifty-five thousand two hundred eighty-six'); INSERT INTO t2 VALUES(20406, 28182, 'twenty-eight thousand one hundred eighty-two'); INSERT INTO t2 VALUES(20407, 3493, 'three thousand four hundred ninety-three'); INSERT INTO t2 VALUES(20408, 48055, 'forty-eight thousand fifty-five'); INSERT INTO t2 VALUES(20409, 21244, 'twenty-one thousand two hundred forty-four'); INSERT INTO t2 VALUES(20410, 38154, 'thirty-eight thousand one hundred fifty-four'); INSERT INTO t2 VALUES(20411, 80265, 'eighty thousand two hundred sixty-five'); INSERT INTO t2 VALUES(20412, 71723, 'seventy-one thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(20413, 61343, 'sixty-one thousand three hundred forty-three'); INSERT INTO t2 VALUES(20414, 74919, 'seventy-four thousand nine hundred nineteen'); INSERT INTO t2 VALUES(20415, 46577, 'forty-six thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(20416, 2346, 'two thousand three hundred forty-six'); INSERT INTO t2 VALUES(20417, 85906, 'eighty-five thousand nine hundred six'); INSERT INTO t2 VALUES(20418, 740, 'seven hundred forty'); INSERT INTO t2 VALUES(20419, 4222, 'four thousand two hundred twenty-two'); INSERT INTO t2 VALUES(20420, 64629, 'sixty-four thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(20421, 19167, 'nineteen thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(20422, 5588, 'five thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(20423, 34908, 'thirty-four thousand nine hundred eight'); INSERT INTO t2 VALUES(20424, 81549, 'eighty-one thousand five hundred forty-nine'); INSERT INTO t2 VALUES(20425, 16148, 'sixteen thousand one hundred forty-eight'); INSERT INTO t2 VALUES(20426, 73594, 'seventy-three thousand five hundred ninety-four'); INSERT INTO t2 VALUES(20427, 17111, 'seventeen thousand one hundred eleven'); INSERT INTO t2 VALUES(20428, 64030, 'sixty-four thousand thirty'); INSERT INTO t2 VALUES(20429, 37696, 'thirty-seven thousand six hundred ninety-six'); INSERT INTO t2 VALUES(20430, 32476, 'thirty-two thousand four hundred seventy-six'); INSERT INTO t2 VALUES(20431, 55253, 'fifty-five thousand two hundred fifty-three'); INSERT INTO t2 VALUES(20432, 65532, 'sixty-five thousand five hundred thirty-two'); INSERT INTO t2 VALUES(20433, 35628, 'thirty-five thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(20434, 27576, 'twenty-seven thousand five hundred seventy-six'); INSERT INTO t2 VALUES(20435, 71745, 'seventy-one thousand seven hundred forty-five'); INSERT INTO t2 VALUES(20436, 69337, 'sixty-nine thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(20437, 82296, 'eighty-two thousand two hundred ninety-six'); INSERT INTO t2 VALUES(20438, 99081, 'ninety-nine thousand eighty-one'); INSERT INTO t2 VALUES(20439, 37373, 'thirty-seven thousand three hundred seventy-three'); INSERT INTO t2 VALUES(20440, 84280, 'eighty-four thousand two hundred eighty'); INSERT INTO t2 VALUES(20441, 66241, 'sixty-six thousand two hundred forty-one'); INSERT INTO t2 VALUES(20442, 38969, 'thirty-eight thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(20443, 93769, 'ninety-three thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(20444, 35005, 'thirty-five thousand five'); INSERT INTO t2 VALUES(20445, 71445, 'seventy-one thousand four hundred forty-five'); INSERT INTO t2 VALUES(20446, 23630, 'twenty-three thousand six hundred thirty'); INSERT INTO t2 VALUES(20447, 93688, 'ninety-three thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(20448, 86919, 'eighty-six thousand nine hundred nineteen'); INSERT INTO t2 VALUES(20449, 54085, 'fifty-four thousand eighty-five'); INSERT INTO t2 VALUES(20450, 71980, 'seventy-one thousand nine hundred eighty'); INSERT INTO t2 VALUES(20451, 6168, 'six thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(20452, 99993, 'ninety-nine thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(20453, 59193, 'fifty-nine thousand one hundred ninety-three'); INSERT INTO t2 VALUES(20454, 47886, 'forty-seven thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(20455, 48562, 'forty-eight thousand five hundred sixty-two'); INSERT INTO t2 VALUES(20456, 17577, 'seventeen thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(20457, 79387, 'seventy-nine thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(20458, 51301, 'fifty-one thousand three hundred one'); INSERT INTO t2 VALUES(20459, 36297, 'thirty-six thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(20460, 12403, 'twelve thousand four hundred three'); INSERT INTO t2 VALUES(20461, 14094, 'fourteen thousand ninety-four'); INSERT INTO t2 VALUES(20462, 48613, 'forty-eight thousand six hundred thirteen'); INSERT INTO t2 VALUES(20463, 22479, 'twenty-two thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(20464, 43908, 'forty-three thousand nine hundred eight'); INSERT INTO t2 VALUES(20465, 20918, 'twenty thousand nine hundred eighteen'); INSERT INTO t2 VALUES(20466, 33085, 'thirty-three thousand eighty-five'); INSERT INTO t2 VALUES(20467, 40252, 'forty thousand two hundred fifty-two'); INSERT INTO t2 VALUES(20468, 75693, 'seventy-five thousand six hundred ninety-three'); INSERT INTO t2 VALUES(20469, 36604, 'thirty-six thousand six hundred four'); INSERT INTO t2 VALUES(20470, 93522, 'ninety-three thousand five hundred twenty-two'); INSERT INTO t2 VALUES(20471, 29917, 'twenty-nine thousand nine hundred seventeen'); INSERT INTO t2 VALUES(20472, 41927, 'forty-one thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(20473, 66167, 'sixty-six thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(20474, 96824, 'ninety-six thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(20475, 45615, 'forty-five thousand six hundred fifteen'); INSERT INTO t2 VALUES(20476, 79201, 'seventy-nine thousand two hundred one'); INSERT INTO t2 VALUES(20477, 24506, 'twenty-four thousand five hundred six'); INSERT INTO t2 VALUES(20478, 18572, 'eighteen thousand five hundred seventy-two'); INSERT INTO t2 VALUES(20479, 59586, 'fifty-nine thousand five hundred eighty-six'); INSERT INTO t2 VALUES(20480, 60391, 'sixty thousand three hundred ninety-one'); INSERT INTO t2 VALUES(20481, 61283, 'sixty-one thousand two hundred eighty-three'); INSERT INTO t2 VALUES(20482, 36969, 'thirty-six thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(20483, 91934, 'ninety-one thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(20484, 9812, 'nine thousand eight hundred twelve'); INSERT INTO t2 VALUES(20485, 90435, 'ninety thousand four hundred thirty-five'); INSERT INTO t2 VALUES(20486, 62554, 'sixty-two thousand five hundred fifty-four'); INSERT INTO t2 VALUES(20487, 49650, 'forty-nine thousand six hundred fifty'); INSERT INTO t2 VALUES(20488, 24294, 'twenty-four thousand two hundred ninety-four'); INSERT INTO t2 VALUES(20489, 8400, 'eight thousand four hundred'); INSERT INTO t2 VALUES(20490, 20463, 'twenty thousand four hundred sixty-three'); INSERT INTO t2 VALUES(20491, 46201, 'forty-six thousand two hundred one'); INSERT INTO t2 VALUES(20492, 5944, 'five thousand nine hundred forty-four'); INSERT INTO t2 VALUES(20493, 92271, 'ninety-two thousand two hundred seventy-one'); INSERT INTO t2 VALUES(20494, 63635, 'sixty-three thousand six hundred thirty-five'); INSERT INTO t2 VALUES(20495, 32087, 'thirty-two thousand eighty-seven'); INSERT INTO t2 VALUES(20496, 47807, 'forty-seven thousand eight hundred seven'); INSERT INTO t2 VALUES(20497, 94715, 'ninety-four thousand seven hundred fifteen'); INSERT INTO t2 VALUES(20498, 94015, 'ninety-four thousand fifteen'); INSERT INTO t2 VALUES(20499, 54414, 'fifty-four thousand four hundred fourteen'); INSERT INTO t2 VALUES(20500, 1588, 'one thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(20501, 63834, 'sixty-three thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(20502, 22239, 'twenty-two thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(20503, 97228, 'ninety-seven thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(20504, 10328, 'ten thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(20505, 76898, 'seventy-six thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(20506, 23497, 'twenty-three thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(20507, 14411, 'fourteen thousand four hundred eleven'); INSERT INTO t2 VALUES(20508, 91734, 'ninety-one thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(20509, 20831, 'twenty thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(20510, 14442, 'fourteen thousand four hundred forty-two'); INSERT INTO t2 VALUES(20511, 96949, 'ninety-six thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(20512, 3557, 'three thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(20513, 24705, 'twenty-four thousand seven hundred five'); INSERT INTO t2 VALUES(20514, 5967, 'five thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(20515, 58437, 'fifty-eight thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(20516, 67809, 'sixty-seven thousand eight hundred nine'); INSERT INTO t2 VALUES(20517, 62234, 'sixty-two thousand two hundred thirty-four'); INSERT INTO t2 VALUES(20518, 13333, 'thirteen thousand three hundred thirty-three'); INSERT INTO t2 VALUES(20519, 8676, 'eight thousand six hundred seventy-six'); INSERT INTO t2 VALUES(20520, 14835, 'fourteen thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(20521, 99775, 'ninety-nine thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(20522, 74954, 'seventy-four thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(20523, 40919, 'forty thousand nine hundred nineteen'); INSERT INTO t2 VALUES(20524, 19816, 'nineteen thousand eight hundred sixteen'); INSERT INTO t2 VALUES(20525, 57962, 'fifty-seven thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(20526, 16068, 'sixteen thousand sixty-eight'); INSERT INTO t2 VALUES(20527, 72056, 'seventy-two thousand fifty-six'); INSERT INTO t2 VALUES(20528, 23015, 'twenty-three thousand fifteen'); INSERT INTO t2 VALUES(20529, 380, 'three hundred eighty'); INSERT INTO t2 VALUES(20530, 99922, 'ninety-nine thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(20531, 36592, 'thirty-six thousand five hundred ninety-two'); INSERT INTO t2 VALUES(20532, 96929, 'ninety-six thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(20533, 68176, 'sixty-eight thousand one hundred seventy-six'); INSERT INTO t2 VALUES(20534, 27542, 'twenty-seven thousand five hundred forty-two'); INSERT INTO t2 VALUES(20535, 18933, 'eighteen thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(20536, 10965, 'ten thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(20537, 36763, 'thirty-six thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(20538, 47900, 'forty-seven thousand nine hundred'); INSERT INTO t2 VALUES(20539, 95142, 'ninety-five thousand one hundred forty-two'); INSERT INTO t2 VALUES(20540, 34310, 'thirty-four thousand three hundred ten'); INSERT INTO t2 VALUES(20541, 17033, 'seventeen thousand thirty-three'); INSERT INTO t2 VALUES(20542, 17959, 'seventeen thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(20543, 63214, 'sixty-three thousand two hundred fourteen'); INSERT INTO t2 VALUES(20544, 54462, 'fifty-four thousand four hundred sixty-two'); INSERT INTO t2 VALUES(20545, 36364, 'thirty-six thousand three hundred sixty-four'); INSERT INTO t2 VALUES(20546, 83234, 'eighty-three thousand two hundred thirty-four'); INSERT INTO t2 VALUES(20547, 51418, 'fifty-one thousand four hundred eighteen'); INSERT INTO t2 VALUES(20548, 69847, 'sixty-nine thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(20549, 99572, 'ninety-nine thousand five hundred seventy-two'); INSERT INTO t2 VALUES(20550, 55268, 'fifty-five thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(20551, 68857, 'sixty-eight thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(20552, 44393, 'forty-four thousand three hundred ninety-three'); INSERT INTO t2 VALUES(20553, 98973, 'ninety-eight thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(20554, 76854, 'seventy-six thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(20555, 89530, 'eighty-nine thousand five hundred thirty'); INSERT INTO t2 VALUES(20556, 32166, 'thirty-two thousand one hundred sixty-six'); INSERT INTO t2 VALUES(20557, 63760, 'sixty-three thousand seven hundred sixty'); INSERT INTO t2 VALUES(20558, 72352, 'seventy-two thousand three hundred fifty-two'); INSERT INTO t2 VALUES(20559, 94578, 'ninety-four thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(20560, 73423, 'seventy-three thousand four hundred twenty-three'); INSERT INTO t2 VALUES(20561, 20202, 'twenty thousand two hundred two'); INSERT INTO t2 VALUES(20562, 73422, 'seventy-three thousand four hundred twenty-two'); INSERT INTO t2 VALUES(20563, 2379, 'two thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(20564, 79916, 'seventy-nine thousand nine hundred sixteen'); INSERT INTO t2 VALUES(20565, 85728, 'eighty-five thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(20566, 48934, 'forty-eight thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(20567, 38606, 'thirty-eight thousand six hundred six'); INSERT INTO t2 VALUES(20568, 15497, 'fifteen thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(20569, 54742, 'fifty-four thousand seven hundred forty-two'); INSERT INTO t2 VALUES(20570, 30257, 'thirty thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(20571, 64408, 'sixty-four thousand four hundred eight'); INSERT INTO t2 VALUES(20572, 47405, 'forty-seven thousand four hundred five'); INSERT INTO t2 VALUES(20573, 77402, 'seventy-seven thousand four hundred two'); INSERT INTO t2 VALUES(20574, 99103, 'ninety-nine thousand one hundred three'); INSERT INTO t2 VALUES(20575, 79651, 'seventy-nine thousand six hundred fifty-one'); INSERT INTO t2 VALUES(20576, 99402, 'ninety-nine thousand four hundred two'); INSERT INTO t2 VALUES(20577, 89598, 'eighty-nine thousand five hundred ninety-eight'); INSERT INTO t2 VALUES(20578, 90249, 'ninety thousand two hundred forty-nine'); INSERT INTO t2 VALUES(20579, 93415, 'ninety-three thousand four hundred fifteen'); INSERT INTO t2 VALUES(20580, 42630, 'forty-two thousand six hundred thirty'); INSERT INTO t2 VALUES(20581, 32661, 'thirty-two thousand six hundred sixty-one'); INSERT INTO t2 VALUES(20582, 37103, 'thirty-seven thousand one hundred three'); INSERT INTO t2 VALUES(20583, 16978, 'sixteen thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(20584, 38616, 'thirty-eight thousand six hundred sixteen'); INSERT INTO t2 VALUES(20585, 22704, 'twenty-two thousand seven hundred four'); INSERT INTO t2 VALUES(20586, 61541, 'sixty-one thousand five hundred forty-one'); INSERT INTO t2 VALUES(20587, 21899, 'twenty-one thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(20588, 43049, 'forty-three thousand forty-nine'); INSERT INTO t2 VALUES(20589, 13190, 'thirteen thousand one hundred ninety'); INSERT INTO t2 VALUES(20590, 66828, 'sixty-six thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(20591, 49570, 'forty-nine thousand five hundred seventy'); INSERT INTO t2 VALUES(20592, 90522, 'ninety thousand five hundred twenty-two'); INSERT INTO t2 VALUES(20593, 17497, 'seventeen thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(20594, 35635, 'thirty-five thousand six hundred thirty-five'); INSERT INTO t2 VALUES(20595, 12377, 'twelve thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(20596, 86218, 'eighty-six thousand two hundred eighteen'); INSERT INTO t2 VALUES(20597, 90538, 'ninety thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(20598, 62472, 'sixty-two thousand four hundred seventy-two'); INSERT INTO t2 VALUES(20599, 98352, 'ninety-eight thousand three hundred fifty-two'); INSERT INTO t2 VALUES(20600, 55944, 'fifty-five thousand nine hundred forty-four'); INSERT INTO t2 VALUES(20601, 11704, 'eleven thousand seven hundred four'); INSERT INTO t2 VALUES(20602, 89408, 'eighty-nine thousand four hundred eight'); INSERT INTO t2 VALUES(20603, 96286, 'ninety-six thousand two hundred eighty-six'); INSERT INTO t2 VALUES(20604, 87256, 'eighty-seven thousand two hundred fifty-six'); INSERT INTO t2 VALUES(20605, 48108, 'forty-eight thousand one hundred eight'); INSERT INTO t2 VALUES(20606, 67272, 'sixty-seven thousand two hundred seventy-two'); INSERT INTO t2 VALUES(20607, 36700, 'thirty-six thousand seven hundred'); INSERT INTO t2 VALUES(20608, 62652, 'sixty-two thousand six hundred fifty-two'); INSERT INTO t2 VALUES(20609, 47604, 'forty-seven thousand six hundred four'); INSERT INTO t2 VALUES(20610, 19087, 'nineteen thousand eighty-seven'); INSERT INTO t2 VALUES(20611, 6356, 'six thousand three hundred fifty-six'); INSERT INTO t2 VALUES(20612, 54976, 'fifty-four thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(20613, 44614, 'forty-four thousand six hundred fourteen'); INSERT INTO t2 VALUES(20614, 22210, 'twenty-two thousand two hundred ten'); INSERT INTO t2 VALUES(20615, 12100, 'twelve thousand one hundred'); INSERT INTO t2 VALUES(20616, 51703, 'fifty-one thousand seven hundred three'); INSERT INTO t2 VALUES(20617, 74125, 'seventy-four thousand one hundred twenty-five'); INSERT INTO t2 VALUES(20618, 90307, 'ninety thousand three hundred seven'); INSERT INTO t2 VALUES(20619, 75986, 'seventy-five thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(20620, 91921, 'ninety-one thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(20621, 93963, 'ninety-three thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(20622, 30547, 'thirty thousand five hundred forty-seven'); INSERT INTO t2 VALUES(20623, 53953, 'fifty-three thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(20624, 10012, 'ten thousand twelve'); INSERT INTO t2 VALUES(20625, 1702, 'one thousand seven hundred two'); INSERT INTO t2 VALUES(20626, 96494, 'ninety-six thousand four hundred ninety-four'); INSERT INTO t2 VALUES(20627, 23928, 'twenty-three thousand nine hundred twenty-eight'); INSERT INTO t2 VALUES(20628, 35320, 'thirty-five thousand three hundred twenty'); INSERT INTO t2 VALUES(20629, 57935, 'fifty-seven thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(20630, 5584, 'five thousand five hundred eighty-four'); INSERT INTO t2 VALUES(20631, 58202, 'fifty-eight thousand two hundred two'); INSERT INTO t2 VALUES(20632, 94107, 'ninety-four thousand one hundred seven'); INSERT INTO t2 VALUES(20633, 85456, 'eighty-five thousand four hundred fifty-six'); INSERT INTO t2 VALUES(20634, 24056, 'twenty-four thousand fifty-six'); INSERT INTO t2 VALUES(20635, 5636, 'five thousand six hundred thirty-six'); INSERT INTO t2 VALUES(20636, 73041, 'seventy-three thousand forty-one'); INSERT INTO t2 VALUES(20637, 69817, 'sixty-nine thousand eight hundred seventeen'); INSERT INTO t2 VALUES(20638, 21038, 'twenty-one thousand thirty-eight'); INSERT INTO t2 VALUES(20639, 30275, 'thirty thousand two hundred seventy-five'); INSERT INTO t2 VALUES(20640, 27675, 'twenty-seven thousand six hundred seventy-five'); INSERT INTO t2 VALUES(20641, 94480, 'ninety-four thousand four hundred eighty'); INSERT INTO t2 VALUES(20642, 15516, 'fifteen thousand five hundred sixteen'); INSERT INTO t2 VALUES(20643, 11572, 'eleven thousand five hundred seventy-two'); INSERT INTO t2 VALUES(20644, 45252, 'forty-five thousand two hundred fifty-two'); INSERT INTO t2 VALUES(20645, 43435, 'forty-three thousand four hundred thirty-five'); INSERT INTO t2 VALUES(20646, 78990, 'seventy-eight thousand nine hundred ninety'); INSERT INTO t2 VALUES(20647, 20933, 'twenty thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(20648, 93998, 'ninety-three thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(20649, 33684, 'thirty-three thousand six hundred eighty-four'); INSERT INTO t2 VALUES(20650, 84349, 'eighty-four thousand three hundred forty-nine'); INSERT INTO t2 VALUES(20651, 97732, 'ninety-seven thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(20652, 69606, 'sixty-nine thousand six hundred six'); INSERT INTO t2 VALUES(20653, 1497, 'one thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(20654, 75230, 'seventy-five thousand two hundred thirty'); INSERT INTO t2 VALUES(20655, 6955, 'six thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(20656, 76200, 'seventy-six thousand two hundred'); INSERT INTO t2 VALUES(20657, 98056, 'ninety-eight thousand fifty-six'); INSERT INTO t2 VALUES(20658, 29783, 'twenty-nine thousand seven hundred eighty-three'); INSERT INTO t2 VALUES(20659, 85478, 'eighty-five thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(20660, 87819, 'eighty-seven thousand eight hundred nineteen'); INSERT INTO t2 VALUES(20661, 32190, 'thirty-two thousand one hundred ninety'); INSERT INTO t2 VALUES(20662, 72822, 'seventy-two thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(20663, 80514, 'eighty thousand five hundred fourteen'); INSERT INTO t2 VALUES(20664, 90920, 'ninety thousand nine hundred twenty'); INSERT INTO t2 VALUES(20665, 47466, 'forty-seven thousand four hundred sixty-six'); INSERT INTO t2 VALUES(20666, 88710, 'eighty-eight thousand seven hundred ten'); INSERT INTO t2 VALUES(20667, 56286, 'fifty-six thousand two hundred eighty-six'); INSERT INTO t2 VALUES(20668, 32668, 'thirty-two thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(20669, 91516, 'ninety-one thousand five hundred sixteen'); INSERT INTO t2 VALUES(20670, 14851, 'fourteen thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(20671, 69855, 'sixty-nine thousand eight hundred fifty-five'); INSERT INTO t2 VALUES(20672, 9617, 'nine thousand six hundred seventeen'); INSERT INTO t2 VALUES(20673, 24029, 'twenty-four thousand twenty-nine'); INSERT INTO t2 VALUES(20674, 53782, 'fifty-three thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(20675, 14005, 'fourteen thousand five'); INSERT INTO t2 VALUES(20676, 8690, 'eight thousand six hundred ninety'); INSERT INTO t2 VALUES(20677, 61739, 'sixty-one thousand seven hundred thirty-nine'); INSERT INTO t2 VALUES(20678, 39679, 'thirty-nine thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(20679, 69941, 'sixty-nine thousand nine hundred forty-one'); INSERT INTO t2 VALUES(20680, 29547, 'twenty-nine thousand five hundred forty-seven'); INSERT INTO t2 VALUES(20681, 96030, 'ninety-six thousand thirty'); INSERT INTO t2 VALUES(20682, 3431, 'three thousand four hundred thirty-one'); INSERT INTO t2 VALUES(20683, 99589, 'ninety-nine thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(20684, 79761, 'seventy-nine thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(20685, 95908, 'ninety-five thousand nine hundred eight'); INSERT INTO t2 VALUES(20686, 84673, 'eighty-four thousand six hundred seventy-three'); INSERT INTO t2 VALUES(20687, 49314, 'forty-nine thousand three hundred fourteen'); INSERT INTO t2 VALUES(20688, 8988, 'eight thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(20689, 63741, 'sixty-three thousand seven hundred forty-one'); INSERT INTO t2 VALUES(20690, 3640, 'three thousand six hundred forty'); INSERT INTO t2 VALUES(20691, 86596, 'eighty-six thousand five hundred ninety-six'); INSERT INTO t2 VALUES(20692, 4697, 'four thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(20693, 30021, 'thirty thousand twenty-one'); INSERT INTO t2 VALUES(20694, 45842, 'forty-five thousand eight hundred forty-two'); INSERT INTO t2 VALUES(20695, 95024, 'ninety-five thousand twenty-four'); INSERT INTO t2 VALUES(20696, 59861, 'fifty-nine thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(20697, 39266, 'thirty-nine thousand two hundred sixty-six'); INSERT INTO t2 VALUES(20698, 4396, 'four thousand three hundred ninety-six'); INSERT INTO t2 VALUES(20699, 55728, 'fifty-five thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(20700, 71628, 'seventy-one thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(20701, 90861, 'ninety thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(20702, 67710, 'sixty-seven thousand seven hundred ten'); INSERT INTO t2 VALUES(20703, 36270, 'thirty-six thousand two hundred seventy'); INSERT INTO t2 VALUES(20704, 70632, 'seventy thousand six hundred thirty-two'); INSERT INTO t2 VALUES(20705, 70912, 'seventy thousand nine hundred twelve'); INSERT INTO t2 VALUES(20706, 6578, 'six thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(20707, 25011, 'twenty-five thousand eleven'); INSERT INTO t2 VALUES(20708, 1724, 'one thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(20709, 40909, 'forty thousand nine hundred nine'); INSERT INTO t2 VALUES(20710, 28152, 'twenty-eight thousand one hundred fifty-two'); INSERT INTO t2 VALUES(20711, 80649, 'eighty thousand six hundred forty-nine'); INSERT INTO t2 VALUES(20712, 64096, 'sixty-four thousand ninety-six'); INSERT INTO t2 VALUES(20713, 91258, 'ninety-one thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(20714, 6001, 'six thousand one'); INSERT INTO t2 VALUES(20715, 28212, 'twenty-eight thousand two hundred twelve'); INSERT INTO t2 VALUES(20716, 38634, 'thirty-eight thousand six hundred thirty-four'); INSERT INTO t2 VALUES(20717, 44682, 'forty-four thousand six hundred eighty-two'); INSERT INTO t2 VALUES(20718, 13774, 'thirteen thousand seven hundred seventy-four'); INSERT INTO t2 VALUES(20719, 72830, 'seventy-two thousand eight hundred thirty'); INSERT INTO t2 VALUES(20720, 16510, 'sixteen thousand five hundred ten'); INSERT INTO t2 VALUES(20721, 81935, 'eighty-one thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(20722, 2153, 'two thousand one hundred fifty-three'); INSERT INTO t2 VALUES(20723, 54733, 'fifty-four thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(20724, 80109, 'eighty thousand one hundred nine'); INSERT INTO t2 VALUES(20725, 32962, 'thirty-two thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(20726, 65516, 'sixty-five thousand five hundred sixteen'); INSERT INTO t2 VALUES(20727, 32228, 'thirty-two thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(20728, 36502, 'thirty-six thousand five hundred two'); INSERT INTO t2 VALUES(20729, 89620, 'eighty-nine thousand six hundred twenty'); INSERT INTO t2 VALUES(20730, 48893, 'forty-eight thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(20731, 42827, 'forty-two thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(20732, 29125, 'twenty-nine thousand one hundred twenty-five'); INSERT INTO t2 VALUES(20733, 27007, 'twenty-seven thousand seven'); INSERT INTO t2 VALUES(20734, 9560, 'nine thousand five hundred sixty'); INSERT INTO t2 VALUES(20735, 41094, 'forty-one thousand ninety-four'); INSERT INTO t2 VALUES(20736, 57818, 'fifty-seven thousand eight hundred eighteen'); INSERT INTO t2 VALUES(20737, 71140, 'seventy-one thousand one hundred forty'); INSERT INTO t2 VALUES(20738, 27027, 'twenty-seven thousand twenty-seven'); INSERT INTO t2 VALUES(20739, 8063, 'eight thousand sixty-three'); INSERT INTO t2 VALUES(20740, 93266, 'ninety-three thousand two hundred sixty-six'); INSERT INTO t2 VALUES(20741, 72355, 'seventy-two thousand three hundred fifty-five'); INSERT INTO t2 VALUES(20742, 13654, 'thirteen thousand six hundred fifty-four'); INSERT INTO t2 VALUES(20743, 45002, 'forty-five thousand two'); INSERT INTO t2 VALUES(20744, 24665, 'twenty-four thousand six hundred sixty-five'); INSERT INTO t2 VALUES(20745, 88343, 'eighty-eight thousand three hundred forty-three'); INSERT INTO t2 VALUES(20746, 33168, 'thirty-three thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(20747, 80145, 'eighty thousand one hundred forty-five'); INSERT INTO t2 VALUES(20748, 13097, 'thirteen thousand ninety-seven'); INSERT INTO t2 VALUES(20749, 14021, 'fourteen thousand twenty-one'); INSERT INTO t2 VALUES(20750, 92067, 'ninety-two thousand sixty-seven'); INSERT INTO t2 VALUES(20751, 87599, 'eighty-seven thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(20752, 21009, 'twenty-one thousand nine'); INSERT INTO t2 VALUES(20753, 16556, 'sixteen thousand five hundred fifty-six'); INSERT INTO t2 VALUES(20754, 59066, 'fifty-nine thousand sixty-six'); INSERT INTO t2 VALUES(20755, 92223, 'ninety-two thousand two hundred twenty-three'); INSERT INTO t2 VALUES(20756, 67805, 'sixty-seven thousand eight hundred five'); INSERT INTO t2 VALUES(20757, 81185, 'eighty-one thousand one hundred eighty-five'); INSERT INTO t2 VALUES(20758, 19893, 'nineteen thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(20759, 40442, 'forty thousand four hundred forty-two'); INSERT INTO t2 VALUES(20760, 22420, 'twenty-two thousand four hundred twenty'); INSERT INTO t2 VALUES(20761, 89833, 'eighty-nine thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(20762, 47442, 'forty-seven thousand four hundred forty-two'); INSERT INTO t2 VALUES(20763, 64418, 'sixty-four thousand four hundred eighteen'); INSERT INTO t2 VALUES(20764, 56734, 'fifty-six thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(20765, 48198, 'forty-eight thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(20766, 74803, 'seventy-four thousand eight hundred three'); INSERT INTO t2 VALUES(20767, 54310, 'fifty-four thousand three hundred ten'); INSERT INTO t2 VALUES(20768, 42749, 'forty-two thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(20769, 1595, 'one thousand five hundred ninety-five'); INSERT INTO t2 VALUES(20770, 37104, 'thirty-seven thousand one hundred four'); INSERT INTO t2 VALUES(20771, 93970, 'ninety-three thousand nine hundred seventy'); INSERT INTO t2 VALUES(20772, 77004, 'seventy-seven thousand four'); INSERT INTO t2 VALUES(20773, 38077, 'thirty-eight thousand seventy-seven'); INSERT INTO t2 VALUES(20774, 4318, 'four thousand three hundred eighteen'); INSERT INTO t2 VALUES(20775, 30259, 'thirty thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(20776, 60477, 'sixty thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(20777, 29986, 'twenty-nine thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(20778, 56814, 'fifty-six thousand eight hundred fourteen'); INSERT INTO t2 VALUES(20779, 57633, 'fifty-seven thousand six hundred thirty-three'); INSERT INTO t2 VALUES(20780, 50036, 'fifty thousand thirty-six'); INSERT INTO t2 VALUES(20781, 60730, 'sixty thousand seven hundred thirty'); INSERT INTO t2 VALUES(20782, 35100, 'thirty-five thousand one hundred'); INSERT INTO t2 VALUES(20783, 61113, 'sixty-one thousand one hundred thirteen'); INSERT INTO t2 VALUES(20784, 140, 'one hundred forty'); INSERT INTO t2 VALUES(20785, 35784, 'thirty-five thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(20786, 87422, 'eighty-seven thousand four hundred twenty-two'); INSERT INTO t2 VALUES(20787, 28128, 'twenty-eight thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(20788, 66213, 'sixty-six thousand two hundred thirteen'); INSERT INTO t2 VALUES(20789, 44242, 'forty-four thousand two hundred forty-two'); INSERT INTO t2 VALUES(20790, 2525, 'two thousand five hundred twenty-five'); INSERT INTO t2 VALUES(20791, 60800, 'sixty thousand eight hundred'); INSERT INTO t2 VALUES(20792, 86046, 'eighty-six thousand forty-six'); INSERT INTO t2 VALUES(20793, 77259, 'seventy-seven thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(20794, 18484, 'eighteen thousand four hundred eighty-four'); INSERT INTO t2 VALUES(20795, 32691, 'thirty-two thousand six hundred ninety-one'); INSERT INTO t2 VALUES(20796, 89681, 'eighty-nine thousand six hundred eighty-one'); INSERT INTO t2 VALUES(20797, 19743, 'nineteen thousand seven hundred forty-three'); INSERT INTO t2 VALUES(20798, 2558, 'two thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(20799, 54514, 'fifty-four thousand five hundred fourteen'); INSERT INTO t2 VALUES(20800, 11525, 'eleven thousand five hundred twenty-five'); INSERT INTO t2 VALUES(20801, 96249, 'ninety-six thousand two hundred forty-nine'); INSERT INTO t2 VALUES(20802, 33893, 'thirty-three thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(20803, 82190, 'eighty-two thousand one hundred ninety'); INSERT INTO t2 VALUES(20804, 23297, 'twenty-three thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(20805, 59761, 'fifty-nine thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(20806, 5879, 'five thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(20807, 68389, 'sixty-eight thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(20808, 2624, 'two thousand six hundred twenty-four'); INSERT INTO t2 VALUES(20809, 17414, 'seventeen thousand four hundred fourteen'); INSERT INTO t2 VALUES(20810, 45899, 'forty-five thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(20811, 43977, 'forty-three thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(20812, 98925, 'ninety-eight thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(20813, 99535, 'ninety-nine thousand five hundred thirty-five'); INSERT INTO t2 VALUES(20814, 47119, 'forty-seven thousand one hundred nineteen'); INSERT INTO t2 VALUES(20815, 92398, 'ninety-two thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(20816, 33278, 'thirty-three thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(20817, 10689, 'ten thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(20818, 5457, 'five thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(20819, 76584, 'seventy-six thousand five hundred eighty-four'); INSERT INTO t2 VALUES(20820, 78783, 'seventy-eight thousand seven hundred eighty-three'); INSERT INTO t2 VALUES(20821, 89407, 'eighty-nine thousand four hundred seven'); INSERT INTO t2 VALUES(20822, 87257, 'eighty-seven thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(20823, 28309, 'twenty-eight thousand three hundred nine'); INSERT INTO t2 VALUES(20824, 63524, 'sixty-three thousand five hundred twenty-four'); INSERT INTO t2 VALUES(20825, 44844, 'forty-four thousand eight hundred forty-four'); INSERT INTO t2 VALUES(20826, 61006, 'sixty-one thousand six'); INSERT INTO t2 VALUES(20827, 79538, 'seventy-nine thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(20828, 97949, 'ninety-seven thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(20829, 8632, 'eight thousand six hundred thirty-two'); INSERT INTO t2 VALUES(20830, 35741, 'thirty-five thousand seven hundred forty-one'); INSERT INTO t2 VALUES(20831, 98612, 'ninety-eight thousand six hundred twelve'); INSERT INTO t2 VALUES(20832, 92970, 'ninety-two thousand nine hundred seventy'); INSERT INTO t2 VALUES(20833, 42735, 'forty-two thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(20834, 7119, 'seven thousand one hundred nineteen'); INSERT INTO t2 VALUES(20835, 33845, 'thirty-three thousand eight hundred forty-five'); INSERT INTO t2 VALUES(20836, 47212, 'forty-seven thousand two hundred twelve'); INSERT INTO t2 VALUES(20837, 13536, 'thirteen thousand five hundred thirty-six'); INSERT INTO t2 VALUES(20838, 86333, 'eighty-six thousand three hundred thirty-three'); INSERT INTO t2 VALUES(20839, 49582, 'forty-nine thousand five hundred eighty-two'); INSERT INTO t2 VALUES(20840, 60169, 'sixty thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(20841, 49256, 'forty-nine thousand two hundred fifty-six'); INSERT INTO t2 VALUES(20842, 76036, 'seventy-six thousand thirty-six'); INSERT INTO t2 VALUES(20843, 25276, 'twenty-five thousand two hundred seventy-six'); INSERT INTO t2 VALUES(20844, 83041, 'eighty-three thousand forty-one'); INSERT INTO t2 VALUES(20845, 66167, 'sixty-six thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(20846, 95728, 'ninety-five thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(20847, 88389, 'eighty-eight thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(20848, 92996, 'ninety-two thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(20849, 66252, 'sixty-six thousand two hundred fifty-two'); INSERT INTO t2 VALUES(20850, 67792, 'sixty-seven thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(20851, 28765, 'twenty-eight thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(20852, 53846, 'fifty-three thousand eight hundred forty-six'); INSERT INTO t2 VALUES(20853, 33826, 'thirty-three thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(20854, 3869, 'three thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(20855, 63720, 'sixty-three thousand seven hundred twenty'); INSERT INTO t2 VALUES(20856, 58814, 'fifty-eight thousand eight hundred fourteen'); INSERT INTO t2 VALUES(20857, 86750, 'eighty-six thousand seven hundred fifty'); INSERT INTO t2 VALUES(20858, 45743, 'forty-five thousand seven hundred forty-three'); INSERT INTO t2 VALUES(20859, 81728, 'eighty-one thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(20860, 72524, 'seventy-two thousand five hundred twenty-four'); INSERT INTO t2 VALUES(20861, 7697, 'seven thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(20862, 25890, 'twenty-five thousand eight hundred ninety'); INSERT INTO t2 VALUES(20863, 60615, 'sixty thousand six hundred fifteen'); INSERT INTO t2 VALUES(20864, 42107, 'forty-two thousand one hundred seven'); INSERT INTO t2 VALUES(20865, 30406, 'thirty thousand four hundred six'); INSERT INTO t2 VALUES(20866, 86830, 'eighty-six thousand eight hundred thirty'); INSERT INTO t2 VALUES(20867, 90896, 'ninety thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(20868, 70747, 'seventy thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(20869, 64799, 'sixty-four thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(20870, 73710, 'seventy-three thousand seven hundred ten'); INSERT INTO t2 VALUES(20871, 50208, 'fifty thousand two hundred eight'); INSERT INTO t2 VALUES(20872, 68686, 'sixty-eight thousand six hundred eighty-six'); INSERT INTO t2 VALUES(20873, 74764, 'seventy-four thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(20874, 18007, 'eighteen thousand seven'); INSERT INTO t2 VALUES(20875, 91354, 'ninety-one thousand three hundred fifty-four'); INSERT INTO t2 VALUES(20876, 47944, 'forty-seven thousand nine hundred forty-four'); INSERT INTO t2 VALUES(20877, 48147, 'forty-eight thousand one hundred forty-seven'); INSERT INTO t2 VALUES(20878, 91253, 'ninety-one thousand two hundred fifty-three'); INSERT INTO t2 VALUES(20879, 33500, 'thirty-three thousand five hundred'); INSERT INTO t2 VALUES(20880, 21392, 'twenty-one thousand three hundred ninety-two'); INSERT INTO t2 VALUES(20881, 15667, 'fifteen thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(20882, 36411, 'thirty-six thousand four hundred eleven'); INSERT INTO t2 VALUES(20883, 25926, 'twenty-five thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(20884, 12885, 'twelve thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(20885, 10333, 'ten thousand three hundred thirty-three'); INSERT INTO t2 VALUES(20886, 10415, 'ten thousand four hundred fifteen'); INSERT INTO t2 VALUES(20887, 77629, 'seventy-seven thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(20888, 72451, 'seventy-two thousand four hundred fifty-one'); INSERT INTO t2 VALUES(20889, 26811, 'twenty-six thousand eight hundred eleven'); INSERT INTO t2 VALUES(20890, 61104, 'sixty-one thousand one hundred four'); INSERT INTO t2 VALUES(20891, 49890, 'forty-nine thousand eight hundred ninety'); INSERT INTO t2 VALUES(20892, 31323, 'thirty-one thousand three hundred twenty-three'); INSERT INTO t2 VALUES(20893, 3812, 'three thousand eight hundred twelve'); INSERT INTO t2 VALUES(20894, 98522, 'ninety-eight thousand five hundred twenty-two'); INSERT INTO t2 VALUES(20895, 54182, 'fifty-four thousand one hundred eighty-two'); INSERT INTO t2 VALUES(20896, 86784, 'eighty-six thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(20897, 99745, 'ninety-nine thousand seven hundred forty-five'); INSERT INTO t2 VALUES(20898, 33437, 'thirty-three thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(20899, 59842, 'fifty-nine thousand eight hundred forty-two'); INSERT INTO t2 VALUES(20900, 90550, 'ninety thousand five hundred fifty'); INSERT INTO t2 VALUES(20901, 29505, 'twenty-nine thousand five hundred five'); INSERT INTO t2 VALUES(20902, 83879, 'eighty-three thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(20903, 46479, 'forty-six thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(20904, 24359, 'twenty-four thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(20905, 17176, 'seventeen thousand one hundred seventy-six'); INSERT INTO t2 VALUES(20906, 65318, 'sixty-five thousand three hundred eighteen'); INSERT INTO t2 VALUES(20907, 51389, 'fifty-one thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(20908, 67213, 'sixty-seven thousand two hundred thirteen'); INSERT INTO t2 VALUES(20909, 27654, 'twenty-seven thousand six hundred fifty-four'); INSERT INTO t2 VALUES(20910, 32583, 'thirty-two thousand five hundred eighty-three'); INSERT INTO t2 VALUES(20911, 30785, 'thirty thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(20912, 48418, 'forty-eight thousand four hundred eighteen'); INSERT INTO t2 VALUES(20913, 34069, 'thirty-four thousand sixty-nine'); INSERT INTO t2 VALUES(20914, 76752, 'seventy-six thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(20915, 35915, 'thirty-five thousand nine hundred fifteen'); INSERT INTO t2 VALUES(20916, 44142, 'forty-four thousand one hundred forty-two'); INSERT INTO t2 VALUES(20917, 67133, 'sixty-seven thousand one hundred thirty-three'); INSERT INTO t2 VALUES(20918, 97971, 'ninety-seven thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(20919, 43465, 'forty-three thousand four hundred sixty-five'); INSERT INTO t2 VALUES(20920, 73100, 'seventy-three thousand one hundred'); INSERT INTO t2 VALUES(20921, 45014, 'forty-five thousand fourteen'); INSERT INTO t2 VALUES(20922, 27457, 'twenty-seven thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(20923, 48786, 'forty-eight thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(20924, 49949, 'forty-nine thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(20925, 29715, 'twenty-nine thousand seven hundred fifteen'); INSERT INTO t2 VALUES(20926, 30083, 'thirty thousand eighty-three'); INSERT INTO t2 VALUES(20927, 36179, 'thirty-six thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(20928, 49258, 'forty-nine thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(20929, 76085, 'seventy-six thousand eighty-five'); INSERT INTO t2 VALUES(20930, 90842, 'ninety thousand eight hundred forty-two'); INSERT INTO t2 VALUES(20931, 3301, 'three thousand three hundred one'); INSERT INTO t2 VALUES(20932, 79447, 'seventy-nine thousand four hundred forty-seven'); INSERT INTO t2 VALUES(20933, 16649, 'sixteen thousand six hundred forty-nine'); INSERT INTO t2 VALUES(20934, 74228, 'seventy-four thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(20935, 97208, 'ninety-seven thousand two hundred eight'); INSERT INTO t2 VALUES(20936, 83384, 'eighty-three thousand three hundred eighty-four'); INSERT INTO t2 VALUES(20937, 10761, 'ten thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(20938, 64732, 'sixty-four thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(20939, 21700, 'twenty-one thousand seven hundred'); INSERT INTO t2 VALUES(20940, 32143, 'thirty-two thousand one hundred forty-three'); INSERT INTO t2 VALUES(20941, 1986, 'one thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(20942, 19251, 'nineteen thousand two hundred fifty-one'); INSERT INTO t2 VALUES(20943, 52724, 'fifty-two thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(20944, 34691, 'thirty-four thousand six hundred ninety-one'); INSERT INTO t2 VALUES(20945, 80799, 'eighty thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(20946, 69836, 'sixty-nine thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(20947, 11915, 'eleven thousand nine hundred fifteen'); INSERT INTO t2 VALUES(20948, 12871, 'twelve thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(20949, 48325, 'forty-eight thousand three hundred twenty-five'); INSERT INTO t2 VALUES(20950, 74847, 'seventy-four thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(20951, 94237, 'ninety-four thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(20952, 46860, 'forty-six thousand eight hundred sixty'); INSERT INTO t2 VALUES(20953, 21807, 'twenty-one thousand eight hundred seven'); INSERT INTO t2 VALUES(20954, 87440, 'eighty-seven thousand four hundred forty'); INSERT INTO t2 VALUES(20955, 71782, 'seventy-one thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(20956, 21321, 'twenty-one thousand three hundred twenty-one'); INSERT INTO t2 VALUES(20957, 30951, 'thirty thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(20958, 11856, 'eleven thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(20959, 49811, 'forty-nine thousand eight hundred eleven'); INSERT INTO t2 VALUES(20960, 79749, 'seventy-nine thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(20961, 11170, 'eleven thousand one hundred seventy'); INSERT INTO t2 VALUES(20962, 99629, 'ninety-nine thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(20963, 65371, 'sixty-five thousand three hundred seventy-one'); INSERT INTO t2 VALUES(20964, 34244, 'thirty-four thousand two hundred forty-four'); INSERT INTO t2 VALUES(20965, 3781, 'three thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(20966, 24686, 'twenty-four thousand six hundred eighty-six'); INSERT INTO t2 VALUES(20967, 59903, 'fifty-nine thousand nine hundred three'); INSERT INTO t2 VALUES(20968, 62614, 'sixty-two thousand six hundred fourteen'); INSERT INTO t2 VALUES(20969, 92050, 'ninety-two thousand fifty'); INSERT INTO t2 VALUES(20970, 98544, 'ninety-eight thousand five hundred forty-four'); INSERT INTO t2 VALUES(20971, 28740, 'twenty-eight thousand seven hundred forty'); INSERT INTO t2 VALUES(20972, 24024, 'twenty-four thousand twenty-four'); INSERT INTO t2 VALUES(20973, 92000, 'ninety-two thousand'); INSERT INTO t2 VALUES(20974, 40715, 'forty thousand seven hundred fifteen'); INSERT INTO t2 VALUES(20975, 52113, 'fifty-two thousand one hundred thirteen'); INSERT INTO t2 VALUES(20976, 68404, 'sixty-eight thousand four hundred four'); INSERT INTO t2 VALUES(20977, 85410, 'eighty-five thousand four hundred ten'); INSERT INTO t2 VALUES(20978, 54851, 'fifty-four thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(20979, 22821, 'twenty-two thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(20980, 41283, 'forty-one thousand two hundred eighty-three'); INSERT INTO t2 VALUES(20981, 46991, 'forty-six thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(20982, 4852, 'four thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(20983, 79635, 'seventy-nine thousand six hundred thirty-five'); INSERT INTO t2 VALUES(20984, 88412, 'eighty-eight thousand four hundred twelve'); INSERT INTO t2 VALUES(20985, 93051, 'ninety-three thousand fifty-one'); INSERT INTO t2 VALUES(20986, 81058, 'eighty-one thousand fifty-eight'); INSERT INTO t2 VALUES(20987, 41569, 'forty-one thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(20988, 61945, 'sixty-one thousand nine hundred forty-five'); INSERT INTO t2 VALUES(20989, 62609, 'sixty-two thousand six hundred nine'); INSERT INTO t2 VALUES(20990, 13715, 'thirteen thousand seven hundred fifteen'); INSERT INTO t2 VALUES(20991, 2046, 'two thousand forty-six'); INSERT INTO t2 VALUES(20992, 22876, 'twenty-two thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(20993, 27636, 'twenty-seven thousand six hundred thirty-six'); INSERT INTO t2 VALUES(20994, 85744, 'eighty-five thousand seven hundred forty-four'); INSERT INTO t2 VALUES(20995, 8027, 'eight thousand twenty-seven'); INSERT INTO t2 VALUES(20996, 18531, 'eighteen thousand five hundred thirty-one'); INSERT INTO t2 VALUES(20997, 30469, 'thirty thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(20998, 88361, 'eighty-eight thousand three hundred sixty-one'); INSERT INTO t2 VALUES(20999, 3939, 'three thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(21000, 96075, 'ninety-six thousand seventy-five'); INSERT INTO t2 VALUES(21001, 59400, 'fifty-nine thousand four hundred'); INSERT INTO t2 VALUES(21002, 16789, 'sixteen thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(21003, 43998, 'forty-three thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(21004, 11203, 'eleven thousand two hundred three'); INSERT INTO t2 VALUES(21005, 12690, 'twelve thousand six hundred ninety'); INSERT INTO t2 VALUES(21006, 45157, 'forty-five thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(21007, 28750, 'twenty-eight thousand seven hundred fifty'); INSERT INTO t2 VALUES(21008, 2560, 'two thousand five hundred sixty'); INSERT INTO t2 VALUES(21009, 21191, 'twenty-one thousand one hundred ninety-one'); INSERT INTO t2 VALUES(21010, 29201, 'twenty-nine thousand two hundred one'); INSERT INTO t2 VALUES(21011, 37956, 'thirty-seven thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(21012, 39641, 'thirty-nine thousand six hundred forty-one'); INSERT INTO t2 VALUES(21013, 65272, 'sixty-five thousand two hundred seventy-two'); INSERT INTO t2 VALUES(21014, 27780, 'twenty-seven thousand seven hundred eighty'); INSERT INTO t2 VALUES(21015, 91818, 'ninety-one thousand eight hundred eighteen'); INSERT INTO t2 VALUES(21016, 51822, 'fifty-one thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(21017, 64487, 'sixty-four thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(21018, 91951, 'ninety-one thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(21019, 92209, 'ninety-two thousand two hundred nine'); INSERT INTO t2 VALUES(21020, 38116, 'thirty-eight thousand one hundred sixteen'); INSERT INTO t2 VALUES(21021, 10384, 'ten thousand three hundred eighty-four'); INSERT INTO t2 VALUES(21022, 42093, 'forty-two thousand ninety-three'); INSERT INTO t2 VALUES(21023, 64506, 'sixty-four thousand five hundred six'); INSERT INTO t2 VALUES(21024, 80152, 'eighty thousand one hundred fifty-two'); INSERT INTO t2 VALUES(21025, 20984, 'twenty thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(21026, 76875, 'seventy-six thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(21027, 95590, 'ninety-five thousand five hundred ninety'); INSERT INTO t2 VALUES(21028, 51070, 'fifty-one thousand seventy'); INSERT INTO t2 VALUES(21029, 90143, 'ninety thousand one hundred forty-three'); INSERT INTO t2 VALUES(21030, 26787, 'twenty-six thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(21031, 50854, 'fifty thousand eight hundred fifty-four'); INSERT INTO t2 VALUES(21032, 96583, 'ninety-six thousand five hundred eighty-three'); INSERT INTO t2 VALUES(21033, 31976, 'thirty-one thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(21034, 80099, 'eighty thousand ninety-nine'); INSERT INTO t2 VALUES(21035, 90856, 'ninety thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(21036, 39443, 'thirty-nine thousand four hundred forty-three'); INSERT INTO t2 VALUES(21037, 10934, 'ten thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(21038, 94505, 'ninety-four thousand five hundred five'); INSERT INTO t2 VALUES(21039, 95538, 'ninety-five thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(21040, 36148, 'thirty-six thousand one hundred forty-eight'); INSERT INTO t2 VALUES(21041, 50446, 'fifty thousand four hundred forty-six'); INSERT INTO t2 VALUES(21042, 91321, 'ninety-one thousand three hundred twenty-one'); INSERT INTO t2 VALUES(21043, 73528, 'seventy-three thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(21044, 89995, 'eighty-nine thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(21045, 58200, 'fifty-eight thousand two hundred'); INSERT INTO t2 VALUES(21046, 54511, 'fifty-four thousand five hundred eleven'); INSERT INTO t2 VALUES(21047, 24946, 'twenty-four thousand nine hundred forty-six'); INSERT INTO t2 VALUES(21048, 66204, 'sixty-six thousand two hundred four'); INSERT INTO t2 VALUES(21049, 26736, 'twenty-six thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(21050, 90899, 'ninety thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(21051, 73705, 'seventy-three thousand seven hundred five'); INSERT INTO t2 VALUES(21052, 5359, 'five thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(21053, 42040, 'forty-two thousand forty'); INSERT INTO t2 VALUES(21054, 21404, 'twenty-one thousand four hundred four'); INSERT INTO t2 VALUES(21055, 63277, 'sixty-three thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(21056, 10171, 'ten thousand one hundred seventy-one'); INSERT INTO t2 VALUES(21057, 76362, 'seventy-six thousand three hundred sixty-two'); INSERT INTO t2 VALUES(21058, 83499, 'eighty-three thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(21059, 77224, 'seventy-seven thousand two hundred twenty-four'); INSERT INTO t2 VALUES(21060, 29364, 'twenty-nine thousand three hundred sixty-four'); INSERT INTO t2 VALUES(21061, 67887, 'sixty-seven thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(21062, 84419, 'eighty-four thousand four hundred nineteen'); INSERT INTO t2 VALUES(21063, 989, 'nine hundred eighty-nine'); INSERT INTO t2 VALUES(21064, 89289, 'eighty-nine thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(21065, 73225, 'seventy-three thousand two hundred twenty-five'); INSERT INTO t2 VALUES(21066, 60805, 'sixty thousand eight hundred five'); INSERT INTO t2 VALUES(21067, 70338, 'seventy thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(21068, 58899, 'fifty-eight thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(21069, 30776, 'thirty thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(21070, 78990, 'seventy-eight thousand nine hundred ninety'); INSERT INTO t2 VALUES(21071, 1323, 'one thousand three hundred twenty-three'); INSERT INTO t2 VALUES(21072, 61781, 'sixty-one thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(21073, 9719, 'nine thousand seven hundred nineteen'); INSERT INTO t2 VALUES(21074, 58428, 'fifty-eight thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(21075, 38991, 'thirty-eight thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(21076, 75192, 'seventy-five thousand one hundred ninety-two'); INSERT INTO t2 VALUES(21077, 27483, 'twenty-seven thousand four hundred eighty-three'); INSERT INTO t2 VALUES(21078, 86624, 'eighty-six thousand six hundred twenty-four'); INSERT INTO t2 VALUES(21079, 17538, 'seventeen thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(21080, 11774, 'eleven thousand seven hundred seventy-four'); INSERT INTO t2 VALUES(21081, 92822, 'ninety-two thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(21082, 68637, 'sixty-eight thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(21083, 45636, 'forty-five thousand six hundred thirty-six'); INSERT INTO t2 VALUES(21084, 40243, 'forty thousand two hundred forty-three'); INSERT INTO t2 VALUES(21085, 37951, 'thirty-seven thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(21086, 96551, 'ninety-six thousand five hundred fifty-one'); INSERT INTO t2 VALUES(21087, 78207, 'seventy-eight thousand two hundred seven'); INSERT INTO t2 VALUES(21088, 81023, 'eighty-one thousand twenty-three'); INSERT INTO t2 VALUES(21089, 90870, 'ninety thousand eight hundred seventy'); INSERT INTO t2 VALUES(21090, 44646, 'forty-four thousand six hundred forty-six'); INSERT INTO t2 VALUES(21091, 5083, 'five thousand eighty-three'); INSERT INTO t2 VALUES(21092, 48450, 'forty-eight thousand four hundred fifty'); INSERT INTO t2 VALUES(21093, 44014, 'forty-four thousand fourteen'); INSERT INTO t2 VALUES(21094, 53634, 'fifty-three thousand six hundred thirty-four'); INSERT INTO t2 VALUES(21095, 39553, 'thirty-nine thousand five hundred fifty-three'); INSERT INTO t2 VALUES(21096, 10217, 'ten thousand two hundred seventeen'); INSERT INTO t2 VALUES(21097, 56822, 'fifty-six thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(21098, 77396, 'seventy-seven thousand three hundred ninety-six'); INSERT INTO t2 VALUES(21099, 18154, 'eighteen thousand one hundred fifty-four'); INSERT INTO t2 VALUES(21100, 7991, 'seven thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(21101, 27470, 'twenty-seven thousand four hundred seventy'); INSERT INTO t2 VALUES(21102, 18907, 'eighteen thousand nine hundred seven'); INSERT INTO t2 VALUES(21103, 44731, 'forty-four thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(21104, 25789, 'twenty-five thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(21105, 84915, 'eighty-four thousand nine hundred fifteen'); INSERT INTO t2 VALUES(21106, 94332, 'ninety-four thousand three hundred thirty-two'); INSERT INTO t2 VALUES(21107, 30353, 'thirty thousand three hundred fifty-three'); INSERT INTO t2 VALUES(21108, 55869, 'fifty-five thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(21109, 44163, 'forty-four thousand one hundred sixty-three'); INSERT INTO t2 VALUES(21110, 79040, 'seventy-nine thousand forty'); INSERT INTO t2 VALUES(21111, 53292, 'fifty-three thousand two hundred ninety-two'); INSERT INTO t2 VALUES(21112, 65622, 'sixty-five thousand six hundred twenty-two'); INSERT INTO t2 VALUES(21113, 78480, 'seventy-eight thousand four hundred eighty'); INSERT INTO t2 VALUES(21114, 56182, 'fifty-six thousand one hundred eighty-two'); INSERT INTO t2 VALUES(21115, 65323, 'sixty-five thousand three hundred twenty-three'); INSERT INTO t2 VALUES(21116, 18055, 'eighteen thousand fifty-five'); INSERT INTO t2 VALUES(21117, 4132, 'four thousand one hundred thirty-two'); INSERT INTO t2 VALUES(21118, 75164, 'seventy-five thousand one hundred sixty-four'); INSERT INTO t2 VALUES(21119, 81427, 'eighty-one thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(21120, 88603, 'eighty-eight thousand six hundred three'); INSERT INTO t2 VALUES(21121, 40013, 'forty thousand thirteen'); INSERT INTO t2 VALUES(21122, 40354, 'forty thousand three hundred fifty-four'); INSERT INTO t2 VALUES(21123, 30922, 'thirty thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(21124, 23584, 'twenty-three thousand five hundred eighty-four'); INSERT INTO t2 VALUES(21125, 98815, 'ninety-eight thousand eight hundred fifteen'); INSERT INTO t2 VALUES(21126, 28833, 'twenty-eight thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(21127, 89423, 'eighty-nine thousand four hundred twenty-three'); INSERT INTO t2 VALUES(21128, 98822, 'ninety-eight thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(21129, 93222, 'ninety-three thousand two hundred twenty-two'); INSERT INTO t2 VALUES(21130, 94260, 'ninety-four thousand two hundred sixty'); INSERT INTO t2 VALUES(21131, 71873, 'seventy-one thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(21132, 18273, 'eighteen thousand two hundred seventy-three'); INSERT INTO t2 VALUES(21133, 25543, 'twenty-five thousand five hundred forty-three'); INSERT INTO t2 VALUES(21134, 95612, 'ninety-five thousand six hundred twelve'); INSERT INTO t2 VALUES(21135, 89785, 'eighty-nine thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(21136, 45190, 'forty-five thousand one hundred ninety'); INSERT INTO t2 VALUES(21137, 36832, 'thirty-six thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(21138, 13275, 'thirteen thousand two hundred seventy-five'); INSERT INTO t2 VALUES(21139, 41657, 'forty-one thousand six hundred fifty-seven'); INSERT INTO t2 VALUES(21140, 85651, 'eighty-five thousand six hundred fifty-one'); INSERT INTO t2 VALUES(21141, 35829, 'thirty-five thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(21142, 7360, 'seven thousand three hundred sixty'); INSERT INTO t2 VALUES(21143, 4330, 'four thousand three hundred thirty'); INSERT INTO t2 VALUES(21144, 78095, 'seventy-eight thousand ninety-five'); INSERT INTO t2 VALUES(21145, 17373, 'seventeen thousand three hundred seventy-three'); INSERT INTO t2 VALUES(21146, 68720, 'sixty-eight thousand seven hundred twenty'); INSERT INTO t2 VALUES(21147, 21431, 'twenty-one thousand four hundred thirty-one'); INSERT INTO t2 VALUES(21148, 55612, 'fifty-five thousand six hundred twelve'); INSERT INTO t2 VALUES(21149, 95643, 'ninety-five thousand six hundred forty-three'); INSERT INTO t2 VALUES(21150, 8216, 'eight thousand two hundred sixteen'); INSERT INTO t2 VALUES(21151, 20356, 'twenty thousand three hundred fifty-six'); INSERT INTO t2 VALUES(21152, 65, 'sixty-five'); INSERT INTO t2 VALUES(21153, 70899, 'seventy thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(21154, 18384, 'eighteen thousand three hundred eighty-four'); INSERT INTO t2 VALUES(21155, 8512, 'eight thousand five hundred twelve'); INSERT INTO t2 VALUES(21156, 66153, 'sixty-six thousand one hundred fifty-three'); INSERT INTO t2 VALUES(21157, 19821, 'nineteen thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(21158, 39067, 'thirty-nine thousand sixty-seven'); INSERT INTO t2 VALUES(21159, 62279, 'sixty-two thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(21160, 36119, 'thirty-six thousand one hundred nineteen'); INSERT INTO t2 VALUES(21161, 30107, 'thirty thousand one hundred seven'); INSERT INTO t2 VALUES(21162, 26583, 'twenty-six thousand five hundred eighty-three'); INSERT INTO t2 VALUES(21163, 66013, 'sixty-six thousand thirteen'); INSERT INTO t2 VALUES(21164, 14233, 'fourteen thousand two hundred thirty-three'); INSERT INTO t2 VALUES(21165, 4193, 'four thousand one hundred ninety-three'); INSERT INTO t2 VALUES(21166, 778, 'seven hundred seventy-eight'); INSERT INTO t2 VALUES(21167, 38837, 'thirty-eight thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(21168, 94713, 'ninety-four thousand seven hundred thirteen'); INSERT INTO t2 VALUES(21169, 34564, 'thirty-four thousand five hundred sixty-four'); INSERT INTO t2 VALUES(21170, 54520, 'fifty-four thousand five hundred twenty'); INSERT INTO t2 VALUES(21171, 62952, 'sixty-two thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(21172, 69621, 'sixty-nine thousand six hundred twenty-one'); INSERT INTO t2 VALUES(21173, 88499, 'eighty-eight thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(21174, 49397, 'forty-nine thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(21175, 28574, 'twenty-eight thousand five hundred seventy-four'); INSERT INTO t2 VALUES(21176, 11480, 'eleven thousand four hundred eighty'); INSERT INTO t2 VALUES(21177, 40208, 'forty thousand two hundred eight'); INSERT INTO t2 VALUES(21178, 38900, 'thirty-eight thousand nine hundred'); INSERT INTO t2 VALUES(21179, 83957, 'eighty-three thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(21180, 27247, 'twenty-seven thousand two hundred forty-seven'); INSERT INTO t2 VALUES(21181, 97307, 'ninety-seven thousand three hundred seven'); INSERT INTO t2 VALUES(21182, 39555, 'thirty-nine thousand five hundred fifty-five'); INSERT INTO t2 VALUES(21183, 93027, 'ninety-three thousand twenty-seven'); INSERT INTO t2 VALUES(21184, 55590, 'fifty-five thousand five hundred ninety'); INSERT INTO t2 VALUES(21185, 96966, 'ninety-six thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(21186, 6905, 'six thousand nine hundred five'); INSERT INTO t2 VALUES(21187, 96377, 'ninety-six thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(21188, 67033, 'sixty-seven thousand thirty-three'); INSERT INTO t2 VALUES(21189, 31372, 'thirty-one thousand three hundred seventy-two'); INSERT INTO t2 VALUES(21190, 86793, 'eighty-six thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(21191, 15123, 'fifteen thousand one hundred twenty-three'); INSERT INTO t2 VALUES(21192, 78993, 'seventy-eight thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(21193, 56609, 'fifty-six thousand six hundred nine'); INSERT INTO t2 VALUES(21194, 15481, 'fifteen thousand four hundred eighty-one'); INSERT INTO t2 VALUES(21195, 918, 'nine hundred eighteen'); INSERT INTO t2 VALUES(21196, 63836, 'sixty-three thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(21197, 33745, 'thirty-three thousand seven hundred forty-five'); INSERT INTO t2 VALUES(21198, 8756, 'eight thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(21199, 41975, 'forty-one thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(21200, 23231, 'twenty-three thousand two hundred thirty-one'); INSERT INTO t2 VALUES(21201, 17286, 'seventeen thousand two hundred eighty-six'); INSERT INTO t2 VALUES(21202, 30531, 'thirty thousand five hundred thirty-one'); INSERT INTO t2 VALUES(21203, 15593, 'fifteen thousand five hundred ninety-three'); INSERT INTO t2 VALUES(21204, 12905, 'twelve thousand nine hundred five'); INSERT INTO t2 VALUES(21205, 83139, 'eighty-three thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(21206, 33667, 'thirty-three thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(21207, 66932, 'sixty-six thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(21208, 64229, 'sixty-four thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(21209, 63294, 'sixty-three thousand two hundred ninety-four'); INSERT INTO t2 VALUES(21210, 64787, 'sixty-four thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(21211, 13033, 'thirteen thousand thirty-three'); INSERT INTO t2 VALUES(21212, 65534, 'sixty-five thousand five hundred thirty-four'); INSERT INTO t2 VALUES(21213, 15872, 'fifteen thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(21214, 60988, 'sixty thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(21215, 41443, 'forty-one thousand four hundred forty-three'); INSERT INTO t2 VALUES(21216, 77748, 'seventy-seven thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(21217, 18982, 'eighteen thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(21218, 88649, 'eighty-eight thousand six hundred forty-nine'); INSERT INTO t2 VALUES(21219, 34980, 'thirty-four thousand nine hundred eighty'); INSERT INTO t2 VALUES(21220, 89340, 'eighty-nine thousand three hundred forty'); INSERT INTO t2 VALUES(21221, 38330, 'thirty-eight thousand three hundred thirty'); INSERT INTO t2 VALUES(21222, 69647, 'sixty-nine thousand six hundred forty-seven'); INSERT INTO t2 VALUES(21223, 74253, 'seventy-four thousand two hundred fifty-three'); INSERT INTO t2 VALUES(21224, 86753, 'eighty-six thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(21225, 75315, 'seventy-five thousand three hundred fifteen'); INSERT INTO t2 VALUES(21226, 84576, 'eighty-four thousand five hundred seventy-six'); INSERT INTO t2 VALUES(21227, 38737, 'thirty-eight thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(21228, 28108, 'twenty-eight thousand one hundred eight'); INSERT INTO t2 VALUES(21229, 74630, 'seventy-four thousand six hundred thirty'); INSERT INTO t2 VALUES(21230, 69834, 'sixty-nine thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(21231, 42819, 'forty-two thousand eight hundred nineteen'); INSERT INTO t2 VALUES(21232, 95634, 'ninety-five thousand six hundred thirty-four'); INSERT INTO t2 VALUES(21233, 17095, 'seventeen thousand ninety-five'); INSERT INTO t2 VALUES(21234, 29655, 'twenty-nine thousand six hundred fifty-five'); INSERT INTO t2 VALUES(21235, 97871, 'ninety-seven thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(21236, 98896, 'ninety-eight thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(21237, 53044, 'fifty-three thousand forty-four'); INSERT INTO t2 VALUES(21238, 37909, 'thirty-seven thousand nine hundred nine'); INSERT INTO t2 VALUES(21239, 4426, 'four thousand four hundred twenty-six'); INSERT INTO t2 VALUES(21240, 87378, 'eighty-seven thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(21241, 9786, 'nine thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(21242, 81767, 'eighty-one thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(21243, 58327, 'fifty-eight thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(21244, 33417, 'thirty-three thousand four hundred seventeen'); INSERT INTO t2 VALUES(21245, 4418, 'four thousand four hundred eighteen'); INSERT INTO t2 VALUES(21246, 82809, 'eighty-two thousand eight hundred nine'); INSERT INTO t2 VALUES(21247, 52214, 'fifty-two thousand two hundred fourteen'); INSERT INTO t2 VALUES(21248, 43581, 'forty-three thousand five hundred eighty-one'); INSERT INTO t2 VALUES(21249, 6297, 'six thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(21250, 53086, 'fifty-three thousand eighty-six'); INSERT INTO t2 VALUES(21251, 58003, 'fifty-eight thousand three'); INSERT INTO t2 VALUES(21252, 29632, 'twenty-nine thousand six hundred thirty-two'); INSERT INTO t2 VALUES(21253, 17891, 'seventeen thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(21254, 19034, 'nineteen thousand thirty-four'); INSERT INTO t2 VALUES(21255, 9848, 'nine thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(21256, 64871, 'sixty-four thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(21257, 9277, 'nine thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(21258, 10050, 'ten thousand fifty'); INSERT INTO t2 VALUES(21259, 1699, 'one thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(21260, 55181, 'fifty-five thousand one hundred eighty-one'); INSERT INTO t2 VALUES(21261, 25210, 'twenty-five thousand two hundred ten'); INSERT INTO t2 VALUES(21262, 56763, 'fifty-six thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(21263, 28872, 'twenty-eight thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(21264, 54701, 'fifty-four thousand seven hundred one'); INSERT INTO t2 VALUES(21265, 1772, 'one thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(21266, 59133, 'fifty-nine thousand one hundred thirty-three'); INSERT INTO t2 VALUES(21267, 33068, 'thirty-three thousand sixty-eight'); INSERT INTO t2 VALUES(21268, 70074, 'seventy thousand seventy-four'); INSERT INTO t2 VALUES(21269, 11454, 'eleven thousand four hundred fifty-four'); INSERT INTO t2 VALUES(21270, 37929, 'thirty-seven thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(21271, 36406, 'thirty-six thousand four hundred six'); INSERT INTO t2 VALUES(21272, 16624, 'sixteen thousand six hundred twenty-four'); INSERT INTO t2 VALUES(21273, 31066, 'thirty-one thousand sixty-six'); INSERT INTO t2 VALUES(21274, 77724, 'seventy-seven thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(21275, 92829, 'ninety-two thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(21276, 40185, 'forty thousand one hundred eighty-five'); INSERT INTO t2 VALUES(21277, 98611, 'ninety-eight thousand six hundred eleven'); INSERT INTO t2 VALUES(21278, 10970, 'ten thousand nine hundred seventy'); INSERT INTO t2 VALUES(21279, 56091, 'fifty-six thousand ninety-one'); INSERT INTO t2 VALUES(21280, 64390, 'sixty-four thousand three hundred ninety'); INSERT INTO t2 VALUES(21281, 15563, 'fifteen thousand five hundred sixty-three'); INSERT INTO t2 VALUES(21282, 64571, 'sixty-four thousand five hundred seventy-one'); INSERT INTO t2 VALUES(21283, 46171, 'forty-six thousand one hundred seventy-one'); INSERT INTO t2 VALUES(21284, 86247, 'eighty-six thousand two hundred forty-seven'); INSERT INTO t2 VALUES(21285, 44435, 'forty-four thousand four hundred thirty-five'); INSERT INTO t2 VALUES(21286, 55059, 'fifty-five thousand fifty-nine'); INSERT INTO t2 VALUES(21287, 22013, 'twenty-two thousand thirteen'); INSERT INTO t2 VALUES(21288, 41647, 'forty-one thousand six hundred forty-seven'); INSERT INTO t2 VALUES(21289, 16025, 'sixteen thousand twenty-five'); INSERT INTO t2 VALUES(21290, 55038, 'fifty-five thousand thirty-eight'); INSERT INTO t2 VALUES(21291, 25601, 'twenty-five thousand six hundred one'); INSERT INTO t2 VALUES(21292, 90923, 'ninety thousand nine hundred twenty-three'); INSERT INTO t2 VALUES(21293, 242, 'two hundred forty-two'); INSERT INTO t2 VALUES(21294, 15322, 'fifteen thousand three hundred twenty-two'); INSERT INTO t2 VALUES(21295, 22266, 'twenty-two thousand two hundred sixty-six'); INSERT INTO t2 VALUES(21296, 75970, 'seventy-five thousand nine hundred seventy'); INSERT INTO t2 VALUES(21297, 63345, 'sixty-three thousand three hundred forty-five'); INSERT INTO t2 VALUES(21298, 47058, 'forty-seven thousand fifty-eight'); INSERT INTO t2 VALUES(21299, 70461, 'seventy thousand four hundred sixty-one'); INSERT INTO t2 VALUES(21300, 62271, 'sixty-two thousand two hundred seventy-one'); INSERT INTO t2 VALUES(21301, 10355, 'ten thousand three hundred fifty-five'); INSERT INTO t2 VALUES(21302, 43830, 'forty-three thousand eight hundred thirty'); INSERT INTO t2 VALUES(21303, 55963, 'fifty-five thousand nine hundred sixty-three'); INSERT INTO t2 VALUES(21304, 44179, 'forty-four thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(21305, 70526, 'seventy thousand five hundred twenty-six'); INSERT INTO t2 VALUES(21306, 66918, 'sixty-six thousand nine hundred eighteen'); INSERT INTO t2 VALUES(21307, 74563, 'seventy-four thousand five hundred sixty-three'); INSERT INTO t2 VALUES(21308, 55721, 'fifty-five thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(21309, 80998, 'eighty thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(21310, 75092, 'seventy-five thousand ninety-two'); INSERT INTO t2 VALUES(21311, 63547, 'sixty-three thousand five hundred forty-seven'); INSERT INTO t2 VALUES(21312, 42808, 'forty-two thousand eight hundred eight'); INSERT INTO t2 VALUES(21313, 51127, 'fifty-one thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(21314, 57628, 'fifty-seven thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(21315, 5571, 'five thousand five hundred seventy-one'); INSERT INTO t2 VALUES(21316, 34951, 'thirty-four thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(21317, 49653, 'forty-nine thousand six hundred fifty-three'); INSERT INTO t2 VALUES(21318, 9291, 'nine thousand two hundred ninety-one'); INSERT INTO t2 VALUES(21319, 4081, 'four thousand eighty-one'); INSERT INTO t2 VALUES(21320, 19663, 'nineteen thousand six hundred sixty-three'); INSERT INTO t2 VALUES(21321, 48925, 'forty-eight thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(21322, 79509, 'seventy-nine thousand five hundred nine'); INSERT INTO t2 VALUES(21323, 79806, 'seventy-nine thousand eight hundred six'); INSERT INTO t2 VALUES(21324, 78767, 'seventy-eight thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(21325, 84902, 'eighty-four thousand nine hundred two'); INSERT INTO t2 VALUES(21326, 99888, 'ninety-nine thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(21327, 3522, 'three thousand five hundred twenty-two'); INSERT INTO t2 VALUES(21328, 21109, 'twenty-one thousand one hundred nine'); INSERT INTO t2 VALUES(21329, 98058, 'ninety-eight thousand fifty-eight'); INSERT INTO t2 VALUES(21330, 54186, 'fifty-four thousand one hundred eighty-six'); INSERT INTO t2 VALUES(21331, 39741, 'thirty-nine thousand seven hundred forty-one'); INSERT INTO t2 VALUES(21332, 43235, 'forty-three thousand two hundred thirty-five'); INSERT INTO t2 VALUES(21333, 19156, 'nineteen thousand one hundred fifty-six'); INSERT INTO t2 VALUES(21334, 10510, 'ten thousand five hundred ten'); INSERT INTO t2 VALUES(21335, 31643, 'thirty-one thousand six hundred forty-three'); INSERT INTO t2 VALUES(21336, 9566, 'nine thousand five hundred sixty-six'); INSERT INTO t2 VALUES(21337, 50288, 'fifty thousand two hundred eighty-eight'); INSERT INTO t2 VALUES(21338, 28715, 'twenty-eight thousand seven hundred fifteen'); INSERT INTO t2 VALUES(21339, 84507, 'eighty-four thousand five hundred seven'); INSERT INTO t2 VALUES(21340, 45444, 'forty-five thousand four hundred forty-four'); INSERT INTO t2 VALUES(21341, 21281, 'twenty-one thousand two hundred eighty-one'); INSERT INTO t2 VALUES(21342, 24159, 'twenty-four thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(21343, 5508, 'five thousand five hundred eight'); INSERT INTO t2 VALUES(21344, 58175, 'fifty-eight thousand one hundred seventy-five'); INSERT INTO t2 VALUES(21345, 48224, 'forty-eight thousand two hundred twenty-four'); INSERT INTO t2 VALUES(21346, 13788, 'thirteen thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(21347, 68088, 'sixty-eight thousand eighty-eight'); INSERT INTO t2 VALUES(21348, 71271, 'seventy-one thousand two hundred seventy-one'); INSERT INTO t2 VALUES(21349, 20924, 'twenty thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(21350, 74144, 'seventy-four thousand one hundred forty-four'); INSERT INTO t2 VALUES(21351, 67743, 'sixty-seven thousand seven hundred forty-three'); INSERT INTO t2 VALUES(21352, 26943, 'twenty-six thousand nine hundred forty-three'); INSERT INTO t2 VALUES(21353, 87055, 'eighty-seven thousand fifty-five'); INSERT INTO t2 VALUES(21354, 59757, 'fifty-nine thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(21355, 7255, 'seven thousand two hundred fifty-five'); INSERT INTO t2 VALUES(21356, 47065, 'forty-seven thousand sixty-five'); INSERT INTO t2 VALUES(21357, 45059, 'forty-five thousand fifty-nine'); INSERT INTO t2 VALUES(21358, 58405, 'fifty-eight thousand four hundred five'); INSERT INTO t2 VALUES(21359, 71883, 'seventy-one thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(21360, 36248, 'thirty-six thousand two hundred forty-eight'); INSERT INTO t2 VALUES(21361, 27295, 'twenty-seven thousand two hundred ninety-five'); INSERT INTO t2 VALUES(21362, 28052, 'twenty-eight thousand fifty-two'); INSERT INTO t2 VALUES(21363, 3389, 'three thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(21364, 12103, 'twelve thousand one hundred three'); INSERT INTO t2 VALUES(21365, 60780, 'sixty thousand seven hundred eighty'); INSERT INTO t2 VALUES(21366, 25568, 'twenty-five thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(21367, 55703, 'fifty-five thousand seven hundred three'); INSERT INTO t2 VALUES(21368, 40029, 'forty thousand twenty-nine'); INSERT INTO t2 VALUES(21369, 94415, 'ninety-four thousand four hundred fifteen'); INSERT INTO t2 VALUES(21370, 35220, 'thirty-five thousand two hundred twenty'); INSERT INTO t2 VALUES(21371, 93551, 'ninety-three thousand five hundred fifty-one'); INSERT INTO t2 VALUES(21372, 84038, 'eighty-four thousand thirty-eight'); INSERT INTO t2 VALUES(21373, 69803, 'sixty-nine thousand eight hundred three'); INSERT INTO t2 VALUES(21374, 951, 'nine hundred fifty-one'); INSERT INTO t2 VALUES(21375, 61826, 'sixty-one thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(21376, 72289, 'seventy-two thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(21377, 84471, 'eighty-four thousand four hundred seventy-one'); INSERT INTO t2 VALUES(21378, 92601, 'ninety-two thousand six hundred one'); INSERT INTO t2 VALUES(21379, 67244, 'sixty-seven thousand two hundred forty-four'); INSERT INTO t2 VALUES(21380, 42765, 'forty-two thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(21381, 66064, 'sixty-six thousand sixty-four'); INSERT INTO t2 VALUES(21382, 22320, 'twenty-two thousand three hundred twenty'); INSERT INTO t2 VALUES(21383, 18236, 'eighteen thousand two hundred thirty-six'); INSERT INTO t2 VALUES(21384, 91917, 'ninety-one thousand nine hundred seventeen'); INSERT INTO t2 VALUES(21385, 2662, 'two thousand six hundred sixty-two'); INSERT INTO t2 VALUES(21386, 37101, 'thirty-seven thousand one hundred one'); INSERT INTO t2 VALUES(21387, 66798, 'sixty-six thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(21388, 76035, 'seventy-six thousand thirty-five'); INSERT INTO t2 VALUES(21389, 2521, 'two thousand five hundred twenty-one'); INSERT INTO t2 VALUES(21390, 97257, 'ninety-seven thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(21391, 40530, 'forty thousand five hundred thirty'); INSERT INTO t2 VALUES(21392, 14260, 'fourteen thousand two hundred sixty'); INSERT INTO t2 VALUES(21393, 16119, 'sixteen thousand one hundred nineteen'); INSERT INTO t2 VALUES(21394, 36036, 'thirty-six thousand thirty-six'); INSERT INTO t2 VALUES(21395, 41565, 'forty-one thousand five hundred sixty-five'); INSERT INTO t2 VALUES(21396, 37810, 'thirty-seven thousand eight hundred ten'); INSERT INTO t2 VALUES(21397, 50550, 'fifty thousand five hundred fifty'); INSERT INTO t2 VALUES(21398, 49577, 'forty-nine thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(21399, 27680, 'twenty-seven thousand six hundred eighty'); INSERT INTO t2 VALUES(21400, 10926, 'ten thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(21401, 45283, 'forty-five thousand two hundred eighty-three'); INSERT INTO t2 VALUES(21402, 68537, 'sixty-eight thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(21403, 26617, 'twenty-six thousand six hundred seventeen'); INSERT INTO t2 VALUES(21404, 18740, 'eighteen thousand seven hundred forty'); INSERT INTO t2 VALUES(21405, 42463, 'forty-two thousand four hundred sixty-three'); INSERT INTO t2 VALUES(21406, 12532, 'twelve thousand five hundred thirty-two'); INSERT INTO t2 VALUES(21407, 80124, 'eighty thousand one hundred twenty-four'); INSERT INTO t2 VALUES(21408, 19826, 'nineteen thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(21409, 69897, 'sixty-nine thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(21410, 78470, 'seventy-eight thousand four hundred seventy'); INSERT INTO t2 VALUES(21411, 56030, 'fifty-six thousand thirty'); INSERT INTO t2 VALUES(21412, 83918, 'eighty-three thousand nine hundred eighteen'); INSERT INTO t2 VALUES(21413, 75789, 'seventy-five thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(21414, 1233, 'one thousand two hundred thirty-three'); INSERT INTO t2 VALUES(21415, 5891, 'five thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(21416, 46630, 'forty-six thousand six hundred thirty'); INSERT INTO t2 VALUES(21417, 23254, 'twenty-three thousand two hundred fifty-four'); INSERT INTO t2 VALUES(21418, 48640, 'forty-eight thousand six hundred forty'); INSERT INTO t2 VALUES(21419, 86325, 'eighty-six thousand three hundred twenty-five'); INSERT INTO t2 VALUES(21420, 82811, 'eighty-two thousand eight hundred eleven'); INSERT INTO t2 VALUES(21421, 71513, 'seventy-one thousand five hundred thirteen'); INSERT INTO t2 VALUES(21422, 1958, 'one thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(21423, 77865, 'seventy-seven thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(21424, 9870, 'nine thousand eight hundred seventy'); INSERT INTO t2 VALUES(21425, 10100, 'ten thousand one hundred'); INSERT INTO t2 VALUES(21426, 51703, 'fifty-one thousand seven hundred three'); INSERT INTO t2 VALUES(21427, 9168, 'nine thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(21428, 9365, 'nine thousand three hundred sixty-five'); INSERT INTO t2 VALUES(21429, 62112, 'sixty-two thousand one hundred twelve'); INSERT INTO t2 VALUES(21430, 79294, 'seventy-nine thousand two hundred ninety-four'); INSERT INTO t2 VALUES(21431, 30245, 'thirty thousand two hundred forty-five'); INSERT INTO t2 VALUES(21432, 95801, 'ninety-five thousand eight hundred one'); INSERT INTO t2 VALUES(21433, 28917, 'twenty-eight thousand nine hundred seventeen'); INSERT INTO t2 VALUES(21434, 17123, 'seventeen thousand one hundred twenty-three'); INSERT INTO t2 VALUES(21435, 25328, 'twenty-five thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(21436, 32028, 'thirty-two thousand twenty-eight'); INSERT INTO t2 VALUES(21437, 16943, 'sixteen thousand nine hundred forty-three'); INSERT INTO t2 VALUES(21438, 81412, 'eighty-one thousand four hundred twelve'); INSERT INTO t2 VALUES(21439, 79792, 'seventy-nine thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(21440, 83297, 'eighty-three thousand two hundred ninety-seven'); INSERT INTO t2 VALUES(21441, 43353, 'forty-three thousand three hundred fifty-three'); INSERT INTO t2 VALUES(21442, 83353, 'eighty-three thousand three hundred fifty-three'); INSERT INTO t2 VALUES(21443, 89275, 'eighty-nine thousand two hundred seventy-five'); INSERT INTO t2 VALUES(21444, 64523, 'sixty-four thousand five hundred twenty-three'); INSERT INTO t2 VALUES(21445, 23035, 'twenty-three thousand thirty-five'); INSERT INTO t2 VALUES(21446, 81500, 'eighty-one thousand five hundred'); INSERT INTO t2 VALUES(21447, 55266, 'fifty-five thousand two hundred sixty-six'); INSERT INTO t2 VALUES(21448, 31283, 'thirty-one thousand two hundred eighty-three'); INSERT INTO t2 VALUES(21449, 89949, 'eighty-nine thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(21450, 41992, 'forty-one thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(21451, 72819, 'seventy-two thousand eight hundred nineteen'); INSERT INTO t2 VALUES(21452, 39944, 'thirty-nine thousand nine hundred forty-four'); INSERT INTO t2 VALUES(21453, 45443, 'forty-five thousand four hundred forty-three'); INSERT INTO t2 VALUES(21454, 34981, 'thirty-four thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(21455, 76882, 'seventy-six thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(21456, 90010, 'ninety thousand ten'); INSERT INTO t2 VALUES(21457, 10649, 'ten thousand six hundred forty-nine'); INSERT INTO t2 VALUES(21458, 45460, 'forty-five thousand four hundred sixty'); INSERT INTO t2 VALUES(21459, 75712, 'seventy-five thousand seven hundred twelve'); INSERT INTO t2 VALUES(21460, 30529, 'thirty thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(21461, 34720, 'thirty-four thousand seven hundred twenty'); INSERT INTO t2 VALUES(21462, 99946, 'ninety-nine thousand nine hundred forty-six'); INSERT INTO t2 VALUES(21463, 6187, 'six thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(21464, 35559, 'thirty-five thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(21465, 77222, 'seventy-seven thousand two hundred twenty-two'); INSERT INTO t2 VALUES(21466, 64109, 'sixty-four thousand one hundred nine'); INSERT INTO t2 VALUES(21467, 87951, 'eighty-seven thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(21468, 29678, 'twenty-nine thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(21469, 81420, 'eighty-one thousand four hundred twenty'); INSERT INTO t2 VALUES(21470, 16756, 'sixteen thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(21471, 60707, 'sixty thousand seven hundred seven'); INSERT INTO t2 VALUES(21472, 71565, 'seventy-one thousand five hundred sixty-five'); INSERT INTO t2 VALUES(21473, 57669, 'fifty-seven thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(21474, 25236, 'twenty-five thousand two hundred thirty-six'); INSERT INTO t2 VALUES(21475, 73592, 'seventy-three thousand five hundred ninety-two'); INSERT INTO t2 VALUES(21476, 45065, 'forty-five thousand sixty-five'); INSERT INTO t2 VALUES(21477, 77407, 'seventy-seven thousand four hundred seven'); INSERT INTO t2 VALUES(21478, 18740, 'eighteen thousand seven hundred forty'); INSERT INTO t2 VALUES(21479, 33472, 'thirty-three thousand four hundred seventy-two'); INSERT INTO t2 VALUES(21480, 6584, 'six thousand five hundred eighty-four'); INSERT INTO t2 VALUES(21481, 43009, 'forty-three thousand nine'); INSERT INTO t2 VALUES(21482, 12734, 'twelve thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(21483, 93723, 'ninety-three thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(21484, 69125, 'sixty-nine thousand one hundred twenty-five'); INSERT INTO t2 VALUES(21485, 88676, 'eighty-eight thousand six hundred seventy-six'); INSERT INTO t2 VALUES(21486, 86508, 'eighty-six thousand five hundred eight'); INSERT INTO t2 VALUES(21487, 88232, 'eighty-eight thousand two hundred thirty-two'); INSERT INTO t2 VALUES(21488, 38620, 'thirty-eight thousand six hundred twenty'); INSERT INTO t2 VALUES(21489, 93937, 'ninety-three thousand nine hundred thirty-seven'); INSERT INTO t2 VALUES(21490, 58918, 'fifty-eight thousand nine hundred eighteen'); INSERT INTO t2 VALUES(21491, 76830, 'seventy-six thousand eight hundred thirty'); INSERT INTO t2 VALUES(21492, 57407, 'fifty-seven thousand four hundred seven'); INSERT INTO t2 VALUES(21493, 66109, 'sixty-six thousand one hundred nine'); INSERT INTO t2 VALUES(21494, 91703, 'ninety-one thousand seven hundred three'); INSERT INTO t2 VALUES(21495, 57177, 'fifty-seven thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(21496, 67011, 'sixty-seven thousand eleven'); INSERT INTO t2 VALUES(21497, 84999, 'eighty-four thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(21498, 89840, 'eighty-nine thousand eight hundred forty'); INSERT INTO t2 VALUES(21499, 6576, 'six thousand five hundred seventy-six'); INSERT INTO t2 VALUES(21500, 43553, 'forty-three thousand five hundred fifty-three'); INSERT INTO t2 VALUES(21501, 43230, 'forty-three thousand two hundred thirty'); INSERT INTO t2 VALUES(21502, 96068, 'ninety-six thousand sixty-eight'); INSERT INTO t2 VALUES(21503, 30703, 'thirty thousand seven hundred three'); INSERT INTO t2 VALUES(21504, 32280, 'thirty-two thousand two hundred eighty'); INSERT INTO t2 VALUES(21505, 33298, 'thirty-three thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(21506, 116, 'one hundred sixteen'); INSERT INTO t2 VALUES(21507, 27980, 'twenty-seven thousand nine hundred eighty'); INSERT INTO t2 VALUES(21508, 88998, 'eighty-eight thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(21509, 6671, 'six thousand six hundred seventy-one'); INSERT INTO t2 VALUES(21510, 77334, 'seventy-seven thousand three hundred thirty-four'); INSERT INTO t2 VALUES(21511, 52785, 'fifty-two thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(21512, 98105, 'ninety-eight thousand one hundred five'); INSERT INTO t2 VALUES(21513, 69644, 'sixty-nine thousand six hundred forty-four'); INSERT INTO t2 VALUES(21514, 74249, 'seventy-four thousand two hundred forty-nine'); INSERT INTO t2 VALUES(21515, 16255, 'sixteen thousand two hundred fifty-five'); INSERT INTO t2 VALUES(21516, 52519, 'fifty-two thousand five hundred nineteen'); INSERT INTO t2 VALUES(21517, 46078, 'forty-six thousand seventy-eight'); INSERT INTO t2 VALUES(21518, 5927, 'five thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(21519, 22752, 'twenty-two thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(21520, 10649, 'ten thousand six hundred forty-nine'); INSERT INTO t2 VALUES(21521, 63954, 'sixty-three thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(21522, 4592, 'four thousand five hundred ninety-two'); INSERT INTO t2 VALUES(21523, 49700, 'forty-nine thousand seven hundred'); INSERT INTO t2 VALUES(21524, 55095, 'fifty-five thousand ninety-five'); INSERT INTO t2 VALUES(21525, 38976, 'thirty-eight thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(21526, 94723, 'ninety-four thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(21527, 408, 'four hundred eight'); INSERT INTO t2 VALUES(21528, 38388, 'thirty-eight thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(21529, 47010, 'forty-seven thousand ten'); INSERT INTO t2 VALUES(21530, 84061, 'eighty-four thousand sixty-one'); INSERT INTO t2 VALUES(21531, 74309, 'seventy-four thousand three hundred nine'); INSERT INTO t2 VALUES(21532, 56711, 'fifty-six thousand seven hundred eleven'); INSERT INTO t2 VALUES(21533, 66772, 'sixty-six thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(21534, 44829, 'forty-four thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(21535, 8300, 'eight thousand three hundred'); INSERT INTO t2 VALUES(21536, 95808, 'ninety-five thousand eight hundred eight'); INSERT INTO t2 VALUES(21537, 20464, 'twenty thousand four hundred sixty-four'); INSERT INTO t2 VALUES(21538, 27975, 'twenty-seven thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(21539, 76707, 'seventy-six thousand seven hundred seven'); INSERT INTO t2 VALUES(21540, 35786, 'thirty-five thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(21541, 35084, 'thirty-five thousand eighty-four'); INSERT INTO t2 VALUES(21542, 54583, 'fifty-four thousand five hundred eighty-three'); INSERT INTO t2 VALUES(21543, 69139, 'sixty-nine thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(21544, 96266, 'ninety-six thousand two hundred sixty-six'); INSERT INTO t2 VALUES(21545, 35711, 'thirty-five thousand seven hundred eleven'); INSERT INTO t2 VALUES(21546, 89930, 'eighty-nine thousand nine hundred thirty'); INSERT INTO t2 VALUES(21547, 60631, 'sixty thousand six hundred thirty-one'); INSERT INTO t2 VALUES(21548, 24819, 'twenty-four thousand eight hundred nineteen'); INSERT INTO t2 VALUES(21549, 54954, 'fifty-four thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(21550, 6180, 'six thousand one hundred eighty'); INSERT INTO t2 VALUES(21551, 47423, 'forty-seven thousand four hundred twenty-three'); INSERT INTO t2 VALUES(21552, 85461, 'eighty-five thousand four hundred sixty-one'); INSERT INTO t2 VALUES(21553, 24326, 'twenty-four thousand three hundred twenty-six'); INSERT INTO t2 VALUES(21554, 68429, 'sixty-eight thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(21555, 36851, 'thirty-six thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(21556, 43300, 'forty-three thousand three hundred'); INSERT INTO t2 VALUES(21557, 24218, 'twenty-four thousand two hundred eighteen'); INSERT INTO t2 VALUES(21558, 42179, 'forty-two thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(21559, 10842, 'ten thousand eight hundred forty-two'); INSERT INTO t2 VALUES(21560, 60317, 'sixty thousand three hundred seventeen'); INSERT INTO t2 VALUES(21561, 71231, 'seventy-one thousand two hundred thirty-one'); INSERT INTO t2 VALUES(21562, 96755, 'ninety-six thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(21563, 12073, 'twelve thousand seventy-three'); INSERT INTO t2 VALUES(21564, 21163, 'twenty-one thousand one hundred sixty-three'); INSERT INTO t2 VALUES(21565, 75360, 'seventy-five thousand three hundred sixty'); INSERT INTO t2 VALUES(21566, 51552, 'fifty-one thousand five hundred fifty-two'); INSERT INTO t2 VALUES(21567, 36510, 'thirty-six thousand five hundred ten'); INSERT INTO t2 VALUES(21568, 37249, 'thirty-seven thousand two hundred forty-nine'); INSERT INTO t2 VALUES(21569, 63270, 'sixty-three thousand two hundred seventy'); INSERT INTO t2 VALUES(21570, 16033, 'sixteen thousand thirty-three'); INSERT INTO t2 VALUES(21571, 7032, 'seven thousand thirty-two'); INSERT INTO t2 VALUES(21572, 92291, 'ninety-two thousand two hundred ninety-one'); INSERT INTO t2 VALUES(21573, 56017, 'fifty-six thousand seventeen'); INSERT INTO t2 VALUES(21574, 4585, 'four thousand five hundred eighty-five'); INSERT INTO t2 VALUES(21575, 56625, 'fifty-six thousand six hundred twenty-five'); INSERT INTO t2 VALUES(21576, 6612, 'six thousand six hundred twelve'); INSERT INTO t2 VALUES(21577, 47209, 'forty-seven thousand two hundred nine'); INSERT INTO t2 VALUES(21578, 14142, 'fourteen thousand one hundred forty-two'); INSERT INTO t2 VALUES(21579, 51063, 'fifty-one thousand sixty-three'); INSERT INTO t2 VALUES(21580, 24900, 'twenty-four thousand nine hundred'); INSERT INTO t2 VALUES(21581, 39629, 'thirty-nine thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(21582, 72295, 'seventy-two thousand two hundred ninety-five'); INSERT INTO t2 VALUES(21583, 98051, 'ninety-eight thousand fifty-one'); INSERT INTO t2 VALUES(21584, 71596, 'seventy-one thousand five hundred ninety-six'); INSERT INTO t2 VALUES(21585, 23687, 'twenty-three thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(21586, 34442, 'thirty-four thousand four hundred forty-two'); INSERT INTO t2 VALUES(21587, 18350, 'eighteen thousand three hundred fifty'); INSERT INTO t2 VALUES(21588, 72191, 'seventy-two thousand one hundred ninety-one'); INSERT INTO t2 VALUES(21589, 91121, 'ninety-one thousand one hundred twenty-one'); INSERT INTO t2 VALUES(21590, 3782, 'three thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(21591, 59975, 'fifty-nine thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(21592, 27149, 'twenty-seven thousand one hundred forty-nine'); INSERT INTO t2 VALUES(21593, 67852, 'sixty-seven thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(21594, 43474, 'forty-three thousand four hundred seventy-four'); INSERT INTO t2 VALUES(21595, 51697, 'fifty-one thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(21596, 20393, 'twenty thousand three hundred ninety-three'); INSERT INTO t2 VALUES(21597, 83618, 'eighty-three thousand six hundred eighteen'); INSERT INTO t2 VALUES(21598, 38053, 'thirty-eight thousand fifty-three'); INSERT INTO t2 VALUES(21599, 45218, 'forty-five thousand two hundred eighteen'); INSERT INTO t2 VALUES(21600, 74579, 'seventy-four thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(21601, 31325, 'thirty-one thousand three hundred twenty-five'); INSERT INTO t2 VALUES(21602, 33140, 'thirty-three thousand one hundred forty'); INSERT INTO t2 VALUES(21603, 41784, 'forty-one thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(21604, 53609, 'fifty-three thousand six hundred nine'); INSERT INTO t2 VALUES(21605, 74438, 'seventy-four thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(21606, 56396, 'fifty-six thousand three hundred ninety-six'); INSERT INTO t2 VALUES(21607, 37728, 'thirty-seven thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(21608, 63645, 'sixty-three thousand six hundred forty-five'); INSERT INTO t2 VALUES(21609, 44882, 'forty-four thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(21610, 97523, 'ninety-seven thousand five hundred twenty-three'); INSERT INTO t2 VALUES(21611, 45885, 'forty-five thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(21612, 56069, 'fifty-six thousand sixty-nine'); INSERT INTO t2 VALUES(21613, 30273, 'thirty thousand two hundred seventy-three'); INSERT INTO t2 VALUES(21614, 36231, 'thirty-six thousand two hundred thirty-one'); INSERT INTO t2 VALUES(21615, 70235, 'seventy thousand two hundred thirty-five'); INSERT INTO t2 VALUES(21616, 19374, 'nineteen thousand three hundred seventy-four'); INSERT INTO t2 VALUES(21617, 48150, 'forty-eight thousand one hundred fifty'); INSERT INTO t2 VALUES(21618, 86039, 'eighty-six thousand thirty-nine'); INSERT INTO t2 VALUES(21619, 33692, 'thirty-three thousand six hundred ninety-two'); INSERT INTO t2 VALUES(21620, 18126, 'eighteen thousand one hundred twenty-six'); INSERT INTO t2 VALUES(21621, 9590, 'nine thousand five hundred ninety'); INSERT INTO t2 VALUES(21622, 52473, 'fifty-two thousand four hundred seventy-three'); INSERT INTO t2 VALUES(21623, 88196, 'eighty-eight thousand one hundred ninety-six'); INSERT INTO t2 VALUES(21624, 72036, 'seventy-two thousand thirty-six'); INSERT INTO t2 VALUES(21625, 6648, 'six thousand six hundred forty-eight'); INSERT INTO t2 VALUES(21626, 22042, 'twenty-two thousand forty-two'); INSERT INTO t2 VALUES(21627, 55284, 'fifty-five thousand two hundred eighty-four'); INSERT INTO t2 VALUES(21628, 58590, 'fifty-eight thousand five hundred ninety'); INSERT INTO t2 VALUES(21629, 75661, 'seventy-five thousand six hundred sixty-one'); INSERT INTO t2 VALUES(21630, 19633, 'nineteen thousand six hundred thirty-three'); INSERT INTO t2 VALUES(21631, 93634, 'ninety-three thousand six hundred thirty-four'); INSERT INTO t2 VALUES(21632, 5846, 'five thousand eight hundred forty-six'); INSERT INTO t2 VALUES(21633, 63757, 'sixty-three thousand seven hundred fifty-seven'); INSERT INTO t2 VALUES(21634, 19301, 'nineteen thousand three hundred one'); INSERT INTO t2 VALUES(21635, 23088, 'twenty-three thousand eighty-eight'); INSERT INTO t2 VALUES(21636, 21377, 'twenty-one thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(21637, 22607, 'twenty-two thousand six hundred seven'); INSERT INTO t2 VALUES(21638, 71996, 'seventy-one thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(21639, 93096, 'ninety-three thousand ninety-six'); INSERT INTO t2 VALUES(21640, 67957, 'sixty-seven thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(21641, 40901, 'forty thousand nine hundred one'); INSERT INTO t2 VALUES(21642, 21383, 'twenty-one thousand three hundred eighty-three'); INSERT INTO t2 VALUES(21643, 38487, 'thirty-eight thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(21644, 11345, 'eleven thousand three hundred forty-five'); INSERT INTO t2 VALUES(21645, 46675, 'forty-six thousand six hundred seventy-five'); INSERT INTO t2 VALUES(21646, 54171, 'fifty-four thousand one hundred seventy-one'); INSERT INTO t2 VALUES(21647, 48164, 'forty-eight thousand one hundred sixty-four'); INSERT INTO t2 VALUES(21648, 82545, 'eighty-two thousand five hundred forty-five'); INSERT INTO t2 VALUES(21649, 76308, 'seventy-six thousand three hundred eight'); INSERT INTO t2 VALUES(21650, 87557, 'eighty-seven thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(21651, 2003, 'two thousand three'); INSERT INTO t2 VALUES(21652, 25270, 'twenty-five thousand two hundred seventy'); INSERT INTO t2 VALUES(21653, 44270, 'forty-four thousand two hundred seventy'); INSERT INTO t2 VALUES(21654, 44094, 'forty-four thousand ninety-four'); INSERT INTO t2 VALUES(21655, 90136, 'ninety thousand one hundred thirty-six'); INSERT INTO t2 VALUES(21656, 23592, 'twenty-three thousand five hundred ninety-two'); INSERT INTO t2 VALUES(21657, 61371, 'sixty-one thousand three hundred seventy-one'); INSERT INTO t2 VALUES(21658, 7358, 'seven thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(21659, 48185, 'forty-eight thousand one hundred eighty-five'); INSERT INTO t2 VALUES(21660, 44888, 'forty-four thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(21661, 98955, 'ninety-eight thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(21662, 79753, 'seventy-nine thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(21663, 56902, 'fifty-six thousand nine hundred two'); INSERT INTO t2 VALUES(21664, 89821, 'eighty-nine thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(21665, 68030, 'sixty-eight thousand thirty'); INSERT INTO t2 VALUES(21666, 11478, 'eleven thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(21667, 27302, 'twenty-seven thousand three hundred two'); INSERT INTO t2 VALUES(21668, 55906, 'fifty-five thousand nine hundred six'); INSERT INTO t2 VALUES(21669, 87981, 'eighty-seven thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(21670, 57950, 'fifty-seven thousand nine hundred fifty'); INSERT INTO t2 VALUES(21671, 97520, 'ninety-seven thousand five hundred twenty'); INSERT INTO t2 VALUES(21672, 6202, 'six thousand two hundred two'); INSERT INTO t2 VALUES(21673, 3889, 'three thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(21674, 3999, 'three thousand nine hundred ninety-nine'); INSERT INTO t2 VALUES(21675, 13411, 'thirteen thousand four hundred eleven'); INSERT INTO t2 VALUES(21676, 93780, 'ninety-three thousand seven hundred eighty'); INSERT INTO t2 VALUES(21677, 49455, 'forty-nine thousand four hundred fifty-five'); INSERT INTO t2 VALUES(21678, 77355, 'seventy-seven thousand three hundred fifty-five'); INSERT INTO t2 VALUES(21679, 7582, 'seven thousand five hundred eighty-two'); INSERT INTO t2 VALUES(21680, 82564, 'eighty-two thousand five hundred sixty-four'); INSERT INTO t2 VALUES(21681, 22752, 'twenty-two thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(21682, 43913, 'forty-three thousand nine hundred thirteen'); INSERT INTO t2 VALUES(21683, 896, 'eight hundred ninety-six'); INSERT INTO t2 VALUES(21684, 17095, 'seventeen thousand ninety-five'); INSERT INTO t2 VALUES(21685, 76382, 'seventy-six thousand three hundred eighty-two'); INSERT INTO t2 VALUES(21686, 57089, 'fifty-seven thousand eighty-nine'); INSERT INTO t2 VALUES(21687, 25359, 'twenty-five thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(21688, 97498, 'ninety-seven thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(21689, 82681, 'eighty-two thousand six hundred eighty-one'); INSERT INTO t2 VALUES(21690, 91903, 'ninety-one thousand nine hundred three'); INSERT INTO t2 VALUES(21691, 53041, 'fifty-three thousand forty-one'); INSERT INTO t2 VALUES(21692, 18997, 'eighteen thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(21693, 11013, 'eleven thousand thirteen'); INSERT INTO t2 VALUES(21694, 90225, 'ninety thousand two hundred twenty-five'); INSERT INTO t2 VALUES(21695, 51074, 'fifty-one thousand seventy-four'); INSERT INTO t2 VALUES(21696, 51715, 'fifty-one thousand seven hundred fifteen'); INSERT INTO t2 VALUES(21697, 95875, 'ninety-five thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(21698, 35354, 'thirty-five thousand three hundred fifty-four'); INSERT INTO t2 VALUES(21699, 76788, 'seventy-six thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(21700, 68918, 'sixty-eight thousand nine hundred eighteen'); INSERT INTO t2 VALUES(21701, 94228, 'ninety-four thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(21702, 59766, 'fifty-nine thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(21703, 33003, 'thirty-three thousand three'); INSERT INTO t2 VALUES(21704, 98826, 'ninety-eight thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(21705, 42836, 'forty-two thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(21706, 8421, 'eight thousand four hundred twenty-one'); INSERT INTO t2 VALUES(21707, 18343, 'eighteen thousand three hundred forty-three'); INSERT INTO t2 VALUES(21708, 31312, 'thirty-one thousand three hundred twelve'); INSERT INTO t2 VALUES(21709, 24263, 'twenty-four thousand two hundred sixty-three'); INSERT INTO t2 VALUES(21710, 6077, 'six thousand seventy-seven'); INSERT INTO t2 VALUES(21711, 85141, 'eighty-five thousand one hundred forty-one'); INSERT INTO t2 VALUES(21712, 93503, 'ninety-three thousand five hundred three'); INSERT INTO t2 VALUES(21713, 27763, 'twenty-seven thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(21714, 59264, 'fifty-nine thousand two hundred sixty-four'); INSERT INTO t2 VALUES(21715, 86597, 'eighty-six thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(21716, 21684, 'twenty-one thousand six hundred eighty-four'); INSERT INTO t2 VALUES(21717, 84336, 'eighty-four thousand three hundred thirty-six'); INSERT INTO t2 VALUES(21718, 39006, 'thirty-nine thousand six'); INSERT INTO t2 VALUES(21719, 75448, 'seventy-five thousand four hundred forty-eight'); INSERT INTO t2 VALUES(21720, 64955, 'sixty-four thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(21721, 80306, 'eighty thousand three hundred six'); INSERT INTO t2 VALUES(21722, 4259, 'four thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(21723, 20127, 'twenty thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(21724, 54455, 'fifty-four thousand four hundred fifty-five'); INSERT INTO t2 VALUES(21725, 53094, 'fifty-three thousand ninety-four'); INSERT INTO t2 VALUES(21726, 44155, 'forty-four thousand one hundred fifty-five'); INSERT INTO t2 VALUES(21727, 55567, 'fifty-five thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(21728, 42008, 'forty-two thousand eight'); INSERT INTO t2 VALUES(21729, 61458, 'sixty-one thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(21730, 62861, 'sixty-two thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(21731, 45073, 'forty-five thousand seventy-three'); INSERT INTO t2 VALUES(21732, 56154, 'fifty-six thousand one hundred fifty-four'); INSERT INTO t2 VALUES(21733, 57795, 'fifty-seven thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(21734, 16759, 'sixteen thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(21735, 81128, 'eighty-one thousand one hundred twenty-eight'); INSERT INTO t2 VALUES(21736, 15609, 'fifteen thousand six hundred nine'); INSERT INTO t2 VALUES(21737, 21224, 'twenty-one thousand two hundred twenty-four'); INSERT INTO t2 VALUES(21738, 70196, 'seventy thousand one hundred ninety-six'); INSERT INTO t2 VALUES(21739, 70886, 'seventy thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(21740, 95113, 'ninety-five thousand one hundred thirteen'); INSERT INTO t2 VALUES(21741, 89945, 'eighty-nine thousand nine hundred forty-five'); INSERT INTO t2 VALUES(21742, 55340, 'fifty-five thousand three hundred forty'); INSERT INTO t2 VALUES(21743, 24318, 'twenty-four thousand three hundred eighteen'); INSERT INTO t2 VALUES(21744, 47877, 'forty-seven thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(21745, 48828, 'forty-eight thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(21746, 58394, 'fifty-eight thousand three hundred ninety-four'); INSERT INTO t2 VALUES(21747, 97857, 'ninety-seven thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(21748, 54130, 'fifty-four thousand one hundred thirty'); INSERT INTO t2 VALUES(21749, 47990, 'forty-seven thousand nine hundred ninety'); INSERT INTO t2 VALUES(21750, 45847, 'forty-five thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(21751, 72573, 'seventy-two thousand five hundred seventy-three'); INSERT INTO t2 VALUES(21752, 6878, 'six thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(21753, 98074, 'ninety-eight thousand seventy-four'); INSERT INTO t2 VALUES(21754, 83681, 'eighty-three thousand six hundred eighty-one'); INSERT INTO t2 VALUES(21755, 37513, 'thirty-seven thousand five hundred thirteen'); INSERT INTO t2 VALUES(21756, 71943, 'seventy-one thousand nine hundred forty-three'); INSERT INTO t2 VALUES(21757, 72246, 'seventy-two thousand two hundred forty-six'); INSERT INTO t2 VALUES(21758, 5865, 'five thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(21759, 78366, 'seventy-eight thousand three hundred sixty-six'); INSERT INTO t2 VALUES(21760, 87169, 'eighty-seven thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(21761, 64368, 'sixty-four thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(21762, 82291, 'eighty-two thousand two hundred ninety-one'); INSERT INTO t2 VALUES(21763, 63016, 'sixty-three thousand sixteen'); INSERT INTO t2 VALUES(21764, 16322, 'sixteen thousand three hundred twenty-two'); INSERT INTO t2 VALUES(21765, 92715, 'ninety-two thousand seven hundred fifteen'); INSERT INTO t2 VALUES(21766, 92702, 'ninety-two thousand seven hundred two'); INSERT INTO t2 VALUES(21767, 71967, 'seventy-one thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(21768, 47045, 'forty-seven thousand forty-five'); INSERT INTO t2 VALUES(21769, 27418, 'twenty-seven thousand four hundred eighteen'); INSERT INTO t2 VALUES(21770, 75177, 'seventy-five thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(21771, 4830, 'four thousand eight hundred thirty'); INSERT INTO t2 VALUES(21772, 88469, 'eighty-eight thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(21773, 59759, 'fifty-nine thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(21774, 34590, 'thirty-four thousand five hundred ninety'); INSERT INTO t2 VALUES(21775, 53479, 'fifty-three thousand four hundred seventy-nine'); INSERT INTO t2 VALUES(21776, 91276, 'ninety-one thousand two hundred seventy-six'); INSERT INTO t2 VALUES(21777, 37153, 'thirty-seven thousand one hundred fifty-three'); INSERT INTO t2 VALUES(21778, 69469, 'sixty-nine thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(21779, 15184, 'fifteen thousand one hundred eighty-four'); INSERT INTO t2 VALUES(21780, 81515, 'eighty-one thousand five hundred fifteen'); INSERT INTO t2 VALUES(21781, 30383, 'thirty thousand three hundred eighty-three'); INSERT INTO t2 VALUES(21782, 29014, 'twenty-nine thousand fourteen'); INSERT INTO t2 VALUES(21783, 30867, 'thirty thousand eight hundred sixty-seven'); INSERT INTO t2 VALUES(21784, 70006, 'seventy thousand six'); INSERT INTO t2 VALUES(21785, 15993, 'fifteen thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(21786, 32971, 'thirty-two thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(21787, 41041, 'forty-one thousand forty-one'); INSERT INTO t2 VALUES(21788, 70971, 'seventy thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(21789, 73748, 'seventy-three thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(21790, 96042, 'ninety-six thousand forty-two'); INSERT INTO t2 VALUES(21791, 42693, 'forty-two thousand six hundred ninety-three'); INSERT INTO t2 VALUES(21792, 45091, 'forty-five thousand ninety-one'); INSERT INTO t2 VALUES(21793, 27338, 'twenty-seven thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(21794, 6813, 'six thousand eight hundred thirteen'); INSERT INTO t2 VALUES(21795, 71006, 'seventy-one thousand six'); INSERT INTO t2 VALUES(21796, 7348, 'seven thousand three hundred forty-eight'); INSERT INTO t2 VALUES(21797, 15337, 'fifteen thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(21798, 15195, 'fifteen thousand one hundred ninety-five'); INSERT INTO t2 VALUES(21799, 2759, 'two thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(21800, 57493, 'fifty-seven thousand four hundred ninety-three'); INSERT INTO t2 VALUES(21801, 51435, 'fifty-one thousand four hundred thirty-five'); INSERT INTO t2 VALUES(21802, 88032, 'eighty-eight thousand thirty-two'); INSERT INTO t2 VALUES(21803, 96420, 'ninety-six thousand four hundred twenty'); INSERT INTO t2 VALUES(21804, 3243, 'three thousand two hundred forty-three'); INSERT INTO t2 VALUES(21805, 15372, 'fifteen thousand three hundred seventy-two'); INSERT INTO t2 VALUES(21806, 30027, 'thirty thousand twenty-seven'); INSERT INTO t2 VALUES(21807, 22357, 'twenty-two thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(21808, 45717, 'forty-five thousand seven hundred seventeen'); INSERT INTO t2 VALUES(21809, 86727, 'eighty-six thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(21810, 31298, 'thirty-one thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(21811, 15970, 'fifteen thousand nine hundred seventy'); INSERT INTO t2 VALUES(21812, 35482, 'thirty-five thousand four hundred eighty-two'); INSERT INTO t2 VALUES(21813, 17327, 'seventeen thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(21814, 83067, 'eighty-three thousand sixty-seven'); INSERT INTO t2 VALUES(21815, 69417, 'sixty-nine thousand four hundred seventeen'); INSERT INTO t2 VALUES(21816, 80719, 'eighty thousand seven hundred nineteen'); INSERT INTO t2 VALUES(21817, 17721, 'seventeen thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(21818, 40205, 'forty thousand two hundred five'); INSERT INTO t2 VALUES(21819, 54727, 'fifty-four thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(21820, 64993, 'sixty-four thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(21821, 52018, 'fifty-two thousand eighteen'); INSERT INTO t2 VALUES(21822, 18158, 'eighteen thousand one hundred fifty-eight'); INSERT INTO t2 VALUES(21823, 10825, 'ten thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(21824, 75146, 'seventy-five thousand one hundred forty-six'); INSERT INTO t2 VALUES(21825, 17154, 'seventeen thousand one hundred fifty-four'); INSERT INTO t2 VALUES(21826, 13380, 'thirteen thousand three hundred eighty'); INSERT INTO t2 VALUES(21827, 65122, 'sixty-five thousand one hundred twenty-two'); INSERT INTO t2 VALUES(21828, 10834, 'ten thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(21829, 84986, 'eighty-four thousand nine hundred eighty-six'); INSERT INTO t2 VALUES(21830, 7418, 'seven thousand four hundred eighteen'); INSERT INTO t2 VALUES(21831, 89234, 'eighty-nine thousand two hundred thirty-four'); INSERT INTO t2 VALUES(21832, 43613, 'forty-three thousand six hundred thirteen'); INSERT INTO t2 VALUES(21833, 10496, 'ten thousand four hundred ninety-six'); INSERT INTO t2 VALUES(21834, 71044, 'seventy-one thousand forty-four'); INSERT INTO t2 VALUES(21835, 8959, 'eight thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(21836, 66992, 'sixty-six thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(21837, 95021, 'ninety-five thousand twenty-one'); INSERT INTO t2 VALUES(21838, 47158, 'forty-seven thousand one hundred fifty-eight'); INSERT INTO t2 VALUES(21839, 7794, 'seven thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(21840, 90488, 'ninety thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(21841, 71718, 'seventy-one thousand seven hundred eighteen'); INSERT INTO t2 VALUES(21842, 44411, 'forty-four thousand four hundred eleven'); INSERT INTO t2 VALUES(21843, 6845, 'six thousand eight hundred forty-five'); INSERT INTO t2 VALUES(21844, 50752, 'fifty thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(21845, 51346, 'fifty-one thousand three hundred forty-six'); INSERT INTO t2 VALUES(21846, 29765, 'twenty-nine thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(21847, 10943, 'ten thousand nine hundred forty-three'); INSERT INTO t2 VALUES(21848, 54093, 'fifty-four thousand ninety-three'); INSERT INTO t2 VALUES(21849, 44924, 'forty-four thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(21850, 14378, 'fourteen thousand three hundred seventy-eight'); INSERT INTO t2 VALUES(21851, 44930, 'forty-four thousand nine hundred thirty'); INSERT INTO t2 VALUES(21852, 61027, 'sixty-one thousand twenty-seven'); INSERT INTO t2 VALUES(21853, 51011, 'fifty-one thousand eleven'); INSERT INTO t2 VALUES(21854, 14274, 'fourteen thousand two hundred seventy-four'); INSERT INTO t2 VALUES(21855, 30475, 'thirty thousand four hundred seventy-five'); INSERT INTO t2 VALUES(21856, 577, 'five hundred seventy-seven'); INSERT INTO t2 VALUES(21857, 52683, 'fifty-two thousand six hundred eighty-three'); INSERT INTO t2 VALUES(21858, 80265, 'eighty thousand two hundred sixty-five'); INSERT INTO t2 VALUES(21859, 50849, 'fifty thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(21860, 22498, 'twenty-two thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(21861, 20172, 'twenty thousand one hundred seventy-two'); INSERT INTO t2 VALUES(21862, 1224, 'one thousand two hundred twenty-four'); INSERT INTO t2 VALUES(21863, 93405, 'ninety-three thousand four hundred five'); INSERT INTO t2 VALUES(21864, 80266, 'eighty thousand two hundred sixty-six'); INSERT INTO t2 VALUES(21865, 66113, 'sixty-six thousand one hundred thirteen'); INSERT INTO t2 VALUES(21866, 53898, 'fifty-three thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(21867, 92036, 'ninety-two thousand thirty-six'); INSERT INTO t2 VALUES(21868, 17306, 'seventeen thousand three hundred six'); INSERT INTO t2 VALUES(21869, 71224, 'seventy-one thousand two hundred twenty-four'); INSERT INTO t2 VALUES(21870, 33162, 'thirty-three thousand one hundred sixty-two'); INSERT INTO t2 VALUES(21871, 44034, 'forty-four thousand thirty-four'); INSERT INTO t2 VALUES(21872, 87085, 'eighty-seven thousand eighty-five'); INSERT INTO t2 VALUES(21873, 6318, 'six thousand three hundred eighteen'); INSERT INTO t2 VALUES(21874, 33370, 'thirty-three thousand three hundred seventy'); INSERT INTO t2 VALUES(21875, 23193, 'twenty-three thousand one hundred ninety-three'); INSERT INTO t2 VALUES(21876, 50420, 'fifty thousand four hundred twenty'); INSERT INTO t2 VALUES(21877, 88812, 'eighty-eight thousand eight hundred twelve'); INSERT INTO t2 VALUES(21878, 40410, 'forty thousand four hundred ten'); INSERT INTO t2 VALUES(21879, 85410, 'eighty-five thousand four hundred ten'); INSERT INTO t2 VALUES(21880, 72488, 'seventy-two thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(21881, 5319, 'five thousand three hundred nineteen'); INSERT INTO t2 VALUES(21882, 48327, 'forty-eight thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(21883, 12073, 'twelve thousand seventy-three'); INSERT INTO t2 VALUES(21884, 49639, 'forty-nine thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(21885, 14911, 'fourteen thousand nine hundred eleven'); INSERT INTO t2 VALUES(21886, 40335, 'forty thousand three hundred thirty-five'); INSERT INTO t2 VALUES(21887, 95325, 'ninety-five thousand three hundred twenty-five'); INSERT INTO t2 VALUES(21888, 74576, 'seventy-four thousand five hundred seventy-six'); INSERT INTO t2 VALUES(21889, 25168, 'twenty-five thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(21890, 27347, 'twenty-seven thousand three hundred forty-seven'); INSERT INTO t2 VALUES(21891, 18439, 'eighteen thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(21892, 5233, 'five thousand two hundred thirty-three'); INSERT INTO t2 VALUES(21893, 57698, 'fifty-seven thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(21894, 57402, 'fifty-seven thousand four hundred two'); INSERT INTO t2 VALUES(21895, 4832, 'four thousand eight hundred thirty-two'); INSERT INTO t2 VALUES(21896, 45902, 'forty-five thousand nine hundred two'); INSERT INTO t2 VALUES(21897, 34049, 'thirty-four thousand forty-nine'); INSERT INTO t2 VALUES(21898, 84462, 'eighty-four thousand four hundred sixty-two'); INSERT INTO t2 VALUES(21899, 95616, 'ninety-five thousand six hundred sixteen'); INSERT INTO t2 VALUES(21900, 12024, 'twelve thousand twenty-four'); INSERT INTO t2 VALUES(21901, 98842, 'ninety-eight thousand eight hundred forty-two'); INSERT INTO t2 VALUES(21902, 94643, 'ninety-four thousand six hundred forty-three'); INSERT INTO t2 VALUES(21903, 85409, 'eighty-five thousand four hundred nine'); INSERT INTO t2 VALUES(21904, 99178, 'ninety-nine thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(21905, 87776, 'eighty-seven thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(21906, 60231, 'sixty thousand two hundred thirty-one'); INSERT INTO t2 VALUES(21907, 32094, 'thirty-two thousand ninety-four'); INSERT INTO t2 VALUES(21908, 56176, 'fifty-six thousand one hundred seventy-six'); INSERT INTO t2 VALUES(21909, 56485, 'fifty-six thousand four hundred eighty-five'); INSERT INTO t2 VALUES(21910, 99822, 'ninety-nine thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(21911, 68217, 'sixty-eight thousand two hundred seventeen'); INSERT INTO t2 VALUES(21912, 5074, 'five thousand seventy-four'); INSERT INTO t2 VALUES(21913, 42960, 'forty-two thousand nine hundred sixty'); INSERT INTO t2 VALUES(21914, 97703, 'ninety-seven thousand seven hundred three'); INSERT INTO t2 VALUES(21915, 88512, 'eighty-eight thousand five hundred twelve'); INSERT INTO t2 VALUES(21916, 57447, 'fifty-seven thousand four hundred forty-seven'); INSERT INTO t2 VALUES(21917, 76208, 'seventy-six thousand two hundred eight'); INSERT INTO t2 VALUES(21918, 3829, 'three thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(21919, 39949, 'thirty-nine thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(21920, 25143, 'twenty-five thousand one hundred forty-three'); INSERT INTO t2 VALUES(21921, 34174, 'thirty-four thousand one hundred seventy-four'); INSERT INTO t2 VALUES(21922, 56170, 'fifty-six thousand one hundred seventy'); INSERT INTO t2 VALUES(21923, 41775, 'forty-one thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(21924, 62020, 'sixty-two thousand twenty'); INSERT INTO t2 VALUES(21925, 39601, 'thirty-nine thousand six hundred one'); INSERT INTO t2 VALUES(21926, 90291, 'ninety thousand two hundred ninety-one'); INSERT INTO t2 VALUES(21927, 11348, 'eleven thousand three hundred forty-eight'); INSERT INTO t2 VALUES(21928, 44779, 'forty-four thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(21929, 16196, 'sixteen thousand one hundred ninety-six'); INSERT INTO t2 VALUES(21930, 30082, 'thirty thousand eighty-two'); INSERT INTO t2 VALUES(21931, 331, 'three hundred thirty-one'); INSERT INTO t2 VALUES(21932, 94197, 'ninety-four thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(21933, 44647, 'forty-four thousand six hundred forty-seven'); INSERT INTO t2 VALUES(21934, 13987, 'thirteen thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(21935, 75456, 'seventy-five thousand four hundred fifty-six'); INSERT INTO t2 VALUES(21936, 93328, 'ninety-three thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(21937, 77801, 'seventy-seven thousand eight hundred one'); INSERT INTO t2 VALUES(21938, 37686, 'thirty-seven thousand six hundred eighty-six'); INSERT INTO t2 VALUES(21939, 6634, 'six thousand six hundred thirty-four'); INSERT INTO t2 VALUES(21940, 97951, 'ninety-seven thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(21941, 99364, 'ninety-nine thousand three hundred sixty-four'); INSERT INTO t2 VALUES(21942, 96015, 'ninety-six thousand fifteen'); INSERT INTO t2 VALUES(21943, 20453, 'twenty thousand four hundred fifty-three'); INSERT INTO t2 VALUES(21944, 74139, 'seventy-four thousand one hundred thirty-nine'); INSERT INTO t2 VALUES(21945, 357, 'three hundred fifty-seven'); INSERT INTO t2 VALUES(21946, 31582, 'thirty-one thousand five hundred eighty-two'); INSERT INTO t2 VALUES(21947, 9979, 'nine thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(21948, 93020, 'ninety-three thousand twenty'); INSERT INTO t2 VALUES(21949, 10926, 'ten thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(21950, 59299, 'fifty-nine thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(21951, 98702, 'ninety-eight thousand seven hundred two'); INSERT INTO t2 VALUES(21952, 82263, 'eighty-two thousand two hundred sixty-three'); INSERT INTO t2 VALUES(21953, 10773, 'ten thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(21954, 15341, 'fifteen thousand three hundred forty-one'); INSERT INTO t2 VALUES(21955, 68265, 'sixty-eight thousand two hundred sixty-five'); INSERT INTO t2 VALUES(21956, 77955, 'seventy-seven thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(21957, 58731, 'fifty-eight thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(21958, 14185, 'fourteen thousand one hundred eighty-five'); INSERT INTO t2 VALUES(21959, 85254, 'eighty-five thousand two hundred fifty-four'); INSERT INTO t2 VALUES(21960, 61502, 'sixty-one thousand five hundred two'); INSERT INTO t2 VALUES(21961, 86552, 'eighty-six thousand five hundred fifty-two'); INSERT INTO t2 VALUES(21962, 41630, 'forty-one thousand six hundred thirty'); INSERT INTO t2 VALUES(21963, 41950, 'forty-one thousand nine hundred fifty'); INSERT INTO t2 VALUES(21964, 57939, 'fifty-seven thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(21965, 40000, 'forty thousand'); INSERT INTO t2 VALUES(21966, 60530, 'sixty thousand five hundred thirty'); INSERT INTO t2 VALUES(21967, 18034, 'eighteen thousand thirty-four'); INSERT INTO t2 VALUES(21968, 84431, 'eighty-four thousand four hundred thirty-one'); INSERT INTO t2 VALUES(21969, 15179, 'fifteen thousand one hundred seventy-nine'); INSERT INTO t2 VALUES(21970, 74911, 'seventy-four thousand nine hundred eleven'); INSERT INTO t2 VALUES(21971, 84538, 'eighty-four thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(21972, 2799, 'two thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(21973, 85043, 'eighty-five thousand forty-three'); INSERT INTO t2 VALUES(21974, 42748, 'forty-two thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(21975, 84672, 'eighty-four thousand six hundred seventy-two'); INSERT INTO t2 VALUES(21976, 21016, 'twenty-one thousand sixteen'); INSERT INTO t2 VALUES(21977, 91151, 'ninety-one thousand one hundred fifty-one'); INSERT INTO t2 VALUES(21978, 31399, 'thirty-one thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(21979, 582, 'five hundred eighty-two'); INSERT INTO t2 VALUES(21980, 77696, 'seventy-seven thousand six hundred ninety-six'); INSERT INTO t2 VALUES(21981, 15770, 'fifteen thousand seven hundred seventy'); INSERT INTO t2 VALUES(21982, 77355, 'seventy-seven thousand three hundred fifty-five'); INSERT INTO t2 VALUES(21983, 78835, 'seventy-eight thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(21984, 49318, 'forty-nine thousand three hundred eighteen'); INSERT INTO t2 VALUES(21985, 38851, 'thirty-eight thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(21986, 95041, 'ninety-five thousand forty-one'); INSERT INTO t2 VALUES(21987, 17660, 'seventeen thousand six hundred sixty'); INSERT INTO t2 VALUES(21988, 36904, 'thirty-six thousand nine hundred four'); INSERT INTO t2 VALUES(21989, 18448, 'eighteen thousand four hundred forty-eight'); INSERT INTO t2 VALUES(21990, 32593, 'thirty-two thousand five hundred ninety-three'); INSERT INTO t2 VALUES(21991, 30738, 'thirty thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(21992, 51261, 'fifty-one thousand two hundred sixty-one'); INSERT INTO t2 VALUES(21993, 31530, 'thirty-one thousand five hundred thirty'); INSERT INTO t2 VALUES(21994, 7079, 'seven thousand seventy-nine'); INSERT INTO t2 VALUES(21995, 24763, 'twenty-four thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(21996, 13091, 'thirteen thousand ninety-one'); INSERT INTO t2 VALUES(21997, 83091, 'eighty-three thousand ninety-one'); INSERT INTO t2 VALUES(21998, 86734, 'eighty-six thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(21999, 97011, 'ninety-seven thousand eleven'); INSERT INTO t2 VALUES(22000, 69655, 'sixty-nine thousand six hundred fifty-five'); INSERT INTO t2 VALUES(22001, 93224, 'ninety-three thousand two hundred twenty-four'); INSERT INTO t2 VALUES(22002, 47303, 'forty-seven thousand three hundred three'); INSERT INTO t2 VALUES(22003, 82881, 'eighty-two thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(22004, 76860, 'seventy-six thousand eight hundred sixty'); INSERT INTO t2 VALUES(22005, 32044, 'thirty-two thousand forty-four'); INSERT INTO t2 VALUES(22006, 34741, 'thirty-four thousand seven hundred forty-one'); INSERT INTO t2 VALUES(22007, 4946, 'four thousand nine hundred forty-six'); INSERT INTO t2 VALUES(22008, 93278, 'ninety-three thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(22009, 99396, 'ninety-nine thousand three hundred ninety-six'); INSERT INTO t2 VALUES(22010, 66752, 'sixty-six thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(22011, 73630, 'seventy-three thousand six hundred thirty'); INSERT INTO t2 VALUES(22012, 49462, 'forty-nine thousand four hundred sixty-two'); INSERT INTO t2 VALUES(22013, 12303, 'twelve thousand three hundred three'); INSERT INTO t2 VALUES(22014, 60299, 'sixty thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(22015, 33698, 'thirty-three thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(22016, 94715, 'ninety-four thousand seven hundred fifteen'); INSERT INTO t2 VALUES(22017, 69889, 'sixty-nine thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(22018, 78804, 'seventy-eight thousand eight hundred four'); INSERT INTO t2 VALUES(22019, 31610, 'thirty-one thousand six hundred ten'); INSERT INTO t2 VALUES(22020, 75894, 'seventy-five thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(22021, 13506, 'thirteen thousand five hundred six'); INSERT INTO t2 VALUES(22022, 37136, 'thirty-seven thousand one hundred thirty-six'); INSERT INTO t2 VALUES(22023, 73834, 'seventy-three thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(22024, 18252, 'eighteen thousand two hundred fifty-two'); INSERT INTO t2 VALUES(22025, 7241, 'seven thousand two hundred forty-one'); INSERT INTO t2 VALUES(22026, 21953, 'twenty-one thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(22027, 15659, 'fifteen thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(22028, 4825, 'four thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(22029, 40827, 'forty thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(22030, 94097, 'ninety-four thousand ninety-seven'); INSERT INTO t2 VALUES(22031, 22920, 'twenty-two thousand nine hundred twenty'); INSERT INTO t2 VALUES(22032, 86926, 'eighty-six thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(22033, 4580, 'four thousand five hundred eighty'); INSERT INTO t2 VALUES(22034, 17248, 'seventeen thousand two hundred forty-eight'); INSERT INTO t2 VALUES(22035, 69469, 'sixty-nine thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(22036, 55195, 'fifty-five thousand one hundred ninety-five'); INSERT INTO t2 VALUES(22037, 31872, 'thirty-one thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(22038, 57767, 'fifty-seven thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(22039, 53819, 'fifty-three thousand eight hundred nineteen'); INSERT INTO t2 VALUES(22040, 92343, 'ninety-two thousand three hundred forty-three'); INSERT INTO t2 VALUES(22041, 20570, 'twenty thousand five hundred seventy'); INSERT INTO t2 VALUES(22042, 34785, 'thirty-four thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(22043, 6321, 'six thousand three hundred twenty-one'); INSERT INTO t2 VALUES(22044, 55777, 'fifty-five thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(22045, 56007, 'fifty-six thousand seven'); INSERT INTO t2 VALUES(22046, 80652, 'eighty thousand six hundred fifty-two'); INSERT INTO t2 VALUES(22047, 87857, 'eighty-seven thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(22048, 55133, 'fifty-five thousand one hundred thirty-three'); INSERT INTO t2 VALUES(22049, 81629, 'eighty-one thousand six hundred twenty-nine'); INSERT INTO t2 VALUES(22050, 94774, 'ninety-four thousand seven hundred seventy-four'); INSERT INTO t2 VALUES(22051, 83117, 'eighty-three thousand one hundred seventeen'); INSERT INTO t2 VALUES(22052, 96431, 'ninety-six thousand four hundred thirty-one'); INSERT INTO t2 VALUES(22053, 14775, 'fourteen thousand seven hundred seventy-five'); INSERT INTO t2 VALUES(22054, 3913, 'three thousand nine hundred thirteen'); INSERT INTO t2 VALUES(22055, 56632, 'fifty-six thousand six hundred thirty-two'); INSERT INTO t2 VALUES(22056, 24913, 'twenty-four thousand nine hundred thirteen'); INSERT INTO t2 VALUES(22057, 49614, 'forty-nine thousand six hundred fourteen'); INSERT INTO t2 VALUES(22058, 91715, 'ninety-one thousand seven hundred fifteen'); INSERT INTO t2 VALUES(22059, 96327, 'ninety-six thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(22060, 59990, 'fifty-nine thousand nine hundred ninety'); INSERT INTO t2 VALUES(22061, 49349, 'forty-nine thousand three hundred forty-nine'); INSERT INTO t2 VALUES(22062, 7848, 'seven thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(22063, 93977, 'ninety-three thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(22064, 6369, 'six thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(22065, 84992, 'eighty-four thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(22066, 25892, 'twenty-five thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(22067, 59508, 'fifty-nine thousand five hundred eight'); INSERT INTO t2 VALUES(22068, 54796, 'fifty-four thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(22069, 51376, 'fifty-one thousand three hundred seventy-six'); INSERT INTO t2 VALUES(22070, 98728, 'ninety-eight thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(22071, 603, 'six hundred three'); INSERT INTO t2 VALUES(22072, 3197, 'three thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(22073, 2058, 'two thousand fifty-eight'); INSERT INTO t2 VALUES(22074, 63116, 'sixty-three thousand one hundred sixteen'); INSERT INTO t2 VALUES(22075, 32420, 'thirty-two thousand four hundred twenty'); INSERT INTO t2 VALUES(22076, 21816, 'twenty-one thousand eight hundred sixteen'); INSERT INTO t2 VALUES(22077, 55083, 'fifty-five thousand eighty-three'); INSERT INTO t2 VALUES(22078, 24875, 'twenty-four thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(22079, 17915, 'seventeen thousand nine hundred fifteen'); INSERT INTO t2 VALUES(22080, 6023, 'six thousand twenty-three'); INSERT INTO t2 VALUES(22081, 18300, 'eighteen thousand three hundred'); INSERT INTO t2 VALUES(22082, 25723, 'twenty-five thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(22083, 46304, 'forty-six thousand three hundred four'); INSERT INTO t2 VALUES(22084, 99753, 'ninety-nine thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(22085, 84480, 'eighty-four thousand four hundred eighty'); INSERT INTO t2 VALUES(22086, 74206, 'seventy-four thousand two hundred six'); INSERT INTO t2 VALUES(22087, 21578, 'twenty-one thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(22088, 99796, 'ninety-nine thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(22089, 4436, 'four thousand four hundred thirty-six'); INSERT INTO t2 VALUES(22090, 9006, 'nine thousand six'); INSERT INTO t2 VALUES(22091, 78406, 'seventy-eight thousand four hundred six'); INSERT INTO t2 VALUES(22092, 40100, 'forty thousand one hundred'); INSERT INTO t2 VALUES(22093, 57556, 'fifty-seven thousand five hundred fifty-six'); INSERT INTO t2 VALUES(22094, 17043, 'seventeen thousand forty-three'); INSERT INTO t2 VALUES(22095, 46318, 'forty-six thousand three hundred eighteen'); INSERT INTO t2 VALUES(22096, 62851, 'sixty-two thousand eight hundred fifty-one'); INSERT INTO t2 VALUES(22097, 85693, 'eighty-five thousand six hundred ninety-three'); INSERT INTO t2 VALUES(22098, 3326, 'three thousand three hundred twenty-six'); INSERT INTO t2 VALUES(22099, 67248, 'sixty-seven thousand two hundred forty-eight'); INSERT INTO t2 VALUES(22100, 31801, 'thirty-one thousand eight hundred one'); INSERT INTO t2 VALUES(22101, 98229, 'ninety-eight thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(22102, 94234, 'ninety-four thousand two hundred thirty-four'); INSERT INTO t2 VALUES(22103, 71103, 'seventy-one thousand one hundred three'); INSERT INTO t2 VALUES(22104, 30672, 'thirty thousand six hundred seventy-two'); INSERT INTO t2 VALUES(22105, 80423, 'eighty thousand four hundred twenty-three'); INSERT INTO t2 VALUES(22106, 65196, 'sixty-five thousand one hundred ninety-six'); INSERT INTO t2 VALUES(22107, 21399, 'twenty-one thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(22108, 86154, 'eighty-six thousand one hundred fifty-four'); INSERT INTO t2 VALUES(22109, 23339, 'twenty-three thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(22110, 71764, 'seventy-one thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(22111, 38476, 'thirty-eight thousand four hundred seventy-six'); INSERT INTO t2 VALUES(22112, 63054, 'sixty-three thousand fifty-four'); INSERT INTO t2 VALUES(22113, 52770, 'fifty-two thousand seven hundred seventy'); INSERT INTO t2 VALUES(22114, 70640, 'seventy thousand six hundred forty'); INSERT INTO t2 VALUES(22115, 17870, 'seventeen thousand eight hundred seventy'); INSERT INTO t2 VALUES(22116, 52605, 'fifty-two thousand six hundred five'); INSERT INTO t2 VALUES(22117, 81158, 'eighty-one thousand one hundred fifty-eight'); INSERT INTO t2 VALUES(22118, 44655, 'forty-four thousand six hundred fifty-five'); INSERT INTO t2 VALUES(22119, 84621, 'eighty-four thousand six hundred twenty-one'); INSERT INTO t2 VALUES(22120, 64086, 'sixty-four thousand eighty-six'); INSERT INTO t2 VALUES(22121, 85673, 'eighty-five thousand six hundred seventy-three'); INSERT INTO t2 VALUES(22122, 10842, 'ten thousand eight hundred forty-two'); INSERT INTO t2 VALUES(22123, 36601, 'thirty-six thousand six hundred one'); INSERT INTO t2 VALUES(22124, 52509, 'fifty-two thousand five hundred nine'); INSERT INTO t2 VALUES(22125, 4652, 'four thousand six hundred fifty-two'); INSERT INTO t2 VALUES(22126, 54570, 'fifty-four thousand five hundred seventy'); INSERT INTO t2 VALUES(22127, 21673, 'twenty-one thousand six hundred seventy-three'); INSERT INTO t2 VALUES(22128, 20264, 'twenty thousand two hundred sixty-four'); INSERT INTO t2 VALUES(22129, 74680, 'seventy-four thousand six hundred eighty'); INSERT INTO t2 VALUES(22130, 83816, 'eighty-three thousand eight hundred sixteen'); INSERT INTO t2 VALUES(22131, 10604, 'ten thousand six hundred four'); INSERT INTO t2 VALUES(22132, 34949, 'thirty-four thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(22133, 24980, 'twenty-four thousand nine hundred eighty'); INSERT INTO t2 VALUES(22134, 86003, 'eighty-six thousand three'); INSERT INTO t2 VALUES(22135, 94893, 'ninety-four thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(22136, 70909, 'seventy thousand nine hundred nine'); INSERT INTO t2 VALUES(22137, 2554, 'two thousand five hundred fifty-four'); INSERT INTO t2 VALUES(22138, 59340, 'fifty-nine thousand three hundred forty'); INSERT INTO t2 VALUES(22139, 42055, 'forty-two thousand fifty-five'); INSERT INTO t2 VALUES(22140, 72185, 'seventy-two thousand one hundred eighty-five'); INSERT INTO t2 VALUES(22141, 3377, 'three thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(22142, 23210, 'twenty-three thousand two hundred ten'); INSERT INTO t2 VALUES(22143, 25843, 'twenty-five thousand eight hundred forty-three'); INSERT INTO t2 VALUES(22144, 59450, 'fifty-nine thousand four hundred fifty'); INSERT INTO t2 VALUES(22145, 79508, 'seventy-nine thousand five hundred eight'); INSERT INTO t2 VALUES(22146, 48953, 'forty-eight thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(22147, 59022, 'fifty-nine thousand twenty-two'); INSERT INTO t2 VALUES(22148, 57755, 'fifty-seven thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(22149, 67545, 'sixty-seven thousand five hundred forty-five'); INSERT INTO t2 VALUES(22150, 12884, 'twelve thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(22151, 25185, 'twenty-five thousand one hundred eighty-five'); INSERT INTO t2 VALUES(22152, 99814, 'ninety-nine thousand eight hundred fourteen'); INSERT INTO t2 VALUES(22153, 59583, 'fifty-nine thousand five hundred eighty-three'); INSERT INTO t2 VALUES(22154, 5526, 'five thousand five hundred twenty-six'); INSERT INTO t2 VALUES(22155, 51770, 'fifty-one thousand seven hundred seventy'); INSERT INTO t2 VALUES(22156, 60081, 'sixty thousand eighty-one'); INSERT INTO t2 VALUES(22157, 78481, 'seventy-eight thousand four hundred eighty-one'); INSERT INTO t2 VALUES(22158, 57611, 'fifty-seven thousand six hundred eleven'); INSERT INTO t2 VALUES(22159, 19059, 'nineteen thousand fifty-nine'); INSERT INTO t2 VALUES(22160, 99523, 'ninety-nine thousand five hundred twenty-three'); INSERT INTO t2 VALUES(22161, 69602, 'sixty-nine thousand six hundred two'); INSERT INTO t2 VALUES(22162, 9373, 'nine thousand three hundred seventy-three'); INSERT INTO t2 VALUES(22163, 81414, 'eighty-one thousand four hundred fourteen'); INSERT INTO t2 VALUES(22164, 16185, 'sixteen thousand one hundred eighty-five'); INSERT INTO t2 VALUES(22165, 71585, 'seventy-one thousand five hundred eighty-five'); INSERT INTO t2 VALUES(22166, 40341, 'forty thousand three hundred forty-one'); INSERT INTO t2 VALUES(22167, 31501, 'thirty-one thousand five hundred one'); INSERT INTO t2 VALUES(22168, 68361, 'sixty-eight thousand three hundred sixty-one'); INSERT INTO t2 VALUES(22169, 96746, 'ninety-six thousand seven hundred forty-six'); INSERT INTO t2 VALUES(22170, 59386, 'fifty-nine thousand three hundred eighty-six'); INSERT INTO t2 VALUES(22171, 41805, 'forty-one thousand eight hundred five'); INSERT INTO t2 VALUES(22172, 37704, 'thirty-seven thousand seven hundred four'); INSERT INTO t2 VALUES(22173, 85682, 'eighty-five thousand six hundred eighty-two'); INSERT INTO t2 VALUES(22174, 84377, 'eighty-four thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(22175, 88395, 'eighty-eight thousand three hundred ninety-five'); INSERT INTO t2 VALUES(22176, 79787, 'seventy-nine thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(22177, 28358, 'twenty-eight thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(22178, 84915, 'eighty-four thousand nine hundred fifteen'); INSERT INTO t2 VALUES(22179, 3348, 'three thousand three hundred forty-eight'); INSERT INTO t2 VALUES(22180, 99217, 'ninety-nine thousand two hundred seventeen'); INSERT INTO t2 VALUES(22181, 79639, 'seventy-nine thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(22182, 81589, 'eighty-one thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(22183, 34880, 'thirty-four thousand eight hundred eighty'); INSERT INTO t2 VALUES(22184, 10562, 'ten thousand five hundred sixty-two'); INSERT INTO t2 VALUES(22185, 70863, 'seventy thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(22186, 27485, 'twenty-seven thousand four hundred eighty-five'); INSERT INTO t2 VALUES(22187, 67005, 'sixty-seven thousand five'); INSERT INTO t2 VALUES(22188, 33244, 'thirty-three thousand two hundred forty-four'); INSERT INTO t2 VALUES(22189, 449, 'four hundred forty-nine'); INSERT INTO t2 VALUES(22190, 53850, 'fifty-three thousand eight hundred fifty'); INSERT INTO t2 VALUES(22191, 71572, 'seventy-one thousand five hundred seventy-two'); INSERT INTO t2 VALUES(22192, 26332, 'twenty-six thousand three hundred thirty-two'); INSERT INTO t2 VALUES(22193, 89696, 'eighty-nine thousand six hundred ninety-six'); INSERT INTO t2 VALUES(22194, 67745, 'sixty-seven thousand seven hundred forty-five'); INSERT INTO t2 VALUES(22195, 39639, 'thirty-nine thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(22196, 18833, 'eighteen thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(22197, 48640, 'forty-eight thousand six hundred forty'); INSERT INTO t2 VALUES(22198, 73821, 'seventy-three thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(22199, 19825, 'nineteen thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(22200, 99062, 'ninety-nine thousand sixty-two'); INSERT INTO t2 VALUES(22201, 72691, 'seventy-two thousand six hundred ninety-one'); INSERT INTO t2 VALUES(22202, 68914, 'sixty-eight thousand nine hundred fourteen'); INSERT INTO t2 VALUES(22203, 1589, 'one thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(22204, 93983, 'ninety-three thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(22205, 85496, 'eighty-five thousand four hundred ninety-six'); INSERT INTO t2 VALUES(22206, 68038, 'sixty-eight thousand thirty-eight'); INSERT INTO t2 VALUES(22207, 70007, 'seventy thousand seven'); INSERT INTO t2 VALUES(22208, 35298, 'thirty-five thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(22209, 90026, 'ninety thousand twenty-six'); INSERT INTO t2 VALUES(22210, 80100, 'eighty thousand one hundred'); INSERT INTO t2 VALUES(22211, 57088, 'fifty-seven thousand eighty-eight'); INSERT INTO t2 VALUES(22212, 88140, 'eighty-eight thousand one hundred forty'); INSERT INTO t2 VALUES(22213, 49802, 'forty-nine thousand eight hundred two'); INSERT INTO t2 VALUES(22214, 38558, 'thirty-eight thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(22215, 39918, 'thirty-nine thousand nine hundred eighteen'); INSERT INTO t2 VALUES(22216, 94325, 'ninety-four thousand three hundred twenty-five'); INSERT INTO t2 VALUES(22217, 43163, 'forty-three thousand one hundred sixty-three'); INSERT INTO t2 VALUES(22218, 28423, 'twenty-eight thousand four hundred twenty-three'); INSERT INTO t2 VALUES(22219, 54784, 'fifty-four thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(22220, 64184, 'sixty-four thousand one hundred eighty-four'); INSERT INTO t2 VALUES(22221, 46153, 'forty-six thousand one hundred fifty-three'); INSERT INTO t2 VALUES(22222, 61830, 'sixty-one thousand eight hundred thirty'); INSERT INTO t2 VALUES(22223, 3681, 'three thousand six hundred eighty-one'); INSERT INTO t2 VALUES(22224, 92648, 'ninety-two thousand six hundred forty-eight'); INSERT INTO t2 VALUES(22225, 25961, 'twenty-five thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(22226, 5779, 'five thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(22227, 83983, 'eighty-three thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(22228, 23458, 'twenty-three thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(22229, 71798, 'seventy-one thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(22230, 58639, 'fifty-eight thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(22231, 5810, 'five thousand eight hundred ten'); INSERT INTO t2 VALUES(22232, 55041, 'fifty-five thousand forty-one'); INSERT INTO t2 VALUES(22233, 34314, 'thirty-four thousand three hundred fourteen'); INSERT INTO t2 VALUES(22234, 8678, 'eight thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(22235, 67566, 'sixty-seven thousand five hundred sixty-six'); INSERT INTO t2 VALUES(22236, 7956, 'seven thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(22237, 22705, 'twenty-two thousand seven hundred five'); INSERT INTO t2 VALUES(22238, 86646, 'eighty-six thousand six hundred forty-six'); INSERT INTO t2 VALUES(22239, 15199, 'fifteen thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(22240, 21826, 'twenty-one thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(22241, 13080, 'thirteen thousand eighty'); INSERT INTO t2 VALUES(22242, 89796, 'eighty-nine thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(22243, 28269, 'twenty-eight thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(22244, 80456, 'eighty thousand four hundred fifty-six'); INSERT INTO t2 VALUES(22245, 85916, 'eighty-five thousand nine hundred sixteen'); INSERT INTO t2 VALUES(22246, 72154, 'seventy-two thousand one hundred fifty-four'); INSERT INTO t2 VALUES(22247, 89795, 'eighty-nine thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(22248, 42254, 'forty-two thousand two hundred fifty-four'); INSERT INTO t2 VALUES(22249, 55296, 'fifty-five thousand two hundred ninety-six'); INSERT INTO t2 VALUES(22250, 12220, 'twelve thousand two hundred twenty'); INSERT INTO t2 VALUES(22251, 56534, 'fifty-six thousand five hundred thirty-four'); INSERT INTO t2 VALUES(22252, 29834, 'twenty-nine thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(22253, 10798, 'ten thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(22254, 9685, 'nine thousand six hundred eighty-five'); INSERT INTO t2 VALUES(22255, 23872, 'twenty-three thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(22256, 25837, 'twenty-five thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(22257, 93897, 'ninety-three thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(22258, 77450, 'seventy-seven thousand four hundred fifty'); INSERT INTO t2 VALUES(22259, 98521, 'ninety-eight thousand five hundred twenty-one'); INSERT INTO t2 VALUES(22260, 76892, 'seventy-six thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(22261, 29619, 'twenty-nine thousand six hundred nineteen'); INSERT INTO t2 VALUES(22262, 48101, 'forty-eight thousand one hundred one'); INSERT INTO t2 VALUES(22263, 16804, 'sixteen thousand eight hundred four'); INSERT INTO t2 VALUES(22264, 83536, 'eighty-three thousand five hundred thirty-six'); INSERT INTO t2 VALUES(22265, 18391, 'eighteen thousand three hundred ninety-one'); INSERT INTO t2 VALUES(22266, 37038, 'thirty-seven thousand thirty-eight'); INSERT INTO t2 VALUES(22267, 61421, 'sixty-one thousand four hundred twenty-one'); INSERT INTO t2 VALUES(22268, 15063, 'fifteen thousand sixty-three'); INSERT INTO t2 VALUES(22269, 48907, 'forty-eight thousand nine hundred seven'); INSERT INTO t2 VALUES(22270, 17658, 'seventeen thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(22271, 49716, 'forty-nine thousand seven hundred sixteen'); INSERT INTO t2 VALUES(22272, 28176, 'twenty-eight thousand one hundred seventy-six'); INSERT INTO t2 VALUES(22273, 22096, 'twenty-two thousand ninety-six'); INSERT INTO t2 VALUES(22274, 43822, 'forty-three thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(22275, 50437, 'fifty thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(22276, 23342, 'twenty-three thousand three hundred forty-two'); INSERT INTO t2 VALUES(22277, 21826, 'twenty-one thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(22278, 40730, 'forty thousand seven hundred thirty'); INSERT INTO t2 VALUES(22279, 29191, 'twenty-nine thousand one hundred ninety-one'); INSERT INTO t2 VALUES(22280, 24973, 'twenty-four thousand nine hundred seventy-three'); INSERT INTO t2 VALUES(22281, 77396, 'seventy-seven thousand three hundred ninety-six'); INSERT INTO t2 VALUES(22282, 8419, 'eight thousand four hundred nineteen'); INSERT INTO t2 VALUES(22283, 12609, 'twelve thousand six hundred nine'); INSERT INTO t2 VALUES(22284, 14178, 'fourteen thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(22285, 97916, 'ninety-seven thousand nine hundred sixteen'); INSERT INTO t2 VALUES(22286, 9432, 'nine thousand four hundred thirty-two'); INSERT INTO t2 VALUES(22287, 35508, 'thirty-five thousand five hundred eight'); INSERT INTO t2 VALUES(22288, 31643, 'thirty-one thousand six hundred forty-three'); INSERT INTO t2 VALUES(22289, 6604, 'six thousand six hundred four'); INSERT INTO t2 VALUES(22290, 79805, 'seventy-nine thousand eight hundred five'); INSERT INTO t2 VALUES(22291, 41466, 'forty-one thousand four hundred sixty-six'); INSERT INTO t2 VALUES(22292, 78205, 'seventy-eight thousand two hundred five'); INSERT INTO t2 VALUES(22293, 21247, 'twenty-one thousand two hundred forty-seven'); INSERT INTO t2 VALUES(22294, 84108, 'eighty-four thousand one hundred eight'); INSERT INTO t2 VALUES(22295, 86633, 'eighty-six thousand six hundred thirty-three'); INSERT INTO t2 VALUES(22296, 57645, 'fifty-seven thousand six hundred forty-five'); INSERT INTO t2 VALUES(22297, 63918, 'sixty-three thousand nine hundred eighteen'); INSERT INTO t2 VALUES(22298, 54042, 'fifty-four thousand forty-two'); INSERT INTO t2 VALUES(22299, 6605, 'six thousand six hundred five'); INSERT INTO t2 VALUES(22300, 64502, 'sixty-four thousand five hundred two'); INSERT INTO t2 VALUES(22301, 63918, 'sixty-three thousand nine hundred eighteen'); INSERT INTO t2 VALUES(22302, 86611, 'eighty-six thousand six hundred eleven'); INSERT INTO t2 VALUES(22303, 1451, 'one thousand four hundred fifty-one'); INSERT INTO t2 VALUES(22304, 47419, 'forty-seven thousand four hundred nineteen'); INSERT INTO t2 VALUES(22305, 57464, 'fifty-seven thousand four hundred sixty-four'); INSERT INTO t2 VALUES(22306, 46897, 'forty-six thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(22307, 94455, 'ninety-four thousand four hundred fifty-five'); INSERT INTO t2 VALUES(22308, 34717, 'thirty-four thousand seven hundred seventeen'); INSERT INTO t2 VALUES(22309, 60931, 'sixty thousand nine hundred thirty-one'); INSERT INTO t2 VALUES(22310, 51191, 'fifty-one thousand one hundred ninety-one'); INSERT INTO t2 VALUES(22311, 85035, 'eighty-five thousand thirty-five'); INSERT INTO t2 VALUES(22312, 13138, 'thirteen thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(22313, 76315, 'seventy-six thousand three hundred fifteen'); INSERT INTO t2 VALUES(22314, 82068, 'eighty-two thousand sixty-eight'); INSERT INTO t2 VALUES(22315, 80865, 'eighty thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(22316, 98648, 'ninety-eight thousand six hundred forty-eight'); INSERT INTO t2 VALUES(22317, 18623, 'eighteen thousand six hundred twenty-three'); INSERT INTO t2 VALUES(22318, 54551, 'fifty-four thousand five hundred fifty-one'); INSERT INTO t2 VALUES(22319, 22386, 'twenty-two thousand three hundred eighty-six'); INSERT INTO t2 VALUES(22320, 38516, 'thirty-eight thousand five hundred sixteen'); INSERT INTO t2 VALUES(22321, 87051, 'eighty-seven thousand fifty-one'); INSERT INTO t2 VALUES(22322, 38865, 'thirty-eight thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(22323, 3770, 'three thousand seven hundred seventy'); INSERT INTO t2 VALUES(22324, 3409, 'three thousand four hundred nine'); INSERT INTO t2 VALUES(22325, 76197, 'seventy-six thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(22326, 27638, 'twenty-seven thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(22327, 72267, 'seventy-two thousand two hundred sixty-seven'); INSERT INTO t2 VALUES(22328, 49201, 'forty-nine thousand two hundred one'); INSERT INTO t2 VALUES(22329, 51957, 'fifty-one thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(22330, 95407, 'ninety-five thousand four hundred seven'); INSERT INTO t2 VALUES(22331, 494, 'four hundred ninety-four'); INSERT INTO t2 VALUES(22332, 19769, 'nineteen thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(22333, 57170, 'fifty-seven thousand one hundred seventy'); INSERT INTO t2 VALUES(22334, 5150, 'five thousand one hundred fifty'); INSERT INTO t2 VALUES(22335, 2342, 'two thousand three hundred forty-two'); INSERT INTO t2 VALUES(22336, 56163, 'fifty-six thousand one hundred sixty-three'); INSERT INTO t2 VALUES(22337, 4604, 'four thousand six hundred four'); INSERT INTO t2 VALUES(22338, 69693, 'sixty-nine thousand six hundred ninety-three'); INSERT INTO t2 VALUES(22339, 88292, 'eighty-eight thousand two hundred ninety-two'); INSERT INTO t2 VALUES(22340, 65142, 'sixty-five thousand one hundred forty-two'); INSERT INTO t2 VALUES(22341, 75426, 'seventy-five thousand four hundred twenty-six'); INSERT INTO t2 VALUES(22342, 15423, 'fifteen thousand four hundred twenty-three'); INSERT INTO t2 VALUES(22343, 80547, 'eighty thousand five hundred forty-seven'); INSERT INTO t2 VALUES(22344, 88201, 'eighty-eight thousand two hundred one'); INSERT INTO t2 VALUES(22345, 52965, 'fifty-two thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(22346, 96199, 'ninety-six thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(22347, 54514, 'fifty-four thousand five hundred fourteen'); INSERT INTO t2 VALUES(22348, 1238, 'one thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(22349, 97621, 'ninety-seven thousand six hundred twenty-one'); INSERT INTO t2 VALUES(22350, 35730, 'thirty-five thousand seven hundred thirty'); INSERT INTO t2 VALUES(22351, 14932, 'fourteen thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(22352, 43812, 'forty-three thousand eight hundred twelve'); INSERT INTO t2 VALUES(22353, 6577, 'six thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(22354, 62010, 'sixty-two thousand ten'); INSERT INTO t2 VALUES(22355, 91955, 'ninety-one thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(22356, 18085, 'eighteen thousand eighty-five'); INSERT INTO t2 VALUES(22357, 45931, 'forty-five thousand nine hundred thirty-one'); INSERT INTO t2 VALUES(22358, 79207, 'seventy-nine thousand two hundred seven'); INSERT INTO t2 VALUES(22359, 11729, 'eleven thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(22360, 26329, 'twenty-six thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(22361, 19065, 'nineteen thousand sixty-five'); INSERT INTO t2 VALUES(22362, 92482, 'ninety-two thousand four hundred eighty-two'); INSERT INTO t2 VALUES(22363, 34050, 'thirty-four thousand fifty'); INSERT INTO t2 VALUES(22364, 15749, 'fifteen thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(22365, 66165, 'sixty-six thousand one hundred sixty-five'); INSERT INTO t2 VALUES(22366, 36505, 'thirty-six thousand five hundred five'); INSERT INTO t2 VALUES(22367, 131, 'one hundred thirty-one'); INSERT INTO t2 VALUES(22368, 69597, 'sixty-nine thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(22369, 46427, 'forty-six thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(22370, 8874, 'eight thousand eight hundred seventy-four'); INSERT INTO t2 VALUES(22371, 85392, 'eighty-five thousand three hundred ninety-two'); INSERT INTO t2 VALUES(22372, 56348, 'fifty-six thousand three hundred forty-eight'); INSERT INTO t2 VALUES(22373, 84536, 'eighty-four thousand five hundred thirty-six'); INSERT INTO t2 VALUES(22374, 11474, 'eleven thousand four hundred seventy-four'); INSERT INTO t2 VALUES(22375, 1278, 'one thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(22376, 66671, 'sixty-six thousand six hundred seventy-one'); INSERT INTO t2 VALUES(22377, 78884, 'seventy-eight thousand eight hundred eighty-four'); INSERT INTO t2 VALUES(22378, 3512, 'three thousand five hundred twelve'); INSERT INTO t2 VALUES(22379, 11434, 'eleven thousand four hundred thirty-four'); INSERT INTO t2 VALUES(22380, 87002, 'eighty-seven thousand two'); INSERT INTO t2 VALUES(22381, 55430, 'fifty-five thousand four hundred thirty'); INSERT INTO t2 VALUES(22382, 69635, 'sixty-nine thousand six hundred thirty-five'); INSERT INTO t2 VALUES(22383, 3510, 'three thousand five hundred ten'); INSERT INTO t2 VALUES(22384, 82464, 'eighty-two thousand four hundred sixty-four'); INSERT INTO t2 VALUES(22385, 14576, 'fourteen thousand five hundred seventy-six'); INSERT INTO t2 VALUES(22386, 26189, 'twenty-six thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(22387, 18114, 'eighteen thousand one hundred fourteen'); INSERT INTO t2 VALUES(22388, 88458, 'eighty-eight thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(22389, 97696, 'ninety-seven thousand six hundred ninety-six'); INSERT INTO t2 VALUES(22390, 20326, 'twenty thousand three hundred twenty-six'); INSERT INTO t2 VALUES(22391, 61539, 'sixty-one thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(22392, 41704, 'forty-one thousand seven hundred four'); INSERT INTO t2 VALUES(22393, 62173, 'sixty-two thousand one hundred seventy-three'); INSERT INTO t2 VALUES(22394, 36659, 'thirty-six thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(22395, 39339, 'thirty-nine thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(22396, 35492, 'thirty-five thousand four hundred ninety-two'); INSERT INTO t2 VALUES(22397, 84672, 'eighty-four thousand six hundred seventy-two'); INSERT INTO t2 VALUES(22398, 62140, 'sixty-two thousand one hundred forty'); INSERT INTO t2 VALUES(22399, 39728, 'thirty-nine thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(22400, 63508, 'sixty-three thousand five hundred eight'); INSERT INTO t2 VALUES(22401, 2118, 'two thousand one hundred eighteen'); INSERT INTO t2 VALUES(22402, 45989, 'forty-five thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(22403, 29906, 'twenty-nine thousand nine hundred six'); INSERT INTO t2 VALUES(22404, 24720, 'twenty-four thousand seven hundred twenty'); INSERT INTO t2 VALUES(22405, 28470, 'twenty-eight thousand four hundred seventy'); INSERT INTO t2 VALUES(22406, 53785, 'fifty-three thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(22407, 86742, 'eighty-six thousand seven hundred forty-two'); INSERT INTO t2 VALUES(22408, 70868, 'seventy thousand eight hundred sixty-eight'); INSERT INTO t2 VALUES(22409, 9745, 'nine thousand seven hundred forty-five'); INSERT INTO t2 VALUES(22410, 52889, 'fifty-two thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(22411, 2810, 'two thousand eight hundred ten'); INSERT INTO t2 VALUES(22412, 81529, 'eighty-one thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(22413, 95495, 'ninety-five thousand four hundred ninety-five'); INSERT INTO t2 VALUES(22414, 32732, 'thirty-two thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(22415, 75278, 'seventy-five thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(22416, 52264, 'fifty-two thousand two hundred sixty-four'); INSERT INTO t2 VALUES(22417, 99252, 'ninety-nine thousand two hundred fifty-two'); INSERT INTO t2 VALUES(22418, 94074, 'ninety-four thousand seventy-four'); INSERT INTO t2 VALUES(22419, 47933, 'forty-seven thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(22420, 59535, 'fifty-nine thousand five hundred thirty-five'); INSERT INTO t2 VALUES(22421, 29172, 'twenty-nine thousand one hundred seventy-two'); INSERT INTO t2 VALUES(22422, 43086, 'forty-three thousand eighty-six'); INSERT INTO t2 VALUES(22423, 48602, 'forty-eight thousand six hundred two'); INSERT INTO t2 VALUES(22424, 17942, 'seventeen thousand nine hundred forty-two'); INSERT INTO t2 VALUES(22425, 86946, 'eighty-six thousand nine hundred forty-six'); INSERT INTO t2 VALUES(22426, 28083, 'twenty-eight thousand eighty-three'); INSERT INTO t2 VALUES(22427, 25869, 'twenty-five thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(22428, 6886, 'six thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(22429, 55286, 'fifty-five thousand two hundred eighty-six'); INSERT INTO t2 VALUES(22430, 47264, 'forty-seven thousand two hundred sixty-four'); INSERT INTO t2 VALUES(22431, 3180, 'three thousand one hundred eighty'); INSERT INTO t2 VALUES(22432, 98092, 'ninety-eight thousand ninety-two'); INSERT INTO t2 VALUES(22433, 90141, 'ninety thousand one hundred forty-one'); INSERT INTO t2 VALUES(22434, 57581, 'fifty-seven thousand five hundred eighty-one'); INSERT INTO t2 VALUES(22435, 12239, 'twelve thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(22436, 30778, 'thirty thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(22437, 74100, 'seventy-four thousand one hundred'); INSERT INTO t2 VALUES(22438, 12810, 'twelve thousand eight hundred ten'); INSERT INTO t2 VALUES(22439, 65540, 'sixty-five thousand five hundred forty'); INSERT INTO t2 VALUES(22440, 32744, 'thirty-two thousand seven hundred forty-four'); INSERT INTO t2 VALUES(22441, 41062, 'forty-one thousand sixty-two'); INSERT INTO t2 VALUES(22442, 30471, 'thirty thousand four hundred seventy-one'); INSERT INTO t2 VALUES(22443, 27794, 'twenty-seven thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(22444, 56417, 'fifty-six thousand four hundred seventeen'); INSERT INTO t2 VALUES(22445, 4596, 'four thousand five hundred ninety-six'); INSERT INTO t2 VALUES(22446, 57387, 'fifty-seven thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(22447, 907, 'nine hundred seven'); INSERT INTO t2 VALUES(22448, 81107, 'eighty-one thousand one hundred seven'); INSERT INTO t2 VALUES(22449, 22607, 'twenty-two thousand six hundred seven'); INSERT INTO t2 VALUES(22450, 6645, 'six thousand six hundred forty-five'); INSERT INTO t2 VALUES(22451, 65171, 'sixty-five thousand one hundred seventy-one'); INSERT INTO t2 VALUES(22452, 77201, 'seventy-seven thousand two hundred one'); INSERT INTO t2 VALUES(22453, 96260, 'ninety-six thousand two hundred sixty'); INSERT INTO t2 VALUES(22454, 4800, 'four thousand eight hundred'); INSERT INTO t2 VALUES(22455, 46822, 'forty-six thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(22456, 34151, 'thirty-four thousand one hundred fifty-one'); INSERT INTO t2 VALUES(22457, 87858, 'eighty-seven thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(22458, 81437, 'eighty-one thousand four hundred thirty-seven'); INSERT INTO t2 VALUES(22459, 37041, 'thirty-seven thousand forty-one'); INSERT INTO t2 VALUES(22460, 43433, 'forty-three thousand four hundred thirty-three'); INSERT INTO t2 VALUES(22461, 62264, 'sixty-two thousand two hundred sixty-four'); INSERT INTO t2 VALUES(22462, 19210, 'nineteen thousand two hundred ten'); INSERT INTO t2 VALUES(22463, 29407, 'twenty-nine thousand four hundred seven'); INSERT INTO t2 VALUES(22464, 6829, 'six thousand eight hundred twenty-nine'); INSERT INTO t2 VALUES(22465, 79493, 'seventy-nine thousand four hundred ninety-three'); INSERT INTO t2 VALUES(22466, 64460, 'sixty-four thousand four hundred sixty'); INSERT INTO t2 VALUES(22467, 4376, 'four thousand three hundred seventy-six'); INSERT INTO t2 VALUES(22468, 42564, 'forty-two thousand five hundred sixty-four'); INSERT INTO t2 VALUES(22469, 63570, 'sixty-three thousand five hundred seventy'); INSERT INTO t2 VALUES(22470, 15802, 'fifteen thousand eight hundred two'); INSERT INTO t2 VALUES(22471, 45518, 'forty-five thousand five hundred eighteen'); INSERT INTO t2 VALUES(22472, 68015, 'sixty-eight thousand fifteen'); INSERT INTO t2 VALUES(22473, 92654, 'ninety-two thousand six hundred fifty-four'); INSERT INTO t2 VALUES(22474, 7576, 'seven thousand five hundred seventy-six'); INSERT INTO t2 VALUES(22475, 24404, 'twenty-four thousand four hundred four'); INSERT INTO t2 VALUES(22476, 21253, 'twenty-one thousand two hundred fifty-three'); INSERT INTO t2 VALUES(22477, 72234, 'seventy-two thousand two hundred thirty-four'); INSERT INTO t2 VALUES(22478, 21266, 'twenty-one thousand two hundred sixty-six'); INSERT INTO t2 VALUES(22479, 13822, 'thirteen thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(22480, 20035, 'twenty thousand thirty-five'); INSERT INTO t2 VALUES(22481, 86539, 'eighty-six thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(22482, 98016, 'ninety-eight thousand sixteen'); INSERT INTO t2 VALUES(22483, 19081, 'nineteen thousand eighty-one'); INSERT INTO t2 VALUES(22484, 42285, 'forty-two thousand two hundred eighty-five'); INSERT INTO t2 VALUES(22485, 6786, 'six thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(22486, 8017, 'eight thousand seventeen'); INSERT INTO t2 VALUES(22487, 40663, 'forty thousand six hundred sixty-three'); INSERT INTO t2 VALUES(22488, 64819, 'sixty-four thousand eight hundred nineteen'); INSERT INTO t2 VALUES(22489, 71485, 'seventy-one thousand four hundred eighty-five'); INSERT INTO t2 VALUES(22490, 20107, 'twenty thousand one hundred seven'); INSERT INTO t2 VALUES(22491, 64211, 'sixty-four thousand two hundred eleven'); INSERT INTO t2 VALUES(22492, 42281, 'forty-two thousand two hundred eighty-one'); INSERT INTO t2 VALUES(22493, 15844, 'fifteen thousand eight hundred forty-four'); INSERT INTO t2 VALUES(22494, 56296, 'fifty-six thousand two hundred ninety-six'); INSERT INTO t2 VALUES(22495, 14693, 'fourteen thousand six hundred ninety-three'); INSERT INTO t2 VALUES(22496, 78055, 'seventy-eight thousand fifty-five'); INSERT INTO t2 VALUES(22497, 23911, 'twenty-three thousand nine hundred eleven'); INSERT INTO t2 VALUES(22498, 35824, 'thirty-five thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(22499, 11405, 'eleven thousand four hundred five'); INSERT INTO t2 VALUES(22500, 85625, 'eighty-five thousand six hundred twenty-five'); INSERT INTO t2 VALUES(22501, 80429, 'eighty thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(22502, 44783, 'forty-four thousand seven hundred eighty-three'); INSERT INTO t2 VALUES(22503, 56005, 'fifty-six thousand five'); INSERT INTO t2 VALUES(22504, 69813, 'sixty-nine thousand eight hundred thirteen'); INSERT INTO t2 VALUES(22505, 40183, 'forty thousand one hundred eighty-three'); INSERT INTO t2 VALUES(22506, 16055, 'sixteen thousand fifty-five'); INSERT INTO t2 VALUES(22507, 77031, 'seventy-seven thousand thirty-one'); INSERT INTO t2 VALUES(22508, 90278, 'ninety thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(22509, 45414, 'forty-five thousand four hundred fourteen'); INSERT INTO t2 VALUES(22510, 39654, 'thirty-nine thousand six hundred fifty-four'); INSERT INTO t2 VALUES(22511, 19673, 'nineteen thousand six hundred seventy-three'); INSERT INTO t2 VALUES(22512, 70631, 'seventy thousand six hundred thirty-one'); INSERT INTO t2 VALUES(22513, 55329, 'fifty-five thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(22514, 516, 'five hundred sixteen'); INSERT INTO t2 VALUES(22515, 79159, 'seventy-nine thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(22516, 7658, 'seven thousand six hundred fifty-eight'); INSERT INTO t2 VALUES(22517, 38668, 'thirty-eight thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(22518, 53385, 'fifty-three thousand three hundred eighty-five'); INSERT INTO t2 VALUES(22519, 50034, 'fifty thousand thirty-four'); INSERT INTO t2 VALUES(22520, 65668, 'sixty-five thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(22521, 84646, 'eighty-four thousand six hundred forty-six'); INSERT INTO t2 VALUES(22522, 52564, 'fifty-two thousand five hundred sixty-four'); INSERT INTO t2 VALUES(22523, 10899, 'ten thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(22524, 42573, 'forty-two thousand five hundred seventy-three'); INSERT INTO t2 VALUES(22525, 38401, 'thirty-eight thousand four hundred one'); INSERT INTO t2 VALUES(22526, 88565, 'eighty-eight thousand five hundred sixty-five'); INSERT INTO t2 VALUES(22527, 381, 'three hundred eighty-one'); INSERT INTO t2 VALUES(22528, 21216, 'twenty-one thousand two hundred sixteen'); INSERT INTO t2 VALUES(22529, 95817, 'ninety-five thousand eight hundred seventeen'); INSERT INTO t2 VALUES(22530, 1165, 'one thousand one hundred sixty-five'); INSERT INTO t2 VALUES(22531, 53861, 'fifty-three thousand eight hundred sixty-one'); INSERT INTO t2 VALUES(22532, 50490, 'fifty thousand four hundred ninety'); INSERT INTO t2 VALUES(22533, 25127, 'twenty-five thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(22534, 15595, 'fifteen thousand five hundred ninety-five'); INSERT INTO t2 VALUES(22535, 84808, 'eighty-four thousand eight hundred eight'); INSERT INTO t2 VALUES(22536, 9311, 'nine thousand three hundred eleven'); INSERT INTO t2 VALUES(22537, 53187, 'fifty-three thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(22538, 45109, 'forty-five thousand one hundred nine'); INSERT INTO t2 VALUES(22539, 98859, 'ninety-eight thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(22540, 30692, 'thirty thousand six hundred ninety-two'); INSERT INTO t2 VALUES(22541, 56062, 'fifty-six thousand sixty-two'); INSERT INTO t2 VALUES(22542, 18326, 'eighteen thousand three hundred twenty-six'); INSERT INTO t2 VALUES(22543, 68792, 'sixty-eight thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(22544, 77571, 'seventy-seven thousand five hundred seventy-one'); INSERT INTO t2 VALUES(22545, 47630, 'forty-seven thousand six hundred thirty'); INSERT INTO t2 VALUES(22546, 35447, 'thirty-five thousand four hundred forty-seven'); INSERT INTO t2 VALUES(22547, 92822, 'ninety-two thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(22548, 4965, 'four thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(22549, 22923, 'twenty-two thousand nine hundred twenty-three'); INSERT INTO t2 VALUES(22550, 54997, 'fifty-four thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(22551, 76657, 'seventy-six thousand six hundred fifty-seven'); INSERT INTO t2 VALUES(22552, 61704, 'sixty-one thousand seven hundred four'); INSERT INTO t2 VALUES(22553, 6399, 'six thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(22554, 87246, 'eighty-seven thousand two hundred forty-six'); INSERT INTO t2 VALUES(22555, 70422, 'seventy thousand four hundred twenty-two'); INSERT INTO t2 VALUES(22556, 87675, 'eighty-seven thousand six hundred seventy-five'); INSERT INTO t2 VALUES(22557, 73009, 'seventy-three thousand nine'); INSERT INTO t2 VALUES(22558, 71043, 'seventy-one thousand forty-three'); INSERT INTO t2 VALUES(22559, 24841, 'twenty-four thousand eight hundred forty-one'); INSERT INTO t2 VALUES(22560, 72324, 'seventy-two thousand three hundred twenty-four'); INSERT INTO t2 VALUES(22561, 1343, 'one thousand three hundred forty-three'); INSERT INTO t2 VALUES(22562, 96980, 'ninety-six thousand nine hundred eighty'); INSERT INTO t2 VALUES(22563, 46845, 'forty-six thousand eight hundred forty-five'); INSERT INTO t2 VALUES(22564, 12364, 'twelve thousand three hundred sixty-four'); INSERT INTO t2 VALUES(22565, 88731, 'eighty-eight thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(22566, 80641, 'eighty thousand six hundred forty-one'); INSERT INTO t2 VALUES(22567, 13653, 'thirteen thousand six hundred fifty-three'); INSERT INTO t2 VALUES(22568, 96138, 'ninety-six thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(22569, 16727, 'sixteen thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(22570, 32793, 'thirty-two thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(22571, 14371, 'fourteen thousand three hundred seventy-one'); INSERT INTO t2 VALUES(22572, 45857, 'forty-five thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(22573, 6766, 'six thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(22574, 64805, 'sixty-four thousand eight hundred five'); INSERT INTO t2 VALUES(22575, 13462, 'thirteen thousand four hundred sixty-two'); INSERT INTO t2 VALUES(22576, 23840, 'twenty-three thousand eight hundred forty'); INSERT INTO t2 VALUES(22577, 39545, 'thirty-nine thousand five hundred forty-five'); INSERT INTO t2 VALUES(22578, 15053, 'fifteen thousand fifty-three'); INSERT INTO t2 VALUES(22579, 15590, 'fifteen thousand five hundred ninety'); INSERT INTO t2 VALUES(22580, 87021, 'eighty-seven thousand twenty-one'); INSERT INTO t2 VALUES(22581, 64698, 'sixty-four thousand six hundred ninety-eight'); INSERT INTO t2 VALUES(22582, 75271, 'seventy-five thousand two hundred seventy-one'); INSERT INTO t2 VALUES(22583, 65984, 'sixty-five thousand nine hundred eighty-four'); INSERT INTO t2 VALUES(22584, 21130, 'twenty-one thousand one hundred thirty'); INSERT INTO t2 VALUES(22585, 35160, 'thirty-five thousand one hundred sixty'); INSERT INTO t2 VALUES(22586, 87942, 'eighty-seven thousand nine hundred forty-two'); INSERT INTO t2 VALUES(22587, 85332, 'eighty-five thousand three hundred thirty-two'); INSERT INTO t2 VALUES(22588, 88219, 'eighty-eight thousand two hundred nineteen'); INSERT INTO t2 VALUES(22589, 99848, 'ninety-nine thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(22590, 30292, 'thirty thousand two hundred ninety-two'); INSERT INTO t2 VALUES(22591, 57879, 'fifty-seven thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(22592, 56974, 'fifty-six thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(22593, 27398, 'twenty-seven thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(22594, 95470, 'ninety-five thousand four hundred seventy'); INSERT INTO t2 VALUES(22595, 3801, 'three thousand eight hundred one'); INSERT INTO t2 VALUES(22596, 69492, 'sixty-nine thousand four hundred ninety-two'); INSERT INTO t2 VALUES(22597, 32582, 'thirty-two thousand five hundred eighty-two'); INSERT INTO t2 VALUES(22598, 42082, 'forty-two thousand eighty-two'); INSERT INTO t2 VALUES(22599, 84096, 'eighty-four thousand ninety-six'); INSERT INTO t2 VALUES(22600, 91235, 'ninety-one thousand two hundred thirty-five'); INSERT INTO t2 VALUES(22601, 68877, 'sixty-eight thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(22602, 75178, 'seventy-five thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(22603, 27786, 'twenty-seven thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(22604, 14675, 'fourteen thousand six hundred seventy-five'); INSERT INTO t2 VALUES(22605, 44198, 'forty-four thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(22606, 64766, 'sixty-four thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(22607, 57594, 'fifty-seven thousand five hundred ninety-four'); INSERT INTO t2 VALUES(22608, 25195, 'twenty-five thousand one hundred ninety-five'); INSERT INTO t2 VALUES(22609, 78269, 'seventy-eight thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(22610, 12876, 'twelve thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(22611, 70858, 'seventy thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(22612, 8704, 'eight thousand seven hundred four'); INSERT INTO t2 VALUES(22613, 77585, 'seventy-seven thousand five hundred eighty-five'); INSERT INTO t2 VALUES(22614, 13116, 'thirteen thousand one hundred sixteen'); INSERT INTO t2 VALUES(22615, 32525, 'thirty-two thousand five hundred twenty-five'); INSERT INTO t2 VALUES(22616, 87846, 'eighty-seven thousand eight hundred forty-six'); INSERT INTO t2 VALUES(22617, 42320, 'forty-two thousand three hundred twenty'); INSERT INTO t2 VALUES(22618, 75749, 'seventy-five thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(22619, 91169, 'ninety-one thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(22620, 57533, 'fifty-seven thousand five hundred thirty-three'); INSERT INTO t2 VALUES(22621, 28429, 'twenty-eight thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(22622, 30517, 'thirty thousand five hundred seventeen'); INSERT INTO t2 VALUES(22623, 96617, 'ninety-six thousand six hundred seventeen'); INSERT INTO t2 VALUES(22624, 24449, 'twenty-four thousand four hundred forty-nine'); INSERT INTO t2 VALUES(22625, 84461, 'eighty-four thousand four hundred sixty-one'); INSERT INTO t2 VALUES(22626, 91063, 'ninety-one thousand sixty-three'); INSERT INTO t2 VALUES(22627, 38957, 'thirty-eight thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(22628, 49516, 'forty-nine thousand five hundred sixteen'); INSERT INTO t2 VALUES(22629, 78211, 'seventy-eight thousand two hundred eleven'); INSERT INTO t2 VALUES(22630, 31370, 'thirty-one thousand three hundred seventy'); INSERT INTO t2 VALUES(22631, 88630, 'eighty-eight thousand six hundred thirty'); INSERT INTO t2 VALUES(22632, 29902, 'twenty-nine thousand nine hundred two'); INSERT INTO t2 VALUES(22633, 25505, 'twenty-five thousand five hundred five'); INSERT INTO t2 VALUES(22634, 53570, 'fifty-three thousand five hundred seventy'); INSERT INTO t2 VALUES(22635, 53582, 'fifty-three thousand five hundred eighty-two'); INSERT INTO t2 VALUES(22636, 29462, 'twenty-nine thousand four hundred sixty-two'); INSERT INTO t2 VALUES(22637, 37866, 'thirty-seven thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(22638, 21474, 'twenty-one thousand four hundred seventy-four'); INSERT INTO t2 VALUES(22639, 52971, 'fifty-two thousand nine hundred seventy-one'); INSERT INTO t2 VALUES(22640, 70905, 'seventy thousand nine hundred five'); INSERT INTO t2 VALUES(22641, 83229, 'eighty-three thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(22642, 79718, 'seventy-nine thousand seven hundred eighteen'); INSERT INTO t2 VALUES(22643, 49910, 'forty-nine thousand nine hundred ten'); INSERT INTO t2 VALUES(22644, 56269, 'fifty-six thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(22645, 73311, 'seventy-three thousand three hundred eleven'); INSERT INTO t2 VALUES(22646, 65921, 'sixty-five thousand nine hundred twenty-one'); INSERT INTO t2 VALUES(22647, 20012, 'twenty thousand twelve'); INSERT INTO t2 VALUES(22648, 61431, 'sixty-one thousand four hundred thirty-one'); INSERT INTO t2 VALUES(22649, 8282, 'eight thousand two hundred eighty-two'); INSERT INTO t2 VALUES(22650, 86294, 'eighty-six thousand two hundred ninety-four'); INSERT INTO t2 VALUES(22651, 4933, 'four thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(22652, 75845, 'seventy-five thousand eight hundred forty-five'); INSERT INTO t2 VALUES(22653, 37304, 'thirty-seven thousand three hundred four'); INSERT INTO t2 VALUES(22654, 11567, 'eleven thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(22655, 19968, 'nineteen thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(22656, 36357, 'thirty-six thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(22657, 48974, 'forty-eight thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(22658, 16701, 'sixteen thousand seven hundred one'); INSERT INTO t2 VALUES(22659, 96936, 'ninety-six thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(22660, 96704, 'ninety-six thousand seven hundred four'); INSERT INTO t2 VALUES(22661, 56132, 'fifty-six thousand one hundred thirty-two'); INSERT INTO t2 VALUES(22662, 85705, 'eighty-five thousand seven hundred five'); INSERT INTO t2 VALUES(22663, 44559, 'forty-four thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(22664, 61115, 'sixty-one thousand one hundred fifteen'); INSERT INTO t2 VALUES(22665, 76535, 'seventy-six thousand five hundred thirty-five'); INSERT INTO t2 VALUES(22666, 49746, 'forty-nine thousand seven hundred forty-six'); INSERT INTO t2 VALUES(22667, 81703, 'eighty-one thousand seven hundred three'); INSERT INTO t2 VALUES(22668, 99890, 'ninety-nine thousand eight hundred ninety'); INSERT INTO t2 VALUES(22669, 3305, 'three thousand three hundred five'); INSERT INTO t2 VALUES(22670, 13818, 'thirteen thousand eight hundred eighteen'); INSERT INTO t2 VALUES(22671, 18036, 'eighteen thousand thirty-six'); INSERT INTO t2 VALUES(22672, 90569, 'ninety thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(22673, 41553, 'forty-one thousand five hundred fifty-three'); INSERT INTO t2 VALUES(22674, 23961, 'twenty-three thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(22675, 6125, 'six thousand one hundred twenty-five'); INSERT INTO t2 VALUES(22676, 15828, 'fifteen thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(22677, 28117, 'twenty-eight thousand one hundred seventeen'); INSERT INTO t2 VALUES(22678, 36107, 'thirty-six thousand one hundred seven'); INSERT INTO t2 VALUES(22679, 37818, 'thirty-seven thousand eight hundred eighteen'); INSERT INTO t2 VALUES(22680, 16647, 'sixteen thousand six hundred forty-seven'); INSERT INTO t2 VALUES(22681, 47321, 'forty-seven thousand three hundred twenty-one'); INSERT INTO t2 VALUES(22682, 12129, 'twelve thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(22683, 65834, 'sixty-five thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(22684, 82125, 'eighty-two thousand one hundred twenty-five'); INSERT INTO t2 VALUES(22685, 11331, 'eleven thousand three hundred thirty-one'); INSERT INTO t2 VALUES(22686, 19893, 'nineteen thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(22687, 71576, 'seventy-one thousand five hundred seventy-six'); INSERT INTO t2 VALUES(22688, 37467, 'thirty-seven thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(22689, 63848, 'sixty-three thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(22690, 80468, 'eighty thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(22691, 68487, 'sixty-eight thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(22692, 19796, 'nineteen thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(22693, 87706, 'eighty-seven thousand seven hundred six'); INSERT INTO t2 VALUES(22694, 49653, 'forty-nine thousand six hundred fifty-three'); INSERT INTO t2 VALUES(22695, 9824, 'nine thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(22696, 53907, 'fifty-three thousand nine hundred seven'); INSERT INTO t2 VALUES(22697, 89329, 'eighty-nine thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(22698, 8588, 'eight thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(22699, 25857, 'twenty-five thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(22700, 79112, 'seventy-nine thousand one hundred twelve'); INSERT INTO t2 VALUES(22701, 8040, 'eight thousand forty'); INSERT INTO t2 VALUES(22702, 95478, 'ninety-five thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(22703, 48853, 'forty-eight thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(22704, 32132, 'thirty-two thousand one hundred thirty-two'); INSERT INTO t2 VALUES(22705, 18797, 'eighteen thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(22706, 28030, 'twenty-eight thousand thirty'); INSERT INTO t2 VALUES(22707, 1323, 'one thousand three hundred twenty-three'); INSERT INTO t2 VALUES(22708, 30808, 'thirty thousand eight hundred eight'); INSERT INTO t2 VALUES(22709, 6079, 'six thousand seventy-nine'); INSERT INTO t2 VALUES(22710, 46536, 'forty-six thousand five hundred thirty-six'); INSERT INTO t2 VALUES(22711, 76287, 'seventy-six thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(22712, 57813, 'fifty-seven thousand eight hundred thirteen'); INSERT INTO t2 VALUES(22713, 62394, 'sixty-two thousand three hundred ninety-four'); INSERT INTO t2 VALUES(22714, 50309, 'fifty thousand three hundred nine'); INSERT INTO t2 VALUES(22715, 46511, 'forty-six thousand five hundred eleven'); INSERT INTO t2 VALUES(22716, 4176, 'four thousand one hundred seventy-six'); INSERT INTO t2 VALUES(22717, 2166, 'two thousand one hundred sixty-six'); INSERT INTO t2 VALUES(22718, 60138, 'sixty thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(22719, 47204, 'forty-seven thousand two hundred four'); INSERT INTO t2 VALUES(22720, 5887, 'five thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(22721, 10844, 'ten thousand eight hundred forty-four'); INSERT INTO t2 VALUES(22722, 91767, 'ninety-one thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(22723, 65745, 'sixty-five thousand seven hundred forty-five'); INSERT INTO t2 VALUES(22724, 30415, 'thirty thousand four hundred fifteen'); INSERT INTO t2 VALUES(22725, 76189, 'seventy-six thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(22726, 92590, 'ninety-two thousand five hundred ninety'); INSERT INTO t2 VALUES(22727, 12506, 'twelve thousand five hundred six'); INSERT INTO t2 VALUES(22728, 39380, 'thirty-nine thousand three hundred eighty'); INSERT INTO t2 VALUES(22729, 25274, 'twenty-five thousand two hundred seventy-four'); INSERT INTO t2 VALUES(22730, 50617, 'fifty thousand six hundred seventeen'); INSERT INTO t2 VALUES(22731, 27056, 'twenty-seven thousand fifty-six'); INSERT INTO t2 VALUES(22732, 61862, 'sixty-one thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(22733, 96762, 'ninety-six thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(22734, 53827, 'fifty-three thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(22735, 61995, 'sixty-one thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(22736, 67195, 'sixty-seven thousand one hundred ninety-five'); INSERT INTO t2 VALUES(22737, 48008, 'forty-eight thousand eight'); INSERT INTO t2 VALUES(22738, 89985, 'eighty-nine thousand nine hundred eighty-five'); INSERT INTO t2 VALUES(22739, 435, 'four hundred thirty-five'); INSERT INTO t2 VALUES(22740, 19428, 'nineteen thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(22741, 85496, 'eighty-five thousand four hundred ninety-six'); INSERT INTO t2 VALUES(22742, 34992, 'thirty-four thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(22743, 24690, 'twenty-four thousand six hundred ninety'); INSERT INTO t2 VALUES(22744, 1355, 'one thousand three hundred fifty-five'); INSERT INTO t2 VALUES(22745, 29772, 'twenty-nine thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(22746, 39939, 'thirty-nine thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(22747, 98514, 'ninety-eight thousand five hundred fourteen'); INSERT INTO t2 VALUES(22748, 21934, 'twenty-one thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(22749, 46496, 'forty-six thousand four hundred ninety-six'); INSERT INTO t2 VALUES(22750, 76462, 'seventy-six thousand four hundred sixty-two'); INSERT INTO t2 VALUES(22751, 11453, 'eleven thousand four hundred fifty-three'); INSERT INTO t2 VALUES(22752, 70704, 'seventy thousand seven hundred four'); INSERT INTO t2 VALUES(22753, 58256, 'fifty-eight thousand two hundred fifty-six'); INSERT INTO t2 VALUES(22754, 79070, 'seventy-nine thousand seventy'); INSERT INTO t2 VALUES(22755, 67296, 'sixty-seven thousand two hundred ninety-six'); INSERT INTO t2 VALUES(22756, 66720, 'sixty-six thousand seven hundred twenty'); INSERT INTO t2 VALUES(22757, 16196, 'sixteen thousand one hundred ninety-six'); INSERT INTO t2 VALUES(22758, 53301, 'fifty-three thousand three hundred one'); INSERT INTO t2 VALUES(22759, 76635, 'seventy-six thousand six hundred thirty-five'); INSERT INTO t2 VALUES(22760, 57885, 'fifty-seven thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(22761, 51936, 'fifty-one thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(22762, 70894, 'seventy thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(22763, 49654, 'forty-nine thousand six hundred fifty-four'); INSERT INTO t2 VALUES(22764, 15893, 'fifteen thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(22765, 94215, 'ninety-four thousand two hundred fifteen'); INSERT INTO t2 VALUES(22766, 50589, 'fifty thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(22767, 27876, 'twenty-seven thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(22768, 80188, 'eighty thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(22769, 37257, 'thirty-seven thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(22770, 21780, 'twenty-one thousand seven hundred eighty'); INSERT INTO t2 VALUES(22771, 22190, 'twenty-two thousand one hundred ninety'); INSERT INTO t2 VALUES(22772, 41992, 'forty-one thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(22773, 76421, 'seventy-six thousand four hundred twenty-one'); INSERT INTO t2 VALUES(22774, 25668, 'twenty-five thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(22775, 74821, 'seventy-four thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(22776, 77595, 'seventy-seven thousand five hundred ninety-five'); INSERT INTO t2 VALUES(22777, 12547, 'twelve thousand five hundred forty-seven'); INSERT INTO t2 VALUES(22778, 15981, 'fifteen thousand nine hundred eighty-one'); INSERT INTO t2 VALUES(22779, 14650, 'fourteen thousand six hundred fifty'); INSERT INTO t2 VALUES(22780, 86030, 'eighty-six thousand thirty'); INSERT INTO t2 VALUES(22781, 8573, 'eight thousand five hundred seventy-three'); INSERT INTO t2 VALUES(22782, 83953, 'eighty-three thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(22783, 54106, 'fifty-four thousand one hundred six'); INSERT INTO t2 VALUES(22784, 65870, 'sixty-five thousand eight hundred seventy'); INSERT INTO t2 VALUES(22785, 99636, 'ninety-nine thousand six hundred thirty-six'); INSERT INTO t2 VALUES(22786, 81594, 'eighty-one thousand five hundred ninety-four'); INSERT INTO t2 VALUES(22787, 11533, 'eleven thousand five hundred thirty-three'); INSERT INTO t2 VALUES(22788, 38593, 'thirty-eight thousand five hundred ninety-three'); INSERT INTO t2 VALUES(22789, 1144, 'one thousand one hundred forty-four'); INSERT INTO t2 VALUES(22790, 28326, 'twenty-eight thousand three hundred twenty-six'); INSERT INTO t2 VALUES(22791, 25026, 'twenty-five thousand twenty-six'); INSERT INTO t2 VALUES(22792, 66295, 'sixty-six thousand two hundred ninety-five'); INSERT INTO t2 VALUES(22793, 8260, 'eight thousand two hundred sixty'); INSERT INTO t2 VALUES(22794, 45959, 'forty-five thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(22795, 81761, 'eighty-one thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(22796, 92331, 'ninety-two thousand three hundred thirty-one'); INSERT INTO t2 VALUES(22797, 972, 'nine hundred seventy-two'); INSERT INTO t2 VALUES(22798, 16129, 'sixteen thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(22799, 8741, 'eight thousand seven hundred forty-one'); INSERT INTO t2 VALUES(22800, 72896, 'seventy-two thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(22801, 47476, 'forty-seven thousand four hundred seventy-six'); INSERT INTO t2 VALUES(22802, 85425, 'eighty-five thousand four hundred twenty-five'); INSERT INTO t2 VALUES(22803, 83021, 'eighty-three thousand twenty-one'); INSERT INTO t2 VALUES(22804, 91693, 'ninety-one thousand six hundred ninety-three'); INSERT INTO t2 VALUES(22805, 59651, 'fifty-nine thousand six hundred fifty-one'); INSERT INTO t2 VALUES(22806, 49497, 'forty-nine thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(22807, 96922, 'ninety-six thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(22808, 46116, 'forty-six thousand one hundred sixteen'); INSERT INTO t2 VALUES(22809, 9276, 'nine thousand two hundred seventy-six'); INSERT INTO t2 VALUES(22810, 91549, 'ninety-one thousand five hundred forty-nine'); INSERT INTO t2 VALUES(22811, 26804, 'twenty-six thousand eight hundred four'); INSERT INTO t2 VALUES(22812, 79506, 'seventy-nine thousand five hundred six'); INSERT INTO t2 VALUES(22813, 54230, 'fifty-four thousand two hundred thirty'); INSERT INTO t2 VALUES(22814, 69856, 'sixty-nine thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(22815, 72125, 'seventy-two thousand one hundred twenty-five'); INSERT INTO t2 VALUES(22816, 3303, 'three thousand three hundred three'); INSERT INTO t2 VALUES(22817, 35150, 'thirty-five thousand one hundred fifty'); INSERT INTO t2 VALUES(22818, 23818, 'twenty-three thousand eight hundred eighteen'); INSERT INTO t2 VALUES(22819, 55339, 'fifty-five thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(22820, 38752, 'thirty-eight thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(22821, 80010, 'eighty thousand ten'); INSERT INTO t2 VALUES(22822, 26406, 'twenty-six thousand four hundred six'); INSERT INTO t2 VALUES(22823, 2166, 'two thousand one hundred sixty-six'); INSERT INTO t2 VALUES(22824, 3860, 'three thousand eight hundred sixty'); INSERT INTO t2 VALUES(22825, 71503, 'seventy-one thousand five hundred three'); INSERT INTO t2 VALUES(22826, 89306, 'eighty-nine thousand three hundred six'); INSERT INTO t2 VALUES(22827, 97412, 'ninety-seven thousand four hundred twelve'); INSERT INTO t2 VALUES(22828, 36496, 'thirty-six thousand four hundred ninety-six'); INSERT INTO t2 VALUES(22829, 48977, 'forty-eight thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(22830, 91389, 'ninety-one thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(22831, 73674, 'seventy-three thousand six hundred seventy-four'); INSERT INTO t2 VALUES(22832, 77394, 'seventy-seven thousand three hundred ninety-four'); INSERT INTO t2 VALUES(22833, 9022, 'nine thousand twenty-two'); INSERT INTO t2 VALUES(22834, 99427, 'ninety-nine thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(22835, 13674, 'thirteen thousand six hundred seventy-four'); INSERT INTO t2 VALUES(22836, 65124, 'sixty-five thousand one hundred twenty-four'); INSERT INTO t2 VALUES(22837, 85527, 'eighty-five thousand five hundred twenty-seven'); INSERT INTO t2 VALUES(22838, 69958, 'sixty-nine thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(22839, 45333, 'forty-five thousand three hundred thirty-three'); INSERT INTO t2 VALUES(22840, 91751, 'ninety-one thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(22841, 57515, 'fifty-seven thousand five hundred fifteen'); INSERT INTO t2 VALUES(22842, 58534, 'fifty-eight thousand five hundred thirty-four'); INSERT INTO t2 VALUES(22843, 24830, 'twenty-four thousand eight hundred thirty'); INSERT INTO t2 VALUES(22844, 4542, 'four thousand five hundred forty-two'); INSERT INTO t2 VALUES(22845, 72566, 'seventy-two thousand five hundred sixty-six'); INSERT INTO t2 VALUES(22846, 66017, 'sixty-six thousand seventeen'); INSERT INTO t2 VALUES(22847, 55165, 'fifty-five thousand one hundred sixty-five'); INSERT INTO t2 VALUES(22848, 79596, 'seventy-nine thousand five hundred ninety-six'); INSERT INTO t2 VALUES(22849, 1769, 'one thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(22850, 27029, 'twenty-seven thousand twenty-nine'); INSERT INTO t2 VALUES(22851, 16453, 'sixteen thousand four hundred fifty-three'); INSERT INTO t2 VALUES(22852, 21237, 'twenty-one thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(22853, 30819, 'thirty thousand eight hundred nineteen'); INSERT INTO t2 VALUES(22854, 52924, 'fifty-two thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(22855, 95885, 'ninety-five thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(22856, 63388, 'sixty-three thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(22857, 93858, 'ninety-three thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(22858, 80768, 'eighty thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(22859, 40403, 'forty thousand four hundred three'); INSERT INTO t2 VALUES(22860, 31916, 'thirty-one thousand nine hundred sixteen'); INSERT INTO t2 VALUES(22861, 39014, 'thirty-nine thousand fourteen'); INSERT INTO t2 VALUES(22862, 90400, 'ninety thousand four hundred'); INSERT INTO t2 VALUES(22863, 36661, 'thirty-six thousand six hundred sixty-one'); INSERT INTO t2 VALUES(22864, 59823, 'fifty-nine thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(22865, 80667, 'eighty thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(22866, 70332, 'seventy thousand three hundred thirty-two'); INSERT INTO t2 VALUES(22867, 52839, 'fifty-two thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(22868, 70809, 'seventy thousand eight hundred nine'); INSERT INTO t2 VALUES(22869, 77446, 'seventy-seven thousand four hundred forty-six'); INSERT INTO t2 VALUES(22870, 43213, 'forty-three thousand two hundred thirteen'); INSERT INTO t2 VALUES(22871, 54445, 'fifty-four thousand four hundred forty-five'); INSERT INTO t2 VALUES(22872, 44703, 'forty-four thousand seven hundred three'); INSERT INTO t2 VALUES(22873, 51092, 'fifty-one thousand ninety-two'); INSERT INTO t2 VALUES(22874, 30687, 'thirty thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(22875, 4231, 'four thousand two hundred thirty-one'); INSERT INTO t2 VALUES(22876, 60219, 'sixty thousand two hundred nineteen'); INSERT INTO t2 VALUES(22877, 44950, 'forty-four thousand nine hundred fifty'); INSERT INTO t2 VALUES(22878, 74259, 'seventy-four thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(22879, 95412, 'ninety-five thousand four hundred twelve'); INSERT INTO t2 VALUES(22880, 61892, 'sixty-one thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(22881, 25428, 'twenty-five thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(22882, 97444, 'ninety-seven thousand four hundred forty-four'); INSERT INTO t2 VALUES(22883, 26834, 'twenty-six thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(22884, 35597, 'thirty-five thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(22885, 50566, 'fifty thousand five hundred sixty-six'); INSERT INTO t2 VALUES(22886, 69857, 'sixty-nine thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(22887, 92753, 'ninety-two thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(22888, 68584, 'sixty-eight thousand five hundred eighty-four'); INSERT INTO t2 VALUES(22889, 53835, 'fifty-three thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(22890, 37172, 'thirty-seven thousand one hundred seventy-two'); INSERT INTO t2 VALUES(22891, 86737, 'eighty-six thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(22892, 40891, 'forty thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(22893, 7585, 'seven thousand five hundred eighty-five'); INSERT INTO t2 VALUES(22894, 52351, 'fifty-two thousand three hundred fifty-one'); INSERT INTO t2 VALUES(22895, 44100, 'forty-four thousand one hundred'); INSERT INTO t2 VALUES(22896, 69309, 'sixty-nine thousand three hundred nine'); INSERT INTO t2 VALUES(22897, 12446, 'twelve thousand four hundred forty-six'); INSERT INTO t2 VALUES(22898, 94491, 'ninety-four thousand four hundred ninety-one'); INSERT INTO t2 VALUES(22899, 56215, 'fifty-six thousand two hundred fifteen'); INSERT INTO t2 VALUES(22900, 90637, 'ninety thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(22901, 7853, 'seven thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(22902, 61270, 'sixty-one thousand two hundred seventy'); INSERT INTO t2 VALUES(22903, 29492, 'twenty-nine thousand four hundred ninety-two'); INSERT INTO t2 VALUES(22904, 48686, 'forty-eight thousand six hundred eighty-six'); INSERT INTO t2 VALUES(22905, 44041, 'forty-four thousand forty-one'); INSERT INTO t2 VALUES(22906, 12946, 'twelve thousand nine hundred forty-six'); INSERT INTO t2 VALUES(22907, 62708, 'sixty-two thousand seven hundred eight'); INSERT INTO t2 VALUES(22908, 51438, 'fifty-one thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(22909, 17330, 'seventeen thousand three hundred thirty'); INSERT INTO t2 VALUES(22910, 56953, 'fifty-six thousand nine hundred fifty-three'); INSERT INTO t2 VALUES(22911, 71972, 'seventy-one thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(22912, 10397, 'ten thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(22913, 52242, 'fifty-two thousand two hundred forty-two'); INSERT INTO t2 VALUES(22914, 97039, 'ninety-seven thousand thirty-nine'); INSERT INTO t2 VALUES(22915, 73760, 'seventy-three thousand seven hundred sixty'); INSERT INTO t2 VALUES(22916, 86967, 'eighty-six thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(22917, 18344, 'eighteen thousand three hundred forty-four'); INSERT INTO t2 VALUES(22918, 62047, 'sixty-two thousand forty-seven'); INSERT INTO t2 VALUES(22919, 31898, 'thirty-one thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(22920, 44725, 'forty-four thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(22921, 74150, 'seventy-four thousand one hundred fifty'); INSERT INTO t2 VALUES(22922, 95639, 'ninety-five thousand six hundred thirty-nine'); INSERT INTO t2 VALUES(22923, 89281, 'eighty-nine thousand two hundred eighty-one'); INSERT INTO t2 VALUES(22924, 42063, 'forty-two thousand sixty-three'); INSERT INTO t2 VALUES(22925, 19988, 'nineteen thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(22926, 82130, 'eighty-two thousand one hundred thirty'); INSERT INTO t2 VALUES(22927, 53395, 'fifty-three thousand three hundred ninety-five'); INSERT INTO t2 VALUES(22928, 57286, 'fifty-seven thousand two hundred eighty-six'); INSERT INTO t2 VALUES(22929, 17722, 'seventeen thousand seven hundred twenty-two'); INSERT INTO t2 VALUES(22930, 80735, 'eighty thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(22931, 77289, 'seventy-seven thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(22932, 98249, 'ninety-eight thousand two hundred forty-nine'); INSERT INTO t2 VALUES(22933, 46373, 'forty-six thousand three hundred seventy-three'); INSERT INTO t2 VALUES(22934, 90674, 'ninety thousand six hundred seventy-four'); INSERT INTO t2 VALUES(22935, 81182, 'eighty-one thousand one hundred eighty-two'); INSERT INTO t2 VALUES(22936, 18431, 'eighteen thousand four hundred thirty-one'); INSERT INTO t2 VALUES(22937, 28765, 'twenty-eight thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(22938, 2879, 'two thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(22939, 33744, 'thirty-three thousand seven hundred forty-four'); INSERT INTO t2 VALUES(22940, 77644, 'seventy-seven thousand six hundred forty-four'); INSERT INTO t2 VALUES(22941, 68473, 'sixty-eight thousand four hundred seventy-three'); INSERT INTO t2 VALUES(22942, 85705, 'eighty-five thousand seven hundred five'); INSERT INTO t2 VALUES(22943, 27411, 'twenty-seven thousand four hundred eleven'); INSERT INTO t2 VALUES(22944, 27622, 'twenty-seven thousand six hundred twenty-two'); INSERT INTO t2 VALUES(22945, 97346, 'ninety-seven thousand three hundred forty-six'); INSERT INTO t2 VALUES(22946, 99408, 'ninety-nine thousand four hundred eight'); INSERT INTO t2 VALUES(22947, 9867, 'nine thousand eight hundred sixty-seven'); INSERT INTO t2 VALUES(22948, 46306, 'forty-six thousand three hundred six'); INSERT INTO t2 VALUES(22949, 76594, 'seventy-six thousand five hundred ninety-four'); INSERT INTO t2 VALUES(22950, 12188, 'twelve thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(22951, 11604, 'eleven thousand six hundred four'); INSERT INTO t2 VALUES(22952, 15351, 'fifteen thousand three hundred fifty-one'); INSERT INTO t2 VALUES(22953, 74509, 'seventy-four thousand five hundred nine'); INSERT INTO t2 VALUES(22954, 63495, 'sixty-three thousand four hundred ninety-five'); INSERT INTO t2 VALUES(22955, 28987, 'twenty-eight thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(22956, 81720, 'eighty-one thousand seven hundred twenty'); INSERT INTO t2 VALUES(22957, 8213, 'eight thousand two hundred thirteen'); INSERT INTO t2 VALUES(22958, 66792, 'sixty-six thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(22959, 88436, 'eighty-eight thousand four hundred thirty-six'); INSERT INTO t2 VALUES(22960, 75240, 'seventy-five thousand two hundred forty'); INSERT INTO t2 VALUES(22961, 81797, 'eighty-one thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(22962, 12798, 'twelve thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(22963, 2271, 'two thousand two hundred seventy-one'); INSERT INTO t2 VALUES(22964, 76117, 'seventy-six thousand one hundred seventeen'); INSERT INTO t2 VALUES(22965, 22369, 'twenty-two thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(22966, 51683, 'fifty-one thousand six hundred eighty-three'); INSERT INTO t2 VALUES(22967, 2881, 'two thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(22968, 10453, 'ten thousand four hundred fifty-three'); INSERT INTO t2 VALUES(22969, 79244, 'seventy-nine thousand two hundred forty-four'); INSERT INTO t2 VALUES(22970, 44471, 'forty-four thousand four hundred seventy-one'); INSERT INTO t2 VALUES(22971, 78990, 'seventy-eight thousand nine hundred ninety'); INSERT INTO t2 VALUES(22972, 93235, 'ninety-three thousand two hundred thirty-five'); INSERT INTO t2 VALUES(22973, 41515, 'forty-one thousand five hundred fifteen'); INSERT INTO t2 VALUES(22974, 45959, 'forty-five thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(22975, 67278, 'sixty-seven thousand two hundred seventy-eight'); INSERT INTO t2 VALUES(22976, 8773, 'eight thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(22977, 35032, 'thirty-five thousand thirty-two'); INSERT INTO t2 VALUES(22978, 41934, 'forty-one thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(22979, 69223, 'sixty-nine thousand two hundred twenty-three'); INSERT INTO t2 VALUES(22980, 9680, 'nine thousand six hundred eighty'); INSERT INTO t2 VALUES(22981, 56174, 'fifty-six thousand one hundred seventy-four'); INSERT INTO t2 VALUES(22982, 63774, 'sixty-three thousand seven hundred seventy-four'); INSERT INTO t2 VALUES(22983, 29600, 'twenty-nine thousand six hundred'); INSERT INTO t2 VALUES(22984, 9767, 'nine thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(22985, 27676, 'twenty-seven thousand six hundred seventy-six'); INSERT INTO t2 VALUES(22986, 49857, 'forty-nine thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(22987, 22099, 'twenty-two thousand ninety-nine'); INSERT INTO t2 VALUES(22988, 45041, 'forty-five thousand forty-one'); INSERT INTO t2 VALUES(22989, 5922, 'five thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(22990, 42504, 'forty-two thousand five hundred four'); INSERT INTO t2 VALUES(22991, 64111, 'sixty-four thousand one hundred eleven'); INSERT INTO t2 VALUES(22992, 90671, 'ninety thousand six hundred seventy-one'); INSERT INTO t2 VALUES(22993, 96008, 'ninety-six thousand eight'); INSERT INTO t2 VALUES(22994, 75511, 'seventy-five thousand five hundred eleven'); INSERT INTO t2 VALUES(22995, 19239, 'nineteen thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(22996, 10052, 'ten thousand fifty-two'); INSERT INTO t2 VALUES(22997, 5846, 'five thousand eight hundred forty-six'); INSERT INTO t2 VALUES(22998, 32954, 'thirty-two thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(22999, 31536, 'thirty-one thousand five hundred thirty-six'); INSERT INTO t2 VALUES(23000, 51687, 'fifty-one thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(23001, 87535, 'eighty-seven thousand five hundred thirty-five'); INSERT INTO t2 VALUES(23002, 74485, 'seventy-four thousand four hundred eighty-five'); INSERT INTO t2 VALUES(23003, 10049, 'ten thousand forty-nine'); INSERT INTO t2 VALUES(23004, 7853, 'seven thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(23005, 14943, 'fourteen thousand nine hundred forty-three'); INSERT INTO t2 VALUES(23006, 83839, 'eighty-three thousand eight hundred thirty-nine'); INSERT INTO t2 VALUES(23007, 44199, 'forty-four thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(23008, 85503, 'eighty-five thousand five hundred three'); INSERT INTO t2 VALUES(23009, 43577, 'forty-three thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(23010, 42649, 'forty-two thousand six hundred forty-nine'); INSERT INTO t2 VALUES(23011, 68429, 'sixty-eight thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(23012, 53685, 'fifty-three thousand six hundred eighty-five'); INSERT INTO t2 VALUES(23013, 41878, 'forty-one thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(23014, 54519, 'fifty-four thousand five hundred nineteen'); INSERT INTO t2 VALUES(23015, 82833, 'eighty-two thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(23016, 36780, 'thirty-six thousand seven hundred eighty'); INSERT INTO t2 VALUES(23017, 24165, 'twenty-four thousand one hundred sixty-five'); INSERT INTO t2 VALUES(23018, 57477, 'fifty-seven thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(23019, 51711, 'fifty-one thousand seven hundred eleven'); INSERT INTO t2 VALUES(23020, 97385, 'ninety-seven thousand three hundred eighty-five'); INSERT INTO t2 VALUES(23021, 99814, 'ninety-nine thousand eight hundred fourteen'); INSERT INTO t2 VALUES(23022, 68742, 'sixty-eight thousand seven hundred forty-two'); INSERT INTO t2 VALUES(23023, 95500, 'ninety-five thousand five hundred'); INSERT INTO t2 VALUES(23024, 22495, 'twenty-two thousand four hundred ninety-five'); INSERT INTO t2 VALUES(23025, 44383, 'forty-four thousand three hundred eighty-three'); INSERT INTO t2 VALUES(23026, 86042, 'eighty-six thousand forty-two'); INSERT INTO t2 VALUES(23027, 41488, 'forty-one thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(23028, 39763, 'thirty-nine thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(23029, 87210, 'eighty-seven thousand two hundred ten'); INSERT INTO t2 VALUES(23030, 48895, 'forty-eight thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(23031, 22355, 'twenty-two thousand three hundred fifty-five'); INSERT INTO t2 VALUES(23032, 45702, 'forty-five thousand seven hundred two'); INSERT INTO t2 VALUES(23033, 34182, 'thirty-four thousand one hundred eighty-two'); INSERT INTO t2 VALUES(23034, 78428, 'seventy-eight thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(23035, 30354, 'thirty thousand three hundred fifty-four'); INSERT INTO t2 VALUES(23036, 34218, 'thirty-four thousand two hundred eighteen'); INSERT INTO t2 VALUES(23037, 10700, 'ten thousand seven hundred'); INSERT INTO t2 VALUES(23038, 9858, 'nine thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(23039, 40459, 'forty thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(23040, 50640, 'fifty thousand six hundred forty'); INSERT INTO t2 VALUES(23041, 15459, 'fifteen thousand four hundred fifty-nine'); INSERT INTO t2 VALUES(23042, 23395, 'twenty-three thousand three hundred ninety-five'); INSERT INTO t2 VALUES(23043, 97730, 'ninety-seven thousand seven hundred thirty'); INSERT INTO t2 VALUES(23044, 8721, 'eight thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(23045, 30962, 'thirty thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(23046, 66533, 'sixty-six thousand five hundred thirty-three'); INSERT INTO t2 VALUES(23047, 46713, 'forty-six thousand seven hundred thirteen'); INSERT INTO t2 VALUES(23048, 22230, 'twenty-two thousand two hundred thirty'); INSERT INTO t2 VALUES(23049, 5688, 'five thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(23050, 61020, 'sixty-one thousand twenty'); INSERT INTO t2 VALUES(23051, 59727, 'fifty-nine thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(23052, 86044, 'eighty-six thousand forty-four'); INSERT INTO t2 VALUES(23053, 12779, 'twelve thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(23054, 49, 'forty-nine'); INSERT INTO t2 VALUES(23055, 95573, 'ninety-five thousand five hundred seventy-three'); INSERT INTO t2 VALUES(23056, 3577, 'three thousand five hundred seventy-seven'); INSERT INTO t2 VALUES(23057, 61515, 'sixty-one thousand five hundred fifteen'); INSERT INTO t2 VALUES(23058, 61021, 'sixty-one thousand twenty-one'); INSERT INTO t2 VALUES(23059, 68684, 'sixty-eight thousand six hundred eighty-four'); INSERT INTO t2 VALUES(23060, 59819, 'fifty-nine thousand eight hundred nineteen'); INSERT INTO t2 VALUES(23061, 69086, 'sixty-nine thousand eighty-six'); INSERT INTO t2 VALUES(23062, 34650, 'thirty-four thousand six hundred fifty'); INSERT INTO t2 VALUES(23063, 55319, 'fifty-five thousand three hundred nineteen'); INSERT INTO t2 VALUES(23064, 55718, 'fifty-five thousand seven hundred eighteen'); INSERT INTO t2 VALUES(23065, 51828, 'fifty-one thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(23066, 61824, 'sixty-one thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(23067, 27957, 'twenty-seven thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(23068, 40053, 'forty thousand fifty-three'); INSERT INTO t2 VALUES(23069, 64049, 'sixty-four thousand forty-nine'); INSERT INTO t2 VALUES(23070, 85640, 'eighty-five thousand six hundred forty'); INSERT INTO t2 VALUES(23071, 20675, 'twenty thousand six hundred seventy-five'); INSERT INTO t2 VALUES(23072, 12096, 'twelve thousand ninety-six'); INSERT INTO t2 VALUES(23073, 65541, 'sixty-five thousand five hundred forty-one'); INSERT INTO t2 VALUES(23074, 68654, 'sixty-eight thousand six hundred fifty-four'); INSERT INTO t2 VALUES(23075, 83360, 'eighty-three thousand three hundred sixty'); INSERT INTO t2 VALUES(23076, 67788, 'sixty-seven thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(23077, 41714, 'forty-one thousand seven hundred fourteen'); INSERT INTO t2 VALUES(23078, 78767, 'seventy-eight thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(23079, 92042, 'ninety-two thousand forty-two'); INSERT INTO t2 VALUES(23080, 72495, 'seventy-two thousand four hundred ninety-five'); INSERT INTO t2 VALUES(23081, 39616, 'thirty-nine thousand six hundred sixteen'); INSERT INTO t2 VALUES(23082, 14636, 'fourteen thousand six hundred thirty-six'); INSERT INTO t2 VALUES(23083, 2885, 'two thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(23084, 29187, 'twenty-nine thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(23085, 27628, 'twenty-seven thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(23086, 63766, 'sixty-three thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(23087, 50074, 'fifty thousand seventy-four'); INSERT INTO t2 VALUES(23088, 44576, 'forty-four thousand five hundred seventy-six'); INSERT INTO t2 VALUES(23089, 99995, 'ninety-nine thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(23090, 14771, 'fourteen thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(23091, 28008, 'twenty-eight thousand eight'); INSERT INTO t2 VALUES(23092, 94786, 'ninety-four thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(23093, 35200, 'thirty-five thousand two hundred'); INSERT INTO t2 VALUES(23094, 283, 'two hundred eighty-three'); INSERT INTO t2 VALUES(23095, 66428, 'sixty-six thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(23096, 60029, 'sixty thousand twenty-nine'); INSERT INTO t2 VALUES(23097, 34878, 'thirty-four thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(23098, 84825, 'eighty-four thousand eight hundred twenty-five'); INSERT INTO t2 VALUES(23099, 21888, 'twenty-one thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(23100, 94021, 'ninety-four thousand twenty-one'); INSERT INTO t2 VALUES(23101, 30740, 'thirty thousand seven hundred forty'); INSERT INTO t2 VALUES(23102, 24113, 'twenty-four thousand one hundred thirteen'); INSERT INTO t2 VALUES(23103, 3818, 'three thousand eight hundred eighteen'); INSERT INTO t2 VALUES(23104, 63062, 'sixty-three thousand sixty-two'); INSERT INTO t2 VALUES(23105, 86277, 'eighty-six thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(23106, 25322, 'twenty-five thousand three hundred twenty-two'); INSERT INTO t2 VALUES(23107, 43668, 'forty-three thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(23108, 3952, 'three thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(23109, 70535, 'seventy thousand five hundred thirty-five'); INSERT INTO t2 VALUES(23110, 25918, 'twenty-five thousand nine hundred eighteen'); INSERT INTO t2 VALUES(23111, 27229, 'twenty-seven thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(23112, 48752, 'forty-eight thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(23113, 44881, 'forty-four thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(23114, 64414, 'sixty-four thousand four hundred fourteen'); INSERT INTO t2 VALUES(23115, 35939, 'thirty-five thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(23116, 23918, 'twenty-three thousand nine hundred eighteen'); INSERT INTO t2 VALUES(23117, 25125, 'twenty-five thousand one hundred twenty-five'); INSERT INTO t2 VALUES(23118, 12526, 'twelve thousand five hundred twenty-six'); INSERT INTO t2 VALUES(23119, 74712, 'seventy-four thousand seven hundred twelve'); INSERT INTO t2 VALUES(23120, 70777, 'seventy thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(23121, 91875, 'ninety-one thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(23122, 41314, 'forty-one thousand three hundred fourteen'); INSERT INTO t2 VALUES(23123, 9547, 'nine thousand five hundred forty-seven'); INSERT INTO t2 VALUES(23124, 37162, 'thirty-seven thousand one hundred sixty-two'); INSERT INTO t2 VALUES(23125, 51172, 'fifty-one thousand one hundred seventy-two'); INSERT INTO t2 VALUES(23126, 7064, 'seven thousand sixty-four'); INSERT INTO t2 VALUES(23127, 52566, 'fifty-two thousand five hundred sixty-six'); INSERT INTO t2 VALUES(23128, 39018, 'thirty-nine thousand eighteen'); INSERT INTO t2 VALUES(23129, 99950, 'ninety-nine thousand nine hundred fifty'); INSERT INTO t2 VALUES(23130, 73518, 'seventy-three thousand five hundred eighteen'); INSERT INTO t2 VALUES(23131, 28550, 'twenty-eight thousand five hundred fifty'); INSERT INTO t2 VALUES(23132, 94915, 'ninety-four thousand nine hundred fifteen'); INSERT INTO t2 VALUES(23133, 46027, 'forty-six thousand twenty-seven'); INSERT INTO t2 VALUES(23134, 61076, 'sixty-one thousand seventy-six'); INSERT INTO t2 VALUES(23135, 70354, 'seventy thousand three hundred fifty-four'); INSERT INTO t2 VALUES(23136, 70643, 'seventy thousand six hundred forty-three'); INSERT INTO t2 VALUES(23137, 71184, 'seventy-one thousand one hundred eighty-four'); INSERT INTO t2 VALUES(23138, 36771, 'thirty-six thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(23139, 41954, 'forty-one thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(23140, 49244, 'forty-nine thousand two hundred forty-four'); INSERT INTO t2 VALUES(23141, 28770, 'twenty-eight thousand seven hundred seventy'); INSERT INTO t2 VALUES(23142, 83008, 'eighty-three thousand eight'); INSERT INTO t2 VALUES(23143, 82772, 'eighty-two thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(23144, 3962, 'three thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(23145, 82433, 'eighty-two thousand four hundred thirty-three'); INSERT INTO t2 VALUES(23146, 64003, 'sixty-four thousand three'); INSERT INTO t2 VALUES(23147, 1353, 'one thousand three hundred fifty-three'); INSERT INTO t2 VALUES(23148, 41889, 'forty-one thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(23149, 49364, 'forty-nine thousand three hundred sixty-four'); INSERT INTO t2 VALUES(23150, 5333, 'five thousand three hundred thirty-three'); INSERT INTO t2 VALUES(23151, 62073, 'sixty-two thousand seventy-three'); INSERT INTO t2 VALUES(23152, 79364, 'seventy-nine thousand three hundred sixty-four'); INSERT INTO t2 VALUES(23153, 6326, 'six thousand three hundred twenty-six'); INSERT INTO t2 VALUES(23154, 74235, 'seventy-four thousand two hundred thirty-five'); INSERT INTO t2 VALUES(23155, 14801, 'fourteen thousand eight hundred one'); INSERT INTO t2 VALUES(23156, 12219, 'twelve thousand two hundred nineteen'); INSERT INTO t2 VALUES(23157, 91148, 'ninety-one thousand one hundred forty-eight'); INSERT INTO t2 VALUES(23158, 15650, 'fifteen thousand six hundred fifty'); INSERT INTO t2 VALUES(23159, 62682, 'sixty-two thousand six hundred eighty-two'); INSERT INTO t2 VALUES(23160, 64143, 'sixty-four thousand one hundred forty-three'); INSERT INTO t2 VALUES(23161, 60222, 'sixty thousand two hundred twenty-two'); INSERT INTO t2 VALUES(23162, 62003, 'sixty-two thousand three'); INSERT INTO t2 VALUES(23163, 7956, 'seven thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(23164, 89732, 'eighty-nine thousand seven hundred thirty-two'); INSERT INTO t2 VALUES(23165, 29260, 'twenty-nine thousand two hundred sixty'); INSERT INTO t2 VALUES(23166, 340, 'three hundred forty'); INSERT INTO t2 VALUES(23167, 20013, 'twenty thousand thirteen'); INSERT INTO t2 VALUES(23168, 50160, 'fifty thousand one hundred sixty'); INSERT INTO t2 VALUES(23169, 98632, 'ninety-eight thousand six hundred thirty-two'); INSERT INTO t2 VALUES(23170, 33961, 'thirty-three thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(23171, 13335, 'thirteen thousand three hundred thirty-five'); INSERT INTO t2 VALUES(23172, 12894, 'twelve thousand eight hundred ninety-four'); INSERT INTO t2 VALUES(23173, 58239, 'fifty-eight thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(23174, 70723, 'seventy thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(23175, 99321, 'ninety-nine thousand three hundred twenty-one'); INSERT INTO t2 VALUES(23176, 90602, 'ninety thousand six hundred two'); INSERT INTO t2 VALUES(23177, 72498, 'seventy-two thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(23178, 73856, 'seventy-three thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(23179, 60896, 'sixty thousand eight hundred ninety-six'); INSERT INTO t2 VALUES(23180, 26178, 'twenty-six thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(23181, 50638, 'fifty thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(23182, 42217, 'forty-two thousand two hundred seventeen'); INSERT INTO t2 VALUES(23183, 48850, 'forty-eight thousand eight hundred fifty'); INSERT INTO t2 VALUES(23184, 14551, 'fourteen thousand five hundred fifty-one'); INSERT INTO t2 VALUES(23185, 70040, 'seventy thousand forty'); INSERT INTO t2 VALUES(23186, 78640, 'seventy-eight thousand six hundred forty'); INSERT INTO t2 VALUES(23187, 15926, 'fifteen thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(23188, 93520, 'ninety-three thousand five hundred twenty'); INSERT INTO t2 VALUES(23189, 75962, 'seventy-five thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(23190, 73934, 'seventy-three thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(23191, 70159, 'seventy thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(23192, 13031, 'thirteen thousand thirty-one'); INSERT INTO t2 VALUES(23193, 52877, 'fifty-two thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(23194, 80595, 'eighty thousand five hundred ninety-five'); INSERT INTO t2 VALUES(23195, 84094, 'eighty-four thousand ninety-four'); INSERT INTO t2 VALUES(23196, 14341, 'fourteen thousand three hundred forty-one'); INSERT INTO t2 VALUES(23197, 45913, 'forty-five thousand nine hundred thirteen'); INSERT INTO t2 VALUES(23198, 77661, 'seventy-seven thousand six hundred sixty-one'); INSERT INTO t2 VALUES(23199, 36192, 'thirty-six thousand one hundred ninety-two'); INSERT INTO t2 VALUES(23200, 87079, 'eighty-seven thousand seventy-nine'); INSERT INTO t2 VALUES(23201, 55866, 'fifty-five thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(23202, 83091, 'eighty-three thousand ninety-one'); INSERT INTO t2 VALUES(23203, 60716, 'sixty thousand seven hundred sixteen'); INSERT INTO t2 VALUES(23204, 53476, 'fifty-three thousand four hundred seventy-six'); INSERT INTO t2 VALUES(23205, 54866, 'fifty-four thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(23206, 93785, 'ninety-three thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(23207, 12637, 'twelve thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(23208, 65905, 'sixty-five thousand nine hundred five'); INSERT INTO t2 VALUES(23209, 66465, 'sixty-six thousand four hundred sixty-five'); INSERT INTO t2 VALUES(23210, 15780, 'fifteen thousand seven hundred eighty'); INSERT INTO t2 VALUES(23211, 78610, 'seventy-eight thousand six hundred ten'); INSERT INTO t2 VALUES(23212, 77539, 'seventy-seven thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(23213, 16648, 'sixteen thousand six hundred forty-eight'); INSERT INTO t2 VALUES(23214, 39501, 'thirty-nine thousand five hundred one'); INSERT INTO t2 VALUES(23215, 87397, 'eighty-seven thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(23216, 48532, 'forty-eight thousand five hundred thirty-two'); INSERT INTO t2 VALUES(23217, 25608, 'twenty-five thousand six hundred eight'); INSERT INTO t2 VALUES(23218, 68758, 'sixty-eight thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(23219, 88549, 'eighty-eight thousand five hundred forty-nine'); INSERT INTO t2 VALUES(23220, 50415, 'fifty thousand four hundred fifteen'); INSERT INTO t2 VALUES(23221, 1315, 'one thousand three hundred fifteen'); INSERT INTO t2 VALUES(23222, 40435, 'forty thousand four hundred thirty-five'); INSERT INTO t2 VALUES(23223, 93417, 'ninety-three thousand four hundred seventeen'); INSERT INTO t2 VALUES(23224, 36041, 'thirty-six thousand forty-one'); INSERT INTO t2 VALUES(23225, 77042, 'seventy-seven thousand forty-two'); INSERT INTO t2 VALUES(23226, 65596, 'sixty-five thousand five hundred ninety-six'); INSERT INTO t2 VALUES(23227, 19594, 'nineteen thousand five hundred ninety-four'); INSERT INTO t2 VALUES(23228, 2365, 'two thousand three hundred sixty-five'); INSERT INTO t2 VALUES(23229, 10810, 'ten thousand eight hundred ten'); INSERT INTO t2 VALUES(23230, 1325, 'one thousand three hundred twenty-five'); INSERT INTO t2 VALUES(23231, 73187, 'seventy-three thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(23232, 24339, 'twenty-four thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(23233, 71648, 'seventy-one thousand six hundred forty-eight'); INSERT INTO t2 VALUES(23234, 30917, 'thirty thousand nine hundred seventeen'); INSERT INTO t2 VALUES(23235, 73703, 'seventy-three thousand seven hundred three'); INSERT INTO t2 VALUES(23236, 18596, 'eighteen thousand five hundred ninety-six'); INSERT INTO t2 VALUES(23237, 40060, 'forty thousand sixty'); INSERT INTO t2 VALUES(23238, 23659, 'twenty-three thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(23239, 36972, 'thirty-six thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(23240, 90048, 'ninety thousand forty-eight'); INSERT INTO t2 VALUES(23241, 43474, 'forty-three thousand four hundred seventy-four'); INSERT INTO t2 VALUES(23242, 5553, 'five thousand five hundred fifty-three'); INSERT INTO t2 VALUES(23243, 50968, 'fifty thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(23244, 25849, 'twenty-five thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(23245, 76173, 'seventy-six thousand one hundred seventy-three'); INSERT INTO t2 VALUES(23246, 93012, 'ninety-three thousand twelve'); INSERT INTO t2 VALUES(23247, 56171, 'fifty-six thousand one hundred seventy-one'); INSERT INTO t2 VALUES(23248, 34374, 'thirty-four thousand three hundred seventy-four'); INSERT INTO t2 VALUES(23249, 98205, 'ninety-eight thousand two hundred five'); INSERT INTO t2 VALUES(23250, 38686, 'thirty-eight thousand six hundred eighty-six'); INSERT INTO t2 VALUES(23251, 17743, 'seventeen thousand seven hundred forty-three'); INSERT INTO t2 VALUES(23252, 87661, 'eighty-seven thousand six hundred sixty-one'); INSERT INTO t2 VALUES(23253, 21120, 'twenty-one thousand one hundred twenty'); INSERT INTO t2 VALUES(23254, 83074, 'eighty-three thousand seventy-four'); INSERT INTO t2 VALUES(23255, 35249, 'thirty-five thousand two hundred forty-nine'); INSERT INTO t2 VALUES(23256, 26539, 'twenty-six thousand five hundred thirty-nine'); INSERT INTO t2 VALUES(23257, 82484, 'eighty-two thousand four hundred eighty-four'); INSERT INTO t2 VALUES(23258, 49268, 'forty-nine thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(23259, 1011, 'one thousand eleven'); INSERT INTO t2 VALUES(23260, 84316, 'eighty-four thousand three hundred sixteen'); INSERT INTO t2 VALUES(23261, 70974, 'seventy thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(23262, 84233, 'eighty-four thousand two hundred thirty-three'); INSERT INTO t2 VALUES(23263, 10520, 'ten thousand five hundred twenty'); INSERT INTO t2 VALUES(23264, 87044, 'eighty-seven thousand forty-four'); INSERT INTO t2 VALUES(23265, 97954, 'ninety-seven thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(23266, 45841, 'forty-five thousand eight hundred forty-one'); INSERT INTO t2 VALUES(23267, 22141, 'twenty-two thousand one hundred forty-one'); INSERT INTO t2 VALUES(23268, 14182, 'fourteen thousand one hundred eighty-two'); INSERT INTO t2 VALUES(23269, 98147, 'ninety-eight thousand one hundred forty-seven'); INSERT INTO t2 VALUES(23270, 36319, 'thirty-six thousand three hundred nineteen'); INSERT INTO t2 VALUES(23271, 70837, 'seventy thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(23272, 90692, 'ninety thousand six hundred ninety-two'); INSERT INTO t2 VALUES(23273, 67121, 'sixty-seven thousand one hundred twenty-one'); INSERT INTO t2 VALUES(23274, 28666, 'twenty-eight thousand six hundred sixty-six'); INSERT INTO t2 VALUES(23275, 33530, 'thirty-three thousand five hundred thirty'); INSERT INTO t2 VALUES(23276, 7183, 'seven thousand one hundred eighty-three'); INSERT INTO t2 VALUES(23277, 5236, 'five thousand two hundred thirty-six'); INSERT INTO t2 VALUES(23278, 80548, 'eighty thousand five hundred forty-eight'); INSERT INTO t2 VALUES(23279, 16777, 'sixteen thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(23280, 97967, 'ninety-seven thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(23281, 67165, 'sixty-seven thousand one hundred sixty-five'); INSERT INTO t2 VALUES(23282, 25256, 'twenty-five thousand two hundred fifty-six'); INSERT INTO t2 VALUES(23283, 15170, 'fifteen thousand one hundred seventy'); INSERT INTO t2 VALUES(23284, 9796, 'nine thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(23285, 76480, 'seventy-six thousand four hundred eighty'); INSERT INTO t2 VALUES(23286, 3630, 'three thousand six hundred thirty'); INSERT INTO t2 VALUES(23287, 28011, 'twenty-eight thousand eleven'); INSERT INTO t2 VALUES(23288, 21575, 'twenty-one thousand five hundred seventy-five'); INSERT INTO t2 VALUES(23289, 10048, 'ten thousand forty-eight'); INSERT INTO t2 VALUES(23290, 88933, 'eighty-eight thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(23291, 2812, 'two thousand eight hundred twelve'); INSERT INTO t2 VALUES(23292, 33735, 'thirty-three thousand seven hundred thirty-five'); INSERT INTO t2 VALUES(23293, 21127, 'twenty-one thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(23294, 14258, 'fourteen thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(23295, 43699, 'forty-three thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(23296, 32905, 'thirty-two thousand nine hundred five'); INSERT INTO t2 VALUES(23297, 21878, 'twenty-one thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(23298, 73355, 'seventy-three thousand three hundred fifty-five'); INSERT INTO t2 VALUES(23299, 29446, 'twenty-nine thousand four hundred forty-six'); INSERT INTO t2 VALUES(23300, 3401, 'three thousand four hundred one'); INSERT INTO t2 VALUES(23301, 27017, 'twenty-seven thousand seventeen'); INSERT INTO t2 VALUES(23302, 52191, 'fifty-two thousand one hundred ninety-one'); INSERT INTO t2 VALUES(23303, 38679, 'thirty-eight thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(23304, 77794, 'seventy-seven thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(23305, 87916, 'eighty-seven thousand nine hundred sixteen'); INSERT INTO t2 VALUES(23306, 47688, 'forty-seven thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(23307, 81647, 'eighty-one thousand six hundred forty-seven'); INSERT INTO t2 VALUES(23308, 4886, 'four thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(23309, 44796, 'forty-four thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(23310, 67938, 'sixty-seven thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(23311, 91025, 'ninety-one thousand twenty-five'); INSERT INTO t2 VALUES(23312, 72844, 'seventy-two thousand eight hundred forty-four'); INSERT INTO t2 VALUES(23313, 67287, 'sixty-seven thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(23314, 21271, 'twenty-one thousand two hundred seventy-one'); INSERT INTO t2 VALUES(23315, 96367, 'ninety-six thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(23316, 23512, 'twenty-three thousand five hundred twelve'); INSERT INTO t2 VALUES(23317, 90773, 'ninety thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(23318, 69436, 'sixty-nine thousand four hundred thirty-six'); INSERT INTO t2 VALUES(23319, 58555, 'fifty-eight thousand five hundred fifty-five'); INSERT INTO t2 VALUES(23320, 14073, 'fourteen thousand seventy-three'); INSERT INTO t2 VALUES(23321, 58627, 'fifty-eight thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(23322, 69549, 'sixty-nine thousand five hundred forty-nine'); INSERT INTO t2 VALUES(23323, 47929, 'forty-seven thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(23324, 89922, 'eighty-nine thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(23325, 29449, 'twenty-nine thousand four hundred forty-nine'); INSERT INTO t2 VALUES(23326, 37493, 'thirty-seven thousand four hundred ninety-three'); INSERT INTO t2 VALUES(23327, 74623, 'seventy-four thousand six hundred twenty-three'); INSERT INTO t2 VALUES(23328, 92064, 'ninety-two thousand sixty-four'); INSERT INTO t2 VALUES(23329, 44323, 'forty-four thousand three hundred twenty-three'); INSERT INTO t2 VALUES(23330, 63265, 'sixty-three thousand two hundred sixty-five'); INSERT INTO t2 VALUES(23331, 69513, 'sixty-nine thousand five hundred thirteen'); INSERT INTO t2 VALUES(23332, 32218, 'thirty-two thousand two hundred eighteen'); INSERT INTO t2 VALUES(23333, 95799, 'ninety-five thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(23334, 63059, 'sixty-three thousand fifty-nine'); INSERT INTO t2 VALUES(23335, 22578, 'twenty-two thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(23336, 64359, 'sixty-four thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(23337, 85406, 'eighty-five thousand four hundred six'); INSERT INTO t2 VALUES(23338, 23385, 'twenty-three thousand three hundred eighty-five'); INSERT INTO t2 VALUES(23339, 17516, 'seventeen thousand five hundred sixteen'); INSERT INTO t2 VALUES(23340, 63428, 'sixty-three thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(23341, 77530, 'seventy-seven thousand five hundred thirty'); INSERT INTO t2 VALUES(23342, 38638, 'thirty-eight thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(23343, 28771, 'twenty-eight thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(23344, 94593, 'ninety-four thousand five hundred ninety-three'); INSERT INTO t2 VALUES(23345, 49314, 'forty-nine thousand three hundred fourteen'); INSERT INTO t2 VALUES(23346, 14806, 'fourteen thousand eight hundred six'); INSERT INTO t2 VALUES(23347, 2977, 'two thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(23348, 68209, 'sixty-eight thousand two hundred nine'); INSERT INTO t2 VALUES(23349, 56244, 'fifty-six thousand two hundred forty-four'); INSERT INTO t2 VALUES(23350, 40404, 'forty thousand four hundred four'); INSERT INTO t2 VALUES(23351, 32329, 'thirty-two thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(23352, 51575, 'fifty-one thousand five hundred seventy-five'); INSERT INTO t2 VALUES(23353, 31710, 'thirty-one thousand seven hundred ten'); INSERT INTO t2 VALUES(23354, 89808, 'eighty-nine thousand eight hundred eight'); INSERT INTO t2 VALUES(23355, 55056, 'fifty-five thousand fifty-six'); INSERT INTO t2 VALUES(23356, 60341, 'sixty thousand three hundred forty-one'); INSERT INTO t2 VALUES(23357, 69529, 'sixty-nine thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(23358, 49484, 'forty-nine thousand four hundred eighty-four'); INSERT INTO t2 VALUES(23359, 46290, 'forty-six thousand two hundred ninety'); INSERT INTO t2 VALUES(23360, 9014, 'nine thousand fourteen'); INSERT INTO t2 VALUES(23361, 17870, 'seventeen thousand eight hundred seventy'); INSERT INTO t2 VALUES(23362, 20207, 'twenty thousand two hundred seven'); INSERT INTO t2 VALUES(23363, 96086, 'ninety-six thousand eighty-six'); INSERT INTO t2 VALUES(23364, 58840, 'fifty-eight thousand eight hundred forty'); INSERT INTO t2 VALUES(23365, 73828, 'seventy-three thousand eight hundred twenty-eight'); INSERT INTO t2 VALUES(23366, 26844, 'twenty-six thousand eight hundred forty-four'); INSERT INTO t2 VALUES(23367, 17427, 'seventeen thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(23368, 17354, 'seventeen thousand three hundred fifty-four'); INSERT INTO t2 VALUES(23369, 89537, 'eighty-nine thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(23370, 25912, 'twenty-five thousand nine hundred twelve'); INSERT INTO t2 VALUES(23371, 66085, 'sixty-six thousand eighty-five'); INSERT INTO t2 VALUES(23372, 65729, 'sixty-five thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(23373, 6498, 'six thousand four hundred ninety-eight'); INSERT INTO t2 VALUES(23374, 47987, 'forty-seven thousand nine hundred eighty-seven'); INSERT INTO t2 VALUES(23375, 35867, 'thirty-five thousand eight hundred sixty-seven'); INSERT INTO t2 VALUES(23376, 8285, 'eight thousand two hundred eighty-five'); INSERT INTO t2 VALUES(23377, 9778, 'nine thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(23378, 10338, 'ten thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(23379, 77276, 'seventy-seven thousand two hundred seventy-six'); INSERT INTO t2 VALUES(23380, 31120, 'thirty-one thousand one hundred twenty'); INSERT INTO t2 VALUES(23381, 8997, 'eight thousand nine hundred ninety-seven'); INSERT INTO t2 VALUES(23382, 9251, 'nine thousand two hundred fifty-one'); INSERT INTO t2 VALUES(23383, 18729, 'eighteen thousand seven hundred twenty-nine'); INSERT INTO t2 VALUES(23384, 24129, 'twenty-four thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(23385, 76296, 'seventy-six thousand two hundred ninety-six'); INSERT INTO t2 VALUES(23386, 59601, 'fifty-nine thousand six hundred one'); INSERT INTO t2 VALUES(23387, 48361, 'forty-eight thousand three hundred sixty-one'); INSERT INTO t2 VALUES(23388, 53964, 'fifty-three thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(23389, 89733, 'eighty-nine thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(23390, 90936, 'ninety thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(23391, 52230, 'fifty-two thousand two hundred thirty'); INSERT INTO t2 VALUES(23392, 30685, 'thirty thousand six hundred eighty-five'); INSERT INTO t2 VALUES(23393, 90448, 'ninety thousand four hundred forty-eight'); INSERT INTO t2 VALUES(23394, 95786, 'ninety-five thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(23395, 21699, 'twenty-one thousand six hundred ninety-nine'); INSERT INTO t2 VALUES(23396, 89012, 'eighty-nine thousand twelve'); INSERT INTO t2 VALUES(23397, 60818, 'sixty thousand eight hundred eighteen'); INSERT INTO t2 VALUES(23398, 78439, 'seventy-eight thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(23399, 34945, 'thirty-four thousand nine hundred forty-five'); INSERT INTO t2 VALUES(23400, 7363, 'seven thousand three hundred sixty-three'); INSERT INTO t2 VALUES(23401, 60322, 'sixty thousand three hundred twenty-two'); INSERT INTO t2 VALUES(23402, 72677, 'seventy-two thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(23403, 39897, 'thirty-nine thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(23404, 21031, 'twenty-one thousand thirty-one'); INSERT INTO t2 VALUES(23405, 45966, 'forty-five thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(23406, 603, 'six hundred three'); INSERT INTO t2 VALUES(23407, 4356, 'four thousand three hundred fifty-six'); INSERT INTO t2 VALUES(23408, 51175, 'fifty-one thousand one hundred seventy-five'); INSERT INTO t2 VALUES(23409, 16461, 'sixteen thousand four hundred sixty-one'); INSERT INTO t2 VALUES(23410, 59916, 'fifty-nine thousand nine hundred sixteen'); INSERT INTO t2 VALUES(23411, 79711, 'seventy-nine thousand seven hundred eleven'); INSERT INTO t2 VALUES(23412, 10576, 'ten thousand five hundred seventy-six'); INSERT INTO t2 VALUES(23413, 23845, 'twenty-three thousand eight hundred forty-five'); INSERT INTO t2 VALUES(23414, 20890, 'twenty thousand eight hundred ninety'); INSERT INTO t2 VALUES(23415, 17833, 'seventeen thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(23416, 21473, 'twenty-one thousand four hundred seventy-three'); INSERT INTO t2 VALUES(23417, 73194, 'seventy-three thousand one hundred ninety-four'); INSERT INTO t2 VALUES(23418, 16145, 'sixteen thousand one hundred forty-five'); INSERT INTO t2 VALUES(23419, 99939, 'ninety-nine thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(23420, 68436, 'sixty-eight thousand four hundred thirty-six'); INSERT INTO t2 VALUES(23421, 53173, 'fifty-three thousand one hundred seventy-three'); INSERT INTO t2 VALUES(23422, 82340, 'eighty-two thousand three hundred forty'); INSERT INTO t2 VALUES(23423, 45949, 'forty-five thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(23424, 35528, 'thirty-five thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(23425, 14954, 'fourteen thousand nine hundred fifty-four'); INSERT INTO t2 VALUES(23426, 94254, 'ninety-four thousand two hundred fifty-four'); INSERT INTO t2 VALUES(23427, 94556, 'ninety-four thousand five hundred fifty-six'); INSERT INTO t2 VALUES(23428, 37592, 'thirty-seven thousand five hundred ninety-two'); INSERT INTO t2 VALUES(23429, 34491, 'thirty-four thousand four hundred ninety-one'); INSERT INTO t2 VALUES(23430, 70638, 'seventy thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(23431, 60238, 'sixty thousand two hundred thirty-eight'); INSERT INTO t2 VALUES(23432, 67919, 'sixty-seven thousand nine hundred nineteen'); INSERT INTO t2 VALUES(23433, 71969, 'seventy-one thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(23434, 23137, 'twenty-three thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(23435, 31243, 'thirty-one thousand two hundred forty-three'); INSERT INTO t2 VALUES(23436, 30148, 'thirty thousand one hundred forty-eight'); INSERT INTO t2 VALUES(23437, 44688, 'forty-four thousand six hundred eighty-eight'); INSERT INTO t2 VALUES(23438, 19428, 'nineteen thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(23439, 6511, 'six thousand five hundred eleven'); INSERT INTO t2 VALUES(23440, 17315, 'seventeen thousand three hundred fifteen'); INSERT INTO t2 VALUES(23441, 43771, 'forty-three thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(23442, 89891, 'eighty-nine thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(23443, 66871, 'sixty-six thousand eight hundred seventy-one'); INSERT INTO t2 VALUES(23444, 97850, 'ninety-seven thousand eight hundred fifty'); INSERT INTO t2 VALUES(23445, 30494, 'thirty thousand four hundred ninety-four'); INSERT INTO t2 VALUES(23446, 79671, 'seventy-nine thousand six hundred seventy-one'); INSERT INTO t2 VALUES(23447, 35547, 'thirty-five thousand five hundred forty-seven'); INSERT INTO t2 VALUES(23448, 35879, 'thirty-five thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(23449, 19382, 'nineteen thousand three hundred eighty-two'); INSERT INTO t2 VALUES(23450, 69964, 'sixty-nine thousand nine hundred sixty-four'); INSERT INTO t2 VALUES(23451, 94777, 'ninety-four thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(23452, 6338, 'six thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(23453, 66622, 'sixty-six thousand six hundred twenty-two'); INSERT INTO t2 VALUES(23454, 65071, 'sixty-five thousand seventy-one'); INSERT INTO t2 VALUES(23455, 33206, 'thirty-three thousand two hundred six'); INSERT INTO t2 VALUES(23456, 38021, 'thirty-eight thousand twenty-one'); INSERT INTO t2 VALUES(23457, 28627, 'twenty-eight thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(23458, 88694, 'eighty-eight thousand six hundred ninety-four'); INSERT INTO t2 VALUES(23459, 67536, 'sixty-seven thousand five hundred thirty-six'); INSERT INTO t2 VALUES(23460, 44753, 'forty-four thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(23461, 40647, 'forty thousand six hundred forty-seven'); INSERT INTO t2 VALUES(23462, 34094, 'thirty-four thousand ninety-four'); INSERT INTO t2 VALUES(23463, 15157, 'fifteen thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(23464, 20284, 'twenty thousand two hundred eighty-four'); INSERT INTO t2 VALUES(23465, 62965, 'sixty-two thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(23466, 22488, 'twenty-two thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(23467, 45920, 'forty-five thousand nine hundred twenty'); INSERT INTO t2 VALUES(23468, 83014, 'eighty-three thousand fourteen'); INSERT INTO t2 VALUES(23469, 82421, 'eighty-two thousand four hundred twenty-one'); INSERT INTO t2 VALUES(23470, 27319, 'twenty-seven thousand three hundred nineteen'); INSERT INTO t2 VALUES(23471, 26644, 'twenty-six thousand six hundred forty-four'); INSERT INTO t2 VALUES(23472, 28950, 'twenty-eight thousand nine hundred fifty'); INSERT INTO t2 VALUES(23473, 15142, 'fifteen thousand one hundred forty-two'); INSERT INTO t2 VALUES(23474, 14758, 'fourteen thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(23475, 68043, 'sixty-eight thousand forty-three'); INSERT INTO t2 VALUES(23476, 42649, 'forty-two thousand six hundred forty-nine'); INSERT INTO t2 VALUES(23477, 46511, 'forty-six thousand five hundred eleven'); INSERT INTO t2 VALUES(23478, 60710, 'sixty thousand seven hundred ten'); INSERT INTO t2 VALUES(23479, 50800, 'fifty thousand eight hundred'); INSERT INTO t2 VALUES(23480, 6379, 'six thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(23481, 43034, 'forty-three thousand thirty-four'); INSERT INTO t2 VALUES(23482, 49416, 'forty-nine thousand four hundred sixteen'); INSERT INTO t2 VALUES(23483, 99256, 'ninety-nine thousand two hundred fifty-six'); INSERT INTO t2 VALUES(23484, 28556, 'twenty-eight thousand five hundred fifty-six'); INSERT INTO t2 VALUES(23485, 5809, 'five thousand eight hundred nine'); INSERT INTO t2 VALUES(23486, 51409, 'fifty-one thousand four hundred nine'); INSERT INTO t2 VALUES(23487, 840, 'eight hundred forty'); INSERT INTO t2 VALUES(23488, 13140, 'thirteen thousand one hundred forty'); INSERT INTO t2 VALUES(23489, 53747, 'fifty-three thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(23490, 72919, 'seventy-two thousand nine hundred nineteen'); INSERT INTO t2 VALUES(23491, 16609, 'sixteen thousand six hundred nine'); INSERT INTO t2 VALUES(23492, 80700, 'eighty thousand seven hundred'); INSERT INTO t2 VALUES(23493, 44492, 'forty-four thousand four hundred ninety-two'); INSERT INTO t2 VALUES(23494, 93934, 'ninety-three thousand nine hundred thirty-four'); INSERT INTO t2 VALUES(23495, 80016, 'eighty thousand sixteen'); INSERT INTO t2 VALUES(23496, 94779, 'ninety-four thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(23497, 29719, 'twenty-nine thousand seven hundred nineteen'); INSERT INTO t2 VALUES(23498, 11594, 'eleven thousand five hundred ninety-four'); INSERT INTO t2 VALUES(23499, 15766, 'fifteen thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(23500, 98228, 'ninety-eight thousand two hundred twenty-eight'); INSERT INTO t2 VALUES(23501, 80538, 'eighty thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(23502, 49852, 'forty-nine thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(23503, 29929, 'twenty-nine thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(23504, 67227, 'sixty-seven thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(23505, 77702, 'seventy-seven thousand seven hundred two'); INSERT INTO t2 VALUES(23506, 11464, 'eleven thousand four hundred sixty-four'); INSERT INTO t2 VALUES(23507, 18588, 'eighteen thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(23508, 91089, 'ninety-one thousand eighty-nine'); INSERT INTO t2 VALUES(23509, 43218, 'forty-three thousand two hundred eighteen'); INSERT INTO t2 VALUES(23510, 67325, 'sixty-seven thousand three hundred twenty-five'); INSERT INTO t2 VALUES(23511, 278, 'two hundred seventy-eight'); INSERT INTO t2 VALUES(23512, 49032, 'forty-nine thousand thirty-two'); INSERT INTO t2 VALUES(23513, 44547, 'forty-four thousand five hundred forty-seven'); INSERT INTO t2 VALUES(23514, 83138, 'eighty-three thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(23515, 12927, 'twelve thousand nine hundred twenty-seven'); INSERT INTO t2 VALUES(23516, 92786, 'ninety-two thousand seven hundred eighty-six'); INSERT INTO t2 VALUES(23517, 51758, 'fifty-one thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(23518, 31122, 'thirty-one thousand one hundred twenty-two'); INSERT INTO t2 VALUES(23519, 73317, 'seventy-three thousand three hundred seventeen'); INSERT INTO t2 VALUES(23520, 53734, 'fifty-three thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(23521, 66048, 'sixty-six thousand forty-eight'); INSERT INTO t2 VALUES(23522, 20213, 'twenty thousand two hundred thirteen'); INSERT INTO t2 VALUES(23523, 52858, 'fifty-two thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(23524, 15831, 'fifteen thousand eight hundred thirty-one'); INSERT INTO t2 VALUES(23525, 53469, 'fifty-three thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(23526, 6111, 'six thousand one hundred eleven'); INSERT INTO t2 VALUES(23527, 78455, 'seventy-eight thousand four hundred fifty-five'); INSERT INTO t2 VALUES(23528, 3147, 'three thousand one hundred forty-seven'); INSERT INTO t2 VALUES(23529, 17883, 'seventeen thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(23530, 37172, 'thirty-seven thousand one hundred seventy-two'); INSERT INTO t2 VALUES(23531, 2148, 'two thousand one hundred forty-eight'); INSERT INTO t2 VALUES(23532, 20027, 'twenty thousand twenty-seven'); INSERT INTO t2 VALUES(23533, 37991, 'thirty-seven thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(23534, 96979, 'ninety-six thousand nine hundred seventy-nine'); INSERT INTO t2 VALUES(23535, 49088, 'forty-nine thousand eighty-eight'); INSERT INTO t2 VALUES(23536, 52540, 'fifty-two thousand five hundred forty'); INSERT INTO t2 VALUES(23537, 73241, 'seventy-three thousand two hundred forty-one'); INSERT INTO t2 VALUES(23538, 85859, 'eighty-five thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(23539, 42215, 'forty-two thousand two hundred fifteen'); INSERT INTO t2 VALUES(23540, 45025, 'forty-five thousand twenty-five'); INSERT INTO t2 VALUES(23541, 10244, 'ten thousand two hundred forty-four'); INSERT INTO t2 VALUES(23542, 49909, 'forty-nine thousand nine hundred nine'); INSERT INTO t2 VALUES(23543, 63897, 'sixty-three thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(23544, 75501, 'seventy-five thousand five hundred one'); INSERT INTO t2 VALUES(23545, 33003, 'thirty-three thousand three'); INSERT INTO t2 VALUES(23546, 6611, 'six thousand six hundred eleven'); INSERT INTO t2 VALUES(23547, 42644, 'forty-two thousand six hundred forty-four'); INSERT INTO t2 VALUES(23548, 29415, 'twenty-nine thousand four hundred fifteen'); INSERT INTO t2 VALUES(23549, 8102, 'eight thousand one hundred two'); INSERT INTO t2 VALUES(23550, 21815, 'twenty-one thousand eight hundred fifteen'); INSERT INTO t2 VALUES(23551, 83430, 'eighty-three thousand four hundred thirty'); INSERT INTO t2 VALUES(23552, 8043, 'eight thousand forty-three'); INSERT INTO t2 VALUES(23553, 36525, 'thirty-six thousand five hundred twenty-five'); INSERT INTO t2 VALUES(23554, 24614, 'twenty-four thousand six hundred fourteen'); INSERT INTO t2 VALUES(23555, 34006, 'thirty-four thousand six'); INSERT INTO t2 VALUES(23556, 63020, 'sixty-three thousand twenty'); INSERT INTO t2 VALUES(23557, 10745, 'ten thousand seven hundred forty-five'); INSERT INTO t2 VALUES(23558, 20771, 'twenty thousand seven hundred seventy-one'); INSERT INTO t2 VALUES(23559, 59083, 'fifty-nine thousand eighty-three'); INSERT INTO t2 VALUES(23560, 52303, 'fifty-two thousand three hundred three'); INSERT INTO t2 VALUES(23561, 65518, 'sixty-five thousand five hundred eighteen'); INSERT INTO t2 VALUES(23562, 78898, 'seventy-eight thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(23563, 74657, 'seventy-four thousand six hundred fifty-seven'); INSERT INTO t2 VALUES(23564, 76094, 'seventy-six thousand ninety-four'); INSERT INTO t2 VALUES(23565, 18293, 'eighteen thousand two hundred ninety-three'); INSERT INTO t2 VALUES(23566, 36063, 'thirty-six thousand sixty-three'); INSERT INTO t2 VALUES(23567, 7299, 'seven thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(23568, 3868, 'three thousand eight hundred sixty-eight'); INSERT INTO t2 VALUES(23569, 40627, 'forty thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(23570, 84909, 'eighty-four thousand nine hundred nine'); INSERT INTO t2 VALUES(23571, 70715, 'seventy thousand seven hundred fifteen'); INSERT INTO t2 VALUES(23572, 24432, 'twenty-four thousand four hundred thirty-two'); INSERT INTO t2 VALUES(23573, 30419, 'thirty thousand four hundred nineteen'); INSERT INTO t2 VALUES(23574, 42933, 'forty-two thousand nine hundred thirty-three'); INSERT INTO t2 VALUES(23575, 62358, 'sixty-two thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(23576, 98352, 'ninety-eight thousand three hundred fifty-two'); INSERT INTO t2 VALUES(23577, 49148, 'forty-nine thousand one hundred forty-eight'); INSERT INTO t2 VALUES(23578, 49457, 'forty-nine thousand four hundred fifty-seven'); INSERT INTO t2 VALUES(23579, 77901, 'seventy-seven thousand nine hundred one'); INSERT INTO t2 VALUES(23580, 24942, 'twenty-four thousand nine hundred forty-two'); INSERT INTO t2 VALUES(23581, 40659, 'forty thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(23582, 59441, 'fifty-nine thousand four hundred forty-one'); INSERT INTO t2 VALUES(23583, 36020, 'thirty-six thousand twenty'); INSERT INTO t2 VALUES(23584, 85865, 'eighty-five thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(23585, 27664, 'twenty-seven thousand six hundred sixty-four'); INSERT INTO t2 VALUES(23586, 32849, 'thirty-two thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(23587, 19881, 'nineteen thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(23588, 31546, 'thirty-one thousand five hundred forty-six'); INSERT INTO t2 VALUES(23589, 22977, 'twenty-two thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(23590, 89488, 'eighty-nine thousand four hundred eighty-eight'); INSERT INTO t2 VALUES(23591, 47010, 'forty-seven thousand ten'); INSERT INTO t2 VALUES(23592, 89848, 'eighty-nine thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(23593, 95780, 'ninety-five thousand seven hundred eighty'); INSERT INTO t2 VALUES(23594, 33380, 'thirty-three thousand three hundred eighty'); INSERT INTO t2 VALUES(23595, 91505, 'ninety-one thousand five hundred five'); INSERT INTO t2 VALUES(23596, 77283, 'seventy-seven thousand two hundred eighty-three'); INSERT INTO t2 VALUES(23597, 6903, 'six thousand nine hundred three'); INSERT INTO t2 VALUES(23598, 62239, 'sixty-two thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(23599, 4753, 'four thousand seven hundred fifty-three'); INSERT INTO t2 VALUES(23600, 24834, 'twenty-four thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(23601, 66446, 'sixty-six thousand four hundred forty-six'); INSERT INTO t2 VALUES(23602, 82830, 'eighty-two thousand eight hundred thirty'); INSERT INTO t2 VALUES(23603, 45352, 'forty-five thousand three hundred fifty-two'); INSERT INTO t2 VALUES(23604, 62285, 'sixty-two thousand two hundred eighty-five'); INSERT INTO t2 VALUES(23605, 73778, 'seventy-three thousand seven hundred seventy-eight'); INSERT INTO t2 VALUES(23606, 22763, 'twenty-two thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(23607, 44766, 'forty-four thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(23608, 99597, 'ninety-nine thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(23609, 63864, 'sixty-three thousand eight hundred sixty-four'); INSERT INTO t2 VALUES(23610, 7637, 'seven thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(23611, 89977, 'eighty-nine thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(23612, 57362, 'fifty-seven thousand three hundred sixty-two'); INSERT INTO t2 VALUES(23613, 68992, 'sixty-eight thousand nine hundred ninety-two'); INSERT INTO t2 VALUES(23614, 6093, 'six thousand ninety-three'); INSERT INTO t2 VALUES(23615, 81853, 'eighty-one thousand eight hundred fifty-three'); INSERT INTO t2 VALUES(23616, 32792, 'thirty-two thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(23617, 77313, 'seventy-seven thousand three hundred thirteen'); INSERT INTO t2 VALUES(23618, 21819, 'twenty-one thousand eight hundred nineteen'); INSERT INTO t2 VALUES(23619, 31603, 'thirty-one thousand six hundred three'); INSERT INTO t2 VALUES(23620, 2469, 'two thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(23621, 59579, 'fifty-nine thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(23622, 89796, 'eighty-nine thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(23623, 59227, 'fifty-nine thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(23624, 60582, 'sixty thousand five hundred eighty-two'); INSERT INTO t2 VALUES(23625, 73042, 'seventy-three thousand forty-two'); INSERT INTO t2 VALUES(23626, 63668, 'sixty-three thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(23627, 72324, 'seventy-two thousand three hundred twenty-four'); INSERT INTO t2 VALUES(23628, 55144, 'fifty-five thousand one hundred forty-four'); INSERT INTO t2 VALUES(23629, 96203, 'ninety-six thousand two hundred three'); INSERT INTO t2 VALUES(23630, 56852, 'fifty-six thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(23631, 87405, 'eighty-seven thousand four hundred five'); INSERT INTO t2 VALUES(23632, 88324, 'eighty-eight thousand three hundred twenty-four'); INSERT INTO t2 VALUES(23633, 24106, 'twenty-four thousand one hundred six'); INSERT INTO t2 VALUES(23634, 94920, 'ninety-four thousand nine hundred twenty'); INSERT INTO t2 VALUES(23635, 25677, 'twenty-five thousand six hundred seventy-seven'); INSERT INTO t2 VALUES(23636, 34123, 'thirty-four thousand one hundred twenty-three'); INSERT INTO t2 VALUES(23637, 21569, 'twenty-one thousand five hundred sixty-nine'); INSERT INTO t2 VALUES(23638, 40566, 'forty thousand five hundred sixty-six'); INSERT INTO t2 VALUES(23639, 36835, 'thirty-six thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(23640, 36804, 'thirty-six thousand eight hundred four'); INSERT INTO t2 VALUES(23641, 5660, 'five thousand six hundred sixty'); INSERT INTO t2 VALUES(23642, 75358, 'seventy-five thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(23643, 37675, 'thirty-seven thousand six hundred seventy-five'); INSERT INTO t2 VALUES(23644, 16032, 'sixteen thousand thirty-two'); INSERT INTO t2 VALUES(23645, 71169, 'seventy-one thousand one hundred sixty-nine'); INSERT INTO t2 VALUES(23646, 57750, 'fifty-seven thousand seven hundred fifty'); INSERT INTO t2 VALUES(23647, 64651, 'sixty-four thousand six hundred fifty-one'); INSERT INTO t2 VALUES(23648, 46926, 'forty-six thousand nine hundred twenty-six'); INSERT INTO t2 VALUES(23649, 17447, 'seventeen thousand four hundred forty-seven'); INSERT INTO t2 VALUES(23650, 90467, 'ninety thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(23651, 79518, 'seventy-nine thousand five hundred eighteen'); INSERT INTO t2 VALUES(23652, 46322, 'forty-six thousand three hundred twenty-two'); INSERT INTO t2 VALUES(23653, 32213, 'thirty-two thousand two hundred thirteen'); INSERT INTO t2 VALUES(23654, 70610, 'seventy thousand six hundred ten'); INSERT INTO t2 VALUES(23655, 43007, 'forty-three thousand seven'); INSERT INTO t2 VALUES(23656, 90529, 'ninety thousand five hundred twenty-nine'); INSERT INTO t2 VALUES(23657, 58455, 'fifty-eight thousand four hundred fifty-five'); INSERT INTO t2 VALUES(23658, 81952, 'eighty-one thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(23659, 51665, 'fifty-one thousand six hundred sixty-five'); INSERT INTO t2 VALUES(23660, 59875, 'fifty-nine thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(23661, 70100, 'seventy thousand one hundred'); INSERT INTO t2 VALUES(23662, 95042, 'ninety-five thousand forty-two'); INSERT INTO t2 VALUES(23663, 3887, 'three thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(23664, 91723, 'ninety-one thousand seven hundred twenty-three'); INSERT INTO t2 VALUES(23665, 19865, 'nineteen thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(23666, 7573, 'seven thousand five hundred seventy-three'); INSERT INTO t2 VALUES(23667, 48248, 'forty-eight thousand two hundred forty-eight'); INSERT INTO t2 VALUES(23668, 37151, 'thirty-seven thousand one hundred fifty-one'); INSERT INTO t2 VALUES(23669, 42660, 'forty-two thousand six hundred sixty'); INSERT INTO t2 VALUES(23670, 75322, 'seventy-five thousand three hundred twenty-two'); INSERT INTO t2 VALUES(23671, 32626, 'thirty-two thousand six hundred twenty-six'); INSERT INTO t2 VALUES(23672, 22580, 'twenty-two thousand five hundred eighty'); INSERT INTO t2 VALUES(23673, 74270, 'seventy-four thousand two hundred seventy'); INSERT INTO t2 VALUES(23674, 12635, 'twelve thousand six hundred thirty-five'); INSERT INTO t2 VALUES(23675, 86073, 'eighty-six thousand seventy-three'); INSERT INTO t2 VALUES(23676, 42051, 'forty-two thousand fifty-one'); INSERT INTO t2 VALUES(23677, 52471, 'fifty-two thousand four hundred seventy-one'); INSERT INTO t2 VALUES(23678, 35151, 'thirty-five thousand one hundred fifty-one'); INSERT INTO t2 VALUES(23679, 79147, 'seventy-nine thousand one hundred forty-seven'); INSERT INTO t2 VALUES(23680, 32574, 'thirty-two thousand five hundred seventy-four'); INSERT INTO t2 VALUES(23681, 86365, 'eighty-six thousand three hundred sixty-five'); INSERT INTO t2 VALUES(23682, 93214, 'ninety-three thousand two hundred fourteen'); INSERT INTO t2 VALUES(23683, 36900, 'thirty-six thousand nine hundred'); INSERT INTO t2 VALUES(23684, 35602, 'thirty-five thousand six hundred two'); INSERT INTO t2 VALUES(23685, 93566, 'ninety-three thousand five hundred sixty-six'); INSERT INTO t2 VALUES(23686, 44976, 'forty-four thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(23687, 22623, 'twenty-two thousand six hundred twenty-three'); INSERT INTO t2 VALUES(23688, 55070, 'fifty-five thousand seventy'); INSERT INTO t2 VALUES(23689, 33558, 'thirty-three thousand five hundred fifty-eight'); INSERT INTO t2 VALUES(23690, 32010, 'thirty-two thousand ten'); INSERT INTO t2 VALUES(23691, 14196, 'fourteen thousand one hundred ninety-six'); INSERT INTO t2 VALUES(23692, 77627, 'seventy-seven thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(23693, 71600, 'seventy-one thousand six hundred'); INSERT INTO t2 VALUES(23694, 41196, 'forty-one thousand one hundred ninety-six'); INSERT INTO t2 VALUES(23695, 789, 'seven hundred eighty-nine'); INSERT INTO t2 VALUES(23696, 13293, 'thirteen thousand two hundred ninety-three'); INSERT INTO t2 VALUES(23697, 18468, 'eighteen thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(23698, 69455, 'sixty-nine thousand four hundred fifty-five'); INSERT INTO t2 VALUES(23699, 34415, 'thirty-four thousand four hundred fifteen'); INSERT INTO t2 VALUES(23700, 86678, 'eighty-six thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(23701, 48949, 'forty-eight thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(23702, 67793, 'sixty-seven thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(23703, 16517, 'sixteen thousand five hundred seventeen'); INSERT INTO t2 VALUES(23704, 31942, 'thirty-one thousand nine hundred forty-two'); INSERT INTO t2 VALUES(23705, 95072, 'ninety-five thousand seventy-two'); INSERT INTO t2 VALUES(23706, 38961, 'thirty-eight thousand nine hundred sixty-one'); INSERT INTO t2 VALUES(23707, 18289, 'eighteen thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(23708, 93881, 'ninety-three thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(23709, 36679, 'thirty-six thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(23710, 32755, 'thirty-two thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(23711, 75969, 'seventy-five thousand nine hundred sixty-nine'); INSERT INTO t2 VALUES(23712, 23807, 'twenty-three thousand eight hundred seven'); INSERT INTO t2 VALUES(23713, 87929, 'eighty-seven thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(23714, 44764, 'forty-four thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(23715, 54311, 'fifty-four thousand three hundred eleven'); INSERT INTO t2 VALUES(23716, 95398, 'ninety-five thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(23717, 52780, 'fifty-two thousand seven hundred eighty'); INSERT INTO t2 VALUES(23718, 18123, 'eighteen thousand one hundred twenty-three'); INSERT INTO t2 VALUES(23719, 88078, 'eighty-eight thousand seventy-eight'); INSERT INTO t2 VALUES(23720, 23996, 'twenty-three thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(23721, 71691, 'seventy-one thousand six hundred ninety-one'); INSERT INTO t2 VALUES(23722, 63458, 'sixty-three thousand four hundred fifty-eight'); INSERT INTO t2 VALUES(23723, 65329, 'sixty-five thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(23724, 47236, 'forty-seven thousand two hundred thirty-six'); INSERT INTO t2 VALUES(23725, 30448, 'thirty thousand four hundred forty-eight'); INSERT INTO t2 VALUES(23726, 68705, 'sixty-eight thousand seven hundred five'); INSERT INTO t2 VALUES(23727, 98390, 'ninety-eight thousand three hundred ninety'); INSERT INTO t2 VALUES(23728, 66897, 'sixty-six thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(23729, 31564, 'thirty-one thousand five hundred sixty-four'); INSERT INTO t2 VALUES(23730, 1852, 'one thousand eight hundred fifty-two'); INSERT INTO t2 VALUES(23731, 42690, 'forty-two thousand six hundred ninety'); INSERT INTO t2 VALUES(23732, 73950, 'seventy-three thousand nine hundred fifty'); INSERT INTO t2 VALUES(23733, 34879, 'thirty-four thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(23734, 3343, 'three thousand three hundred forty-three'); INSERT INTO t2 VALUES(23735, 11376, 'eleven thousand three hundred seventy-six'); INSERT INTO t2 VALUES(23736, 16759, 'sixteen thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(23737, 81244, 'eighty-one thousand two hundred forty-four'); INSERT INTO t2 VALUES(23738, 99543, 'ninety-nine thousand five hundred forty-three'); INSERT INTO t2 VALUES(23739, 61186, 'sixty-one thousand one hundred eighty-six'); INSERT INTO t2 VALUES(23740, 82312, 'eighty-two thousand three hundred twelve'); INSERT INTO t2 VALUES(23741, 83516, 'eighty-three thousand five hundred sixteen'); INSERT INTO t2 VALUES(23742, 57423, 'fifty-seven thousand four hundred twenty-three'); INSERT INTO t2 VALUES(23743, 58512, 'fifty-eight thousand five hundred twelve'); INSERT INTO t2 VALUES(23744, 6095, 'six thousand ninety-five'); INSERT INTO t2 VALUES(23745, 40789, 'forty thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(23746, 33542, 'thirty-three thousand five hundred forty-two'); INSERT INTO t2 VALUES(23747, 34692, 'thirty-four thousand six hundred ninety-two'); INSERT INTO t2 VALUES(23748, 14631, 'fourteen thousand six hundred thirty-one'); INSERT INTO t2 VALUES(23749, 95687, 'ninety-five thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(23750, 37212, 'thirty-seven thousand two hundred twelve'); INSERT INTO t2 VALUES(23751, 95251, 'ninety-five thousand two hundred fifty-one'); INSERT INTO t2 VALUES(23752, 97223, 'ninety-seven thousand two hundred twenty-three'); INSERT INTO t2 VALUES(23753, 53083, 'fifty-three thousand eighty-three'); INSERT INTO t2 VALUES(23754, 56974, 'fifty-six thousand nine hundred seventy-four'); INSERT INTO t2 VALUES(23755, 15773, 'fifteen thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(23756, 22892, 'twenty-two thousand eight hundred ninety-two'); INSERT INTO t2 VALUES(23757, 29061, 'twenty-nine thousand sixty-one'); INSERT INTO t2 VALUES(23758, 62149, 'sixty-two thousand one hundred forty-nine'); INSERT INTO t2 VALUES(23759, 45768, 'forty-five thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(23760, 75691, 'seventy-five thousand six hundred ninety-one'); INSERT INTO t2 VALUES(23761, 72773, 'seventy-two thousand seven hundred seventy-three'); INSERT INTO t2 VALUES(23762, 82435, 'eighty-two thousand four hundred thirty-five'); INSERT INTO t2 VALUES(23763, 14322, 'fourteen thousand three hundred twenty-two'); INSERT INTO t2 VALUES(23764, 62835, 'sixty-two thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(23765, 12427, 'twelve thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(23766, 42239, 'forty-two thousand two hundred thirty-nine'); INSERT INTO t2 VALUES(23767, 6850, 'six thousand eight hundred fifty'); INSERT INTO t2 VALUES(23768, 23542, 'twenty-three thousand five hundred forty-two'); INSERT INTO t2 VALUES(23769, 45862, 'forty-five thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(23770, 61367, 'sixty-one thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(23771, 71147, 'seventy-one thousand one hundred forty-seven'); INSERT INTO t2 VALUES(23772, 69515, 'sixty-nine thousand five hundred fifteen'); INSERT INTO t2 VALUES(23773, 80632, 'eighty thousand six hundred thirty-two'); INSERT INTO t2 VALUES(23774, 65315, 'sixty-five thousand three hundred fifteen'); INSERT INTO t2 VALUES(23775, 52435, 'fifty-two thousand four hundred thirty-five'); INSERT INTO t2 VALUES(23776, 88682, 'eighty-eight thousand six hundred eighty-two'); INSERT INTO t2 VALUES(23777, 82398, 'eighty-two thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(23778, 47977, 'forty-seven thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(23779, 50958, 'fifty thousand nine hundred fifty-eight'); INSERT INTO t2 VALUES(23780, 67910, 'sixty-seven thousand nine hundred ten'); INSERT INTO t2 VALUES(23781, 39956, 'thirty-nine thousand nine hundred fifty-six'); INSERT INTO t2 VALUES(23782, 38722, 'thirty-eight thousand seven hundred twenty-two'); INSERT INTO t2 VALUES(23783, 41373, 'forty-one thousand three hundred seventy-three'); INSERT INTO t2 VALUES(23784, 49216, 'forty-nine thousand two hundred sixteen'); INSERT INTO t2 VALUES(23785, 85948, 'eighty-five thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(23786, 64712, 'sixty-four thousand seven hundred twelve'); INSERT INTO t2 VALUES(23787, 23108, 'twenty-three thousand one hundred eight'); INSERT INTO t2 VALUES(23788, 79115, 'seventy-nine thousand one hundred fifteen'); INSERT INTO t2 VALUES(23789, 88965, 'eighty-eight thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(23790, 80358, 'eighty thousand three hundred fifty-eight'); INSERT INTO t2 VALUES(23791, 41171, 'forty-one thousand one hundred seventy-one'); INSERT INTO t2 VALUES(23792, 47724, 'forty-seven thousand seven hundred twenty-four'); INSERT INTO t2 VALUES(23793, 93046, 'ninety-three thousand forty-six'); INSERT INTO t2 VALUES(23794, 19086, 'nineteen thousand eighty-six'); INSERT INTO t2 VALUES(23795, 50397, 'fifty thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(23796, 67236, 'sixty-seven thousand two hundred thirty-six'); INSERT INTO t2 VALUES(23797, 65701, 'sixty-five thousand seven hundred one'); INSERT INTO t2 VALUES(23798, 26642, 'twenty-six thousand six hundred forty-two'); INSERT INTO t2 VALUES(23799, 93456, 'ninety-three thousand four hundred fifty-six'); INSERT INTO t2 VALUES(23800, 49822, 'forty-nine thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(23801, 5731, 'five thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(23802, 88205, 'eighty-eight thousand two hundred five'); INSERT INTO t2 VALUES(23803, 74105, 'seventy-four thousand one hundred five'); INSERT INTO t2 VALUES(23804, 29950, 'twenty-nine thousand nine hundred fifty'); INSERT INTO t2 VALUES(23805, 76624, 'seventy-six thousand six hundred twenty-four'); INSERT INTO t2 VALUES(23806, 41277, 'forty-one thousand two hundred seventy-seven'); INSERT INTO t2 VALUES(23807, 48675, 'forty-eight thousand six hundred seventy-five'); INSERT INTO t2 VALUES(23808, 27434, 'twenty-seven thousand four hundred thirty-four'); INSERT INTO t2 VALUES(23809, 76153, 'seventy-six thousand one hundred fifty-three'); INSERT INTO t2 VALUES(23810, 55201, 'fifty-five thousand two hundred one'); INSERT INTO t2 VALUES(23811, 89808, 'eighty-nine thousand eight hundred eight'); INSERT INTO t2 VALUES(23812, 24751, 'twenty-four thousand seven hundred fifty-one'); INSERT INTO t2 VALUES(23813, 44322, 'forty-four thousand three hundred twenty-two'); INSERT INTO t2 VALUES(23814, 47086, 'forty-seven thousand eighty-six'); INSERT INTO t2 VALUES(23815, 9080, 'nine thousand eighty'); INSERT INTO t2 VALUES(23816, 33135, 'thirty-three thousand one hundred thirty-five'); INSERT INTO t2 VALUES(23817, 37551, 'thirty-seven thousand five hundred fifty-one'); INSERT INTO t2 VALUES(23818, 99455, 'ninety-nine thousand four hundred fifty-five'); INSERT INTO t2 VALUES(23819, 97054, 'ninety-seven thousand fifty-four'); INSERT INTO t2 VALUES(23820, 10423, 'ten thousand four hundred twenty-three'); INSERT INTO t2 VALUES(23821, 77115, 'seventy-seven thousand one hundred fifteen'); INSERT INTO t2 VALUES(23822, 18406, 'eighteen thousand four hundred six'); INSERT INTO t2 VALUES(23823, 46891, 'forty-six thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(23824, 37070, 'thirty-seven thousand seventy'); INSERT INTO t2 VALUES(23825, 77815, 'seventy-seven thousand eight hundred fifteen'); INSERT INTO t2 VALUES(23826, 37058, 'thirty-seven thousand fifty-eight'); INSERT INTO t2 VALUES(23827, 73536, 'seventy-three thousand five hundred thirty-six'); INSERT INTO t2 VALUES(23828, 55398, 'fifty-five thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(23829, 55589, 'fifty-five thousand five hundred eighty-nine'); INSERT INTO t2 VALUES(23830, 44875, 'forty-four thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(23831, 70243, 'seventy thousand two hundred forty-three'); INSERT INTO t2 VALUES(23832, 10259, 'ten thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(23833, 28583, 'twenty-eight thousand five hundred eighty-three'); INSERT INTO t2 VALUES(23834, 90768, 'ninety thousand seven hundred sixty-eight'); INSERT INTO t2 VALUES(23835, 79845, 'seventy-nine thousand eight hundred forty-five'); INSERT INTO t2 VALUES(23836, 20397, 'twenty thousand three hundred ninety-seven'); INSERT INTO t2 VALUES(23837, 85843, 'eighty-five thousand eight hundred forty-three'); INSERT INTO t2 VALUES(23838, 68367, 'sixty-eight thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(23839, 73404, 'seventy-three thousand four hundred four'); INSERT INTO t2 VALUES(23840, 77669, 'seventy-seven thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(23841, 74037, 'seventy-four thousand thirty-seven'); INSERT INTO t2 VALUES(23842, 95613, 'ninety-five thousand six hundred thirteen'); INSERT INTO t2 VALUES(23843, 60628, 'sixty thousand six hundred twenty-eight'); INSERT INTO t2 VALUES(23844, 89118, 'eighty-nine thousand one hundred eighteen'); INSERT INTO t2 VALUES(23845, 12213, 'twelve thousand two hundred thirteen'); INSERT INTO t2 VALUES(23846, 54328, 'fifty-four thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(23847, 8805, 'eight thousand eight hundred five'); INSERT INTO t2 VALUES(23848, 31462, 'thirty-one thousand four hundred sixty-two'); INSERT INTO t2 VALUES(23849, 22472, 'twenty-two thousand four hundred seventy-two'); INSERT INTO t2 VALUES(23850, 11237, 'eleven thousand two hundred thirty-seven'); INSERT INTO t2 VALUES(23851, 77377, 'seventy-seven thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(23852, 97709, 'ninety-seven thousand seven hundred nine'); INSERT INTO t2 VALUES(23853, 98556, 'ninety-eight thousand five hundred fifty-six'); INSERT INTO t2 VALUES(23854, 37873, 'thirty-seven thousand eight hundred seventy-three'); INSERT INTO t2 VALUES(23855, 79324, 'seventy-nine thousand three hundred twenty-four'); INSERT INTO t2 VALUES(23856, 36012, 'thirty-six thousand twelve'); INSERT INTO t2 VALUES(23857, 30384, 'thirty thousand three hundred eighty-four'); INSERT INTO t2 VALUES(23858, 43741, 'forty-three thousand seven hundred forty-one'); INSERT INTO t2 VALUES(23859, 71836, 'seventy-one thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(23860, 93253, 'ninety-three thousand two hundred fifty-three'); INSERT INTO t2 VALUES(23861, 38824, 'thirty-eight thousand eight hundred twenty-four'); INSERT INTO t2 VALUES(23862, 4537, 'four thousand five hundred thirty-seven'); INSERT INTO t2 VALUES(23863, 85654, 'eighty-five thousand six hundred fifty-four'); INSERT INTO t2 VALUES(23864, 89774, 'eighty-nine thousand seven hundred seventy-four'); INSERT INTO t2 VALUES(23865, 47705, 'forty-seven thousand seven hundred five'); INSERT INTO t2 VALUES(23866, 34959, 'thirty-four thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(23867, 53620, 'fifty-three thousand six hundred twenty'); INSERT INTO t2 VALUES(23868, 32001, 'thirty-two thousand one'); INSERT INTO t2 VALUES(23869, 84323, 'eighty-four thousand three hundred twenty-three'); INSERT INTO t2 VALUES(23870, 61540, 'sixty-one thousand five hundred forty'); INSERT INTO t2 VALUES(23871, 45254, 'forty-five thousand two hundred fifty-four'); INSERT INTO t2 VALUES(23872, 85752, 'eighty-five thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(23873, 7583, 'seven thousand five hundred eighty-three'); INSERT INTO t2 VALUES(23874, 8400, 'eight thousand four hundred'); INSERT INTO t2 VALUES(23875, 2441, 'two thousand four hundred forty-one'); INSERT INTO t2 VALUES(23876, 71972, 'seventy-one thousand nine hundred seventy-two'); INSERT INTO t2 VALUES(23877, 74633, 'seventy-four thousand six hundred thirty-three'); INSERT INTO t2 VALUES(23878, 78982, 'seventy-eight thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(23879, 62875, 'sixty-two thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(23880, 69705, 'sixty-nine thousand seven hundred five'); INSERT INTO t2 VALUES(23881, 81730, 'eighty-one thousand seven hundred thirty'); INSERT INTO t2 VALUES(23882, 78643, 'seventy-eight thousand six hundred forty-three'); INSERT INTO t2 VALUES(23883, 4368, 'four thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(23884, 62441, 'sixty-two thousand four hundred forty-one'); INSERT INTO t2 VALUES(23885, 93748, 'ninety-three thousand seven hundred forty-eight'); INSERT INTO t2 VALUES(23886, 8313, 'eight thousand three hundred thirteen'); INSERT INTO t2 VALUES(23887, 16240, 'sixteen thousand two hundred forty'); INSERT INTO t2 VALUES(23888, 33098, 'thirty-three thousand ninety-eight'); INSERT INTO t2 VALUES(23889, 44936, 'forty-four thousand nine hundred thirty-six'); INSERT INTO t2 VALUES(23890, 99663, 'ninety-nine thousand six hundred sixty-three'); INSERT INTO t2 VALUES(23891, 18012, 'eighteen thousand twelve'); INSERT INTO t2 VALUES(23892, 2126, 'two thousand one hundred twenty-six'); INSERT INTO t2 VALUES(23893, 34137, 'thirty-four thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(23894, 47858, 'forty-seven thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(23895, 43400, 'forty-three thousand four hundred'); INSERT INTO t2 VALUES(23896, 95687, 'ninety-five thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(23897, 11424, 'eleven thousand four hundred twenty-four'); INSERT INTO t2 VALUES(23898, 32501, 'thirty-two thousand five hundred one'); INSERT INTO t2 VALUES(23899, 15068, 'fifteen thousand sixty-eight'); INSERT INTO t2 VALUES(23900, 43538, 'forty-three thousand five hundred thirty-eight'); INSERT INTO t2 VALUES(23901, 75215, 'seventy-five thousand two hundred fifteen'); INSERT INTO t2 VALUES(23902, 99920, 'ninety-nine thousand nine hundred twenty'); INSERT INTO t2 VALUES(23903, 33715, 'thirty-three thousand seven hundred fifteen'); INSERT INTO t2 VALUES(23904, 71047, 'seventy-one thousand forty-seven'); INSERT INTO t2 VALUES(23905, 54671, 'fifty-four thousand six hundred seventy-one'); INSERT INTO t2 VALUES(23906, 71061, 'seventy-one thousand sixty-one'); INSERT INTO t2 VALUES(23907, 51155, 'fifty-one thousand one hundred fifty-five'); INSERT INTO t2 VALUES(23908, 28290, 'twenty-eight thousand two hundred ninety'); INSERT INTO t2 VALUES(23909, 3813, 'three thousand eight hundred thirteen'); INSERT INTO t2 VALUES(23910, 29555, 'twenty-nine thousand five hundred fifty-five'); INSERT INTO t2 VALUES(23911, 13750, 'thirteen thousand seven hundred fifty'); INSERT INTO t2 VALUES(23912, 78402, 'seventy-eight thousand four hundred two'); INSERT INTO t2 VALUES(23913, 18915, 'eighteen thousand nine hundred fifteen'); INSERT INTO t2 VALUES(23914, 74564, 'seventy-four thousand five hundred sixty-four'); INSERT INTO t2 VALUES(23915, 1068, 'one thousand sixty-eight'); INSERT INTO t2 VALUES(23916, 14806, 'fourteen thousand eight hundred six'); INSERT INTO t2 VALUES(23917, 39258, 'thirty-nine thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(23918, 13523, 'thirteen thousand five hundred twenty-three'); INSERT INTO t2 VALUES(23919, 9274, 'nine thousand two hundred seventy-four'); INSERT INTO t2 VALUES(23920, 47402, 'forty-seven thousand four hundred two'); INSERT INTO t2 VALUES(23921, 29944, 'twenty-nine thousand nine hundred forty-four'); INSERT INTO t2 VALUES(23922, 13412, 'thirteen thousand four hundred twelve'); INSERT INTO t2 VALUES(23923, 15767, 'fifteen thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(23924, 15289, 'fifteen thousand two hundred eighty-nine'); INSERT INTO t2 VALUES(23925, 12746, 'twelve thousand seven hundred forty-six'); INSERT INTO t2 VALUES(23926, 65665, 'sixty-five thousand six hundred sixty-five'); INSERT INTO t2 VALUES(23927, 84502, 'eighty-four thousand five hundred two'); INSERT INTO t2 VALUES(23928, 30790, 'thirty thousand seven hundred ninety'); INSERT INTO t2 VALUES(23929, 13593, 'thirteen thousand five hundred ninety-three'); INSERT INTO t2 VALUES(23930, 55911, 'fifty-five thousand nine hundred eleven'); INSERT INTO t2 VALUES(23931, 73745, 'seventy-three thousand seven hundred forty-five'); INSERT INTO t2 VALUES(23932, 71056, 'seventy-one thousand fifty-six'); INSERT INTO t2 VALUES(23933, 89113, 'eighty-nine thousand one hundred thirteen'); INSERT INTO t2 VALUES(23934, 34897, 'thirty-four thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(23935, 47143, 'forty-seven thousand one hundred forty-three'); INSERT INTO t2 VALUES(23936, 19646, 'nineteen thousand six hundred forty-six'); INSERT INTO t2 VALUES(23937, 86543, 'eighty-six thousand five hundred forty-three'); INSERT INTO t2 VALUES(23938, 98090, 'ninety-eight thousand ninety'); INSERT INTO t2 VALUES(23939, 10449, 'ten thousand four hundred forty-nine'); INSERT INTO t2 VALUES(23940, 57180, 'fifty-seven thousand one hundred eighty'); INSERT INTO t2 VALUES(23941, 71321, 'seventy-one thousand three hundred twenty-one'); INSERT INTO t2 VALUES(23942, 62916, 'sixty-two thousand nine hundred sixteen'); INSERT INTO t2 VALUES(23943, 40159, 'forty thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(23944, 50990, 'fifty thousand nine hundred ninety'); INSERT INTO t2 VALUES(23945, 87906, 'eighty-seven thousand nine hundred six'); INSERT INTO t2 VALUES(23946, 8150, 'eight thousand one hundred fifty'); INSERT INTO t2 VALUES(23947, 96339, 'ninety-six thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(23948, 41842, 'forty-one thousand eight hundred forty-two'); INSERT INTO t2 VALUES(23949, 18126, 'eighteen thousand one hundred twenty-six'); INSERT INTO t2 VALUES(23950, 63175, 'sixty-three thousand one hundred seventy-five'); INSERT INTO t2 VALUES(23951, 30323, 'thirty thousand three hundred twenty-three'); INSERT INTO t2 VALUES(23952, 84341, 'eighty-four thousand three hundred forty-one'); INSERT INTO t2 VALUES(23953, 781, 'seven hundred eighty-one'); INSERT INTO t2 VALUES(23954, 99163, 'ninety-nine thousand one hundred sixty-three'); INSERT INTO t2 VALUES(23955, 8747, 'eight thousand seven hundred forty-seven'); INSERT INTO t2 VALUES(23956, 7136, 'seven thousand one hundred thirty-six'); INSERT INTO t2 VALUES(23957, 42556, 'forty-two thousand five hundred fifty-six'); INSERT INTO t2 VALUES(23958, 72938, 'seventy-two thousand nine hundred thirty-eight'); INSERT INTO t2 VALUES(23959, 83886, 'eighty-three thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(23960, 82803, 'eighty-two thousand eight hundred three'); INSERT INTO t2 VALUES(23961, 95233, 'ninety-five thousand two hundred thirty-three'); INSERT INTO t2 VALUES(23962, 39371, 'thirty-nine thousand three hundred seventy-one'); INSERT INTO t2 VALUES(23963, 11452, 'eleven thousand four hundred fifty-two'); INSERT INTO t2 VALUES(23964, 63603, 'sixty-three thousand six hundred three'); INSERT INTO t2 VALUES(23965, 19755, 'nineteen thousand seven hundred fifty-five'); INSERT INTO t2 VALUES(23966, 9145, 'nine thousand one hundred forty-five'); INSERT INTO t2 VALUES(23967, 41599, 'forty-one thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(23968, 97, 'ninety-seven'); INSERT INTO t2 VALUES(23969, 98513, 'ninety-eight thousand five hundred thirteen'); INSERT INTO t2 VALUES(23970, 27101, 'twenty-seven thousand one hundred one'); INSERT INTO t2 VALUES(23971, 16528, 'sixteen thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(23972, 25107, 'twenty-five thousand one hundred seven'); INSERT INTO t2 VALUES(23973, 17038, 'seventeen thousand thirty-eight'); INSERT INTO t2 VALUES(23974, 27807, 'twenty-seven thousand eight hundred seven'); INSERT INTO t2 VALUES(23975, 10454, 'ten thousand four hundred fifty-four'); INSERT INTO t2 VALUES(23976, 12683, 'twelve thousand six hundred eighty-three'); INSERT INTO t2 VALUES(23977, 10772, 'ten thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(23978, 4846, 'four thousand eight hundred forty-six'); INSERT INTO t2 VALUES(23979, 64427, 'sixty-four thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(23980, 6697, 'six thousand six hundred ninety-seven'); INSERT INTO t2 VALUES(23981, 18765, 'eighteen thousand seven hundred sixty-five'); INSERT INTO t2 VALUES(23982, 61411, 'sixty-one thousand four hundred eleven'); INSERT INTO t2 VALUES(23983, 85951, 'eighty-five thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(23984, 14781, 'fourteen thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(23985, 85989, 'eighty-five thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(23986, 81858, 'eighty-one thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(23987, 47016, 'forty-seven thousand sixteen'); INSERT INTO t2 VALUES(23988, 24500, 'twenty-four thousand five hundred'); INSERT INTO t2 VALUES(23989, 12325, 'twelve thousand three hundred twenty-five'); INSERT INTO t2 VALUES(23990, 44041, 'forty-four thousand forty-one'); INSERT INTO t2 VALUES(23991, 91952, 'ninety-one thousand nine hundred fifty-two'); INSERT INTO t2 VALUES(23992, 56585, 'fifty-six thousand five hundred eighty-five'); INSERT INTO t2 VALUES(23993, 25156, 'twenty-five thousand one hundred fifty-six'); INSERT INTO t2 VALUES(23994, 77625, 'seventy-seven thousand six hundred twenty-five'); INSERT INTO t2 VALUES(23995, 41727, 'forty-one thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(23996, 92857, 'ninety-two thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(23997, 31540, 'thirty-one thousand five hundred forty'); INSERT INTO t2 VALUES(23998, 40398, 'forty thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(23999, 79991, 'seventy-nine thousand nine hundred ninety-one'); INSERT INTO t2 VALUES(24000, 49668, 'forty-nine thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(24001, 99196, 'ninety-nine thousand one hundred ninety-six'); INSERT INTO t2 VALUES(24002, 58453, 'fifty-eight thousand four hundred fifty-three'); INSERT INTO t2 VALUES(24003, 31182, 'thirty-one thousand one hundred eighty-two'); INSERT INTO t2 VALUES(24004, 84959, 'eighty-four thousand nine hundred fifty-nine'); INSERT INTO t2 VALUES(24005, 22412, 'twenty-two thousand four hundred twelve'); INSERT INTO t2 VALUES(24006, 66721, 'sixty-six thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(24007, 88726, 'eighty-eight thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(24008, 17102, 'seventeen thousand one hundred two'); INSERT INTO t2 VALUES(24009, 96223, 'ninety-six thousand two hundred twenty-three'); INSERT INTO t2 VALUES(24010, 41725, 'forty-one thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(24011, 62632, 'sixty-two thousand six hundred thirty-two'); INSERT INTO t2 VALUES(24012, 98008, 'ninety-eight thousand eight'); INSERT INTO t2 VALUES(24013, 54966, 'fifty-four thousand nine hundred sixty-six'); INSERT INTO t2 VALUES(24014, 56803, 'fifty-six thousand eight hundred three'); INSERT INTO t2 VALUES(24015, 84704, 'eighty-four thousand seven hundred four'); INSERT INTO t2 VALUES(24016, 54093, 'fifty-four thousand ninety-three'); INSERT INTO t2 VALUES(24017, 67014, 'sixty-seven thousand fourteen'); INSERT INTO t2 VALUES(24018, 10579, 'ten thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(24019, 1736, 'one thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(24020, 66754, 'sixty-six thousand seven hundred fifty-four'); INSERT INTO t2 VALUES(24021, 30320, 'thirty thousand three hundred twenty'); INSERT INTO t2 VALUES(24022, 42044, 'forty-two thousand forty-four'); INSERT INTO t2 VALUES(24023, 40118, 'forty thousand one hundred eighteen'); INSERT INTO t2 VALUES(24024, 52339, 'fifty-two thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(24025, 92978, 'ninety-two thousand nine hundred seventy-eight'); INSERT INTO t2 VALUES(24026, 56799, 'fifty-six thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(24027, 23142, 'twenty-three thousand one hundred forty-two'); INSERT INTO t2 VALUES(24028, 75365, 'seventy-five thousand three hundred sixty-five'); INSERT INTO t2 VALUES(24029, 95497, 'ninety-five thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(24030, 72464, 'seventy-two thousand four hundred sixty-four'); INSERT INTO t2 VALUES(24031, 80634, 'eighty thousand six hundred thirty-four'); INSERT INTO t2 VALUES(24032, 68600, 'sixty-eight thousand six hundred'); INSERT INTO t2 VALUES(24033, 3141, 'three thousand one hundred forty-one'); INSERT INTO t2 VALUES(24034, 1116, 'one thousand one hundred sixteen'); INSERT INTO t2 VALUES(24035, 76879, 'seventy-six thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(24036, 49199, 'forty-nine thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(24037, 86649, 'eighty-six thousand six hundred forty-nine'); INSERT INTO t2 VALUES(24038, 67605, 'sixty-seven thousand six hundred five'); INSERT INTO t2 VALUES(24039, 26213, 'twenty-six thousand two hundred thirteen'); INSERT INTO t2 VALUES(24040, 28929, 'twenty-eight thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(24041, 28763, 'twenty-eight thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(24042, 56313, 'fifty-six thousand three hundred thirteen'); INSERT INTO t2 VALUES(24043, 20074, 'twenty thousand seventy-four'); INSERT INTO t2 VALUES(24044, 95091, 'ninety-five thousand ninety-one'); INSERT INTO t2 VALUES(24045, 76766, 'seventy-six thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(24046, 98367, 'ninety-eight thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(24047, 95804, 'ninety-five thousand eight hundred four'); INSERT INTO t2 VALUES(24048, 11446, 'eleven thousand four hundred forty-six'); INSERT INTO t2 VALUES(24049, 57905, 'fifty-seven thousand nine hundred five'); INSERT INTO t2 VALUES(24050, 76037, 'seventy-six thousand thirty-seven'); INSERT INTO t2 VALUES(24051, 64054, 'sixty-four thousand fifty-four'); INSERT INTO t2 VALUES(24052, 20583, 'twenty thousand five hundred eighty-three'); INSERT INTO t2 VALUES(24053, 30335, 'thirty thousand three hundred thirty-five'); INSERT INTO t2 VALUES(24054, 60913, 'sixty thousand nine hundred thirteen'); INSERT INTO t2 VALUES(24055, 42269, 'forty-two thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(24056, 10312, 'ten thousand three hundred twelve'); INSERT INTO t2 VALUES(24057, 61075, 'sixty-one thousand seventy-five'); INSERT INTO t2 VALUES(24058, 14602, 'fourteen thousand six hundred two'); INSERT INTO t2 VALUES(24059, 18859, 'eighteen thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(24060, 98156, 'ninety-eight thousand one hundred fifty-six'); INSERT INTO t2 VALUES(24061, 41339, 'forty-one thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(24062, 46192, 'forty-six thousand one hundred ninety-two'); INSERT INTO t2 VALUES(24063, 26327, 'twenty-six thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(24064, 63472, 'sixty-three thousand four hundred seventy-two'); INSERT INTO t2 VALUES(24065, 97835, 'ninety-seven thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(24066, 19134, 'nineteen thousand one hundred thirty-four'); INSERT INTO t2 VALUES(24067, 54564, 'fifty-four thousand five hundred sixty-four'); INSERT INTO t2 VALUES(24068, 46890, 'forty-six thousand eight hundred ninety'); INSERT INTO t2 VALUES(24069, 7486, 'seven thousand four hundred eighty-six'); INSERT INTO t2 VALUES(24070, 61885, 'sixty-one thousand eight hundred eighty-five'); INSERT INTO t2 VALUES(24071, 67275, 'sixty-seven thousand two hundred seventy-five'); INSERT INTO t2 VALUES(24072, 17977, 'seventeen thousand nine hundred seventy-seven'); INSERT INTO t2 VALUES(24073, 44689, 'forty-four thousand six hundred eighty-nine'); INSERT INTO t2 VALUES(24074, 52623, 'fifty-two thousand six hundred twenty-three'); INSERT INTO t2 VALUES(24075, 45737, 'forty-five thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(24076, 15573, 'fifteen thousand five hundred seventy-three'); INSERT INTO t2 VALUES(24077, 97635, 'ninety-seven thousand six hundred thirty-five'); INSERT INTO t2 VALUES(24078, 23614, 'twenty-three thousand six hundred fourteen'); INSERT INTO t2 VALUES(24079, 45067, 'forty-five thousand sixty-seven'); INSERT INTO t2 VALUES(24080, 67746, 'sixty-seven thousand seven hundred forty-six'); INSERT INTO t2 VALUES(24081, 95903, 'ninety-five thousand nine hundred three'); INSERT INTO t2 VALUES(24082, 54242, 'fifty-four thousand two hundred forty-two'); INSERT INTO t2 VALUES(24083, 79345, 'seventy-nine thousand three hundred forty-five'); INSERT INTO t2 VALUES(24084, 12413, 'twelve thousand four hundred thirteen'); INSERT INTO t2 VALUES(24085, 21764, 'twenty-one thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(24086, 11980, 'eleven thousand nine hundred eighty'); INSERT INTO t2 VALUES(24087, 78024, 'seventy-eight thousand twenty-four'); INSERT INTO t2 VALUES(24088, 65304, 'sixty-five thousand three hundred four'); INSERT INTO t2 VALUES(24089, 16669, 'sixteen thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(24090, 67433, 'sixty-seven thousand four hundred thirty-three'); INSERT INTO t2 VALUES(24091, 13401, 'thirteen thousand four hundred one'); INSERT INTO t2 VALUES(24092, 5405, 'five thousand four hundred five'); INSERT INTO t2 VALUES(24093, 63001, 'sixty-three thousand one'); INSERT INTO t2 VALUES(24094, 4887, 'four thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(24095, 2516, 'two thousand five hundred sixteen'); INSERT INTO t2 VALUES(24096, 87710, 'eighty-seven thousand seven hundred ten'); INSERT INTO t2 VALUES(24097, 58108, 'fifty-eight thousand one hundred eight'); INSERT INTO t2 VALUES(24098, 53071, 'fifty-three thousand seventy-one'); INSERT INTO t2 VALUES(24099, 39872, 'thirty-nine thousand eight hundred seventy-two'); INSERT INTO t2 VALUES(24100, 30304, 'thirty thousand three hundred four'); INSERT INTO t2 VALUES(24101, 54130, 'fifty-four thousand one hundred thirty'); INSERT INTO t2 VALUES(24102, 64790, 'sixty-four thousand seven hundred ninety'); INSERT INTO t2 VALUES(24103, 16348, 'sixteen thousand three hundred forty-eight'); INSERT INTO t2 VALUES(24104, 97914, 'ninety-seven thousand nine hundred fourteen'); INSERT INTO t2 VALUES(24105, 58480, 'fifty-eight thousand four hundred eighty'); INSERT INTO t2 VALUES(24106, 36315, 'thirty-six thousand three hundred fifteen'); INSERT INTO t2 VALUES(24107, 5837, 'five thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(24108, 17645, 'seventeen thousand six hundred forty-five'); INSERT INTO t2 VALUES(24109, 61482, 'sixty-one thousand four hundred eighty-two'); INSERT INTO t2 VALUES(24110, 27120, 'twenty-seven thousand one hundred twenty'); INSERT INTO t2 VALUES(24111, 192, 'one hundred ninety-two'); INSERT INTO t2 VALUES(24112, 16876, 'sixteen thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(24113, 80002, 'eighty thousand two'); INSERT INTO t2 VALUES(24114, 94040, 'ninety-four thousand forty'); INSERT INTO t2 VALUES(24115, 52659, 'fifty-two thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(24116, 84835, 'eighty-four thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(24117, 75678, 'seventy-five thousand six hundred seventy-eight'); INSERT INTO t2 VALUES(24118, 2024, 'two thousand twenty-four'); INSERT INTO t2 VALUES(24119, 16178, 'sixteen thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(24120, 17149, 'seventeen thousand one hundred forty-nine'); INSERT INTO t2 VALUES(24121, 57359, 'fifty-seven thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(24122, 67859, 'sixty-seven thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(24123, 73443, 'seventy-three thousand four hundred forty-three'); INSERT INTO t2 VALUES(24124, 49342, 'forty-nine thousand three hundred forty-two'); INSERT INTO t2 VALUES(24125, 16399, 'sixteen thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(24126, 79129, 'seventy-nine thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(24127, 39093, 'thirty-nine thousand ninety-three'); INSERT INTO t2 VALUES(24128, 70342, 'seventy thousand three hundred forty-two'); INSERT INTO t2 VALUES(24129, 14116, 'fourteen thousand one hundred sixteen'); INSERT INTO t2 VALUES(24130, 82288, 'eighty-two thousand two hundred eighty-eight'); INSERT INTO t2 VALUES(24131, 39476, 'thirty-nine thousand four hundred seventy-six'); INSERT INTO t2 VALUES(24132, 56447, 'fifty-six thousand four hundred forty-seven'); INSERT INTO t2 VALUES(24133, 69487, 'sixty-nine thousand four hundred eighty-seven'); INSERT INTO t2 VALUES(24134, 29744, 'twenty-nine thousand seven hundred forty-four'); INSERT INTO t2 VALUES(24135, 93585, 'ninety-three thousand five hundred eighty-five'); INSERT INTO t2 VALUES(24136, 99044, 'ninety-nine thousand forty-four'); INSERT INTO t2 VALUES(24137, 66480, 'sixty-six thousand four hundred eighty'); INSERT INTO t2 VALUES(24138, 15549, 'fifteen thousand five hundred forty-nine'); INSERT INTO t2 VALUES(24139, 72299, 'seventy-two thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(24140, 83470, 'eighty-three thousand four hundred seventy'); INSERT INTO t2 VALUES(24141, 48391, 'forty-eight thousand three hundred ninety-one'); INSERT INTO t2 VALUES(24142, 25162, 'twenty-five thousand one hundred sixty-two'); INSERT INTO t2 VALUES(24143, 88696, 'eighty-eight thousand six hundred ninety-six'); INSERT INTO t2 VALUES(24144, 64798, 'sixty-four thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(24145, 11920, 'eleven thousand nine hundred twenty'); INSERT INTO t2 VALUES(24146, 26467, 'twenty-six thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(24147, 74197, 'seventy-four thousand one hundred ninety-seven'); INSERT INTO t2 VALUES(24148, 4957, 'four thousand nine hundred fifty-seven'); INSERT INTO t2 VALUES(24149, 22323, 'twenty-two thousand three hundred twenty-three'); INSERT INTO t2 VALUES(24150, 52478, 'fifty-two thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(24151, 74664, 'seventy-four thousand six hundred sixty-four'); INSERT INTO t2 VALUES(24152, 89026, 'eighty-nine thousand twenty-six'); INSERT INTO t2 VALUES(24153, 21882, 'twenty-one thousand eight hundred eighty-two'); INSERT INTO t2 VALUES(24154, 69055, 'sixty-nine thousand fifty-five'); INSERT INTO t2 VALUES(24155, 89039, 'eighty-nine thousand thirty-nine'); INSERT INTO t2 VALUES(24156, 12949, 'twelve thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(24157, 83603, 'eighty-three thousand six hundred three'); INSERT INTO t2 VALUES(24158, 20332, 'twenty thousand three hundred thirty-two'); INSERT INTO t2 VALUES(24159, 24206, 'twenty-four thousand two hundred six'); INSERT INTO t2 VALUES(24160, 75671, 'seventy-five thousand six hundred seventy-one'); INSERT INTO t2 VALUES(24161, 39010, 'thirty-nine thousand ten'); INSERT INTO t2 VALUES(24162, 91517, 'ninety-one thousand five hundred seventeen'); INSERT INTO t2 VALUES(24163, 78899, 'seventy-eight thousand eight hundred ninety-nine'); INSERT INTO t2 VALUES(24164, 36955, 'thirty-six thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(24165, 68124, 'sixty-eight thousand one hundred twenty-four'); INSERT INTO t2 VALUES(24166, 50597, 'fifty thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(24167, 94731, 'ninety-four thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(24168, 31499, 'thirty-one thousand four hundred ninety-nine'); INSERT INTO t2 VALUES(24169, 32475, 'thirty-two thousand four hundred seventy-five'); INSERT INTO t2 VALUES(24170, 62745, 'sixty-two thousand seven hundred forty-five'); INSERT INTO t2 VALUES(24171, 88692, 'eighty-eight thousand six hundred ninety-two'); INSERT INTO t2 VALUES(24172, 63624, 'sixty-three thousand six hundred twenty-four'); INSERT INTO t2 VALUES(24173, 67623, 'sixty-seven thousand six hundred twenty-three'); INSERT INTO t2 VALUES(24174, 74032, 'seventy-four thousand thirty-two'); INSERT INTO t2 VALUES(24175, 83391, 'eighty-three thousand three hundred ninety-one'); INSERT INTO t2 VALUES(24176, 40650, 'forty thousand six hundred fifty'); INSERT INTO t2 VALUES(24177, 76408, 'seventy-six thousand four hundred eight'); INSERT INTO t2 VALUES(24178, 11917, 'eleven thousand nine hundred seventeen'); INSERT INTO t2 VALUES(24179, 63262, 'sixty-three thousand two hundred sixty-two'); INSERT INTO t2 VALUES(24180, 74605, 'seventy-four thousand six hundred five'); INSERT INTO t2 VALUES(24181, 55540, 'fifty-five thousand five hundred forty'); INSERT INTO t2 VALUES(24182, 23777, 'twenty-three thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(24183, 89059, 'eighty-nine thousand fifty-nine'); INSERT INTO t2 VALUES(24184, 90176, 'ninety thousand one hundred seventy-six'); INSERT INTO t2 VALUES(24185, 82320, 'eighty-two thousand three hundred twenty'); INSERT INTO t2 VALUES(24186, 62842, 'sixty-two thousand eight hundred forty-two'); INSERT INTO t2 VALUES(24187, 55749, 'fifty-five thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(24188, 35982, 'thirty-five thousand nine hundred eighty-two'); INSERT INTO t2 VALUES(24189, 53634, 'fifty-three thousand six hundred thirty-four'); INSERT INTO t2 VALUES(24190, 94544, 'ninety-four thousand five hundred forty-four'); INSERT INTO t2 VALUES(24191, 9898, 'nine thousand eight hundred ninety-eight'); INSERT INTO t2 VALUES(24192, 81233, 'eighty-one thousand two hundred thirty-three'); INSERT INTO t2 VALUES(24193, 81822, 'eighty-one thousand eight hundred twenty-two'); INSERT INTO t2 VALUES(24194, 8194, 'eight thousand one hundred ninety-four'); INSERT INTO t2 VALUES(24195, 85955, 'eighty-five thousand nine hundred fifty-five'); INSERT INTO t2 VALUES(24196, 95216, 'ninety-five thousand two hundred sixteen'); INSERT INTO t2 VALUES(24197, 12572, 'twelve thousand five hundred seventy-two'); INSERT INTO t2 VALUES(24198, 51556, 'fifty-one thousand five hundred fifty-six'); INSERT INTO t2 VALUES(24199, 22048, 'twenty-two thousand forty-eight'); INSERT INTO t2 VALUES(24200, 3736, 'three thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(24201, 22922, 'twenty-two thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(24202, 27606, 'twenty-seven thousand six hundred six'); INSERT INTO t2 VALUES(24203, 58858, 'fifty-eight thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(24204, 35903, 'thirty-five thousand nine hundred three'); INSERT INTO t2 VALUES(24205, 70493, 'seventy thousand four hundred ninety-three'); INSERT INTO t2 VALUES(24206, 79557, 'seventy-nine thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(24207, 27052, 'twenty-seven thousand fifty-two'); INSERT INTO t2 VALUES(24208, 54827, 'fifty-four thousand eight hundred twenty-seven'); INSERT INTO t2 VALUES(24209, 65229, 'sixty-five thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(24210, 6719, 'six thousand seven hundred nineteen'); INSERT INTO t2 VALUES(24211, 99976, 'ninety-nine thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(24212, 53084, 'fifty-three thousand eighty-four'); INSERT INTO t2 VALUES(24213, 69262, 'sixty-nine thousand two hundred sixty-two'); INSERT INTO t2 VALUES(24214, 4302, 'four thousand three hundred two'); INSERT INTO t2 VALUES(24215, 1578, 'one thousand five hundred seventy-eight'); INSERT INTO t2 VALUES(24216, 30756, 'thirty thousand seven hundred fifty-six'); INSERT INTO t2 VALUES(24217, 67484, 'sixty-seven thousand four hundred eighty-four'); INSERT INTO t2 VALUES(24218, 77330, 'seventy-seven thousand three hundred thirty'); INSERT INTO t2 VALUES(24219, 84270, 'eighty-four thousand two hundred seventy'); INSERT INTO t2 VALUES(24220, 58522, 'fifty-eight thousand five hundred twenty-two'); INSERT INTO t2 VALUES(24221, 24051, 'twenty-four thousand fifty-one'); INSERT INTO t2 VALUES(24222, 15310, 'fifteen thousand three hundred ten'); INSERT INTO t2 VALUES(24223, 98560, 'ninety-eight thousand five hundred sixty'); INSERT INTO t2 VALUES(24224, 90291, 'ninety thousand two hundred ninety-one'); INSERT INTO t2 VALUES(24225, 64876, 'sixty-four thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(24226, 14106, 'fourteen thousand one hundred six'); INSERT INTO t2 VALUES(24227, 52497, 'fifty-two thousand four hundred ninety-seven'); INSERT INTO t2 VALUES(24228, 45679, 'forty-five thousand six hundred seventy-nine'); INSERT INTO t2 VALUES(24229, 44696, 'forty-four thousand six hundred ninety-six'); INSERT INTO t2 VALUES(24230, 28523, 'twenty-eight thousand five hundred twenty-three'); INSERT INTO t2 VALUES(24231, 75415, 'seventy-five thousand four hundred fifteen'); INSERT INTO t2 VALUES(24232, 43067, 'forty-three thousand sixty-seven'); INSERT INTO t2 VALUES(24233, 42327, 'forty-two thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(24234, 69570, 'sixty-nine thousand five hundred seventy'); INSERT INTO t2 VALUES(24235, 61365, 'sixty-one thousand three hundred sixty-five'); INSERT INTO t2 VALUES(24236, 13113, 'thirteen thousand one hundred thirteen'); INSERT INTO t2 VALUES(24237, 37429, 'thirty-seven thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(24238, 27050, 'twenty-seven thousand fifty'); INSERT INTO t2 VALUES(24239, 70063, 'seventy thousand sixty-three'); INSERT INTO t2 VALUES(24240, 8777, 'eight thousand seven hundred seventy-seven'); INSERT INTO t2 VALUES(24241, 38764, 'thirty-eight thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(24242, 84815, 'eighty-four thousand eight hundred fifteen'); INSERT INTO t2 VALUES(24243, 44912, 'forty-four thousand nine hundred twelve'); INSERT INTO t2 VALUES(24244, 76435, 'seventy-six thousand four hundred thirty-five'); INSERT INTO t2 VALUES(24245, 71544, 'seventy-one thousand five hundred forty-four'); INSERT INTO t2 VALUES(24246, 57188, 'fifty-seven thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(24247, 40211, 'forty thousand two hundred eleven'); INSERT INTO t2 VALUES(24248, 54889, 'fifty-four thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(24249, 89108, 'eighty-nine thousand one hundred eight'); INSERT INTO t2 VALUES(24250, 79365, 'seventy-nine thousand three hundred sixty-five'); INSERT INTO t2 VALUES(24251, 16951, 'sixteen thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(24252, 94837, 'ninety-four thousand eight hundred thirty-seven'); INSERT INTO t2 VALUES(24253, 44878, 'forty-four thousand eight hundred seventy-eight'); INSERT INTO t2 VALUES(24254, 20616, 'twenty thousand six hundred sixteen'); INSERT INTO t2 VALUES(24255, 45, 'forty-five'); INSERT INTO t2 VALUES(24256, 10067, 'ten thousand sixty-seven'); INSERT INTO t2 VALUES(24257, 85161, 'eighty-five thousand one hundred sixty-one'); INSERT INTO t2 VALUES(24258, 43286, 'forty-three thousand two hundred eighty-six'); INSERT INTO t2 VALUES(24259, 24924, 'twenty-four thousand nine hundred twenty-four'); INSERT INTO t2 VALUES(24260, 40625, 'forty thousand six hundred twenty-five'); INSERT INTO t2 VALUES(24261, 98159, 'ninety-eight thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(24262, 15511, 'fifteen thousand five hundred eleven'); INSERT INTO t2 VALUES(24263, 5203, 'five thousand two hundred three'); INSERT INTO t2 VALUES(24264, 47281, 'forty-seven thousand two hundred eighty-one'); INSERT INTO t2 VALUES(24265, 67079, 'sixty-seven thousand seventy-nine'); INSERT INTO t2 VALUES(24266, 44221, 'forty-four thousand two hundred twenty-one'); INSERT INTO t2 VALUES(24267, 396, 'three hundred ninety-six'); INSERT INTO t2 VALUES(24268, 89886, 'eighty-nine thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(24269, 42051, 'forty-two thousand fifty-one'); INSERT INTO t2 VALUES(24270, 5553, 'five thousand five hundred fifty-three'); INSERT INTO t2 VALUES(24271, 77189, 'seventy-seven thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(24272, 69762, 'sixty-nine thousand seven hundred sixty-two'); INSERT INTO t2 VALUES(24273, 41521, 'forty-one thousand five hundred twenty-one'); INSERT INTO t2 VALUES(24274, 33752, 'thirty-three thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(24275, 23258, 'twenty-three thousand two hundred fifty-eight'); INSERT INTO t2 VALUES(24276, 8996, 'eight thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(24277, 25068, 'twenty-five thousand sixty-eight'); INSERT INTO t2 VALUES(24278, 78685, 'seventy-eight thousand six hundred eighty-five'); INSERT INTO t2 VALUES(24279, 85962, 'eighty-five thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(24280, 28129, 'twenty-eight thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(24281, 58106, 'fifty-eight thousand one hundred six'); INSERT INTO t2 VALUES(24282, 62554, 'sixty-two thousand five hundred fifty-four'); INSERT INTO t2 VALUES(24283, 7769, 'seven thousand seven hundred sixty-nine'); INSERT INTO t2 VALUES(24284, 84373, 'eighty-four thousand three hundred seventy-three'); INSERT INTO t2 VALUES(24285, 83290, 'eighty-three thousand two hundred ninety'); INSERT INTO t2 VALUES(24286, 31042, 'thirty-one thousand forty-two'); INSERT INTO t2 VALUES(24287, 25949, 'twenty-five thousand nine hundred forty-nine'); INSERT INTO t2 VALUES(24288, 82656, 'eighty-two thousand six hundred fifty-six'); INSERT INTO t2 VALUES(24289, 35465, 'thirty-five thousand four hundred sixty-five'); INSERT INTO t2 VALUES(24290, 43763, 'forty-three thousand seven hundred sixty-three'); INSERT INTO t2 VALUES(24291, 69291, 'sixty-nine thousand two hundred ninety-one'); INSERT INTO t2 VALUES(24292, 66388, 'sixty-six thousand three hundred eighty-eight'); INSERT INTO t2 VALUES(24293, 4469, 'four thousand four hundred sixty-nine'); INSERT INTO t2 VALUES(24294, 9967, 'nine thousand nine hundred sixty-seven'); INSERT INTO t2 VALUES(24295, 52222, 'fifty-two thousand two hundred twenty-two'); INSERT INTO t2 VALUES(24296, 16544, 'sixteen thousand five hundred forty-four'); INSERT INTO t2 VALUES(24297, 99931, 'ninety-nine thousand nine hundred thirty-one'); INSERT INTO t2 VALUES(24298, 24789, 'twenty-four thousand seven hundred eighty-nine'); INSERT INTO t2 VALUES(24299, 44188, 'forty-four thousand one hundred eighty-eight'); INSERT INTO t2 VALUES(24300, 11213, 'eleven thousand two hundred thirteen'); INSERT INTO t2 VALUES(24301, 89061, 'eighty-nine thousand sixty-one'); INSERT INTO t2 VALUES(24302, 46400, 'forty-six thousand four hundred'); INSERT INTO t2 VALUES(24303, 57142, 'fifty-seven thousand one hundred forty-two'); INSERT INTO t2 VALUES(24304, 8960, 'eight thousand nine hundred sixty'); INSERT INTO t2 VALUES(24305, 95843, 'ninety-five thousand eight hundred forty-three'); INSERT INTO t2 VALUES(24306, 16392, 'sixteen thousand three hundred ninety-two'); INSERT INTO t2 VALUES(24307, 84055, 'eighty-four thousand fifty-five'); INSERT INTO t2 VALUES(24308, 48466, 'forty-eight thousand four hundred sixty-six'); INSERT INTO t2 VALUES(24309, 80946, 'eighty thousand nine hundred forty-six'); INSERT INTO t2 VALUES(24310, 1523, 'one thousand five hundred twenty-three'); INSERT INTO t2 VALUES(24311, 52308, 'fifty-two thousand three hundred eight'); INSERT INTO t2 VALUES(24312, 12429, 'twelve thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(24313, 84468, 'eighty-four thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(24314, 1480, 'one thousand four hundred eighty'); INSERT INTO t2 VALUES(24315, 98779, 'ninety-eight thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(24316, 52356, 'fifty-two thousand three hundred fifty-six'); INSERT INTO t2 VALUES(24317, 79847, 'seventy-nine thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(24318, 87210, 'eighty-seven thousand two hundred ten'); INSERT INTO t2 VALUES(24319, 33181, 'thirty-three thousand one hundred eighty-one'); INSERT INTO t2 VALUES(24320, 49379, 'forty-nine thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(24321, 1534, 'one thousand five hundred thirty-four'); INSERT INTO t2 VALUES(24322, 92935, 'ninety-two thousand nine hundred thirty-five'); INSERT INTO t2 VALUES(24323, 6889, 'six thousand eight hundred eighty-nine'); INSERT INTO t2 VALUES(24324, 85100, 'eighty-five thousand one hundred'); INSERT INTO t2 VALUES(24325, 14095, 'fourteen thousand ninety-five'); INSERT INTO t2 VALUES(24326, 80989, 'eighty thousand nine hundred eighty-nine'); INSERT INTO t2 VALUES(24327, 25772, 'twenty-five thousand seven hundred seventy-two'); INSERT INTO t2 VALUES(24328, 17776, 'seventeen thousand seven hundred seventy-six'); INSERT INTO t2 VALUES(24329, 53057, 'fifty-three thousand fifty-seven'); INSERT INTO t2 VALUES(24330, 49253, 'forty-nine thousand two hundred fifty-three'); INSERT INTO t2 VALUES(24331, 85187, 'eighty-five thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(24332, 13337, 'thirteen thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(24333, 15096, 'fifteen thousand ninety-six'); INSERT INTO t2 VALUES(24334, 8400, 'eight thousand four hundred'); INSERT INTO t2 VALUES(24335, 27312, 'twenty-seven thousand three hundred twelve'); INSERT INTO t2 VALUES(24336, 17024, 'seventeen thousand twenty-four'); INSERT INTO t2 VALUES(24337, 95728, 'ninety-five thousand seven hundred twenty-eight'); INSERT INTO t2 VALUES(24338, 40881, 'forty thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(24339, 6300, 'six thousand three hundred'); INSERT INTO t2 VALUES(24340, 38671, 'thirty-eight thousand six hundred seventy-one'); INSERT INTO t2 VALUES(24341, 60007, 'sixty thousand seven'); INSERT INTO t2 VALUES(24342, 68053, 'sixty-eight thousand fifty-three'); INSERT INTO t2 VALUES(24343, 6597, 'six thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(24344, 37402, 'thirty-seven thousand four hundred two'); INSERT INTO t2 VALUES(24345, 57022, 'fifty-seven thousand twenty-two'); INSERT INTO t2 VALUES(24346, 96220, 'ninety-six thousand two hundred twenty'); INSERT INTO t2 VALUES(24347, 49453, 'forty-nine thousand four hundred fifty-three'); INSERT INTO t2 VALUES(24348, 83046, 'eighty-three thousand forty-six'); INSERT INTO t2 VALUES(24349, 80444, 'eighty thousand four hundred forty-four'); INSERT INTO t2 VALUES(24350, 19560, 'nineteen thousand five hundred sixty'); INSERT INTO t2 VALUES(24351, 47100, 'forty-seven thousand one hundred'); INSERT INTO t2 VALUES(24352, 7084, 'seven thousand eighty-four'); INSERT INTO t2 VALUES(24353, 66076, 'sixty-six thousand seventy-six'); INSERT INTO t2 VALUES(24354, 32814, 'thirty-two thousand eight hundred fourteen'); INSERT INTO t2 VALUES(24355, 73585, 'seventy-three thousand five hundred eighty-five'); INSERT INTO t2 VALUES(24356, 96101, 'ninety-six thousand one hundred one'); INSERT INTO t2 VALUES(24357, 72676, 'seventy-two thousand six hundred seventy-six'); INSERT INTO t2 VALUES(24358, 51006, 'fifty-one thousand six'); INSERT INTO t2 VALUES(24359, 74725, 'seventy-four thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(24360, 32659, 'thirty-two thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(24361, 64731, 'sixty-four thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(24362, 63401, 'sixty-three thousand four hundred one'); INSERT INTO t2 VALUES(24363, 32426, 'thirty-two thousand four hundred twenty-six'); INSERT INTO t2 VALUES(24364, 53858, 'fifty-three thousand eight hundred fifty-eight'); INSERT INTO t2 VALUES(24365, 96070, 'ninety-six thousand seventy'); INSERT INTO t2 VALUES(24366, 98435, 'ninety-eight thousand four hundred thirty-five'); INSERT INTO t2 VALUES(24367, 42315, 'forty-two thousand three hundred fifteen'); INSERT INTO t2 VALUES(24368, 14201, 'fourteen thousand two hundred one'); INSERT INTO t2 VALUES(24369, 69602, 'sixty-nine thousand six hundred two'); INSERT INTO t2 VALUES(24370, 6138, 'six thousand one hundred thirty-eight'); INSERT INTO t2 VALUES(24371, 1191, 'one thousand one hundred ninety-one'); INSERT INTO t2 VALUES(24372, 36133, 'thirty-six thousand one hundred thirty-three'); INSERT INTO t2 VALUES(24373, 65074, 'sixty-five thousand seventy-four'); INSERT INTO t2 VALUES(24374, 74922, 'seventy-four thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(24375, 10032, 'ten thousand thirty-two'); INSERT INTO t2 VALUES(24376, 73137, 'seventy-three thousand one hundred thirty-seven'); INSERT INTO t2 VALUES(24377, 49951, 'forty-nine thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(24378, 56493, 'fifty-six thousand four hundred ninety-three'); INSERT INTO t2 VALUES(24379, 43000, 'forty-three thousand'); INSERT INTO t2 VALUES(24380, 6836, 'six thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(24381, 50960, 'fifty thousand nine hundred sixty'); INSERT INTO t2 VALUES(24382, 14348, 'fourteen thousand three hundred forty-eight'); INSERT INTO t2 VALUES(24383, 8185, 'eight thousand one hundred eighty-five'); INSERT INTO t2 VALUES(24384, 37227, 'thirty-seven thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(24385, 30869, 'thirty thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(24386, 63758, 'sixty-three thousand seven hundred fifty-eight'); INSERT INTO t2 VALUES(24387, 53354, 'fifty-three thousand three hundred fifty-four'); INSERT INTO t2 VALUES(24388, 9886, 'nine thousand eight hundred eighty-six'); INSERT INTO t2 VALUES(24389, 30665, 'thirty thousand six hundred sixty-five'); INSERT INTO t2 VALUES(24390, 10279, 'ten thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(24391, 48870, 'forty-eight thousand eight hundred seventy'); INSERT INTO t2 VALUES(24392, 92268, 'ninety-two thousand two hundred sixty-eight'); INSERT INTO t2 VALUES(24393, 25625, 'twenty-five thousand six hundred twenty-five'); INSERT INTO t2 VALUES(24394, 34199, 'thirty-four thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(24395, 99109, 'ninety-nine thousand one hundred nine'); INSERT INTO t2 VALUES(24396, 60863, 'sixty thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(24397, 94067, 'ninety-four thousand sixty-seven'); INSERT INTO t2 VALUES(24398, 44784, 'forty-four thousand seven hundred eighty-four'); INSERT INTO t2 VALUES(24399, 19092, 'nineteen thousand ninety-two'); INSERT INTO t2 VALUES(24400, 73849, 'seventy-three thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(24401, 71051, 'seventy-one thousand fifty-one'); INSERT INTO t2 VALUES(24402, 58208, 'fifty-eight thousand two hundred eight'); INSERT INTO t2 VALUES(24403, 24007, 'twenty-four thousand seven'); INSERT INTO t2 VALUES(24404, 53808, 'fifty-three thousand eight hundred eight'); INSERT INTO t2 VALUES(24405, 74649, 'seventy-four thousand six hundred forty-nine'); INSERT INTO t2 VALUES(24406, 5863, 'five thousand eight hundred sixty-three'); INSERT INTO t2 VALUES(24407, 11221, 'eleven thousand two hundred twenty-one'); INSERT INTO t2 VALUES(24408, 33922, 'thirty-three thousand nine hundred twenty-two'); INSERT INTO t2 VALUES(24409, 46076, 'forty-six thousand seventy-six'); INSERT INTO t2 VALUES(24410, 50449, 'fifty thousand four hundred forty-nine'); INSERT INTO t2 VALUES(24411, 90879, 'ninety thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(24412, 35993, 'thirty-five thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(24413, 4939, 'four thousand nine hundred thirty-nine'); INSERT INTO t2 VALUES(24414, 28145, 'twenty-eight thousand one hundred forty-five'); INSERT INTO t2 VALUES(24415, 50552, 'fifty thousand five hundred fifty-two'); INSERT INTO t2 VALUES(24416, 25794, 'twenty-five thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(24417, 19409, 'nineteen thousand four hundred nine'); INSERT INTO t2 VALUES(24418, 83942, 'eighty-three thousand nine hundred forty-two'); INSERT INTO t2 VALUES(24419, 34387, 'thirty-four thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(24420, 2252, 'two thousand two hundred fifty-two'); INSERT INTO t2 VALUES(24421, 61817, 'sixty-one thousand eight hundred seventeen'); INSERT INTO t2 VALUES(24422, 25013, 'twenty-five thousand thirteen'); INSERT INTO t2 VALUES(24423, 54212, 'fifty-four thousand two hundred twelve'); INSERT INTO t2 VALUES(24424, 91790, 'ninety-one thousand seven hundred ninety'); INSERT INTO t2 VALUES(24425, 16492, 'sixteen thousand four hundred ninety-two'); INSERT INTO t2 VALUES(24426, 90482, 'ninety thousand four hundred eighty-two'); INSERT INTO t2 VALUES(24427, 80950, 'eighty thousand nine hundred fifty'); INSERT INTO t2 VALUES(24428, 25917, 'twenty-five thousand nine hundred seventeen'); INSERT INTO t2 VALUES(24429, 34888, 'thirty-four thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(24430, 51866, 'fifty-one thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(24431, 44287, 'forty-four thousand two hundred eighty-seven'); INSERT INTO t2 VALUES(24432, 35788, 'thirty-five thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(24433, 16199, 'sixteen thousand one hundred ninety-nine'); INSERT INTO t2 VALUES(24434, 76063, 'seventy-six thousand sixty-three'); INSERT INTO t2 VALUES(24435, 80881, 'eighty thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(24436, 48534, 'forty-eight thousand five hundred thirty-four'); INSERT INTO t2 VALUES(24437, 75694, 'seventy-five thousand six hundred ninety-four'); INSERT INTO t2 VALUES(24438, 83764, 'eighty-three thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(24439, 73316, 'seventy-three thousand three hundred sixteen'); INSERT INTO t2 VALUES(24440, 40161, 'forty thousand one hundred sixty-one'); INSERT INTO t2 VALUES(24441, 26042, 'twenty-six thousand forty-two'); INSERT INTO t2 VALUES(24442, 41177, 'forty-one thousand one hundred seventy-seven'); INSERT INTO t2 VALUES(24443, 31055, 'thirty-one thousand fifty-five'); INSERT INTO t2 VALUES(24444, 32482, 'thirty-two thousand four hundred eighty-two'); INSERT INTO t2 VALUES(24445, 55305, 'fifty-five thousand three hundred five'); INSERT INTO t2 VALUES(24446, 77279, 'seventy-seven thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(24447, 88659, 'eighty-eight thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(24448, 24876, 'twenty-four thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(24449, 32785, 'thirty-two thousand seven hundred eighty-five'); INSERT INTO t2 VALUES(24450, 12269, 'twelve thousand two hundred sixty-nine'); INSERT INTO t2 VALUES(24451, 35916, 'thirty-five thousand nine hundred sixteen'); INSERT INTO t2 VALUES(24452, 47660, 'forty-seven thousand six hundred sixty'); INSERT INTO t2 VALUES(24453, 75253, 'seventy-five thousand two hundred fifty-three'); INSERT INTO t2 VALUES(24454, 61129, 'sixty-one thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(24455, 29439, 'twenty-nine thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(24456, 53333, 'fifty-three thousand three hundred thirty-three'); INSERT INTO t2 VALUES(24457, 41467, 'forty-one thousand four hundred sixty-seven'); INSERT INTO t2 VALUES(24458, 18416, 'eighteen thousand four hundred sixteen'); INSERT INTO t2 VALUES(24459, 20291, 'twenty thousand two hundred ninety-one'); INSERT INTO t2 VALUES(24460, 39835, 'thirty-nine thousand eight hundred thirty-five'); INSERT INTO t2 VALUES(24461, 92051, 'ninety-two thousand fifty-one'); INSERT INTO t2 VALUES(24462, 64638, 'sixty-four thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(24463, 98651, 'ninety-eight thousand six hundred fifty-one'); INSERT INTO t2 VALUES(24464, 94009, 'ninety-four thousand nine'); INSERT INTO t2 VALUES(24465, 37566, 'thirty-seven thousand five hundred sixty-six'); INSERT INTO t2 VALUES(24466, 81018, 'eighty-one thousand eighteen'); INSERT INTO t2 VALUES(24467, 32649, 'thirty-two thousand six hundred forty-nine'); INSERT INTO t2 VALUES(24468, 27737, 'twenty-seven thousand seven hundred thirty-seven'); INSERT INTO t2 VALUES(24469, 56198, 'fifty-six thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(24470, 34203, 'thirty-four thousand two hundred three'); INSERT INTO t2 VALUES(24471, 7344, 'seven thousand three hundred forty-four'); INSERT INTO t2 VALUES(24472, 45478, 'forty-five thousand four hundred seventy-eight'); INSERT INTO t2 VALUES(24473, 44261, 'forty-four thousand two hundred sixty-one'); INSERT INTO t2 VALUES(24474, 28519, 'twenty-eight thousand five hundred nineteen'); INSERT INTO t2 VALUES(24475, 47477, 'forty-seven thousand four hundred seventy-seven'); INSERT INTO t2 VALUES(24476, 42738, 'forty-two thousand seven hundred thirty-eight'); INSERT INTO t2 VALUES(24477, 45637, 'forty-five thousand six hundred thirty-seven'); INSERT INTO t2 VALUES(24478, 28370, 'twenty-eight thousand three hundred seventy'); INSERT INTO t2 VALUES(24479, 89455, 'eighty-nine thousand four hundred fifty-five'); INSERT INTO t2 VALUES(24480, 83443, 'eighty-three thousand four hundred forty-three'); INSERT INTO t2 VALUES(24481, 39599, 'thirty-nine thousand five hundred ninety-nine'); INSERT INTO t2 VALUES(24482, 75551, 'seventy-five thousand five hundred fifty-one'); INSERT INTO t2 VALUES(24483, 11716, 'eleven thousand seven hundred sixteen'); INSERT INTO t2 VALUES(24484, 28734, 'twenty-eight thousand seven hundred thirty-four'); INSERT INTO t2 VALUES(24485, 43429, 'forty-three thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(24486, 20028, 'twenty thousand twenty-eight'); INSERT INTO t2 VALUES(24487, 25054, 'twenty-five thousand fifty-four'); INSERT INTO t2 VALUES(24488, 56472, 'fifty-six thousand four hundred seventy-two'); INSERT INTO t2 VALUES(24489, 70426, 'seventy thousand four hundred twenty-six'); INSERT INTO t2 VALUES(24490, 75902, 'seventy-five thousand nine hundred two'); INSERT INTO t2 VALUES(24491, 832, 'eight hundred thirty-two'); INSERT INTO t2 VALUES(24492, 44553, 'forty-four thousand five hundred fifty-three'); INSERT INTO t2 VALUES(24493, 93630, 'ninety-three thousand six hundred thirty'); INSERT INTO t2 VALUES(24494, 12792, 'twelve thousand seven hundred ninety-two'); INSERT INTO t2 VALUES(24495, 90401, 'ninety thousand four hundred one'); INSERT INTO t2 VALUES(24496, 81560, 'eighty-one thousand five hundred sixty'); INSERT INTO t2 VALUES(24497, 27579, 'twenty-seven thousand five hundred seventy-nine'); INSERT INTO t2 VALUES(24498, 47438, 'forty-seven thousand four hundred thirty-eight'); INSERT INTO t2 VALUES(24499, 82993, 'eighty-two thousand nine hundred ninety-three'); INSERT INTO t2 VALUES(24500, 43687, 'forty-three thousand six hundred eighty-seven'); INSERT INTO t2 VALUES(24501, 84802, 'eighty-four thousand eight hundred two'); INSERT INTO t2 VALUES(24502, 85414, 'eighty-five thousand four hundred fourteen'); INSERT INTO t2 VALUES(24503, 6204, 'six thousand two hundred four'); INSERT INTO t2 VALUES(24504, 83767, 'eighty-three thousand seven hundred sixty-seven'); INSERT INTO t2 VALUES(24505, 52684, 'fifty-two thousand six hundred eighty-four'); INSERT INTO t2 VALUES(24506, 49485, 'forty-nine thousand four hundred eighty-five'); INSERT INTO t2 VALUES(24507, 63100, 'sixty-three thousand one hundred'); INSERT INTO t2 VALUES(24508, 14052, 'fourteen thousand fifty-two'); INSERT INTO t2 VALUES(24509, 57318, 'fifty-seven thousand three hundred eighteen'); INSERT INTO t2 VALUES(24510, 28948, 'twenty-eight thousand nine hundred forty-eight'); INSERT INTO t2 VALUES(24511, 37325, 'thirty-seven thousand three hundred twenty-five'); INSERT INTO t2 VALUES(24512, 78310, 'seventy-eight thousand three hundred ten'); INSERT INTO t2 VALUES(24513, 25187, 'twenty-five thousand one hundred eighty-seven'); INSERT INTO t2 VALUES(24514, 13616, 'thirteen thousand six hundred sixteen'); INSERT INTO t2 VALUES(24515, 51087, 'fifty-one thousand eighty-seven'); INSERT INTO t2 VALUES(24516, 61227, 'sixty-one thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(24517, 23567, 'twenty-three thousand five hundred sixty-seven'); INSERT INTO t2 VALUES(24518, 307, 'three hundred seven'); INSERT INTO t2 VALUES(24519, 5876, 'five thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(24520, 75134, 'seventy-five thousand one hundred thirty-four'); INSERT INTO t2 VALUES(24521, 55945, 'fifty-five thousand nine hundred forty-five'); INSERT INTO t2 VALUES(24522, 73035, 'seventy-three thousand thirty-five'); INSERT INTO t2 VALUES(24523, 48155, 'forty-eight thousand one hundred fifty-five'); INSERT INTO t2 VALUES(24524, 59826, 'fifty-nine thousand eight hundred twenty-six'); INSERT INTO t2 VALUES(24525, 93451, 'ninety-three thousand four hundred fifty-one'); INSERT INTO t2 VALUES(24526, 9593, 'nine thousand five hundred ninety-three'); INSERT INTO t2 VALUES(24527, 38523, 'thirty-eight thousand five hundred twenty-three'); INSERT INTO t2 VALUES(24528, 501, 'five hundred one'); INSERT INTO t2 VALUES(24529, 8665, 'eight thousand six hundred sixty-five'); INSERT INTO t2 VALUES(24530, 57673, 'fifty-seven thousand six hundred seventy-three'); INSERT INTO t2 VALUES(24531, 50327, 'fifty thousand three hundred twenty-seven'); INSERT INTO t2 VALUES(24532, 46369, 'forty-six thousand three hundred sixty-nine'); INSERT INTO t2 VALUES(24533, 57376, 'fifty-seven thousand three hundred seventy-six'); INSERT INTO t2 VALUES(24534, 87448, 'eighty-seven thousand four hundred forty-eight'); INSERT INTO t2 VALUES(24535, 34025, 'thirty-four thousand twenty-five'); INSERT INTO t2 VALUES(24536, 76046, 'seventy-six thousand forty-six'); INSERT INTO t2 VALUES(24537, 8668, 'eight thousand six hundred sixty-eight'); INSERT INTO t2 VALUES(24538, 22879, 'twenty-two thousand eight hundred seventy-nine'); INSERT INTO t2 VALUES(24539, 10883, 'ten thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(24540, 96877, 'ninety-six thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(24541, 38988, 'thirty-eight thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(24542, 94028, 'ninety-four thousand twenty-eight'); INSERT INTO t2 VALUES(24543, 32994, 'thirty-two thousand nine hundred ninety-four'); INSERT INTO t2 VALUES(24544, 93475, 'ninety-three thousand four hundred seventy-five'); INSERT INTO t2 VALUES(24545, 53960, 'fifty-three thousand nine hundred sixty'); INSERT INTO t2 VALUES(24546, 62273, 'sixty-two thousand two hundred seventy-three'); INSERT INTO t2 VALUES(24547, 56918, 'fifty-six thousand nine hundred eighteen'); INSERT INTO t2 VALUES(24548, 31256, 'thirty-one thousand two hundred fifty-six'); INSERT INTO t2 VALUES(24549, 94391, 'ninety-four thousand three hundred ninety-one'); INSERT INTO t2 VALUES(24550, 72429, 'seventy-two thousand four hundred twenty-nine'); INSERT INTO t2 VALUES(24551, 42897, 'forty-two thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(24552, 86610, 'eighty-six thousand six hundred ten'); INSERT INTO t2 VALUES(24553, 58962, 'fifty-eight thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(24554, 36810, 'thirty-six thousand eight hundred ten'); INSERT INTO t2 VALUES(24555, 78103, 'seventy-eight thousand one hundred three'); INSERT INTO t2 VALUES(24556, 64075, 'sixty-four thousand seventy-five'); INSERT INTO t2 VALUES(24557, 23461, 'twenty-three thousand four hundred sixty-one'); INSERT INTO t2 VALUES(24558, 78594, 'seventy-eight thousand five hundred ninety-four'); INSERT INTO t2 VALUES(24559, 436, 'four hundred thirty-six'); INSERT INTO t2 VALUES(24560, 41596, 'forty-one thousand five hundred ninety-six'); INSERT INTO t2 VALUES(24561, 61381, 'sixty-one thousand three hundred eighty-one'); INSERT INTO t2 VALUES(24562, 45659, 'forty-five thousand six hundred fifty-nine'); INSERT INTO t2 VALUES(24563, 57528, 'fifty-seven thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(24564, 32804, 'thirty-two thousand eight hundred four'); INSERT INTO t2 VALUES(24565, 89470, 'eighty-nine thousand four hundred seventy'); INSERT INTO t2 VALUES(24566, 33929, 'thirty-three thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(24567, 81561, 'eighty-one thousand five hundred sixty-one'); INSERT INTO t2 VALUES(24568, 17849, 'seventeen thousand eight hundred forty-nine'); INSERT INTO t2 VALUES(24569, 43292, 'forty-three thousand two hundred ninety-two'); INSERT INTO t2 VALUES(24570, 14937, 'fourteen thousand nine hundred thirty-seven'); INSERT INTO t2 VALUES(24571, 19044, 'nineteen thousand forty-four'); INSERT INTO t2 VALUES(24572, 41190, 'forty-one thousand one hundred ninety'); INSERT INTO t2 VALUES(24573, 72612, 'seventy-two thousand six hundred twelve'); INSERT INTO t2 VALUES(24574, 33185, 'thirty-three thousand one hundred eighty-five'); INSERT INTO t2 VALUES(24575, 17367, 'seventeen thousand three hundred sixty-seven'); INSERT INTO t2 VALUES(24576, 38761, 'thirty-eight thousand seven hundred sixty-one'); INSERT INTO t2 VALUES(24577, 6943, 'six thousand nine hundred forty-three'); INSERT INTO t2 VALUES(24578, 29988, 'twenty-nine thousand nine hundred eighty-eight'); INSERT INTO t2 VALUES(24579, 23996, 'twenty-three thousand nine hundred ninety-six'); INSERT INTO t2 VALUES(24580, 3296, 'three thousand two hundred ninety-six'); INSERT INTO t2 VALUES(24581, 27027, 'twenty-seven thousand twenty-seven'); INSERT INTO t2 VALUES(24582, 89611, 'eighty-nine thousand six hundred eleven'); INSERT INTO t2 VALUES(24583, 91368, 'ninety-one thousand three hundred sixty-eight'); INSERT INTO t2 VALUES(24584, 49556, 'forty-nine thousand five hundred fifty-six'); INSERT INTO t2 VALUES(24585, 10891, 'ten thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(24586, 53396, 'fifty-three thousand three hundred ninety-six'); INSERT INTO t2 VALUES(24587, 94901, 'ninety-four thousand nine hundred one'); INSERT INTO t2 VALUES(24588, 41428, 'forty-one thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(24589, 18279, 'eighteen thousand two hundred seventy-nine'); INSERT INTO t2 VALUES(24590, 31793, 'thirty-one thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(24591, 58393, 'fifty-eight thousand three hundred ninety-three'); INSERT INTO t2 VALUES(24592, 39049, 'thirty-nine thousand forty-nine'); INSERT INTO t2 VALUES(24593, 63409, 'sixty-three thousand four hundred nine'); INSERT INTO t2 VALUES(24594, 52925, 'fifty-two thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(24595, 79204, 'seventy-nine thousand two hundred four'); INSERT INTO t2 VALUES(24596, 7575, 'seven thousand five hundred seventy-five'); INSERT INTO t2 VALUES(24597, 53306, 'fifty-three thousand three hundred six'); INSERT INTO t2 VALUES(24598, 49172, 'forty-nine thousand one hundred seventy-two'); INSERT INTO t2 VALUES(24599, 66361, 'sixty-six thousand three hundred sixty-one'); INSERT INTO t2 VALUES(24600, 84059, 'eighty-four thousand fifty-nine'); INSERT INTO t2 VALUES(24601, 24805, 'twenty-four thousand eight hundred five'); INSERT INTO t2 VALUES(24602, 4249, 'four thousand two hundred forty-nine'); INSERT INTO t2 VALUES(24603, 29715, 'twenty-nine thousand seven hundred fifteen'); INSERT INTO t2 VALUES(24604, 44339, 'forty-four thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(24605, 68166, 'sixty-eight thousand one hundred sixty-six'); INSERT INTO t2 VALUES(24606, 81901, 'eighty-one thousand nine hundred one'); INSERT INTO t2 VALUES(24607, 55799, 'fifty-five thousand seven hundred ninety-nine'); INSERT INTO t2 VALUES(24608, 35067, 'thirty-five thousand sixty-seven'); INSERT INTO t2 VALUES(24609, 52022, 'fifty-two thousand twenty-two'); INSERT INTO t2 VALUES(24610, 62377, 'sixty-two thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(24611, 27409, 'twenty-seven thousand four hundred nine'); INSERT INTO t2 VALUES(24612, 86314, 'eighty-six thousand three hundred fourteen'); INSERT INTO t2 VALUES(24613, 16236, 'sixteen thousand two hundred thirty-six'); INSERT INTO t2 VALUES(24614, 13410, 'thirteen thousand four hundred ten'); INSERT INTO t2 VALUES(24615, 69711, 'sixty-nine thousand seven hundred eleven'); INSERT INTO t2 VALUES(24616, 14726, 'fourteen thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(24617, 48167, 'forty-eight thousand one hundred sixty-seven'); INSERT INTO t2 VALUES(24618, 89336, 'eighty-nine thousand three hundred thirty-six'); INSERT INTO t2 VALUES(24619, 18157, 'eighteen thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(24620, 57081, 'fifty-seven thousand eighty-one'); INSERT INTO t2 VALUES(24621, 5408, 'five thousand four hundred eight'); INSERT INTO t2 VALUES(24622, 12178, 'twelve thousand one hundred seventy-eight'); INSERT INTO t2 VALUES(24623, 34534, 'thirty-four thousand five hundred thirty-four'); INSERT INTO t2 VALUES(24624, 37731, 'thirty-seven thousand seven hundred thirty-one'); INSERT INTO t2 VALUES(24625, 70876, 'seventy thousand eight hundred seventy-six'); INSERT INTO t2 VALUES(24626, 86007, 'eighty-six thousand seven'); INSERT INTO t2 VALUES(24627, 83752, 'eighty-three thousand seven hundred fifty-two'); INSERT INTO t2 VALUES(24628, 70501, 'seventy thousand five hundred one'); INSERT INTO t2 VALUES(24629, 18667, 'eighteen thousand six hundred sixty-seven'); INSERT INTO t2 VALUES(24630, 28572, 'twenty-eight thousand five hundred seventy-two'); INSERT INTO t2 VALUES(24631, 68557, 'sixty-eight thousand five hundred fifty-seven'); INSERT INTO t2 VALUES(24632, 11343, 'eleven thousand three hundred forty-three'); INSERT INTO t2 VALUES(24633, 1624, 'one thousand six hundred twenty-four'); INSERT INTO t2 VALUES(24634, 59911, 'fifty-nine thousand nine hundred eleven'); INSERT INTO t2 VALUES(24635, 94038, 'ninety-four thousand thirty-eight'); INSERT INTO t2 VALUES(24636, 29603, 'twenty-nine thousand six hundred three'); INSERT INTO t2 VALUES(24637, 88648, 'eighty-eight thousand six hundred forty-eight'); INSERT INTO t2 VALUES(24638, 12736, 'twelve thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(24639, 55683, 'fifty-five thousand six hundred eighty-three'); INSERT INTO t2 VALUES(24640, 54600, 'fifty-four thousand six hundred'); INSERT INTO t2 VALUES(24641, 82259, 'eighty-two thousand two hundred fifty-nine'); INSERT INTO t2 VALUES(24642, 14096, 'fourteen thousand ninety-six'); INSERT INTO t2 VALUES(24643, 36310, 'thirty-six thousand three hundred ten'); INSERT INTO t2 VALUES(24644, 27154, 'twenty-seven thousand one hundred fifty-four'); INSERT INTO t2 VALUES(24645, 54007, 'fifty-four thousand seven'); INSERT INTO t2 VALUES(24646, 82080, 'eighty-two thousand eighty'); INSERT INTO t2 VALUES(24647, 10298, 'ten thousand two hundred ninety-eight'); INSERT INTO t2 VALUES(24648, 4064, 'four thousand sixty-four'); INSERT INTO t2 VALUES(24649, 19725, 'nineteen thousand seven hundred twenty-five'); INSERT INTO t2 VALUES(24650, 94836, 'ninety-four thousand eight hundred thirty-six'); INSERT INTO t2 VALUES(24651, 48533, 'forty-eight thousand five hundred thirty-three'); INSERT INTO t2 VALUES(24652, 5683, 'five thousand six hundred eighty-three'); INSERT INTO t2 VALUES(24653, 75795, 'seventy-five thousand seven hundred ninety-five'); INSERT INTO t2 VALUES(24654, 30463, 'thirty thousand four hundred sixty-three'); INSERT INTO t2 VALUES(24655, 47660, 'forty-seven thousand six hundred sixty'); INSERT INTO t2 VALUES(24656, 17066, 'seventeen thousand sixty-six'); INSERT INTO t2 VALUES(24657, 17779, 'seventeen thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(24658, 52403, 'fifty-two thousand four hundred three'); INSERT INTO t2 VALUES(24659, 10570, 'ten thousand five hundred seventy'); INSERT INTO t2 VALUES(24660, 83671, 'eighty-three thousand six hundred seventy-one'); INSERT INTO t2 VALUES(24661, 49149, 'forty-nine thousand one hundred forty-nine'); INSERT INTO t2 VALUES(24662, 81420, 'eighty-one thousand four hundred twenty'); INSERT INTO t2 VALUES(24663, 37117, 'thirty-seven thousand one hundred seventeen'); INSERT INTO t2 VALUES(24664, 28783, 'twenty-eight thousand seven hundred eighty-three'); INSERT INTO t2 VALUES(24665, 51320, 'fifty-one thousand three hundred twenty'); INSERT INTO t2 VALUES(24666, 75904, 'seventy-five thousand nine hundred four'); INSERT INTO t2 VALUES(24667, 47329, 'forty-seven thousand three hundred twenty-nine'); INSERT INTO t2 VALUES(24668, 93109, 'ninety-three thousand one hundred nine'); INSERT INTO t2 VALUES(24669, 11161, 'eleven thousand one hundred sixty-one'); INSERT INTO t2 VALUES(24670, 8950, 'eight thousand nine hundred fifty'); INSERT INTO t2 VALUES(24671, 74887, 'seventy-four thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(24672, 97014, 'ninety-seven thousand fourteen'); INSERT INTO t2 VALUES(24673, 55157, 'fifty-five thousand one hundred fifty-seven'); INSERT INTO t2 VALUES(24674, 36609, 'thirty-six thousand six hundred nine'); INSERT INTO t2 VALUES(24675, 13464, 'thirteen thousand four hundred sixty-four'); INSERT INTO t2 VALUES(24676, 46476, 'forty-six thousand four hundred seventy-six'); INSERT INTO t2 VALUES(24677, 83415, 'eighty-three thousand four hundred fifteen'); INSERT INTO t2 VALUES(24678, 43638, 'forty-three thousand six hundred thirty-eight'); INSERT INTO t2 VALUES(24679, 4917, 'four thousand nine hundred seventeen'); INSERT INTO t2 VALUES(24680, 61061, 'sixty-one thousand sixty-one'); INSERT INTO t2 VALUES(24681, 97632, 'ninety-seven thousand six hundred thirty-two'); INSERT INTO t2 VALUES(24682, 27983, 'twenty-seven thousand nine hundred eighty-three'); INSERT INTO t2 VALUES(24683, 627, 'six hundred twenty-seven'); INSERT INTO t2 VALUES(24684, 6975, 'six thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(24685, 42522, 'forty-two thousand five hundred twenty-two'); INSERT INTO t2 VALUES(24686, 28456, 'twenty-eight thousand four hundred fifty-six'); INSERT INTO t2 VALUES(24687, 43142, 'forty-three thousand one hundred forty-two'); INSERT INTO t2 VALUES(24688, 83057, 'eighty-three thousand fifty-seven'); INSERT INTO t2 VALUES(24689, 57492, 'fifty-seven thousand four hundred ninety-two'); INSERT INTO t2 VALUES(24690, 46542, 'forty-six thousand five hundred forty-two'); INSERT INTO t2 VALUES(24691, 32781, 'thirty-two thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(24692, 29695, 'twenty-nine thousand six hundred ninety-five'); INSERT INTO t2 VALUES(24693, 38962, 'thirty-eight thousand nine hundred sixty-two'); INSERT INTO t2 VALUES(24694, 59941, 'fifty-nine thousand nine hundred forty-one'); INSERT INTO t2 VALUES(24695, 30893, 'thirty thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(24696, 12543, 'twelve thousand five hundred forty-three'); INSERT INTO t2 VALUES(24697, 88669, 'eighty-eight thousand six hundred sixty-nine'); INSERT INTO t2 VALUES(24698, 31890, 'thirty-one thousand eight hundred ninety'); INSERT INTO t2 VALUES(24699, 73975, 'seventy-three thousand nine hundred seventy-five'); INSERT INTO t2 VALUES(24700, 32017, 'thirty-two thousand seventeen'); INSERT INTO t2 VALUES(24701, 74869, 'seventy-four thousand eight hundred sixty-nine'); INSERT INTO t2 VALUES(24702, 90302, 'ninety thousand three hundred two'); INSERT INTO t2 VALUES(24703, 24324, 'twenty-four thousand three hundred twenty-four'); INSERT INTO t2 VALUES(24704, 77141, 'seventy-seven thousand one hundred forty-one'); INSERT INTO t2 VALUES(24705, 805, 'eight hundred five'); INSERT INTO t2 VALUES(24706, 69323, 'sixty-nine thousand three hundred twenty-three'); INSERT INTO t2 VALUES(24707, 47182, 'forty-seven thousand one hundred eighty-two'); INSERT INTO t2 VALUES(24708, 64546, 'sixty-four thousand five hundred forty-six'); INSERT INTO t2 VALUES(24709, 70094, 'seventy thousand ninety-four'); INSERT INTO t2 VALUES(24710, 8800, 'eight thousand eight hundred'); INSERT INTO t2 VALUES(24711, 67164, 'sixty-seven thousand one hundred sixty-four'); INSERT INTO t2 VALUES(24712, 93808, 'ninety-three thousand eight hundred eight'); INSERT INTO t2 VALUES(24713, 24754, 'twenty-four thousand seven hundred fifty-four'); INSERT INTO t2 VALUES(24714, 97489, 'ninety-seven thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(24715, 5602, 'five thousand six hundred two'); INSERT INTO t2 VALUES(24716, 15377, 'fifteen thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(24717, 94085, 'ninety-four thousand eighty-five'); INSERT INTO t2 VALUES(24718, 89097, 'eighty-nine thousand ninety-seven'); INSERT INTO t2 VALUES(24719, 42250, 'forty-two thousand two hundred fifty'); INSERT INTO t2 VALUES(24720, 16428, 'sixteen thousand four hundred twenty-eight'); INSERT INTO t2 VALUES(24721, 20074, 'twenty thousand seventy-four'); INSERT INTO t2 VALUES(24722, 47704, 'forty-seven thousand seven hundred four'); INSERT INTO t2 VALUES(24723, 80575, 'eighty thousand five hundred seventy-five'); INSERT INTO t2 VALUES(24724, 9727, 'nine thousand seven hundred twenty-seven'); INSERT INTO t2 VALUES(24725, 79252, 'seventy-nine thousand two hundred fifty-two'); INSERT INTO t2 VALUES(24726, 70229, 'seventy thousand two hundred twenty-nine'); INSERT INTO t2 VALUES(24727, 58670, 'fifty-eight thousand six hundred seventy'); INSERT INTO t2 VALUES(24728, 26075, 'twenty-six thousand seventy-five'); INSERT INTO t2 VALUES(24729, 2374, 'two thousand three hundred seventy-four'); INSERT INTO t2 VALUES(24730, 16236, 'sixteen thousand two hundred thirty-six'); INSERT INTO t2 VALUES(24731, 51387, 'fifty-one thousand three hundred eighty-seven'); INSERT INTO t2 VALUES(24732, 96158, 'ninety-six thousand one hundred fifty-eight'); INSERT INTO t2 VALUES(24733, 65798, 'sixty-five thousand seven hundred ninety-eight'); INSERT INTO t2 VALUES(24734, 71627, 'seventy-one thousand six hundred twenty-seven'); INSERT INTO t2 VALUES(24735, 93357, 'ninety-three thousand three hundred fifty-seven'); INSERT INTO t2 VALUES(24736, 81299, 'eighty-one thousand two hundred ninety-nine'); INSERT INTO t2 VALUES(24737, 60749, 'sixty thousand seven hundred forty-nine'); INSERT INTO t2 VALUES(24738, 47834, 'forty-seven thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(24739, 36406, 'thirty-six thousand four hundred six'); INSERT INTO t2 VALUES(24740, 33888, 'thirty-three thousand eight hundred eighty-eight'); INSERT INTO t2 VALUES(24741, 96891, 'ninety-six thousand eight hundred ninety-one'); INSERT INTO t2 VALUES(24742, 30897, 'thirty thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(24743, 88968, 'eighty-eight thousand nine hundred sixty-eight'); INSERT INTO t2 VALUES(24744, 80461, 'eighty thousand four hundred sixty-one'); INSERT INTO t2 VALUES(24745, 95105, 'ninety-five thousand one hundred five'); INSERT INTO t2 VALUES(24746, 33433, 'thirty-three thousand four hundred thirty-three'); INSERT INTO t2 VALUES(24747, 6198, 'six thousand one hundred ninety-eight'); INSERT INTO t2 VALUES(24748, 26097, 'twenty-six thousand ninety-seven'); INSERT INTO t2 VALUES(24749, 96995, 'ninety-six thousand nine hundred ninety-five'); INSERT INTO t2 VALUES(24750, 81911, 'eighty-one thousand nine hundred eleven'); INSERT INTO t2 VALUES(24751, 89519, 'eighty-nine thousand five hundred nineteen'); INSERT INTO t2 VALUES(24752, 66802, 'sixty-six thousand eight hundred two'); INSERT INTO t2 VALUES(24753, 63647, 'sixty-three thousand six hundred forty-seven'); INSERT INTO t2 VALUES(24754, 41202, 'forty-one thousand two hundred two'); INSERT INTO t2 VALUES(24755, 10401, 'ten thousand four hundred one'); INSERT INTO t2 VALUES(24756, 47730, 'forty-seven thousand seven hundred thirty'); INSERT INTO t2 VALUES(24757, 37726, 'thirty-seven thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(24758, 73359, 'seventy-three thousand three hundred fifty-nine'); INSERT INTO t2 VALUES(24759, 98821, 'ninety-eight thousand eight hundred twenty-one'); INSERT INTO t2 VALUES(24760, 23696, 'twenty-three thousand six hundred ninety-six'); INSERT INTO t2 VALUES(24761, 40496, 'forty thousand four hundred ninety-six'); INSERT INTO t2 VALUES(24762, 24417, 'twenty-four thousand four hundred seventeen'); INSERT INTO t2 VALUES(24763, 83001, 'eighty-three thousand one'); INSERT INTO t2 VALUES(24764, 80101, 'eighty thousand one hundred one'); INSERT INTO t2 VALUES(24765, 20058, 'twenty thousand fifty-eight'); INSERT INTO t2 VALUES(24766, 90050, 'ninety thousand fifty'); INSERT INTO t2 VALUES(24767, 67793, 'sixty-seven thousand seven hundred ninety-three'); INSERT INTO t2 VALUES(24768, 21328, 'twenty-one thousand three hundred twenty-eight'); INSERT INTO t2 VALUES(24769, 33026, 'thirty-three thousand twenty-six'); INSERT INTO t2 VALUES(24770, 60248, 'sixty thousand two hundred forty-eight'); INSERT INTO t2 VALUES(24771, 65466, 'sixty-five thousand four hundred sixty-six'); INSERT INTO t2 VALUES(24772, 7600, 'seven thousand six hundred'); INSERT INTO t2 VALUES(24773, 85941, 'eighty-five thousand nine hundred forty-one'); INSERT INTO t2 VALUES(24774, 96865, 'ninety-six thousand eight hundred sixty-five'); INSERT INTO t2 VALUES(24775, 70113, 'seventy thousand one hundred thirteen'); INSERT INTO t2 VALUES(24776, 98788, 'ninety-eight thousand seven hundred eighty-eight'); INSERT INTO t2 VALUES(24777, 31787, 'thirty-one thousand seven hundred eighty-seven'); INSERT INTO t2 VALUES(24778, 62463, 'sixty-two thousand four hundred sixty-three'); INSERT INTO t2 VALUES(24779, 68236, 'sixty-eight thousand two hundred thirty-six'); INSERT INTO t2 VALUES(24780, 3736, 'three thousand seven hundred thirty-six'); INSERT INTO t2 VALUES(24781, 51532, 'fifty-one thousand five hundred thirty-two'); INSERT INTO t2 VALUES(24782, 35548, 'thirty-five thousand five hundred forty-eight'); INSERT INTO t2 VALUES(24783, 14236, 'fourteen thousand two hundred thirty-six'); INSERT INTO t2 VALUES(24784, 84897, 'eighty-four thousand eight hundred ninety-seven'); INSERT INTO t2 VALUES(24785, 31062, 'thirty-one thousand sixty-two'); INSERT INTO t2 VALUES(24786, 93221, 'ninety-three thousand two hundred twenty-one'); INSERT INTO t2 VALUES(24787, 35820, 'thirty-five thousand eight hundred twenty'); INSERT INTO t2 VALUES(24788, 58184, 'fifty-eight thousand one hundred eighty-four'); INSERT INTO t2 VALUES(24789, 41247, 'forty-one thousand two hundred forty-seven'); INSERT INTO t2 VALUES(24790, 30489, 'thirty thousand four hundred eighty-nine'); INSERT INTO t2 VALUES(24791, 25609, 'twenty-five thousand six hundred nine'); INSERT INTO t2 VALUES(24792, 87338, 'eighty-seven thousand three hundred thirty-eight'); INSERT INTO t2 VALUES(24793, 50575, 'fifty thousand five hundred seventy-five'); INSERT INTO t2 VALUES(24794, 24704, 'twenty-four thousand seven hundred four'); INSERT INTO t2 VALUES(24795, 12806, 'twelve thousand eight hundred six'); INSERT INTO t2 VALUES(24796, 44597, 'forty-four thousand five hundred ninety-seven'); INSERT INTO t2 VALUES(24797, 58582, 'fifty-eight thousand five hundred eighty-two'); INSERT INTO t2 VALUES(24798, 11726, 'eleven thousand seven hundred twenty-six'); INSERT INTO t2 VALUES(24799, 13340, 'thirteen thousand three hundred forty'); INSERT INTO t2 VALUES(24800, 24440, 'twenty-four thousand four hundred forty'); INSERT INTO t2 VALUES(24801, 9887, 'nine thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(24802, 47895, 'forty-seven thousand eight hundred ninety-five'); INSERT INTO t2 VALUES(24803, 54759, 'fifty-four thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(24804, 71252, 'seventy-one thousand two hundred fifty-two'); INSERT INTO t2 VALUES(24805, 78445, 'seventy-eight thousand four hundred forty-five'); INSERT INTO t2 VALUES(24806, 39941, 'thirty-nine thousand nine hundred forty-one'); INSERT INTO t2 VALUES(24807, 48159, 'forty-eight thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(24808, 2132, 'two thousand one hundred thirty-two'); INSERT INTO t2 VALUES(24809, 44127, 'forty-four thousand one hundred twenty-seven'); INSERT INTO t2 VALUES(24810, 81965, 'eighty-one thousand nine hundred sixty-five'); INSERT INTO t2 VALUES(24811, 75241, 'seventy-five thousand two hundred forty-one'); INSERT INTO t2 VALUES(24812, 89405, 'eighty-nine thousand four hundred five'); INSERT INTO t2 VALUES(24813, 76797, 'seventy-six thousand seven hundred ninety-seven'); INSERT INTO t2 VALUES(24814, 77364, 'seventy-seven thousand three hundred sixty-four'); INSERT INTO t2 VALUES(24815, 22439, 'twenty-two thousand four hundred thirty-nine'); INSERT INTO t2 VALUES(24816, 21848, 'twenty-one thousand eight hundred forty-eight'); INSERT INTO t2 VALUES(24817, 92243, 'ninety-two thousand two hundred forty-three'); INSERT INTO t2 VALUES(24818, 1815, 'one thousand eight hundred fifteen'); INSERT INTO t2 VALUES(24819, 99779, 'ninety-nine thousand seven hundred seventy-nine'); INSERT INTO t2 VALUES(24820, 96172, 'ninety-six thousand one hundred seventy-two'); INSERT INTO t2 VALUES(24821, 431, 'four hundred thirty-one'); INSERT INTO t2 VALUES(24822, 33856, 'thirty-three thousand eight hundred fifty-six'); INSERT INTO t2 VALUES(24823, 93893, 'ninety-three thousand eight hundred ninety-three'); INSERT INTO t2 VALUES(24824, 54344, 'fifty-four thousand three hundred forty-four'); INSERT INTO t2 VALUES(24825, 10331, 'ten thousand three hundred thirty-one'); INSERT INTO t2 VALUES(24826, 8399, 'eight thousand three hundred ninety-nine'); INSERT INTO t2 VALUES(24827, 36038, 'thirty-six thousand thirty-eight'); INSERT INTO t2 VALUES(24828, 95043, 'ninety-five thousand forty-three'); INSERT INTO t2 VALUES(24829, 97022, 'ninety-seven thousand twenty-two'); INSERT INTO t2 VALUES(24830, 3189, 'three thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(24831, 46168, 'forty-six thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(24832, 88559, 'eighty-eight thousand five hundred fifty-nine'); INSERT INTO t2 VALUES(24833, 64144, 'sixty-four thousand one hundred forty-four'); INSERT INTO t2 VALUES(24834, 51730, 'fifty-one thousand seven hundred thirty'); INSERT INTO t2 VALUES(24835, 20174, 'twenty thousand one hundred seventy-four'); INSERT INTO t2 VALUES(24836, 7018, 'seven thousand eighteen'); INSERT INTO t2 VALUES(24837, 18657, 'eighteen thousand six hundred fifty-seven'); INSERT INTO t2 VALUES(24838, 75088, 'seventy-five thousand eighty-eight'); INSERT INTO t2 VALUES(24839, 67326, 'sixty-seven thousand three hundred twenty-six'); INSERT INTO t2 VALUES(24840, 25073, 'twenty-five thousand seventy-three'); INSERT INTO t2 VALUES(24841, 94644, 'ninety-four thousand six hundred forty-four'); INSERT INTO t2 VALUES(24842, 44223, 'forty-four thousand two hundred twenty-three'); INSERT INTO t2 VALUES(24843, 46337, 'forty-six thousand three hundred thirty-seven'); INSERT INTO t2 VALUES(24844, 514, 'five hundred fourteen'); INSERT INTO t2 VALUES(24845, 60951, 'sixty thousand nine hundred fifty-one'); INSERT INTO t2 VALUES(24846, 72709, 'seventy-two thousand seven hundred nine'); INSERT INTO t2 VALUES(24847, 33482, 'thirty-three thousand four hundred eighty-two'); INSERT INTO t2 VALUES(24848, 12069, 'twelve thousand sixty-nine'); INSERT INTO t2 VALUES(24849, 44568, 'forty-four thousand five hundred sixty-eight'); INSERT INTO t2 VALUES(24850, 50881, 'fifty thousand eight hundred eighty-one'); INSERT INTO t2 VALUES(24851, 86189, 'eighty-six thousand one hundred eighty-nine'); INSERT INTO t2 VALUES(24852, 90634, 'ninety thousand six hundred thirty-four'); INSERT INTO t2 VALUES(24853, 29555, 'twenty-nine thousand five hundred fifty-five'); INSERT INTO t2 VALUES(24854, 40451, 'forty thousand four hundred fifty-one'); INSERT INTO t2 VALUES(24855, 56427, 'fifty-six thousand four hundred twenty-seven'); INSERT INTO t2 VALUES(24856, 63501, 'sixty-three thousand five hundred one'); INSERT INTO t2 VALUES(24857, 37562, 'thirty-seven thousand five hundred sixty-two'); INSERT INTO t2 VALUES(24858, 98526, 'ninety-eight thousand five hundred twenty-six'); INSERT INTO t2 VALUES(24859, 91101, 'ninety-one thousand one hundred one'); INSERT INTO t2 VALUES(24860, 60072, 'sixty thousand seventy-two'); INSERT INTO t2 VALUES(24861, 38206, 'thirty-eight thousand two hundred six'); INSERT INTO t2 VALUES(24862, 53377, 'fifty-three thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(24863, 89666, 'eighty-nine thousand six hundred sixty-six'); INSERT INTO t2 VALUES(24864, 10446, 'ten thousand four hundred forty-six'); INSERT INTO t2 VALUES(24865, 92671, 'ninety-two thousand six hundred seventy-one'); INSERT INTO t2 VALUES(24866, 78160, 'seventy-eight thousand one hundred sixty'); INSERT INTO t2 VALUES(24867, 72782, 'seventy-two thousand seven hundred eighty-two'); INSERT INTO t2 VALUES(24868, 57859, 'fifty-seven thousand eight hundred fifty-nine'); INSERT INTO t2 VALUES(24869, 39918, 'thirty-nine thousand nine hundred eighteen'); INSERT INTO t2 VALUES(24870, 25370, 'twenty-five thousand three hundred seventy'); INSERT INTO t2 VALUES(24871, 40814, 'forty thousand eight hundred fourteen'); INSERT INTO t2 VALUES(24872, 21468, 'twenty-one thousand four hundred sixty-eight'); INSERT INTO t2 VALUES(24873, 74690, 'seventy-four thousand six hundred ninety'); INSERT INTO t2 VALUES(24874, 35862, 'thirty-five thousand eight hundred sixty-two'); INSERT INTO t2 VALUES(24875, 92947, 'ninety-two thousand nine hundred forty-seven'); INSERT INTO t2 VALUES(24876, 27385, 'twenty-seven thousand three hundred eighty-five'); INSERT INTO t2 VALUES(24877, 96998, 'ninety-six thousand nine hundred ninety-eight'); INSERT INTO t2 VALUES(24878, 22257, 'twenty-two thousand two hundred fifty-seven'); INSERT INTO t2 VALUES(24879, 39663, 'thirty-nine thousand six hundred sixty-three'); INSERT INTO t2 VALUES(24880, 78932, 'seventy-eight thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(24881, 72715, 'seventy-two thousand seven hundred fifteen'); INSERT INTO t2 VALUES(24882, 78243, 'seventy-eight thousand two hundred forty-three'); INSERT INTO t2 VALUES(24883, 96803, 'ninety-six thousand eight hundred three'); INSERT INTO t2 VALUES(24884, 72654, 'seventy-two thousand six hundred fifty-four'); INSERT INTO t2 VALUES(24885, 19001, 'nineteen thousand one'); INSERT INTO t2 VALUES(24886, 6400, 'six thousand four hundred'); INSERT INTO t2 VALUES(24887, 83047, 'eighty-three thousand forty-seven'); INSERT INTO t2 VALUES(24888, 99857, 'ninety-nine thousand eight hundred fifty-seven'); INSERT INTO t2 VALUES(24889, 85833, 'eighty-five thousand eight hundred thirty-three'); INSERT INTO t2 VALUES(24890, 2089, 'two thousand eighty-nine'); INSERT INTO t2 VALUES(24891, 97218, 'ninety-seven thousand two hundred eighteen'); INSERT INTO t2 VALUES(24892, 36946, 'thirty-six thousand nine hundred forty-six'); INSERT INTO t2 VALUES(24893, 73796, 'seventy-three thousand seven hundred ninety-six'); INSERT INTO t2 VALUES(24894, 51099, 'fifty-one thousand ninety-nine'); INSERT INTO t2 VALUES(24895, 55507, 'fifty-five thousand five hundred seven'); INSERT INTO t2 VALUES(24896, 52925, 'fifty-two thousand nine hundred twenty-five'); INSERT INTO t2 VALUES(24897, 84714, 'eighty-four thousand seven hundred fourteen'); INSERT INTO t2 VALUES(24898, 2326, 'two thousand three hundred twenty-six'); INSERT INTO t2 VALUES(24899, 46073, 'forty-six thousand seventy-three'); INSERT INTO t2 VALUES(24900, 13234, 'thirteen thousand two hundred thirty-four'); INSERT INTO t2 VALUES(24901, 37425, 'thirty-seven thousand four hundred twenty-five'); INSERT INTO t2 VALUES(24902, 94868, 'ninety-four thousand eight hundred sixty-eight'); INSERT INTO t2 VALUES(24903, 49168, 'forty-nine thousand one hundred sixty-eight'); INSERT INTO t2 VALUES(24904, 34573, 'thirty-four thousand five hundred seventy-three'); INSERT INTO t2 VALUES(24905, 81470, 'eighty-one thousand four hundred seventy'); INSERT INTO t2 VALUES(24906, 43976, 'forty-three thousand nine hundred seventy-six'); INSERT INTO t2 VALUES(24907, 53694, 'fifty-three thousand six hundred ninety-four'); INSERT INTO t2 VALUES(24908, 26766, 'twenty-six thousand seven hundred sixty-six'); INSERT INTO t2 VALUES(24909, 24129, 'twenty-four thousand one hundred twenty-nine'); INSERT INTO t2 VALUES(24910, 81742, 'eighty-one thousand seven hundred forty-two'); INSERT INTO t2 VALUES(24911, 82292, 'eighty-two thousand two hundred ninety-two'); INSERT INTO t2 VALUES(24912, 15618, 'fifteen thousand six hundred eighteen'); INSERT INTO t2 VALUES(24913, 63142, 'sixty-three thousand one hundred forty-two'); INSERT INTO t2 VALUES(24914, 72910, 'seventy-two thousand nine hundred ten'); INSERT INTO t2 VALUES(24915, 92621, 'ninety-two thousand six hundred twenty-one'); INSERT INTO t2 VALUES(24916, 66932, 'sixty-six thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(24917, 52781, 'fifty-two thousand seven hundred eighty-one'); INSERT INTO t2 VALUES(24918, 71348, 'seventy-one thousand three hundred forty-eight'); INSERT INTO t2 VALUES(24919, 4847, 'four thousand eight hundred forty-seven'); INSERT INTO t2 VALUES(24920, 37301, 'thirty-seven thousand three hundred one'); INSERT INTO t2 VALUES(24921, 17089, 'seventeen thousand eighty-nine'); INSERT INTO t2 VALUES(24922, 11301, 'eleven thousand three hundred one'); INSERT INTO t2 VALUES(24923, 29841, 'twenty-nine thousand eight hundred forty-one'); INSERT INTO t2 VALUES(24924, 65105, 'sixty-five thousand one hundred five'); INSERT INTO t2 VALUES(24925, 824, 'eight hundred twenty-four'); INSERT INTO t2 VALUES(24926, 95530, 'ninety-five thousand five hundred thirty'); INSERT INTO t2 VALUES(24927, 27877, 'twenty-seven thousand eight hundred seventy-seven'); INSERT INTO t2 VALUES(24928, 38398, 'thirty-eight thousand three hundred ninety-eight'); INSERT INTO t2 VALUES(24929, 24764, 'twenty-four thousand seven hundred sixty-four'); INSERT INTO t2 VALUES(24930, 75532, 'seventy-five thousand five hundred thirty-two'); INSERT INTO t2 VALUES(24931, 85140, 'eighty-five thousand one hundred forty'); INSERT INTO t2 VALUES(24932, 7909, 'seven thousand nine hundred nine'); INSERT INTO t2 VALUES(24933, 35290, 'thirty-five thousand two hundred ninety'); INSERT INTO t2 VALUES(24934, 48260, 'forty-eight thousand two hundred sixty'); INSERT INTO t2 VALUES(24935, 42806, 'forty-two thousand eight hundred six'); INSERT INTO t2 VALUES(24936, 49887, 'forty-nine thousand eight hundred eighty-seven'); INSERT INTO t2 VALUES(24937, 42220, 'forty-two thousand two hundred twenty'); INSERT INTO t2 VALUES(24938, 49147, 'forty-nine thousand one hundred forty-seven'); INSERT INTO t2 VALUES(24939, 5209, 'five thousand two hundred nine'); INSERT INTO t2 VALUES(24940, 90794, 'ninety thousand seven hundred ninety-four'); INSERT INTO t2 VALUES(24941, 82718, 'eighty-two thousand seven hundred eighteen'); INSERT INTO t2 VALUES(24942, 51334, 'fifty-one thousand three hundred thirty-four'); INSERT INTO t2 VALUES(24943, 15932, 'fifteen thousand nine hundred thirty-two'); INSERT INTO t2 VALUES(24944, 59449, 'fifty-nine thousand four hundred forty-nine'); INSERT INTO t2 VALUES(24945, 67625, 'sixty-seven thousand six hundred twenty-five'); INSERT INTO t2 VALUES(24946, 94883, 'ninety-four thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(24947, 45379, 'forty-five thousand three hundred seventy-nine'); INSERT INTO t2 VALUES(24948, 73463, 'seventy-three thousand four hundred sixty-three'); INSERT INTO t2 VALUES(24949, 45213, 'forty-five thousand two hundred thirteen'); INSERT INTO t2 VALUES(24950, 91929, 'ninety-one thousand nine hundred twenty-nine'); INSERT INTO t2 VALUES(24951, 16230, 'sixteen thousand two hundred thirty'); INSERT INTO t2 VALUES(24952, 69883, 'sixty-nine thousand eight hundred eighty-three'); INSERT INTO t2 VALUES(24953, 22804, 'twenty-two thousand eight hundred four'); INSERT INTO t2 VALUES(24954, 3866, 'three thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(24955, 1990, 'one thousand nine hundred ninety'); INSERT INTO t2 VALUES(24956, 51840, 'fifty-one thousand eight hundred forty'); INSERT INTO t2 VALUES(24957, 87111, 'eighty-seven thousand one hundred eleven'); INSERT INTO t2 VALUES(24958, 68843, 'sixty-eight thousand eight hundred forty-three'); INSERT INTO t2 VALUES(24959, 55528, 'fifty-five thousand five hundred twenty-eight'); INSERT INTO t2 VALUES(24960, 53450, 'fifty-three thousand four hundred fifty'); INSERT INTO t2 VALUES(24961, 19612, 'nineteen thousand six hundred twelve'); INSERT INTO t2 VALUES(24962, 35201, 'thirty-five thousand two hundred one'); INSERT INTO t2 VALUES(24963, 16272, 'sixteen thousand two hundred seventy-two'); INSERT INTO t2 VALUES(24964, 99318, 'ninety-nine thousand three hundred eighteen'); INSERT INTO t2 VALUES(24965, 89834, 'eighty-nine thousand eight hundred thirty-four'); INSERT INTO t2 VALUES(24966, 20102, 'twenty thousand one hundred two'); INSERT INTO t2 VALUES(24967, 77296, 'seventy-seven thousand two hundred ninety-six'); INSERT INTO t2 VALUES(24968, 80389, 'eighty thousand three hundred eighty-nine'); INSERT INTO t2 VALUES(24969, 16913, 'sixteen thousand nine hundred thirteen'); INSERT INTO t2 VALUES(24970, 98721, 'ninety-eight thousand seven hundred twenty-one'); INSERT INTO t2 VALUES(24971, 54023, 'fifty-four thousand twenty-three'); INSERT INTO t2 VALUES(24972, 29494, 'twenty-nine thousand four hundred ninety-four'); INSERT INTO t2 VALUES(24973, 9377, 'nine thousand three hundred seventy-seven'); INSERT INTO t2 VALUES(24974, 72823, 'seventy-two thousand eight hundred twenty-three'); INSERT INTO t2 VALUES(24975, 69906, 'sixty-nine thousand nine hundred six'); INSERT INTO t2 VALUES(24976, 55159, 'fifty-five thousand one hundred fifty-nine'); INSERT INTO t2 VALUES(24977, 47047, 'forty-seven thousand forty-seven'); INSERT INTO t2 VALUES(24978, 28733, 'twenty-eight thousand seven hundred thirty-three'); INSERT INTO t2 VALUES(24979, 79866, 'seventy-nine thousand eight hundred sixty-six'); INSERT INTO t2 VALUES(24980, 64361, 'sixty-four thousand three hundred sixty-one'); INSERT INTO t2 VALUES(24981, 86431, 'eighty-six thousand four hundred thirty-one'); INSERT INTO t2 VALUES(24982, 53705, 'fifty-three thousand seven hundred five'); INSERT INTO t2 VALUES(24983, 43067, 'forty-three thousand sixty-seven'); INSERT INTO t2 VALUES(24984, 3320, 'three thousand three hundred twenty'); INSERT INTO t2 VALUES(24985, 15960, 'fifteen thousand nine hundred sixty'); INSERT INTO t2 VALUES(24986, 63272, 'sixty-three thousand two hundred seventy-two'); INSERT INTO t2 VALUES(24987, 2447, 'two thousand four hundred forty-seven'); INSERT INTO t2 VALUES(24988, 13742, 'thirteen thousand seven hundred forty-two'); INSERT INTO t2 VALUES(24989, 18875, 'eighteen thousand eight hundred seventy-five'); INSERT INTO t2 VALUES(24990, 92635, 'ninety-two thousand six hundred thirty-five'); INSERT INTO t2 VALUES(24991, 99535, 'ninety-nine thousand five hundred thirty-five'); INSERT INTO t2 VALUES(24992, 20112, 'twenty thousand one hundred twelve'); INSERT INTO t2 VALUES(24993, 93759, 'ninety-three thousand seven hundred fifty-nine'); INSERT INTO t2 VALUES(24994, 32135, 'thirty-two thousand one hundred thirty-five'); INSERT INTO t2 VALUES(24995, 56099, 'fifty-six thousand ninety-nine'); INSERT INTO t2 VALUES(24996, 14588, 'fourteen thousand five hundred eighty-eight'); INSERT INTO t2 VALUES(24997, 68339, 'sixty-eight thousand three hundred thirty-nine'); INSERT INTO t2 VALUES(24998, 33916, 'thirty-three thousand nine hundred sixteen'); INSERT INTO t2 VALUES(24999, 58227, 'fifty-eight thousand two hundred twenty-seven'); INSERT INTO t2 VALUES(25000, 94446, 'ninety-four thousand four hundred forty-six'); COMMIT; ================================================ FILE: packages/benchmark/src/benchmark3.1.sql ================================================ BEGIN; CREATE TABLE t3_1(a INTEGER, b INTEGER, c VARCHAR(100)); CREATE INDEX i3_1 ON t3(c); INSERT INTO t3_1 VALUES (1, 90183, 'ninety thousand one hundred eighty-three'), (2, 65182, 'sixty-five thousand one hundred eighty-two'), (3, 79184, 'seventy-nine thousand one hundred eighty-four'), (4, 62773, 'sixty-two thousand seven hundred seventy-three'), (5, 6630, 'six thousand six hundred thirty'), (6, 79715, 'seventy-nine thousand seven hundred fifteen'), (7, 49778, 'forty-nine thousand seven hundred seventy-eight'), (8, 33198, 'thirty-three thousand one hundred ninety-eight'), (9, 59322, 'fifty-nine thousand three hundred twenty-two'), (10, 48234, 'forty-eight thousand two hundred thirty-four'), (11, 21538, 'twenty-one thousand five hundred thirty-eight'), (12, 24452, 'twenty-four thousand four hundred fifty-two'), (13, 23004, 'twenty-three thousand four'), (14, 1240, 'one thousand two hundred forty'), (15, 63122, 'sixty-three thousand one hundred twenty-two'), (16, 56286, 'fifty-six thousand two hundred eighty-six'), (17, 25005, 'twenty-five thousand five'), (18, 944, 'nine hundred forty-four'), (19, 80737, 'eighty thousand seven hundred thirty-seven'), (20, 16724, 'sixteen thousand seven hundred twenty-four'), (21, 31354, 'thirty-one thousand three hundred fifty-four'), (22, 17696, 'seventeen thousand six hundred ninety-six'), (23, 44146, 'forty-four thousand one hundred forty-six'), (24, 14105, 'fourteen thousand one hundred five'), (25, 56396, 'fifty-six thousand three hundred ninety-six'), (26, 34947, 'thirty-four thousand nine hundred forty-seven'), (27, 73851, 'seventy-three thousand eight hundred fifty-one'), (28, 36410, 'thirty-six thousand four hundred ten'), (29, 68033, 'sixty-eight thousand thirty-three'), (30, 72153, 'seventy-two thousand one hundred fifty-three'), (31, 29430, 'twenty-nine thousand four hundred thirty'), (32, 435, 'four hundred thirty-five'), (33, 8430, 'eight thousand four hundred thirty'), (34, 64854, 'sixty-four thousand eight hundred fifty-four'), (35, 50457, 'fifty thousand four hundred fifty-seven'), (36, 28095, 'twenty-eight thousand ninety-five'), (37, 87893, 'eighty-seven thousand eight hundred ninety-three'), (38, 81207, 'eighty-one thousand two hundred seven'), (39, 72268, 'seventy-two thousand two hundred sixty-eight'), (40, 45940, 'forty-five thousand nine hundred forty'), (41, 55242, 'fifty-five thousand two hundred forty-two'), (42, 7100, 'seven thousand one hundred'), (43, 35460, 'thirty-five thousand four hundred sixty'), (44, 20012, 'twenty thousand twelve'), (45, 95948, 'ninety-five thousand nine hundred forty-eight'), (46, 12696, 'twelve thousand six hundred ninety-six'), (47, 81014, 'eighty-one thousand fourteen'), (48, 73388, 'seventy-three thousand three hundred eighty-eight'), (49, 52983, 'fifty-two thousand nine hundred eighty-three'), (50, 19671, 'nineteen thousand six hundred seventy-one'), (51, 16274, 'sixteen thousand two hundred seventy-four'), (52, 82940, 'eighty-two thousand nine hundred forty'), (53, 67503, 'sixty-seven thousand five hundred three'), (54, 13522, 'thirteen thousand five hundred twenty-two'), (55, 51083, 'fifty-one thousand eighty-three'), (56, 2617, 'two thousand six hundred seventeen'), (57, 23555, 'twenty-three thousand five hundred fifty-five'), (58, 89075, 'eighty-nine thousand seventy-five'), (59, 49313, 'forty-nine thousand three hundred thirteen'), (60, 78873, 'seventy-eight thousand eight hundred seventy-three'), (61, 84645, 'eighty-four thousand six hundred forty-five'), (62, 89920, 'eighty-nine thousand nine hundred twenty'), (63, 58805, 'fifty-eight thousand eight hundred five'), (64, 53068, 'fifty-three thousand sixty-eight'), (65, 68084, 'sixty-eight thousand eighty-four'), (66, 29207, 'twenty-nine thousand two hundred seven'), (67, 63457, 'sixty-three thousand four hundred fifty-seven'), (68, 40143, 'forty thousand one hundred forty-three'), (69, 62048, 'sixty-two thousand forty-eight'), (70, 36006, 'thirty-six thousand six'), (71, 83152, 'eighty-three thousand one hundred fifty-two'), (72, 13387, 'thirteen thousand three hundred eighty-seven'), (73, 50704, 'fifty thousand seven hundred four'), (74, 39743, 'thirty-nine thousand seven hundred forty-three'), (75, 44716, 'forty-four thousand seven hundred sixteen'), (76, 31685, 'thirty-one thousand six hundred eighty-five'), (77, 65893, 'sixty-five thousand eight hundred ninety-three'), (78, 62854, 'sixty-two thousand eight hundred fifty-four'), (79, 8739, 'eight thousand seven hundred thirty-nine'), (80, 26513, 'twenty-six thousand five hundred thirteen'), (81, 59948, 'fifty-nine thousand nine hundred forty-eight'), (82, 73120, 'seventy-three thousand one hundred twenty'), (83, 96520, 'ninety-six thousand five hundred twenty'), (84, 86506, 'eighty-six thousand five hundred six'), (85, 3172, 'three thousand one hundred seventy-two'), (86, 10494, 'ten thousand four hundred ninety-four'), (87, 22034, 'twenty-two thousand thirty-four'), (88, 65036, 'sixty-five thousand thirty-six'), (89, 51863, 'fifty-one thousand eight hundred sixty-three'), (90, 62035, 'sixty-two thousand thirty-five'), (91, 59883, 'fifty-nine thousand eight hundred eighty-three'), (92, 70677, 'seventy thousand six hundred seventy-seven'), (93, 95902, 'ninety-five thousand nine hundred two'), (94, 83317, 'eighty-three thousand three hundred seventeen'), (95, 89743, 'eighty-nine thousand seven hundred forty-three'), (96, 63528, 'sixty-three thousand five hundred twenty-eight'), (97, 76909, 'seventy-six thousand nine hundred nine'), (98, 96469, 'ninety-six thousand four hundred sixty-nine'), (99, 46474, 'forty-six thousand four hundred seventy-four'), (100, 64326, 'sixty-four thousand three hundred twenty-six'), (101, 81805, 'eighty-one thousand eight hundred five'), (102, 38591, 'thirty-eight thousand five hundred ninety-one'), (103, 3909, 'three thousand nine hundred nine'), (104, 85755, 'eighty-five thousand seven hundred fifty-five'), (105, 99762, 'ninety-nine thousand seven hundred sixty-two'), (106, 56813, 'fifty-six thousand eight hundred thirteen'), (107, 50487, 'fifty thousand four hundred eighty-seven'), (108, 73438, 'seventy-three thousand four hundred thirty-eight'), (109, 26555, 'twenty-six thousand five hundred fifty-five'), (110, 76235, 'seventy-six thousand two hundred thirty-five'), (111, 1879, 'one thousand eight hundred seventy-nine'), (112, 21174, 'twenty-one thousand one hundred seventy-four'), (113, 99289, 'ninety-nine thousand two hundred eighty-nine'), (114, 72523, 'seventy-two thousand five hundred twenty-three'), (115, 93286, 'ninety-three thousand two hundred eighty-six'), (116, 76012, 'seventy-six thousand twelve'), (117, 9372, 'nine thousand three hundred seventy-two'), (118, 33992, 'thirty-three thousand nine hundred ninety-two'), (119, 9869, 'nine thousand eight hundred sixty-nine'), (120, 87554, 'eighty-seven thousand five hundred fifty-four'), (121, 27130, 'twenty-seven thousand one hundred thirty'), (122, 24420, 'twenty-four thousand four hundred twenty'), (123, 81218, 'eighty-one thousand two hundred eighteen'), (124, 87915, 'eighty-seven thousand nine hundred fifteen'), (125, 82797, 'eighty-two thousand seven hundred ninety-seven'), (126, 99867, 'ninety-nine thousand eight hundred sixty-seven'), (127, 45608, 'forty-five thousand six hundred eight'), (128, 27027, 'twenty-seven thousand twenty-seven'), (129, 10148, 'ten thousand one hundred forty-eight'), (130, 90119, 'ninety thousand one hundred nineteen'), (131, 3539, 'three thousand five hundred thirty-nine'), (132, 14278, 'fourteen thousand two hundred seventy-eight'), (133, 70628, 'seventy thousand six hundred twenty-eight'), (134, 40495, 'forty thousand four hundred ninety-five'), (135, 77630, 'seventy-seven thousand six hundred thirty'), (136, 24919, 'twenty-four thousand nine hundred nineteen'), (137, 563, 'five hundred sixty-three'), (138, 13613, 'thirteen thousand six hundred thirteen'), (139, 83588, 'eighty-three thousand five hundred eighty-eight'), (140, 27930, 'twenty-seven thousand nine hundred thirty'), (141, 30958, 'thirty thousand nine hundred fifty-eight'), (142, 75153, 'seventy-five thousand one hundred fifty-three'), (143, 99222, 'ninety-nine thousand two hundred twenty-two'), (144, 32451, 'thirty-two thousand four hundred fifty-one'), (145, 76632, 'seventy-six thousand six hundred thirty-two'), (146, 34681, 'thirty-four thousand six hundred eighty-one'), (147, 32317, 'thirty-two thousand three hundred seventeen'), (148, 56149, 'fifty-six thousand one hundred forty-nine'), (149, 60229, 'sixty thousand two hundred twenty-nine'), (150, 19532, 'nineteen thousand five hundred thirty-two'), (151, 87902, 'eighty-seven thousand nine hundred two'), (152, 40686, 'forty thousand six hundred eighty-six'), (153, 46888, 'forty-six thousand eight hundred eighty-eight'), (154, 12672, 'twelve thousand six hundred seventy-two'), (155, 74042, 'seventy-four thousand forty-two'), (156, 43172, 'forty-three thousand one hundred seventy-two'), (157, 41588, 'forty-one thousand five hundred eighty-eight'), (158, 58654, 'fifty-eight thousand six hundred fifty-four'), (159, 80637, 'eighty thousand six hundred thirty-seven'), (160, 25022, 'twenty-five thousand twenty-two'), (161, 2878, 'two thousand eight hundred seventy-eight'), (162, 87182, 'eighty-seven thousand one hundred eighty-two'), (163, 34851, 'thirty-four thousand eight hundred fifty-one'), (164, 4544, 'four thousand five hundred forty-four'), (165, 75925, 'seventy-five thousand nine hundred twenty-five'), (166, 65362, 'sixty-five thousand three hundred sixty-two'), (167, 51857, 'fifty-one thousand eight hundred fifty-seven'), (168, 81481, 'eighty-one thousand four hundred eighty-one'), (169, 66526, 'sixty-six thousand five hundred twenty-six'), (170, 47242, 'forty-seven thousand two hundred forty-two'), (171, 81290, 'eighty-one thousand two hundred ninety'), (172, 98004, 'ninety-eight thousand four'), (173, 80313, 'eighty thousand three hundred thirteen'), (174, 93361, 'ninety-three thousand three hundred sixty-one'), (175, 29697, 'twenty-nine thousand six hundred ninety-seven'), (176, 33778, 'thirty-three thousand seven hundred seventy-eight'), (177, 88134, 'eighty-eight thousand one hundred thirty-four'), (178, 30768, 'thirty thousand seven hundred sixty-eight'), (179, 26673, 'twenty-six thousand six hundred seventy-three'), (180, 86295, 'eighty-six thousand two hundred ninety-five'), (181, 41292, 'forty-one thousand two hundred ninety-two'), (182, 74272, 'seventy-four thousand two hundred seventy-two'), (183, 84254, 'eighty-four thousand two hundred fifty-four'), (184, 5812, 'five thousand eight hundred twelve'), (185, 12042, 'twelve thousand forty-two'), (186, 11546, 'eleven thousand five hundred forty-six'), (187, 60254, 'sixty thousand two hundred fifty-four'), (188, 39302, 'thirty-nine thousand three hundred two'), (189, 1812, 'one thousand eight hundred twelve'), (190, 12018, 'twelve thousand eighteen'), (191, 94386, 'ninety-four thousand three hundred eighty-six'), (192, 44723, 'forty-four thousand seven hundred twenty-three'), (193, 9197, 'nine thousand one hundred ninety-seven'), (194, 99234, 'ninety-nine thousand two hundred thirty-four'), (195, 36549, 'thirty-six thousand five hundred forty-nine'), (196, 99550, 'ninety-nine thousand five hundred fifty'), (197, 68978, 'sixty-eight thousand nine hundred seventy-eight'), (198, 75951, 'seventy-five thousand nine hundred fifty-one'), (199, 41705, 'forty-one thousand seven hundred five'), (200, 10998, 'ten thousand nine hundred ninety-eight'), (201, 36868, 'thirty-six thousand eight hundred sixty-eight'), (202, 17944, 'seventeen thousand nine hundred forty-four'), (203, 28310, 'twenty-eight thousand three hundred ten'), (204, 50765, 'fifty thousand seven hundred sixty-five'), (205, 58754, 'fifty-eight thousand seven hundred fifty-four'), (206, 68159, 'sixty-eight thousand one hundred fifty-nine'), (207, 1578, 'one thousand five hundred seventy-eight'), (208, 77708, 'seventy-seven thousand seven hundred eight'), (209, 2248, 'two thousand two hundred forty-eight'), (210, 56563, 'fifty-six thousand five hundred sixty-three'), (211, 39829, 'thirty-nine thousand eight hundred twenty-nine'), (212, 47346, 'forty-seven thousand three hundred forty-six'), (213, 73875, 'seventy-three thousand eight hundred seventy-five'), (214, 78489, 'seventy-eight thousand four hundred eighty-nine'), (215, 375, 'three hundred seventy-five'), (216, 89242, 'eighty-nine thousand two hundred forty-two'), (217, 3818, 'three thousand eight hundred eighteen'), (218, 35355, 'thirty-five thousand three hundred fifty-five'), (219, 9835, 'nine thousand eight hundred thirty-five'), (220, 20768, 'twenty thousand seven hundred sixty-eight'), (221, 43749, 'forty-three thousand seven hundred forty-nine'), (222, 23736, 'twenty-three thousand seven hundred thirty-six'), (223, 8111, 'eight thousand one hundred eleven'), (224, 37926, 'thirty-seven thousand nine hundred twenty-six'), (225, 25507, 'twenty-five thousand five hundred seven'), (226, 44121, 'forty-four thousand one hundred twenty-one'), (227, 23445, 'twenty-three thousand four hundred forty-five'), (228, 5392, 'five thousand three hundred ninety-two'), (229, 96000, 'ninety-six thousand'), (230, 69638, 'sixty-nine thousand six hundred thirty-eight'), (231, 44145, 'forty-four thousand one hundred forty-five'), (232, 32916, 'thirty-two thousand nine hundred sixteen'), (233, 85171, 'eighty-five thousand one hundred seventy-one'), (234, 2597, 'two thousand five hundred ninety-seven'), (235, 61625, 'sixty-one thousand six hundred twenty-five'), (236, 88977, 'eighty-eight thousand nine hundred seventy-seven'), (237, 57311, 'fifty-seven thousand three hundred eleven'), (238, 26687, 'twenty-six thousand six hundred eighty-seven'), (239, 20185, 'twenty thousand one hundred eighty-five'), (240, 82839, 'eighty-two thousand eight hundred thirty-nine'), (241, 13801, 'thirteen thousand eight hundred one'), (242, 53847, 'fifty-three thousand eight hundred forty-seven'), (243, 68561, 'sixty-eight thousand five hundred sixty-one'), (244, 19898, 'nineteen thousand eight hundred ninety-eight'), (245, 63660, 'sixty-three thousand six hundred sixty'), (246, 63738, 'sixty-three thousand seven hundred thirty-eight'), (247, 6887, 'six thousand eight hundred eighty-seven'), (248, 94457, 'ninety-four thousand four hundred fifty-seven'), (249, 37683, 'thirty-seven thousand six hundred eighty-three'), (250, 85191, 'eighty-five thousand one hundred ninety-one'), (251, 79271, 'seventy-nine thousand two hundred seventy-one'), (252, 43173, 'forty-three thousand one hundred seventy-three'), (253, 9368, 'nine thousand three hundred sixty-eight'), (254, 66602, 'sixty-six thousand six hundred two'), (255, 58241, 'fifty-eight thousand two hundred forty-one'), (256, 7657, 'seven thousand six hundred fifty-seven'), (257, 42926, 'forty-two thousand nine hundred twenty-six'), (258, 90780, 'ninety thousand seven hundred eighty'), (259, 24357, 'twenty-four thousand three hundred fifty-seven'), (260, 28660, 'twenty-eight thousand six hundred sixty'), (261, 17525, 'seventeen thousand five hundred twenty-five'), (262, 32537, 'thirty-two thousand five hundred thirty-seven'), (263, 78891, 'seventy-eight thousand eight hundred ninety-one'), (264, 76052, 'seventy-six thousand fifty-two'), (265, 55990, 'fifty-five thousand nine hundred ninety'), (266, 85622, 'eighty-five thousand six hundred twenty-two'), (267, 59213, 'fifty-nine thousand two hundred thirteen'), (268, 8091, 'eight thousand ninety-one'), (269, 20089, 'twenty thousand eighty-nine'), (270, 10462, 'ten thousand four hundred sixty-two'), (271, 25496, 'twenty-five thousand four hundred ninety-six'), (272, 51072, 'fifty-one thousand seventy-two'), (273, 195, 'one hundred ninety-five'), (274, 67763, 'sixty-seven thousand seven hundred sixty-three'), (275, 13734, 'thirteen thousand seven hundred thirty-four'), (276, 63678, 'sixty-three thousand six hundred seventy-eight'), (277, 147, 'one hundred forty-seven'), (278, 18492, 'eighteen thousand four hundred ninety-two'), (279, 88892, 'eighty-eight thousand eight hundred ninety-two'), (280, 30787, 'thirty thousand seven hundred eighty-seven'), (281, 7265, 'seven thousand two hundred sixty-five'), (282, 24479, 'twenty-four thousand four hundred seventy-nine'), (283, 20177, 'twenty thousand one hundred seventy-seven'), (284, 67194, 'sixty-seven thousand one hundred ninety-four'), (285, 52662, 'fifty-two thousand six hundred sixty-two'), (286, 35497, 'thirty-five thousand four hundred ninety-seven'), (287, 36529, 'thirty-six thousand five hundred twenty-nine'), (288, 36482, 'thirty-six thousand four hundred eighty-two'), (289, 39017, 'thirty-nine thousand seventeen'), (290, 29718, 'twenty-nine thousand seven hundred eighteen'), (291, 38728, 'thirty-eight thousand seven hundred twenty-eight'), (292, 78773, 'seventy-eight thousand seven hundred seventy-three'), (293, 92733, 'ninety-two thousand seven hundred thirty-three'), (294, 6736, 'six thousand seven hundred thirty-six'), (295, 66806, 'sixty-six thousand eight hundred six'), (296, 86980, 'eighty-six thousand nine hundred eighty'), (297, 29884, 'twenty-nine thousand eight hundred eighty-four'), (298, 30679, 'thirty thousand six hundred seventy-nine'), (299, 79306, 'seventy-nine thousand three hundred six'), (300, 65953, 'sixty-five thousand nine hundred fifty-three'), (301, 17438, 'seventeen thousand four hundred thirty-eight'), (302, 38751, 'thirty-eight thousand seven hundred fifty-one'), (303, 46399, 'forty-six thousand three hundred ninety-nine'), (304, 78452, 'seventy-eight thousand four hundred fifty-two'), (305, 20000, 'twenty thousand'), (306, 13194, 'thirteen thousand one hundred ninety-four'), (307, 81019, 'eighty-one thousand nineteen'), (308, 76798, 'seventy-six thousand seven hundred ninety-eight'), (309, 22161, 'twenty-two thousand one hundred sixty-one'), (310, 37233, 'thirty-seven thousand two hundred thirty-three'), (311, 74787, 'seventy-four thousand seven hundred eighty-seven'), (312, 30941, 'thirty thousand nine hundred forty-one'), (313, 78402, 'seventy-eight thousand four hundred two'), (314, 16427, 'sixteen thousand four hundred twenty-seven'), (315, 82948, 'eighty-two thousand nine hundred forty-eight'), (316, 5416, 'five thousand four hundred sixteen'), (317, 58180, 'fifty-eight thousand one hundred eighty'), (318, 55537, 'fifty-five thousand five hundred thirty-seven'), (319, 83931, 'eighty-three thousand nine hundred thirty-one'), (320, 25393, 'twenty-five thousand three hundred ninety-three'), (321, 88398, 'eighty-eight thousand three hundred ninety-eight'), (322, 53156, 'fifty-three thousand one hundred fifty-six'), (323, 39695, 'thirty-nine thousand six hundred ninety-five'), (324, 35844, 'thirty-five thousand eight hundred forty-four'), (325, 11225, 'eleven thousand two hundred twenty-five'), (326, 35707, 'thirty-five thousand seven hundred seven'), (327, 29558, 'twenty-nine thousand five hundred fifty-eight'), (328, 80039, 'eighty thousand thirty-nine'), (329, 23028, 'twenty-three thousand twenty-eight'), (330, 5767, 'five thousand seven hundred sixty-seven'), (331, 1959, 'one thousand nine hundred fifty-nine'), (332, 21325, 'twenty-one thousand three hundred twenty-five'), (333, 81488, 'eighty-one thousand four hundred eighty-eight'), (334, 12011, 'twelve thousand eleven'), (335, 19694, 'nineteen thousand six hundred ninety-four'), (336, 84000, 'eighty-four thousand'), (337, 72761, 'seventy-two thousand seven hundred sixty-one'), (338, 24198, 'twenty-four thousand one hundred ninety-eight'), (339, 30422, 'thirty thousand four hundred twenty-two'), (340, 75099, 'seventy-five thousand ninety-nine'), (341, 4255, 'four thousand two hundred fifty-five'), (342, 48202, 'forty-eight thousand two hundred two'), (343, 53180, 'fifty-three thousand one hundred eighty'), (344, 56346, 'fifty-six thousand three hundred forty-six'), (345, 94707, 'ninety-four thousand seven hundred seven'), (346, 28275, 'twenty-eight thousand two hundred seventy-five'), (347, 20096, 'twenty thousand ninety-six'), (348, 66336, 'sixty-six thousand three hundred thirty-six'), (349, 45394, 'forty-five thousand three hundred ninety-four'), (350, 99448, 'ninety-nine thousand four hundred forty-eight'), (351, 29637, 'twenty-nine thousand six hundred thirty-seven'), (352, 14212, 'fourteen thousand two hundred twelve'), (353, 72503, 'seventy-two thousand five hundred three'), (354, 82096, 'eighty-two thousand ninety-six'), (355, 24848, 'twenty-four thousand eight hundred forty-eight'), (356, 79870, 'seventy-nine thousand eight hundred seventy'), (357, 61332, 'sixty-one thousand three hundred thirty-two'), (358, 99109, 'ninety-nine thousand one hundred nine'), (359, 22266, 'twenty-two thousand two hundred sixty-six'), (360, 55154, 'fifty-five thousand one hundred fifty-four'), (361, 99933, 'ninety-nine thousand nine hundred thirty-three'), (362, 49927, 'forty-nine thousand nine hundred twenty-seven'), (363, 15041, 'fifteen thousand forty-one'), (364, 34503, 'thirty-four thousand five hundred three'), (365, 34573, 'thirty-four thousand five hundred seventy-three'), (366, 78481, 'seventy-eight thousand four hundred eighty-one'), (367, 98233, 'ninety-eight thousand two hundred thirty-three'), (368, 70101, 'seventy thousand one hundred one'), (369, 89364, 'eighty-nine thousand three hundred sixty-four'), (370, 37758, 'thirty-seven thousand seven hundred fifty-eight'), (371, 90088, 'ninety thousand eighty-eight'), (372, 94690, 'ninety-four thousand six hundred ninety'), (373, 27142, 'twenty-seven thousand one hundred forty-two'), (374, 50630, 'fifty thousand six hundred thirty'), (375, 44828, 'forty-four thousand eight hundred twenty-eight'), (376, 98807, 'ninety-eight thousand eight hundred seven'), (377, 90633, 'ninety thousand six hundred thirty-three'), (378, 34161, 'thirty-four thousand one hundred sixty-one'), (379, 50847, 'fifty thousand eight hundred forty-seven'), (380, 10041, 'ten thousand forty-one'), (381, 66663, 'sixty-six thousand six hundred sixty-three'), (382, 59676, 'fifty-nine thousand six hundred seventy-six'), (383, 1066, 'one thousand sixty-six'), (384, 36999, 'thirty-six thousand nine hundred ninety-nine'), (385, 51597, 'fifty-one thousand five hundred ninety-seven'), (386, 10998, 'ten thousand nine hundred ninety-eight'), (387, 23753, 'twenty-three thousand seven hundred fifty-three'), (388, 42331, 'forty-two thousand three hundred thirty-one'), (389, 28060, 'twenty-eight thousand sixty'), (390, 50748, 'fifty thousand seven hundred forty-eight'), (391, 63826, 'sixty-three thousand eight hundred twenty-six'), (392, 40657, 'forty thousand six hundred fifty-seven'), (393, 46977, 'forty-six thousand nine hundred seventy-seven'), (394, 78180, 'seventy-eight thousand one hundred eighty'), (395, 53102, 'fifty-three thousand one hundred two'), (396, 48776, 'forty-eight thousand seven hundred seventy-six'), (397, 53364, 'fifty-three thousand three hundred sixty-four'), (398, 33461, 'thirty-three thousand four hundred sixty-one'), (399, 16726, 'sixteen thousand seven hundred twenty-six'), (400, 56266, 'fifty-six thousand two hundred sixty-six'), (401, 6527, 'six thousand five hundred twenty-seven'), (402, 79, 'seventy-nine'), (403, 57142, 'fifty-seven thousand one hundred forty-two'), (404, 60814, 'sixty thousand eight hundred fourteen'), (405, 10460, 'ten thousand four hundred sixty'), (406, 47929, 'forty-seven thousand nine hundred twenty-nine'), (407, 915, 'nine hundred fifteen'), (408, 8265, 'eight thousand two hundred sixty-five'), (409, 61283, 'sixty-one thousand two hundred eighty-three'), (410, 74918, 'seventy-four thousand nine hundred eighteen'), (411, 94696, 'ninety-four thousand six hundred ninety-six'), (412, 20180, 'twenty thousand one hundred eighty'), (413, 51296, 'fifty-one thousand two hundred ninety-six'), (414, 4759, 'four thousand seven hundred fifty-nine'), (415, 97901, 'ninety-seven thousand nine hundred one'), (416, 63344, 'sixty-three thousand three hundred forty-four'), (417, 87408, 'eighty-seven thousand four hundred eight'), (418, 73199, 'seventy-three thousand one hundred ninety-nine'), (419, 4080, 'four thousand eighty'), (420, 83058, 'eighty-three thousand fifty-eight'), (421, 26771, 'twenty-six thousand seven hundred seventy-one'), (422, 53218, 'fifty-three thousand two hundred eighteen'), (423, 25723, 'twenty-five thousand seven hundred twenty-three'), (424, 90849, 'ninety thousand eight hundred forty-nine'), (425, 92601, 'ninety-two thousand six hundred one'), (426, 6504, 'six thousand five hundred four'), (427, 29563, 'twenty-nine thousand five hundred sixty-three'), (428, 68593, 'sixty-eight thousand five hundred ninety-three'), (429, 65691, 'sixty-five thousand six hundred ninety-one'), (430, 43039, 'forty-three thousand thirty-nine'), (431, 58255, 'fifty-eight thousand two hundred fifty-five'), (432, 80688, 'eighty thousand six hundred eighty-eight'), (433, 88514, 'eighty-eight thousand five hundred fourteen'), (434, 79061, 'seventy-nine thousand sixty-one'), (435, 3809, 'three thousand eight hundred nine'), (436, 13032, 'thirteen thousand thirty-two'), (437, 5484, 'five thousand four hundred eighty-four'), (438, 92694, 'ninety-two thousand six hundred ninety-four'), (439, 30988, 'thirty thousand nine hundred eighty-eight'), (440, 47634, 'forty-seven thousand six hundred thirty-four'), (441, 93286, 'ninety-three thousand two hundred eighty-six'), (442, 52092, 'fifty-two thousand ninety-two'), (443, 25338, 'twenty-five thousand three hundred thirty-eight'), (444, 27407, 'twenty-seven thousand four hundred seven'), (445, 31005, 'thirty-one thousand five'), (446, 51089, 'fifty-one thousand eighty-nine'), (447, 67611, 'sixty-seven thousand six hundred eleven'), (448, 59140, 'fifty-nine thousand one hundred forty'), (449, 62305, 'sixty-two thousand three hundred five'), (450, 65481, 'sixty-five thousand four hundred eighty-one'), (451, 56582, 'fifty-six thousand five hundred eighty-two'), (452, 73844, 'seventy-three thousand eight hundred forty-four'), (453, 80966, 'eighty thousand nine hundred sixty-six'), (454, 63129, 'sixty-three thousand one hundred twenty-nine'), (455, 54072, 'fifty-four thousand seventy-two'), (456, 89320, 'eighty-nine thousand three hundred twenty'), (457, 82740, 'eighty-two thousand seven hundred forty'), (458, 80819, 'eighty thousand eight hundred nineteen'), (459, 77771, 'seventy-seven thousand seven hundred seventy-one'), (460, 60669, 'sixty thousand six hundred sixty-nine'), (461, 39184, 'thirty-nine thousand one hundred eighty-four'), (462, 68848, 'sixty-eight thousand eight hundred forty-eight'), (463, 99938, 'ninety-nine thousand nine hundred thirty-eight'), (464, 93791, 'ninety-three thousand seven hundred ninety-one'), (465, 24279, 'twenty-four thousand two hundred seventy-nine'), (466, 15217, 'fifteen thousand two hundred seventeen'), (467, 12705, 'twelve thousand seven hundred five'), (468, 82683, 'eighty-two thousand six hundred eighty-three'), (469, 7164, 'seven thousand one hundred sixty-four'), (470, 75594, 'seventy-five thousand five hundred ninety-four'), (471, 2754, 'two thousand seven hundred fifty-four'), (472, 71229, 'seventy-one thousand two hundred twenty-nine'), (473, 21874, 'twenty-one thousand eight hundred seventy-four'), (474, 9216, 'nine thousand two hundred sixteen'), (475, 65001, 'sixty-five thousand one'), (476, 28692, 'twenty-eight thousand six hundred ninety-two'), (477, 78230, 'seventy-eight thousand two hundred thirty'), (478, 120, 'one hundred twenty'), (479, 19649, 'nineteen thousand six hundred forty-nine'), (480, 40790, 'forty thousand seven hundred ninety'), (481, 34612, 'thirty-four thousand six hundred twelve'), (482, 61303, 'sixty-one thousand three hundred three'), (483, 29631, 'twenty-nine thousand six hundred thirty-one'), (484, 92284, 'ninety-two thousand two hundred eighty-four'), (485, 13349, 'thirteen thousand three hundred forty-nine'), (486, 74211, 'seventy-four thousand two hundred eleven'), (487, 39512, 'thirty-nine thousand five hundred twelve'), (488, 50529, 'fifty thousand five hundred twenty-nine'), (489, 4724, 'four thousand seven hundred twenty-four'), (490, 78296, 'seventy-eight thousand two hundred ninety-six'), (491, 66338, 'sixty-six thousand three hundred thirty-eight'), (492, 50105, 'fifty thousand one hundred five'), (493, 54289, 'fifty-four thousand two hundred eighty-nine'), (494, 89960, 'eighty-nine thousand nine hundred sixty'), (495, 97482, 'ninety-seven thousand four hundred eighty-two'), (496, 73469, 'seventy-three thousand four hundred sixty-nine'), (497, 37240, 'thirty-seven thousand two hundred forty'), (498, 25358, 'twenty-five thousand three hundred fifty-eight'), (499, 90833, 'ninety thousand eight hundred thirty-three'), (500, 67689, 'sixty-seven thousand six hundred eighty-nine'), (501, 86135, 'eighty-six thousand one hundred thirty-five'), (502, 72655, 'seventy-two thousand six hundred fifty-five'), (503, 14299, 'fourteen thousand two hundred ninety-nine'), (504, 58565, 'fifty-eight thousand five hundred sixty-five'), (505, 51039, 'fifty-one thousand thirty-nine'), (506, 3781, 'three thousand seven hundred eighty-one'), (507, 53031, 'fifty-three thousand thirty-one'), (508, 83820, 'eighty-three thousand eight hundred twenty'), (509, 52689, 'fifty-two thousand six hundred eighty-nine'), (510, 75502, 'seventy-five thousand five hundred two'), (511, 67061, 'sixty-seven thousand sixty-one'), (512, 48192, 'forty-eight thousand one hundred ninety-two'), (513, 43987, 'forty-three thousand nine hundred eighty-seven'), (514, 79375, 'seventy-nine thousand three hundred seventy-five'), (515, 88227, 'eighty-eight thousand two hundred twenty-seven'), (516, 31058, 'thirty-one thousand fifty-eight'), (517, 66045, 'sixty-six thousand forty-five'), (518, 33816, 'thirty-three thousand eight hundred sixteen'), (519, 20901, 'twenty thousand nine hundred one'), (520, 97866, 'ninety-seven thousand eight hundred sixty-six'), (521, 95757, 'ninety-five thousand seven hundred fifty-seven'), (522, 5770, 'five thousand seven hundred seventy'), (523, 35260, 'thirty-five thousand two hundred sixty'), (524, 27704, 'twenty-seven thousand seven hundred four'), (525, 57938, 'fifty-seven thousand nine hundred thirty-eight'), (526, 40212, 'forty thousand two hundred twelve'), (527, 23433, 'twenty-three thousand four hundred thirty-three'), (528, 53782, 'fifty-three thousand seven hundred eighty-two'), (529, 91027, 'ninety-one thousand twenty-seven'), (530, 24951, 'twenty-four thousand nine hundred fifty-one'), (531, 14166, 'fourteen thousand one hundred sixty-six'), (532, 4291, 'four thousand two hundred ninety-one'), (533, 16897, 'sixteen thousand eight hundred ninety-seven'), (534, 30100, 'thirty thousand one hundred'), (535, 15943, 'fifteen thousand nine hundred forty-three'), (536, 61552, 'sixty-one thousand five hundred fifty-two'), (537, 28251, 'twenty-eight thousand two hundred fifty-one'), (538, 74560, 'seventy-four thousand five hundred sixty'), (539, 63732, 'sixty-three thousand seven hundred thirty-two'), (540, 56346, 'fifty-six thousand three hundred forty-six'), (541, 19525, 'nineteen thousand five hundred twenty-five'), (542, 46029, 'forty-six thousand twenty-nine'), (543, 90910, 'ninety thousand nine hundred ten'), (544, 71723, 'seventy-one thousand seven hundred twenty-three'), (545, 79085, 'seventy-nine thousand eighty-five'), (546, 92607, 'ninety-two thousand six hundred seven'), (547, 96583, 'ninety-six thousand five hundred eighty-three'), (548, 74964, 'seventy-four thousand nine hundred sixty-four'), (549, 31048, 'thirty-one thousand forty-eight'), (550, 78469, 'seventy-eight thousand four hundred sixty-nine'), (551, 55499, 'fifty-five thousand four hundred ninety-nine'), (552, 92389, 'ninety-two thousand three hundred eighty-nine'), (553, 91848, 'ninety-one thousand eight hundred forty-eight'), (554, 65795, 'sixty-five thousand seven hundred ninety-five'), (555, 22453, 'twenty-two thousand four hundred fifty-three'), (556, 31578, 'thirty-one thousand five hundred seventy-eight'), (557, 47322, 'forty-seven thousand three hundred twenty-two'), (558, 5279, 'five thousand two hundred seventy-nine'), (559, 97232, 'ninety-seven thousand two hundred thirty-two'), (560, 41765, 'forty-one thousand seven hundred sixty-five'), (561, 19565, 'nineteen thousand five hundred sixty-five'), (562, 90673, 'ninety thousand six hundred seventy-three'), (563, 34856, 'thirty-four thousand eight hundred fifty-six'), (564, 18369, 'eighteen thousand three hundred sixty-nine'), (565, 66398, 'sixty-six thousand three hundred ninety-eight'), (566, 52590, 'fifty-two thousand five hundred ninety'), (567, 91644, 'ninety-one thousand six hundred forty-four'), (568, 34637, 'thirty-four thousand six hundred thirty-seven'), (569, 9244, 'nine thousand two hundred forty-four'), (570, 76019, 'seventy-six thousand nineteen'), (571, 40624, 'forty thousand six hundred twenty-four'), (572, 23892, 'twenty-three thousand eight hundred ninety-two'), (573, 12027, 'twelve thousand twenty-seven'), (574, 87744, 'eighty-seven thousand seven hundred forty-four'), (575, 92241, 'ninety-two thousand two hundred forty-one'), (576, 18570, 'eighteen thousand five hundred seventy'), (577, 12463, 'twelve thousand four hundred sixty-three'), (578, 27663, 'twenty-seven thousand six hundred sixty-three'), (579, 98405, 'ninety-eight thousand four hundred five'), (580, 97899, 'ninety-seven thousand eight hundred ninety-nine'), (581, 93129, 'ninety-three thousand one hundred twenty-nine'), (582, 58876, 'fifty-eight thousand eight hundred seventy-six'), (583, 75761, 'seventy-five thousand seven hundred sixty-one'), (584, 3080, 'three thousand eighty'), (585, 43332, 'forty-three thousand three hundred thirty-two'), (586, 50589, 'fifty thousand five hundred eighty-nine'), (587, 23157, 'twenty-three thousand one hundred fifty-seven'), (588, 71354, 'seventy-one thousand three hundred fifty-four'), (589, 29656, 'twenty-nine thousand six hundred fifty-six'), (590, 34077, 'thirty-four thousand seventy-seven'), (591, 86707, 'eighty-six thousand seven hundred seven'), (592, 8135, 'eight thousand one hundred thirty-five'), (593, 49190, 'forty-nine thousand one hundred ninety'), (594, 24109, 'twenty-four thousand one hundred nine'), (595, 2553, 'two thousand five hundred fifty-three'), (596, 8775, 'eight thousand seven hundred seventy-five'), (597, 4192, 'four thousand one hundred ninety-two'), (598, 16535, 'sixteen thousand five hundred thirty-five'), (599, 70100, 'seventy thousand one hundred'), (600, 72784, 'seventy-two thousand seven hundred eighty-four'), (601, 85207, 'eighty-five thousand two hundred seven'), (602, 84033, 'eighty-four thousand thirty-three'), (603, 50289, 'fifty thousand two hundred eighty-nine'), (604, 45270, 'forty-five thousand two hundred seventy'), (605, 15121, 'fifteen thousand one hundred twenty-one'), (606, 96021, 'ninety-six thousand twenty-one'), (607, 1700, 'one thousand seven hundred'), (608, 32762, 'thirty-two thousand seven hundred sixty-two'), (609, 98766, 'ninety-eight thousand seven hundred sixty-six'), (610, 4557, 'four thousand five hundred fifty-seven'), (611, 41504, 'forty-one thousand five hundred four'), (612, 87199, 'eighty-seven thousand one hundred ninety-nine'), (613, 55255, 'fifty-five thousand two hundred fifty-five'), (614, 83727, 'eighty-three thousand seven hundred twenty-seven'), (615, 9000, 'nine thousand'), (616, 22676, 'twenty-two thousand six hundred seventy-six'), (617, 97094, 'ninety-seven thousand ninety-four'), (618, 66160, 'sixty-six thousand one hundred sixty'), (619, 53497, 'fifty-three thousand four hundred ninety-seven'), (620, 61579, 'sixty-one thousand five hundred seventy-nine'), (621, 86571, 'eighty-six thousand five hundred seventy-one'), (622, 2308, 'two thousand three hundred eight'), (623, 35960, 'thirty-five thousand nine hundred sixty'), (624, 98290, 'ninety-eight thousand two hundred ninety'), (625, 22605, 'twenty-two thousand six hundred five'), (626, 73700, 'seventy-three thousand seven hundred'), (627, 76160, 'seventy-six thousand one hundred sixty'), (628, 63164, 'sixty-three thousand one hundred sixty-four'), (629, 54301, 'fifty-four thousand three hundred one'), (630, 89457, 'eighty-nine thousand four hundred fifty-seven'), (631, 9100, 'nine thousand one hundred'), (632, 45220, 'forty-five thousand two hundred twenty'), (633, 44339, 'forty-four thousand three hundred thirty-nine'), (634, 99875, 'ninety-nine thousand eight hundred seventy-five'), (635, 36622, 'thirty-six thousand six hundred twenty-two'), (636, 22818, 'twenty-two thousand eight hundred eighteen'), (637, 45079, 'forty-five thousand seventy-nine'), (638, 79120, 'seventy-nine thousand one hundred twenty'), (639, 19298, 'nineteen thousand two hundred ninety-eight'), (640, 71225, 'seventy-one thousand two hundred twenty-five'), (641, 21129, 'twenty-one thousand one hundred twenty-nine'), (642, 89568, 'eighty-nine thousand five hundred sixty-eight'), (643, 39972, 'thirty-nine thousand nine hundred seventy-two'), (644, 68251, 'sixty-eight thousand two hundred fifty-one'), (645, 26025, 'twenty-six thousand twenty-five'), (646, 66601, 'sixty-six thousand six hundred one'), (647, 96932, 'ninety-six thousand nine hundred thirty-two'), (648, 87168, 'eighty-seven thousand one hundred sixty-eight'), (649, 96357, 'ninety-six thousand three hundred fifty-seven'), (650, 20298, 'twenty thousand two hundred ninety-eight'), (651, 37545, 'thirty-seven thousand five hundred forty-five'), (652, 65636, 'sixty-five thousand six hundred thirty-six'), (653, 94130, 'ninety-four thousand one hundred thirty'), (654, 81967, 'eighty-one thousand nine hundred sixty-seven'), (655, 20700, 'twenty thousand seven hundred'), (656, 4484, 'four thousand four hundred eighty-four'), (657, 27452, 'twenty-seven thousand four hundred fifty-two'), (658, 76292, 'seventy-six thousand two hundred ninety-two'), (659, 42300, 'forty-two thousand three hundred'), (660, 40073, 'forty thousand seventy-three'), (661, 28949, 'twenty-eight thousand nine hundred forty-nine'), (662, 36759, 'thirty-six thousand seven hundred fifty-nine'), (663, 29034, 'twenty-nine thousand thirty-four'), (664, 52711, 'fifty-two thousand seven hundred eleven'), (665, 79385, 'seventy-nine thousand three hundred eighty-five'), (666, 12945, 'twelve thousand nine hundred forty-five'), (667, 10377, 'ten thousand three hundred seventy-seven'), (668, 28079, 'twenty-eight thousand seventy-nine'), (669, 89753, 'eighty-nine thousand seven hundred fifty-three'), (670, 8605, 'eight thousand six hundred five'), (671, 37018, 'thirty-seven thousand eighteen'), (672, 66150, 'sixty-six thousand one hundred fifty'), (673, 66564, 'sixty-six thousand five hundred sixty-four'), (674, 99011, 'ninety-nine thousand eleven'), (675, 68395, 'sixty-eight thousand three hundred ninety-five'), (676, 69904, 'sixty-nine thousand nine hundred four'), (677, 34993, 'thirty-four thousand nine hundred ninety-three'), (678, 2401, 'two thousand four hundred one'), (679, 24145, 'twenty-four thousand one hundred forty-five'), (680, 86250, 'eighty-six thousand two hundred fifty'), (681, 58318, 'fifty-eight thousand three hundred eighteen'), (682, 44353, 'forty-four thousand three hundred fifty-three'), (683, 45887, 'forty-five thousand eight hundred eighty-seven'), (684, 51925, 'fifty-one thousand nine hundred twenty-five'), (685, 52235, 'fifty-two thousand two hundred thirty-five'), (686, 52428, 'fifty-two thousand four hundred twenty-eight'), (687, 38146, 'thirty-eight thousand one hundred forty-six'), (688, 68723, 'sixty-eight thousand seven hundred twenty-three'), (689, 60883, 'sixty thousand eight hundred eighty-three'), (690, 18111, 'eighteen thousand one hundred eleven'), (691, 91083, 'ninety-one thousand eighty-three'), (692, 73801, 'seventy-three thousand eight hundred one'), (693, 78093, 'seventy-eight thousand ninety-three'), (694, 478, 'four hundred seventy-eight'), (695, 53728, 'fifty-three thousand seven hundred twenty-eight'), (696, 16203, 'sixteen thousand two hundred three'), (697, 32014, 'thirty-two thousand fourteen'), (698, 54762, 'fifty-four thousand seven hundred sixty-two'), (699, 39265, 'thirty-nine thousand two hundred sixty-five'), (700, 98331, 'ninety-eight thousand three hundred thirty-one'), (701, 72738, 'seventy-two thousand seven hundred thirty-eight'), (702, 93239, 'ninety-three thousand two hundred thirty-nine'), (703, 83486, 'eighty-three thousand four hundred eighty-six'), (704, 63304, 'sixty-three thousand three hundred four'), (705, 51732, 'fifty-one thousand seven hundred thirty-two'), (706, 59997, 'fifty-nine thousand nine hundred ninety-seven'), (707, 95198, 'ninety-five thousand one hundred ninety-eight'), (708, 64717, 'sixty-four thousand seven hundred seventeen'), (709, 77278, 'seventy-seven thousand two hundred seventy-eight'), (710, 60032, 'sixty thousand thirty-two'), (711, 30972, 'thirty thousand nine hundred seventy-two'), (712, 18631, 'eighteen thousand six hundred thirty-one'), (713, 85011, 'eighty-five thousand eleven'), (714, 54491, 'fifty-four thousand four hundred ninety-one'), (715, 3144, 'three thousand one hundred forty-four'), (716, 46631, 'forty-six thousand six hundred thirty-one'), (717, 26420, 'twenty-six thousand four hundred twenty'), (718, 60444, 'sixty thousand four hundred forty-four'), (719, 93079, 'ninety-three thousand seventy-nine'), (720, 65486, 'sixty-five thousand four hundred eighty-six'), (721, 37657, 'thirty-seven thousand six hundred fifty-seven'), (722, 89554, 'eighty-nine thousand five hundred fifty-four'), (723, 34795, 'thirty-four thousand seven hundred ninety-five'), (724, 61849, 'sixty-one thousand eight hundred forty-nine'), (725, 50893, 'fifty thousand eight hundred ninety-three'), (726, 54824, 'fifty-four thousand eight hundred twenty-four'), (727, 70141, 'seventy thousand one hundred forty-one'), (728, 18785, 'eighteen thousand seven hundred eighty-five'), (729, 71155, 'seventy-one thousand one hundred fifty-five'), (730, 82657, 'eighty-two thousand six hundred fifty-seven'), (731, 49123, 'forty-nine thousand one hundred twenty-three'), (732, 30704, 'thirty thousand seven hundred four'), (733, 34632, 'thirty-four thousand six hundred thirty-two'), (734, 6440, 'six thousand four hundred forty'), (735, 39917, 'thirty-nine thousand nine hundred seventeen'), (736, 92176, 'ninety-two thousand one hundred seventy-six'), (737, 34647, 'thirty-four thousand six hundred forty-seven'), (738, 13096, 'thirteen thousand ninety-six'), (739, 15165, 'fifteen thousand one hundred sixty-five'), (740, 26303, 'twenty-six thousand three hundred three'), (741, 63149, 'sixty-three thousand one hundred forty-nine'), (742, 643, 'six hundred forty-three'), (743, 46377, 'forty-six thousand three hundred seventy-seven'), (744, 75722, 'seventy-five thousand seven hundred twenty-two'), (745, 904, 'nine hundred four'), (746, 35726, 'thirty-five thousand seven hundred twenty-six'), (747, 31409, 'thirty-one thousand four hundred nine'), (748, 96595, 'ninety-six thousand five hundred ninety-five'), (749, 405, 'four hundred five'), (750, 78860, 'seventy-eight thousand eight hundred sixty'), (751, 78491, 'seventy-eight thousand four hundred ninety-one'), (752, 75500, 'seventy-five thousand five hundred'), (753, 88873, 'eighty-eight thousand eight hundred seventy-three'), (754, 75943, 'seventy-five thousand nine hundred forty-three'), (755, 87013, 'eighty-seven thousand thirteen'), (756, 80357, 'eighty thousand three hundred fifty-seven'), (757, 58039, 'fifty-eight thousand thirty-nine'), (758, 33498, 'thirty-three thousand four hundred ninety-eight'), (759, 63703, 'sixty-three thousand seven hundred three'), (760, 14663, 'fourteen thousand six hundred sixty-three'), (761, 27734, 'twenty-seven thousand seven hundred thirty-four'), (762, 84282, 'eighty-four thousand two hundred eighty-two'), (763, 15214, 'fifteen thousand two hundred fourteen'), (764, 47449, 'forty-seven thousand four hundred forty-nine'), (765, 30014, 'thirty thousand fourteen'), (766, 44734, 'forty-four thousand seven hundred thirty-four'), (767, 61854, 'sixty-one thousand eight hundred fifty-four'), (768, 3346, 'three thousand three hundred forty-six'), (769, 35580, 'thirty-five thousand five hundred eighty'), (770, 98432, 'ninety-eight thousand four hundred thirty-two'), (771, 300, 'three hundred'), (772, 55376, 'fifty-five thousand three hundred seventy-six'), (773, 80877, 'eighty thousand eight hundred seventy-seven'), (774, 43933, 'forty-three thousand nine hundred thirty-three'), (775, 51760, 'fifty-one thousand seven hundred sixty'), (776, 33696, 'thirty-three thousand six hundred ninety-six'), (777, 82408, 'eighty-two thousand four hundred eight'), (778, 14504, 'fourteen thousand five hundred four'), (779, 50108, 'fifty thousand one hundred eight'), (780, 97058, 'ninety-seven thousand fifty-eight'), (781, 74468, 'seventy-four thousand four hundred sixty-eight'), (782, 68213, 'sixty-eight thousand two hundred thirteen'), (783, 1076, 'one thousand seventy-six'), (784, 45271, 'forty-five thousand two hundred seventy-one'), (785, 34964, 'thirty-four thousand nine hundred sixty-four'), (786, 14228, 'fourteen thousand two hundred twenty-eight'), (787, 19200, 'nineteen thousand two hundred'), (788, 80414, 'eighty thousand four hundred fourteen'), (789, 27636, 'twenty-seven thousand six hundred thirty-six'), (790, 8214, 'eight thousand two hundred fourteen'), (791, 27386, 'twenty-seven thousand three hundred eighty-six'), (792, 32242, 'thirty-two thousand two hundred forty-two'), (793, 52548, 'fifty-two thousand five hundred forty-eight'), (794, 8985, 'eight thousand nine hundred eighty-five'), (795, 86741, 'eighty-six thousand seven hundred forty-one'), (796, 49915, 'forty-nine thousand nine hundred fifteen'), (797, 74705, 'seventy-four thousand seven hundred five'), (798, 30034, 'thirty thousand thirty-four'), (799, 61239, 'sixty-one thousand two hundred thirty-nine'), (800, 98196, 'ninety-eight thousand one hundred ninety-six'), (801, 91281, 'ninety-one thousand two hundred eighty-one'), (802, 84740, 'eighty-four thousand seven hundred forty'), (803, 2070, 'two thousand seventy'), (804, 78383, 'seventy-eight thousand three hundred eighty-three'), (805, 66789, 'sixty-six thousand seven hundred eighty-nine'), (806, 91529, 'ninety-one thousand five hundred twenty-nine'), (807, 47484, 'forty-seven thousand four hundred eighty-four'), (808, 34303, 'thirty-four thousand three hundred three'), (809, 60661, 'sixty thousand six hundred sixty-one'), (810, 99635, 'ninety-nine thousand six hundred thirty-five'), (811, 90865, 'ninety thousand eight hundred sixty-five'), (812, 92401, 'ninety-two thousand four hundred one'), (813, 89329, 'eighty-nine thousand three hundred twenty-nine'), (814, 58767, 'fifty-eight thousand seven hundred sixty-seven'), (815, 38618, 'thirty-eight thousand six hundred eighteen'), (816, 32645, 'thirty-two thousand six hundred forty-five'), (817, 60147, 'sixty thousand one hundred forty-seven'), (818, 77130, 'seventy-seven thousand one hundred thirty'), (819, 89712, 'eighty-nine thousand seven hundred twelve'), (820, 84405, 'eighty-four thousand four hundred five'), (821, 68079, 'sixty-eight thousand seventy-nine'), (822, 48312, 'forty-eight thousand three hundred twelve'), (823, 52981, 'fifty-two thousand nine hundred eighty-one'), (824, 67737, 'sixty-seven thousand seven hundred thirty-seven'), (825, 82728, 'eighty-two thousand seven hundred twenty-eight'), (826, 40074, 'forty thousand seventy-four'), (827, 42727, 'forty-two thousand seven hundred twenty-seven'), (828, 25509, 'twenty-five thousand five hundred nine'), (829, 25994, 'twenty-five thousand nine hundred ninety-four'), (830, 3000, 'three thousand'), (831, 84969, 'eighty-four thousand nine hundred sixty-nine'), (832, 55878, 'fifty-five thousand eight hundred seventy-eight'), (833, 67112, 'sixty-seven thousand one hundred twelve'), (834, 83937, 'eighty-three thousand nine hundred thirty-seven'), (835, 81016, 'eighty-one thousand sixteen'), (836, 40331, 'forty thousand three hundred thirty-one'), (837, 83067, 'eighty-three thousand sixty-seven'), (838, 7500, 'seven thousand five hundred'), (839, 43809, 'forty-three thousand eight hundred nine'), (840, 10120, 'ten thousand one hundred twenty'), (841, 69871, 'sixty-nine thousand eight hundred seventy-one'), (842, 63592, 'sixty-three thousand five hundred ninety-two'), (843, 77310, 'seventy-seven thousand three hundred ten'), (844, 73925, 'seventy-three thousand nine hundred twenty-five'), (845, 38003, 'thirty-eight thousand three'), (846, 72814, 'seventy-two thousand eight hundred fourteen'), (847, 74602, 'seventy-four thousand six hundred two'), (848, 91671, 'ninety-one thousand six hundred seventy-one'), (849, 72281, 'seventy-two thousand two hundred eighty-one'), (850, 26861, 'twenty-six thousand eight hundred sixty-one'), (851, 12126, 'twelve thousand one hundred twenty-six'), (852, 5096, 'five thousand ninety-six'), (853, 1116, 'one thousand one hundred sixteen'), (854, 80169, 'eighty thousand one hundred sixty-nine'), (855, 62297, 'sixty-two thousand two hundred ninety-seven'), (856, 7367, 'seven thousand three hundred sixty-seven'), (857, 16942, 'sixteen thousand nine hundred forty-two'), (858, 6685, 'six thousand six hundred eighty-five'), (859, 93081, 'ninety-three thousand eighty-one'), (860, 76562, 'seventy-six thousand five hundred sixty-two'), (861, 89286, 'eighty-nine thousand two hundred eighty-six'), (862, 72002, 'seventy-two thousand two'), (863, 46896, 'forty-six thousand eight hundred ninety-six'), (864, 91762, 'ninety-one thousand seven hundred sixty-two'), (865, 79775, 'seventy-nine thousand seven hundred seventy-five'), (866, 56480, 'fifty-six thousand four hundred eighty'), (867, 56775, 'fifty-six thousand seven hundred seventy-five'), (868, 23043, 'twenty-three thousand forty-three'), (869, 71859, 'seventy-one thousand eight hundred fifty-nine'), (870, 2224, 'two thousand two hundred twenty-four'), (871, 33439, 'thirty-three thousand four hundred thirty-nine'), (872, 49639, 'forty-nine thousand six hundred thirty-nine'), (873, 35035, 'thirty-five thousand thirty-five'), (874, 24312, 'twenty-four thousand three hundred twelve'), (875, 58095, 'fifty-eight thousand ninety-five'), (876, 93932, 'ninety-three thousand nine hundred thirty-two'), (877, 43410, 'forty-three thousand four hundred ten'), (878, 77814, 'seventy-seven thousand eight hundred fourteen'), (879, 8232, 'eight thousand two hundred thirty-two'), (880, 2192, 'two thousand one hundred ninety-two'), (881, 7342, 'seven thousand three hundred forty-two'), (882, 77610, 'seventy-seven thousand six hundred ten'), (883, 48520, 'forty-eight thousand five hundred twenty'), (884, 848, 'eight hundred forty-eight'), (885, 59646, 'fifty-nine thousand six hundred forty-six'), (886, 69356, 'sixty-nine thousand three hundred fifty-six'), (887, 14891, 'fourteen thousand eight hundred ninety-one'), (888, 6407, 'six thousand four hundred seven'), (889, 35514, 'thirty-five thousand five hundred fourteen'), (890, 68643, 'sixty-eight thousand six hundred forty-three'), (891, 86636, 'eighty-six thousand six hundred thirty-six'), (892, 39365, 'thirty-nine thousand three hundred sixty-five'), (893, 44205, 'forty-four thousand two hundred five'), (894, 5198, 'five thousand one hundred ninety-eight'), (895, 5597, 'five thousand five hundred ninety-seven'), (896, 3459, 'three thousand four hundred fifty-nine'), (897, 4188, 'four thousand one hundred eighty-eight'), (898, 98567, 'ninety-eight thousand five hundred sixty-seven'), (899, 17567, 'seventeen thousand five hundred sixty-seven'), (900, 22720, 'twenty-two thousand seven hundred twenty'), (901, 99730, 'ninety-nine thousand seven hundred thirty'), (902, 16445, 'sixteen thousand four hundred forty-five'), (903, 68994, 'sixty-eight thousand nine hundred ninety-four'), (904, 93584, 'ninety-three thousand five hundred eighty-four'), (905, 86750, 'eighty-six thousand seven hundred fifty'), (906, 80181, 'eighty thousand one hundred eighty-one'), (907, 53732, 'fifty-three thousand seven hundred thirty-two'), (908, 73027, 'seventy-three thousand twenty-seven'), (909, 16179, 'sixteen thousand one hundred seventy-nine'), (910, 84827, 'eighty-four thousand eight hundred twenty-seven'), (911, 78361, 'seventy-eight thousand three hundred sixty-one'), (912, 4261, 'four thousand two hundred sixty-one'), (913, 96227, 'ninety-six thousand two hundred twenty-seven'), (914, 17073, 'seventeen thousand seventy-three'), (915, 97, 'ninety-seven'), (916, 92380, 'ninety-two thousand three hundred eighty'), (917, 61506, 'sixty-one thousand five hundred six'), (918, 50585, 'fifty thousand five hundred eighty-five'), (919, 56705, 'fifty-six thousand seven hundred five'), (920, 38685, 'thirty-eight thousand six hundred eighty-five'), (921, 83442, 'eighty-three thousand four hundred forty-two'), (922, 11260, 'eleven thousand two hundred sixty'), (923, 21660, 'twenty-one thousand six hundred sixty'), (924, 79802, 'seventy-nine thousand eight hundred two'), (925, 16513, 'sixteen thousand five hundred thirteen'), (926, 30555, 'thirty thousand five hundred fifty-five'), (927, 79963, 'seventy-nine thousand nine hundred sixty-three'), (928, 7254, 'seven thousand two hundred fifty-four'), (929, 62226, 'sixty-two thousand two hundred twenty-six'), (930, 25716, 'twenty-five thousand seven hundred sixteen'), (931, 66617, 'sixty-six thousand six hundred seventeen'), (932, 73791, 'seventy-three thousand seven hundred ninety-one'), (933, 40546, 'forty thousand five hundred forty-six'), (934, 19036, 'nineteen thousand thirty-six'), (935, 12583, 'twelve thousand five hundred eighty-three'), (936, 59331, 'fifty-nine thousand three hundred thirty-one'), (937, 72492, 'seventy-two thousand four hundred ninety-two'), (938, 69492, 'sixty-nine thousand four hundred ninety-two'), (939, 73907, 'seventy-three thousand nine hundred seven'), (940, 8321, 'eight thousand three hundred twenty-one'), (941, 53600, 'fifty-three thousand six hundred'), (942, 10347, 'ten thousand three hundred forty-seven'), (943, 95048, 'ninety-five thousand forty-eight'), (944, 87508, 'eighty-seven thousand five hundred eight'), (945, 67881, 'sixty-seven thousand eight hundred eighty-one'), (946, 16788, 'sixteen thousand seven hundred eighty-eight'), (947, 46220, 'forty-six thousand two hundred twenty'), (948, 22600, 'twenty-two thousand six hundred'), (949, 55802, 'fifty-five thousand eight hundred two'), (950, 10327, 'ten thousand three hundred twenty-seven'), (951, 60079, 'sixty thousand seventy-nine'), (952, 86346, 'eighty-six thousand three hundred forty-six'), (953, 78039, 'seventy-eight thousand thirty-nine'), (954, 42495, 'forty-two thousand four hundred ninety-five'), (955, 61802, 'sixty-one thousand eight hundred two'), (956, 74935, 'seventy-four thousand nine hundred thirty-five'), (957, 32848, 'thirty-two thousand eight hundred forty-eight'), (958, 22843, 'twenty-two thousand eight hundred forty-three'), (959, 43434, 'forty-three thousand four hundred thirty-four'), (960, 55140, 'fifty-five thousand one hundred forty'), (961, 25101, 'twenty-five thousand one hundred one'), (962, 66892, 'sixty-six thousand eight hundred ninety-two'), (963, 84404, 'eighty-four thousand four hundred four'), (964, 95016, 'ninety-five thousand sixteen'), (965, 82669, 'eighty-two thousand six hundred sixty-nine'), (966, 47664, 'forty-seven thousand six hundred sixty-four'), (967, 67050, 'sixty-seven thousand fifty'), (968, 65685, 'sixty-five thousand six hundred eighty-five'), (969, 13432, 'thirteen thousand four hundred thirty-two'), (970, 8364, 'eight thousand three hundred sixty-four'), (971, 33856, 'thirty-three thousand eight hundred fifty-six'), (972, 38428, 'thirty-eight thousand four hundred twenty-eight'), (973, 63682, 'sixty-three thousand six hundred eighty-two'), (974, 61059, 'sixty-one thousand fifty-nine'), (975, 48432, 'forty-eight thousand four hundred thirty-two'), (976, 15809, 'fifteen thousand eight hundred nine'), (977, 75497, 'seventy-five thousand four hundred ninety-seven'), (978, 84648, 'eighty-four thousand six hundred forty-eight'), (979, 12450, 'twelve thousand four hundred fifty'), (980, 91915, 'ninety-one thousand nine hundred fifteen'), (981, 72230, 'seventy-two thousand two hundred thirty'), (982, 39393, 'thirty-nine thousand three hundred ninety-three'), (983, 58539, 'fifty-eight thousand five hundred thirty-nine'), (984, 8203, 'eight thousand two hundred three'), (985, 42106, 'forty-two thousand one hundred six'), (986, 52469, 'fifty-two thousand four hundred sixty-nine'), (987, 67579, 'sixty-seven thousand five hundred seventy-nine'), (988, 96196, 'ninety-six thousand one hundred ninety-six'), (989, 35045, 'thirty-five thousand forty-five'), (990, 90414, 'ninety thousand four hundred fourteen'), (991, 30338, 'thirty thousand three hundred thirty-eight'), (992, 13060, 'thirteen thousand sixty'), (993, 89796, 'eighty-nine thousand seven hundred ninety-six'), (994, 37165, 'thirty-seven thousand one hundred sixty-five'), (995, 47626, 'forty-seven thousand six hundred twenty-six'), (996, 48263, 'forty-eight thousand two hundred sixty-three'), (997, 89604, 'eighty-nine thousand six hundred four'), (998, 22717, 'twenty-two thousand seven hundred seventeen'), (999, 96890, 'ninety-six thousand eight hundred ninety'), (1000, 49281, 'forty-nine thousand two hundred eighty-one'), (1001, 97199, 'ninety-seven thousand one hundred ninety-nine'), (1002, 9105, 'nine thousand one hundred five'), (1003, 47038, 'forty-seven thousand thirty-eight'), (1004, 47997, 'forty-seven thousand nine hundred ninety-seven'), (1005, 29607, 'twenty-nine thousand six hundred seven'), (1006, 90974, 'ninety thousand nine hundred seventy-four'), (1007, 45881, 'forty-five thousand eight hundred eighty-one'), (1008, 75493, 'seventy-five thousand four hundred ninety-three'), (1009, 60427, 'sixty thousand four hundred twenty-seven'), (1010, 36340, 'thirty-six thousand three hundred forty'), (1011, 25776, 'twenty-five thousand seven hundred seventy-six'), (1012, 2298, 'two thousand two hundred ninety-eight'), (1013, 74993, 'seventy-four thousand nine hundred ninety-three'), (1014, 84184, 'eighty-four thousand one hundred eighty-four'), (1015, 63766, 'sixty-three thousand seven hundred sixty-six'), (1016, 57229, 'fifty-seven thousand two hundred twenty-nine'), (1017, 70358, 'seventy thousand three hundred fifty-eight'), (1018, 81720, 'eighty-one thousand seven hundred twenty'), (1019, 75643, 'seventy-five thousand six hundred forty-three'), (1020, 97854, 'ninety-seven thousand eight hundred fifty-four'), (1021, 64872, 'sixty-four thousand eight hundred seventy-two'), (1022, 90183, 'ninety thousand one hundred eighty-three'), (1023, 55141, 'fifty-five thousand one hundred forty-one'), (1024, 40225, 'forty thousand two hundred twenty-five'), (1025, 46110, 'forty-six thousand one hundred ten'), (1026, 10425, 'ten thousand four hundred twenty-five'), (1027, 51852, 'fifty-one thousand eight hundred fifty-two'), (1028, 3105, 'three thousand one hundred five'), (1029, 1682, 'one thousand six hundred eighty-two'), (1030, 5921, 'five thousand nine hundred twenty-one'), (1031, 76812, 'seventy-six thousand eight hundred twelve'), (1032, 8500, 'eight thousand five hundred'), (1033, 39697, 'thirty-nine thousand six hundred ninety-seven'), (1034, 26023, 'twenty-six thousand twenty-three'), (1035, 63676, 'sixty-three thousand six hundred seventy-six'), (1036, 80944, 'eighty thousand nine hundred forty-four'), (1037, 5634, 'five thousand six hundred thirty-four'), (1038, 99197, 'ninety-nine thousand one hundred ninety-seven'), (1039, 84278, 'eighty-four thousand two hundred seventy-eight'), (1040, 79593, 'seventy-nine thousand five hundred ninety-three'), (1041, 90743, 'ninety thousand seven hundred forty-three'), (1042, 27103, 'twenty-seven thousand one hundred three'), (1043, 5424, 'five thousand four hundred twenty-four'), (1044, 33033, 'thirty-three thousand thirty-three'), (1045, 70460, 'seventy thousand four hundred sixty'), (1046, 86249, 'eighty-six thousand two hundred forty-nine'), (1047, 15048, 'fifteen thousand forty-eight'), (1048, 89487, 'eighty-nine thousand four hundred eighty-seven'), (1049, 28006, 'twenty-eight thousand six'), (1050, 98931, 'ninety-eight thousand nine hundred thirty-one'), (1051, 68014, 'sixty-eight thousand fourteen'), (1052, 2809, 'two thousand eight hundred nine'), (1053, 4099, 'four thousand ninety-nine'), (1054, 38381, 'thirty-eight thousand three hundred eighty-one'), (1055, 74460, 'seventy-four thousand four hundred sixty'), (1056, 26766, 'twenty-six thousand seven hundred sixty-six'), (1057, 57861, 'fifty-seven thousand eight hundred sixty-one'), (1058, 9450, 'nine thousand four hundred fifty'), (1059, 93608, 'ninety-three thousand six hundred eight'), (1060, 66697, 'sixty-six thousand six hundred ninety-seven'), (1061, 48693, 'forty-eight thousand six hundred ninety-three'), (1062, 71134, 'seventy-one thousand one hundred thirty-four'), (1063, 33992, 'thirty-three thousand nine hundred ninety-two'), (1064, 97587, 'ninety-seven thousand five hundred eighty-seven'), (1065, 88714, 'eighty-eight thousand seven hundred fourteen'), (1066, 28802, 'twenty-eight thousand eight hundred two'), (1067, 69995, 'sixty-nine thousand nine hundred ninety-five'), (1068, 43144, 'forty-three thousand one hundred forty-four'), (1069, 66996, 'sixty-six thousand nine hundred ninety-six'), (1070, 12277, 'twelve thousand two hundred seventy-seven'), (1071, 41633, 'forty-one thousand six hundred thirty-three'), (1072, 712, 'seven hundred twelve'), (1073, 70963, 'seventy thousand nine hundred sixty-three'), (1074, 9700, 'nine thousand seven hundred'), (1075, 63916, 'sixty-three thousand nine hundred sixteen'), (1076, 59439, 'fifty-nine thousand four hundred thirty-nine'), (1077, 46112, 'forty-six thousand one hundred twelve'), (1078, 79176, 'seventy-nine thousand one hundred seventy-six'), (1079, 12136, 'twelve thousand one hundred thirty-six'), (1080, 72113, 'seventy-two thousand one hundred thirteen'), (1081, 79476, 'seventy-nine thousand four hundred seventy-six'), (1082, 49360, 'forty-nine thousand three hundred sixty'), (1083, 24035, 'twenty-four thousand thirty-five'), (1084, 38611, 'thirty-eight thousand six hundred eleven'), (1085, 67502, 'sixty-seven thousand five hundred two'), (1086, 15787, 'fifteen thousand seven hundred eighty-seven'), (1087, 45602, 'forty-five thousand six hundred two'), (1088, 60098, 'sixty thousand ninety-eight'), (1089, 12844, 'twelve thousand eight hundred forty-four'), (1090, 62637, 'sixty-two thousand six hundred thirty-seven'), (1091, 35555, 'thirty-five thousand five hundred fifty-five'), (1092, 44883, 'forty-four thousand eight hundred eighty-three'), (1093, 93964, 'ninety-three thousand nine hundred sixty-four'), (1094, 82176, 'eighty-two thousand one hundred seventy-six'), (1095, 19420, 'nineteen thousand four hundred twenty'), (1096, 15406, 'fifteen thousand four hundred six'), (1097, 58163, 'fifty-eight thousand one hundred sixty-three'), (1098, 91616, 'ninety-one thousand six hundred sixteen'), (1099, 91461, 'ninety-one thousand four hundred sixty-one'), (1100, 86510, 'eighty-six thousand five hundred ten'), (1101, 22347, 'twenty-two thousand three hundred forty-seven'), (1102, 67932, 'sixty-seven thousand nine hundred thirty-two'), (1103, 59003, 'fifty-nine thousand three'), (1104, 11831, 'eleven thousand eight hundred thirty-one'), (1105, 2932, 'two thousand nine hundred thirty-two'), (1106, 6237, 'six thousand two hundred thirty-seven'), (1107, 14253, 'fourteen thousand two hundred fifty-three'), (1108, 5294, 'five thousand two hundred ninety-four'), (1109, 41001, 'forty-one thousand one'), (1110, 97290, 'ninety-seven thousand two hundred ninety'), (1111, 343, 'three hundred forty-three'), (1112, 33607, 'thirty-three thousand six hundred seven'), (1113, 17415, 'seventeen thousand four hundred fifteen'), (1114, 60356, 'sixty thousand three hundred fifty-six'), (1115, 2445, 'two thousand four hundred forty-five'), (1116, 31461, 'thirty-one thousand four hundred sixty-one'), (1117, 73244, 'seventy-three thousand two hundred forty-four'), (1118, 30405, 'thirty thousand four hundred five'), (1119, 9412, 'nine thousand four hundred twelve'), (1120, 20592, 'twenty thousand five hundred ninety-two'), (1121, 85501, 'eighty-five thousand five hundred one'), (1122, 53561, 'fifty-three thousand five hundred sixty-one'), (1123, 9897, 'nine thousand eight hundred ninety-seven'), (1124, 5217, 'five thousand two hundred seventeen'), (1125, 97865, 'ninety-seven thousand eight hundred sixty-five'), (1126, 11106, 'eleven thousand one hundred six'), (1127, 97398, 'ninety-seven thousand three hundred ninety-eight'), (1128, 50152, 'fifty thousand one hundred fifty-two'), (1129, 73310, 'seventy-three thousand three hundred ten'), (1130, 56210, 'fifty-six thousand two hundred ten'), (1131, 93117, 'ninety-three thousand one hundred seventeen'), (1132, 42559, 'forty-two thousand five hundred fifty-nine'), (1133, 58212, 'fifty-eight thousand two hundred twelve'), (1134, 55497, 'fifty-five thousand four hundred ninety-seven'), (1135, 96013, 'ninety-six thousand thirteen'), (1136, 94608, 'ninety-four thousand six hundred eight'), (1137, 26072, 'twenty-six thousand seventy-two'), (1138, 20988, 'twenty thousand nine hundred eighty-eight'), (1139, 43531, 'forty-three thousand five hundred thirty-one'), (1140, 89146, 'eighty-nine thousand one hundred forty-six'), (1141, 62142, 'sixty-two thousand one hundred forty-two'), (1142, 46807, 'forty-six thousand eight hundred seven'), (1143, 86238, 'eighty-six thousand two hundred thirty-eight'), (1144, 83926, 'eighty-three thousand nine hundred twenty-six'), (1145, 71668, 'seventy-one thousand six hundred sixty-eight'), (1146, 61916, 'sixty-one thousand nine hundred sixteen'), (1147, 38403, 'thirty-eight thousand four hundred three'), (1148, 82548, 'eighty-two thousand five hundred forty-eight'), (1149, 81750, 'eighty-one thousand seven hundred fifty'), (1150, 20317, 'twenty thousand three hundred seventeen'), (1151, 71943, 'seventy-one thousand nine hundred forty-three'), (1152, 29755, 'twenty-nine thousand seven hundred fifty-five'), (1153, 67979, 'sixty-seven thousand nine hundred seventy-nine'), (1154, 24984, 'twenty-four thousand nine hundred eighty-four'), (1155, 77664, 'seventy-seven thousand six hundred sixty-four'), (1156, 4511, 'four thousand five hundred eleven'), (1157, 85346, 'eighty-five thousand three hundred forty-six'), (1158, 39469, 'thirty-nine thousand four hundred sixty-nine'), (1159, 82021, 'eighty-two thousand twenty-one'), (1160, 16319, 'sixteen thousand three hundred nineteen'), (1161, 88589, 'eighty-eight thousand five hundred eighty-nine'), (1162, 12892, 'twelve thousand eight hundred ninety-two'), (1163, 30032, 'thirty thousand thirty-two'), (1164, 16998, 'sixteen thousand nine hundred ninety-eight'), (1165, 80012, 'eighty thousand twelve'), (1166, 59783, 'fifty-nine thousand seven hundred eighty-three'), (1167, 19293, 'nineteen thousand two hundred ninety-three'), (1168, 1817, 'one thousand eight hundred seventeen'), (1169, 19305, 'nineteen thousand three hundred five'), (1170, 63337, 'sixty-three thousand three hundred thirty-seven'), (1171, 21406, 'twenty-one thousand four hundred six'), (1172, 38956, 'thirty-eight thousand nine hundred fifty-six'), (1173, 37556, 'thirty-seven thousand five hundred fifty-six'), (1174, 41018, 'forty-one thousand eighteen'), (1175, 89937, 'eighty-nine thousand nine hundred thirty-seven'), (1176, 66116, 'sixty-six thousand one hundred sixteen'), (1177, 70582, 'seventy thousand five hundred eighty-two'), (1178, 59643, 'fifty-nine thousand six hundred forty-three'), (1179, 57124, 'fifty-seven thousand one hundred twenty-four'), (1180, 28428, 'twenty-eight thousand four hundred twenty-eight'), (1181, 23417, 'twenty-three thousand four hundred seventeen'), (1182, 90882, 'ninety thousand eight hundred eighty-two'), (1183, 68251, 'sixty-eight thousand two hundred fifty-one'), (1184, 32942, 'thirty-two thousand nine hundred forty-two'), (1185, 90299, 'ninety thousand two hundred ninety-nine'), (1186, 48094, 'forty-eight thousand ninety-four'), (1187, 59916, 'fifty-nine thousand nine hundred sixteen'), (1188, 90808, 'ninety thousand eight hundred eight'), (1189, 51195, 'fifty-one thousand one hundred ninety-five'), (1190, 37695, 'thirty-seven thousand six hundred ninety-five'), (1191, 1001, 'one thousand one'), (1192, 69242, 'sixty-nine thousand two hundred forty-two'), (1193, 63726, 'sixty-three thousand seven hundred twenty-six'), (1194, 27518, 'twenty-seven thousand five hundred eighteen'), (1195, 36308, 'thirty-six thousand three hundred eight'), (1196, 6083, 'six thousand eighty-three'), (1197, 47512, 'forty-seven thousand five hundred twelve'), (1198, 16219, 'sixteen thousand two hundred nineteen'), (1199, 53244, 'fifty-three thousand two hundred forty-four'), (1200, 56966, 'fifty-six thousand nine hundred sixty-six'), (1201, 68968, 'sixty-eight thousand nine hundred sixty-eight'), (1202, 73409, 'seventy-three thousand four hundred nine'), (1203, 17591, 'seventeen thousand five hundred ninety-one'), (1204, 85015, 'eighty-five thousand fifteen'), (1205, 58168, 'fifty-eight thousand one hundred sixty-eight'), (1206, 67212, 'sixty-seven thousand two hundred twelve'), (1207, 5715, 'five thousand seven hundred fifteen'), (1208, 30513, 'thirty thousand five hundred thirteen'), (1209, 13270, 'thirteen thousand two hundred seventy'), (1210, 81577, 'eighty-one thousand five hundred seventy-seven'), (1211, 65057, 'sixty-five thousand fifty-seven'), (1212, 13964, 'thirteen thousand nine hundred sixty-four'), (1213, 55689, 'fifty-five thousand six hundred eighty-nine'), (1214, 51240, 'fifty-one thousand two hundred forty'), (1215, 96727, 'ninety-six thousand seven hundred twenty-seven'), (1216, 58780, 'fifty-eight thousand seven hundred eighty'), (1217, 49104, 'forty-nine thousand one hundred four'), (1218, 7745, 'seven thousand seven hundred forty-five'), (1219, 11196, 'eleven thousand one hundred ninety-six'), (1220, 46401, 'forty-six thousand four hundred one'), (1221, 21603, 'twenty-one thousand six hundred three'), (1222, 38565, 'thirty-eight thousand five hundred sixty-five'), (1223, 41527, 'forty-one thousand five hundred twenty-seven'), (1224, 97123, 'ninety-seven thousand one hundred twenty-three'), (1225, 77124, 'seventy-seven thousand one hundred twenty-four'), (1226, 92537, 'ninety-two thousand five hundred thirty-seven'), (1227, 57471, 'fifty-seven thousand four hundred seventy-one'), (1228, 60445, 'sixty thousand four hundred forty-five'), (1229, 54092, 'fifty-four thousand ninety-two'), (1230, 38603, 'thirty-eight thousand six hundred three'), (1231, 70173, 'seventy thousand one hundred seventy-three'), (1232, 87517, 'eighty-seven thousand five hundred seventeen'), (1233, 11572, 'eleven thousand five hundred seventy-two'), (1234, 31249, 'thirty-one thousand two hundred forty-nine'), (1235, 25790, 'twenty-five thousand seven hundred ninety'), (1236, 26701, 'twenty-six thousand seven hundred one'), (1237, 96441, 'ninety-six thousand four hundred forty-one'), (1238, 57908, 'fifty-seven thousand nine hundred eight'), (1239, 68899, 'sixty-eight thousand eight hundred ninety-nine'), (1240, 65198, 'sixty-five thousand one hundred ninety-eight'), (1241, 48083, 'forty-eight thousand eighty-three'), (1242, 48974, 'forty-eight thousand nine hundred seventy-four'), (1243, 33636, 'thirty-three thousand six hundred thirty-six'), (1244, 86883, 'eighty-six thousand eight hundred eighty-three'), (1245, 24118, 'twenty-four thousand one hundred eighteen'), (1246, 11624, 'eleven thousand six hundred twenty-four'), (1247, 71832, 'seventy-one thousand eight hundred thirty-two'), (1248, 14241, 'fourteen thousand two hundred forty-one'), (1249, 13727, 'thirteen thousand seven hundred twenty-seven'), (1250, 98896, 'ninety-eight thousand eight hundred ninety-six'), (1251, 22466, 'twenty-two thousand four hundred sixty-six'), (1252, 51965, 'fifty-one thousand nine hundred sixty-five'), (1253, 5811, 'five thousand eight hundred eleven'), (1254, 82040, 'eighty-two thousand forty'), (1255, 42197, 'forty-two thousand one hundred ninety-seven'), (1256, 71055, 'seventy-one thousand fifty-five'), (1257, 79098, 'seventy-nine thousand ninety-eight'), (1258, 29148, 'twenty-nine thousand one hundred forty-eight'), (1259, 61808, 'sixty-one thousand eight hundred eight'), (1260, 10755, 'ten thousand seven hundred fifty-five'), (1261, 6921, 'six thousand nine hundred twenty-one'), (1262, 80787, 'eighty thousand seven hundred eighty-seven'), (1263, 3455, 'three thousand four hundred fifty-five'), (1264, 9138, 'nine thousand one hundred thirty-eight'), (1265, 13898, 'thirteen thousand eight hundred ninety-eight'), (1266, 94168, 'ninety-four thousand one hundred sixty-eight'), (1267, 15361, 'fifteen thousand three hundred sixty-one'), (1268, 66571, 'sixty-six thousand five hundred seventy-one'), (1269, 98644, 'ninety-eight thousand six hundred forty-four'), (1270, 2464, 'two thousand four hundred sixty-four'), (1271, 3054, 'three thousand fifty-four'), (1272, 98150, 'ninety-eight thousand one hundred fifty'), (1273, 30894, 'thirty thousand eight hundred ninety-four'), (1274, 78137, 'seventy-eight thousand one hundred thirty-seven'), (1275, 87380, 'eighty-seven thousand three hundred eighty'), (1276, 96748, 'ninety-six thousand seven hundred forty-eight'), (1277, 8470, 'eight thousand four hundred seventy'), (1278, 91619, 'ninety-one thousand six hundred nineteen'), (1279, 47809, 'forty-seven thousand eight hundred nine'), (1280, 46125, 'forty-six thousand one hundred twenty-five'), (1281, 28577, 'twenty-eight thousand five hundred seventy-seven'), (1282, 94539, 'ninety-four thousand five hundred thirty-nine'), (1283, 87306, 'eighty-seven thousand three hundred six'), (1284, 85815, 'eighty-five thousand eight hundred fifteen'), (1285, 78595, 'seventy-eight thousand five hundred ninety-five'), (1286, 13517, 'thirteen thousand five hundred seventeen'), (1287, 50245, 'fifty thousand two hundred forty-five'), (1288, 77424, 'seventy-seven thousand four hundred twenty-four'), (1289, 15876, 'fifteen thousand eight hundred seventy-six'), (1290, 22920, 'twenty-two thousand nine hundred twenty'), (1291, 64435, 'sixty-four thousand four hundred thirty-five'), (1292, 76768, 'seventy-six thousand seven hundred sixty-eight'), (1293, 43391, 'forty-three thousand three hundred ninety-one'), (1294, 34950, 'thirty-four thousand nine hundred fifty'), (1295, 25178, 'twenty-five thousand one hundred seventy-eight'), (1296, 56805, 'fifty-six thousand eight hundred five'), (1297, 91578, 'ninety-one thousand five hundred seventy-eight'), (1298, 809, 'eight hundred nine'), (1299, 37088, 'thirty-seven thousand eighty-eight'), (1300, 98258, 'ninety-eight thousand two hundred fifty-eight'), (1301, 10616, 'ten thousand six hundred sixteen'), (1302, 57352, 'fifty-seven thousand three hundred fifty-two'), (1303, 15, 'fifteen'), (1304, 43089, 'forty-three thousand eighty-nine'), (1305, 60424, 'sixty thousand four hundred twenty-four'), (1306, 37851, 'thirty-seven thousand eight hundred fifty-one'), (1307, 86969, 'eighty-six thousand nine hundred sixty-nine'), (1308, 14795, 'fourteen thousand seven hundred ninety-five'), (1309, 92219, 'ninety-two thousand two hundred nineteen'), (1310, 59566, 'fifty-nine thousand five hundred sixty-six'), (1311, 31151, 'thirty-one thousand one hundred fifty-one'), (1312, 42130, 'forty-two thousand one hundred thirty'), (1313, 66603, 'sixty-six thousand six hundred three'), (1314, 6130, 'six thousand one hundred thirty'), (1315, 52192, 'fifty-two thousand one hundred ninety-two'), (1316, 16269, 'sixteen thousand two hundred sixty-nine'), (1317, 90244, 'ninety thousand two hundred forty-four'), (1318, 7823, 'seven thousand eight hundred twenty-three'), (1319, 40621, 'forty thousand six hundred twenty-one'), (1320, 24321, 'twenty-four thousand three hundred twenty-one'), (1321, 37443, 'thirty-seven thousand four hundred forty-three'), (1322, 79623, 'seventy-nine thousand six hundred twenty-three'), (1323, 30079, 'thirty thousand seventy-nine'), (1324, 26923, 'twenty-six thousand nine hundred twenty-three'), (1325, 95823, 'ninety-five thousand eight hundred twenty-three'), (1326, 8493, 'eight thousand four hundred ninety-three'), (1327, 2583, 'two thousand five hundred eighty-three'), (1328, 3296, 'three thousand two hundred ninety-six'), (1329, 31514, 'thirty-one thousand five hundred fourteen'), (1330, 93837, 'ninety-three thousand eight hundred thirty-seven'), (1331, 5294, 'five thousand two hundred ninety-four'), (1332, 89455, 'eighty-nine thousand four hundred fifty-five'), (1333, 23735, 'twenty-three thousand seven hundred thirty-five'), (1334, 10457, 'ten thousand four hundred fifty-seven'), (1335, 90792, 'ninety thousand seven hundred ninety-two'), (1336, 63964, 'sixty-three thousand nine hundred sixty-four'), (1337, 62810, 'sixty-two thousand eight hundred ten'), (1338, 34157, 'thirty-four thousand one hundred fifty-seven'), (1339, 64482, 'sixty-four thousand four hundred eighty-two'), (1340, 57185, 'fifty-seven thousand one hundred eighty-five'), (1341, 40320, 'forty thousand three hundred twenty'), (1342, 7836, 'seven thousand eight hundred thirty-six'), (1343, 79467, 'seventy-nine thousand four hundred sixty-seven'), (1344, 75395, 'seventy-five thousand three hundred ninety-five'), (1345, 87556, 'eighty-seven thousand five hundred fifty-six'), (1346, 72239, 'seventy-two thousand two hundred thirty-nine'), (1347, 32149, 'thirty-two thousand one hundred forty-nine'), (1348, 65816, 'sixty-five thousand eight hundred sixteen'), (1349, 23374, 'twenty-three thousand three hundred seventy-four'), (1350, 67750, 'sixty-seven thousand seven hundred fifty'), (1351, 65070, 'sixty-five thousand seventy'), (1352, 34656, 'thirty-four thousand six hundred fifty-six'), (1353, 75525, 'seventy-five thousand five hundred twenty-five'), (1354, 61261, 'sixty-one thousand two hundred sixty-one'), (1355, 19402, 'nineteen thousand four hundred two'), (1356, 68104, 'sixty-eight thousand one hundred four'), (1357, 95231, 'ninety-five thousand two hundred thirty-one'), (1358, 98580, 'ninety-eight thousand five hundred eighty'), (1359, 9571, 'nine thousand five hundred seventy-one'), (1360, 44427, 'forty-four thousand four hundred twenty-seven'), (1361, 33019, 'thirty-three thousand nineteen'), (1362, 38266, 'thirty-eight thousand two hundred sixty-six'), (1363, 30826, 'thirty thousand eight hundred twenty-six'), (1364, 52381, 'fifty-two thousand three hundred eighty-one'), (1365, 46265, 'forty-six thousand two hundred sixty-five'), (1366, 89302, 'eighty-nine thousand three hundred two'), (1367, 4265, 'four thousand two hundred sixty-five'), (1368, 30521, 'thirty thousand five hundred twenty-one'), (1369, 55590, 'fifty-five thousand five hundred ninety'), (1370, 28966, 'twenty-eight thousand nine hundred sixty-six'), (1371, 45024, 'forty-five thousand twenty-four'), (1372, 41342, 'forty-one thousand three hundred forty-two'), (1373, 49561, 'forty-nine thousand five hundred sixty-one'), (1374, 34543, 'thirty-four thousand five hundred forty-three'), (1375, 84984, 'eighty-four thousand nine hundred eighty-four'), (1376, 68593, 'sixty-eight thousand five hundred ninety-three'), (1377, 85461, 'eighty-five thousand four hundred sixty-one'), (1378, 59726, 'fifty-nine thousand seven hundred twenty-six'), (1379, 45242, 'forty-five thousand two hundred forty-two'), (1380, 29651, 'twenty-nine thousand six hundred fifty-one'), (1381, 64765, 'sixty-four thousand seven hundred sixty-five'), (1382, 26568, 'twenty-six thousand five hundred sixty-eight'), (1383, 36933, 'thirty-six thousand nine hundred thirty-three'), (1384, 94490, 'ninety-four thousand four hundred ninety'), (1385, 35036, 'thirty-five thousand thirty-six'), (1386, 42971, 'forty-two thousand nine hundred seventy-one'), (1387, 44831, 'forty-four thousand eight hundred thirty-one'), (1388, 17790, 'seventeen thousand seven hundred ninety'), (1389, 35361, 'thirty-five thousand three hundred sixty-one'), (1390, 52622, 'fifty-two thousand six hundred twenty-two'), (1391, 87742, 'eighty-seven thousand seven hundred forty-two'), (1392, 63207, 'sixty-three thousand two hundred seven'), (1393, 79106, 'seventy-nine thousand one hundred six'), (1394, 93806, 'ninety-three thousand eight hundred six'), (1395, 52567, 'fifty-two thousand five hundred sixty-seven'), (1396, 43100, 'forty-three thousand one hundred'), (1397, 26459, 'twenty-six thousand four hundred fifty-nine'), (1398, 43270, 'forty-three thousand two hundred seventy'), (1399, 32584, 'thirty-two thousand five hundred eighty-four'), (1400, 5213, 'five thousand two hundred thirteen'), (1401, 54750, 'fifty-four thousand seven hundred fifty'), (1402, 52989, 'fifty-two thousand nine hundred eighty-nine'), (1403, 24893, 'twenty-four thousand eight hundred ninety-three'), (1404, 40131, 'forty thousand one hundred thirty-one'), (1405, 68586, 'sixty-eight thousand five hundred eighty-six'), (1406, 88256, 'eighty-eight thousand two hundred fifty-six'), (1407, 19826, 'nineteen thousand eight hundred twenty-six'), (1408, 7635, 'seven thousand six hundred thirty-five'), (1409, 53220, 'fifty-three thousand two hundred twenty'), (1410, 33504, 'thirty-three thousand five hundred four'), (1411, 44043, 'forty-four thousand forty-three'), (1412, 73365, 'seventy-three thousand three hundred sixty-five'), (1413, 40119, 'forty thousand one hundred nineteen'), (1414, 28251, 'twenty-eight thousand two hundred fifty-one'), (1415, 27530, 'twenty-seven thousand five hundred thirty'), (1416, 35089, 'thirty-five thousand eighty-nine'), (1417, 74383, 'seventy-four thousand three hundred eighty-three'), (1418, 25861, 'twenty-five thousand eight hundred sixty-one'), (1419, 33100, 'thirty-three thousand one hundred'), (1420, 1924, 'one thousand nine hundred twenty-four'), (1421, 92486, 'ninety-two thousand four hundred eighty-six'), (1422, 65303, 'sixty-five thousand three hundred three'), (1423, 45406, 'forty-five thousand four hundred six'), (1424, 62525, 'sixty-two thousand five hundred twenty-five'), (1425, 75622, 'seventy-five thousand six hundred twenty-two'), (1426, 72808, 'seventy-two thousand eight hundred eight'), (1427, 23115, 'twenty-three thousand one hundred fifteen'), (1428, 88348, 'eighty-eight thousand three hundred forty-eight'), (1429, 54075, 'fifty-four thousand seventy-five'), (1430, 4823, 'four thousand eight hundred twenty-three'), (1431, 81215, 'eighty-one thousand two hundred fifteen'), (1432, 28184, 'twenty-eight thousand one hundred eighty-four'), (1433, 67225, 'sixty-seven thousand two hundred twenty-five'), (1434, 93642, 'ninety-three thousand six hundred forty-two'), (1435, 67951, 'sixty-seven thousand nine hundred fifty-one'), (1436, 83096, 'eighty-three thousand ninety-six'), (1437, 36654, 'thirty-six thousand six hundred fifty-four'), (1438, 51904, 'fifty-one thousand nine hundred four'), (1439, 8175, 'eight thousand one hundred seventy-five'), (1440, 70724, 'seventy thousand seven hundred twenty-four'), (1441, 59652, 'fifty-nine thousand six hundred fifty-two'), (1442, 24583, 'twenty-four thousand five hundred eighty-three'), (1443, 31864, 'thirty-one thousand eight hundred sixty-four'), (1444, 66077, 'sixty-six thousand seventy-seven'), (1445, 84809, 'eighty-four thousand eight hundred nine'), (1446, 66310, 'sixty-six thousand three hundred ten'), (1447, 68023, 'sixty-eight thousand twenty-three'), (1448, 60989, 'sixty thousand nine hundred eighty-nine'), (1449, 58479, 'fifty-eight thousand four hundred seventy-nine'), (1450, 6397, 'six thousand three hundred ninety-seven'), (1451, 15312, 'fifteen thousand three hundred twelve'), (1452, 33482, 'thirty-three thousand four hundred eighty-two'), (1453, 65288, 'sixty-five thousand two hundred eighty-eight'), (1454, 691, 'six hundred ninety-one'), (1455, 8952, 'eight thousand nine hundred fifty-two'), (1456, 58815, 'fifty-eight thousand eight hundred fifteen'), (1457, 60639, 'sixty thousand six hundred thirty-nine'), (1458, 5418, 'five thousand four hundred eighteen'), (1459, 19309, 'nineteen thousand three hundred nine'), (1460, 62587, 'sixty-two thousand five hundred eighty-seven'), (1461, 58739, 'fifty-eight thousand seven hundred thirty-nine'), (1462, 72625, 'seventy-two thousand six hundred twenty-five'), (1463, 54499, 'fifty-four thousand four hundred ninety-nine'), (1464, 79342, 'seventy-nine thousand three hundred forty-two'), (1465, 5924, 'five thousand nine hundred twenty-four'), (1466, 86304, 'eighty-six thousand three hundred four'), (1467, 32065, 'thirty-two thousand sixty-five'), (1468, 35725, 'thirty-five thousand seven hundred twenty-five'), (1469, 16876, 'sixteen thousand eight hundred seventy-six'), (1470, 71641, 'seventy-one thousand six hundred forty-one'), (1471, 28399, 'twenty-eight thousand three hundred ninety-nine'), (1472, 11765, 'eleven thousand seven hundred sixty-five'), (1473, 76934, 'seventy-six thousand nine hundred thirty-four'), (1474, 6358, 'six thousand three hundred fifty-eight'), (1475, 63043, 'sixty-three thousand forty-three'), (1476, 50901, 'fifty thousand nine hundred one'), (1477, 28043, 'twenty-eight thousand forty-three'), (1478, 86547, 'eighty-six thousand five hundred forty-seven'), (1479, 94729, 'ninety-four thousand seven hundred twenty-nine'), (1480, 66862, 'sixty-six thousand eight hundred sixty-two'), (1481, 76025, 'seventy-six thousand twenty-five'), (1482, 3473, 'three thousand four hundred seventy-three'), (1483, 82952, 'eighty-two thousand nine hundred fifty-two'), (1484, 43056, 'forty-three thousand fifty-six'), (1485, 17253, 'seventeen thousand two hundred fifty-three'), (1486, 60835, 'sixty thousand eight hundred thirty-five'), (1487, 74180, 'seventy-four thousand one hundred eighty'), (1488, 22424, 'twenty-two thousand four hundred twenty-four'), (1489, 24391, 'twenty-four thousand three hundred ninety-one'), (1490, 73879, 'seventy-three thousand eight hundred seventy-nine'), (1491, 34259, 'thirty-four thousand two hundred fifty-nine'), (1492, 3650, 'three thousand six hundred fifty'), (1493, 36136, 'thirty-six thousand one hundred thirty-six'), (1494, 63106, 'sixty-three thousand one hundred six'), (1495, 35314, 'thirty-five thousand three hundred fourteen'), (1496, 24073, 'twenty-four thousand seventy-three'), (1497, 34121, 'thirty-four thousand one hundred twenty-one'), (1498, 6274, 'six thousand two hundred seventy-four'), (1499, 69931, 'sixty-nine thousand nine hundred thirty-one'), (1500, 75742, 'seventy-five thousand seven hundred forty-two'), (1501, 29960, 'twenty-nine thousand nine hundred sixty'), (1502, 9293, 'nine thousand two hundred ninety-three'), (1503, 30339, 'thirty thousand three hundred thirty-nine'), (1504, 20901, 'twenty thousand nine hundred one'), (1505, 54874, 'fifty-four thousand eight hundred seventy-four'), (1506, 63855, 'sixty-three thousand eight hundred fifty-five'), (1507, 61816, 'sixty-one thousand eight hundred sixteen'), (1508, 35403, 'thirty-five thousand four hundred three'), (1509, 6552, 'six thousand five hundred fifty-two'), (1510, 33105, 'thirty-three thousand one hundred five'), (1511, 51394, 'fifty-one thousand three hundred ninety-four'), (1512, 29236, 'twenty-nine thousand two hundred thirty-six'), (1513, 57423, 'fifty-seven thousand four hundred twenty-three'), (1514, 32304, 'thirty-two thousand three hundred four'), (1515, 45100, 'forty-five thousand one hundred'), (1516, 83599, 'eighty-three thousand five hundred ninety-nine'), (1517, 82256, 'eighty-two thousand two hundred fifty-six'), (1518, 16049, 'sixteen thousand forty-nine'), (1519, 45463, 'forty-five thousand four hundred sixty-three'), (1520, 32310, 'thirty-two thousand three hundred ten'), (1521, 6475, 'six thousand four hundred seventy-five'), (1522, 70488, 'seventy thousand four hundred eighty-eight'), (1523, 40257, 'forty thousand two hundred fifty-seven'), (1524, 52374, 'fifty-two thousand three hundred seventy-four'), (1525, 70669, 'seventy thousand six hundred sixty-nine'), (1526, 33910, 'thirty-three thousand nine hundred ten'), (1527, 81072, 'eighty-one thousand seventy-two'), (1528, 23172, 'twenty-three thousand one hundred seventy-two'), (1529, 77387, 'seventy-seven thousand three hundred eighty-seven'), (1530, 28441, 'twenty-eight thousand four hundred forty-one'), (1531, 42804, 'forty-two thousand eight hundred four'), (1532, 42298, 'forty-two thousand two hundred ninety-eight'), (1533, 13594, 'thirteen thousand five hundred ninety-four'), (1534, 1045, 'one thousand forty-five'), (1535, 56575, 'fifty-six thousand five hundred seventy-five'), (1536, 20197, 'twenty thousand one hundred ninety-seven'), (1537, 21989, 'twenty-one thousand nine hundred eighty-nine'), (1538, 68341, 'sixty-eight thousand three hundred forty-one'), (1539, 54258, 'fifty-four thousand two hundred fifty-eight'), (1540, 32984, 'thirty-two thousand nine hundred eighty-four'), (1541, 31747, 'thirty-one thousand seven hundred forty-seven'), (1542, 88436, 'eighty-eight thousand four hundred thirty-six'), (1543, 57530, 'fifty-seven thousand five hundred thirty'), (1544, 31675, 'thirty-one thousand six hundred seventy-five'), (1545, 77525, 'seventy-seven thousand five hundred twenty-five'), (1546, 27764, 'twenty-seven thousand seven hundred sixty-four'), (1547, 49705, 'forty-nine thousand seven hundred five'), (1548, 71362, 'seventy-one thousand three hundred sixty-two'), (1549, 96058, 'ninety-six thousand fifty-eight'), (1550, 48130, 'forty-eight thousand one hundred thirty'), (1551, 93355, 'ninety-three thousand three hundred fifty-five'), (1552, 20762, 'twenty thousand seven hundred sixty-two'), (1553, 29874, 'twenty-nine thousand eight hundred seventy-four'), (1554, 48108, 'forty-eight thousand one hundred eight'), (1555, 97598, 'ninety-seven thousand five hundred ninety-eight'), (1556, 62902, 'sixty-two thousand nine hundred two'), (1557, 95447, 'ninety-five thousand four hundred forty-seven'), (1558, 63295, 'sixty-three thousand two hundred ninety-five'), (1559, 59971, 'fifty-nine thousand nine hundred seventy-one'), (1560, 85311, 'eighty-five thousand three hundred eleven'), (1561, 16180, 'sixteen thousand one hundred eighty'), (1562, 12882, 'twelve thousand eight hundred eighty-two'), (1563, 9574, 'nine thousand five hundred seventy-four'), (1564, 53832, 'fifty-three thousand eight hundred thirty-two'), (1565, 68806, 'sixty-eight thousand eight hundred six'), (1566, 68886, 'sixty-eight thousand eight hundred eighty-six'), (1567, 47312, 'forty-seven thousand three hundred twelve'), (1568, 40956, 'forty thousand nine hundred fifty-six'), (1569, 81278, 'eighty-one thousand two hundred seventy-eight'), (1570, 81024, 'eighty-one thousand twenty-four'), (1571, 94492, 'ninety-four thousand four hundred ninety-two'), (1572, 14555, 'fourteen thousand five hundred fifty-five'), (1573, 88599, 'eighty-eight thousand five hundred ninety-nine'), (1574, 17427, 'seventeen thousand four hundred twenty-seven'), (1575, 37635, 'thirty-seven thousand six hundred thirty-five'), (1576, 14697, 'fourteen thousand six hundred ninety-seven'), (1577, 23884, 'twenty-three thousand eight hundred eighty-four'), (1578, 49243, 'forty-nine thousand two hundred forty-three'), (1579, 19993, 'nineteen thousand nine hundred ninety-three'), (1580, 65763, 'sixty-five thousand seven hundred sixty-three'), (1581, 70657, 'seventy thousand six hundred fifty-seven'), (1582, 6309, 'six thousand three hundred nine'), (1583, 95396, 'ninety-five thousand three hundred ninety-six'), (1584, 34119, 'thirty-four thousand one hundred nineteen'), (1585, 60184, 'sixty thousand one hundred eighty-four'), (1586, 60530, 'sixty thousand five hundred thirty'), (1587, 519, 'five hundred nineteen'), (1588, 29332, 'twenty-nine thousand three hundred thirty-two'), (1589, 37833, 'thirty-seven thousand eight hundred thirty-three'), (1590, 61159, 'sixty-one thousand one hundred fifty-nine'), (1591, 80522, 'eighty thousand five hundred twenty-two'), (1592, 53291, 'fifty-three thousand two hundred ninety-one'), (1593, 49051, 'forty-nine thousand fifty-one'), (1594, 2056, 'two thousand fifty-six'), (1595, 77210, 'seventy-seven thousand two hundred ten'), (1596, 86325, 'eighty-six thousand three hundred twenty-five'), (1597, 84665, 'eighty-four thousand six hundred sixty-five'), (1598, 67725, 'sixty-seven thousand seven hundred twenty-five'), (1599, 26029, 'twenty-six thousand twenty-nine'), (1600, 88601, 'eighty-eight thousand six hundred one'), (1601, 32752, 'thirty-two thousand seven hundred fifty-two'), (1602, 19325, 'nineteen thousand three hundred twenty-five'), (1603, 37076, 'thirty-seven thousand seventy-six'), (1604, 15094, 'fifteen thousand ninety-four'), (1605, 52998, 'fifty-two thousand nine hundred ninety-eight'), (1606, 26678, 'twenty-six thousand six hundred seventy-eight'), (1607, 69600, 'sixty-nine thousand six hundred'), (1608, 62118, 'sixty-two thousand one hundred eighteen'), (1609, 80950, 'eighty thousand nine hundred fifty'), (1610, 98818, 'ninety-eight thousand eight hundred eighteen'), (1611, 51614, 'fifty-one thousand six hundred fourteen'), (1612, 12599, 'twelve thousand five hundred ninety-nine'), (1613, 39089, 'thirty-nine thousand eighty-nine'), (1614, 95895, 'ninety-five thousand eight hundred ninety-five'), (1615, 88094, 'eighty-eight thousand ninety-four'), (1616, 82079, 'eighty-two thousand seventy-nine'), (1617, 95142, 'ninety-five thousand one hundred forty-two'), (1618, 73845, 'seventy-three thousand eight hundred forty-five'), (1619, 2906, 'two thousand nine hundred six'), (1620, 80960, 'eighty thousand nine hundred sixty'), (1621, 23479, 'twenty-three thousand four hundred seventy-nine'), (1622, 88298, 'eighty-eight thousand two hundred ninety-eight'), (1623, 57077, 'fifty-seven thousand seventy-seven'), (1624, 24630, 'twenty-four thousand six hundred thirty'), (1625, 74083, 'seventy-four thousand eighty-three'), (1626, 32204, 'thirty-two thousand two hundred four'), (1627, 40032, 'forty thousand thirty-two'), (1628, 61026, 'sixty-one thousand twenty-six'), (1629, 44543, 'forty-four thousand five hundred forty-three'), (1630, 58253, 'fifty-eight thousand two hundred fifty-three'), (1631, 26899, 'twenty-six thousand eight hundred ninety-nine'), (1632, 97209, 'ninety-seven thousand two hundred nine'), (1633, 41316, 'forty-one thousand three hundred sixteen'), (1634, 4556, 'four thousand five hundred fifty-six'), (1635, 36548, 'thirty-six thousand five hundred forty-eight'), (1636, 38921, 'thirty-eight thousand nine hundred twenty-one'), (1637, 9280, 'nine thousand two hundred eighty'), (1638, 32498, 'thirty-two thousand four hundred ninety-eight'), (1639, 16992, 'sixteen thousand nine hundred ninety-two'), (1640, 19324, 'nineteen thousand three hundred twenty-four'), (1641, 96451, 'ninety-six thousand four hundred fifty-one'), (1642, 22576, 'twenty-two thousand five hundred seventy-six'), (1643, 97309, 'ninety-seven thousand three hundred nine'), (1644, 80770, 'eighty thousand seven hundred seventy'), (1645, 9121, 'nine thousand one hundred twenty-one'), (1646, 3338, 'three thousand three hundred thirty-eight'), (1647, 66580, 'sixty-six thousand five hundred eighty'), (1648, 19191, 'nineteen thousand one hundred ninety-one'), (1649, 54541, 'fifty-four thousand five hundred forty-one'), (1650, 78396, 'seventy-eight thousand three hundred ninety-six'), (1651, 74699, 'seventy-four thousand six hundred ninety-nine'), (1652, 27794, 'twenty-seven thousand seven hundred ninety-four'), (1653, 55989, 'fifty-five thousand nine hundred eighty-nine'), (1654, 54249, 'fifty-four thousand two hundred forty-nine'), (1655, 14881, 'fourteen thousand eight hundred eighty-one'), (1656, 80268, 'eighty thousand two hundred sixty-eight'), (1657, 95277, 'ninety-five thousand two hundred seventy-seven'), (1658, 1797, 'one thousand seven hundred ninety-seven'), (1659, 1225, 'one thousand two hundred twenty-five'), (1660, 8618, 'eight thousand six hundred eighteen'), (1661, 39882, 'thirty-nine thousand eight hundred eighty-two'), (1662, 54884, 'fifty-four thousand eight hundred eighty-four'), (1663, 73047, 'seventy-three thousand forty-seven'), (1664, 5927, 'five thousand nine hundred twenty-seven'), (1665, 13817, 'thirteen thousand eight hundred seventeen'), (1666, 30176, 'thirty thousand one hundred seventy-six'), (1667, 33774, 'thirty-three thousand seven hundred seventy-four'), (1668, 9833, 'nine thousand eight hundred thirty-three'), (1669, 65221, 'sixty-five thousand two hundred twenty-one'), (1670, 19520, 'nineteen thousand five hundred twenty'), (1671, 35027, 'thirty-five thousand twenty-seven'), (1672, 49390, 'forty-nine thousand three hundred ninety'), (1673, 76401, 'seventy-six thousand four hundred one'), (1674, 57398, 'fifty-seven thousand three hundred ninety-eight'), (1675, 63452, 'sixty-three thousand four hundred fifty-two'), (1676, 69211, 'sixty-nine thousand two hundred eleven'), (1677, 43066, 'forty-three thousand sixty-six'), (1678, 89905, 'eighty-nine thousand nine hundred five'), (1679, 20694, 'twenty thousand six hundred ninety-four'), (1680, 53351, 'fifty-three thousand three hundred fifty-one'), (1681, 36442, 'thirty-six thousand four hundred forty-two'), (1682, 19987, 'nineteen thousand nine hundred eighty-seven'), (1683, 78561, 'seventy-eight thousand five hundred sixty-one'), (1684, 76690, 'seventy-six thousand six hundred ninety'), (1685, 81665, 'eighty-one thousand six hundred sixty-five'), (1686, 9725, 'nine thousand seven hundred twenty-five'), (1687, 87526, 'eighty-seven thousand five hundred twenty-six'), (1688, 38779, 'thirty-eight thousand seven hundred seventy-nine'), (1689, 73641, 'seventy-three thousand six hundred forty-one'), (1690, 31420, 'thirty-one thousand four hundred twenty'), (1691, 49868, 'forty-nine thousand eight hundred sixty-eight'), (1692, 94217, 'ninety-four thousand two hundred seventeen'), (1693, 80648, 'eighty thousand six hundred forty-eight'), (1694, 14059, 'fourteen thousand fifty-nine'), (1695, 35226, 'thirty-five thousand two hundred twenty-six'), (1696, 8847, 'eight thousand eight hundred forty-seven'), (1697, 83846, 'eighty-three thousand eight hundred forty-six'), (1698, 81789, 'eighty-one thousand seven hundred eighty-nine'), (1699, 29756, 'twenty-nine thousand seven hundred fifty-six'), (1700, 79253, 'seventy-nine thousand two hundred fifty-three'), (1701, 4424, 'four thousand four hundred twenty-four'), (1702, 96946, 'ninety-six thousand nine hundred forty-six'), (1703, 40452, 'forty thousand four hundred fifty-two'), (1704, 53559, 'fifty-three thousand five hundred fifty-nine'), (1705, 99321, 'ninety-nine thousand three hundred twenty-one'), (1706, 70435, 'seventy thousand four hundred thirty-five'), (1707, 70689, 'seventy thousand six hundred eighty-nine'), (1708, 93232, 'ninety-three thousand two hundred thirty-two'), (1709, 25439, 'twenty-five thousand four hundred thirty-nine'), (1710, 88816, 'eighty-eight thousand eight hundred sixteen'), (1711, 18057, 'eighteen thousand fifty-seven'), (1712, 83538, 'eighty-three thousand five hundred thirty-eight'), (1713, 14919, 'fourteen thousand nine hundred nineteen'), (1714, 65130, 'sixty-five thousand one hundred thirty'), (1715, 351, 'three hundred fifty-one'), (1716, 8796, 'eight thousand seven hundred ninety-six'), (1717, 5647, 'five thousand six hundred forty-seven'), (1718, 14079, 'fourteen thousand seventy-nine'), (1719, 30128, 'thirty thousand one hundred twenty-eight'), (1720, 96358, 'ninety-six thousand three hundred fifty-eight'), (1721, 86275, 'eighty-six thousand two hundred seventy-five'), (1722, 78679, 'seventy-eight thousand six hundred seventy-nine'), (1723, 24988, 'twenty-four thousand nine hundred eighty-eight'), (1724, 81247, 'eighty-one thousand two hundred forty-seven'), (1725, 14632, 'fourteen thousand six hundred thirty-two'), (1726, 65441, 'sixty-five thousand four hundred forty-one'), (1727, 27646, 'twenty-seven thousand six hundred forty-six'), (1728, 61750, 'sixty-one thousand seven hundred fifty'), (1729, 81287, 'eighty-one thousand two hundred eighty-seven'), (1730, 47423, 'forty-seven thousand four hundred twenty-three'), (1731, 86776, 'eighty-six thousand seven hundred seventy-six'), (1732, 86755, 'eighty-six thousand seven hundred fifty-five'), (1733, 5222, 'five thousand two hundred twenty-two'), (1734, 53629, 'fifty-three thousand six hundred twenty-nine'), (1735, 74582, 'seventy-four thousand five hundred eighty-two'), (1736, 17560, 'seventeen thousand five hundred sixty'), (1737, 53440, 'fifty-three thousand four hundred forty'), (1738, 25990, 'twenty-five thousand nine hundred ninety'), (1739, 47210, 'forty-seven thousand two hundred ten'), (1740, 57398, 'fifty-seven thousand three hundred ninety-eight'), (1741, 25842, 'twenty-five thousand eight hundred forty-two'), (1742, 77328, 'seventy-seven thousand three hundred twenty-eight'), (1743, 18096, 'eighteen thousand ninety-six'), (1744, 34754, 'thirty-four thousand seven hundred fifty-four'), (1745, 45405, 'forty-five thousand four hundred five'), (1746, 13823, 'thirteen thousand eight hundred twenty-three'), (1747, 49923, 'forty-nine thousand nine hundred twenty-three'), (1748, 83819, 'eighty-three thousand eight hundred nineteen'), (1749, 17607, 'seventeen thousand six hundred seven'), (1750, 27690, 'twenty-seven thousand six hundred ninety'), (1751, 94247, 'ninety-four thousand two hundred forty-seven'), (1752, 49325, 'forty-nine thousand three hundred twenty-five'), (1753, 85965, 'eighty-five thousand nine hundred sixty-five'), (1754, 91977, 'ninety-one thousand nine hundred seventy-seven'), (1755, 78239, 'seventy-eight thousand two hundred thirty-nine'), (1756, 85321, 'eighty-five thousand three hundred twenty-one'), (1757, 9783, 'nine thousand seven hundred eighty-three'), (1758, 52766, 'fifty-two thousand seven hundred sixty-six'), (1759, 60639, 'sixty thousand six hundred thirty-nine'), (1760, 51278, 'fifty-one thousand two hundred seventy-eight'), (1761, 27375, 'twenty-seven thousand three hundred seventy-five'), (1762, 1617, 'one thousand six hundred seventeen'), (1763, 66623, 'sixty-six thousand six hundred twenty-three'), (1764, 74421, 'seventy-four thousand four hundred twenty-one'), (1765, 24325, 'twenty-four thousand three hundred twenty-five'), (1766, 79776, 'seventy-nine thousand seven hundred seventy-six'), (1767, 33732, 'thirty-three thousand seven hundred thirty-two'), (1768, 61564, 'sixty-one thousand five hundred sixty-four'), (1769, 79172, 'seventy-nine thousand one hundred seventy-two'), (1770, 90022, 'ninety thousand twenty-two'), (1771, 91525, 'ninety-one thousand five hundred twenty-five'), (1772, 85153, 'eighty-five thousand one hundred fifty-three'), (1773, 84868, 'eighty-four thousand eight hundred sixty-eight'), (1774, 19344, 'nineteen thousand three hundred forty-four'), (1775, 90744, 'ninety thousand seven hundred forty-four'), (1776, 15514, 'fifteen thousand five hundred fourteen'), (1777, 71377, 'seventy-one thousand three hundred seventy-seven'), (1778, 5810, 'five thousand eight hundred ten'), (1779, 33066, 'thirty-three thousand sixty-six'), (1780, 67045, 'sixty-seven thousand forty-five'), (1781, 47539, 'forty-seven thousand five hundred thirty-nine'), (1782, 85185, 'eighty-five thousand one hundred eighty-five'), (1783, 22446, 'twenty-two thousand four hundred forty-six'), (1784, 92330, 'ninety-two thousand three hundred thirty'), (1785, 99813, 'ninety-nine thousand eight hundred thirteen'), (1786, 92270, 'ninety-two thousand two hundred seventy'), (1787, 71971, 'seventy-one thousand nine hundred seventy-one'), (1788, 8653, 'eight thousand six hundred fifty-three'), (1789, 74307, 'seventy-four thousand three hundred seven'), (1790, 45585, 'forty-five thousand five hundred eighty-five'), (1791, 60701, 'sixty thousand seven hundred one'), (1792, 58417, 'fifty-eight thousand four hundred seventeen'), (1793, 74492, 'seventy-four thousand four hundred ninety-two'), (1794, 89732, 'eighty-nine thousand seven hundred thirty-two'), (1795, 67912, 'sixty-seven thousand nine hundred twelve'), (1796, 18422, 'eighteen thousand four hundred twenty-two'), (1797, 11633, 'eleven thousand six hundred thirty-three'), (1798, 38432, 'thirty-eight thousand four hundred thirty-two'), (1799, 53350, 'fifty-three thousand three hundred fifty'), (1800, 3256, 'three thousand two hundred fifty-six'), (1801, 18800, 'eighteen thousand eight hundred'), (1802, 74056, 'seventy-four thousand fifty-six'), (1803, 39640, 'thirty-nine thousand six hundred forty'), (1804, 17551, 'seventeen thousand five hundred fifty-one'), (1805, 33076, 'thirty-three thousand seventy-six'), (1806, 5062, 'five thousand sixty-two'), (1807, 59579, 'fifty-nine thousand five hundred seventy-nine'), (1808, 93580, 'ninety-three thousand five hundred eighty'), (1809, 49252, 'forty-nine thousand two hundred fifty-two'), (1810, 14480, 'fourteen thousand four hundred eighty'), (1811, 13799, 'thirteen thousand seven hundred ninety-nine'), (1812, 6840, 'six thousand eight hundred forty'), (1813, 87793, 'eighty-seven thousand seven hundred ninety-three'), (1814, 41698, 'forty-one thousand six hundred ninety-eight'), (1815, 37665, 'thirty-seven thousand six hundred sixty-five'), (1816, 71170, 'seventy-one thousand one hundred seventy'), (1817, 69307, 'sixty-nine thousand three hundred seven'), (1818, 36344, 'thirty-six thousand three hundred forty-four'), (1819, 82535, 'eighty-two thousand five hundred thirty-five'), (1820, 11733, 'eleven thousand seven hundred thirty-three'), (1821, 37335, 'thirty-seven thousand three hundred thirty-five'), (1822, 16657, 'sixteen thousand six hundred fifty-seven'), (1823, 77184, 'seventy-seven thousand one hundred eighty-four'), (1824, 29887, 'twenty-nine thousand eight hundred eighty-seven'), (1825, 38486, 'thirty-eight thousand four hundred eighty-six'), (1826, 15093, 'fifteen thousand ninety-three'), (1827, 23045, 'twenty-three thousand forty-five'), (1828, 84551, 'eighty-four thousand five hundred fifty-one'), (1829, 53035, 'fifty-three thousand thirty-five'), (1830, 64634, 'sixty-four thousand six hundred thirty-four'), (1831, 43246, 'forty-three thousand two hundred forty-six'), (1832, 91381, 'ninety-one thousand three hundred eighty-one'), (1833, 48117, 'forty-eight thousand one hundred seventeen'), (1834, 28126, 'twenty-eight thousand one hundred twenty-six'), (1835, 94457, 'ninety-four thousand four hundred fifty-seven'), (1836, 53085, 'fifty-three thousand eighty-five'), (1837, 91230, 'ninety-one thousand two hundred thirty'), (1838, 80930, 'eighty thousand nine hundred thirty'), (1839, 51813, 'fifty-one thousand eight hundred thirteen'), (1840, 48853, 'forty-eight thousand eight hundred fifty-three'), (1841, 10541, 'ten thousand five hundred forty-one'), (1842, 63316, 'sixty-three thousand three hundred sixteen'), (1843, 86642, 'eighty-six thousand six hundred forty-two'), (1844, 90329, 'ninety thousand three hundred twenty-nine'), (1845, 45310, 'forty-five thousand three hundred ten'), (1846, 41949, 'forty-one thousand nine hundred forty-nine'), (1847, 35438, 'thirty-five thousand four hundred thirty-eight'), (1848, 46641, 'forty-six thousand six hundred forty-one'), (1849, 23307, 'twenty-three thousand three hundred seven'), (1850, 79886, 'seventy-nine thousand eight hundred eighty-six'), (1851, 284, 'two hundred eighty-four'), (1852, 13104, 'thirteen thousand one hundred four'), (1853, 53609, 'fifty-three thousand six hundred nine'), (1854, 58540, 'fifty-eight thousand five hundred forty'), (1855, 22527, 'twenty-two thousand five hundred twenty-seven'), (1856, 89998, 'eighty-nine thousand nine hundred ninety-eight'), (1857, 17504, 'seventeen thousand five hundred four'), (1858, 82012, 'eighty-two thousand twelve'), (1859, 1468, 'one thousand four hundred sixty-eight'), (1860, 76117, 'seventy-six thousand one hundred seventeen'), (1861, 83855, 'eighty-three thousand eight hundred fifty-five'), (1862, 84711, 'eighty-four thousand seven hundred eleven'), (1863, 71607, 'seventy-one thousand six hundred seven'), (1864, 13753, 'thirteen thousand seven hundred fifty-three'), (1865, 44167, 'forty-four thousand one hundred sixty-seven'), (1866, 49345, 'forty-nine thousand three hundred forty-five'), (1867, 89810, 'eighty-nine thousand eight hundred ten'), (1868, 3843, 'three thousand eight hundred forty-three'), (1869, 55672, 'fifty-five thousand six hundred seventy-two'), (1870, 74000, 'seventy-four thousand'), (1871, 74072, 'seventy-four thousand seventy-two'), (1872, 92844, 'ninety-two thousand eight hundred forty-four'), (1873, 28448, 'twenty-eight thousand four hundred forty-eight'), (1874, 33924, 'thirty-three thousand nine hundred twenty-four'), (1875, 34292, 'thirty-four thousand two hundred ninety-two'), (1876, 45610, 'forty-five thousand six hundred ten'), (1877, 62127, 'sixty-two thousand one hundred twenty-seven'), (1878, 60105, 'sixty thousand one hundred five'), (1879, 65062, 'sixty-five thousand sixty-two'), (1880, 57148, 'fifty-seven thousand one hundred forty-eight'), (1881, 66796, 'sixty-six thousand seven hundred ninety-six'), (1882, 62699, 'sixty-two thousand six hundred ninety-nine'), (1883, 75145, 'seventy-five thousand one hundred forty-five'), (1884, 41321, 'forty-one thousand three hundred twenty-one'), (1885, 2213, 'two thousand two hundred thirteen'), (1886, 74966, 'seventy-four thousand nine hundred sixty-six'), (1887, 45305, 'forty-five thousand three hundred five'), (1888, 76632, 'seventy-six thousand six hundred thirty-two'), (1889, 99047, 'ninety-nine thousand forty-seven'), (1890, 54068, 'fifty-four thousand sixty-eight'), (1891, 8881, 'eight thousand eight hundred eighty-one'), (1892, 46208, 'forty-six thousand two hundred eight'), (1893, 73868, 'seventy-three thousand eight hundred sixty-eight'), (1894, 19510, 'nineteen thousand five hundred ten'), (1895, 72069, 'seventy-two thousand sixty-nine'), (1896, 51770, 'fifty-one thousand seven hundred seventy'), (1897, 91125, 'ninety-one thousand one hundred twenty-five'), (1898, 69281, 'sixty-nine thousand two hundred eighty-one'), (1899, 96078, 'ninety-six thousand seventy-eight'), (1900, 99710, 'ninety-nine thousand seven hundred ten'), (1901, 92553, 'ninety-two thousand five hundred fifty-three'), (1902, 66580, 'sixty-six thousand five hundred eighty'), (1903, 48921, 'forty-eight thousand nine hundred twenty-one'), (1904, 57229, 'fifty-seven thousand two hundred twenty-nine'), (1905, 4529, 'four thousand five hundred twenty-nine'), (1906, 38632, 'thirty-eight thousand six hundred thirty-two'), (1907, 12327, 'twelve thousand three hundred twenty-seven'), (1908, 37881, 'thirty-seven thousand eight hundred eighty-one'), (1909, 54221, 'fifty-four thousand two hundred twenty-one'), (1910, 58504, 'fifty-eight thousand five hundred four'), (1911, 81205, 'eighty-one thousand two hundred five'), (1912, 49852, 'forty-nine thousand eight hundred fifty-two'), (1913, 18990, 'eighteen thousand nine hundred ninety'), (1914, 46686, 'forty-six thousand six hundred eighty-six'), (1915, 49449, 'forty-nine thousand four hundred forty-nine'), (1916, 32859, 'thirty-two thousand eight hundred fifty-nine'), (1917, 93576, 'ninety-three thousand five hundred seventy-six'), (1918, 79522, 'seventy-nine thousand five hundred twenty-two'), (1919, 48625, 'forty-eight thousand six hundred twenty-five'), (1920, 17379, 'seventeen thousand three hundred seventy-nine'), (1921, 86661, 'eighty-six thousand six hundred sixty-one'), (1922, 89879, 'eighty-nine thousand eight hundred seventy-nine'), (1923, 88484, 'eighty-eight thousand four hundred eighty-four'), (1924, 60303, 'sixty thousand three hundred three'), (1925, 66627, 'sixty-six thousand six hundred twenty-seven'), (1926, 9889, 'nine thousand eight hundred eighty-nine'), (1927, 54268, 'fifty-four thousand two hundred sixty-eight'), (1928, 509, 'five hundred nine'), (1929, 29418, 'twenty-nine thousand four hundred eighteen'), (1930, 1114, 'one thousand one hundred fourteen'), (1931, 57107, 'fifty-seven thousand one hundred seven'), (1932, 49837, 'forty-nine thousand eight hundred thirty-seven'), (1933, 31332, 'thirty-one thousand three hundred thirty-two'), (1934, 19882, 'nineteen thousand eight hundred eighty-two'), (1935, 6390, 'six thousand three hundred ninety'), (1936, 92051, 'ninety-two thousand fifty-one'), (1937, 73591, 'seventy-three thousand five hundred ninety-one'), (1938, 73809, 'seventy-three thousand eight hundred nine'), (1939, 37123, 'thirty-seven thousand one hundred twenty-three'), (1940, 46702, 'forty-six thousand seven hundred two'), (1941, 44453, 'forty-four thousand four hundred fifty-three'), (1942, 94498, 'ninety-four thousand four hundred ninety-eight'), (1943, 41213, 'forty-one thousand two hundred thirteen'), (1944, 37512, 'thirty-seven thousand five hundred twelve'), (1945, 40345, 'forty thousand three hundred forty-five'), (1946, 65300, 'sixty-five thousand three hundred'), (1947, 99023, 'ninety-nine thousand twenty-three'), (1948, 51529, 'fifty-one thousand five hundred twenty-nine'), (1949, 40564, 'forty thousand five hundred sixty-four'), (1950, 93119, 'ninety-three thousand one hundred nineteen'), (1951, 95801, 'ninety-five thousand eight hundred one'), (1952, 29139, 'twenty-nine thousand one hundred thirty-nine'), (1953, 88533, 'eighty-eight thousand five hundred thirty-three'), (1954, 36391, 'thirty-six thousand three hundred ninety-one'), (1955, 46914, 'forty-six thousand nine hundred fourteen'), (1956, 1945, 'one thousand nine hundred forty-five'), (1957, 17441, 'seventeen thousand four hundred forty-one'), (1958, 50389, 'fifty thousand three hundred eighty-nine'), (1959, 2919, 'two thousand nine hundred nineteen'), (1960, 7387, 'seven thousand three hundred eighty-seven'), (1961, 60435, 'sixty thousand four hundred thirty-five'), (1962, 87437, 'eighty-seven thousand four hundred thirty-seven'), (1963, 48552, 'forty-eight thousand five hundred fifty-two'), (1964, 97032, 'ninety-seven thousand thirty-two'), (1965, 3774, 'three thousand seven hundred seventy-four'), (1966, 88663, 'eighty-eight thousand six hundred sixty-three'), (1967, 49949, 'forty-nine thousand nine hundred forty-nine'), (1968, 42172, 'forty-two thousand one hundred seventy-two'), (1969, 81342, 'eighty-one thousand three hundred forty-two'), (1970, 50370, 'fifty thousand three hundred seventy'), (1971, 68432, 'sixty-eight thousand four hundred thirty-two'), (1972, 74779, 'seventy-four thousand seven hundred seventy-nine'), (1973, 78931, 'seventy-eight thousand nine hundred thirty-one'), (1974, 88840, 'eighty-eight thousand eight hundred forty'), (1975, 33044, 'thirty-three thousand forty-four'), (1976, 33493, 'thirty-three thousand four hundred ninety-three'), (1977, 93664, 'ninety-three thousand six hundred sixty-four'), (1978, 18493, 'eighteen thousand four hundred ninety-three'), (1979, 31558, 'thirty-one thousand five hundred fifty-eight'), (1980, 78410, 'seventy-eight thousand four hundred ten'), (1981, 18024, 'eighteen thousand twenty-four'), (1982, 84219, 'eighty-four thousand two hundred nineteen'), (1983, 93478, 'ninety-three thousand four hundred seventy-eight'), (1984, 77514, 'seventy-seven thousand five hundred fourteen'), (1985, 40296, 'forty thousand two hundred ninety-six'), (1986, 51888, 'fifty-one thousand eight hundred eighty-eight'), (1987, 16949, 'sixteen thousand nine hundred forty-nine'), (1988, 68817, 'sixty-eight thousand eight hundred seventeen'), (1989, 69649, 'sixty-nine thousand six hundred forty-nine'), (1990, 72933, 'seventy-two thousand nine hundred thirty-three'), (1991, 12206, 'twelve thousand two hundred six'), (1992, 97291, 'ninety-seven thousand two hundred ninety-one'), (1993, 39229, 'thirty-nine thousand two hundred twenty-nine'), (1994, 37831, 'thirty-seven thousand eight hundred thirty-one'), (1995, 33866, 'thirty-three thousand eight hundred sixty-six'), (1996, 85012, 'eighty-five thousand twelve'), (1997, 38533, 'thirty-eight thousand five hundred thirty-three'), (1998, 46016, 'forty-six thousand sixteen'), (1999, 93324, 'ninety-three thousand three hundred twenty-four'), (2000, 63623, 'sixty-three thousand six hundred twenty-three'), (2001, 98556, 'ninety-eight thousand five hundred fifty-six'), (2002, 58599, 'fifty-eight thousand five hundred ninety-nine'), (2003, 45225, 'forty-five thousand two hundred twenty-five'), (2004, 37548, 'thirty-seven thousand five hundred forty-eight'), (2005, 83650, 'eighty-three thousand six hundred fifty'), (2006, 14417, 'fourteen thousand four hundred seventeen'), (2007, 32517, 'thirty-two thousand five hundred seventeen'), (2008, 22945, 'twenty-two thousand nine hundred forty-five'), (2009, 3316, 'three thousand three hundred sixteen'), (2010, 93213, 'ninety-three thousand two hundred thirteen'), (2011, 26724, 'twenty-six thousand seven hundred twenty-four'), (2012, 21333, 'twenty-one thousand three hundred thirty-three'), (2013, 81607, 'eighty-one thousand six hundred seven'), (2014, 82073, 'eighty-two thousand seventy-three'), (2015, 79396, 'seventy-nine thousand three hundred ninety-six'), (2016, 27732, 'twenty-seven thousand seven hundred thirty-two'), (2017, 15834, 'fifteen thousand eight hundred thirty-four'), (2018, 72301, 'seventy-two thousand three hundred one'), (2019, 9948, 'nine thousand nine hundred forty-eight'), (2020, 65047, 'sixty-five thousand forty-seven'), (2021, 75772, 'seventy-five thousand seven hundred seventy-two'), (2022, 79232, 'seventy-nine thousand two hundred thirty-two'), (2023, 97661, 'ninety-seven thousand six hundred sixty-one'), (2024, 25306, 'twenty-five thousand three hundred six'), (2025, 31192, 'thirty-one thousand one hundred ninety-two'), (2026, 88179, 'eighty-eight thousand one hundred seventy-nine'), (2027, 20441, 'twenty thousand four hundred forty-one'), (2028, 47119, 'forty-seven thousand one hundred nineteen'), (2029, 65133, 'sixty-five thousand one hundred thirty-three'), (2030, 8819, 'eight thousand eight hundred nineteen'), (2031, 6202, 'six thousand two hundred two'), (2032, 20304, 'twenty thousand three hundred four'), (2033, 1572, 'one thousand five hundred seventy-two'), (2034, 17955, 'seventeen thousand nine hundred fifty-five'), (2035, 49827, 'forty-nine thousand eight hundred twenty-seven'), (2036, 61984, 'sixty-one thousand nine hundred eighty-four'), (2037, 56316, 'fifty-six thousand three hundred sixteen'), (2038, 26547, 'twenty-six thousand five hundred forty-seven'), (2039, 47448, 'forty-seven thousand four hundred forty-eight'), (2040, 56793, 'fifty-six thousand seven hundred ninety-three'), (2041, 47578, 'forty-seven thousand five hundred seventy-eight'), (2042, 70665, 'seventy thousand six hundred sixty-five'), (2043, 7051, 'seven thousand fifty-one'), (2044, 26887, 'twenty-six thousand eight hundred eighty-seven'), (2045, 71921, 'seventy-one thousand nine hundred twenty-one'), (2046, 69606, 'sixty-nine thousand six hundred six'), (2047, 81647, 'eighty-one thousand six hundred forty-seven'), (2048, 44218, 'forty-four thousand two hundred eighteen'), (2049, 85354, 'eighty-five thousand three hundred fifty-four'), (2050, 8849, 'eight thousand eight hundred forty-nine'), (2051, 84181, 'eighty-four thousand one hundred eighty-one'), (2052, 32708, 'thirty-two thousand seven hundred eight'), (2053, 68880, 'sixty-eight thousand eight hundred eighty'), (2054, 75721, 'seventy-five thousand seven hundred twenty-one'), (2055, 29936, 'twenty-nine thousand nine hundred thirty-six'), (2056, 89236, 'eighty-nine thousand two hundred thirty-six'), (2057, 91416, 'ninety-one thousand four hundred sixteen'), (2058, 63884, 'sixty-three thousand eight hundred eighty-four'), (2059, 33238, 'thirty-three thousand two hundred thirty-eight'), (2060, 74676, 'seventy-four thousand six hundred seventy-six'), (2061, 72246, 'seventy-two thousand two hundred forty-six'), (2062, 69954, 'sixty-nine thousand nine hundred fifty-four'), (2063, 23336, 'twenty-three thousand three hundred thirty-six'), (2064, 35017, 'thirty-five thousand seventeen'), (2065, 86820, 'eighty-six thousand eight hundred twenty'), (2066, 17954, 'seventeen thousand nine hundred fifty-four'), (2067, 35069, 'thirty-five thousand sixty-nine'), (2068, 44963, 'forty-four thousand nine hundred sixty-three'), (2069, 16622, 'sixteen thousand six hundred twenty-two'), (2070, 77447, 'seventy-seven thousand four hundred forty-seven'), (2071, 4786, 'four thousand seven hundred eighty-six'), (2072, 77713, 'seventy-seven thousand seven hundred thirteen'), (2073, 80044, 'eighty thousand forty-four'), (2074, 84960, 'eighty-four thousand nine hundred sixty'), (2075, 75412, 'seventy-five thousand four hundred twelve'), (2076, 32987, 'thirty-two thousand nine hundred eighty-seven'), (2077, 27500, 'twenty-seven thousand five hundred'), (2078, 69099, 'sixty-nine thousand ninety-nine'), (2079, 95854, 'ninety-five thousand eight hundred fifty-four'), (2080, 60201, 'sixty thousand two hundred one'), (2081, 18459, 'eighteen thousand four hundred fifty-nine'), (2082, 35972, 'thirty-five thousand nine hundred seventy-two'), (2083, 74050, 'seventy-four thousand fifty'), (2084, 19799, 'nineteen thousand seven hundred ninety-nine'), (2085, 95778, 'ninety-five thousand seven hundred seventy-eight'), (2086, 62066, 'sixty-two thousand sixty-six'), (2087, 61196, 'sixty-one thousand one hundred ninety-six'), (2088, 58432, 'fifty-eight thousand four hundred thirty-two'), (2089, 97946, 'ninety-seven thousand nine hundred forty-six'), (2090, 12406, 'twelve thousand four hundred six'), (2091, 68826, 'sixty-eight thousand eight hundred twenty-six'), (2092, 88084, 'eighty-eight thousand eighty-four'), (2093, 53313, 'fifty-three thousand three hundred thirteen'), (2094, 61535, 'sixty-one thousand five hundred thirty-five'), (2095, 18262, 'eighteen thousand two hundred sixty-two'), (2096, 23242, 'twenty-three thousand two hundred forty-two'), (2097, 69693, 'sixty-nine thousand six hundred ninety-three'), (2098, 57613, 'fifty-seven thousand six hundred thirteen'), (2099, 93021, 'ninety-three thousand twenty-one'), (2100, 39809, 'thirty-nine thousand eight hundred nine'), (2101, 67259, 'sixty-seven thousand two hundred fifty-nine'), (2102, 6215, 'six thousand two hundred fifteen'), (2103, 59291, 'fifty-nine thousand two hundred ninety-one'), (2104, 10985, 'ten thousand nine hundred eighty-five'), (2105, 33289, 'thirty-three thousand two hundred eighty-nine'), (2106, 82410, 'eighty-two thousand four hundred ten'), (2107, 24220, 'twenty-four thousand two hundred twenty'), (2108, 48165, 'forty-eight thousand one hundred sixty-five'), (2109, 82098, 'eighty-two thousand ninety-eight'), (2110, 94652, 'ninety-four thousand six hundred fifty-two'), (2111, 22610, 'twenty-two thousand six hundred ten'), (2112, 20576, 'twenty thousand five hundred seventy-six'), (2113, 66793, 'sixty-six thousand seven hundred ninety-three'), (2114, 89310, 'eighty-nine thousand three hundred ten'), (2115, 68790, 'sixty-eight thousand seven hundred ninety'), (2116, 86133, 'eighty-six thousand one hundred thirty-three'), (2117, 31710, 'thirty-one thousand seven hundred ten'), (2118, 14160, 'fourteen thousand one hundred sixty'), (2119, 26244, 'twenty-six thousand two hundred forty-four'), (2120, 30473, 'thirty thousand four hundred seventy-three'), (2121, 26424, 'twenty-six thousand four hundred twenty-four'), (2122, 90055, 'ninety thousand fifty-five'), (2123, 85290, 'eighty-five thousand two hundred ninety'), (2124, 63577, 'sixty-three thousand five hundred seventy-seven'), (2125, 73925, 'seventy-three thousand nine hundred twenty-five'), (2126, 62904, 'sixty-two thousand nine hundred four'), (2127, 12256, 'twelve thousand two hundred fifty-six'), (2128, 35748, 'thirty-five thousand seven hundred forty-eight'), (2129, 96591, 'ninety-six thousand five hundred ninety-one'), (2130, 33621, 'thirty-three thousand six hundred twenty-one'), (2131, 61369, 'sixty-one thousand three hundred sixty-nine'), (2132, 20108, 'twenty thousand one hundred eight'), (2133, 47031, 'forty-seven thousand thirty-one'), (2134, 16205, 'sixteen thousand two hundred five'), (2135, 69777, 'sixty-nine thousand seven hundred seventy-seven'), (2136, 50091, 'fifty thousand ninety-one'), (2137, 87328, 'eighty-seven thousand three hundred twenty-eight'), (2138, 75202, 'seventy-five thousand two hundred two'), (2139, 86031, 'eighty-six thousand thirty-one'), (2140, 83275, 'eighty-three thousand two hundred seventy-five'), (2141, 91163, 'ninety-one thousand one hundred sixty-three'), (2142, 29596, 'twenty-nine thousand five hundred ninety-six'), (2143, 80885, 'eighty thousand eight hundred eighty-five'), (2144, 7114, 'seven thousand one hundred fourteen'), (2145, 95311, 'ninety-five thousand three hundred eleven'), (2146, 41598, 'forty-one thousand five hundred ninety-eight'), (2147, 15299, 'fifteen thousand two hundred ninety-nine'), (2148, 68783, 'sixty-eight thousand seven hundred eighty-three'), (2149, 77923, 'seventy-seven thousand nine hundred twenty-three'), (2150, 84420, 'eighty-four thousand four hundred twenty'), (2151, 29543, 'twenty-nine thousand five hundred forty-three'), (2152, 61605, 'sixty-one thousand six hundred five'), (2153, 24259, 'twenty-four thousand two hundred fifty-nine'), (2154, 26587, 'twenty-six thousand five hundred eighty-seven'), (2155, 3750, 'three thousand seven hundred fifty'), (2156, 19736, 'nineteen thousand seven hundred thirty-six'), (2157, 30736, 'thirty thousand seven hundred thirty-six'), (2158, 90402, 'ninety thousand four hundred two'), (2159, 2620, 'two thousand six hundred twenty'), (2160, 88988, 'eighty-eight thousand nine hundred eighty-eight'), (2161, 36807, 'thirty-six thousand eight hundred seven'), (2162, 61988, 'sixty-one thousand nine hundred eighty-eight'), (2163, 84714, 'eighty-four thousand seven hundred fourteen'), (2164, 60150, 'sixty thousand one hundred fifty'), (2165, 10846, 'ten thousand eight hundred forty-six'), (2166, 60791, 'sixty thousand seven hundred ninety-one'), (2167, 73750, 'seventy-three thousand seven hundred fifty'), (2168, 81970, 'eighty-one thousand nine hundred seventy'), (2169, 91144, 'ninety-one thousand one hundred forty-four'), (2170, 3387, 'three thousand three hundred eighty-seven'), (2171, 5474, 'five thousand four hundred seventy-four'), (2172, 98118, 'ninety-eight thousand one hundred eighteen'), (2173, 1979, 'one thousand nine hundred seventy-nine'), (2174, 48815, 'forty-eight thousand eight hundred fifteen'), (2175, 65851, 'sixty-five thousand eight hundred fifty-one'), (2176, 20554, 'twenty thousand five hundred fifty-four'), (2177, 74468, 'seventy-four thousand four hundred sixty-eight'), (2178, 26877, 'twenty-six thousand eight hundred seventy-seven'), (2179, 8772, 'eight thousand seven hundred seventy-two'), (2180, 14905, 'fourteen thousand nine hundred five'), (2181, 26261, 'twenty-six thousand two hundred sixty-one'), (2182, 81205, 'eighty-one thousand two hundred five'), (2183, 3169, 'three thousand one hundred sixty-nine'), (2184, 60000, 'sixty thousand'), (2185, 36692, 'thirty-six thousand six hundred ninety-two'), (2186, 66844, 'sixty-six thousand eight hundred forty-four'), (2187, 84078, 'eighty-four thousand seventy-eight'), (2188, 70466, 'seventy thousand four hundred sixty-six'), (2189, 87040, 'eighty-seven thousand forty'), (2190, 36416, 'thirty-six thousand four hundred sixteen'), (2191, 37209, 'thirty-seven thousand two hundred nine'), (2192, 19563, 'nineteen thousand five hundred sixty-three'), (2193, 99620, 'ninety-nine thousand six hundred twenty'), (2194, 83710, 'eighty-three thousand seven hundred ten'), (2195, 17594, 'seventeen thousand five hundred ninety-four'), (2196, 48053, 'forty-eight thousand fifty-three'), (2197, 9309, 'nine thousand three hundred nine'), (2198, 87289, 'eighty-seven thousand two hundred eighty-nine'), (2199, 38833, 'thirty-eight thousand eight hundred thirty-three'), (2200, 54107, 'fifty-four thousand one hundred seven'), (2201, 33163, 'thirty-three thousand one hundred sixty-three'), (2202, 15512, 'fifteen thousand five hundred twelve'), (2203, 36025, 'thirty-six thousand twenty-five'), (2204, 68272, 'sixty-eight thousand two hundred seventy-two'), (2205, 96954, 'ninety-six thousand nine hundred fifty-four'), (2206, 56025, 'fifty-six thousand twenty-five'), (2207, 72751, 'seventy-two thousand seven hundred fifty-one'), (2208, 98035, 'ninety-eight thousand thirty-five'), (2209, 33551, 'thirty-three thousand five hundred fifty-one'), (2210, 8544, 'eight thousand five hundred forty-four'), (2211, 75038, 'seventy-five thousand thirty-eight'), (2212, 53059, 'fifty-three thousand fifty-nine'), (2213, 66618, 'sixty-six thousand six hundred eighteen'), (2214, 57733, 'fifty-seven thousand seven hundred thirty-three'), (2215, 49471, 'forty-nine thousand four hundred seventy-one'), (2216, 41965, 'forty-one thousand nine hundred sixty-five'), (2217, 12073, 'twelve thousand seventy-three'), (2218, 20417, 'twenty thousand four hundred seventeen'), (2219, 87203, 'eighty-seven thousand two hundred three'), (2220, 86819, 'eighty-six thousand eight hundred nineteen'), (2221, 93531, 'ninety-three thousand five hundred thirty-one'), (2222, 68156, 'sixty-eight thousand one hundred fifty-six'), (2223, 8306, 'eight thousand three hundred six'), (2224, 72081, 'seventy-two thousand eighty-one'), (2225, 96486, 'ninety-six thousand four hundred eighty-six'), (2226, 71337, 'seventy-one thousand three hundred thirty-seven'), (2227, 55335, 'fifty-five thousand three hundred thirty-five'), (2228, 37346, 'thirty-seven thousand three hundred forty-six'), (2229, 15828, 'fifteen thousand eight hundred twenty-eight'), (2230, 47959, 'forty-seven thousand nine hundred fifty-nine'), (2231, 77454, 'seventy-seven thousand four hundred fifty-four'), (2232, 29837, 'twenty-nine thousand eight hundred thirty-seven'), (2233, 93078, 'ninety-three thousand seventy-eight'), (2234, 4704, 'four thousand seven hundred four'), (2235, 47966, 'forty-seven thousand nine hundred sixty-six'), (2236, 27502, 'twenty-seven thousand five hundred two'), (2237, 27683, 'twenty-seven thousand six hundred eighty-three'), (2238, 89607, 'eighty-nine thousand six hundred seven'), (2239, 92749, 'ninety-two thousand seven hundred forty-nine'), (2240, 11907, 'eleven thousand nine hundred seven'), (2241, 6074, 'six thousand seventy-four'), (2242, 30711, 'thirty thousand seven hundred eleven'), (2243, 61014, 'sixty-one thousand fourteen'), (2244, 79255, 'seventy-nine thousand two hundred fifty-five'), (2245, 71286, 'seventy-one thousand two hundred eighty-six'), (2246, 60934, 'sixty thousand nine hundred thirty-four'), (2247, 69311, 'sixty-nine thousand three hundred eleven'), (2248, 86131, 'eighty-six thousand one hundred thirty-one'), (2249, 25307, 'twenty-five thousand three hundred seven'), (2250, 72456, 'seventy-two thousand four hundred fifty-six'), (2251, 45054, 'forty-five thousand fifty-four'), (2252, 50350, 'fifty thousand three hundred fifty'), (2253, 38134, 'thirty-eight thousand one hundred thirty-four'), (2254, 65253, 'sixty-five thousand two hundred fifty-three'), (2255, 23208, 'twenty-three thousand two hundred eight'), (2256, 15835, 'fifteen thousand eight hundred thirty-five'), (2257, 27997, 'twenty-seven thousand nine hundred ninety-seven'), (2258, 21168, 'twenty-one thousand one hundred sixty-eight'), (2259, 6740, 'six thousand seven hundred forty'), (2260, 89734, 'eighty-nine thousand seven hundred thirty-four'), (2261, 62215, 'sixty-two thousand two hundred fifteen'), (2262, 92196, 'ninety-two thousand one hundred ninety-six'), (2263, 96590, 'ninety-six thousand five hundred ninety'), (2264, 35844, 'thirty-five thousand eight hundred forty-four'), (2265, 0, 'zero'), (2266, 88210, 'eighty-eight thousand two hundred ten'), (2267, 12229, 'twelve thousand two hundred twenty-nine'), (2268, 4044, 'four thousand forty-four'), (2269, 57305, 'fifty-seven thousand three hundred five'), (2270, 60151, 'sixty thousand one hundred fifty-one'), (2271, 87982, 'eighty-seven thousand nine hundred eighty-two'), (2272, 82274, 'eighty-two thousand two hundred seventy-four'), (2273, 25777, 'twenty-five thousand seven hundred seventy-seven'), (2274, 48417, 'forty-eight thousand four hundred seventeen'), (2275, 91581, 'ninety-one thousand five hundred eighty-one'), (2276, 89561, 'eighty-nine thousand five hundred sixty-one'), (2277, 98447, 'ninety-eight thousand four hundred forty-seven'), (2278, 94677, 'ninety-four thousand six hundred seventy-seven'), (2279, 87830, 'eighty-seven thousand eight hundred thirty'), (2280, 32972, 'thirty-two thousand nine hundred seventy-two'), (2281, 89701, 'eighty-nine thousand seven hundred one'), (2282, 16398, 'sixteen thousand three hundred ninety-eight'), (2283, 97877, 'ninety-seven thousand eight hundred seventy-seven'), (2284, 88436, 'eighty-eight thousand four hundred thirty-six'), (2285, 12266, 'twelve thousand two hundred sixty-six'), (2286, 48915, 'forty-eight thousand nine hundred fifteen'), (2287, 26226, 'twenty-six thousand two hundred twenty-six'), (2288, 74341, 'seventy-four thousand three hundred forty-one'), (2289, 13094, 'thirteen thousand ninety-four'), (2290, 4047, 'four thousand forty-seven'), (2291, 77945, 'seventy-seven thousand nine hundred forty-five'), (2292, 56908, 'fifty-six thousand nine hundred eight'), (2293, 7946, 'seven thousand nine hundred forty-six'), (2294, 64802, 'sixty-four thousand eight hundred two'), (2295, 27687, 'twenty-seven thousand six hundred eighty-seven'), (2296, 10869, 'ten thousand eight hundred sixty-nine'), (2297, 74280, 'seventy-four thousand two hundred eighty'), (2298, 44015, 'forty-four thousand fifteen'), (2299, 96226, 'ninety-six thousand two hundred twenty-six'), (2300, 84163, 'eighty-four thousand one hundred sixty-three'), (2301, 86187, 'eighty-six thousand one hundred eighty-seven'), (2302, 75480, 'seventy-five thousand four hundred eighty'), (2303, 47697, 'forty-seven thousand six hundred ninety-seven'), (2304, 83305, 'eighty-three thousand three hundred five'), (2305, 97239, 'ninety-seven thousand two hundred thirty-nine'), (2306, 7950, 'seven thousand nine hundred fifty'), (2307, 22901, 'twenty-two thousand nine hundred one'), (2308, 79988, 'seventy-nine thousand nine hundred eighty-eight'), (2309, 27934, 'twenty-seven thousand nine hundred thirty-four'), (2310, 25620, 'twenty-five thousand six hundred twenty'), (2311, 81565, 'eighty-one thousand five hundred sixty-five'), (2312, 77671, 'seventy-seven thousand six hundred seventy-one'), (2313, 49585, 'forty-nine thousand five hundred eighty-five'), (2314, 47771, 'forty-seven thousand seven hundred seventy-one'), (2315, 10113, 'ten thousand one hundred thirteen'), (2316, 58491, 'fifty-eight thousand four hundred ninety-one'), (2317, 98064, 'ninety-eight thousand sixty-four'), (2318, 17766, 'seventeen thousand seven hundred sixty-six'), (2319, 37223, 'thirty-seven thousand two hundred twenty-three'), (2320, 36656, 'thirty-six thousand six hundred fifty-six'), (2321, 9340, 'nine thousand three hundred forty'), (2322, 20908, 'twenty thousand nine hundred eight'), (2323, 51631, 'fifty-one thousand six hundred thirty-one'), (2324, 10204, 'ten thousand two hundred four'), (2325, 95060, 'ninety-five thousand sixty'), (2326, 71757, 'seventy-one thousand seven hundred fifty-seven'), (2327, 46087, 'forty-six thousand eighty-seven'), (2328, 45770, 'forty-five thousand seven hundred seventy'), (2329, 66703, 'sixty-six thousand seven hundred three'), (2330, 65978, 'sixty-five thousand nine hundred seventy-eight'), (2331, 9302, 'nine thousand three hundred two'), (2332, 21573, 'twenty-one thousand five hundred seventy-three'), (2333, 3821, 'three thousand eight hundred twenty-one'), (2334, 5260, 'five thousand two hundred sixty'), (2335, 67314, 'sixty-seven thousand three hundred fourteen'), (2336, 44719, 'forty-four thousand seven hundred nineteen'), (2337, 78552, 'seventy-eight thousand five hundred fifty-two'), (2338, 37670, 'thirty-seven thousand six hundred seventy'), (2339, 65650, 'sixty-five thousand six hundred fifty'), (2340, 69105, 'sixty-nine thousand one hundred five'), (2341, 58762, 'fifty-eight thousand seven hundred sixty-two'), (2342, 88042, 'eighty-eight thousand forty-two'), (2343, 25627, 'twenty-five thousand six hundred twenty-seven'), (2344, 60636, 'sixty thousand six hundred thirty-six'), (2345, 78849, 'seventy-eight thousand eight hundred forty-nine'), (2346, 24665, 'twenty-four thousand six hundred sixty-five'), (2347, 84106, 'eighty-four thousand one hundred six'), (2348, 5037, 'five thousand thirty-seven'), (2349, 22737, 'twenty-two thousand seven hundred thirty-seven'), (2350, 42380, 'forty-two thousand three hundred eighty'), (2351, 66356, 'sixty-six thousand three hundred fifty-six'), (2352, 80186, 'eighty thousand one hundred eighty-six'), (2353, 79687, 'seventy-nine thousand six hundred eighty-seven'), (2354, 23996, 'twenty-three thousand nine hundred ninety-six'), (2355, 35446, 'thirty-five thousand four hundred forty-six'), (2356, 81372, 'eighty-one thousand three hundred seventy-two'), (2357, 70867, 'seventy thousand eight hundred sixty-seven'), (2358, 54517, 'fifty-four thousand five hundred seventeen'), (2359, 74460, 'seventy-four thousand four hundred sixty'), (2360, 44116, 'forty-four thousand one hundred sixteen'), (2361, 6833, 'six thousand eight hundred thirty-three'), (2362, 90428, 'ninety thousand four hundred twenty-eight'), (2363, 47466, 'forty-seven thousand four hundred sixty-six'), (2364, 2992, 'two thousand nine hundred ninety-two'), (2365, 47872, 'forty-seven thousand eight hundred seventy-two'), (2366, 38438, 'thirty-eight thousand four hundred thirty-eight'), (2367, 8818, 'eight thousand eight hundred eighteen'), (2368, 50516, 'fifty thousand five hundred sixteen'), (2369, 90572, 'ninety thousand five hundred seventy-two'), (2370, 63342, 'sixty-three thousand three hundred forty-two'), (2371, 35210, 'thirty-five thousand two hundred ten'), (2372, 37579, 'thirty-seven thousand five hundred seventy-nine'), (2373, 32524, 'thirty-two thousand five hundred twenty-four'), (2374, 34698, 'thirty-four thousand six hundred ninety-eight'), (2375, 3342, 'three thousand three hundred forty-two'), (2376, 41340, 'forty-one thousand three hundred forty'), (2377, 22400, 'twenty-two thousand four hundred'), (2378, 10603, 'ten thousand six hundred three'), (2379, 18792, 'eighteen thousand seven hundred ninety-two'), (2380, 69656, 'sixty-nine thousand six hundred fifty-six'), (2381, 1537, 'one thousand five hundred thirty-seven'), (2382, 65375, 'sixty-five thousand three hundred seventy-five'), (2383, 68829, 'sixty-eight thousand eight hundred twenty-nine'), (2384, 76719, 'seventy-six thousand seven hundred nineteen'), (2385, 45387, 'forty-five thousand three hundred eighty-seven'), (2386, 55655, 'fifty-five thousand six hundred fifty-five'), (2387, 3400, 'three thousand four hundred'), (2388, 2563, 'two thousand five hundred sixty-three'), (2389, 52934, 'fifty-two thousand nine hundred thirty-four'), (2390, 18900, 'eighteen thousand nine hundred'), (2391, 57718, 'fifty-seven thousand seven hundred eighteen'), (2392, 25010, 'twenty-five thousand ten'), (2393, 42145, 'forty-two thousand one hundred forty-five'), (2394, 70177, 'seventy thousand one hundred seventy-seven'), (2395, 43561, 'forty-three thousand five hundred sixty-one'), (2396, 50772, 'fifty thousand seven hundred seventy-two'), (2397, 75624, 'seventy-five thousand six hundred twenty-four'), (2398, 19708, 'nineteen thousand seven hundred eight'), (2399, 39121, 'thirty-nine thousand one hundred twenty-one'), (2400, 7490, 'seven thousand four hundred ninety'), (2401, 93965, 'ninety-three thousand nine hundred sixty-five'), (2402, 30359, 'thirty thousand three hundred fifty-nine'), (2403, 83205, 'eighty-three thousand two hundred five'), (2404, 63964, 'sixty-three thousand nine hundred sixty-four'), (2405, 63427, 'sixty-three thousand four hundred twenty-seven'), (2406, 85035, 'eighty-five thousand thirty-five'), (2407, 76974, 'seventy-six thousand nine hundred seventy-four'), (2408, 84544, 'eighty-four thousand five hundred forty-four'), (2409, 22880, 'twenty-two thousand eight hundred eighty'), (2410, 32394, 'thirty-two thousand three hundred ninety-four'), (2411, 4397, 'four thousand three hundred ninety-seven'), (2412, 58250, 'fifty-eight thousand two hundred fifty'), (2413, 11423, 'eleven thousand four hundred twenty-three'), (2414, 3384, 'three thousand three hundred eighty-four'), (2415, 4653, 'four thousand six hundred fifty-three'), (2416, 95751, 'ninety-five thousand seven hundred fifty-one'), (2417, 78350, 'seventy-eight thousand three hundred fifty'), (2418, 57494, 'fifty-seven thousand four hundred ninety-four'), (2419, 16605, 'sixteen thousand six hundred five'), (2420, 52211, 'fifty-two thousand two hundred eleven'), (2421, 24109, 'twenty-four thousand one hundred nine'), (2422, 73016, 'seventy-three thousand sixteen'), (2423, 99809, 'ninety-nine thousand eight hundred nine'), (2424, 57522, 'fifty-seven thousand five hundred twenty-two'), (2425, 66662, 'sixty-six thousand six hundred sixty-two'), (2426, 72539, 'seventy-two thousand five hundred thirty-nine'), (2427, 49871, 'forty-nine thousand eight hundred seventy-one'), (2428, 67148, 'sixty-seven thousand one hundred forty-eight'), (2429, 20157, 'twenty thousand one hundred fifty-seven'), (2430, 88979, 'eighty-eight thousand nine hundred seventy-nine'), (2431, 11450, 'eleven thousand four hundred fifty'), (2432, 34394, 'thirty-four thousand three hundred ninety-four'), (2433, 34837, 'thirty-four thousand eight hundred thirty-seven'), (2434, 96687, 'ninety-six thousand six hundred eighty-seven'), (2435, 25169, 'twenty-five thousand one hundred sixty-nine'), (2436, 27018, 'twenty-seven thousand eighteen'), (2437, 13348, 'thirteen thousand three hundred forty-eight'), (2438, 72334, 'seventy-two thousand three hundred thirty-four'), (2439, 53396, 'fifty-three thousand three hundred ninety-six'), (2440, 91877, 'ninety-one thousand eight hundred seventy-seven'), (2441, 49119, 'forty-nine thousand one hundred nineteen'), (2442, 87228, 'eighty-seven thousand two hundred twenty-eight'), (2443, 63236, 'sixty-three thousand two hundred thirty-six'), (2444, 92588, 'ninety-two thousand five hundred eighty-eight'), (2445, 26333, 'twenty-six thousand three hundred thirty-three'), (2446, 25720, 'twenty-five thousand seven hundred twenty'), (2447, 9825, 'nine thousand eight hundred twenty-five'), (2448, 36830, 'thirty-six thousand eight hundred thirty'), (2449, 75312, 'seventy-five thousand three hundred twelve'), (2450, 8093, 'eight thousand ninety-three'), (2451, 99357, 'ninety-nine thousand three hundred fifty-seven'), (2452, 59573, 'fifty-nine thousand five hundred seventy-three'), (2453, 65022, 'sixty-five thousand twenty-two'), (2454, 13828, 'thirteen thousand eight hundred twenty-eight'), (2455, 3673, 'three thousand six hundred seventy-three'), (2456, 87125, 'eighty-seven thousand one hundred twenty-five'), (2457, 60795, 'sixty thousand seven hundred ninety-five'), (2458, 15605, 'fifteen thousand six hundred five'), (2459, 80770, 'eighty thousand seven hundred seventy'), (2460, 83596, 'eighty-three thousand five hundred ninety-six'), (2461, 92525, 'ninety-two thousand five hundred twenty-five'), (2462, 63263, 'sixty-three thousand two hundred sixty-three'), (2463, 97131, 'ninety-seven thousand one hundred thirty-one'), (2464, 35456, 'thirty-five thousand four hundred fifty-six'), (2465, 64523, 'sixty-four thousand five hundred twenty-three'), (2466, 72571, 'seventy-two thousand five hundred seventy-one'), (2467, 54026, 'fifty-four thousand twenty-six'), (2468, 61926, 'sixty-one thousand nine hundred twenty-six'), (2469, 62152, 'sixty-two thousand one hundred fifty-two'), (2470, 80596, 'eighty thousand five hundred ninety-six'), (2471, 89606, 'eighty-nine thousand six hundred six'), (2472, 72678, 'seventy-two thousand six hundred seventy-eight'), (2473, 71118, 'seventy-one thousand one hundred eighteen'), (2474, 28079, 'twenty-eight thousand seventy-nine'), (2475, 95003, 'ninety-five thousand three'), (2476, 42831, 'forty-two thousand eight hundred thirty-one'), (2477, 98044, 'ninety-eight thousand forty-four'), (2478, 3162, 'three thousand one hundred sixty-two'), (2479, 10492, 'ten thousand four hundred ninety-two'), (2480, 87908, 'eighty-seven thousand nine hundred eight'), (2481, 53349, 'fifty-three thousand three hundred forty-nine'), (2482, 68224, 'sixty-eight thousand two hundred twenty-four'), (2483, 37751, 'thirty-seven thousand seven hundred fifty-one'), (2484, 18702, 'eighteen thousand seven hundred two'), (2485, 45334, 'forty-five thousand three hundred thirty-four'), (2486, 24824, 'twenty-four thousand eight hundred twenty-four'), (2487, 45140, 'forty-five thousand one hundred forty'), (2488, 71423, 'seventy-one thousand four hundred twenty-three'), (2489, 52624, 'fifty-two thousand six hundred twenty-four'), (2490, 35072, 'thirty-five thousand seventy-two'), (2491, 22552, 'twenty-two thousand five hundred fifty-two'), (2492, 42079, 'forty-two thousand seventy-nine'), (2493, 59778, 'fifty-nine thousand seven hundred seventy-eight'), (2494, 67390, 'sixty-seven thousand three hundred ninety'), (2495, 30808, 'thirty thousand eight hundred eight'), (2496, 49898, 'forty-nine thousand eight hundred ninety-eight'), (2497, 26281, 'twenty-six thousand two hundred eighty-one'), (2498, 68377, 'sixty-eight thousand three hundred seventy-seven'), (2499, 86484, 'eighty-six thousand four hundred eighty-four'), (2500, 68605, 'sixty-eight thousand six hundred five'), (2501, 97418, 'ninety-seven thousand four hundred eighteen'), (2502, 13303, 'thirteen thousand three hundred three'), (2503, 11002, 'eleven thousand two'), (2504, 8381, 'eight thousand three hundred eighty-one'), (2505, 55441, 'fifty-five thousand four hundred forty-one'), (2506, 74873, 'seventy-four thousand eight hundred seventy-three'), (2507, 62879, 'sixty-two thousand eight hundred seventy-nine'), (2508, 63232, 'sixty-three thousand two hundred thirty-two'), (2509, 1313, 'one thousand three hundred thirteen'), (2510, 8467, 'eight thousand four hundred sixty-seven'), (2511, 78551, 'seventy-eight thousand five hundred fifty-one'), (2512, 80986, 'eighty thousand nine hundred eighty-six'), (2513, 63983, 'sixty-three thousand nine hundred eighty-three'), (2514, 67781, 'sixty-seven thousand seven hundred eighty-one'), (2515, 55836, 'fifty-five thousand eight hundred thirty-six'), (2516, 48712, 'forty-eight thousand seven hundred twelve'), (2517, 86037, 'eighty-six thousand thirty-seven'), (2518, 88278, 'eighty-eight thousand two hundred seventy-eight'), (2519, 28253, 'twenty-eight thousand two hundred fifty-three'), (2520, 40539, 'forty thousand five hundred thirty-nine'), (2521, 41034, 'forty-one thousand thirty-four'), (2522, 74231, 'seventy-four thousand two hundred thirty-one'), (2523, 69400, 'sixty-nine thousand four hundred'), (2524, 82757, 'eighty-two thousand seven hundred fifty-seven'), (2525, 10172, 'ten thousand one hundred seventy-two'), (2526, 61081, 'sixty-one thousand eighty-one'), (2527, 35435, 'thirty-five thousand four hundred thirty-five'), (2528, 65370, 'sixty-five thousand three hundred seventy'), (2529, 65570, 'sixty-five thousand five hundred seventy'), (2530, 9468, 'nine thousand four hundred sixty-eight'), (2531, 30798, 'thirty thousand seven hundred ninety-eight'), (2532, 3973, 'three thousand nine hundred seventy-three'), (2533, 98690, 'ninety-eight thousand six hundred ninety'), (2534, 42091, 'forty-two thousand ninety-one'), (2535, 93808, 'ninety-three thousand eight hundred eight'), (2536, 34476, 'thirty-four thousand four hundred seventy-six'), (2537, 94435, 'ninety-four thousand four hundred thirty-five'), (2538, 65549, 'sixty-five thousand five hundred forty-nine'), (2539, 17697, 'seventeen thousand six hundred ninety-seven'), (2540, 89480, 'eighty-nine thousand four hundred eighty'), (2541, 48800, 'forty-eight thousand eight hundred'), (2542, 39972, 'thirty-nine thousand nine hundred seventy-two'), (2543, 30739, 'thirty thousand seven hundred thirty-nine'), (2544, 69585, 'sixty-nine thousand five hundred eighty-five'), (2545, 78525, 'seventy-eight thousand five hundred twenty-five'), (2546, 93131, 'ninety-three thousand one hundred thirty-one'), (2547, 50469, 'fifty thousand four hundred sixty-nine'), (2548, 54221, 'fifty-four thousand two hundred twenty-one'), (2549, 47721, 'forty-seven thousand seven hundred twenty-one'), (2550, 44819, 'forty-four thousand eight hundred nineteen'), (2551, 66606, 'sixty-six thousand six hundred six'), (2552, 21323, 'twenty-one thousand three hundred twenty-three'), (2553, 80810, 'eighty thousand eight hundred ten'), (2554, 49582, 'forty-nine thousand five hundred eighty-two'), (2555, 89194, 'eighty-nine thousand one hundred ninety-four'), (2556, 33832, 'thirty-three thousand eight hundred thirty-two'), (2557, 42125, 'forty-two thousand one hundred twenty-five'), (2558, 98532, 'ninety-eight thousand five hundred thirty-two'), (2559, 16766, 'sixteen thousand seven hundred sixty-six'), (2560, 42094, 'forty-two thousand ninety-four'), (2561, 18849, 'eighteen thousand eight hundred forty-nine'), (2562, 51779, 'fifty-one thousand seven hundred seventy-nine'), (2563, 57940, 'fifty-seven thousand nine hundred forty'), (2564, 53670, 'fifty-three thousand six hundred seventy'), (2565, 64193, 'sixty-four thousand one hundred ninety-three'), (2566, 7027, 'seven thousand twenty-seven'), (2567, 12283, 'twelve thousand two hundred eighty-three'), (2568, 21365, 'twenty-one thousand three hundred sixty-five'), (2569, 69557, 'sixty-nine thousand five hundred fifty-seven'), (2570, 1114, 'one thousand one hundred fourteen'), (2571, 26469, 'twenty-six thousand four hundred sixty-nine'), (2572, 80281, 'eighty thousand two hundred eighty-one'), (2573, 56680, 'fifty-six thousand six hundred eighty'), (2574, 33364, 'thirty-three thousand three hundred sixty-four'), (2575, 51200, 'fifty-one thousand two hundred'), (2576, 87117, 'eighty-seven thousand one hundred seventeen'), (2577, 67931, 'sixty-seven thousand nine hundred thirty-one'), (2578, 95004, 'ninety-five thousand four'), (2579, 77494, 'seventy-seven thousand four hundred ninety-four'), (2580, 16408, 'sixteen thousand four hundred eight'), (2581, 93608, 'ninety-three thousand six hundred eight'), (2582, 53734, 'fifty-three thousand seven hundred thirty-four'), (2583, 9750, 'nine thousand seven hundred fifty'), (2584, 15555, 'fifteen thousand five hundred fifty-five'), (2585, 40888, 'forty thousand eight hundred eighty-eight'), (2586, 21758, 'twenty-one thousand seven hundred fifty-eight'), (2587, 36876, 'thirty-six thousand eight hundred seventy-six'), (2588, 71094, 'seventy-one thousand ninety-four'), (2589, 71363, 'seventy-one thousand three hundred sixty-three'), (2590, 24553, 'twenty-four thousand five hundred fifty-three'), (2591, 73931, 'seventy-three thousand nine hundred thirty-one'), (2592, 15314, 'fifteen thousand three hundred fourteen'), (2593, 97503, 'ninety-seven thousand five hundred three'), (2594, 25189, 'twenty-five thousand one hundred eighty-nine'), (2595, 8199, 'eight thousand one hundred ninety-nine'), (2596, 68451, 'sixty-eight thousand four hundred fifty-one'), (2597, 70192, 'seventy thousand one hundred ninety-two'), (2598, 46664, 'forty-six thousand six hundred sixty-four'), (2599, 42059, 'forty-two thousand fifty-nine'), (2600, 45616, 'forty-five thousand six hundred sixteen'), (2601, 5874, 'five thousand eight hundred seventy-four'), (2602, 15960, 'fifteen thousand nine hundred sixty'), (2603, 34898, 'thirty-four thousand eight hundred ninety-eight'), (2604, 55412, 'fifty-five thousand four hundred twelve'), (2605, 6590, 'six thousand five hundred ninety'), (2606, 45220, 'forty-five thousand two hundred twenty'), (2607, 29499, 'twenty-nine thousand four hundred ninety-nine'), (2608, 51342, 'fifty-one thousand three hundred forty-two'), (2609, 8705, 'eight thousand seven hundred five'), (2610, 45853, 'forty-five thousand eight hundred fifty-three'), (2611, 35279, 'thirty-five thousand two hundred seventy-nine'), (2612, 62318, 'sixty-two thousand three hundred eighteen'), (2613, 66736, 'sixty-six thousand seven hundred thirty-six'), (2614, 45988, 'forty-five thousand nine hundred eighty-eight'), (2615, 94586, 'ninety-four thousand five hundred eighty-six'), (2616, 21116, 'twenty-one thousand one hundred sixteen'), (2617, 1804, 'one thousand eight hundred four'), (2618, 24905, 'twenty-four thousand nine hundred five'), (2619, 88957, 'eighty-eight thousand nine hundred fifty-seven'), (2620, 58175, 'fifty-eight thousand one hundred seventy-five'), (2621, 85473, 'eighty-five thousand four hundred seventy-three'), (2622, 74166, 'seventy-four thousand one hundred sixty-six'), (2623, 74461, 'seventy-four thousand four hundred sixty-one'), (2624, 40501, 'forty thousand five hundred one'), (2625, 43541, 'forty-three thousand five hundred forty-one'), (2626, 85325, 'eighty-five thousand three hundred twenty-five'), (2627, 95640, 'ninety-five thousand six hundred forty'), (2628, 75868, 'seventy-five thousand eight hundred sixty-eight'), (2629, 69109, 'sixty-nine thousand one hundred nine'), (2630, 53050, 'fifty-three thousand fifty'), (2631, 14024, 'fourteen thousand twenty-four'), (2632, 13679, 'thirteen thousand six hundred seventy-nine'), (2633, 67620, 'sixty-seven thousand six hundred twenty'), (2634, 32305, 'thirty-two thousand three hundred five'), (2635, 61720, 'sixty-one thousand seven hundred twenty'), (2636, 80107, 'eighty thousand one hundred seven'), (2637, 82722, 'eighty-two thousand seven hundred twenty-two'), (2638, 51847, 'fifty-one thousand eight hundred forty-seven'), (2639, 8453, 'eight thousand four hundred fifty-three'), (2640, 30105, 'thirty thousand one hundred five'), (2641, 41861, 'forty-one thousand eight hundred sixty-one'), (2642, 93561, 'ninety-three thousand five hundred sixty-one'), (2643, 75440, 'seventy-five thousand four hundred forty'), (2644, 22876, 'twenty-two thousand eight hundred seventy-six'), (2645, 6604, 'six thousand six hundred four'), (2646, 95596, 'ninety-five thousand five hundred ninety-six'), (2647, 19414, 'nineteen thousand four hundred fourteen'), (2648, 77905, 'seventy-seven thousand nine hundred five'), (2649, 92789, 'ninety-two thousand seven hundred eighty-nine'), (2650, 20860, 'twenty thousand eight hundred sixty'), (2651, 99286, 'ninety-nine thousand two hundred eighty-six'), (2652, 29996, 'twenty-nine thousand nine hundred ninety-six'), (2653, 15159, 'fifteen thousand one hundred fifty-nine'), (2654, 99606, 'ninety-nine thousand six hundred six'), (2655, 54128, 'fifty-four thousand one hundred twenty-eight'), (2656, 77405, 'seventy-seven thousand four hundred five'), (2657, 15625, 'fifteen thousand six hundred twenty-five'), (2658, 1525, 'one thousand five hundred twenty-five'), (2659, 34244, 'thirty-four thousand two hundred forty-four'), (2660, 38687, 'thirty-eight thousand six hundred eighty-seven'), (2661, 98998, 'ninety-eight thousand nine hundred ninety-eight'), (2662, 98698, 'ninety-eight thousand six hundred ninety-eight'), (2663, 3920, 'three thousand nine hundred twenty'), (2664, 2, 'two'), (2665, 91857, 'ninety-one thousand eight hundred fifty-seven'), (2666, 23195, 'twenty-three thousand one hundred ninety-five'), (2667, 49499, 'forty-nine thousand four hundred ninety-nine'), (2668, 20086, 'twenty thousand eighty-six'), (2669, 97756, 'ninety-seven thousand seven hundred fifty-six'), (2670, 19579, 'nineteen thousand five hundred seventy-nine'), (2671, 41971, 'forty-one thousand nine hundred seventy-one'), (2672, 45456, 'forty-five thousand four hundred fifty-six'), (2673, 86745, 'eighty-six thousand seven hundred forty-five'), (2674, 65633, 'sixty-five thousand six hundred thirty-three'), (2675, 36789, 'thirty-six thousand seven hundred eighty-nine'), (2676, 76483, 'seventy-six thousand four hundred eighty-three'), (2677, 36356, 'thirty-six thousand three hundred fifty-six'), (2678, 98591, 'ninety-eight thousand five hundred ninety-one'), (2679, 44868, 'forty-four thousand eight hundred sixty-eight'), (2680, 3562, 'three thousand five hundred sixty-two'), (2681, 22007, 'twenty-two thousand seven'), (2682, 9310, 'nine thousand three hundred ten'), (2683, 20270, 'twenty thousand two hundred seventy'), (2684, 3926, 'three thousand nine hundred twenty-six'), (2685, 66696, 'sixty-six thousand six hundred ninety-six'), (2686, 28671, 'twenty-eight thousand six hundred seventy-one'), (2687, 72817, 'seventy-two thousand eight hundred seventeen'), (2688, 89783, 'eighty-nine thousand seven hundred eighty-three'), (2689, 15300, 'fifteen thousand three hundred'), (2690, 18812, 'eighteen thousand eight hundred twelve'), (2691, 44985, 'forty-four thousand nine hundred eighty-five'), (2692, 82912, 'eighty-two thousand nine hundred twelve'), (2693, 62118, 'sixty-two thousand one hundred eighteen'), (2694, 18031, 'eighteen thousand thirty-one'), (2695, 71084, 'seventy-one thousand eighty-four'), (2696, 45924, 'forty-five thousand nine hundred twenty-four'), (2697, 36912, 'thirty-six thousand nine hundred twelve'), (2698, 44209, 'forty-four thousand two hundred nine'), (2699, 88553, 'eighty-eight thousand five hundred fifty-three'), (2700, 73660, 'seventy-three thousand six hundred sixty'), (2701, 94137, 'ninety-four thousand one hundred thirty-seven'), (2702, 88150, 'eighty-eight thousand one hundred fifty'), (2703, 59646, 'fifty-nine thousand six hundred forty-six'), (2704, 64108, 'sixty-four thousand one hundred eight'), (2705, 39472, 'thirty-nine thousand four hundred seventy-two'), (2706, 69953, 'sixty-nine thousand nine hundred fifty-three'), (2707, 74597, 'seventy-four thousand five hundred ninety-seven'), (2708, 88306, 'eighty-eight thousand three hundred six'), (2709, 67164, 'sixty-seven thousand one hundred sixty-four'), (2710, 44767, 'forty-four thousand seven hundred sixty-seven'), (2711, 21537, 'twenty-one thousand five hundred thirty-seven'), (2712, 21814, 'twenty-one thousand eight hundred fourteen'), (2713, 30743, 'thirty thousand seven hundred forty-three'), (2714, 62130, 'sixty-two thousand one hundred thirty'), (2715, 5202, 'five thousand two hundred two'), (2716, 5298, 'five thousand two hundred ninety-eight'), (2717, 38591, 'thirty-eight thousand five hundred ninety-one'), (2718, 44341, 'forty-four thousand three hundred forty-one'), (2719, 25784, 'twenty-five thousand seven hundred eighty-four'), (2720, 65934, 'sixty-five thousand nine hundred thirty-four'), (2721, 84085, 'eighty-four thousand eighty-five'), (2722, 5445, 'five thousand four hundred forty-five'), (2723, 92558, 'ninety-two thousand five hundred fifty-eight'), (2724, 41297, 'forty-one thousand two hundred ninety-seven'), (2725, 92501, 'ninety-two thousand five hundred one'), (2726, 65477, 'sixty-five thousand four hundred seventy-seven'), (2727, 14831, 'fourteen thousand eight hundred thirty-one'), (2728, 17597, 'seventeen thousand five hundred ninety-seven'), (2729, 18997, 'eighteen thousand nine hundred ninety-seven'), (2730, 23019, 'twenty-three thousand nineteen'), (2731, 29811, 'twenty-nine thousand eight hundred eleven'), (2732, 91076, 'ninety-one thousand seventy-six'), (2733, 73795, 'seventy-three thousand seven hundred ninety-five'), (2734, 48080, 'forty-eight thousand eighty'), (2735, 33473, 'thirty-three thousand four hundred seventy-three'), (2736, 20578, 'twenty thousand five hundred seventy-eight'), (2737, 26740, 'twenty-six thousand seven hundred forty'), (2738, 30309, 'thirty thousand three hundred nine'), (2739, 58713, 'fifty-eight thousand seven hundred thirteen'), (2740, 30816, 'thirty thousand eight hundred sixteen'), (2741, 78961, 'seventy-eight thousand nine hundred sixty-one'), (2742, 17980, 'seventeen thousand nine hundred eighty'), (2743, 62725, 'sixty-two thousand seven hundred twenty-five'), (2744, 42900, 'forty-two thousand nine hundred'), (2745, 12795, 'twelve thousand seven hundred ninety-five'), (2746, 30167, 'thirty thousand one hundred sixty-seven'), (2747, 98000, 'ninety-eight thousand'), (2748, 31452, 'thirty-one thousand four hundred fifty-two'), (2749, 50181, 'fifty thousand one hundred eighty-one'), (2750, 20346, 'twenty thousand three hundred forty-six'), (2751, 76642, 'seventy-six thousand six hundred forty-two'), (2752, 23856, 'twenty-three thousand eight hundred fifty-six'), (2753, 12872, 'twelve thousand eight hundred seventy-two'), (2754, 28961, 'twenty-eight thousand nine hundred sixty-one'), (2755, 65273, 'sixty-five thousand two hundred seventy-three'), (2756, 83360, 'eighty-three thousand three hundred sixty'), (2757, 3413, 'three thousand four hundred thirteen'), (2758, 18407, 'eighteen thousand four hundred seven'), (2759, 74015, 'seventy-four thousand fifteen'), (2760, 61982, 'sixty-one thousand nine hundred eighty-two'), (2761, 42140, 'forty-two thousand one hundred forty'), (2762, 15807, 'fifteen thousand eight hundred seven'), (2763, 97705, 'ninety-seven thousand seven hundred five'), (2764, 78911, 'seventy-eight thousand nine hundred eleven'), (2765, 91429, 'ninety-one thousand four hundred twenty-nine'), (2766, 11774, 'eleven thousand seven hundred seventy-four'), (2767, 34703, 'thirty-four thousand seven hundred three'), (2768, 59228, 'fifty-nine thousand two hundred twenty-eight'), (2769, 77844, 'seventy-seven thousand eight hundred forty-four'), (2770, 22568, 'twenty-two thousand five hundred sixty-eight'), (2771, 71347, 'seventy-one thousand three hundred forty-seven'), (2772, 65482, 'sixty-five thousand four hundred eighty-two'), (2773, 13520, 'thirteen thousand five hundred twenty'), (2774, 33718, 'thirty-three thousand seven hundred eighteen'), (2775, 71037, 'seventy-one thousand thirty-seven'), (2776, 64303, 'sixty-four thousand three hundred three'), (2777, 30809, 'thirty thousand eight hundred nine'), (2778, 37571, 'thirty-seven thousand five hundred seventy-one'), (2779, 5279, 'five thousand two hundred seventy-nine'), (2780, 60787, 'sixty thousand seven hundred eighty-seven'), (2781, 61872, 'sixty-one thousand eight hundred seventy-two'), (2782, 71610, 'seventy-one thousand six hundred ten'), (2783, 22146, 'twenty-two thousand one hundred forty-six'), (2784, 63599, 'sixty-three thousand five hundred ninety-nine'), (2785, 72064, 'seventy-two thousand sixty-four'), (2786, 55081, 'fifty-five thousand eighty-one'), (2787, 52846, 'fifty-two thousand eight hundred forty-six'), (2788, 98065, 'ninety-eight thousand sixty-five'), (2789, 30484, 'thirty thousand four hundred eighty-four'), (2790, 38907, 'thirty-eight thousand nine hundred seven'), (2791, 46554, 'forty-six thousand five hundred fifty-four'), (2792, 59014, 'fifty-nine thousand fourteen'), (2793, 65648, 'sixty-five thousand six hundred forty-eight'), (2794, 74065, 'seventy-four thousand sixty-five'), (2795, 17116, 'seventeen thousand one hundred sixteen'), (2796, 38993, 'thirty-eight thousand nine hundred ninety-three'), (2797, 21715, 'twenty-one thousand seven hundred fifteen'), (2798, 15477, 'fifteen thousand four hundred seventy-seven'), (2799, 4544, 'four thousand five hundred forty-four'), (2800, 75787, 'seventy-five thousand seven hundred eighty-seven'), (2801, 59319, 'fifty-nine thousand three hundred nineteen'), (2802, 96873, 'ninety-six thousand eight hundred seventy-three'), (2803, 24004, 'twenty-four thousand four'), (2804, 63353, 'sixty-three thousand three hundred fifty-three'), (2805, 96846, 'ninety-six thousand eight hundred forty-six'), (2806, 57281, 'fifty-seven thousand two hundred eighty-one'), (2807, 93566, 'ninety-three thousand five hundred sixty-six'), (2808, 15708, 'fifteen thousand seven hundred eight'), (2809, 46292, 'forty-six thousand two hundred ninety-two'), (2810, 78479, 'seventy-eight thousand four hundred seventy-nine'), (2811, 37086, 'thirty-seven thousand eighty-six'), (2812, 81103, 'eighty-one thousand one hundred three'), (2813, 90998, 'ninety thousand nine hundred ninety-eight'), (2814, 97436, 'ninety-seven thousand four hundred thirty-six'), (2815, 32908, 'thirty-two thousand nine hundred eight'), (2816, 51525, 'fifty-one thousand five hundred twenty-five'), (2817, 97632, 'ninety-seven thousand six hundred thirty-two'), (2818, 97160, 'ninety-seven thousand one hundred sixty'), (2819, 23392, 'twenty-three thousand three hundred ninety-two'), (2820, 80278, 'eighty thousand two hundred seventy-eight'), (2821, 60041, 'sixty thousand forty-one'), (2822, 38382, 'thirty-eight thousand three hundred eighty-two'), (2823, 61360, 'sixty-one thousand three hundred sixty'), (2824, 44477, 'forty-four thousand four hundred seventy-seven'), (2825, 93896, 'ninety-three thousand eight hundred ninety-six'), (2826, 67062, 'sixty-seven thousand sixty-two'), (2827, 59706, 'fifty-nine thousand seven hundred six'), (2828, 99114, 'ninety-nine thousand one hundred fourteen'), (2829, 85310, 'eighty-five thousand three hundred ten'), (2830, 86574, 'eighty-six thousand five hundred seventy-four'), (2831, 57310, 'fifty-seven thousand three hundred ten'), (2832, 83371, 'eighty-three thousand three hundred seventy-one'), (2833, 92203, 'ninety-two thousand two hundred three'), (2834, 58493, 'fifty-eight thousand four hundred ninety-three'), (2835, 14561, 'fourteen thousand five hundred sixty-one'), (2836, 74188, 'seventy-four thousand one hundred eighty-eight'), (2837, 56285, 'fifty-six thousand two hundred eighty-five'), (2838, 97663, 'ninety-seven thousand six hundred sixty-three'), (2839, 70747, 'seventy thousand seven hundred forty-seven'), (2840, 51624, 'fifty-one thousand six hundred twenty-four'), (2841, 60717, 'sixty thousand seven hundred seventeen'), (2842, 79443, 'seventy-nine thousand four hundred forty-three'), (2843, 38812, 'thirty-eight thousand eight hundred twelve'), (2844, 53715, 'fifty-three thousand seven hundred fifteen'), (2845, 46403, 'forty-six thousand four hundred three'), (2846, 10139, 'ten thousand one hundred thirty-nine'), (2847, 57390, 'fifty-seven thousand three hundred ninety'), (2848, 60862, 'sixty thousand eight hundred sixty-two'), (2849, 7243, 'seven thousand two hundred forty-three'), (2850, 92790, 'ninety-two thousand seven hundred ninety'), (2851, 19055, 'nineteen thousand fifty-five'), (2852, 10827, 'ten thousand eight hundred twenty-seven'), (2853, 38979, 'thirty-eight thousand nine hundred seventy-nine'), (2854, 24786, 'twenty-four thousand seven hundred eighty-six'), (2855, 22515, 'twenty-two thousand five hundred fifteen'), (2856, 71199, 'seventy-one thousand one hundred ninety-nine'), (2857, 84471, 'eighty-four thousand four hundred seventy-one'), (2858, 84750, 'eighty-four thousand seven hundred fifty'), (2859, 35002, 'thirty-five thousand two'), (2860, 50215, 'fifty thousand two hundred fifteen'), (2861, 66801, 'sixty-six thousand eight hundred one'), (2862, 40186, 'forty thousand one hundred eighty-six'), (2863, 86213, 'eighty-six thousand two hundred thirteen'), (2864, 38960, 'thirty-eight thousand nine hundred sixty'), (2865, 2641, 'two thousand six hundred forty-one'), (2866, 88520, 'eighty-eight thousand five hundred twenty'), (2867, 99257, 'ninety-nine thousand two hundred fifty-seven'), (2868, 69547, 'sixty-nine thousand five hundred forty-seven'), (2869, 13986, 'thirteen thousand nine hundred eighty-six'), (2870, 63408, 'sixty-three thousand four hundred eight'), (2871, 39134, 'thirty-nine thousand one hundred thirty-four'), (2872, 94940, 'ninety-four thousand nine hundred forty'), (2873, 62101, 'sixty-two thousand one hundred one'), (2874, 85013, 'eighty-five thousand thirteen'), (2875, 3429, 'three thousand four hundred twenty-nine'), (2876, 2082, 'two thousand eighty-two'), (2877, 73703, 'seventy-three thousand seven hundred three'), (2878, 56579, 'fifty-six thousand five hundred seventy-nine'), (2879, 8304, 'eight thousand three hundred four'), (2880, 24126, 'twenty-four thousand one hundred twenty-six'), (2881, 73590, 'seventy-three thousand five hundred ninety'), (2882, 53523, 'fifty-three thousand five hundred twenty-three'), (2883, 35807, 'thirty-five thousand eight hundred seven'), (2884, 73785, 'seventy-three thousand seven hundred eighty-five'), (2885, 29535, 'twenty-nine thousand five hundred thirty-five'), (2886, 45575, 'forty-five thousand five hundred seventy-five'), (2887, 11998, 'eleven thousand nine hundred ninety-eight'), (2888, 80544, 'eighty thousand five hundred forty-four'), (2889, 27665, 'twenty-seven thousand six hundred sixty-five'), (2890, 89301, 'eighty-nine thousand three hundred one'), (2891, 98443, 'ninety-eight thousand four hundred forty-three'), (2892, 46410, 'forty-six thousand four hundred ten'), (2893, 55437, 'fifty-five thousand four hundred thirty-seven'), (2894, 20985, 'twenty thousand nine hundred eighty-five'), (2895, 26558, 'twenty-six thousand five hundred fifty-eight'), (2896, 43405, 'forty-three thousand four hundred five'), (2897, 35451, 'thirty-five thousand four hundred fifty-one'), (2898, 91920, 'ninety-one thousand nine hundred twenty'), (2899, 16981, 'sixteen thousand nine hundred eighty-one'), (2900, 51626, 'fifty-one thousand six hundred twenty-six'), (2901, 15867, 'fifteen thousand eight hundred sixty-seven'), (2902, 1917, 'one thousand nine hundred seventeen'), (2903, 3598, 'three thousand five hundred ninety-eight'), (2904, 6021, 'six thousand twenty-one'), (2905, 58385, 'fifty-eight thousand three hundred eighty-five'), (2906, 91305, 'ninety-one thousand three hundred five'), (2907, 80849, 'eighty thousand eight hundred forty-nine'), (2908, 2038, 'two thousand thirty-eight'), (2909, 74335, 'seventy-four thousand three hundred thirty-five'), (2910, 18766, 'eighteen thousand seven hundred sixty-six'), (2911, 92557, 'ninety-two thousand five hundred fifty-seven'), (2912, 60464, 'sixty thousand four hundred sixty-four'), (2913, 29183, 'twenty-nine thousand one hundred eighty-three'), (2914, 68522, 'sixty-eight thousand five hundred twenty-two'), (2915, 8023, 'eight thousand twenty-three'), (2916, 92844, 'ninety-two thousand eight hundred forty-four'), (2917, 60176, 'sixty thousand one hundred seventy-six'), (2918, 27847, 'twenty-seven thousand eight hundred forty-seven'), (2919, 61306, 'sixty-one thousand three hundred six'), (2920, 1652, 'one thousand six hundred fifty-two'), (2921, 83708, 'eighty-three thousand seven hundred eight'), (2922, 17423, 'seventeen thousand four hundred twenty-three'), (2923, 28731, 'twenty-eight thousand seven hundred thirty-one'), (2924, 84517, 'eighty-four thousand five hundred seventeen'), (2925, 91257, 'ninety-one thousand two hundred fifty-seven'), (2926, 102, 'one hundred two'), (2927, 55034, 'fifty-five thousand thirty-four'), (2928, 58807, 'fifty-eight thousand eight hundred seven'), (2929, 67341, 'sixty-seven thousand three hundred forty-one'), (2930, 26924, 'twenty-six thousand nine hundred twenty-four'), (2931, 5980, 'five thousand nine hundred eighty'), (2932, 84936, 'eighty-four thousand nine hundred thirty-six'), (2933, 74198, 'seventy-four thousand one hundred ninety-eight'), (2934, 88469, 'eighty-eight thousand four hundred sixty-nine'), (2935, 59988, 'fifty-nine thousand nine hundred eighty-eight'), (2936, 96305, 'ninety-six thousand three hundred five'), (2937, 36534, 'thirty-six thousand five hundred thirty-four'), (2938, 96565, 'ninety-six thousand five hundred sixty-five'), (2939, 63601, 'sixty-three thousand six hundred one'), (2940, 74848, 'seventy-four thousand eight hundred forty-eight'), (2941, 3419, 'three thousand four hundred nineteen'), (2942, 46979, 'forty-six thousand nine hundred seventy-nine'), (2943, 70502, 'seventy thousand five hundred two'), (2944, 67926, 'sixty-seven thousand nine hundred twenty-six'), (2945, 3646, 'three thousand six hundred forty-six'), (2946, 23691, 'twenty-three thousand six hundred ninety-one'), (2947, 46257, 'forty-six thousand two hundred fifty-seven'), (2948, 24501, 'twenty-four thousand five hundred one'), (2949, 87797, 'eighty-seven thousand seven hundred ninety-seven'), (2950, 65232, 'sixty-five thousand two hundred thirty-two'), (2951, 61134, 'sixty-one thousand one hundred thirty-four'), (2952, 6112, 'six thousand one hundred twelve'), (2953, 80928, 'eighty thousand nine hundred twenty-eight'), (2954, 29115, 'twenty-nine thousand one hundred fifteen'), (2955, 39090, 'thirty-nine thousand ninety'), (2956, 59496, 'fifty-nine thousand four hundred ninety-six'), (2957, 96603, 'ninety-six thousand six hundred three'), (2958, 61338, 'sixty-one thousand three hundred thirty-eight'), (2959, 89053, 'eighty-nine thousand fifty-three'), (2960, 16712, 'sixteen thousand seven hundred twelve'), (2961, 18896, 'eighteen thousand eight hundred ninety-six'), (2962, 43642, 'forty-three thousand six hundred forty-two'), (2963, 82354, 'eighty-two thousand three hundred fifty-four'), (2964, 29710, 'twenty-nine thousand seven hundred ten'), (2965, 40168, 'forty thousand one hundred sixty-eight'), (2966, 77207, 'seventy-seven thousand two hundred seven'), (2967, 57743, 'fifty-seven thousand seven hundred forty-three'), (2968, 35097, 'thirty-five thousand ninety-seven'), (2969, 23686, 'twenty-three thousand six hundred eighty-six'), (2970, 18806, 'eighteen thousand eight hundred six'), (2971, 3162, 'three thousand one hundred sixty-two'), (2972, 38435, 'thirty-eight thousand four hundred thirty-five'), (2973, 90663, 'ninety thousand six hundred sixty-three'), (2974, 37123, 'thirty-seven thousand one hundred twenty-three'), (2975, 17443, 'seventeen thousand four hundred forty-three'), (2976, 69930, 'sixty-nine thousand nine hundred thirty'), (2977, 36756, 'thirty-six thousand seven hundred fifty-six'), (2978, 47146, 'forty-seven thousand one hundred forty-six'), (2979, 82587, 'eighty-two thousand five hundred eighty-seven'), (2980, 51656, 'fifty-one thousand six hundred fifty-six'), (2981, 36488, 'thirty-six thousand four hundred eighty-eight'), (2982, 15389, 'fifteen thousand three hundred eighty-nine'), (2983, 10391, 'ten thousand three hundred ninety-one'), (2984, 57071, 'fifty-seven thousand seventy-one'), (2985, 5693, 'five thousand six hundred ninety-three'), (2986, 91681, 'ninety-one thousand six hundred eighty-one'), (2987, 14795, 'fourteen thousand seven hundred ninety-five'), (2988, 98622, 'ninety-eight thousand six hundred twenty-two'), (2989, 80049, 'eighty thousand forty-nine'), (2990, 79991, 'seventy-nine thousand nine hundred ninety-one'), (2991, 16058, 'sixteen thousand fifty-eight'), (2992, 84106, 'eighty-four thousand one hundred six'), (2993, 11367, 'eleven thousand three hundred sixty-seven'), (2994, 96630, 'ninety-six thousand six hundred thirty'), (2995, 60407, 'sixty thousand four hundred seven'), (2996, 96793, 'ninety-six thousand seven hundred ninety-three'), (2997, 11440, 'eleven thousand four hundred forty'), (2998, 92353, 'ninety-two thousand three hundred fifty-three'), (2999, 12279, 'twelve thousand two hundred seventy-nine'), (3000, 83061, 'eighty-three thousand sixty-one'), (3001, 93474, 'ninety-three thousand four hundred seventy-four'), (3002, 61141, 'sixty-one thousand one hundred forty-one'), (3003, 94748, 'ninety-four thousand seven hundred forty-eight'), (3004, 15011, 'fifteen thousand eleven'), (3005, 9935, 'nine thousand nine hundred thirty-five'), (3006, 96190, 'ninety-six thousand one hundred ninety'), (3007, 8888, 'eight thousand eight hundred eighty-eight'), (3008, 7642, 'seven thousand six hundred forty-two'), (3009, 7963, 'seven thousand nine hundred sixty-three'), (3010, 89639, 'eighty-nine thousand six hundred thirty-nine'), (3011, 50589, 'fifty thousand five hundred eighty-nine'), (3012, 72397, 'seventy-two thousand three hundred ninety-seven'), (3013, 70401, 'seventy thousand four hundred one'), (3014, 9318, 'nine thousand three hundred eighteen'), (3015, 3896, 'three thousand eight hundred ninety-six'), (3016, 514, 'five hundred fourteen'), (3017, 91559, 'ninety-one thousand five hundred fifty-nine'), (3018, 5144, 'five thousand one hundred forty-four'), (3019, 74807, 'seventy-four thousand eight hundred seven'), (3020, 69331, 'sixty-nine thousand three hundred thirty-one'), (3021, 78478, 'seventy-eight thousand four hundred seventy-eight'), (3022, 54085, 'fifty-four thousand eighty-five'), (3023, 28495, 'twenty-eight thousand four hundred ninety-five'), (3024, 89152, 'eighty-nine thousand one hundred fifty-two'), (3025, 62723, 'sixty-two thousand seven hundred twenty-three'), (3026, 10209, 'ten thousand two hundred nine'), (3027, 75374, 'seventy-five thousand three hundred seventy-four'), (3028, 57968, 'fifty-seven thousand nine hundred sixty-eight'), (3029, 24154, 'twenty-four thousand one hundred fifty-four'), (3030, 42180, 'forty-two thousand one hundred eighty'), (3031, 34365, 'thirty-four thousand three hundred sixty-five'), (3032, 36802, 'thirty-six thousand eight hundred two'), (3033, 10804, 'ten thousand eight hundred four'), (3034, 393, 'three hundred ninety-three'), (3035, 32409, 'thirty-two thousand four hundred nine'), (3036, 24639, 'twenty-four thousand six hundred thirty-nine'), (3037, 31732, 'thirty-one thousand seven hundred thirty-two'), (3038, 93655, 'ninety-three thousand six hundred fifty-five'), (3039, 45352, 'forty-five thousand three hundred fifty-two'), (3040, 71495, 'seventy-one thousand four hundred ninety-five'), (3041, 49125, 'forty-nine thousand one hundred twenty-five'), (3042, 71475, 'seventy-one thousand four hundred seventy-five'), (3043, 88099, 'eighty-eight thousand ninety-nine'), (3044, 2802, 'two thousand eight hundred two'), (3045, 92302, 'ninety-two thousand three hundred two'), (3046, 46223, 'forty-six thousand two hundred twenty-three'), (3047, 49251, 'forty-nine thousand two hundred fifty-one'), (3048, 53096, 'fifty-three thousand ninety-six'), (3049, 6124, 'six thousand one hundred twenty-four'), (3050, 60182, 'sixty thousand one hundred eighty-two'), (3051, 11384, 'eleven thousand three hundred eighty-four'), (3052, 46371, 'forty-six thousand three hundred seventy-one'), (3053, 3496, 'three thousand four hundred ninety-six'), (3054, 75447, 'seventy-five thousand four hundred forty-seven'), (3055, 37564, 'thirty-seven thousand five hundred sixty-four'), (3056, 84478, 'eighty-four thousand four hundred seventy-eight'), (3057, 6359, 'six thousand three hundred fifty-nine'), (3058, 65080, 'sixty-five thousand eighty'), (3059, 82568, 'eighty-two thousand five hundred sixty-eight'), (3060, 38785, 'thirty-eight thousand seven hundred eighty-five'), (3061, 5026, 'five thousand twenty-six'), (3062, 10490, 'ten thousand four hundred ninety'), (3063, 70633, 'seventy thousand six hundred thirty-three'), (3064, 5906, 'five thousand nine hundred six'), (3065, 63913, 'sixty-three thousand nine hundred thirteen'), (3066, 20968, 'twenty thousand nine hundred sixty-eight'), (3067, 76354, 'seventy-six thousand three hundred fifty-four'), (3068, 80536, 'eighty thousand five hundred thirty-six'), (3069, 90110, 'ninety thousand one hundred ten'), (3070, 22153, 'twenty-two thousand one hundred fifty-three'), (3071, 28585, 'twenty-eight thousand five hundred eighty-five'), (3072, 42975, 'forty-two thousand nine hundred seventy-five'), (3073, 60548, 'sixty thousand five hundred forty-eight'), (3074, 35162, 'thirty-five thousand one hundred sixty-two'), (3075, 17299, 'seventeen thousand two hundred ninety-nine'), (3076, 34103, 'thirty-four thousand one hundred three'), (3077, 60403, 'sixty thousand four hundred three'), (3078, 68821, 'sixty-eight thousand eight hundred twenty-one'), (3079, 66551, 'sixty-six thousand five hundred fifty-one'), (3080, 34044, 'thirty-four thousand forty-four'), (3081, 2434, 'two thousand four hundred thirty-four'), (3082, 32678, 'thirty-two thousand six hundred seventy-eight'), (3083, 97573, 'ninety-seven thousand five hundred seventy-three'), (3084, 79730, 'seventy-nine thousand seven hundred thirty'), (3085, 96952, 'ninety-six thousand nine hundred fifty-two'), (3086, 12113, 'twelve thousand one hundred thirteen'), (3087, 86105, 'eighty-six thousand one hundred five'), (3088, 9565, 'nine thousand five hundred sixty-five'), (3089, 2746, 'two thousand seven hundred forty-six'), (3090, 73122, 'seventy-three thousand one hundred twenty-two'), (3091, 76138, 'seventy-six thousand one hundred thirty-eight'), (3092, 83045, 'eighty-three thousand forty-five'), (3093, 72737, 'seventy-two thousand seven hundred thirty-seven'), (3094, 43302, 'forty-three thousand three hundred two'), (3095, 17047, 'seventeen thousand forty-seven'), (3096, 24057, 'twenty-four thousand fifty-seven'), (3097, 55979, 'fifty-five thousand nine hundred seventy-nine'), (3098, 11932, 'eleven thousand nine hundred thirty-two'), (3099, 80004, 'eighty thousand four'), (3100, 56325, 'fifty-six thousand three hundred twenty-five'), (3101, 60659, 'sixty thousand six hundred fifty-nine'), (3102, 95109, 'ninety-five thousand one hundred nine'), (3103, 89053, 'eighty-nine thousand fifty-three'), (3104, 97057, 'ninety-seven thousand fifty-seven'), (3105, 56689, 'fifty-six thousand six hundred eighty-nine'), (3106, 83363, 'eighty-three thousand three hundred sixty-three'), (3107, 11483, 'eleven thousand four hundred eighty-three'), (3108, 90357, 'ninety thousand three hundred fifty-seven'), (3109, 26054, 'twenty-six thousand fifty-four'), (3110, 85082, 'eighty-five thousand eighty-two'), (3111, 24911, 'twenty-four thousand nine hundred eleven'), (3112, 92631, 'ninety-two thousand six hundred thirty-one'), (3113, 21372, 'twenty-one thousand three hundred seventy-two'), (3114, 86961, 'eighty-six thousand nine hundred sixty-one'), (3115, 14489, 'fourteen thousand four hundred eighty-nine'), (3116, 18307, 'eighteen thousand three hundred seven'), (3117, 6507, 'six thousand five hundred seven'), (3118, 15450, 'fifteen thousand four hundred fifty'), (3119, 53337, 'fifty-three thousand three hundred thirty-seven'), (3120, 15581, 'fifteen thousand five hundred eighty-one'), (3121, 46980, 'forty-six thousand nine hundred eighty'), (3122, 39734, 'thirty-nine thousand seven hundred thirty-four'), (3123, 58132, 'fifty-eight thousand one hundred thirty-two'), (3124, 22902, 'twenty-two thousand nine hundred two'), (3125, 77108, 'seventy-seven thousand one hundred eight'), (3126, 27427, 'twenty-seven thousand four hundred twenty-seven'), (3127, 37714, 'thirty-seven thousand seven hundred fourteen'), (3128, 21911, 'twenty-one thousand nine hundred eleven'), (3129, 21458, 'twenty-one thousand four hundred fifty-eight'), (3130, 55137, 'fifty-five thousand one hundred thirty-seven'), (3131, 47173, 'forty-seven thousand one hundred seventy-three'), (3132, 50761, 'fifty thousand seven hundred sixty-one'), (3133, 46622, 'forty-six thousand six hundred twenty-two'), (3134, 40402, 'forty thousand four hundred two'), (3135, 80867, 'eighty thousand eight hundred sixty-seven'), (3136, 76342, 'seventy-six thousand three hundred forty-two'), (3137, 16687, 'sixteen thousand six hundred eighty-seven'), (3138, 73752, 'seventy-three thousand seven hundred fifty-two'), (3139, 39178, 'thirty-nine thousand one hundred seventy-eight'), (3140, 41487, 'forty-one thousand four hundred eighty-seven'), (3141, 24561, 'twenty-four thousand five hundred sixty-one'), (3142, 20612, 'twenty thousand six hundred twelve'), (3143, 87930, 'eighty-seven thousand nine hundred thirty'), (3144, 12138, 'twelve thousand one hundred thirty-eight'), (3145, 3689, 'three thousand six hundred eighty-nine'), (3146, 72938, 'seventy-two thousand nine hundred thirty-eight'), (3147, 69887, 'sixty-nine thousand eight hundred eighty-seven'), (3148, 90716, 'ninety thousand seven hundred sixteen'), (3149, 18817, 'eighteen thousand eight hundred seventeen'), (3150, 46065, 'forty-six thousand sixty-five'), (3151, 86098, 'eighty-six thousand ninety-eight'), (3152, 50593, 'fifty thousand five hundred ninety-three'), (3153, 33024, 'thirty-three thousand twenty-four'), (3154, 31817, 'thirty-one thousand eight hundred seventeen'), (3155, 42271, 'forty-two thousand two hundred seventy-one'), (3156, 11794, 'eleven thousand seven hundred ninety-four'), (3157, 79035, 'seventy-nine thousand thirty-five'), (3158, 69096, 'sixty-nine thousand ninety-six'), (3159, 20828, 'twenty thousand eight hundred twenty-eight'), (3160, 36978, 'thirty-six thousand nine hundred seventy-eight'), (3161, 44827, 'forty-four thousand eight hundred twenty-seven'), (3162, 22940, 'twenty-two thousand nine hundred forty'), (3163, 17136, 'seventeen thousand one hundred thirty-six'), (3164, 91650, 'ninety-one thousand six hundred fifty'), (3165, 61088, 'sixty-one thousand eighty-eight'), (3166, 59033, 'fifty-nine thousand thirty-three'), (3167, 72525, 'seventy-two thousand five hundred twenty-five'), (3168, 59873, 'fifty-nine thousand eight hundred seventy-three'), (3169, 95312, 'ninety-five thousand three hundred twelve'), (3170, 56056, 'fifty-six thousand fifty-six'), (3171, 78722, 'seventy-eight thousand seven hundred twenty-two'), (3172, 70408, 'seventy thousand four hundred eight'), (3173, 79756, 'seventy-nine thousand seven hundred fifty-six'), (3174, 20845, 'twenty thousand eight hundred forty-five'), (3175, 94769, 'ninety-four thousand seven hundred sixty-nine'), (3176, 10242, 'ten thousand two hundred forty-two'), (3177, 28214, 'twenty-eight thousand two hundred fourteen'), (3178, 15220, 'fifteen thousand two hundred twenty'), (3179, 57142, 'fifty-seven thousand one hundred forty-two'), (3180, 8049, 'eight thousand forty-nine'), (3181, 99608, 'ninety-nine thousand six hundred eight'), (3182, 16838, 'sixteen thousand eight hundred thirty-eight'), (3183, 14823, 'fourteen thousand eight hundred twenty-three'), (3184, 95734, 'ninety-five thousand seven hundred thirty-four'), (3185, 49103, 'forty-nine thousand one hundred three'), (3186, 76791, 'seventy-six thousand seven hundred ninety-one'), (3187, 8509, 'eight thousand five hundred nine'), (3188, 84475, 'eighty-four thousand four hundred seventy-five'), (3189, 58753, 'fifty-eight thousand seven hundred fifty-three'), (3190, 36274, 'thirty-six thousand two hundred seventy-four'), (3191, 3981, 'three thousand nine hundred eighty-one'), (3192, 71800, 'seventy-one thousand eight hundred'), (3193, 70992, 'seventy thousand nine hundred ninety-two'), (3194, 94931, 'ninety-four thousand nine hundred thirty-one'), (3195, 28535, 'twenty-eight thousand five hundred thirty-five'), (3196, 41850, 'forty-one thousand eight hundred fifty'), (3197, 12618, 'twelve thousand six hundred eighteen'), (3198, 43481, 'forty-three thousand four hundred eighty-one'), (3199, 67425, 'sixty-seven thousand four hundred twenty-five'), (3200, 21396, 'twenty-one thousand three hundred ninety-six'), (3201, 79411, 'seventy-nine thousand four hundred eleven'), (3202, 36051, 'thirty-six thousand fifty-one'), (3203, 39527, 'thirty-nine thousand five hundred twenty-seven'), (3204, 74647, 'seventy-four thousand six hundred forty-seven'), (3205, 59682, 'fifty-nine thousand six hundred eighty-two'), (3206, 44226, 'forty-four thousand two hundred twenty-six'), (3207, 91876, 'ninety-one thousand eight hundred seventy-six'), (3208, 42268, 'forty-two thousand two hundred sixty-eight'), (3209, 32013, 'thirty-two thousand thirteen'), (3210, 74405, 'seventy-four thousand four hundred five'), (3211, 28426, 'twenty-eight thousand four hundred twenty-six'), (3212, 6638, 'six thousand six hundred thirty-eight'), (3213, 45690, 'forty-five thousand six hundred ninety'), (3214, 43887, 'forty-three thousand eight hundred eighty-seven'), (3215, 70692, 'seventy thousand six hundred ninety-two'), (3216, 75903, 'seventy-five thousand nine hundred three'), (3217, 4733, 'four thousand seven hundred thirty-three'), (3218, 61268, 'sixty-one thousand two hundred sixty-eight'), (3219, 96708, 'ninety-six thousand seven hundred eight'), (3220, 85602, 'eighty-five thousand six hundred two'), (3221, 56994, 'fifty-six thousand nine hundred ninety-four'), (3222, 29897, 'twenty-nine thousand eight hundred ninety-seven'), (3223, 37207, 'thirty-seven thousand two hundred seven'), (3224, 27267, 'twenty-seven thousand two hundred sixty-seven'), (3225, 4364, 'four thousand three hundred sixty-four'), (3226, 4764, 'four thousand seven hundred sixty-four'), (3227, 21280, 'twenty-one thousand two hundred eighty'), (3228, 57894, 'fifty-seven thousand eight hundred ninety-four'), (3229, 97878, 'ninety-seven thousand eight hundred seventy-eight'), (3230, 20265, 'twenty thousand two hundred sixty-five'), (3231, 55906, 'fifty-five thousand nine hundred six'), (3232, 45999, 'forty-five thousand nine hundred ninety-nine'), (3233, 26862, 'twenty-six thousand eight hundred sixty-two'), (3234, 66546, 'sixty-six thousand five hundred forty-six'), (3235, 58681, 'fifty-eight thousand six hundred eighty-one'), (3236, 20634, 'twenty thousand six hundred thirty-four'), (3237, 23165, 'twenty-three thousand one hundred sixty-five'), (3238, 69608, 'sixty-nine thousand six hundred eight'), (3239, 51635, 'fifty-one thousand six hundred thirty-five'), (3240, 78119, 'seventy-eight thousand one hundred nineteen'), (3241, 13103, 'thirteen thousand one hundred three'), (3242, 98193, 'ninety-eight thousand one hundred ninety-three'), (3243, 97710, 'ninety-seven thousand seven hundred ten'), (3244, 39832, 'thirty-nine thousand eight hundred thirty-two'), (3245, 1304, 'one thousand three hundred four'), (3246, 77713, 'seventy-seven thousand seven hundred thirteen'), (3247, 55426, 'fifty-five thousand four hundred twenty-six'), (3248, 30414, 'thirty thousand four hundred fourteen'), (3249, 36097, 'thirty-six thousand ninety-seven'), (3250, 66159, 'sixty-six thousand one hundred fifty-nine'), (3251, 48348, 'forty-eight thousand three hundred forty-eight'), (3252, 24606, 'twenty-four thousand six hundred six'), (3253, 78026, 'seventy-eight thousand twenty-six'), (3254, 33277, 'thirty-three thousand two hundred seventy-seven'), (3255, 13613, 'thirteen thousand six hundred thirteen'), (3256, 22998, 'twenty-two thousand nine hundred ninety-eight'), (3257, 1499, 'one thousand four hundred ninety-nine'), (3258, 54486, 'fifty-four thousand four hundred eighty-six'), (3259, 59699, 'fifty-nine thousand six hundred ninety-nine'), (3260, 89747, 'eighty-nine thousand seven hundred forty-seven'), (3261, 18002, 'eighteen thousand two'), (3262, 46061, 'forty-six thousand sixty-one'), (3263, 34695, 'thirty-four thousand six hundred ninety-five'), (3264, 30017, 'thirty thousand seventeen'), (3265, 24428, 'twenty-four thousand four hundred twenty-eight'), (3266, 50421, 'fifty thousand four hundred twenty-one'), (3267, 14749, 'fourteen thousand seven hundred forty-nine'), (3268, 98725, 'ninety-eight thousand seven hundred twenty-five'), (3269, 52706, 'fifty-two thousand seven hundred six'), (3270, 55253, 'fifty-five thousand two hundred fifty-three'), (3271, 79854, 'seventy-nine thousand eight hundred fifty-four'), (3272, 23774, 'twenty-three thousand seven hundred seventy-four'), (3273, 38704, 'thirty-eight thousand seven hundred four'), (3274, 5778, 'five thousand seven hundred seventy-eight'), (3275, 16180, 'sixteen thousand one hundred eighty'), (3276, 42048, 'forty-two thousand forty-eight'), (3277, 89075, 'eighty-nine thousand seventy-five'), (3278, 88616, 'eighty-eight thousand six hundred sixteen'), (3279, 66289, 'sixty-six thousand two hundred eighty-nine'), (3280, 63549, 'sixty-three thousand five hundred forty-nine'), (3281, 6772, 'six thousand seven hundred seventy-two'), (3282, 88839, 'eighty-eight thousand eight hundred thirty-nine'), (3283, 335, 'three hundred thirty-five'), (3284, 73167, 'seventy-three thousand one hundred sixty-seven'), (3285, 26017, 'twenty-six thousand seventeen'), (3286, 47230, 'forty-seven thousand two hundred thirty'), (3287, 3536, 'three thousand five hundred thirty-six'), (3288, 92717, 'ninety-two thousand seven hundred seventeen'), (3289, 92707, 'ninety-two thousand seven hundred seven'), (3290, 80363, 'eighty thousand three hundred sixty-three'), (3291, 70795, 'seventy thousand seven hundred ninety-five'), (3292, 28974, 'twenty-eight thousand nine hundred seventy-four'), (3293, 98907, 'ninety-eight thousand nine hundred seven'), (3294, 16328, 'sixteen thousand three hundred twenty-eight'), (3295, 52258, 'fifty-two thousand two hundred fifty-eight'), (3296, 10018, 'ten thousand eighteen'), (3297, 76504, 'seventy-six thousand five hundred four'), (3298, 41695, 'forty-one thousand six hundred ninety-five'), (3299, 8079, 'eight thousand seventy-nine'), (3300, 55552, 'fifty-five thousand five hundred fifty-two'), (3301, 59369, 'fifty-nine thousand three hundred sixty-nine'), (3302, 95604, 'ninety-five thousand six hundred four'), (3303, 54871, 'fifty-four thousand eight hundred seventy-one'), (3304, 60447, 'sixty thousand four hundred forty-seven'), (3305, 16541, 'sixteen thousand five hundred forty-one'), (3306, 4792, 'four thousand seven hundred ninety-two'), (3307, 32900, 'thirty-two thousand nine hundred'), (3308, 20302, 'twenty thousand three hundred two'), (3309, 69833, 'sixty-nine thousand eight hundred thirty-three'), (3310, 48982, 'forty-eight thousand nine hundred eighty-two'), (3311, 44646, 'forty-four thousand six hundred forty-six'), (3312, 16740, 'sixteen thousand seven hundred forty'), (3313, 84826, 'eighty-four thousand eight hundred twenty-six'), (3314, 76724, 'seventy-six thousand seven hundred twenty-four'), (3315, 20399, 'twenty thousand three hundred ninety-nine'), (3316, 44189, 'forty-four thousand one hundred eighty-nine'), (3317, 52064, 'fifty-two thousand sixty-four'), (3318, 19888, 'nineteen thousand eight hundred eighty-eight'), (3319, 87260, 'eighty-seven thousand two hundred sixty'), (3320, 60706, 'sixty thousand seven hundred six'), (3321, 11743, 'eleven thousand seven hundred forty-three'), (3322, 98332, 'ninety-eight thousand three hundred thirty-two'), (3323, 98608, 'ninety-eight thousand six hundred eight'), (3324, 12706, 'twelve thousand seven hundred six'), (3325, 80743, 'eighty thousand seven hundred forty-three'), (3326, 9245, 'nine thousand two hundred forty-five'), (3327, 97091, 'ninety-seven thousand ninety-one'), (3328, 37640, 'thirty-seven thousand six hundred forty'), (3329, 30129, 'thirty thousand one hundred twenty-nine'), (3330, 14433, 'fourteen thousand four hundred thirty-three'), (3331, 36501, 'thirty-six thousand five hundred one'), (3332, 98143, 'ninety-eight thousand one hundred forty-three'), (3333, 94760, 'ninety-four thousand seven hundred sixty'), (3334, 1365, 'one thousand three hundred sixty-five'), (3335, 64789, 'sixty-four thousand seven hundred eighty-nine'), (3336, 91166, 'ninety-one thousand one hundred sixty-six'), (3337, 95275, 'ninety-five thousand two hundred seventy-five'), (3338, 29549, 'twenty-nine thousand five hundred forty-nine'), (3339, 3192, 'three thousand one hundred ninety-two'), (3340, 22206, 'twenty-two thousand two hundred six'), (3341, 24498, 'twenty-four thousand four hundred ninety-eight'), (3342, 96383, 'ninety-six thousand three hundred eighty-three'), (3343, 56472, 'fifty-six thousand four hundred seventy-two'), (3344, 19309, 'nineteen thousand three hundred nine'), (3345, 28583, 'twenty-eight thousand five hundred eighty-three'), (3346, 18820, 'eighteen thousand eight hundred twenty'), (3347, 14519, 'fourteen thousand five hundred nineteen'), (3348, 19863, 'nineteen thousand eight hundred sixty-three'), (3349, 82008, 'eighty-two thousand eight'), (3350, 37956, 'thirty-seven thousand nine hundred fifty-six'), (3351, 77175, 'seventy-seven thousand one hundred seventy-five'), (3352, 76470, 'seventy-six thousand four hundred seventy'), (3353, 56710, 'fifty-six thousand seven hundred ten'), (3354, 36240, 'thirty-six thousand two hundred forty'), (3355, 13736, 'thirteen thousand seven hundred thirty-six'), (3356, 26905, 'twenty-six thousand nine hundred five'), (3357, 94429, 'ninety-four thousand four hundred twenty-nine'), (3358, 69232, 'sixty-nine thousand two hundred thirty-two'), (3359, 13347, 'thirteen thousand three hundred forty-seven'), (3360, 41222, 'forty-one thousand two hundred twenty-two'), (3361, 22915, 'twenty-two thousand nine hundred fifteen'), (3362, 99782, 'ninety-nine thousand seven hundred eighty-two'), (3363, 39237, 'thirty-nine thousand two hundred thirty-seven'), (3364, 59013, 'fifty-nine thousand thirteen'), (3365, 35271, 'thirty-five thousand two hundred seventy-one'), (3366, 87957, 'eighty-seven thousand nine hundred fifty-seven'), (3367, 96047, 'ninety-six thousand forty-seven'), (3368, 44935, 'forty-four thousand nine hundred thirty-five'), (3369, 48207, 'forty-eight thousand two hundred seven'), (3370, 59682, 'fifty-nine thousand six hundred eighty-two'), (3371, 34427, 'thirty-four thousand four hundred twenty-seven'), (3372, 76097, 'seventy-six thousand ninety-seven'), (3373, 6940, 'six thousand nine hundred forty'), (3374, 34411, 'thirty-four thousand four hundred eleven'), (3375, 76909, 'seventy-six thousand nine hundred nine'), (3376, 37211, 'thirty-seven thousand two hundred eleven'), (3377, 33070, 'thirty-three thousand seventy'), (3378, 62925, 'sixty-two thousand nine hundred twenty-five'), (3379, 10312, 'ten thousand three hundred twelve'), (3380, 87309, 'eighty-seven thousand three hundred nine'), (3381, 51257, 'fifty-one thousand two hundred fifty-seven'), (3382, 41032, 'forty-one thousand thirty-two'), (3383, 12112, 'twelve thousand one hundred twelve'), (3384, 83862, 'eighty-three thousand eight hundred sixty-two'), (3385, 18658, 'eighteen thousand six hundred fifty-eight'), (3386, 66391, 'sixty-six thousand three hundred ninety-one'), (3387, 53702, 'fifty-three thousand seven hundred two'), (3388, 70524, 'seventy thousand five hundred twenty-four'), (3389, 76634, 'seventy-six thousand six hundred thirty-four'), (3390, 70354, 'seventy thousand three hundred fifty-four'), (3391, 25667, 'twenty-five thousand six hundred sixty-seven'), (3392, 51157, 'fifty-one thousand one hundred fifty-seven'), (3393, 53810, 'fifty-three thousand eight hundred ten'), (3394, 43269, 'forty-three thousand two hundred sixty-nine'), (3395, 56935, 'fifty-six thousand nine hundred thirty-five'), (3396, 69881, 'sixty-nine thousand eight hundred eighty-one'), (3397, 80011, 'eighty thousand eleven'), (3398, 3626, 'three thousand six hundred twenty-six'), (3399, 73648, 'seventy-three thousand six hundred forty-eight'), (3400, 62576, 'sixty-two thousand five hundred seventy-six'), (3401, 93419, 'ninety-three thousand four hundred nineteen'), (3402, 14079, 'fourteen thousand seventy-nine'), (3403, 52611, 'fifty-two thousand six hundred eleven'), (3404, 28500, 'twenty-eight thousand five hundred'), (3405, 38930, 'thirty-eight thousand nine hundred thirty'), (3406, 91958, 'ninety-one thousand nine hundred fifty-eight'), (3407, 20713, 'twenty thousand seven hundred thirteen'), (3408, 93978, 'ninety-three thousand nine hundred seventy-eight'), (3409, 49774, 'forty-nine thousand seven hundred seventy-four'), (3410, 1238, 'one thousand two hundred thirty-eight'), (3411, 9685, 'nine thousand six hundred eighty-five'), (3412, 9456, 'nine thousand four hundred fifty-six'), (3413, 44453, 'forty-four thousand four hundred fifty-three'), (3414, 91541, 'ninety-one thousand five hundred forty-one'), (3415, 14691, 'fourteen thousand six hundred ninety-one'), (3416, 53203, 'fifty-three thousand two hundred three'), (3417, 94105, 'ninety-four thousand one hundred five'), (3418, 60224, 'sixty thousand two hundred twenty-four'), (3419, 89945, 'eighty-nine thousand nine hundred forty-five'), (3420, 17324, 'seventeen thousand three hundred twenty-four'), (3421, 17782, 'seventeen thousand seven hundred eighty-two'), (3422, 48307, 'forty-eight thousand three hundred seven'), (3423, 32385, 'thirty-two thousand three hundred eighty-five'), (3424, 9722, 'nine thousand seven hundred twenty-two'), (3425, 81913, 'eighty-one thousand nine hundred thirteen'), (3426, 11459, 'eleven thousand four hundred fifty-nine'), (3427, 58685, 'fifty-eight thousand six hundred eighty-five'), (3428, 46908, 'forty-six thousand nine hundred eight'), (3429, 34277, 'thirty-four thousand two hundred seventy-seven'), (3430, 83881, 'eighty-three thousand eight hundred eighty-one'), (3431, 1014, 'one thousand fourteen'), (3432, 5613, 'five thousand six hundred thirteen'), (3433, 37723, 'thirty-seven thousand seven hundred twenty-three'), (3434, 1412, 'one thousand four hundred twelve'), (3435, 29531, 'twenty-nine thousand five hundred thirty-one'), (3436, 52687, 'fifty-two thousand six hundred eighty-seven'), (3437, 58641, 'fifty-eight thousand six hundred forty-one'), (3438, 14948, 'fourteen thousand nine hundred forty-eight'), (3439, 30402, 'thirty thousand four hundred two'), (3440, 10454, 'ten thousand four hundred fifty-four'), (3441, 3681, 'three thousand six hundred eighty-one'), (3442, 26793, 'twenty-six thousand seven hundred ninety-three'), (3443, 30432, 'thirty thousand four hundred thirty-two'), (3444, 97488, 'ninety-seven thousand four hundred eighty-eight'), (3445, 50850, 'fifty thousand eight hundred fifty'), (3446, 27925, 'twenty-seven thousand nine hundred twenty-five'), (3447, 12718, 'twelve thousand seven hundred eighteen'), (3448, 92578, 'ninety-two thousand five hundred seventy-eight'), (3449, 51978, 'fifty-one thousand nine hundred seventy-eight'), (3450, 86646, 'eighty-six thousand six hundred forty-six'), (3451, 33086, 'thirty-three thousand eighty-six'), (3452, 55619, 'fifty-five thousand six hundred nineteen'), (3453, 65250, 'sixty-five thousand two hundred fifty'), (3454, 59911, 'fifty-nine thousand nine hundred eleven'), (3455, 81759, 'eighty-one thousand seven hundred fifty-nine'), (3456, 71062, 'seventy-one thousand sixty-two'), (3457, 10868, 'ten thousand eight hundred sixty-eight'), (3458, 70403, 'seventy thousand four hundred three'), (3459, 45063, 'forty-five thousand sixty-three'), (3460, 45529, 'forty-five thousand five hundred twenty-nine'), (3461, 94216, 'ninety-four thousand two hundred sixteen'), (3462, 24337, 'twenty-four thousand three hundred thirty-seven'), (3463, 7640, 'seven thousand six hundred forty'), (3464, 16664, 'sixteen thousand six hundred sixty-four'), (3465, 37270, 'thirty-seven thousand two hundred seventy'), (3466, 49452, 'forty-nine thousand four hundred fifty-two'), (3467, 1811, 'one thousand eight hundred eleven'), (3468, 79888, 'seventy-nine thousand eight hundred eighty-eight'), (3469, 15557, 'fifteen thousand five hundred fifty-seven'), (3470, 94193, 'ninety-four thousand one hundred ninety-three'), (3471, 2569, 'two thousand five hundred sixty-nine'), (3472, 87304, 'eighty-seven thousand three hundred four'), (3473, 11008, 'eleven thousand eight'), (3474, 16952, 'sixteen thousand nine hundred fifty-two'), (3475, 86084, 'eighty-six thousand eighty-four'), (3476, 83241, 'eighty-three thousand two hundred forty-one'), (3477, 64364, 'sixty-four thousand three hundred sixty-four'), (3478, 78288, 'seventy-eight thousand two hundred eighty-eight'), (3479, 14905, 'fourteen thousand nine hundred five'), (3480, 69033, 'sixty-nine thousand thirty-three'), (3481, 53276, 'fifty-three thousand two hundred seventy-six'), (3482, 21153, 'twenty-one thousand one hundred fifty-three'), (3483, 37373, 'thirty-seven thousand three hundred seventy-three'), (3484, 52384, 'fifty-two thousand three hundred eighty-four'), (3485, 63492, 'sixty-three thousand four hundred ninety-two'), (3486, 19040, 'nineteen thousand forty'), (3487, 15865, 'fifteen thousand eight hundred sixty-five'), (3488, 12410, 'twelve thousand four hundred ten'), (3489, 5191, 'five thousand one hundred ninety-one'), (3490, 8405, 'eight thousand four hundred five'), (3491, 21078, 'twenty-one thousand seventy-eight'), (3492, 70681, 'seventy thousand six hundred eighty-one'), (3493, 19842, 'nineteen thousand eight hundred forty-two'), (3494, 36600, 'thirty-six thousand six hundred'), (3495, 34675, 'thirty-four thousand six hundred seventy-five'), (3496, 85508, 'eighty-five thousand five hundred eight'), (3497, 81047, 'eighty-one thousand forty-seven'), (3498, 20026, 'twenty thousand twenty-six'), (3499, 51140, 'fifty-one thousand one hundred forty'), (3500, 38104, 'thirty-eight thousand one hundred four'), (3501, 40857, 'forty thousand eight hundred fifty-seven'), (3502, 19692, 'nineteen thousand six hundred ninety-two'), (3503, 75578, 'seventy-five thousand five hundred seventy-eight'), (3504, 7332, 'seven thousand three hundred thirty-two'), (3505, 50317, 'fifty thousand three hundred seventeen'), (3506, 88095, 'eighty-eight thousand ninety-five'), (3507, 79423, 'seventy-nine thousand four hundred twenty-three'), (3508, 95804, 'ninety-five thousand eight hundred four'), (3509, 50175, 'fifty thousand one hundred seventy-five'), (3510, 67967, 'sixty-seven thousand nine hundred sixty-seven'), (3511, 44107, 'forty-four thousand one hundred seven'), (3512, 4732, 'four thousand seven hundred thirty-two'), (3513, 6006, 'six thousand six'), (3514, 89241, 'eighty-nine thousand two hundred forty-one'), (3515, 33098, 'thirty-three thousand ninety-eight'), (3516, 53970, 'fifty-three thousand nine hundred seventy'), (3517, 50673, 'fifty thousand six hundred seventy-three'), (3518, 71248, 'seventy-one thousand two hundred forty-eight'), (3519, 38851, 'thirty-eight thousand eight hundred fifty-one'), (3520, 75879, 'seventy-five thousand eight hundred seventy-nine'), (3521, 55963, 'fifty-five thousand nine hundred sixty-three'), (3522, 81847, 'eighty-one thousand eight hundred forty-seven'), (3523, 20088, 'twenty thousand eighty-eight'), (3524, 24424, 'twenty-four thousand four hundred twenty-four'), (3525, 98812, 'ninety-eight thousand eight hundred twelve'), (3526, 79831, 'seventy-nine thousand eight hundred thirty-one'), (3527, 82159, 'eighty-two thousand one hundred fifty-nine'), (3528, 84576, 'eighty-four thousand five hundred seventy-six'), (3529, 87260, 'eighty-seven thousand two hundred sixty'), (3530, 25149, 'twenty-five thousand one hundred forty-nine'), (3531, 36043, 'thirty-six thousand forty-three'), (3532, 27471, 'twenty-seven thousand four hundred seventy-one'), (3533, 74261, 'seventy-four thousand two hundred sixty-one'), (3534, 80999, 'eighty thousand nine hundred ninety-nine'), (3535, 92131, 'ninety-two thousand one hundred thirty-one'), (3536, 37716, 'thirty-seven thousand seven hundred sixteen'), (3537, 73671, 'seventy-three thousand six hundred seventy-one'), (3538, 12676, 'twelve thousand six hundred seventy-six'), (3539, 61303, 'sixty-one thousand three hundred three'), (3540, 77151, 'seventy-seven thousand one hundred fifty-one'), (3541, 10589, 'ten thousand five hundred eighty-nine'), (3542, 99886, 'ninety-nine thousand eight hundred eighty-six'), (3543, 44288, 'forty-four thousand two hundred eighty-eight'), (3544, 37964, 'thirty-seven thousand nine hundred sixty-four'), (3545, 51476, 'fifty-one thousand four hundred seventy-six'), (3546, 38822, 'thirty-eight thousand eight hundred twenty-two'), (3547, 89678, 'eighty-nine thousand six hundred seventy-eight'), (3548, 94251, 'ninety-four thousand two hundred fifty-one'), (3549, 86262, 'eighty-six thousand two hundred sixty-two'), (3550, 35023, 'thirty-five thousand twenty-three'), (3551, 76586, 'seventy-six thousand five hundred eighty-six'), (3552, 6219, 'six thousand two hundred nineteen'), (3553, 14553, 'fourteen thousand five hundred fifty-three'), (3554, 11137, 'eleven thousand one hundred thirty-seven'), (3555, 38217, 'thirty-eight thousand two hundred seventeen'), (3556, 35364, 'thirty-five thousand three hundred sixty-four'), (3557, 10977, 'ten thousand nine hundred seventy-seven'), (3558, 30006, 'thirty thousand six'), (3559, 64493, 'sixty-four thousand four hundred ninety-three'), (3560, 69257, 'sixty-nine thousand two hundred fifty-seven'), (3561, 55981, 'fifty-five thousand nine hundred eighty-one'), (3562, 98127, 'ninety-eight thousand one hundred twenty-seven'), (3563, 28253, 'twenty-eight thousand two hundred fifty-three'), (3564, 35260, 'thirty-five thousand two hundred sixty'), (3565, 23799, 'twenty-three thousand seven hundred ninety-nine'), (3566, 59537, 'fifty-nine thousand five hundred thirty-seven'), (3567, 87676, 'eighty-seven thousand six hundred seventy-six'), (3568, 95457, 'ninety-five thousand four hundred fifty-seven'), (3569, 21582, 'twenty-one thousand five hundred eighty-two'), (3570, 67797, 'sixty-seven thousand seven hundred ninety-seven'), (3571, 42930, 'forty-two thousand nine hundred thirty'), (3572, 48312, 'forty-eight thousand three hundred twelve'), (3573, 41226, 'forty-one thousand two hundred twenty-six'), (3574, 56975, 'fifty-six thousand nine hundred seventy-five'), (3575, 18167, 'eighteen thousand one hundred sixty-seven'), (3576, 15265, 'fifteen thousand two hundred sixty-five'), (3577, 84769, 'eighty-four thousand seven hundred sixty-nine'), (3578, 16040, 'sixteen thousand forty'), (3579, 22085, 'twenty-two thousand eighty-five'), (3580, 62524, 'sixty-two thousand five hundred twenty-four'), (3581, 34443, 'thirty-four thousand four hundred forty-three'), (3582, 53238, 'fifty-three thousand two hundred thirty-eight'), (3583, 41441, 'forty-one thousand four hundred forty-one'), (3584, 76927, 'seventy-six thousand nine hundred twenty-seven'), (3585, 97977, 'ninety-seven thousand nine hundred seventy-seven'), (3586, 18492, 'eighteen thousand four hundred ninety-two'), (3587, 60198, 'sixty thousand one hundred ninety-eight'), (3588, 23384, 'twenty-three thousand three hundred eighty-four'), (3589, 12543, 'twelve thousand five hundred forty-three'), (3590, 83354, 'eighty-three thousand three hundred fifty-four'), (3591, 32010, 'thirty-two thousand ten'), (3592, 41820, 'forty-one thousand eight hundred twenty'), (3593, 60217, 'sixty thousand two hundred seventeen'), (3594, 45614, 'forty-five thousand six hundred fourteen'), (3595, 81524, 'eighty-one thousand five hundred twenty-four'), (3596, 6468, 'six thousand four hundred sixty-eight'), (3597, 3865, 'three thousand eight hundred sixty-five'), (3598, 25574, 'twenty-five thousand five hundred seventy-four'), (3599, 90048, 'ninety thousand forty-eight'), (3600, 40344, 'forty thousand three hundred forty-four'), (3601, 14343, 'fourteen thousand three hundred forty-three'), (3602, 9495, 'nine thousand four hundred ninety-five'), (3603, 12641, 'twelve thousand six hundred forty-one'), (3604, 9795, 'nine thousand seven hundred ninety-five'), (3605, 34230, 'thirty-four thousand two hundred thirty'), (3606, 90559, 'ninety thousand five hundred fifty-nine'), (3607, 94175, 'ninety-four thousand one hundred seventy-five'), (3608, 84020, 'eighty-four thousand twenty'), (3609, 46560, 'forty-six thousand five hundred sixty'), (3610, 59520, 'fifty-nine thousand five hundred twenty'), (3611, 6613, 'six thousand six hundred thirteen'), (3612, 86324, 'eighty-six thousand three hundred twenty-four'), (3613, 250, 'two hundred fifty'), (3614, 69136, 'sixty-nine thousand one hundred thirty-six'), (3615, 92537, 'ninety-two thousand five hundred thirty-seven'), (3616, 13115, 'thirteen thousand one hundred fifteen'), (3617, 23907, 'twenty-three thousand nine hundred seven'), (3618, 9513, 'nine thousand five hundred thirteen'), (3619, 26982, 'twenty-six thousand nine hundred eighty-two'), (3620, 7879, 'seven thousand eight hundred seventy-nine'), (3621, 92331, 'ninety-two thousand three hundred thirty-one'), (3622, 2880, 'two thousand eight hundred eighty'), (3623, 99525, 'ninety-nine thousand five hundred twenty-five'), (3624, 46522, 'forty-six thousand five hundred twenty-two'), (3625, 23039, 'twenty-three thousand thirty-nine'), (3626, 34304, 'thirty-four thousand three hundred four'), (3627, 78013, 'seventy-eight thousand thirteen'), (3628, 94249, 'ninety-four thousand two hundred forty-nine'), (3629, 2279, 'two thousand two hundred seventy-nine'), (3630, 53610, 'fifty-three thousand six hundred ten'), (3631, 63129, 'sixty-three thousand one hundred twenty-nine'), (3632, 8500, 'eight thousand five hundred'), (3633, 53798, 'fifty-three thousand seven hundred ninety-eight'), (3634, 38422, 'thirty-eight thousand four hundred twenty-two'), (3635, 10541, 'ten thousand five hundred forty-one'), (3636, 49289, 'forty-nine thousand two hundred eighty-nine'), (3637, 49273, 'forty-nine thousand two hundred seventy-three'), (3638, 91803, 'ninety-one thousand eight hundred three'), (3639, 12468, 'twelve thousand four hundred sixty-eight'), (3640, 44785, 'forty-four thousand seven hundred eighty-five'), (3641, 95707, 'ninety-five thousand seven hundred seven'), (3642, 49976, 'forty-nine thousand nine hundred seventy-six'), (3643, 86860, 'eighty-six thousand eight hundred sixty'), (3644, 92127, 'ninety-two thousand one hundred twenty-seven'), (3645, 26431, 'twenty-six thousand four hundred thirty-one'), (3646, 92262, 'ninety-two thousand two hundred sixty-two'), (3647, 37206, 'thirty-seven thousand two hundred six'), (3648, 91060, 'ninety-one thousand sixty'), (3649, 94561, 'ninety-four thousand five hundred sixty-one'), (3650, 98528, 'ninety-eight thousand five hundred twenty-eight'), (3651, 9871, 'nine thousand eight hundred seventy-one'), (3652, 82124, 'eighty-two thousand one hundred twenty-four'), (3653, 14270, 'fourteen thousand two hundred seventy'), (3654, 12047, 'twelve thousand forty-seven'), (3655, 75356, 'seventy-five thousand three hundred fifty-six'), (3656, 15419, 'fifteen thousand four hundred nineteen'), (3657, 67423, 'sixty-seven thousand four hundred twenty-three'), (3658, 42790, 'forty-two thousand seven hundred ninety'), (3659, 76395, 'seventy-six thousand three hundred ninety-five'), (3660, 94864, 'ninety-four thousand eight hundred sixty-four'), (3661, 52231, 'fifty-two thousand two hundred thirty-one'), (3662, 80409, 'eighty thousand four hundred nine'), (3663, 17263, 'seventeen thousand two hundred sixty-three'), (3664, 15859, 'fifteen thousand eight hundred fifty-nine'), (3665, 58869, 'fifty-eight thousand eight hundred sixty-nine'), (3666, 90772, 'ninety thousand seven hundred seventy-two'), (3667, 17022, 'seventeen thousand twenty-two'), (3668, 20295, 'twenty thousand two hundred ninety-five'), (3669, 66309, 'sixty-six thousand three hundred nine'), (3670, 80008, 'eighty thousand eight'), (3671, 17712, 'seventeen thousand seven hundred twelve'), (3672, 66589, 'sixty-six thousand five hundred eighty-nine'), (3673, 28283, 'twenty-eight thousand two hundred eighty-three'), (3674, 39222, 'thirty-nine thousand two hundred twenty-two'), (3675, 48453, 'forty-eight thousand four hundred fifty-three'), (3676, 23555, 'twenty-three thousand five hundred fifty-five'), (3677, 91764, 'ninety-one thousand seven hundred sixty-four'), (3678, 22594, 'twenty-two thousand five hundred ninety-four'), (3679, 46680, 'forty-six thousand six hundred eighty'), (3680, 76455, 'seventy-six thousand four hundred fifty-five'), (3681, 61116, 'sixty-one thousand one hundred sixteen'), (3682, 9267, 'nine thousand two hundred sixty-seven'), (3683, 73619, 'seventy-three thousand six hundred nineteen'), (3684, 4314, 'four thousand three hundred fourteen'), (3685, 47379, 'forty-seven thousand three hundred seventy-nine'), (3686, 27913, 'twenty-seven thousand nine hundred thirteen'), (3687, 40459, 'forty thousand four hundred fifty-nine'), (3688, 87849, 'eighty-seven thousand eight hundred forty-nine'), (3689, 73921, 'seventy-three thousand nine hundred twenty-one'), (3690, 27243, 'twenty-seven thousand two hundred forty-three'), (3691, 39125, 'thirty-nine thousand one hundred twenty-five'), (3692, 56011, 'fifty-six thousand eleven'), (3693, 85383, 'eighty-five thousand three hundred eighty-three'), (3694, 74158, 'seventy-four thousand one hundred fifty-eight'), (3695, 24199, 'twenty-four thousand one hundred ninety-nine'), (3696, 44257, 'forty-four thousand two hundred fifty-seven'), (3697, 38808, 'thirty-eight thousand eight hundred eight'), (3698, 11852, 'eleven thousand eight hundred fifty-two'), (3699, 74550, 'seventy-four thousand five hundred fifty'), (3700, 79099, 'seventy-nine thousand ninety-nine'), (3701, 58589, 'fifty-eight thousand five hundred eighty-nine'), (3702, 9158, 'nine thousand one hundred fifty-eight'), (3703, 16166, 'sixteen thousand one hundred sixty-six'), (3704, 84637, 'eighty-four thousand six hundred thirty-seven'), (3705, 83306, 'eighty-three thousand three hundred six'), (3706, 21595, 'twenty-one thousand five hundred ninety-five'), (3707, 2151, 'two thousand one hundred fifty-one'), (3708, 44562, 'forty-four thousand five hundred sixty-two'), (3709, 70876, 'seventy thousand eight hundred seventy-six'), (3710, 81209, 'eighty-one thousand two hundred nine'), (3711, 38502, 'thirty-eight thousand five hundred two'), (3712, 5252, 'five thousand two hundred fifty-two'), (3713, 46419, 'forty-six thousand four hundred nineteen'), (3714, 31465, 'thirty-one thousand four hundred sixty-five'), (3715, 88555, 'eighty-eight thousand five hundred fifty-five'), (3716, 63170, 'sixty-three thousand one hundred seventy'), (3717, 49868, 'forty-nine thousand eight hundred sixty-eight'), (3718, 90823, 'ninety thousand eight hundred twenty-three'), (3719, 69446, 'sixty-nine thousand four hundred forty-six'), (3720, 26892, 'twenty-six thousand eight hundred ninety-two'), (3721, 17543, 'seventeen thousand five hundred forty-three'), (3722, 33844, 'thirty-three thousand eight hundred forty-four'), (3723, 29478, 'twenty-nine thousand four hundred seventy-eight'), (3724, 96685, 'ninety-six thousand six hundred eighty-five'), (3725, 38526, 'thirty-eight thousand five hundred twenty-six'), (3726, 23760, 'twenty-three thousand seven hundred sixty'), (3727, 22053, 'twenty-two thousand fifty-three'), (3728, 41143, 'forty-one thousand one hundred forty-three'), (3729, 16812, 'sixteen thousand eight hundred twelve'), (3730, 88806, 'eighty-eight thousand eight hundred six'), (3731, 57290, 'fifty-seven thousand two hundred ninety'), (3732, 46403, 'forty-six thousand four hundred three'), (3733, 14487, 'fourteen thousand four hundred eighty-seven'), (3734, 76705, 'seventy-six thousand seven hundred five'), (3735, 50634, 'fifty thousand six hundred thirty-four'), (3736, 9062, 'nine thousand sixty-two'), (3737, 1788, 'one thousand seven hundred eighty-eight'), (3738, 25958, 'twenty-five thousand nine hundred fifty-eight'), (3739, 11601, 'eleven thousand six hundred one'), (3740, 74330, 'seventy-four thousand three hundred thirty'), (3741, 22172, 'twenty-two thousand one hundred seventy-two'), (3742, 42888, 'forty-two thousand eight hundred eighty-eight'), (3743, 5402, 'five thousand four hundred two'), (3744, 72775, 'seventy-two thousand seven hundred seventy-five'), (3745, 90270, 'ninety thousand two hundred seventy'), (3746, 5137, 'five thousand one hundred thirty-seven'), (3747, 10295, 'ten thousand two hundred ninety-five'), (3748, 94444, 'ninety-four thousand four hundred forty-four'), (3749, 75640, 'seventy-five thousand six hundred forty'), (3750, 51028, 'fifty-one thousand twenty-eight'), (3751, 95855, 'ninety-five thousand eight hundred fifty-five'), (3752, 3382, 'three thousand three hundred eighty-two'), (3753, 7116, 'seven thousand one hundred sixteen'), (3754, 56076, 'fifty-six thousand seventy-six'), (3755, 62902, 'sixty-two thousand nine hundred two'), (3756, 94747, 'ninety-four thousand seven hundred forty-seven'), (3757, 7483, 'seven thousand four hundred eighty-three'), (3758, 79276, 'seventy-nine thousand two hundred seventy-six'), (3759, 48065, 'forty-eight thousand sixty-five'), (3760, 78755, 'seventy-eight thousand seven hundred fifty-five'), (3761, 90005, 'ninety thousand five'), (3762, 52348, 'fifty-two thousand three hundred forty-eight'), (3763, 38175, 'thirty-eight thousand one hundred seventy-five'), (3764, 53580, 'fifty-three thousand five hundred eighty'), (3765, 12084, 'twelve thousand eighty-four'), (3766, 92991, 'ninety-two thousand nine hundred ninety-one'), (3767, 47407, 'forty-seven thousand four hundred seven'), (3768, 41929, 'forty-one thousand nine hundred twenty-nine'), (3769, 82296, 'eighty-two thousand two hundred ninety-six'), (3770, 63828, 'sixty-three thousand eight hundred twenty-eight'), (3771, 21283, 'twenty-one thousand two hundred eighty-three'), (3772, 89438, 'eighty-nine thousand four hundred thirty-eight'), (3773, 24512, 'twenty-four thousand five hundred twelve'), (3774, 66007, 'sixty-six thousand seven'), (3775, 72757, 'seventy-two thousand seven hundred fifty-seven'), (3776, 41536, 'forty-one thousand five hundred thirty-six'), (3777, 71384, 'seventy-one thousand three hundred eighty-four'), (3778, 72708, 'seventy-two thousand seven hundred eight'), (3779, 74895, 'seventy-four thousand eight hundred ninety-five'), (3780, 81670, 'eighty-one thousand six hundred seventy'), (3781, 82046, 'eighty-two thousand forty-six'), (3782, 21869, 'twenty-one thousand eight hundred sixty-nine'), (3783, 33329, 'thirty-three thousand three hundred twenty-nine'), (3784, 77826, 'seventy-seven thousand eight hundred twenty-six'), (3785, 13056, 'thirteen thousand fifty-six'), (3786, 86200, 'eighty-six thousand two hundred'), (3787, 31648, 'thirty-one thousand six hundred forty-eight'), (3788, 57542, 'fifty-seven thousand five hundred forty-two'), (3789, 1374, 'one thousand three hundred seventy-four'), (3790, 67665, 'sixty-seven thousand six hundred sixty-five'), (3791, 95754, 'ninety-five thousand seven hundred fifty-four'), (3792, 35655, 'thirty-five thousand six hundred fifty-five'), (3793, 65333, 'sixty-five thousand three hundred thirty-three'), (3794, 64188, 'sixty-four thousand one hundred eighty-eight'), (3795, 19698, 'nineteen thousand six hundred ninety-eight'), (3796, 26736, 'twenty-six thousand seven hundred thirty-six'), (3797, 14857, 'fourteen thousand eight hundred fifty-seven'), (3798, 42009, 'forty-two thousand nine'), (3799, 91156, 'ninety-one thousand one hundred fifty-six'), (3800, 14638, 'fourteen thousand six hundred thirty-eight'), (3801, 51122, 'fifty-one thousand one hundred twenty-two'), (3802, 20192, 'twenty thousand one hundred ninety-two'), (3803, 88185, 'eighty-eight thousand one hundred eighty-five'), (3804, 13798, 'thirteen thousand seven hundred ninety-eight'), (3805, 62073, 'sixty-two thousand seventy-three'), (3806, 68516, 'sixty-eight thousand five hundred sixteen'), (3807, 88104, 'eighty-eight thousand one hundred four'), (3808, 55007, 'fifty-five thousand seven'), (3809, 49778, 'forty-nine thousand seven hundred seventy-eight'), (3810, 91147, 'ninety-one thousand one hundred forty-seven'), (3811, 48531, 'forty-eight thousand five hundred thirty-one'), (3812, 61940, 'sixty-one thousand nine hundred forty'), (3813, 79835, 'seventy-nine thousand eight hundred thirty-five'), (3814, 53589, 'fifty-three thousand five hundred eighty-nine'), (3815, 69097, 'sixty-nine thousand ninety-seven'), (3816, 35293, 'thirty-five thousand two hundred ninety-three'), (3817, 39234, 'thirty-nine thousand two hundred thirty-four'), (3818, 6271, 'six thousand two hundred seventy-one'), (3819, 10038, 'ten thousand thirty-eight'), (3820, 22953, 'twenty-two thousand nine hundred fifty-three'), (3821, 99930, 'ninety-nine thousand nine hundred thirty'), (3822, 41920, 'forty-one thousand nine hundred twenty'), (3823, 65428, 'sixty-five thousand four hundred twenty-eight'), (3824, 90627, 'ninety thousand six hundred twenty-seven'), (3825, 76289, 'seventy-six thousand two hundred eighty-nine'), (3826, 34994, 'thirty-four thousand nine hundred ninety-four'), (3827, 33317, 'thirty-three thousand three hundred seventeen'), (3828, 15994, 'fifteen thousand nine hundred ninety-four'), (3829, 6982, 'six thousand nine hundred eighty-two'), (3830, 74519, 'seventy-four thousand five hundred nineteen'), (3831, 67713, 'sixty-seven thousand seven hundred thirteen'), (3832, 47487, 'forty-seven thousand four hundred eighty-seven'), (3833, 78746, 'seventy-eight thousand seven hundred forty-six'), (3834, 35846, 'thirty-five thousand eight hundred forty-six'), (3835, 15850, 'fifteen thousand eight hundred fifty'), (3836, 79240, 'seventy-nine thousand two hundred forty'), (3837, 24858, 'twenty-four thousand eight hundred fifty-eight'), (3838, 61899, 'sixty-one thousand eight hundred ninety-nine'), (3839, 2494, 'two thousand four hundred ninety-four'), (3840, 83904, 'eighty-three thousand nine hundred four'), (3841, 53824, 'fifty-three thousand eight hundred twenty-four'), (3842, 55396, 'fifty-five thousand three hundred ninety-six'), (3843, 21043, 'twenty-one thousand forty-three'), (3844, 26998, 'twenty-six thousand nine hundred ninety-eight'), (3845, 62737, 'sixty-two thousand seven hundred thirty-seven'), (3846, 6127, 'six thousand one hundred twenty-seven'), (3847, 33690, 'thirty-three thousand six hundred ninety'), (3848, 23612, 'twenty-three thousand six hundred twelve'), (3849, 61672, 'sixty-one thousand six hundred seventy-two'), (3850, 98334, 'ninety-eight thousand three hundred thirty-four'), (3851, 15798, 'fifteen thousand seven hundred ninety-eight'), (3852, 9049, 'nine thousand forty-nine'), (3853, 68023, 'sixty-eight thousand twenty-three'), (3854, 13200, 'thirteen thousand two hundred'), (3855, 44840, 'forty-four thousand eight hundred forty'), (3856, 52850, 'fifty-two thousand eight hundred fifty'), (3857, 78920, 'seventy-eight thousand nine hundred twenty'), (3858, 25681, 'twenty-five thousand six hundred eighty-one'), (3859, 73985, 'seventy-three thousand nine hundred eighty-five'), (3860, 90829, 'ninety thousand eight hundred twenty-nine'), (3861, 42114, 'forty-two thousand one hundred fourteen'), (3862, 74654, 'seventy-four thousand six hundred fifty-four'), (3863, 82999, 'eighty-two thousand nine hundred ninety-nine'), (3864, 86163, 'eighty-six thousand one hundred sixty-three'), (3865, 35046, 'thirty-five thousand forty-six'), (3866, 26, 'twenty-six'), (3867, 34716, 'thirty-four thousand seven hundred sixteen'), (3868, 52005, 'fifty-two thousand five'), (3869, 71929, 'seventy-one thousand nine hundred twenty-nine'), (3870, 98714, 'ninety-eight thousand seven hundred fourteen'), (3871, 80296, 'eighty thousand two hundred ninety-six'), (3872, 14160, 'fourteen thousand one hundred sixty'), (3873, 17204, 'seventeen thousand two hundred four'), (3874, 81894, 'eighty-one thousand eight hundred ninety-four'), (3875, 50209, 'fifty thousand two hundred nine'), (3876, 14953, 'fourteen thousand nine hundred fifty-three'), (3877, 88741, 'eighty-eight thousand seven hundred forty-one'), (3878, 82388, 'eighty-two thousand three hundred eighty-eight'), (3879, 50662, 'fifty thousand six hundred sixty-two'), (3880, 47277, 'forty-seven thousand two hundred seventy-seven'), (3881, 60580, 'sixty thousand five hundred eighty'), (3882, 62492, 'sixty-two thousand four hundred ninety-two'), (3883, 59825, 'fifty-nine thousand eight hundred twenty-five'), (3884, 86562, 'eighty-six thousand five hundred sixty-two'), (3885, 84715, 'eighty-four thousand seven hundred fifteen'), (3886, 4030, 'four thousand thirty'), (3887, 42269, 'forty-two thousand two hundred sixty-nine'), (3888, 20337, 'twenty thousand three hundred thirty-seven'), (3889, 36923, 'thirty-six thousand nine hundred twenty-three'), (3890, 55266, 'fifty-five thousand two hundred sixty-six'), (3891, 55697, 'fifty-five thousand six hundred ninety-seven'), (3892, 89651, 'eighty-nine thousand six hundred fifty-one'), (3893, 56503, 'fifty-six thousand five hundred three'), (3894, 241, 'two hundred forty-one'), (3895, 96754, 'ninety-six thousand seven hundred fifty-four'), (3896, 32415, 'thirty-two thousand four hundred fifteen'), (3897, 74331, 'seventy-four thousand three hundred thirty-one'), (3898, 6841, 'six thousand eight hundred forty-one'), (3899, 88591, 'eighty-eight thousand five hundred ninety-one'), (3900, 9138, 'nine thousand one hundred thirty-eight'), (3901, 64961, 'sixty-four thousand nine hundred sixty-one'), (3902, 23722, 'twenty-three thousand seven hundred twenty-two'), (3903, 39599, 'thirty-nine thousand five hundred ninety-nine'), (3904, 42647, 'forty-two thousand six hundred forty-seven'), (3905, 12856, 'twelve thousand eight hundred fifty-six'), (3906, 86363, 'eighty-six thousand three hundred sixty-three'), (3907, 29129, 'twenty-nine thousand one hundred twenty-nine'), (3908, 84042, 'eighty-four thousand forty-two'), (3909, 13888, 'thirteen thousand eight hundred eighty-eight'), (3910, 9500, 'nine thousand five hundred'), (3911, 53484, 'fifty-three thousand four hundred eighty-four'), (3912, 25395, 'twenty-five thousand three hundred ninety-five'), (3913, 27352, 'twenty-seven thousand three hundred fifty-two'), (3914, 89396, 'eighty-nine thousand three hundred ninety-six'), (3915, 31375, 'thirty-one thousand three hundred seventy-five'), (3916, 60857, 'sixty thousand eight hundred fifty-seven'), (3917, 61172, 'sixty-one thousand one hundred seventy-two'), (3918, 29329, 'twenty-nine thousand three hundred twenty-nine'), (3919, 27707, 'twenty-seven thousand seven hundred seven'), (3920, 29677, 'twenty-nine thousand six hundred seventy-seven'), (3921, 40205, 'forty thousand two hundred five'), (3922, 45678, 'forty-five thousand six hundred seventy-eight'), (3923, 99927, 'ninety-nine thousand nine hundred twenty-seven'), (3924, 64743, 'sixty-four thousand seven hundred forty-three'), (3925, 22868, 'twenty-two thousand eight hundred sixty-eight'), (3926, 70743, 'seventy thousand seven hundred forty-three'), (3927, 28192, 'twenty-eight thousand one hundred ninety-two'), (3928, 3302, 'three thousand three hundred two'), (3929, 47726, 'forty-seven thousand seven hundred twenty-six'), (3930, 37683, 'thirty-seven thousand six hundred eighty-three'), (3931, 6905, 'six thousand nine hundred five'), (3932, 66454, 'sixty-six thousand four hundred fifty-four'), (3933, 60775, 'sixty thousand seven hundred seventy-five'), (3934, 87639, 'eighty-seven thousand six hundred thirty-nine'), (3935, 59479, 'fifty-nine thousand four hundred seventy-nine'), (3936, 89619, 'eighty-nine thousand six hundred nineteen'), (3937, 40144, 'forty thousand one hundred forty-four'), (3938, 52613, 'fifty-two thousand six hundred thirteen'), (3939, 96051, 'ninety-six thousand fifty-one'), (3940, 24290, 'twenty-four thousand two hundred ninety'), (3941, 7882, 'seven thousand eight hundred eighty-two'), (3942, 44252, 'forty-four thousand two hundred fifty-two'), (3943, 88439, 'eighty-eight thousand four hundred thirty-nine'), (3944, 54009, 'fifty-four thousand nine'), (3945, 45373, 'forty-five thousand three hundred seventy-three'), (3946, 71039, 'seventy-one thousand thirty-nine'), (3947, 55529, 'fifty-five thousand five hundred twenty-nine'), (3948, 77501, 'seventy-seven thousand five hundred one'), (3949, 280, 'two hundred eighty'), (3950, 85133, 'eighty-five thousand one hundred thirty-three'), (3951, 761, 'seven hundred sixty-one'), (3952, 43709, 'forty-three thousand seven hundred nine'), (3953, 39383, 'thirty-nine thousand three hundred eighty-three'), (3954, 71129, 'seventy-one thousand one hundred twenty-nine'), (3955, 78300, 'seventy-eight thousand three hundred'), (3956, 15677, 'fifteen thousand six hundred seventy-seven'), (3957, 45654, 'forty-five thousand six hundred fifty-four'), (3958, 37655, 'thirty-seven thousand six hundred fifty-five'), (3959, 73870, 'seventy-three thousand eight hundred seventy'), (3960, 13586, 'thirteen thousand five hundred eighty-six'), (3961, 17935, 'seventeen thousand nine hundred thirty-five'), (3962, 22377, 'twenty-two thousand three hundred seventy-seven'), (3963, 83852, 'eighty-three thousand eight hundred fifty-two'), (3964, 82982, 'eighty-two thousand nine hundred eighty-two'), (3965, 23942, 'twenty-three thousand nine hundred forty-two'), (3966, 4, 'four'), (3967, 62696, 'sixty-two thousand six hundred ninety-six'), (3968, 80592, 'eighty thousand five hundred ninety-two'), (3969, 76795, 'seventy-six thousand seven hundred ninety-five'), (3970, 8968, 'eight thousand nine hundred sixty-eight'), (3971, 13813, 'thirteen thousand eight hundred thirteen'), (3972, 19275, 'nineteen thousand two hundred seventy-five'), (3973, 7545, 'seven thousand five hundred forty-five'), (3974, 93004, 'ninety-three thousand four'), (3975, 92311, 'ninety-two thousand three hundred eleven'), (3976, 50992, 'fifty thousand nine hundred ninety-two'), (3977, 61181, 'sixty-one thousand one hundred eighty-one'), (3978, 31652, 'thirty-one thousand six hundred fifty-two'), (3979, 61949, 'sixty-one thousand nine hundred forty-nine'), (3980, 11738, 'eleven thousand seven hundred thirty-eight'), (3981, 68579, 'sixty-eight thousand five hundred seventy-nine'), (3982, 23943, 'twenty-three thousand nine hundred forty-three'), (3983, 98358, 'ninety-eight thousand three hundred fifty-eight'), (3984, 84861, 'eighty-four thousand eight hundred sixty-one'), (3985, 51132, 'fifty-one thousand one hundred thirty-two'), (3986, 56845, 'fifty-six thousand eight hundred forty-five'), (3987, 7917, 'seven thousand nine hundred seventeen'), (3988, 84918, 'eighty-four thousand nine hundred eighteen'), (3989, 91809, 'ninety-one thousand eight hundred nine'), (3990, 49335, 'forty-nine thousand three hundred thirty-five'), (3991, 26021, 'twenty-six thousand twenty-one'), (3992, 88977, 'eighty-eight thousand nine hundred seventy-seven'), (3993, 85932, 'eighty-five thousand nine hundred thirty-two'), (3994, 81681, 'eighty-one thousand six hundred eighty-one'), (3995, 80234, 'eighty thousand two hundred thirty-four'), (3996, 26116, 'twenty-six thousand one hundred sixteen'), (3997, 10573, 'ten thousand five hundred seventy-three'), (3998, 46517, 'forty-six thousand five hundred seventeen'), (3999, 67769, 'sixty-seven thousand seven hundred sixty-nine'), (4000, 67841, 'sixty-seven thousand eight hundred forty-one'), (4001, 13891, 'thirteen thousand eight hundred ninety-one'), (4002, 50116, 'fifty thousand one hundred sixteen'), (4003, 79805, 'seventy-nine thousand eight hundred five'), (4004, 18204, 'eighteen thousand two hundred four'), (4005, 42378, 'forty-two thousand three hundred seventy-eight'), (4006, 23498, 'twenty-three thousand four hundred ninety-eight'), (4007, 87466, 'eighty-seven thousand four hundred sixty-six'), (4008, 65485, 'sixty-five thousand four hundred eighty-five'), (4009, 58163, 'fifty-eight thousand one hundred sixty-three'), (4010, 11691, 'eleven thousand six hundred ninety-one'), (4011, 12158, 'twelve thousand one hundred fifty-eight'), (4012, 82826, 'eighty-two thousand eight hundred twenty-six'), (4013, 27264, 'twenty-seven thousand two hundred sixty-four'), (4014, 28716, 'twenty-eight thousand seven hundred sixteen'), (4015, 56473, 'fifty-six thousand four hundred seventy-three'), (4016, 89156, 'eighty-nine thousand one hundred fifty-six'), (4017, 22711, 'twenty-two thousand seven hundred eleven'), (4018, 55770, 'fifty-five thousand seven hundred seventy'), (4019, 95322, 'ninety-five thousand three hundred twenty-two'), (4020, 87100, 'eighty-seven thousand one hundred'), (4021, 6281, 'six thousand two hundred eighty-one'), (4022, 78620, 'seventy-eight thousand six hundred twenty'), (4023, 42110, 'forty-two thousand one hundred ten'), (4024, 17579, 'seventeen thousand five hundred seventy-nine'), (4025, 5873, 'five thousand eight hundred seventy-three'), (4026, 56565, 'fifty-six thousand five hundred sixty-five'), (4027, 48526, 'forty-eight thousand five hundred twenty-six'), (4028, 10780, 'ten thousand seven hundred eighty'), (4029, 97192, 'ninety-seven thousand one hundred ninety-two'), (4030, 46551, 'forty-six thousand five hundred fifty-one'), (4031, 91319, 'ninety-one thousand three hundred nineteen'), (4032, 72702, 'seventy-two thousand seven hundred two'), (4033, 18348, 'eighteen thousand three hundred forty-eight'), (4034, 52538, 'fifty-two thousand five hundred thirty-eight'), (4035, 3279, 'three thousand two hundred seventy-nine'), (4036, 19798, 'nineteen thousand seven hundred ninety-eight'), (4037, 95655, 'ninety-five thousand six hundred fifty-five'), (4038, 56546, 'fifty-six thousand five hundred forty-six'), (4039, 90290, 'ninety thousand two hundred ninety'), (4040, 18337, 'eighteen thousand three hundred thirty-seven'), (4041, 17331, 'seventeen thousand three hundred thirty-one'), (4042, 68901, 'sixty-eight thousand nine hundred one'), (4043, 5405, 'five thousand four hundred five'), (4044, 37699, 'thirty-seven thousand six hundred ninety-nine'), (4045, 71749, 'seventy-one thousand seven hundred forty-nine'), (4046, 58436, 'fifty-eight thousand four hundred thirty-six'), (4047, 46642, 'forty-six thousand six hundred forty-two'), (4048, 61738, 'sixty-one thousand seven hundred thirty-eight'), (4049, 42610, 'forty-two thousand six hundred ten'), (4050, 90581, 'ninety thousand five hundred eighty-one'), (4051, 10680, 'ten thousand six hundred eighty'), (4052, 90251, 'ninety thousand two hundred fifty-one'), (4053, 47153, 'forty-seven thousand one hundred fifty-three'), (4054, 39923, 'thirty-nine thousand nine hundred twenty-three'), (4055, 11893, 'eleven thousand eight hundred ninety-three'), (4056, 50665, 'fifty thousand six hundred sixty-five'), (4057, 11104, 'eleven thousand one hundred four'), (4058, 79874, 'seventy-nine thousand eight hundred seventy-four'), (4059, 4094, 'four thousand ninety-four'), (4060, 38552, 'thirty-eight thousand five hundred fifty-two'), (4061, 54111, 'fifty-four thousand one hundred eleven'), (4062, 22374, 'twenty-two thousand three hundred seventy-four'), (4063, 60384, 'sixty thousand three hundred eighty-four'), (4064, 39523, 'thirty-nine thousand five hundred twenty-three'), (4065, 67745, 'sixty-seven thousand seven hundred forty-five'), (4066, 80339, 'eighty thousand three hundred thirty-nine'), (4067, 9518, 'nine thousand five hundred eighteen'), (4068, 51432, 'fifty-one thousand four hundred thirty-two'), (4069, 40099, 'forty thousand ninety-nine'), (4070, 87356, 'eighty-seven thousand three hundred fifty-six'), (4071, 53766, 'fifty-three thousand seven hundred sixty-six'), (4072, 2507, 'two thousand five hundred seven'), (4073, 66416, 'sixty-six thousand four hundred sixteen'), (4074, 51181, 'fifty-one thousand one hundred eighty-one'), (4075, 64977, 'sixty-four thousand nine hundred seventy-seven'), (4076, 56522, 'fifty-six thousand five hundred twenty-two'), (4077, 31144, 'thirty-one thousand one hundred forty-four'), (4078, 61935, 'sixty-one thousand nine hundred thirty-five'), (4079, 10340, 'ten thousand three hundred forty'), (4080, 29470, 'twenty-nine thousand four hundred seventy'), (4081, 78829, 'seventy-eight thousand eight hundred twenty-nine'), (4082, 98781, 'ninety-eight thousand seven hundred eighty-one'), (4083, 31055, 'thirty-one thousand fifty-five'), (4084, 7417, 'seven thousand four hundred seventeen'), (4085, 79189, 'seventy-nine thousand one hundred eighty-nine'), (4086, 65370, 'sixty-five thousand three hundred seventy'), (4087, 96578, 'ninety-six thousand five hundred seventy-eight'), (4088, 97408, 'ninety-seven thousand four hundred eight'), (4089, 90722, 'ninety thousand seven hundred twenty-two'), (4090, 22255, 'twenty-two thousand two hundred fifty-five'), (4091, 48402, 'forty-eight thousand four hundred two'), (4092, 35261, 'thirty-five thousand two hundred sixty-one'), (4093, 99676, 'ninety-nine thousand six hundred seventy-six'), (4094, 75546, 'seventy-five thousand five hundred forty-six'), (4095, 87220, 'eighty-seven thousand two hundred twenty'), (4096, 54875, 'fifty-four thousand eight hundred seventy-five'), (4097, 39578, 'thirty-nine thousand five hundred seventy-eight'), (4098, 92443, 'ninety-two thousand four hundred forty-three'), (4099, 50914, 'fifty thousand nine hundred fourteen'), (4100, 13199, 'thirteen thousand one hundred ninety-nine'), (4101, 80974, 'eighty thousand nine hundred seventy-four'), (4102, 27734, 'twenty-seven thousand seven hundred thirty-four'), (4103, 621, 'six hundred twenty-one'), (4104, 82337, 'eighty-two thousand three hundred thirty-seven'), (4105, 59507, 'fifty-nine thousand five hundred seven'), (4106, 48954, 'forty-eight thousand nine hundred fifty-four'), (4107, 3461, 'three thousand four hundred sixty-one'), (4108, 97764, 'ninety-seven thousand seven hundred sixty-four'), (4109, 58530, 'fifty-eight thousand five hundred thirty'), (4110, 38254, 'thirty-eight thousand two hundred fifty-four'), (4111, 47627, 'forty-seven thousand six hundred twenty-seven'), (4112, 1144, 'one thousand one hundred forty-four'), (4113, 57982, 'fifty-seven thousand nine hundred eighty-two'), (4114, 12045, 'twelve thousand forty-five'), (4115, 73737, 'seventy-three thousand seven hundred thirty-seven'), (4116, 1705, 'one thousand seven hundred five'), (4117, 44831, 'forty-four thousand eight hundred thirty-one'), (4118, 10526, 'ten thousand five hundred twenty-six'), (4119, 67233, 'sixty-seven thousand two hundred thirty-three'), (4120, 86347, 'eighty-six thousand three hundred forty-seven'), (4121, 56915, 'fifty-six thousand nine hundred fifteen'), (4122, 12764, 'twelve thousand seven hundred sixty-four'), (4123, 1199, 'one thousand one hundred ninety-nine'), (4124, 17277, 'seventeen thousand two hundred seventy-seven'), (4125, 45789, 'forty-five thousand seven hundred eighty-nine'), (4126, 93842, 'ninety-three thousand eight hundred forty-two'), (4127, 68211, 'sixty-eight thousand two hundred eleven'), (4128, 71114, 'seventy-one thousand one hundred fourteen'), (4129, 71842, 'seventy-one thousand eight hundred forty-two'), (4130, 79355, 'seventy-nine thousand three hundred fifty-five'), (4131, 26021, 'twenty-six thousand twenty-one'), (4132, 534, 'five hundred thirty-four'), (4133, 91055, 'ninety-one thousand fifty-five'), (4134, 25406, 'twenty-five thousand four hundred six'), (4135, 83441, 'eighty-three thousand four hundred forty-one'), (4136, 85622, 'eighty-five thousand six hundred twenty-two'), (4137, 22765, 'twenty-two thousand seven hundred sixty-five'), (4138, 82509, 'eighty-two thousand five hundred nine'), (4139, 60793, 'sixty thousand seven hundred ninety-three'), (4140, 67859, 'sixty-seven thousand eight hundred fifty-nine'), (4141, 28247, 'twenty-eight thousand two hundred forty-seven'), (4142, 38438, 'thirty-eight thousand four hundred thirty-eight'), (4143, 39253, 'thirty-nine thousand two hundred fifty-three'), (4144, 59683, 'fifty-nine thousand six hundred eighty-three'), (4145, 70618, 'seventy thousand six hundred eighteen'), (4146, 70076, 'seventy thousand seventy-six'), (4147, 28746, 'twenty-eight thousand seven hundred forty-six'), (4148, 98045, 'ninety-eight thousand forty-five'), (4149, 44064, 'forty-four thousand sixty-four'), (4150, 64983, 'sixty-four thousand nine hundred eighty-three'), (4151, 19396, 'nineteen thousand three hundred ninety-six'), (4152, 96122, 'ninety-six thousand one hundred twenty-two'), (4153, 48803, 'forty-eight thousand eight hundred three'), (4154, 55604, 'fifty-five thousand six hundred four'), (4155, 20081, 'twenty thousand eighty-one'), (4156, 69433, 'sixty-nine thousand four hundred thirty-three'), (4157, 16188, 'sixteen thousand one hundred eighty-eight'), (4158, 22864, 'twenty-two thousand eight hundred sixty-four'), (4159, 11513, 'eleven thousand five hundred thirteen'), (4160, 47654, 'forty-seven thousand six hundred fifty-four'), (4161, 94904, 'ninety-four thousand nine hundred four'), (4162, 63606, 'sixty-three thousand six hundred six'), (4163, 75012, 'seventy-five thousand twelve'), (4164, 99980, 'ninety-nine thousand nine hundred eighty'), (4165, 50010, 'fifty thousand ten'), (4166, 63239, 'sixty-three thousand two hundred thirty-nine'), (4167, 46264, 'forty-six thousand two hundred sixty-four'), (4168, 3008, 'three thousand eight'), (4169, 73017, 'seventy-three thousand seventeen'), (4170, 80318, 'eighty thousand three hundred eighteen'), (4171, 88927, 'eighty-eight thousand nine hundred twenty-seven'), (4172, 81274, 'eighty-one thousand two hundred seventy-four'), (4173, 2042, 'two thousand forty-two'), (4174, 64208, 'sixty-four thousand two hundred eight'), (4175, 68960, 'sixty-eight thousand nine hundred sixty'), (4176, 35762, 'thirty-five thousand seven hundred sixty-two'), (4177, 34565, 'thirty-four thousand five hundred sixty-five'), (4178, 25206, 'twenty-five thousand two hundred six'), (4179, 88983, 'eighty-eight thousand nine hundred eighty-three'), (4180, 1561, 'one thousand five hundred sixty-one'), (4181, 78055, 'seventy-eight thousand fifty-five'), (4182, 15211, 'fifteen thousand two hundred eleven'), (4183, 6521, 'six thousand five hundred twenty-one'), (4184, 90252, 'ninety thousand two hundred fifty-two'), (4185, 36148, 'thirty-six thousand one hundred forty-eight'), (4186, 25154, 'twenty-five thousand one hundred fifty-four'), (4187, 26225, 'twenty-six thousand two hundred twenty-five'), (4188, 29731, 'twenty-nine thousand seven hundred thirty-one'), (4189, 53019, 'fifty-three thousand nineteen'), (4190, 63655, 'sixty-three thousand six hundred fifty-five'), (4191, 98432, 'ninety-eight thousand four hundred thirty-two'), (4192, 35425, 'thirty-five thousand four hundred twenty-five'), (4193, 76458, 'seventy-six thousand four hundred fifty-eight'), (4194, 23698, 'twenty-three thousand six hundred ninety-eight'), (4195, 17217, 'seventeen thousand two hundred seventeen'), (4196, 47301, 'forty-seven thousand three hundred one'), (4197, 27341, 'twenty-seven thousand three hundred forty-one'), (4198, 75533, 'seventy-five thousand five hundred thirty-three'), (4199, 12303, 'twelve thousand three hundred three'), (4200, 24176, 'twenty-four thousand one hundred seventy-six'), (4201, 21438, 'twenty-one thousand four hundred thirty-eight'), (4202, 21970, 'twenty-one thousand nine hundred seventy'), (4203, 59033, 'fifty-nine thousand thirty-three'), (4204, 46814, 'forty-six thousand eight hundred fourteen'), (4205, 38981, 'thirty-eight thousand nine hundred eighty-one'), (4206, 27904, 'twenty-seven thousand nine hundred four'), (4207, 24136, 'twenty-four thousand one hundred thirty-six'), (4208, 70749, 'seventy thousand seven hundred forty-nine'), (4209, 45423, 'forty-five thousand four hundred twenty-three'), (4210, 24329, 'twenty-four thousand three hundred twenty-nine'), (4211, 50187, 'fifty thousand one hundred eighty-seven'), (4212, 40052, 'forty thousand fifty-two'), (4213, 42353, 'forty-two thousand three hundred fifty-three'), (4214, 15519, 'fifteen thousand five hundred nineteen'), (4215, 56068, 'fifty-six thousand sixty-eight'), (4216, 62342, 'sixty-two thousand three hundred forty-two'), (4217, 12713, 'twelve thousand seven hundred thirteen'), (4218, 45393, 'forty-five thousand three hundred ninety-three'), (4219, 58954, 'fifty-eight thousand nine hundred fifty-four'), (4220, 75288, 'seventy-five thousand two hundred eighty-eight'), (4221, 17860, 'seventeen thousand eight hundred sixty'), (4222, 81471, 'eighty-one thousand four hundred seventy-one'), (4223, 77160, 'seventy-seven thousand one hundred sixty'), (4224, 79079, 'seventy-nine thousand seventy-nine'), (4225, 12010, 'twelve thousand ten'), (4226, 80815, 'eighty thousand eight hundred fifteen'), (4227, 90813, 'ninety thousand eight hundred thirteen'), (4228, 88816, 'eighty-eight thousand eight hundred sixteen'), (4229, 98715, 'ninety-eight thousand seven hundred fifteen'), (4230, 21600, 'twenty-one thousand six hundred'), (4231, 15447, 'fifteen thousand four hundred forty-seven'), (4232, 88291, 'eighty-eight thousand two hundred ninety-one'), (4233, 72622, 'seventy-two thousand six hundred twenty-two'), (4234, 12937, 'twelve thousand nine hundred thirty-seven'), (4235, 56112, 'fifty-six thousand one hundred twelve'), (4236, 54464, 'fifty-four thousand four hundred sixty-four'), (4237, 53441, 'fifty-three thousand four hundred forty-one'), (4238, 78597, 'seventy-eight thousand five hundred ninety-seven'), (4239, 36983, 'thirty-six thousand nine hundred eighty-three'), (4240, 2498, 'two thousand four hundred ninety-eight'), (4241, 9398, 'nine thousand three hundred ninety-eight'), (4242, 27954, 'twenty-seven thousand nine hundred fifty-four'), (4243, 43254, 'forty-three thousand two hundred fifty-four'), (4244, 27133, 'twenty-seven thousand one hundred thirty-three'), (4245, 11405, 'eleven thousand four hundred five'), (4246, 90710, 'ninety thousand seven hundred ten'), (4247, 65269, 'sixty-five thousand two hundred sixty-nine'), (4248, 65463, 'sixty-five thousand four hundred sixty-three'), (4249, 20022, 'twenty thousand twenty-two'), (4250, 57930, 'fifty-seven thousand nine hundred thirty'), (4251, 84894, 'eighty-four thousand eight hundred ninety-four'), (4252, 6773, 'six thousand seven hundred seventy-three'), (4253, 47603, 'forty-seven thousand six hundred three'), (4254, 73149, 'seventy-three thousand one hundred forty-nine'), (4255, 56350, 'fifty-six thousand three hundred fifty'), (4256, 31678, 'thirty-one thousand six hundred seventy-eight'), (4257, 36192, 'thirty-six thousand one hundred ninety-two'), (4258, 88732, 'eighty-eight thousand seven hundred thirty-two'), (4259, 78366, 'seventy-eight thousand three hundred sixty-six'), (4260, 44574, 'forty-four thousand five hundred seventy-four'), (4261, 44046, 'forty-four thousand forty-six'), (4262, 56665, 'fifty-six thousand six hundred sixty-five'), (4263, 24447, 'twenty-four thousand four hundred forty-seven'), (4264, 17583, 'seventeen thousand five hundred eighty-three'), (4265, 77045, 'seventy-seven thousand forty-five'), (4266, 39551, 'thirty-nine thousand five hundred fifty-one'), (4267, 27270, 'twenty-seven thousand two hundred seventy'), (4268, 10895, 'ten thousand eight hundred ninety-five'), (4269, 14927, 'fourteen thousand nine hundred twenty-seven'), (4270, 9843, 'nine thousand eight hundred forty-three'), (4271, 69052, 'sixty-nine thousand fifty-two'), (4272, 40042, 'forty thousand forty-two'), (4273, 26035, 'twenty-six thousand thirty-five'), (4274, 45101, 'forty-five thousand one hundred one'), (4275, 87634, 'eighty-seven thousand six hundred thirty-four'), (4276, 26431, 'twenty-six thousand four hundred thirty-one'), (4277, 95501, 'ninety-five thousand five hundred one'), (4278, 43019, 'forty-three thousand nineteen'), (4279, 13232, 'thirteen thousand two hundred thirty-two'), (4280, 73359, 'seventy-three thousand three hundred fifty-nine'), (4281, 2032, 'two thousand thirty-two'), (4282, 53445, 'fifty-three thousand four hundred forty-five'), (4283, 3762, 'three thousand seven hundred sixty-two'), (4284, 54323, 'fifty-four thousand three hundred twenty-three'), (4285, 26353, 'twenty-six thousand three hundred fifty-three'), (4286, 23823, 'twenty-three thousand eight hundred twenty-three'), (4287, 10107, 'ten thousand one hundred seven'), (4288, 38757, 'thirty-eight thousand seven hundred fifty-seven'), (4289, 72327, 'seventy-two thousand three hundred twenty-seven'), (4290, 53587, 'fifty-three thousand five hundred eighty-seven'), (4291, 89088, 'eighty-nine thousand eighty-eight'), (4292, 86628, 'eighty-six thousand six hundred twenty-eight'), (4293, 10958, 'ten thousand nine hundred fifty-eight'), (4294, 58652, 'fifty-eight thousand six hundred fifty-two'), (4295, 58097, 'fifty-eight thousand ninety-seven'), (4296, 4741, 'four thousand seven hundred forty-one'), (4297, 97362, 'ninety-seven thousand three hundred sixty-two'), (4298, 26291, 'twenty-six thousand two hundred ninety-one'), (4299, 90689, 'ninety thousand six hundred eighty-nine'), (4300, 21306, 'twenty-one thousand three hundred six'), (4301, 12779, 'twelve thousand seven hundred seventy-nine'), (4302, 43906, 'forty-three thousand nine hundred six'), (4303, 28345, 'twenty-eight thousand three hundred forty-five'), (4304, 3431, 'three thousand four hundred thirty-one'), (4305, 76962, 'seventy-six thousand nine hundred sixty-two'), (4306, 22743, 'twenty-two thousand seven hundred forty-three'), (4307, 76905, 'seventy-six thousand nine hundred five'), (4308, 10903, 'ten thousand nine hundred three'), (4309, 28471, 'twenty-eight thousand four hundred seventy-one'), (4310, 44109, 'forty-four thousand one hundred nine'), (4311, 61065, 'sixty-one thousand sixty-five'), (4312, 5809, 'five thousand eight hundred nine'), (4313, 81563, 'eighty-one thousand five hundred sixty-three'), (4314, 11876, 'eleven thousand eight hundred seventy-six'), (4315, 48951, 'forty-eight thousand nine hundred fifty-one'), (4316, 36415, 'thirty-six thousand four hundred fifteen'), (4317, 88986, 'eighty-eight thousand nine hundred eighty-six'), (4318, 28960, 'twenty-eight thousand nine hundred sixty'), (4319, 98521, 'ninety-eight thousand five hundred twenty-one'), (4320, 37806, 'thirty-seven thousand eight hundred six'), (4321, 9153, 'nine thousand one hundred fifty-three'), (4322, 96439, 'ninety-six thousand four hundred thirty-nine'), (4323, 351, 'three hundred fifty-one'), (4324, 38983, 'thirty-eight thousand nine hundred eighty-three'), (4325, 96646, 'ninety-six thousand six hundred forty-six'), (4326, 14385, 'fourteen thousand three hundred eighty-five'), (4327, 40062, 'forty thousand sixty-two'), (4328, 97905, 'ninety-seven thousand nine hundred five'), (4329, 91239, 'ninety-one thousand two hundred thirty-nine'), (4330, 91917, 'ninety-one thousand nine hundred seventeen'), (4331, 37756, 'thirty-seven thousand seven hundred fifty-six'), (4332, 59951, 'fifty-nine thousand nine hundred fifty-one'), (4333, 23108, 'twenty-three thousand one hundred eight'), (4334, 75257, 'seventy-five thousand two hundred fifty-seven'), (4335, 59810, 'fifty-nine thousand eight hundred ten'), (4336, 49996, 'forty-nine thousand nine hundred ninety-six'), (4337, 39751, 'thirty-nine thousand seven hundred fifty-one'), (4338, 87298, 'eighty-seven thousand two hundred ninety-eight'), (4339, 88339, 'eighty-eight thousand three hundred thirty-nine'), (4340, 43114, 'forty-three thousand one hundred fourteen'), (4341, 22084, 'twenty-two thousand eighty-four'), (4342, 17302, 'seventeen thousand three hundred two'), (4343, 99188, 'ninety-nine thousand one hundred eighty-eight'), (4344, 85310, 'eighty-five thousand three hundred ten'), (4345, 77776, 'seventy-seven thousand seven hundred seventy-six'), (4346, 46995, 'forty-six thousand nine hundred ninety-five'), (4347, 38237, 'thirty-eight thousand two hundred thirty-seven'), (4348, 75675, 'seventy-five thousand six hundred seventy-five'), (4349, 43642, 'forty-three thousand six hundred forty-two'), (4350, 19739, 'nineteen thousand seven hundred thirty-nine'), (4351, 4855, 'four thousand eight hundred fifty-five'), (4352, 46928, 'forty-six thousand nine hundred twenty-eight'), (4353, 76727, 'seventy-six thousand seven hundred twenty-seven'), (4354, 56960, 'fifty-six thousand nine hundred sixty'), (4355, 84758, 'eighty-four thousand seven hundred fifty-eight'), (4356, 5461, 'five thousand four hundred sixty-one'), (4357, 75425, 'seventy-five thousand four hundred twenty-five'), (4358, 79900, 'seventy-nine thousand nine hundred'), (4359, 49647, 'forty-nine thousand six hundred forty-seven'), (4360, 61141, 'sixty-one thousand one hundred forty-one'), (4361, 59243, 'fifty-nine thousand two hundred forty-three'), (4362, 51024, 'fifty-one thousand twenty-four'), (4363, 84241, 'eighty-four thousand two hundred forty-one'), (4364, 73234, 'seventy-three thousand two hundred thirty-four'), (4365, 95919, 'ninety-five thousand nine hundred nineteen'), (4366, 66637, 'sixty-six thousand six hundred thirty-seven'), (4367, 21917, 'twenty-one thousand nine hundred seventeen'), (4368, 40846, 'forty thousand eight hundred forty-six'), (4369, 34424, 'thirty-four thousand four hundred twenty-four'), (4370, 10089, 'ten thousand eighty-nine'), (4371, 55554, 'fifty-five thousand five hundred fifty-four'), (4372, 36478, 'thirty-six thousand four hundred seventy-eight'), (4373, 94012, 'ninety-four thousand twelve'), (4374, 637, 'six hundred thirty-seven'), (4375, 30513, 'thirty thousand five hundred thirteen'), (4376, 33790, 'thirty-three thousand seven hundred ninety'), (4377, 8010, 'eight thousand ten'), (4378, 72371, 'seventy-two thousand three hundred seventy-one'), (4379, 59532, 'fifty-nine thousand five hundred thirty-two'), (4380, 38361, 'thirty-eight thousand three hundred sixty-one'), (4381, 88203, 'eighty-eight thousand two hundred three'), (4382, 39850, 'thirty-nine thousand eight hundred fifty'), (4383, 27102, 'twenty-seven thousand one hundred two'), (4384, 84757, 'eighty-four thousand seven hundred fifty-seven'), (4385, 31547, 'thirty-one thousand five hundred forty-seven'), (4386, 80939, 'eighty thousand nine hundred thirty-nine'), (4387, 72745, 'seventy-two thousand seven hundred forty-five'), (4388, 49325, 'forty-nine thousand three hundred twenty-five'), (4389, 63270, 'sixty-three thousand two hundred seventy'), (4390, 30207, 'thirty thousand two hundred seven'), (4391, 77692, 'seventy-seven thousand six hundred ninety-two'), (4392, 92739, 'ninety-two thousand seven hundred thirty-nine'), (4393, 99894, 'ninety-nine thousand eight hundred ninety-four'), (4394, 88412, 'eighty-eight thousand four hundred twelve'), (4395, 38460, 'thirty-eight thousand four hundred sixty'), (4396, 50074, 'fifty thousand seventy-four'), (4397, 99238, 'ninety-nine thousand two hundred thirty-eight'), (4398, 26264, 'twenty-six thousand two hundred sixty-four'), (4399, 73237, 'seventy-three thousand two hundred thirty-seven'), (4400, 2738, 'two thousand seven hundred thirty-eight'), (4401, 9490, 'nine thousand four hundred ninety'), (4402, 12569, 'twelve thousand five hundred sixty-nine'), (4403, 25453, 'twenty-five thousand four hundred fifty-three'), (4404, 36806, 'thirty-six thousand eight hundred six'), (4405, 48690, 'forty-eight thousand six hundred ninety'), (4406, 82009, 'eighty-two thousand nine'), (4407, 48119, 'forty-eight thousand one hundred nineteen'), (4408, 70048, 'seventy thousand forty-eight'), (4409, 35114, 'thirty-five thousand one hundred fourteen'), (4410, 53675, 'fifty-three thousand six hundred seventy-five'), (4411, 59782, 'fifty-nine thousand seven hundred eighty-two'), (4412, 38477, 'thirty-eight thousand four hundred seventy-seven'), (4413, 60429, 'sixty thousand four hundred twenty-nine'), (4414, 29701, 'twenty-nine thousand seven hundred one'), (4415, 36273, 'thirty-six thousand two hundred seventy-three'), (4416, 10241, 'ten thousand two hundred forty-one'), (4417, 97422, 'ninety-seven thousand four hundred twenty-two'), (4418, 21979, 'twenty-one thousand nine hundred seventy-nine'), (4419, 39535, 'thirty-nine thousand five hundred thirty-five'), (4420, 90185, 'ninety thousand one hundred eighty-five'), (4421, 6554, 'six thousand five hundred fifty-four'), (4422, 69223, 'sixty-nine thousand two hundred twenty-three'), (4423, 38368, 'thirty-eight thousand three hundred sixty-eight'), (4424, 79574, 'seventy-nine thousand five hundred seventy-four'), (4425, 6582, 'six thousand five hundred eighty-two'), (4426, 35160, 'thirty-five thousand one hundred sixty'), (4427, 19450, 'nineteen thousand four hundred fifty'), (4428, 26477, 'twenty-six thousand four hundred seventy-seven'), (4429, 46417, 'forty-six thousand four hundred seventeen'), (4430, 64785, 'sixty-four thousand seven hundred eighty-five'), (4431, 37436, 'thirty-seven thousand four hundred thirty-six'), (4432, 68095, 'sixty-eight thousand ninety-five'), (4433, 90950, 'ninety thousand nine hundred fifty'), (4434, 24468, 'twenty-four thousand four hundred sixty-eight'), (4435, 10165, 'ten thousand one hundred sixty-five'), (4436, 89249, 'eighty-nine thousand two hundred forty-nine'), (4437, 52842, 'fifty-two thousand eight hundred forty-two'), (4438, 65308, 'sixty-five thousand three hundred eight'), (4439, 41228, 'forty-one thousand two hundred twenty-eight'), (4440, 86740, 'eighty-six thousand seven hundred forty'), (4441, 25030, 'twenty-five thousand thirty'), (4442, 96003, 'ninety-six thousand three'), (4443, 83718, 'eighty-three thousand seven hundred eighteen'), (4444, 9289, 'nine thousand two hundred eighty-nine'), (4445, 10192, 'ten thousand one hundred ninety-two'), (4446, 60579, 'sixty thousand five hundred seventy-nine'), (4447, 18628, 'eighteen thousand six hundred twenty-eight'), (4448, 62218, 'sixty-two thousand two hundred eighteen'), (4449, 93144, 'ninety-three thousand one hundred forty-four'), (4450, 11835, 'eleven thousand eight hundred thirty-five'), (4451, 26689, 'twenty-six thousand six hundred eighty-nine'), (4452, 33231, 'thirty-three thousand two hundred thirty-one'), (4453, 10699, 'ten thousand six hundred ninety-nine'), (4454, 95889, 'ninety-five thousand eight hundred eighty-nine'), (4455, 48434, 'forty-eight thousand four hundred thirty-four'), (4456, 87579, 'eighty-seven thousand five hundred seventy-nine'), (4457, 65327, 'sixty-five thousand three hundred twenty-seven'), (4458, 98690, 'ninety-eight thousand six hundred ninety'), (4459, 48151, 'forty-eight thousand one hundred fifty-one'), (4460, 22126, 'twenty-two thousand one hundred twenty-six'), (4461, 63437, 'sixty-three thousand four hundred thirty-seven'), (4462, 10678, 'ten thousand six hundred seventy-eight'), (4463, 15296, 'fifteen thousand two hundred ninety-six'), (4464, 82638, 'eighty-two thousand six hundred thirty-eight'), (4465, 24493, 'twenty-four thousand four hundred ninety-three'), (4466, 82118, 'eighty-two thousand one hundred eighteen'), (4467, 4261, 'four thousand two hundred sixty-one'), (4468, 57849, 'fifty-seven thousand eight hundred forty-nine'), (4469, 61992, 'sixty-one thousand nine hundred ninety-two'), (4470, 42803, 'forty-two thousand eight hundred three'), (4471, 29108, 'twenty-nine thousand one hundred eight'), (4472, 56794, 'fifty-six thousand seven hundred ninety-four'), (4473, 18720, 'eighteen thousand seven hundred twenty'), (4474, 98395, 'ninety-eight thousand three hundred ninety-five'), (4475, 63736, 'sixty-three thousand seven hundred thirty-six'), (4476, 70233, 'seventy thousand two hundred thirty-three'), (4477, 17035, 'seventeen thousand thirty-five'), (4478, 56136, 'fifty-six thousand one hundred thirty-six'), (4479, 51772, 'fifty-one thousand seven hundred seventy-two'), (4480, 48109, 'forty-eight thousand one hundred nine'), (4481, 70008, 'seventy thousand eight'), (4482, 8527, 'eight thousand five hundred twenty-seven'), (4483, 10841, 'ten thousand eight hundred forty-one'), (4484, 85544, 'eighty-five thousand five hundred forty-four'), (4485, 54307, 'fifty-four thousand three hundred seven'), (4486, 16928, 'sixteen thousand nine hundred twenty-eight'), (4487, 59755, 'fifty-nine thousand seven hundred fifty-five'), (4488, 21933, 'twenty-one thousand nine hundred thirty-three'), (4489, 4583, 'four thousand five hundred eighty-three'), (4490, 89739, 'eighty-nine thousand seven hundred thirty-nine'), (4491, 99787, 'ninety-nine thousand seven hundred eighty-seven'), (4492, 89861, 'eighty-nine thousand eight hundred sixty-one'), (4493, 78471, 'seventy-eight thousand four hundred seventy-one'), (4494, 23109, 'twenty-three thousand one hundred nine'), (4495, 55806, 'fifty-five thousand eight hundred six'), (4496, 22721, 'twenty-two thousand seven hundred twenty-one'), (4497, 74522, 'seventy-four thousand five hundred twenty-two'), (4498, 6563, 'six thousand five hundred sixty-three'), (4499, 56428, 'fifty-six thousand four hundred twenty-eight'), (4500, 44307, 'forty-four thousand three hundred seven'), (4501, 49001, 'forty-nine thousand one'), (4502, 40838, 'forty thousand eight hundred thirty-eight'), (4503, 21195, 'twenty-one thousand one hundred ninety-five'), (4504, 91814, 'ninety-one thousand eight hundred fourteen'), (4505, 50396, 'fifty thousand three hundred ninety-six'), (4506, 61919, 'sixty-one thousand nine hundred nineteen'), (4507, 48342, 'forty-eight thousand three hundred forty-two'), (4508, 70753, 'seventy thousand seven hundred fifty-three'), (4509, 71693, 'seventy-one thousand six hundred ninety-three'), (4510, 74549, 'seventy-four thousand five hundred forty-nine'), (4511, 60812, 'sixty thousand eight hundred twelve'), (4512, 9859, 'nine thousand eight hundred fifty-nine'), (4513, 36854, 'thirty-six thousand eight hundred fifty-four'), (4514, 49793, 'forty-nine thousand seven hundred ninety-three'), (4515, 75206, 'seventy-five thousand two hundred six'), (4516, 78372, 'seventy-eight thousand three hundred seventy-two'), (4517, 4951, 'four thousand nine hundred fifty-one'), (4518, 5564, 'five thousand five hundred sixty-four'), (4519, 7772, 'seven thousand seven hundred seventy-two'), (4520, 30489, 'thirty thousand four hundred eighty-nine'), (4521, 84057, 'eighty-four thousand fifty-seven'), (4522, 79433, 'seventy-nine thousand four hundred thirty-three'), (4523, 2373, 'two thousand three hundred seventy-three'), (4524, 45496, 'forty-five thousand four hundred ninety-six'), (4525, 87313, 'eighty-seven thousand three hundred thirteen'), (4526, 42552, 'forty-two thousand five hundred fifty-two'), (4527, 8510, 'eight thousand five hundred ten'), (4528, 74269, 'seventy-four thousand two hundred sixty-nine'), (4529, 54323, 'fifty-four thousand three hundred twenty-three'), (4530, 20979, 'twenty thousand nine hundred seventy-nine'), (4531, 83057, 'eighty-three thousand fifty-seven'), (4532, 95647, 'ninety-five thousand six hundred forty-seven'), (4533, 80128, 'eighty thousand one hundred twenty-eight'), (4534, 82775, 'eighty-two thousand seven hundred seventy-five'), (4535, 19071, 'nineteen thousand seventy-one'), (4536, 30344, 'thirty thousand three hundred forty-four'), (4537, 69365, 'sixty-nine thousand three hundred sixty-five'), (4538, 1011, 'one thousand eleven'), (4539, 7474, 'seven thousand four hundred seventy-four'), (4540, 69215, 'sixty-nine thousand two hundred fifteen'), (4541, 81575, 'eighty-one thousand five hundred seventy-five'), (4542, 62393, 'sixty-two thousand three hundred ninety-three'), (4543, 70505, 'seventy thousand five hundred five'), (4544, 81573, 'eighty-one thousand five hundred seventy-three'), (4545, 80358, 'eighty thousand three hundred fifty-eight'), (4546, 91336, 'ninety-one thousand three hundred thirty-six'), (4547, 76106, 'seventy-six thousand one hundred six'), (4548, 38208, 'thirty-eight thousand two hundred eight'), (4549, 46026, 'forty-six thousand twenty-six'), (4550, 22083, 'twenty-two thousand eighty-three'), (4551, 40384, 'forty thousand three hundred eighty-four'), (4552, 93542, 'ninety-three thousand five hundred forty-two'), (4553, 36433, 'thirty-six thousand four hundred thirty-three'), (4554, 70229, 'seventy thousand two hundred twenty-nine'), (4555, 59512, 'fifty-nine thousand five hundred twelve'), (4556, 26395, 'twenty-six thousand three hundred ninety-five'), (4557, 25628, 'twenty-five thousand six hundred twenty-eight'), (4558, 98244, 'ninety-eight thousand two hundred forty-four'), (4559, 12642, 'twelve thousand six hundred forty-two'), (4560, 67710, 'sixty-seven thousand seven hundred ten'), (4561, 84543, 'eighty-four thousand five hundred forty-three'), (4562, 94985, 'ninety-four thousand nine hundred eighty-five'), (4563, 80433, 'eighty thousand four hundred thirty-three'), (4564, 47221, 'forty-seven thousand two hundred twenty-one'), (4565, 74390, 'seventy-four thousand three hundred ninety'), (4566, 66652, 'sixty-six thousand six hundred fifty-two'), (4567, 59332, 'fifty-nine thousand three hundred thirty-two'), (4568, 62413, 'sixty-two thousand four hundred thirteen'), (4569, 68194, 'sixty-eight thousand one hundred ninety-four'), (4570, 719, 'seven hundred nineteen'), (4571, 41170, 'forty-one thousand one hundred seventy'), (4572, 82100, 'eighty-two thousand one hundred'), (4573, 89093, 'eighty-nine thousand ninety-three'), (4574, 75316, 'seventy-five thousand three hundred sixteen'), (4575, 67400, 'sixty-seven thousand four hundred'), (4576, 55157, 'fifty-five thousand one hundred fifty-seven'), (4577, 60614, 'sixty thousand six hundred fourteen'), (4578, 5032, 'five thousand thirty-two'), (4579, 56297, 'fifty-six thousand two hundred ninety-seven'), (4580, 93783, 'ninety-three thousand seven hundred eighty-three'), (4581, 17873, 'seventeen thousand eight hundred seventy-three'), (4582, 40278, 'forty thousand two hundred seventy-eight'), (4583, 42191, 'forty-two thousand one hundred ninety-one'), (4584, 10403, 'ten thousand four hundred three'), (4585, 62976, 'sixty-two thousand nine hundred seventy-six'), (4586, 48973, 'forty-eight thousand nine hundred seventy-three'), (4587, 84179, 'eighty-four thousand one hundred seventy-nine'), (4588, 82617, 'eighty-two thousand six hundred seventeen'), (4589, 98811, 'ninety-eight thousand eight hundred eleven'), (4590, 10810, 'ten thousand eight hundred ten'), (4591, 95530, 'ninety-five thousand five hundred thirty'), (4592, 60056, 'sixty thousand fifty-six'), (4593, 42375, 'forty-two thousand three hundred seventy-five'), (4594, 74693, 'seventy-four thousand six hundred ninety-three'), (4595, 79545, 'seventy-nine thousand five hundred forty-five'), (4596, 34917, 'thirty-four thousand nine hundred seventeen'), (4597, 8795, 'eight thousand seven hundred ninety-five'), (4598, 69956, 'sixty-nine thousand nine hundred fifty-six'), (4599, 15812, 'fifteen thousand eight hundred twelve'), (4600, 92571, 'ninety-two thousand five hundred seventy-one'), (4601, 23220, 'twenty-three thousand two hundred twenty'), (4602, 89679, 'eighty-nine thousand six hundred seventy-nine'), (4603, 24818, 'twenty-four thousand eight hundred eighteen'), (4604, 67924, 'sixty-seven thousand nine hundred twenty-four'), (4605, 99165, 'ninety-nine thousand one hundred sixty-five'), (4606, 24311, 'twenty-four thousand three hundred eleven'), (4607, 9894, 'nine thousand eight hundred ninety-four'), (4608, 63083, 'sixty-three thousand eighty-three'), (4609, 92776, 'ninety-two thousand seven hundred seventy-six'), (4610, 25999, 'twenty-five thousand nine hundred ninety-nine'), (4611, 34720, 'thirty-four thousand seven hundred twenty'), (4612, 23372, 'twenty-three thousand three hundred seventy-two'), (4613, 62772, 'sixty-two thousand seven hundred seventy-two'), (4614, 26046, 'twenty-six thousand forty-six'), (4615, 95053, 'ninety-five thousand fifty-three'), (4616, 2782, 'two thousand seven hundred eighty-two'), (4617, 54566, 'fifty-four thousand five hundred sixty-six'), (4618, 42688, 'forty-two thousand six hundred eighty-eight'), (4619, 79565, 'seventy-nine thousand five hundred sixty-five'), (4620, 54007, 'fifty-four thousand seven'), (4621, 90412, 'ninety thousand four hundred twelve'), (4622, 58728, 'fifty-eight thousand seven hundred twenty-eight'), (4623, 37957, 'thirty-seven thousand nine hundred fifty-seven'), (4624, 43202, 'forty-three thousand two hundred two'), (4625, 49790, 'forty-nine thousand seven hundred ninety'), (4626, 33414, 'thirty-three thousand four hundred fourteen'), (4627, 42322, 'forty-two thousand three hundred twenty-two'), (4628, 66051, 'sixty-six thousand fifty-one'), (4629, 38905, 'thirty-eight thousand nine hundred five'), (4630, 48833, 'forty-eight thousand eight hundred thirty-three'), (4631, 5917, 'five thousand nine hundred seventeen'), (4632, 24691, 'twenty-four thousand six hundred ninety-one'), (4633, 1307, 'one thousand three hundred seven'), (4634, 81004, 'eighty-one thousand four'), (4635, 55384, 'fifty-five thousand three hundred eighty-four'), (4636, 8380, 'eight thousand three hundred eighty'), (4637, 7495, 'seven thousand four hundred ninety-five'), (4638, 1119, 'one thousand one hundred nineteen'), (4639, 30853, 'thirty thousand eight hundred fifty-three'), (4640, 44294, 'forty-four thousand two hundred ninety-four'), (4641, 17223, 'seventeen thousand two hundred twenty-three'), (4642, 71350, 'seventy-one thousand three hundred fifty'), (4643, 47958, 'forty-seven thousand nine hundred fifty-eight'), (4644, 55460, 'fifty-five thousand four hundred sixty'), (4645, 16224, 'sixteen thousand two hundred twenty-four'), (4646, 7300, 'seven thousand three hundred'), (4647, 64606, 'sixty-four thousand six hundred six'), (4648, 4906, 'four thousand nine hundred six'), (4649, 83154, 'eighty-three thousand one hundred fifty-four'), (4650, 29720, 'twenty-nine thousand seven hundred twenty'), (4651, 26178, 'twenty-six thousand one hundred seventy-eight'), (4652, 67536, 'sixty-seven thousand five hundred thirty-six'), (4653, 89097, 'eighty-nine thousand ninety-seven'), (4654, 69360, 'sixty-nine thousand three hundred sixty'), (4655, 75725, 'seventy-five thousand seven hundred twenty-five'), (4656, 31599, 'thirty-one thousand five hundred ninety-nine'), (4657, 86746, 'eighty-six thousand seven hundred forty-six'), (4658, 8155, 'eight thousand one hundred fifty-five'), (4659, 10435, 'ten thousand four hundred thirty-five'), (4660, 64746, 'sixty-four thousand seven hundred forty-six'), (4661, 88342, 'eighty-eight thousand three hundred forty-two'), (4662, 29044, 'twenty-nine thousand forty-four'), (4663, 87397, 'eighty-seven thousand three hundred ninety-seven'), (4664, 95840, 'ninety-five thousand eight hundred forty'), (4665, 10172, 'ten thousand one hundred seventy-two'), (4666, 61756, 'sixty-one thousand seven hundred fifty-six'), (4667, 58421, 'fifty-eight thousand four hundred twenty-one'), (4668, 81554, 'eighty-one thousand five hundred fifty-four'), (4669, 45405, 'forty-five thousand four hundred five'), (4670, 87799, 'eighty-seven thousand seven hundred ninety-nine'), (4671, 896, 'eight hundred ninety-six'), (4672, 87029, 'eighty-seven thousand twenty-nine'), (4673, 75762, 'seventy-five thousand seven hundred sixty-two'), (4674, 66069, 'sixty-six thousand sixty-nine'), (4675, 37825, 'thirty-seven thousand eight hundred twenty-five'), (4676, 2593, 'two thousand five hundred ninety-three'), (4677, 64303, 'sixty-four thousand three hundred three'), (4678, 19227, 'nineteen thousand two hundred twenty-seven'), (4679, 87241, 'eighty-seven thousand two hundred forty-one'), (4680, 73328, 'seventy-three thousand three hundred twenty-eight'), (4681, 98135, 'ninety-eight thousand one hundred thirty-five'), (4682, 96177, 'ninety-six thousand one hundred seventy-seven'), (4683, 50127, 'fifty thousand one hundred twenty-seven'), (4684, 13236, 'thirteen thousand two hundred thirty-six'), (4685, 78778, 'seventy-eight thousand seven hundred seventy-eight'), (4686, 67244, 'sixty-seven thousand two hundred forty-four'), (4687, 73829, 'seventy-three thousand eight hundred twenty-nine'), (4688, 86310, 'eighty-six thousand three hundred ten'), (4689, 86329, 'eighty-six thousand three hundred twenty-nine'), (4690, 58308, 'fifty-eight thousand three hundred eight'), (4691, 85135, 'eighty-five thousand one hundred thirty-five'), (4692, 62129, 'sixty-two thousand one hundred twenty-nine'), (4693, 41309, 'forty-one thousand three hundred nine'), (4694, 80303, 'eighty thousand three hundred three'), (4695, 5007, 'five thousand seven'), (4696, 53727, 'fifty-three thousand seven hundred twenty-seven'), (4697, 48423, 'forty-eight thousand four hundred twenty-three'), (4698, 75795, 'seventy-five thousand seven hundred ninety-five'), (4699, 34905, 'thirty-four thousand nine hundred five'), (4700, 89553, 'eighty-nine thousand five hundred fifty-three'), (4701, 43494, 'forty-three thousand four hundred ninety-four'), (4702, 40590, 'forty thousand five hundred ninety'), (4703, 85488, 'eighty-five thousand four hundred eighty-eight'), (4704, 12019, 'twelve thousand nineteen'), (4705, 97967, 'ninety-seven thousand nine hundred sixty-seven'), (4706, 82118, 'eighty-two thousand one hundred eighteen'), (4707, 64177, 'sixty-four thousand one hundred seventy-seven'), (4708, 62453, 'sixty-two thousand four hundred fifty-three'), (4709, 7315, 'seven thousand three hundred fifteen'), (4710, 45527, 'forty-five thousand five hundred twenty-seven'), (4711, 68159, 'sixty-eight thousand one hundred fifty-nine'), (4712, 52376, 'fifty-two thousand three hundred seventy-six'), (4713, 22528, 'twenty-two thousand five hundred twenty-eight'), (4714, 38052, 'thirty-eight thousand fifty-two'), (4715, 33765, 'thirty-three thousand seven hundred sixty-five'), (4716, 58029, 'fifty-eight thousand twenty-nine'), (4717, 69443, 'sixty-nine thousand four hundred forty-three'), (4718, 34837, 'thirty-four thousand eight hundred thirty-seven'), (4719, 75496, 'seventy-five thousand four hundred ninety-six'), (4720, 65687, 'sixty-five thousand six hundred eighty-seven'), (4721, 24103, 'twenty-four thousand one hundred three'), (4722, 99773, 'ninety-nine thousand seven hundred seventy-three'), (4723, 51813, 'fifty-one thousand eight hundred thirteen'), (4724, 66608, 'sixty-six thousand six hundred eight'), (4725, 30541, 'thirty thousand five hundred forty-one'), (4726, 88596, 'eighty-eight thousand five hundred ninety-six'), (4727, 90716, 'ninety thousand seven hundred sixteen'), (4728, 33156, 'thirty-three thousand one hundred fifty-six'), (4729, 31137, 'thirty-one thousand one hundred thirty-seven'), (4730, 17821, 'seventeen thousand eight hundred twenty-one'), (4731, 79641, 'seventy-nine thousand six hundred forty-one'), (4732, 24006, 'twenty-four thousand six'), (4733, 96030, 'ninety-six thousand thirty'), (4734, 93044, 'ninety-three thousand forty-four'), (4735, 31485, 'thirty-one thousand four hundred eighty-five'), (4736, 37035, 'thirty-seven thousand thirty-five'), (4737, 12731, 'twelve thousand seven hundred thirty-one'), (4738, 46662, 'forty-six thousand six hundred sixty-two'), (4739, 85320, 'eighty-five thousand three hundred twenty'), (4740, 26230, 'twenty-six thousand two hundred thirty'), (4741, 48928, 'forty-eight thousand nine hundred twenty-eight'), (4742, 42254, 'forty-two thousand two hundred fifty-four'), (4743, 74631, 'seventy-four thousand six hundred thirty-one'), (4744, 87733, 'eighty-seven thousand seven hundred thirty-three'), (4745, 69235, 'sixty-nine thousand two hundred thirty-five'), (4746, 94475, 'ninety-four thousand four hundred seventy-five'), (4747, 33328, 'thirty-three thousand three hundred twenty-eight'), (4748, 65184, 'sixty-five thousand one hundred eighty-four'), (4749, 66030, 'sixty-six thousand thirty'), (4750, 91364, 'ninety-one thousand three hundred sixty-four'), (4751, 57230, 'fifty-seven thousand two hundred thirty'), (4752, 26124, 'twenty-six thousand one hundred twenty-four'), (4753, 90492, 'ninety thousand four hundred ninety-two'), (4754, 37321, 'thirty-seven thousand three hundred twenty-one'), (4755, 62352, 'sixty-two thousand three hundred fifty-two'), (4756, 56073, 'fifty-six thousand seventy-three'), (4757, 15541, 'fifteen thousand five hundred forty-one'), (4758, 33714, 'thirty-three thousand seven hundred fourteen'), (4759, 32329, 'thirty-two thousand three hundred twenty-nine'), (4760, 77725, 'seventy-seven thousand seven hundred twenty-five'), (4761, 14444, 'fourteen thousand four hundred forty-four'), (4762, 48509, 'forty-eight thousand five hundred nine'), (4763, 85064, 'eighty-five thousand sixty-four'), (4764, 85186, 'eighty-five thousand one hundred eighty-six'), (4765, 1309, 'one thousand three hundred nine'), (4766, 12047, 'twelve thousand forty-seven'), (4767, 31292, 'thirty-one thousand two hundred ninety-two'), (4768, 32860, 'thirty-two thousand eight hundred sixty'), (4769, 1770, 'one thousand seven hundred seventy'), (4770, 8379, 'eight thousand three hundred seventy-nine'), (4771, 16549, 'sixteen thousand five hundred forty-nine'), (4772, 51602, 'fifty-one thousand six hundred two'), (4773, 9098, 'nine thousand ninety-eight'), (4774, 86228, 'eighty-six thousand two hundred twenty-eight'), (4775, 56084, 'fifty-six thousand eighty-four'), (4776, 67274, 'sixty-seven thousand two hundred seventy-four'), (4777, 9238, 'nine thousand two hundred thirty-eight'), (4778, 42824, 'forty-two thousand eight hundred twenty-four'), (4779, 95073, 'ninety-five thousand seventy-three'), (4780, 64989, 'sixty-four thousand nine hundred eighty-nine'), (4781, 10437, 'ten thousand four hundred thirty-seven'), (4782, 49216, 'forty-nine thousand two hundred sixteen'), (4783, 17560, 'seventeen thousand five hundred sixty'), (4784, 63865, 'sixty-three thousand eight hundred sixty-five'), (4785, 54517, 'fifty-four thousand five hundred seventeen'), (4786, 74263, 'seventy-four thousand two hundred sixty-three'), (4787, 31483, 'thirty-one thousand four hundred eighty-three'), (4788, 38967, 'thirty-eight thousand nine hundred sixty-seven'), (4789, 10923, 'ten thousand nine hundred twenty-three'), (4790, 47843, 'forty-seven thousand eight hundred forty-three'), (4791, 84922, 'eighty-four thousand nine hundred twenty-two'), (4792, 64591, 'sixty-four thousand five hundred ninety-one'), (4793, 80493, 'eighty thousand four hundred ninety-three'), (4794, 24902, 'twenty-four thousand nine hundred two'), (4795, 63564, 'sixty-three thousand five hundred sixty-four'), (4796, 2881, 'two thousand eight hundred eighty-one'), (4797, 13764, 'thirteen thousand seven hundred sixty-four'), (4798, 61888, 'sixty-one thousand eight hundred eighty-eight'), (4799, 2098, 'two thousand ninety-eight'), (4800, 45862, 'forty-five thousand eight hundred sixty-two'), (4801, 69082, 'sixty-nine thousand eighty-two'), (4802, 66271, 'sixty-six thousand two hundred seventy-one'), (4803, 42768, 'forty-two thousand seven hundred sixty-eight'), (4804, 35226, 'thirty-five thousand two hundred twenty-six'), (4805, 84784, 'eighty-four thousand seven hundred eighty-four'), (4806, 74277, 'seventy-four thousand two hundred seventy-seven'), (4807, 92202, 'ninety-two thousand two hundred two'), (4808, 80464, 'eighty thousand four hundred sixty-four'), (4809, 27697, 'twenty-seven thousand six hundred ninety-seven'), (4810, 5353, 'five thousand three hundred fifty-three'), (4811, 5002, 'five thousand two'), (4812, 7687, 'seven thousand six hundred eighty-seven'), (4813, 29414, 'twenty-nine thousand four hundred fourteen'), (4814, 98274, 'ninety-eight thousand two hundred seventy-four'), (4815, 39652, 'thirty-nine thousand six hundred fifty-two'), (4816, 74237, 'seventy-four thousand two hundred thirty-seven'), (4817, 26761, 'twenty-six thousand seven hundred sixty-one'), (4818, 74287, 'seventy-four thousand two hundred eighty-seven'), (4819, 84035, 'eighty-four thousand thirty-five'), (4820, 82892, 'eighty-two thousand eight hundred ninety-two'), (4821, 1117, 'one thousand one hundred seventeen'), (4822, 32247, 'thirty-two thousand two hundred forty-seven'), (4823, 12453, 'twelve thousand four hundred fifty-three'), (4824, 25244, 'twenty-five thousand two hundred forty-four'), (4825, 89896, 'eighty-nine thousand eight hundred ninety-six'), (4826, 59883, 'fifty-nine thousand eight hundred eighty-three'), (4827, 57300, 'fifty-seven thousand three hundred'), (4828, 11907, 'eleven thousand nine hundred seven'), (4829, 99518, 'ninety-nine thousand five hundred eighteen'), (4830, 41801, 'forty-one thousand eight hundred one'), (4831, 1239, 'one thousand two hundred thirty-nine'), (4832, 47840, 'forty-seven thousand eight hundred forty'), (4833, 50098, 'fifty thousand ninety-eight'), (4834, 77987, 'seventy-seven thousand nine hundred eighty-seven'), (4835, 23982, 'twenty-three thousand nine hundred eighty-two'), (4836, 8077, 'eight thousand seventy-seven'), (4837, 12074, 'twelve thousand seventy-four'), (4838, 15024, 'fifteen thousand twenty-four'), (4839, 7685, 'seven thousand six hundred eighty-five'), (4840, 88200, 'eighty-eight thousand two hundred'), (4841, 23529, 'twenty-three thousand five hundred twenty-nine'), (4842, 68902, 'sixty-eight thousand nine hundred two'), (4843, 81465, 'eighty-one thousand four hundred sixty-five'), (4844, 32099, 'thirty-two thousand ninety-nine'), (4845, 73640, 'seventy-three thousand six hundred forty'), (4846, 34012, 'thirty-four thousand twelve'), (4847, 61675, 'sixty-one thousand six hundred seventy-five'), (4848, 7280, 'seven thousand two hundred eighty'), (4849, 82103, 'eighty-two thousand one hundred three'), (4850, 70799, 'seventy thousand seven hundred ninety-nine'), (4851, 50494, 'fifty thousand four hundred ninety-four'), (4852, 77560, 'seventy-seven thousand five hundred sixty'), (4853, 38742, 'thirty-eight thousand seven hundred forty-two'), (4854, 24288, 'twenty-four thousand two hundred eighty-eight'), (4855, 69058, 'sixty-nine thousand fifty-eight'), (4856, 12216, 'twelve thousand two hundred sixteen'), (4857, 99738, 'ninety-nine thousand seven hundred thirty-eight'), (4858, 10590, 'ten thousand five hundred ninety'), (4859, 15070, 'fifteen thousand seventy'), (4860, 90736, 'ninety thousand seven hundred thirty-six'), (4861, 56521, 'fifty-six thousand five hundred twenty-one'), (4862, 75640, 'seventy-five thousand six hundred forty'), (4863, 14212, 'fourteen thousand two hundred twelve'), (4864, 81937, 'eighty-one thousand nine hundred thirty-seven'), (4865, 99931, 'ninety-nine thousand nine hundred thirty-one'), (4866, 64409, 'sixty-four thousand four hundred nine'), (4867, 13734, 'thirteen thousand seven hundred thirty-four'), (4868, 12079, 'twelve thousand seventy-nine'), (4869, 31677, 'thirty-one thousand six hundred seventy-seven'), (4870, 95818, 'ninety-five thousand eight hundred eighteen'), (4871, 92679, 'ninety-two thousand six hundred seventy-nine'), (4872, 80314, 'eighty thousand three hundred fourteen'), (4873, 31833, 'thirty-one thousand eight hundred thirty-three'), (4874, 14644, 'fourteen thousand six hundred forty-four'), (4875, 57882, 'fifty-seven thousand eight hundred eighty-two'), (4876, 26362, 'twenty-six thousand three hundred sixty-two'), (4877, 29571, 'twenty-nine thousand five hundred seventy-one'), (4878, 44941, 'forty-four thousand nine hundred forty-one'), (4879, 79555, 'seventy-nine thousand five hundred fifty-five'), (4880, 70562, 'seventy thousand five hundred sixty-two'), (4881, 99769, 'ninety-nine thousand seven hundred sixty-nine'), (4882, 34297, 'thirty-four thousand two hundred ninety-seven'), (4883, 59558, 'fifty-nine thousand five hundred fifty-eight'), (4884, 17514, 'seventeen thousand five hundred fourteen'), (4885, 18280, 'eighteen thousand two hundred eighty'), (4886, 15878, 'fifteen thousand eight hundred seventy-eight'), (4887, 24067, 'twenty-four thousand sixty-seven'), (4888, 88931, 'eighty-eight thousand nine hundred thirty-one'), (4889, 5181, 'five thousand one hundred eighty-one'), (4890, 55054, 'fifty-five thousand fifty-four'), (4891, 34607, 'thirty-four thousand six hundred seven'), (4892, 26048, 'twenty-six thousand forty-eight'), (4893, 21009, 'twenty-one thousand nine'), (4894, 79519, 'seventy-nine thousand five hundred nineteen'), (4895, 13919, 'thirteen thousand nine hundred nineteen'), (4896, 48879, 'forty-eight thousand eight hundred seventy-nine'), (4897, 10839, 'ten thousand eight hundred thirty-nine'), (4898, 12357, 'twelve thousand three hundred fifty-seven'), (4899, 84730, 'eighty-four thousand seven hundred thirty'), (4900, 43492, 'forty-three thousand four hundred ninety-two'), (4901, 55627, 'fifty-five thousand six hundred twenty-seven'), (4902, 44426, 'forty-four thousand four hundred twenty-six'), (4903, 14694, 'fourteen thousand six hundred ninety-four'), (4904, 69454, 'sixty-nine thousand four hundred fifty-four'), (4905, 88501, 'eighty-eight thousand five hundred one'), (4906, 55253, 'fifty-five thousand two hundred fifty-three'), (4907, 75291, 'seventy-five thousand two hundred ninety-one'), (4908, 95152, 'ninety-five thousand one hundred fifty-two'), (4909, 31034, 'thirty-one thousand thirty-four'), (4910, 99726, 'ninety-nine thousand seven hundred twenty-six'), (4911, 24828, 'twenty-four thousand eight hundred twenty-eight'), (4912, 44348, 'forty-four thousand three hundred forty-eight'), (4913, 30303, 'thirty thousand three hundred three'), (4914, 5326, 'five thousand three hundred twenty-six'), (4915, 34050, 'thirty-four thousand fifty'), (4916, 6457, 'six thousand four hundred fifty-seven'), (4917, 41994, 'forty-one thousand nine hundred ninety-four'), (4918, 59071, 'fifty-nine thousand seventy-one'), (4919, 23307, 'twenty-three thousand three hundred seven'), (4920, 16993, 'sixteen thousand nine hundred ninety-three'), (4921, 27380, 'twenty-seven thousand three hundred eighty'), (4922, 52711, 'fifty-two thousand seven hundred eleven'), (4923, 16664, 'sixteen thousand six hundred sixty-four'), (4924, 83573, 'eighty-three thousand five hundred seventy-three'), (4925, 61448, 'sixty-one thousand four hundred forty-eight'), (4926, 46892, 'forty-six thousand eight hundred ninety-two'), (4927, 36083, 'thirty-six thousand eighty-three'), (4928, 3469, 'three thousand four hundred sixty-nine'), (4929, 5031, 'five thousand thirty-one'), (4930, 21199, 'twenty-one thousand one hundred ninety-nine'), (4931, 92415, 'ninety-two thousand four hundred fifteen'), (4932, 51844, 'fifty-one thousand eight hundred forty-four'), (4933, 24551, 'twenty-four thousand five hundred fifty-one'), (4934, 81455, 'eighty-one thousand four hundred fifty-five'), (4935, 96000, 'ninety-six thousand'), (4936, 71240, 'seventy-one thousand two hundred forty'), (4937, 18378, 'eighteen thousand three hundred seventy-eight'), (4938, 77605, 'seventy-seven thousand six hundred five'), (4939, 49959, 'forty-nine thousand nine hundred fifty-nine'), (4940, 63338, 'sixty-three thousand three hundred thirty-eight'), (4941, 44667, 'forty-four thousand six hundred sixty-seven'), (4942, 80826, 'eighty thousand eight hundred twenty-six'), (4943, 40813, 'forty thousand eight hundred thirteen'), (4944, 70472, 'seventy thousand four hundred seventy-two'), (4945, 58210, 'fifty-eight thousand two hundred ten'), (4946, 39310, 'thirty-nine thousand three hundred ten'), (4947, 51746, 'fifty-one thousand seven hundred forty-six'), (4948, 85335, 'eighty-five thousand three hundred thirty-five'), (4949, 77283, 'seventy-seven thousand two hundred eighty-three'), (4950, 84380, 'eighty-four thousand three hundred eighty'), (4951, 50945, 'fifty thousand nine hundred forty-five'), (4952, 32624, 'thirty-two thousand six hundred twenty-four'), (4953, 37367, 'thirty-seven thousand three hundred sixty-seven'), (4954, 34802, 'thirty-four thousand eight hundred two'), (4955, 94202, 'ninety-four thousand two hundred two'), (4956, 57492, 'fifty-seven thousand four hundred ninety-two'), (4957, 76334, 'seventy-six thousand three hundred thirty-four'), (4958, 50928, 'fifty thousand nine hundred twenty-eight'), (4959, 43286, 'forty-three thousand two hundred eighty-six'), (4960, 45969, 'forty-five thousand nine hundred sixty-nine'), (4961, 58281, 'fifty-eight thousand two hundred eighty-one'), (4962, 73053, 'seventy-three thousand fifty-three'), (4963, 76339, 'seventy-six thousand three hundred thirty-nine'), (4964, 99403, 'ninety-nine thousand four hundred three'), (4965, 74862, 'seventy-four thousand eight hundred sixty-two'), (4966, 33539, 'thirty-three thousand five hundred thirty-nine'), (4967, 33275, 'thirty-three thousand two hundred seventy-five'), (4968, 91223, 'ninety-one thousand two hundred twenty-three'), (4969, 59855, 'fifty-nine thousand eight hundred fifty-five'), (4970, 78539, 'seventy-eight thousand five hundred thirty-nine'), (4971, 20838, 'twenty thousand eight hundred thirty-eight'), (4972, 96413, 'ninety-six thousand four hundred thirteen'), (4973, 41297, 'forty-one thousand two hundred ninety-seven'), (4974, 97134, 'ninety-seven thousand one hundred thirty-four'), (4975, 33788, 'thirty-three thousand seven hundred eighty-eight'), (4976, 18351, 'eighteen thousand three hundred fifty-one'), (4977, 45544, 'forty-five thousand five hundred forty-four'), (4978, 95782, 'ninety-five thousand seven hundred eighty-two'), (4979, 205, 'two hundred five'), (4980, 37846, 'thirty-seven thousand eight hundred forty-six'), (4981, 31315, 'thirty-one thousand three hundred fifteen'), (4982, 84818, 'eighty-four thousand eight hundred eighteen'), (4983, 3995, 'three thousand nine hundred ninety-five'), (4984, 73963, 'seventy-three thousand nine hundred sixty-three'), (4985, 26633, 'twenty-six thousand six hundred thirty-three'), (4986, 19891, 'nineteen thousand eight hundred ninety-one'), (4987, 49856, 'forty-nine thousand eight hundred fifty-six'), (4988, 69721, 'sixty-nine thousand seven hundred twenty-one'), (4989, 43404, 'forty-three thousand four hundred four'), (4990, 89304, 'eighty-nine thousand three hundred four'), (4991, 21843, 'twenty-one thousand eight hundred forty-three'), (4992, 59798, 'fifty-nine thousand seven hundred ninety-eight'), (4993, 46883, 'forty-six thousand eight hundred eighty-three'), (4994, 58019, 'fifty-eight thousand nineteen'), (4995, 12747, 'twelve thousand seven hundred forty-seven'), (4996, 82912, 'eighty-two thousand nine hundred twelve'), (4997, 8586, 'eight thousand five hundred eighty-six'), (4998, 6723, 'six thousand seven hundred twenty-three'), (4999, 85940, 'eighty-five thousand nine hundred forty'), (5000, 66113, 'sixty-six thousand one hundred thirteen'), (5001, 24322, 'twenty-four thousand three hundred twenty-two'), (5002, 8130, 'eight thousand one hundred thirty'), (5003, 95971, 'ninety-five thousand nine hundred seventy-one'), (5004, 14644, 'fourteen thousand six hundred forty-four'), (5005, 37490, 'thirty-seven thousand four hundred ninety'), (5006, 65844, 'sixty-five thousand eight hundred forty-four'), (5007, 84700, 'eighty-four thousand seven hundred'), (5008, 10621, 'ten thousand six hundred twenty-one'), (5009, 80919, 'eighty thousand nine hundred nineteen'), (5010, 16642, 'sixteen thousand six hundred forty-two'), (5011, 43103, 'forty-three thousand one hundred three'), (5012, 25487, 'twenty-five thousand four hundred eighty-seven'), (5013, 10485, 'ten thousand four hundred eighty-five'), (5014, 56375, 'fifty-six thousand three hundred seventy-five'), (5015, 10406, 'ten thousand four hundred six'), (5016, 5808, 'five thousand eight hundred eight'), (5017, 5514, 'five thousand five hundred fourteen'), (5018, 90687, 'ninety thousand six hundred eighty-seven'), (5019, 1775, 'one thousand seven hundred seventy-five'), (5020, 68369, 'sixty-eight thousand three hundred sixty-nine'), (5021, 69277, 'sixty-nine thousand two hundred seventy-seven'), (5022, 25740, 'twenty-five thousand seven hundred forty'), (5023, 78878, 'seventy-eight thousand eight hundred seventy-eight'), (5024, 83454, 'eighty-three thousand four hundred fifty-four'), (5025, 84490, 'eighty-four thousand four hundred ninety'), (5026, 39202, 'thirty-nine thousand two hundred two'), (5027, 53072, 'fifty-three thousand seventy-two'), (5028, 824, 'eight hundred twenty-four'), (5029, 35709, 'thirty-five thousand seven hundred nine'), (5030, 6074, 'six thousand seventy-four'), (5031, 2581, 'two thousand five hundred eighty-one'), (5032, 24809, 'twenty-four thousand eight hundred nine'), (5033, 12970, 'twelve thousand nine hundred seventy'), (5034, 79953, 'seventy-nine thousand nine hundred fifty-three'), (5035, 42603, 'forty-two thousand six hundred three'), (5036, 14562, 'fourteen thousand five hundred sixty-two'), (5037, 79746, 'seventy-nine thousand seven hundred forty-six'), (5038, 27403, 'twenty-seven thousand four hundred three'), (5039, 16608, 'sixteen thousand six hundred eight'), (5040, 92994, 'ninety-two thousand nine hundred ninety-four'), (5041, 71370, 'seventy-one thousand three hundred seventy'), (5042, 62781, 'sixty-two thousand seven hundred eighty-one'), (5043, 39164, 'thirty-nine thousand one hundred sixty-four'), (5044, 55574, 'fifty-five thousand five hundred seventy-four'), (5045, 18066, 'eighteen thousand sixty-six'), (5046, 26590, 'twenty-six thousand five hundred ninety'), (5047, 22684, 'twenty-two thousand six hundred eighty-four'), (5048, 87821, 'eighty-seven thousand eight hundred twenty-one'), (5049, 50642, 'fifty thousand six hundred forty-two'), (5050, 69741, 'sixty-nine thousand seven hundred forty-one'), (5051, 98648, 'ninety-eight thousand six hundred forty-eight'), (5052, 99862, 'ninety-nine thousand eight hundred sixty-two'), (5053, 58576, 'fifty-eight thousand five hundred seventy-six'), (5054, 69126, 'sixty-nine thousand one hundred twenty-six'), (5055, 73653, 'seventy-three thousand six hundred fifty-three'), (5056, 71722, 'seventy-one thousand seven hundred twenty-two'), (5057, 2286, 'two thousand two hundred eighty-six'), (5058, 71000, 'seventy-one thousand'), (5059, 79784, 'seventy-nine thousand seven hundred eighty-four'), (5060, 82345, 'eighty-two thousand three hundred forty-five'), (5061, 50878, 'fifty thousand eight hundred seventy-eight'), (5062, 55205, 'fifty-five thousand two hundred five'), (5063, 60071, 'sixty thousand seventy-one'), (5064, 11228, 'eleven thousand two hundred twenty-eight'), (5065, 43608, 'forty-three thousand six hundred eight'), (5066, 85486, 'eighty-five thousand four hundred eighty-six'), (5067, 37168, 'thirty-seven thousand one hundred sixty-eight'), (5068, 60688, 'sixty thousand six hundred eighty-eight'), (5069, 50678, 'fifty thousand six hundred seventy-eight'), (5070, 61226, 'sixty-one thousand two hundred twenty-six'), (5071, 38096, 'thirty-eight thousand ninety-six'), (5072, 72403, 'seventy-two thousand four hundred three'), (5073, 40796, 'forty thousand seven hundred ninety-six'), (5074, 60536, 'sixty thousand five hundred thirty-six'), (5075, 32704, 'thirty-two thousand seven hundred four'), (5076, 82359, 'eighty-two thousand three hundred fifty-nine'), (5077, 46989, 'forty-six thousand nine hundred eighty-nine'), (5078, 73857, 'seventy-three thousand eight hundred fifty-seven'), (5079, 65620, 'sixty-five thousand six hundred twenty'), (5080, 13829, 'thirteen thousand eight hundred twenty-nine'), (5081, 48515, 'forty-eight thousand five hundred fifteen'), (5082, 57684, 'fifty-seven thousand six hundred eighty-four'), (5083, 50132, 'fifty thousand one hundred thirty-two'), (5084, 41830, 'forty-one thousand eight hundred thirty'), (5085, 78551, 'seventy-eight thousand five hundred fifty-one'), (5086, 27057, 'twenty-seven thousand fifty-seven'), (5087, 21641, 'twenty-one thousand six hundred forty-one'), (5088, 90341, 'ninety thousand three hundred forty-one'), (5089, 411, 'four hundred eleven'), (5090, 50736, 'fifty thousand seven hundred thirty-six'), (5091, 85361, 'eighty-five thousand three hundred sixty-one'), (5092, 94252, 'ninety-four thousand two hundred fifty-two'), (5093, 8800, 'eight thousand eight hundred'), (5094, 70026, 'seventy thousand twenty-six'), (5095, 41483, 'forty-one thousand four hundred eighty-three'), (5096, 32335, 'thirty-two thousand three hundred thirty-five'), (5097, 38522, 'thirty-eight thousand five hundred twenty-two'), (5098, 55682, 'fifty-five thousand six hundred eighty-two'), (5099, 78728, 'seventy-eight thousand seven hundred twenty-eight'), (5100, 41736, 'forty-one thousand seven hundred thirty-six'), (5101, 10910, 'ten thousand nine hundred ten'), (5102, 22696, 'twenty-two thousand six hundred ninety-six'), (5103, 88552, 'eighty-eight thousand five hundred fifty-two'), (5104, 60685, 'sixty thousand six hundred eighty-five'), (5105, 5912, 'five thousand nine hundred twelve'), (5106, 32618, 'thirty-two thousand six hundred eighteen'), (5107, 75531, 'seventy-five thousand five hundred thirty-one'), (5108, 34889, 'thirty-four thousand eight hundred eighty-nine'), (5109, 86766, 'eighty-six thousand seven hundred sixty-six'), (5110, 57996, 'fifty-seven thousand nine hundred ninety-six'), (5111, 43065, 'forty-three thousand sixty-five'), (5112, 26383, 'twenty-six thousand three hundred eighty-three'), (5113, 55552, 'fifty-five thousand five hundred fifty-two'), (5114, 36143, 'thirty-six thousand one hundred forty-three'), (5115, 67325, 'sixty-seven thousand three hundred twenty-five'), (5116, 52968, 'fifty-two thousand nine hundred sixty-eight'), (5117, 9070, 'nine thousand seventy'), (5118, 34720, 'thirty-four thousand seven hundred twenty'), (5119, 30889, 'thirty thousand eight hundred eighty-nine'), (5120, 18379, 'eighteen thousand three hundred seventy-nine'), (5121, 16918, 'sixteen thousand nine hundred eighteen'), (5122, 87570, 'eighty-seven thousand five hundred seventy'), (5123, 22310, 'twenty-two thousand three hundred ten'), (5124, 37344, 'thirty-seven thousand three hundred forty-four'), (5125, 90795, 'ninety thousand seven hundred ninety-five'), (5126, 6061, 'six thousand sixty-one'), (5127, 66987, 'sixty-six thousand nine hundred eighty-seven'), (5128, 39779, 'thirty-nine thousand seven hundred seventy-nine'), (5129, 19394, 'nineteen thousand three hundred ninety-four'), (5130, 46010, 'forty-six thousand ten'), (5131, 91488, 'ninety-one thousand four hundred eighty-eight'), (5132, 66494, 'sixty-six thousand four hundred ninety-four'), (5133, 39525, 'thirty-nine thousand five hundred twenty-five'), (5134, 31382, 'thirty-one thousand three hundred eighty-two'), (5135, 3680, 'three thousand six hundred eighty'), (5136, 95424, 'ninety-five thousand four hundred twenty-four'), (5137, 21679, 'twenty-one thousand six hundred seventy-nine'), (5138, 39293, 'thirty-nine thousand two hundred ninety-three'), (5139, 3425, 'three thousand four hundred twenty-five'), (5140, 74006, 'seventy-four thousand six'), (5141, 17009, 'seventeen thousand nine'), (5142, 14475, 'fourteen thousand four hundred seventy-five'), (5143, 48520, 'forty-eight thousand five hundred twenty'), (5144, 70568, 'seventy thousand five hundred sixty-eight'), (5145, 24675, 'twenty-four thousand six hundred seventy-five'), (5146, 42895, 'forty-two thousand eight hundred ninety-five'), (5147, 39865, 'thirty-nine thousand eight hundred sixty-five'), (5148, 70375, 'seventy thousand three hundred seventy-five'), (5149, 75726, 'seventy-five thousand seven hundred twenty-six'), (5150, 91335, 'ninety-one thousand three hundred thirty-five'), (5151, 26796, 'twenty-six thousand seven hundred ninety-six'), (5152, 17408, 'seventeen thousand four hundred eight'), (5153, 50712, 'fifty thousand seven hundred twelve'), (5154, 48776, 'forty-eight thousand seven hundred seventy-six'), (5155, 33845, 'thirty-three thousand eight hundred forty-five'), (5156, 87474, 'eighty-seven thousand four hundred seventy-four'), (5157, 32206, 'thirty-two thousand two hundred six'), (5158, 65223, 'sixty-five thousand two hundred twenty-three'), (5159, 93682, 'ninety-three thousand six hundred eighty-two'), (5160, 35828, 'thirty-five thousand eight hundred twenty-eight'), (5161, 76847, 'seventy-six thousand eight hundred forty-seven'), (5162, 14408, 'fourteen thousand four hundred eight'), (5163, 93166, 'ninety-three thousand one hundred sixty-six'), (5164, 65629, 'sixty-five thousand six hundred twenty-nine'), (5165, 75257, 'seventy-five thousand two hundred fifty-seven'), (5166, 17025, 'seventeen thousand twenty-five'), (5167, 19091, 'nineteen thousand ninety-one'), (5168, 98046, 'ninety-eight thousand forty-six'), (5169, 54254, 'fifty-four thousand two hundred fifty-four'), (5170, 81464, 'eighty-one thousand four hundred sixty-four'), (5171, 44732, 'forty-four thousand seven hundred thirty-two'), (5172, 91734, 'ninety-one thousand seven hundred thirty-four'), (5173, 47346, 'forty-seven thousand three hundred forty-six'), (5174, 58097, 'fifty-eight thousand ninety-seven'), (5175, 75380, 'seventy-five thousand three hundred eighty'), (5176, 39555, 'thirty-nine thousand five hundred fifty-five'), (5177, 47373, 'forty-seven thousand three hundred seventy-three'), (5178, 64877, 'sixty-four thousand eight hundred seventy-seven'), (5179, 21348, 'twenty-one thousand three hundred forty-eight'), (5180, 36240, 'thirty-six thousand two hundred forty'), (5181, 13435, 'thirteen thousand four hundred thirty-five'), (5182, 15048, 'fifteen thousand forty-eight'), (5183, 77108, 'seventy-seven thousand one hundred eight'), (5184, 25707, 'twenty-five thousand seven hundred seven'), (5185, 16716, 'sixteen thousand seven hundred sixteen'), (5186, 40386, 'forty thousand three hundred eighty-six'), (5187, 94386, 'ninety-four thousand three hundred eighty-six'), (5188, 61062, 'sixty-one thousand sixty-two'), (5189, 32277, 'thirty-two thousand two hundred seventy-seven'), (5190, 7382, 'seven thousand three hundred eighty-two'), (5191, 77969, 'seventy-seven thousand nine hundred sixty-nine'), (5192, 97830, 'ninety-seven thousand eight hundred thirty'), (5193, 44012, 'forty-four thousand twelve'), (5194, 27865, 'twenty-seven thousand eight hundred sixty-five'), (5195, 2111, 'two thousand one hundred eleven'), (5196, 92151, 'ninety-two thousand one hundred fifty-one'), (5197, 33711, 'thirty-three thousand seven hundred eleven'), (5198, 86673, 'eighty-six thousand six hundred seventy-three'), (5199, 32063, 'thirty-two thousand sixty-three'), (5200, 58137, 'fifty-eight thousand one hundred thirty-seven'), (5201, 26677, 'twenty-six thousand six hundred seventy-seven'), (5202, 9393, 'nine thousand three hundred ninety-three'), (5203, 87719, 'eighty-seven thousand seven hundred nineteen'), (5204, 29921, 'twenty-nine thousand nine hundred twenty-one'), (5205, 43815, 'forty-three thousand eight hundred fifteen'), (5206, 79022, 'seventy-nine thousand twenty-two'), (5207, 49840, 'forty-nine thousand eight hundred forty'), (5208, 71770, 'seventy-one thousand seven hundred seventy'), (5209, 17187, 'seventeen thousand one hundred eighty-seven'), (5210, 71694, 'seventy-one thousand six hundred ninety-four'), (5211, 26982, 'twenty-six thousand nine hundred eighty-two'), (5212, 74211, 'seventy-four thousand two hundred eleven'), (5213, 12564, 'twelve thousand five hundred sixty-four'), (5214, 62500, 'sixty-two thousand five hundred'), (5215, 50541, 'fifty thousand five hundred forty-one'), (5216, 19991, 'nineteen thousand nine hundred ninety-one'), (5217, 13397, 'thirteen thousand three hundred ninety-seven'), (5218, 44687, 'forty-four thousand six hundred eighty-seven'), (5219, 70617, 'seventy thousand six hundred seventeen'), (5220, 53581, 'fifty-three thousand five hundred eighty-one'), (5221, 18273, 'eighteen thousand two hundred seventy-three'), (5222, 20163, 'twenty thousand one hundred sixty-three'), (5223, 25076, 'twenty-five thousand seventy-six'), (5224, 25315, 'twenty-five thousand three hundred fifteen'), (5225, 63187, 'sixty-three thousand one hundred eighty-seven'), (5226, 28879, 'twenty-eight thousand eight hundred seventy-nine'), (5227, 21950, 'twenty-one thousand nine hundred fifty'), (5228, 19570, 'nineteen thousand five hundred seventy'), (5229, 18020, 'eighteen thousand twenty'), (5230, 56642, 'fifty-six thousand six hundred forty-two'), (5231, 31942, 'thirty-one thousand nine hundred forty-two'), (5232, 57754, 'fifty-seven thousand seven hundred fifty-four'), (5233, 65107, 'sixty-five thousand one hundred seven'), (5234, 895, 'eight hundred ninety-five'), (5235, 42916, 'forty-two thousand nine hundred sixteen'), (5236, 77099, 'seventy-seven thousand ninety-nine'), (5237, 30448, 'thirty thousand four hundred forty-eight'), (5238, 49991, 'forty-nine thousand nine hundred ninety-one'), (5239, 39896, 'thirty-nine thousand eight hundred ninety-six'), (5240, 9542, 'nine thousand five hundred forty-two'), (5241, 20577, 'twenty thousand five hundred seventy-seven'), (5242, 86435, 'eighty-six thousand four hundred thirty-five'), (5243, 30495, 'thirty thousand four hundred ninety-five'), (5244, 16327, 'sixteen thousand three hundred twenty-seven'), (5245, 7357, 'seven thousand three hundred fifty-seven'), (5246, 47431, 'forty-seven thousand four hundred thirty-one'), (5247, 53954, 'fifty-three thousand nine hundred fifty-four'), (5248, 89868, 'eighty-nine thousand eight hundred sixty-eight'), (5249, 71608, 'seventy-one thousand six hundred eight'), (5250, 77979, 'seventy-seven thousand nine hundred seventy-nine'), (5251, 53920, 'fifty-three thousand nine hundred twenty'), (5252, 17102, 'seventeen thousand one hundred two'), (5253, 41283, 'forty-one thousand two hundred eighty-three'), (5254, 14681, 'fourteen thousand six hundred eighty-one'), (5255, 36124, 'thirty-six thousand one hundred twenty-four'), (5256, 40148, 'forty thousand one hundred forty-eight'), (5257, 53118, 'fifty-three thousand one hundred eighteen'), (5258, 98197, 'ninety-eight thousand one hundred ninety-seven'), (5259, 13804, 'thirteen thousand eight hundred four'), (5260, 90432, 'ninety thousand four hundred thirty-two'), (5261, 91215, 'ninety-one thousand two hundred fifteen'), (5262, 67540, 'sixty-seven thousand five hundred forty'), (5263, 94507, 'ninety-four thousand five hundred seven'), (5264, 97665, 'ninety-seven thousand six hundred sixty-five'), (5265, 27722, 'twenty-seven thousand seven hundred twenty-two'), (5266, 5525, 'five thousand five hundred twenty-five'), (5267, 82660, 'eighty-two thousand six hundred sixty'), (5268, 2493, 'two thousand four hundred ninety-three'), (5269, 57665, 'fifty-seven thousand six hundred sixty-five'), (5270, 11447, 'eleven thousand four hundred forty-seven'), (5271, 50975, 'fifty thousand nine hundred seventy-five'), (5272, 17031, 'seventeen thousand thirty-one'), (5273, 46062, 'forty-six thousand sixty-two'), (5274, 50788, 'fifty thousand seven hundred eighty-eight'), (5275, 66717, 'sixty-six thousand seven hundred seventeen'), (5276, 1022, 'one thousand twenty-two'), (5277, 2084, 'two thousand eighty-four'), (5278, 39473, 'thirty-nine thousand four hundred seventy-three'), (5279, 32962, 'thirty-two thousand nine hundred sixty-two'), (5280, 3977, 'three thousand nine hundred seventy-seven'), (5281, 97842, 'ninety-seven thousand eight hundred forty-two'), (5282, 30254, 'thirty thousand two hundred fifty-four'), (5283, 50811, 'fifty thousand eight hundred eleven'), (5284, 94204, 'ninety-four thousand two hundred four'), (5285, 4950, 'four thousand nine hundred fifty'), (5286, 89870, 'eighty-nine thousand eight hundred seventy'), (5287, 40037, 'forty thousand thirty-seven'), (5288, 33708, 'thirty-three thousand seven hundred eight'), (5289, 33189, 'thirty-three thousand one hundred eighty-nine'), (5290, 68296, 'sixty-eight thousand two hundred ninety-six'), (5291, 48145, 'forty-eight thousand one hundred forty-five'), (5292, 70236, 'seventy thousand two hundred thirty-six'), (5293, 10543, 'ten thousand five hundred forty-three'), (5294, 3280, 'three thousand two hundred eighty'), (5295, 2050, 'two thousand fifty'), (5296, 1989, 'one thousand nine hundred eighty-nine'), (5297, 1699, 'one thousand six hundred ninety-nine'), (5298, 45121, 'forty-five thousand one hundred twenty-one'), (5299, 11781, 'eleven thousand seven hundred eighty-one'), (5300, 48271, 'forty-eight thousand two hundred seventy-one'), (5301, 34294, 'thirty-four thousand two hundred ninety-four'), (5302, 52464, 'fifty-two thousand four hundred sixty-four'), (5303, 59753, 'fifty-nine thousand seven hundred fifty-three'), (5304, 21853, 'twenty-one thousand eight hundred fifty-three'), (5305, 83948, 'eighty-three thousand nine hundred forty-eight'), (5306, 37917, 'thirty-seven thousand nine hundred seventeen'), (5307, 60546, 'sixty thousand five hundred forty-six'), (5308, 79951, 'seventy-nine thousand nine hundred fifty-one'), (5309, 36248, 'thirty-six thousand two hundred forty-eight'), (5310, 58113, 'fifty-eight thousand one hundred thirteen'), (5311, 28184, 'twenty-eight thousand one hundred eighty-four'), (5312, 62196, 'sixty-two thousand one hundred ninety-six'), (5313, 87253, 'eighty-seven thousand two hundred fifty-three'), (5314, 28779, 'twenty-eight thousand seven hundred seventy-nine'), (5315, 61512, 'sixty-one thousand five hundred twelve'), (5316, 57415, 'fifty-seven thousand four hundred fifteen'), (5317, 45644, 'forty-five thousand six hundred forty-four'), (5318, 73594, 'seventy-three thousand five hundred ninety-four'), (5319, 34783, 'thirty-four thousand seven hundred eighty-three'), (5320, 47691, 'forty-seven thousand six hundred ninety-one'), (5321, 56864, 'fifty-six thousand eight hundred sixty-four'), (5322, 48701, 'forty-eight thousand seven hundred one'), (5323, 43437, 'forty-three thousand four hundred thirty-seven'), (5324, 49428, 'forty-nine thousand four hundred twenty-eight'), (5325, 69435, 'sixty-nine thousand four hundred thirty-five'), (5326, 73541, 'seventy-three thousand five hundred forty-one'), (5327, 12359, 'twelve thousand three hundred fifty-nine'), (5328, 1215, 'one thousand two hundred fifteen'), (5329, 98618, 'ninety-eight thousand six hundred eighteen'), (5330, 79937, 'seventy-nine thousand nine hundred thirty-seven'), (5331, 7028, 'seven thousand twenty-eight'), (5332, 98602, 'ninety-eight thousand six hundred two'), (5333, 8295, 'eight thousand two hundred ninety-five'), (5334, 244, 'two hundred forty-four'), (5335, 76684, 'seventy-six thousand six hundred eighty-four'), (5336, 42986, 'forty-two thousand nine hundred eighty-six'), (5337, 28285, 'twenty-eight thousand two hundred eighty-five'), (5338, 825, 'eight hundred twenty-five'), (5339, 37649, 'thirty-seven thousand six hundred forty-nine'), (5340, 88441, 'eighty-eight thousand four hundred forty-one'), (5341, 71026, 'seventy-one thousand twenty-six'), (5342, 45722, 'forty-five thousand seven hundred twenty-two'), (5343, 52700, 'fifty-two thousand seven hundred'), (5344, 95810, 'ninety-five thousand eight hundred ten'), (5345, 71403, 'seventy-one thousand four hundred three'), (5346, 51049, 'fifty-one thousand forty-nine'), (5347, 92748, 'ninety-two thousand seven hundred forty-eight'), (5348, 26485, 'twenty-six thousand four hundred eighty-five'), (5349, 87979, 'eighty-seven thousand nine hundred seventy-nine'), (5350, 91638, 'ninety-one thousand six hundred thirty-eight'), (5351, 46457, 'forty-six thousand four hundred fifty-seven'), (5352, 78445, 'seventy-eight thousand four hundred forty-five'), (5353, 20075, 'twenty thousand seventy-five'), (5354, 26129, 'twenty-six thousand one hundred twenty-nine'), (5355, 57156, 'fifty-seven thousand one hundred fifty-six'), (5356, 21719, 'twenty-one thousand seven hundred nineteen'), (5357, 92302, 'ninety-two thousand three hundred two'), (5358, 96496, 'ninety-six thousand four hundred ninety-six'), (5359, 38411, 'thirty-eight thousand four hundred eleven'), (5360, 37527, 'thirty-seven thousand five hundred twenty-seven'), (5361, 15257, 'fifteen thousand two hundred fifty-seven'), (5362, 25022, 'twenty-five thousand twenty-two'), (5363, 72624, 'seventy-two thousand six hundred twenty-four'), (5364, 66452, 'sixty-six thousand four hundred fifty-two'), (5365, 10082, 'ten thousand eighty-two'), (5366, 90308, 'ninety thousand three hundred eight'), (5367, 68128, 'sixty-eight thousand one hundred twenty-eight'), (5368, 51238, 'fifty-one thousand two hundred thirty-eight'), (5369, 38205, 'thirty-eight thousand two hundred five'), (5370, 67480, 'sixty-seven thousand four hundred eighty'), (5371, 54011, 'fifty-four thousand eleven'), (5372, 25348, 'twenty-five thousand three hundred forty-eight'), (5373, 43677, 'forty-three thousand six hundred seventy-seven'), (5374, 56860, 'fifty-six thousand eight hundred sixty'), (5375, 10271, 'ten thousand two hundred seventy-one'), (5376, 23037, 'twenty-three thousand thirty-seven'), (5377, 31953, 'thirty-one thousand nine hundred fifty-three'), (5378, 84851, 'eighty-four thousand eight hundred fifty-one'), (5379, 49435, 'forty-nine thousand four hundred thirty-five'), (5380, 3206, 'three thousand two hundred six'), (5381, 97808, 'ninety-seven thousand eight hundred eight'), (5382, 92760, 'ninety-two thousand seven hundred sixty'), (5383, 35161, 'thirty-five thousand one hundred sixty-one'), (5384, 8021, 'eight thousand twenty-one'), (5385, 75268, 'seventy-five thousand two hundred sixty-eight'), (5386, 14597, 'fourteen thousand five hundred ninety-seven'), (5387, 10226, 'ten thousand two hundred twenty-six'), (5388, 31482, 'thirty-one thousand four hundred eighty-two'), (5389, 33459, 'thirty-three thousand four hundred fifty-nine'), (5390, 1548, 'one thousand five hundred forty-eight'), (5391, 52926, 'fifty-two thousand nine hundred twenty-six'), (5392, 97575, 'ninety-seven thousand five hundred seventy-five'), (5393, 33592, 'thirty-three thousand five hundred ninety-two'), (5394, 62051, 'sixty-two thousand fifty-one'), (5395, 81323, 'eighty-one thousand three hundred twenty-three'), (5396, 88375, 'eighty-eight thousand three hundred seventy-five'), (5397, 90966, 'ninety thousand nine hundred sixty-six'), (5398, 7711, 'seven thousand seven hundred eleven'), (5399, 50960, 'fifty thousand nine hundred sixty'), (5400, 36562, 'thirty-six thousand five hundred sixty-two'), (5401, 72692, 'seventy-two thousand six hundred ninety-two'), (5402, 77801, 'seventy-seven thousand eight hundred one'), (5403, 86674, 'eighty-six thousand six hundred seventy-four'), (5404, 80050, 'eighty thousand fifty'), (5405, 96921, 'ninety-six thousand nine hundred twenty-one'), (5406, 29254, 'twenty-nine thousand two hundred fifty-four'), (5407, 61762, 'sixty-one thousand seven hundred sixty-two'), (5408, 9411, 'nine thousand four hundred eleven'), (5409, 28873, 'twenty-eight thousand eight hundred seventy-three'), (5410, 89536, 'eighty-nine thousand five hundred thirty-six'), (5411, 26799, 'twenty-six thousand seven hundred ninety-nine'), (5412, 65291, 'sixty-five thousand two hundred ninety-one'), (5413, 32381, 'thirty-two thousand three hundred eighty-one'), (5414, 83702, 'eighty-three thousand seven hundred two'), (5415, 12798, 'twelve thousand seven hundred ninety-eight'), (5416, 98114, 'ninety-eight thousand one hundred fourteen'), (5417, 66905, 'sixty-six thousand nine hundred five'), (5418, 84363, 'eighty-four thousand three hundred sixty-three'), (5419, 50152, 'fifty thousand one hundred fifty-two'), (5420, 26278, 'twenty-six thousand two hundred seventy-eight'), (5421, 78363, 'seventy-eight thousand three hundred sixty-three'), (5422, 73720, 'seventy-three thousand seven hundred twenty'), (5423, 33986, 'thirty-three thousand nine hundred eighty-six'), (5424, 56758, 'fifty-six thousand seven hundred fifty-eight'), (5425, 71785, 'seventy-one thousand seven hundred eighty-five'), (5426, 56643, 'fifty-six thousand six hundred forty-three'), (5427, 60454, 'sixty thousand four hundred fifty-four'), (5428, 34441, 'thirty-four thousand four hundred forty-one'), (5429, 56989, 'fifty-six thousand nine hundred eighty-nine'), (5430, 89730, 'eighty-nine thousand seven hundred thirty'), (5431, 50716, 'fifty thousand seven hundred sixteen'), (5432, 57336, 'fifty-seven thousand three hundred thirty-six'), (5433, 99140, 'ninety-nine thousand one hundred forty'), (5434, 98878, 'ninety-eight thousand eight hundred seventy-eight'), (5435, 22004, 'twenty-two thousand four'), (5436, 88567, 'eighty-eight thousand five hundred sixty-seven'), (5437, 30064, 'thirty thousand sixty-four'), (5438, 68263, 'sixty-eight thousand two hundred sixty-three'), (5439, 76177, 'seventy-six thousand one hundred seventy-seven'), (5440, 33737, 'thirty-three thousand seven hundred thirty-seven'), (5441, 90124, 'ninety thousand one hundred twenty-four'), (5442, 61053, 'sixty-one thousand fifty-three'), (5443, 91682, 'ninety-one thousand six hundred eighty-two'), (5444, 73299, 'seventy-three thousand two hundred ninety-nine'), (5445, 23952, 'twenty-three thousand nine hundred fifty-two'), (5446, 51457, 'fifty-one thousand four hundred fifty-seven'), (5447, 85838, 'eighty-five thousand eight hundred thirty-eight'), (5448, 96053, 'ninety-six thousand fifty-three'), (5449, 24583, 'twenty-four thousand five hundred eighty-three'), (5450, 61000, 'sixty-one thousand'), (5451, 83701, 'eighty-three thousand seven hundred one'), (5452, 60602, 'sixty thousand six hundred two'), (5453, 10405, 'ten thousand four hundred five'), (5454, 39446, 'thirty-nine thousand four hundred forty-six'), (5455, 70187, 'seventy thousand one hundred eighty-seven'), (5456, 3063, 'three thousand sixty-three'), (5457, 68077, 'sixty-eight thousand seventy-seven'), (5458, 14049, 'fourteen thousand forty-nine'), (5459, 38397, 'thirty-eight thousand three hundred ninety-seven'), (5460, 73473, 'seventy-three thousand four hundred seventy-three'), (5461, 23258, 'twenty-three thousand two hundred fifty-eight'), (5462, 72720, 'seventy-two thousand seven hundred twenty'), (5463, 97742, 'ninety-seven thousand seven hundred forty-two'), (5464, 60375, 'sixty thousand three hundred seventy-five'), (5465, 9858, 'nine thousand eight hundred fifty-eight'), (5466, 72274, 'seventy-two thousand two hundred seventy-four'), (5467, 7760, 'seven thousand seven hundred sixty'), (5468, 51690, 'fifty-one thousand six hundred ninety'), (5469, 87650, 'eighty-seven thousand six hundred fifty'), (5470, 4724, 'four thousand seven hundred twenty-four'), (5471, 42255, 'forty-two thousand two hundred fifty-five'), (5472, 66310, 'sixty-six thousand three hundred ten'), (5473, 1321, 'one thousand three hundred twenty-one'), (5474, 98609, 'ninety-eight thousand six hundred nine'), (5475, 28262, 'twenty-eight thousand two hundred sixty-two'), (5476, 50470, 'fifty thousand four hundred seventy'), (5477, 58119, 'fifty-eight thousand one hundred nineteen'), (5478, 90226, 'ninety thousand two hundred twenty-six'), (5479, 94146, 'ninety-four thousand one hundred forty-six'), (5480, 55638, 'fifty-five thousand six hundred thirty-eight'), (5481, 13318, 'thirteen thousand three hundred eighteen'), (5482, 72427, 'seventy-two thousand four hundred twenty-seven'), (5483, 56061, 'fifty-six thousand sixty-one'), (5484, 12825, 'twelve thousand eight hundred twenty-five'), (5485, 31526, 'thirty-one thousand five hundred twenty-six'), (5486, 16040, 'sixteen thousand forty'), (5487, 31595, 'thirty-one thousand five hundred ninety-five'), (5488, 87455, 'eighty-seven thousand four hundred fifty-five'), (5489, 87796, 'eighty-seven thousand seven hundred ninety-six'), (5490, 98415, 'ninety-eight thousand four hundred fifteen'), (5491, 34125, 'thirty-four thousand one hundred twenty-five'), (5492, 28284, 'twenty-eight thousand two hundred eighty-four'), (5493, 79619, 'seventy-nine thousand six hundred nineteen'), (5494, 84179, 'eighty-four thousand one hundred seventy-nine'), (5495, 9543, 'nine thousand five hundred forty-three'), (5496, 65201, 'sixty-five thousand two hundred one'), (5497, 83926, 'eighty-three thousand nine hundred twenty-six'), (5498, 81078, 'eighty-one thousand seventy-eight'), (5499, 4308, 'four thousand three hundred eight'), (5500, 3702, 'three thousand seven hundred two'), (5501, 25311, 'twenty-five thousand three hundred eleven'), (5502, 8663, 'eight thousand six hundred sixty-three'), (5503, 3981, 'three thousand nine hundred eighty-one'), (5504, 97794, 'ninety-seven thousand seven hundred ninety-four'), (5505, 68196, 'sixty-eight thousand one hundred ninety-six'), (5506, 26957, 'twenty-six thousand nine hundred fifty-seven'), (5507, 47667, 'forty-seven thousand six hundred sixty-seven'), (5508, 3065, 'three thousand sixty-five'), (5509, 81399, 'eighty-one thousand three hundred ninety-nine'), (5510, 81906, 'eighty-one thousand nine hundred six'), (5511, 21399, 'twenty-one thousand three hundred ninety-nine'), (5512, 28441, 'twenty-eight thousand four hundred forty-one'), (5513, 59836, 'fifty-nine thousand eight hundred thirty-six'), (5514, 89341, 'eighty-nine thousand three hundred forty-one'), (5515, 40958, 'forty thousand nine hundred fifty-eight'), (5516, 7744, 'seven thousand seven hundred forty-four'), (5517, 62732, 'sixty-two thousand seven hundred thirty-two'), (5518, 25056, 'twenty-five thousand fifty-six'), (5519, 73818, 'seventy-three thousand eight hundred eighteen'), (5520, 35370, 'thirty-five thousand three hundred seventy'), (5521, 42020, 'forty-two thousand twenty'), (5522, 72596, 'seventy-two thousand five hundred ninety-six'), (5523, 23649, 'twenty-three thousand six hundred forty-nine'), (5524, 94298, 'ninety-four thousand two hundred ninety-eight'), (5525, 81324, 'eighty-one thousand three hundred twenty-four'), (5526, 95626, 'ninety-five thousand six hundred twenty-six'), (5527, 61068, 'sixty-one thousand sixty-eight'), (5528, 45707, 'forty-five thousand seven hundred seven'), (5529, 4377, 'four thousand three hundred seventy-seven'), (5530, 41483, 'forty-one thousand four hundred eighty-three'), (5531, 18560, 'eighteen thousand five hundred sixty'), (5532, 27875, 'twenty-seven thousand eight hundred seventy-five'), (5533, 40865, 'forty thousand eight hundred sixty-five'), (5534, 6151, 'six thousand one hundred fifty-one'), (5535, 70521, 'seventy thousand five hundred twenty-one'), (5536, 6130, 'six thousand one hundred thirty'), (5537, 1706, 'one thousand seven hundred six'), (5538, 43403, 'forty-three thousand four hundred three'), (5539, 97125, 'ninety-seven thousand one hundred twenty-five'), (5540, 18306, 'eighteen thousand three hundred six'), (5541, 11958, 'eleven thousand nine hundred fifty-eight'), (5542, 90373, 'ninety thousand three hundred seventy-three'), (5543, 11233, 'eleven thousand two hundred thirty-three'), (5544, 97197, 'ninety-seven thousand one hundred ninety-seven'), (5545, 99475, 'ninety-nine thousand four hundred seventy-five'), (5546, 33390, 'thirty-three thousand three hundred ninety'), (5547, 44377, 'forty-four thousand three hundred seventy-seven'), (5548, 1956, 'one thousand nine hundred fifty-six'), (5549, 57641, 'fifty-seven thousand six hundred forty-one'), (5550, 63739, 'sixty-three thousand seven hundred thirty-nine'), (5551, 31748, 'thirty-one thousand seven hundred forty-eight'), (5552, 51667, 'fifty-one thousand six hundred sixty-seven'), (5553, 1485, 'one thousand four hundred eighty-five'), (5554, 60430, 'sixty thousand four hundred thirty'), (5555, 29723, 'twenty-nine thousand seven hundred twenty-three'), (5556, 5253, 'five thousand two hundred fifty-three'), (5557, 98521, 'ninety-eight thousand five hundred twenty-one'), (5558, 18462, 'eighteen thousand four hundred sixty-two'), (5559, 58784, 'fifty-eight thousand seven hundred eighty-four'), (5560, 9436, 'nine thousand four hundred thirty-six'), (5561, 75146, 'seventy-five thousand one hundred forty-six'), (5562, 84907, 'eighty-four thousand nine hundred seven'), (5563, 6703, 'six thousand seven hundred three'), (5564, 27166, 'twenty-seven thousand one hundred sixty-six'), (5565, 79805, 'seventy-nine thousand eight hundred five'), (5566, 2271, 'two thousand two hundred seventy-one'), (5567, 814, 'eight hundred fourteen'), (5568, 76791, 'seventy-six thousand seven hundred ninety-one'), (5569, 41445, 'forty-one thousand four hundred forty-five'), (5570, 67739, 'sixty-seven thousand seven hundred thirty-nine'), (5571, 40762, 'forty thousand seven hundred sixty-two'), (5572, 49147, 'forty-nine thousand one hundred forty-seven'), (5573, 68749, 'sixty-eight thousand seven hundred forty-nine'), (5574, 24410, 'twenty-four thousand four hundred ten'), (5575, 45029, 'forty-five thousand twenty-nine'), (5576, 33054, 'thirty-three thousand fifty-four'), (5577, 71189, 'seventy-one thousand one hundred eighty-nine'), (5578, 26073, 'twenty-six thousand seventy-three'), (5579, 43701, 'forty-three thousand seven hundred one'), (5580, 32492, 'thirty-two thousand four hundred ninety-two'), (5581, 15974, 'fifteen thousand nine hundred seventy-four'), (5582, 29783, 'twenty-nine thousand seven hundred eighty-three'), (5583, 83848, 'eighty-three thousand eight hundred forty-eight'), (5584, 38891, 'thirty-eight thousand eight hundred ninety-one'), (5585, 10825, 'ten thousand eight hundred twenty-five'), (5586, 67744, 'sixty-seven thousand seven hundred forty-four'), (5587, 18754, 'eighteen thousand seven hundred fifty-four'), (5588, 96347, 'ninety-six thousand three hundred forty-seven'), (5589, 65423, 'sixty-five thousand four hundred twenty-three'), (5590, 1812, 'one thousand eight hundred twelve'), (5591, 11898, 'eleven thousand eight hundred ninety-eight'), (5592, 37945, 'thirty-seven thousand nine hundred forty-five'), (5593, 62917, 'sixty-two thousand nine hundred seventeen'), (5594, 26111, 'twenty-six thousand one hundred eleven'), (5595, 52307, 'fifty-two thousand three hundred seven'), (5596, 83623, 'eighty-three thousand six hundred twenty-three'), (5597, 90761, 'ninety thousand seven hundred sixty-one'), (5598, 1138, 'one thousand one hundred thirty-eight'), (5599, 31338, 'thirty-one thousand three hundred thirty-eight'), (5600, 38653, 'thirty-eight thousand six hundred fifty-three'), (5601, 64253, 'sixty-four thousand two hundred fifty-three'), (5602, 73954, 'seventy-three thousand nine hundred fifty-four'), (5603, 10868, 'ten thousand eight hundred sixty-eight'), (5604, 69293, 'sixty-nine thousand two hundred ninety-three'), (5605, 36958, 'thirty-six thousand nine hundred fifty-eight'), (5606, 25181, 'twenty-five thousand one hundred eighty-one'), (5607, 8429, 'eight thousand four hundred twenty-nine'), (5608, 30458, 'thirty thousand four hundred fifty-eight'), (5609, 34904, 'thirty-four thousand nine hundred four'), (5610, 46150, 'forty-six thousand one hundred fifty'), (5611, 68186, 'sixty-eight thousand one hundred eighty-six'), (5612, 28662, 'twenty-eight thousand six hundred sixty-two'), (5613, 15540, 'fifteen thousand five hundred forty'), (5614, 67848, 'sixty-seven thousand eight hundred forty-eight'), (5615, 85163, 'eighty-five thousand one hundred sixty-three'), (5616, 89170, 'eighty-nine thousand one hundred seventy'), (5617, 62467, 'sixty-two thousand four hundred sixty-seven'), (5618, 43081, 'forty-three thousand eighty-one'), (5619, 95296, 'ninety-five thousand two hundred ninety-six'), (5620, 68397, 'sixty-eight thousand three hundred ninety-seven'), (5621, 99406, 'ninety-nine thousand four hundred six'), (5622, 10050, 'ten thousand fifty'), (5623, 79849, 'seventy-nine thousand eight hundred forty-nine'), (5624, 34661, 'thirty-four thousand six hundred sixty-one'), (5625, 72438, 'seventy-two thousand four hundred thirty-eight'), (5626, 52913, 'fifty-two thousand nine hundred thirteen'), (5627, 76994, 'seventy-six thousand nine hundred ninety-four'), (5628, 77064, 'seventy-seven thousand sixty-four'), (5629, 52451, 'fifty-two thousand four hundred fifty-one'), (5630, 68828, 'sixty-eight thousand eight hundred twenty-eight'), (5631, 31392, 'thirty-one thousand three hundred ninety-two'), (5632, 20532, 'twenty thousand five hundred thirty-two'), (5633, 69844, 'sixty-nine thousand eight hundred forty-four'), (5634, 13805, 'thirteen thousand eight hundred five'), (5635, 47939, 'forty-seven thousand nine hundred thirty-nine'), (5636, 83289, 'eighty-three thousand two hundred eighty-nine'), (5637, 66895, 'sixty-six thousand eight hundred ninety-five'), (5638, 38344, 'thirty-eight thousand three hundred forty-four'), (5639, 18734, 'eighteen thousand seven hundred thirty-four'), (5640, 73413, 'seventy-three thousand four hundred thirteen'), (5641, 29702, 'twenty-nine thousand seven hundred two'), (5642, 35329, 'thirty-five thousand three hundred twenty-nine'), (5643, 76505, 'seventy-six thousand five hundred five'), (5644, 52903, 'fifty-two thousand nine hundred three'), (5645, 47645, 'forty-seven thousand six hundred forty-five'), (5646, 52273, 'fifty-two thousand two hundred seventy-three'), (5647, 78414, 'seventy-eight thousand four hundred fourteen'), (5648, 68376, 'sixty-eight thousand three hundred seventy-six'), (5649, 9173, 'nine thousand one hundred seventy-three'), (5650, 22863, 'twenty-two thousand eight hundred sixty-three'), (5651, 75193, 'seventy-five thousand one hundred ninety-three'), (5652, 71623, 'seventy-one thousand six hundred twenty-three'), (5653, 5613, 'five thousand six hundred thirteen'), (5654, 97606, 'ninety-seven thousand six hundred six'), (5655, 32971, 'thirty-two thousand nine hundred seventy-one'), (5656, 8357, 'eight thousand three hundred fifty-seven'), (5657, 13702, 'thirteen thousand seven hundred two'), (5658, 15368, 'fifteen thousand three hundred sixty-eight'), (5659, 0, 'zero'), (5660, 9272, 'nine thousand two hundred seventy-two'), (5661, 38762, 'thirty-eight thousand seven hundred sixty-two'), (5662, 46510, 'forty-six thousand five hundred ten'), (5663, 59925, 'fifty-nine thousand nine hundred twenty-five'), (5664, 55025, 'fifty-five thousand twenty-five'), (5665, 9341, 'nine thousand three hundred forty-one'), (5666, 6423, 'six thousand four hundred twenty-three'), (5667, 34717, 'thirty-four thousand seven hundred seventeen'), (5668, 71495, 'seventy-one thousand four hundred ninety-five'), (5669, 62372, 'sixty-two thousand three hundred seventy-two'), (5670, 44839, 'forty-four thousand eight hundred thirty-nine'), (5671, 33771, 'thirty-three thousand seven hundred seventy-one'), (5672, 83481, 'eighty-three thousand four hundred eighty-one'), (5673, 64572, 'sixty-four thousand five hundred seventy-two'), (5674, 6422, 'six thousand four hundred twenty-two'), (5675, 660, 'six hundred sixty'), (5676, 42167, 'forty-two thousand one hundred sixty-seven'), (5677, 2714, 'two thousand seven hundred fourteen'), (5678, 26872, 'twenty-six thousand eight hundred seventy-two'), (5679, 37913, 'thirty-seven thousand nine hundred thirteen'), (5680, 52935, 'fifty-two thousand nine hundred thirty-five'), (5681, 85784, 'eighty-five thousand seven hundred eighty-four'), (5682, 4393, 'four thousand three hundred ninety-three'), (5683, 34709, 'thirty-four thousand seven hundred nine'), (5684, 63511, 'sixty-three thousand five hundred eleven'), (5685, 59152, 'fifty-nine thousand one hundred fifty-two'), (5686, 17749, 'seventeen thousand seven hundred forty-nine'), (5687, 19838, 'nineteen thousand eight hundred thirty-eight'), (5688, 57184, 'fifty-seven thousand one hundred eighty-four'), (5689, 76478, 'seventy-six thousand four hundred seventy-eight'), (5690, 29167, 'twenty-nine thousand one hundred sixty-seven'), (5691, 20600, 'twenty thousand six hundred'), (5692, 96537, 'ninety-six thousand five hundred thirty-seven'), (5693, 89189, 'eighty-nine thousand one hundred eighty-nine'), (5694, 49690, 'forty-nine thousand six hundred ninety'), (5695, 10691, 'ten thousand six hundred ninety-one'), (5696, 64497, 'sixty-four thousand four hundred ninety-seven'), (5697, 67310, 'sixty-seven thousand three hundred ten'), (5698, 94114, 'ninety-four thousand one hundred fourteen'), (5699, 12674, 'twelve thousand six hundred seventy-four'), (5700, 90653, 'ninety thousand six hundred fifty-three'), (5701, 53064, 'fifty-three thousand sixty-four'), (5702, 61561, 'sixty-one thousand five hundred sixty-one'), (5703, 34023, 'thirty-four thousand twenty-three'), (5704, 96895, 'ninety-six thousand eight hundred ninety-five'), (5705, 41013, 'forty-one thousand thirteen'), (5706, 90944, 'ninety thousand nine hundred forty-four'), (5707, 49251, 'forty-nine thousand two hundred fifty-one'), (5708, 4227, 'four thousand two hundred twenty-seven'), (5709, 4355, 'four thousand three hundred fifty-five'), (5710, 70217, 'seventy thousand two hundred seventeen'), (5711, 11124, 'eleven thousand one hundred twenty-four'), (5712, 85891, 'eighty-five thousand eight hundred ninety-one'), (5713, 47594, 'forty-seven thousand five hundred ninety-four'), (5714, 13720, 'thirteen thousand seven hundred twenty'), (5715, 82368, 'eighty-two thousand three hundred sixty-eight'), (5716, 14558, 'fourteen thousand five hundred fifty-eight'), (5717, 93849, 'ninety-three thousand eight hundred forty-nine'), (5718, 38932, 'thirty-eight thousand nine hundred thirty-two'), (5719, 46889, 'forty-six thousand eight hundred eighty-nine'), (5720, 55006, 'fifty-five thousand six'), (5721, 21140, 'twenty-one thousand one hundred forty'), (5722, 59249, 'fifty-nine thousand two hundred forty-nine'), (5723, 77145, 'seventy-seven thousand one hundred forty-five'), (5724, 61334, 'sixty-one thousand three hundred thirty-four'), (5725, 57733, 'fifty-seven thousand seven hundred thirty-three'), (5726, 8850, 'eight thousand eight hundred fifty'), (5727, 11080, 'eleven thousand eighty'), (5728, 87756, 'eighty-seven thousand seven hundred fifty-six'), (5729, 82982, 'eighty-two thousand nine hundred eighty-two'), (5730, 31389, 'thirty-one thousand three hundred eighty-nine'), (5731, 99295, 'ninety-nine thousand two hundred ninety-five'), (5732, 67086, 'sixty-seven thousand eighty-six'), (5733, 25913, 'twenty-five thousand nine hundred thirteen'), (5734, 53918, 'fifty-three thousand nine hundred eighteen'), (5735, 77500, 'seventy-seven thousand five hundred'), (5736, 51047, 'fifty-one thousand forty-seven'), (5737, 79250, 'seventy-nine thousand two hundred fifty'), (5738, 68652, 'sixty-eight thousand six hundred fifty-two'), (5739, 78012, 'seventy-eight thousand twelve'), (5740, 34673, 'thirty-four thousand six hundred seventy-three'), (5741, 40693, 'forty thousand six hundred ninety-three'), (5742, 32195, 'thirty-two thousand one hundred ninety-five'), (5743, 53934, 'fifty-three thousand nine hundred thirty-four'), (5744, 52285, 'fifty-two thousand two hundred eighty-five'), (5745, 99119, 'ninety-nine thousand one hundred nineteen'), (5746, 32439, 'thirty-two thousand four hundred thirty-nine'), (5747, 67246, 'sixty-seven thousand two hundred forty-six'), (5748, 29120, 'twenty-nine thousand one hundred twenty'), (5749, 58397, 'fifty-eight thousand three hundred ninety-seven'), (5750, 71563, 'seventy-one thousand five hundred sixty-three'), (5751, 10636, 'ten thousand six hundred thirty-six'), (5752, 50880, 'fifty thousand eight hundred eighty'), (5753, 97776, 'ninety-seven thousand seven hundred seventy-six'), (5754, 21325, 'twenty-one thousand three hundred twenty-five'), (5755, 96183, 'ninety-six thousand one hundred eighty-three'), (5756, 61992, 'sixty-one thousand nine hundred ninety-two'), (5757, 13919, 'thirteen thousand nine hundred nineteen'), (5758, 78709, 'seventy-eight thousand seven hundred nine'), (5759, 17924, 'seventeen thousand nine hundred twenty-four'), (5760, 40616, 'forty thousand six hundred sixteen'), (5761, 30345, 'thirty thousand three hundred forty-five'), (5762, 38964, 'thirty-eight thousand nine hundred sixty-four'), (5763, 2773, 'two thousand seven hundred seventy-three'), (5764, 3421, 'three thousand four hundred twenty-one'), (5765, 81825, 'eighty-one thousand eight hundred twenty-five'), (5766, 68110, 'sixty-eight thousand one hundred ten'), (5767, 65071, 'sixty-five thousand seventy-one'), (5768, 49628, 'forty-nine thousand six hundred twenty-eight'), (5769, 84981, 'eighty-four thousand nine hundred eighty-one'), (5770, 94146, 'ninety-four thousand one hundred forty-six'), (5771, 93659, 'ninety-three thousand six hundred fifty-nine'), (5772, 64318, 'sixty-four thousand three hundred eighteen'), (5773, 31828, 'thirty-one thousand eight hundred twenty-eight'), (5774, 85160, 'eighty-five thousand one hundred sixty'), (5775, 49836, 'forty-nine thousand eight hundred thirty-six'), (5776, 3678, 'three thousand six hundred seventy-eight'), (5777, 19652, 'nineteen thousand six hundred fifty-two'), (5778, 7761, 'seven thousand seven hundred sixty-one'), (5779, 74211, 'seventy-four thousand two hundred eleven'), (5780, 71500, 'seventy-one thousand five hundred'), (5781, 11908, 'eleven thousand nine hundred eight'), (5782, 66743, 'sixty-six thousand seven hundred forty-three'), (5783, 49898, 'forty-nine thousand eight hundred ninety-eight'), (5784, 44882, 'forty-four thousand eight hundred eighty-two'), (5785, 85537, 'eighty-five thousand five hundred thirty-seven'), (5786, 6114, 'six thousand one hundred fourteen'), (5787, 64709, 'sixty-four thousand seven hundred nine'), (5788, 41330, 'forty-one thousand three hundred thirty'), (5789, 51927, 'fifty-one thousand nine hundred twenty-seven'), (5790, 48156, 'forty-eight thousand one hundred fifty-six'), (5791, 44608, 'forty-four thousand six hundred eight'), (5792, 43763, 'forty-three thousand seven hundred sixty-three'), (5793, 94748, 'ninety-four thousand seven hundred forty-eight'), (5794, 68301, 'sixty-eight thousand three hundred one'), (5795, 44960, 'forty-four thousand nine hundred sixty'), (5796, 25732, 'twenty-five thousand seven hundred thirty-two'), (5797, 30041, 'thirty thousand forty-one'), (5798, 36695, 'thirty-six thousand six hundred ninety-five'), (5799, 14301, 'fourteen thousand three hundred one'), (5800, 31040, 'thirty-one thousand forty'), (5801, 62023, 'sixty-two thousand twenty-three'), (5802, 70438, 'seventy thousand four hundred thirty-eight'), (5803, 47811, 'forty-seven thousand eight hundred eleven'), (5804, 1153, 'one thousand one hundred fifty-three'), (5805, 70381, 'seventy thousand three hundred eighty-one'), (5806, 7936, 'seven thousand nine hundred thirty-six'), (5807, 47176, 'forty-seven thousand one hundred seventy-six'), (5808, 16829, 'sixteen thousand eight hundred twenty-nine'), (5809, 40046, 'forty thousand forty-six'), (5810, 74002, 'seventy-four thousand two'), (5811, 88807, 'eighty-eight thousand eight hundred seven'), (5812, 59044, 'fifty-nine thousand forty-four'), (5813, 92143, 'ninety-two thousand one hundred forty-three'), (5814, 37754, 'thirty-seven thousand seven hundred fifty-four'), (5815, 94083, 'ninety-four thousand eighty-three'), (5816, 15225, 'fifteen thousand two hundred twenty-five'), (5817, 55810, 'fifty-five thousand eight hundred ten'), (5818, 71616, 'seventy-one thousand six hundred sixteen'), (5819, 91356, 'ninety-one thousand three hundred fifty-six'), (5820, 18545, 'eighteen thousand five hundred forty-five'), (5821, 16659, 'sixteen thousand six hundred fifty-nine'), (5822, 88311, 'eighty-eight thousand three hundred eleven'), (5823, 77535, 'seventy-seven thousand five hundred thirty-five'), (5824, 89952, 'eighty-nine thousand nine hundred fifty-two'), (5825, 72542, 'seventy-two thousand five hundred forty-two'), (5826, 33741, 'thirty-three thousand seven hundred forty-one'), (5827, 96591, 'ninety-six thousand five hundred ninety-one'), (5828, 99834, 'ninety-nine thousand eight hundred thirty-four'), (5829, 65183, 'sixty-five thousand one hundred eighty-three'), (5830, 90140, 'ninety thousand one hundred forty'), (5831, 55515, 'fifty-five thousand five hundred fifteen'), (5832, 45151, 'forty-five thousand one hundred fifty-one'), (5833, 27098, 'twenty-seven thousand ninety-eight'), (5834, 52417, 'fifty-two thousand four hundred seventeen'), (5835, 56437, 'fifty-six thousand four hundred thirty-seven'), (5836, 6983, 'six thousand nine hundred eighty-three'), (5837, 65299, 'sixty-five thousand two hundred ninety-nine'), (5838, 61929, 'sixty-one thousand nine hundred twenty-nine'), (5839, 96824, 'ninety-six thousand eight hundred twenty-four'), (5840, 31520, 'thirty-one thousand five hundred twenty'), (5841, 7751, 'seven thousand seven hundred fifty-one'), (5842, 48850, 'forty-eight thousand eight hundred fifty'), (5843, 7669, 'seven thousand six hundred sixty-nine'), (5844, 61495, 'sixty-one thousand four hundred ninety-five'), (5845, 33480, 'thirty-three thousand four hundred eighty'), (5846, 92299, 'ninety-two thousand two hundred ninety-nine'), (5847, 83539, 'eighty-three thousand five hundred thirty-nine'), (5848, 83700, 'eighty-three thousand seven hundred'), (5849, 34720, 'thirty-four thousand seven hundred twenty'), (5850, 56299, 'fifty-six thousand two hundred ninety-nine'), (5851, 73157, 'seventy-three thousand one hundred fifty-seven'), (5852, 113, 'one hundred thirteen'), (5853, 99472, 'ninety-nine thousand four hundred seventy-two'), (5854, 35740, 'thirty-five thousand seven hundred forty'), (5855, 37123, 'thirty-seven thousand one hundred twenty-three'), (5856, 56894, 'fifty-six thousand eight hundred ninety-four'), (5857, 28628, 'twenty-eight thousand six hundred twenty-eight'), (5858, 97994, 'ninety-seven thousand nine hundred ninety-four'), (5859, 60818, 'sixty thousand eight hundred eighteen'), (5860, 32606, 'thirty-two thousand six hundred six'), (5861, 66357, 'sixty-six thousand three hundred fifty-seven'), (5862, 31200, 'thirty-one thousand two hundred'), (5863, 83780, 'eighty-three thousand seven hundred eighty'), (5864, 37285, 'thirty-seven thousand two hundred eighty-five'), (5865, 84952, 'eighty-four thousand nine hundred fifty-two'), (5866, 5673, 'five thousand six hundred seventy-three'), (5867, 88758, 'eighty-eight thousand seven hundred fifty-eight'), (5868, 15934, 'fifteen thousand nine hundred thirty-four'), (5869, 94157, 'ninety-four thousand one hundred fifty-seven'), (5870, 97029, 'ninety-seven thousand twenty-nine'), (5871, 22195, 'twenty-two thousand one hundred ninety-five'), (5872, 16194, 'sixteen thousand one hundred ninety-four'), (5873, 11696, 'eleven thousand six hundred ninety-six'), (5874, 8538, 'eight thousand five hundred thirty-eight'), (5875, 40134, 'forty thousand one hundred thirty-four'), (5876, 41631, 'forty-one thousand six hundred thirty-one'), (5877, 5585, 'five thousand five hundred eighty-five'), (5878, 16249, 'sixteen thousand two hundred forty-nine'), (5879, 60546, 'sixty thousand five hundred forty-six'), (5880, 61229, 'sixty-one thousand two hundred twenty-nine'), (5881, 46172, 'forty-six thousand one hundred seventy-two'), (5882, 48601, 'forty-eight thousand six hundred one'), (5883, 78108, 'seventy-eight thousand one hundred eight'), (5884, 85412, 'eighty-five thousand four hundred twelve'), (5885, 76313, 'seventy-six thousand three hundred thirteen'), (5886, 32664, 'thirty-two thousand six hundred sixty-four'), (5887, 96577, 'ninety-six thousand five hundred seventy-seven'), (5888, 33471, 'thirty-three thousand four hundred seventy-one'), (5889, 13233, 'thirteen thousand two hundred thirty-three'), (5890, 7834, 'seven thousand eight hundred thirty-four'), (5891, 36432, 'thirty-six thousand four hundred thirty-two'), (5892, 57676, 'fifty-seven thousand six hundred seventy-six'), (5893, 95348, 'ninety-five thousand three hundred forty-eight'), (5894, 51577, 'fifty-one thousand five hundred seventy-seven'), (5895, 6095, 'six thousand ninety-five'), (5896, 71061, 'seventy-one thousand sixty-one'), (5897, 10000, 'ten thousand'), (5898, 20221, 'twenty thousand two hundred twenty-one'), (5899, 80668, 'eighty thousand six hundred sixty-eight'), (5900, 98258, 'ninety-eight thousand two hundred fifty-eight'), (5901, 7951, 'seven thousand nine hundred fifty-one'), (5902, 4674, 'four thousand six hundred seventy-four'), (5903, 51365, 'fifty-one thousand three hundred sixty-five'), (5904, 5441, 'five thousand four hundred forty-one'), (5905, 78262, 'seventy-eight thousand two hundred sixty-two'), (5906, 35317, 'thirty-five thousand three hundred seventeen'), (5907, 92374, 'ninety-two thousand three hundred seventy-four'), (5908, 6797, 'six thousand seven hundred ninety-seven'), (5909, 16025, 'sixteen thousand twenty-five'), (5910, 80500, 'eighty thousand five hundred'), (5911, 49666, 'forty-nine thousand six hundred sixty-six'), (5912, 27602, 'twenty-seven thousand six hundred two'), (5913, 79360, 'seventy-nine thousand three hundred sixty'), (5914, 57957, 'fifty-seven thousand nine hundred fifty-seven'), (5915, 49298, 'forty-nine thousand two hundred ninety-eight'), (5916, 36372, 'thirty-six thousand three hundred seventy-two'), (5917, 42100, 'forty-two thousand one hundred'), (5918, 97612, 'ninety-seven thousand six hundred twelve'), (5919, 81689, 'eighty-one thousand six hundred eighty-nine'), (5920, 90813, 'ninety thousand eight hundred thirteen'), (5921, 89285, 'eighty-nine thousand two hundred eighty-five'), (5922, 69042, 'sixty-nine thousand forty-two'), (5923, 8290, 'eight thousand two hundred ninety'), (5924, 84675, 'eighty-four thousand six hundred seventy-five'), (5925, 46719, 'forty-six thousand seven hundred nineteen'), (5926, 52118, 'fifty-two thousand one hundred eighteen'), (5927, 12792, 'twelve thousand seven hundred ninety-two'), (5928, 43253, 'forty-three thousand two hundred fifty-three'), (5929, 93656, 'ninety-three thousand six hundred fifty-six'), (5930, 6350, 'six thousand three hundred fifty'), (5931, 9873, 'nine thousand eight hundred seventy-three'), (5932, 40829, 'forty thousand eight hundred twenty-nine'), (5933, 23687, 'twenty-three thousand six hundred eighty-seven'), (5934, 84640, 'eighty-four thousand six hundred forty'), (5935, 8003, 'eight thousand three'), (5936, 33545, 'thirty-three thousand five hundred forty-five'), (5937, 10342, 'ten thousand three hundred forty-two'), (5938, 50592, 'fifty thousand five hundred ninety-two'), (5939, 96339, 'ninety-six thousand three hundred thirty-nine'), (5940, 42938, 'forty-two thousand nine hundred thirty-eight'), (5941, 45882, 'forty-five thousand eight hundred eighty-two'), (5942, 12284, 'twelve thousand two hundred eighty-four'), (5943, 39289, 'thirty-nine thousand two hundred eighty-nine'), (5944, 51979, 'fifty-one thousand nine hundred seventy-nine'), (5945, 54256, 'fifty-four thousand two hundred fifty-six'), (5946, 11595, 'eleven thousand five hundred ninety-five'), (5947, 34923, 'thirty-four thousand nine hundred twenty-three'), (5948, 3290, 'three thousand two hundred ninety'), (5949, 77175, 'seventy-seven thousand one hundred seventy-five'), (5950, 41067, 'forty-one thousand sixty-seven'), (5951, 74802, 'seventy-four thousand eight hundred two'), (5952, 46936, 'forty-six thousand nine hundred thirty-six'), (5953, 89141, 'eighty-nine thousand one hundred forty-one'), (5954, 33920, 'thirty-three thousand nine hundred twenty'), (5955, 83400, 'eighty-three thousand four hundred'), (5956, 36079, 'thirty-six thousand seventy-nine'), (5957, 67718, 'sixty-seven thousand seven hundred eighteen'), (5958, 10320, 'ten thousand three hundred twenty'), (5959, 24947, 'twenty-four thousand nine hundred forty-seven'), (5960, 91063, 'ninety-one thousand sixty-three'), (5961, 49594, 'forty-nine thousand five hundred ninety-four'), (5962, 6485, 'six thousand four hundred eighty-five'), (5963, 50921, 'fifty thousand nine hundred twenty-one'), (5964, 52281, 'fifty-two thousand two hundred eighty-one'), (5965, 22198, 'twenty-two thousand one hundred ninety-eight'), (5966, 10588, 'ten thousand five hundred eighty-eight'), (5967, 61308, 'sixty-one thousand three hundred eight'), (5968, 58529, 'fifty-eight thousand five hundred twenty-nine'), (5969, 4380, 'four thousand three hundred eighty'), (5970, 63363, 'sixty-three thousand three hundred sixty-three'), (5971, 29841, 'twenty-nine thousand eight hundred forty-one'), (5972, 4359, 'four thousand three hundred fifty-nine'), (5973, 22187, 'twenty-two thousand one hundred eighty-seven'), (5974, 5382, 'five thousand three hundred eighty-two'), (5975, 33673, 'thirty-three thousand six hundred seventy-three'), (5976, 66926, 'sixty-six thousand nine hundred twenty-six'), (5977, 43729, 'forty-three thousand seven hundred twenty-nine'), (5978, 51857, 'fifty-one thousand eight hundred fifty-seven'), (5979, 5973, 'five thousand nine hundred seventy-three'), (5980, 48347, 'forty-eight thousand three hundred forty-seven'), (5981, 49285, 'forty-nine thousand two hundred eighty-five'), (5982, 46546, 'forty-six thousand five hundred forty-six'), (5983, 27825, 'twenty-seven thousand eight hundred twenty-five'), (5984, 44198, 'forty-four thousand one hundred ninety-eight'), (5985, 60686, 'sixty thousand six hundred eighty-six'), (5986, 4840, 'four thousand eight hundred forty'), (5987, 50882, 'fifty thousand eight hundred eighty-two'), (5988, 59679, 'fifty-nine thousand six hundred seventy-nine'), (5989, 49542, 'forty-nine thousand five hundred forty-two'), (5990, 35414, 'thirty-five thousand four hundred fourteen'), (5991, 70416, 'seventy thousand four hundred sixteen'), (5992, 94475, 'ninety-four thousand four hundred seventy-five'), (5993, 16106, 'sixteen thousand one hundred six'), (5994, 8453, 'eight thousand four hundred fifty-three'), (5995, 98273, 'ninety-eight thousand two hundred seventy-three'), (5996, 29797, 'twenty-nine thousand seven hundred ninety-seven'), (5997, 68834, 'sixty-eight thousand eight hundred thirty-four'), (5998, 89478, 'eighty-nine thousand four hundred seventy-eight'), (5999, 54162, 'fifty-four thousand one hundred sixty-two'), (6000, 24008, 'twenty-four thousand eight'), (6001, 2307, 'two thousand three hundred seven'), (6002, 34992, 'thirty-four thousand nine hundred ninety-two'), (6003, 36018, 'thirty-six thousand eighteen'), (6004, 29374, 'twenty-nine thousand three hundred seventy-four'), (6005, 52748, 'fifty-two thousand seven hundred forty-eight'), (6006, 53521, 'fifty-three thousand five hundred twenty-one'), (6007, 74448, 'seventy-four thousand four hundred forty-eight'), (6008, 61693, 'sixty-one thousand six hundred ninety-three'), (6009, 35803, 'thirty-five thousand eight hundred three'), (6010, 80114, 'eighty thousand one hundred fourteen'), (6011, 28576, 'twenty-eight thousand five hundred seventy-six'), (6012, 30343, 'thirty thousand three hundred forty-three'), (6013, 55580, 'fifty-five thousand five hundred eighty'), (6014, 46399, 'forty-six thousand three hundred ninety-nine'), (6015, 17631, 'seventeen thousand six hundred thirty-one'), (6016, 83831, 'eighty-three thousand eight hundred thirty-one'), (6017, 85809, 'eighty-five thousand eight hundred nine'), (6018, 70343, 'seventy thousand three hundred forty-three'), (6019, 10277, 'ten thousand two hundred seventy-seven'), (6020, 22823, 'twenty-two thousand eight hundred twenty-three'), (6021, 16339, 'sixteen thousand three hundred thirty-nine'), (6022, 29104, 'twenty-nine thousand one hundred four'), (6023, 19441, 'nineteen thousand four hundred forty-one'), (6024, 67324, 'sixty-seven thousand three hundred twenty-four'), (6025, 94375, 'ninety-four thousand three hundred seventy-five'), (6026, 24698, 'twenty-four thousand six hundred ninety-eight'), (6027, 23410, 'twenty-three thousand four hundred ten'), (6028, 65611, 'sixty-five thousand six hundred eleven'), (6029, 79272, 'seventy-nine thousand two hundred seventy-two'), (6030, 4992, 'four thousand nine hundred ninety-two'), (6031, 72564, 'seventy-two thousand five hundred sixty-four'), (6032, 48448, 'forty-eight thousand four hundred forty-eight'), (6033, 62748, 'sixty-two thousand seven hundred forty-eight'), (6034, 43446, 'forty-three thousand four hundred forty-six'), (6035, 44380, 'forty-four thousand three hundred eighty'), (6036, 94157, 'ninety-four thousand one hundred fifty-seven'), (6037, 92069, 'ninety-two thousand sixty-nine'), (6038, 17669, 'seventeen thousand six hundred sixty-nine'), (6039, 60076, 'sixty thousand seventy-six'), (6040, 6630, 'six thousand six hundred thirty'), (6041, 86668, 'eighty-six thousand six hundred sixty-eight'), (6042, 31435, 'thirty-one thousand four hundred thirty-five'), (6043, 41854, 'forty-one thousand eight hundred fifty-four'), (6044, 88936, 'eighty-eight thousand nine hundred thirty-six'), (6045, 72159, 'seventy-two thousand one hundred fifty-nine'), (6046, 77692, 'seventy-seven thousand six hundred ninety-two'), (6047, 45804, 'forty-five thousand eight hundred four'), (6048, 94112, 'ninety-four thousand one hundred twelve'), (6049, 42870, 'forty-two thousand eight hundred seventy'), (6050, 63661, 'sixty-three thousand six hundred sixty-one'), (6051, 58049, 'fifty-eight thousand forty-nine'), (6052, 6206, 'six thousand two hundred six'), (6053, 43765, 'forty-three thousand seven hundred sixty-five'), (6054, 3409, 'three thousand four hundred nine'), (6055, 93390, 'ninety-three thousand three hundred ninety'), (6056, 47959, 'forty-seven thousand nine hundred fifty-nine'), (6057, 47920, 'forty-seven thousand nine hundred twenty'), (6058, 35000, 'thirty-five thousand'), (6059, 72544, 'seventy-two thousand five hundred forty-four'), (6060, 53087, 'fifty-three thousand eighty-seven'), (6061, 51653, 'fifty-one thousand six hundred fifty-three'), (6062, 56876, 'fifty-six thousand eight hundred seventy-six'), (6063, 53639, 'fifty-three thousand six hundred thirty-nine'), (6064, 58465, 'fifty-eight thousand four hundred sixty-five'), (6065, 44217, 'forty-four thousand two hundred seventeen'), (6066, 95345, 'ninety-five thousand three hundred forty-five'), (6067, 11098, 'eleven thousand ninety-eight'), (6068, 35005, 'thirty-five thousand five'), (6069, 16216, 'sixteen thousand two hundred sixteen'), (6070, 78812, 'seventy-eight thousand eight hundred twelve'), (6071, 50748, 'fifty thousand seven hundred forty-eight'), (6072, 63169, 'sixty-three thousand one hundred sixty-nine'), (6073, 83759, 'eighty-three thousand seven hundred fifty-nine'), (6074, 17745, 'seventeen thousand seven hundred forty-five'), (6075, 94833, 'ninety-four thousand eight hundred thirty-three'), (6076, 10059, 'ten thousand fifty-nine'), (6077, 42643, 'forty-two thousand six hundred forty-three'), (6078, 77637, 'seventy-seven thousand six hundred thirty-seven'), (6079, 8609, 'eight thousand six hundred nine'), (6080, 11434, 'eleven thousand four hundred thirty-four'), (6081, 11045, 'eleven thousand forty-five'), (6082, 31353, 'thirty-one thousand three hundred fifty-three'), (6083, 7984, 'seven thousand nine hundred eighty-four'), (6084, 68189, 'sixty-eight thousand one hundred eighty-nine'), (6085, 91516, 'ninety-one thousand five hundred sixteen'), (6086, 50204, 'fifty thousand two hundred four'), (6087, 54992, 'fifty-four thousand nine hundred ninety-two'), (6088, 77329, 'seventy-seven thousand three hundred twenty-nine'), (6089, 32968, 'thirty-two thousand nine hundred sixty-eight'), (6090, 63719, 'sixty-three thousand seven hundred nineteen'), (6091, 47702, 'forty-seven thousand seven hundred two'), (6092, 52202, 'fifty-two thousand two hundred two'), (6093, 59382, 'fifty-nine thousand three hundred eighty-two'), (6094, 59392, 'fifty-nine thousand three hundred ninety-two'), (6095, 81186, 'eighty-one thousand one hundred eighty-six'), (6096, 18689, 'eighteen thousand six hundred eighty-nine'), (6097, 69433, 'sixty-nine thousand four hundred thirty-three'), (6098, 128, 'one hundred twenty-eight'), (6099, 65627, 'sixty-five thousand six hundred twenty-seven'), (6100, 23807, 'twenty-three thousand eight hundred seven'), (6101, 43212, 'forty-three thousand two hundred twelve'), (6102, 84247, 'eighty-four thousand two hundred forty-seven'), (6103, 10001, 'ten thousand one'), (6104, 22817, 'twenty-two thousand eight hundred seventeen'), (6105, 10416, 'ten thousand four hundred sixteen'), (6106, 46219, 'forty-six thousand two hundred nineteen'), (6107, 4292, 'four thousand two hundred ninety-two'), (6108, 74762, 'seventy-four thousand seven hundred sixty-two'), (6109, 89807, 'eighty-nine thousand eight hundred seven'), (6110, 87879, 'eighty-seven thousand eight hundred seventy-nine'), (6111, 48862, 'forty-eight thousand eight hundred sixty-two'), (6112, 2206, 'two thousand two hundred six'), (6113, 49516, 'forty-nine thousand five hundred sixteen'), (6114, 22374, 'twenty-two thousand three hundred seventy-four'), (6115, 47633, 'forty-seven thousand six hundred thirty-three'), (6116, 12390, 'twelve thousand three hundred ninety'), (6117, 18380, 'eighteen thousand three hundred eighty'), (6118, 31722, 'thirty-one thousand seven hundred twenty-two'), (6119, 756, 'seven hundred fifty-six'), (6120, 73346, 'seventy-three thousand three hundred forty-six'), (6121, 33008, 'thirty-three thousand eight'), (6122, 18081, 'eighteen thousand eighty-one'), (6123, 79796, 'seventy-nine thousand seven hundred ninety-six'), (6124, 28515, 'twenty-eight thousand five hundred fifteen'), (6125, 48112, 'forty-eight thousand one hundred twelve'), (6126, 90871, 'ninety thousand eight hundred seventy-one'), (6127, 98029, 'ninety-eight thousand twenty-nine'), (6128, 66186, 'sixty-six thousand one hundred eighty-six'), (6129, 91369, 'ninety-one thousand three hundred sixty-nine'), (6130, 99314, 'ninety-nine thousand three hundred fourteen'), (6131, 71977, 'seventy-one thousand nine hundred seventy-seven'), (6132, 9013, 'nine thousand thirteen'), (6133, 9356, 'nine thousand three hundred fifty-six'), (6134, 76414, 'seventy-six thousand four hundred fourteen'), (6135, 4478, 'four thousand four hundred seventy-eight'), (6136, 35494, 'thirty-five thousand four hundred ninety-four'), (6137, 91433, 'ninety-one thousand four hundred thirty-three'), (6138, 94822, 'ninety-four thousand eight hundred twenty-two'), (6139, 22465, 'twenty-two thousand four hundred sixty-five'), (6140, 4709, 'four thousand seven hundred nine'), (6141, 60301, 'sixty thousand three hundred one'), (6142, 58405, 'fifty-eight thousand four hundred five'), (6143, 86106, 'eighty-six thousand one hundred six'), (6144, 30029, 'thirty thousand twenty-nine'), (6145, 29208, 'twenty-nine thousand two hundred eight'), (6146, 78173, 'seventy-eight thousand one hundred seventy-three'), (6147, 53904, 'fifty-three thousand nine hundred four'), (6148, 69034, 'sixty-nine thousand thirty-four'), (6149, 1334, 'one thousand three hundred thirty-four'), (6150, 34209, 'thirty-four thousand two hundred nine'), (6151, 79540, 'seventy-nine thousand five hundred forty'), (6152, 95094, 'ninety-five thousand ninety-four'), (6153, 13212, 'thirteen thousand two hundred twelve'), (6154, 5923, 'five thousand nine hundred twenty-three'), (6155, 86512, 'eighty-six thousand five hundred twelve'), (6156, 75022, 'seventy-five thousand twenty-two'), (6157, 6507, 'six thousand five hundred seven'), (6158, 61442, 'sixty-one thousand four hundred forty-two'), (6159, 59715, 'fifty-nine thousand seven hundred fifteen'), (6160, 25916, 'twenty-five thousand nine hundred sixteen'), (6161, 64017, 'sixty-four thousand seventeen'), (6162, 31489, 'thirty-one thousand four hundred eighty-nine'), (6163, 83785, 'eighty-three thousand seven hundred eighty-five'), (6164, 49350, 'forty-nine thousand three hundred fifty'), (6165, 20536, 'twenty thousand five hundred thirty-six'), (6166, 17509, 'seventeen thousand five hundred nine'), (6167, 74261, 'seventy-four thousand two hundred sixty-one'), (6168, 55840, 'fifty-five thousand eight hundred forty'), (6169, 77248, 'seventy-seven thousand two hundred forty-eight'), (6170, 58492, 'fifty-eight thousand four hundred ninety-two'), (6171, 27708, 'twenty-seven thousand seven hundred eight'), (6172, 69359, 'sixty-nine thousand three hundred fifty-nine'), (6173, 76926, 'seventy-six thousand nine hundred twenty-six'), (6174, 24775, 'twenty-four thousand seven hundred seventy-five'), (6175, 58389, 'fifty-eight thousand three hundred eighty-nine'), (6176, 11163, 'eleven thousand one hundred sixty-three'), (6177, 69285, 'sixty-nine thousand two hundred eighty-five'), (6178, 54425, 'fifty-four thousand four hundred twenty-five'), (6179, 30885, 'thirty thousand eight hundred eighty-five'), (6180, 32422, 'thirty-two thousand four hundred twenty-two'), (6181, 60603, 'sixty thousand six hundred three'), (6182, 20336, 'twenty thousand three hundred thirty-six'), (6183, 19036, 'nineteen thousand thirty-six'), (6184, 5828, 'five thousand eight hundred twenty-eight'), (6185, 92610, 'ninety-two thousand six hundred ten'), (6186, 18058, 'eighteen thousand fifty-eight'), (6187, 12805, 'twelve thousand eight hundred five'), (6188, 38273, 'thirty-eight thousand two hundred seventy-three'), (6189, 18651, 'eighteen thousand six hundred fifty-one'), (6190, 70334, 'seventy thousand three hundred thirty-four'), (6191, 52816, 'fifty-two thousand eight hundred sixteen'), (6192, 39924, 'thirty-nine thousand nine hundred twenty-four'), (6193, 61332, 'sixty-one thousand three hundred thirty-two'), (6194, 79356, 'seventy-nine thousand three hundred fifty-six'), (6195, 91286, 'ninety-one thousand two hundred eighty-six'), (6196, 69651, 'sixty-nine thousand six hundred fifty-one'), (6197, 13648, 'thirteen thousand six hundred forty-eight'), (6198, 51180, 'fifty-one thousand one hundred eighty'), (6199, 55062, 'fifty-five thousand sixty-two'), (6200, 4308, 'four thousand three hundred eight'), (6201, 15057, 'fifteen thousand fifty-seven'), (6202, 47894, 'forty-seven thousand eight hundred ninety-four'), (6203, 10893, 'ten thousand eight hundred ninety-three'), (6204, 87226, 'eighty-seven thousand two hundred twenty-six'), (6205, 85207, 'eighty-five thousand two hundred seven'), (6206, 43006, 'forty-three thousand six'), (6207, 54781, 'fifty-four thousand seven hundred eighty-one'), (6208, 65498, 'sixty-five thousand four hundred ninety-eight'), (6209, 85704, 'eighty-five thousand seven hundred four'), (6210, 53787, 'fifty-three thousand seven hundred eighty-seven'), (6211, 77261, 'seventy-seven thousand two hundred sixty-one'), (6212, 18604, 'eighteen thousand six hundred four'), (6213, 40460, 'forty thousand four hundred sixty'), (6214, 18314, 'eighteen thousand three hundred fourteen'), (6215, 26310, 'twenty-six thousand three hundred ten'), (6216, 2686, 'two thousand six hundred eighty-six'), (6217, 38087, 'thirty-eight thousand eighty-seven'), (6218, 69619, 'sixty-nine thousand six hundred nineteen'), (6219, 26013, 'twenty-six thousand thirteen'), (6220, 50610, 'fifty thousand six hundred ten'), (6221, 85714, 'eighty-five thousand seven hundred fourteen'), (6222, 23353, 'twenty-three thousand three hundred fifty-three'), (6223, 62157, 'sixty-two thousand one hundred fifty-seven'), (6224, 37591, 'thirty-seven thousand five hundred ninety-one'), (6225, 78047, 'seventy-eight thousand forty-seven'), (6226, 62726, 'sixty-two thousand seven hundred twenty-six'), (6227, 60641, 'sixty thousand six hundred forty-one'), (6228, 97825, 'ninety-seven thousand eight hundred twenty-five'), (6229, 2607, 'two thousand six hundred seven'), (6230, 8014, 'eight thousand fourteen'), (6231, 46466, 'forty-six thousand four hundred sixty-six'), (6232, 57806, 'fifty-seven thousand eight hundred six'), (6233, 23166, 'twenty-three thousand one hundred sixty-six'), (6234, 92280, 'ninety-two thousand two hundred eighty'), (6235, 27927, 'twenty-seven thousand nine hundred twenty-seven'), (6236, 25297, 'twenty-five thousand two hundred ninety-seven'), (6237, 43535, 'forty-three thousand five hundred thirty-five'), (6238, 63253, 'sixty-three thousand two hundred fifty-three'), (6239, 69290, 'sixty-nine thousand two hundred ninety'), (6240, 63322, 'sixty-three thousand three hundred twenty-two'), (6241, 464, 'four hundred sixty-four'), (6242, 50530, 'fifty thousand five hundred thirty'), (6243, 74350, 'seventy-four thousand three hundred fifty'), (6244, 17144, 'seventeen thousand one hundred forty-four'), (6245, 44542, 'forty-four thousand five hundred forty-two'), (6246, 99653, 'ninety-nine thousand six hundred fifty-three'), (6247, 86525, 'eighty-six thousand five hundred twenty-five'), (6248, 42008, 'forty-two thousand eight'), (6249, 15948, 'fifteen thousand nine hundred forty-eight'), (6250, 74661, 'seventy-four thousand six hundred sixty-one'), (6251, 77191, 'seventy-seven thousand one hundred ninety-one'), (6252, 60985, 'sixty thousand nine hundred eighty-five'), (6253, 3124, 'three thousand one hundred twenty-four'), (6254, 19478, 'nineteen thousand four hundred seventy-eight'), (6255, 33284, 'thirty-three thousand two hundred eighty-four'), (6256, 29071, 'twenty-nine thousand seventy-one'), (6257, 71597, 'seventy-one thousand five hundred ninety-seven'), (6258, 28837, 'twenty-eight thousand eight hundred thirty-seven'), (6259, 80589, 'eighty thousand five hundred eighty-nine'), (6260, 39642, 'thirty-nine thousand six hundred forty-two'), (6261, 1625, 'one thousand six hundred twenty-five'), (6262, 27144, 'twenty-seven thousand one hundred forty-four'), (6263, 45420, 'forty-five thousand four hundred twenty'), (6264, 40640, 'forty thousand six hundred forty'), (6265, 28218, 'twenty-eight thousand two hundred eighteen'), (6266, 15926, 'fifteen thousand nine hundred twenty-six'), (6267, 5943, 'five thousand nine hundred forty-three'), (6268, 13862, 'thirteen thousand eight hundred sixty-two'), (6269, 45206, 'forty-five thousand two hundred six'), (6270, 17061, 'seventeen thousand sixty-one'), (6271, 75997, 'seventy-five thousand nine hundred ninety-seven'), (6272, 79348, 'seventy-nine thousand three hundred forty-eight'), (6273, 67597, 'sixty-seven thousand five hundred ninety-seven'), (6274, 98651, 'ninety-eight thousand six hundred fifty-one'), (6275, 13566, 'thirteen thousand five hundred sixty-six'), (6276, 61555, 'sixty-one thousand five hundred fifty-five'), (6277, 14152, 'fourteen thousand one hundred fifty-two'), (6278, 39931, 'thirty-nine thousand nine hundred thirty-one'), (6279, 63366, 'sixty-three thousand three hundred sixty-six'), (6280, 38078, 'thirty-eight thousand seventy-eight'), (6281, 63552, 'sixty-three thousand five hundred fifty-two'), (6282, 24355, 'twenty-four thousand three hundred fifty-five'), (6283, 76778, 'seventy-six thousand seven hundred seventy-eight'), (6284, 37704, 'thirty-seven thousand seven hundred four'), (6285, 67452, 'sixty-seven thousand four hundred fifty-two'), (6286, 10168, 'ten thousand one hundred sixty-eight'), (6287, 40233, 'forty thousand two hundred thirty-three'), (6288, 57993, 'fifty-seven thousand nine hundred ninety-three'), (6289, 44453, 'forty-four thousand four hundred fifty-three'), (6290, 45171, 'forty-five thousand one hundred seventy-one'), (6291, 98533, 'ninety-eight thousand five hundred thirty-three'), (6292, 64136, 'sixty-four thousand one hundred thirty-six'), (6293, 17545, 'seventeen thousand five hundred forty-five'), (6294, 34776, 'thirty-four thousand seven hundred seventy-six'), (6295, 44914, 'forty-four thousand nine hundred fourteen'), (6296, 2385, 'two thousand three hundred eighty-five'), (6297, 3427, 'three thousand four hundred twenty-seven'), (6298, 90251, 'ninety thousand two hundred fifty-one'), (6299, 48179, 'forty-eight thousand one hundred seventy-nine'), (6300, 23545, 'twenty-three thousand five hundred forty-five'), (6301, 91963, 'ninety-one thousand nine hundred sixty-three'), (6302, 36205, 'thirty-six thousand two hundred five'), (6303, 39435, 'thirty-nine thousand four hundred thirty-five'), (6304, 29800, 'twenty-nine thousand eight hundred'), (6305, 96509, 'ninety-six thousand five hundred nine'), (6306, 57204, 'fifty-seven thousand two hundred four'), (6307, 79563, 'seventy-nine thousand five hundred sixty-three'), (6308, 80867, 'eighty thousand eight hundred sixty-seven'), (6309, 45072, 'forty-five thousand seventy-two'), (6310, 65593, 'sixty-five thousand five hundred ninety-three'), (6311, 80577, 'eighty thousand five hundred seventy-seven'), (6312, 70703, 'seventy thousand seven hundred three'), (6313, 55931, 'fifty-five thousand nine hundred thirty-one'), (6314, 81354, 'eighty-one thousand three hundred fifty-four'), (6315, 91349, 'ninety-one thousand three hundred forty-nine'), (6316, 48785, 'forty-eight thousand seven hundred eighty-five'), (6317, 34562, 'thirty-four thousand five hundred sixty-two'), (6318, 22034, 'twenty-two thousand thirty-four'), (6319, 69561, 'sixty-nine thousand five hundred sixty-one'), (6320, 13635, 'thirteen thousand six hundred thirty-five'), (6321, 37105, 'thirty-seven thousand one hundred five'), (6322, 78774, 'seventy-eight thousand seven hundred seventy-four'), (6323, 75724, 'seventy-five thousand seven hundred twenty-four'), (6324, 70917, 'seventy thousand nine hundred seventeen'), (6325, 7787, 'seven thousand seven hundred eighty-seven'), (6326, 92398, 'ninety-two thousand three hundred ninety-eight'), (6327, 11381, 'eleven thousand three hundred eighty-one'), (6328, 75170, 'seventy-five thousand one hundred seventy'), (6329, 28232, 'twenty-eight thousand two hundred thirty-two'), (6330, 90797, 'ninety thousand seven hundred ninety-seven'), (6331, 47540, 'forty-seven thousand five hundred forty'), (6332, 663, 'six hundred sixty-three'), (6333, 33441, 'thirty-three thousand four hundred forty-one'), (6334, 13129, 'thirteen thousand one hundred twenty-nine'), (6335, 16111, 'sixteen thousand one hundred eleven'), (6336, 80935, 'eighty thousand nine hundred thirty-five'), (6337, 36369, 'thirty-six thousand three hundred sixty-nine'), (6338, 2929, 'two thousand nine hundred twenty-nine'), (6339, 42061, 'forty-two thousand sixty-one'), (6340, 14756, 'fourteen thousand seven hundred fifty-six'), (6341, 36945, 'thirty-six thousand nine hundred forty-five'), (6342, 45863, 'forty-five thousand eight hundred sixty-three'), (6343, 49551, 'forty-nine thousand five hundred fifty-one'), (6344, 81406, 'eighty-one thousand four hundred six'), (6345, 33015, 'thirty-three thousand fifteen'), (6346, 89048, 'eighty-nine thousand forty-eight'), (6347, 85800, 'eighty-five thousand eight hundred'), (6348, 56357, 'fifty-six thousand three hundred fifty-seven'), (6349, 60330, 'sixty thousand three hundred thirty'), (6350, 59368, 'fifty-nine thousand three hundred sixty-eight'), (6351, 7116, 'seven thousand one hundred sixteen'), (6352, 51716, 'fifty-one thousand seven hundred sixteen'), (6353, 30310, 'thirty thousand three hundred ten'), (6354, 97685, 'ninety-seven thousand six hundred eighty-five'), (6355, 10474, 'ten thousand four hundred seventy-four'), (6356, 10999, 'ten thousand nine hundred ninety-nine'), (6357, 83964, 'eighty-three thousand nine hundred sixty-four'), (6358, 41674, 'forty-one thousand six hundred seventy-four'), (6359, 58272, 'fifty-eight thousand two hundred seventy-two'), (6360, 30137, 'thirty thousand one hundred thirty-seven'), (6361, 58812, 'fifty-eight thousand eight hundred twelve'), (6362, 25428, 'twenty-five thousand four hundred twenty-eight'), (6363, 969, 'nine hundred sixty-nine'), (6364, 78111, 'seventy-eight thousand one hundred eleven'), (6365, 36351, 'thirty-six thousand three hundred fifty-one'), (6366, 83450, 'eighty-three thousand four hundred fifty'), (6367, 37254, 'thirty-seven thousand two hundred fifty-four'), (6368, 31765, 'thirty-one thousand seven hundred sixty-five'), (6369, 35840, 'thirty-five thousand eight hundred forty'), (6370, 86235, 'eighty-six thousand two hundred thirty-five'), (6371, 46187, 'forty-six thousand one hundred eighty-seven'), (6372, 98450, 'ninety-eight thousand four hundred fifty'), (6373, 36362, 'thirty-six thousand three hundred sixty-two'), (6374, 29935, 'twenty-nine thousand nine hundred thirty-five'), (6375, 44612, 'forty-four thousand six hundred twelve'), (6376, 29621, 'twenty-nine thousand six hundred twenty-one'), (6377, 53245, 'fifty-three thousand two hundred forty-five'), (6378, 50150, 'fifty thousand one hundred fifty'), (6379, 55048, 'fifty-five thousand forty-eight'), (6380, 86635, 'eighty-six thousand six hundred thirty-five'), (6381, 22673, 'twenty-two thousand six hundred seventy-three'), (6382, 67513, 'sixty-seven thousand five hundred thirteen'), (6383, 11322, 'eleven thousand three hundred twenty-two'), (6384, 81429, 'eighty-one thousand four hundred twenty-nine'), (6385, 77694, 'seventy-seven thousand six hundred ninety-four'), (6386, 26955, 'twenty-six thousand nine hundred fifty-five'), (6387, 50624, 'fifty thousand six hundred twenty-four'), (6388, 88337, 'eighty-eight thousand three hundred thirty-seven'), (6389, 74642, 'seventy-four thousand six hundred forty-two'), (6390, 25409, 'twenty-five thousand four hundred nine'), (6391, 85246, 'eighty-five thousand two hundred forty-six'), (6392, 39308, 'thirty-nine thousand three hundred eight'), (6393, 88919, 'eighty-eight thousand nine hundred nineteen'), (6394, 53281, 'fifty-three thousand two hundred eighty-one'), (6395, 98267, 'ninety-eight thousand two hundred sixty-seven'), (6396, 94201, 'ninety-four thousand two hundred one'), (6397, 21657, 'twenty-one thousand six hundred fifty-seven'), (6398, 94999, 'ninety-four thousand nine hundred ninety-nine'), (6399, 88766, 'eighty-eight thousand seven hundred sixty-six'), (6400, 31558, 'thirty-one thousand five hundred fifty-eight'), (6401, 54436, 'fifty-four thousand four hundred thirty-six'), (6402, 2398, 'two thousand three hundred ninety-eight'), (6403, 78834, 'seventy-eight thousand eight hundred thirty-four'), (6404, 31629, 'thirty-one thousand six hundred twenty-nine'), (6405, 84925, 'eighty-four thousand nine hundred twenty-five'), (6406, 39224, 'thirty-nine thousand two hundred twenty-four'), (6407, 46854, 'forty-six thousand eight hundred fifty-four'), (6408, 85988, 'eighty-five thousand nine hundred eighty-eight'), (6409, 96730, 'ninety-six thousand seven hundred thirty'), (6410, 81985, 'eighty-one thousand nine hundred eighty-five'), (6411, 28446, 'twenty-eight thousand four hundred forty-six'), (6412, 92945, 'ninety-two thousand nine hundred forty-five'), (6413, 42122, 'forty-two thousand one hundred twenty-two'), (6414, 84171, 'eighty-four thousand one hundred seventy-one'), (6415, 23582, 'twenty-three thousand five hundred eighty-two'), (6416, 32564, 'thirty-two thousand five hundred sixty-four'), (6417, 34568, 'thirty-four thousand five hundred sixty-eight'), (6418, 84656, 'eighty-four thousand six hundred fifty-six'), (6419, 48291, 'forty-eight thousand two hundred ninety-one'), (6420, 87243, 'eighty-seven thousand two hundred forty-three'), (6421, 50125, 'fifty thousand one hundred twenty-five'), (6422, 90477, 'ninety thousand four hundred seventy-seven'), (6423, 36164, 'thirty-six thousand one hundred sixty-four'), (6424, 23696, 'twenty-three thousand six hundred ninety-six'), (6425, 33040, 'thirty-three thousand forty'), (6426, 72836, 'seventy-two thousand eight hundred thirty-six'), (6427, 86980, 'eighty-six thousand nine hundred eighty'), (6428, 40623, 'forty thousand six hundred twenty-three'), (6429, 91390, 'ninety-one thousand three hundred ninety'), (6430, 84724, 'eighty-four thousand seven hundred twenty-four'), (6431, 35155, 'thirty-five thousand one hundred fifty-five'), (6432, 34401, 'thirty-four thousand four hundred one'), (6433, 33430, 'thirty-three thousand four hundred thirty'), (6434, 14729, 'fourteen thousand seven hundred twenty-nine'), (6435, 52049, 'fifty-two thousand forty-nine'), (6436, 86968, 'eighty-six thousand nine hundred sixty-eight'), (6437, 31113, 'thirty-one thousand one hundred thirteen'), (6438, 62694, 'sixty-two thousand six hundred ninety-four'), (6439, 59821, 'fifty-nine thousand eight hundred twenty-one'), (6440, 3480, 'three thousand four hundred eighty'), (6441, 30845, 'thirty thousand eight hundred forty-five'), (6442, 31999, 'thirty-one thousand nine hundred ninety-nine'), (6443, 65500, 'sixty-five thousand five hundred'), (6444, 56122, 'fifty-six thousand one hundred twenty-two'), (6445, 19409, 'nineteen thousand four hundred nine'), (6446, 59094, 'fifty-nine thousand ninety-four'), (6447, 61425, 'sixty-one thousand four hundred twenty-five'), (6448, 90974, 'ninety thousand nine hundred seventy-four'), (6449, 4160, 'four thousand one hundred sixty'), (6450, 25228, 'twenty-five thousand two hundred twenty-eight'), (6451, 88487, 'eighty-eight thousand four hundred eighty-seven'), (6452, 44319, 'forty-four thousand three hundred nineteen'), (6453, 71594, 'seventy-one thousand five hundred ninety-four'), (6454, 29525, 'twenty-nine thousand five hundred twenty-five'), (6455, 96270, 'ninety-six thousand two hundred seventy'), (6456, 71824, 'seventy-one thousand eight hundred twenty-four'), (6457, 63054, 'sixty-three thousand fifty-four'), (6458, 667, 'six hundred sixty-seven'), (6459, 87725, 'eighty-seven thousand seven hundred twenty-five'), (6460, 7174, 'seven thousand one hundred seventy-four'), (6461, 64534, 'sixty-four thousand five hundred thirty-four'), (6462, 72956, 'seventy-two thousand nine hundred fifty-six'), (6463, 28646, 'twenty-eight thousand six hundred forty-six'), (6464, 9232, 'nine thousand two hundred thirty-two'), (6465, 82555, 'eighty-two thousand five hundred fifty-five'), (6466, 30862, 'thirty thousand eight hundred sixty-two'), (6467, 18916, 'eighteen thousand nine hundred sixteen'), (6468, 74101, 'seventy-four thousand one hundred one'), (6469, 22953, 'twenty-two thousand nine hundred fifty-three'), (6470, 97282, 'ninety-seven thousand two hundred eighty-two'), (6471, 68523, 'sixty-eight thousand five hundred twenty-three'), (6472, 83312, 'eighty-three thousand three hundred twelve'), (6473, 87909, 'eighty-seven thousand nine hundred nine'), (6474, 58630, 'fifty-eight thousand six hundred thirty'), (6475, 89486, 'eighty-nine thousand four hundred eighty-six'), (6476, 61681, 'sixty-one thousand six hundred eighty-one'), (6477, 35167, 'thirty-five thousand one hundred sixty-seven'), (6478, 68894, 'sixty-eight thousand eight hundred ninety-four'), (6479, 25761, 'twenty-five thousand seven hundred sixty-one'), (6480, 25405, 'twenty-five thousand four hundred five'), (6481, 21503, 'twenty-one thousand five hundred three'), (6482, 83719, 'eighty-three thousand seven hundred nineteen'), (6483, 66635, 'sixty-six thousand six hundred thirty-five'), (6484, 57844, 'fifty-seven thousand eight hundred forty-four'), (6485, 38179, 'thirty-eight thousand one hundred seventy-nine'), (6486, 53271, 'fifty-three thousand two hundred seventy-one'), (6487, 79881, 'seventy-nine thousand eight hundred eighty-one'), (6488, 14889, 'fourteen thousand eight hundred eighty-nine'), (6489, 67614, 'sixty-seven thousand six hundred fourteen'), (6490, 97143, 'ninety-seven thousand one hundred forty-three'), (6491, 17704, 'seventeen thousand seven hundred four'), (6492, 75236, 'seventy-five thousand two hundred thirty-six'), (6493, 9330, 'nine thousand three hundred thirty'), (6494, 79717, 'seventy-nine thousand seven hundred seventeen'), (6495, 25511, 'twenty-five thousand five hundred eleven'), (6496, 79585, 'seventy-nine thousand five hundred eighty-five'), (6497, 18357, 'eighteen thousand three hundred fifty-seven'), (6498, 80700, 'eighty thousand seven hundred'), (6499, 34828, 'thirty-four thousand eight hundred twenty-eight'), (6500, 98144, 'ninety-eight thousand one hundred forty-four'), (6501, 90813, 'ninety thousand eight hundred thirteen'), (6502, 96512, 'ninety-six thousand five hundred twelve'), (6503, 30119, 'thirty thousand one hundred nineteen'), (6504, 17465, 'seventeen thousand four hundred sixty-five'), (6505, 78894, 'seventy-eight thousand eight hundred ninety-four'), (6506, 99059, 'ninety-nine thousand fifty-nine'), (6507, 74179, 'seventy-four thousand one hundred seventy-nine'), (6508, 40283, 'forty thousand two hundred eighty-three'), (6509, 36084, 'thirty-six thousand eighty-four'), (6510, 25931, 'twenty-five thousand nine hundred thirty-one'), (6511, 15410, 'fifteen thousand four hundred ten'), (6512, 36549, 'thirty-six thousand five hundred forty-nine'), (6513, 64300, 'sixty-four thousand three hundred'), (6514, 3839, 'three thousand eight hundred thirty-nine'), (6515, 49750, 'forty-nine thousand seven hundred fifty'), (6516, 15951, 'fifteen thousand nine hundred fifty-one'), (6517, 12595, 'twelve thousand five hundred ninety-five'), (6518, 19644, 'nineteen thousand six hundred forty-four'), (6519, 78167, 'seventy-eight thousand one hundred sixty-seven'), (6520, 51664, 'fifty-one thousand six hundred sixty-four'), (6521, 33464, 'thirty-three thousand four hundred sixty-four'), (6522, 53416, 'fifty-three thousand four hundred sixteen'), (6523, 6901, 'six thousand nine hundred one'), (6524, 3388, 'three thousand three hundred eighty-eight'), (6525, 55829, 'fifty-five thousand eight hundred twenty-nine'), (6526, 84538, 'eighty-four thousand five hundred thirty-eight'), (6527, 81904, 'eighty-one thousand nine hundred four'), (6528, 81219, 'eighty-one thousand two hundred nineteen'), (6529, 49076, 'forty-nine thousand seventy-six'), (6530, 70818, 'seventy thousand eight hundred eighteen'), (6531, 71645, 'seventy-one thousand six hundred forty-five'), (6532, 56341, 'fifty-six thousand three hundred forty-one'), (6533, 8023, 'eight thousand twenty-three'), (6534, 91055, 'ninety-one thousand fifty-five'), (6535, 97901, 'ninety-seven thousand nine hundred one'), (6536, 7469, 'seven thousand four hundred sixty-nine'), (6537, 22260, 'twenty-two thousand two hundred sixty'), (6538, 85026, 'eighty-five thousand twenty-six'), (6539, 11137, 'eleven thousand one hundred thirty-seven'), (6540, 5931, 'five thousand nine hundred thirty-one'), (6541, 25921, 'twenty-five thousand nine hundred twenty-one'), (6542, 29376, 'twenty-nine thousand three hundred seventy-six'), (6543, 13252, 'thirteen thousand two hundred fifty-two'), (6544, 98943, 'ninety-eight thousand nine hundred forty-three'), (6545, 75499, 'seventy-five thousand four hundred ninety-nine'), (6546, 91582, 'ninety-one thousand five hundred eighty-two'), (6547, 3533, 'three thousand five hundred thirty-three'), (6548, 269, 'two hundred sixty-nine'), (6549, 51498, 'fifty-one thousand four hundred ninety-eight'), (6550, 48037, 'forty-eight thousand thirty-seven'), (6551, 77894, 'seventy-seven thousand eight hundred ninety-four'), (6552, 28956, 'twenty-eight thousand nine hundred fifty-six'), (6553, 91318, 'ninety-one thousand three hundred eighteen'), (6554, 76032, 'seventy-six thousand thirty-two'), (6555, 65407, 'sixty-five thousand four hundred seven'), (6556, 10141, 'ten thousand one hundred forty-one'), (6557, 25177, 'twenty-five thousand one hundred seventy-seven'), (6558, 39927, 'thirty-nine thousand nine hundred twenty-seven'), (6559, 93976, 'ninety-three thousand nine hundred seventy-six'), (6560, 17883, 'seventeen thousand eight hundred eighty-three'), (6561, 83992, 'eighty-three thousand nine hundred ninety-two'), (6562, 70612, 'seventy thousand six hundred twelve'), (6563, 63063, 'sixty-three thousand sixty-three'), (6564, 84038, 'eighty-four thousand thirty-eight'), (6565, 88573, 'eighty-eight thousand five hundred seventy-three'), (6566, 14007, 'fourteen thousand seven'), (6567, 20355, 'twenty thousand three hundred fifty-five'), (6568, 88805, 'eighty-eight thousand eight hundred five'), (6569, 74562, 'seventy-four thousand five hundred sixty-two'), (6570, 29439, 'twenty-nine thousand four hundred thirty-nine'), (6571, 96238, 'ninety-six thousand two hundred thirty-eight'), (6572, 69175, 'sixty-nine thousand one hundred seventy-five'), (6573, 98109, 'ninety-eight thousand one hundred nine'), (6574, 32877, 'thirty-two thousand eight hundred seventy-seven'), (6575, 19990, 'nineteen thousand nine hundred ninety'), (6576, 59341, 'fifty-nine thousand three hundred forty-one'), (6577, 94034, 'ninety-four thousand thirty-four'), (6578, 66816, 'sixty-six thousand eight hundred sixteen'), (6579, 1549, 'one thousand five hundred forty-nine'), (6580, 71258, 'seventy-one thousand two hundred fifty-eight'), (6581, 12978, 'twelve thousand nine hundred seventy-eight'), (6582, 23457, 'twenty-three thousand four hundred fifty-seven'), (6583, 51508, 'fifty-one thousand five hundred eight'), (6584, 35817, 'thirty-five thousand eight hundred seventeen'), (6585, 74355, 'seventy-four thousand three hundred fifty-five'), (6586, 21771, 'twenty-one thousand seven hundred seventy-one'), (6587, 21806, 'twenty-one thousand eight hundred six'), (6588, 50591, 'fifty thousand five hundred ninety-one'), (6589, 81906, 'eighty-one thousand nine hundred six'), (6590, 21753, 'twenty-one thousand seven hundred fifty-three'), (6591, 76454, 'seventy-six thousand four hundred fifty-four'), (6592, 97959, 'ninety-seven thousand nine hundred fifty-nine'), (6593, 19861, 'nineteen thousand eight hundred sixty-one'), (6594, 74155, 'seventy-four thousand one hundred fifty-five'), (6595, 51804, 'fifty-one thousand eight hundred four'), (6596, 26162, 'twenty-six thousand one hundred sixty-two'), (6597, 27725, 'twenty-seven thousand seven hundred twenty-five'), (6598, 75275, 'seventy-five thousand two hundred seventy-five'), (6599, 28772, 'twenty-eight thousand seven hundred seventy-two'), (6600, 12111, 'twelve thousand one hundred eleven'), (6601, 86492, 'eighty-six thousand four hundred ninety-two'), (6602, 68872, 'sixty-eight thousand eight hundred seventy-two'), (6603, 96635, 'ninety-six thousand six hundred thirty-five'), (6604, 24530, 'twenty-four thousand five hundred thirty'), (6605, 52095, 'fifty-two thousand ninety-five'), (6606, 66430, 'sixty-six thousand four hundred thirty'), (6607, 98708, 'ninety-eight thousand seven hundred eight'), (6608, 81032, 'eighty-one thousand thirty-two'), (6609, 46274, 'forty-six thousand two hundred seventy-four'), (6610, 35214, 'thirty-five thousand two hundred fourteen'), (6611, 25329, 'twenty-five thousand three hundred twenty-nine'), (6612, 89958, 'eighty-nine thousand nine hundred fifty-eight'), (6613, 56115, 'fifty-six thousand one hundred fifteen'), (6614, 1508, 'one thousand five hundred eight'), (6615, 66159, 'sixty-six thousand one hundred fifty-nine'), (6616, 94091, 'ninety-four thousand ninety-one'), (6617, 17931, 'seventeen thousand nine hundred thirty-one'), (6618, 50776, 'fifty thousand seven hundred seventy-six'), (6619, 51778, 'fifty-one thousand seven hundred seventy-eight'), (6620, 45754, 'forty-five thousand seven hundred fifty-four'), (6621, 1673, 'one thousand six hundred seventy-three'), (6622, 41574, 'forty-one thousand five hundred seventy-four'), (6623, 92439, 'ninety-two thousand four hundred thirty-nine'), (6624, 62210, 'sixty-two thousand two hundred ten'), (6625, 41533, 'forty-one thousand five hundred thirty-three'), (6626, 7793, 'seven thousand seven hundred ninety-three'), (6627, 36450, 'thirty-six thousand four hundred fifty'), (6628, 66720, 'sixty-six thousand seven hundred twenty'), (6629, 37480, 'thirty-seven thousand four hundred eighty'), (6630, 35630, 'thirty-five thousand six hundred thirty'), (6631, 75605, 'seventy-five thousand six hundred five'), (6632, 7352, 'seven thousand three hundred fifty-two'), (6633, 18710, 'eighteen thousand seven hundred ten'), (6634, 83097, 'eighty-three thousand ninety-seven'), (6635, 34271, 'thirty-four thousand two hundred seventy-one'), (6636, 71193, 'seventy-one thousand one hundred ninety-three'), (6637, 34249, 'thirty-four thousand two hundred forty-nine'), (6638, 79802, 'seventy-nine thousand eight hundred two'), (6639, 66577, 'sixty-six thousand five hundred seventy-seven'), (6640, 84774, 'eighty-four thousand seven hundred seventy-four'), (6641, 67257, 'sixty-seven thousand two hundred fifty-seven'), (6642, 55627, 'fifty-five thousand six hundred twenty-seven'), (6643, 46698, 'forty-six thousand six hundred ninety-eight'), (6644, 40160, 'forty thousand one hundred sixty'), (6645, 99461, 'ninety-nine thousand four hundred sixty-one'), (6646, 25300, 'twenty-five thousand three hundred'), (6647, 75747, 'seventy-five thousand seven hundred forty-seven'), (6648, 97000, 'ninety-seven thousand'), (6649, 84151, 'eighty-four thousand one hundred fifty-one'), (6650, 81183, 'eighty-one thousand one hundred eighty-three'), (6651, 65033, 'sixty-five thousand thirty-three'), (6652, 18443, 'eighteen thousand four hundred forty-three'), (6653, 93426, 'ninety-three thousand four hundred twenty-six'), (6654, 66274, 'sixty-six thousand two hundred seventy-four'), (6655, 71661, 'seventy-one thousand six hundred sixty-one'), (6656, 56328, 'fifty-six thousand three hundred twenty-eight'), (6657, 77429, 'seventy-seven thousand four hundred twenty-nine'), (6658, 49172, 'forty-nine thousand one hundred seventy-two'), (6659, 81563, 'eighty-one thousand five hundred sixty-three'), (6660, 15364, 'fifteen thousand three hundred sixty-four'), (6661, 40289, 'forty thousand two hundred eighty-nine'), (6662, 65642, 'sixty-five thousand six hundred forty-two'), (6663, 66392, 'sixty-six thousand three hundred ninety-two'), (6664, 39051, 'thirty-nine thousand fifty-one'), (6665, 50455, 'fifty thousand four hundred fifty-five'), (6666, 86017, 'eighty-six thousand seventeen'), (6667, 47725, 'forty-seven thousand seven hundred twenty-five'), (6668, 20778, 'twenty thousand seven hundred seventy-eight'), (6669, 26718, 'twenty-six thousand seven hundred eighteen'), (6670, 4198, 'four thousand one hundred ninety-eight'), (6671, 4003, 'four thousand three'), (6672, 71920, 'seventy-one thousand nine hundred twenty'), (6673, 23405, 'twenty-three thousand four hundred five'), (6674, 45877, 'forty-five thousand eight hundred seventy-seven'), (6675, 84650, 'eighty-four thousand six hundred fifty'), (6676, 92500, 'ninety-two thousand five hundred'), (6677, 33756, 'thirty-three thousand seven hundred fifty-six'), (6678, 16742, 'sixteen thousand seven hundred forty-two'), (6679, 69714, 'sixty-nine thousand seven hundred fourteen'), (6680, 58512, 'fifty-eight thousand five hundred twelve'), (6681, 48, 'forty-eight'), (6682, 68903, 'sixty-eight thousand nine hundred three'), (6683, 63885, 'sixty-three thousand eight hundred eighty-five'), (6684, 87619, 'eighty-seven thousand six hundred nineteen'), (6685, 93753, 'ninety-three thousand seven hundred fifty-three'), (6686, 62988, 'sixty-two thousand nine hundred eighty-eight'), (6687, 85093, 'eighty-five thousand ninety-three'), (6688, 76970, 'seventy-six thousand nine hundred seventy'), (6689, 77131, 'seventy-seven thousand one hundred thirty-one'), (6690, 80972, 'eighty thousand nine hundred seventy-two'), (6691, 94976, 'ninety-four thousand nine hundred seventy-six'), (6692, 91698, 'ninety-one thousand six hundred ninety-eight'), (6693, 40421, 'forty thousand four hundred twenty-one'), (6694, 20937, 'twenty thousand nine hundred thirty-seven'), (6695, 14829, 'fourteen thousand eight hundred twenty-nine'), (6696, 54118, 'fifty-four thousand one hundred eighteen'), (6697, 70324, 'seventy thousand three hundred twenty-four'), (6698, 69621, 'sixty-nine thousand six hundred twenty-one'), (6699, 79897, 'seventy-nine thousand eight hundred ninety-seven'), (6700, 26637, 'twenty-six thousand six hundred thirty-seven'), (6701, 4777, 'four thousand seven hundred seventy-seven'), (6702, 51548, 'fifty-one thousand five hundred forty-eight'), (6703, 90392, 'ninety thousand three hundred ninety-two'), (6704, 86107, 'eighty-six thousand one hundred seven'), (6705, 38488, 'thirty-eight thousand four hundred eighty-eight'), (6706, 44084, 'forty-four thousand eighty-four'), (6707, 25919, 'twenty-five thousand nine hundred nineteen'), (6708, 68527, 'sixty-eight thousand five hundred twenty-seven'), (6709, 65235, 'sixty-five thousand two hundred thirty-five'), (6710, 49374, 'forty-nine thousand three hundred seventy-four'), (6711, 67287, 'sixty-seven thousand two hundred eighty-seven'), (6712, 60554, 'sixty thousand five hundred fifty-four'), (6713, 61828, 'sixty-one thousand eight hundred twenty-eight'), (6714, 75101, 'seventy-five thousand one hundred one'), (6715, 58843, 'fifty-eight thousand eight hundred forty-three'), (6716, 7528, 'seven thousand five hundred twenty-eight'), (6717, 84326, 'eighty-four thousand three hundred twenty-six'), (6718, 26606, 'twenty-six thousand six hundred six'), (6719, 63107, 'sixty-three thousand one hundred seven'), (6720, 85704, 'eighty-five thousand seven hundred four'), (6721, 64592, 'sixty-four thousand five hundred ninety-two'), (6722, 4172, 'four thousand one hundred seventy-two'), (6723, 29724, 'twenty-nine thousand seven hundred twenty-four'), (6724, 66256, 'sixty-six thousand two hundred fifty-six'), (6725, 28574, 'twenty-eight thousand five hundred seventy-four'), (6726, 65820, 'sixty-five thousand eight hundred twenty'), (6727, 53820, 'fifty-three thousand eight hundred twenty'), (6728, 94194, 'ninety-four thousand one hundred ninety-four'), (6729, 85547, 'eighty-five thousand five hundred forty-seven'), (6730, 59483, 'fifty-nine thousand four hundred eighty-three'), (6731, 88634, 'eighty-eight thousand six hundred thirty-four'), (6732, 20559, 'twenty thousand five hundred fifty-nine'), (6733, 47258, 'forty-seven thousand two hundred fifty-eight'), (6734, 87086, 'eighty-seven thousand eighty-six'), (6735, 74994, 'seventy-four thousand nine hundred ninety-four'), (6736, 86848, 'eighty-six thousand eight hundred forty-eight'), (6737, 38213, 'thirty-eight thousand two hundred thirteen'), (6738, 65854, 'sixty-five thousand eight hundred fifty-four'), (6739, 52416, 'fifty-two thousand four hundred sixteen'), (6740, 13950, 'thirteen thousand nine hundred fifty'), (6741, 52315, 'fifty-two thousand three hundred fifteen'), (6742, 5782, 'five thousand seven hundred eighty-two'), (6743, 47572, 'forty-seven thousand five hundred seventy-two'), (6744, 70865, 'seventy thousand eight hundred sixty-five'), (6745, 13411, 'thirteen thousand four hundred eleven'), (6746, 86184, 'eighty-six thousand one hundred eighty-four'), (6747, 29628, 'twenty-nine thousand six hundred twenty-eight'), (6748, 67024, 'sixty-seven thousand twenty-four'), (6749, 64383, 'sixty-four thousand three hundred eighty-three'), (6750, 65944, 'sixty-five thousand nine hundred forty-four'), (6751, 90876, 'ninety thousand eight hundred seventy-six'), (6752, 22521, 'twenty-two thousand five hundred twenty-one'), (6753, 45905, 'forty-five thousand nine hundred five'), (6754, 64244, 'sixty-four thousand two hundred forty-four'), (6755, 75421, 'seventy-five thousand four hundred twenty-one'), (6756, 54487, 'fifty-four thousand four hundred eighty-seven'), (6757, 30678, 'thirty thousand six hundred seventy-eight'), (6758, 66796, 'sixty-six thousand seven hundred ninety-six'), (6759, 80073, 'eighty thousand seventy-three'), (6760, 96299, 'ninety-six thousand two hundred ninety-nine'), (6761, 11195, 'eleven thousand one hundred ninety-five'), (6762, 33964, 'thirty-three thousand nine hundred sixty-four'), (6763, 46364, 'forty-six thousand three hundred sixty-four'), (6764, 97177, 'ninety-seven thousand one hundred seventy-seven'), (6765, 41466, 'forty-one thousand four hundred sixty-six'), (6766, 61475, 'sixty-one thousand four hundred seventy-five'), (6767, 69685, 'sixty-nine thousand six hundred eighty-five'), (6768, 50759, 'fifty thousand seven hundred fifty-nine'), (6769, 64318, 'sixty-four thousand three hundred eighteen'), (6770, 23477, 'twenty-three thousand four hundred seventy-seven'), (6771, 74245, 'seventy-four thousand two hundred forty-five'), (6772, 91218, 'ninety-one thousand two hundred eighteen'), (6773, 64355, 'sixty-four thousand three hundred fifty-five'), (6774, 47803, 'forty-seven thousand eight hundred three'), (6775, 48927, 'forty-eight thousand nine hundred twenty-seven'), (6776, 60602, 'sixty thousand six hundred two'), (6777, 76210, 'seventy-six thousand two hundred ten'), (6778, 85169, 'eighty-five thousand one hundred sixty-nine'), (6779, 8482, 'eight thousand four hundred eighty-two'), (6780, 27640, 'twenty-seven thousand six hundred forty'), (6781, 69276, 'sixty-nine thousand two hundred seventy-six'), (6782, 81289, 'eighty-one thousand two hundred eighty-nine'), (6783, 86269, 'eighty-six thousand two hundred sixty-nine'), (6784, 38434, 'thirty-eight thousand four hundred thirty-four'), (6785, 40510, 'forty thousand five hundred ten'), (6786, 18913, 'eighteen thousand nine hundred thirteen'), (6787, 28514, 'twenty-eight thousand five hundred fourteen'), (6788, 80994, 'eighty thousand nine hundred ninety-four'), (6789, 41680, 'forty-one thousand six hundred eighty'), (6790, 26002, 'twenty-six thousand two'), (6791, 40177, 'forty thousand one hundred seventy-seven'), (6792, 72208, 'seventy-two thousand two hundred eight'), (6793, 74431, 'seventy-four thousand four hundred thirty-one'), (6794, 82635, 'eighty-two thousand six hundred thirty-five'), (6795, 30379, 'thirty thousand three hundred seventy-nine'), (6796, 65894, 'sixty-five thousand eight hundred ninety-four'), (6797, 46011, 'forty-six thousand eleven'), (6798, 17613, 'seventeen thousand six hundred thirteen'), (6799, 4141, 'four thousand one hundred forty-one'), (6800, 50157, 'fifty thousand one hundred fifty-seven'), (6801, 48985, 'forty-eight thousand nine hundred eighty-five'), (6802, 89454, 'eighty-nine thousand four hundred fifty-four'), (6803, 93896, 'ninety-three thousand eight hundred ninety-six'), (6804, 88009, 'eighty-eight thousand nine'), (6805, 89121, 'eighty-nine thousand one hundred twenty-one'), (6806, 35164, 'thirty-five thousand one hundred sixty-four'), (6807, 1979, 'one thousand nine hundred seventy-nine'), (6808, 86539, 'eighty-six thousand five hundred thirty-nine'), (6809, 28833, 'twenty-eight thousand eight hundred thirty-three'), (6810, 65279, 'sixty-five thousand two hundred seventy-nine'), (6811, 51761, 'fifty-one thousand seven hundred sixty-one'), (6812, 77496, 'seventy-seven thousand four hundred ninety-six'), (6813, 66427, 'sixty-six thousand four hundred twenty-seven'), (6814, 44762, 'forty-four thousand seven hundred sixty-two'), (6815, 4346, 'four thousand three hundred forty-six'), (6816, 93476, 'ninety-three thousand four hundred seventy-six'), (6817, 27757, 'twenty-seven thousand seven hundred fifty-seven'), (6818, 62063, 'sixty-two thousand sixty-three'), (6819, 54096, 'fifty-four thousand ninety-six'), (6820, 49582, 'forty-nine thousand five hundred eighty-two'), (6821, 71309, 'seventy-one thousand three hundred nine'), (6822, 20614, 'twenty thousand six hundred fourteen'), (6823, 35252, 'thirty-five thousand two hundred fifty-two'), (6824, 89126, 'eighty-nine thousand one hundred twenty-six'), (6825, 17968, 'seventeen thousand nine hundred sixty-eight'), (6826, 96107, 'ninety-six thousand one hundred seven'), (6827, 71625, 'seventy-one thousand six hundred twenty-five'), (6828, 78354, 'seventy-eight thousand three hundred fifty-four'), (6829, 68297, 'sixty-eight thousand two hundred ninety-seven'), (6830, 19363, 'nineteen thousand three hundred sixty-three'), (6831, 3034, 'three thousand thirty-four'), (6832, 1779, 'one thousand seven hundred seventy-nine'), (6833, 56414, 'fifty-six thousand four hundred fourteen'), (6834, 97655, 'ninety-seven thousand six hundred fifty-five'), (6835, 62338, 'sixty-two thousand three hundred thirty-eight'), (6836, 61279, 'sixty-one thousand two hundred seventy-nine'), (6837, 12672, 'twelve thousand six hundred seventy-two'), (6838, 43260, 'forty-three thousand two hundred sixty'), (6839, 41922, 'forty-one thousand nine hundred twenty-two'), (6840, 2017, 'two thousand seventeen'), (6841, 38979, 'thirty-eight thousand nine hundred seventy-nine'), (6842, 61662, 'sixty-one thousand six hundred sixty-two'), (6843, 87046, 'eighty-seven thousand forty-six'), (6844, 9004, 'nine thousand four'), (6845, 63812, 'sixty-three thousand eight hundred twelve'), (6846, 94374, 'ninety-four thousand three hundred seventy-four'), (6847, 14000, 'fourteen thousand'), (6848, 99440, 'ninety-nine thousand four hundred forty'), (6849, 19142, 'nineteen thousand one hundred forty-two'), (6850, 66431, 'sixty-six thousand four hundred thirty-one'), (6851, 31091, 'thirty-one thousand ninety-one'), (6852, 72977, 'seventy-two thousand nine hundred seventy-seven'), (6853, 6627, 'six thousand six hundred twenty-seven'), (6854, 3890, 'three thousand eight hundred ninety'), (6855, 79532, 'seventy-nine thousand five hundred thirty-two'), (6856, 82016, 'eighty-two thousand sixteen'), (6857, 3935, 'three thousand nine hundred thirty-five'), (6858, 18287, 'eighteen thousand two hundred eighty-seven'), (6859, 67524, 'sixty-seven thousand five hundred twenty-four'), (6860, 88049, 'eighty-eight thousand forty-nine'), (6861, 20482, 'twenty thousand four hundred eighty-two'), (6862, 6539, 'six thousand five hundred thirty-nine'), (6863, 32581, 'thirty-two thousand five hundred eighty-one'), (6864, 77558, 'seventy-seven thousand five hundred fifty-eight'), (6865, 15775, 'fifteen thousand seven hundred seventy-five'), (6866, 66441, 'sixty-six thousand four hundred forty-one'), (6867, 51390, 'fifty-one thousand three hundred ninety'), (6868, 31984, 'thirty-one thousand nine hundred eighty-four'), (6869, 3406, 'three thousand four hundred six'), (6870, 93957, 'ninety-three thousand nine hundred fifty-seven'), (6871, 78392, 'seventy-eight thousand three hundred ninety-two'), (6872, 23683, 'twenty-three thousand six hundred eighty-three'), (6873, 86656, 'eighty-six thousand six hundred fifty-six'), (6874, 26091, 'twenty-six thousand ninety-one'), (6875, 23091, 'twenty-three thousand ninety-one'), (6876, 43220, 'forty-three thousand two hundred twenty'), (6877, 42859, 'forty-two thousand eight hundred fifty-nine'), (6878, 63640, 'sixty-three thousand six hundred forty'), (6879, 19381, 'nineteen thousand three hundred eighty-one'), (6880, 17280, 'seventeen thousand two hundred eighty'), (6881, 5930, 'five thousand nine hundred thirty'), (6882, 56086, 'fifty-six thousand eighty-six'), (6883, 88653, 'eighty-eight thousand six hundred fifty-three'), (6884, 64320, 'sixty-four thousand three hundred twenty'), (6885, 96914, 'ninety-six thousand nine hundred fourteen'), (6886, 17347, 'seventeen thousand three hundred forty-seven'), (6887, 61599, 'sixty-one thousand five hundred ninety-nine'), (6888, 57329, 'fifty-seven thousand three hundred twenty-nine'), (6889, 85546, 'eighty-five thousand five hundred forty-six'), (6890, 75083, 'seventy-five thousand eighty-three'), (6891, 58080, 'fifty-eight thousand eighty'), (6892, 68641, 'sixty-eight thousand six hundred forty-one'), (6893, 17888, 'seventeen thousand eight hundred eighty-eight'), (6894, 38911, 'thirty-eight thousand nine hundred eleven'), (6895, 30958, 'thirty thousand nine hundred fifty-eight'), (6896, 96449, 'ninety-six thousand four hundred forty-nine'), (6897, 26963, 'twenty-six thousand nine hundred sixty-three'), (6898, 13180, 'thirteen thousand one hundred eighty'), (6899, 97822, 'ninety-seven thousand eight hundred twenty-two'), (6900, 46022, 'forty-six thousand twenty-two'), (6901, 73946, 'seventy-three thousand nine hundred forty-six'), (6902, 42740, 'forty-two thousand seven hundred forty'), (6903, 68499, 'sixty-eight thousand four hundred ninety-nine'), (6904, 29749, 'twenty-nine thousand seven hundred forty-nine'), (6905, 6891, 'six thousand eight hundred ninety-one'), (6906, 84251, 'eighty-four thousand two hundred fifty-one'), (6907, 29341, 'twenty-nine thousand three hundred forty-one'), (6908, 40269, 'forty thousand two hundred sixty-nine'), (6909, 16199, 'sixteen thousand one hundred ninety-nine'), (6910, 76146, 'seventy-six thousand one hundred forty-six'), (6911, 77087, 'seventy-seven thousand eighty-seven'), (6912, 3358, 'three thousand three hundred fifty-eight'), (6913, 46544, 'forty-six thousand five hundred forty-four'), (6914, 38597, 'thirty-eight thousand five hundred ninety-seven'), (6915, 72810, 'seventy-two thousand eight hundred ten'), (6916, 95688, 'ninety-five thousand six hundred eighty-eight'), (6917, 17000, 'seventeen thousand'), (6918, 778, 'seven hundred seventy-eight'), (6919, 73123, 'seventy-three thousand one hundred twenty-three'), (6920, 71200, 'seventy-one thousand two hundred'), (6921, 57124, 'fifty-seven thousand one hundred twenty-four'), (6922, 42774, 'forty-two thousand seven hundred seventy-four'), (6923, 66072, 'sixty-six thousand seventy-two'), (6924, 35498, 'thirty-five thousand four hundred ninety-eight'), (6925, 23749, 'twenty-three thousand seven hundred forty-nine'), (6926, 96540, 'ninety-six thousand five hundred forty'), (6927, 90601, 'ninety thousand six hundred one'), (6928, 14570, 'fourteen thousand five hundred seventy'), (6929, 92049, 'ninety-two thousand forty-nine'), (6930, 40567, 'forty thousand five hundred sixty-seven'), (6931, 66377, 'sixty-six thousand three hundred seventy-seven'), (6932, 29027, 'twenty-nine thousand twenty-seven'), (6933, 56397, 'fifty-six thousand three hundred ninety-seven'), (6934, 15267, 'fifteen thousand two hundred sixty-seven'), (6935, 28644, 'twenty-eight thousand six hundred forty-four'), (6936, 30506, 'thirty thousand five hundred six'), (6937, 48842, 'forty-eight thousand eight hundred forty-two'), (6938, 84447, 'eighty-four thousand four hundred forty-seven'), (6939, 4814, 'four thousand eight hundred fourteen'), (6940, 56864, 'fifty-six thousand eight hundred sixty-four'), (6941, 85799, 'eighty-five thousand seven hundred ninety-nine'), (6942, 13657, 'thirteen thousand six hundred fifty-seven'), (6943, 72959, 'seventy-two thousand nine hundred fifty-nine'), (6944, 52196, 'fifty-two thousand one hundred ninety-six'), (6945, 64209, 'sixty-four thousand two hundred nine'), (6946, 17592, 'seventeen thousand five hundred ninety-two'), (6947, 17535, 'seventeen thousand five hundred thirty-five'), (6948, 27317, 'twenty-seven thousand three hundred seventeen'), (6949, 58667, 'fifty-eight thousand six hundred sixty-seven'), (6950, 39783, 'thirty-nine thousand seven hundred eighty-three'), (6951, 37823, 'thirty-seven thousand eight hundred twenty-three'), (6952, 33797, 'thirty-three thousand seven hundred ninety-seven'), (6953, 85768, 'eighty-five thousand seven hundred sixty-eight'), (6954, 21336, 'twenty-one thousand three hundred thirty-six'), (6955, 36809, 'thirty-six thousand eight hundred nine'), (6956, 26883, 'twenty-six thousand eight hundred eighty-three'), (6957, 49084, 'forty-nine thousand eighty-four'), (6958, 2104, 'two thousand one hundred four'), (6959, 58650, 'fifty-eight thousand six hundred fifty'), (6960, 21218, 'twenty-one thousand two hundred eighteen'), (6961, 83841, 'eighty-three thousand eight hundred forty-one'), (6962, 46776, 'forty-six thousand seven hundred seventy-six'), (6963, 30017, 'thirty thousand seventeen'), (6964, 12552, 'twelve thousand five hundred fifty-two'), (6965, 27693, 'twenty-seven thousand six hundred ninety-three'), (6966, 66629, 'sixty-six thousand six hundred twenty-nine'), (6967, 54683, 'fifty-four thousand six hundred eighty-three'), (6968, 31658, 'thirty-one thousand six hundred fifty-eight'), (6969, 11550, 'eleven thousand five hundred fifty'), (6970, 63676, 'sixty-three thousand six hundred seventy-six'), (6971, 82573, 'eighty-two thousand five hundred seventy-three'), (6972, 83389, 'eighty-three thousand three hundred eighty-nine'), (6973, 28968, 'twenty-eight thousand nine hundred sixty-eight'), (6974, 5490, 'five thousand four hundred ninety'), (6975, 52254, 'fifty-two thousand two hundred fifty-four'), (6976, 12891, 'twelve thousand eight hundred ninety-one'), (6977, 62032, 'sixty-two thousand thirty-two'), (6978, 14329, 'fourteen thousand three hundred twenty-nine'), (6979, 58369, 'fifty-eight thousand three hundred sixty-nine'), (6980, 15772, 'fifteen thousand seven hundred seventy-two'), (6981, 56013, 'fifty-six thousand thirteen'), (6982, 73181, 'seventy-three thousand one hundred eighty-one'), (6983, 48183, 'forty-eight thousand one hundred eighty-three'), (6984, 76611, 'seventy-six thousand six hundred eleven'), (6985, 84938, 'eighty-four thousand nine hundred thirty-eight'), (6986, 35308, 'thirty-five thousand three hundred eight'), (6987, 56710, 'fifty-six thousand seven hundred ten'), (6988, 53066, 'fifty-three thousand sixty-six'), (6989, 74782, 'seventy-four thousand seven hundred eighty-two'), (6990, 43304, 'forty-three thousand three hundred four'), (6991, 2192, 'two thousand one hundred ninety-two'), (6992, 56252, 'fifty-six thousand two hundred fifty-two'), (6993, 23775, 'twenty-three thousand seven hundred seventy-five'), (6994, 1901, 'one thousand nine hundred one'), (6995, 24617, 'twenty-four thousand six hundred seventeen'), (6996, 78124, 'seventy-eight thousand one hundred twenty-four'), (6997, 40147, 'forty thousand one hundred forty-seven'), (6998, 41294, 'forty-one thousand two hundred ninety-four'), (6999, 12619, 'twelve thousand six hundred nineteen'), (7000, 99847, 'ninety-nine thousand eight hundred forty-seven'), (7001, 24323, 'twenty-four thousand three hundred twenty-three'), (7002, 90492, 'ninety thousand four hundred ninety-two'), (7003, 83106, 'eighty-three thousand one hundred six'), (7004, 36329, 'thirty-six thousand three hundred twenty-nine'), (7005, 80341, 'eighty thousand three hundred forty-one'), (7006, 19238, 'nineteen thousand two hundred thirty-eight'), (7007, 44740, 'forty-four thousand seven hundred forty'), (7008, 79234, 'seventy-nine thousand two hundred thirty-four'), (7009, 87291, 'eighty-seven thousand two hundred ninety-one'), (7010, 37049, 'thirty-seven thousand forty-nine'), (7011, 50922, 'fifty thousand nine hundred twenty-two'), (7012, 42654, 'forty-two thousand six hundred fifty-four'), (7013, 42608, 'forty-two thousand six hundred eight'), (7014, 94993, 'ninety-four thousand nine hundred ninety-three'), (7015, 69001, 'sixty-nine thousand one'), (7016, 97800, 'ninety-seven thousand eight hundred'), (7017, 23734, 'twenty-three thousand seven hundred thirty-four'), (7018, 76026, 'seventy-six thousand twenty-six'), (7019, 83205, 'eighty-three thousand two hundred five'), (7020, 98968, 'ninety-eight thousand nine hundred sixty-eight'), (7021, 95951, 'ninety-five thousand nine hundred fifty-one'), (7022, 84634, 'eighty-four thousand six hundred thirty-four'), (7023, 71311, 'seventy-one thousand three hundred eleven'), (7024, 3536, 'three thousand five hundred thirty-six'), (7025, 34569, 'thirty-four thousand five hundred sixty-nine'), (7026, 89148, 'eighty-nine thousand one hundred forty-eight'), (7027, 19223, 'nineteen thousand two hundred twenty-three'), (7028, 46452, 'forty-six thousand four hundred fifty-two'), (7029, 38054, 'thirty-eight thousand fifty-four'), (7030, 3824, 'three thousand eight hundred twenty-four'), (7031, 60051, 'sixty thousand fifty-one'), (7032, 71012, 'seventy-one thousand twelve'), (7033, 90260, 'ninety thousand two hundred sixty'), (7034, 85421, 'eighty-five thousand four hundred twenty-one'), (7035, 12239, 'twelve thousand two hundred thirty-nine'), (7036, 63714, 'sixty-three thousand seven hundred fourteen'), (7037, 11567, 'eleven thousand five hundred sixty-seven'), (7038, 21215, 'twenty-one thousand two hundred fifteen'), (7039, 18088, 'eighteen thousand eighty-eight'), (7040, 36051, 'thirty-six thousand fifty-one'), (7041, 85907, 'eighty-five thousand nine hundred seven'), (7042, 24245, 'twenty-four thousand two hundred forty-five'), (7043, 27277, 'twenty-seven thousand two hundred seventy-seven'), (7044, 33901, 'thirty-three thousand nine hundred one'), (7045, 93841, 'ninety-three thousand eight hundred forty-one'), (7046, 84152, 'eighty-four thousand one hundred fifty-two'), (7047, 47889, 'forty-seven thousand eight hundred eighty-nine'), (7048, 6031, 'six thousand thirty-one'), (7049, 95152, 'ninety-five thousand one hundred fifty-two'), (7050, 19764, 'nineteen thousand seven hundred sixty-four'), (7051, 58743, 'fifty-eight thousand seven hundred forty-three'), (7052, 45094, 'forty-five thousand ninety-four'), (7053, 47239, 'forty-seven thousand two hundred thirty-nine'), (7054, 55871, 'fifty-five thousand eight hundred seventy-one'), (7055, 55700, 'fifty-five thousand seven hundred'), (7056, 97138, 'ninety-seven thousand one hundred thirty-eight'), (7057, 68397, 'sixty-eight thousand three hundred ninety-seven'), (7058, 86286, 'eighty-six thousand two hundred eighty-six'), (7059, 60433, 'sixty thousand four hundred thirty-three'), (7060, 86295, 'eighty-six thousand two hundred ninety-five'), (7061, 38072, 'thirty-eight thousand seventy-two'), (7062, 74952, 'seventy-four thousand nine hundred fifty-two'), (7063, 32070, 'thirty-two thousand seventy'), (7064, 58471, 'fifty-eight thousand four hundred seventy-one'), (7065, 36852, 'thirty-six thousand eight hundred fifty-two'), (7066, 61165, 'sixty-one thousand one hundred sixty-five'), (7067, 22089, 'twenty-two thousand eighty-nine'), (7068, 35839, 'thirty-five thousand eight hundred thirty-nine'), (7069, 85417, 'eighty-five thousand four hundred seventeen'), (7070, 68230, 'sixty-eight thousand two hundred thirty'), (7071, 38104, 'thirty-eight thousand one hundred four'), (7072, 37538, 'thirty-seven thousand five hundred thirty-eight'), (7073, 33802, 'thirty-three thousand eight hundred two'), (7074, 69737, 'sixty-nine thousand seven hundred thirty-seven'), (7075, 5816, 'five thousand eight hundred sixteen'), (7076, 91862, 'ninety-one thousand eight hundred sixty-two'), (7077, 68416, 'sixty-eight thousand four hundred sixteen'), (7078, 13016, 'thirteen thousand sixteen'), (7079, 8165, 'eight thousand one hundred sixty-five'), (7080, 84485, 'eighty-four thousand four hundred eighty-five'), (7081, 53664, 'fifty-three thousand six hundred sixty-four'), (7082, 278, 'two hundred seventy-eight'), (7083, 54590, 'fifty-four thousand five hundred ninety'), (7084, 55644, 'fifty-five thousand six hundred forty-four'), (7085, 5222, 'five thousand two hundred twenty-two'), (7086, 89371, 'eighty-nine thousand three hundred seventy-one'), (7087, 14172, 'fourteen thousand one hundred seventy-two'), (7088, 8485, 'eight thousand four hundred eighty-five'), (7089, 66008, 'sixty-six thousand eight'), (7090, 74780, 'seventy-four thousand seven hundred eighty'), (7091, 67764, 'sixty-seven thousand seven hundred sixty-four'), (7092, 44389, 'forty-four thousand three hundred eighty-nine'), (7093, 79372, 'seventy-nine thousand three hundred seventy-two'), (7094, 75617, 'seventy-five thousand six hundred seventeen'), (7095, 36126, 'thirty-six thousand one hundred twenty-six'), (7096, 79591, 'seventy-nine thousand five hundred ninety-one'), (7097, 61635, 'sixty-one thousand six hundred thirty-five'), (7098, 45116, 'forty-five thousand one hundred sixteen'), (7099, 31220, 'thirty-one thousand two hundred twenty'), (7100, 50726, 'fifty thousand seven hundred twenty-six'), (7101, 4479, 'four thousand four hundred seventy-nine'), (7102, 93759, 'ninety-three thousand seven hundred fifty-nine'), (7103, 51972, 'fifty-one thousand nine hundred seventy-two'), (7104, 70378, 'seventy thousand three hundred seventy-eight'), (7105, 53346, 'fifty-three thousand three hundred forty-six'), (7106, 97684, 'ninety-seven thousand six hundred eighty-four'), (7107, 9978, 'nine thousand nine hundred seventy-eight'), (7108, 36707, 'thirty-six thousand seven hundred seven'), (7109, 64941, 'sixty-four thousand nine hundred forty-one'), (7110, 93739, 'ninety-three thousand seven hundred thirty-nine'), (7111, 94948, 'ninety-four thousand nine hundred forty-eight'), (7112, 41867, 'forty-one thousand eight hundred sixty-seven'), (7113, 28515, 'twenty-eight thousand five hundred fifteen'), (7114, 60341, 'sixty thousand three hundred forty-one'), (7115, 4047, 'four thousand forty-seven'), (7116, 59361, 'fifty-nine thousand three hundred sixty-one'), (7117, 11983, 'eleven thousand nine hundred eighty-three'), (7118, 1906, 'one thousand nine hundred six'), (7119, 14323, 'fourteen thousand three hundred twenty-three'), (7120, 92640, 'ninety-two thousand six hundred forty'), (7121, 11527, 'eleven thousand five hundred twenty-seven'), (7122, 88232, 'eighty-eight thousand two hundred thirty-two'), (7123, 16507, 'sixteen thousand five hundred seven'), (7124, 72272, 'seventy-two thousand two hundred seventy-two'), (7125, 7378, 'seven thousand three hundred seventy-eight'), (7126, 14997, 'fourteen thousand nine hundred ninety-seven'), (7127, 67667, 'sixty-seven thousand six hundred sixty-seven'), (7128, 97793, 'ninety-seven thousand seven hundred ninety-three'), (7129, 34287, 'thirty-four thousand two hundred eighty-seven'), (7130, 39397, 'thirty-nine thousand three hundred ninety-seven'), (7131, 83438, 'eighty-three thousand four hundred thirty-eight'), (7132, 7585, 'seven thousand five hundred eighty-five'), (7133, 42113, 'forty-two thousand one hundred thirteen'), (7134, 4189, 'four thousand one hundred eighty-nine'), (7135, 94919, 'ninety-four thousand nine hundred nineteen'), (7136, 77199, 'seventy-seven thousand one hundred ninety-nine'), (7137, 45667, 'forty-five thousand six hundred sixty-seven'), (7138, 42730, 'forty-two thousand seven hundred thirty'), (7139, 35776, 'thirty-five thousand seven hundred seventy-six'), (7140, 31408, 'thirty-one thousand four hundred eight'), (7141, 67406, 'sixty-seven thousand four hundred six'), (7142, 43811, 'forty-three thousand eight hundred eleven'), (7143, 66482, 'sixty-six thousand four hundred eighty-two'), (7144, 97833, 'ninety-seven thousand eight hundred thirty-three'), (7145, 95012, 'ninety-five thousand twelve'), (7146, 22034, 'twenty-two thousand thirty-four'), (7147, 16761, 'sixteen thousand seven hundred sixty-one'), (7148, 21732, 'twenty-one thousand seven hundred thirty-two'), (7149, 18523, 'eighteen thousand five hundred twenty-three'), (7150, 4223, 'four thousand two hundred twenty-three'), (7151, 9931, 'nine thousand nine hundred thirty-one'), (7152, 78366, 'seventy-eight thousand three hundred sixty-six'), (7153, 20581, 'twenty thousand five hundred eighty-one'), (7154, 357, 'three hundred fifty-seven'), (7155, 43136, 'forty-three thousand one hundred thirty-six'), (7156, 31700, 'thirty-one thousand seven hundred'), (7157, 93442, 'ninety-three thousand four hundred forty-two'), (7158, 48765, 'forty-eight thousand seven hundred sixty-five'), (7159, 86211, 'eighty-six thousand two hundred eleven'), (7160, 40331, 'forty thousand three hundred thirty-one'), (7161, 97315, 'ninety-seven thousand three hundred fifteen'), (7162, 66147, 'sixty-six thousand one hundred forty-seven'), (7163, 73241, 'seventy-three thousand two hundred forty-one'), (7164, 64669, 'sixty-four thousand six hundred sixty-nine'), (7165, 99813, 'ninety-nine thousand eight hundred thirteen'), (7166, 13616, 'thirteen thousand six hundred sixteen'), (7167, 25387, 'twenty-five thousand three hundred eighty-seven'), (7168, 16111, 'sixteen thousand one hundred eleven'), (7169, 66643, 'sixty-six thousand six hundred forty-three'), (7170, 24967, 'twenty-four thousand nine hundred sixty-seven'), (7171, 80090, 'eighty thousand ninety'), (7172, 88725, 'eighty-eight thousand seven hundred twenty-five'), (7173, 10863, 'ten thousand eight hundred sixty-three'), (7174, 17830, 'seventeen thousand eight hundred thirty'), (7175, 46076, 'forty-six thousand seventy-six'), (7176, 53475, 'fifty-three thousand four hundred seventy-five'), (7177, 31456, 'thirty-one thousand four hundred fifty-six'), (7178, 85279, 'eighty-five thousand two hundred seventy-nine'), (7179, 30140, 'thirty thousand one hundred forty'), (7180, 30633, 'thirty thousand six hundred thirty-three'), (7181, 80244, 'eighty thousand two hundred forty-four'), (7182, 40054, 'forty thousand fifty-four'), (7183, 87970, 'eighty-seven thousand nine hundred seventy'), (7184, 80555, 'eighty thousand five hundred fifty-five'), (7185, 58363, 'fifty-eight thousand three hundred sixty-three'), (7186, 10572, 'ten thousand five hundred seventy-two'), (7187, 913, 'nine hundred thirteen'), (7188, 75543, 'seventy-five thousand five hundred forty-three'), (7189, 20338, 'twenty thousand three hundred thirty-eight'), (7190, 60082, 'sixty thousand eighty-two'), (7191, 85893, 'eighty-five thousand eight hundred ninety-three'), (7192, 57415, 'fifty-seven thousand four hundred fifteen'), (7193, 29463, 'twenty-nine thousand four hundred sixty-three'), (7194, 57079, 'fifty-seven thousand seventy-nine'), (7195, 62246, 'sixty-two thousand two hundred forty-six'), (7196, 22708, 'twenty-two thousand seven hundred eight'), (7197, 73829, 'seventy-three thousand eight hundred twenty-nine'), (7198, 18328, 'eighteen thousand three hundred twenty-eight'), (7199, 31738, 'thirty-one thousand seven hundred thirty-eight'), (7200, 3161, 'three thousand one hundred sixty-one'), (7201, 74510, 'seventy-four thousand five hundred ten'), (7202, 83115, 'eighty-three thousand one hundred fifteen'), (7203, 4707, 'four thousand seven hundred seven'), (7204, 20924, 'twenty thousand nine hundred twenty-four'), (7205, 96143, 'ninety-six thousand one hundred forty-three'), (7206, 26195, 'twenty-six thousand one hundred ninety-five'), (7207, 59345, 'fifty-nine thousand three hundred forty-five'), (7208, 86450, 'eighty-six thousand four hundred fifty'), (7209, 71425, 'seventy-one thousand four hundred twenty-five'), (7210, 6990, 'six thousand nine hundred ninety'), (7211, 24491, 'twenty-four thousand four hundred ninety-one'), (7212, 98181, 'ninety-eight thousand one hundred eighty-one'), (7213, 47808, 'forty-seven thousand eight hundred eight'), (7214, 25363, 'twenty-five thousand three hundred sixty-three'), (7215, 26427, 'twenty-six thousand four hundred twenty-seven'), (7216, 98541, 'ninety-eight thousand five hundred forty-one'), (7217, 58438, 'fifty-eight thousand four hundred thirty-eight'), (7218, 81857, 'eighty-one thousand eight hundred fifty-seven'), (7219, 50613, 'fifty thousand six hundred thirteen'), (7220, 69379, 'sixty-nine thousand three hundred seventy-nine'), (7221, 89679, 'eighty-nine thousand six hundred seventy-nine'), (7222, 5764, 'five thousand seven hundred sixty-four'), (7223, 86354, 'eighty-six thousand three hundred fifty-four'), (7224, 5115, 'five thousand one hundred fifteen'), (7225, 62679, 'sixty-two thousand six hundred seventy-nine'), (7226, 11391, 'eleven thousand three hundred ninety-one'), (7227, 97281, 'ninety-seven thousand two hundred eighty-one'), (7228, 33539, 'thirty-three thousand five hundred thirty-nine'), (7229, 31375, 'thirty-one thousand three hundred seventy-five'), (7230, 77006, 'seventy-seven thousand six'), (7231, 54360, 'fifty-four thousand three hundred sixty'), (7232, 96812, 'ninety-six thousand eight hundred twelve'), (7233, 18611, 'eighteen thousand six hundred eleven'), (7234, 12079, 'twelve thousand seventy-nine'), (7235, 34411, 'thirty-four thousand four hundred eleven'), (7236, 64281, 'sixty-four thousand two hundred eighty-one'), (7237, 17064, 'seventeen thousand sixty-four'), (7238, 95552, 'ninety-five thousand five hundred fifty-two'), (7239, 75158, 'seventy-five thousand one hundred fifty-eight'), (7240, 26079, 'twenty-six thousand seventy-nine'), (7241, 87235, 'eighty-seven thousand two hundred thirty-five'), (7242, 36560, 'thirty-six thousand five hundred sixty'), (7243, 50239, 'fifty thousand two hundred thirty-nine'), (7244, 59601, 'fifty-nine thousand six hundred one'), (7245, 45706, 'forty-five thousand seven hundred six'), (7246, 27308, 'twenty-seven thousand three hundred eight'), (7247, 26573, 'twenty-six thousand five hundred seventy-three'), (7248, 93524, 'ninety-three thousand five hundred twenty-four'), (7249, 47438, 'forty-seven thousand four hundred thirty-eight'), (7250, 403, 'four hundred three'), (7251, 51586, 'fifty-one thousand five hundred eighty-six'), (7252, 40570, 'forty thousand five hundred seventy'), (7253, 26997, 'twenty-six thousand nine hundred ninety-seven'), (7254, 32939, 'thirty-two thousand nine hundred thirty-nine'), (7255, 21478, 'twenty-one thousand four hundred seventy-eight'), (7256, 82551, 'eighty-two thousand five hundred fifty-one'), (7257, 79146, 'seventy-nine thousand one hundred forty-six'), (7258, 78890, 'seventy-eight thousand eight hundred ninety'), (7259, 40685, 'forty thousand six hundred eighty-five'), (7260, 93267, 'ninety-three thousand two hundred sixty-seven'), (7261, 60743, 'sixty thousand seven hundred forty-three'), (7262, 40535, 'forty thousand five hundred thirty-five'), (7263, 66248, 'sixty-six thousand two hundred forty-eight'), (7264, 1632, 'one thousand six hundred thirty-two'), (7265, 91926, 'ninety-one thousand nine hundred twenty-six'), (7266, 90327, 'ninety thousand three hundred twenty-seven'), (7267, 24395, 'twenty-four thousand three hundred ninety-five'), (7268, 98064, 'ninety-eight thousand sixty-four'), (7269, 84829, 'eighty-four thousand eight hundred twenty-nine'), (7270, 68154, 'sixty-eight thousand one hundred fifty-four'), (7271, 43866, 'forty-three thousand eight hundred sixty-six'), (7272, 32063, 'thirty-two thousand sixty-three'), (7273, 86571, 'eighty-six thousand five hundred seventy-one'), (7274, 75604, 'seventy-five thousand six hundred four'), (7275, 26373, 'twenty-six thousand three hundred seventy-three'), (7276, 27365, 'twenty-seven thousand three hundred sixty-five'), (7277, 45389, 'forty-five thousand three hundred eighty-nine'), (7278, 32778, 'thirty-two thousand seven hundred seventy-eight'), (7279, 79641, 'seventy-nine thousand six hundred forty-one'), (7280, 68632, 'sixty-eight thousand six hundred thirty-two'), (7281, 91680, 'ninety-one thousand six hundred eighty'), (7282, 9698, 'nine thousand six hundred ninety-eight'), (7283, 10169, 'ten thousand one hundred sixty-nine'), (7284, 95137, 'ninety-five thousand one hundred thirty-seven'), (7285, 50545, 'fifty thousand five hundred forty-five'), (7286, 28316, 'twenty-eight thousand three hundred sixteen'), (7287, 75939, 'seventy-five thousand nine hundred thirty-nine'), (7288, 99566, 'ninety-nine thousand five hundred sixty-six'), (7289, 58914, 'fifty-eight thousand nine hundred fourteen'), (7290, 46525, 'forty-six thousand five hundred twenty-five'), (7291, 17180, 'seventeen thousand one hundred eighty'), (7292, 43503, 'forty-three thousand five hundred three'), (7293, 42734, 'forty-two thousand seven hundred thirty-four'), (7294, 52603, 'fifty-two thousand six hundred three'), (7295, 37051, 'thirty-seven thousand fifty-one'), (7296, 88547, 'eighty-eight thousand five hundred forty-seven'), (7297, 50661, 'fifty thousand six hundred sixty-one'), (7298, 63879, 'sixty-three thousand eight hundred seventy-nine'), (7299, 43116, 'forty-three thousand one hundred sixteen'), (7300, 41459, 'forty-one thousand four hundred fifty-nine'), (7301, 52667, 'fifty-two thousand six hundred sixty-seven'), (7302, 94465, 'ninety-four thousand four hundred sixty-five'), (7303, 1466, 'one thousand four hundred sixty-six'), (7304, 7554, 'seven thousand five hundred fifty-four'), (7305, 63773, 'sixty-three thousand seven hundred seventy-three'), (7306, 81490, 'eighty-one thousand four hundred ninety'), (7307, 40160, 'forty thousand one hundred sixty'), (7308, 50116, 'fifty thousand one hundred sixteen'), (7309, 23794, 'twenty-three thousand seven hundred ninety-four'), (7310, 16229, 'sixteen thousand two hundred twenty-nine'), (7311, 94774, 'ninety-four thousand seven hundred seventy-four'), (7312, 81281, 'eighty-one thousand two hundred eighty-one'), (7313, 92361, 'ninety-two thousand three hundred sixty-one'), (7314, 8777, 'eight thousand seven hundred seventy-seven'), (7315, 82318, 'eighty-two thousand three hundred eighteen'), (7316, 84670, 'eighty-four thousand six hundred seventy'), (7317, 97483, 'ninety-seven thousand four hundred eighty-three'), (7318, 63160, 'sixty-three thousand one hundred sixty'), (7319, 57553, 'fifty-seven thousand five hundred fifty-three'), (7320, 64537, 'sixty-four thousand five hundred thirty-seven'), (7321, 82027, 'eighty-two thousand twenty-seven'), (7322, 93718, 'ninety-three thousand seven hundred eighteen'), (7323, 87896, 'eighty-seven thousand eight hundred ninety-six'), (7324, 44585, 'forty-four thousand five hundred eighty-five'), (7325, 40057, 'forty thousand fifty-seven'), (7326, 26386, 'twenty-six thousand three hundred eighty-six'), (7327, 1766, 'one thousand seven hundred sixty-six'), (7328, 34015, 'thirty-four thousand fifteen'), (7329, 50261, 'fifty thousand two hundred sixty-one'), (7330, 78277, 'seventy-eight thousand two hundred seventy-seven'), (7331, 46721, 'forty-six thousand seven hundred twenty-one'), (7332, 25314, 'twenty-five thousand three hundred fourteen'), (7333, 16614, 'sixteen thousand six hundred fourteen'), (7334, 48752, 'forty-eight thousand seven hundred fifty-two'), (7335, 59627, 'fifty-nine thousand six hundred twenty-seven'), (7336, 99314, 'ninety-nine thousand three hundred fourteen'), (7337, 19999, 'nineteen thousand nine hundred ninety-nine'), (7338, 75660, 'seventy-five thousand six hundred sixty'), (7339, 99677, 'ninety-nine thousand six hundred seventy-seven'), (7340, 73009, 'seventy-three thousand nine'), (7341, 22318, 'twenty-two thousand three hundred eighteen'), (7342, 60655, 'sixty thousand six hundred fifty-five'), (7343, 46171, 'forty-six thousand one hundred seventy-one'), (7344, 36168, 'thirty-six thousand one hundred sixty-eight'), (7345, 80572, 'eighty thousand five hundred seventy-two'), (7346, 93370, 'ninety-three thousand three hundred seventy'), (7347, 12796, 'twelve thousand seven hundred ninety-six'), (7348, 48320, 'forty-eight thousand three hundred twenty'), (7349, 91647, 'ninety-one thousand six hundred forty-seven'), (7350, 41767, 'forty-one thousand seven hundred sixty-seven'), (7351, 53956, 'fifty-three thousand nine hundred fifty-six'), (7352, 39825, 'thirty-nine thousand eight hundred twenty-five'), (7353, 31096, 'thirty-one thousand ninety-six'), (7354, 61425, 'sixty-one thousand four hundred twenty-five'), (7355, 22037, 'twenty-two thousand thirty-seven'), (7356, 92717, 'ninety-two thousand seven hundred seventeen'), (7357, 26391, 'twenty-six thousand three hundred ninety-one'), (7358, 52610, 'fifty-two thousand six hundred ten'), (7359, 37210, 'thirty-seven thousand two hundred ten'), (7360, 91766, 'ninety-one thousand seven hundred sixty-six'), (7361, 71153, 'seventy-one thousand one hundred fifty-three'), (7362, 99371, 'ninety-nine thousand three hundred seventy-one'), (7363, 54607, 'fifty-four thousand six hundred seven'), (7364, 31431, 'thirty-one thousand four hundred thirty-one'), (7365, 24555, 'twenty-four thousand five hundred fifty-five'), (7366, 68445, 'sixty-eight thousand four hundred forty-five'), (7367, 53641, 'fifty-three thousand six hundred forty-one'), (7368, 64496, 'sixty-four thousand four hundred ninety-six'), (7369, 22525, 'twenty-two thousand five hundred twenty-five'), (7370, 96979, 'ninety-six thousand nine hundred seventy-nine'), (7371, 26026, 'twenty-six thousand twenty-six'), (7372, 66299, 'sixty-six thousand two hundred ninety-nine'), (7373, 63489, 'sixty-three thousand four hundred eighty-nine'), (7374, 49429, 'forty-nine thousand four hundred twenty-nine'), (7375, 78692, 'seventy-eight thousand six hundred ninety-two'), (7376, 837, 'eight hundred thirty-seven'), (7377, 70519, 'seventy thousand five hundred nineteen'), (7378, 65336, 'sixty-five thousand three hundred thirty-six'), (7379, 32764, 'thirty-two thousand seven hundred sixty-four'), (7380, 38253, 'thirty-eight thousand two hundred fifty-three'), (7381, 11074, 'eleven thousand seventy-four'), (7382, 85697, 'eighty-five thousand six hundred ninety-seven'), (7383, 39179, 'thirty-nine thousand one hundred seventy-nine'), (7384, 65031, 'sixty-five thousand thirty-one'), (7385, 67408, 'sixty-seven thousand four hundred eight'), (7386, 92027, 'ninety-two thousand twenty-seven'), (7387, 67498, 'sixty-seven thousand four hundred ninety-eight'), (7388, 53423, 'fifty-three thousand four hundred twenty-three'), (7389, 74263, 'seventy-four thousand two hundred sixty-three'), (7390, 91085, 'ninety-one thousand eighty-five'), (7391, 95463, 'ninety-five thousand four hundred sixty-three'), (7392, 77277, 'seventy-seven thousand two hundred seventy-seven'), (7393, 38802, 'thirty-eight thousand eight hundred two'), (7394, 53304, 'fifty-three thousand three hundred four'), (7395, 70192, 'seventy thousand one hundred ninety-two'), (7396, 94906, 'ninety-four thousand nine hundred six'), (7397, 54039, 'fifty-four thousand thirty-nine'), (7398, 20635, 'twenty thousand six hundred thirty-five'), (7399, 79504, 'seventy-nine thousand five hundred four'), (7400, 9461, 'nine thousand four hundred sixty-one'), (7401, 38963, 'thirty-eight thousand nine hundred sixty-three'), (7402, 8529, 'eight thousand five hundred twenty-nine'), (7403, 81890, 'eighty-one thousand eight hundred ninety'), (7404, 40177, 'forty thousand one hundred seventy-seven'), (7405, 64703, 'sixty-four thousand seven hundred three'), (7406, 79332, 'seventy-nine thousand three hundred thirty-two'), (7407, 19102, 'nineteen thousand one hundred two'), (7408, 69980, 'sixty-nine thousand nine hundred eighty'), (7409, 98709, 'ninety-eight thousand seven hundred nine'), (7410, 47286, 'forty-seven thousand two hundred eighty-six'), (7411, 94188, 'ninety-four thousand one hundred eighty-eight'), (7412, 9888, 'nine thousand eight hundred eighty-eight'), (7413, 74431, 'seventy-four thousand four hundred thirty-one'), (7414, 85319, 'eighty-five thousand three hundred nineteen'), (7415, 43359, 'forty-three thousand three hundred fifty-nine'), (7416, 59822, 'fifty-nine thousand eight hundred twenty-two'), (7417, 54754, 'fifty-four thousand seven hundred fifty-four'), (7418, 19939, 'nineteen thousand nine hundred thirty-nine'), (7419, 27173, 'twenty-seven thousand one hundred seventy-three'), (7420, 39417, 'thirty-nine thousand four hundred seventeen'), (7421, 5050, 'five thousand fifty'), (7422, 82733, 'eighty-two thousand seven hundred thirty-three'), (7423, 71513, 'seventy-one thousand five hundred thirteen'), (7424, 61625, 'sixty-one thousand six hundred twenty-five'), (7425, 38970, 'thirty-eight thousand nine hundred seventy'), (7426, 57012, 'fifty-seven thousand twelve'), (7427, 86190, 'eighty-six thousand one hundred ninety'), (7428, 49754, 'forty-nine thousand seven hundred fifty-four'), (7429, 3570, 'three thousand five hundred seventy'), (7430, 96076, 'ninety-six thousand seventy-six'), (7431, 4745, 'four thousand seven hundred forty-five'), (7432, 92184, 'ninety-two thousand one hundred eighty-four'), (7433, 72315, 'seventy-two thousand three hundred fifteen'), (7434, 85172, 'eighty-five thousand one hundred seventy-two'), (7435, 35389, 'thirty-five thousand three hundred eighty-nine'), (7436, 67991, 'sixty-seven thousand nine hundred ninety-one'), (7437, 35787, 'thirty-five thousand seven hundred eighty-seven'), (7438, 17895, 'seventeen thousand eight hundred ninety-five'), (7439, 97226, 'ninety-seven thousand two hundred twenty-six'), (7440, 66758, 'sixty-six thousand seven hundred fifty-eight'), (7441, 51392, 'fifty-one thousand three hundred ninety-two'), (7442, 9569, 'nine thousand five hundred sixty-nine'), (7443, 11318, 'eleven thousand three hundred eighteen'), (7444, 65677, 'sixty-five thousand six hundred seventy-seven'), (7445, 61757, 'sixty-one thousand seven hundred fifty-seven'), (7446, 66882, 'sixty-six thousand eight hundred eighty-two'), (7447, 70581, 'seventy thousand five hundred eighty-one'), (7448, 34156, 'thirty-four thousand one hundred fifty-six'), (7449, 60205, 'sixty thousand two hundred five'), (7450, 96642, 'ninety-six thousand six hundred forty-two'), (7451, 72517, 'seventy-two thousand five hundred seventeen'), (7452, 61711, 'sixty-one thousand seven hundred eleven'), (7453, 64009, 'sixty-four thousand nine'), (7454, 4585, 'four thousand five hundred eighty-five'), (7455, 2992, 'two thousand nine hundred ninety-two'), (7456, 69552, 'sixty-nine thousand five hundred fifty-two'), (7457, 48447, 'forty-eight thousand four hundred forty-seven'), (7458, 40860, 'forty thousand eight hundred sixty'), (7459, 48556, 'forty-eight thousand five hundred fifty-six'), (7460, 54763, 'fifty-four thousand seven hundred sixty-three'), (7461, 80128, 'eighty thousand one hundred twenty-eight'), (7462, 12294, 'twelve thousand two hundred ninety-four'), (7463, 99064, 'ninety-nine thousand sixty-four'), (7464, 95603, 'ninety-five thousand six hundred three'), (7465, 22560, 'twenty-two thousand five hundred sixty'), (7466, 4045, 'four thousand forty-five'), (7467, 13916, 'thirteen thousand nine hundred sixteen'), (7468, 71415, 'seventy-one thousand four hundred fifteen'), (7469, 96384, 'ninety-six thousand three hundred eighty-four'), (7470, 47370, 'forty-seven thousand three hundred seventy'), (7471, 32635, 'thirty-two thousand six hundred thirty-five'), (7472, 41647, 'forty-one thousand six hundred forty-seven'), (7473, 77570, 'seventy-seven thousand five hundred seventy'), (7474, 16982, 'sixteen thousand nine hundred eighty-two'), (7475, 57260, 'fifty-seven thousand two hundred sixty'), (7476, 81874, 'eighty-one thousand eight hundred seventy-four'), (7477, 12504, 'twelve thousand five hundred four'), (7478, 6017, 'six thousand seventeen'), (7479, 92489, 'ninety-two thousand four hundred eighty-nine'), (7480, 24565, 'twenty-four thousand five hundred sixty-five'), (7481, 66542, 'sixty-six thousand five hundred forty-two'), (7482, 55826, 'fifty-five thousand eight hundred twenty-six'), (7483, 58424, 'fifty-eight thousand four hundred twenty-four'), (7484, 35503, 'thirty-five thousand five hundred three'), (7485, 37619, 'thirty-seven thousand six hundred nineteen'), (7486, 35052, 'thirty-five thousand fifty-two'), (7487, 20516, 'twenty thousand five hundred sixteen'), (7488, 28207, 'twenty-eight thousand two hundred seven'), (7489, 37939, 'thirty-seven thousand nine hundred thirty-nine'), (7490, 64114, 'sixty-four thousand one hundred fourteen'), (7491, 57495, 'fifty-seven thousand four hundred ninety-five'), (7492, 1723, 'one thousand seven hundred twenty-three'), (7493, 30893, 'thirty thousand eight hundred ninety-three'), (7494, 84887, 'eighty-four thousand eight hundred eighty-seven'), (7495, 80399, 'eighty thousand three hundred ninety-nine'), (7496, 78016, 'seventy-eight thousand sixteen'), (7497, 98840, 'ninety-eight thousand eight hundred forty'), (7498, 46953, 'forty-six thousand nine hundred fifty-three'), (7499, 44776, 'forty-four thousand seven hundred seventy-six'), (7500, 9547, 'nine thousand five hundred forty-seven'), (7501, 90833, 'ninety thousand eight hundred thirty-three'), (7502, 53107, 'fifty-three thousand one hundred seven'), (7503, 52712, 'fifty-two thousand seven hundred twelve'), (7504, 68252, 'sixty-eight thousand two hundred fifty-two'), (7505, 74509, 'seventy-four thousand five hundred nine'), (7506, 65288, 'sixty-five thousand two hundred eighty-eight'), (7507, 50712, 'fifty thousand seven hundred twelve'), (7508, 97665, 'ninety-seven thousand six hundred sixty-five'), (7509, 79046, 'seventy-nine thousand forty-six'), (7510, 41546, 'forty-one thousand five hundred forty-six'), (7511, 12239, 'twelve thousand two hundred thirty-nine'), (7512, 27949, 'twenty-seven thousand nine hundred forty-nine'), (7513, 7411, 'seven thousand four hundred eleven'), (7514, 34311, 'thirty-four thousand three hundred eleven'), (7515, 74659, 'seventy-four thousand six hundred fifty-nine'), (7516, 66488, 'sixty-six thousand four hundred eighty-eight'), (7517, 13787, 'thirteen thousand seven hundred eighty-seven'), (7518, 46028, 'forty-six thousand twenty-eight'), (7519, 11820, 'eleven thousand eight hundred twenty'), (7520, 45427, 'forty-five thousand four hundred twenty-seven'), (7521, 52355, 'fifty-two thousand three hundred fifty-five'), (7522, 28745, 'twenty-eight thousand seven hundred forty-five'), (7523, 9026, 'nine thousand twenty-six'), (7524, 94884, 'ninety-four thousand eight hundred eighty-four'), (7525, 76702, 'seventy-six thousand seven hundred two'), (7526, 39677, 'thirty-nine thousand six hundred seventy-seven'), (7527, 72087, 'seventy-two thousand eighty-seven'), (7528, 97734, 'ninety-seven thousand seven hundred thirty-four'), (7529, 32518, 'thirty-two thousand five hundred eighteen'), (7530, 50306, 'fifty thousand three hundred six'), (7531, 37149, 'thirty-seven thousand one hundred forty-nine'), (7532, 97313, 'ninety-seven thousand three hundred thirteen'), (7533, 1129, 'one thousand one hundred twenty-nine'), (7534, 12070, 'twelve thousand seventy'), (7535, 30942, 'thirty thousand nine hundred forty-two'), (7536, 77989, 'seventy-seven thousand nine hundred eighty-nine'), (7537, 54855, 'fifty-four thousand eight hundred fifty-five'), (7538, 35213, 'thirty-five thousand two hundred thirteen'), (7539, 39137, 'thirty-nine thousand one hundred thirty-seven'), (7540, 14845, 'fourteen thousand eight hundred forty-five'), (7541, 97824, 'ninety-seven thousand eight hundred twenty-four'), (7542, 34872, 'thirty-four thousand eight hundred seventy-two'), (7543, 35272, 'thirty-five thousand two hundred seventy-two'), (7544, 78747, 'seventy-eight thousand seven hundred forty-seven'), (7545, 12609, 'twelve thousand six hundred nine'), (7546, 22610, 'twenty-two thousand six hundred ten'), (7547, 74120, 'seventy-four thousand one hundred twenty'), (7548, 11307, 'eleven thousand three hundred seven'), (7549, 78732, 'seventy-eight thousand seven hundred thirty-two'), (7550, 38744, 'thirty-eight thousand seven hundred forty-four'), (7551, 86177, 'eighty-six thousand one hundred seventy-seven'), (7552, 76698, 'seventy-six thousand six hundred ninety-eight'), (7553, 98127, 'ninety-eight thousand one hundred twenty-seven'), (7554, 45165, 'forty-five thousand one hundred sixty-five'), (7555, 20447, 'twenty thousand four hundred forty-seven'), (7556, 50029, 'fifty thousand twenty-nine'), (7557, 45474, 'forty-five thousand four hundred seventy-four'), (7558, 58763, 'fifty-eight thousand seven hundred sixty-three'), (7559, 1595, 'one thousand five hundred ninety-five'), (7560, 85801, 'eighty-five thousand eight hundred one'), (7561, 71686, 'seventy-one thousand six hundred eighty-six'), (7562, 48690, 'forty-eight thousand six hundred ninety'), (7563, 69831, 'sixty-nine thousand eight hundred thirty-one'), (7564, 41830, 'forty-one thousand eight hundred thirty'), (7565, 39401, 'thirty-nine thousand four hundred one'), (7566, 36409, 'thirty-six thousand four hundred nine'), (7567, 93546, 'ninety-three thousand five hundred forty-six'), (7568, 28623, 'twenty-eight thousand six hundred twenty-three'), (7569, 76447, 'seventy-six thousand four hundred forty-seven'), (7570, 74155, 'seventy-four thousand one hundred fifty-five'), (7571, 27676, 'twenty-seven thousand six hundred seventy-six'), (7572, 93103, 'ninety-three thousand one hundred three'), (7573, 74447, 'seventy-four thousand four hundred forty-seven'), (7574, 15621, 'fifteen thousand six hundred twenty-one'), (7575, 2525, 'two thousand five hundred twenty-five'), (7576, 33109, 'thirty-three thousand one hundred nine'), (7577, 64120, 'sixty-four thousand one hundred twenty'), (7578, 52964, 'fifty-two thousand nine hundred sixty-four'), (7579, 76616, 'seventy-six thousand six hundred sixteen'), (7580, 48564, 'forty-eight thousand five hundred sixty-four'), (7581, 16025, 'sixteen thousand twenty-five'), (7582, 80423, 'eighty thousand four hundred twenty-three'), (7583, 70279, 'seventy thousand two hundred seventy-nine'), (7584, 5922, 'five thousand nine hundred twenty-two'), (7585, 98448, 'ninety-eight thousand four hundred forty-eight'), (7586, 87113, 'eighty-seven thousand one hundred thirteen'), (7587, 94305, 'ninety-four thousand three hundred five'), (7588, 16578, 'sixteen thousand five hundred seventy-eight'), (7589, 82326, 'eighty-two thousand three hundred twenty-six'), (7590, 88899, 'eighty-eight thousand eight hundred ninety-nine'), (7591, 44787, 'forty-four thousand seven hundred eighty-seven'), (7592, 33204, 'thirty-three thousand two hundred four'), (7593, 57376, 'fifty-seven thousand three hundred seventy-six'), (7594, 13450, 'thirteen thousand four hundred fifty'), (7595, 12044, 'twelve thousand forty-four'), (7596, 44098, 'forty-four thousand ninety-eight'), (7597, 52412, 'fifty-two thousand four hundred twelve'), (7598, 10663, 'ten thousand six hundred sixty-three'), (7599, 99892, 'ninety-nine thousand eight hundred ninety-two'), (7600, 63839, 'sixty-three thousand eight hundred thirty-nine'), (7601, 49410, 'forty-nine thousand four hundred ten'), (7602, 61592, 'sixty-one thousand five hundred ninety-two'), (7603, 24187, 'twenty-four thousand one hundred eighty-seven'), (7604, 697, 'six hundred ninety-seven'), (7605, 73808, 'seventy-three thousand eight hundred eight'), (7606, 51709, 'fifty-one thousand seven hundred nine'), (7607, 28293, 'twenty-eight thousand two hundred ninety-three'), (7608, 10204, 'ten thousand two hundred four'), (7609, 67203, 'sixty-seven thousand two hundred three'), (7610, 12565, 'twelve thousand five hundred sixty-five'), (7611, 25215, 'twenty-five thousand two hundred fifteen'), (7612, 34623, 'thirty-four thousand six hundred twenty-three'), (7613, 69754, 'sixty-nine thousand seven hundred fifty-four'), (7614, 11969, 'eleven thousand nine hundred sixty-nine'), (7615, 86414, 'eighty-six thousand four hundred fourteen'), (7616, 77625, 'seventy-seven thousand six hundred twenty-five'), (7617, 73643, 'seventy-three thousand six hundred forty-three'), (7618, 82224, 'eighty-two thousand two hundred twenty-four'), (7619, 86857, 'eighty-six thousand eight hundred fifty-seven'), (7620, 23712, 'twenty-three thousand seven hundred twelve'), (7621, 9453, 'nine thousand four hundred fifty-three'), (7622, 14528, 'fourteen thousand five hundred twenty-eight'), (7623, 44197, 'forty-four thousand one hundred ninety-seven'), (7624, 80800, 'eighty thousand eight hundred'), (7625, 36617, 'thirty-six thousand six hundred seventeen'), (7626, 43490, 'forty-three thousand four hundred ninety'), (7627, 40014, 'forty thousand fourteen'), (7628, 27058, 'twenty-seven thousand fifty-eight'), (7629, 31330, 'thirty-one thousand three hundred thirty'), (7630, 18183, 'eighteen thousand one hundred eighty-three'), (7631, 26692, 'twenty-six thousand six hundred ninety-two'), (7632, 2326, 'two thousand three hundred twenty-six'), (7633, 8740, 'eight thousand seven hundred forty'), (7634, 71872, 'seventy-one thousand eight hundred seventy-two'), (7635, 94980, 'ninety-four thousand nine hundred eighty'), (7636, 57421, 'fifty-seven thousand four hundred twenty-one'), (7637, 50262, 'fifty thousand two hundred sixty-two'), (7638, 92558, 'ninety-two thousand five hundred fifty-eight'), (7639, 28433, 'twenty-eight thousand four hundred thirty-three'), (7640, 38487, 'thirty-eight thousand four hundred eighty-seven'), (7641, 57935, 'fifty-seven thousand nine hundred thirty-five'), (7642, 80686, 'eighty thousand six hundred eighty-six'), (7643, 82288, 'eighty-two thousand two hundred eighty-eight'), (7644, 45145, 'forty-five thousand one hundred forty-five'), (7645, 42731, 'forty-two thousand seven hundred thirty-one'), (7646, 92859, 'ninety-two thousand eight hundred fifty-nine'), (7647, 25249, 'twenty-five thousand two hundred forty-nine'), (7648, 27889, 'twenty-seven thousand eight hundred eighty-nine'), (7649, 32498, 'thirty-two thousand four hundred ninety-eight'), (7650, 67190, 'sixty-seven thousand one hundred ninety'), (7651, 16483, 'sixteen thousand four hundred eighty-three'), (7652, 92921, 'ninety-two thousand nine hundred twenty-one'), (7653, 81931, 'eighty-one thousand nine hundred thirty-one'), (7654, 62118, 'sixty-two thousand one hundred eighteen'), (7655, 65606, 'sixty-five thousand six hundred six'), (7656, 80140, 'eighty thousand one hundred forty'), (7657, 17924, 'seventeen thousand nine hundred twenty-four'), (7658, 73424, 'seventy-three thousand four hundred twenty-four'), (7659, 44329, 'forty-four thousand three hundred twenty-nine'), (7660, 17251, 'seventeen thousand two hundred fifty-one'), (7661, 76550, 'seventy-six thousand five hundred fifty'), (7662, 96373, 'ninety-six thousand three hundred seventy-three'), (7663, 74089, 'seventy-four thousand eighty-nine'), (7664, 59197, 'fifty-nine thousand one hundred ninety-seven'), (7665, 33611, 'thirty-three thousand six hundred eleven'), (7666, 95643, 'ninety-five thousand six hundred forty-three'), (7667, 75288, 'seventy-five thousand two hundred eighty-eight'), (7668, 80946, 'eighty thousand nine hundred forty-six'), (7669, 65429, 'sixty-five thousand four hundred twenty-nine'), (7670, 93209, 'ninety-three thousand two hundred nine'), (7671, 57171, 'fifty-seven thousand one hundred seventy-one'), (7672, 7760, 'seven thousand seven hundred sixty'), (7673, 91460, 'ninety-one thousand four hundred sixty'), (7674, 63700, 'sixty-three thousand seven hundred'), (7675, 82372, 'eighty-two thousand three hundred seventy-two'), (7676, 50389, 'fifty thousand three hundred eighty-nine'), (7677, 67003, 'sixty-seven thousand three'), (7678, 9189, 'nine thousand one hundred eighty-nine'), (7679, 35140, 'thirty-five thousand one hundred forty'), (7680, 23469, 'twenty-three thousand four hundred sixty-nine'), (7681, 75837, 'seventy-five thousand eight hundred thirty-seven'), (7682, 50823, 'fifty thousand eight hundred twenty-three'), (7683, 39602, 'thirty-nine thousand six hundred two'), (7684, 2325, 'two thousand three hundred twenty-five'), (7685, 20892, 'twenty thousand eight hundred ninety-two'), (7686, 37539, 'thirty-seven thousand five hundred thirty-nine'), (7687, 48973, 'forty-eight thousand nine hundred seventy-three'), (7688, 30137, 'thirty thousand one hundred thirty-seven'), (7689, 64638, 'sixty-four thousand six hundred thirty-eight'), (7690, 29011, 'twenty-nine thousand eleven'), (7691, 28390, 'twenty-eight thousand three hundred ninety'), (7692, 46941, 'forty-six thousand nine hundred forty-one'), (7693, 41927, 'forty-one thousand nine hundred twenty-seven'), (7694, 87484, 'eighty-seven thousand four hundred eighty-four'), (7695, 41679, 'forty-one thousand six hundred seventy-nine'), (7696, 26773, 'twenty-six thousand seven hundred seventy-three'), (7697, 10393, 'ten thousand three hundred ninety-three'), (7698, 14423, 'fourteen thousand four hundred twenty-three'), (7699, 15814, 'fifteen thousand eight hundred fourteen'), (7700, 89719, 'eighty-nine thousand seven hundred nineteen'), (7701, 28084, 'twenty-eight thousand eighty-four'), (7702, 22485, 'twenty-two thousand four hundred eighty-five'), (7703, 41293, 'forty-one thousand two hundred ninety-three'), (7704, 7387, 'seven thousand three hundred eighty-seven'), (7705, 52637, 'fifty-two thousand six hundred thirty-seven'), (7706, 88522, 'eighty-eight thousand five hundred twenty-two'), (7707, 18970, 'eighteen thousand nine hundred seventy'), (7708, 43657, 'forty-three thousand six hundred fifty-seven'), (7709, 97783, 'ninety-seven thousand seven hundred eighty-three'), (7710, 54116, 'fifty-four thousand one hundred sixteen'), (7711, 82187, 'eighty-two thousand one hundred eighty-seven'), (7712, 73570, 'seventy-three thousand five hundred seventy'), (7713, 44730, 'forty-four thousand seven hundred thirty'), (7714, 34501, 'thirty-four thousand five hundred one'), (7715, 42000, 'forty-two thousand'), (7716, 24661, 'twenty-four thousand six hundred sixty-one'), (7717, 77717, 'seventy-seven thousand seven hundred seventeen'), (7718, 40548, 'forty thousand five hundred forty-eight'), (7719, 50510, 'fifty thousand five hundred ten'), (7720, 3961, 'three thousand nine hundred sixty-one'), (7721, 39790, 'thirty-nine thousand seven hundred ninety'), (7722, 38183, 'thirty-eight thousand one hundred eighty-three'), (7723, 66361, 'sixty-six thousand three hundred sixty-one'), (7724, 45077, 'forty-five thousand seventy-seven'), (7725, 28732, 'twenty-eight thousand seven hundred thirty-two'), (7726, 38696, 'thirty-eight thousand six hundred ninety-six'), (7727, 30611, 'thirty thousand six hundred eleven'), (7728, 76970, 'seventy-six thousand nine hundred seventy'), (7729, 71637, 'seventy-one thousand six hundred thirty-seven'), (7730, 53458, 'fifty-three thousand four hundred fifty-eight'), (7731, 59707, 'fifty-nine thousand seven hundred seven'), (7732, 22138, 'twenty-two thousand one hundred thirty-eight'), (7733, 98817, 'ninety-eight thousand eight hundred seventeen'), (7734, 65492, 'sixty-five thousand four hundred ninety-two'), (7735, 90389, 'ninety thousand three hundred eighty-nine'), (7736, 32177, 'thirty-two thousand one hundred seventy-seven'), (7737, 45441, 'forty-five thousand four hundred forty-one'), (7738, 37475, 'thirty-seven thousand four hundred seventy-five'), (7739, 86254, 'eighty-six thousand two hundred fifty-four'), (7740, 67310, 'sixty-seven thousand three hundred ten'), (7741, 44406, 'forty-four thousand four hundred six'), (7742, 92365, 'ninety-two thousand three hundred sixty-five'), (7743, 3669, 'three thousand six hundred sixty-nine'), (7744, 72385, 'seventy-two thousand three hundred eighty-five'), (7745, 28656, 'twenty-eight thousand six hundred fifty-six'), (7746, 34393, 'thirty-four thousand three hundred ninety-three'), (7747, 23183, 'twenty-three thousand one hundred eighty-three'), (7748, 94824, 'ninety-four thousand eight hundred twenty-four'), (7749, 80816, 'eighty thousand eight hundred sixteen'), (7750, 43350, 'forty-three thousand three hundred fifty'), (7751, 74944, 'seventy-four thousand nine hundred forty-four'), (7752, 57786, 'fifty-seven thousand seven hundred eighty-six'), (7753, 76814, 'seventy-six thousand eight hundred fourteen'), (7754, 48104, 'forty-eight thousand one hundred four'), (7755, 65442, 'sixty-five thousand four hundred forty-two'), (7756, 45982, 'forty-five thousand nine hundred eighty-two'), (7757, 72415, 'seventy-two thousand four hundred fifteen'), (7758, 49098, 'forty-nine thousand ninety-eight'), (7759, 59919, 'fifty-nine thousand nine hundred nineteen'), (7760, 56507, 'fifty-six thousand five hundred seven'), (7761, 85707, 'eighty-five thousand seven hundred seven'), (7762, 54960, 'fifty-four thousand nine hundred sixty'), (7763, 97175, 'ninety-seven thousand one hundred seventy-five'), (7764, 37918, 'thirty-seven thousand nine hundred eighteen'), (7765, 73860, 'seventy-three thousand eight hundred sixty'), (7766, 31892, 'thirty-one thousand eight hundred ninety-two'), (7767, 41566, 'forty-one thousand five hundred sixty-six'), (7768, 82413, 'eighty-two thousand four hundred thirteen'), (7769, 59479, 'fifty-nine thousand four hundred seventy-nine'), (7770, 64370, 'sixty-four thousand three hundred seventy'), (7771, 4669, 'four thousand six hundred sixty-nine'), (7772, 14769, 'fourteen thousand seven hundred sixty-nine'), (7773, 53780, 'fifty-three thousand seven hundred eighty'), (7774, 62838, 'sixty-two thousand eight hundred thirty-eight'), (7775, 34292, 'thirty-four thousand two hundred ninety-two'), (7776, 3466, 'three thousand four hundred sixty-six'), (7777, 76865, 'seventy-six thousand eight hundred sixty-five'), (7778, 17160, 'seventeen thousand one hundred sixty'), (7779, 401, 'four hundred one'), (7780, 17164, 'seventeen thousand one hundred sixty-four'), (7781, 75688, 'seventy-five thousand six hundred eighty-eight'), (7782, 11361, 'eleven thousand three hundred sixty-one'), (7783, 37011, 'thirty-seven thousand eleven'), (7784, 1004, 'one thousand four'), (7785, 59597, 'fifty-nine thousand five hundred ninety-seven'), (7786, 95316, 'ninety-five thousand three hundred sixteen'), (7787, 98556, 'ninety-eight thousand five hundred fifty-six'), (7788, 21101, 'twenty-one thousand one hundred one'), (7789, 61503, 'sixty-one thousand five hundred three'), (7790, 18958, 'eighteen thousand nine hundred fifty-eight'), (7791, 16053, 'sixteen thousand fifty-three'), (7792, 34345, 'thirty-four thousand three hundred forty-five'), (7793, 71286, 'seventy-one thousand two hundred eighty-six'), (7794, 55079, 'fifty-five thousand seventy-nine'), (7795, 84709, 'eighty-four thousand seven hundred nine'), (7796, 6401, 'six thousand four hundred one'), (7797, 49916, 'forty-nine thousand nine hundred sixteen'), (7798, 16557, 'sixteen thousand five hundred fifty-seven'), (7799, 53884, 'fifty-three thousand eight hundred eighty-four'), (7800, 49497, 'forty-nine thousand four hundred ninety-seven'), (7801, 35399, 'thirty-five thousand three hundred ninety-nine'), (7802, 32014, 'thirty-two thousand fourteen'), (7803, 80150, 'eighty thousand one hundred fifty'), (7804, 76209, 'seventy-six thousand two hundred nine'), (7805, 27119, 'twenty-seven thousand one hundred nineteen'), (7806, 1436, 'one thousand four hundred thirty-six'), (7807, 28443, 'twenty-eight thousand four hundred forty-three'), (7808, 5128, 'five thousand one hundred twenty-eight'), (7809, 42019, 'forty-two thousand nineteen'), (7810, 67110, 'sixty-seven thousand one hundred ten'), (7811, 72176, 'seventy-two thousand one hundred seventy-six'), (7812, 85266, 'eighty-five thousand two hundred sixty-six'), (7813, 57660, 'fifty-seven thousand six hundred sixty'), (7814, 12268, 'twelve thousand two hundred sixty-eight'), (7815, 49656, 'forty-nine thousand six hundred fifty-six'), (7816, 16759, 'sixteen thousand seven hundred fifty-nine'), (7817, 58515, 'fifty-eight thousand five hundred fifteen'), (7818, 71716, 'seventy-one thousand seven hundred sixteen'), (7819, 3380, 'three thousand three hundred eighty'), (7820, 41427, 'forty-one thousand four hundred twenty-seven'), (7821, 45370, 'forty-five thousand three hundred seventy'), (7822, 71901, 'seventy-one thousand nine hundred one'), (7823, 65301, 'sixty-five thousand three hundred one'), (7824, 2670, 'two thousand six hundred seventy'), (7825, 19172, 'nineteen thousand one hundred seventy-two'), (7826, 68339, 'sixty-eight thousand three hundred thirty-nine'), (7827, 16225, 'sixteen thousand two hundred twenty-five'), (7828, 18858, 'eighteen thousand eight hundred fifty-eight'), (7829, 88999, 'eighty-eight thousand nine hundred ninety-nine'), (7830, 51327, 'fifty-one thousand three hundred twenty-seven'), (7831, 48742, 'forty-eight thousand seven hundred forty-two'), (7832, 23314, 'twenty-three thousand three hundred fourteen'), (7833, 91632, 'ninety-one thousand six hundred thirty-two'), (7834, 64090, 'sixty-four thousand ninety'), (7835, 35586, 'thirty-five thousand five hundred eighty-six'), (7836, 68515, 'sixty-eight thousand five hundred fifteen'), (7837, 29135, 'twenty-nine thousand one hundred thirty-five'), (7838, 82777, 'eighty-two thousand seven hundred seventy-seven'), (7839, 11929, 'eleven thousand nine hundred twenty-nine'), (7840, 90970, 'ninety thousand nine hundred seventy'), (7841, 28168, 'twenty-eight thousand one hundred sixty-eight'), (7842, 33405, 'thirty-three thousand four hundred five'), (7843, 39836, 'thirty-nine thousand eight hundred thirty-six'), (7844, 95084, 'ninety-five thousand eighty-four'), (7845, 69434, 'sixty-nine thousand four hundred thirty-four'), (7846, 9721, 'nine thousand seven hundred twenty-one'), (7847, 95295, 'ninety-five thousand two hundred ninety-five'), (7848, 67347, 'sixty-seven thousand three hundred forty-seven'), (7849, 98004, 'ninety-eight thousand four'), (7850, 68255, 'sixty-eight thousand two hundred fifty-five'), (7851, 27363, 'twenty-seven thousand three hundred sixty-three'), (7852, 57905, 'fifty-seven thousand nine hundred five'), (7853, 24252, 'twenty-four thousand two hundred fifty-two'), (7854, 67704, 'sixty-seven thousand seven hundred four'), (7855, 21725, 'twenty-one thousand seven hundred twenty-five'), (7856, 91845, 'ninety-one thousand eight hundred forty-five'), (7857, 1314, 'one thousand three hundred fourteen'), (7858, 9917, 'nine thousand nine hundred seventeen'), (7859, 75048, 'seventy-five thousand forty-eight'), (7860, 85623, 'eighty-five thousand six hundred twenty-three'), (7861, 71987, 'seventy-one thousand nine hundred eighty-seven'), (7862, 24285, 'twenty-four thousand two hundred eighty-five'), (7863, 58454, 'fifty-eight thousand four hundred fifty-four'), (7864, 42786, 'forty-two thousand seven hundred eighty-six'), (7865, 79234, 'seventy-nine thousand two hundred thirty-four'), (7866, 99516, 'ninety-nine thousand five hundred sixteen'), (7867, 64444, 'sixty-four thousand four hundred forty-four'), (7868, 7352, 'seven thousand three hundred fifty-two'), (7869, 63602, 'sixty-three thousand six hundred two'), (7870, 9958, 'nine thousand nine hundred fifty-eight'), (7871, 71753, 'seventy-one thousand seven hundred fifty-three'), (7872, 86691, 'eighty-six thousand six hundred ninety-one'), (7873, 47792, 'forty-seven thousand seven hundred ninety-two'), (7874, 33791, 'thirty-three thousand seven hundred ninety-one'), (7875, 51444, 'fifty-one thousand four hundred forty-four'), (7876, 11292, 'eleven thousand two hundred ninety-two'), (7877, 78248, 'seventy-eight thousand two hundred forty-eight'), (7878, 75482, 'seventy-five thousand four hundred eighty-two'), (7879, 20041, 'twenty thousand forty-one'), (7880, 98709, 'ninety-eight thousand seven hundred nine'), (7881, 83684, 'eighty-three thousand six hundred eighty-four'), (7882, 25884, 'twenty-five thousand eight hundred eighty-four'), (7883, 4485, 'four thousand four hundred eighty-five'), (7884, 58970, 'fifty-eight thousand nine hundred seventy'), (7885, 56064, 'fifty-six thousand sixty-four'), (7886, 37825, 'thirty-seven thousand eight hundred twenty-five'), (7887, 60151, 'sixty thousand one hundred fifty-one'), (7888, 24460, 'twenty-four thousand four hundred sixty'), (7889, 91714, 'ninety-one thousand seven hundred fourteen'), (7890, 8689, 'eight thousand six hundred eighty-nine'), (7891, 86106, 'eighty-six thousand one hundred six'), (7892, 67108, 'sixty-seven thousand one hundred eight'), (7893, 2998, 'two thousand nine hundred ninety-eight'), (7894, 19490, 'nineteen thousand four hundred ninety'), (7895, 94871, 'ninety-four thousand eight hundred seventy-one'), (7896, 71871, 'seventy-one thousand eight hundred seventy-one'), (7897, 59040, 'fifty-nine thousand forty'), (7898, 30046, 'thirty thousand forty-six'), (7899, 33383, 'thirty-three thousand three hundred eighty-three'), (7900, 90123, 'ninety thousand one hundred twenty-three'), (7901, 59580, 'fifty-nine thousand five hundred eighty'), (7902, 37492, 'thirty-seven thousand four hundred ninety-two'), (7903, 46958, 'forty-six thousand nine hundred fifty-eight'), (7904, 36796, 'thirty-six thousand seven hundred ninety-six'), (7905, 52956, 'fifty-two thousand nine hundred fifty-six'), (7906, 50908, 'fifty thousand nine hundred eight'), (7907, 91976, 'ninety-one thousand nine hundred seventy-six'), (7908, 22398, 'twenty-two thousand three hundred ninety-eight'), (7909, 24275, 'twenty-four thousand two hundred seventy-five'), (7910, 74154, 'seventy-four thousand one hundred fifty-four'), (7911, 34601, 'thirty-four thousand six hundred one'), (7912, 66135, 'sixty-six thousand one hundred thirty-five'), (7913, 16419, 'sixteen thousand four hundred nineteen'), (7914, 78589, 'seventy-eight thousand five hundred eighty-nine'), (7915, 15470, 'fifteen thousand four hundred seventy'), (7916, 95304, 'ninety-five thousand three hundred four'), (7917, 86871, 'eighty-six thousand eight hundred seventy-one'), (7918, 12575, 'twelve thousand five hundred seventy-five'), (7919, 43291, 'forty-three thousand two hundred ninety-one'), (7920, 15152, 'fifteen thousand one hundred fifty-two'), (7921, 56256, 'fifty-six thousand two hundred fifty-six'), (7922, 57666, 'fifty-seven thousand six hundred sixty-six'), (7923, 44178, 'forty-four thousand one hundred seventy-eight'), (7924, 4593, 'four thousand five hundred ninety-three'), (7925, 19782, 'nineteen thousand seven hundred eighty-two'), (7926, 40497, 'forty thousand four hundred ninety-seven'), (7927, 98209, 'ninety-eight thousand two hundred nine'), (7928, 69063, 'sixty-nine thousand sixty-three'), (7929, 59555, 'fifty-nine thousand five hundred fifty-five'), (7930, 30160, 'thirty thousand one hundred sixty'), (7931, 50693, 'fifty thousand six hundred ninety-three'), (7932, 51358, 'fifty-one thousand three hundred fifty-eight'), (7933, 79522, 'seventy-nine thousand five hundred twenty-two'), (7934, 99189, 'ninety-nine thousand one hundred eighty-nine'), (7935, 58707, 'fifty-eight thousand seven hundred seven'), (7936, 50317, 'fifty thousand three hundred seventeen'), (7937, 78319, 'seventy-eight thousand three hundred nineteen'), (7938, 94596, 'ninety-four thousand five hundred ninety-six'), (7939, 77718, 'seventy-seven thousand seven hundred eighteen'), (7940, 92647, 'ninety-two thousand six hundred forty-seven'), (7941, 53345, 'fifty-three thousand three hundred forty-five'), (7942, 69238, 'sixty-nine thousand two hundred thirty-eight'), (7943, 37157, 'thirty-seven thousand one hundred fifty-seven'), (7944, 23715, 'twenty-three thousand seven hundred fifteen'), (7945, 38810, 'thirty-eight thousand eight hundred ten'), (7946, 8941, 'eight thousand nine hundred forty-one'), (7947, 46752, 'forty-six thousand seven hundred fifty-two'), (7948, 25448, 'twenty-five thousand four hundred forty-eight'), (7949, 22886, 'twenty-two thousand eight hundred eighty-six'), (7950, 57989, 'fifty-seven thousand nine hundred eighty-nine'), (7951, 92414, 'ninety-two thousand four hundred fourteen'), (7952, 12194, 'twelve thousand one hundred ninety-four'), (7953, 97932, 'ninety-seven thousand nine hundred thirty-two'), (7954, 61142, 'sixty-one thousand one hundred forty-two'), (7955, 84938, 'eighty-four thousand nine hundred thirty-eight'), (7956, 15406, 'fifteen thousand four hundred six'), (7957, 71546, 'seventy-one thousand five hundred forty-six'), (7958, 41813, 'forty-one thousand eight hundred thirteen'), (7959, 21609, 'twenty-one thousand six hundred nine'), (7960, 19274, 'nineteen thousand two hundred seventy-four'), (7961, 21582, 'twenty-one thousand five hundred eighty-two'), (7962, 22003, 'twenty-two thousand three'), (7963, 49892, 'forty-nine thousand eight hundred ninety-two'), (7964, 57352, 'fifty-seven thousand three hundred fifty-two'), (7965, 43051, 'forty-three thousand fifty-one'), (7966, 91397, 'ninety-one thousand three hundred ninety-seven'), (7967, 85229, 'eighty-five thousand two hundred twenty-nine'), (7968, 39150, 'thirty-nine thousand one hundred fifty'), (7969, 35499, 'thirty-five thousand four hundred ninety-nine'), (7970, 72590, 'seventy-two thousand five hundred ninety'), (7971, 20282, 'twenty thousand two hundred eighty-two'), (7972, 27358, 'twenty-seven thousand three hundred fifty-eight'), (7973, 27479, 'twenty-seven thousand four hundred seventy-nine'), (7974, 65659, 'sixty-five thousand six hundred fifty-nine'), (7975, 18603, 'eighteen thousand six hundred three'), (7976, 33109, 'thirty-three thousand one hundred nine'), (7977, 18538, 'eighteen thousand five hundred thirty-eight'), (7978, 5783, 'five thousand seven hundred eighty-three'), (7979, 69921, 'sixty-nine thousand nine hundred twenty-one'), (7980, 33659, 'thirty-three thousand six hundred fifty-nine'), (7981, 24916, 'twenty-four thousand nine hundred sixteen'), (7982, 56172, 'fifty-six thousand one hundred seventy-two'), (7983, 2643, 'two thousand six hundred forty-three'), (7984, 40158, 'forty thousand one hundred fifty-eight'), (7985, 85074, 'eighty-five thousand seventy-four'), (7986, 70835, 'seventy thousand eight hundred thirty-five'), (7987, 99934, 'ninety-nine thousand nine hundred thirty-four'), (7988, 57245, 'fifty-seven thousand two hundred forty-five'), (7989, 18632, 'eighteen thousand six hundred thirty-two'), (7990, 39069, 'thirty-nine thousand sixty-nine'), (7991, 1110, 'one thousand one hundred ten'), (7992, 2711, 'two thousand seven hundred eleven'), (7993, 67841, 'sixty-seven thousand eight hundred forty-one'), (7994, 60824, 'sixty thousand eight hundred twenty-four'), (7995, 85780, 'eighty-five thousand seven hundred eighty'), (7996, 60914, 'sixty thousand nine hundred fourteen'), (7997, 52986, 'fifty-two thousand nine hundred eighty-six'), (7998, 33458, 'thirty-three thousand four hundred fifty-eight'), (7999, 2844, 'two thousand eight hundred forty-four'), (8000, 25070, 'twenty-five thousand seventy'), (8001, 8928, 'eight thousand nine hundred twenty-eight'), (8002, 66324, 'sixty-six thousand three hundred twenty-four'), (8003, 53873, 'fifty-three thousand eight hundred seventy-three'), (8004, 42018, 'forty-two thousand eighteen'), (8005, 3208, 'three thousand two hundred eight'), (8006, 43547, 'forty-three thousand five hundred forty-seven'), (8007, 22134, 'twenty-two thousand one hundred thirty-four'), (8008, 77906, 'seventy-seven thousand nine hundred six'), (8009, 61053, 'sixty-one thousand fifty-three'), (8010, 78344, 'seventy-eight thousand three hundred forty-four'), (8011, 70308, 'seventy thousand three hundred eight'), (8012, 16823, 'sixteen thousand eight hundred twenty-three'), (8013, 27022, 'twenty-seven thousand twenty-two'), (8014, 64371, 'sixty-four thousand three hundred seventy-one'), (8015, 38814, 'thirty-eight thousand eight hundred fourteen'), (8016, 85065, 'eighty-five thousand sixty-five'), (8017, 34790, 'thirty-four thousand seven hundred ninety'), (8018, 37346, 'thirty-seven thousand three hundred forty-six'), (8019, 30352, 'thirty thousand three hundred fifty-two'), (8020, 32487, 'thirty-two thousand four hundred eighty-seven'), (8021, 75987, 'seventy-five thousand nine hundred eighty-seven'), (8022, 11705, 'eleven thousand seven hundred five'), (8023, 12606, 'twelve thousand six hundred six'), (8024, 74122, 'seventy-four thousand one hundred twenty-two'), (8025, 34554, 'thirty-four thousand five hundred fifty-four'), (8026, 66, 'sixty-six'), (8027, 63000, 'sixty-three thousand'), (8028, 59204, 'fifty-nine thousand two hundred four'), (8029, 46175, 'forty-six thousand one hundred seventy-five'), (8030, 57222, 'fifty-seven thousand two hundred twenty-two'), (8031, 65923, 'sixty-five thousand nine hundred twenty-three'), (8032, 45749, 'forty-five thousand seven hundred forty-nine'), (8033, 90379, 'ninety thousand three hundred seventy-nine'), (8034, 50801, 'fifty thousand eight hundred one'), (8035, 50274, 'fifty thousand two hundred seventy-four'), (8036, 31845, 'thirty-one thousand eight hundred forty-five'), (8037, 60255, 'sixty thousand two hundred fifty-five'), (8038, 46856, 'forty-six thousand eight hundred fifty-six'), (8039, 78744, 'seventy-eight thousand seven hundred forty-four'), (8040, 26629, 'twenty-six thousand six hundred twenty-nine'), (8041, 2948, 'two thousand nine hundred forty-eight'), (8042, 49812, 'forty-nine thousand eight hundred twelve'), (8043, 24675, 'twenty-four thousand six hundred seventy-five'), (8044, 82955, 'eighty-two thousand nine hundred fifty-five'), (8045, 13014, 'thirteen thousand fourteen'), (8046, 72677, 'seventy-two thousand six hundred seventy-seven'), (8047, 7789, 'seven thousand seven hundred eighty-nine'), (8048, 745, 'seven hundred forty-five'), (8049, 23420, 'twenty-three thousand four hundred twenty'), (8050, 19677, 'nineteen thousand six hundred seventy-seven'), (8051, 33494, 'thirty-three thousand four hundred ninety-four'), (8052, 58613, 'fifty-eight thousand six hundred thirteen'), (8053, 16831, 'sixteen thousand eight hundred thirty-one'), (8054, 33938, 'thirty-three thousand nine hundred thirty-eight'), (8055, 44808, 'forty-four thousand eight hundred eight'), (8056, 83042, 'eighty-three thousand forty-two'), (8057, 69593, 'sixty-nine thousand five hundred ninety-three'), (8058, 43322, 'forty-three thousand three hundred twenty-two'), (8059, 14947, 'fourteen thousand nine hundred forty-seven'), (8060, 73891, 'seventy-three thousand eight hundred ninety-one'), (8061, 5146, 'five thousand one hundred forty-six'), (8062, 97232, 'ninety-seven thousand two hundred thirty-two'), (8063, 71076, 'seventy-one thousand seventy-six'), (8064, 48429, 'forty-eight thousand four hundred twenty-nine'), (8065, 50647, 'fifty thousand six hundred forty-seven'), (8066, 42078, 'forty-two thousand seventy-eight'), (8067, 98266, 'ninety-eight thousand two hundred sixty-six'), (8068, 90976, 'ninety thousand nine hundred seventy-six'), (8069, 3942, 'three thousand nine hundred forty-two'), (8070, 14231, 'fourteen thousand two hundred thirty-one'), (8071, 43755, 'forty-three thousand seven hundred fifty-five'), (8072, 19136, 'nineteen thousand one hundred thirty-six'), (8073, 87900, 'eighty-seven thousand nine hundred'), (8074, 12572, 'twelve thousand five hundred seventy-two'), (8075, 65299, 'sixty-five thousand two hundred ninety-nine'), (8076, 86149, 'eighty-six thousand one hundred forty-nine'), (8077, 70547, 'seventy thousand five hundred forty-seven'), (8078, 70255, 'seventy thousand two hundred fifty-five'), (8079, 53491, 'fifty-three thousand four hundred ninety-one'), (8080, 84856, 'eighty-four thousand eight hundred fifty-six'), (8081, 64583, 'sixty-four thousand five hundred eighty-three'), (8082, 15853, 'fifteen thousand eight hundred fifty-three'), (8083, 68244, 'sixty-eight thousand two hundred forty-four'), (8084, 94505, 'ninety-four thousand five hundred five'), (8085, 63942, 'sixty-three thousand nine hundred forty-two'), (8086, 12813, 'twelve thousand eight hundred thirteen'), (8087, 74644, 'seventy-four thousand six hundred forty-four'), (8088, 5559, 'five thousand five hundred fifty-nine'), (8089, 75874, 'seventy-five thousand eight hundred seventy-four'), (8090, 73084, 'seventy-three thousand eighty-four'), (8091, 94530, 'ninety-four thousand five hundred thirty'), (8092, 73051, 'seventy-three thousand fifty-one'), (8093, 67429, 'sixty-seven thousand four hundred twenty-nine'), (8094, 90987, 'ninety thousand nine hundred eighty-seven'), (8095, 69402, 'sixty-nine thousand four hundred two'), (8096, 46649, 'forty-six thousand six hundred forty-nine'), (8097, 83657, 'eighty-three thousand six hundred fifty-seven'), (8098, 51060, 'fifty-one thousand sixty'), (8099, 5454, 'five thousand four hundred fifty-four'), (8100, 80481, 'eighty thousand four hundred eighty-one'), (8101, 72941, 'seventy-two thousand nine hundred forty-one'), (8102, 59662, 'fifty-nine thousand six hundred sixty-two'), (8103, 94896, 'ninety-four thousand eight hundred ninety-six'), (8104, 43533, 'forty-three thousand five hundred thirty-three'), (8105, 44784, 'forty-four thousand seven hundred eighty-four'), (8106, 34969, 'thirty-four thousand nine hundred sixty-nine'), (8107, 85870, 'eighty-five thousand eight hundred seventy'), (8108, 39439, 'thirty-nine thousand four hundred thirty-nine'), (8109, 69082, 'sixty-nine thousand eighty-two'), (8110, 87282, 'eighty-seven thousand two hundred eighty-two'), (8111, 92034, 'ninety-two thousand thirty-four'), (8112, 51510, 'fifty-one thousand five hundred ten'), (8113, 88207, 'eighty-eight thousand two hundred seven'), (8114, 43004, 'forty-three thousand four'), (8115, 97505, 'ninety-seven thousand five hundred five'), (8116, 95511, 'ninety-five thousand five hundred eleven'), (8117, 56740, 'fifty-six thousand seven hundred forty'), (8118, 55445, 'fifty-five thousand four hundred forty-five'), (8119, 54452, 'fifty-four thousand four hundred fifty-two'), (8120, 12929, 'twelve thousand nine hundred twenty-nine'), (8121, 14668, 'fourteen thousand six hundred sixty-eight'), (8122, 98628, 'ninety-eight thousand six hundred twenty-eight'), (8123, 51968, 'fifty-one thousand nine hundred sixty-eight'), (8124, 77764, 'seventy-seven thousand seven hundred sixty-four'), (8125, 20181, 'twenty thousand one hundred eighty-one'), (8126, 69051, 'sixty-nine thousand fifty-one'), (8127, 70075, 'seventy thousand seventy-five'), (8128, 31563, 'thirty-one thousand five hundred sixty-three'), (8129, 7790, 'seven thousand seven hundred ninety'), (8130, 1957, 'one thousand nine hundred fifty-seven'), (8131, 84808, 'eighty-four thousand eight hundred eight'), (8132, 4292, 'four thousand two hundred ninety-two'), (8133, 44569, 'forty-four thousand five hundred sixty-nine'), (8134, 47193, 'forty-seven thousand one hundred ninety-three'), (8135, 36028, 'thirty-six thousand twenty-eight'), (8136, 15304, 'fifteen thousand three hundred four'), (8137, 67755, 'sixty-seven thousand seven hundred fifty-five'), (8138, 89332, 'eighty-nine thousand three hundred thirty-two'), (8139, 64504, 'sixty-four thousand five hundred four'), (8140, 7286, 'seven thousand two hundred eighty-six'), (8141, 32677, 'thirty-two thousand six hundred seventy-seven'), (8142, 41147, 'forty-one thousand one hundred forty-seven'), (8143, 39377, 'thirty-nine thousand three hundred seventy-seven'), (8144, 7483, 'seven thousand four hundred eighty-three'), (8145, 96098, 'ninety-six thousand ninety-eight'), (8146, 83280, 'eighty-three thousand two hundred eighty'), (8147, 54576, 'fifty-four thousand five hundred seventy-six'), (8148, 29133, 'twenty-nine thousand one hundred thirty-three'), (8149, 99857, 'ninety-nine thousand eight hundred fifty-seven'), (8150, 43188, 'forty-three thousand one hundred eighty-eight'), (8151, 85086, 'eighty-five thousand eighty-six'), (8152, 68935, 'sixty-eight thousand nine hundred thirty-five'), (8153, 53435, 'fifty-three thousand four hundred thirty-five'), (8154, 79809, 'seventy-nine thousand eight hundred nine'), (8155, 6183, 'six thousand one hundred eighty-three'), (8156, 6566, 'six thousand five hundred sixty-six'), (8157, 54440, 'fifty-four thousand four hundred forty'), (8158, 23358, 'twenty-three thousand three hundred fifty-eight'), (8159, 58084, 'fifty-eight thousand eighty-four'), (8160, 84325, 'eighty-four thousand three hundred twenty-five'), (8161, 99143, 'ninety-nine thousand one hundred forty-three'), (8162, 80258, 'eighty thousand two hundred fifty-eight'), (8163, 66455, 'sixty-six thousand four hundred fifty-five'), (8164, 92738, 'ninety-two thousand seven hundred thirty-eight'), (8165, 87998, 'eighty-seven thousand nine hundred ninety-eight'), (8166, 53623, 'fifty-three thousand six hundred twenty-three'), (8167, 96117, 'ninety-six thousand one hundred seventeen'), (8168, 37290, 'thirty-seven thousand two hundred ninety'), (8169, 24322, 'twenty-four thousand three hundred twenty-two'), (8170, 73911, 'seventy-three thousand nine hundred eleven'), (8171, 12578, 'twelve thousand five hundred seventy-eight'), (8172, 21959, 'twenty-one thousand nine hundred fifty-nine'), (8173, 25342, 'twenty-five thousand three hundred forty-two'), (8174, 21320, 'twenty-one thousand three hundred twenty'), (8175, 71598, 'seventy-one thousand five hundred ninety-eight'), (8176, 70198, 'seventy thousand one hundred ninety-eight'), (8177, 14674, 'fourteen thousand six hundred seventy-four'), (8178, 6437, 'six thousand four hundred thirty-seven'), (8179, 2993, 'two thousand nine hundred ninety-three'), (8180, 85920, 'eighty-five thousand nine hundred twenty'), (8181, 3411, 'three thousand four hundred eleven'), (8182, 95554, 'ninety-five thousand five hundred fifty-four'), (8183, 5261, 'five thousand two hundred sixty-one'), (8184, 78776, 'seventy-eight thousand seven hundred seventy-six'), (8185, 85782, 'eighty-five thousand seven hundred eighty-two'), (8186, 44491, 'forty-four thousand four hundred ninety-one'), (8187, 21749, 'twenty-one thousand seven hundred forty-nine'), (8188, 91535, 'ninety-one thousand five hundred thirty-five'), (8189, 32517, 'thirty-two thousand five hundred seventeen'), (8190, 91762, 'ninety-one thousand seven hundred sixty-two'), (8191, 3283, 'three thousand two hundred eighty-three'), (8192, 68033, 'sixty-eight thousand thirty-three'), (8193, 64778, 'sixty-four thousand seven hundred seventy-eight'), (8194, 51967, 'fifty-one thousand nine hundred sixty-seven'), (8195, 9192, 'nine thousand one hundred ninety-two'), (8196, 21752, 'twenty-one thousand seven hundred fifty-two'), (8197, 46847, 'forty-six thousand eight hundred forty-seven'), (8198, 42572, 'forty-two thousand five hundred seventy-two'), (8199, 11026, 'eleven thousand twenty-six'), (8200, 35955, 'thirty-five thousand nine hundred fifty-five'), (8201, 889, 'eight hundred eighty-nine'), (8202, 82958, 'eighty-two thousand nine hundred fifty-eight'), (8203, 26821, 'twenty-six thousand eight hundred twenty-one'), (8204, 20434, 'twenty thousand four hundred thirty-four'), (8205, 62281, 'sixty-two thousand two hundred eighty-one'), (8206, 83577, 'eighty-three thousand five hundred seventy-seven'), (8207, 27138, 'twenty-seven thousand one hundred thirty-eight'), (8208, 76683, 'seventy-six thousand six hundred eighty-three'), (8209, 51137, 'fifty-one thousand one hundred thirty-seven'), (8210, 72581, 'seventy-two thousand five hundred eighty-one'), (8211, 62964, 'sixty-two thousand nine hundred sixty-four'), (8212, 62490, 'sixty-two thousand four hundred ninety'), (8213, 44681, 'forty-four thousand six hundred eighty-one'), (8214, 77074, 'seventy-seven thousand seventy-four'), (8215, 83710, 'eighty-three thousand seven hundred ten'), (8216, 60067, 'sixty thousand sixty-seven'), (8217, 49962, 'forty-nine thousand nine hundred sixty-two'), (8218, 61116, 'sixty-one thousand one hundred sixteen'), (8219, 20499, 'twenty thousand four hundred ninety-nine'), (8220, 16566, 'sixteen thousand five hundred sixty-six'), (8221, 4896, 'four thousand eight hundred ninety-six'), (8222, 99790, 'ninety-nine thousand seven hundred ninety'), (8223, 76178, 'seventy-six thousand one hundred seventy-eight'), (8224, 94185, 'ninety-four thousand one hundred eighty-five'), (8225, 40965, 'forty thousand nine hundred sixty-five'), (8226, 77461, 'seventy-seven thousand four hundred sixty-one'), (8227, 58507, 'fifty-eight thousand five hundred seven'), (8228, 28533, 'twenty-eight thousand five hundred thirty-three'), (8229, 97940, 'ninety-seven thousand nine hundred forty'), (8230, 9378, 'nine thousand three hundred seventy-eight'), (8231, 22730, 'twenty-two thousand seven hundred thirty'), (8232, 41840, 'forty-one thousand eight hundred forty'), (8233, 96246, 'ninety-six thousand two hundred forty-six'), (8234, 89165, 'eighty-nine thousand one hundred sixty-five'), (8235, 34253, 'thirty-four thousand two hundred fifty-three'), (8236, 16670, 'sixteen thousand six hundred seventy'), (8237, 7604, 'seven thousand six hundred four'), (8238, 17221, 'seventeen thousand two hundred twenty-one'), (8239, 4489, 'four thousand four hundred eighty-nine'), (8240, 6714, 'six thousand seven hundred fourteen'), (8241, 41924, 'forty-one thousand nine hundred twenty-four'), (8242, 62639, 'sixty-two thousand six hundred thirty-nine'), (8243, 26024, 'twenty-six thousand twenty-four'), (8244, 79183, 'seventy-nine thousand one hundred eighty-three'), (8245, 74813, 'seventy-four thousand eight hundred thirteen'), (8246, 27014, 'twenty-seven thousand fourteen'), (8247, 19087, 'nineteen thousand eighty-seven'), (8248, 12466, 'twelve thousand four hundred sixty-six'), (8249, 99145, 'ninety-nine thousand one hundred forty-five'), (8250, 44735, 'forty-four thousand seven hundred thirty-five'), (8251, 62032, 'sixty-two thousand thirty-two'), (8252, 77552, 'seventy-seven thousand five hundred fifty-two'), (8253, 99639, 'ninety-nine thousand six hundred thirty-nine'), (8254, 54249, 'fifty-four thousand two hundred forty-nine'), (8255, 61701, 'sixty-one thousand seven hundred one'), (8256, 83396, 'eighty-three thousand three hundred ninety-six'), (8257, 47620, 'forty-seven thousand six hundred twenty'), (8258, 1042, 'one thousand forty-two'), (8259, 15422, 'fifteen thousand four hundred twenty-two'), (8260, 71502, 'seventy-one thousand five hundred two'), (8261, 29782, 'twenty-nine thousand seven hundred eighty-two'), (8262, 96449, 'ninety-six thousand four hundred forty-nine'), (8263, 43260, 'forty-three thousand two hundred sixty'), (8264, 30715, 'thirty thousand seven hundred fifteen'), (8265, 19509, 'nineteen thousand five hundred nine'), (8266, 43298, 'forty-three thousand two hundred ninety-eight'), (8267, 32807, 'thirty-two thousand eight hundred seven'), (8268, 5203, 'five thousand two hundred three'), (8269, 27490, 'twenty-seven thousand four hundred ninety'), (8270, 13856, 'thirteen thousand eight hundred fifty-six'), (8271, 34788, 'thirty-four thousand seven hundred eighty-eight'), (8272, 79621, 'seventy-nine thousand six hundred twenty-one'), (8273, 82808, 'eighty-two thousand eight hundred eight'), (8274, 37417, 'thirty-seven thousand four hundred seventeen'), (8275, 13244, 'thirteen thousand two hundred forty-four'), (8276, 89970, 'eighty-nine thousand nine hundred seventy'), (8277, 96425, 'ninety-six thousand four hundred twenty-five'), (8278, 34543, 'thirty-four thousand five hundred forty-three'), (8279, 53736, 'fifty-three thousand seven hundred thirty-six'), (8280, 9308, 'nine thousand three hundred eight'), (8281, 63750, 'sixty-three thousand seven hundred fifty'), (8282, 82176, 'eighty-two thousand one hundred seventy-six'), (8283, 13194, 'thirteen thousand one hundred ninety-four'), (8284, 13409, 'thirteen thousand four hundred nine'), (8285, 28129, 'twenty-eight thousand one hundred twenty-nine'), (8286, 81386, 'eighty-one thousand three hundred eighty-six'), (8287, 85996, 'eighty-five thousand nine hundred ninety-six'), (8288, 48277, 'forty-eight thousand two hundred seventy-seven'), (8289, 18567, 'eighteen thousand five hundred sixty-seven'), (8290, 97133, 'ninety-seven thousand one hundred thirty-three'), (8291, 76330, 'seventy-six thousand three hundred thirty'), (8292, 91044, 'ninety-one thousand forty-four'), (8293, 46072, 'forty-six thousand seventy-two'), (8294, 76296, 'seventy-six thousand two hundred ninety-six'), (8295, 48214, 'forty-eight thousand two hundred fourteen'), (8296, 6752, 'six thousand seven hundred fifty-two'), (8297, 76845, 'seventy-six thousand eight hundred forty-five'), (8298, 13543, 'thirteen thousand five hundred forty-three'), (8299, 36318, 'thirty-six thousand three hundred eighteen'), (8300, 889, 'eight hundred eighty-nine'), (8301, 40713, 'forty thousand seven hundred thirteen'), (8302, 70521, 'seventy thousand five hundred twenty-one'), (8303, 89295, 'eighty-nine thousand two hundred ninety-five'), (8304, 44531, 'forty-four thousand five hundred thirty-one'), (8305, 31892, 'thirty-one thousand eight hundred ninety-two'), (8306, 86912, 'eighty-six thousand nine hundred twelve'), (8307, 54944, 'fifty-four thousand nine hundred forty-four'), (8308, 68025, 'sixty-eight thousand twenty-five'), (8309, 63382, 'sixty-three thousand three hundred eighty-two'), (8310, 72931, 'seventy-two thousand nine hundred thirty-one'), (8311, 50168, 'fifty thousand one hundred sixty-eight'), (8312, 32605, 'thirty-two thousand six hundred five'), (8313, 20937, 'twenty thousand nine hundred thirty-seven'), (8314, 25080, 'twenty-five thousand eighty'), (8315, 9824, 'nine thousand eight hundred twenty-four'), (8316, 71137, 'seventy-one thousand one hundred thirty-seven'), (8317, 24958, 'twenty-four thousand nine hundred fifty-eight'), (8318, 99835, 'ninety-nine thousand eight hundred thirty-five'), (8319, 28418, 'twenty-eight thousand four hundred eighteen'), (8320, 90929, 'ninety thousand nine hundred twenty-nine'), (8321, 3172, 'three thousand one hundred seventy-two'), (8322, 46563, 'forty-six thousand five hundred sixty-three'), (8323, 29177, 'twenty-nine thousand one hundred seventy-seven'), (8324, 1303, 'one thousand three hundred three'), (8325, 30302, 'thirty thousand three hundred two'), (8326, 52575, 'fifty-two thousand five hundred seventy-five'), (8327, 36542, 'thirty-six thousand five hundred forty-two'), (8328, 12329, 'twelve thousand three hundred twenty-nine'), (8329, 92604, 'ninety-two thousand six hundred four'), (8330, 51696, 'fifty-one thousand six hundred ninety-six'), (8331, 61183, 'sixty-one thousand one hundred eighty-three'), (8332, 34611, 'thirty-four thousand six hundred eleven'), (8333, 88779, 'eighty-eight thousand seven hundred seventy-nine'), (8334, 2666, 'two thousand six hundred sixty-six'), (8335, 6915, 'six thousand nine hundred fifteen'), (8336, 46174, 'forty-six thousand one hundred seventy-four'), (8337, 78896, 'seventy-eight thousand eight hundred ninety-six'), (8338, 6459, 'six thousand four hundred fifty-nine'), (8339, 27371, 'twenty-seven thousand three hundred seventy-one'), (8340, 15615, 'fifteen thousand six hundred fifteen'), (8341, 80469, 'eighty thousand four hundred sixty-nine'), (8342, 35237, 'thirty-five thousand two hundred thirty-seven'), (8343, 63927, 'sixty-three thousand nine hundred twenty-seven'), (8344, 13826, 'thirteen thousand eight hundred twenty-six'), (8345, 76699, 'seventy-six thousand six hundred ninety-nine'), (8346, 75679, 'seventy-five thousand six hundred seventy-nine'), (8347, 6505, 'six thousand five hundred five'), (8348, 2695, 'two thousand six hundred ninety-five'), (8349, 1716, 'one thousand seven hundred sixteen'), (8350, 79143, 'seventy-nine thousand one hundred forty-three'), (8351, 44558, 'forty-four thousand five hundred fifty-eight'), (8352, 78615, 'seventy-eight thousand six hundred fifteen'), (8353, 37550, 'thirty-seven thousand five hundred fifty'), (8354, 49053, 'forty-nine thousand fifty-three'), (8355, 47259, 'forty-seven thousand two hundred fifty-nine'), (8356, 22621, 'twenty-two thousand six hundred twenty-one'), (8357, 39368, 'thirty-nine thousand three hundred sixty-eight'), (8358, 92407, 'ninety-two thousand four hundred seven'), (8359, 77946, 'seventy-seven thousand nine hundred forty-six'), (8360, 34266, 'thirty-four thousand two hundred sixty-six'), (8361, 9912, 'nine thousand nine hundred twelve'), (8362, 85464, 'eighty-five thousand four hundred sixty-four'), (8363, 46679, 'forty-six thousand six hundred seventy-nine'), (8364, 14462, 'fourteen thousand four hundred sixty-two'), (8365, 11746, 'eleven thousand seven hundred forty-six'), (8366, 6500, 'six thousand five hundred'), (8367, 54701, 'fifty-four thousand seven hundred one'), (8368, 41957, 'forty-one thousand nine hundred fifty-seven'), (8369, 48638, 'forty-eight thousand six hundred thirty-eight'), (8370, 49833, 'forty-nine thousand eight hundred thirty-three'), (8371, 70205, 'seventy thousand two hundred five'), (8372, 41075, 'forty-one thousand seventy-five'), (8373, 60126, 'sixty thousand one hundred twenty-six'), (8374, 26884, 'twenty-six thousand eight hundred eighty-four'), (8375, 5956, 'five thousand nine hundred fifty-six'), (8376, 46191, 'forty-six thousand one hundred ninety-one'), (8377, 11167, 'eleven thousand one hundred sixty-seven'), (8378, 71835, 'seventy-one thousand eight hundred thirty-five'), (8379, 65888, 'sixty-five thousand eight hundred eighty-eight'), (8380, 86164, 'eighty-six thousand one hundred sixty-four'), (8381, 98878, 'ninety-eight thousand eight hundred seventy-eight'), (8382, 16039, 'sixteen thousand thirty-nine'), (8383, 85445, 'eighty-five thousand four hundred forty-five'), (8384, 64447, 'sixty-four thousand four hundred forty-seven'), (8385, 37932, 'thirty-seven thousand nine hundred thirty-two'), (8386, 15854, 'fifteen thousand eight hundred fifty-four'), (8387, 28488, 'twenty-eight thousand four hundred eighty-eight'), (8388, 99324, 'ninety-nine thousand three hundred twenty-four'), (8389, 5481, 'five thousand four hundred eighty-one'), (8390, 89056, 'eighty-nine thousand fifty-six'), (8391, 20327, 'twenty thousand three hundred twenty-seven'), (8392, 37222, 'thirty-seven thousand two hundred twenty-two'), (8393, 43052, 'forty-three thousand fifty-two'), (8394, 90659, 'ninety thousand six hundred fifty-nine'), (8395, 27154, 'twenty-seven thousand one hundred fifty-four'), (8396, 736, 'seven hundred thirty-six'), (8397, 86046, 'eighty-six thousand forty-six'), (8398, 7500, 'seven thousand five hundred'), (8399, 51472, 'fifty-one thousand four hundred seventy-two'), (8400, 65371, 'sixty-five thousand three hundred seventy-one'), (8401, 49446, 'forty-nine thousand four hundred forty-six'), (8402, 51721, 'fifty-one thousand seven hundred twenty-one'), (8403, 25678, 'twenty-five thousand six hundred seventy-eight'), (8404, 7300, 'seven thousand three hundred'), (8405, 78695, 'seventy-eight thousand six hundred ninety-five'), (8406, 26671, 'twenty-six thousand six hundred seventy-one'), (8407, 77010, 'seventy-seven thousand ten'), (8408, 63530, 'sixty-three thousand five hundred thirty'), (8409, 164, 'one hundred sixty-four'), (8410, 80868, 'eighty thousand eight hundred sixty-eight'), (8411, 12023, 'twelve thousand twenty-three'), (8412, 22292, 'twenty-two thousand two hundred ninety-two'), (8413, 58107, 'fifty-eight thousand one hundred seven'), (8414, 13943, 'thirteen thousand nine hundred forty-three'), (8415, 11209, 'eleven thousand two hundred nine'), (8416, 98621, 'ninety-eight thousand six hundred twenty-one'), (8417, 72478, 'seventy-two thousand four hundred seventy-eight'), (8418, 59721, 'fifty-nine thousand seven hundred twenty-one'), (8419, 9399, 'nine thousand three hundred ninety-nine'), (8420, 44360, 'forty-four thousand three hundred sixty'), (8421, 85990, 'eighty-five thousand nine hundred ninety'), (8422, 17766, 'seventeen thousand seven hundred sixty-six'), (8423, 65448, 'sixty-five thousand four hundred forty-eight'), (8424, 85640, 'eighty-five thousand six hundred forty'), (8425, 95741, 'ninety-five thousand seven hundred forty-one'), (8426, 83159, 'eighty-three thousand one hundred fifty-nine'), (8427, 99747, 'ninety-nine thousand seven hundred forty-seven'), (8428, 65036, 'sixty-five thousand thirty-six'), (8429, 21519, 'twenty-one thousand five hundred nineteen'), (8430, 78546, 'seventy-eight thousand five hundred forty-six'), (8431, 56437, 'fifty-six thousand four hundred thirty-seven'), (8432, 26476, 'twenty-six thousand four hundred seventy-six'), (8433, 41553, 'forty-one thousand five hundred fifty-three'), (8434, 29048, 'twenty-nine thousand forty-eight'), (8435, 48807, 'forty-eight thousand eight hundred seven'), (8436, 68858, 'sixty-eight thousand eight hundred fifty-eight'), (8437, 31610, 'thirty-one thousand six hundred ten'), (8438, 64515, 'sixty-four thousand five hundred fifteen'), (8439, 54131, 'fifty-four thousand one hundred thirty-one'), (8440, 58378, 'fifty-eight thousand three hundred seventy-eight'), (8441, 51510, 'fifty-one thousand five hundred ten'), (8442, 38323, 'thirty-eight thousand three hundred twenty-three'), (8443, 32906, 'thirty-two thousand nine hundred six'), (8444, 98429, 'ninety-eight thousand four hundred twenty-nine'), (8445, 41483, 'forty-one thousand four hundred eighty-three'), (8446, 36830, 'thirty-six thousand eight hundred thirty'), (8447, 56528, 'fifty-six thousand five hundred twenty-eight'), (8448, 55012, 'fifty-five thousand twelve'), (8449, 1194, 'one thousand one hundred ninety-four'), (8450, 89068, 'eighty-nine thousand sixty-eight'), (8451, 40667, 'forty thousand six hundred sixty-seven'), (8452, 26453, 'twenty-six thousand four hundred fifty-three'), (8453, 82099, 'eighty-two thousand ninety-nine'), (8454, 77124, 'seventy-seven thousand one hundred twenty-four'), (8455, 112, 'one hundred twelve'), (8456, 505, 'five hundred five'), (8457, 66191, 'sixty-six thousand one hundred ninety-one'), (8458, 31908, 'thirty-one thousand nine hundred eight'), (8459, 50473, 'fifty thousand four hundred seventy-three'), (8460, 85303, 'eighty-five thousand three hundred three'), (8461, 31574, 'thirty-one thousand five hundred seventy-four'), (8462, 58783, 'fifty-eight thousand seven hundred eighty-three'), (8463, 62521, 'sixty-two thousand five hundred twenty-one'), (8464, 51627, 'fifty-one thousand six hundred twenty-seven'), (8465, 25990, 'twenty-five thousand nine hundred ninety'), (8466, 13789, 'thirteen thousand seven hundred eighty-nine'), (8467, 34652, 'thirty-four thousand six hundred fifty-two'), (8468, 63, 'sixty-three'), (8469, 4073, 'four thousand seventy-three'), (8470, 4299, 'four thousand two hundred ninety-nine'), (8471, 98594, 'ninety-eight thousand five hundred ninety-four'), (8472, 83104, 'eighty-three thousand one hundred four'), (8473, 9718, 'nine thousand seven hundred eighteen'), (8474, 80496, 'eighty thousand four hundred ninety-six'), (8475, 36709, 'thirty-six thousand seven hundred nine'), (8476, 1097, 'one thousand ninety-seven'), (8477, 82095, 'eighty-two thousand ninety-five'), (8478, 7709, 'seven thousand seven hundred nine'), (8479, 53651, 'fifty-three thousand six hundred fifty-one'), (8480, 75797, 'seventy-five thousand seven hundred ninety-seven'), (8481, 83547, 'eighty-three thousand five hundred forty-seven'), (8482, 57254, 'fifty-seven thousand two hundred fifty-four'), (8483, 20577, 'twenty thousand five hundred seventy-seven'), (8484, 78552, 'seventy-eight thousand five hundred fifty-two'), (8485, 91373, 'ninety-one thousand three hundred seventy-three'), (8486, 88403, 'eighty-eight thousand four hundred three'), (8487, 97507, 'ninety-seven thousand five hundred seven'), (8488, 59476, 'fifty-nine thousand four hundred seventy-six'), (8489, 26359, 'twenty-six thousand three hundred fifty-nine'), (8490, 66974, 'sixty-six thousand nine hundred seventy-four'), (8491, 4046, 'four thousand forty-six'), (8492, 48533, 'forty-eight thousand five hundred thirty-three'), (8493, 63661, 'sixty-three thousand six hundred sixty-one'), (8494, 90604, 'ninety thousand six hundred four'), (8495, 16909, 'sixteen thousand nine hundred nine'), (8496, 15437, 'fifteen thousand four hundred thirty-seven'), (8497, 55730, 'fifty-five thousand seven hundred thirty'), (8498, 6950, 'six thousand nine hundred fifty'), (8499, 24277, 'twenty-four thousand two hundred seventy-seven'), (8500, 12909, 'twelve thousand nine hundred nine'), (8501, 78383, 'seventy-eight thousand three hundred eighty-three'), (8502, 22091, 'twenty-two thousand ninety-one'), (8503, 38405, 'thirty-eight thousand four hundred five'), (8504, 69844, 'sixty-nine thousand eight hundred forty-four'), (8505, 67603, 'sixty-seven thousand six hundred three'), (8506, 59345, 'fifty-nine thousand three hundred forty-five'), (8507, 80394, 'eighty thousand three hundred ninety-four'), (8508, 30834, 'thirty thousand eight hundred thirty-four'), (8509, 33971, 'thirty-three thousand nine hundred seventy-one'), (8510, 74079, 'seventy-four thousand seventy-nine'), (8511, 86757, 'eighty-six thousand seven hundred fifty-seven'), (8512, 60409, 'sixty thousand four hundred nine'), (8513, 84463, 'eighty-four thousand four hundred sixty-three'), (8514, 88810, 'eighty-eight thousand eight hundred ten'), (8515, 26806, 'twenty-six thousand eight hundred six'), (8516, 82994, 'eighty-two thousand nine hundred ninety-four'), (8517, 89988, 'eighty-nine thousand nine hundred eighty-eight'), (8518, 32147, 'thirty-two thousand one hundred forty-seven'), (8519, 9594, 'nine thousand five hundred ninety-four'), (8520, 1445, 'one thousand four hundred forty-five'), (8521, 21467, 'twenty-one thousand four hundred sixty-seven'), (8522, 69172, 'sixty-nine thousand one hundred seventy-two'), (8523, 78531, 'seventy-eight thousand five hundred thirty-one'), (8524, 6630, 'six thousand six hundred thirty'), (8525, 90687, 'ninety thousand six hundred eighty-seven'), (8526, 82271, 'eighty-two thousand two hundred seventy-one'), (8527, 47990, 'forty-seven thousand nine hundred ninety'), (8528, 19897, 'nineteen thousand eight hundred ninety-seven'), (8529, 12909, 'twelve thousand nine hundred nine'), (8530, 69152, 'sixty-nine thousand one hundred fifty-two'), (8531, 55779, 'fifty-five thousand seven hundred seventy-nine'), (8532, 95875, 'ninety-five thousand eight hundred seventy-five'), (8533, 80275, 'eighty thousand two hundred seventy-five'), (8534, 98215, 'ninety-eight thousand two hundred fifteen'), (8535, 71919, 'seventy-one thousand nine hundred nineteen'), (8536, 43898, 'forty-three thousand eight hundred ninety-eight'), (8537, 31571, 'thirty-one thousand five hundred seventy-one'), (8538, 18403, 'eighteen thousand four hundred three'), (8539, 92908, 'ninety-two thousand nine hundred eight'), (8540, 81109, 'eighty-one thousand one hundred nine'), (8541, 38809, 'thirty-eight thousand eight hundred nine'), (8542, 67031, 'sixty-seven thousand thirty-one'), (8543, 85667, 'eighty-five thousand six hundred sixty-seven'), (8544, 56152, 'fifty-six thousand one hundred fifty-two'), (8545, 66775, 'sixty-six thousand seven hundred seventy-five'), (8546, 54679, 'fifty-four thousand six hundred seventy-nine'), (8547, 24674, 'twenty-four thousand six hundred seventy-four'), (8548, 19133, 'nineteen thousand one hundred thirty-three'), (8549, 9177, 'nine thousand one hundred seventy-seven'), (8550, 40371, 'forty thousand three hundred seventy-one'), (8551, 48097, 'forty-eight thousand ninety-seven'), (8552, 55150, 'fifty-five thousand one hundred fifty'), (8553, 75691, 'seventy-five thousand six hundred ninety-one'), (8554, 48760, 'forty-eight thousand seven hundred sixty'), (8555, 3509, 'three thousand five hundred nine'), (8556, 71295, 'seventy-one thousand two hundred ninety-five'), (8557, 84206, 'eighty-four thousand two hundred six'), (8558, 84802, 'eighty-four thousand eight hundred two'), (8559, 41560, 'forty-one thousand five hundred sixty'), (8560, 20674, 'twenty thousand six hundred seventy-four'), (8561, 77122, 'seventy-seven thousand one hundred twenty-two'), (8562, 69472, 'sixty-nine thousand four hundred seventy-two'), (8563, 71524, 'seventy-one thousand five hundred twenty-four'), (8564, 71472, 'seventy-one thousand four hundred seventy-two'), (8565, 61975, 'sixty-one thousand nine hundred seventy-five'), (8566, 51520, 'fifty-one thousand five hundred twenty'), (8567, 34972, 'thirty-four thousand nine hundred seventy-two'), (8568, 68854, 'sixty-eight thousand eight hundred fifty-four'), (8569, 39970, 'thirty-nine thousand nine hundred seventy'), (8570, 77254, 'seventy-seven thousand two hundred fifty-four'), (8571, 62055, 'sixty-two thousand fifty-five'), (8572, 76553, 'seventy-six thousand five hundred fifty-three'), (8573, 69329, 'sixty-nine thousand three hundred twenty-nine'), (8574, 29285, 'twenty-nine thousand two hundred eighty-five'), (8575, 67299, 'sixty-seven thousand two hundred ninety-nine'), (8576, 81738, 'eighty-one thousand seven hundred thirty-eight'), (8577, 58923, 'fifty-eight thousand nine hundred twenty-three'), (8578, 88154, 'eighty-eight thousand one hundred fifty-four'), (8579, 65662, 'sixty-five thousand six hundred sixty-two'), (8580, 14772, 'fourteen thousand seven hundred seventy-two'), (8581, 80355, 'eighty thousand three hundred fifty-five'), (8582, 38061, 'thirty-eight thousand sixty-one'), (8583, 97193, 'ninety-seven thousand one hundred ninety-three'), (8584, 80250, 'eighty thousand two hundred fifty'), (8585, 78505, 'seventy-eight thousand five hundred five'), (8586, 63134, 'sixty-three thousand one hundred thirty-four'), (8587, 50787, 'fifty thousand seven hundred eighty-seven'), (8588, 62379, 'sixty-two thousand three hundred seventy-nine'), (8589, 63284, 'sixty-three thousand two hundred eighty-four'), (8590, 13024, 'thirteen thousand twenty-four'), (8591, 26078, 'twenty-six thousand seventy-eight'), (8592, 61146, 'sixty-one thousand one hundred forty-six'), (8593, 34917, 'thirty-four thousand nine hundred seventeen'), (8594, 9701, 'nine thousand seven hundred one'), (8595, 47688, 'forty-seven thousand six hundred eighty-eight'), (8596, 64719, 'sixty-four thousand seven hundred nineteen'), (8597, 69920, 'sixty-nine thousand nine hundred twenty'), (8598, 72744, 'seventy-two thousand seven hundred forty-four'), (8599, 97489, 'ninety-seven thousand four hundred eighty-nine'), (8600, 18853, 'eighteen thousand eight hundred fifty-three'), (8601, 86574, 'eighty-six thousand five hundred seventy-four'), (8602, 29577, 'twenty-nine thousand five hundred seventy-seven'), (8603, 40183, 'forty thousand one hundred eighty-three'), (8604, 34530, 'thirty-four thousand five hundred thirty'), (8605, 40642, 'forty thousand six hundred forty-two'), (8606, 51141, 'fifty-one thousand one hundred forty-one'), (8607, 26970, 'twenty-six thousand nine hundred seventy'), (8608, 84351, 'eighty-four thousand three hundred fifty-one'), (8609, 37576, 'thirty-seven thousand five hundred seventy-six'), (8610, 46952, 'forty-six thousand nine hundred fifty-two'), (8611, 5745, 'five thousand seven hundred forty-five'), (8612, 30098, 'thirty thousand ninety-eight'), (8613, 80019, 'eighty thousand nineteen'), (8614, 96206, 'ninety-six thousand two hundred six'), (8615, 46491, 'forty-six thousand four hundred ninety-one'), (8616, 78279, 'seventy-eight thousand two hundred seventy-nine'), (8617, 92949, 'ninety-two thousand nine hundred forty-nine'), (8618, 87338, 'eighty-seven thousand three hundred thirty-eight'), (8619, 67852, 'sixty-seven thousand eight hundred fifty-two'), (8620, 70463, 'seventy thousand four hundred sixty-three'), (8621, 90441, 'ninety thousand four hundred forty-one'), (8622, 2171, 'two thousand one hundred seventy-one'), (8623, 63831, 'sixty-three thousand eight hundred thirty-one'), (8624, 44159, 'forty-four thousand one hundred fifty-nine'), (8625, 13967, 'thirteen thousand nine hundred sixty-seven'), (8626, 47445, 'forty-seven thousand four hundred forty-five'), (8627, 7992, 'seven thousand nine hundred ninety-two'), (8628, 36205, 'thirty-six thousand two hundred five'), (8629, 14502, 'fourteen thousand five hundred two'), (8630, 6704, 'six thousand seven hundred four'), (8631, 7821, 'seven thousand eight hundred twenty-one'), (8632, 24643, 'twenty-four thousand six hundred forty-three'), (8633, 45674, 'forty-five thousand six hundred seventy-four'), (8634, 64487, 'sixty-four thousand four hundred eighty-seven'), (8635, 12007, 'twelve thousand seven'), (8636, 39929, 'thirty-nine thousand nine hundred twenty-nine'), (8637, 53304, 'fifty-three thousand three hundred four'), (8638, 2231, 'two thousand two hundred thirty-one'), (8639, 77189, 'seventy-seven thousand one hundred eighty-nine'), (8640, 3887, 'three thousand eight hundred eighty-seven'), (8641, 44122, 'forty-four thousand one hundred twenty-two'), (8642, 63883, 'sixty-three thousand eight hundred eighty-three'), (8643, 9229, 'nine thousand two hundred twenty-nine'), (8644, 69943, 'sixty-nine thousand nine hundred forty-three'), (8645, 12970, 'twelve thousand nine hundred seventy'), (8646, 76176, 'seventy-six thousand one hundred seventy-six'), (8647, 17089, 'seventeen thousand eighty-nine'), (8648, 68542, 'sixty-eight thousand five hundred forty-two'), (8649, 43947, 'forty-three thousand nine hundred forty-seven'), (8650, 14743, 'fourteen thousand seven hundred forty-three'), (8651, 83124, 'eighty-three thousand one hundred twenty-four'), (8652, 18569, 'eighteen thousand five hundred sixty-nine'), (8653, 80463, 'eighty thousand four hundred sixty-three'), (8654, 81819, 'eighty-one thousand eight hundred nineteen'), (8655, 8615, 'eight thousand six hundred fifteen'), (8656, 39918, 'thirty-nine thousand nine hundred eighteen'), (8657, 72064, 'seventy-two thousand sixty-four'), (8658, 90041, 'ninety thousand forty-one'), (8659, 95297, 'ninety-five thousand two hundred ninety-seven'), (8660, 70516, 'seventy thousand five hundred sixteen'), (8661, 76766, 'seventy-six thousand seven hundred sixty-six'), (8662, 16492, 'sixteen thousand four hundred ninety-two'), (8663, 16189, 'sixteen thousand one hundred eighty-nine'), (8664, 91662, 'ninety-one thousand six hundred sixty-two'), (8665, 59057, 'fifty-nine thousand fifty-seven'), (8666, 65902, 'sixty-five thousand nine hundred two'), (8667, 17171, 'seventeen thousand one hundred seventy-one'), (8668, 24003, 'twenty-four thousand three'), (8669, 92149, 'ninety-two thousand one hundred forty-nine'), (8670, 1792, 'one thousand seven hundred ninety-two'), (8671, 67411, 'sixty-seven thousand four hundred eleven'), (8672, 66464, 'sixty-six thousand four hundred sixty-four'), (8673, 63074, 'sixty-three thousand seventy-four'), (8674, 10873, 'ten thousand eight hundred seventy-three'), (8675, 55524, 'fifty-five thousand five hundred twenty-four'), (8676, 95313, 'ninety-five thousand three hundred thirteen'), (8677, 28052, 'twenty-eight thousand fifty-two'), (8678, 24289, 'twenty-four thousand two hundred eighty-nine'), (8679, 68418, 'sixty-eight thousand four hundred eighteen'), (8680, 53276, 'fifty-three thousand two hundred seventy-six'), (8681, 82162, 'eighty-two thousand one hundred sixty-two'), (8682, 41681, 'forty-one thousand six hundred eighty-one'), (8683, 68119, 'sixty-eight thousand one hundred nineteen'), (8684, 70728, 'seventy thousand seven hundred twenty-eight'), (8685, 8034, 'eight thousand thirty-four'), (8686, 60929, 'sixty thousand nine hundred twenty-nine'), (8687, 21362, 'twenty-one thousand three hundred sixty-two'), (8688, 74845, 'seventy-four thousand eight hundred forty-five'), (8689, 5697, 'five thousand six hundred ninety-seven'), (8690, 93968, 'ninety-three thousand nine hundred sixty-eight'), (8691, 51095, 'fifty-one thousand ninety-five'), (8692, 83810, 'eighty-three thousand eight hundred ten'), (8693, 15741, 'fifteen thousand seven hundred forty-one'), (8694, 69922, 'sixty-nine thousand nine hundred twenty-two'), (8695, 184, 'one hundred eighty-four'), (8696, 91324, 'ninety-one thousand three hundred twenty-four'), (8697, 95777, 'ninety-five thousand seven hundred seventy-seven'), (8698, 15723, 'fifteen thousand seven hundred twenty-three'), (8699, 43921, 'forty-three thousand nine hundred twenty-one'), (8700, 58646, 'fifty-eight thousand six hundred forty-six'), (8701, 93710, 'ninety-three thousand seven hundred ten'), (8702, 66251, 'sixty-six thousand two hundred fifty-one'), (8703, 71083, 'seventy-one thousand eighty-three'), (8704, 24317, 'twenty-four thousand three hundred seventeen'), (8705, 24353, 'twenty-four thousand three hundred fifty-three'), (8706, 89820, 'eighty-nine thousand eight hundred twenty'), (8707, 98100, 'ninety-eight thousand one hundred'), (8708, 69014, 'sixty-nine thousand fourteen'), (8709, 99625, 'ninety-nine thousand six hundred twenty-five'), (8710, 91098, 'ninety-one thousand ninety-eight'), (8711, 92458, 'ninety-two thousand four hundred fifty-eight'), (8712, 31397, 'thirty-one thousand three hundred ninety-seven'), (8713, 432, 'four hundred thirty-two'), (8714, 32584, 'thirty-two thousand five hundred eighty-four'), (8715, 8666, 'eight thousand six hundred sixty-six'), (8716, 96638, 'ninety-six thousand six hundred thirty-eight'), (8717, 7791, 'seven thousand seven hundred ninety-one'), (8718, 1427, 'one thousand four hundred twenty-seven'), (8719, 14231, 'fourteen thousand two hundred thirty-one'), (8720, 28045, 'twenty-eight thousand forty-five'), (8721, 69475, 'sixty-nine thousand four hundred seventy-five'), (8722, 91064, 'ninety-one thousand sixty-four'), (8723, 39915, 'thirty-nine thousand nine hundred fifteen'), (8724, 83169, 'eighty-three thousand one hundred sixty-nine'), (8725, 96548, 'ninety-six thousand five hundred forty-eight'), (8726, 35018, 'thirty-five thousand eighteen'), (8727, 49950, 'forty-nine thousand nine hundred fifty'), (8728, 70855, 'seventy thousand eight hundred fifty-five'), (8729, 11953, 'eleven thousand nine hundred fifty-three'), (8730, 43863, 'forty-three thousand eight hundred sixty-three'), (8731, 7490, 'seven thousand four hundred ninety'), (8732, 11977, 'eleven thousand nine hundred seventy-seven'), (8733, 28119, 'twenty-eight thousand one hundred nineteen'), (8734, 59887, 'fifty-nine thousand eight hundred eighty-seven'), (8735, 73473, 'seventy-three thousand four hundred seventy-three'), (8736, 19309, 'nineteen thousand three hundred nine'), (8737, 70079, 'seventy thousand seventy-nine'), (8738, 58537, 'fifty-eight thousand five hundred thirty-seven'), (8739, 31414, 'thirty-one thousand four hundred fourteen'), (8740, 29081, 'twenty-nine thousand eighty-one'), (8741, 18025, 'eighteen thousand twenty-five'), (8742, 44324, 'forty-four thousand three hundred twenty-four'), (8743, 99072, 'ninety-nine thousand seventy-two'), (8744, 85289, 'eighty-five thousand two hundred eighty-nine'), (8745, 9000, 'nine thousand'), (8746, 3985, 'three thousand nine hundred eighty-five'), (8747, 56314, 'fifty-six thousand three hundred fourteen'), (8748, 14264, 'fourteen thousand two hundred sixty-four'), (8749, 89332, 'eighty-nine thousand three hundred thirty-two'), (8750, 69541, 'sixty-nine thousand five hundred forty-one'), (8751, 85916, 'eighty-five thousand nine hundred sixteen'), (8752, 21170, 'twenty-one thousand one hundred seventy'), (8753, 6500, 'six thousand five hundred'), (8754, 9578, 'nine thousand five hundred seventy-eight'), (8755, 89787, 'eighty-nine thousand seven hundred eighty-seven'), (8756, 34742, 'thirty-four thousand seven hundred forty-two'), (8757, 50788, 'fifty thousand seven hundred eighty-eight'), (8758, 70835, 'seventy thousand eight hundred thirty-five'), (8759, 96005, 'ninety-six thousand five'), (8760, 42368, 'forty-two thousand three hundred sixty-eight'), (8761, 15670, 'fifteen thousand six hundred seventy'), (8762, 20354, 'twenty thousand three hundred fifty-four'), (8763, 51169, 'fifty-one thousand one hundred sixty-nine'), (8764, 79100, 'seventy-nine thousand one hundred'), (8765, 89010, 'eighty-nine thousand ten'), (8766, 41959, 'forty-one thousand nine hundred fifty-nine'), (8767, 89858, 'eighty-nine thousand eight hundred fifty-eight'), (8768, 12061, 'twelve thousand sixty-one'), (8769, 34533, 'thirty-four thousand five hundred thirty-three'), (8770, 99846, 'ninety-nine thousand eight hundred forty-six'), (8771, 53210, 'fifty-three thousand two hundred ten'), (8772, 52662, 'fifty-two thousand six hundred sixty-two'), (8773, 86340, 'eighty-six thousand three hundred forty'), (8774, 96204, 'ninety-six thousand two hundred four'), (8775, 41401, 'forty-one thousand four hundred one'), (8776, 53906, 'fifty-three thousand nine hundred six'), (8777, 30974, 'thirty thousand nine hundred seventy-four'), (8778, 8229, 'eight thousand two hundred twenty-nine'), (8779, 32145, 'thirty-two thousand one hundred forty-five'), (8780, 98200, 'ninety-eight thousand two hundred'), (8781, 66462, 'sixty-six thousand four hundred sixty-two'), (8782, 15757, 'fifteen thousand seven hundred fifty-seven'), (8783, 41432, 'forty-one thousand four hundred thirty-two'), (8784, 5004, 'five thousand four'), (8785, 65586, 'sixty-five thousand five hundred eighty-six'), (8786, 83446, 'eighty-three thousand four hundred forty-six'), (8787, 40511, 'forty thousand five hundred eleven'), (8788, 86308, 'eighty-six thousand three hundred eight'), (8789, 10066, 'ten thousand sixty-six'), (8790, 87586, 'eighty-seven thousand five hundred eighty-six'), (8791, 36308, 'thirty-six thousand three hundred eight'), (8792, 14513, 'fourteen thousand five hundred thirteen'), (8793, 21879, 'twenty-one thousand eight hundred seventy-nine'), (8794, 92112, 'ninety-two thousand one hundred twelve'), (8795, 21754, 'twenty-one thousand seven hundred fifty-four'), (8796, 83071, 'eighty-three thousand seventy-one'), (8797, 53182, 'fifty-three thousand one hundred eighty-two'), (8798, 14305, 'fourteen thousand three hundred five'), (8799, 91092, 'ninety-one thousand ninety-two'), (8800, 55635, 'fifty-five thousand six hundred thirty-five'), (8801, 51303, 'fifty-one thousand three hundred three'), (8802, 10897, 'ten thousand eight hundred ninety-seven'), (8803, 86460, 'eighty-six thousand four hundred sixty'), (8804, 4877, 'four thousand eight hundred seventy-seven'), (8805, 19681, 'nineteen thousand six hundred eighty-one'), (8806, 62275, 'sixty-two thousand two hundred seventy-five'), (8807, 97781, 'ninety-seven thousand seven hundred eighty-one'), (8808, 43961, 'forty-three thousand nine hundred sixty-one'), (8809, 71519, 'seventy-one thousand five hundred nineteen'), (8810, 84180, 'eighty-four thousand one hundred eighty'), (8811, 14910, 'fourteen thousand nine hundred ten'), (8812, 49664, 'forty-nine thousand six hundred sixty-four'), (8813, 89952, 'eighty-nine thousand nine hundred fifty-two'), (8814, 53247, 'fifty-three thousand two hundred forty-seven'), (8815, 66226, 'sixty-six thousand two hundred twenty-six'), (8816, 57384, 'fifty-seven thousand three hundred eighty-four'), (8817, 31951, 'thirty-one thousand nine hundred fifty-one'), (8818, 44210, 'forty-four thousand two hundred ten'), (8819, 55985, 'fifty-five thousand nine hundred eighty-five'), (8820, 60322, 'sixty thousand three hundred twenty-two'), (8821, 13591, 'thirteen thousand five hundred ninety-one'), (8822, 45349, 'forty-five thousand three hundred forty-nine'), (8823, 44807, 'forty-four thousand eight hundred seven'), (8824, 75197, 'seventy-five thousand one hundred ninety-seven'), (8825, 28009, 'twenty-eight thousand nine'), (8826, 51527, 'fifty-one thousand five hundred twenty-seven'), (8827, 578, 'five hundred seventy-eight'), (8828, 83112, 'eighty-three thousand one hundred twelve'), (8829, 36658, 'thirty-six thousand six hundred fifty-eight'), (8830, 20388, 'twenty thousand three hundred eighty-eight'), (8831, 32378, 'thirty-two thousand three hundred seventy-eight'), (8832, 22213, 'twenty-two thousand two hundred thirteen'), (8833, 10178, 'ten thousand one hundred seventy-eight'), (8834, 75615, 'seventy-five thousand six hundred fifteen'), (8835, 2848, 'two thousand eight hundred forty-eight'), (8836, 22770, 'twenty-two thousand seven hundred seventy'), (8837, 1945, 'one thousand nine hundred forty-five'), (8838, 64352, 'sixty-four thousand three hundred fifty-two'), (8839, 66296, 'sixty-six thousand two hundred ninety-six'), (8840, 26810, 'twenty-six thousand eight hundred ten'), (8841, 9063, 'nine thousand sixty-three'), (8842, 70208, 'seventy thousand two hundred eight'), (8843, 56121, 'fifty-six thousand one hundred twenty-one'), (8844, 94374, 'ninety-four thousand three hundred seventy-four'), (8845, 5647, 'five thousand six hundred forty-seven'), (8846, 51547, 'fifty-one thousand five hundred forty-seven'), (8847, 73646, 'seventy-three thousand six hundred forty-six'), (8848, 89250, 'eighty-nine thousand two hundred fifty'), (8849, 51303, 'fifty-one thousand three hundred three'), (8850, 41930, 'forty-one thousand nine hundred thirty'), (8851, 87727, 'eighty-seven thousand seven hundred twenty-seven'), (8852, 28453, 'twenty-eight thousand four hundred fifty-three'), (8853, 50451, 'fifty thousand four hundred fifty-one'), (8854, 38686, 'thirty-eight thousand six hundred eighty-six'), (8855, 82827, 'eighty-two thousand eight hundred twenty-seven'), (8856, 71581, 'seventy-one thousand five hundred eighty-one'), (8857, 14394, 'fourteen thousand three hundred ninety-four'), (8858, 46068, 'forty-six thousand sixty-eight'), (8859, 76252, 'seventy-six thousand two hundred fifty-two'), (8860, 27505, 'twenty-seven thousand five hundred five'), (8861, 30289, 'thirty thousand two hundred eighty-nine'), (8862, 38900, 'thirty-eight thousand nine hundred'), (8863, 97764, 'ninety-seven thousand seven hundred sixty-four'), (8864, 49229, 'forty-nine thousand two hundred twenty-nine'), (8865, 81206, 'eighty-one thousand two hundred six'), (8866, 25077, 'twenty-five thousand seventy-seven'), (8867, 30768, 'thirty thousand seven hundred sixty-eight'), (8868, 76620, 'seventy-six thousand six hundred twenty'), (8869, 88283, 'eighty-eight thousand two hundred eighty-three'), (8870, 69601, 'sixty-nine thousand six hundred one'), (8871, 15776, 'fifteen thousand seven hundred seventy-six'), (8872, 31227, 'thirty-one thousand two hundred twenty-seven'), (8873, 66875, 'sixty-six thousand eight hundred seventy-five'), (8874, 11949, 'eleven thousand nine hundred forty-nine'), (8875, 43867, 'forty-three thousand eight hundred sixty-seven'), (8876, 23306, 'twenty-three thousand three hundred six'), (8877, 95692, 'ninety-five thousand six hundred ninety-two'), (8878, 18750, 'eighteen thousand seven hundred fifty'), (8879, 66788, 'sixty-six thousand seven hundred eighty-eight'), (8880, 29822, 'twenty-nine thousand eight hundred twenty-two'), (8881, 76107, 'seventy-six thousand one hundred seven'), (8882, 45957, 'forty-five thousand nine hundred fifty-seven'), (8883, 73445, 'seventy-three thousand four hundred forty-five'), (8884, 2545, 'two thousand five hundred forty-five'), (8885, 19954, 'nineteen thousand nine hundred fifty-four'), (8886, 27381, 'twenty-seven thousand three hundred eighty-one'), (8887, 49683, 'forty-nine thousand six hundred eighty-three'), (8888, 97902, 'ninety-seven thousand nine hundred two'), (8889, 5402, 'five thousand four hundred two'), (8890, 99699, 'ninety-nine thousand six hundred ninety-nine'), (8891, 59650, 'fifty-nine thousand six hundred fifty'), (8892, 33569, 'thirty-three thousand five hundred sixty-nine'), (8893, 93460, 'ninety-three thousand four hundred sixty'), (8894, 77070, 'seventy-seven thousand seventy'), (8895, 23010, 'twenty-three thousand ten'), (8896, 54896, 'fifty-four thousand eight hundred ninety-six'), (8897, 30246, 'thirty thousand two hundred forty-six'), (8898, 29053, 'twenty-nine thousand fifty-three'), (8899, 83920, 'eighty-three thousand nine hundred twenty'), (8900, 99441, 'ninety-nine thousand four hundred forty-one'), (8901, 8083, 'eight thousand eighty-three'), (8902, 47671, 'forty-seven thousand six hundred seventy-one'), (8903, 67591, 'sixty-seven thousand five hundred ninety-one'), (8904, 27541, 'twenty-seven thousand five hundred forty-one'), (8905, 85863, 'eighty-five thousand eight hundred sixty-three'), (8906, 53989, 'fifty-three thousand nine hundred eighty-nine'), (8907, 14198, 'fourteen thousand one hundred ninety-eight'), (8908, 6871, 'six thousand eight hundred seventy-one'), (8909, 61035, 'sixty-one thousand thirty-five'), (8910, 58806, 'fifty-eight thousand eight hundred six'), (8911, 94134, 'ninety-four thousand one hundred thirty-four'), (8912, 44315, 'forty-four thousand three hundred fifteen'), (8913, 45755, 'forty-five thousand seven hundred fifty-five'), (8914, 80281, 'eighty thousand two hundred eighty-one'), (8915, 43508, 'forty-three thousand five hundred eight'), (8916, 5750, 'five thousand seven hundred fifty'), (8917, 41402, 'forty-one thousand four hundred two'), (8918, 37310, 'thirty-seven thousand three hundred ten'), (8919, 50893, 'fifty thousand eight hundred ninety-three'), (8920, 183, 'one hundred eighty-three'), (8921, 38346, 'thirty-eight thousand three hundred forty-six'), (8922, 97429, 'ninety-seven thousand four hundred twenty-nine'), (8923, 98566, 'ninety-eight thousand five hundred sixty-six'), (8924, 6844, 'six thousand eight hundred forty-four'), (8925, 21894, 'twenty-one thousand eight hundred ninety-four'), (8926, 53738, 'fifty-three thousand seven hundred thirty-eight'), (8927, 72729, 'seventy-two thousand seven hundred twenty-nine'), (8928, 96701, 'ninety-six thousand seven hundred one'), (8929, 89221, 'eighty-nine thousand two hundred twenty-one'), (8930, 51201, 'fifty-one thousand two hundred one'), (8931, 31702, 'thirty-one thousand seven hundred two'), (8932, 24390, 'twenty-four thousand three hundred ninety'), (8933, 55746, 'fifty-five thousand seven hundred forty-six'), (8934, 68375, 'sixty-eight thousand three hundred seventy-five'), (8935, 87377, 'eighty-seven thousand three hundred seventy-seven'), (8936, 30091, 'thirty thousand ninety-one'), (8937, 82666, 'eighty-two thousand six hundred sixty-six'), (8938, 67335, 'sixty-seven thousand three hundred thirty-five'), (8939, 80977, 'eighty thousand nine hundred seventy-seven'), (8940, 39017, 'thirty-nine thousand seventeen'), (8941, 22438, 'twenty-two thousand four hundred thirty-eight'), (8942, 96170, 'ninety-six thousand one hundred seventy'), (8943, 69719, 'sixty-nine thousand seven hundred nineteen'), (8944, 61880, 'sixty-one thousand eight hundred eighty'), (8945, 87408, 'eighty-seven thousand four hundred eight'), (8946, 32094, 'thirty-two thousand ninety-four'), (8947, 54233, 'fifty-four thousand two hundred thirty-three'), (8948, 46995, 'forty-six thousand nine hundred ninety-five'), (8949, 75594, 'seventy-five thousand five hundred ninety-four'), (8950, 79004, 'seventy-nine thousand four'), (8951, 24787, 'twenty-four thousand seven hundred eighty-seven'), (8952, 33917, 'thirty-three thousand nine hundred seventeen'), (8953, 20650, 'twenty thousand six hundred fifty'), (8954, 15545, 'fifteen thousand five hundred forty-five'), (8955, 28465, 'twenty-eight thousand four hundred sixty-five'), (8956, 77966, 'seventy-seven thousand nine hundred sixty-six'), (8957, 40490, 'forty thousand four hundred ninety'), (8958, 65944, 'sixty-five thousand nine hundred forty-four'), (8959, 71646, 'seventy-one thousand six hundred forty-six'), (8960, 83584, 'eighty-three thousand five hundred eighty-four'), (8961, 73512, 'seventy-three thousand five hundred twelve'), (8962, 49920, 'forty-nine thousand nine hundred twenty'), (8963, 53318, 'fifty-three thousand three hundred eighteen'), (8964, 39959, 'thirty-nine thousand nine hundred fifty-nine'), (8965, 72167, 'seventy-two thousand one hundred sixty-seven'), (8966, 86184, 'eighty-six thousand one hundred eighty-four'), (8967, 24020, 'twenty-four thousand twenty'), (8968, 51653, 'fifty-one thousand six hundred fifty-three'), (8969, 80578, 'eighty thousand five hundred seventy-eight'), (8970, 39003, 'thirty-nine thousand three'), (8971, 80866, 'eighty thousand eight hundred sixty-six'), (8972, 14425, 'fourteen thousand four hundred twenty-five'), (8973, 55029, 'fifty-five thousand twenty-nine'), (8974, 57905, 'fifty-seven thousand nine hundred five'), (8975, 20717, 'twenty thousand seven hundred seventeen'), (8976, 89894, 'eighty-nine thousand eight hundred ninety-four'), (8977, 30105, 'thirty thousand one hundred five'), (8978, 78493, 'seventy-eight thousand four hundred ninety-three'), (8979, 17777, 'seventeen thousand seven hundred seventy-seven'), (8980, 74946, 'seventy-four thousand nine hundred forty-six'), (8981, 72797, 'seventy-two thousand seven hundred ninety-seven'), (8982, 75024, 'seventy-five thousand twenty-four'), (8983, 51532, 'fifty-one thousand five hundred thirty-two'), (8984, 33724, 'thirty-three thousand seven hundred twenty-four'), (8985, 2930, 'two thousand nine hundred thirty'), (8986, 54770, 'fifty-four thousand seven hundred seventy'), (8987, 80780, 'eighty thousand seven hundred eighty'), (8988, 73147, 'seventy-three thousand one hundred forty-seven'), (8989, 89684, 'eighty-nine thousand six hundred eighty-four'), (8990, 71585, 'seventy-one thousand five hundred eighty-five'), (8991, 51694, 'fifty-one thousand six hundred ninety-four'), (8992, 55158, 'fifty-five thousand one hundred fifty-eight'), (8993, 28755, 'twenty-eight thousand seven hundred fifty-five'), (8994, 66584, 'sixty-six thousand five hundred eighty-four'), (8995, 59752, 'fifty-nine thousand seven hundred fifty-two'), (8996, 95143, 'ninety-five thousand one hundred forty-three'), (8997, 5092, 'five thousand ninety-two'), (8998, 56792, 'fifty-six thousand seven hundred ninety-two'), (8999, 88899, 'eighty-eight thousand eight hundred ninety-nine'), (9000, 42062, 'forty-two thousand sixty-two'), (9001, 87458, 'eighty-seven thousand four hundred fifty-eight'), (9002, 83037, 'eighty-three thousand thirty-seven'), (9003, 45442, 'forty-five thousand four hundred forty-two'), (9004, 96335, 'ninety-six thousand three hundred thirty-five'), (9005, 17437, 'seventeen thousand four hundred thirty-seven'), (9006, 41234, 'forty-one thousand two hundred thirty-four'), (9007, 38464, 'thirty-eight thousand four hundred sixty-four'), (9008, 25912, 'twenty-five thousand nine hundred twelve'), (9009, 18006, 'eighteen thousand six'), (9010, 58518, 'fifty-eight thousand five hundred eighteen'), (9011, 96286, 'ninety-six thousand two hundred eighty-six'), (9012, 88919, 'eighty-eight thousand nine hundred nineteen'), (9013, 86871, 'eighty-six thousand eight hundred seventy-one'), (9014, 55545, 'fifty-five thousand five hundred forty-five'), (9015, 52368, 'fifty-two thousand three hundred sixty-eight'), (9016, 42202, 'forty-two thousand two hundred two'), (9017, 31564, 'thirty-one thousand five hundred sixty-four'), (9018, 17558, 'seventeen thousand five hundred fifty-eight'), (9019, 25854, 'twenty-five thousand eight hundred fifty-four'), (9020, 346, 'three hundred forty-six'), (9021, 67734, 'sixty-seven thousand seven hundred thirty-four'), (9022, 65704, 'sixty-five thousand seven hundred four'), (9023, 95894, 'ninety-five thousand eight hundred ninety-four'), (9024, 18630, 'eighteen thousand six hundred thirty'), (9025, 33634, 'thirty-three thousand six hundred thirty-four'), (9026, 40109, 'forty thousand one hundred nine'), (9027, 63064, 'sixty-three thousand sixty-four'), (9028, 77187, 'seventy-seven thousand one hundred eighty-seven'), (9029, 99038, 'ninety-nine thousand thirty-eight'), (9030, 76139, 'seventy-six thousand one hundred thirty-nine'), (9031, 82667, 'eighty-two thousand six hundred sixty-seven'), (9032, 70647, 'seventy thousand six hundred forty-seven'), (9033, 38367, 'thirty-eight thousand three hundred sixty-seven'), (9034, 93294, 'ninety-three thousand two hundred ninety-four'), (9035, 66244, 'sixty-six thousand two hundred forty-four'), (9036, 24895, 'twenty-four thousand eight hundred ninety-five'), (9037, 28956, 'twenty-eight thousand nine hundred fifty-six'), (9038, 21442, 'twenty-one thousand four hundred forty-two'), (9039, 82489, 'eighty-two thousand four hundred eighty-nine'), (9040, 15722, 'fifteen thousand seven hundred twenty-two'), (9041, 5325, 'five thousand three hundred twenty-five'), (9042, 3042, 'three thousand forty-two'), (9043, 69840, 'sixty-nine thousand eight hundred forty'), (9044, 86368, 'eighty-six thousand three hundred sixty-eight'), (9045, 41213, 'forty-one thousand two hundred thirteen'), (9046, 66450, 'sixty-six thousand four hundred fifty'), (9047, 80470, 'eighty thousand four hundred seventy'), (9048, 63488, 'sixty-three thousand four hundred eighty-eight'), (9049, 9774, 'nine thousand seven hundred seventy-four'), (9050, 79757, 'seventy-nine thousand seven hundred fifty-seven'), (9051, 31476, 'thirty-one thousand four hundred seventy-six'), (9052, 54062, 'fifty-four thousand sixty-two'), (9053, 99610, 'ninety-nine thousand six hundred ten'), (9054, 50809, 'fifty thousand eight hundred nine'), (9055, 29135, 'twenty-nine thousand one hundred thirty-five'), (9056, 58535, 'fifty-eight thousand five hundred thirty-five'), (9057, 62396, 'sixty-two thousand three hundred ninety-six'), (9058, 85313, 'eighty-five thousand three hundred thirteen'), (9059, 18362, 'eighteen thousand three hundred sixty-two'), (9060, 33031, 'thirty-three thousand thirty-one'), (9061, 76547, 'seventy-six thousand five hundred forty-seven'), (9062, 18035, 'eighteen thousand thirty-five'), (9063, 93426, 'ninety-three thousand four hundred twenty-six'), (9064, 40275, 'forty thousand two hundred seventy-five'), (9065, 36240, 'thirty-six thousand two hundred forty'), (9066, 95982, 'ninety-five thousand nine hundred eighty-two'), (9067, 63305, 'sixty-three thousand three hundred five'), (9068, 49114, 'forty-nine thousand one hundred fourteen'), (9069, 96689, 'ninety-six thousand six hundred eighty-nine'), (9070, 39056, 'thirty-nine thousand fifty-six'), (9071, 39255, 'thirty-nine thousand two hundred fifty-five'), (9072, 18392, 'eighteen thousand three hundred ninety-two'), (9073, 52779, 'fifty-two thousand seven hundred seventy-nine'), (9074, 70740, 'seventy thousand seven hundred forty'), (9075, 28177, 'twenty-eight thousand one hundred seventy-seven'), (9076, 53022, 'fifty-three thousand twenty-two'), (9077, 8438, 'eight thousand four hundred thirty-eight'), (9078, 90857, 'ninety thousand eight hundred fifty-seven'), (9079, 71045, 'seventy-one thousand forty-five'), (9080, 73389, 'seventy-three thousand three hundred eighty-nine'), (9081, 62752, 'sixty-two thousand seven hundred fifty-two'), (9082, 68794, 'sixty-eight thousand seven hundred ninety-four'), (9083, 61942, 'sixty-one thousand nine hundred forty-two'), (9084, 13103, 'thirteen thousand one hundred three'), (9085, 76440, 'seventy-six thousand four hundred forty'), (9086, 67343, 'sixty-seven thousand three hundred forty-three'), (9087, 96950, 'ninety-six thousand nine hundred fifty'), (9088, 38512, 'thirty-eight thousand five hundred twelve'), (9089, 65977, 'sixty-five thousand nine hundred seventy-seven'), (9090, 14040, 'fourteen thousand forty'), (9091, 64962, 'sixty-four thousand nine hundred sixty-two'), (9092, 57923, 'fifty-seven thousand nine hundred twenty-three'), (9093, 39954, 'thirty-nine thousand nine hundred fifty-four'), (9094, 44316, 'forty-four thousand three hundred sixteen'), (9095, 59214, 'fifty-nine thousand two hundred fourteen'), (9096, 33593, 'thirty-three thousand five hundred ninety-three'), (9097, 92761, 'ninety-two thousand seven hundred sixty-one'), (9098, 10028, 'ten thousand twenty-eight'), (9099, 35798, 'thirty-five thousand seven hundred ninety-eight'), (9100, 84095, 'eighty-four thousand ninety-five'), (9101, 29822, 'twenty-nine thousand eight hundred twenty-two'), (9102, 37880, 'thirty-seven thousand eight hundred eighty'), (9103, 35717, 'thirty-five thousand seven hundred seventeen'), (9104, 68276, 'sixty-eight thousand two hundred seventy-six'), (9105, 19185, 'nineteen thousand one hundred eighty-five'), (9106, 33368, 'thirty-three thousand three hundred sixty-eight'), (9107, 93229, 'ninety-three thousand two hundred twenty-nine'), (9108, 22248, 'twenty-two thousand two hundred forty-eight'), (9109, 94024, 'ninety-four thousand twenty-four'), (9110, 76816, 'seventy-six thousand eight hundred sixteen'), (9111, 8189, 'eight thousand one hundred eighty-nine'), (9112, 14797, 'fourteen thousand seven hundred ninety-seven'), (9113, 32570, 'thirty-two thousand five hundred seventy'), (9114, 9894, 'nine thousand eight hundred ninety-four'), (9115, 68941, 'sixty-eight thousand nine hundred forty-one'), (9116, 27996, 'twenty-seven thousand nine hundred ninety-six'), (9117, 35583, 'thirty-five thousand five hundred eighty-three'), (9118, 25430, 'twenty-five thousand four hundred thirty'), (9119, 22255, 'twenty-two thousand two hundred fifty-five'), (9120, 58894, 'fifty-eight thousand eight hundred ninety-four'), (9121, 24066, 'twenty-four thousand sixty-six'), (9122, 38320, 'thirty-eight thousand three hundred twenty'), (9123, 10351, 'ten thousand three hundred fifty-one'), (9124, 8349, 'eight thousand three hundred forty-nine'), (9125, 79192, 'seventy-nine thousand one hundred ninety-two'), (9126, 11116, 'eleven thousand one hundred sixteen'), (9127, 8725, 'eight thousand seven hundred twenty-five'), (9128, 65492, 'sixty-five thousand four hundred ninety-two'), (9129, 37008, 'thirty-seven thousand eight'), (9130, 28614, 'twenty-eight thousand six hundred fourteen'), (9131, 2083, 'two thousand eighty-three'), (9132, 15522, 'fifteen thousand five hundred twenty-two'), (9133, 37053, 'thirty-seven thousand fifty-three'), (9134, 54309, 'fifty-four thousand three hundred nine'), (9135, 56198, 'fifty-six thousand one hundred ninety-eight'), (9136, 11354, 'eleven thousand three hundred fifty-four'), (9137, 32381, 'thirty-two thousand three hundred eighty-one'), (9138, 11379, 'eleven thousand three hundred seventy-nine'), (9139, 79715, 'seventy-nine thousand seven hundred fifteen'), (9140, 99040, 'ninety-nine thousand forty'), (9141, 42907, 'forty-two thousand nine hundred seven'), (9142, 97582, 'ninety-seven thousand five hundred eighty-two'), (9143, 26920, 'twenty-six thousand nine hundred twenty'), (9144, 14972, 'fourteen thousand nine hundred seventy-two'), (9145, 99929, 'ninety-nine thousand nine hundred twenty-nine'), (9146, 18113, 'eighteen thousand one hundred thirteen'), (9147, 48729, 'forty-eight thousand seven hundred twenty-nine'), (9148, 38634, 'thirty-eight thousand six hundred thirty-four'), (9149, 36178, 'thirty-six thousand one hundred seventy-eight'), (9150, 20243, 'twenty thousand two hundred forty-three'), (9151, 42704, 'forty-two thousand seven hundred four'), (9152, 18710, 'eighteen thousand seven hundred ten'), (9153, 16143, 'sixteen thousand one hundred forty-three'), (9154, 32009, 'thirty-two thousand nine'), (9155, 63727, 'sixty-three thousand seven hundred twenty-seven'), (9156, 53242, 'fifty-three thousand two hundred forty-two'), (9157, 3236, 'three thousand two hundred thirty-six'), (9158, 55435, 'fifty-five thousand four hundred thirty-five'), (9159, 77610, 'seventy-seven thousand six hundred ten'), (9160, 1072, 'one thousand seventy-two'), (9161, 95288, 'ninety-five thousand two hundred eighty-eight'), (9162, 64213, 'sixty-four thousand two hundred thirteen'), (9163, 92749, 'ninety-two thousand seven hundred forty-nine'), (9164, 31485, 'thirty-one thousand four hundred eighty-five'), (9165, 22927, 'twenty-two thousand nine hundred twenty-seven'), (9166, 89768, 'eighty-nine thousand seven hundred sixty-eight'), (9167, 10867, 'ten thousand eight hundred sixty-seven'), (9168, 11046, 'eleven thousand forty-six'), (9169, 98054, 'ninety-eight thousand fifty-four'), (9170, 11549, 'eleven thousand five hundred forty-nine'), (9171, 67832, 'sixty-seven thousand eight hundred thirty-two'), (9172, 2112, 'two thousand one hundred twelve'), (9173, 94490, 'ninety-four thousand four hundred ninety'), (9174, 51480, 'fifty-one thousand four hundred eighty'), (9175, 60796, 'sixty thousand seven hundred ninety-six'), (9176, 26361, 'twenty-six thousand three hundred sixty-one'), (9177, 67022, 'sixty-seven thousand twenty-two'), (9178, 63130, 'sixty-three thousand one hundred thirty'), (9179, 46755, 'forty-six thousand seven hundred fifty-five'), (9180, 21060, 'twenty-one thousand sixty'), (9181, 14523, 'fourteen thousand five hundred twenty-three'), (9182, 82727, 'eighty-two thousand seven hundred twenty-seven'), (9183, 1546, 'one thousand five hundred forty-six'), (9184, 72420, 'seventy-two thousand four hundred twenty'), (9185, 90446, 'ninety thousand four hundred forty-six'), (9186, 2821, 'two thousand eight hundred twenty-one'), (9187, 81558, 'eighty-one thousand five hundred fifty-eight'), (9188, 91643, 'ninety-one thousand six hundred forty-three'), (9189, 41793, 'forty-one thousand seven hundred ninety-three'), (9190, 88071, 'eighty-eight thousand seventy-one'), (9191, 17534, 'seventeen thousand five hundred thirty-four'), (9192, 88129, 'eighty-eight thousand one hundred twenty-nine'), (9193, 80657, 'eighty thousand six hundred fifty-seven'), (9194, 91355, 'ninety-one thousand three hundred fifty-five'), (9195, 23533, 'twenty-three thousand five hundred thirty-three'), (9196, 27599, 'twenty-seven thousand five hundred ninety-nine'), (9197, 72294, 'seventy-two thousand two hundred ninety-four'), (9198, 78603, 'seventy-eight thousand six hundred three'), (9199, 26761, 'twenty-six thousand seven hundred sixty-one'), (9200, 59860, 'fifty-nine thousand eight hundred sixty'), (9201, 50947, 'fifty thousand nine hundred forty-seven'), (9202, 43175, 'forty-three thousand one hundred seventy-five'), (9203, 48134, 'forty-eight thousand one hundred thirty-four'), (9204, 18280, 'eighteen thousand two hundred eighty'), (9205, 35461, 'thirty-five thousand four hundred sixty-one'), (9206, 91273, 'ninety-one thousand two hundred seventy-three'), (9207, 6046, 'six thousand forty-six'), (9208, 90076, 'ninety thousand seventy-six'), (9209, 66903, 'sixty-six thousand nine hundred three'), (9210, 13199, 'thirteen thousand one hundred ninety-nine'), (9211, 83217, 'eighty-three thousand two hundred seventeen'), (9212, 92154, 'ninety-two thousand one hundred fifty-four'), (9213, 38937, 'thirty-eight thousand nine hundred thirty-seven'), (9214, 20628, 'twenty thousand six hundred twenty-eight'), (9215, 62348, 'sixty-two thousand three hundred forty-eight'), (9216, 29919, 'twenty-nine thousand nine hundred nineteen'), (9217, 34281, 'thirty-four thousand two hundred eighty-one'), (9218, 15475, 'fifteen thousand four hundred seventy-five'), (9219, 37942, 'thirty-seven thousand nine hundred forty-two'), (9220, 31341, 'thirty-one thousand three hundred forty-one'), (9221, 59714, 'fifty-nine thousand seven hundred fourteen'), (9222, 33237, 'thirty-three thousand two hundred thirty-seven'), (9223, 70487, 'seventy thousand four hundred eighty-seven'), (9224, 62617, 'sixty-two thousand six hundred seventeen'), (9225, 61349, 'sixty-one thousand three hundred forty-nine'), (9226, 64067, 'sixty-four thousand sixty-seven'), (9227, 65358, 'sixty-five thousand three hundred fifty-eight'), (9228, 88344, 'eighty-eight thousand three hundred forty-four'), (9229, 64528, 'sixty-four thousand five hundred twenty-eight'), (9230, 96716, 'ninety-six thousand seven hundred sixteen'), (9231, 77063, 'seventy-seven thousand sixty-three'), (9232, 75673, 'seventy-five thousand six hundred seventy-three'), (9233, 92475, 'ninety-two thousand four hundred seventy-five'), (9234, 50843, 'fifty thousand eight hundred forty-three'), (9235, 97043, 'ninety-seven thousand forty-three'), (9236, 6072, 'six thousand seventy-two'), (9237, 65314, 'sixty-five thousand three hundred fourteen'), (9238, 82344, 'eighty-two thousand three hundred forty-four'), (9239, 74018, 'seventy-four thousand eighteen'), (9240, 32928, 'thirty-two thousand nine hundred twenty-eight'), (9241, 60082, 'sixty thousand eighty-two'), (9242, 81604, 'eighty-one thousand six hundred four'), (9243, 38115, 'thirty-eight thousand one hundred fifteen'), (9244, 80246, 'eighty thousand two hundred forty-six'), (9245, 50234, 'fifty thousand two hundred thirty-four'), (9246, 8465, 'eight thousand four hundred sixty-five'), (9247, 43140, 'forty-three thousand one hundred forty'), (9248, 17223, 'seventeen thousand two hundred twenty-three'), (9249, 93099, 'ninety-three thousand ninety-nine'), (9250, 70775, 'seventy thousand seven hundred seventy-five'), (9251, 77097, 'seventy-seven thousand ninety-seven'), (9252, 26685, 'twenty-six thousand six hundred eighty-five'), (9253, 84011, 'eighty-four thousand eleven'), (9254, 35749, 'thirty-five thousand seven hundred forty-nine'), (9255, 43137, 'forty-three thousand one hundred thirty-seven'), (9256, 73765, 'seventy-three thousand seven hundred sixty-five'), (9257, 61041, 'sixty-one thousand forty-one'), (9258, 59354, 'fifty-nine thousand three hundred fifty-four'), (9259, 19542, 'nineteen thousand five hundred forty-two'), (9260, 71523, 'seventy-one thousand five hundred twenty-three'), (9261, 2298, 'two thousand two hundred ninety-eight'), (9262, 715, 'seven hundred fifteen'), (9263, 60243, 'sixty thousand two hundred forty-three'), (9264, 32053, 'thirty-two thousand fifty-three'), (9265, 12963, 'twelve thousand nine hundred sixty-three'), (9266, 24250, 'twenty-four thousand two hundred fifty'), (9267, 36631, 'thirty-six thousand six hundred thirty-one'), (9268, 52928, 'fifty-two thousand nine hundred twenty-eight'), (9269, 16333, 'sixteen thousand three hundred thirty-three'), (9270, 82870, 'eighty-two thousand eight hundred seventy'), (9271, 81515, 'eighty-one thousand five hundred fifteen'), (9272, 99191, 'ninety-nine thousand one hundred ninety-one'), (9273, 87415, 'eighty-seven thousand four hundred fifteen'), (9274, 55020, 'fifty-five thousand twenty'), (9275, 25213, 'twenty-five thousand two hundred thirteen'), (9276, 38515, 'thirty-eight thousand five hundred fifteen'), (9277, 56758, 'fifty-six thousand seven hundred fifty-eight'), (9278, 24777, 'twenty-four thousand seven hundred seventy-seven'), (9279, 4780, 'four thousand seven hundred eighty'), (9280, 12336, 'twelve thousand three hundred thirty-six'), (9281, 24419, 'twenty-four thousand four hundred nineteen'), (9282, 29000, 'twenty-nine thousand'), (9283, 26475, 'twenty-six thousand four hundred seventy-five'), (9284, 10365, 'ten thousand three hundred sixty-five'), (9285, 4733, 'four thousand seven hundred thirty-three'), (9286, 62551, 'sixty-two thousand five hundred fifty-one'), (9287, 9207, 'nine thousand two hundred seven'), (9288, 69259, 'sixty-nine thousand two hundred fifty-nine'), (9289, 64025, 'sixty-four thousand twenty-five'), (9290, 79316, 'seventy-nine thousand three hundred sixteen'), (9291, 53916, 'fifty-three thousand nine hundred sixteen'), (9292, 56301, 'fifty-six thousand three hundred one'), (9293, 17156, 'seventeen thousand one hundred fifty-six'), (9294, 81030, 'eighty-one thousand thirty'), (9295, 65931, 'sixty-five thousand nine hundred thirty-one'), (9296, 70204, 'seventy thousand two hundred four'), (9297, 88942, 'eighty-eight thousand nine hundred forty-two'), (9298, 54425, 'fifty-four thousand four hundred twenty-five'), (9299, 45614, 'forty-five thousand six hundred fourteen'), (9300, 33829, 'thirty-three thousand eight hundred twenty-nine'), (9301, 47087, 'forty-seven thousand eighty-seven'), (9302, 89386, 'eighty-nine thousand three hundred eighty-six'), (9303, 80191, 'eighty thousand one hundred ninety-one'), (9304, 52285, 'fifty-two thousand two hundred eighty-five'), (9305, 44795, 'forty-four thousand seven hundred ninety-five'), (9306, 71836, 'seventy-one thousand eight hundred thirty-six'), (9307, 19547, 'nineteen thousand five hundred forty-seven'), (9308, 94144, 'ninety-four thousand one hundred forty-four'), (9309, 50085, 'fifty thousand eighty-five'), (9310, 12091, 'twelve thousand ninety-one'), (9311, 90620, 'ninety thousand six hundred twenty'), (9312, 21667, 'twenty-one thousand six hundred sixty-seven'), (9313, 2828, 'two thousand eight hundred twenty-eight'), (9314, 79979, 'seventy-nine thousand nine hundred seventy-nine'), (9315, 42653, 'forty-two thousand six hundred fifty-three'), (9316, 22651, 'twenty-two thousand six hundred fifty-one'), (9317, 46836, 'forty-six thousand eight hundred thirty-six'), (9318, 6891, 'six thousand eight hundred ninety-one'), (9319, 65648, 'sixty-five thousand six hundred forty-eight'), (9320, 4568, 'four thousand five hundred sixty-eight'), (9321, 70927, 'seventy thousand nine hundred twenty-seven'), (9322, 43772, 'forty-three thousand seven hundred seventy-two'), (9323, 13829, 'thirteen thousand eight hundred twenty-nine'), (9324, 90942, 'ninety thousand nine hundred forty-two'), (9325, 16722, 'sixteen thousand seven hundred twenty-two'), (9326, 70488, 'seventy thousand four hundred eighty-eight'), (9327, 10181, 'ten thousand one hundred eighty-one'), (9328, 51044, 'fifty-one thousand forty-four'), (9329, 51516, 'fifty-one thousand five hundred sixteen'), (9330, 22091, 'twenty-two thousand ninety-one'), (9331, 46933, 'forty-six thousand nine hundred thirty-three'), (9332, 13896, 'thirteen thousand eight hundred ninety-six'), (9333, 52569, 'fifty-two thousand five hundred sixty-nine'), (9334, 26404, 'twenty-six thousand four hundred four'), (9335, 65553, 'sixty-five thousand five hundred fifty-three'), (9336, 7091, 'seven thousand ninety-one'), (9337, 53998, 'fifty-three thousand nine hundred ninety-eight'), (9338, 80480, 'eighty thousand four hundred eighty'), (9339, 73810, 'seventy-three thousand eight hundred ten'), (9340, 14807, 'fourteen thousand eight hundred seven'), (9341, 47446, 'forty-seven thousand four hundred forty-six'), (9342, 94755, 'ninety-four thousand seven hundred fifty-five'), (9343, 41874, 'forty-one thousand eight hundred seventy-four'), (9344, 49840, 'forty-nine thousand eight hundred forty'), (9345, 98442, 'ninety-eight thousand four hundred forty-two'), (9346, 52772, 'fifty-two thousand seven hundred seventy-two'), (9347, 29363, 'twenty-nine thousand three hundred sixty-three'), (9348, 22819, 'twenty-two thousand eight hundred nineteen'), (9349, 70973, 'seventy thousand nine hundred seventy-three'), (9350, 83032, 'eighty-three thousand thirty-two'), (9351, 22199, 'twenty-two thousand one hundred ninety-nine'), (9352, 59295, 'fifty-nine thousand two hundred ninety-five'), (9353, 51235, 'fifty-one thousand two hundred thirty-five'), (9354, 70910, 'seventy thousand nine hundred ten'), (9355, 30627, 'thirty thousand six hundred twenty-seven'), (9356, 30518, 'thirty thousand five hundred eighteen'), (9357, 92969, 'ninety-two thousand nine hundred sixty-nine'), (9358, 25130, 'twenty-five thousand one hundred thirty'), (9359, 54858, 'fifty-four thousand eight hundred fifty-eight'), (9360, 1656, 'one thousand six hundred fifty-six'), (9361, 96248, 'ninety-six thousand two hundred forty-eight'), (9362, 55331, 'fifty-five thousand three hundred thirty-one'), (9363, 23849, 'twenty-three thousand eight hundred forty-nine'), (9364, 68780, 'sixty-eight thousand seven hundred eighty'), (9365, 68674, 'sixty-eight thousand six hundred seventy-four'), (9366, 9263, 'nine thousand two hundred sixty-three'), (9367, 15001, 'fifteen thousand one'), (9368, 44927, 'forty-four thousand nine hundred twenty-seven'), (9369, 74966, 'seventy-four thousand nine hundred sixty-six'), (9370, 77659, 'seventy-seven thousand six hundred fifty-nine'), (9371, 16585, 'sixteen thousand five hundred eighty-five'), (9372, 70397, 'seventy thousand three hundred ninety-seven'), (9373, 54297, 'fifty-four thousand two hundred ninety-seven'), (9374, 16079, 'sixteen thousand seventy-nine'), (9375, 57305, 'fifty-seven thousand three hundred five'), (9376, 28710, 'twenty-eight thousand seven hundred ten'), (9377, 72838, 'seventy-two thousand eight hundred thirty-eight'), (9378, 65613, 'sixty-five thousand six hundred thirteen'), (9379, 2299, 'two thousand two hundred ninety-nine'), (9380, 81974, 'eighty-one thousand nine hundred seventy-four'), (9381, 74535, 'seventy-four thousand five hundred thirty-five'), (9382, 92645, 'ninety-two thousand six hundred forty-five'), (9383, 46704, 'forty-six thousand seven hundred four'), (9384, 87040, 'eighty-seven thousand forty'), (9385, 17892, 'seventeen thousand eight hundred ninety-two'), (9386, 17587, 'seventeen thousand five hundred eighty-seven'), (9387, 46374, 'forty-six thousand three hundred seventy-four'), (9388, 33874, 'thirty-three thousand eight hundred seventy-four'), (9389, 35921, 'thirty-five thousand nine hundred twenty-one'), (9390, 34701, 'thirty-four thousand seven hundred one'), (9391, 69836, 'sixty-nine thousand eight hundred thirty-six'), (9392, 25533, 'twenty-five thousand five hundred thirty-three'), (9393, 24734, 'twenty-four thousand seven hundred thirty-four'), (9394, 93359, 'ninety-three thousand three hundred fifty-nine'), (9395, 85681, 'eighty-five thousand six hundred eighty-one'), (9396, 83898, 'eighty-three thousand eight hundred ninety-eight'), (9397, 83847, 'eighty-three thousand eight hundred forty-seven'), (9398, 91137, 'ninety-one thousand one hundred thirty-seven'), (9399, 39397, 'thirty-nine thousand three hundred ninety-seven'), (9400, 54919, 'fifty-four thousand nine hundred nineteen'), (9401, 51388, 'fifty-one thousand three hundred eighty-eight'), (9402, 2759, 'two thousand seven hundred fifty-nine'), (9403, 50512, 'fifty thousand five hundred twelve'), (9404, 91961, 'ninety-one thousand nine hundred sixty-one'), (9405, 25773, 'twenty-five thousand seven hundred seventy-three'), (9406, 90873, 'ninety thousand eight hundred seventy-three'), (9407, 48072, 'forty-eight thousand seventy-two'), (9408, 76197, 'seventy-six thousand one hundred ninety-seven'), (9409, 23501, 'twenty-three thousand five hundred one'), (9410, 15196, 'fifteen thousand one hundred ninety-six'), (9411, 92399, 'ninety-two thousand three hundred ninety-nine'), (9412, 97769, 'ninety-seven thousand seven hundred sixty-nine'), (9413, 27952, 'twenty-seven thousand nine hundred fifty-two'), (9414, 11128, 'eleven thousand one hundred twenty-eight'), (9415, 63811, 'sixty-three thousand eight hundred eleven'), (9416, 70663, 'seventy thousand six hundred sixty-three'), (9417, 95007, 'ninety-five thousand seven'), (9418, 58978, 'fifty-eight thousand nine hundred seventy-eight'), (9419, 31954, 'thirty-one thousand nine hundred fifty-four'), (9420, 81219, 'eighty-one thousand two hundred nineteen'), (9421, 5188, 'five thousand one hundred eighty-eight'), (9422, 7825, 'seven thousand eight hundred twenty-five'), (9423, 9196, 'nine thousand one hundred ninety-six'), (9424, 86791, 'eighty-six thousand seven hundred ninety-one'), (9425, 29721, 'twenty-nine thousand seven hundred twenty-one'), (9426, 12847, 'twelve thousand eight hundred forty-seven'), (9427, 99213, 'ninety-nine thousand two hundred thirteen'), (9428, 66885, 'sixty-six thousand eight hundred eighty-five'), (9429, 42654, 'forty-two thousand six hundred fifty-four'), (9430, 20906, 'twenty thousand nine hundred six'), (9431, 62821, 'sixty-two thousand eight hundred twenty-one'), (9432, 75368, 'seventy-five thousand three hundred sixty-eight'), (9433, 49370, 'forty-nine thousand three hundred seventy'), (9434, 39473, 'thirty-nine thousand four hundred seventy-three'), (9435, 9521, 'nine thousand five hundred twenty-one'), (9436, 89273, 'eighty-nine thousand two hundred seventy-three'), (9437, 12641, 'twelve thousand six hundred forty-one'), (9438, 41305, 'forty-one thousand three hundred five'), (9439, 31247, 'thirty-one thousand two hundred forty-seven'), (9440, 81295, 'eighty-one thousand two hundred ninety-five'), (9441, 86702, 'eighty-six thousand seven hundred two'), (9442, 58812, 'fifty-eight thousand eight hundred twelve'), (9443, 94537, 'ninety-four thousand five hundred thirty-seven'), (9444, 27049, 'twenty-seven thousand forty-nine'), (9445, 17031, 'seventeen thousand thirty-one'), (9446, 69314, 'sixty-nine thousand three hundred fourteen'), (9447, 23716, 'twenty-three thousand seven hundred sixteen'), (9448, 76076, 'seventy-six thousand seventy-six'), (9449, 2717, 'two thousand seven hundred seventeen'), (9450, 44747, 'forty-four thousand seven hundred forty-seven'), (9451, 53340, 'fifty-three thousand three hundred forty'), (9452, 95746, 'ninety-five thousand seven hundred forty-six'), (9453, 71187, 'seventy-one thousand one hundred eighty-seven'), (9454, 7917, 'seven thousand nine hundred seventeen'), (9455, 28789, 'twenty-eight thousand seven hundred eighty-nine'), (9456, 60796, 'sixty thousand seven hundred ninety-six'), (9457, 81345, 'eighty-one thousand three hundred forty-five'), (9458, 9391, 'nine thousand three hundred ninety-one'), (9459, 64031, 'sixty-four thousand thirty-one'), (9460, 55265, 'fifty-five thousand two hundred sixty-five'), (9461, 34927, 'thirty-four thousand nine hundred twenty-seven'), (9462, 41428, 'forty-one thousand four hundred twenty-eight'), (9463, 83770, 'eighty-three thousand seven hundred seventy'), (9464, 70159, 'seventy thousand one hundred fifty-nine'), (9465, 18267, 'eighteen thousand two hundred sixty-seven'), (9466, 39244, 'thirty-nine thousand two hundred forty-four'), (9467, 44228, 'forty-four thousand two hundred twenty-eight'), (9468, 1947, 'one thousand nine hundred forty-seven'), (9469, 72422, 'seventy-two thousand four hundred twenty-two'), (9470, 53802, 'fifty-three thousand eight hundred two'), (9471, 64829, 'sixty-four thousand eight hundred twenty-nine'), (9472, 6289, 'six thousand two hundred eighty-nine'), (9473, 62878, 'sixty-two thousand eight hundred seventy-eight'), (9474, 22415, 'twenty-two thousand four hundred fifteen'), (9475, 69964, 'sixty-nine thousand nine hundred sixty-four'), (9476, 59869, 'fifty-nine thousand eight hundred sixty-nine'), (9477, 2433, 'two thousand four hundred thirty-three'), (9478, 35295, 'thirty-five thousand two hundred ninety-five'), (9479, 44059, 'forty-four thousand fifty-nine'), (9480, 49410, 'forty-nine thousand four hundred ten'), (9481, 10316, 'ten thousand three hundred sixteen'), (9482, 11864, 'eleven thousand eight hundred sixty-four'), (9483, 45783, 'forty-five thousand seven hundred eighty-three'), (9484, 71139, 'seventy-one thousand one hundred thirty-nine'), (9485, 64769, 'sixty-four thousand seven hundred sixty-nine'), (9486, 69627, 'sixty-nine thousand six hundred twenty-seven'), (9487, 6160, 'six thousand one hundred sixty'), (9488, 1622, 'one thousand six hundred twenty-two'), (9489, 32963, 'thirty-two thousand nine hundred sixty-three'), (9490, 4482, 'four thousand four hundred eighty-two'), (9491, 65797, 'sixty-five thousand seven hundred ninety-seven'), (9492, 6525, 'six thousand five hundred twenty-five'), (9493, 95289, 'ninety-five thousand two hundred eighty-nine'), (9494, 94277, 'ninety-four thousand two hundred seventy-seven'), (9495, 38195, 'thirty-eight thousand one hundred ninety-five'), (9496, 73136, 'seventy-three thousand one hundred thirty-six'), (9497, 24640, 'twenty-four thousand six hundred forty'), (9498, 50773, 'fifty thousand seven hundred seventy-three'), (9499, 53197, 'fifty-three thousand one hundred ninety-seven'), (9500, 28393, 'twenty-eight thousand three hundred ninety-three'), (9501, 68463, 'sixty-eight thousand four hundred sixty-three'), (9502, 97319, 'ninety-seven thousand three hundred nineteen'), (9503, 7449, 'seven thousand four hundred forty-nine'), (9504, 40053, 'forty thousand fifty-three'), (9505, 92826, 'ninety-two thousand eight hundred twenty-six'), (9506, 92280, 'ninety-two thousand two hundred eighty'), (9507, 66373, 'sixty-six thousand three hundred seventy-three'), (9508, 46904, 'forty-six thousand nine hundred four'), (9509, 36587, 'thirty-six thousand five hundred eighty-seven'), (9510, 24990, 'twenty-four thousand nine hundred ninety'), (9511, 34899, 'thirty-four thousand eight hundred ninety-nine'), (9512, 65838, 'sixty-five thousand eight hundred thirty-eight'), (9513, 37982, 'thirty-seven thousand nine hundred eighty-two'), (9514, 95348, 'ninety-five thousand three hundred forty-eight'), (9515, 99069, 'ninety-nine thousand sixty-nine'), (9516, 19341, 'nineteen thousand three hundred forty-one'), (9517, 34630, 'thirty-four thousand six hundred thirty'), (9518, 62749, 'sixty-two thousand seven hundred forty-nine'), (9519, 54795, 'fifty-four thousand seven hundred ninety-five'), (9520, 65885, 'sixty-five thousand eight hundred eighty-five'), (9521, 42110, 'forty-two thousand one hundred ten'), (9522, 94995, 'ninety-four thousand nine hundred ninety-five'), (9523, 44099, 'forty-four thousand ninety-nine'), (9524, 5023, 'five thousand twenty-three'), (9525, 44432, 'forty-four thousand four hundred thirty-two'), (9526, 58385, 'fifty-eight thousand three hundred eighty-five'), (9527, 27411, 'twenty-seven thousand four hundred eleven'), (9528, 46696, 'forty-six thousand six hundred ninety-six'), (9529, 35288, 'thirty-five thousand two hundred eighty-eight'), (9530, 51650, 'fifty-one thousand six hundred fifty'), (9531, 50346, 'fifty thousand three hundred forty-six'), (9532, 53778, 'fifty-three thousand seven hundred seventy-eight'), (9533, 77104, 'seventy-seven thousand one hundred four'), (9534, 81645, 'eighty-one thousand six hundred forty-five'), (9535, 93730, 'ninety-three thousand seven hundred thirty'), (9536, 53911, 'fifty-three thousand nine hundred eleven'), (9537, 46429, 'forty-six thousand four hundred twenty-nine'), (9538, 912, 'nine hundred twelve'), (9539, 80247, 'eighty thousand two hundred forty-seven'), (9540, 59461, 'fifty-nine thousand four hundred sixty-one'), (9541, 85411, 'eighty-five thousand four hundred eleven'), (9542, 88498, 'eighty-eight thousand four hundred ninety-eight'), (9543, 64667, 'sixty-four thousand six hundred sixty-seven'), (9544, 86721, 'eighty-six thousand seven hundred twenty-one'), (9545, 42294, 'forty-two thousand two hundred ninety-four'), (9546, 95975, 'ninety-five thousand nine hundred seventy-five'), (9547, 85394, 'eighty-five thousand three hundred ninety-four'), (9548, 2596, 'two thousand five hundred ninety-six'), (9549, 15830, 'fifteen thousand eight hundred thirty'), (9550, 11774, 'eleven thousand seven hundred seventy-four'), (9551, 58243, 'fifty-eight thousand two hundred forty-three'), (9552, 49363, 'forty-nine thousand three hundred sixty-three'), (9553, 17763, 'seventeen thousand seven hundred sixty-three'), (9554, 37835, 'thirty-seven thousand eight hundred thirty-five'), (9555, 62394, 'sixty-two thousand three hundred ninety-four'), (9556, 82566, 'eighty-two thousand five hundred sixty-six'), (9557, 9620, 'nine thousand six hundred twenty'), (9558, 43924, 'forty-three thousand nine hundred twenty-four'), (9559, 13939, 'thirteen thousand nine hundred thirty-nine'), (9560, 42034, 'forty-two thousand thirty-four'), (9561, 39386, 'thirty-nine thousand three hundred eighty-six'), (9562, 37292, 'thirty-seven thousand two hundred ninety-two'), (9563, 55768, 'fifty-five thousand seven hundred sixty-eight'), (9564, 12746, 'twelve thousand seven hundred forty-six'), (9565, 15598, 'fifteen thousand five hundred ninety-eight'), (9566, 76861, 'seventy-six thousand eight hundred sixty-one'), (9567, 88958, 'eighty-eight thousand nine hundred fifty-eight'), (9568, 57242, 'fifty-seven thousand two hundred forty-two'), (9569, 53535, 'fifty-three thousand five hundred thirty-five'), (9570, 68429, 'sixty-eight thousand four hundred twenty-nine'), (9571, 94325, 'ninety-four thousand three hundred twenty-five'), (9572, 61897, 'sixty-one thousand eight hundred ninety-seven'), (9573, 56375, 'fifty-six thousand three hundred seventy-five'), (9574, 53383, 'fifty-three thousand three hundred eighty-three'), (9575, 75975, 'seventy-five thousand nine hundred seventy-five'), (9576, 52430, 'fifty-two thousand four hundred thirty'), (9577, 32397, 'thirty-two thousand three hundred ninety-seven'), (9578, 52315, 'fifty-two thousand three hundred fifteen'), (9579, 92937, 'ninety-two thousand nine hundred thirty-seven'), (9580, 97196, 'ninety-seven thousand one hundred ninety-six'), (9581, 51060, 'fifty-one thousand sixty'), (9582, 73173, 'seventy-three thousand one hundred seventy-three'), (9583, 69205, 'sixty-nine thousand two hundred five'), (9584, 72584, 'seventy-two thousand five hundred eighty-four'), (9585, 62794, 'sixty-two thousand seven hundred ninety-four'), (9586, 95094, 'ninety-five thousand ninety-four'), (9587, 93164, 'ninety-three thousand one hundred sixty-four'), (9588, 31782, 'thirty-one thousand seven hundred eighty-two'), (9589, 67414, 'sixty-seven thousand four hundred fourteen'), (9590, 14328, 'fourteen thousand three hundred twenty-eight'), (9591, 28027, 'twenty-eight thousand twenty-seven'), (9592, 36845, 'thirty-six thousand eight hundred forty-five'), (9593, 90582, 'ninety thousand five hundred eighty-two'), (9594, 78397, 'seventy-eight thousand three hundred ninety-seven'), (9595, 32621, 'thirty-two thousand six hundred twenty-one'), (9596, 33893, 'thirty-three thousand eight hundred ninety-three'), (9597, 3035, 'three thousand thirty-five'), (9598, 2249, 'two thousand two hundred forty-nine'), (9599, 28115, 'twenty-eight thousand one hundred fifteen'), (9600, 48283, 'forty-eight thousand two hundred eighty-three'), (9601, 82132, 'eighty-two thousand one hundred thirty-two'), (9602, 35998, 'thirty-five thousand nine hundred ninety-eight'), (9603, 1349, 'one thousand three hundred forty-nine'), (9604, 18482, 'eighteen thousand four hundred eighty-two'), (9605, 8550, 'eight thousand five hundred fifty'), (9606, 41277, 'forty-one thousand two hundred seventy-seven'), (9607, 63595, 'sixty-three thousand five hundred ninety-five'), (9608, 11102, 'eleven thousand one hundred two'), (9609, 75196, 'seventy-five thousand one hundred ninety-six'), (9610, 21415, 'twenty-one thousand four hundred fifteen'), (9611, 62935, 'sixty-two thousand nine hundred thirty-five'), (9612, 60561, 'sixty thousand five hundred sixty-one'), (9613, 42112, 'forty-two thousand one hundred twelve'), (9614, 3546, 'three thousand five hundred forty-six'), (9615, 84965, 'eighty-four thousand nine hundred sixty-five'), (9616, 23021, 'twenty-three thousand twenty-one'), (9617, 11024, 'eleven thousand twenty-four'), (9618, 19148, 'nineteen thousand one hundred forty-eight'), (9619, 62660, 'sixty-two thousand six hundred sixty'), (9620, 66222, 'sixty-six thousand two hundred twenty-two'), (9621, 7150, 'seven thousand one hundred fifty'), (9622, 94115, 'ninety-four thousand one hundred fifteen'), (9623, 79455, 'seventy-nine thousand four hundred fifty-five'), (9624, 66501, 'sixty-six thousand five hundred one'), (9625, 25874, 'twenty-five thousand eight hundred seventy-four'), (9626, 83933, 'eighty-three thousand nine hundred thirty-three'), (9627, 45557, 'forty-five thousand five hundred fifty-seven'), (9628, 42680, 'forty-two thousand six hundred eighty'), (9629, 41739, 'forty-one thousand seven hundred thirty-nine'), (9630, 8693, 'eight thousand six hundred ninety-three'), (9631, 55585, 'fifty-five thousand five hundred eighty-five'), (9632, 38535, 'thirty-eight thousand five hundred thirty-five'), (9633, 21156, 'twenty-one thousand one hundred fifty-six'), (9634, 20406, 'twenty thousand four hundred six'), (9635, 66134, 'sixty-six thousand one hundred thirty-four'), (9636, 52453, 'fifty-two thousand four hundred fifty-three'), (9637, 41268, 'forty-one thousand two hundred sixty-eight'), (9638, 63276, 'sixty-three thousand two hundred seventy-six'), (9639, 87526, 'eighty-seven thousand five hundred twenty-six'), (9640, 90635, 'ninety thousand six hundred thirty-five'), (9641, 97688, 'ninety-seven thousand six hundred eighty-eight'), (9642, 36016, 'thirty-six thousand sixteen'), (9643, 43498, 'forty-three thousand four hundred ninety-eight'), (9644, 22834, 'twenty-two thousand eight hundred thirty-four'), (9645, 9528, 'nine thousand five hundred twenty-eight'), (9646, 74739, 'seventy-four thousand seven hundred thirty-nine'), (9647, 536, 'five hundred thirty-six'), (9648, 77270, 'seventy-seven thousand two hundred seventy'), (9649, 97018, 'ninety-seven thousand eighteen'), (9650, 50645, 'fifty thousand six hundred forty-five'), (9651, 69848, 'sixty-nine thousand eight hundred forty-eight'), (9652, 11415, 'eleven thousand four hundred fifteen'), (9653, 11438, 'eleven thousand four hundred thirty-eight'), (9654, 38760, 'thirty-eight thousand seven hundred sixty'), (9655, 36497, 'thirty-six thousand four hundred ninety-seven'), (9656, 9140, 'nine thousand one hundred forty'), (9657, 29546, 'twenty-nine thousand five hundred forty-six'), (9658, 31898, 'thirty-one thousand eight hundred ninety-eight'), (9659, 25844, 'twenty-five thousand eight hundred forty-four'), (9660, 32481, 'thirty-two thousand four hundred eighty-one'), (9661, 60532, 'sixty thousand five hundred thirty-two'), (9662, 29790, 'twenty-nine thousand seven hundred ninety'), (9663, 74747, 'seventy-four thousand seven hundred forty-seven'), (9664, 58643, 'fifty-eight thousand six hundred forty-three'), (9665, 33744, 'thirty-three thousand seven hundred forty-four'), (9666, 59480, 'fifty-nine thousand four hundred eighty'), (9667, 50128, 'fifty thousand one hundred twenty-eight'), (9668, 70384, 'seventy thousand three hundred eighty-four'), (9669, 7158, 'seven thousand one hundred fifty-eight'), (9670, 80151, 'eighty thousand one hundred fifty-one'), (9671, 24344, 'twenty-four thousand three hundred forty-four'), (9672, 61214, 'sixty-one thousand two hundred fourteen'), (9673, 35741, 'thirty-five thousand seven hundred forty-one'), (9674, 24894, 'twenty-four thousand eight hundred ninety-four'), (9675, 19114, 'nineteen thousand one hundred fourteen'), (9676, 12239, 'twelve thousand two hundred thirty-nine'), (9677, 88554, 'eighty-eight thousand five hundred fifty-four'), (9678, 36293, 'thirty-six thousand two hundred ninety-three'), (9679, 48425, 'forty-eight thousand four hundred twenty-five'), (9680, 99726, 'ninety-nine thousand seven hundred twenty-six'), (9681, 62229, 'sixty-two thousand two hundred twenty-nine'), (9682, 63653, 'sixty-three thousand six hundred fifty-three'), (9683, 15592, 'fifteen thousand five hundred ninety-two'), (9684, 33061, 'thirty-three thousand sixty-one'), (9685, 53447, 'fifty-three thousand four hundred forty-seven'), (9686, 63564, 'sixty-three thousand five hundred sixty-four'), (9687, 57386, 'fifty-seven thousand three hundred eighty-six'), (9688, 81975, 'eighty-one thousand nine hundred seventy-five'), (9689, 35470, 'thirty-five thousand four hundred seventy'), (9690, 98418, 'ninety-eight thousand four hundred eighteen'), (9691, 88402, 'eighty-eight thousand four hundred two'), (9692, 98496, 'ninety-eight thousand four hundred ninety-six'), (9693, 97784, 'ninety-seven thousand seven hundred eighty-four'), (9694, 35214, 'thirty-five thousand two hundred fourteen'), (9695, 42063, 'forty-two thousand sixty-three'), (9696, 76077, 'seventy-six thousand seventy-seven'), (9697, 23088, 'twenty-three thousand eighty-eight'), (9698, 14265, 'fourteen thousand two hundred sixty-five'), (9699, 76827, 'seventy-six thousand eight hundred twenty-seven'), (9700, 27804, 'twenty-seven thousand eight hundred four'), (9701, 53844, 'fifty-three thousand eight hundred forty-four'), (9702, 4007, 'four thousand seven'), (9703, 96952, 'ninety-six thousand nine hundred fifty-two'), (9704, 46585, 'forty-six thousand five hundred eighty-five'), (9705, 83391, 'eighty-three thousand three hundred ninety-one'), (9706, 78111, 'seventy-eight thousand one hundred eleven'), (9707, 80532, 'eighty thousand five hundred thirty-two'), (9708, 43375, 'forty-three thousand three hundred seventy-five'), (9709, 56714, 'fifty-six thousand seven hundred fourteen'), (9710, 57329, 'fifty-seven thousand three hundred twenty-nine'), (9711, 16576, 'sixteen thousand five hundred seventy-six'), (9712, 1329, 'one thousand three hundred twenty-nine'), (9713, 88054, 'eighty-eight thousand fifty-four'), (9714, 70183, 'seventy thousand one hundred eighty-three'), (9715, 70877, 'seventy thousand eight hundred seventy-seven'), (9716, 7748, 'seven thousand seven hundred forty-eight'), (9717, 53011, 'fifty-three thousand eleven'), (9718, 54458, 'fifty-four thousand four hundred fifty-eight'), (9719, 55829, 'fifty-five thousand eight hundred twenty-nine'), (9720, 23875, 'twenty-three thousand eight hundred seventy-five'), (9721, 83438, 'eighty-three thousand four hundred thirty-eight'), (9722, 30843, 'thirty thousand eight hundred forty-three'), (9723, 31460, 'thirty-one thousand four hundred sixty'), (9724, 1279, 'one thousand two hundred seventy-nine'), (9725, 94085, 'ninety-four thousand eighty-five'), (9726, 9956, 'nine thousand nine hundred fifty-six'), (9727, 59878, 'fifty-nine thousand eight hundred seventy-eight'), (9728, 95406, 'ninety-five thousand four hundred six'), (9729, 78322, 'seventy-eight thousand three hundred twenty-two'), (9730, 54152, 'fifty-four thousand one hundred fifty-two'), (9731, 28924, 'twenty-eight thousand nine hundred twenty-four'), (9732, 86051, 'eighty-six thousand fifty-one'), (9733, 54314, 'fifty-four thousand three hundred fourteen'), (9734, 86506, 'eighty-six thousand five hundred six'), (9735, 43503, 'forty-three thousand five hundred three'), (9736, 76407, 'seventy-six thousand four hundred seven'), (9737, 81693, 'eighty-one thousand six hundred ninety-three'), (9738, 68742, 'sixty-eight thousand seven hundred forty-two'), (9739, 93083, 'ninety-three thousand eighty-three'), (9740, 15616, 'fifteen thousand six hundred sixteen'), (9741, 25334, 'twenty-five thousand three hundred thirty-four'), (9742, 16841, 'sixteen thousand eight hundred forty-one'), (9743, 15428, 'fifteen thousand four hundred twenty-eight'), (9744, 11639, 'eleven thousand six hundred thirty-nine'), (9745, 12882, 'twelve thousand eight hundred eighty-two'), (9746, 4539, 'four thousand five hundred thirty-nine'), (9747, 12686, 'twelve thousand six hundred eighty-six'), (9748, 76435, 'seventy-six thousand four hundred thirty-five'), (9749, 87542, 'eighty-seven thousand five hundred forty-two'), (9750, 66329, 'sixty-six thousand three hundred twenty-nine'), (9751, 68697, 'sixty-eight thousand six hundred ninety-seven'), (9752, 61991, 'sixty-one thousand nine hundred ninety-one'), (9753, 30348, 'thirty thousand three hundred forty-eight'), (9754, 45560, 'forty-five thousand five hundred sixty'), (9755, 88732, 'eighty-eight thousand seven hundred thirty-two'), (9756, 51458, 'fifty-one thousand four hundred fifty-eight'), (9757, 24599, 'twenty-four thousand five hundred ninety-nine'), (9758, 72912, 'seventy-two thousand nine hundred twelve'), (9759, 95571, 'ninety-five thousand five hundred seventy-one'), (9760, 20329, 'twenty thousand three hundred twenty-nine'), (9761, 57317, 'fifty-seven thousand three hundred seventeen'), (9762, 81954, 'eighty-one thousand nine hundred fifty-four'), (9763, 62989, 'sixty-two thousand nine hundred eighty-nine'), (9764, 27606, 'twenty-seven thousand six hundred six'), (9765, 57035, 'fifty-seven thousand thirty-five'), (9766, 69996, 'sixty-nine thousand nine hundred ninety-six'), (9767, 44204, 'forty-four thousand two hundred four'), (9768, 69784, 'sixty-nine thousand seven hundred eighty-four'), (9769, 4270, 'four thousand two hundred seventy'), (9770, 82805, 'eighty-two thousand eight hundred five'), (9771, 13843, 'thirteen thousand eight hundred forty-three'), (9772, 65155, 'sixty-five thousand one hundred fifty-five'), (9773, 87772, 'eighty-seven thousand seven hundred seventy-two'), (9774, 22324, 'twenty-two thousand three hundred twenty-four'), (9775, 28212, 'twenty-eight thousand two hundred twelve'), (9776, 3590, 'three thousand five hundred ninety'), (9777, 76740, 'seventy-six thousand seven hundred forty'), (9778, 26033, 'twenty-six thousand thirty-three'), (9779, 70943, 'seventy thousand nine hundred forty-three'), (9780, 78762, 'seventy-eight thousand seven hundred sixty-two'), (9781, 30940, 'thirty thousand nine hundred forty'), (9782, 25141, 'twenty-five thousand one hundred forty-one'), (9783, 70917, 'seventy thousand nine hundred seventeen'), (9784, 75039, 'seventy-five thousand thirty-nine'), (9785, 5772, 'five thousand seven hundred seventy-two'), (9786, 39799, 'thirty-nine thousand seven hundred ninety-nine'), (9787, 64216, 'sixty-four thousand two hundred sixteen'), (9788, 53001, 'fifty-three thousand one'), (9789, 83948, 'eighty-three thousand nine hundred forty-eight'), (9790, 24615, 'twenty-four thousand six hundred fifteen'), (9791, 78344, 'seventy-eight thousand three hundred forty-four'), (9792, 27521, 'twenty-seven thousand five hundred twenty-one'), (9793, 94991, 'ninety-four thousand nine hundred ninety-one'), (9794, 16917, 'sixteen thousand nine hundred seventeen'), (9795, 80476, 'eighty thousand four hundred seventy-six'), (9796, 49562, 'forty-nine thousand five hundred sixty-two'), (9797, 95018, 'ninety-five thousand eighteen'), (9798, 95112, 'ninety-five thousand one hundred twelve'), (9799, 31541, 'thirty-one thousand five hundred forty-one'), (9800, 40264, 'forty thousand two hundred sixty-four'), (9801, 54100, 'fifty-four thousand one hundred'), (9802, 16500, 'sixteen thousand five hundred'), (9803, 95598, 'ninety-five thousand five hundred ninety-eight'), (9804, 8549, 'eight thousand five hundred forty-nine'), (9805, 97901, 'ninety-seven thousand nine hundred one'), (9806, 70092, 'seventy thousand ninety-two'), (9807, 65868, 'sixty-five thousand eight hundred sixty-eight'), (9808, 4120, 'four thousand one hundred twenty'), (9809, 45413, 'forty-five thousand four hundred thirteen'), (9810, 58910, 'fifty-eight thousand nine hundred ten'), (9811, 99750, 'ninety-nine thousand seven hundred fifty'), (9812, 69120, 'sixty-nine thousand one hundred twenty'), (9813, 32266, 'thirty-two thousand two hundred sixty-six'), (9814, 6083, 'six thousand eighty-three'), (9815, 6993, 'six thousand nine hundred ninety-three'), (9816, 35572, 'thirty-five thousand five hundred seventy-two'), (9817, 11700, 'eleven thousand seven hundred'), (9818, 28232, 'twenty-eight thousand two hundred thirty-two'), (9819, 28761, 'twenty-eight thousand seven hundred sixty-one'), (9820, 56504, 'fifty-six thousand five hundred four'), (9821, 65920, 'sixty-five thousand nine hundred twenty'), (9822, 35287, 'thirty-five thousand two hundred eighty-seven'), (9823, 13096, 'thirteen thousand ninety-six'), (9824, 44804, 'forty-four thousand eight hundred four'), (9825, 48610, 'forty-eight thousand six hundred ten'), (9826, 80980, 'eighty thousand nine hundred eighty'), (9827, 12163, 'twelve thousand one hundred sixty-three'), (9828, 52121, 'fifty-two thousand one hundred twenty-one'), (9829, 28802, 'twenty-eight thousand eight hundred two'), (9830, 98320, 'ninety-eight thousand three hundred twenty'), (9831, 38135, 'thirty-eight thousand one hundred thirty-five'), (9832, 75067, 'seventy-five thousand sixty-seven'), (9833, 64249, 'sixty-four thousand two hundred forty-nine'), (9834, 78018, 'seventy-eight thousand eighteen'), (9835, 51877, 'fifty-one thousand eight hundred seventy-seven'), (9836, 74873, 'seventy-four thousand eight hundred seventy-three'), (9837, 18116, 'eighteen thousand one hundred sixteen'), (9838, 12202, 'twelve thousand two hundred two'), (9839, 26133, 'twenty-six thousand one hundred thirty-three'), (9840, 13765, 'thirteen thousand seven hundred sixty-five'), (9841, 39184, 'thirty-nine thousand one hundred eighty-four'), (9842, 57565, 'fifty-seven thousand five hundred sixty-five'), (9843, 41440, 'forty-one thousand four hundred forty'), (9844, 3492, 'three thousand four hundred ninety-two'), (9845, 44020, 'forty-four thousand twenty'), (9846, 44709, 'forty-four thousand seven hundred nine'), (9847, 59773, 'fifty-nine thousand seven hundred seventy-three'), (9848, 89604, 'eighty-nine thousand six hundred four'), (9849, 37881, 'thirty-seven thousand eight hundred eighty-one'), (9850, 5299, 'five thousand two hundred ninety-nine'), (9851, 41217, 'forty-one thousand two hundred seventeen'), (9852, 50078, 'fifty thousand seventy-eight'), (9853, 39677, 'thirty-nine thousand six hundred seventy-seven'), (9854, 25455, 'twenty-five thousand four hundred fifty-five'), (9855, 74369, 'seventy-four thousand three hundred sixty-nine'), (9856, 18940, 'eighteen thousand nine hundred forty'), (9857, 53098, 'fifty-three thousand ninety-eight'), (9858, 88932, 'eighty-eight thousand nine hundred thirty-two'), (9859, 45679, 'forty-five thousand six hundred seventy-nine'), (9860, 61413, 'sixty-one thousand four hundred thirteen'), (9861, 40594, 'forty thousand five hundred ninety-four'), (9862, 77281, 'seventy-seven thousand two hundred eighty-one'), (9863, 75998, 'seventy-five thousand nine hundred ninety-eight'), (9864, 72702, 'seventy-two thousand seven hundred two'), (9865, 3295, 'three thousand two hundred ninety-five'), (9866, 92616, 'ninety-two thousand six hundred sixteen'), (9867, 65642, 'sixty-five thousand six hundred forty-two'), (9868, 57131, 'fifty-seven thousand one hundred thirty-one'), (9869, 58547, 'fifty-eight thousand five hundred forty-seven'), (9870, 88583, 'eighty-eight thousand five hundred eighty-three'), (9871, 59711, 'fifty-nine thousand seven hundred eleven'), (9872, 25812, 'twenty-five thousand eight hundred twelve'), (9873, 75902, 'seventy-five thousand nine hundred two'), (9874, 99458, 'ninety-nine thousand four hundred fifty-eight'), (9875, 10805, 'ten thousand eight hundred five'), (9876, 49524, 'forty-nine thousand five hundred twenty-four'), (9877, 57630, 'fifty-seven thousand six hundred thirty'), (9878, 46295, 'forty-six thousand two hundred ninety-five'), (9879, 79257, 'seventy-nine thousand two hundred fifty-seven'), (9880, 3821, 'three thousand eight hundred twenty-one'), (9881, 94527, 'ninety-four thousand five hundred twenty-seven'), (9882, 90174, 'ninety thousand one hundred seventy-four'), (9883, 65336, 'sixty-five thousand three hundred thirty-six'), (9884, 9558, 'nine thousand five hundred fifty-eight'), (9885, 95116, 'ninety-five thousand one hundred sixteen'), (9886, 5593, 'five thousand five hundred ninety-three'), (9887, 47175, 'forty-seven thousand one hundred seventy-five'), (9888, 82353, 'eighty-two thousand three hundred fifty-three'), (9889, 78374, 'seventy-eight thousand three hundred seventy-four'), (9890, 49833, 'forty-nine thousand eight hundred thirty-three'), (9891, 31965, 'thirty-one thousand nine hundred sixty-five'), (9892, 50490, 'fifty thousand four hundred ninety'), (9893, 18358, 'eighteen thousand three hundred fifty-eight'), (9894, 21924, 'twenty-one thousand nine hundred twenty-four'), (9895, 83905, 'eighty-three thousand nine hundred five'), (9896, 15656, 'fifteen thousand six hundred fifty-six'), (9897, 41036, 'forty-one thousand thirty-six'), (9898, 42128, 'forty-two thousand one hundred twenty-eight'), (9899, 75773, 'seventy-five thousand seven hundred seventy-three'), (9900, 56627, 'fifty-six thousand six hundred twenty-seven'), (9901, 71417, 'seventy-one thousand four hundred seventeen'), (9902, 23768, 'twenty-three thousand seven hundred sixty-eight'), (9903, 88086, 'eighty-eight thousand eighty-six'), (9904, 46849, 'forty-six thousand eight hundred forty-nine'), (9905, 36057, 'thirty-six thousand fifty-seven'), (9906, 83187, 'eighty-three thousand one hundred eighty-seven'), (9907, 55292, 'fifty-five thousand two hundred ninety-two'), (9908, 80397, 'eighty thousand three hundred ninety-seven'), (9909, 29647, 'twenty-nine thousand six hundred forty-seven'), (9910, 50336, 'fifty thousand three hundred thirty-six'), (9911, 74987, 'seventy-four thousand nine hundred eighty-seven'), (9912, 41905, 'forty-one thousand nine hundred five'), (9913, 9432, 'nine thousand four hundred thirty-two'), (9914, 4855, 'four thousand eight hundred fifty-five'), (9915, 7991, 'seven thousand nine hundred ninety-one'), (9916, 13472, 'thirteen thousand four hundred seventy-two'), (9917, 29238, 'twenty-nine thousand two hundred thirty-eight'), (9918, 6738, 'six thousand seven hundred thirty-eight'), (9919, 57081, 'fifty-seven thousand eighty-one'), (9920, 10588, 'ten thousand five hundred eighty-eight'), (9921, 10879, 'ten thousand eight hundred seventy-nine'), (9922, 79359, 'seventy-nine thousand three hundred fifty-nine'), (9923, 98281, 'ninety-eight thousand two hundred eighty-one'), (9924, 67749, 'sixty-seven thousand seven hundred forty-nine'), (9925, 18918, 'eighteen thousand nine hundred eighteen'), (9926, 5137, 'five thousand one hundred thirty-seven'), (9927, 74561, 'seventy-four thousand five hundred sixty-one'), (9928, 80642, 'eighty thousand six hundred forty-two'), (9929, 33164, 'thirty-three thousand one hundred sixty-four'), (9930, 65336, 'sixty-five thousand three hundred thirty-six'), (9931, 3439, 'three thousand four hundred thirty-nine'), (9932, 52804, 'fifty-two thousand eight hundred four'), (9933, 32821, 'thirty-two thousand eight hundred twenty-one'), (9934, 87478, 'eighty-seven thousand four hundred seventy-eight'), (9935, 44868, 'forty-four thousand eight hundred sixty-eight'), (9936, 21660, 'twenty-one thousand six hundred sixty'), (9937, 77320, 'seventy-seven thousand three hundred twenty'), (9938, 8024, 'eight thousand twenty-four'), (9939, 18026, 'eighteen thousand twenty-six'), (9940, 75202, 'seventy-five thousand two hundred two'), (9941, 3285, 'three thousand two hundred eighty-five'), (9942, 37685, 'thirty-seven thousand six hundred eighty-five'), (9943, 31654, 'thirty-one thousand six hundred fifty-four'), (9944, 42470, 'forty-two thousand four hundred seventy'), (9945, 63642, 'sixty-three thousand six hundred forty-two'), (9946, 46964, 'forty-six thousand nine hundred sixty-four'), (9947, 22816, 'twenty-two thousand eight hundred sixteen'), (9948, 80389, 'eighty thousand three hundred eighty-nine'), (9949, 59048, 'fifty-nine thousand forty-eight'), (9950, 13320, 'thirteen thousand three hundred twenty'), (9951, 27617, 'twenty-seven thousand six hundred seventeen'), (9952, 27069, 'twenty-seven thousand sixty-nine'), (9953, 13166, 'thirteen thousand one hundred sixty-six'), (9954, 62500, 'sixty-two thousand five hundred'), (9955, 89697, 'eighty-nine thousand six hundred ninety-seven'), (9956, 94209, 'ninety-four thousand two hundred nine'), (9957, 28971, 'twenty-eight thousand nine hundred seventy-one'), (9958, 23306, 'twenty-three thousand three hundred six'), (9959, 85340, 'eighty-five thousand three hundred forty'), (9960, 88517, 'eighty-eight thousand five hundred seventeen'), (9961, 69535, 'sixty-nine thousand five hundred thirty-five'), (9962, 48865, 'forty-eight thousand eight hundred sixty-five'), (9963, 21321, 'twenty-one thousand three hundred twenty-one'), (9964, 88185, 'eighty-eight thousand one hundred eighty-five'), (9965, 54339, 'fifty-four thousand three hundred thirty-nine'), (9966, 47482, 'forty-seven thousand four hundred eighty-two'), (9967, 51378, 'fifty-one thousand three hundred seventy-eight'), (9968, 42984, 'forty-two thousand nine hundred eighty-four'), (9969, 11213, 'eleven thousand two hundred thirteen'), (9970, 20893, 'twenty thousand eight hundred ninety-three'), (9971, 8304, 'eight thousand three hundred four'), (9972, 82458, 'eighty-two thousand four hundred fifty-eight'), (9973, 67591, 'sixty-seven thousand five hundred ninety-one'), (9974, 32604, 'thirty-two thousand six hundred four'), (9975, 77734, 'seventy-seven thousand seven hundred thirty-four'), (9976, 86587, 'eighty-six thousand five hundred eighty-seven'), (9977, 15574, 'fifteen thousand five hundred seventy-four'), (9978, 6699, 'six thousand six hundred ninety-nine'), (9979, 49970, 'forty-nine thousand nine hundred seventy'), (9980, 32108, 'thirty-two thousand one hundred eight'), (9981, 79519, 'seventy-nine thousand five hundred nineteen'), (9982, 1760, 'one thousand seven hundred sixty'), (9983, 86997, 'eighty-six thousand nine hundred ninety-seven'), (9984, 1514, 'one thousand five hundred fourteen'), (9985, 82448, 'eighty-two thousand four hundred forty-eight'), (9986, 20963, 'twenty thousand nine hundred sixty-three'), (9987, 43593, 'forty-three thousand five hundred ninety-three'), (9988, 52932, 'fifty-two thousand nine hundred thirty-two'), (9989, 22809, 'twenty-two thousand eight hundred nine'), (9990, 2423, 'two thousand four hundred twenty-three'), (9991, 14254, 'fourteen thousand two hundred fifty-four'), (9992, 34857, 'thirty-four thousand eight hundred fifty-seven'), (9993, 38878, 'thirty-eight thousand eight hundred seventy-eight'), (9994, 78264, 'seventy-eight thousand two hundred sixty-four'), (9995, 30166, 'thirty thousand one hundred sixty-six'), (9996, 92097, 'ninety-two thousand ninety-seven'), (9997, 90726, 'ninety thousand seven hundred twenty-six'), (9998, 77552, 'seventy-seven thousand five hundred fifty-two'), (9999, 90712, 'ninety thousand seven hundred twelve'), (10000, 38233, 'thirty-eight thousand two hundred thirty-three'), (10001, 47108, 'forty-seven thousand one hundred eight'), (10002, 12575, 'twelve thousand five hundred seventy-five'), (10003, 41464, 'forty-one thousand four hundred sixty-four'), (10004, 99617, 'ninety-nine thousand six hundred seventeen'), (10005, 47435, 'forty-seven thousand four hundred thirty-five'), (10006, 40042, 'forty thousand forty-two'), (10007, 15138, 'fifteen thousand one hundred thirty-eight'), (10008, 96584, 'ninety-six thousand five hundred eighty-four'), (10009, 61595, 'sixty-one thousand five hundred ninety-five'), (10010, 96037, 'ninety-six thousand thirty-seven'), (10011, 56384, 'fifty-six thousand three hundred eighty-four'), (10012, 86369, 'eighty-six thousand three hundred sixty-nine'), (10013, 87206, 'eighty-seven thousand two hundred six'), (10014, 56057, 'fifty-six thousand fifty-seven'), (10015, 39328, 'thirty-nine thousand three hundred twenty-eight'), (10016, 3104, 'three thousand one hundred four'), (10017, 56656, 'fifty-six thousand six hundred fifty-six'), (10018, 99538, 'ninety-nine thousand five hundred thirty-eight'), (10019, 88851, 'eighty-eight thousand eight hundred fifty-one'), (10020, 42842, 'forty-two thousand eight hundred forty-two'), (10021, 9208, 'nine thousand two hundred eight'), (10022, 51921, 'fifty-one thousand nine hundred twenty-one'), (10023, 74366, 'seventy-four thousand three hundred sixty-six'), (10024, 11710, 'eleven thousand seven hundred ten'), (10025, 59456, 'fifty-nine thousand four hundred fifty-six'), (10026, 28553, 'twenty-eight thousand five hundred fifty-three'), (10027, 35135, 'thirty-five thousand one hundred thirty-five'), (10028, 9698, 'nine thousand six hundred ninety-eight'), (10029, 67917, 'sixty-seven thousand nine hundred seventeen'), (10030, 55651, 'fifty-five thousand six hundred fifty-one'), (10031, 64240, 'sixty-four thousand two hundred forty'), (10032, 4942, 'four thousand nine hundred forty-two'), (10033, 95924, 'ninety-five thousand nine hundred twenty-four'), (10034, 93532, 'ninety-three thousand five hundred thirty-two'), (10035, 42543, 'forty-two thousand five hundred forty-three'), (10036, 4791, 'four thousand seven hundred ninety-one'), (10037, 2016, 'two thousand sixteen'), (10038, 74850, 'seventy-four thousand eight hundred fifty'), (10039, 84055, 'eighty-four thousand fifty-five'), (10040, 58297, 'fifty-eight thousand two hundred ninety-seven'), (10041, 11878, 'eleven thousand eight hundred seventy-eight'), (10042, 15505, 'fifteen thousand five hundred five'), (10043, 26858, 'twenty-six thousand eight hundred fifty-eight'), (10044, 93023, 'ninety-three thousand twenty-three'), (10045, 49549, 'forty-nine thousand five hundred forty-nine'), (10046, 41047, 'forty-one thousand forty-seven'), (10047, 69762, 'sixty-nine thousand seven hundred sixty-two'), (10048, 26771, 'twenty-six thousand seven hundred seventy-one'), (10049, 24496, 'twenty-four thousand four hundred ninety-six'), (10050, 10114, 'ten thousand one hundred fourteen'), (10051, 69017, 'sixty-nine thousand seventeen'), (10052, 68461, 'sixty-eight thousand four hundred sixty-one'), (10053, 85812, 'eighty-five thousand eight hundred twelve'), (10054, 76224, 'seventy-six thousand two hundred twenty-four'), (10055, 26925, 'twenty-six thousand nine hundred twenty-five'), (10056, 11490, 'eleven thousand four hundred ninety'), (10057, 29995, 'twenty-nine thousand nine hundred ninety-five'), (10058, 62768, 'sixty-two thousand seven hundred sixty-eight'), (10059, 36851, 'thirty-six thousand eight hundred fifty-one'), (10060, 56606, 'fifty-six thousand six hundred six'), (10061, 27400, 'twenty-seven thousand four hundred'), (10062, 7682, 'seven thousand six hundred eighty-two'), (10063, 8759, 'eight thousand seven hundred fifty-nine'), (10064, 40218, 'forty thousand two hundred eighteen'), (10065, 59475, 'fifty-nine thousand four hundred seventy-five'), (10066, 62438, 'sixty-two thousand four hundred thirty-eight'), (10067, 73426, 'seventy-three thousand four hundred twenty-six'), (10068, 14902, 'fourteen thousand nine hundred two'), (10069, 96269, 'ninety-six thousand two hundred sixty-nine'), (10070, 95485, 'ninety-five thousand four hundred eighty-five'), (10071, 48764, 'forty-eight thousand seven hundred sixty-four'), (10072, 8358, 'eight thousand three hundred fifty-eight'), (10073, 41444, 'forty-one thousand four hundred forty-four'), (10074, 2920, 'two thousand nine hundred twenty'), (10075, 77790, 'seventy-seven thousand seven hundred ninety'), (10076, 33153, 'thirty-three thousand one hundred fifty-three'), (10077, 75841, 'seventy-five thousand eight hundred forty-one'), (10078, 14008, 'fourteen thousand eight'), (10079, 69256, 'sixty-nine thousand two hundred fifty-six'), (10080, 66827, 'sixty-six thousand eight hundred twenty-seven'), (10081, 37227, 'thirty-seven thousand two hundred twenty-seven'), (10082, 19492, 'nineteen thousand four hundred ninety-two'), (10083, 79671, 'seventy-nine thousand six hundred seventy-one'), (10084, 79054, 'seventy-nine thousand fifty-four'), (10085, 98994, 'ninety-eight thousand nine hundred ninety-four'), (10086, 96096, 'ninety-six thousand ninety-six'), (10087, 80967, 'eighty thousand nine hundred sixty-seven'), (10088, 48633, 'forty-eight thousand six hundred thirty-three'), (10089, 38057, 'thirty-eight thousand fifty-seven'), (10090, 63749, 'sixty-three thousand seven hundred forty-nine'), (10091, 55860, 'fifty-five thousand eight hundred sixty'), (10092, 82701, 'eighty-two thousand seven hundred one'), (10093, 50344, 'fifty thousand three hundred forty-four'), (10094, 47347, 'forty-seven thousand three hundred forty-seven'), (10095, 143, 'one hundred forty-three'), (10096, 59282, 'fifty-nine thousand two hundred eighty-two'), (10097, 46944, 'forty-six thousand nine hundred forty-four'), (10098, 20309, 'twenty thousand three hundred nine'), (10099, 76981, 'seventy-six thousand nine hundred eighty-one'), (10100, 89378, 'eighty-nine thousand three hundred seventy-eight'), (10101, 11902, 'eleven thousand nine hundred two'), (10102, 21903, 'twenty-one thousand nine hundred three'), (10103, 10377, 'ten thousand three hundred seventy-seven'), (10104, 88499, 'eighty-eight thousand four hundred ninety-nine'), (10105, 21575, 'twenty-one thousand five hundred seventy-five'), (10106, 93190, 'ninety-three thousand one hundred ninety'), (10107, 61166, 'sixty-one thousand one hundred sixty-six'), (10108, 99043, 'ninety-nine thousand forty-three'), (10109, 41545, 'forty-one thousand five hundred forty-five'), (10110, 17181, 'seventeen thousand one hundred eighty-one'), (10111, 25942, 'twenty-five thousand nine hundred forty-two'), (10112, 69505, 'sixty-nine thousand five hundred five'), (10113, 74574, 'seventy-four thousand five hundred seventy-four'), (10114, 11019, 'eleven thousand nineteen'), (10115, 39297, 'thirty-nine thousand two hundred ninety-seven'), (10116, 96084, 'ninety-six thousand eighty-four'), (10117, 95688, 'ninety-five thousand six hundred eighty-eight'), (10118, 38350, 'thirty-eight thousand three hundred fifty'), (10119, 8942, 'eight thousand nine hundred forty-two'), (10120, 21936, 'twenty-one thousand nine hundred thirty-six'), (10121, 2361, 'two thousand three hundred sixty-one'), (10122, 70758, 'seventy thousand seven hundred fifty-eight'), (10123, 79416, 'seventy-nine thousand four hundred sixteen'), (10124, 50921, 'fifty thousand nine hundred twenty-one'), (10125, 16709, 'sixteen thousand seven hundred nine'), (10126, 86402, 'eighty-six thousand four hundred two'), (10127, 98444, 'ninety-eight thousand four hundred forty-four'), (10128, 81170, 'eighty-one thousand one hundred seventy'), (10129, 67494, 'sixty-seven thousand four hundred ninety-four'), (10130, 68126, 'sixty-eight thousand one hundred twenty-six'), (10131, 29829, 'twenty-nine thousand eight hundred twenty-nine'), (10132, 7464, 'seven thousand four hundred sixty-four'), (10133, 63402, 'sixty-three thousand four hundred two'), (10134, 32300, 'thirty-two thousand three hundred'), (10135, 79483, 'seventy-nine thousand four hundred eighty-three'), (10136, 48425, 'forty-eight thousand four hundred twenty-five'), (10137, 17150, 'seventeen thousand one hundred fifty'), (10138, 19168, 'nineteen thousand one hundred sixty-eight'), (10139, 67698, 'sixty-seven thousand six hundred ninety-eight'), (10140, 75516, 'seventy-five thousand five hundred sixteen'), (10141, 57137, 'fifty-seven thousand one hundred thirty-seven'), (10142, 80464, 'eighty thousand four hundred sixty-four'), (10143, 80916, 'eighty thousand nine hundred sixteen'), (10144, 42731, 'forty-two thousand seven hundred thirty-one'), (10145, 56972, 'fifty-six thousand nine hundred seventy-two'), (10146, 70343, 'seventy thousand three hundred forty-three'), (10147, 9097, 'nine thousand ninety-seven'), (10148, 32219, 'thirty-two thousand two hundred nineteen'), (10149, 55485, 'fifty-five thousand four hundred eighty-five'), (10150, 11369, 'eleven thousand three hundred sixty-nine'), (10151, 77631, 'seventy-seven thousand six hundred thirty-one'), (10152, 53803, 'fifty-three thousand eight hundred three'), (10153, 69533, 'sixty-nine thousand five hundred thirty-three'), (10154, 41671, 'forty-one thousand six hundred seventy-one'), (10155, 1864, 'one thousand eight hundred sixty-four'), (10156, 90970, 'ninety thousand nine hundred seventy'), (10157, 35812, 'thirty-five thousand eight hundred twelve'), (10158, 8564, 'eight thousand five hundred sixty-four'), (10159, 39889, 'thirty-nine thousand eight hundred eighty-nine'), (10160, 19612, 'nineteen thousand six hundred twelve'), (10161, 52799, 'fifty-two thousand seven hundred ninety-nine'), (10162, 98925, 'ninety-eight thousand nine hundred twenty-five'), (10163, 8366, 'eight thousand three hundred sixty-six'), (10164, 85195, 'eighty-five thousand one hundred ninety-five'), (10165, 51871, 'fifty-one thousand eight hundred seventy-one'), (10166, 65532, 'sixty-five thousand five hundred thirty-two'), (10167, 5273, 'five thousand two hundred seventy-three'), (10168, 88582, 'eighty-eight thousand five hundred eighty-two'), (10169, 96024, 'ninety-six thousand twenty-four'), (10170, 57607, 'fifty-seven thousand six hundred seven'), (10171, 98123, 'ninety-eight thousand one hundred twenty-three'), (10172, 97314, 'ninety-seven thousand three hundred fourteen'), (10173, 43727, 'forty-three thousand seven hundred twenty-seven'), (10174, 94052, 'ninety-four thousand fifty-two'), (10175, 85173, 'eighty-five thousand one hundred seventy-three'), (10176, 97991, 'ninety-seven thousand nine hundred ninety-one'), (10177, 92052, 'ninety-two thousand fifty-two'), (10178, 75865, 'seventy-five thousand eight hundred sixty-five'), (10179, 72141, 'seventy-two thousand one hundred forty-one'), (10180, 55382, 'fifty-five thousand three hundred eighty-two'), (10181, 95116, 'ninety-five thousand one hundred sixteen'), (10182, 88060, 'eighty-eight thousand sixty'), (10183, 487, 'four hundred eighty-seven'), (10184, 4659, 'four thousand six hundred fifty-nine'), (10185, 80149, 'eighty thousand one hundred forty-nine'), (10186, 16930, 'sixteen thousand nine hundred thirty'), (10187, 10589, 'ten thousand five hundred eighty-nine'), (10188, 84137, 'eighty-four thousand one hundred thirty-seven'), (10189, 80164, 'eighty thousand one hundred sixty-four'), (10190, 10661, 'ten thousand six hundred sixty-one'), (10191, 76568, 'seventy-six thousand five hundred sixty-eight'), (10192, 92075, 'ninety-two thousand seventy-five'), (10193, 26674, 'twenty-six thousand six hundred seventy-four'), (10194, 68303, 'sixty-eight thousand three hundred three'), (10195, 75931, 'seventy-five thousand nine hundred thirty-one'), (10196, 8152, 'eight thousand one hundred fifty-two'), (10197, 33799, 'thirty-three thousand seven hundred ninety-nine'), (10198, 21738, 'twenty-one thousand seven hundred thirty-eight'), (10199, 5672, 'five thousand six hundred seventy-two'), (10200, 99898, 'ninety-nine thousand eight hundred ninety-eight'), (10201, 16033, 'sixteen thousand thirty-three'), (10202, 3964, 'three thousand nine hundred sixty-four'), (10203, 24986, 'twenty-four thousand nine hundred eighty-six'), (10204, 39973, 'thirty-nine thousand nine hundred seventy-three'), (10205, 70562, 'seventy thousand five hundred sixty-two'), (10206, 66954, 'sixty-six thousand nine hundred fifty-four'), (10207, 99968, 'ninety-nine thousand nine hundred sixty-eight'), (10208, 91741, 'ninety-one thousand seven hundred forty-one'), (10209, 66459, 'sixty-six thousand four hundred fifty-nine'), (10210, 90387, 'ninety thousand three hundred eighty-seven'), (10211, 12882, 'twelve thousand eight hundred eighty-two'), (10212, 94967, 'ninety-four thousand nine hundred sixty-seven'), (10213, 29799, 'twenty-nine thousand seven hundred ninety-nine'), (10214, 918, 'nine hundred eighteen'), (10215, 86300, 'eighty-six thousand three hundred'), (10216, 29489, 'twenty-nine thousand four hundred eighty-nine'), (10217, 26758, 'twenty-six thousand seven hundred fifty-eight'), (10218, 83512, 'eighty-three thousand five hundred twelve'), (10219, 59831, 'fifty-nine thousand eight hundred thirty-one'), (10220, 33960, 'thirty-three thousand nine hundred sixty'), (10221, 10857, 'ten thousand eight hundred fifty-seven'), (10222, 79734, 'seventy-nine thousand seven hundred thirty-four'), (10223, 91431, 'ninety-one thousand four hundred thirty-one'), (10224, 85389, 'eighty-five thousand three hundred eighty-nine'), (10225, 9711, 'nine thousand seven hundred eleven'), (10226, 817, 'eight hundred seventeen'), (10227, 5281, 'five thousand two hundred eighty-one'), (10228, 18861, 'eighteen thousand eight hundred sixty-one'), (10229, 42662, 'forty-two thousand six hundred sixty-two'), (10230, 52754, 'fifty-two thousand seven hundred fifty-four'), (10231, 99160, 'ninety-nine thousand one hundred sixty'), (10232, 51631, 'fifty-one thousand six hundred thirty-one'), (10233, 19758, 'nineteen thousand seven hundred fifty-eight'), (10234, 1128, 'one thousand one hundred twenty-eight'), (10235, 13216, 'thirteen thousand two hundred sixteen'), (10236, 40414, 'forty thousand four hundred fourteen'), (10237, 68008, 'sixty-eight thousand eight'), (10238, 55273, 'fifty-five thousand two hundred seventy-three'), (10239, 57731, 'fifty-seven thousand seven hundred thirty-one'), (10240, 7753, 'seven thousand seven hundred fifty-three'), (10241, 84248, 'eighty-four thousand two hundred forty-eight'), (10242, 73512, 'seventy-three thousand five hundred twelve'), (10243, 5151, 'five thousand one hundred fifty-one'), (10244, 22687, 'twenty-two thousand six hundred eighty-seven'), (10245, 87087, 'eighty-seven thousand eighty-seven'), (10246, 96113, 'ninety-six thousand one hundred thirteen'), (10247, 38032, 'thirty-eight thousand thirty-two'), (10248, 37952, 'thirty-seven thousand nine hundred fifty-two'), (10249, 29910, 'twenty-nine thousand nine hundred ten'), (10250, 73037, 'seventy-three thousand thirty-seven'), (10251, 37533, 'thirty-seven thousand five hundred thirty-three'), (10252, 25552, 'twenty-five thousand five hundred fifty-two'), (10253, 95890, 'ninety-five thousand eight hundred ninety'), (10254, 73384, 'seventy-three thousand three hundred eighty-four'), (10255, 28153, 'twenty-eight thousand one hundred fifty-three'), (10256, 73075, 'seventy-three thousand seventy-five'), (10257, 37272, 'thirty-seven thousand two hundred seventy-two'), (10258, 76836, 'seventy-six thousand eight hundred thirty-six'), (10259, 47128, 'forty-seven thousand one hundred twenty-eight'), (10260, 44580, 'forty-four thousand five hundred eighty'), (10261, 25791, 'twenty-five thousand seven hundred ninety-one'), (10262, 75732, 'seventy-five thousand seven hundred thirty-two'), (10263, 34477, 'thirty-four thousand four hundred seventy-seven'), (10264, 17554, 'seventeen thousand five hundred fifty-four'), (10265, 97767, 'ninety-seven thousand seven hundred sixty-seven'), (10266, 26958, 'twenty-six thousand nine hundred fifty-eight'), (10267, 7899, 'seven thousand eight hundred ninety-nine'), (10268, 61767, 'sixty-one thousand seven hundred sixty-seven'), (10269, 91063, 'ninety-one thousand sixty-three'), (10270, 33260, 'thirty-three thousand two hundred sixty'), (10271, 6346, 'six thousand three hundred forty-six'), (10272, 15264, 'fifteen thousand two hundred sixty-four'), (10273, 30455, 'thirty thousand four hundred fifty-five'), (10274, 68343, 'sixty-eight thousand three hundred forty-three'), (10275, 42090, 'forty-two thousand ninety'), (10276, 64780, 'sixty-four thousand seven hundred eighty'), (10277, 58562, 'fifty-eight thousand five hundred sixty-two'), (10278, 52566, 'fifty-two thousand five hundred sixty-six'), (10279, 31319, 'thirty-one thousand three hundred nineteen'), (10280, 6021, 'six thousand twenty-one'), (10281, 20805, 'twenty thousand eight hundred five'), (10282, 8022, 'eight thousand twenty-two'), (10283, 50421, 'fifty thousand four hundred twenty-one'), (10284, 7331, 'seven thousand three hundred thirty-one'), (10285, 1475, 'one thousand four hundred seventy-five'), (10286, 47424, 'forty-seven thousand four hundred twenty-four'), (10287, 43754, 'forty-three thousand seven hundred fifty-four'), (10288, 67350, 'sixty-seven thousand three hundred fifty'), (10289, 12017, 'twelve thousand seventeen'), (10290, 22773, 'twenty-two thousand seven hundred seventy-three'), (10291, 46287, 'forty-six thousand two hundred eighty-seven'), (10292, 71061, 'seventy-one thousand sixty-one'), (10293, 52897, 'fifty-two thousand eight hundred ninety-seven'), (10294, 39020, 'thirty-nine thousand twenty'), (10295, 27674, 'twenty-seven thousand six hundred seventy-four'), (10296, 21666, 'twenty-one thousand six hundred sixty-six'), (10297, 37082, 'thirty-seven thousand eighty-two'), (10298, 17733, 'seventeen thousand seven hundred thirty-three'), (10299, 64767, 'sixty-four thousand seven hundred sixty-seven'), (10300, 5043, 'five thousand forty-three'), (10301, 91348, 'ninety-one thousand three hundred forty-eight'), (10302, 17016, 'seventeen thousand sixteen'), (10303, 5728, 'five thousand seven hundred twenty-eight'), (10304, 22891, 'twenty-two thousand eight hundred ninety-one'), (10305, 4838, 'four thousand eight hundred thirty-eight'), (10306, 66294, 'sixty-six thousand two hundred ninety-four'), (10307, 92489, 'ninety-two thousand four hundred eighty-nine'), (10308, 51575, 'fifty-one thousand five hundred seventy-five'), (10309, 37191, 'thirty-seven thousand one hundred ninety-one'), (10310, 87785, 'eighty-seven thousand seven hundred eighty-five'), (10311, 56922, 'fifty-six thousand nine hundred twenty-two'), (10312, 486, 'four hundred eighty-six'), (10313, 48655, 'forty-eight thousand six hundred fifty-five'), (10314, 54416, 'fifty-four thousand four hundred sixteen'), (10315, 12962, 'twelve thousand nine hundred sixty-two'), (10316, 6234, 'six thousand two hundred thirty-four'), (10317, 39580, 'thirty-nine thousand five hundred eighty'), (10318, 78548, 'seventy-eight thousand five hundred forty-eight'), (10319, 56983, 'fifty-six thousand nine hundred eighty-three'), (10320, 70958, 'seventy thousand nine hundred fifty-eight'), (10321, 98896, 'ninety-eight thousand eight hundred ninety-six'), (10322, 68666, 'sixty-eight thousand six hundred sixty-six'), (10323, 67669, 'sixty-seven thousand six hundred sixty-nine'), (10324, 16180, 'sixteen thousand one hundred eighty'), (10325, 17265, 'seventeen thousand two hundred sixty-five'), (10326, 77734, 'seventy-seven thousand seven hundred thirty-four'), (10327, 82137, 'eighty-two thousand one hundred thirty-seven'), (10328, 21674, 'twenty-one thousand six hundred seventy-four'), (10329, 73095, 'seventy-three thousand ninety-five'), (10330, 26810, 'twenty-six thousand eight hundred ten'), (10331, 40933, 'forty thousand nine hundred thirty-three'), (10332, 28879, 'twenty-eight thousand eight hundred seventy-nine'), (10333, 2228, 'two thousand two hundred twenty-eight'), (10334, 12687, 'twelve thousand six hundred eighty-seven'), (10335, 21435, 'twenty-one thousand four hundred thirty-five'), (10336, 11286, 'eleven thousand two hundred eighty-six'), (10337, 41422, 'forty-one thousand four hundred twenty-two'), (10338, 65350, 'sixty-five thousand three hundred fifty'), (10339, 20648, 'twenty thousand six hundred forty-eight'), (10340, 83924, 'eighty-three thousand nine hundred twenty-four'), (10341, 1398, 'one thousand three hundred ninety-eight'), (10342, 19390, 'nineteen thousand three hundred ninety'), (10343, 10477, 'ten thousand four hundred seventy-seven'), (10344, 2545, 'two thousand five hundred forty-five'), (10345, 55331, 'fifty-five thousand three hundred thirty-one'), (10346, 25421, 'twenty-five thousand four hundred twenty-one'), (10347, 9548, 'nine thousand five hundred forty-eight'), (10348, 13150, 'thirteen thousand one hundred fifty'), (10349, 68366, 'sixty-eight thousand three hundred sixty-six'), (10350, 40111, 'forty thousand one hundred eleven'), (10351, 2468, 'two thousand four hundred sixty-eight'), (10352, 75127, 'seventy-five thousand one hundred twenty-seven'), (10353, 72225, 'seventy-two thousand two hundred twenty-five'), (10354, 67024, 'sixty-seven thousand twenty-four'), (10355, 90483, 'ninety thousand four hundred eighty-three'), (10356, 36430, 'thirty-six thousand four hundred thirty'), (10357, 48789, 'forty-eight thousand seven hundred eighty-nine'), (10358, 66398, 'sixty-six thousand three hundred ninety-eight'), (10359, 42686, 'forty-two thousand six hundred eighty-six'), (10360, 57024, 'fifty-seven thousand twenty-four'), (10361, 99842, 'ninety-nine thousand eight hundred forty-two'), (10362, 48014, 'forty-eight thousand fourteen'), (10363, 44062, 'forty-four thousand sixty-two'), (10364, 33789, 'thirty-three thousand seven hundred eighty-nine'), (10365, 40954, 'forty thousand nine hundred fifty-four'), (10366, 67608, 'sixty-seven thousand six hundred eight'), (10367, 70049, 'seventy thousand forty-nine'), (10368, 27817, 'twenty-seven thousand eight hundred seventeen'), (10369, 1078, 'one thousand seventy-eight'), (10370, 8400, 'eight thousand four hundred'), (10371, 76108, 'seventy-six thousand one hundred eight'), (10372, 72883, 'seventy-two thousand eight hundred eighty-three'), (10373, 38984, 'thirty-eight thousand nine hundred eighty-four'), (10374, 72397, 'seventy-two thousand three hundred ninety-seven'), (10375, 23620, 'twenty-three thousand six hundred twenty'), (10376, 22452, 'twenty-two thousand four hundred fifty-two'), (10377, 77334, 'seventy-seven thousand three hundred thirty-four'), (10378, 61498, 'sixty-one thousand four hundred ninety-eight'), (10379, 95522, 'ninety-five thousand five hundred twenty-two'), (10380, 95614, 'ninety-five thousand six hundred fourteen'), (10381, 16085, 'sixteen thousand eighty-five'), (10382, 93566, 'ninety-three thousand five hundred sixty-six'), (10383, 75815, 'seventy-five thousand eight hundred fifteen'), (10384, 34576, 'thirty-four thousand five hundred seventy-six'), (10385, 36145, 'thirty-six thousand one hundred forty-five'), (10386, 18074, 'eighteen thousand seventy-four'), (10387, 84877, 'eighty-four thousand eight hundred seventy-seven'), (10388, 25586, 'twenty-five thousand five hundred eighty-six'), (10389, 78809, 'seventy-eight thousand eight hundred nine'), (10390, 8662, 'eight thousand six hundred sixty-two'), (10391, 29182, 'twenty-nine thousand one hundred eighty-two'), (10392, 88864, 'eighty-eight thousand eight hundred sixty-four'), (10393, 14679, 'fourteen thousand six hundred seventy-nine'), (10394, 91224, 'ninety-one thousand two hundred twenty-four'), (10395, 18697, 'eighteen thousand six hundred ninety-seven'), (10396, 1975, 'one thousand nine hundred seventy-five'), (10397, 35566, 'thirty-five thousand five hundred sixty-six'), (10398, 90649, 'ninety thousand six hundred forty-nine'), (10399, 41587, 'forty-one thousand five hundred eighty-seven'), (10400, 92369, 'ninety-two thousand three hundred sixty-nine'), (10401, 59313, 'fifty-nine thousand three hundred thirteen'), (10402, 92753, 'ninety-two thousand seven hundred fifty-three'), (10403, 67006, 'sixty-seven thousand six'), (10404, 90298, 'ninety thousand two hundred ninety-eight'), (10405, 23566, 'twenty-three thousand five hundred sixty-six'), (10406, 48896, 'forty-eight thousand eight hundred ninety-six'), (10407, 3496, 'three thousand four hundred ninety-six'), (10408, 15665, 'fifteen thousand six hundred sixty-five'), (10409, 77591, 'seventy-seven thousand five hundred ninety-one'), (10410, 41215, 'forty-one thousand two hundred fifteen'), (10411, 75719, 'seventy-five thousand seven hundred nineteen'), (10412, 56052, 'fifty-six thousand fifty-two'), (10413, 63159, 'sixty-three thousand one hundred fifty-nine'), (10414, 37775, 'thirty-seven thousand seven hundred seventy-five'), (10415, 80290, 'eighty thousand two hundred ninety'), (10416, 71632, 'seventy-one thousand six hundred thirty-two'), (10417, 55940, 'fifty-five thousand nine hundred forty'), (10418, 17948, 'seventeen thousand nine hundred forty-eight'), (10419, 61118, 'sixty-one thousand one hundred eighteen'), (10420, 73096, 'seventy-three thousand ninety-six'), (10421, 84122, 'eighty-four thousand one hundred twenty-two'), (10422, 30211, 'thirty thousand two hundred eleven'), (10423, 12525, 'twelve thousand five hundred twenty-five'), (10424, 31874, 'thirty-one thousand eight hundred seventy-four'), (10425, 40188, 'forty thousand one hundred eighty-eight'), (10426, 20263, 'twenty thousand two hundred sixty-three'), (10427, 87825, 'eighty-seven thousand eight hundred twenty-five'), (10428, 14178, 'fourteen thousand one hundred seventy-eight'), (10429, 7006, 'seven thousand six'), (10430, 83573, 'eighty-three thousand five hundred seventy-three'), (10431, 98305, 'ninety-eight thousand three hundred five'), (10432, 47815, 'forty-seven thousand eight hundred fifteen'), (10433, 88362, 'eighty-eight thousand three hundred sixty-two'), (10434, 65333, 'sixty-five thousand three hundred thirty-three'), (10435, 74064, 'seventy-four thousand sixty-four'), (10436, 48996, 'forty-eight thousand nine hundred ninety-six'), (10437, 10622, 'ten thousand six hundred twenty-two'), (10438, 37478, 'thirty-seven thousand four hundred seventy-eight'), (10439, 73908, 'seventy-three thousand nine hundred eight'), (10440, 51870, 'fifty-one thousand eight hundred seventy'), (10441, 53408, 'fifty-three thousand four hundred eight'), (10442, 71735, 'seventy-one thousand seven hundred thirty-five'), (10443, 10872, 'ten thousand eight hundred seventy-two'), (10444, 21056, 'twenty-one thousand fifty-six'), (10445, 45370, 'forty-five thousand three hundred seventy'), (10446, 33759, 'thirty-three thousand seven hundred fifty-nine'), (10447, 79263, 'seventy-nine thousand two hundred sixty-three'), (10448, 28087, 'twenty-eight thousand eighty-seven'), (10449, 70700, 'seventy thousand seven hundred'), (10450, 80511, 'eighty thousand five hundred eleven'), (10451, 85319, 'eighty-five thousand three hundred nineteen'), (10452, 92756, 'ninety-two thousand seven hundred fifty-six'), (10453, 85247, 'eighty-five thousand two hundred forty-seven'), (10454, 16858, 'sixteen thousand eight hundred fifty-eight'), (10455, 10678, 'ten thousand six hundred seventy-eight'), (10456, 77277, 'seventy-seven thousand two hundred seventy-seven'), (10457, 6750, 'six thousand seven hundred fifty'), (10458, 48205, 'forty-eight thousand two hundred five'), (10459, 96825, 'ninety-six thousand eight hundred twenty-five'), (10460, 32918, 'thirty-two thousand nine hundred eighteen'), (10461, 58060, 'fifty-eight thousand sixty'), (10462, 25279, 'twenty-five thousand two hundred seventy-nine'), (10463, 88729, 'eighty-eight thousand seven hundred twenty-nine'), (10464, 70945, 'seventy thousand nine hundred forty-five'), (10465, 6980, 'six thousand nine hundred eighty'), (10466, 23519, 'twenty-three thousand five hundred nineteen'), (10467, 65339, 'sixty-five thousand three hundred thirty-nine'), (10468, 81502, 'eighty-one thousand five hundred two'), (10469, 3684, 'three thousand six hundred eighty-four'), (10470, 57249, 'fifty-seven thousand two hundred forty-nine'), (10471, 27618, 'twenty-seven thousand six hundred eighteen'), (10472, 43156, 'forty-three thousand one hundred fifty-six'), (10473, 42109, 'forty-two thousand one hundred nine'), (10474, 96017, 'ninety-six thousand seventeen'), (10475, 22000, 'twenty-two thousand'), (10476, 26633, 'twenty-six thousand six hundred thirty-three'), (10477, 47049, 'forty-seven thousand forty-nine'), (10478, 78305, 'seventy-eight thousand three hundred five'), (10479, 33063, 'thirty-three thousand sixty-three'), (10480, 79879, 'seventy-nine thousand eight hundred seventy-nine'), (10481, 20387, 'twenty thousand three hundred eighty-seven'), (10482, 21999, 'twenty-one thousand nine hundred ninety-nine'), (10483, 74860, 'seventy-four thousand eight hundred sixty'), (10484, 45815, 'forty-five thousand eight hundred fifteen'), (10485, 93116, 'ninety-three thousand one hundred sixteen'), (10486, 8024, 'eight thousand twenty-four'), (10487, 18762, 'eighteen thousand seven hundred sixty-two'), (10488, 57358, 'fifty-seven thousand three hundred fifty-eight'), (10489, 82633, 'eighty-two thousand six hundred thirty-three'), (10490, 13679, 'thirteen thousand six hundred seventy-nine'), (10491, 91321, 'ninety-one thousand three hundred twenty-one'), (10492, 89799, 'eighty-nine thousand seven hundred ninety-nine'), (10493, 39322, 'thirty-nine thousand three hundred twenty-two'), (10494, 2976, 'two thousand nine hundred seventy-six'), (10495, 62766, 'sixty-two thousand seven hundred sixty-six'), (10496, 18157, 'eighteen thousand one hundred fifty-seven'), (10497, 76805, 'seventy-six thousand eight hundred five'), (10498, 78640, 'seventy-eight thousand six hundred forty'), (10499, 25320, 'twenty-five thousand three hundred twenty'), (10500, 62990, 'sixty-two thousand nine hundred ninety'), (10501, 68394, 'sixty-eight thousand three hundred ninety-four'), (10502, 46396, 'forty-six thousand three hundred ninety-six'), (10503, 10416, 'ten thousand four hundred sixteen'), (10504, 26590, 'twenty-six thousand five hundred ninety'), (10505, 10628, 'ten thousand six hundred twenty-eight'), (10506, 26998, 'twenty-six thousand nine hundred ninety-eight'), (10507, 84962, 'eighty-four thousand nine hundred sixty-two'), (10508, 71326, 'seventy-one thousand three hundred twenty-six'), (10509, 23527, 'twenty-three thousand five hundred twenty-seven'), (10510, 34961, 'thirty-four thousand nine hundred sixty-one'), (10511, 22176, 'twenty-two thousand one hundred seventy-six'), (10512, 28897, 'twenty-eight thousand eight hundred ninety-seven'), (10513, 92324, 'ninety-two thousand three hundred twenty-four'), (10514, 34571, 'thirty-four thousand five hundred seventy-one'), (10515, 39630, 'thirty-nine thousand six hundred thirty'), (10516, 32629, 'thirty-two thousand six hundred twenty-nine'), (10517, 22073, 'twenty-two thousand seventy-three'), (10518, 61773, 'sixty-one thousand seven hundred seventy-three'), (10519, 92914, 'ninety-two thousand nine hundred fourteen'), (10520, 36986, 'thirty-six thousand nine hundred eighty-six'), (10521, 8014, 'eight thousand fourteen'), (10522, 620, 'six hundred twenty'), (10523, 62244, 'sixty-two thousand two hundred forty-four'), (10524, 26554, 'twenty-six thousand five hundred fifty-four'), (10525, 18554, 'eighteen thousand five hundred fifty-four'), (10526, 57124, 'fifty-seven thousand one hundred twenty-four'), (10527, 60698, 'sixty thousand six hundred ninety-eight'), (10528, 94766, 'ninety-four thousand seven hundred sixty-six'), (10529, 77812, 'seventy-seven thousand eight hundred twelve'), (10530, 93719, 'ninety-three thousand seven hundred nineteen'), (10531, 47365, 'forty-seven thousand three hundred sixty-five'), (10532, 87389, 'eighty-seven thousand three hundred eighty-nine'), (10533, 64982, 'sixty-four thousand nine hundred eighty-two'), (10534, 68138, 'sixty-eight thousand one hundred thirty-eight'), (10535, 19826, 'nineteen thousand eight hundred twenty-six'), (10536, 48277, 'forty-eight thousand two hundred seventy-seven'), (10537, 60402, 'sixty thousand four hundred two'), (10538, 95435, 'ninety-five thousand four hundred thirty-five'), (10539, 85718, 'eighty-five thousand seven hundred eighteen'), (10540, 16919, 'sixteen thousand nine hundred nineteen'), (10541, 79484, 'seventy-nine thousand four hundred eighty-four'), (10542, 90653, 'ninety thousand six hundred fifty-three'), (10543, 55175, 'fifty-five thousand one hundred seventy-five'), (10544, 56264, 'fifty-six thousand two hundred sixty-four'), (10545, 15385, 'fifteen thousand three hundred eighty-five'), (10546, 96283, 'ninety-six thousand two hundred eighty-three'), (10547, 14326, 'fourteen thousand three hundred twenty-six'), (10548, 21968, 'twenty-one thousand nine hundred sixty-eight'), (10549, 76800, 'seventy-six thousand eight hundred'), (10550, 63662, 'sixty-three thousand six hundred sixty-two'), (10551, 381, 'three hundred eighty-one'), (10552, 83093, 'eighty-three thousand ninety-three'), (10553, 33168, 'thirty-three thousand one hundred sixty-eight'), (10554, 47298, 'forty-seven thousand two hundred ninety-eight'), (10555, 77502, 'seventy-seven thousand five hundred two'), (10556, 93598, 'ninety-three thousand five hundred ninety-eight'), (10557, 93288, 'ninety-three thousand two hundred eighty-eight'), (10558, 29031, 'twenty-nine thousand thirty-one'), (10559, 72558, 'seventy-two thousand five hundred fifty-eight'), (10560, 64221, 'sixty-four thousand two hundred twenty-one'), (10561, 61336, 'sixty-one thousand three hundred thirty-six'), (10562, 47425, 'forty-seven thousand four hundred twenty-five'), (10563, 66118, 'sixty-six thousand one hundred eighteen'), (10564, 94202, 'ninety-four thousand two hundred two'), (10565, 64386, 'sixty-four thousand three hundred eighty-six'), (10566, 23446, 'twenty-three thousand four hundred forty-six'), (10567, 70765, 'seventy thousand seven hundred sixty-five'), (10568, 99956, 'ninety-nine thousand nine hundred fifty-six'), (10569, 84965, 'eighty-four thousand nine hundred sixty-five'), (10570, 34288, 'thirty-four thousand two hundred eighty-eight'), (10571, 65799, 'sixty-five thousand seven hundred ninety-nine'), (10572, 53377, 'fifty-three thousand three hundred seventy-seven'), (10573, 75598, 'seventy-five thousand five hundred ninety-eight'), (10574, 69838, 'sixty-nine thousand eight hundred thirty-eight'), (10575, 7407, 'seven thousand four hundred seven'), (10576, 89051, 'eighty-nine thousand fifty-one'), (10577, 79424, 'seventy-nine thousand four hundred twenty-four'), (10578, 23182, 'twenty-three thousand one hundred eighty-two'), (10579, 2439, 'two thousand four hundred thirty-nine'), (10580, 82595, 'eighty-two thousand five hundred ninety-five'), (10581, 84904, 'eighty-four thousand nine hundred four'), (10582, 17317, 'seventeen thousand three hundred seventeen'), (10583, 7454, 'seven thousand four hundred fifty-four'), (10584, 26856, 'twenty-six thousand eight hundred fifty-six'), (10585, 39450, 'thirty-nine thousand four hundred fifty'), (10586, 46229, 'forty-six thousand two hundred twenty-nine'), (10587, 18416, 'eighteen thousand four hundred sixteen'), (10588, 27678, 'twenty-seven thousand six hundred seventy-eight'), (10589, 62272, 'sixty-two thousand two hundred seventy-two'), (10590, 28858, 'twenty-eight thousand eight hundred fifty-eight'), (10591, 29580, 'twenty-nine thousand five hundred eighty'), (10592, 223, 'two hundred twenty-three'), (10593, 32756, 'thirty-two thousand seven hundred fifty-six'), (10594, 88077, 'eighty-eight thousand seventy-seven'), (10595, 1615, 'one thousand six hundred fifteen'), (10596, 9083, 'nine thousand eighty-three'), (10597, 76769, 'seventy-six thousand seven hundred sixty-nine'), (10598, 2127, 'two thousand one hundred twenty-seven'), (10599, 7844, 'seven thousand eight hundred forty-four'), (10600, 25991, 'twenty-five thousand nine hundred ninety-one'), (10601, 92078, 'ninety-two thousand seventy-eight'), (10602, 77023, 'seventy-seven thousand twenty-three'), (10603, 65345, 'sixty-five thousand three hundred forty-five'), (10604, 29761, 'twenty-nine thousand seven hundred sixty-one'), (10605, 22301, 'twenty-two thousand three hundred one'), (10606, 42009, 'forty-two thousand nine'), (10607, 8044, 'eight thousand forty-four'), (10608, 92535, 'ninety-two thousand five hundred thirty-five'), (10609, 18115, 'eighteen thousand one hundred fifteen'), (10610, 69586, 'sixty-nine thousand five hundred eighty-six'), (10611, 21970, 'twenty-one thousand nine hundred seventy'), (10612, 40028, 'forty thousand twenty-eight'), (10613, 95062, 'ninety-five thousand sixty-two'), (10614, 18665, 'eighteen thousand six hundred sixty-five'), (10615, 41276, 'forty-one thousand two hundred seventy-six'), (10616, 58155, 'fifty-eight thousand one hundred fifty-five'), (10617, 26099, 'twenty-six thousand ninety-nine'), (10618, 4490, 'four thousand four hundred ninety'), (10619, 48273, 'forty-eight thousand two hundred seventy-three'), (10620, 62972, 'sixty-two thousand nine hundred seventy-two'), (10621, 28466, 'twenty-eight thousand four hundred sixty-six'), (10622, 40135, 'forty thousand one hundred thirty-five'), (10623, 44157, 'forty-four thousand one hundred fifty-seven'), (10624, 34688, 'thirty-four thousand six hundred eighty-eight'), (10625, 7993, 'seven thousand nine hundred ninety-three'), (10626, 56261, 'fifty-six thousand two hundred sixty-one'), (10627, 37344, 'thirty-seven thousand three hundred forty-four'), (10628, 73458, 'seventy-three thousand four hundred fifty-eight'), (10629, 73568, 'seventy-three thousand five hundred sixty-eight'), (10630, 41156, 'forty-one thousand one hundred fifty-six'), (10631, 88168, 'eighty-eight thousand one hundred sixty-eight'), (10632, 85962, 'eighty-five thousand nine hundred sixty-two'), (10633, 71189, 'seventy-one thousand one hundred eighty-nine'), (10634, 90972, 'ninety thousand nine hundred seventy-two'), (10635, 7654, 'seven thousand six hundred fifty-four'), (10636, 18384, 'eighteen thousand three hundred eighty-four'), (10637, 66261, 'sixty-six thousand two hundred sixty-one'), (10638, 38844, 'thirty-eight thousand eight hundred forty-four'), (10639, 28843, 'twenty-eight thousand eight hundred forty-three'), (10640, 66852, 'sixty-six thousand eight hundred fifty-two'), (10641, 2329, 'two thousand three hundred twenty-nine'), (10642, 40783, 'forty thousand seven hundred eighty-three'), (10643, 27332, 'twenty-seven thousand three hundred thirty-two'), (10644, 17419, 'seventeen thousand four hundred nineteen'), (10645, 79638, 'seventy-nine thousand six hundred thirty-eight'), (10646, 59611, 'fifty-nine thousand six hundred eleven'), (10647, 16088, 'sixteen thousand eighty-eight'), (10648, 17910, 'seventeen thousand nine hundred ten'), (10649, 33871, 'thirty-three thousand eight hundred seventy-one'), (10650, 32269, 'thirty-two thousand two hundred sixty-nine'), (10651, 86992, 'eighty-six thousand nine hundred ninety-two'), (10652, 84530, 'eighty-four thousand five hundred thirty'), (10653, 35047, 'thirty-five thousand forty-seven'), (10654, 85542, 'eighty-five thousand five hundred forty-two'), (10655, 3445, 'three thousand four hundred forty-five'), (10656, 68836, 'sixty-eight thousand eight hundred thirty-six'), (10657, 11956, 'eleven thousand nine hundred fifty-six'), (10658, 95292, 'ninety-five thousand two hundred ninety-two'), (10659, 91386, 'ninety-one thousand three hundred eighty-six'), (10660, 71837, 'seventy-one thousand eight hundred thirty-seven'), (10661, 66915, 'sixty-six thousand nine hundred fifteen'), (10662, 70161, 'seventy thousand one hundred sixty-one'), (10663, 99641, 'ninety-nine thousand six hundred forty-one'), (10664, 96026, 'ninety-six thousand twenty-six'), (10665, 88334, 'eighty-eight thousand three hundred thirty-four'), (10666, 47846, 'forty-seven thousand eight hundred forty-six'), (10667, 17913, 'seventeen thousand nine hundred thirteen'), (10668, 46243, 'forty-six thousand two hundred forty-three'), (10669, 30678, 'thirty thousand six hundred seventy-eight'), (10670, 69251, 'sixty-nine thousand two hundred fifty-one'), (10671, 25890, 'twenty-five thousand eight hundred ninety'), (10672, 57601, 'fifty-seven thousand six hundred one'), (10673, 29708, 'twenty-nine thousand seven hundred eight'), (10674, 89733, 'eighty-nine thousand seven hundred thirty-three'), (10675, 69295, 'sixty-nine thousand two hundred ninety-five'), (10676, 48895, 'forty-eight thousand eight hundred ninety-five'), (10677, 61664, 'sixty-one thousand six hundred sixty-four'), (10678, 55014, 'fifty-five thousand fourteen'), (10679, 99738, 'ninety-nine thousand seven hundred thirty-eight'), (10680, 29179, 'twenty-nine thousand one hundred seventy-nine'), (10681, 9607, 'nine thousand six hundred seven'), (10682, 80451, 'eighty thousand four hundred fifty-one'), (10683, 44822, 'forty-four thousand eight hundred twenty-two'), (10684, 84018, 'eighty-four thousand eighteen'), (10685, 16729, 'sixteen thousand seven hundred twenty-nine'), (10686, 91979, 'ninety-one thousand nine hundred seventy-nine'), (10687, 60625, 'sixty thousand six hundred twenty-five'), (10688, 99882, 'ninety-nine thousand eight hundred eighty-two'), (10689, 24529, 'twenty-four thousand five hundred twenty-nine'), (10690, 84733, 'eighty-four thousand seven hundred thirty-three'), (10691, 45772, 'forty-five thousand seven hundred seventy-two'), (10692, 8, 'eight'), (10693, 98736, 'ninety-eight thousand seven hundred thirty-six'), (10694, 93590, 'ninety-three thousand five hundred ninety'), (10695, 49561, 'forty-nine thousand five hundred sixty-one'), (10696, 88854, 'eighty-eight thousand eight hundred fifty-four'), (10697, 22625, 'twenty-two thousand six hundred twenty-five'), (10698, 64550, 'sixty-four thousand five hundred fifty'), (10699, 67, 'sixty-seven'), (10700, 59263, 'fifty-nine thousand two hundred sixty-three'), (10701, 72292, 'seventy-two thousand two hundred ninety-two'), (10702, 72744, 'seventy-two thousand seven hundred forty-four'), (10703, 90621, 'ninety thousand six hundred twenty-one'), (10704, 28998, 'twenty-eight thousand nine hundred ninety-eight'), (10705, 52921, 'fifty-two thousand nine hundred twenty-one'), (10706, 23829, 'twenty-three thousand eight hundred twenty-nine'), (10707, 10467, 'ten thousand four hundred sixty-seven'), (10708, 10845, 'ten thousand eight hundred forty-five'), (10709, 75247, 'seventy-five thousand two hundred forty-seven'), (10710, 14709, 'fourteen thousand seven hundred nine'), (10711, 33817, 'thirty-three thousand eight hundred seventeen'), (10712, 43932, 'forty-three thousand nine hundred thirty-two'), (10713, 25641, 'twenty-five thousand six hundred forty-one'), (10714, 60279, 'sixty thousand two hundred seventy-nine'), (10715, 58241, 'fifty-eight thousand two hundred forty-one'), (10716, 91520, 'ninety-one thousand five hundred twenty'), (10717, 10554, 'ten thousand five hundred fifty-four'), (10718, 72043, 'seventy-two thousand forty-three'), (10719, 14954, 'fourteen thousand nine hundred fifty-four'), (10720, 3162, 'three thousand one hundred sixty-two'), (10721, 79965, 'seventy-nine thousand nine hundred sixty-five'), (10722, 93779, 'ninety-three thousand seven hundred seventy-nine'), (10723, 5425, 'five thousand four hundred twenty-five'), (10724, 94473, 'ninety-four thousand four hundred seventy-three'), (10725, 55444, 'fifty-five thousand four hundred forty-four'), (10726, 65769, 'sixty-five thousand seven hundred sixty-nine'), (10727, 8657, 'eight thousand six hundred fifty-seven'), (10728, 74068, 'seventy-four thousand sixty-eight'), (10729, 11370, 'eleven thousand three hundred seventy'), (10730, 48920, 'forty-eight thousand nine hundred twenty'), (10731, 36068, 'thirty-six thousand sixty-eight'), (10732, 5915, 'five thousand nine hundred fifteen'), (10733, 3206, 'three thousand two hundred six'), (10734, 43790, 'forty-three thousand seven hundred ninety'), (10735, 30421, 'thirty thousand four hundred twenty-one'), (10736, 37784, 'thirty-seven thousand seven hundred eighty-four'), (10737, 98331, 'ninety-eight thousand three hundred thirty-one'), (10738, 310, 'three hundred ten'), (10739, 13404, 'thirteen thousand four hundred four'), (10740, 11981, 'eleven thousand nine hundred eighty-one'), (10741, 59970, 'fifty-nine thousand nine hundred seventy'), (10742, 49494, 'forty-nine thousand four hundred ninety-four'), (10743, 6994, 'six thousand nine hundred ninety-four'), (10744, 7963, 'seven thousand nine hundred sixty-three'), (10745, 72666, 'seventy-two thousand six hundred sixty-six'), (10746, 64219, 'sixty-four thousand two hundred nineteen'), (10747, 66853, 'sixty-six thousand eight hundred fifty-three'), (10748, 40465, 'forty thousand four hundred sixty-five'), (10749, 16456, 'sixteen thousand four hundred fifty-six'), (10750, 33101, 'thirty-three thousand one hundred one'), (10751, 493, 'four hundred ninety-three'), (10752, 93733, 'ninety-three thousand seven hundred thirty-three'), (10753, 14553, 'fourteen thousand five hundred fifty-three'), (10754, 67620, 'sixty-seven thousand six hundred twenty'), (10755, 95814, 'ninety-five thousand eight hundred fourteen'), (10756, 38707, 'thirty-eight thousand seven hundred seven'), (10757, 98011, 'ninety-eight thousand eleven'), (10758, 3228, 'three thousand two hundred twenty-eight'), (10759, 42719, 'forty-two thousand seven hundred nineteen'), (10760, 66266, 'sixty-six thousand two hundred sixty-six'), (10761, 20277, 'twenty thousand two hundred seventy-seven'), (10762, 95086, 'ninety-five thousand eighty-six'), (10763, 77175, 'seventy-seven thousand one hundred seventy-five'), (10764, 73903, 'seventy-three thousand nine hundred three'), (10765, 54567, 'fifty-four thousand five hundred sixty-seven'), (10766, 2049, 'two thousand forty-nine'), (10767, 10613, 'ten thousand six hundred thirteen'), (10768, 83046, 'eighty-three thousand forty-six'), (10769, 88476, 'eighty-eight thousand four hundred seventy-six'), (10770, 5472, 'five thousand four hundred seventy-two'), (10771, 64693, 'sixty-four thousand six hundred ninety-three'), (10772, 91556, 'ninety-one thousand five hundred fifty-six'), (10773, 89342, 'eighty-nine thousand three hundred forty-two'), (10774, 40578, 'forty thousand five hundred seventy-eight'), (10775, 33641, 'thirty-three thousand six hundred forty-one'), (10776, 89678, 'eighty-nine thousand six hundred seventy-eight'), (10777, 29041, 'twenty-nine thousand forty-one'), (10778, 84569, 'eighty-four thousand five hundred sixty-nine'), (10779, 39293, 'thirty-nine thousand two hundred ninety-three'), (10780, 69547, 'sixty-nine thousand five hundred forty-seven'), (10781, 68847, 'sixty-eight thousand eight hundred forty-seven'), (10782, 42339, 'forty-two thousand three hundred thirty-nine'), (10783, 79802, 'seventy-nine thousand eight hundred two'), (10784, 16404, 'sixteen thousand four hundred four'), (10785, 75227, 'seventy-five thousand two hundred twenty-seven'), (10786, 55243, 'fifty-five thousand two hundred forty-three'), (10787, 33653, 'thirty-three thousand six hundred fifty-three'), (10788, 22919, 'twenty-two thousand nine hundred nineteen'), (10789, 32032, 'thirty-two thousand thirty-two'), (10790, 33047, 'thirty-three thousand forty-seven'), (10791, 9311, 'nine thousand three hundred eleven'), (10792, 97304, 'ninety-seven thousand three hundred four'), (10793, 81534, 'eighty-one thousand five hundred thirty-four'), (10794, 71401, 'seventy-one thousand four hundred one'), (10795, 76388, 'seventy-six thousand three hundred eighty-eight'), (10796, 53599, 'fifty-three thousand five hundred ninety-nine'), (10797, 80347, 'eighty thousand three hundred forty-seven'), (10798, 55653, 'fifty-five thousand six hundred fifty-three'), (10799, 6553, 'six thousand five hundred fifty-three'), (10800, 28492, 'twenty-eight thousand four hundred ninety-two'), (10801, 12151, 'twelve thousand one hundred fifty-one'), (10802, 21140, 'twenty-one thousand one hundred forty'), (10803, 49912, 'forty-nine thousand nine hundred twelve'), (10804, 70308, 'seventy thousand three hundred eight'), (10805, 26252, 'twenty-six thousand two hundred fifty-two'), (10806, 5600, 'five thousand six hundred'), (10807, 92066, 'ninety-two thousand sixty-six'), (10808, 47028, 'forty-seven thousand twenty-eight'), (10809, 94053, 'ninety-four thousand fifty-three'), (10810, 67529, 'sixty-seven thousand five hundred twenty-nine'), (10811, 6408, 'six thousand four hundred eight'), (10812, 10116, 'ten thousand one hundred sixteen'), (10813, 53925, 'fifty-three thousand nine hundred twenty-five'), (10814, 69930, 'sixty-nine thousand nine hundred thirty'), (10815, 72684, 'seventy-two thousand six hundred eighty-four'), (10816, 42314, 'forty-two thousand three hundred fourteen'), (10817, 30607, 'thirty thousand six hundred seven'), (10818, 67474, 'sixty-seven thousand four hundred seventy-four'), (10819, 94213, 'ninety-four thousand two hundred thirteen'), (10820, 64568, 'sixty-four thousand five hundred sixty-eight'), (10821, 18940, 'eighteen thousand nine hundred forty'), (10822, 68450, 'sixty-eight thousand four hundred fifty'), (10823, 12469, 'twelve thousand four hundred sixty-nine'), (10824, 80658, 'eighty thousand six hundred fifty-eight'), (10825, 35318, 'thirty-five thousand three hundred eighteen'), (10826, 53041, 'fifty-three thousand forty-one'), (10827, 86618, 'eighty-six thousand six hundred eighteen'), (10828, 29611, 'twenty-nine thousand six hundred eleven'), (10829, 90236, 'ninety thousand two hundred thirty-six'), (10830, 12596, 'twelve thousand five hundred ninety-six'), (10831, 6870, 'six thousand eight hundred seventy'), (10832, 82402, 'eighty-two thousand four hundred two'), (10833, 91415, 'ninety-one thousand four hundred fifteen'), (10834, 48761, 'forty-eight thousand seven hundred sixty-one'), (10835, 92362, 'ninety-two thousand three hundred sixty-two'), (10836, 2232, 'two thousand two hundred thirty-two'), (10837, 44704, 'forty-four thousand seven hundred four'), (10838, 57685, 'fifty-seven thousand six hundred eighty-five'), (10839, 65459, 'sixty-five thousand four hundred fifty-nine'), (10840, 4310, 'four thousand three hundred ten'), (10841, 24407, 'twenty-four thousand four hundred seven'), (10842, 16371, 'sixteen thousand three hundred seventy-one'), (10843, 90077, 'ninety thousand seventy-seven'), (10844, 84437, 'eighty-four thousand four hundred thirty-seven'), (10845, 12623, 'twelve thousand six hundred twenty-three'), (10846, 20706, 'twenty thousand seven hundred six'), (10847, 87851, 'eighty-seven thousand eight hundred fifty-one'), (10848, 46832, 'forty-six thousand eight hundred thirty-two'), (10849, 13313, 'thirteen thousand three hundred thirteen'), (10850, 27800, 'twenty-seven thousand eight hundred'), (10851, 89290, 'eighty-nine thousand two hundred ninety'), (10852, 36846, 'thirty-six thousand eight hundred forty-six'), (10853, 12370, 'twelve thousand three hundred seventy'), (10854, 46960, 'forty-six thousand nine hundred sixty'), (10855, 96617, 'ninety-six thousand six hundred seventeen'), (10856, 5765, 'five thousand seven hundred sixty-five'), (10857, 51413, 'fifty-one thousand four hundred thirteen'), (10858, 63089, 'sixty-three thousand eighty-nine'), (10859, 27286, 'twenty-seven thousand two hundred eighty-six'), (10860, 41034, 'forty-one thousand thirty-four'), (10861, 69970, 'sixty-nine thousand nine hundred seventy'), (10862, 17890, 'seventeen thousand eight hundred ninety'), (10863, 90405, 'ninety thousand four hundred five'), (10864, 38216, 'thirty-eight thousand two hundred sixteen'), (10865, 69559, 'sixty-nine thousand five hundred fifty-nine'), (10866, 16568, 'sixteen thousand five hundred sixty-eight'), (10867, 70392, 'seventy thousand three hundred ninety-two'), (10868, 77787, 'seventy-seven thousand seven hundred eighty-seven'), (10869, 76020, 'seventy-six thousand twenty'), (10870, 98387, 'ninety-eight thousand three hundred eighty-seven'), (10871, 85823, 'eighty-five thousand eight hundred twenty-three'), (10872, 89197, 'eighty-nine thousand one hundred ninety-seven'), (10873, 45427, 'forty-five thousand four hundred twenty-seven'), (10874, 87352, 'eighty-seven thousand three hundred fifty-two'), (10875, 71029, 'seventy-one thousand twenty-nine'), (10876, 72829, 'seventy-two thousand eight hundred twenty-nine'), (10877, 11497, 'eleven thousand four hundred ninety-seven'), (10878, 93275, 'ninety-three thousand two hundred seventy-five'), (10879, 57055, 'fifty-seven thousand fifty-five'), (10880, 24600, 'twenty-four thousand six hundred'), (10881, 83867, 'eighty-three thousand eight hundred sixty-seven'), (10882, 66656, 'sixty-six thousand six hundred fifty-six'), (10883, 90995, 'ninety thousand nine hundred ninety-five'), (10884, 71675, 'seventy-one thousand six hundred seventy-five'), (10885, 62782, 'sixty-two thousand seven hundred eighty-two'), (10886, 92267, 'ninety-two thousand two hundred sixty-seven'), (10887, 43924, 'forty-three thousand nine hundred twenty-four'), (10888, 95518, 'ninety-five thousand five hundred eighteen'), (10889, 43147, 'forty-three thousand one hundred forty-seven'), (10890, 49343, 'forty-nine thousand three hundred forty-three'), (10891, 38069, 'thirty-eight thousand sixty-nine'), (10892, 33796, 'thirty-three thousand seven hundred ninety-six'), (10893, 24255, 'twenty-four thousand two hundred fifty-five'), (10894, 22434, 'twenty-two thousand four hundred thirty-four'), (10895, 75506, 'seventy-five thousand five hundred six'), (10896, 72279, 'seventy-two thousand two hundred seventy-nine'), (10897, 93236, 'ninety-three thousand two hundred thirty-six'), (10898, 88144, 'eighty-eight thousand one hundred forty-four'), (10899, 65763, 'sixty-five thousand seven hundred sixty-three'), (10900, 70948, 'seventy thousand nine hundred forty-eight'), (10901, 1960, 'one thousand nine hundred sixty'), (10902, 83281, 'eighty-three thousand two hundred eighty-one'), (10903, 84650, 'eighty-four thousand six hundred fifty'), (10904, 16765, 'sixteen thousand seven hundred sixty-five'), (10905, 75963, 'seventy-five thousand nine hundred sixty-three'), (10906, 69832, 'sixty-nine thousand eight hundred thirty-two'), (10907, 44509, 'forty-four thousand five hundred nine'), (10908, 44148, 'forty-four thousand one hundred forty-eight'), (10909, 19685, 'nineteen thousand six hundred eighty-five'), (10910, 85157, 'eighty-five thousand one hundred fifty-seven'), (10911, 28159, 'twenty-eight thousand one hundred fifty-nine'), (10912, 28786, 'twenty-eight thousand seven hundred eighty-six'), (10913, 68380, 'sixty-eight thousand three hundred eighty'), (10914, 69751, 'sixty-nine thousand seven hundred fifty-one'), (10915, 24201, 'twenty-four thousand two hundred one'), (10916, 66909, 'sixty-six thousand nine hundred nine'), (10917, 97251, 'ninety-seven thousand two hundred fifty-one'), (10918, 31144, 'thirty-one thousand one hundred forty-four'), (10919, 87052, 'eighty-seven thousand fifty-two'), (10920, 22233, 'twenty-two thousand two hundred thirty-three'), (10921, 36134, 'thirty-six thousand one hundred thirty-four'), (10922, 81986, 'eighty-one thousand nine hundred eighty-six'), (10923, 29602, 'twenty-nine thousand six hundred two'), (10924, 31699, 'thirty-one thousand six hundred ninety-nine'), (10925, 40368, 'forty thousand three hundred sixty-eight'), (10926, 13196, 'thirteen thousand one hundred ninety-six'), (10927, 67233, 'sixty-seven thousand two hundred thirty-three'), (10928, 28292, 'twenty-eight thousand two hundred ninety-two'), (10929, 60938, 'sixty thousand nine hundred thirty-eight'), (10930, 22981, 'twenty-two thousand nine hundred eighty-one'), (10931, 55293, 'fifty-five thousand two hundred ninety-three'), (10932, 1442, 'one thousand four hundred forty-two'), (10933, 89451, 'eighty-nine thousand four hundred fifty-one'), (10934, 74352, 'seventy-four thousand three hundred fifty-two'), (10935, 53110, 'fifty-three thousand one hundred ten'), (10936, 72118, 'seventy-two thousand one hundred eighteen'), (10937, 71427, 'seventy-one thousand four hundred twenty-seven'), (10938, 73888, 'seventy-three thousand eight hundred eighty-eight'), (10939, 53151, 'fifty-three thousand one hundred fifty-one'), (10940, 16279, 'sixteen thousand two hundred seventy-nine'), (10941, 19747, 'nineteen thousand seven hundred forty-seven'), (10942, 69530, 'sixty-nine thousand five hundred thirty'), (10943, 82903, 'eighty-two thousand nine hundred three'), (10944, 10401, 'ten thousand four hundred one'), (10945, 28338, 'twenty-eight thousand three hundred thirty-eight'), (10946, 18533, 'eighteen thousand five hundred thirty-three'), (10947, 54540, 'fifty-four thousand five hundred forty'), (10948, 14713, 'fourteen thousand seven hundred thirteen'), (10949, 98920, 'ninety-eight thousand nine hundred twenty'), (10950, 37564, 'thirty-seven thousand five hundred sixty-four'), (10951, 64025, 'sixty-four thousand twenty-five'), (10952, 509, 'five hundred nine'), (10953, 11087, 'eleven thousand eighty-seven'), (10954, 72134, 'seventy-two thousand one hundred thirty-four'), (10955, 47045, 'forty-seven thousand forty-five'), (10956, 65681, 'sixty-five thousand six hundred eighty-one'), (10957, 79936, 'seventy-nine thousand nine hundred thirty-six'), (10958, 7810, 'seven thousand eight hundred ten'), (10959, 27203, 'twenty-seven thousand two hundred three'), (10960, 45275, 'forty-five thousand two hundred seventy-five'), (10961, 83078, 'eighty-three thousand seventy-eight'), (10962, 80874, 'eighty thousand eight hundred seventy-four'), (10963, 49629, 'forty-nine thousand six hundred twenty-nine'), (10964, 44591, 'forty-four thousand five hundred ninety-one'), (10965, 33517, 'thirty-three thousand five hundred seventeen'), (10966, 13108, 'thirteen thousand one hundred eight'), (10967, 78838, 'seventy-eight thousand eight hundred thirty-eight'), (10968, 55590, 'fifty-five thousand five hundred ninety'), (10969, 46472, 'forty-six thousand four hundred seventy-two'), (10970, 70047, 'seventy thousand forty-seven'), (10971, 10331, 'ten thousand three hundred thirty-one'), (10972, 19159, 'nineteen thousand one hundred fifty-nine'), (10973, 76159, 'seventy-six thousand one hundred fifty-nine'), (10974, 16310, 'sixteen thousand three hundred ten'), (10975, 12279, 'twelve thousand two hundred seventy-nine'), (10976, 28404, 'twenty-eight thousand four hundred four'), (10977, 17025, 'seventeen thousand twenty-five'), (10978, 30381, 'thirty thousand three hundred eighty-one'), (10979, 69400, 'sixty-nine thousand four hundred'), (10980, 73936, 'seventy-three thousand nine hundred thirty-six'), (10981, 33825, 'thirty-three thousand eight hundred twenty-five'), (10982, 60746, 'sixty thousand seven hundred forty-six'), (10983, 4917, 'four thousand nine hundred seventeen'), (10984, 77692, 'seventy-seven thousand six hundred ninety-two'), (10985, 39683, 'thirty-nine thousand six hundred eighty-three'), (10986, 92658, 'ninety-two thousand six hundred fifty-eight'), (10987, 66522, 'sixty-six thousand five hundred twenty-two'), (10988, 23990, 'twenty-three thousand nine hundred ninety'), (10989, 37734, 'thirty-seven thousand seven hundred thirty-four'), (10990, 82274, 'eighty-two thousand two hundred seventy-four'), (10991, 45421, 'forty-five thousand four hundred twenty-one'), (10992, 34156, 'thirty-four thousand one hundred fifty-six'), (10993, 3791, 'three thousand seven hundred ninety-one'), (10994, 26429, 'twenty-six thousand four hundred twenty-nine'), (10995, 84978, 'eighty-four thousand nine hundred seventy-eight'), (10996, 48180, 'forty-eight thousand one hundred eighty'), (10997, 71311, 'seventy-one thousand three hundred eleven'), (10998, 30852, 'thirty thousand eight hundred fifty-two'), (10999, 45959, 'forty-five thousand nine hundred fifty-nine'), (11000, 10512, 'ten thousand five hundred twelve'), (11001, 30183, 'thirty thousand one hundred eighty-three'), (11002, 73351, 'seventy-three thousand three hundred fifty-one'), (11003, 67270, 'sixty-seven thousand two hundred seventy'), (11004, 89632, 'eighty-nine thousand six hundred thirty-two'), (11005, 4057, 'four thousand fifty-seven'), (11006, 65163, 'sixty-five thousand one hundred sixty-three'), (11007, 39256, 'thirty-nine thousand two hundred fifty-six'), (11008, 86978, 'eighty-six thousand nine hundred seventy-eight'), (11009, 56962, 'fifty-six thousand nine hundred sixty-two'), (11010, 63263, 'sixty-three thousand two hundred sixty-three'), (11011, 18335, 'eighteen thousand three hundred thirty-five'), (11012, 18597, 'eighteen thousand five hundred ninety-seven'), (11013, 21035, 'twenty-one thousand thirty-five'), (11014, 23236, 'twenty-three thousand two hundred thirty-six'), (11015, 63952, 'sixty-three thousand nine hundred fifty-two'), (11016, 24442, 'twenty-four thousand four hundred forty-two'), (11017, 88347, 'eighty-eight thousand three hundred forty-seven'), (11018, 74322, 'seventy-four thousand three hundred twenty-two'), (11019, 39544, 'thirty-nine thousand five hundred forty-four'), (11020, 5834, 'five thousand eight hundred thirty-four'), (11021, 72605, 'seventy-two thousand six hundred five'), (11022, 35217, 'thirty-five thousand two hundred seventeen'), (11023, 43060, 'forty-three thousand sixty'), (11024, 51837, 'fifty-one thousand eight hundred thirty-seven'), (11025, 45135, 'forty-five thousand one hundred thirty-five'), (11026, 67767, 'sixty-seven thousand seven hundred sixty-seven'), (11027, 27976, 'twenty-seven thousand nine hundred seventy-six'), (11028, 65836, 'sixty-five thousand eight hundred thirty-six'), (11029, 18096, 'eighteen thousand ninety-six'), (11030, 84463, 'eighty-four thousand four hundred sixty-three'), (11031, 84247, 'eighty-four thousand two hundred forty-seven'), (11032, 80923, 'eighty thousand nine hundred twenty-three'), (11033, 63983, 'sixty-three thousand nine hundred eighty-three'), (11034, 92431, 'ninety-two thousand four hundred thirty-one'), (11035, 91538, 'ninety-one thousand five hundred thirty-eight'), (11036, 90053, 'ninety thousand fifty-three'), (11037, 61166, 'sixty-one thousand one hundred sixty-six'), (11038, 19959, 'nineteen thousand nine hundred fifty-nine'), (11039, 81429, 'eighty-one thousand four hundred twenty-nine'), (11040, 24863, 'twenty-four thousand eight hundred sixty-three'), (11041, 78128, 'seventy-eight thousand one hundred twenty-eight'), (11042, 78672, 'seventy-eight thousand six hundred seventy-two'), (11043, 35473, 'thirty-five thousand four hundred seventy-three'), (11044, 80758, 'eighty thousand seven hundred fifty-eight'), (11045, 26306, 'twenty-six thousand three hundred six'), (11046, 58280, 'fifty-eight thousand two hundred eighty'), (11047, 87616, 'eighty-seven thousand six hundred sixteen'), (11048, 23750, 'twenty-three thousand seven hundred fifty'), (11049, 28679, 'twenty-eight thousand six hundred seventy-nine'), (11050, 27309, 'twenty-seven thousand three hundred nine'), (11051, 5706, 'five thousand seven hundred six'), (11052, 18708, 'eighteen thousand seven hundred eight'), (11053, 14416, 'fourteen thousand four hundred sixteen'), (11054, 84060, 'eighty-four thousand sixty'), (11055, 5425, 'five thousand four hundred twenty-five'), (11056, 79057, 'seventy-nine thousand fifty-seven'), (11057, 90187, 'ninety thousand one hundred eighty-seven'), (11058, 82494, 'eighty-two thousand four hundred ninety-four'), (11059, 98482, 'ninety-eight thousand four hundred eighty-two'), (11060, 13681, 'thirteen thousand six hundred eighty-one'), (11061, 48138, 'forty-eight thousand one hundred thirty-eight'), (11062, 9837, 'nine thousand eight hundred thirty-seven'), (11063, 33882, 'thirty-three thousand eight hundred eighty-two'), (11064, 54906, 'fifty-four thousand nine hundred six'), (11065, 62330, 'sixty-two thousand three hundred thirty'), (11066, 89439, 'eighty-nine thousand four hundred thirty-nine'), (11067, 92900, 'ninety-two thousand nine hundred'), (11068, 7689, 'seven thousand six hundred eighty-nine'), (11069, 71557, 'seventy-one thousand five hundred fifty-seven'), (11070, 22907, 'twenty-two thousand nine hundred seven'), (11071, 31465, 'thirty-one thousand four hundred sixty-five'), (11072, 83976, 'eighty-three thousand nine hundred seventy-six'), (11073, 25962, 'twenty-five thousand nine hundred sixty-two'), (11074, 99005, 'ninety-nine thousand five'), (11075, 5751, 'five thousand seven hundred fifty-one'), (11076, 78356, 'seventy-eight thousand three hundred fifty-six'), (11077, 94808, 'ninety-four thousand eight hundred eight'), (11078, 45204, 'forty-five thousand two hundred four'), (11079, 45877, 'forty-five thousand eight hundred seventy-seven'), (11080, 91834, 'ninety-one thousand eight hundred thirty-four'), (11081, 3333, 'three thousand three hundred thirty-three'), (11082, 78102, 'seventy-eight thousand one hundred two'), (11083, 5407, 'five thousand four hundred seven'), (11084, 12084, 'twelve thousand eighty-four'), (11085, 4565, 'four thousand five hundred sixty-five'), (11086, 27751, 'twenty-seven thousand seven hundred fifty-one'), (11087, 84913, 'eighty-four thousand nine hundred thirteen'), (11088, 70328, 'seventy thousand three hundred twenty-eight'), (11089, 61211, 'sixty-one thousand two hundred eleven'), (11090, 403, 'four hundred three'), (11091, 16552, 'sixteen thousand five hundred fifty-two'), (11092, 25030, 'twenty-five thousand thirty'), (11093, 69512, 'sixty-nine thousand five hundred twelve'), (11094, 51926, 'fifty-one thousand nine hundred twenty-six'), (11095, 4266, 'four thousand two hundred sixty-six'), (11096, 92534, 'ninety-two thousand five hundred thirty-four'), (11097, 86815, 'eighty-six thousand eight hundred fifteen'), (11098, 49396, 'forty-nine thousand three hundred ninety-six'), (11099, 28502, 'twenty-eight thousand five hundred two'), (11100, 89435, 'eighty-nine thousand four hundred thirty-five'), (11101, 52041, 'fifty-two thousand forty-one'), (11102, 11767, 'eleven thousand seven hundred sixty-seven'), (11103, 96382, 'ninety-six thousand three hundred eighty-two'), (11104, 48470, 'forty-eight thousand four hundred seventy'), (11105, 76268, 'seventy-six thousand two hundred sixty-eight'), (11106, 25589, 'twenty-five thousand five hundred eighty-nine'), (11107, 72587, 'seventy-two thousand five hundred eighty-seven'), (11108, 67263, 'sixty-seven thousand two hundred sixty-three'), (11109, 66930, 'sixty-six thousand nine hundred thirty'), (11110, 19956, 'nineteen thousand nine hundred fifty-six'), (11111, 74380, 'seventy-four thousand three hundred eighty'), (11112, 87688, 'eighty-seven thousand six hundred eighty-eight'), (11113, 67537, 'sixty-seven thousand five hundred thirty-seven'), (11114, 20848, 'twenty thousand eight hundred forty-eight'), (11115, 75957, 'seventy-five thousand nine hundred fifty-seven'), (11116, 62091, 'sixty-two thousand ninety-one'), (11117, 35331, 'thirty-five thousand three hundred thirty-one'), (11118, 80361, 'eighty thousand three hundred sixty-one'), (11119, 31820, 'thirty-one thousand eight hundred twenty'), (11120, 18194, 'eighteen thousand one hundred ninety-four'), (11121, 32192, 'thirty-two thousand one hundred ninety-two'), (11122, 31710, 'thirty-one thousand seven hundred ten'), (11123, 52760, 'fifty-two thousand seven hundred sixty'), (11124, 44424, 'forty-four thousand four hundred twenty-four'), (11125, 70434, 'seventy thousand four hundred thirty-four'), (11126, 66378, 'sixty-six thousand three hundred seventy-eight'), (11127, 67007, 'sixty-seven thousand seven'), (11128, 28218, 'twenty-eight thousand two hundred eighteen'), (11129, 62373, 'sixty-two thousand three hundred seventy-three'), (11130, 79043, 'seventy-nine thousand forty-three'), (11131, 88281, 'eighty-eight thousand two hundred eighty-one'), (11132, 46277, 'forty-six thousand two hundred seventy-seven'), (11133, 2777, 'two thousand seven hundred seventy-seven'), (11134, 65802, 'sixty-five thousand eight hundred two'), (11135, 50437, 'fifty thousand four hundred thirty-seven'), (11136, 57691, 'fifty-seven thousand six hundred ninety-one'), (11137, 18696, 'eighteen thousand six hundred ninety-six'), (11138, 48939, 'forty-eight thousand nine hundred thirty-nine'), (11139, 71127, 'seventy-one thousand one hundred twenty-seven'), (11140, 44397, 'forty-four thousand three hundred ninety-seven'), (11141, 43218, 'forty-three thousand two hundred eighteen'), (11142, 91156, 'ninety-one thousand one hundred fifty-six'), (11143, 61725, 'sixty-one thousand seven hundred twenty-five'), (11144, 3837, 'three thousand eight hundred thirty-seven'), (11145, 47329, 'forty-seven thousand three hundred twenty-nine'), (11146, 70, 'seventy'), (11147, 52445, 'fifty-two thousand four hundred forty-five'), (11148, 60824, 'sixty thousand eight hundred twenty-four'), (11149, 36397, 'thirty-six thousand three hundred ninety-seven'), (11150, 94180, 'ninety-four thousand one hundred eighty'), (11151, 54837, 'fifty-four thousand eight hundred thirty-seven'), (11152, 9405, 'nine thousand four hundred five'), (11153, 77189, 'seventy-seven thousand one hundred eighty-nine'), (11154, 96640, 'ninety-six thousand six hundred forty'), (11155, 71752, 'seventy-one thousand seven hundred fifty-two'), (11156, 29213, 'twenty-nine thousand two hundred thirteen'), (11157, 9410, 'nine thousand four hundred ten'), (11158, 20087, 'twenty thousand eighty-seven'), (11159, 39088, 'thirty-nine thousand eighty-eight'), (11160, 51053, 'fifty-one thousand fifty-three'), (11161, 90947, 'ninety thousand nine hundred forty-seven'), (11162, 66163, 'sixty-six thousand one hundred sixty-three'), (11163, 31910, 'thirty-one thousand nine hundred ten'), (11164, 35284, 'thirty-five thousand two hundred eighty-four'), (11165, 56390, 'fifty-six thousand three hundred ninety'), (11166, 55863, 'fifty-five thousand eight hundred sixty-three'), (11167, 74, 'seventy-four'), (11168, 32946, 'thirty-two thousand nine hundred forty-six'), (11169, 48776, 'forty-eight thousand seven hundred seventy-six'), (11170, 91812, 'ninety-one thousand eight hundred twelve'), (11171, 44538, 'forty-four thousand five hundred thirty-eight'), (11172, 55368, 'fifty-five thousand three hundred sixty-eight'), (11173, 12683, 'twelve thousand six hundred eighty-three'), (11174, 73514, 'seventy-three thousand five hundred fourteen'), (11175, 28569, 'twenty-eight thousand five hundred sixty-nine'), (11176, 1915, 'one thousand nine hundred fifteen'), (11177, 16241, 'sixteen thousand two hundred forty-one'), (11178, 32149, 'thirty-two thousand one hundred forty-nine'), (11179, 55457, 'fifty-five thousand four hundred fifty-seven'), (11180, 15350, 'fifteen thousand three hundred fifty'), (11181, 91026, 'ninety-one thousand twenty-six'), (11182, 56756, 'fifty-six thousand seven hundred fifty-six'), (11183, 4659, 'four thousand six hundred fifty-nine'), (11184, 52715, 'fifty-two thousand seven hundred fifteen'), (11185, 80117, 'eighty thousand one hundred seventeen'), (11186, 1154, 'one thousand one hundred fifty-four'), (11187, 17609, 'seventeen thousand six hundred nine'), (11188, 62436, 'sixty-two thousand four hundred thirty-six'), (11189, 79283, 'seventy-nine thousand two hundred eighty-three'), (11190, 2215, 'two thousand two hundred fifteen'), (11191, 82097, 'eighty-two thousand ninety-seven'), (11192, 13349, 'thirteen thousand three hundred forty-nine'), (11193, 11629, 'eleven thousand six hundred twenty-nine'), (11194, 39647, 'thirty-nine thousand six hundred forty-seven'), (11195, 52799, 'fifty-two thousand seven hundred ninety-nine'), (11196, 6056, 'six thousand fifty-six'), (11197, 72419, 'seventy-two thousand four hundred nineteen'), (11198, 71084, 'seventy-one thousand eighty-four'), (11199, 22972, 'twenty-two thousand nine hundred seventy-two'), (11200, 15439, 'fifteen thousand four hundred thirty-nine'), (11201, 43453, 'forty-three thousand four hundred fifty-three'), (11202, 51486, 'fifty-one thousand four hundred eighty-six'), (11203, 42007, 'forty-two thousand seven'), (11204, 40911, 'forty thousand nine hundred eleven'), (11205, 71131, 'seventy-one thousand one hundred thirty-one'), (11206, 19540, 'nineteen thousand five hundred forty'), (11207, 70399, 'seventy thousand three hundred ninety-nine'), (11208, 86560, 'eighty-six thousand five hundred sixty'), (11209, 28959, 'twenty-eight thousand nine hundred fifty-nine'), (11210, 97042, 'ninety-seven thousand forty-two'), (11211, 83365, 'eighty-three thousand three hundred sixty-five'), (11212, 92641, 'ninety-two thousand six hundred forty-one'), (11213, 4092, 'four thousand ninety-two'), (11214, 39897, 'thirty-nine thousand eight hundred ninety-seven'), (11215, 22955, 'twenty-two thousand nine hundred fifty-five'), (11216, 34836, 'thirty-four thousand eight hundred thirty-six'), (11217, 28866, 'twenty-eight thousand eight hundred sixty-six'), (11218, 52782, 'fifty-two thousand seven hundred eighty-two'), (11219, 17209, 'seventeen thousand two hundred nine'), (11220, 39108, 'thirty-nine thousand one hundred eight'), (11221, 75816, 'seventy-five thousand eight hundred sixteen'), (11222, 72616, 'seventy-two thousand six hundred sixteen'), (11223, 33417, 'thirty-three thousand four hundred seventeen'), (11224, 93679, 'ninety-three thousand six hundred seventy-nine'), (11225, 52960, 'fifty-two thousand nine hundred sixty'), (11226, 30311, 'thirty thousand three hundred eleven'), (11227, 12191, 'twelve thousand one hundred ninety-one'), (11228, 89102, 'eighty-nine thousand one hundred two'), (11229, 96198, 'ninety-six thousand one hundred ninety-eight'), (11230, 97540, 'ninety-seven thousand five hundred forty'), (11231, 9085, 'nine thousand eighty-five'), (11232, 46069, 'forty-six thousand sixty-nine'), (11233, 75687, 'seventy-five thousand six hundred eighty-seven'), (11234, 25724, 'twenty-five thousand seven hundred twenty-four'), (11235, 41590, 'forty-one thousand five hundred ninety'), (11236, 80445, 'eighty thousand four hundred forty-five'), (11237, 63073, 'sixty-three thousand seventy-three'), (11238, 38755, 'thirty-eight thousand seven hundred fifty-five'), (11239, 60809, 'sixty thousand eight hundred nine'), (11240, 22330, 'twenty-two thousand three hundred thirty'), (11241, 59893, 'fifty-nine thousand eight hundred ninety-three'), (11242, 33710, 'thirty-three thousand seven hundred ten'), (11243, 37837, 'thirty-seven thousand eight hundred thirty-seven'), (11244, 94588, 'ninety-four thousand five hundred eighty-eight'), (11245, 24821, 'twenty-four thousand eight hundred twenty-one'), (11246, 83984, 'eighty-three thousand nine hundred eighty-four'), (11247, 84558, 'eighty-four thousand five hundred fifty-eight'), (11248, 18676, 'eighteen thousand six hundred seventy-six'), (11249, 60062, 'sixty thousand sixty-two'), (11250, 35283, 'thirty-five thousand two hundred eighty-three'), (11251, 28738, 'twenty-eight thousand seven hundred thirty-eight'), (11252, 83718, 'eighty-three thousand seven hundred eighteen'), (11253, 10063, 'ten thousand sixty-three'), (11254, 86317, 'eighty-six thousand three hundred seventeen'), (11255, 14531, 'fourteen thousand five hundred thirty-one'), (11256, 14168, 'fourteen thousand one hundred sixty-eight'), (11257, 2723, 'two thousand seven hundred twenty-three'), (11258, 47599, 'forty-seven thousand five hundred ninety-nine'), (11259, 53148, 'fifty-three thousand one hundred forty-eight'), (11260, 5570, 'five thousand five hundred seventy'), (11261, 36026, 'thirty-six thousand twenty-six'), (11262, 96930, 'ninety-six thousand nine hundred thirty'), (11263, 17867, 'seventeen thousand eight hundred sixty-seven'), (11264, 95334, 'ninety-five thousand three hundred thirty-four'), (11265, 70686, 'seventy thousand six hundred eighty-six'), (11266, 12498, 'twelve thousand four hundred ninety-eight'), (11267, 92754, 'ninety-two thousand seven hundred fifty-four'), (11268, 96156, 'ninety-six thousand one hundred fifty-six'), (11269, 83130, 'eighty-three thousand one hundred thirty'), (11270, 95538, 'ninety-five thousand five hundred thirty-eight'), (11271, 71498, 'seventy-one thousand four hundred ninety-eight'), (11272, 25488, 'twenty-five thousand four hundred eighty-eight'), (11273, 34216, 'thirty-four thousand two hundred sixteen'), (11274, 63954, 'sixty-three thousand nine hundred fifty-four'), (11275, 61635, 'sixty-one thousand six hundred thirty-five'), (11276, 89166, 'eighty-nine thousand one hundred sixty-six'), (11277, 66069, 'sixty-six thousand sixty-nine'), (11278, 69532, 'sixty-nine thousand five hundred thirty-two'), (11279, 14136, 'fourteen thousand one hundred thirty-six'), (11280, 56829, 'fifty-six thousand eight hundred twenty-nine'), (11281, 73841, 'seventy-three thousand eight hundred forty-one'), (11282, 82222, 'eighty-two thousand two hundred twenty-two'), (11283, 68802, 'sixty-eight thousand eight hundred two'), (11284, 54815, 'fifty-four thousand eight hundred fifteen'), (11285, 31933, 'thirty-one thousand nine hundred thirty-three'), (11286, 26543, 'twenty-six thousand five hundred forty-three'), (11287, 86579, 'eighty-six thousand five hundred seventy-nine'), (11288, 58123, 'fifty-eight thousand one hundred twenty-three'), (11289, 35272, 'thirty-five thousand two hundred seventy-two'), (11290, 83122, 'eighty-three thousand one hundred twenty-two'), (11291, 52857, 'fifty-two thousand eight hundred fifty-seven'), (11292, 14345, 'fourteen thousand three hundred forty-five'), (11293, 25953, 'twenty-five thousand nine hundred fifty-three'), (11294, 76965, 'seventy-six thousand nine hundred sixty-five'), (11295, 91485, 'ninety-one thousand four hundred eighty-five'), (11296, 42274, 'forty-two thousand two hundred seventy-four'), (11297, 13176, 'thirteen thousand one hundred seventy-six'), (11298, 9724, 'nine thousand seven hundred twenty-four'), (11299, 68239, 'sixty-eight thousand two hundred thirty-nine'), (11300, 17095, 'seventeen thousand ninety-five'), (11301, 81118, 'eighty-one thousand one hundred eighteen'), (11302, 75755, 'seventy-five thousand seven hundred fifty-five'), (11303, 94959, 'ninety-four thousand nine hundred fifty-nine'), (11304, 44838, 'forty-four thousand eight hundred thirty-eight'), (11305, 11998, 'eleven thousand nine hundred ninety-eight'), (11306, 34732, 'thirty-four thousand seven hundred thirty-two'), (11307, 48092, 'forty-eight thousand ninety-two'), (11308, 48208, 'forty-eight thousand two hundred eight'), (11309, 86109, 'eighty-six thousand one hundred nine'), (11310, 84440, 'eighty-four thousand four hundred forty'), (11311, 28070, 'twenty-eight thousand seventy'), (11312, 53496, 'fifty-three thousand four hundred ninety-six'), (11313, 17786, 'seventeen thousand seven hundred eighty-six'), (11314, 5016, 'five thousand sixteen'), (11315, 1230, 'one thousand two hundred thirty'), (11316, 35383, 'thirty-five thousand three hundred eighty-three'), (11317, 64270, 'sixty-four thousand two hundred seventy'), (11318, 64500, 'sixty-four thousand five hundred'), (11319, 42906, 'forty-two thousand nine hundred six'), (11320, 92747, 'ninety-two thousand seven hundred forty-seven'), (11321, 24862, 'twenty-four thousand eight hundred sixty-two'), (11322, 87202, 'eighty-seven thousand two hundred two'), (11323, 63626, 'sixty-three thousand six hundred twenty-six'), (11324, 19956, 'nineteen thousand nine hundred fifty-six'), (11325, 37053, 'thirty-seven thousand fifty-three'), (11326, 37830, 'thirty-seven thousand eight hundred thirty'), (11327, 18255, 'eighteen thousand two hundred fifty-five'), (11328, 57473, 'fifty-seven thousand four hundred seventy-three'), (11329, 53078, 'fifty-three thousand seventy-eight'), (11330, 72570, 'seventy-two thousand five hundred seventy'), (11331, 86761, 'eighty-six thousand seven hundred sixty-one'), (11332, 62066, 'sixty-two thousand sixty-six'), (11333, 71596, 'seventy-one thousand five hundred ninety-six'), (11334, 6184, 'six thousand one hundred eighty-four'), (11335, 5516, 'five thousand five hundred sixteen'), (11336, 45329, 'forty-five thousand three hundred twenty-nine'), (11337, 85884, 'eighty-five thousand eight hundred eighty-four'), (11338, 76347, 'seventy-six thousand three hundred forty-seven'), (11339, 82035, 'eighty-two thousand thirty-five'), (11340, 48565, 'forty-eight thousand five hundred sixty-five'), (11341, 15716, 'fifteen thousand seven hundred sixteen'), (11342, 44293, 'forty-four thousand two hundred ninety-three'), (11343, 362, 'three hundred sixty-two'), (11344, 29591, 'twenty-nine thousand five hundred ninety-one'), (11345, 56955, 'fifty-six thousand nine hundred fifty-five'), (11346, 38548, 'thirty-eight thousand five hundred forty-eight'), (11347, 17307, 'seventeen thousand three hundred seven'), (11348, 78978, 'seventy-eight thousand nine hundred seventy-eight'), (11349, 64685, 'sixty-four thousand six hundred eighty-five'), (11350, 47855, 'forty-seven thousand eight hundred fifty-five'), (11351, 65951, 'sixty-five thousand nine hundred fifty-one'), (11352, 14685, 'fourteen thousand six hundred eighty-five'), (11353, 93213, 'ninety-three thousand two hundred thirteen'), (11354, 51313, 'fifty-one thousand three hundred thirteen'), (11355, 92868, 'ninety-two thousand eight hundred sixty-eight'), (11356, 31384, 'thirty-one thousand three hundred eighty-four'), (11357, 21938, 'twenty-one thousand nine hundred thirty-eight'), (11358, 51745, 'fifty-one thousand seven hundred forty-five'), (11359, 87292, 'eighty-seven thousand two hundred ninety-two'), (11360, 45071, 'forty-five thousand seventy-one'), (11361, 67087, 'sixty-seven thousand eighty-seven'), (11362, 67809, 'sixty-seven thousand eight hundred nine'), (11363, 49186, 'forty-nine thousand one hundred eighty-six'), (11364, 46375, 'forty-six thousand three hundred seventy-five'), (11365, 87694, 'eighty-seven thousand six hundred ninety-four'), (11366, 9470, 'nine thousand four hundred seventy'), (11367, 46648, 'forty-six thousand six hundred forty-eight'), (11368, 63094, 'sixty-three thousand ninety-four'), (11369, 97956, 'ninety-seven thousand nine hundred fifty-six'), (11370, 40843, 'forty thousand eight hundred forty-three'), (11371, 81668, 'eighty-one thousand six hundred sixty-eight'), (11372, 40076, 'forty thousand seventy-six'), (11373, 81790, 'eighty-one thousand seven hundred ninety'), (11374, 8734, 'eight thousand seven hundred thirty-four'), (11375, 72734, 'seventy-two thousand seven hundred thirty-four'), (11376, 74402, 'seventy-four thousand four hundred two'), (11377, 91455, 'ninety-one thousand four hundred fifty-five'), (11378, 53189, 'fifty-three thousand one hundred eighty-nine'), (11379, 22371, 'twenty-two thousand three hundred seventy-one'), (11380, 90031, 'ninety thousand thirty-one'), (11381, 21005, 'twenty-one thousand five'), (11382, 46662, 'forty-six thousand six hundred sixty-two'), (11383, 65611, 'sixty-five thousand six hundred eleven'), (11384, 64529, 'sixty-four thousand five hundred twenty-nine'), (11385, 33323, 'thirty-three thousand three hundred twenty-three'), (11386, 26092, 'twenty-six thousand ninety-two'), (11387, 26208, 'twenty-six thousand two hundred eight'), (11388, 23028, 'twenty-three thousand twenty-eight'), (11389, 59263, 'fifty-nine thousand two hundred sixty-three'), (11390, 19355, 'nineteen thousand three hundred fifty-five'), (11391, 40818, 'forty thousand eight hundred eighteen'), (11392, 13983, 'thirteen thousand nine hundred eighty-three'), (11393, 35597, 'thirty-five thousand five hundred ninety-seven'), (11394, 70679, 'seventy thousand six hundred seventy-nine'), (11395, 140, 'one hundred forty'), (11396, 14735, 'fourteen thousand seven hundred thirty-five'), (11397, 9901, 'nine thousand nine hundred one'), (11398, 3850, 'three thousand eight hundred fifty'), (11399, 69256, 'sixty-nine thousand two hundred fifty-six'), (11400, 76261, 'seventy-six thousand two hundred sixty-one'), (11401, 86019, 'eighty-six thousand nineteen'), (11402, 65412, 'sixty-five thousand four hundred twelve'), (11403, 38063, 'thirty-eight thousand sixty-three'), (11404, 68221, 'sixty-eight thousand two hundred twenty-one'), (11405, 51080, 'fifty-one thousand eighty'), (11406, 3324, 'three thousand three hundred twenty-four'), (11407, 77335, 'seventy-seven thousand three hundred thirty-five'), (11408, 15169, 'fifteen thousand one hundred sixty-nine'), (11409, 63181, 'sixty-three thousand one hundred eighty-one'), (11410, 11934, 'eleven thousand nine hundred thirty-four'), (11411, 20759, 'twenty thousand seven hundred fifty-nine'), (11412, 79098, 'seventy-nine thousand ninety-eight'), (11413, 8830, 'eight thousand eight hundred thirty'), (11414, 72585, 'seventy-two thousand five hundred eighty-five'), (11415, 79219, 'seventy-nine thousand two hundred nineteen'), (11416, 53323, 'fifty-three thousand three hundred twenty-three'), (11417, 75558, 'seventy-five thousand five hundred fifty-eight'), (11418, 98440, 'ninety-eight thousand four hundred forty'), (11419, 64723, 'sixty-four thousand seven hundred twenty-three'), (11420, 29164, 'twenty-nine thousand one hundred sixty-four'), (11421, 13905, 'thirteen thousand nine hundred five'), (11422, 53559, 'fifty-three thousand five hundred fifty-nine'), (11423, 46375, 'forty-six thousand three hundred seventy-five'), (11424, 49493, 'forty-nine thousand four hundred ninety-three'), (11425, 98149, 'ninety-eight thousand one hundred forty-nine'), (11426, 32086, 'thirty-two thousand eighty-six'), (11427, 98364, 'ninety-eight thousand three hundred sixty-four'), (11428, 61177, 'sixty-one thousand one hundred seventy-seven'), (11429, 31358, 'thirty-one thousand three hundred fifty-eight'), (11430, 19406, 'nineteen thousand four hundred six'), (11431, 5513, 'five thousand five hundred thirteen'), (11432, 85855, 'eighty-five thousand eight hundred fifty-five'), (11433, 39060, 'thirty-nine thousand sixty'), (11434, 59061, 'fifty-nine thousand sixty-one'), (11435, 85856, 'eighty-five thousand eight hundred fifty-six'), (11436, 7417, 'seven thousand four hundred seventeen'), (11437, 72822, 'seventy-two thousand eight hundred twenty-two'), (11438, 33939, 'thirty-three thousand nine hundred thirty-nine'), (11439, 27855, 'twenty-seven thousand eight hundred fifty-five'), (11440, 83991, 'eighty-three thousand nine hundred ninety-one'), (11441, 69927, 'sixty-nine thousand nine hundred twenty-seven'), (11442, 92195, 'ninety-two thousand one hundred ninety-five'), (11443, 12214, 'twelve thousand two hundred fourteen'), (11444, 79905, 'seventy-nine thousand nine hundred five'), (11445, 40109, 'forty thousand one hundred nine'), (11446, 87472, 'eighty-seven thousand four hundred seventy-two'), (11447, 32641, 'thirty-two thousand six hundred forty-one'), (11448, 98532, 'ninety-eight thousand five hundred thirty-two'), (11449, 9061, 'nine thousand sixty-one'), (11450, 99133, 'ninety-nine thousand one hundred thirty-three'), (11451, 49725, 'forty-nine thousand seven hundred twenty-five'), (11452, 27998, 'twenty-seven thousand nine hundred ninety-eight'), (11453, 65589, 'sixty-five thousand five hundred eighty-nine'), (11454, 96383, 'ninety-six thousand three hundred eighty-three'), (11455, 26139, 'twenty-six thousand one hundred thirty-nine'), (11456, 99366, 'ninety-nine thousand three hundred sixty-six'), (11457, 52304, 'fifty-two thousand three hundred four'), (11458, 64265, 'sixty-four thousand two hundred sixty-five'), (11459, 1666, 'one thousand six hundred sixty-six'), (11460, 61856, 'sixty-one thousand eight hundred fifty-six'), (11461, 59283, 'fifty-nine thousand two hundred eighty-three'), (11462, 81271, 'eighty-one thousand two hundred seventy-one'), (11463, 67156, 'sixty-seven thousand one hundred fifty-six'), (11464, 72906, 'seventy-two thousand nine hundred six'), (11465, 60735, 'sixty thousand seven hundred thirty-five'), (11466, 46075, 'forty-six thousand seventy-five'), (11467, 59144, 'fifty-nine thousand one hundred forty-four'), (11468, 10913, 'ten thousand nine hundred thirteen'), (11469, 69991, 'sixty-nine thousand nine hundred ninety-one'), (11470, 75679, 'seventy-five thousand six hundred seventy-nine'), (11471, 20790, 'twenty thousand seven hundred ninety'), (11472, 76456, 'seventy-six thousand four hundred fifty-six'), (11473, 1974, 'one thousand nine hundred seventy-four'), (11474, 87969, 'eighty-seven thousand nine hundred sixty-nine'), (11475, 71298, 'seventy-one thousand two hundred ninety-eight'), (11476, 51425, 'fifty-one thousand four hundred twenty-five'), (11477, 42326, 'forty-two thousand three hundred twenty-six'), (11478, 42923, 'forty-two thousand nine hundred twenty-three'), (11479, 7171, 'seven thousand one hundred seventy-one'), (11480, 84697, 'eighty-four thousand six hundred ninety-seven'), (11481, 73177, 'seventy-three thousand one hundred seventy-seven'), (11482, 44859, 'forty-four thousand eight hundred fifty-nine'), (11483, 87578, 'eighty-seven thousand five hundred seventy-eight'), (11484, 84187, 'eighty-four thousand one hundred eighty-seven'), (11485, 47707, 'forty-seven thousand seven hundred seven'), (11486, 89698, 'eighty-nine thousand six hundred ninety-eight'), (11487, 76876, 'seventy-six thousand eight hundred seventy-six'), (11488, 87271, 'eighty-seven thousand two hundred seventy-one'), (11489, 4452, 'four thousand four hundred fifty-two'), (11490, 10145, 'ten thousand one hundred forty-five'), (11491, 85193, 'eighty-five thousand one hundred ninety-three'), (11492, 28159, 'twenty-eight thousand one hundred fifty-nine'), (11493, 65748, 'sixty-five thousand seven hundred forty-eight'), (11494, 90981, 'ninety thousand nine hundred eighty-one'), (11495, 42289, 'forty-two thousand two hundred eighty-nine'), (11496, 90226, 'ninety thousand two hundred twenty-six'), (11497, 8799, 'eight thousand seven hundred ninety-nine'), (11498, 30748, 'thirty thousand seven hundred forty-eight'), (11499, 75149, 'seventy-five thousand one hundred forty-nine'), (11500, 77633, 'seventy-seven thousand six hundred thirty-three'), (11501, 96361, 'ninety-six thousand three hundred sixty-one'), (11502, 27529, 'twenty-seven thousand five hundred twenty-nine'), (11503, 65516, 'sixty-five thousand five hundred sixteen'), (11504, 41684, 'forty-one thousand six hundred eighty-four'), (11505, 6349, 'six thousand three hundred forty-nine'), (11506, 96745, 'ninety-six thousand seven hundred forty-five'), (11507, 72707, 'seventy-two thousand seven hundred seven'), (11508, 54477, 'fifty-four thousand four hundred seventy-seven'), (11509, 27248, 'twenty-seven thousand two hundred forty-eight'), (11510, 45589, 'forty-five thousand five hundred eighty-nine'), (11511, 56276, 'fifty-six thousand two hundred seventy-six'), (11512, 21843, 'twenty-one thousand eight hundred forty-three'), (11513, 91633, 'ninety-one thousand six hundred thirty-three'), (11514, 99252, 'ninety-nine thousand two hundred fifty-two'), (11515, 87771, 'eighty-seven thousand seven hundred seventy-one'), (11516, 83352, 'eighty-three thousand three hundred fifty-two'), (11517, 15402, 'fifteen thousand four hundred two'), (11518, 85261, 'eighty-five thousand two hundred sixty-one'), (11519, 76493, 'seventy-six thousand four hundred ninety-three'), (11520, 64749, 'sixty-four thousand seven hundred forty-nine'), (11521, 91714, 'ninety-one thousand seven hundred fourteen'), (11522, 93919, 'ninety-three thousand nine hundred nineteen'), (11523, 10405, 'ten thousand four hundred five'), (11524, 1601, 'one thousand six hundred one'), (11525, 8456, 'eight thousand four hundred fifty-six'), (11526, 97383, 'ninety-seven thousand three hundred eighty-three'), (11527, 60982, 'sixty thousand nine hundred eighty-two'), (11528, 31025, 'thirty-one thousand twenty-five'), (11529, 99450, 'ninety-nine thousand four hundred fifty'), (11530, 18995, 'eighteen thousand nine hundred ninety-five'), (11531, 62005, 'sixty-two thousand five'), (11532, 72817, 'seventy-two thousand eight hundred seventeen'), (11533, 34325, 'thirty-four thousand three hundred twenty-five'), (11534, 27524, 'twenty-seven thousand five hundred twenty-four'), (11535, 31700, 'thirty-one thousand seven hundred'), (11536, 24894, 'twenty-four thousand eight hundred ninety-four'), (11537, 47550, 'forty-seven thousand five hundred fifty'), (11538, 4593, 'four thousand five hundred ninety-three'), (11539, 57504, 'fifty-seven thousand five hundred four'), (11540, 35379, 'thirty-five thousand three hundred seventy-nine'), (11541, 46360, 'forty-six thousand three hundred sixty'), (11542, 10016, 'ten thousand sixteen'), (11543, 56653, 'fifty-six thousand six hundred fifty-three'), (11544, 20556, 'twenty thousand five hundred fifty-six'), (11545, 73367, 'seventy-three thousand three hundred sixty-seven'), (11546, 39418, 'thirty-nine thousand four hundred eighteen'), (11547, 40785, 'forty thousand seven hundred eighty-five'), (11548, 2341, 'two thousand three hundred forty-one'), (11549, 37849, 'thirty-seven thousand eight hundred forty-nine'), (11550, 70967, 'seventy thousand nine hundred sixty-seven'), (11551, 14564, 'fourteen thousand five hundred sixty-four'), (11552, 64094, 'sixty-four thousand ninety-four'), (11553, 74273, 'seventy-four thousand two hundred seventy-three'), (11554, 59823, 'fifty-nine thousand eight hundred twenty-three'), (11555, 76224, 'seventy-six thousand two hundred twenty-four'), (11556, 11430, 'eleven thousand four hundred thirty'), (11557, 57467, 'fifty-seven thousand four hundred sixty-seven'), (11558, 85942, 'eighty-five thousand nine hundred forty-two'), (11559, 15638, 'fifteen thousand six hundred thirty-eight'), (11560, 48558, 'forty-eight thousand five hundred fifty-eight'), (11561, 88086, 'eighty-eight thousand eighty-six'), (11562, 70378, 'seventy thousand three hundred seventy-eight'), (11563, 23132, 'twenty-three thousand one hundred thirty-two'), (11564, 35014, 'thirty-five thousand fourteen'), (11565, 23330, 'twenty-three thousand three hundred thirty'), (11566, 78371, 'seventy-eight thousand three hundred seventy-one'), (11567, 91395, 'ninety-one thousand three hundred ninety-five'), (11568, 53664, 'fifty-three thousand six hundred sixty-four'), (11569, 61805, 'sixty-one thousand eight hundred five'), (11570, 99207, 'ninety-nine thousand two hundred seven'), (11571, 47569, 'forty-seven thousand five hundred sixty-nine'), (11572, 92879, 'ninety-two thousand eight hundred seventy-nine'), (11573, 36929, 'thirty-six thousand nine hundred twenty-nine'), (11574, 60151, 'sixty thousand one hundred fifty-one'), (11575, 81954, 'eighty-one thousand nine hundred fifty-four'), (11576, 91591, 'ninety-one thousand five hundred ninety-one'), (11577, 10942, 'ten thousand nine hundred forty-two'), (11578, 97663, 'ninety-seven thousand six hundred sixty-three'), (11579, 84918, 'eighty-four thousand nine hundred eighteen'), (11580, 80587, 'eighty thousand five hundred eighty-seven'), (11581, 47675, 'forty-seven thousand six hundred seventy-five'), (11582, 41679, 'forty-one thousand six hundred seventy-nine'), (11583, 32270, 'thirty-two thousand two hundred seventy'), (11584, 86234, 'eighty-six thousand two hundred thirty-four'), (11585, 88, 'eighty-eight'), (11586, 56924, 'fifty-six thousand nine hundred twenty-four'), (11587, 95872, 'ninety-five thousand eight hundred seventy-two'), (11588, 8206, 'eight thousand two hundred six'), (11589, 29602, 'twenty-nine thousand six hundred two'), (11590, 71481, 'seventy-one thousand four hundred eighty-one'), (11591, 5352, 'five thousand three hundred fifty-two'), (11592, 68841, 'sixty-eight thousand eight hundred forty-one'), (11593, 36050, 'thirty-six thousand fifty'), (11594, 33688, 'thirty-three thousand six hundred eighty-eight'), (11595, 66846, 'sixty-six thousand eight hundred forty-six'), (11596, 28149, 'twenty-eight thousand one hundred forty-nine'), (11597, 25789, 'twenty-five thousand seven hundred eighty-nine'), (11598, 43626, 'forty-three thousand six hundred twenty-six'), (11599, 27851, 'twenty-seven thousand eight hundred fifty-one'), (11600, 52616, 'fifty-two thousand six hundred sixteen'), (11601, 1209, 'one thousand two hundred nine'), (11602, 78254, 'seventy-eight thousand two hundred fifty-four'), (11603, 51943, 'fifty-one thousand nine hundred forty-three'), (11604, 47217, 'forty-seven thousand two hundred seventeen'), (11605, 16252, 'sixteen thousand two hundred fifty-two'), (11606, 95575, 'ninety-five thousand five hundred seventy-five'), (11607, 12198, 'twelve thousand one hundred ninety-eight'), (11608, 17119, 'seventeen thousand one hundred nineteen'), (11609, 88907, 'eighty-eight thousand nine hundred seven'), (11610, 40266, 'forty thousand two hundred sixty-six'), (11611, 91620, 'ninety-one thousand six hundred twenty'), (11612, 47029, 'forty-seven thousand twenty-nine'), (11613, 98400, 'ninety-eight thousand four hundred'), (11614, 54738, 'fifty-four thousand seven hundred thirty-eight'), (11615, 46033, 'forty-six thousand thirty-three'), (11616, 96272, 'ninety-six thousand two hundred seventy-two'), (11617, 15814, 'fifteen thousand eight hundred fourteen'), (11618, 96535, 'ninety-six thousand five hundred thirty-five'), (11619, 17062, 'seventeen thousand sixty-two'), (11620, 87295, 'eighty-seven thousand two hundred ninety-five'), (11621, 66649, 'sixty-six thousand six hundred forty-nine'), (11622, 88056, 'eighty-eight thousand fifty-six'), (11623, 72071, 'seventy-two thousand seventy-one'), (11624, 2343, 'two thousand three hundred forty-three'), (11625, 18142, 'eighteen thousand one hundred forty-two'), (11626, 5621, 'five thousand six hundred twenty-one'), (11627, 95596, 'ninety-five thousand five hundred ninety-six'), (11628, 59760, 'fifty-nine thousand seven hundred sixty'), (11629, 35927, 'thirty-five thousand nine hundred twenty-seven'), (11630, 26830, 'twenty-six thousand eight hundred thirty'), (11631, 94860, 'ninety-four thousand eight hundred sixty'), (11632, 62995, 'sixty-two thousand nine hundred ninety-five'), (11633, 14163, 'fourteen thousand one hundred sixty-three'), (11634, 35378, 'thirty-five thousand three hundred seventy-eight'), (11635, 88319, 'eighty-eight thousand three hundred nineteen'), (11636, 99214, 'ninety-nine thousand two hundred fourteen'), (11637, 75969, 'seventy-five thousand nine hundred sixty-nine'), (11638, 60158, 'sixty thousand one hundred fifty-eight'), (11639, 1035, 'one thousand thirty-five'), (11640, 24573, 'twenty-four thousand five hundred seventy-three'), (11641, 92899, 'ninety-two thousand eight hundred ninety-nine'), (11642, 82980, 'eighty-two thousand nine hundred eighty'), (11643, 57369, 'fifty-seven thousand three hundred sixty-nine'), (11644, 67895, 'sixty-seven thousand eight hundred ninety-five'), (11645, 55084, 'fifty-five thousand eighty-four'), (11646, 22034, 'twenty-two thousand thirty-four'), (11647, 27815, 'twenty-seven thousand eight hundred fifteen'), (11648, 81056, 'eighty-one thousand fifty-six'), (11649, 83270, 'eighty-three thousand two hundred seventy'), (11650, 92373, 'ninety-two thousand three hundred seventy-three'), (11651, 3912, 'three thousand nine hundred twelve'), (11652, 69180, 'sixty-nine thousand one hundred eighty'), (11653, 27208, 'twenty-seven thousand two hundred eight'), (11654, 66841, 'sixty-six thousand eight hundred forty-one'), (11655, 7032, 'seven thousand thirty-two'), (11656, 84356, 'eighty-four thousand three hundred fifty-six'), (11657, 29853, 'twenty-nine thousand eight hundred fifty-three'), (11658, 2066, 'two thousand sixty-six'), (11659, 88164, 'eighty-eight thousand one hundred sixty-four'), (11660, 25832, 'twenty-five thousand eight hundred thirty-two'), (11661, 21040, 'twenty-one thousand forty'), (11662, 78441, 'seventy-eight thousand four hundred forty-one'), (11663, 25490, 'twenty-five thousand four hundred ninety'), (11664, 95833, 'ninety-five thousand eight hundred thirty-three'), (11665, 44350, 'forty-four thousand three hundred fifty'), (11666, 55410, 'fifty-five thousand four hundred ten'), (11667, 66586, 'sixty-six thousand five hundred eighty-six'), (11668, 48512, 'forty-eight thousand five hundred twelve'), (11669, 31588, 'thirty-one thousand five hundred eighty-eight'), (11670, 71438, 'seventy-one thousand four hundred thirty-eight'), (11671, 52689, 'fifty-two thousand six hundred eighty-nine'), (11672, 70942, 'seventy thousand nine hundred forty-two'), (11673, 60981, 'sixty thousand nine hundred eighty-one'), (11674, 7996, 'seven thousand nine hundred ninety-six'), (11675, 80461, 'eighty thousand four hundred sixty-one'), (11676, 88784, 'eighty-eight thousand seven hundred eighty-four'), (11677, 67574, 'sixty-seven thousand five hundred seventy-four'), (11678, 41129, 'forty-one thousand one hundred twenty-nine'), (11679, 85524, 'eighty-five thousand five hundred twenty-four'), (11680, 53194, 'fifty-three thousand one hundred ninety-four'), (11681, 41114, 'forty-one thousand one hundred fourteen'), (11682, 54224, 'fifty-four thousand two hundred twenty-four'), (11683, 10802, 'ten thousand eight hundred two'), (11684, 16472, 'sixteen thousand four hundred seventy-two'), (11685, 17967, 'seventeen thousand nine hundred sixty-seven'), (11686, 50698, 'fifty thousand six hundred ninety-eight'), (11687, 69813, 'sixty-nine thousand eight hundred thirteen'), (11688, 65960, 'sixty-five thousand nine hundred sixty'), (11689, 29887, 'twenty-nine thousand eight hundred eighty-seven'), (11690, 81718, 'eighty-one thousand seven hundred eighteen'), (11691, 51062, 'fifty-one thousand sixty-two'), (11692, 76307, 'seventy-six thousand three hundred seven'), (11693, 60101, 'sixty thousand one hundred one'), (11694, 50075, 'fifty thousand seventy-five'), (11695, 9563, 'nine thousand five hundred sixty-three'), (11696, 70846, 'seventy thousand eight hundred forty-six'), (11697, 79914, 'seventy-nine thousand nine hundred fourteen'), (11698, 1784, 'one thousand seven hundred eighty-four'), (11699, 90575, 'ninety thousand five hundred seventy-five'), (11700, 55055, 'fifty-five thousand fifty-five'), (11701, 60297, 'sixty thousand two hundred ninety-seven'), (11702, 95805, 'ninety-five thousand eight hundred five'), (11703, 13273, 'thirteen thousand two hundred seventy-three'), (11704, 79815, 'seventy-nine thousand eight hundred fifteen'), (11705, 59620, 'fifty-nine thousand six hundred twenty'), (11706, 21919, 'twenty-one thousand nine hundred nineteen'), (11707, 11005, 'eleven thousand five'), (11708, 77163, 'seventy-seven thousand one hundred sixty-three'), (11709, 26919, 'twenty-six thousand nine hundred nineteen'), (11710, 55824, 'fifty-five thousand eight hundred twenty-four'), (11711, 80913, 'eighty thousand nine hundred thirteen'), (11712, 90684, 'ninety thousand six hundred eighty-four'), (11713, 75231, 'seventy-five thousand two hundred thirty-one'), (11714, 98491, 'ninety-eight thousand four hundred ninety-one'), (11715, 73973, 'seventy-three thousand nine hundred seventy-three'), (11716, 37283, 'thirty-seven thousand two hundred eighty-three'), (11717, 21152, 'twenty-one thousand one hundred fifty-two'), (11718, 80724, 'eighty thousand seven hundred twenty-four'), (11719, 27993, 'twenty-seven thousand nine hundred ninety-three'), (11720, 67639, 'sixty-seven thousand six hundred thirty-nine'), (11721, 55483, 'fifty-five thousand four hundred eighty-three'), (11722, 72527, 'seventy-two thousand five hundred twenty-seven'), (11723, 1344, 'one thousand three hundred forty-four'), (11724, 23303, 'twenty-three thousand three hundred three'), (11725, 51649, 'fifty-one thousand six hundred forty-nine'), (11726, 56219, 'fifty-six thousand two hundred nineteen'), (11727, 83074, 'eighty-three thousand seventy-four'), (11728, 96280, 'ninety-six thousand two hundred eighty'), (11729, 38192, 'thirty-eight thousand one hundred ninety-two'), (11730, 19189, 'nineteen thousand one hundred eighty-nine'), (11731, 59908, 'fifty-nine thousand nine hundred eight'), (11732, 96743, 'ninety-six thousand seven hundred forty-three'), (11733, 73681, 'seventy-three thousand six hundred eighty-one'), (11734, 70265, 'seventy thousand two hundred sixty-five'), (11735, 37638, 'thirty-seven thousand six hundred thirty-eight'), (11736, 80457, 'eighty thousand four hundred fifty-seven'), (11737, 85102, 'eighty-five thousand one hundred two'), (11738, 14923, 'fourteen thousand nine hundred twenty-three'), (11739, 26066, 'twenty-six thousand sixty-six'), (11740, 6474, 'six thousand four hundred seventy-four'), (11741, 50681, 'fifty thousand six hundred eighty-one'), (11742, 90915, 'ninety thousand nine hundred fifteen'), (11743, 5375, 'five thousand three hundred seventy-five'), (11744, 96972, 'ninety-six thousand nine hundred seventy-two'), (11745, 81165, 'eighty-one thousand one hundred sixty-five'), (11746, 32559, 'thirty-two thousand five hundred fifty-nine'), (11747, 21887, 'twenty-one thousand eight hundred eighty-seven'), (11748, 8227, 'eight thousand two hundred twenty-seven'), (11749, 49316, 'forty-nine thousand three hundred sixteen'), (11750, 39034, 'thirty-nine thousand thirty-four'), (11751, 440, 'four hundred forty'), (11752, 18325, 'eighteen thousand three hundred twenty-five'), (11753, 5570, 'five thousand five hundred seventy'), (11754, 75698, 'seventy-five thousand six hundred ninety-eight'), (11755, 57080, 'fifty-seven thousand eighty'), (11756, 54906, 'fifty-four thousand nine hundred six'), (11757, 97788, 'ninety-seven thousand seven hundred eighty-eight'), (11758, 26394, 'twenty-six thousand three hundred ninety-four'), (11759, 12022, 'twelve thousand twenty-two'), (11760, 83671, 'eighty-three thousand six hundred seventy-one'), (11761, 49503, 'forty-nine thousand five hundred three'), (11762, 10326, 'ten thousand three hundred twenty-six'), (11763, 95984, 'ninety-five thousand nine hundred eighty-four'), (11764, 36728, 'thirty-six thousand seven hundred twenty-eight'), (11765, 36439, 'thirty-six thousand four hundred thirty-nine'), (11766, 88093, 'eighty-eight thousand ninety-three'), (11767, 33177, 'thirty-three thousand one hundred seventy-seven'), (11768, 40412, 'forty thousand four hundred twelve'), (11769, 25415, 'twenty-five thousand four hundred fifteen'), (11770, 37087, 'thirty-seven thousand eighty-seven'), (11771, 55410, 'fifty-five thousand four hundred ten'), (11772, 71558, 'seventy-one thousand five hundred fifty-eight'), (11773, 85188, 'eighty-five thousand one hundred eighty-eight'), (11774, 33580, 'thirty-three thousand five hundred eighty'), (11775, 23461, 'twenty-three thousand four hundred sixty-one'), (11776, 7467, 'seven thousand four hundred sixty-seven'), (11777, 73274, 'seventy-three thousand two hundred seventy-four'), (11778, 49985, 'forty-nine thousand nine hundred eighty-five'), (11779, 23604, 'twenty-three thousand six hundred four'), (11780, 87154, 'eighty-seven thousand one hundred fifty-four'), (11781, 36464, 'thirty-six thousand four hundred sixty-four'), (11782, 1245, 'one thousand two hundred forty-five'), (11783, 19899, 'nineteen thousand eight hundred ninety-nine'), (11784, 64, 'sixty-four'), (11785, 35942, 'thirty-five thousand nine hundred forty-two'), (11786, 36544, 'thirty-six thousand five hundred forty-four'), (11787, 39453, 'thirty-nine thousand four hundred fifty-three'), (11788, 35472, 'thirty-five thousand four hundred seventy-two'), (11789, 95839, 'ninety-five thousand eight hundred thirty-nine'), (11790, 65438, 'sixty-five thousand four hundred thirty-eight'), (11791, 80881, 'eighty thousand eight hundred eighty-one'), (11792, 91049, 'ninety-one thousand forty-nine'), (11793, 45401, 'forty-five thousand four hundred one'), (11794, 56910, 'fifty-six thousand nine hundred ten'), (11795, 59246, 'fifty-nine thousand two hundred forty-six'), (11796, 60146, 'sixty thousand one hundred forty-six'), (11797, 50273, 'fifty thousand two hundred seventy-three'), (11798, 48601, 'forty-eight thousand six hundred one'), (11799, 32324, 'thirty-two thousand three hundred twenty-four'), (11800, 36917, 'thirty-six thousand nine hundred seventeen'), (11801, 8041, 'eight thousand forty-one'), (11802, 57508, 'fifty-seven thousand five hundred eight'), (11803, 88699, 'eighty-eight thousand six hundred ninety-nine'), (11804, 56013, 'fifty-six thousand thirteen'), (11805, 89561, 'eighty-nine thousand five hundred sixty-one'), (11806, 35853, 'thirty-five thousand eight hundred fifty-three'), (11807, 91112, 'ninety-one thousand one hundred twelve'), (11808, 72755, 'seventy-two thousand seven hundred fifty-five'), (11809, 78468, 'seventy-eight thousand four hundred sixty-eight'), (11810, 8638, 'eight thousand six hundred thirty-eight'), (11811, 51627, 'fifty-one thousand six hundred twenty-seven'), (11812, 15833, 'fifteen thousand eight hundred thirty-three'), (11813, 55768, 'fifty-five thousand seven hundred sixty-eight'), (11814, 51803, 'fifty-one thousand eight hundred three'), (11815, 87582, 'eighty-seven thousand five hundred eighty-two'), (11816, 12511, 'twelve thousand five hundred eleven'), (11817, 31315, 'thirty-one thousand three hundred fifteen'), (11818, 65312, 'sixty-five thousand three hundred twelve'), (11819, 67665, 'sixty-seven thousand six hundred sixty-five'), (11820, 43973, 'forty-three thousand nine hundred seventy-three'), (11821, 43589, 'forty-three thousand five hundred eighty-nine'), (11822, 5111, 'five thousand one hundred eleven'), (11823, 43796, 'forty-three thousand seven hundred ninety-six'), (11824, 65904, 'sixty-five thousand nine hundred four'), (11825, 69766, 'sixty-nine thousand seven hundred sixty-six'), (11826, 19447, 'nineteen thousand four hundred forty-seven'), (11827, 20647, 'twenty thousand six hundred forty-seven'), (11828, 6613, 'six thousand six hundred thirteen'), (11829, 62267, 'sixty-two thousand two hundred sixty-seven'), (11830, 30086, 'thirty thousand eighty-six'), (11831, 10725, 'ten thousand seven hundred twenty-five'), (11832, 3074, 'three thousand seventy-four'), (11833, 19696, 'nineteen thousand six hundred ninety-six'), (11834, 22933, 'twenty-two thousand nine hundred thirty-three'), (11835, 67482, 'sixty-seven thousand four hundred eighty-two'), (11836, 79397, 'seventy-nine thousand three hundred ninety-seven'), (11837, 86421, 'eighty-six thousand four hundred twenty-one'), (11838, 39226, 'thirty-nine thousand two hundred twenty-six'), (11839, 29997, 'twenty-nine thousand nine hundred ninety-seven'), (11840, 79509, 'seventy-nine thousand five hundred nine'), (11841, 44657, 'forty-four thousand six hundred fifty-seven'), (11842, 63587, 'sixty-three thousand five hundred eighty-seven'), (11843, 14479, 'fourteen thousand four hundred seventy-nine'), (11844, 4629, 'four thousand six hundred twenty-nine'), (11845, 74761, 'seventy-four thousand seven hundred sixty-one'), (11846, 9036, 'nine thousand thirty-six'), (11847, 25931, 'twenty-five thousand nine hundred thirty-one'), (11848, 91702, 'ninety-one thousand seven hundred two'), (11849, 63578, 'sixty-three thousand five hundred seventy-eight'), (11850, 78491, 'seventy-eight thousand four hundred ninety-one'), (11851, 50923, 'fifty thousand nine hundred twenty-three'), (11852, 28873, 'twenty-eight thousand eight hundred seventy-three'), (11853, 28932, 'twenty-eight thousand nine hundred thirty-two'), (11854, 73152, 'seventy-three thousand one hundred fifty-two'), (11855, 44726, 'forty-four thousand seven hundred twenty-six'), (11856, 61010, 'sixty-one thousand ten'), (11857, 70973, 'seventy thousand nine hundred seventy-three'), (11858, 77361, 'seventy-seven thousand three hundred sixty-one'), (11859, 21841, 'twenty-one thousand eight hundred forty-one'), (11860, 42493, 'forty-two thousand four hundred ninety-three'), (11861, 6008, 'six thousand eight'), (11862, 33090, 'thirty-three thousand ninety'), (11863, 24484, 'twenty-four thousand four hundred eighty-four'), (11864, 82338, 'eighty-two thousand three hundred thirty-eight'), (11865, 72875, 'seventy-two thousand eight hundred seventy-five'), (11866, 53087, 'fifty-three thousand eighty-seven'), (11867, 38368, 'thirty-eight thousand three hundred sixty-eight'), (11868, 15277, 'fifteen thousand two hundred seventy-seven'), (11869, 38838, 'thirty-eight thousand eight hundred thirty-eight'), (11870, 85835, 'eighty-five thousand eight hundred thirty-five'), (11871, 2091, 'two thousand ninety-one'), (11872, 9794, 'nine thousand seven hundred ninety-four'), (11873, 89091, 'eighty-nine thousand ninety-one'), (11874, 74736, 'seventy-four thousand seven hundred thirty-six'), (11875, 29798, 'twenty-nine thousand seven hundred ninety-eight'), (11876, 27035, 'twenty-seven thousand thirty-five'), (11877, 12553, 'twelve thousand five hundred fifty-three'), (11878, 73894, 'seventy-three thousand eight hundred ninety-four'), (11879, 73009, 'seventy-three thousand nine'), (11880, 6554, 'six thousand five hundred fifty-four'), (11881, 87612, 'eighty-seven thousand six hundred twelve'), (11882, 94342, 'ninety-four thousand three hundred forty-two'), (11883, 42012, 'forty-two thousand twelve'), (11884, 1825, 'one thousand eight hundred twenty-five'), (11885, 90919, 'ninety thousand nine hundred nineteen'), (11886, 50519, 'fifty thousand five hundred nineteen'), (11887, 6022, 'six thousand twenty-two'), (11888, 3404, 'three thousand four hundred four'), (11889, 97645, 'ninety-seven thousand six hundred forty-five'), (11890, 32575, 'thirty-two thousand five hundred seventy-five'), (11891, 3982, 'three thousand nine hundred eighty-two'), (11892, 71443, 'seventy-one thousand four hundred forty-three'), (11893, 42456, 'forty-two thousand four hundred fifty-six'), (11894, 47404, 'forty-seven thousand four hundred four'), (11895, 97548, 'ninety-seven thousand five hundred forty-eight'), (11896, 55393, 'fifty-five thousand three hundred ninety-three'), (11897, 10696, 'ten thousand six hundred ninety-six'), (11898, 15414, 'fifteen thousand four hundred fourteen'), (11899, 87596, 'eighty-seven thousand five hundred ninety-six'), (11900, 19344, 'nineteen thousand three hundred forty-four'), (11901, 61027, 'sixty-one thousand twenty-seven'), (11902, 14105, 'fourteen thousand one hundred five'), (11903, 45470, 'forty-five thousand four hundred seventy'), (11904, 31957, 'thirty-one thousand nine hundred fifty-seven'), (11905, 1912, 'one thousand nine hundred twelve'), (11906, 95194, 'ninety-five thousand one hundred ninety-four'), (11907, 48183, 'forty-eight thousand one hundred eighty-three'), (11908, 75915, 'seventy-five thousand nine hundred fifteen'), (11909, 97717, 'ninety-seven thousand seven hundred seventeen'), (11910, 34737, 'thirty-four thousand seven hundred thirty-seven'), (11911, 67401, 'sixty-seven thousand four hundred one'), (11912, 62222, 'sixty-two thousand two hundred twenty-two'), (11913, 37064, 'thirty-seven thousand sixty-four'), (11914, 81917, 'eighty-one thousand nine hundred seventeen'), (11915, 71965, 'seventy-one thousand nine hundred sixty-five'), (11916, 7275, 'seven thousand two hundred seventy-five'), (11917, 20064, 'twenty thousand sixty-four'), (11918, 16388, 'sixteen thousand three hundred eighty-eight'), (11919, 62706, 'sixty-two thousand seven hundred six'), (11920, 50645, 'fifty thousand six hundred forty-five'), (11921, 15051, 'fifteen thousand fifty-one'), (11922, 51706, 'fifty-one thousand seven hundred six'), (11923, 81934, 'eighty-one thousand nine hundred thirty-four'), (11924, 70976, 'seventy thousand nine hundred seventy-six'), (11925, 503, 'five hundred three'), (11926, 78888, 'seventy-eight thousand eight hundred eighty-eight'), (11927, 58858, 'fifty-eight thousand eight hundred fifty-eight'), (11928, 93364, 'ninety-three thousand three hundred sixty-four'), (11929, 95068, 'ninety-five thousand sixty-eight'), (11930, 84890, 'eighty-four thousand eight hundred ninety'), (11931, 55955, 'fifty-five thousand nine hundred fifty-five'), (11932, 68322, 'sixty-eight thousand three hundred twenty-two'), (11933, 91462, 'ninety-one thousand four hundred sixty-two'), (11934, 14983, 'fourteen thousand nine hundred eighty-three'), (11935, 74169, 'seventy-four thousand one hundred sixty-nine'), (11936, 16367, 'sixteen thousand three hundred sixty-seven'), (11937, 71572, 'seventy-one thousand five hundred seventy-two'), (11938, 72172, 'seventy-two thousand one hundred seventy-two'), (11939, 58667, 'fifty-eight thousand six hundred sixty-seven'), (11940, 75015, 'seventy-five thousand fifteen'), (11941, 5744, 'five thousand seven hundred forty-four'), (11942, 72618, 'seventy-two thousand six hundred eighteen'), (11943, 27111, 'twenty-seven thousand one hundred eleven'), (11944, 78011, 'seventy-eight thousand eleven'), (11945, 46133, 'forty-six thousand one hundred thirty-three'), (11946, 18135, 'eighteen thousand one hundred thirty-five'), (11947, 38877, 'thirty-eight thousand eight hundred seventy-seven'), (11948, 53753, 'fifty-three thousand seven hundred fifty-three'), (11949, 73991, 'seventy-three thousand nine hundred ninety-one'), (11950, 83165, 'eighty-three thousand one hundred sixty-five'), (11951, 61627, 'sixty-one thousand six hundred twenty-seven'), (11952, 84238, 'eighty-four thousand two hundred thirty-eight'), (11953, 10115, 'ten thousand one hundred fifteen'), (11954, 85230, 'eighty-five thousand two hundred thirty'), (11955, 7217, 'seven thousand two hundred seventeen'), (11956, 35963, 'thirty-five thousand nine hundred sixty-three'), (11957, 9498, 'nine thousand four hundred ninety-eight'), (11958, 66553, 'sixty-six thousand five hundred fifty-three'), (11959, 38111, 'thirty-eight thousand one hundred eleven'), (11960, 43959, 'forty-three thousand nine hundred fifty-nine'), (11961, 63156, 'sixty-three thousand one hundred fifty-six'), (11962, 9518, 'nine thousand five hundred eighteen'), (11963, 97171, 'ninety-seven thousand one hundred seventy-one'), (11964, 86771, 'eighty-six thousand seven hundred seventy-one'), (11965, 69, 'sixty-nine'), (11966, 71894, 'seventy-one thousand eight hundred ninety-four'), (11967, 79599, 'seventy-nine thousand five hundred ninety-nine'), (11968, 24985, 'twenty-four thousand nine hundred eighty-five'), (11969, 94272, 'ninety-four thousand two hundred seventy-two'), (11970, 62954, 'sixty-two thousand nine hundred fifty-four'), (11971, 20343, 'twenty thousand three hundred forty-three'), (11972, 67213, 'sixty-seven thousand two hundred thirteen'), (11973, 3899, 'three thousand eight hundred ninety-nine'), (11974, 36809, 'thirty-six thousand eight hundred nine'), (11975, 12182, 'twelve thousand one hundred eighty-two'), (11976, 25246, 'twenty-five thousand two hundred forty-six'), (11977, 44154, 'forty-four thousand one hundred fifty-four'), (11978, 863, 'eight hundred sixty-three'), (11979, 17694, 'seventeen thousand six hundred ninety-four'), (11980, 90126, 'ninety thousand one hundred twenty-six'), (11981, 22030, 'twenty-two thousand thirty'), (11982, 97792, 'ninety-seven thousand seven hundred ninety-two'), (11983, 53180, 'fifty-three thousand one hundred eighty'), (11984, 28533, 'twenty-eight thousand five hundred thirty-three'), (11985, 18468, 'eighteen thousand four hundred sixty-eight'), (11986, 89998, 'eighty-nine thousand nine hundred ninety-eight'), (11987, 72171, 'seventy-two thousand one hundred seventy-one'), (11988, 84881, 'eighty-four thousand eight hundred eighty-one'), (11989, 18068, 'eighteen thousand sixty-eight'), (11990, 15229, 'fifteen thousand two hundred twenty-nine'), (11991, 69248, 'sixty-nine thousand two hundred forty-eight'), (11992, 16246, 'sixteen thousand two hundred forty-six'), (11993, 86592, 'eighty-six thousand five hundred ninety-two'), (11994, 20767, 'twenty thousand seven hundred sixty-seven'), (11995, 78504, 'seventy-eight thousand five hundred four'), (11996, 54547, 'fifty-four thousand five hundred forty-seven'), (11997, 48341, 'forty-eight thousand three hundred forty-one'), (11998, 40232, 'forty thousand two hundred thirty-two'), (11999, 68392, 'sixty-eight thousand three hundred ninety-two'), (12000, 51554, 'fifty-one thousand five hundred fifty-four'), (12001, 65801, 'sixty-five thousand eight hundred one'), (12002, 53753, 'fifty-three thousand seven hundred fifty-three'), (12003, 32296, 'thirty-two thousand two hundred ninety-six'), (12004, 87943, 'eighty-seven thousand nine hundred forty-three'), (12005, 44196, 'forty-four thousand one hundred ninety-six'), (12006, 16664, 'sixteen thousand six hundred sixty-four'), (12007, 2471, 'two thousand four hundred seventy-one'), (12008, 83255, 'eighty-three thousand two hundred fifty-five'), (12009, 86819, 'eighty-six thousand eight hundred nineteen'), (12010, 26459, 'twenty-six thousand four hundred fifty-nine'), (12011, 63043, 'sixty-three thousand forty-three'), (12012, 42042, 'forty-two thousand forty-two'), (12013, 79976, 'seventy-nine thousand nine hundred seventy-six'), (12014, 38489, 'thirty-eight thousand four hundred eighty-nine'), (12015, 10762, 'ten thousand seven hundred sixty-two'), (12016, 84345, 'eighty-four thousand three hundred forty-five'), (12017, 34126, 'thirty-four thousand one hundred twenty-six'), (12018, 92073, 'ninety-two thousand seventy-three'), (12019, 18829, 'eighteen thousand eight hundred twenty-nine'), (12020, 93695, 'ninety-three thousand six hundred ninety-five'), (12021, 77837, 'seventy-seven thousand eight hundred thirty-seven'), (12022, 70889, 'seventy thousand eight hundred eighty-nine'), (12023, 24732, 'twenty-four thousand seven hundred thirty-two'), (12024, 33022, 'thirty-three thousand twenty-two'), (12025, 63120, 'sixty-three thousand one hundred twenty'), (12026, 55172, 'fifty-five thousand one hundred seventy-two'), (12027, 10044, 'ten thousand forty-four'), (12028, 55713, 'fifty-five thousand seven hundred thirteen'), (12029, 95963, 'ninety-five thousand nine hundred sixty-three'), (12030, 47040, 'forty-seven thousand forty'), (12031, 32114, 'thirty-two thousand one hundred fourteen'), (12032, 53632, 'fifty-three thousand six hundred thirty-two'), (12033, 26503, 'twenty-six thousand five hundred three'), (12034, 202, 'two hundred two'), (12035, 64647, 'sixty-four thousand six hundred forty-seven'), (12036, 27092, 'twenty-seven thousand ninety-two'), (12037, 93899, 'ninety-three thousand eight hundred ninety-nine'), (12038, 18597, 'eighteen thousand five hundred ninety-seven'), (12039, 43637, 'forty-three thousand six hundred thirty-seven'), (12040, 24440, 'twenty-four thousand four hundred forty'), (12041, 33105, 'thirty-three thousand one hundred five'), (12042, 39500, 'thirty-nine thousand five hundred'), (12043, 27059, 'twenty-seven thousand fifty-nine'), (12044, 58717, 'fifty-eight thousand seven hundred seventeen'), (12045, 53111, 'fifty-three thousand one hundred eleven'), (12046, 41779, 'forty-one thousand seven hundred seventy-nine'), (12047, 15163, 'fifteen thousand one hundred sixty-three'), (12048, 29164, 'twenty-nine thousand one hundred sixty-four'), (12049, 89874, 'eighty-nine thousand eight hundred seventy-four'), (12050, 21246, 'twenty-one thousand two hundred forty-six'), (12051, 37226, 'thirty-seven thousand two hundred twenty-six'), (12052, 24850, 'twenty-four thousand eight hundred fifty'), (12053, 54187, 'fifty-four thousand one hundred eighty-seven'), (12054, 95951, 'ninety-five thousand nine hundred fifty-one'), (12055, 62399, 'sixty-two thousand three hundred ninety-nine'), (12056, 83078, 'eighty-three thousand seventy-eight'), (12057, 6860, 'six thousand eight hundred sixty'), (12058, 60798, 'sixty thousand seven hundred ninety-eight'), (12059, 76887, 'seventy-six thousand eight hundred eighty-seven'), (12060, 89067, 'eighty-nine thousand sixty-seven'), (12061, 94654, 'ninety-four thousand six hundred fifty-four'), (12062, 35551, 'thirty-five thousand five hundred fifty-one'), (12063, 82960, 'eighty-two thousand nine hundred sixty'), (12064, 36925, 'thirty-six thousand nine hundred twenty-five'), (12065, 8681, 'eight thousand six hundred eighty-one'), (12066, 93072, 'ninety-three thousand seventy-two'), (12067, 41628, 'forty-one thousand six hundred twenty-eight'), (12068, 90514, 'ninety thousand five hundred fourteen'), (12069, 22772, 'twenty-two thousand seven hundred seventy-two'), (12070, 54182, 'fifty-four thousand one hundred eighty-two'), (12071, 29198, 'twenty-nine thousand one hundred ninety-eight'), (12072, 50855, 'fifty thousand eight hundred fifty-five'), (12073, 4904, 'four thousand nine hundred four'), (12074, 94642, 'ninety-four thousand six hundred forty-two'), (12075, 10151, 'ten thousand one hundred fifty-one'), (12076, 61006, 'sixty-one thousand six'), (12077, 51419, 'fifty-one thousand four hundred nineteen'), (12078, 2005, 'two thousand five'), (12079, 29342, 'twenty-nine thousand three hundred forty-two'), (12080, 85539, 'eighty-five thousand five hundred thirty-nine'), (12081, 29893, 'twenty-nine thousand eight hundred ninety-three'), (12082, 46842, 'forty-six thousand eight hundred forty-two'), (12083, 6470, 'six thousand four hundred seventy'), (12084, 890, 'eight hundred ninety'), (12085, 5458, 'five thousand four hundred fifty-eight'), (12086, 95722, 'ninety-five thousand seven hundred twenty-two'), (12087, 34434, 'thirty-four thousand four hundred thirty-four'), (12088, 65788, 'sixty-five thousand seven hundred eighty-eight'), (12089, 58906, 'fifty-eight thousand nine hundred six'), (12090, 66846, 'sixty-six thousand eight hundred forty-six'), (12091, 62130, 'sixty-two thousand one hundred thirty'), (12092, 18517, 'eighteen thousand five hundred seventeen'), (12093, 1055, 'one thousand fifty-five'), (12094, 86514, 'eighty-six thousand five hundred fourteen'), (12095, 87724, 'eighty-seven thousand seven hundred twenty-four'), (12096, 38686, 'thirty-eight thousand six hundred eighty-six'), (12097, 52524, 'fifty-two thousand five hundred twenty-four'), (12098, 68645, 'sixty-eight thousand six hundred forty-five'), (12099, 86971, 'eighty-six thousand nine hundred seventy-one'), (12100, 6454, 'six thousand four hundred fifty-four'), (12101, 13352, 'thirteen thousand three hundred fifty-two'), (12102, 2788, 'two thousand seven hundred eighty-eight'), (12103, 24667, 'twenty-four thousand six hundred sixty-seven'), (12104, 27157, 'twenty-seven thousand one hundred fifty-seven'), (12105, 74556, 'seventy-four thousand five hundred fifty-six'), (12106, 17054, 'seventeen thousand fifty-four'), (12107, 28219, 'twenty-eight thousand two hundred nineteen'), (12108, 99698, 'ninety-nine thousand six hundred ninety-eight'), (12109, 55770, 'fifty-five thousand seven hundred seventy'), (12110, 95691, 'ninety-five thousand six hundred ninety-one'), (12111, 77680, 'seventy-seven thousand six hundred eighty'), (12112, 82557, 'eighty-two thousand five hundred fifty-seven'), (12113, 84289, 'eighty-four thousand two hundred eighty-nine'), (12114, 92640, 'ninety-two thousand six hundred forty'), (12115, 24198, 'twenty-four thousand one hundred ninety-eight'), (12116, 43715, 'forty-three thousand seven hundred fifteen'), (12117, 94437, 'ninety-four thousand four hundred thirty-seven'), (12118, 72542, 'seventy-two thousand five hundred forty-two'), (12119, 97924, 'ninety-seven thousand nine hundred twenty-four'), (12120, 75797, 'seventy-five thousand seven hundred ninety-seven'), (12121, 89770, 'eighty-nine thousand seven hundred seventy'), (12122, 29356, 'twenty-nine thousand three hundred fifty-six'), (12123, 79476, 'seventy-nine thousand four hundred seventy-six'), (12124, 11380, 'eleven thousand three hundred eighty'), (12125, 35412, 'thirty-five thousand four hundred twelve'), (12126, 86036, 'eighty-six thousand thirty-six'), (12127, 51651, 'fifty-one thousand six hundred fifty-one'), (12128, 15728, 'fifteen thousand seven hundred twenty-eight'), (12129, 50357, 'fifty thousand three hundred fifty-seven'), (12130, 39694, 'thirty-nine thousand six hundred ninety-four'), (12131, 51963, 'fifty-one thousand nine hundred sixty-three'), (12132, 46895, 'forty-six thousand eight hundred ninety-five'), (12133, 17207, 'seventeen thousand two hundred seven'), (12134, 49024, 'forty-nine thousand twenty-four'), (12135, 78280, 'seventy-eight thousand two hundred eighty'), (12136, 83475, 'eighty-three thousand four hundred seventy-five'), (12137, 63565, 'sixty-three thousand five hundred sixty-five'), (12138, 54154, 'fifty-four thousand one hundred fifty-four'), (12139, 57673, 'fifty-seven thousand six hundred seventy-three'), (12140, 85932, 'eighty-five thousand nine hundred thirty-two'), (12141, 31555, 'thirty-one thousand five hundred fifty-five'), (12142, 9508, 'nine thousand five hundred eight'), (12143, 73567, 'seventy-three thousand five hundred sixty-seven'), (12144, 44988, 'forty-four thousand nine hundred eighty-eight'), (12145, 21127, 'twenty-one thousand one hundred twenty-seven'), (12146, 61012, 'sixty-one thousand twelve'), (12147, 77837, 'seventy-seven thousand eight hundred thirty-seven'), (12148, 73851, 'seventy-three thousand eight hundred fifty-one'), (12149, 2111, 'two thousand one hundred eleven'), (12150, 73767, 'seventy-three thousand seven hundred sixty-seven'), (12151, 62354, 'sixty-two thousand three hundred fifty-four'), (12152, 61977, 'sixty-one thousand nine hundred seventy-seven'), (12153, 73744, 'seventy-three thousand seven hundred forty-four'), (12154, 95066, 'ninety-five thousand sixty-six'), (12155, 31700, 'thirty-one thousand seven hundred'), (12156, 72926, 'seventy-two thousand nine hundred twenty-six'), (12157, 72676, 'seventy-two thousand six hundred seventy-six'), (12158, 72285, 'seventy-two thousand two hundred eighty-five'), (12159, 49915, 'forty-nine thousand nine hundred fifteen'), (12160, 7776, 'seven thousand seven hundred seventy-six'), (12161, 43821, 'forty-three thousand eight hundred twenty-one'), (12162, 28575, 'twenty-eight thousand five hundred seventy-five'), (12163, 92576, 'ninety-two thousand five hundred seventy-six'), (12164, 98015, 'ninety-eight thousand fifteen'), (12165, 88258, 'eighty-eight thousand two hundred fifty-eight'), (12166, 95707, 'ninety-five thousand seven hundred seven'), (12167, 24589, 'twenty-four thousand five hundred eighty-nine'), (12168, 46285, 'forty-six thousand two hundred eighty-five'), (12169, 5068, 'five thousand sixty-eight'), (12170, 51316, 'fifty-one thousand three hundred sixteen'), (12171, 15037, 'fifteen thousand thirty-seven'), (12172, 66199, 'sixty-six thousand one hundred ninety-nine'), (12173, 33768, 'thirty-three thousand seven hundred sixty-eight'), (12174, 24122, 'twenty-four thousand one hundred twenty-two'), (12175, 17389, 'seventeen thousand three hundred eighty-nine'), (12176, 65942, 'sixty-five thousand nine hundred forty-two'), (12177, 52529, 'fifty-two thousand five hundred twenty-nine'), (12178, 68202, 'sixty-eight thousand two hundred two'), (12179, 72068, 'seventy-two thousand sixty-eight'), (12180, 83937, 'eighty-three thousand nine hundred thirty-seven'), (12181, 61400, 'sixty-one thousand four hundred'), (12182, 13197, 'thirteen thousand one hundred ninety-seven'), (12183, 13985, 'thirteen thousand nine hundred eighty-five'), (12184, 52156, 'fifty-two thousand one hundred fifty-six'), (12185, 40126, 'forty thousand one hundred twenty-six'), (12186, 58642, 'fifty-eight thousand six hundred forty-two'), (12187, 58419, 'fifty-eight thousand four hundred nineteen'), (12188, 49468, 'forty-nine thousand four hundred sixty-eight'), (12189, 72777, 'seventy-two thousand seven hundred seventy-seven'), (12190, 95503, 'ninety-five thousand five hundred three'), (12191, 49326, 'forty-nine thousand three hundred twenty-six'), (12192, 42014, 'forty-two thousand fourteen'), (12193, 79926, 'seventy-nine thousand nine hundred twenty-six'), (12194, 57119, 'fifty-seven thousand one hundred nineteen'), (12195, 42271, 'forty-two thousand two hundred seventy-one'), (12196, 23936, 'twenty-three thousand nine hundred thirty-six'), (12197, 42816, 'forty-two thousand eight hundred sixteen'), (12198, 25696, 'twenty-five thousand six hundred ninety-six'), (12199, 37571, 'thirty-seven thousand five hundred seventy-one'), (12200, 59291, 'fifty-nine thousand two hundred ninety-one'), (12201, 15587, 'fifteen thousand five hundred eighty-seven'), (12202, 38850, 'thirty-eight thousand eight hundred fifty'), (12203, 96783, 'ninety-six thousand seven hundred eighty-three'), (12204, 10262, 'ten thousand two hundred sixty-two'), (12205, 19792, 'nineteen thousand seven hundred ninety-two'), (12206, 25424, 'twenty-five thousand four hundred twenty-four'), (12207, 86536, 'eighty-six thousand five hundred thirty-six'), (12208, 91299, 'ninety-one thousand two hundred ninety-nine'), (12209, 9903, 'nine thousand nine hundred three'), (12210, 75237, 'seventy-five thousand two hundred thirty-seven'), (12211, 53924, 'fifty-three thousand nine hundred twenty-four'), (12212, 25495, 'twenty-five thousand four hundred ninety-five'), (12213, 67720, 'sixty-seven thousand seven hundred twenty'), (12214, 33077, 'thirty-three thousand seventy-seven'), (12215, 65158, 'sixty-five thousand one hundred fifty-eight'), (12216, 67488, 'sixty-seven thousand four hundred eighty-eight'), (12217, 25822, 'twenty-five thousand eight hundred twenty-two'), (12218, 38798, 'thirty-eight thousand seven hundred ninety-eight'), (12219, 92248, 'ninety-two thousand two hundred forty-eight'), (12220, 3957, 'three thousand nine hundred fifty-seven'), (12221, 23961, 'twenty-three thousand nine hundred sixty-one'), (12222, 83061, 'eighty-three thousand sixty-one'), (12223, 47859, 'forty-seven thousand eight hundred fifty-nine'), (12224, 23347, 'twenty-three thousand three hundred forty-seven'), (12225, 78524, 'seventy-eight thousand five hundred twenty-four'), (12226, 97047, 'ninety-seven thousand forty-seven'), (12227, 27575, 'twenty-seven thousand five hundred seventy-five'), (12228, 10705, 'ten thousand seven hundred five'), (12229, 49985, 'forty-nine thousand nine hundred eighty-five'), (12230, 38058, 'thirty-eight thousand fifty-eight'), (12231, 44581, 'forty-four thousand five hundred eighty-one'), (12232, 91085, 'ninety-one thousand eighty-five'), (12233, 18906, 'eighteen thousand nine hundred six'), (12234, 74999, 'seventy-four thousand nine hundred ninety-nine'), (12235, 93218, 'ninety-three thousand two hundred eighteen'), (12236, 48374, 'forty-eight thousand three hundred seventy-four'), (12237, 20996, 'twenty thousand nine hundred ninety-six'), (12238, 89650, 'eighty-nine thousand six hundred fifty'), (12239, 42672, 'forty-two thousand six hundred seventy-two'), (12240, 44001, 'forty-four thousand one'), (12241, 70701, 'seventy thousand seven hundred one'), (12242, 8247, 'eight thousand two hundred forty-seven'), (12243, 51628, 'fifty-one thousand six hundred twenty-eight'), (12244, 63409, 'sixty-three thousand four hundred nine'), (12245, 54207, 'fifty-four thousand two hundred seven'), (12246, 42940, 'forty-two thousand nine hundred forty'), (12247, 18088, 'eighteen thousand eighty-eight'), (12248, 58027, 'fifty-eight thousand twenty-seven'), (12249, 2377, 'two thousand three hundred seventy-seven'), (12250, 75368, 'seventy-five thousand three hundred sixty-eight'), (12251, 75268, 'seventy-five thousand two hundred sixty-eight'), (12252, 30975, 'thirty thousand nine hundred seventy-five'), (12253, 20743, 'twenty thousand seven hundred forty-three'), (12254, 88758, 'eighty-eight thousand seven hundred fifty-eight'), (12255, 84075, 'eighty-four thousand seventy-five'), (12256, 68101, 'sixty-eight thousand one hundred one'), (12257, 99073, 'ninety-nine thousand seventy-three'), (12258, 40425, 'forty thousand four hundred twenty-five'), (12259, 72976, 'seventy-two thousand nine hundred seventy-six'), (12260, 94909, 'ninety-four thousand nine hundred nine'), (12261, 14725, 'fourteen thousand seven hundred twenty-five'), (12262, 71352, 'seventy-one thousand three hundred fifty-two'), (12263, 70754, 'seventy thousand seven hundred fifty-four'), (12264, 56111, 'fifty-six thousand one hundred eleven'), (12265, 24724, 'twenty-four thousand seven hundred twenty-four'), (12266, 82841, 'eighty-two thousand eight hundred forty-one'), (12267, 14546, 'fourteen thousand five hundred forty-six'), (12268, 68833, 'sixty-eight thousand eight hundred thirty-three'), (12269, 13914, 'thirteen thousand nine hundred fourteen'), (12270, 94002, 'ninety-four thousand two'), (12271, 17228, 'seventeen thousand two hundred twenty-eight'), (12272, 50320, 'fifty thousand three hundred twenty'), (12273, 81657, 'eighty-one thousand six hundred fifty-seven'), (12274, 26352, 'twenty-six thousand three hundred fifty-two'), (12275, 33434, 'thirty-three thousand four hundred thirty-four'), (12276, 63140, 'sixty-three thousand one hundred forty'), (12277, 61847, 'sixty-one thousand eight hundred forty-seven'), (12278, 60849, 'sixty thousand eight hundred forty-nine'), (12279, 58925, 'fifty-eight thousand nine hundred twenty-five'), (12280, 82246, 'eighty-two thousand two hundred forty-six'), (12281, 75025, 'seventy-five thousand twenty-five'), (12282, 16427, 'sixteen thousand four hundred twenty-seven'), (12283, 84464, 'eighty-four thousand four hundred sixty-four'), (12284, 85030, 'eighty-five thousand thirty'), (12285, 54040, 'fifty-four thousand forty'), (12286, 57978, 'fifty-seven thousand nine hundred seventy-eight'), (12287, 32230, 'thirty-two thousand two hundred thirty'), (12288, 62464, 'sixty-two thousand four hundred sixty-four'), (12289, 6503, 'six thousand five hundred three'), (12290, 11213, 'eleven thousand two hundred thirteen'), (12291, 20569, 'twenty thousand five hundred sixty-nine'), (12292, 76107, 'seventy-six thousand one hundred seven'), (12293, 69219, 'sixty-nine thousand two hundred nineteen'), (12294, 75998, 'seventy-five thousand nine hundred ninety-eight'), (12295, 76402, 'seventy-six thousand four hundred two'), (12296, 42049, 'forty-two thousand forty-nine'), (12297, 44074, 'forty-four thousand seventy-four'), (12298, 97327, 'ninety-seven thousand three hundred twenty-seven'), (12299, 88499, 'eighty-eight thousand four hundred ninety-nine'), (12300, 88271, 'eighty-eight thousand two hundred seventy-one'), (12301, 91414, 'ninety-one thousand four hundred fourteen'), (12302, 25551, 'twenty-five thousand five hundred fifty-one'), (12303, 92869, 'ninety-two thousand eight hundred sixty-nine'), (12304, 17470, 'seventeen thousand four hundred seventy'), (12305, 49322, 'forty-nine thousand three hundred twenty-two'), (12306, 4405, 'four thousand four hundred five'), (12307, 49683, 'forty-nine thousand six hundred eighty-three'), (12308, 93222, 'ninety-three thousand two hundred twenty-two'), (12309, 36708, 'thirty-six thousand seven hundred eight'), (12310, 66742, 'sixty-six thousand seven hundred forty-two'), (12311, 34969, 'thirty-four thousand nine hundred sixty-nine'), (12312, 89482, 'eighty-nine thousand four hundred eighty-two'), (12313, 58554, 'fifty-eight thousand five hundred fifty-four'), (12314, 39993, 'thirty-nine thousand nine hundred ninety-three'), (12315, 50638, 'fifty thousand six hundred thirty-eight'), (12316, 4791, 'four thousand seven hundred ninety-one'), (12317, 66854, 'sixty-six thousand eight hundred fifty-four'), (12318, 25504, 'twenty-five thousand five hundred four'), (12319, 67298, 'sixty-seven thousand two hundred ninety-eight'), (12320, 7335, 'seven thousand three hundred thirty-five'), (12321, 89558, 'eighty-nine thousand five hundred fifty-eight'), (12322, 45790, 'forty-five thousand seven hundred ninety'), (12323, 48365, 'forty-eight thousand three hundred sixty-five'), (12324, 19106, 'nineteen thousand one hundred six'), (12325, 51267, 'fifty-one thousand two hundred sixty-seven'), (12326, 3146, 'three thousand one hundred forty-six'), (12327, 87813, 'eighty-seven thousand eight hundred thirteen'), (12328, 10331, 'ten thousand three hundred thirty-one'), (12329, 96012, 'ninety-six thousand twelve'), (12330, 28797, 'twenty-eight thousand seven hundred ninety-seven'), (12331, 91533, 'ninety-one thousand five hundred thirty-three'), (12332, 14340, 'fourteen thousand three hundred forty'), (12333, 52036, 'fifty-two thousand thirty-six'), (12334, 5733, 'five thousand seven hundred thirty-three'), (12335, 8866, 'eight thousand eight hundred sixty-six'), (12336, 11371, 'eleven thousand three hundred seventy-one'), (12337, 55413, 'fifty-five thousand four hundred thirteen'), (12338, 23904, 'twenty-three thousand nine hundred four'), (12339, 56802, 'fifty-six thousand eight hundred two'), (12340, 87067, 'eighty-seven thousand sixty-seven'), (12341, 83206, 'eighty-three thousand two hundred six'), (12342, 40947, 'forty thousand nine hundred forty-seven'), (12343, 72030, 'seventy-two thousand thirty'), (12344, 88626, 'eighty-eight thousand six hundred twenty-six'), (12345, 80309, 'eighty thousand three hundred nine'), (12346, 31106, 'thirty-one thousand one hundred six'), (12347, 33592, 'thirty-three thousand five hundred ninety-two'), (12348, 78295, 'seventy-eight thousand two hundred ninety-five'), (12349, 79065, 'seventy-nine thousand sixty-five'), (12350, 23927, 'twenty-three thousand nine hundred twenty-seven'), (12351, 54139, 'fifty-four thousand one hundred thirty-nine'), (12352, 83607, 'eighty-three thousand six hundred seven'), (12353, 97703, 'ninety-seven thousand seven hundred three'), (12354, 86390, 'eighty-six thousand three hundred ninety'), (12355, 81581, 'eighty-one thousand five hundred eighty-one'), (12356, 65125, 'sixty-five thousand one hundred twenty-five'), (12357, 25619, 'twenty-five thousand six hundred nineteen'), (12358, 45601, 'forty-five thousand six hundred one'), (12359, 65234, 'sixty-five thousand two hundred thirty-four'), (12360, 76715, 'seventy-six thousand seven hundred fifteen'), (12361, 35896, 'thirty-five thousand eight hundred ninety-six'), (12362, 69346, 'sixty-nine thousand three hundred forty-six'), (12363, 67174, 'sixty-seven thousand one hundred seventy-four'), (12364, 3094, 'three thousand ninety-four'), (12365, 558, 'five hundred fifty-eight'), (12366, 47389, 'forty-seven thousand three hundred eighty-nine'), (12367, 44635, 'forty-four thousand six hundred thirty-five'), (12368, 54662, 'fifty-four thousand six hundred sixty-two'), (12369, 32752, 'thirty-two thousand seven hundred fifty-two'), (12370, 78081, 'seventy-eight thousand eighty-one'), (12371, 33368, 'thirty-three thousand three hundred sixty-eight'), (12372, 31931, 'thirty-one thousand nine hundred thirty-one'), (12373, 43170, 'forty-three thousand one hundred seventy'), (12374, 71960, 'seventy-one thousand nine hundred sixty'), (12375, 38617, 'thirty-eight thousand six hundred seventeen'), (12376, 82807, 'eighty-two thousand eight hundred seven'), (12377, 10336, 'ten thousand three hundred thirty-six'), (12378, 1412, 'one thousand four hundred twelve'), (12379, 32118, 'thirty-two thousand one hundred eighteen'), (12380, 64392, 'sixty-four thousand three hundred ninety-two'), (12381, 42476, 'forty-two thousand four hundred seventy-six'), (12382, 27134, 'twenty-seven thousand one hundred thirty-four'), (12383, 47740, 'forty-seven thousand seven hundred forty'), (12384, 7011, 'seven thousand eleven'), (12385, 20480, 'twenty thousand four hundred eighty'), (12386, 78531, 'seventy-eight thousand five hundred thirty-one'), (12387, 71055, 'seventy-one thousand fifty-five'), (12388, 8399, 'eight thousand three hundred ninety-nine'), (12389, 58006, 'fifty-eight thousand six'), (12390, 69496, 'sixty-nine thousand four hundred ninety-six'), (12391, 96798, 'ninety-six thousand seven hundred ninety-eight'), (12392, 79086, 'seventy-nine thousand eighty-six'), (12393, 56704, 'fifty-six thousand seven hundred four'), (12394, 32766, 'thirty-two thousand seven hundred sixty-six'), (12395, 15365, 'fifteen thousand three hundred sixty-five'), (12396, 56636, 'fifty-six thousand six hundred thirty-six'), (12397, 52152, 'fifty-two thousand one hundred fifty-two'), (12398, 4018, 'four thousand eighteen'), (12399, 95012, 'ninety-five thousand twelve'), (12400, 43967, 'forty-three thousand nine hundred sixty-seven'), (12401, 30962, 'thirty thousand nine hundred sixty-two'), (12402, 51535, 'fifty-one thousand five hundred thirty-five'), (12403, 66800, 'sixty-six thousand eight hundred'), (12404, 46071, 'forty-six thousand seventy-one'), (12405, 63123, 'sixty-three thousand one hundred twenty-three'), (12406, 96410, 'ninety-six thousand four hundred ten'), (12407, 42174, 'forty-two thousand one hundred seventy-four'), (12408, 83887, 'eighty-three thousand eight hundred eighty-seven'), (12409, 24188, 'twenty-four thousand one hundred eighty-eight'), (12410, 41230, 'forty-one thousand two hundred thirty'), (12411, 57121, 'fifty-seven thousand one hundred twenty-one'), (12412, 47047, 'forty-seven thousand forty-seven'), (12413, 65933, 'sixty-five thousand nine hundred thirty-three'), (12414, 11440, 'eleven thousand four hundred forty'), (12415, 28993, 'twenty-eight thousand nine hundred ninety-three'), (12416, 43252, 'forty-three thousand two hundred fifty-two'), (12417, 59452, 'fifty-nine thousand four hundred fifty-two'), (12418, 67675, 'sixty-seven thousand six hundred seventy-five'), (12419, 4068, 'four thousand sixty-eight'), (12420, 51511, 'fifty-one thousand five hundred eleven'), (12421, 37323, 'thirty-seven thousand three hundred twenty-three'), (12422, 98598, 'ninety-eight thousand five hundred ninety-eight'), (12423, 70363, 'seventy thousand three hundred sixty-three'), (12424, 88471, 'eighty-eight thousand four hundred seventy-one'), (12425, 96800, 'ninety-six thousand eight hundred'), (12426, 66953, 'sixty-six thousand nine hundred fifty-three'), (12427, 93859, 'ninety-three thousand eight hundred fifty-nine'), (12428, 85522, 'eighty-five thousand five hundred twenty-two'), (12429, 83734, 'eighty-three thousand seven hundred thirty-four'), (12430, 8259, 'eight thousand two hundred fifty-nine'), (12431, 39924, 'thirty-nine thousand nine hundred twenty-four'), (12432, 75262, 'seventy-five thousand two hundred sixty-two'), (12433, 20752, 'twenty thousand seven hundred fifty-two'), (12434, 32105, 'thirty-two thousand one hundred five'), (12435, 16337, 'sixteen thousand three hundred thirty-seven'), (12436, 1699, 'one thousand six hundred ninety-nine'), (12437, 88600, 'eighty-eight thousand six hundred'), (12438, 15719, 'fifteen thousand seven hundred nineteen'), (12439, 46010, 'forty-six thousand ten'), (12440, 46329, 'forty-six thousand three hundred twenty-nine'), (12441, 60870, 'sixty thousand eight hundred seventy'), (12442, 15013, 'fifteen thousand thirteen'), (12443, 1396, 'one thousand three hundred ninety-six'), (12444, 9929, 'nine thousand nine hundred twenty-nine'), (12445, 82977, 'eighty-two thousand nine hundred seventy-seven'), (12446, 20123, 'twenty thousand one hundred twenty-three'), (12447, 18137, 'eighteen thousand one hundred thirty-seven'), (12448, 84531, 'eighty-four thousand five hundred thirty-one'), (12449, 22905, 'twenty-two thousand nine hundred five'), (12450, 8244, 'eight thousand two hundred forty-four'), (12451, 79957, 'seventy-nine thousand nine hundred fifty-seven'), (12452, 6762, 'six thousand seven hundred sixty-two'), (12453, 80350, 'eighty thousand three hundred fifty'), (12454, 24058, 'twenty-four thousand fifty-eight'), (12455, 28450, 'twenty-eight thousand four hundred fifty'), (12456, 25114, 'twenty-five thousand one hundred fourteen'), (12457, 25121, 'twenty-five thousand one hundred twenty-one'), (12458, 81767, 'eighty-one thousand seven hundred sixty-seven'), (12459, 32815, 'thirty-two thousand eight hundred fifteen'), (12460, 58684, 'fifty-eight thousand six hundred eighty-four'), (12461, 12150, 'twelve thousand one hundred fifty'), (12462, 25453, 'twenty-five thousand four hundred fifty-three'), (12463, 94481, 'ninety-four thousand four hundred eighty-one'), (12464, 25271, 'twenty-five thousand two hundred seventy-one'), (12465, 15510, 'fifteen thousand five hundred ten'), (12466, 37587, 'thirty-seven thousand five hundred eighty-seven'), (12467, 18037, 'eighteen thousand thirty-seven'), (12468, 47583, 'forty-seven thousand five hundred eighty-three'), (12469, 48867, 'forty-eight thousand eight hundred sixty-seven'), (12470, 50053, 'fifty thousand fifty-three'), (12471, 94736, 'ninety-four thousand seven hundred thirty-six'), (12472, 87965, 'eighty-seven thousand nine hundred sixty-five'), (12473, 55778, 'fifty-five thousand seven hundred seventy-eight'), (12474, 67748, 'sixty-seven thousand seven hundred forty-eight'), (12475, 34690, 'thirty-four thousand six hundred ninety'), (12476, 50922, 'fifty thousand nine hundred twenty-two'), (12477, 8715, 'eight thousand seven hundred fifteen'), (12478, 12945, 'twelve thousand nine hundred forty-five'), (12479, 68002, 'sixty-eight thousand two'), (12480, 15048, 'fifteen thousand forty-eight'), (12481, 91440, 'ninety-one thousand four hundred forty'), (12482, 51865, 'fifty-one thousand eight hundred sixty-five'), (12483, 11627, 'eleven thousand six hundred twenty-seven'), (12484, 98039, 'ninety-eight thousand thirty-nine'), (12485, 32256, 'thirty-two thousand two hundred fifty-six'), (12486, 99595, 'ninety-nine thousand five hundred ninety-five'), (12487, 29250, 'twenty-nine thousand two hundred fifty'), (12488, 77049, 'seventy-seven thousand forty-nine'), (12489, 86646, 'eighty-six thousand six hundred forty-six'), (12490, 41257, 'forty-one thousand two hundred fifty-seven'), (12491, 77597, 'seventy-seven thousand five hundred ninety-seven'), (12492, 9909, 'nine thousand nine hundred nine'), (12493, 72690, 'seventy-two thousand six hundred ninety'), (12494, 73231, 'seventy-three thousand two hundred thirty-one'), (12495, 1184, 'one thousand one hundred eighty-four'), (12496, 27663, 'twenty-seven thousand six hundred sixty-three'), (12497, 29064, 'twenty-nine thousand sixty-four'), (12498, 44542, 'forty-four thousand five hundred forty-two'), (12499, 50700, 'fifty thousand seven hundred'), (12500, 64527, 'sixty-four thousand five hundred twenty-seven'), (12501, 27776, 'twenty-seven thousand seven hundred seventy-six'), (12502, 71905, 'seventy-one thousand nine hundred five'), (12503, 63327, 'sixty-three thousand three hundred twenty-seven'), (12504, 24529, 'twenty-four thousand five hundred twenty-nine'), (12505, 53478, 'fifty-three thousand four hundred seventy-eight'), (12506, 41381, 'forty-one thousand three hundred eighty-one'), (12507, 12987, 'twelve thousand nine hundred eighty-seven'), (12508, 94291, 'ninety-four thousand two hundred ninety-one'), (12509, 83630, 'eighty-three thousand six hundred thirty'), (12510, 36087, 'thirty-six thousand eighty-seven'), (12511, 28941, 'twenty-eight thousand nine hundred forty-one'), (12512, 68723, 'sixty-eight thousand seven hundred twenty-three'), (12513, 36126, 'thirty-six thousand one hundred twenty-six'), (12514, 63247, 'sixty-three thousand two hundred forty-seven'), (12515, 69046, 'sixty-nine thousand forty-six'), (12516, 23716, 'twenty-three thousand seven hundred sixteen'), (12517, 54643, 'fifty-four thousand six hundred forty-three'), (12518, 68032, 'sixty-eight thousand thirty-two'), (12519, 15832, 'fifteen thousand eight hundred thirty-two'), (12520, 28522, 'twenty-eight thousand five hundred twenty-two'), (12521, 1615, 'one thousand six hundred fifteen'), (12522, 56734, 'fifty-six thousand seven hundred thirty-four'), (12523, 29381, 'twenty-nine thousand three hundred eighty-one'), (12524, 96784, 'ninety-six thousand seven hundred eighty-four'), (12525, 25678, 'twenty-five thousand six hundred seventy-eight'), (12526, 25660, 'twenty-five thousand six hundred sixty'), (12527, 51583, 'fifty-one thousand five hundred eighty-three'), (12528, 41817, 'forty-one thousand eight hundred seventeen'), (12529, 65995, 'sixty-five thousand nine hundred ninety-five'), (12530, 18128, 'eighteen thousand one hundred twenty-eight'), (12531, 26780, 'twenty-six thousand seven hundred eighty'), (12532, 35231, 'thirty-five thousand two hundred thirty-one'), (12533, 54947, 'fifty-four thousand nine hundred forty-seven'), (12534, 45299, 'forty-five thousand two hundred ninety-nine'), (12535, 16410, 'sixteen thousand four hundred ten'), (12536, 28447, 'twenty-eight thousand four hundred forty-seven'), (12537, 34234, 'thirty-four thousand two hundred thirty-four'), (12538, 93067, 'ninety-three thousand sixty-seven'), (12539, 357, 'three hundred fifty-seven'), (12540, 37564, 'thirty-seven thousand five hundred sixty-four'), (12541, 78133, 'seventy-eight thousand one hundred thirty-three'), (12542, 12698, 'twelve thousand six hundred ninety-eight'), (12543, 81735, 'eighty-one thousand seven hundred thirty-five'), (12544, 85149, 'eighty-five thousand one hundred forty-nine'), (12545, 6787, 'six thousand seven hundred eighty-seven'), (12546, 8320, 'eight thousand three hundred twenty'), (12547, 7963, 'seven thousand nine hundred sixty-three'), (12548, 66394, 'sixty-six thousand three hundred ninety-four'), (12549, 83934, 'eighty-three thousand nine hundred thirty-four'), (12550, 67896, 'sixty-seven thousand eight hundred ninety-six'), (12551, 18949, 'eighteen thousand nine hundred forty-nine'), (12552, 75265, 'seventy-five thousand two hundred sixty-five'), (12553, 12320, 'twelve thousand three hundred twenty'), (12554, 50364, 'fifty thousand three hundred sixty-four'), (12555, 85557, 'eighty-five thousand five hundred fifty-seven'), (12556, 61745, 'sixty-one thousand seven hundred forty-five'), (12557, 33129, 'thirty-three thousand one hundred twenty-nine'), (12558, 82482, 'eighty-two thousand four hundred eighty-two'), (12559, 29300, 'twenty-nine thousand three hundred'), (12560, 39206, 'thirty-nine thousand two hundred six'), (12561, 31842, 'thirty-one thousand eight hundred forty-two'), (12562, 21973, 'twenty-one thousand nine hundred seventy-three'), (12563, 24646, 'twenty-four thousand six hundred forty-six'), (12564, 17006, 'seventeen thousand six'), (12565, 57897, 'fifty-seven thousand eight hundred ninety-seven'), (12566, 46859, 'forty-six thousand eight hundred fifty-nine'), (12567, 68650, 'sixty-eight thousand six hundred fifty'), (12568, 19990, 'nineteen thousand nine hundred ninety'), (12569, 54074, 'fifty-four thousand seventy-four'), (12570, 75240, 'seventy-five thousand two hundred forty'), (12571, 53637, 'fifty-three thousand six hundred thirty-seven'), (12572, 33994, 'thirty-three thousand nine hundred ninety-four'), (12573, 40402, 'forty thousand four hundred two'), (12574, 23534, 'twenty-three thousand five hundred thirty-four'), (12575, 38116, 'thirty-eight thousand one hundred sixteen'), (12576, 63651, 'sixty-three thousand six hundred fifty-one'), (12577, 37906, 'thirty-seven thousand nine hundred six'), (12578, 84345, 'eighty-four thousand three hundred forty-five'), (12579, 24704, 'twenty-four thousand seven hundred four'), (12580, 6299, 'six thousand two hundred ninety-nine'), (12581, 13423, 'thirteen thousand four hundred twenty-three'), (12582, 49551, 'forty-nine thousand five hundred fifty-one'), (12583, 61536, 'sixty-one thousand five hundred thirty-six'), (12584, 99195, 'ninety-nine thousand one hundred ninety-five'), (12585, 90974, 'ninety thousand nine hundred seventy-four'), (12586, 86382, 'eighty-six thousand three hundred eighty-two'), (12587, 98600, 'ninety-eight thousand six hundred'), (12588, 11341, 'eleven thousand three hundred forty-one'), (12589, 6230, 'six thousand two hundred thirty'), (12590, 84415, 'eighty-four thousand four hundred fifteen'), (12591, 13190, 'thirteen thousand one hundred ninety'), (12592, 40445, 'forty thousand four hundred forty-five'), (12593, 27416, 'twenty-seven thousand four hundred sixteen'), (12594, 22997, 'twenty-two thousand nine hundred ninety-seven'), (12595, 73654, 'seventy-three thousand six hundred fifty-four'), (12596, 45799, 'forty-five thousand seven hundred ninety-nine'), (12597, 11809, 'eleven thousand eight hundred nine'), (12598, 71345, 'seventy-one thousand three hundred forty-five'), (12599, 78930, 'seventy-eight thousand nine hundred thirty'), (12600, 44539, 'forty-four thousand five hundred thirty-nine'), (12601, 25888, 'twenty-five thousand eight hundred eighty-eight'), (12602, 55168, 'fifty-five thousand one hundred sixty-eight'), (12603, 17408, 'seventeen thousand four hundred eight'), (12604, 91046, 'ninety-one thousand forty-six'), (12605, 60487, 'sixty thousand four hundred eighty-seven'), (12606, 38260, 'thirty-eight thousand two hundred sixty'), (12607, 34970, 'thirty-four thousand nine hundred seventy'), (12608, 87774, 'eighty-seven thousand seven hundred seventy-four'), (12609, 33514, 'thirty-three thousand five hundred fourteen'), (12610, 6794, 'six thousand seven hundred ninety-four'), (12611, 70503, 'seventy thousand five hundred three'), (12612, 51852, 'fifty-one thousand eight hundred fifty-two'), (12613, 23008, 'twenty-three thousand eight'), (12614, 2474, 'two thousand four hundred seventy-four'), (12615, 14304, 'fourteen thousand three hundred four'), (12616, 78739, 'seventy-eight thousand seven hundred thirty-nine'), (12617, 33290, 'thirty-three thousand two hundred ninety'), (12618, 82004, 'eighty-two thousand four'), (12619, 24390, 'twenty-four thousand three hundred ninety'), (12620, 87146, 'eighty-seven thousand one hundred forty-six'), (12621, 8691, 'eight thousand six hundred ninety-one'), (12622, 99344, 'ninety-nine thousand three hundred forty-four'), (12623, 3238, 'three thousand two hundred thirty-eight'), (12624, 71113, 'seventy-one thousand one hundred thirteen'), (12625, 71441, 'seventy-one thousand four hundred forty-one'), (12626, 71434, 'seventy-one thousand four hundred thirty-four'), (12627, 82644, 'eighty-two thousand six hundred forty-four'), (12628, 89276, 'eighty-nine thousand two hundred seventy-six'), (12629, 8501, 'eight thousand five hundred one'), (12630, 60214, 'sixty thousand two hundred fourteen'), (12631, 84718, 'eighty-four thousand seven hundred eighteen'), (12632, 87349, 'eighty-seven thousand three hundred forty-nine'), (12633, 91038, 'ninety-one thousand thirty-eight'), (12634, 41025, 'forty-one thousand twenty-five'), (12635, 52699, 'fifty-two thousand six hundred ninety-nine'), (12636, 81366, 'eighty-one thousand three hundred sixty-six'), (12637, 9633, 'nine thousand six hundred thirty-three'), (12638, 47238, 'forty-seven thousand two hundred thirty-eight'), (12639, 9001, 'nine thousand one'), (12640, 66941, 'sixty-six thousand nine hundred forty-one'), (12641, 52593, 'fifty-two thousand five hundred ninety-three'), (12642, 97813, 'ninety-seven thousand eight hundred thirteen'), (12643, 5987, 'five thousand nine hundred eighty-seven'), (12644, 82630, 'eighty-two thousand six hundred thirty'), (12645, 98160, 'ninety-eight thousand one hundred sixty'), (12646, 222, 'two hundred twenty-two'), (12647, 86892, 'eighty-six thousand eight hundred ninety-two'), (12648, 63743, 'sixty-three thousand seven hundred forty-three'), (12649, 81734, 'eighty-one thousand seven hundred thirty-four'), (12650, 48541, 'forty-eight thousand five hundred forty-one'), (12651, 36365, 'thirty-six thousand three hundred sixty-five'), (12652, 20826, 'twenty thousand eight hundred twenty-six'), (12653, 85203, 'eighty-five thousand two hundred three'), (12654, 26495, 'twenty-six thousand four hundred ninety-five'), (12655, 19571, 'nineteen thousand five hundred seventy-one'), (12656, 1139, 'one thousand one hundred thirty-nine'), (12657, 64406, 'sixty-four thousand four hundred six'), (12658, 57451, 'fifty-seven thousand four hundred fifty-one'), (12659, 79223, 'seventy-nine thousand two hundred twenty-three'), (12660, 57009, 'fifty-seven thousand nine'), (12661, 73333, 'seventy-three thousand three hundred thirty-three'), (12662, 51819, 'fifty-one thousand eight hundred nineteen'), (12663, 63717, 'sixty-three thousand seven hundred seventeen'), (12664, 75607, 'seventy-five thousand six hundred seven'), (12665, 30413, 'thirty thousand four hundred thirteen'), (12666, 43176, 'forty-three thousand one hundred seventy-six'), (12667, 9969, 'nine thousand nine hundred sixty-nine'), (12668, 84541, 'eighty-four thousand five hundred forty-one'), (12669, 61457, 'sixty-one thousand four hundred fifty-seven'), (12670, 39097, 'thirty-nine thousand ninety-seven'), (12671, 10062, 'ten thousand sixty-two'), (12672, 75919, 'seventy-five thousand nine hundred nineteen'), (12673, 33105, 'thirty-three thousand one hundred five'), (12674, 85001, 'eighty-five thousand one'), (12675, 70635, 'seventy thousand six hundred thirty-five'), (12676, 1633, 'one thousand six hundred thirty-three'), (12677, 56254, 'fifty-six thousand two hundred fifty-four'), (12678, 96865, 'ninety-six thousand eight hundred sixty-five'), (12679, 32482, 'thirty-two thousand four hundred eighty-two'), (12680, 8805, 'eight thousand eight hundred five'), (12681, 44699, 'forty-four thousand six hundred ninety-nine'), (12682, 67454, 'sixty-seven thousand four hundred fifty-four'), (12683, 6728, 'six thousand seven hundred twenty-eight'), (12684, 60834, 'sixty thousand eight hundred thirty-four'), (12685, 69492, 'sixty-nine thousand four hundred ninety-two'), (12686, 75870, 'seventy-five thousand eight hundred seventy'), (12687, 46922, 'forty-six thousand nine hundred twenty-two'), (12688, 49954, 'forty-nine thousand nine hundred fifty-four'), (12689, 89469, 'eighty-nine thousand four hundred sixty-nine'), (12690, 19961, 'nineteen thousand nine hundred sixty-one'), (12691, 44740, 'forty-four thousand seven hundred forty'), (12692, 44840, 'forty-four thousand eight hundred forty'), (12693, 92446, 'ninety-two thousand four hundred forty-six'), (12694, 58104, 'fifty-eight thousand one hundred four'), (12695, 85813, 'eighty-five thousand eight hundred thirteen'), (12696, 31356, 'thirty-one thousand three hundred fifty-six'), (12697, 36930, 'thirty-six thousand nine hundred thirty'), (12698, 33444, 'thirty-three thousand four hundred forty-four'), (12699, 49152, 'forty-nine thousand one hundred fifty-two'), (12700, 77609, 'seventy-seven thousand six hundred nine'), (12701, 66681, 'sixty-six thousand six hundred eighty-one'), (12702, 41452, 'forty-one thousand four hundred fifty-two'), (12703, 45766, 'forty-five thousand seven hundred sixty-six'), (12704, 30935, 'thirty thousand nine hundred thirty-five'), (12705, 67848, 'sixty-seven thousand eight hundred forty-eight'), (12706, 20793, 'twenty thousand seven hundred ninety-three'), (12707, 20614, 'twenty thousand six hundred fourteen'), (12708, 80832, 'eighty thousand eight hundred thirty-two'), (12709, 93210, 'ninety-three thousand two hundred ten'), (12710, 62573, 'sixty-two thousand five hundred seventy-three'), (12711, 34415, 'thirty-four thousand four hundred fifteen'), (12712, 37357, 'thirty-seven thousand three hundred fifty-seven'), (12713, 72961, 'seventy-two thousand nine hundred sixty-one'), (12714, 14852, 'fourteen thousand eight hundred fifty-two'), (12715, 28075, 'twenty-eight thousand seventy-five'), (12716, 83557, 'eighty-three thousand five hundred fifty-seven'), (12717, 78992, 'seventy-eight thousand nine hundred ninety-two'), (12718, 69052, 'sixty-nine thousand fifty-two'), (12719, 41901, 'forty-one thousand nine hundred one'), (12720, 76886, 'seventy-six thousand eight hundred eighty-six'), (12721, 19779, 'nineteen thousand seven hundred seventy-nine'), (12722, 84912, 'eighty-four thousand nine hundred twelve'), (12723, 66187, 'sixty-six thousand one hundred eighty-seven'), (12724, 78636, 'seventy-eight thousand six hundred thirty-six'), (12725, 30044, 'thirty thousand forty-four'), (12726, 28176, 'twenty-eight thousand one hundred seventy-six'), (12727, 27874, 'twenty-seven thousand eight hundred seventy-four'), (12728, 95578, 'ninety-five thousand five hundred seventy-eight'), (12729, 33681, 'thirty-three thousand six hundred eighty-one'), (12730, 12222, 'twelve thousand two hundred twenty-two'), (12731, 26598, 'twenty-six thousand five hundred ninety-eight'), (12732, 62513, 'sixty-two thousand five hundred thirteen'), (12733, 11509, 'eleven thousand five hundred nine'), (12734, 83392, 'eighty-three thousand three hundred ninety-two'), (12735, 97773, 'ninety-seven thousand seven hundred seventy-three'), (12736, 3058, 'three thousand fifty-eight'), (12737, 89802, 'eighty-nine thousand eight hundred two'), (12738, 49401, 'forty-nine thousand four hundred one'), (12739, 28921, 'twenty-eight thousand nine hundred twenty-one'), (12740, 45066, 'forty-five thousand sixty-six'), (12741, 23035, 'twenty-three thousand thirty-five'), (12742, 63245, 'sixty-three thousand two hundred forty-five'), (12743, 2524, 'two thousand five hundred twenty-four'), (12744, 21784, 'twenty-one thousand seven hundred eighty-four'), (12745, 94512, 'ninety-four thousand five hundred twelve'), (12746, 80023, 'eighty thousand twenty-three'), (12747, 22798, 'twenty-two thousand seven hundred ninety-eight'), (12748, 16485, 'sixteen thousand four hundred eighty-five'), (12749, 29678, 'twenty-nine thousand six hundred seventy-eight'), (12750, 4367, 'four thousand three hundred sixty-seven'), (12751, 73647, 'seventy-three thousand six hundred forty-seven'), (12752, 24278, 'twenty-four thousand two hundred seventy-eight'), (12753, 40519, 'forty thousand five hundred nineteen'), (12754, 15534, 'fifteen thousand five hundred thirty-four'), (12755, 68479, 'sixty-eight thousand four hundred seventy-nine'), (12756, 29542, 'twenty-nine thousand five hundred forty-two'), (12757, 20877, 'twenty thousand eight hundred seventy-seven'), (12758, 80932, 'eighty thousand nine hundred thirty-two'), (12759, 66037, 'sixty-six thousand thirty-seven'), (12760, 17970, 'seventeen thousand nine hundred seventy'), (12761, 58418, 'fifty-eight thousand four hundred eighteen'), (12762, 19130, 'nineteen thousand one hundred thirty'), (12763, 77982, 'seventy-seven thousand nine hundred eighty-two'), (12764, 61486, 'sixty-one thousand four hundred eighty-six'), (12765, 98514, 'ninety-eight thousand five hundred fourteen'), (12766, 7357, 'seven thousand three hundred fifty-seven'), (12767, 3509, 'three thousand five hundred nine'), (12768, 1141, 'one thousand one hundred forty-one'), (12769, 39136, 'thirty-nine thousand one hundred thirty-six'), (12770, 80580, 'eighty thousand five hundred eighty'), (12771, 15069, 'fifteen thousand sixty-nine'), (12772, 87482, 'eighty-seven thousand four hundred eighty-two'), (12773, 54223, 'fifty-four thousand two hundred twenty-three'), (12774, 3540, 'three thousand five hundred forty'), (12775, 15949, 'fifteen thousand nine hundred forty-nine'), (12776, 12876, 'twelve thousand eight hundred seventy-six'), (12777, 96495, 'ninety-six thousand four hundred ninety-five'), (12778, 17739, 'seventeen thousand seven hundred thirty-nine'), (12779, 93418, 'ninety-three thousand four hundred eighteen'), (12780, 68798, 'sixty-eight thousand seven hundred ninety-eight'), (12781, 73562, 'seventy-three thousand five hundred sixty-two'), (12782, 89855, 'eighty-nine thousand eight hundred fifty-five'), (12783, 52512, 'fifty-two thousand five hundred twelve'), (12784, 70913, 'seventy thousand nine hundred thirteen'), (12785, 19681, 'nineteen thousand six hundred eighty-one'), (12786, 15170, 'fifteen thousand one hundred seventy'), (12787, 1278, 'one thousand two hundred seventy-eight'), (12788, 7387, 'seven thousand three hundred eighty-seven'), (12789, 76076, 'seventy-six thousand seventy-six'), (12790, 9618, 'nine thousand six hundred eighteen'), (12791, 82352, 'eighty-two thousand three hundred fifty-two'), (12792, 70463, 'seventy thousand four hundred sixty-three'), (12793, 8868, 'eight thousand eight hundred sixty-eight'), (12794, 71028, 'seventy-one thousand twenty-eight'), (12795, 74951, 'seventy-four thousand nine hundred fifty-one'), (12796, 43086, 'forty-three thousand eighty-six'), (12797, 14586, 'fourteen thousand five hundred eighty-six'), (12798, 89832, 'eighty-nine thousand eight hundred thirty-two'), (12799, 11578, 'eleven thousand five hundred seventy-eight'), (12800, 73228, 'seventy-three thousand two hundred twenty-eight'), (12801, 51916, 'fifty-one thousand nine hundred sixteen'), (12802, 75684, 'seventy-five thousand six hundred eighty-four'), (12803, 9282, 'nine thousand two hundred eighty-two'), (12804, 62773, 'sixty-two thousand seven hundred seventy-three'), (12805, 76492, 'seventy-six thousand four hundred ninety-two'), (12806, 38490, 'thirty-eight thousand four hundred ninety'), (12807, 77016, 'seventy-seven thousand sixteen'), (12808, 36651, 'thirty-six thousand six hundred fifty-one'), (12809, 32828, 'thirty-two thousand eight hundred twenty-eight'), (12810, 46669, 'forty-six thousand six hundred sixty-nine'), (12811, 5839, 'five thousand eight hundred thirty-nine'), (12812, 87461, 'eighty-seven thousand four hundred sixty-one'), (12813, 68394, 'sixty-eight thousand three hundred ninety-four'), (12814, 8589, 'eight thousand five hundred eighty-nine'), (12815, 36381, 'thirty-six thousand three hundred eighty-one'), (12816, 38955, 'thirty-eight thousand nine hundred fifty-five'), (12817, 7651, 'seven thousand six hundred fifty-one'), (12818, 36513, 'thirty-six thousand five hundred thirteen'), (12819, 61571, 'sixty-one thousand five hundred seventy-one'), (12820, 78388, 'seventy-eight thousand three hundred eighty-eight'), (12821, 96959, 'ninety-six thousand nine hundred fifty-nine'), (12822, 64174, 'sixty-four thousand one hundred seventy-four'), (12823, 77853, 'seventy-seven thousand eight hundred fifty-three'), (12824, 83875, 'eighty-three thousand eight hundred seventy-five'), (12825, 34097, 'thirty-four thousand ninety-seven'), (12826, 49286, 'forty-nine thousand two hundred eighty-six'), (12827, 53306, 'fifty-three thousand three hundred six'), (12828, 50010, 'fifty thousand ten'), (12829, 82545, 'eighty-two thousand five hundred forty-five'), (12830, 10096, 'ten thousand ninety-six'), (12831, 87893, 'eighty-seven thousand eight hundred ninety-three'), (12832, 22147, 'twenty-two thousand one hundred forty-seven'), (12833, 35019, 'thirty-five thousand nineteen'), (12834, 88197, 'eighty-eight thousand one hundred ninety-seven'), (12835, 1190, 'one thousand one hundred ninety'), (12836, 31003, 'thirty-one thousand three'), (12837, 90966, 'ninety thousand nine hundred sixty-six'), (12838, 82353, 'eighty-two thousand three hundred fifty-three'), (12839, 10483, 'ten thousand four hundred eighty-three'), (12840, 34201, 'thirty-four thousand two hundred one'), (12841, 8659, 'eight thousand six hundred fifty-nine'), (12842, 4141, 'four thousand one hundred forty-one'), (12843, 99048, 'ninety-nine thousand forty-eight'), (12844, 36881, 'thirty-six thousand eight hundred eighty-one'), (12845, 50482, 'fifty thousand four hundred eighty-two'), (12846, 16753, 'sixteen thousand seven hundred fifty-three'), (12847, 34601, 'thirty-four thousand six hundred one'), (12848, 69668, 'sixty-nine thousand six hundred sixty-eight'), (12849, 5723, 'five thousand seven hundred twenty-three'), (12850, 78806, 'seventy-eight thousand eight hundred six'), (12851, 37255, 'thirty-seven thousand two hundred fifty-five'), (12852, 1243, 'one thousand two hundred forty-three'), (12853, 85509, 'eighty-five thousand five hundred nine'), (12854, 23359, 'twenty-three thousand three hundred fifty-nine'), (12855, 61139, 'sixty-one thousand one hundred thirty-nine'), (12856, 71717, 'seventy-one thousand seven hundred seventeen'), (12857, 83152, 'eighty-three thousand one hundred fifty-two'), (12858, 91280, 'ninety-one thousand two hundred eighty'), (12859, 42023, 'forty-two thousand twenty-three'), (12860, 96972, 'ninety-six thousand nine hundred seventy-two'), (12861, 6091, 'six thousand ninety-one'), (12862, 62824, 'sixty-two thousand eight hundred twenty-four'), (12863, 512, 'five hundred twelve'), (12864, 49396, 'forty-nine thousand three hundred ninety-six'), (12865, 54919, 'fifty-four thousand nine hundred nineteen'), (12866, 68481, 'sixty-eight thousand four hundred eighty-one'), (12867, 27450, 'twenty-seven thousand four hundred fifty'), (12868, 99983, 'ninety-nine thousand nine hundred eighty-three'), (12869, 24262, 'twenty-four thousand two hundred sixty-two'), (12870, 38760, 'thirty-eight thousand seven hundred sixty'), (12871, 43360, 'forty-three thousand three hundred sixty'), (12872, 80619, 'eighty thousand six hundred nineteen'), (12873, 75727, 'seventy-five thousand seven hundred twenty-seven'), (12874, 2630, 'two thousand six hundred thirty'), (12875, 7541, 'seven thousand five hundred forty-one'), (12876, 7291, 'seven thousand two hundred ninety-one'), (12877, 88162, 'eighty-eight thousand one hundred sixty-two'), (12878, 24432, 'twenty-four thousand four hundred thirty-two'), (12879, 14501, 'fourteen thousand five hundred one'), (12880, 11520, 'eleven thousand five hundred twenty'), (12881, 92393, 'ninety-two thousand three hundred ninety-three'), (12882, 46755, 'forty-six thousand seven hundred fifty-five'), (12883, 63663, 'sixty-three thousand six hundred sixty-three'), (12884, 49559, 'forty-nine thousand five hundred fifty-nine'), (12885, 56492, 'fifty-six thousand four hundred ninety-two'), (12886, 72253, 'seventy-two thousand two hundred fifty-three'), (12887, 96666, 'ninety-six thousand six hundred sixty-six'), (12888, 71969, 'seventy-one thousand nine hundred sixty-nine'), (12889, 46863, 'forty-six thousand eight hundred sixty-three'), (12890, 15652, 'fifteen thousand six hundred fifty-two'), (12891, 72052, 'seventy-two thousand fifty-two'), (12892, 66925, 'sixty-six thousand nine hundred twenty-five'), (12893, 85517, 'eighty-five thousand five hundred seventeen'), (12894, 69393, 'sixty-nine thousand three hundred ninety-three'), (12895, 81891, 'eighty-one thousand eight hundred ninety-one'), (12896, 17057, 'seventeen thousand fifty-seven'), (12897, 20521, 'twenty thousand five hundred twenty-one'), (12898, 68199, 'sixty-eight thousand one hundred ninety-nine'), (12899, 72803, 'seventy-two thousand eight hundred three'), (12900, 91889, 'ninety-one thousand eight hundred eighty-nine'), (12901, 78360, 'seventy-eight thousand three hundred sixty'), (12902, 93107, 'ninety-three thousand one hundred seven'), (12903, 45987, 'forty-five thousand nine hundred eighty-seven'), (12904, 45793, 'forty-five thousand seven hundred ninety-three'), (12905, 8970, 'eight thousand nine hundred seventy'), (12906, 56082, 'fifty-six thousand eighty-two'), (12907, 91257, 'ninety-one thousand two hundred fifty-seven'), (12908, 62921, 'sixty-two thousand nine hundred twenty-one'), (12909, 96689, 'ninety-six thousand six hundred eighty-nine'), (12910, 24205, 'twenty-four thousand two hundred five'), (12911, 11390, 'eleven thousand three hundred ninety'), (12912, 73121, 'seventy-three thousand one hundred twenty-one'), (12913, 95764, 'ninety-five thousand seven hundred sixty-four'), (12914, 36677, 'thirty-six thousand six hundred seventy-seven'), (12915, 86653, 'eighty-six thousand six hundred fifty-three'), (12916, 65247, 'sixty-five thousand two hundred forty-seven'), (12917, 30872, 'thirty thousand eight hundred seventy-two'), (12918, 46363, 'forty-six thousand three hundred sixty-three'), (12919, 42258, 'forty-two thousand two hundred fifty-eight'), (12920, 27708, 'twenty-seven thousand seven hundred eight'), (12921, 61779, 'sixty-one thousand seven hundred seventy-nine'), (12922, 24349, 'twenty-four thousand three hundred forty-nine'), (12923, 96704, 'ninety-six thousand seven hundred four'), (12924, 95275, 'ninety-five thousand two hundred seventy-five'), (12925, 87231, 'eighty-seven thousand two hundred thirty-one'), (12926, 53844, 'fifty-three thousand eight hundred forty-four'), (12927, 41310, 'forty-one thousand three hundred ten'), (12928, 14740, 'fourteen thousand seven hundred forty'), (12929, 25345, 'twenty-five thousand three hundred forty-five'), (12930, 25025, 'twenty-five thousand twenty-five'), (12931, 31759, 'thirty-one thousand seven hundred fifty-nine'), (12932, 67993, 'sixty-seven thousand nine hundred ninety-three'), (12933, 41174, 'forty-one thousand one hundred seventy-four'), (12934, 56221, 'fifty-six thousand two hundred twenty-one'), (12935, 94024, 'ninety-four thousand twenty-four'), (12936, 47734, 'forty-seven thousand seven hundred thirty-four'), (12937, 52968, 'fifty-two thousand nine hundred sixty-eight'), (12938, 28183, 'twenty-eight thousand one hundred eighty-three'), (12939, 90718, 'ninety thousand seven hundred eighteen'), (12940, 26636, 'twenty-six thousand six hundred thirty-six'), (12941, 9657, 'nine thousand six hundred fifty-seven'), (12942, 55732, 'fifty-five thousand seven hundred thirty-two'), (12943, 3136, 'three thousand one hundred thirty-six'), (12944, 85190, 'eighty-five thousand one hundred ninety'), (12945, 70538, 'seventy thousand five hundred thirty-eight'), (12946, 1230, 'one thousand two hundred thirty'), (12947, 22112, 'twenty-two thousand one hundred twelve'), (12948, 72798, 'seventy-two thousand seven hundred ninety-eight'), (12949, 82090, 'eighty-two thousand ninety'), (12950, 17523, 'seventeen thousand five hundred twenty-three'), (12951, 68350, 'sixty-eight thousand three hundred fifty'), (12952, 32789, 'thirty-two thousand seven hundred eighty-nine'), (12953, 41081, 'forty-one thousand eighty-one'), (12954, 2253, 'two thousand two hundred fifty-three'), (12955, 50080, 'fifty thousand eighty'), (12956, 54578, 'fifty-four thousand five hundred seventy-eight'), (12957, 2331, 'two thousand three hundred thirty-one'), (12958, 93221, 'ninety-three thousand two hundred twenty-one'), (12959, 19311, 'nineteen thousand three hundred eleven'), (12960, 90975, 'ninety thousand nine hundred seventy-five'), (12961, 19742, 'nineteen thousand seven hundred forty-two'), (12962, 75866, 'seventy-five thousand eight hundred sixty-six'), (12963, 93547, 'ninety-three thousand five hundred forty-seven'), (12964, 96560, 'ninety-six thousand five hundred sixty'), (12965, 75627, 'seventy-five thousand six hundred twenty-seven'), (12966, 34291, 'thirty-four thousand two hundred ninety-one'), (12967, 32072, 'thirty-two thousand seventy-two'), (12968, 41331, 'forty-one thousand three hundred thirty-one'), (12969, 33966, 'thirty-three thousand nine hundred sixty-six'), (12970, 30509, 'thirty thousand five hundred nine'), (12971, 26004, 'twenty-six thousand four'), (12972, 79445, 'seventy-nine thousand four hundred forty-five'), (12973, 59729, 'fifty-nine thousand seven hundred twenty-nine'), (12974, 58564, 'fifty-eight thousand five hundred sixty-four'), (12975, 50568, 'fifty thousand five hundred sixty-eight'), (12976, 97406, 'ninety-seven thousand four hundred six'), (12977, 79150, 'seventy-nine thousand one hundred fifty'), (12978, 5568, 'five thousand five hundred sixty-eight'), (12979, 29024, 'twenty-nine thousand twenty-four'), (12980, 36483, 'thirty-six thousand four hundred eighty-three'), (12981, 82251, 'eighty-two thousand two hundred fifty-one'), (12982, 60002, 'sixty thousand two'), (12983, 45482, 'forty-five thousand four hundred eighty-two'), (12984, 93006, 'ninety-three thousand six'), (12985, 27898, 'twenty-seven thousand eight hundred ninety-eight'), (12986, 61300, 'sixty-one thousand three hundred'), (12987, 92218, 'ninety-two thousand two hundred eighteen'), (12988, 67535, 'sixty-seven thousand five hundred thirty-five'), (12989, 76339, 'seventy-six thousand three hundred thirty-nine'), (12990, 72070, 'seventy-two thousand seventy'), (12991, 28943, 'twenty-eight thousand nine hundred forty-three'), (12992, 66395, 'sixty-six thousand three hundred ninety-five'), (12993, 42842, 'forty-two thousand eight hundred forty-two'), (12994, 16532, 'sixteen thousand five hundred thirty-two'), (12995, 34635, 'thirty-four thousand six hundred thirty-five'), (12996, 55582, 'fifty-five thousand five hundred eighty-two'), (12997, 9467, 'nine thousand four hundred sixty-seven'), (12998, 64893, 'sixty-four thousand eight hundred ninety-three'), (12999, 23940, 'twenty-three thousand nine hundred forty'), (13000, 55126, 'fifty-five thousand one hundred twenty-six'), (13001, 69249, 'sixty-nine thousand two hundred forty-nine'), (13002, 6594, 'six thousand five hundred ninety-four'), (13003, 859, 'eight hundred fifty-nine'), (13004, 73199, 'seventy-three thousand one hundred ninety-nine'), (13005, 60033, 'sixty thousand thirty-three'), (13006, 95594, 'ninety-five thousand five hundred ninety-four'), (13007, 74763, 'seventy-four thousand seven hundred sixty-three'), (13008, 80143, 'eighty thousand one hundred forty-three'), (13009, 15977, 'fifteen thousand nine hundred seventy-seven'), (13010, 28553, 'twenty-eight thousand five hundred fifty-three'), (13011, 10883, 'ten thousand eight hundred eighty-three'), (13012, 52986, 'fifty-two thousand nine hundred eighty-six'), (13013, 98725, 'ninety-eight thousand seven hundred twenty-five'), (13014, 23894, 'twenty-three thousand eight hundred ninety-four'), (13015, 16058, 'sixteen thousand fifty-eight'), (13016, 28094, 'twenty-eight thousand ninety-four'), (13017, 72037, 'seventy-two thousand thirty-seven'), (13018, 72724, 'seventy-two thousand seven hundred twenty-four'), (13019, 29083, 'twenty-nine thousand eighty-three'), (13020, 61504, 'sixty-one thousand five hundred four'), (13021, 98472, 'ninety-eight thousand four hundred seventy-two'), (13022, 22160, 'twenty-two thousand one hundred sixty'), (13023, 36434, 'thirty-six thousand four hundred thirty-four'), (13024, 33592, 'thirty-three thousand five hundred ninety-two'), (13025, 49671, 'forty-nine thousand six hundred seventy-one'), (13026, 78062, 'seventy-eight thousand sixty-two'), (13027, 8393, 'eight thousand three hundred ninety-three'), (13028, 34389, 'thirty-four thousand three hundred eighty-nine'), (13029, 15687, 'fifteen thousand six hundred eighty-seven'), (13030, 19960, 'nineteen thousand nine hundred sixty'), (13031, 79730, 'seventy-nine thousand seven hundred thirty'), (13032, 73414, 'seventy-three thousand four hundred fourteen'), (13033, 16789, 'sixteen thousand seven hundred eighty-nine'), (13034, 22755, 'twenty-two thousand seven hundred fifty-five'), (13035, 71141, 'seventy-one thousand one hundred forty-one'), (13036, 29026, 'twenty-nine thousand twenty-six'), (13037, 55375, 'fifty-five thousand three hundred seventy-five'), (13038, 15263, 'fifteen thousand two hundred sixty-three'), (13039, 11836, 'eleven thousand eight hundred thirty-six'), (13040, 28710, 'twenty-eight thousand seven hundred ten'), (13041, 23040, 'twenty-three thousand forty'), (13042, 34904, 'thirty-four thousand nine hundred four'), (13043, 66708, 'sixty-six thousand seven hundred eight'), (13044, 47542, 'forty-seven thousand five hundred forty-two'), (13045, 77947, 'seventy-seven thousand nine hundred forty-seven'), (13046, 72736, 'seventy-two thousand seven hundred thirty-six'), (13047, 1134, 'one thousand one hundred thirty-four'), (13048, 48033, 'forty-eight thousand thirty-three'), (13049, 27029, 'twenty-seven thousand twenty-nine'), (13050, 35890, 'thirty-five thousand eight hundred ninety'), (13051, 79681, 'seventy-nine thousand six hundred eighty-one'), (13052, 35486, 'thirty-five thousand four hundred eighty-six'), (13053, 66726, 'sixty-six thousand seven hundred twenty-six'), (13054, 83162, 'eighty-three thousand one hundred sixty-two'), (13055, 97255, 'ninety-seven thousand two hundred fifty-five'), (13056, 41277, 'forty-one thousand two hundred seventy-seven'), (13057, 25423, 'twenty-five thousand four hundred twenty-three'), (13058, 281, 'two hundred eighty-one'), (13059, 90417, 'ninety thousand four hundred seventeen'), (13060, 62305, 'sixty-two thousand three hundred five'), (13061, 49849, 'forty-nine thousand eight hundred forty-nine'), (13062, 95997, 'ninety-five thousand nine hundred ninety-seven'), (13063, 49575, 'forty-nine thousand five hundred seventy-five'), (13064, 12959, 'twelve thousand nine hundred fifty-nine'), (13065, 78908, 'seventy-eight thousand nine hundred eight'), (13066, 17761, 'seventeen thousand seven hundred sixty-one'), (13067, 69050, 'sixty-nine thousand fifty'), (13068, 13445, 'thirteen thousand four hundred forty-five'), (13069, 67021, 'sixty-seven thousand twenty-one'), (13070, 51585, 'fifty-one thousand five hundred eighty-five'), (13071, 11363, 'eleven thousand three hundred sixty-three'), (13072, 36716, 'thirty-six thousand seven hundred sixteen'), (13073, 46088, 'forty-six thousand eighty-eight'), (13074, 92349, 'ninety-two thousand three hundred forty-nine'), (13075, 85292, 'eighty-five thousand two hundred ninety-two'), (13076, 20095, 'twenty thousand ninety-five'), (13077, 28912, 'twenty-eight thousand nine hundred twelve'), (13078, 55114, 'fifty-five thousand one hundred fourteen'), (13079, 68563, 'sixty-eight thousand five hundred sixty-three'), (13080, 80654, 'eighty thousand six hundred fifty-four'), (13081, 74404, 'seventy-four thousand four hundred four'), (13082, 47088, 'forty-seven thousand eighty-eight'), (13083, 94552, 'ninety-four thousand five hundred fifty-two'), (13084, 37271, 'thirty-seven thousand two hundred seventy-one'), (13085, 64669, 'sixty-four thousand six hundred sixty-nine'), (13086, 19183, 'nineteen thousand one hundred eighty-three'), (13087, 9634, 'nine thousand six hundred thirty-four'), (13088, 90937, 'ninety thousand nine hundred thirty-seven'), (13089, 88092, 'eighty-eight thousand ninety-two'), (13090, 54780, 'fifty-four thousand seven hundred eighty'), (13091, 53309, 'fifty-three thousand three hundred nine'), (13092, 99026, 'ninety-nine thousand twenty-six'), (13093, 17, 'seventeen'), (13094, 69486, 'sixty-nine thousand four hundred eighty-six'), (13095, 59899, 'fifty-nine thousand eight hundred ninety-nine'), (13096, 80285, 'eighty thousand two hundred eighty-five'), (13097, 85509, 'eighty-five thousand five hundred nine'), (13098, 94755, 'ninety-four thousand seven hundred fifty-five'), (13099, 67450, 'sixty-seven thousand four hundred fifty'), (13100, 56947, 'fifty-six thousand nine hundred forty-seven'), (13101, 42153, 'forty-two thousand one hundred fifty-three'), (13102, 40568, 'forty thousand five hundred sixty-eight'), (13103, 91808, 'ninety-one thousand eight hundred eight'), (13104, 92218, 'ninety-two thousand two hundred eighteen'), (13105, 38607, 'thirty-eight thousand six hundred seven'), (13106, 59004, 'fifty-nine thousand four'), (13107, 40999, 'forty thousand nine hundred ninety-nine'), (13108, 98708, 'ninety-eight thousand seven hundred eight'), (13109, 69257, 'sixty-nine thousand two hundred fifty-seven'), (13110, 57812, 'fifty-seven thousand eight hundred twelve'), (13111, 97011, 'ninety-seven thousand eleven'), (13112, 63689, 'sixty-three thousand six hundred eighty-nine'), (13113, 47810, 'forty-seven thousand eight hundred ten'), (13114, 48543, 'forty-eight thousand five hundred forty-three'), (13115, 32738, 'thirty-two thousand seven hundred thirty-eight'), (13116, 98108, 'ninety-eight thousand one hundred eight'), (13117, 85594, 'eighty-five thousand five hundred ninety-four'), (13118, 90226, 'ninety thousand two hundred twenty-six'), (13119, 80261, 'eighty thousand two hundred sixty-one'), (13120, 23272, 'twenty-three thousand two hundred seventy-two'), (13121, 19053, 'nineteen thousand fifty-three'), (13122, 56373, 'fifty-six thousand three hundred seventy-three'), (13123, 19322, 'nineteen thousand three hundred twenty-two'), (13124, 97254, 'ninety-seven thousand two hundred fifty-four'), (13125, 47329, 'forty-seven thousand three hundred twenty-nine'), (13126, 84678, 'eighty-four thousand six hundred seventy-eight'), (13127, 20059, 'twenty thousand fifty-nine'), (13128, 12108, 'twelve thousand one hundred eight'), (13129, 16420, 'sixteen thousand four hundred twenty'), (13130, 67952, 'sixty-seven thousand nine hundred fifty-two'), (13131, 36158, 'thirty-six thousand one hundred fifty-eight'), (13132, 34597, 'thirty-four thousand five hundred ninety-seven'), (13133, 71732, 'seventy-one thousand seven hundred thirty-two'), (13134, 31284, 'thirty-one thousand two hundred eighty-four'), (13135, 26136, 'twenty-six thousand one hundred thirty-six'), (13136, 39234, 'thirty-nine thousand two hundred thirty-four'), (13137, 66958, 'sixty-six thousand nine hundred fifty-eight'), (13138, 5617, 'five thousand six hundred seventeen'), (13139, 48970, 'forty-eight thousand nine hundred seventy'), (13140, 76398, 'seventy-six thousand three hundred ninety-eight'), (13141, 87695, 'eighty-seven thousand six hundred ninety-five'), (13142, 31650, 'thirty-one thousand six hundred fifty'), (13143, 73864, 'seventy-three thousand eight hundred sixty-four'), (13144, 22223, 'twenty-two thousand two hundred twenty-three'), (13145, 63003, 'sixty-three thousand three'), (13146, 98235, 'ninety-eight thousand two hundred thirty-five'), (13147, 73516, 'seventy-three thousand five hundred sixteen'), (13148, 22055, 'twenty-two thousand fifty-five'), (13149, 84687, 'eighty-four thousand six hundred eighty-seven'), (13150, 16220, 'sixteen thousand two hundred twenty'), (13151, 20833, 'twenty thousand eight hundred thirty-three'), (13152, 7128, 'seven thousand one hundred twenty-eight'), (13153, 27644, 'twenty-seven thousand six hundred forty-four'), (13154, 68264, 'sixty-eight thousand two hundred sixty-four'), (13155, 33776, 'thirty-three thousand seven hundred seventy-six'), (13156, 49827, 'forty-nine thousand eight hundred twenty-seven'), (13157, 12916, 'twelve thousand nine hundred sixteen'), (13158, 45687, 'forty-five thousand six hundred eighty-seven'), (13159, 7743, 'seven thousand seven hundred forty-three'), (13160, 63030, 'sixty-three thousand thirty'), (13161, 38906, 'thirty-eight thousand nine hundred six'), (13162, 44710, 'forty-four thousand seven hundred ten'), (13163, 9474, 'nine thousand four hundred seventy-four'), (13164, 37011, 'thirty-seven thousand eleven'), (13165, 77744, 'seventy-seven thousand seven hundred forty-four'), (13166, 57850, 'fifty-seven thousand eight hundred fifty'), (13167, 24437, 'twenty-four thousand four hundred thirty-seven'), (13168, 23844, 'twenty-three thousand eight hundred forty-four'), (13169, 49159, 'forty-nine thousand one hundred fifty-nine'), (13170, 90603, 'ninety thousand six hundred three'), (13171, 8572, 'eight thousand five hundred seventy-two'), (13172, 56313, 'fifty-six thousand three hundred thirteen'), (13173, 19119, 'nineteen thousand one hundred nineteen'), (13174, 65311, 'sixty-five thousand three hundred eleven'), (13175, 35790, 'thirty-five thousand seven hundred ninety'), (13176, 20728, 'twenty thousand seven hundred twenty-eight'), (13177, 54455, 'fifty-four thousand four hundred fifty-five'), (13178, 60544, 'sixty thousand five hundred forty-four'), (13179, 57973, 'fifty-seven thousand nine hundred seventy-three'), (13180, 7535, 'seven thousand five hundred thirty-five'), (13181, 25572, 'twenty-five thousand five hundred seventy-two'), (13182, 61500, 'sixty-one thousand five hundred'), (13183, 68875, 'sixty-eight thousand eight hundred seventy-five'), (13184, 90763, 'ninety thousand seven hundred sixty-three'), (13185, 86035, 'eighty-six thousand thirty-five'), (13186, 45854, 'forty-five thousand eight hundred fifty-four'), (13187, 11968, 'eleven thousand nine hundred sixty-eight'), (13188, 81860, 'eighty-one thousand eight hundred sixty'), (13189, 66107, 'sixty-six thousand one hundred seven'), (13190, 70187, 'seventy thousand one hundred eighty-seven'), (13191, 17308, 'seventeen thousand three hundred eight'), (13192, 73925, 'seventy-three thousand nine hundred twenty-five'), (13193, 691, 'six hundred ninety-one'), (13194, 94456, 'ninety-four thousand four hundred fifty-six'), (13195, 77428, 'seventy-seven thousand four hundred twenty-eight'), (13196, 31298, 'thirty-one thousand two hundred ninety-eight'), (13197, 97105, 'ninety-seven thousand one hundred five'), (13198, 57128, 'fifty-seven thousand one hundred twenty-eight'), (13199, 46300, 'forty-six thousand three hundred'), (13200, 63106, 'sixty-three thousand one hundred six'), (13201, 89302, 'eighty-nine thousand three hundred two'), (13202, 86112, 'eighty-six thousand one hundred twelve'), (13203, 39338, 'thirty-nine thousand three hundred thirty-eight'), (13204, 88424, 'eighty-eight thousand four hundred twenty-four'), (13205, 81912, 'eighty-one thousand nine hundred twelve'), (13206, 74848, 'seventy-four thousand eight hundred forty-eight'), (13207, 87127, 'eighty-seven thousand one hundred twenty-seven'), (13208, 96602, 'ninety-six thousand six hundred two'), (13209, 48708, 'forty-eight thousand seven hundred eight'), (13210, 61251, 'sixty-one thousand two hundred fifty-one'), (13211, 27573, 'twenty-seven thousand five hundred seventy-three'), (13212, 22015, 'twenty-two thousand fifteen'), (13213, 9616, 'nine thousand six hundred sixteen'), (13214, 93052, 'ninety-three thousand fifty-two'), (13215, 67520, 'sixty-seven thousand five hundred twenty'), (13216, 64749, 'sixty-four thousand seven hundred forty-nine'), (13217, 28090, 'twenty-eight thousand ninety'), (13218, 87071, 'eighty-seven thousand seventy-one'), (13219, 25414, 'twenty-five thousand four hundred fourteen'), (13220, 45265, 'forty-five thousand two hundred sixty-five'), (13221, 63788, 'sixty-three thousand seven hundred eighty-eight'), (13222, 59271, 'fifty-nine thousand two hundred seventy-one'), (13223, 47929, 'forty-seven thousand nine hundred twenty-nine'), (13224, 40363, 'forty thousand three hundred sixty-three'), (13225, 82602, 'eighty-two thousand six hundred two'), (13226, 63778, 'sixty-three thousand seven hundred seventy-eight'), (13227, 71237, 'seventy-one thousand two hundred thirty-seven'), (13228, 77446, 'seventy-seven thousand four hundred forty-six'), (13229, 18974, 'eighteen thousand nine hundred seventy-four'), (13230, 36156, 'thirty-six thousand one hundred fifty-six'), (13231, 1495, 'one thousand four hundred ninety-five'), (13232, 49776, 'forty-nine thousand seven hundred seventy-six'), (13233, 10976, 'ten thousand nine hundred seventy-six'), (13234, 33832, 'thirty-three thousand eight hundred thirty-two'), (13235, 42095, 'forty-two thousand ninety-five'), (13236, 64617, 'sixty-four thousand six hundred seventeen'), (13237, 80279, 'eighty thousand two hundred seventy-nine'), (13238, 13504, 'thirteen thousand five hundred four'), (13239, 49514, 'forty-nine thousand five hundred fourteen'), (13240, 51916, 'fifty-one thousand nine hundred sixteen'), (13241, 28720, 'twenty-eight thousand seven hundred twenty'), (13242, 17828, 'seventeen thousand eight hundred twenty-eight'), (13243, 55057, 'fifty-five thousand fifty-seven'), (13244, 24817, 'twenty-four thousand eight hundred seventeen'), (13245, 86737, 'eighty-six thousand seven hundred thirty-seven'), (13246, 13114, 'thirteen thousand one hundred fourteen'), (13247, 75817, 'seventy-five thousand eight hundred seventeen'), (13248, 26975, 'twenty-six thousand nine hundred seventy-five'), (13249, 41421, 'forty-one thousand four hundred twenty-one'), (13250, 33492, 'thirty-three thousand four hundred ninety-two'), (13251, 48601, 'forty-eight thousand six hundred one'), (13252, 46762, 'forty-six thousand seven hundred sixty-two'), (13253, 77731, 'seventy-seven thousand seven hundred thirty-one'), (13254, 63058, 'sixty-three thousand fifty-eight'), (13255, 37971, 'thirty-seven thousand nine hundred seventy-one'), (13256, 68213, 'sixty-eight thousand two hundred thirteen'), (13257, 9320, 'nine thousand three hundred twenty'), (13258, 33706, 'thirty-three thousand seven hundred six'), (13259, 18617, 'eighteen thousand six hundred seventeen'), (13260, 57406, 'fifty-seven thousand four hundred six'), (13261, 34096, 'thirty-four thousand ninety-six'), (13262, 24762, 'twenty-four thousand seven hundred sixty-two'), (13263, 65449, 'sixty-five thousand four hundred forty-nine'), (13264, 71265, 'seventy-one thousand two hundred sixty-five'), (13265, 88866, 'eighty-eight thousand eight hundred sixty-six'), (13266, 3049, 'three thousand forty-nine'), (13267, 6758, 'six thousand seven hundred fifty-eight'), (13268, 69365, 'sixty-nine thousand three hundred sixty-five'), (13269, 30374, 'thirty thousand three hundred seventy-four'), (13270, 91542, 'ninety-one thousand five hundred forty-two'), (13271, 5572, 'five thousand five hundred seventy-two'), (13272, 64239, 'sixty-four thousand two hundred thirty-nine'), (13273, 83705, 'eighty-three thousand seven hundred five'), (13274, 39370, 'thirty-nine thousand three hundred seventy'), (13275, 58680, 'fifty-eight thousand six hundred eighty'), (13276, 36183, 'thirty-six thousand one hundred eighty-three'), (13277, 78239, 'seventy-eight thousand two hundred thirty-nine'), (13278, 7171, 'seven thousand one hundred seventy-one'), (13279, 36180, 'thirty-six thousand one hundred eighty'), (13280, 16163, 'sixteen thousand one hundred sixty-three'), (13281, 76747, 'seventy-six thousand seven hundred forty-seven'), (13282, 65685, 'sixty-five thousand six hundred eighty-five'), (13283, 25680, 'twenty-five thousand six hundred eighty'), (13284, 33224, 'thirty-three thousand two hundred twenty-four'), (13285, 78, 'seventy-eight'), (13286, 22597, 'twenty-two thousand five hundred ninety-seven'), (13287, 13482, 'thirteen thousand four hundred eighty-two'), (13288, 86333, 'eighty-six thousand three hundred thirty-three'), (13289, 70133, 'seventy thousand one hundred thirty-three'), (13290, 13783, 'thirteen thousand seven hundred eighty-three'), (13291, 37938, 'thirty-seven thousand nine hundred thirty-eight'), (13292, 52579, 'fifty-two thousand five hundred seventy-nine'), (13293, 68753, 'sixty-eight thousand seven hundred fifty-three'), (13294, 70174, 'seventy thousand one hundred seventy-four'), (13295, 13561, 'thirteen thousand five hundred sixty-one'), (13296, 51882, 'fifty-one thousand eight hundred eighty-two'), (13297, 28939, 'twenty-eight thousand nine hundred thirty-nine'), (13298, 3693, 'three thousand six hundred ninety-three'), (13299, 31130, 'thirty-one thousand one hundred thirty'), (13300, 83831, 'eighty-three thousand eight hundred thirty-one'), (13301, 77722, 'seventy-seven thousand seven hundred twenty-two'), (13302, 65337, 'sixty-five thousand three hundred thirty-seven'), (13303, 96037, 'ninety-six thousand thirty-seven'), (13304, 32773, 'thirty-two thousand seven hundred seventy-three'), (13305, 2990, 'two thousand nine hundred ninety'), (13306, 49823, 'forty-nine thousand eight hundred twenty-three'), (13307, 8124, 'eight thousand one hundred twenty-four'), (13308, 25198, 'twenty-five thousand one hundred ninety-eight'), (13309, 49663, 'forty-nine thousand six hundred sixty-three'), (13310, 71537, 'seventy-one thousand five hundred thirty-seven'), (13311, 69998, 'sixty-nine thousand nine hundred ninety-eight'), (13312, 41111, 'forty-one thousand one hundred eleven'), (13313, 78488, 'seventy-eight thousand four hundred eighty-eight'), (13314, 17571, 'seventeen thousand five hundred seventy-one'), (13315, 69172, 'sixty-nine thousand one hundred seventy-two'), (13316, 75159, 'seventy-five thousand one hundred fifty-nine'), (13317, 83883, 'eighty-three thousand eight hundred eighty-three'), (13318, 36430, 'thirty-six thousand four hundred thirty'), (13319, 27033, 'twenty-seven thousand thirty-three'), (13320, 43834, 'forty-three thousand eight hundred thirty-four'), (13321, 51292, 'fifty-one thousand two hundred ninety-two'), (13322, 25457, 'twenty-five thousand four hundred fifty-seven'), (13323, 48910, 'forty-eight thousand nine hundred ten'), (13324, 80817, 'eighty thousand eight hundred seventeen'), (13325, 99773, 'ninety-nine thousand seven hundred seventy-three'), (13326, 33940, 'thirty-three thousand nine hundred forty'), (13327, 90828, 'ninety thousand eight hundred twenty-eight'), (13328, 55948, 'fifty-five thousand nine hundred forty-eight'), (13329, 1767, 'one thousand seven hundred sixty-seven'), (13330, 56542, 'fifty-six thousand five hundred forty-two'), (13331, 88543, 'eighty-eight thousand five hundred forty-three'), (13332, 32759, 'thirty-two thousand seven hundred fifty-nine'), (13333, 5327, 'five thousand three hundred twenty-seven'), (13334, 76276, 'seventy-six thousand two hundred seventy-six'), (13335, 90742, 'ninety thousand seven hundred forty-two'), (13336, 30611, 'thirty thousand six hundred eleven'), (13337, 25649, 'twenty-five thousand six hundred forty-nine'), (13338, 96874, 'ninety-six thousand eight hundred seventy-four'), (13339, 17912, 'seventeen thousand nine hundred twelve'), (13340, 79403, 'seventy-nine thousand four hundred three'), (13341, 91357, 'ninety-one thousand three hundred fifty-seven'), (13342, 77050, 'seventy-seven thousand fifty'), (13343, 82053, 'eighty-two thousand fifty-three'), (13344, 64347, 'sixty-four thousand three hundred forty-seven'), (13345, 87792, 'eighty-seven thousand seven hundred ninety-two'), (13346, 64101, 'sixty-four thousand one hundred one'), (13347, 63491, 'sixty-three thousand four hundred ninety-one'), (13348, 42040, 'forty-two thousand forty'), (13349, 40355, 'forty thousand three hundred fifty-five'), (13350, 6843, 'six thousand eight hundred forty-three'), (13351, 55892, 'fifty-five thousand eight hundred ninety-two'), (13352, 14744, 'fourteen thousand seven hundred forty-four'), (13353, 88165, 'eighty-eight thousand one hundred sixty-five'), (13354, 10518, 'ten thousand five hundred eighteen'), (13355, 19050, 'nineteen thousand fifty'), (13356, 43738, 'forty-three thousand seven hundred thirty-eight'), (13357, 70895, 'seventy thousand eight hundred ninety-five'), (13358, 54828, 'fifty-four thousand eight hundred twenty-eight'), (13359, 99368, 'ninety-nine thousand three hundred sixty-eight'), (13360, 55406, 'fifty-five thousand four hundred six'), (13361, 28328, 'twenty-eight thousand three hundred twenty-eight'), (13362, 62528, 'sixty-two thousand five hundred twenty-eight'), (13363, 29122, 'twenty-nine thousand one hundred twenty-two'), (13364, 11852, 'eleven thousand eight hundred fifty-two'), (13365, 85065, 'eighty-five thousand sixty-five'), (13366, 45208, 'forty-five thousand two hundred eight'), (13367, 55281, 'fifty-five thousand two hundred eighty-one'), (13368, 94404, 'ninety-four thousand four hundred four'), (13369, 43021, 'forty-three thousand twenty-one'), (13370, 10467, 'ten thousand four hundred sixty-seven'), (13371, 4830, 'four thousand eight hundred thirty'), (13372, 59383, 'fifty-nine thousand three hundred eighty-three'), (13373, 36140, 'thirty-six thousand one hundred forty'), (13374, 603, 'six hundred three'), (13375, 53699, 'fifty-three thousand six hundred ninety-nine'), (13376, 95404, 'ninety-five thousand four hundred four'), (13377, 90574, 'ninety thousand five hundred seventy-four'), (13378, 26510, 'twenty-six thousand five hundred ten'), (13379, 9397, 'nine thousand three hundred ninety-seven'), (13380, 36162, 'thirty-six thousand one hundred sixty-two'), (13381, 31027, 'thirty-one thousand twenty-seven'), (13382, 97783, 'ninety-seven thousand seven hundred eighty-three'), (13383, 56834, 'fifty-six thousand eight hundred thirty-four'), (13384, 89437, 'eighty-nine thousand four hundred thirty-seven'), (13385, 92233, 'ninety-two thousand two hundred thirty-three'), (13386, 44514, 'forty-four thousand five hundred fourteen'), (13387, 47258, 'forty-seven thousand two hundred fifty-eight'), (13388, 15198, 'fifteen thousand one hundred ninety-eight'), (13389, 42412, 'forty-two thousand four hundred twelve'), (13390, 91467, 'ninety-one thousand four hundred sixty-seven'), (13391, 75997, 'seventy-five thousand nine hundred ninety-seven'), (13392, 58256, 'fifty-eight thousand two hundred fifty-six'), (13393, 12222, 'twelve thousand two hundred twenty-two'), (13394, 2419, 'two thousand four hundred nineteen'), (13395, 84900, 'eighty-four thousand nine hundred'), (13396, 98269, 'ninety-eight thousand two hundred sixty-nine'), (13397, 17206, 'seventeen thousand two hundred six'), (13398, 51361, 'fifty-one thousand three hundred sixty-one'), (13399, 23467, 'twenty-three thousand four hundred sixty-seven'), (13400, 8055, 'eight thousand fifty-five'), (13401, 87241, 'eighty-seven thousand two hundred forty-one'), (13402, 32080, 'thirty-two thousand eighty'), (13403, 83390, 'eighty-three thousand three hundred ninety'), (13404, 23000, 'twenty-three thousand'), (13405, 43354, 'forty-three thousand three hundred fifty-four'), (13406, 44491, 'forty-four thousand four hundred ninety-one'), (13407, 74782, 'seventy-four thousand seven hundred eighty-two'), (13408, 90336, 'ninety thousand three hundred thirty-six'), (13409, 15523, 'fifteen thousand five hundred twenty-three'), (13410, 11877, 'eleven thousand eight hundred seventy-seven'), (13411, 67309, 'sixty-seven thousand three hundred nine'), (13412, 99542, 'ninety-nine thousand five hundred forty-two'), (13413, 19838, 'nineteen thousand eight hundred thirty-eight'), (13414, 22532, 'twenty-two thousand five hundred thirty-two'), (13415, 78981, 'seventy-eight thousand nine hundred eighty-one'), (13416, 1052, 'one thousand fifty-two'), (13417, 57547, 'fifty-seven thousand five hundred forty-seven'), (13418, 56696, 'fifty-six thousand six hundred ninety-six'), (13419, 48605, 'forty-eight thousand six hundred five'), (13420, 94545, 'ninety-four thousand five hundred forty-five'), (13421, 55045, 'fifty-five thousand forty-five'), (13422, 74036, 'seventy-four thousand thirty-six'), (13423, 64263, 'sixty-four thousand two hundred sixty-three'), (13424, 28331, 'twenty-eight thousand three hundred thirty-one'), (13425, 35170, 'thirty-five thousand one hundred seventy'), (13426, 78992, 'seventy-eight thousand nine hundred ninety-two'), (13427, 83426, 'eighty-three thousand four hundred twenty-six'), (13428, 8310, 'eight thousand three hundred ten'), (13429, 99895, 'ninety-nine thousand eight hundred ninety-five'), (13430, 55767, 'fifty-five thousand seven hundred sixty-seven'), (13431, 44342, 'forty-four thousand three hundred forty-two'), (13432, 2243, 'two thousand two hundred forty-three'), (13433, 41475, 'forty-one thousand four hundred seventy-five'), (13434, 57794, 'fifty-seven thousand seven hundred ninety-four'), (13435, 64889, 'sixty-four thousand eight hundred eighty-nine'), (13436, 86777, 'eighty-six thousand seven hundred seventy-seven'), (13437, 47762, 'forty-seven thousand seven hundred sixty-two'), (13438, 8420, 'eight thousand four hundred twenty'), (13439, 26278, 'twenty-six thousand two hundred seventy-eight'), (13440, 42886, 'forty-two thousand eight hundred eighty-six'), (13441, 33345, 'thirty-three thousand three hundred forty-five'), (13442, 66540, 'sixty-six thousand five hundred forty'), (13443, 16851, 'sixteen thousand eight hundred fifty-one'), (13444, 93006, 'ninety-three thousand six'), (13445, 82573, 'eighty-two thousand five hundred seventy-three'), (13446, 62178, 'sixty-two thousand one hundred seventy-eight'), (13447, 95367, 'ninety-five thousand three hundred sixty-seven'), (13448, 31606, 'thirty-one thousand six hundred six'), (13449, 74497, 'seventy-four thousand four hundred ninety-seven'), (13450, 83378, 'eighty-three thousand three hundred seventy-eight'), (13451, 41392, 'forty-one thousand three hundred ninety-two'), (13452, 33072, 'thirty-three thousand seventy-two'), (13453, 1977, 'one thousand nine hundred seventy-seven'), (13454, 62995, 'sixty-two thousand nine hundred ninety-five'), (13455, 61623, 'sixty-one thousand six hundred twenty-three'), (13456, 49220, 'forty-nine thousand two hundred twenty'), (13457, 60349, 'sixty thousand three hundred forty-nine'), (13458, 22280, 'twenty-two thousand two hundred eighty'), (13459, 48986, 'forty-eight thousand nine hundred eighty-six'), (13460, 67323, 'sixty-seven thousand three hundred twenty-three'), (13461, 13842, 'thirteen thousand eight hundred forty-two'), (13462, 79808, 'seventy-nine thousand eight hundred eight'), (13463, 80092, 'eighty thousand ninety-two'), (13464, 90793, 'ninety thousand seven hundred ninety-three'), (13465, 76587, 'seventy-six thousand five hundred eighty-seven'), (13466, 29211, 'twenty-nine thousand two hundred eleven'), (13467, 11014, 'eleven thousand fourteen'), (13468, 59699, 'fifty-nine thousand six hundred ninety-nine'), (13469, 86477, 'eighty-six thousand four hundred seventy-seven'), (13470, 78971, 'seventy-eight thousand nine hundred seventy-one'), (13471, 50759, 'fifty thousand seven hundred fifty-nine'), (13472, 95098, 'ninety-five thousand ninety-eight'), (13473, 2732, 'two thousand seven hundred thirty-two'), (13474, 40096, 'forty thousand ninety-six'), (13475, 26418, 'twenty-six thousand four hundred eighteen'), (13476, 71511, 'seventy-one thousand five hundred eleven'), (13477, 61899, 'sixty-one thousand eight hundred ninety-nine'), (13478, 4927, 'four thousand nine hundred twenty-seven'), (13479, 52956, 'fifty-two thousand nine hundred fifty-six'), (13480, 77986, 'seventy-seven thousand nine hundred eighty-six'), (13481, 13187, 'thirteen thousand one hundred eighty-seven'), (13482, 22526, 'twenty-two thousand five hundred twenty-six'), (13483, 1377, 'one thousand three hundred seventy-seven'), (13484, 20634, 'twenty thousand six hundred thirty-four'), (13485, 81756, 'eighty-one thousand seven hundred fifty-six'), (13486, 20205, 'twenty thousand two hundred five'), (13487, 25049, 'twenty-five thousand forty-nine'), (13488, 31776, 'thirty-one thousand seven hundred seventy-six'), (13489, 64630, 'sixty-four thousand six hundred thirty'), (13490, 33492, 'thirty-three thousand four hundred ninety-two'), (13491, 12518, 'twelve thousand five hundred eighteen'), (13492, 29394, 'twenty-nine thousand three hundred ninety-four'), (13493, 92382, 'ninety-two thousand three hundred eighty-two'), (13494, 51703, 'fifty-one thousand seven hundred three'), (13495, 516, 'five hundred sixteen'), (13496, 95945, 'ninety-five thousand nine hundred forty-five'), (13497, 9909, 'nine thousand nine hundred nine'), (13498, 23810, 'twenty-three thousand eight hundred ten'), (13499, 14560, 'fourteen thousand five hundred sixty'), (13500, 34702, 'thirty-four thousand seven hundred two'), (13501, 60387, 'sixty thousand three hundred eighty-seven'), (13502, 61499, 'sixty-one thousand four hundred ninety-nine'), (13503, 19884, 'nineteen thousand eight hundred eighty-four'), (13504, 57856, 'fifty-seven thousand eight hundred fifty-six'), (13505, 41398, 'forty-one thousand three hundred ninety-eight'), (13506, 57526, 'fifty-seven thousand five hundred twenty-six'), (13507, 35265, 'thirty-five thousand two hundred sixty-five'), (13508, 35691, 'thirty-five thousand six hundred ninety-one'), (13509, 818, 'eight hundred eighteen'), (13510, 22039, 'twenty-two thousand thirty-nine'), (13511, 55871, 'fifty-five thousand eight hundred seventy-one'), (13512, 92931, 'ninety-two thousand nine hundred thirty-one'), (13513, 63543, 'sixty-three thousand five hundred forty-three'), (13514, 84377, 'eighty-four thousand three hundred seventy-seven'), (13515, 44593, 'forty-four thousand five hundred ninety-three'), (13516, 51739, 'fifty-one thousand seven hundred thirty-nine'), (13517, 6910, 'six thousand nine hundred ten'), (13518, 17557, 'seventeen thousand five hundred fifty-seven'), (13519, 59217, 'fifty-nine thousand two hundred seventeen'), (13520, 94841, 'ninety-four thousand eight hundred forty-one'), (13521, 66358, 'sixty-six thousand three hundred fifty-eight'), (13522, 19619, 'nineteen thousand six hundred nineteen'), (13523, 64737, 'sixty-four thousand seven hundred thirty-seven'), (13524, 73839, 'seventy-three thousand eight hundred thirty-nine'), (13525, 35628, 'thirty-five thousand six hundred twenty-eight'), (13526, 58372, 'fifty-eight thousand three hundred seventy-two'), (13527, 99278, 'ninety-nine thousand two hundred seventy-eight'), (13528, 763, 'seven hundred sixty-three'), (13529, 69991, 'sixty-nine thousand nine hundred ninety-one'), (13530, 79568, 'seventy-nine thousand five hundred sixty-eight'), (13531, 9667, 'nine thousand six hundred sixty-seven'), (13532, 63436, 'sixty-three thousand four hundred thirty-six'), (13533, 991, 'nine hundred ninety-one'), (13534, 73161, 'seventy-three thousand one hundred sixty-one'), (13535, 32088, 'thirty-two thousand eighty-eight'), (13536, 49035, 'forty-nine thousand thirty-five'), (13537, 96727, 'ninety-six thousand seven hundred twenty-seven'), (13538, 72707, 'seventy-two thousand seven hundred seven'), (13539, 3444, 'three thousand four hundred forty-four'), (13540, 19145, 'nineteen thousand one hundred forty-five'), (13541, 76918, 'seventy-six thousand nine hundred eighteen'), (13542, 63463, 'sixty-three thousand four hundred sixty-three'), (13543, 14934, 'fourteen thousand nine hundred thirty-four'), (13544, 68275, 'sixty-eight thousand two hundred seventy-five'), (13545, 88665, 'eighty-eight thousand six hundred sixty-five'), (13546, 8713, 'eight thousand seven hundred thirteen'), (13547, 25661, 'twenty-five thousand six hundred sixty-one'), (13548, 58355, 'fifty-eight thousand three hundred fifty-five'), (13549, 30055, 'thirty thousand fifty-five'), (13550, 67285, 'sixty-seven thousand two hundred eighty-five'), (13551, 23326, 'twenty-three thousand three hundred twenty-six'), (13552, 95446, 'ninety-five thousand four hundred forty-six'), (13553, 63153, 'sixty-three thousand one hundred fifty-three'), (13554, 8540, 'eight thousand five hundred forty'), (13555, 67361, 'sixty-seven thousand three hundred sixty-one'), (13556, 29414, 'twenty-nine thousand four hundred fourteen'), (13557, 44839, 'forty-four thousand eight hundred thirty-nine'), (13558, 95335, 'ninety-five thousand three hundred thirty-five'), (13559, 86735, 'eighty-six thousand seven hundred thirty-five'), (13560, 84792, 'eighty-four thousand seven hundred ninety-two'), (13561, 3618, 'three thousand six hundred eighteen'), (13562, 28983, 'twenty-eight thousand nine hundred eighty-three'), (13563, 49829, 'forty-nine thousand eight hundred twenty-nine'), (13564, 53821, 'fifty-three thousand eight hundred twenty-one'), (13565, 68650, 'sixty-eight thousand six hundred fifty'), (13566, 68622, 'sixty-eight thousand six hundred twenty-two'), (13567, 80151, 'eighty thousand one hundred fifty-one'), (13568, 64110, 'sixty-four thousand one hundred ten'), (13569, 96810, 'ninety-six thousand eight hundred ten'), (13570, 45608, 'forty-five thousand six hundred eight'), (13571, 56692, 'fifty-six thousand six hundred ninety-two'), (13572, 44602, 'forty-four thousand six hundred two'), (13573, 67918, 'sixty-seven thousand nine hundred eighteen'), (13574, 1803, 'one thousand eight hundred three'), (13575, 15145, 'fifteen thousand one hundred forty-five'), (13576, 36537, 'thirty-six thousand five hundred thirty-seven'), (13577, 24109, 'twenty-four thousand one hundred nine'), (13578, 19876, 'nineteen thousand eight hundred seventy-six'), (13579, 60207, 'sixty thousand two hundred seven'), (13580, 29207, 'twenty-nine thousand two hundred seven'), (13581, 56429, 'fifty-six thousand four hundred twenty-nine'), (13582, 37535, 'thirty-seven thousand five hundred thirty-five'), (13583, 85934, 'eighty-five thousand nine hundred thirty-four'), (13584, 41938, 'forty-one thousand nine hundred thirty-eight'), (13585, 46784, 'forty-six thousand seven hundred eighty-four'), (13586, 78580, 'seventy-eight thousand five hundred eighty'), (13587, 45566, 'forty-five thousand five hundred sixty-six'), (13588, 10161, 'ten thousand one hundred sixty-one'), (13589, 6154, 'six thousand one hundred fifty-four'), (13590, 23301, 'twenty-three thousand three hundred one'), (13591, 57986, 'fifty-seven thousand nine hundred eighty-six'), (13592, 44499, 'forty-four thousand four hundred ninety-nine'), (13593, 99171, 'ninety-nine thousand one hundred seventy-one'), (13594, 29175, 'twenty-nine thousand one hundred seventy-five'), (13595, 92886, 'ninety-two thousand eight hundred eighty-six'), (13596, 18921, 'eighteen thousand nine hundred twenty-one'), (13597, 24201, 'twenty-four thousand two hundred one'), (13598, 73123, 'seventy-three thousand one hundred twenty-three'), (13599, 66328, 'sixty-six thousand three hundred twenty-eight'), (13600, 55686, 'fifty-five thousand six hundred eighty-six'), (13601, 1943, 'one thousand nine hundred forty-three'), (13602, 81508, 'eighty-one thousand five hundred eight'), (13603, 21239, 'twenty-one thousand two hundred thirty-nine'), (13604, 9414, 'nine thousand four hundred fourteen'), (13605, 29164, 'twenty-nine thousand one hundred sixty-four'), (13606, 41613, 'forty-one thousand six hundred thirteen'), (13607, 74457, 'seventy-four thousand four hundred fifty-seven'), (13608, 8754, 'eight thousand seven hundred fifty-four'), (13609, 10681, 'ten thousand six hundred eighty-one'), (13610, 24393, 'twenty-four thousand three hundred ninety-three'), (13611, 24211, 'twenty-four thousand two hundred eleven'), (13612, 30021, 'thirty thousand twenty-one'), (13613, 50349, 'fifty thousand three hundred forty-nine'), (13614, 66275, 'sixty-six thousand two hundred seventy-five'), (13615, 97350, 'ninety-seven thousand three hundred fifty'), (13616, 92377, 'ninety-two thousand three hundred seventy-seven'), (13617, 41627, 'forty-one thousand six hundred twenty-seven'), (13618, 41964, 'forty-one thousand nine hundred sixty-four'), (13619, 82508, 'eighty-two thousand five hundred eight'), (13620, 48449, 'forty-eight thousand four hundred forty-nine'), (13621, 88595, 'eighty-eight thousand five hundred ninety-five'), (13622, 11994, 'eleven thousand nine hundred ninety-four'), (13623, 39306, 'thirty-nine thousand three hundred six'), (13624, 6551, 'six thousand five hundred fifty-one'), (13625, 47896, 'forty-seven thousand eight hundred ninety-six'), (13626, 37404, 'thirty-seven thousand four hundred four'), (13627, 93261, 'ninety-three thousand two hundred sixty-one'), (13628, 83021, 'eighty-three thousand twenty-one'), (13629, 56118, 'fifty-six thousand one hundred eighteen'), (13630, 52551, 'fifty-two thousand five hundred fifty-one'), (13631, 47110, 'forty-seven thousand one hundred ten'), (13632, 43167, 'forty-three thousand one hundred sixty-seven'), (13633, 79542, 'seventy-nine thousand five hundred forty-two'), (13634, 46939, 'forty-six thousand nine hundred thirty-nine'), (13635, 71268, 'seventy-one thousand two hundred sixty-eight'), (13636, 86534, 'eighty-six thousand five hundred thirty-four'), (13637, 38618, 'thirty-eight thousand six hundred eighteen'), (13638, 99131, 'ninety-nine thousand one hundred thirty-one'), (13639, 84472, 'eighty-four thousand four hundred seventy-two'), (13640, 89328, 'eighty-nine thousand three hundred twenty-eight'), (13641, 29245, 'twenty-nine thousand two hundred forty-five'), (13642, 59709, 'fifty-nine thousand seven hundred nine'), (13643, 85723, 'eighty-five thousand seven hundred twenty-three'), (13644, 30019, 'thirty thousand nineteen'), (13645, 16138, 'sixteen thousand one hundred thirty-eight'), (13646, 52688, 'fifty-two thousand six hundred eighty-eight'), (13647, 62478, 'sixty-two thousand four hundred seventy-eight'), (13648, 96156, 'ninety-six thousand one hundred fifty-six'), (13649, 88164, 'eighty-eight thousand one hundred sixty-four'), (13650, 71440, 'seventy-one thousand four hundred forty'), (13651, 74688, 'seventy-four thousand six hundred eighty-eight'), (13652, 18531, 'eighteen thousand five hundred thirty-one'), (13653, 14557, 'fourteen thousand five hundred fifty-seven'), (13654, 89227, 'eighty-nine thousand two hundred twenty-seven'), (13655, 32160, 'thirty-two thousand one hundred sixty'), (13656, 42452, 'forty-two thousand four hundred fifty-two'), (13657, 65362, 'sixty-five thousand three hundred sixty-two'), (13658, 13918, 'thirteen thousand nine hundred eighteen'), (13659, 33572, 'thirty-three thousand five hundred seventy-two'), (13660, 82546, 'eighty-two thousand five hundred forty-six'), (13661, 51285, 'fifty-one thousand two hundred eighty-five'), (13662, 95766, 'ninety-five thousand seven hundred sixty-six'), (13663, 33710, 'thirty-three thousand seven hundred ten'), (13664, 12569, 'twelve thousand five hundred sixty-nine'), (13665, 75196, 'seventy-five thousand one hundred ninety-six'), (13666, 45772, 'forty-five thousand seven hundred seventy-two'), (13667, 59020, 'fifty-nine thousand twenty'), (13668, 39879, 'thirty-nine thousand eight hundred seventy-nine'), (13669, 97366, 'ninety-seven thousand three hundred sixty-six'), (13670, 80589, 'eighty thousand five hundred eighty-nine'), (13671, 11067, 'eleven thousand sixty-seven'), (13672, 12016, 'twelve thousand sixteen'), (13673, 92022, 'ninety-two thousand twenty-two'), (13674, 40134, 'forty thousand one hundred thirty-four'), (13675, 30202, 'thirty thousand two hundred two'), (13676, 75688, 'seventy-five thousand six hundred eighty-eight'), (13677, 43070, 'forty-three thousand seventy'), (13678, 86228, 'eighty-six thousand two hundred twenty-eight'), (13679, 59165, 'fifty-nine thousand one hundred sixty-five'), (13680, 18286, 'eighteen thousand two hundred eighty-six'), (13681, 46328, 'forty-six thousand three hundred twenty-eight'), (13682, 86548, 'eighty-six thousand five hundred forty-eight'), (13683, 97667, 'ninety-seven thousand six hundred sixty-seven'), (13684, 7244, 'seven thousand two hundred forty-four'), (13685, 31509, 'thirty-one thousand five hundred nine'), (13686, 41970, 'forty-one thousand nine hundred seventy'), (13687, 9049, 'nine thousand forty-nine'), (13688, 8910, 'eight thousand nine hundred ten'), (13689, 8756, 'eight thousand seven hundred fifty-six'), (13690, 64988, 'sixty-four thousand nine hundred eighty-eight'), (13691, 1099, 'one thousand ninety-nine'), (13692, 15267, 'fifteen thousand two hundred sixty-seven'), (13693, 95581, 'ninety-five thousand five hundred eighty-one'), (13694, 20672, 'twenty thousand six hundred seventy-two'), (13695, 99139, 'ninety-nine thousand one hundred thirty-nine'), (13696, 64165, 'sixty-four thousand one hundred sixty-five'), (13697, 22449, 'twenty-two thousand four hundred forty-nine'), (13698, 28197, 'twenty-eight thousand one hundred ninety-seven'), (13699, 37007, 'thirty-seven thousand seven'), (13700, 22127, 'twenty-two thousand one hundred twenty-seven'), (13701, 40755, 'forty thousand seven hundred fifty-five'), (13702, 38069, 'thirty-eight thousand sixty-nine'), (13703, 28323, 'twenty-eight thousand three hundred twenty-three'), (13704, 12626, 'twelve thousand six hundred twenty-six'), (13705, 28772, 'twenty-eight thousand seven hundred seventy-two'), (13706, 86658, 'eighty-six thousand six hundred fifty-eight'), (13707, 73460, 'seventy-three thousand four hundred sixty'), (13708, 38173, 'thirty-eight thousand one hundred seventy-three'), (13709, 98015, 'ninety-eight thousand fifteen'), (13710, 72134, 'seventy-two thousand one hundred thirty-four'), (13711, 61051, 'sixty-one thousand fifty-one'), (13712, 93012, 'ninety-three thousand twelve'), (13713, 73181, 'seventy-three thousand one hundred eighty-one'), (13714, 29444, 'twenty-nine thousand four hundred forty-four'), (13715, 59951, 'fifty-nine thousand nine hundred fifty-one'), (13716, 79914, 'seventy-nine thousand nine hundred fourteen'), (13717, 36786, 'thirty-six thousand seven hundred eighty-six'), (13718, 55355, 'fifty-five thousand three hundred fifty-five'), (13719, 3937, 'three thousand nine hundred thirty-seven'), (13720, 27914, 'twenty-seven thousand nine hundred fourteen'), (13721, 89498, 'eighty-nine thousand four hundred ninety-eight'), (13722, 68150, 'sixty-eight thousand one hundred fifty'), (13723, 2253, 'two thousand two hundred fifty-three'), (13724, 95501, 'ninety-five thousand five hundred one'), (13725, 97012, 'ninety-seven thousand twelve'), (13726, 99433, 'ninety-nine thousand four hundred thirty-three'), (13727, 45098, 'forty-five thousand ninety-eight'), (13728, 39812, 'thirty-nine thousand eight hundred twelve'), (13729, 50499, 'fifty thousand four hundred ninety-nine'), (13730, 43791, 'forty-three thousand seven hundred ninety-one'), (13731, 22768, 'twenty-two thousand seven hundred sixty-eight'), (13732, 91279, 'ninety-one thousand two hundred seventy-nine'), (13733, 31694, 'thirty-one thousand six hundred ninety-four'), (13734, 47770, 'forty-seven thousand seven hundred seventy'), (13735, 21564, 'twenty-one thousand five hundred sixty-four'), (13736, 26072, 'twenty-six thousand seventy-two'), (13737, 83165, 'eighty-three thousand one hundred sixty-five'), (13738, 17221, 'seventeen thousand two hundred twenty-one'), (13739, 98498, 'ninety-eight thousand four hundred ninety-eight'), (13740, 14842, 'fourteen thousand eight hundred forty-two'), (13741, 90554, 'ninety thousand five hundred fifty-four'), (13742, 62205, 'sixty-two thousand two hundred five'), (13743, 94700, 'ninety-four thousand seven hundred'), (13744, 78382, 'seventy-eight thousand three hundred eighty-two'), (13745, 51795, 'fifty-one thousand seven hundred ninety-five'), (13746, 94887, 'ninety-four thousand eight hundred eighty-seven'), (13747, 79649, 'seventy-nine thousand six hundred forty-nine'), (13748, 92354, 'ninety-two thousand three hundred fifty-four'), (13749, 61632, 'sixty-one thousand six hundred thirty-two'), (13750, 21914, 'twenty-one thousand nine hundred fourteen'), (13751, 54854, 'fifty-four thousand eight hundred fifty-four'), (13752, 50764, 'fifty thousand seven hundred sixty-four'), (13753, 59233, 'fifty-nine thousand two hundred thirty-three'), (13754, 8977, 'eight thousand nine hundred seventy-seven'), (13755, 54352, 'fifty-four thousand three hundred fifty-two'), (13756, 92304, 'ninety-two thousand three hundred four'), (13757, 48804, 'forty-eight thousand eight hundred four'), (13758, 68205, 'sixty-eight thousand two hundred five'), (13759, 40565, 'forty thousand five hundred sixty-five'), (13760, 23726, 'twenty-three thousand seven hundred twenty-six'), (13761, 68846, 'sixty-eight thousand eight hundred forty-six'), (13762, 50131, 'fifty thousand one hundred thirty-one'), (13763, 87075, 'eighty-seven thousand seventy-five'), (13764, 44491, 'forty-four thousand four hundred ninety-one'), (13765, 51590, 'fifty-one thousand five hundred ninety'), (13766, 82560, 'eighty-two thousand five hundred sixty'), (13767, 37576, 'thirty-seven thousand five hundred seventy-six'), (13768, 30956, 'thirty thousand nine hundred fifty-six'), (13769, 18433, 'eighteen thousand four hundred thirty-three'), (13770, 49862, 'forty-nine thousand eight hundred sixty-two'), (13771, 26441, 'twenty-six thousand four hundred forty-one'), (13772, 46839, 'forty-six thousand eight hundred thirty-nine'), (13773, 36345, 'thirty-six thousand three hundred forty-five'), (13774, 42273, 'forty-two thousand two hundred seventy-three'), (13775, 61839, 'sixty-one thousand eight hundred thirty-nine'), (13776, 23622, 'twenty-three thousand six hundred twenty-two'), (13777, 90466, 'ninety thousand four hundred sixty-six'), (13778, 72220, 'seventy-two thousand two hundred twenty'), (13779, 34782, 'thirty-four thousand seven hundred eighty-two'), (13780, 76923, 'seventy-six thousand nine hundred twenty-three'), (13781, 47080, 'forty-seven thousand eighty'), (13782, 86362, 'eighty-six thousand three hundred sixty-two'), (13783, 87536, 'eighty-seven thousand five hundred thirty-six'), (13784, 12350, 'twelve thousand three hundred fifty'), (13785, 53004, 'fifty-three thousand four'), (13786, 66595, 'sixty-six thousand five hundred ninety-five'), (13787, 15994, 'fifteen thousand nine hundred ninety-four'), (13788, 7954, 'seven thousand nine hundred fifty-four'), (13789, 28835, 'twenty-eight thousand eight hundred thirty-five'), (13790, 26989, 'twenty-six thousand nine hundred eighty-nine'), (13791, 53616, 'fifty-three thousand six hundred sixteen'), (13792, 18222, 'eighteen thousand two hundred twenty-two'), (13793, 1916, 'one thousand nine hundred sixteen'), (13794, 53626, 'fifty-three thousand six hundred twenty-six'), (13795, 46533, 'forty-six thousand five hundred thirty-three'), (13796, 82218, 'eighty-two thousand two hundred eighteen'), (13797, 22862, 'twenty-two thousand eight hundred sixty-two'), (13798, 42844, 'forty-two thousand eight hundred forty-four'), (13799, 51560, 'fifty-one thousand five hundred sixty'), (13800, 98578, 'ninety-eight thousand five hundred seventy-eight'), (13801, 83245, 'eighty-three thousand two hundred forty-five'), (13802, 15231, 'fifteen thousand two hundred thirty-one'), (13803, 62861, 'sixty-two thousand eight hundred sixty-one'), (13804, 42344, 'forty-two thousand three hundred forty-four'), (13805, 28132, 'twenty-eight thousand one hundred thirty-two'), (13806, 2983, 'two thousand nine hundred eighty-three'), (13807, 10633, 'ten thousand six hundred thirty-three'), (13808, 71782, 'seventy-one thousand seven hundred eighty-two'), (13809, 22697, 'twenty-two thousand six hundred ninety-seven'), (13810, 26234, 'twenty-six thousand two hundred thirty-four'), (13811, 10511, 'ten thousand five hundred eleven'), (13812, 45386, 'forty-five thousand three hundred eighty-six'), (13813, 63246, 'sixty-three thousand two hundred forty-six'), (13814, 24842, 'twenty-four thousand eight hundred forty-two'), (13815, 56436, 'fifty-six thousand four hundred thirty-six'), (13816, 81131, 'eighty-one thousand one hundred thirty-one'), (13817, 93008, 'ninety-three thousand eight'), (13818, 47600, 'forty-seven thousand six hundred'), (13819, 12384, 'twelve thousand three hundred eighty-four'), (13820, 69453, 'sixty-nine thousand four hundred fifty-three'), (13821, 15467, 'fifteen thousand four hundred sixty-seven'), (13822, 59634, 'fifty-nine thousand six hundred thirty-four'), (13823, 84148, 'eighty-four thousand one hundred forty-eight'), (13824, 70593, 'seventy thousand five hundred ninety-three'), (13825, 46990, 'forty-six thousand nine hundred ninety'), (13826, 12809, 'twelve thousand eight hundred nine'), (13827, 49764, 'forty-nine thousand seven hundred sixty-four'), (13828, 14476, 'fourteen thousand four hundred seventy-six'), (13829, 25191, 'twenty-five thousand one hundred ninety-one'), (13830, 59687, 'fifty-nine thousand six hundred eighty-seven'), (13831, 19781, 'nineteen thousand seven hundred eighty-one'), (13832, 32597, 'thirty-two thousand five hundred ninety-seven'), (13833, 35175, 'thirty-five thousand one hundred seventy-five'), (13834, 87914, 'eighty-seven thousand nine hundred fourteen'), (13835, 31894, 'thirty-one thousand eight hundred ninety-four'), (13836, 70854, 'seventy thousand eight hundred fifty-four'), (13837, 17345, 'seventeen thousand three hundred forty-five'), (13838, 86380, 'eighty-six thousand three hundred eighty'), (13839, 3198, 'three thousand one hundred ninety-eight'), (13840, 24795, 'twenty-four thousand seven hundred ninety-five'), (13841, 26975, 'twenty-six thousand nine hundred seventy-five'), (13842, 79249, 'seventy-nine thousand two hundred forty-nine'), (13843, 32446, 'thirty-two thousand four hundred forty-six'), (13844, 67718, 'sixty-seven thousand seven hundred eighteen'), (13845, 50939, 'fifty thousand nine hundred thirty-nine'), (13846, 43242, 'forty-three thousand two hundred forty-two'), (13847, 19433, 'nineteen thousand four hundred thirty-three'), (13848, 11490, 'eleven thousand four hundred ninety'), (13849, 51334, 'fifty-one thousand three hundred thirty-four'), (13850, 87938, 'eighty-seven thousand nine hundred thirty-eight'), (13851, 39493, 'thirty-nine thousand four hundred ninety-three'), (13852, 27455, 'twenty-seven thousand four hundred fifty-five'), (13853, 50078, 'fifty thousand seventy-eight'), (13854, 83424, 'eighty-three thousand four hundred twenty-four'), (13855, 4286, 'four thousand two hundred eighty-six'), (13856, 35938, 'thirty-five thousand nine hundred thirty-eight'), (13857, 53375, 'fifty-three thousand three hundred seventy-five'), (13858, 96106, 'ninety-six thousand one hundred six'), (13859, 85902, 'eighty-five thousand nine hundred two'), (13860, 55837, 'fifty-five thousand eight hundred thirty-seven'), (13861, 9830, 'nine thousand eight hundred thirty'), (13862, 15241, 'fifteen thousand two hundred forty-one'), (13863, 16384, 'sixteen thousand three hundred eighty-four'), (13864, 41241, 'forty-one thousand two hundred forty-one'), (13865, 74496, 'seventy-four thousand four hundred ninety-six'), (13866, 56352, 'fifty-six thousand three hundred fifty-two'), (13867, 83762, 'eighty-three thousand seven hundred sixty-two'), (13868, 69616, 'sixty-nine thousand six hundred sixteen'), (13869, 76765, 'seventy-six thousand seven hundred sixty-five'), (13870, 94862, 'ninety-four thousand eight hundred sixty-two'), (13871, 34444, 'thirty-four thousand four hundred forty-four'), (13872, 18245, 'eighteen thousand two hundred forty-five'), (13873, 506, 'five hundred six'), (13874, 2004, 'two thousand four'), (13875, 18450, 'eighteen thousand four hundred fifty'), (13876, 93173, 'ninety-three thousand one hundred seventy-three'), (13877, 78260, 'seventy-eight thousand two hundred sixty'), (13878, 53617, 'fifty-three thousand six hundred seventeen'), (13879, 67591, 'sixty-seven thousand five hundred ninety-one'), (13880, 50003, 'fifty thousand three'), (13881, 3881, 'three thousand eight hundred eighty-one'), (13882, 24719, 'twenty-four thousand seven hundred nineteen'), (13883, 11308, 'eleven thousand three hundred eight'), (13884, 99283, 'ninety-nine thousand two hundred eighty-three'), (13885, 11004, 'eleven thousand four'), (13886, 72708, 'seventy-two thousand seven hundred eight'), (13887, 36791, 'thirty-six thousand seven hundred ninety-one'), (13888, 17542, 'seventeen thousand five hundred forty-two'), (13889, 14809, 'fourteen thousand eight hundred nine'), (13890, 92123, 'ninety-two thousand one hundred twenty-three'), (13891, 17326, 'seventeen thousand three hundred twenty-six'), (13892, 74709, 'seventy-four thousand seven hundred nine'), (13893, 44197, 'forty-four thousand one hundred ninety-seven'), (13894, 8078, 'eight thousand seventy-eight'), (13895, 46879, 'forty-six thousand eight hundred seventy-nine'), (13896, 58011, 'fifty-eight thousand eleven'), (13897, 54352, 'fifty-four thousand three hundred fifty-two'), (13898, 16235, 'sixteen thousand two hundred thirty-five'), (13899, 4278, 'four thousand two hundred seventy-eight'), (13900, 85315, 'eighty-five thousand three hundred fifteen'), (13901, 8374, 'eight thousand three hundred seventy-four'), (13902, 17825, 'seventeen thousand eight hundred twenty-five'), (13903, 10431, 'ten thousand four hundred thirty-one'), (13904, 74458, 'seventy-four thousand four hundred fifty-eight'), (13905, 64768, 'sixty-four thousand seven hundred sixty-eight'), (13906, 53411, 'fifty-three thousand four hundred eleven'), (13907, 44856, 'forty-four thousand eight hundred fifty-six'), (13908, 85283, 'eighty-five thousand two hundred eighty-three'), (13909, 50595, 'fifty thousand five hundred ninety-five'), (13910, 32334, 'thirty-two thousand three hundred thirty-four'), (13911, 72344, 'seventy-two thousand three hundred forty-four'), (13912, 71649, 'seventy-one thousand six hundred forty-nine'), (13913, 89150, 'eighty-nine thousand one hundred fifty'), (13914, 84303, 'eighty-four thousand three hundred three'), (13915, 30665, 'thirty thousand six hundred sixty-five'), (13916, 78780, 'seventy-eight thousand seven hundred eighty'), (13917, 89025, 'eighty-nine thousand twenty-five'), (13918, 41063, 'forty-one thousand sixty-three'), (13919, 33110, 'thirty-three thousand one hundred ten'), (13920, 65803, 'sixty-five thousand eight hundred three'), (13921, 49198, 'forty-nine thousand one hundred ninety-eight'), (13922, 90327, 'ninety thousand three hundred twenty-seven'), (13923, 68471, 'sixty-eight thousand four hundred seventy-one'), (13924, 7429, 'seven thousand four hundred twenty-nine'), (13925, 8150, 'eight thousand one hundred fifty'), (13926, 89548, 'eighty-nine thousand five hundred forty-eight'), (13927, 7171, 'seven thousand one hundred seventy-one'), (13928, 90836, 'ninety thousand eight hundred thirty-six'), (13929, 25283, 'twenty-five thousand two hundred eighty-three'), (13930, 88507, 'eighty-eight thousand five hundred seven'), (13931, 20224, 'twenty thousand two hundred twenty-four'), (13932, 73097, 'seventy-three thousand ninety-seven'), (13933, 4549, 'four thousand five hundred forty-nine'), (13934, 37916, 'thirty-seven thousand nine hundred sixteen'), (13935, 61924, 'sixty-one thousand nine hundred twenty-four'), (13936, 67336, 'sixty-seven thousand three hundred thirty-six'), (13937, 95064, 'ninety-five thousand sixty-four'), (13938, 96587, 'ninety-six thousand five hundred eighty-seven'), (13939, 29571, 'twenty-nine thousand five hundred seventy-one'), (13940, 28864, 'twenty-eight thousand eight hundred sixty-four'), (13941, 23332, 'twenty-three thousand three hundred thirty-two'), (13942, 61389, 'sixty-one thousand three hundred eighty-nine'), (13943, 71524, 'seventy-one thousand five hundred twenty-four'), (13944, 57931, 'fifty-seven thousand nine hundred thirty-one'), (13945, 4443, 'four thousand four hundred forty-three'), (13946, 6783, 'six thousand seven hundred eighty-three'), (13947, 58263, 'fifty-eight thousand two hundred sixty-three'), (13948, 94460, 'ninety-four thousand four hundred sixty'), (13949, 75297, 'seventy-five thousand two hundred ninety-seven'), (13950, 61635, 'sixty-one thousand six hundred thirty-five'), (13951, 52074, 'fifty-two thousand seventy-four'), (13952, 53478, 'fifty-three thousand four hundred seventy-eight'), (13953, 72076, 'seventy-two thousand seventy-six'), (13954, 17923, 'seventeen thousand nine hundred twenty-three'), (13955, 77086, 'seventy-seven thousand eighty-six'), (13956, 10932, 'ten thousand nine hundred thirty-two'), (13957, 57580, 'fifty-seven thousand five hundred eighty'), (13958, 31437, 'thirty-one thousand four hundred thirty-seven'), (13959, 41326, 'forty-one thousand three hundred twenty-six'), (13960, 80597, 'eighty thousand five hundred ninety-seven'), (13961, 46540, 'forty-six thousand five hundred forty'), (13962, 75245, 'seventy-five thousand two hundred forty-five'), (13963, 54585, 'fifty-four thousand five hundred eighty-five'), (13964, 1122, 'one thousand one hundred twenty-two'), (13965, 73413, 'seventy-three thousand four hundred thirteen'), (13966, 20334, 'twenty thousand three hundred thirty-four'), (13967, 95300, 'ninety-five thousand three hundred'), (13968, 7348, 'seven thousand three hundred forty-eight'), (13969, 74165, 'seventy-four thousand one hundred sixty-five'), (13970, 30473, 'thirty thousand four hundred seventy-three'), (13971, 15377, 'fifteen thousand three hundred seventy-seven'), (13972, 43499, 'forty-three thousand four hundred ninety-nine'), (13973, 22262, 'twenty-two thousand two hundred sixty-two'), (13974, 17978, 'seventeen thousand nine hundred seventy-eight'), (13975, 78716, 'seventy-eight thousand seven hundred sixteen'), (13976, 62759, 'sixty-two thousand seven hundred fifty-nine'), (13977, 65360, 'sixty-five thousand three hundred sixty'), (13978, 94651, 'ninety-four thousand six hundred fifty-one'), (13979, 69989, 'sixty-nine thousand nine hundred eighty-nine'), (13980, 65567, 'sixty-five thousand five hundred sixty-seven'), (13981, 81075, 'eighty-one thousand seventy-five'), (13982, 57906, 'fifty-seven thousand nine hundred six'), (13983, 64171, 'sixty-four thousand one hundred seventy-one'), (13984, 41289, 'forty-one thousand two hundred eighty-nine'), (13985, 28860, 'twenty-eight thousand eight hundred sixty'), (13986, 22556, 'twenty-two thousand five hundred fifty-six'), (13987, 16439, 'sixteen thousand four hundred thirty-nine'), (13988, 95639, 'ninety-five thousand six hundred thirty-nine'), (13989, 49010, 'forty-nine thousand ten'), (13990, 90766, 'ninety thousand seven hundred sixty-six'), (13991, 84651, 'eighty-four thousand six hundred fifty-one'), (13992, 50935, 'fifty thousand nine hundred thirty-five'), (13993, 88748, 'eighty-eight thousand seven hundred forty-eight'), (13994, 84745, 'eighty-four thousand seven hundred forty-five'), (13995, 39283, 'thirty-nine thousand two hundred eighty-three'), (13996, 7382, 'seven thousand three hundred eighty-two'), (13997, 90804, 'ninety thousand eight hundred four'), (13998, 33033, 'thirty-three thousand thirty-three'), (13999, 55866, 'fifty-five thousand eight hundred sixty-six'), (14000, 27443, 'twenty-seven thousand four hundred forty-three'), (14001, 6070, 'six thousand seventy'), (14002, 80920, 'eighty thousand nine hundred twenty'), (14003, 33757, 'thirty-three thousand seven hundred fifty-seven'), (14004, 97400, 'ninety-seven thousand four hundred'), (14005, 87218, 'eighty-seven thousand two hundred eighteen'), (14006, 80987, 'eighty thousand nine hundred eighty-seven'), (14007, 64071, 'sixty-four thousand seventy-one'), (14008, 660, 'six hundred sixty'), (14009, 90275, 'ninety thousand two hundred seventy-five'), (14010, 64638, 'sixty-four thousand six hundred thirty-eight'), (14011, 1142, 'one thousand one hundred forty-two'), (14012, 3728, 'three thousand seven hundred twenty-eight'), (14013, 58292, 'fifty-eight thousand two hundred ninety-two'), (14014, 38028, 'thirty-eight thousand twenty-eight'), (14015, 53442, 'fifty-three thousand four hundred forty-two'), (14016, 24799, 'twenty-four thousand seven hundred ninety-nine'), (14017, 81197, 'eighty-one thousand one hundred ninety-seven'), (14018, 73241, 'seventy-three thousand two hundred forty-one'), (14019, 55543, 'fifty-five thousand five hundred forty-three'), (14020, 94372, 'ninety-four thousand three hundred seventy-two'), (14021, 85179, 'eighty-five thousand one hundred seventy-nine'), (14022, 98999, 'ninety-eight thousand nine hundred ninety-nine'), (14023, 16290, 'sixteen thousand two hundred ninety'), (14024, 47770, 'forty-seven thousand seven hundred seventy'), (14025, 47769, 'forty-seven thousand seven hundred sixty-nine'), (14026, 25395, 'twenty-five thousand three hundred ninety-five'), (14027, 63378, 'sixty-three thousand three hundred seventy-eight'), (14028, 8868, 'eight thousand eight hundred sixty-eight'), (14029, 53151, 'fifty-three thousand one hundred fifty-one'), (14030, 21042, 'twenty-one thousand forty-two'), (14031, 41835, 'forty-one thousand eight hundred thirty-five'), (14032, 16, 'sixteen'), (14033, 91849, 'ninety-one thousand eight hundred forty-nine'), (14034, 98327, 'ninety-eight thousand three hundred twenty-seven'), (14035, 30459, 'thirty thousand four hundred fifty-nine'), (14036, 5717, 'five thousand seven hundred seventeen'), (14037, 46998, 'forty-six thousand nine hundred ninety-eight'), (14038, 75117, 'seventy-five thousand one hundred seventeen'), (14039, 85536, 'eighty-five thousand five hundred thirty-six'), (14040, 47560, 'forty-seven thousand five hundred sixty'), (14041, 16306, 'sixteen thousand three hundred six'), (14042, 81135, 'eighty-one thousand one hundred thirty-five'), (14043, 5391, 'five thousand three hundred ninety-one'), (14044, 44837, 'forty-four thousand eight hundred thirty-seven'), (14045, 57077, 'fifty-seven thousand seventy-seven'), (14046, 83177, 'eighty-three thousand one hundred seventy-seven'), (14047, 9160, 'nine thousand one hundred sixty'), (14048, 35946, 'thirty-five thousand nine hundred forty-six'), (14049, 279, 'two hundred seventy-nine'), (14050, 64595, 'sixty-four thousand five hundred ninety-five'), (14051, 19603, 'nineteen thousand six hundred three'), (14052, 50428, 'fifty thousand four hundred twenty-eight'), (14053, 71887, 'seventy-one thousand eight hundred eighty-seven'), (14054, 8099, 'eight thousand ninety-nine'), (14055, 98815, 'ninety-eight thousand eight hundred fifteen'), (14056, 34011, 'thirty-four thousand eleven'), (14057, 21291, 'twenty-one thousand two hundred ninety-one'), (14058, 54405, 'fifty-four thousand four hundred five'), (14059, 5340, 'five thousand three hundred forty'), (14060, 17683, 'seventeen thousand six hundred eighty-three'), (14061, 70167, 'seventy thousand one hundred sixty-seven'), (14062, 50277, 'fifty thousand two hundred seventy-seven'), (14063, 49889, 'forty-nine thousand eight hundred eighty-nine'), (14064, 74868, 'seventy-four thousand eight hundred sixty-eight'), (14065, 57759, 'fifty-seven thousand seven hundred fifty-nine'), (14066, 83959, 'eighty-three thousand nine hundred fifty-nine'), (14067, 21287, 'twenty-one thousand two hundred eighty-seven'), (14068, 7022, 'seven thousand twenty-two'), (14069, 79342, 'seventy-nine thousand three hundred forty-two'), (14070, 18522, 'eighteen thousand five hundred twenty-two'), (14071, 96548, 'ninety-six thousand five hundred forty-eight'), (14072, 70039, 'seventy thousand thirty-nine'), (14073, 67499, 'sixty-seven thousand four hundred ninety-nine'), (14074, 44843, 'forty-four thousand eight hundred forty-three'), (14075, 60852, 'sixty thousand eight hundred fifty-two'), (14076, 49005, 'forty-nine thousand five'), (14077, 42691, 'forty-two thousand six hundred ninety-one'), (14078, 76353, 'seventy-six thousand three hundred fifty-three'), (14079, 73231, 'seventy-three thousand two hundred thirty-one'), (14080, 51812, 'fifty-one thousand eight hundred twelve'), (14081, 4065, 'four thousand sixty-five'), (14082, 20048, 'twenty thousand forty-eight'), (14083, 29253, 'twenty-nine thousand two hundred fifty-three'), (14084, 7918, 'seven thousand nine hundred eighteen'), (14085, 46036, 'forty-six thousand thirty-six'), (14086, 80726, 'eighty thousand seven hundred twenty-six'), (14087, 41651, 'forty-one thousand six hundred fifty-one'), (14088, 66489, 'sixty-six thousand four hundred eighty-nine'), (14089, 90786, 'ninety thousand seven hundred eighty-six'), (14090, 70711, 'seventy thousand seven hundred eleven'), (14091, 2226, 'two thousand two hundred twenty-six'), (14092, 34868, 'thirty-four thousand eight hundred sixty-eight'), (14093, 44909, 'forty-four thousand nine hundred nine'), (14094, 89998, 'eighty-nine thousand nine hundred ninety-eight'), (14095, 11780, 'eleven thousand seven hundred eighty'), (14096, 70448, 'seventy thousand four hundred forty-eight'), (14097, 32410, 'thirty-two thousand four hundred ten'), (14098, 52775, 'fifty-two thousand seven hundred seventy-five'), (14099, 80734, 'eighty thousand seven hundred thirty-four'), (14100, 64700, 'sixty-four thousand seven hundred'), (14101, 30, 'thirty'), (14102, 58756, 'fifty-eight thousand seven hundred fifty-six'), (14103, 26156, 'twenty-six thousand one hundred fifty-six'), (14104, 29099, 'twenty-nine thousand ninety-nine'), (14105, 32031, 'thirty-two thousand thirty-one'), (14106, 78367, 'seventy-eight thousand three hundred sixty-seven'), (14107, 47451, 'forty-seven thousand four hundred fifty-one'), (14108, 25179, 'twenty-five thousand one hundred seventy-nine'), (14109, 26956, 'twenty-six thousand nine hundred fifty-six'), (14110, 71063, 'seventy-one thousand sixty-three'), (14111, 88631, 'eighty-eight thousand six hundred thirty-one'), (14112, 20676, 'twenty thousand six hundred seventy-six'), (14113, 38569, 'thirty-eight thousand five hundred sixty-nine'), (14114, 45862, 'forty-five thousand eight hundred sixty-two'), (14115, 97222, 'ninety-seven thousand two hundred twenty-two'), (14116, 23847, 'twenty-three thousand eight hundred forty-seven'), (14117, 27914, 'twenty-seven thousand nine hundred fourteen'), (14118, 26343, 'twenty-six thousand three hundred forty-three'), (14119, 5566, 'five thousand five hundred sixty-six'), (14120, 91348, 'ninety-one thousand three hundred forty-eight'), (14121, 72169, 'seventy-two thousand one hundred sixty-nine'), (14122, 35229, 'thirty-five thousand two hundred twenty-nine'), (14123, 20626, 'twenty thousand six hundred twenty-six'), (14124, 84934, 'eighty-four thousand nine hundred thirty-four'), (14125, 97143, 'ninety-seven thousand one hundred forty-three'), (14126, 57316, 'fifty-seven thousand three hundred sixteen'), (14127, 70205, 'seventy thousand two hundred five'), (14128, 55119, 'fifty-five thousand one hundred nineteen'), (14129, 14023, 'fourteen thousand twenty-three'), (14130, 69712, 'sixty-nine thousand seven hundred twelve'), (14131, 69034, 'sixty-nine thousand thirty-four'), (14132, 27592, 'twenty-seven thousand five hundred ninety-two'), (14133, 14323, 'fourteen thousand three hundred twenty-three'), (14134, 56164, 'fifty-six thousand one hundred sixty-four'), (14135, 67875, 'sixty-seven thousand eight hundred seventy-five'), (14136, 7556, 'seven thousand five hundred fifty-six'), (14137, 47319, 'forty-seven thousand three hundred nineteen'), (14138, 39533, 'thirty-nine thousand five hundred thirty-three'), (14139, 37545, 'thirty-seven thousand five hundred forty-five'), (14140, 42119, 'forty-two thousand one hundred nineteen'), (14141, 39886, 'thirty-nine thousand eight hundred eighty-six'), (14142, 83467, 'eighty-three thousand four hundred sixty-seven'), (14143, 65379, 'sixty-five thousand three hundred seventy-nine'), (14144, 74107, 'seventy-four thousand one hundred seven'), (14145, 92627, 'ninety-two thousand six hundred twenty-seven'), (14146, 20984, 'twenty thousand nine hundred eighty-four'), (14147, 72444, 'seventy-two thousand four hundred forty-four'), (14148, 36611, 'thirty-six thousand six hundred eleven'), (14149, 83169, 'eighty-three thousand one hundred sixty-nine'), (14150, 22705, 'twenty-two thousand seven hundred five'), (14151, 34171, 'thirty-four thousand one hundred seventy-one'), (14152, 37130, 'thirty-seven thousand one hundred thirty'), (14153, 92769, 'ninety-two thousand seven hundred sixty-nine'), (14154, 70754, 'seventy thousand seven hundred fifty-four'), (14155, 51656, 'fifty-one thousand six hundred fifty-six'), (14156, 50732, 'fifty thousand seven hundred thirty-two'), (14157, 16488, 'sixteen thousand four hundred eighty-eight'), (14158, 79570, 'seventy-nine thousand five hundred seventy'), (14159, 62083, 'sixty-two thousand eighty-three'), (14160, 4761, 'four thousand seven hundred sixty-one'), (14161, 27727, 'twenty-seven thousand seven hundred twenty-seven'), (14162, 37092, 'thirty-seven thousand ninety-two'), (14163, 64288, 'sixty-four thousand two hundred eighty-eight'), (14164, 97438, 'ninety-seven thousand four hundred thirty-eight'), (14165, 31498, 'thirty-one thousand four hundred ninety-eight'), (14166, 99157, 'ninety-nine thousand one hundred fifty-seven'), (14167, 15456, 'fifteen thousand four hundred fifty-six'), (14168, 79114, 'seventy-nine thousand one hundred fourteen'), (14169, 28346, 'twenty-eight thousand three hundred forty-six'), (14170, 48753, 'forty-eight thousand seven hundred fifty-three'), (14171, 14314, 'fourteen thousand three hundred fourteen'), (14172, 69211, 'sixty-nine thousand two hundred eleven'), (14173, 87614, 'eighty-seven thousand six hundred fourteen'), (14174, 21482, 'twenty-one thousand four hundred eighty-two'), (14175, 84555, 'eighty-four thousand five hundred fifty-five'), (14176, 92481, 'ninety-two thousand four hundred eighty-one'), (14177, 80601, 'eighty thousand six hundred one'), (14178, 86326, 'eighty-six thousand three hundred twenty-six'), (14179, 51725, 'fifty-one thousand seven hundred twenty-five'), (14180, 25639, 'twenty-five thousand six hundred thirty-nine'), (14181, 86604, 'eighty-six thousand six hundred four'), (14182, 9013, 'nine thousand thirteen'), (14183, 10834, 'ten thousand eight hundred thirty-four'), (14184, 24644, 'twenty-four thousand six hundred forty-four'), (14185, 69444, 'sixty-nine thousand four hundred forty-four'), (14186, 13141, 'thirteen thousand one hundred forty-one'), (14187, 29103, 'twenty-nine thousand one hundred three'), (14188, 83682, 'eighty-three thousand six hundred eighty-two'), (14189, 43992, 'forty-three thousand nine hundred ninety-two'), (14190, 74783, 'seventy-four thousand seven hundred eighty-three'), (14191, 42437, 'forty-two thousand four hundred thirty-seven'), (14192, 4381, 'four thousand three hundred eighty-one'), (14193, 61759, 'sixty-one thousand seven hundred fifty-nine'), (14194, 54951, 'fifty-four thousand nine hundred fifty-one'), (14195, 19140, 'nineteen thousand one hundred forty'), (14196, 57927, 'fifty-seven thousand nine hundred twenty-seven'), (14197, 47775, 'forty-seven thousand seven hundred seventy-five'), (14198, 52878, 'fifty-two thousand eight hundred seventy-eight'), (14199, 83869, 'eighty-three thousand eight hundred sixty-nine'), (14200, 41009, 'forty-one thousand nine'), (14201, 32065, 'thirty-two thousand sixty-five'), (14202, 75242, 'seventy-five thousand two hundred forty-two'), (14203, 88982, 'eighty-eight thousand nine hundred eighty-two'), (14204, 84425, 'eighty-four thousand four hundred twenty-five'), (14205, 86469, 'eighty-six thousand four hundred sixty-nine'), (14206, 4916, 'four thousand nine hundred sixteen'), (14207, 40930, 'forty thousand nine hundred thirty'), (14208, 43178, 'forty-three thousand one hundred seventy-eight'), (14209, 16744, 'sixteen thousand seven hundred forty-four'), (14210, 7823, 'seven thousand eight hundred twenty-three'), (14211, 88086, 'eighty-eight thousand eighty-six'), (14212, 19551, 'nineteen thousand five hundred fifty-one'), (14213, 25943, 'twenty-five thousand nine hundred forty-three'), (14214, 89127, 'eighty-nine thousand one hundred twenty-seven'), (14215, 63497, 'sixty-three thousand four hundred ninety-seven'), (14216, 82765, 'eighty-two thousand seven hundred sixty-five'), (14217, 30305, 'thirty thousand three hundred five'), (14218, 58564, 'fifty-eight thousand five hundred sixty-four'), (14219, 28257, 'twenty-eight thousand two hundred fifty-seven'), (14220, 77279, 'seventy-seven thousand two hundred seventy-nine'), (14221, 51722, 'fifty-one thousand seven hundred twenty-two'), (14222, 24282, 'twenty-four thousand two hundred eighty-two'), (14223, 62794, 'sixty-two thousand seven hundred ninety-four'), (14224, 44363, 'forty-four thousand three hundred sixty-three'), (14225, 89297, 'eighty-nine thousand two hundred ninety-seven'), (14226, 39420, 'thirty-nine thousand four hundred twenty'), (14227, 8990, 'eight thousand nine hundred ninety'), (14228, 92556, 'ninety-two thousand five hundred fifty-six'), (14229, 47958, 'forty-seven thousand nine hundred fifty-eight'), (14230, 94381, 'ninety-four thousand three hundred eighty-one'), (14231, 94323, 'ninety-four thousand three hundred twenty-three'), (14232, 43972, 'forty-three thousand nine hundred seventy-two'), (14233, 2510, 'two thousand five hundred ten'), (14234, 21945, 'twenty-one thousand nine hundred forty-five'), (14235, 23777, 'twenty-three thousand seven hundred seventy-seven'), (14236, 64407, 'sixty-four thousand four hundred seven'), (14237, 30935, 'thirty thousand nine hundred thirty-five'), (14238, 38018, 'thirty-eight thousand eighteen'), (14239, 96118, 'ninety-six thousand one hundred eighteen'), (14240, 45534, 'forty-five thousand five hundred thirty-four'), (14241, 85873, 'eighty-five thousand eight hundred seventy-three'), (14242, 67184, 'sixty-seven thousand one hundred eighty-four'), (14243, 65712, 'sixty-five thousand seven hundred twelve'), (14244, 9435, 'nine thousand four hundred thirty-five'), (14245, 35322, 'thirty-five thousand three hundred twenty-two'), (14246, 91405, 'ninety-one thousand four hundred five'), (14247, 62911, 'sixty-two thousand nine hundred eleven'), (14248, 7842, 'seven thousand eight hundred forty-two'), (14249, 51414, 'fifty-one thousand four hundred fourteen'), (14250, 22465, 'twenty-two thousand four hundred sixty-five'), (14251, 32639, 'thirty-two thousand six hundred thirty-nine'), (14252, 62212, 'sixty-two thousand two hundred twelve'), (14253, 20304, 'twenty thousand three hundred four'), (14254, 69574, 'sixty-nine thousand five hundred seventy-four'), (14255, 54688, 'fifty-four thousand six hundred eighty-eight'), (14256, 59382, 'fifty-nine thousand three hundred eighty-two'), (14257, 63230, 'sixty-three thousand two hundred thirty'), (14258, 94295, 'ninety-four thousand two hundred ninety-five'), (14259, 97845, 'ninety-seven thousand eight hundred forty-five'), (14260, 90665, 'ninety thousand six hundred sixty-five'), (14261, 57241, 'fifty-seven thousand two hundred forty-one'), (14262, 31129, 'thirty-one thousand one hundred twenty-nine'), (14263, 52584, 'fifty-two thousand five hundred eighty-four'), (14264, 64248, 'sixty-four thousand two hundred forty-eight'), (14265, 74634, 'seventy-four thousand six hundred thirty-four'), (14266, 76404, 'seventy-six thousand four hundred four'), (14267, 29486, 'twenty-nine thousand four hundred eighty-six'), (14268, 17786, 'seventeen thousand seven hundred eighty-six'), (14269, 62839, 'sixty-two thousand eight hundred thirty-nine'), (14270, 36637, 'thirty-six thousand six hundred thirty-seven'), (14271, 50990, 'fifty thousand nine hundred ninety'), (14272, 76728, 'seventy-six thousand seven hundred twenty-eight'), (14273, 52060, 'fifty-two thousand sixty'), (14274, 55154, 'fifty-five thousand one hundred fifty-four'), (14275, 60588, 'sixty thousand five hundred eighty-eight'), (14276, 5076, 'five thousand seventy-six'), (14277, 74857, 'seventy-four thousand eight hundred fifty-seven'), (14278, 46644, 'forty-six thousand six hundred forty-four'), (14279, 60609, 'sixty thousand six hundred nine'), (14280, 69598, 'sixty-nine thousand five hundred ninety-eight'), (14281, 57260, 'fifty-seven thousand two hundred sixty'), (14282, 94989, 'ninety-four thousand nine hundred eighty-nine'), (14283, 58789, 'fifty-eight thousand seven hundred eighty-nine'), (14284, 73219, 'seventy-three thousand two hundred nineteen'), (14285, 29093, 'twenty-nine thousand ninety-three'), (14286, 21412, 'twenty-one thousand four hundred twelve'), (14287, 90352, 'ninety thousand three hundred fifty-two'), (14288, 7151, 'seven thousand one hundred fifty-one'), (14289, 9830, 'nine thousand eight hundred thirty'), (14290, 70265, 'seventy thousand two hundred sixty-five'), (14291, 7236, 'seven thousand two hundred thirty-six'), (14292, 24213, 'twenty-four thousand two hundred thirteen'), (14293, 34717, 'thirty-four thousand seven hundred seventeen'), (14294, 90624, 'ninety thousand six hundred twenty-four'), (14295, 36920, 'thirty-six thousand nine hundred twenty'), (14296, 5055, 'five thousand fifty-five'), (14297, 9154, 'nine thousand one hundred fifty-four'), (14298, 82441, 'eighty-two thousand four hundred forty-one'), (14299, 40498, 'forty thousand four hundred ninety-eight'), (14300, 5931, 'five thousand nine hundred thirty-one'), (14301, 81847, 'eighty-one thousand eight hundred forty-seven'), (14302, 16365, 'sixteen thousand three hundred sixty-five'), (14303, 64044, 'sixty-four thousand forty-four'), (14304, 42828, 'forty-two thousand eight hundred twenty-eight'), (14305, 77245, 'seventy-seven thousand two hundred forty-five'), (14306, 68101, 'sixty-eight thousand one hundred one'), (14307, 22692, 'twenty-two thousand six hundred ninety-two'), (14308, 33884, 'thirty-three thousand eight hundred eighty-four'), (14309, 59114, 'fifty-nine thousand one hundred fourteen'), (14310, 76416, 'seventy-six thousand four hundred sixteen'), (14311, 49710, 'forty-nine thousand seven hundred ten'), (14312, 51303, 'fifty-one thousand three hundred three'), (14313, 72241, 'seventy-two thousand two hundred forty-one'), (14314, 90059, 'ninety thousand fifty-nine'), (14315, 98357, 'ninety-eight thousand three hundred fifty-seven'), (14316, 38819, 'thirty-eight thousand eight hundred nineteen'), (14317, 31864, 'thirty-one thousand eight hundred sixty-four'), (14318, 60077, 'sixty thousand seventy-seven'), (14319, 76181, 'seventy-six thousand one hundred eighty-one'), (14320, 19692, 'nineteen thousand six hundred ninety-two'), (14321, 97806, 'ninety-seven thousand eight hundred six'), (14322, 61599, 'sixty-one thousand five hundred ninety-nine'), (14323, 34611, 'thirty-four thousand six hundred eleven'), (14324, 84140, 'eighty-four thousand one hundred forty'), (14325, 12217, 'twelve thousand two hundred seventeen'), (14326, 82300, 'eighty-two thousand three hundred'), (14327, 74272, 'seventy-four thousand two hundred seventy-two'), (14328, 74265, 'seventy-four thousand two hundred sixty-five'), (14329, 60922, 'sixty thousand nine hundred twenty-two'), (14330, 45274, 'forty-five thousand two hundred seventy-four'), (14331, 29864, 'twenty-nine thousand eight hundred sixty-four'), (14332, 43869, 'forty-three thousand eight hundred sixty-nine'), (14333, 97801, 'ninety-seven thousand eight hundred one'), (14334, 44111, 'forty-four thousand one hundred eleven'), (14335, 31140, 'thirty-one thousand one hundred forty'), (14336, 26431, 'twenty-six thousand four hundred thirty-one'), (14337, 95892, 'ninety-five thousand eight hundred ninety-two'), (14338, 23643, 'twenty-three thousand six hundred forty-three'), (14339, 9987, 'nine thousand nine hundred eighty-seven'), (14340, 38559, 'thirty-eight thousand five hundred fifty-nine'), (14341, 12285, 'twelve thousand two hundred eighty-five'), (14342, 95915, 'ninety-five thousand nine hundred fifteen'), (14343, 83802, 'eighty-three thousand eight hundred two'), (14344, 27394, 'twenty-seven thousand three hundred ninety-four'), (14345, 2087, 'two thousand eighty-seven'), (14346, 95448, 'ninety-five thousand four hundred forty-eight'), (14347, 68544, 'sixty-eight thousand five hundred forty-four'), (14348, 96637, 'ninety-six thousand six hundred thirty-seven'), (14349, 97022, 'ninety-seven thousand twenty-two'), (14350, 22948, 'twenty-two thousand nine hundred forty-eight'), (14351, 60979, 'sixty thousand nine hundred seventy-nine'), (14352, 95824, 'ninety-five thousand eight hundred twenty-four'), (14353, 57159, 'fifty-seven thousand one hundred fifty-nine'), (14354, 54898, 'fifty-four thousand eight hundred ninety-eight'), (14355, 35741, 'thirty-five thousand seven hundred forty-one'), (14356, 14997, 'fourteen thousand nine hundred ninety-seven'), (14357, 79366, 'seventy-nine thousand three hundred sixty-six'), (14358, 99647, 'ninety-nine thousand six hundred forty-seven'), (14359, 65949, 'sixty-five thousand nine hundred forty-nine'), (14360, 7391, 'seven thousand three hundred ninety-one'), (14361, 4665, 'four thousand six hundred sixty-five'), (14362, 54674, 'fifty-four thousand six hundred seventy-four'), (14363, 48491, 'forty-eight thousand four hundred ninety-one'), (14364, 64611, 'sixty-four thousand six hundred eleven'), (14365, 5079, 'five thousand seventy-nine'), (14366, 96510, 'ninety-six thousand five hundred ten'), (14367, 19930, 'nineteen thousand nine hundred thirty'), (14368, 14729, 'fourteen thousand seven hundred twenty-nine'), (14369, 54085, 'fifty-four thousand eighty-five'), (14370, 18388, 'eighteen thousand three hundred eighty-eight'), (14371, 47262, 'forty-seven thousand two hundred sixty-two'), (14372, 38350, 'thirty-eight thousand three hundred fifty'), (14373, 14133, 'fourteen thousand one hundred thirty-three'), (14374, 4247, 'four thousand two hundred forty-seven'), (14375, 15359, 'fifteen thousand three hundred fifty-nine'), (14376, 10308, 'ten thousand three hundred eight'), (14377, 26455, 'twenty-six thousand four hundred fifty-five'), (14378, 71989, 'seventy-one thousand nine hundred eighty-nine'), (14379, 2371, 'two thousand three hundred seventy-one'), (14380, 44012, 'forty-four thousand twelve'), (14381, 3578, 'three thousand five hundred seventy-eight'), (14382, 33913, 'thirty-three thousand nine hundred thirteen'), (14383, 87445, 'eighty-seven thousand four hundred forty-five'), (14384, 26229, 'twenty-six thousand two hundred twenty-nine'), (14385, 1263, 'one thousand two hundred sixty-three'), (14386, 68279, 'sixty-eight thousand two hundred seventy-nine'), (14387, 13226, 'thirteen thousand two hundred twenty-six'), (14388, 87733, 'eighty-seven thousand seven hundred thirty-three'), (14389, 79940, 'seventy-nine thousand nine hundred forty'), (14390, 94181, 'ninety-four thousand one hundred eighty-one'), (14391, 98470, 'ninety-eight thousand four hundred seventy'), (14392, 29106, 'twenty-nine thousand one hundred six'), (14393, 325, 'three hundred twenty-five'), (14394, 57983, 'fifty-seven thousand nine hundred eighty-three'), (14395, 7554, 'seven thousand five hundred fifty-four'), (14396, 94566, 'ninety-four thousand five hundred sixty-six'), (14397, 10174, 'ten thousand one hundred seventy-four'), (14398, 60058, 'sixty thousand fifty-eight'), (14399, 83177, 'eighty-three thousand one hundred seventy-seven'), (14400, 84461, 'eighty-four thousand four hundred sixty-one'), (14401, 10453, 'ten thousand four hundred fifty-three'), (14402, 79568, 'seventy-nine thousand five hundred sixty-eight'), (14403, 2432, 'two thousand four hundred thirty-two'), (14404, 22426, 'twenty-two thousand four hundred twenty-six'), (14405, 55022, 'fifty-five thousand twenty-two'), (14406, 54477, 'fifty-four thousand four hundred seventy-seven'), (14407, 224, 'two hundred twenty-four'), (14408, 80170, 'eighty thousand one hundred seventy'), (14409, 74617, 'seventy-four thousand six hundred seventeen'), (14410, 37826, 'thirty-seven thousand eight hundred twenty-six'), (14411, 13481, 'thirteen thousand four hundred eighty-one'), (14412, 55903, 'fifty-five thousand nine hundred three'), (14413, 98563, 'ninety-eight thousand five hundred sixty-three'), (14414, 56487, 'fifty-six thousand four hundred eighty-seven'), (14415, 69806, 'sixty-nine thousand eight hundred six'), (14416, 78030, 'seventy-eight thousand thirty'), (14417, 90461, 'ninety thousand four hundred sixty-one'), (14418, 32670, 'thirty-two thousand six hundred seventy'), (14419, 90171, 'ninety thousand one hundred seventy-one'), (14420, 71633, 'seventy-one thousand six hundred thirty-three'), (14421, 34699, 'thirty-four thousand six hundred ninety-nine'), (14422, 68435, 'sixty-eight thousand four hundred thirty-five'), (14423, 86962, 'eighty-six thousand nine hundred sixty-two'), (14424, 7094, 'seven thousand ninety-four'), (14425, 9991, 'nine thousand nine hundred ninety-one'), (14426, 17207, 'seventeen thousand two hundred seven'), (14427, 88226, 'eighty-eight thousand two hundred twenty-six'), (14428, 46157, 'forty-six thousand one hundred fifty-seven'), (14429, 99262, 'ninety-nine thousand two hundred sixty-two'), (14430, 45542, 'forty-five thousand five hundred forty-two'), (14431, 85504, 'eighty-five thousand five hundred four'), (14432, 70406, 'seventy thousand four hundred six'), (14433, 12940, 'twelve thousand nine hundred forty'), (14434, 30821, 'thirty thousand eight hundred twenty-one'), (14435, 36246, 'thirty-six thousand two hundred forty-six'), (14436, 89217, 'eighty-nine thousand two hundred seventeen'), (14437, 87303, 'eighty-seven thousand three hundred three'), (14438, 10572, 'ten thousand five hundred seventy-two'), (14439, 29156, 'twenty-nine thousand one hundred fifty-six'), (14440, 46980, 'forty-six thousand nine hundred eighty'), (14441, 43683, 'forty-three thousand six hundred eighty-three'), (14442, 95156, 'ninety-five thousand one hundred fifty-six'), (14443, 15716, 'fifteen thousand seven hundred sixteen'), (14444, 44693, 'forty-four thousand six hundred ninety-three'), (14445, 49162, 'forty-nine thousand one hundred sixty-two'), (14446, 48546, 'forty-eight thousand five hundred forty-six'), (14447, 36516, 'thirty-six thousand five hundred sixteen'), (14448, 48270, 'forty-eight thousand two hundred seventy'), (14449, 29979, 'twenty-nine thousand nine hundred seventy-nine'), (14450, 6000, 'six thousand'), (14451, 89570, 'eighty-nine thousand five hundred seventy'), (14452, 1531, 'one thousand five hundred thirty-one'), (14453, 52598, 'fifty-two thousand five hundred ninety-eight'), (14454, 3987, 'three thousand nine hundred eighty-seven'), (14455, 80410, 'eighty thousand four hundred ten'), (14456, 66354, 'sixty-six thousand three hundred fifty-four'), (14457, 82652, 'eighty-two thousand six hundred fifty-two'), (14458, 16187, 'sixteen thousand one hundred eighty-seven'), (14459, 90640, 'ninety thousand six hundred forty'), (14460, 23381, 'twenty-three thousand three hundred eighty-one'), (14461, 24338, 'twenty-four thousand three hundred thirty-eight'), (14462, 92652, 'ninety-two thousand six hundred fifty-two'), (14463, 41077, 'forty-one thousand seventy-seven'), (14464, 36577, 'thirty-six thousand five hundred seventy-seven'), (14465, 20299, 'twenty thousand two hundred ninety-nine'), (14466, 62776, 'sixty-two thousand seven hundred seventy-six'), (14467, 67506, 'sixty-seven thousand five hundred six'), (14468, 73012, 'seventy-three thousand twelve'), (14469, 81291, 'eighty-one thousand two hundred ninety-one'), (14470, 51806, 'fifty-one thousand eight hundred six'), (14471, 10356, 'ten thousand three hundred fifty-six'), (14472, 14935, 'fourteen thousand nine hundred thirty-five'), (14473, 92150, 'ninety-two thousand one hundred fifty'), (14474, 85918, 'eighty-five thousand nine hundred eighteen'), (14475, 22235, 'twenty-two thousand two hundred thirty-five'), (14476, 22731, 'twenty-two thousand seven hundred thirty-one'), (14477, 34465, 'thirty-four thousand four hundred sixty-five'), (14478, 20592, 'twenty thousand five hundred ninety-two'), (14479, 42785, 'forty-two thousand seven hundred eighty-five'), (14480, 48326, 'forty-eight thousand three hundred twenty-six'), (14481, 11939, 'eleven thousand nine hundred thirty-nine'), (14482, 35144, 'thirty-five thousand one hundred forty-four'), (14483, 92610, 'ninety-two thousand six hundred ten'), (14484, 33640, 'thirty-three thousand six hundred forty'), (14485, 69147, 'sixty-nine thousand one hundred forty-seven'), (14486, 59398, 'fifty-nine thousand three hundred ninety-eight'), (14487, 72857, 'seventy-two thousand eight hundred fifty-seven'), (14488, 13955, 'thirteen thousand nine hundred fifty-five'), (14489, 14269, 'fourteen thousand two hundred sixty-nine'), (14490, 51046, 'fifty-one thousand forty-six'), (14491, 1683, 'one thousand six hundred eighty-three'), (14492, 34176, 'thirty-four thousand one hundred seventy-six'), (14493, 78035, 'seventy-eight thousand thirty-five'), (14494, 6010, 'six thousand ten'), (14495, 25220, 'twenty-five thousand two hundred twenty'), (14496, 10069, 'ten thousand sixty-nine'), (14497, 32014, 'thirty-two thousand fourteen'), (14498, 42905, 'forty-two thousand nine hundred five'), (14499, 38341, 'thirty-eight thousand three hundred forty-one'), (14500, 68819, 'sixty-eight thousand eight hundred nineteen'), (14501, 17996, 'seventeen thousand nine hundred ninety-six'), (14502, 13424, 'thirteen thousand four hundred twenty-four'), (14503, 98015, 'ninety-eight thousand fifteen'), (14504, 60066, 'sixty thousand sixty-six'), (14505, 62737, 'sixty-two thousand seven hundred thirty-seven'), (14506, 43719, 'forty-three thousand seven hundred nineteen'), (14507, 72053, 'seventy-two thousand fifty-three'), (14508, 84111, 'eighty-four thousand one hundred eleven'), (14509, 14871, 'fourteen thousand eight hundred seventy-one'), (14510, 51984, 'fifty-one thousand nine hundred eighty-four'), (14511, 24022, 'twenty-four thousand twenty-two'), (14512, 82959, 'eighty-two thousand nine hundred fifty-nine'), (14513, 61332, 'sixty-one thousand three hundred thirty-two'), (14514, 91621, 'ninety-one thousand six hundred twenty-one'), (14515, 79851, 'seventy-nine thousand eight hundred fifty-one'), (14516, 62831, 'sixty-two thousand eight hundred thirty-one'), (14517, 23427, 'twenty-three thousand four hundred twenty-seven'), (14518, 46295, 'forty-six thousand two hundred ninety-five'), (14519, 66657, 'sixty-six thousand six hundred fifty-seven'), (14520, 6208, 'six thousand two hundred eight'), (14521, 66380, 'sixty-six thousand three hundred eighty'), (14522, 17450, 'seventeen thousand four hundred fifty'), (14523, 61566, 'sixty-one thousand five hundred sixty-six'), (14524, 89253, 'eighty-nine thousand two hundred fifty-three'), (14525, 59985, 'fifty-nine thousand nine hundred eighty-five'), (14526, 97636, 'ninety-seven thousand six hundred thirty-six'), (14527, 9563, 'nine thousand five hundred sixty-three'), (14528, 13734, 'thirteen thousand seven hundred thirty-four'), (14529, 5650, 'five thousand six hundred fifty'), (14530, 89709, 'eighty-nine thousand seven hundred nine'), (14531, 24506, 'twenty-four thousand five hundred six'), (14532, 18122, 'eighteen thousand one hundred twenty-two'), (14533, 11118, 'eleven thousand one hundred eighteen'), (14534, 19254, 'nineteen thousand two hundred fifty-four'), (14535, 48795, 'forty-eight thousand seven hundred ninety-five'), (14536, 47002, 'forty-seven thousand two'), (14537, 93246, 'ninety-three thousand two hundred forty-six'), (14538, 93657, 'ninety-three thousand six hundred fifty-seven'), (14539, 95971, 'ninety-five thousand nine hundred seventy-one'), (14540, 19687, 'nineteen thousand six hundred eighty-seven'), (14541, 7745, 'seven thousand seven hundred forty-five'), (14542, 95532, 'ninety-five thousand five hundred thirty-two'), (14543, 47374, 'forty-seven thousand three hundred seventy-four'), (14544, 66780, 'sixty-six thousand seven hundred eighty'), (14545, 6678, 'six thousand six hundred seventy-eight'), (14546, 1601, 'one thousand six hundred one'), (14547, 56690, 'fifty-six thousand six hundred ninety'), (14548, 61801, 'sixty-one thousand eight hundred one'), (14549, 18009, 'eighteen thousand nine'), (14550, 28747, 'twenty-eight thousand seven hundred forty-seven'), (14551, 96227, 'ninety-six thousand two hundred twenty-seven'), (14552, 43763, 'forty-three thousand seven hundred sixty-three'), (14553, 54158, 'fifty-four thousand one hundred fifty-eight'), (14554, 1818, 'one thousand eight hundred eighteen'), (14555, 24612, 'twenty-four thousand six hundred twelve'), (14556, 46670, 'forty-six thousand six hundred seventy'), (14557, 91736, 'ninety-one thousand seven hundred thirty-six'), (14558, 17262, 'seventeen thousand two hundred sixty-two'), (14559, 78245, 'seventy-eight thousand two hundred forty-five'), (14560, 97168, 'ninety-seven thousand one hundred sixty-eight'), (14561, 80533, 'eighty thousand five hundred thirty-three'), (14562, 55311, 'fifty-five thousand three hundred eleven'), (14563, 54210, 'fifty-four thousand two hundred ten'), (14564, 48670, 'forty-eight thousand six hundred seventy'), (14565, 69117, 'sixty-nine thousand one hundred seventeen'), (14566, 45768, 'forty-five thousand seven hundred sixty-eight'), (14567, 15407, 'fifteen thousand four hundred seven'), (14568, 50050, 'fifty thousand fifty'), (14569, 94177, 'ninety-four thousand one hundred seventy-seven'), (14570, 48762, 'forty-eight thousand seven hundred sixty-two'), (14571, 8834, 'eight thousand eight hundred thirty-four'), (14572, 21433, 'twenty-one thousand four hundred thirty-three'), (14573, 14194, 'fourteen thousand one hundred ninety-four'), (14574, 38715, 'thirty-eight thousand seven hundred fifteen'), (14575, 62721, 'sixty-two thousand seven hundred twenty-one'), (14576, 2339, 'two thousand three hundred thirty-nine'), (14577, 35936, 'thirty-five thousand nine hundred thirty-six'), (14578, 62465, 'sixty-two thousand four hundred sixty-five'), (14579, 31586, 'thirty-one thousand five hundred eighty-six'), (14580, 95906, 'ninety-five thousand nine hundred six'), (14581, 71334, 'seventy-one thousand three hundred thirty-four'), (14582, 84597, 'eighty-four thousand five hundred ninety-seven'), (14583, 43360, 'forty-three thousand three hundred sixty'), (14584, 38515, 'thirty-eight thousand five hundred fifteen'), (14585, 76042, 'seventy-six thousand forty-two'), (14586, 96336, 'ninety-six thousand three hundred thirty-six'), (14587, 42584, 'forty-two thousand five hundred eighty-four'), (14588, 13018, 'thirteen thousand eighteen'), (14589, 17527, 'seventeen thousand five hundred twenty-seven'), (14590, 18176, 'eighteen thousand one hundred seventy-six'), (14591, 545, 'five hundred forty-five'), (14592, 33773, 'thirty-three thousand seven hundred seventy-three'), (14593, 56040, 'fifty-six thousand forty'), (14594, 78879, 'seventy-eight thousand eight hundred seventy-nine'), (14595, 19897, 'nineteen thousand eight hundred ninety-seven'), (14596, 65648, 'sixty-five thousand six hundred forty-eight'), (14597, 76673, 'seventy-six thousand six hundred seventy-three'), (14598, 61800, 'sixty-one thousand eight hundred'), (14599, 84624, 'eighty-four thousand six hundred twenty-four'), (14600, 431, 'four hundred thirty-one'), (14601, 10560, 'ten thousand five hundred sixty'), (14602, 21302, 'twenty-one thousand three hundred two'), (14603, 39091, 'thirty-nine thousand ninety-one'), (14604, 65297, 'sixty-five thousand two hundred ninety-seven'), (14605, 13528, 'thirteen thousand five hundred twenty-eight'), (14606, 28883, 'twenty-eight thousand eight hundred eighty-three'), (14607, 28028, 'twenty-eight thousand twenty-eight'), (14608, 81862, 'eighty-one thousand eight hundred sixty-two'), (14609, 43381, 'forty-three thousand three hundred eighty-one'), (14610, 16975, 'sixteen thousand nine hundred seventy-five'), (14611, 8729, 'eight thousand seven hundred twenty-nine'), (14612, 61607, 'sixty-one thousand six hundred seven'), (14613, 8924, 'eight thousand nine hundred twenty-four'), (14614, 45396, 'forty-five thousand three hundred ninety-six'), (14615, 18785, 'eighteen thousand seven hundred eighty-five'), (14616, 58059, 'fifty-eight thousand fifty-nine'), (14617, 7730, 'seven thousand seven hundred thirty'), (14618, 92665, 'ninety-two thousand six hundred sixty-five'), (14619, 11839, 'eleven thousand eight hundred thirty-nine'), (14620, 14363, 'fourteen thousand three hundred sixty-three'), (14621, 44468, 'forty-four thousand four hundred sixty-eight'), (14622, 1261, 'one thousand two hundred sixty-one'), (14623, 70566, 'seventy thousand five hundred sixty-six'), (14624, 84631, 'eighty-four thousand six hundred thirty-one'), (14625, 29741, 'twenty-nine thousand seven hundred forty-one'), (14626, 23415, 'twenty-three thousand four hundred fifteen'), (14627, 16647, 'sixteen thousand six hundred forty-seven'), (14628, 96296, 'ninety-six thousand two hundred ninety-six'), (14629, 22149, 'twenty-two thousand one hundred forty-nine'), (14630, 96119, 'ninety-six thousand one hundred nineteen'), (14631, 84117, 'eighty-four thousand one hundred seventeen'), (14632, 74454, 'seventy-four thousand four hundred fifty-four'), (14633, 35335, 'thirty-five thousand three hundred thirty-five'), (14634, 17656, 'seventeen thousand six hundred fifty-six'), (14635, 48971, 'forty-eight thousand nine hundred seventy-one'), (14636, 30253, 'thirty thousand two hundred fifty-three'), (14637, 69918, 'sixty-nine thousand nine hundred eighteen'), (14638, 15651, 'fifteen thousand six hundred fifty-one'), (14639, 23684, 'twenty-three thousand six hundred eighty-four'), (14640, 53382, 'fifty-three thousand three hundred eighty-two'), (14641, 60408, 'sixty thousand four hundred eight'), (14642, 92, 'ninety-two'), (14643, 96043, 'ninety-six thousand forty-three'), (14644, 32274, 'thirty-two thousand two hundred seventy-four'), (14645, 33194, 'thirty-three thousand one hundred ninety-four'), (14646, 27182, 'twenty-seven thousand one hundred eighty-two'), (14647, 25971, 'twenty-five thousand nine hundred seventy-one'), (14648, 61471, 'sixty-one thousand four hundred seventy-one'), (14649, 76607, 'seventy-six thousand six hundred seven'), (14650, 66598, 'sixty-six thousand five hundred ninety-eight'), (14651, 73046, 'seventy-three thousand forty-six'), (14652, 60290, 'sixty thousand two hundred ninety'), (14653, 49954, 'forty-nine thousand nine hundred fifty-four'), (14654, 40613, 'forty thousand six hundred thirteen'), (14655, 18493, 'eighteen thousand four hundred ninety-three'), (14656, 47749, 'forty-seven thousand seven hundred forty-nine'), (14657, 10241, 'ten thousand two hundred forty-one'), (14658, 41418, 'forty-one thousand four hundred eighteen'), (14659, 63347, 'sixty-three thousand three hundred forty-seven'), (14660, 96691, 'ninety-six thousand six hundred ninety-one'), (14661, 36200, 'thirty-six thousand two hundred'), (14662, 40970, 'forty thousand nine hundred seventy'), (14663, 50620, 'fifty thousand six hundred twenty'), (14664, 9166, 'nine thousand one hundred sixty-six'), (14665, 79757, 'seventy-nine thousand seven hundred fifty-seven'), (14666, 16569, 'sixteen thousand five hundred sixty-nine'), (14667, 58815, 'fifty-eight thousand eight hundred fifteen'), (14668, 40528, 'forty thousand five hundred twenty-eight'), (14669, 94154, 'ninety-four thousand one hundred fifty-four'), (14670, 26496, 'twenty-six thousand four hundred ninety-six'), (14671, 26876, 'twenty-six thousand eight hundred seventy-six'), (14672, 37035, 'thirty-seven thousand thirty-five'), (14673, 9839, 'nine thousand eight hundred thirty-nine'), (14674, 86149, 'eighty-six thousand one hundred forty-nine'), (14675, 1814, 'one thousand eight hundred fourteen'), (14676, 52484, 'fifty-two thousand four hundred eighty-four'), (14677, 27971, 'twenty-seven thousand nine hundred seventy-one'), (14678, 83691, 'eighty-three thousand six hundred ninety-one'), (14679, 90928, 'ninety thousand nine hundred twenty-eight'), (14680, 38663, 'thirty-eight thousand six hundred sixty-three'), (14681, 1772, 'one thousand seven hundred seventy-two'), (14682, 61583, 'sixty-one thousand five hundred eighty-three'), (14683, 53255, 'fifty-three thousand two hundred fifty-five'), (14684, 99600, 'ninety-nine thousand six hundred'), (14685, 76202, 'seventy-six thousand two hundred two'), (14686, 44120, 'forty-four thousand one hundred twenty'), (14687, 24322, 'twenty-four thousand three hundred twenty-two'), (14688, 21637, 'twenty-one thousand six hundred thirty-seven'), (14689, 67258, 'sixty-seven thousand two hundred fifty-eight'), (14690, 68273, 'sixty-eight thousand two hundred seventy-three'), (14691, 80361, 'eighty thousand three hundred sixty-one'), (14692, 68710, 'sixty-eight thousand seven hundred ten'), (14693, 67598, 'sixty-seven thousand five hundred ninety-eight'), (14694, 89210, 'eighty-nine thousand two hundred ten'), (14695, 7539, 'seven thousand five hundred thirty-nine'), (14696, 97320, 'ninety-seven thousand three hundred twenty'), (14697, 25192, 'twenty-five thousand one hundred ninety-two'), (14698, 94338, 'ninety-four thousand three hundred thirty-eight'), (14699, 35995, 'thirty-five thousand nine hundred ninety-five'), (14700, 90606, 'ninety thousand six hundred six'), (14701, 10162, 'ten thousand one hundred sixty-two'), (14702, 96067, 'ninety-six thousand sixty-seven'), (14703, 47228, 'forty-seven thousand two hundred twenty-eight'), (14704, 24641, 'twenty-four thousand six hundred forty-one'), (14705, 23059, 'twenty-three thousand fifty-nine'), (14706, 10987, 'ten thousand nine hundred eighty-seven'), (14707, 43983, 'forty-three thousand nine hundred eighty-three'), (14708, 91510, 'ninety-one thousand five hundred ten'), (14709, 37927, 'thirty-seven thousand nine hundred twenty-seven'), (14710, 76941, 'seventy-six thousand nine hundred forty-one'), (14711, 79922, 'seventy-nine thousand nine hundred twenty-two'), (14712, 49050, 'forty-nine thousand fifty'), (14713, 58439, 'fifty-eight thousand four hundred thirty-nine'), (14714, 28349, 'twenty-eight thousand three hundred forty-nine'), (14715, 94768, 'ninety-four thousand seven hundred sixty-eight'), (14716, 46010, 'forty-six thousand ten'), (14717, 93285, 'ninety-three thousand two hundred eighty-five'), (14718, 76260, 'seventy-six thousand two hundred sixty'), (14719, 40291, 'forty thousand two hundred ninety-one'), (14720, 58924, 'fifty-eight thousand nine hundred twenty-four'), (14721, 7485, 'seven thousand four hundred eighty-five'), (14722, 2979, 'two thousand nine hundred seventy-nine'), (14723, 96733, 'ninety-six thousand seven hundred thirty-three'), (14724, 88617, 'eighty-eight thousand six hundred seventeen'), (14725, 46276, 'forty-six thousand two hundred seventy-six'), (14726, 93069, 'ninety-three thousand sixty-nine'), (14727, 28286, 'twenty-eight thousand two hundred eighty-six'), (14728, 54933, 'fifty-four thousand nine hundred thirty-three'), (14729, 10434, 'ten thousand four hundred thirty-four'), (14730, 50818, 'fifty thousand eight hundred eighteen'), (14731, 64699, 'sixty-four thousand six hundred ninety-nine'), (14732, 77213, 'seventy-seven thousand two hundred thirteen'), (14733, 31291, 'thirty-one thousand two hundred ninety-one'), (14734, 86987, 'eighty-six thousand nine hundred eighty-seven'), (14735, 12738, 'twelve thousand seven hundred thirty-eight'), (14736, 33222, 'thirty-three thousand two hundred twenty-two'), (14737, 64977, 'sixty-four thousand nine hundred seventy-seven'), (14738, 99141, 'ninety-nine thousand one hundred forty-one'), (14739, 89130, 'eighty-nine thousand one hundred thirty'), (14740, 65348, 'sixty-five thousand three hundred forty-eight'), (14741, 18826, 'eighteen thousand eight hundred twenty-six'), (14742, 82411, 'eighty-two thousand four hundred eleven'), (14743, 83515, 'eighty-three thousand five hundred fifteen'), (14744, 16623, 'sixteen thousand six hundred twenty-three'), (14745, 29742, 'twenty-nine thousand seven hundred forty-two'), (14746, 97023, 'ninety-seven thousand twenty-three'), (14747, 21967, 'twenty-one thousand nine hundred sixty-seven'), (14748, 15804, 'fifteen thousand eight hundred four'), (14749, 84800, 'eighty-four thousand eight hundred'), (14750, 63397, 'sixty-three thousand three hundred ninety-seven'), (14751, 49999, 'forty-nine thousand nine hundred ninety-nine'), (14752, 3108, 'three thousand one hundred eight'), (14753, 87015, 'eighty-seven thousand fifteen'), (14754, 42119, 'forty-two thousand one hundred nineteen'), (14755, 31636, 'thirty-one thousand six hundred thirty-six'), (14756, 33528, 'thirty-three thousand five hundred twenty-eight'), (14757, 65330, 'sixty-five thousand three hundred thirty'), (14758, 69672, 'sixty-nine thousand six hundred seventy-two'), (14759, 81612, 'eighty-one thousand six hundred twelve'), (14760, 34074, 'thirty-four thousand seventy-four'), (14761, 7038, 'seven thousand thirty-eight'), (14762, 73759, 'seventy-three thousand seven hundred fifty-nine'), (14763, 26853, 'twenty-six thousand eight hundred fifty-three'), (14764, 79302, 'seventy-nine thousand three hundred two'), (14765, 23506, 'twenty-three thousand five hundred six'), (14766, 69411, 'sixty-nine thousand four hundred eleven'), (14767, 11155, 'eleven thousand one hundred fifty-five'), (14768, 40620, 'forty thousand six hundred twenty'), (14769, 18344, 'eighteen thousand three hundred forty-four'), (14770, 22042, 'twenty-two thousand forty-two'), (14771, 22681, 'twenty-two thousand six hundred eighty-one'), (14772, 71667, 'seventy-one thousand six hundred sixty-seven'), (14773, 51150, 'fifty-one thousand one hundred fifty'), (14774, 28543, 'twenty-eight thousand five hundred forty-three'), (14775, 14495, 'fourteen thousand four hundred ninety-five'), (14776, 52373, 'fifty-two thousand three hundred seventy-three'), (14777, 20145, 'twenty thousand one hundred forty-five'), (14778, 25804, 'twenty-five thousand eight hundred four'), (14779, 75745, 'seventy-five thousand seven hundred forty-five'), (14780, 2670, 'two thousand six hundred seventy'), (14781, 31554, 'thirty-one thousand five hundred fifty-four'), (14782, 60319, 'sixty thousand three hundred nineteen'), (14783, 94965, 'ninety-four thousand nine hundred sixty-five'), (14784, 68317, 'sixty-eight thousand three hundred seventeen'), (14785, 65496, 'sixty-five thousand four hundred ninety-six'), (14786, 14829, 'fourteen thousand eight hundred twenty-nine'), (14787, 62039, 'sixty-two thousand thirty-nine'), (14788, 78255, 'seventy-eight thousand two hundred fifty-five'), (14789, 55623, 'fifty-five thousand six hundred twenty-three'), (14790, 89645, 'eighty-nine thousand six hundred forty-five'), (14791, 83493, 'eighty-three thousand four hundred ninety-three'), (14792, 29073, 'twenty-nine thousand seventy-three'), (14793, 58226, 'fifty-eight thousand two hundred twenty-six'), (14794, 18239, 'eighteen thousand two hundred thirty-nine'), (14795, 24851, 'twenty-four thousand eight hundred fifty-one'), (14796, 48202, 'forty-eight thousand two hundred two'), (14797, 96300, 'ninety-six thousand three hundred'), (14798, 44737, 'forty-four thousand seven hundred thirty-seven'), (14799, 26558, 'twenty-six thousand five hundred fifty-eight'), (14800, 98718, 'ninety-eight thousand seven hundred eighteen'), (14801, 26845, 'twenty-six thousand eight hundred forty-five'), (14802, 64692, 'sixty-four thousand six hundred ninety-two'), (14803, 5671, 'five thousand six hundred seventy-one'), (14804, 19624, 'nineteen thousand six hundred twenty-four'), (14805, 14552, 'fourteen thousand five hundred fifty-two'), (14806, 50990, 'fifty thousand nine hundred ninety'), (14807, 13238, 'thirteen thousand two hundred thirty-eight'), (14808, 93617, 'ninety-three thousand six hundred seventeen'), (14809, 40089, 'forty thousand eighty-nine'), (14810, 88897, 'eighty-eight thousand eight hundred ninety-seven'), (14811, 84395, 'eighty-four thousand three hundred ninety-five'), (14812, 8229, 'eight thousand two hundred twenty-nine'), (14813, 45799, 'forty-five thousand seven hundred ninety-nine'), (14814, 41014, 'forty-one thousand fourteen'), (14815, 23969, 'twenty-three thousand nine hundred sixty-nine'), (14816, 90422, 'ninety thousand four hundred twenty-two'), (14817, 76993, 'seventy-six thousand nine hundred ninety-three'), (14818, 4635, 'four thousand six hundred thirty-five'), (14819, 61719, 'sixty-one thousand seven hundred nineteen'), (14820, 63981, 'sixty-three thousand nine hundred eighty-one'), (14821, 72436, 'seventy-two thousand four hundred thirty-six'), (14822, 76396, 'seventy-six thousand three hundred ninety-six'), (14823, 36606, 'thirty-six thousand six hundred six'), (14824, 25753, 'twenty-five thousand seven hundred fifty-three'), (14825, 2595, 'two thousand five hundred ninety-five'), (14826, 26604, 'twenty-six thousand six hundred four'), (14827, 79310, 'seventy-nine thousand three hundred ten'), (14828, 14786, 'fourteen thousand seven hundred eighty-six'), (14829, 63633, 'sixty-three thousand six hundred thirty-three'), (14830, 28430, 'twenty-eight thousand four hundred thirty'), (14831, 84113, 'eighty-four thousand one hundred thirteen'), (14832, 13312, 'thirteen thousand three hundred twelve'), (14833, 2072, 'two thousand seventy-two'), (14834, 95674, 'ninety-five thousand six hundred seventy-four'), (14835, 26157, 'twenty-six thousand one hundred fifty-seven'), (14836, 36267, 'thirty-six thousand two hundred sixty-seven'), (14837, 62430, 'sixty-two thousand four hundred thirty'), (14838, 37766, 'thirty-seven thousand seven hundred sixty-six'), (14839, 76086, 'seventy-six thousand eighty-six'), (14840, 26475, 'twenty-six thousand four hundred seventy-five'), (14841, 43407, 'forty-three thousand four hundred seven'), (14842, 22528, 'twenty-two thousand five hundred twenty-eight'), (14843, 44323, 'forty-four thousand three hundred twenty-three'), (14844, 41830, 'forty-one thousand eight hundred thirty'), (14845, 96621, 'ninety-six thousand six hundred twenty-one'), (14846, 33664, 'thirty-three thousand six hundred sixty-four'), (14847, 71976, 'seventy-one thousand nine hundred seventy-six'), (14848, 4884, 'four thousand eight hundred eighty-four'), (14849, 23942, 'twenty-three thousand nine hundred forty-two'), (14850, 82899, 'eighty-two thousand eight hundred ninety-nine'), (14851, 11813, 'eleven thousand eight hundred thirteen'), (14852, 71725, 'seventy-one thousand seven hundred twenty-five'), (14853, 31297, 'thirty-one thousand two hundred ninety-seven'), (14854, 29492, 'twenty-nine thousand four hundred ninety-two'), (14855, 48771, 'forty-eight thousand seven hundred seventy-one'), (14856, 45991, 'forty-five thousand nine hundred ninety-one'), (14857, 10437, 'ten thousand four hundred thirty-seven'), (14858, 54922, 'fifty-four thousand nine hundred twenty-two'), (14859, 19106, 'nineteen thousand one hundred six'), (14860, 48819, 'forty-eight thousand eight hundred nineteen'), (14861, 2515, 'two thousand five hundred fifteen'), (14862, 65063, 'sixty-five thousand sixty-three'), (14863, 33414, 'thirty-three thousand four hundred fourteen'), (14864, 66107, 'sixty-six thousand one hundred seven'), (14865, 5307, 'five thousand three hundred seven'), (14866, 979, 'nine hundred seventy-nine'), (14867, 49605, 'forty-nine thousand six hundred five'), (14868, 6170, 'six thousand one hundred seventy'), (14869, 28136, 'twenty-eight thousand one hundred thirty-six'), (14870, 95342, 'ninety-five thousand three hundred forty-two'), (14871, 20883, 'twenty thousand eight hundred eighty-three'), (14872, 70619, 'seventy thousand six hundred nineteen'), (14873, 89998, 'eighty-nine thousand nine hundred ninety-eight'), (14874, 26091, 'twenty-six thousand ninety-one'), (14875, 10527, 'ten thousand five hundred twenty-seven'), (14876, 81134, 'eighty-one thousand one hundred thirty-four'), (14877, 39098, 'thirty-nine thousand ninety-eight'), (14878, 70841, 'seventy thousand eight hundred forty-one'), (14879, 51836, 'fifty-one thousand eight hundred thirty-six'), (14880, 4935, 'four thousand nine hundred thirty-five'), (14881, 7788, 'seven thousand seven hundred eighty-eight'), (14882, 90595, 'ninety thousand five hundred ninety-five'), (14883, 4865, 'four thousand eight hundred sixty-five'), (14884, 88060, 'eighty-eight thousand sixty'), (14885, 20560, 'twenty thousand five hundred sixty'), (14886, 93983, 'ninety-three thousand nine hundred eighty-three'), (14887, 4848, 'four thousand eight hundred forty-eight'), (14888, 41796, 'forty-one thousand seven hundred ninety-six'), (14889, 4761, 'four thousand seven hundred sixty-one'), (14890, 93682, 'ninety-three thousand six hundred eighty-two'), (14891, 54567, 'fifty-four thousand five hundred sixty-seven'), (14892, 64420, 'sixty-four thousand four hundred twenty'), (14893, 97054, 'ninety-seven thousand fifty-four'), (14894, 53773, 'fifty-three thousand seven hundred seventy-three'), (14895, 29994, 'twenty-nine thousand nine hundred ninety-four'), (14896, 4332, 'four thousand three hundred thirty-two'), (14897, 88187, 'eighty-eight thousand one hundred eighty-seven'), (14898, 38629, 'thirty-eight thousand six hundred twenty-nine'), (14899, 91071, 'ninety-one thousand seventy-one'), (14900, 47748, 'forty-seven thousand seven hundred forty-eight'), (14901, 65322, 'sixty-five thousand three hundred twenty-two'), (14902, 32041, 'thirty-two thousand forty-one'), (14903, 20425, 'twenty thousand four hundred twenty-five'), (14904, 29704, 'twenty-nine thousand seven hundred four'), (14905, 36747, 'thirty-six thousand seven hundred forty-seven'), (14906, 72935, 'seventy-two thousand nine hundred thirty-five'), (14907, 66552, 'sixty-six thousand five hundred fifty-two'), (14908, 71347, 'seventy-one thousand three hundred forty-seven'), (14909, 21914, 'twenty-one thousand nine hundred fourteen'), (14910, 75330, 'seventy-five thousand three hundred thirty'), (14911, 74040, 'seventy-four thousand forty'), (14912, 38239, 'thirty-eight thousand two hundred thirty-nine'), (14913, 53106, 'fifty-three thousand one hundred six'), (14914, 54499, 'fifty-four thousand four hundred ninety-nine'), (14915, 12373, 'twelve thousand three hundred seventy-three'), (14916, 85494, 'eighty-five thousand four hundred ninety-four'), (14917, 32666, 'thirty-two thousand six hundred sixty-six'), (14918, 55173, 'fifty-five thousand one hundred seventy-three'), (14919, 97205, 'ninety-seven thousand two hundred five'), (14920, 33136, 'thirty-three thousand one hundred thirty-six'), (14921, 97678, 'ninety-seven thousand six hundred seventy-eight'), (14922, 21070, 'twenty-one thousand seventy'), (14923, 35605, 'thirty-five thousand six hundred five'), (14924, 29698, 'twenty-nine thousand six hundred ninety-eight'), (14925, 76243, 'seventy-six thousand two hundred forty-three'), (14926, 19999, 'nineteen thousand nine hundred ninety-nine'), (14927, 79076, 'seventy-nine thousand seventy-six'), (14928, 65351, 'sixty-five thousand three hundred fifty-one'), (14929, 78249, 'seventy-eight thousand two hundred forty-nine'), (14930, 7308, 'seven thousand three hundred eight'), (14931, 98436, 'ninety-eight thousand four hundred thirty-six'), (14932, 49595, 'forty-nine thousand five hundred ninety-five'), (14933, 96764, 'ninety-six thousand seven hundred sixty-four'), (14934, 6612, 'six thousand six hundred twelve'), (14935, 21010, 'twenty-one thousand ten'), (14936, 41545, 'forty-one thousand five hundred forty-five'), (14937, 5713, 'five thousand seven hundred thirteen'), (14938, 69238, 'sixty-nine thousand two hundred thirty-eight'), (14939, 21864, 'twenty-one thousand eight hundred sixty-four'), (14940, 93295, 'ninety-three thousand two hundred ninety-five'), (14941, 788, 'seven hundred eighty-eight'), (14942, 32785, 'thirty-two thousand seven hundred eighty-five'), (14943, 68994, 'sixty-eight thousand nine hundred ninety-four'), (14944, 97350, 'ninety-seven thousand three hundred fifty'), (14945, 78785, 'seventy-eight thousand seven hundred eighty-five'), (14946, 93985, 'ninety-three thousand nine hundred eighty-five'), (14947, 14195, 'fourteen thousand one hundred ninety-five'), (14948, 54921, 'fifty-four thousand nine hundred twenty-one'), (14949, 68516, 'sixty-eight thousand five hundred sixteen'), (14950, 50487, 'fifty thousand four hundred eighty-seven'), (14951, 20389, 'twenty thousand three hundred eighty-nine'), (14952, 37214, 'thirty-seven thousand two hundred fourteen'), (14953, 29725, 'twenty-nine thousand seven hundred twenty-five'), (14954, 99687, 'ninety-nine thousand six hundred eighty-seven'), (14955, 89462, 'eighty-nine thousand four hundred sixty-two'), (14956, 66416, 'sixty-six thousand four hundred sixteen'), (14957, 64494, 'sixty-four thousand four hundred ninety-four'), (14958, 13542, 'thirteen thousand five hundred forty-two'), (14959, 57723, 'fifty-seven thousand seven hundred twenty-three'), (14960, 63327, 'sixty-three thousand three hundred twenty-seven'), (14961, 50067, 'fifty thousand sixty-seven'), (14962, 64840, 'sixty-four thousand eight hundred forty'), (14963, 25890, 'twenty-five thousand eight hundred ninety'), (14964, 8217, 'eight thousand two hundred seventeen'), (14965, 95393, 'ninety-five thousand three hundred ninety-three'), (14966, 34495, 'thirty-four thousand four hundred ninety-five'), (14967, 58041, 'fifty-eight thousand forty-one'), (14968, 20691, 'twenty thousand six hundred ninety-one'), (14969, 38165, 'thirty-eight thousand one hundred sixty-five'), (14970, 85633, 'eighty-five thousand six hundred thirty-three'), (14971, 82115, 'eighty-two thousand one hundred fifteen'), (14972, 6720, 'six thousand seven hundred twenty'), (14973, 21940, 'twenty-one thousand nine hundred forty'), (14974, 65468, 'sixty-five thousand four hundred sixty-eight'), (14975, 37278, 'thirty-seven thousand two hundred seventy-eight'), (14976, 26972, 'twenty-six thousand nine hundred seventy-two'), (14977, 55929, 'fifty-five thousand nine hundred twenty-nine'), (14978, 94039, 'ninety-four thousand thirty-nine'), (14979, 15596, 'fifteen thousand five hundred ninety-six'), (14980, 68242, 'sixty-eight thousand two hundred forty-two'), (14981, 36690, 'thirty-six thousand six hundred ninety'), (14982, 20648, 'twenty thousand six hundred forty-eight'), (14983, 41652, 'forty-one thousand six hundred fifty-two'), (14984, 97396, 'ninety-seven thousand three hundred ninety-six'), (14985, 65387, 'sixty-five thousand three hundred eighty-seven'), (14986, 98366, 'ninety-eight thousand three hundred sixty-six'), (14987, 302, 'three hundred two'), (14988, 91288, 'ninety-one thousand two hundred eighty-eight'), (14989, 98564, 'ninety-eight thousand five hundred sixty-four'), (14990, 99750, 'ninety-nine thousand seven hundred fifty'), (14991, 19715, 'nineteen thousand seven hundred fifteen'), (14992, 26296, 'twenty-six thousand two hundred ninety-six'), (14993, 36436, 'thirty-six thousand four hundred thirty-six'), (14994, 13402, 'thirteen thousand four hundred two'), (14995, 89198, 'eighty-nine thousand one hundred ninety-eight'), (14996, 2298, 'two thousand two hundred ninety-eight'), (14997, 31320, 'thirty-one thousand three hundred twenty'), (14998, 42469, 'forty-two thousand four hundred sixty-nine'), (14999, 98056, 'ninety-eight thousand fifty-six'), (15000, 24312, 'twenty-four thousand three hundred twelve'), (15001, 48459, 'forty-eight thousand four hundred fifty-nine'), (15002, 78491, 'seventy-eight thousand four hundred ninety-one'), (15003, 57934, 'fifty-seven thousand nine hundred thirty-four'), (15004, 60247, 'sixty thousand two hundred forty-seven'), (15005, 2389, 'two thousand three hundred eighty-nine'), (15006, 11267, 'eleven thousand two hundred sixty-seven'), (15007, 70173, 'seventy thousand one hundred seventy-three'), (15008, 47493, 'forty-seven thousand four hundred ninety-three'), (15009, 33183, 'thirty-three thousand one hundred eighty-three'), (15010, 83222, 'eighty-three thousand two hundred twenty-two'), (15011, 51238, 'fifty-one thousand two hundred thirty-eight'), (15012, 69383, 'sixty-nine thousand three hundred eighty-three'), (15013, 29037, 'twenty-nine thousand thirty-seven'), (15014, 40275, 'forty thousand two hundred seventy-five'), (15015, 65086, 'sixty-five thousand eighty-six'), (15016, 28340, 'twenty-eight thousand three hundred forty'), (15017, 41656, 'forty-one thousand six hundred fifty-six'), (15018, 12641, 'twelve thousand six hundred forty-one'), (15019, 94465, 'ninety-four thousand four hundred sixty-five'), (15020, 32260, 'thirty-two thousand two hundred sixty'), (15021, 40288, 'forty thousand two hundred eighty-eight'), (15022, 12452, 'twelve thousand four hundred fifty-two'), (15023, 919, 'nine hundred nineteen'), (15024, 64311, 'sixty-four thousand three hundred eleven'), (15025, 30233, 'thirty thousand two hundred thirty-three'), (15026, 61123, 'sixty-one thousand one hundred twenty-three'), (15027, 41643, 'forty-one thousand six hundred forty-three'), (15028, 47552, 'forty-seven thousand five hundred fifty-two'), (15029, 34309, 'thirty-four thousand three hundred nine'), (15030, 34812, 'thirty-four thousand eight hundred twelve'), (15031, 87831, 'eighty-seven thousand eight hundred thirty-one'), (15032, 61005, 'sixty-one thousand five'), (15033, 30859, 'thirty thousand eight hundred fifty-nine'), (15034, 94069, 'ninety-four thousand sixty-nine'), (15035, 83479, 'eighty-three thousand four hundred seventy-nine'), (15036, 5123, 'five thousand one hundred twenty-three'), (15037, 75540, 'seventy-five thousand five hundred forty'), (15038, 9790, 'nine thousand seven hundred ninety'), (15039, 90672, 'ninety thousand six hundred seventy-two'), (15040, 10709, 'ten thousand seven hundred nine'), (15041, 8592, 'eight thousand five hundred ninety-two'), (15042, 43725, 'forty-three thousand seven hundred twenty-five'), (15043, 1227, 'one thousand two hundred twenty-seven'), (15044, 32559, 'thirty-two thousand five hundred fifty-nine'), (15045, 1544, 'one thousand five hundred forty-four'), (15046, 57811, 'fifty-seven thousand eight hundred eleven'), (15047, 78062, 'seventy-eight thousand sixty-two'), (15048, 37334, 'thirty-seven thousand three hundred thirty-four'), (15049, 41926, 'forty-one thousand nine hundred twenty-six'), (15050, 95826, 'ninety-five thousand eight hundred twenty-six'), (15051, 58909, 'fifty-eight thousand nine hundred nine'), (15052, 89262, 'eighty-nine thousand two hundred sixty-two'), (15053, 34054, 'thirty-four thousand fifty-four'), (15054, 40249, 'forty thousand two hundred forty-nine'), (15055, 35047, 'thirty-five thousand forty-seven'), (15056, 69988, 'sixty-nine thousand nine hundred eighty-eight'), (15057, 56210, 'fifty-six thousand two hundred ten'), (15058, 99075, 'ninety-nine thousand seventy-five'), (15059, 94545, 'ninety-four thousand five hundred forty-five'), (15060, 85451, 'eighty-five thousand four hundred fifty-one'), (15061, 33577, 'thirty-three thousand five hundred seventy-seven'), (15062, 59678, 'fifty-nine thousand six hundred seventy-eight'), (15063, 16810, 'sixteen thousand eight hundred ten'), (15064, 8853, 'eight thousand eight hundred fifty-three'), (15065, 64193, 'sixty-four thousand one hundred ninety-three'), (15066, 48195, 'forty-eight thousand one hundred ninety-five'), (15067, 36665, 'thirty-six thousand six hundred sixty-five'), (15068, 31579, 'thirty-one thousand five hundred seventy-nine'), (15069, 98313, 'ninety-eight thousand three hundred thirteen'), (15070, 88972, 'eighty-eight thousand nine hundred seventy-two'), (15071, 90902, 'ninety thousand nine hundred two'), (15072, 10554, 'ten thousand five hundred fifty-four'), (15073, 39186, 'thirty-nine thousand one hundred eighty-six'), (15074, 50974, 'fifty thousand nine hundred seventy-four'), (15075, 75245, 'seventy-five thousand two hundred forty-five'), (15076, 53080, 'fifty-three thousand eighty'), (15077, 15656, 'fifteen thousand six hundred fifty-six'), (15078, 62057, 'sixty-two thousand fifty-seven'), (15079, 58774, 'fifty-eight thousand seven hundred seventy-four'), (15080, 97382, 'ninety-seven thousand three hundred eighty-two'), (15081, 43349, 'forty-three thousand three hundred forty-nine'), (15082, 6745, 'six thousand seven hundred forty-five'), (15083, 27013, 'twenty-seven thousand thirteen'), (15084, 9994, 'nine thousand nine hundred ninety-four'), (15085, 31823, 'thirty-one thousand eight hundred twenty-three'), (15086, 78388, 'seventy-eight thousand three hundred eighty-eight'), (15087, 77119, 'seventy-seven thousand one hundred nineteen'), (15088, 56016, 'fifty-six thousand sixteen'), (15089, 42894, 'forty-two thousand eight hundred ninety-four'), (15090, 66096, 'sixty-six thousand ninety-six'), (15091, 85017, 'eighty-five thousand seventeen'), (15092, 79847, 'seventy-nine thousand eight hundred forty-seven'), (15093, 16920, 'sixteen thousand nine hundred twenty'), (15094, 93099, 'ninety-three thousand ninety-nine'), (15095, 35251, 'thirty-five thousand two hundred fifty-one'), (15096, 53434, 'fifty-three thousand four hundred thirty-four'), (15097, 10204, 'ten thousand two hundred four'), (15098, 50288, 'fifty thousand two hundred eighty-eight'), (15099, 1180, 'one thousand one hundred eighty'), (15100, 96251, 'ninety-six thousand two hundred fifty-one'), (15101, 45406, 'forty-five thousand four hundred six'), (15102, 53607, 'fifty-three thousand six hundred seven'), (15103, 84373, 'eighty-four thousand three hundred seventy-three'), (15104, 4189, 'four thousand one hundred eighty-nine'), (15105, 29865, 'twenty-nine thousand eight hundred sixty-five'), (15106, 65752, 'sixty-five thousand seven hundred fifty-two'), (15107, 52589, 'fifty-two thousand five hundred eighty-nine'), (15108, 9791, 'nine thousand seven hundred ninety-one'), (15109, 87316, 'eighty-seven thousand three hundred sixteen'), (15110, 58209, 'fifty-eight thousand two hundred nine'), (15111, 39764, 'thirty-nine thousand seven hundred sixty-four'), (15112, 21925, 'twenty-one thousand nine hundred twenty-five'), (15113, 61637, 'sixty-one thousand six hundred thirty-seven'), (15114, 70146, 'seventy thousand one hundred forty-six'), (15115, 27943, 'twenty-seven thousand nine hundred forty-three'), (15116, 8717, 'eight thousand seven hundred seventeen'), (15117, 5985, 'five thousand nine hundred eighty-five'), (15118, 3557, 'three thousand five hundred fifty-seven'), (15119, 6136, 'six thousand one hundred thirty-six'), (15120, 53281, 'fifty-three thousand two hundred eighty-one'), (15121, 52900, 'fifty-two thousand nine hundred'), (15122, 16339, 'sixteen thousand three hundred thirty-nine'), (15123, 2927, 'two thousand nine hundred twenty-seven'), (15124, 83020, 'eighty-three thousand twenty'), (15125, 94829, 'ninety-four thousand eight hundred twenty-nine'), (15126, 8211, 'eight thousand two hundred eleven'), (15127, 92871, 'ninety-two thousand eight hundred seventy-one'), (15128, 81871, 'eighty-one thousand eight hundred seventy-one'), (15129, 44724, 'forty-four thousand seven hundred twenty-four'), (15130, 20938, 'twenty thousand nine hundred thirty-eight'), (15131, 76790, 'seventy-six thousand seven hundred ninety'), (15132, 31461, 'thirty-one thousand four hundred sixty-one'), (15133, 54190, 'fifty-four thousand one hundred ninety'), (15134, 83218, 'eighty-three thousand two hundred eighteen'), (15135, 9374, 'nine thousand three hundred seventy-four'), (15136, 44996, 'forty-four thousand nine hundred ninety-six'), (15137, 25919, 'twenty-five thousand nine hundred nineteen'), (15138, 14401, 'fourteen thousand four hundred one'), (15139, 89091, 'eighty-nine thousand ninety-one'), (15140, 7094, 'seven thousand ninety-four'), (15141, 89779, 'eighty-nine thousand seven hundred seventy-nine'), (15142, 45544, 'forty-five thousand five hundred forty-four'), (15143, 61814, 'sixty-one thousand eight hundred fourteen'), (15144, 75992, 'seventy-five thousand nine hundred ninety-two'), (15145, 44953, 'forty-four thousand nine hundred fifty-three'), (15146, 87908, 'eighty-seven thousand nine hundred eight'), (15147, 17184, 'seventeen thousand one hundred eighty-four'), (15148, 7494, 'seven thousand four hundred ninety-four'), (15149, 87607, 'eighty-seven thousand six hundred seven'), (15150, 68389, 'sixty-eight thousand three hundred eighty-nine'), (15151, 30805, 'thirty thousand eight hundred five'), (15152, 52612, 'fifty-two thousand six hundred twelve'), (15153, 32799, 'thirty-two thousand seven hundred ninety-nine'), (15154, 51205, 'fifty-one thousand two hundred five'), (15155, 91303, 'ninety-one thousand three hundred three'), (15156, 43134, 'forty-three thousand one hundred thirty-four'), (15157, 40954, 'forty thousand nine hundred fifty-four'), (15158, 96839, 'ninety-six thousand eight hundred thirty-nine'), (15159, 26383, 'twenty-six thousand three hundred eighty-three'), (15160, 22684, 'twenty-two thousand six hundred eighty-four'), (15161, 70925, 'seventy thousand nine hundred twenty-five'), (15162, 51971, 'fifty-one thousand nine hundred seventy-one'), (15163, 93460, 'ninety-three thousand four hundred sixty'), (15164, 96282, 'ninety-six thousand two hundred eighty-two'), (15165, 49349, 'forty-nine thousand three hundred forty-nine'), (15166, 68247, 'sixty-eight thousand two hundred forty-seven'), (15167, 87528, 'eighty-seven thousand five hundred twenty-eight'), (15168, 10749, 'ten thousand seven hundred forty-nine'), (15169, 7130, 'seven thousand one hundred thirty'), (15170, 19408, 'nineteen thousand four hundred eight'), (15171, 34355, 'thirty-four thousand three hundred fifty-five'), (15172, 7459, 'seven thousand four hundred fifty-nine'), (15173, 98695, 'ninety-eight thousand six hundred ninety-five'), (15174, 74727, 'seventy-four thousand seven hundred twenty-seven'), (15175, 32950, 'thirty-two thousand nine hundred fifty'), (15176, 73806, 'seventy-three thousand eight hundred six'), (15177, 72083, 'seventy-two thousand eighty-three'), (15178, 70027, 'seventy thousand twenty-seven'), (15179, 30314, 'thirty thousand three hundred fourteen'), (15180, 32293, 'thirty-two thousand two hundred ninety-three'), (15181, 82222, 'eighty-two thousand two hundred twenty-two'), (15182, 89715, 'eighty-nine thousand seven hundred fifteen'), (15183, 27840, 'twenty-seven thousand eight hundred forty'), (15184, 54016, 'fifty-four thousand sixteen'), (15185, 46942, 'forty-six thousand nine hundred forty-two'), (15186, 47854, 'forty-seven thousand eight hundred fifty-four'), (15187, 29209, 'twenty-nine thousand two hundred nine'), (15188, 82926, 'eighty-two thousand nine hundred twenty-six'), (15189, 89013, 'eighty-nine thousand thirteen'), (15190, 90638, 'ninety thousand six hundred thirty-eight'), (15191, 44679, 'forty-four thousand six hundred seventy-nine'), (15192, 17617, 'seventeen thousand six hundred seventeen'), (15193, 85687, 'eighty-five thousand six hundred eighty-seven'), (15194, 75840, 'seventy-five thousand eight hundred forty'), (15195, 27339, 'twenty-seven thousand three hundred thirty-nine'), (15196, 31892, 'thirty-one thousand eight hundred ninety-two'), (15197, 14552, 'fourteen thousand five hundred fifty-two'), (15198, 98296, 'ninety-eight thousand two hundred ninety-six'), (15199, 14840, 'fourteen thousand eight hundred forty'), (15200, 3633, 'three thousand six hundred thirty-three'), (15201, 88171, 'eighty-eight thousand one hundred seventy-one'), (15202, 5315, 'five thousand three hundred fifteen'), (15203, 52524, 'fifty-two thousand five hundred twenty-four'), (15204, 48973, 'forty-eight thousand nine hundred seventy-three'), (15205, 53065, 'fifty-three thousand sixty-five'), (15206, 20083, 'twenty thousand eighty-three'), (15207, 18069, 'eighteen thousand sixty-nine'), (15208, 46100, 'forty-six thousand one hundred'), (15209, 4467, 'four thousand four hundred sixty-seven'), (15210, 39098, 'thirty-nine thousand ninety-eight'), (15211, 32186, 'thirty-two thousand one hundred eighty-six'), (15212, 73930, 'seventy-three thousand nine hundred thirty'), (15213, 89006, 'eighty-nine thousand six'), (15214, 21675, 'twenty-one thousand six hundred seventy-five'), (15215, 13837, 'thirteen thousand eight hundred thirty-seven'), (15216, 30740, 'thirty thousand seven hundred forty'), (15217, 53517, 'fifty-three thousand five hundred seventeen'), (15218, 10831, 'ten thousand eight hundred thirty-one'), (15219, 85924, 'eighty-five thousand nine hundred twenty-four'), (15220, 1226, 'one thousand two hundred twenty-six'), (15221, 75393, 'seventy-five thousand three hundred ninety-three'), (15222, 27748, 'twenty-seven thousand seven hundred forty-eight'), (15223, 61966, 'sixty-one thousand nine hundred sixty-six'), (15224, 27482, 'twenty-seven thousand four hundred eighty-two'), (15225, 34456, 'thirty-four thousand four hundred fifty-six'), (15226, 55243, 'fifty-five thousand two hundred forty-three'), (15227, 81705, 'eighty-one thousand seven hundred five'), (15228, 72449, 'seventy-two thousand four hundred forty-nine'), (15229, 25870, 'twenty-five thousand eight hundred seventy'), (15230, 56666, 'fifty-six thousand six hundred sixty-six'), (15231, 99702, 'ninety-nine thousand seven hundred two'), (15232, 38426, 'thirty-eight thousand four hundred twenty-six'), (15233, 3947, 'three thousand nine hundred forty-seven'), (15234, 64428, 'sixty-four thousand four hundred twenty-eight'), (15235, 75604, 'seventy-five thousand six hundred four'), (15236, 69304, 'sixty-nine thousand three hundred four'), (15237, 47275, 'forty-seven thousand two hundred seventy-five'), (15238, 189, 'one hundred eighty-nine'), (15239, 37105, 'thirty-seven thousand one hundred five'), (15240, 39332, 'thirty-nine thousand three hundred thirty-two'), (15241, 94420, 'ninety-four thousand four hundred twenty'), (15242, 88422, 'eighty-eight thousand four hundred twenty-two'), (15243, 32271, 'thirty-two thousand two hundred seventy-one'), (15244, 6911, 'six thousand nine hundred eleven'), (15245, 2246, 'two thousand two hundred forty-six'), (15246, 57039, 'fifty-seven thousand thirty-nine'), (15247, 83255, 'eighty-three thousand two hundred fifty-five'), (15248, 45845, 'forty-five thousand eight hundred forty-five'), (15249, 45221, 'forty-five thousand two hundred twenty-one'), (15250, 61423, 'sixty-one thousand four hundred twenty-three'), (15251, 32602, 'thirty-two thousand six hundred two'), (15252, 56957, 'fifty-six thousand nine hundred fifty-seven'), (15253, 60214, 'sixty thousand two hundred fourteen'), (15254, 41559, 'forty-one thousand five hundred fifty-nine'), (15255, 13004, 'thirteen thousand four'), (15256, 21032, 'twenty-one thousand thirty-two'), (15257, 63630, 'sixty-three thousand six hundred thirty'), (15258, 54179, 'fifty-four thousand one hundred seventy-nine'), (15259, 99707, 'ninety-nine thousand seven hundred seven'), (15260, 65951, 'sixty-five thousand nine hundred fifty-one'), (15261, 76709, 'seventy-six thousand seven hundred nine'), (15262, 95585, 'ninety-five thousand five hundred eighty-five'), (15263, 85603, 'eighty-five thousand six hundred three'), (15264, 28235, 'twenty-eight thousand two hundred thirty-five'), (15265, 61653, 'sixty-one thousand six hundred fifty-three'), (15266, 95054, 'ninety-five thousand fifty-four'), (15267, 71257, 'seventy-one thousand two hundred fifty-seven'), (15268, 56321, 'fifty-six thousand three hundred twenty-one'), (15269, 29625, 'twenty-nine thousand six hundred twenty-five'), (15270, 30291, 'thirty thousand two hundred ninety-one'), (15271, 33091, 'thirty-three thousand ninety-one'), (15272, 91296, 'ninety-one thousand two hundred ninety-six'), (15273, 52439, 'fifty-two thousand four hundred thirty-nine'), (15274, 94504, 'ninety-four thousand five hundred four'), (15275, 56825, 'fifty-six thousand eight hundred twenty-five'), (15276, 85384, 'eighty-five thousand three hundred eighty-four'), (15277, 831, 'eight hundred thirty-one'), (15278, 95252, 'ninety-five thousand two hundred fifty-two'), (15279, 38926, 'thirty-eight thousand nine hundred twenty-six'), (15280, 86963, 'eighty-six thousand nine hundred sixty-three'), (15281, 56364, 'fifty-six thousand three hundred sixty-four'), (15282, 62775, 'sixty-two thousand seven hundred seventy-five'), (15283, 99223, 'ninety-nine thousand two hundred twenty-three'), (15284, 88778, 'eighty-eight thousand seven hundred seventy-eight'), (15285, 20115, 'twenty thousand one hundred fifteen'), (15286, 51919, 'fifty-one thousand nine hundred nineteen'), (15287, 98400, 'ninety-eight thousand four hundred'), (15288, 44049, 'forty-four thousand forty-nine'), (15289, 59049, 'fifty-nine thousand forty-nine'), (15290, 38583, 'thirty-eight thousand five hundred eighty-three'), (15291, 96495, 'ninety-six thousand four hundred ninety-five'), (15292, 83335, 'eighty-three thousand three hundred thirty-five'), (15293, 78994, 'seventy-eight thousand nine hundred ninety-four'), (15294, 24197, 'twenty-four thousand one hundred ninety-seven'), (15295, 56202, 'fifty-six thousand two hundred two'), (15296, 25225, 'twenty-five thousand two hundred twenty-five'), (15297, 29783, 'twenty-nine thousand seven hundred eighty-three'), (15298, 41034, 'forty-one thousand thirty-four'), (15299, 97372, 'ninety-seven thousand three hundred seventy-two'), (15300, 95756, 'ninety-five thousand seven hundred fifty-six'), (15301, 40816, 'forty thousand eight hundred sixteen'), (15302, 1667, 'one thousand six hundred sixty-seven'), (15303, 40673, 'forty thousand six hundred seventy-three'), (15304, 73939, 'seventy-three thousand nine hundred thirty-nine'), (15305, 71785, 'seventy-one thousand seven hundred eighty-five'), (15306, 64919, 'sixty-four thousand nine hundred nineteen'), (15307, 41301, 'forty-one thousand three hundred one'), (15308, 95111, 'ninety-five thousand one hundred eleven'), (15309, 6169, 'six thousand one hundred sixty-nine'), (15310, 13050, 'thirteen thousand fifty'), (15311, 6444, 'six thousand four hundred forty-four'), (15312, 1395, 'one thousand three hundred ninety-five'), (15313, 31331, 'thirty-one thousand three hundred thirty-one'), (15314, 92688, 'ninety-two thousand six hundred eighty-eight'), (15315, 95693, 'ninety-five thousand six hundred ninety-three'), (15316, 56211, 'fifty-six thousand two hundred eleven'), (15317, 34657, 'thirty-four thousand six hundred fifty-seven'), (15318, 26844, 'twenty-six thousand eight hundred forty-four'), (15319, 66581, 'sixty-six thousand five hundred eighty-one'), (15320, 40256, 'forty thousand two hundred fifty-six'), (15321, 81516, 'eighty-one thousand five hundred sixteen'), (15322, 51781, 'fifty-one thousand seven hundred eighty-one'), (15323, 16434, 'sixteen thousand four hundred thirty-four'), (15324, 10127, 'ten thousand one hundred twenty-seven'), (15325, 41196, 'forty-one thousand one hundred ninety-six'), (15326, 64562, 'sixty-four thousand five hundred sixty-two'), (15327, 19383, 'nineteen thousand three hundred eighty-three'), (15328, 94087, 'ninety-four thousand eighty-seven'), (15329, 51878, 'fifty-one thousand eight hundred seventy-eight'), (15330, 48812, 'forty-eight thousand eight hundred twelve'), (15331, 94582, 'ninety-four thousand five hundred eighty-two'), (15332, 20214, 'twenty thousand two hundred fourteen'), (15333, 18830, 'eighteen thousand eight hundred thirty'), (15334, 64582, 'sixty-four thousand five hundred eighty-two'), (15335, 52008, 'fifty-two thousand eight'), (15336, 21911, 'twenty-one thousand nine hundred eleven'), (15337, 76122, 'seventy-six thousand one hundred twenty-two'), (15338, 97286, 'ninety-seven thousand two hundred eighty-six'), (15339, 74177, 'seventy-four thousand one hundred seventy-seven'), (15340, 56231, 'fifty-six thousand two hundred thirty-one'), (15341, 51242, 'fifty-one thousand two hundred forty-two'), (15342, 64052, 'sixty-four thousand fifty-two'), (15343, 36548, 'thirty-six thousand five hundred forty-eight'), (15344, 12798, 'twelve thousand seven hundred ninety-eight'), (15345, 18539, 'eighteen thousand five hundred thirty-nine'), (15346, 89895, 'eighty-nine thousand eight hundred ninety-five'), (15347, 64855, 'sixty-four thousand eight hundred fifty-five'), (15348, 66380, 'sixty-six thousand three hundred eighty'), (15349, 53006, 'fifty-three thousand six'), (15350, 5062, 'five thousand sixty-two'), (15351, 11178, 'eleven thousand one hundred seventy-eight'), (15352, 72292, 'seventy-two thousand two hundred ninety-two'), (15353, 48624, 'forty-eight thousand six hundred twenty-four'), (15354, 48421, 'forty-eight thousand four hundred twenty-one'), (15355, 91356, 'ninety-one thousand three hundred fifty-six'), (15356, 5997, 'five thousand nine hundred ninety-seven'), (15357, 49684, 'forty-nine thousand six hundred eighty-four'), (15358, 8597, 'eight thousand five hundred ninety-seven'), (15359, 87449, 'eighty-seven thousand four hundred forty-nine'), (15360, 63129, 'sixty-three thousand one hundred twenty-nine'), (15361, 9320, 'nine thousand three hundred twenty'), (15362, 37962, 'thirty-seven thousand nine hundred sixty-two'), (15363, 56329, 'fifty-six thousand three hundred twenty-nine'), (15364, 99423, 'ninety-nine thousand four hundred twenty-three'), (15365, 94529, 'ninety-four thousand five hundred twenty-nine'), (15366, 32555, 'thirty-two thousand five hundred fifty-five'), (15367, 61818, 'sixty-one thousand eight hundred eighteen'), (15368, 79419, 'seventy-nine thousand four hundred nineteen'), (15369, 48659, 'forty-eight thousand six hundred fifty-nine'), (15370, 6360, 'six thousand three hundred sixty'), (15371, 13590, 'thirteen thousand five hundred ninety'), (15372, 65950, 'sixty-five thousand nine hundred fifty'), (15373, 7124, 'seven thousand one hundred twenty-four'), (15374, 30300, 'thirty thousand three hundred'), (15375, 44695, 'forty-four thousand six hundred ninety-five'), (15376, 51090, 'fifty-one thousand ninety'), (15377, 64297, 'sixty-four thousand two hundred ninety-seven'), (15378, 75586, 'seventy-five thousand five hundred eighty-six'), (15379, 44763, 'forty-four thousand seven hundred sixty-three'), (15380, 76894, 'seventy-six thousand eight hundred ninety-four'), (15381, 58198, 'fifty-eight thousand one hundred ninety-eight'), (15382, 66968, 'sixty-six thousand nine hundred sixty-eight'), (15383, 41683, 'forty-one thousand six hundred eighty-three'), (15384, 62876, 'sixty-two thousand eight hundred seventy-six'), (15385, 88946, 'eighty-eight thousand nine hundred forty-six'), (15386, 94781, 'ninety-four thousand seven hundred eighty-one'), (15387, 75499, 'seventy-five thousand four hundred ninety-nine'), (15388, 9810, 'nine thousand eight hundred ten'), (15389, 76002, 'seventy-six thousand two'), (15390, 50520, 'fifty thousand five hundred twenty'), (15391, 73645, 'seventy-three thousand six hundred forty-five'), (15392, 47325, 'forty-seven thousand three hundred twenty-five'), (15393, 9843, 'nine thousand eight hundred forty-three'), (15394, 94023, 'ninety-four thousand twenty-three'), (15395, 67362, 'sixty-seven thousand three hundred sixty-two'), (15396, 24942, 'twenty-four thousand nine hundred forty-two'), (15397, 32226, 'thirty-two thousand two hundred twenty-six'), (15398, 33866, 'thirty-three thousand eight hundred sixty-six'), (15399, 51620, 'fifty-one thousand six hundred twenty'), (15400, 38992, 'thirty-eight thousand nine hundred ninety-two'), (15401, 36468, 'thirty-six thousand four hundred sixty-eight'), (15402, 73214, 'seventy-three thousand two hundred fourteen'), (15403, 14517, 'fourteen thousand five hundred seventeen'), (15404, 59435, 'fifty-nine thousand four hundred thirty-five'), (15405, 12805, 'twelve thousand eight hundred five'), (15406, 9955, 'nine thousand nine hundred fifty-five'), (15407, 82672, 'eighty-two thousand six hundred seventy-two'), (15408, 44340, 'forty-four thousand three hundred forty'), (15409, 57866, 'fifty-seven thousand eight hundred sixty-six'), (15410, 19575, 'nineteen thousand five hundred seventy-five'), (15411, 47928, 'forty-seven thousand nine hundred twenty-eight'), (15412, 90723, 'ninety thousand seven hundred twenty-three'), (15413, 99434, 'ninety-nine thousand four hundred thirty-four'), (15414, 1969, 'one thousand nine hundred sixty-nine'), (15415, 82788, 'eighty-two thousand seven hundred eighty-eight'), (15416, 5265, 'five thousand two hundred sixty-five'), (15417, 47184, 'forty-seven thousand one hundred eighty-four'), (15418, 14677, 'fourteen thousand six hundred seventy-seven'), (15419, 76920, 'seventy-six thousand nine hundred twenty'), (15420, 22209, 'twenty-two thousand two hundred nine'), (15421, 58818, 'fifty-eight thousand eight hundred eighteen'), (15422, 70708, 'seventy thousand seven hundred eight'), (15423, 45378, 'forty-five thousand three hundred seventy-eight'), (15424, 42092, 'forty-two thousand ninety-two'), (15425, 6883, 'six thousand eight hundred eighty-three'), (15426, 20513, 'twenty thousand five hundred thirteen'), (15427, 65932, 'sixty-five thousand nine hundred thirty-two'), (15428, 73963, 'seventy-three thousand nine hundred sixty-three'), (15429, 18038, 'eighteen thousand thirty-eight'), (15430, 74803, 'seventy-four thousand eight hundred three'), (15431, 31482, 'thirty-one thousand four hundred eighty-two'), (15432, 81695, 'eighty-one thousand six hundred ninety-five'), (15433, 68728, 'sixty-eight thousand seven hundred twenty-eight'), (15434, 67661, 'sixty-seven thousand six hundred sixty-one'), (15435, 54724, 'fifty-four thousand seven hundred twenty-four'), (15436, 5391, 'five thousand three hundred ninety-one'), (15437, 44146, 'forty-four thousand one hundred forty-six'), (15438, 90343, 'ninety thousand three hundred forty-three'), (15439, 95208, 'ninety-five thousand two hundred eight'), (15440, 64272, 'sixty-four thousand two hundred seventy-two'), (15441, 99068, 'ninety-nine thousand sixty-eight'), (15442, 31652, 'thirty-one thousand six hundred fifty-two'), (15443, 40310, 'forty thousand three hundred ten'), (15444, 96665, 'ninety-six thousand six hundred sixty-five'), (15445, 60894, 'sixty thousand eight hundred ninety-four'), (15446, 54553, 'fifty-four thousand five hundred fifty-three'), (15447, 19617, 'nineteen thousand six hundred seventeen'), (15448, 27605, 'twenty-seven thousand six hundred five'), (15449, 57490, 'fifty-seven thousand four hundred ninety'), (15450, 81444, 'eighty-one thousand four hundred forty-four'), (15451, 30833, 'thirty thousand eight hundred thirty-three'), (15452, 76711, 'seventy-six thousand seven hundred eleven'), (15453, 9248, 'nine thousand two hundred forty-eight'), (15454, 37547, 'thirty-seven thousand five hundred forty-seven'), (15455, 2020, 'two thousand twenty'), (15456, 43137, 'forty-three thousand one hundred thirty-seven'), (15457, 45929, 'forty-five thousand nine hundred twenty-nine'), (15458, 67445, 'sixty-seven thousand four hundred forty-five'), (15459, 3117, 'three thousand one hundred seventeen'), (15460, 91073, 'ninety-one thousand seventy-three'), (15461, 93809, 'ninety-three thousand eight hundred nine'), (15462, 60740, 'sixty thousand seven hundred forty'), (15463, 84024, 'eighty-four thousand twenty-four'), (15464, 25320, 'twenty-five thousand three hundred twenty'), (15465, 7755, 'seven thousand seven hundred fifty-five'), (15466, 55645, 'fifty-five thousand six hundred forty-five'), (15467, 12025, 'twelve thousand twenty-five'), (15468, 88285, 'eighty-eight thousand two hundred eighty-five'), (15469, 68818, 'sixty-eight thousand eight hundred eighteen'), (15470, 74935, 'seventy-four thousand nine hundred thirty-five'), (15471, 18407, 'eighteen thousand four hundred seven'), (15472, 72695, 'seventy-two thousand six hundred ninety-five'), (15473, 95558, 'ninety-five thousand five hundred fifty-eight'), (15474, 95336, 'ninety-five thousand three hundred thirty-six'), (15475, 81969, 'eighty-one thousand nine hundred sixty-nine'), (15476, 70686, 'seventy thousand six hundred eighty-six'), (15477, 71231, 'seventy-one thousand two hundred thirty-one'), (15478, 24524, 'twenty-four thousand five hundred twenty-four'), (15479, 94822, 'ninety-four thousand eight hundred twenty-two'), (15480, 19421, 'nineteen thousand four hundred twenty-one'), (15481, 30813, 'thirty thousand eight hundred thirteen'), (15482, 93902, 'ninety-three thousand nine hundred two'), (15483, 94260, 'ninety-four thousand two hundred sixty'), (15484, 60975, 'sixty thousand nine hundred seventy-five'), (15485, 72872, 'seventy-two thousand eight hundred seventy-two'), (15486, 65741, 'sixty-five thousand seven hundred forty-one'), (15487, 82101, 'eighty-two thousand one hundred one'), (15488, 14434, 'fourteen thousand four hundred thirty-four'), (15489, 40356, 'forty thousand three hundred fifty-six'), (15490, 17390, 'seventeen thousand three hundred ninety'), (15491, 43054, 'forty-three thousand fifty-four'), (15492, 30814, 'thirty thousand eight hundred fourteen'), (15493, 78776, 'seventy-eight thousand seven hundred seventy-six'), (15494, 3878, 'three thousand eight hundred seventy-eight'), (15495, 84175, 'eighty-four thousand one hundred seventy-five'), (15496, 2918, 'two thousand nine hundred eighteen'), (15497, 77896, 'seventy-seven thousand eight hundred ninety-six'), (15498, 78047, 'seventy-eight thousand forty-seven'), (15499, 91207, 'ninety-one thousand two hundred seven'), (15500, 32139, 'thirty-two thousand one hundred thirty-nine'), (15501, 350, 'three hundred fifty'), (15502, 9474, 'nine thousand four hundred seventy-four'), (15503, 26932, 'twenty-six thousand nine hundred thirty-two'), (15504, 32224, 'thirty-two thousand two hundred twenty-four'), (15505, 27952, 'twenty-seven thousand nine hundred fifty-two'), (15506, 56252, 'fifty-six thousand two hundred fifty-two'), (15507, 31413, 'thirty-one thousand four hundred thirteen'), (15508, 51205, 'fifty-one thousand two hundred five'), (15509, 44065, 'forty-four thousand sixty-five'), (15510, 1268, 'one thousand two hundred sixty-eight'), (15511, 46053, 'forty-six thousand fifty-three'), (15512, 26724, 'twenty-six thousand seven hundred twenty-four'), (15513, 3986, 'three thousand nine hundred eighty-six'), (15514, 31623, 'thirty-one thousand six hundred twenty-three'), (15515, 47262, 'forty-seven thousand two hundred sixty-two'), (15516, 32036, 'thirty-two thousand thirty-six'), (15517, 84270, 'eighty-four thousand two hundred seventy'), (15518, 57826, 'fifty-seven thousand eight hundred twenty-six'), (15519, 69694, 'sixty-nine thousand six hundred ninety-four'), (15520, 86780, 'eighty-six thousand seven hundred eighty'), (15521, 29766, 'twenty-nine thousand seven hundred sixty-six'), (15522, 70457, 'seventy thousand four hundred fifty-seven'), (15523, 12357, 'twelve thousand three hundred fifty-seven'), (15524, 6569, 'six thousand five hundred sixty-nine'), (15525, 57650, 'fifty-seven thousand six hundred fifty'), (15526, 42102, 'forty-two thousand one hundred two'), (15527, 491, 'four hundred ninety-one'), (15528, 8547, 'eight thousand five hundred forty-seven'), (15529, 3720, 'three thousand seven hundred twenty'), (15530, 20799, 'twenty thousand seven hundred ninety-nine'), (15531, 48268, 'forty-eight thousand two hundred sixty-eight'), (15532, 72420, 'seventy-two thousand four hundred twenty'), (15533, 44593, 'forty-four thousand five hundred ninety-three'), (15534, 87184, 'eighty-seven thousand one hundred eighty-four'), (15535, 37084, 'thirty-seven thousand eighty-four'), (15536, 98810, 'ninety-eight thousand eight hundred ten'), (15537, 71066, 'seventy-one thousand sixty-six'), (15538, 92659, 'ninety-two thousand six hundred fifty-nine'), (15539, 44022, 'forty-four thousand twenty-two'), (15540, 45634, 'forty-five thousand six hundred thirty-four'), (15541, 57085, 'fifty-seven thousand eighty-five'), (15542, 73174, 'seventy-three thousand one hundred seventy-four'), (15543, 1105, 'one thousand one hundred five'), (15544, 88577, 'eighty-eight thousand five hundred seventy-seven'), (15545, 48066, 'forty-eight thousand sixty-six'), (15546, 4841, 'four thousand eight hundred forty-one'), (15547, 76625, 'seventy-six thousand six hundred twenty-five'), (15548, 40559, 'forty thousand five hundred fifty-nine'), (15549, 21395, 'twenty-one thousand three hundred ninety-five'), (15550, 6657, 'six thousand six hundred fifty-seven'), (15551, 27024, 'twenty-seven thousand twenty-four'), (15552, 15913, 'fifteen thousand nine hundred thirteen'), (15553, 63823, 'sixty-three thousand eight hundred twenty-three'), (15554, 68258, 'sixty-eight thousand two hundred fifty-eight'), (15555, 40155, 'forty thousand one hundred fifty-five'), (15556, 75624, 'seventy-five thousand six hundred twenty-four'), (15557, 74218, 'seventy-four thousand two hundred eighteen'), (15558, 57172, 'fifty-seven thousand one hundred seventy-two'), (15559, 35342, 'thirty-five thousand three hundred forty-two'), (15560, 95966, 'ninety-five thousand nine hundred sixty-six'), (15561, 1465, 'one thousand four hundred sixty-five'), (15562, 71536, 'seventy-one thousand five hundred thirty-six'), (15563, 84352, 'eighty-four thousand three hundred fifty-two'), (15564, 31812, 'thirty-one thousand eight hundred twelve'), (15565, 23847, 'twenty-three thousand eight hundred forty-seven'), (15566, 21254, 'twenty-one thousand two hundred fifty-four'), (15567, 85969, 'eighty-five thousand nine hundred sixty-nine'), (15568, 98266, 'ninety-eight thousand two hundred sixty-six'), (15569, 22063, 'twenty-two thousand sixty-three'), (15570, 35764, 'thirty-five thousand seven hundred sixty-four'), (15571, 4904, 'four thousand nine hundred four'), (15572, 19127, 'nineteen thousand one hundred twenty-seven'), (15573, 32867, 'thirty-two thousand eight hundred sixty-seven'), (15574, 88541, 'eighty-eight thousand five hundred forty-one'), (15575, 87898, 'eighty-seven thousand eight hundred ninety-eight'), (15576, 98948, 'ninety-eight thousand nine hundred forty-eight'), (15577, 93534, 'ninety-three thousand five hundred thirty-four'), (15578, 92973, 'ninety-two thousand nine hundred seventy-three'), (15579, 78496, 'seventy-eight thousand four hundred ninety-six'), (15580, 66900, 'sixty-six thousand nine hundred'), (15581, 97447, 'ninety-seven thousand four hundred forty-seven'), (15582, 89535, 'eighty-nine thousand five hundred thirty-five'), (15583, 70522, 'seventy thousand five hundred twenty-two'), (15584, 14458, 'fourteen thousand four hundred fifty-eight'), (15585, 18063, 'eighteen thousand sixty-three'), (15586, 80696, 'eighty thousand six hundred ninety-six'), (15587, 95327, 'ninety-five thousand three hundred twenty-seven'), (15588, 50265, 'fifty thousand two hundred sixty-five'), (15589, 73877, 'seventy-three thousand eight hundred seventy-seven'), (15590, 84161, 'eighty-four thousand one hundred sixty-one'), (15591, 44658, 'forty-four thousand six hundred fifty-eight'), (15592, 42609, 'forty-two thousand six hundred nine'), (15593, 84581, 'eighty-four thousand five hundred eighty-one'), (15594, 66835, 'sixty-six thousand eight hundred thirty-five'), (15595, 61856, 'sixty-one thousand eight hundred fifty-six'), (15596, 34083, 'thirty-four thousand eighty-three'), (15597, 69322, 'sixty-nine thousand three hundred twenty-two'), (15598, 66222, 'sixty-six thousand two hundred twenty-two'), (15599, 23245, 'twenty-three thousand two hundred forty-five'), (15600, 44352, 'forty-four thousand three hundred fifty-two'), (15601, 85721, 'eighty-five thousand seven hundred twenty-one'), (15602, 21126, 'twenty-one thousand one hundred twenty-six'), (15603, 21775, 'twenty-one thousand seven hundred seventy-five'), (15604, 69027, 'sixty-nine thousand twenty-seven'), (15605, 92896, 'ninety-two thousand eight hundred ninety-six'), (15606, 6056, 'six thousand fifty-six'), (15607, 21216, 'twenty-one thousand two hundred sixteen'), (15608, 33335, 'thirty-three thousand three hundred thirty-five'), (15609, 46550, 'forty-six thousand five hundred fifty'), (15610, 33635, 'thirty-three thousand six hundred thirty-five'), (15611, 73447, 'seventy-three thousand four hundred forty-seven'), (15612, 42517, 'forty-two thousand five hundred seventeen'), (15613, 45154, 'forty-five thousand one hundred fifty-four'), (15614, 87054, 'eighty-seven thousand fifty-four'), (15615, 95552, 'ninety-five thousand five hundred fifty-two'), (15616, 42509, 'forty-two thousand five hundred nine'), (15617, 53218, 'fifty-three thousand two hundred eighteen'), (15618, 28067, 'twenty-eight thousand sixty-seven'), (15619, 4553, 'four thousand five hundred fifty-three'), (15620, 93782, 'ninety-three thousand seven hundred eighty-two'), (15621, 11969, 'eleven thousand nine hundred sixty-nine'), (15622, 83594, 'eighty-three thousand five hundred ninety-four'), (15623, 59747, 'fifty-nine thousand seven hundred forty-seven'), (15624, 53397, 'fifty-three thousand three hundred ninety-seven'), (15625, 26971, 'twenty-six thousand nine hundred seventy-one'), (15626, 11884, 'eleven thousand eight hundred eighty-four'), (15627, 30798, 'thirty thousand seven hundred ninety-eight'), (15628, 20639, 'twenty thousand six hundred thirty-nine'), (15629, 48773, 'forty-eight thousand seven hundred seventy-three'), (15630, 36322, 'thirty-six thousand three hundred twenty-two'), (15631, 85659, 'eighty-five thousand six hundred fifty-nine'), (15632, 60447, 'sixty thousand four hundred forty-seven'), (15633, 62408, 'sixty-two thousand four hundred eight'), (15634, 89423, 'eighty-nine thousand four hundred twenty-three'), (15635, 4500, 'four thousand five hundred'), (15636, 10906, 'ten thousand nine hundred six'), (15637, 43008, 'forty-three thousand eight'), (15638, 538, 'five hundred thirty-eight'), (15639, 74504, 'seventy-four thousand five hundred four'), (15640, 14763, 'fourteen thousand seven hundred sixty-three'), (15641, 71382, 'seventy-one thousand three hundred eighty-two'), (15642, 3321, 'three thousand three hundred twenty-one'), (15643, 96983, 'ninety-six thousand nine hundred eighty-three'), (15644, 6240, 'six thousand two hundred forty'), (15645, 44308, 'forty-four thousand three hundred eight'), (15646, 31682, 'thirty-one thousand six hundred eighty-two'), (15647, 49152, 'forty-nine thousand one hundred fifty-two'), (15648, 42366, 'forty-two thousand three hundred sixty-six'), (15649, 33822, 'thirty-three thousand eight hundred twenty-two'), (15650, 16229, 'sixteen thousand two hundred twenty-nine'), (15651, 16421, 'sixteen thousand four hundred twenty-one'), (15652, 64615, 'sixty-four thousand six hundred fifteen'), (15653, 79938, 'seventy-nine thousand nine hundred thirty-eight'), (15654, 83185, 'eighty-three thousand one hundred eighty-five'), (15655, 17177, 'seventeen thousand one hundred seventy-seven'), (15656, 12554, 'twelve thousand five hundred fifty-four'), (15657, 59341, 'fifty-nine thousand three hundred forty-one'), (15658, 70773, 'seventy thousand seven hundred seventy-three'), (15659, 89818, 'eighty-nine thousand eight hundred eighteen'), (15660, 84378, 'eighty-four thousand three hundred seventy-eight'), (15661, 59971, 'fifty-nine thousand nine hundred seventy-one'), (15662, 91733, 'ninety-one thousand seven hundred thirty-three'), (15663, 75806, 'seventy-five thousand eight hundred six'), (15664, 43785, 'forty-three thousand seven hundred eighty-five'), (15665, 43764, 'forty-three thousand seven hundred sixty-four'), (15666, 57761, 'fifty-seven thousand seven hundred sixty-one'), (15667, 85252, 'eighty-five thousand two hundred fifty-two'), (15668, 19643, 'nineteen thousand six hundred forty-three'), (15669, 81796, 'eighty-one thousand seven hundred ninety-six'), (15670, 94310, 'ninety-four thousand three hundred ten'), (15671, 11687, 'eleven thousand six hundred eighty-seven'), (15672, 78338, 'seventy-eight thousand three hundred thirty-eight'), (15673, 97652, 'ninety-seven thousand six hundred fifty-two'), (15674, 75142, 'seventy-five thousand one hundred forty-two'), (15675, 54356, 'fifty-four thousand three hundred fifty-six'), (15676, 61108, 'sixty-one thousand one hundred eight'), (15677, 40225, 'forty thousand two hundred twenty-five'), (15678, 67635, 'sixty-seven thousand six hundred thirty-five'), (15679, 36218, 'thirty-six thousand two hundred eighteen'), (15680, 30738, 'thirty thousand seven hundred thirty-eight'), (15681, 41289, 'forty-one thousand two hundred eighty-nine'), (15682, 72411, 'seventy-two thousand four hundred eleven'), (15683, 7192, 'seven thousand one hundred ninety-two'), (15684, 69013, 'sixty-nine thousand thirteen'), (15685, 80966, 'eighty thousand nine hundred sixty-six'), (15686, 42431, 'forty-two thousand four hundred thirty-one'), (15687, 42877, 'forty-two thousand eight hundred seventy-seven'), (15688, 39315, 'thirty-nine thousand three hundred fifteen'), (15689, 34061, 'thirty-four thousand sixty-one'), (15690, 13457, 'thirteen thousand four hundred fifty-seven'), (15691, 79104, 'seventy-nine thousand one hundred four'), (15692, 67954, 'sixty-seven thousand nine hundred fifty-four'), (15693, 12001, 'twelve thousand one'), (15694, 54317, 'fifty-four thousand three hundred seventeen'), (15695, 15385, 'fifteen thousand three hundred eighty-five'), (15696, 60047, 'sixty thousand forty-seven'), (15697, 61315, 'sixty-one thousand three hundred fifteen'), (15698, 45573, 'forty-five thousand five hundred seventy-three'), (15699, 24967, 'twenty-four thousand nine hundred sixty-seven'), (15700, 67584, 'sixty-seven thousand five hundred eighty-four'), (15701, 10226, 'ten thousand two hundred twenty-six'), (15702, 95759, 'ninety-five thousand seven hundred fifty-nine'), (15703, 91262, 'ninety-one thousand two hundred sixty-two'), (15704, 50559, 'fifty thousand five hundred fifty-nine'), (15705, 97383, 'ninety-seven thousand three hundred eighty-three'), (15706, 56746, 'fifty-six thousand seven hundred forty-six'), (15707, 20422, 'twenty thousand four hundred twenty-two'), (15708, 38250, 'thirty-eight thousand two hundred fifty'), (15709, 92201, 'ninety-two thousand two hundred one'), (15710, 68104, 'sixty-eight thousand one hundred four'), (15711, 28795, 'twenty-eight thousand seven hundred ninety-five'), (15712, 87416, 'eighty-seven thousand four hundred sixteen'), (15713, 20602, 'twenty thousand six hundred two'), (15714, 13791, 'thirteen thousand seven hundred ninety-one'), (15715, 79861, 'seventy-nine thousand eight hundred sixty-one'), (15716, 20005, 'twenty thousand five'), (15717, 69614, 'sixty-nine thousand six hundred fourteen'), (15718, 25071, 'twenty-five thousand seventy-one'), (15719, 62503, 'sixty-two thousand five hundred three'), (15720, 69073, 'sixty-nine thousand seventy-three'), (15721, 78212, 'seventy-eight thousand two hundred twelve'), (15722, 97084, 'ninety-seven thousand eighty-four'), (15723, 21195, 'twenty-one thousand one hundred ninety-five'), (15724, 60542, 'sixty thousand five hundred forty-two'), (15725, 52533, 'fifty-two thousand five hundred thirty-three'), (15726, 82899, 'eighty-two thousand eight hundred ninety-nine'), (15727, 68450, 'sixty-eight thousand four hundred fifty'), (15728, 19189, 'nineteen thousand one hundred eighty-nine'), (15729, 27181, 'twenty-seven thousand one hundred eighty-one'), (15730, 40376, 'forty thousand three hundred seventy-six'), (15731, 16341, 'sixteen thousand three hundred forty-one'), (15732, 92738, 'ninety-two thousand seven hundred thirty-eight'), (15733, 53368, 'fifty-three thousand three hundred sixty-eight'), (15734, 55383, 'fifty-five thousand three hundred eighty-three'), (15735, 21569, 'twenty-one thousand five hundred sixty-nine'), (15736, 11134, 'eleven thousand one hundred thirty-four'), (15737, 44808, 'forty-four thousand eight hundred eight'), (15738, 82905, 'eighty-two thousand nine hundred five'), (15739, 80952, 'eighty thousand nine hundred fifty-two'), (15740, 1588, 'one thousand five hundred eighty-eight'), (15741, 14497, 'fourteen thousand four hundred ninety-seven'), (15742, 4170, 'four thousand one hundred seventy'), (15743, 35543, 'thirty-five thousand five hundred forty-three'), (15744, 61346, 'sixty-one thousand three hundred forty-six'), (15745, 5614, 'five thousand six hundred fourteen'), (15746, 35975, 'thirty-five thousand nine hundred seventy-five'), (15747, 48674, 'forty-eight thousand six hundred seventy-four'), (15748, 81427, 'eighty-one thousand four hundred twenty-seven'), (15749, 71471, 'seventy-one thousand four hundred seventy-one'), (15750, 71200, 'seventy-one thousand two hundred'), (15751, 75890, 'seventy-five thousand eight hundred ninety'), (15752, 13088, 'thirteen thousand eighty-eight'), (15753, 19567, 'nineteen thousand five hundred sixty-seven'), (15754, 88286, 'eighty-eight thousand two hundred eighty-six'), (15755, 10822, 'ten thousand eight hundred twenty-two'), (15756, 73853, 'seventy-three thousand eight hundred fifty-three'), (15757, 58448, 'fifty-eight thousand four hundred forty-eight'), (15758, 55431, 'fifty-five thousand four hundred thirty-one'), (15759, 898, 'eight hundred ninety-eight'), (15760, 54258, 'fifty-four thousand two hundred fifty-eight'), (15761, 58699, 'fifty-eight thousand six hundred ninety-nine'), (15762, 44903, 'forty-four thousand nine hundred three'), (15763, 40042, 'forty thousand forty-two'), (15764, 4641, 'four thousand six hundred forty-one'), (15765, 96301, 'ninety-six thousand three hundred one'), (15766, 73044, 'seventy-three thousand forty-four'), (15767, 72434, 'seventy-two thousand four hundred thirty-four'), (15768, 85941, 'eighty-five thousand nine hundred forty-one'), (15769, 14424, 'fourteen thousand four hundred twenty-four'), (15770, 81697, 'eighty-one thousand six hundred ninety-seven'), (15771, 91811, 'ninety-one thousand eight hundred eleven'), (15772, 35268, 'thirty-five thousand two hundred sixty-eight'), (15773, 70058, 'seventy thousand fifty-eight'), (15774, 36253, 'thirty-six thousand two hundred fifty-three'), (15775, 20459, 'twenty thousand four hundred fifty-nine'), (15776, 80544, 'eighty thousand five hundred forty-four'), (15777, 67655, 'sixty-seven thousand six hundred fifty-five'), (15778, 27480, 'twenty-seven thousand four hundred eighty'), (15779, 16348, 'sixteen thousand three hundred forty-eight'), (15780, 75500, 'seventy-five thousand five hundred'), (15781, 21443, 'twenty-one thousand four hundred forty-three'), (15782, 40079, 'forty thousand seventy-nine'), (15783, 62601, 'sixty-two thousand six hundred one'), (15784, 49688, 'forty-nine thousand six hundred eighty-eight'), (15785, 74956, 'seventy-four thousand nine hundred fifty-six'), (15786, 6530, 'six thousand five hundred thirty'), (15787, 65597, 'sixty-five thousand five hundred ninety-seven'), (15788, 24680, 'twenty-four thousand six hundred eighty'), (15789, 48273, 'forty-eight thousand two hundred seventy-three'), (15790, 78826, 'seventy-eight thousand eight hundred twenty-six'), (15791, 91324, 'ninety-one thousand three hundred twenty-four'), (15792, 73637, 'seventy-three thousand six hundred thirty-seven'), (15793, 53471, 'fifty-three thousand four hundred seventy-one'), (15794, 70629, 'seventy thousand six hundred twenty-nine'), (15795, 9735, 'nine thousand seven hundred thirty-five'), (15796, 6108, 'six thousand one hundred eight'), (15797, 38855, 'thirty-eight thousand eight hundred fifty-five'), (15798, 73926, 'seventy-three thousand nine hundred twenty-six'), (15799, 43288, 'forty-three thousand two hundred eighty-eight'), (15800, 12859, 'twelve thousand eight hundred fifty-nine'), (15801, 27847, 'twenty-seven thousand eight hundred forty-seven'), (15802, 2827, 'two thousand eight hundred twenty-seven'), (15803, 54025, 'fifty-four thousand twenty-five'), (15804, 76576, 'seventy-six thousand five hundred seventy-six'), (15805, 72236, 'seventy-two thousand two hundred thirty-six'), (15806, 96420, 'ninety-six thousand four hundred twenty'), (15807, 6322, 'six thousand three hundred twenty-two'), (15808, 73095, 'seventy-three thousand ninety-five'), (15809, 72603, 'seventy-two thousand six hundred three'), (15810, 20120, 'twenty thousand one hundred twenty'), (15811, 92849, 'ninety-two thousand eight hundred forty-nine'), (15812, 90127, 'ninety thousand one hundred twenty-seven'), (15813, 53449, 'fifty-three thousand four hundred forty-nine'), (15814, 57535, 'fifty-seven thousand five hundred thirty-five'), (15815, 38151, 'thirty-eight thousand one hundred fifty-one'), (15816, 84575, 'eighty-four thousand five hundred seventy-five'), (15817, 57975, 'fifty-seven thousand nine hundred seventy-five'), (15818, 54378, 'fifty-four thousand three hundred seventy-eight'), (15819, 80231, 'eighty thousand two hundred thirty-one'), (15820, 74490, 'seventy-four thousand four hundred ninety'), (15821, 93000, 'ninety-three thousand'), (15822, 53804, 'fifty-three thousand eight hundred four'), (15823, 72659, 'seventy-two thousand six hundred fifty-nine'), (15824, 82196, 'eighty-two thousand one hundred ninety-six'), (15825, 74290, 'seventy-four thousand two hundred ninety'), (15826, 81337, 'eighty-one thousand three hundred thirty-seven'), (15827, 65291, 'sixty-five thousand two hundred ninety-one'), (15828, 20270, 'twenty thousand two hundred seventy'), (15829, 50130, 'fifty thousand one hundred thirty'), (15830, 56392, 'fifty-six thousand three hundred ninety-two'), (15831, 75784, 'seventy-five thousand seven hundred eighty-four'), (15832, 57274, 'fifty-seven thousand two hundred seventy-four'), (15833, 46715, 'forty-six thousand seven hundred fifteen'), (15834, 74839, 'seventy-four thousand eight hundred thirty-nine'), (15835, 97753, 'ninety-seven thousand seven hundred fifty-three'), (15836, 27198, 'twenty-seven thousand one hundred ninety-eight'), (15837, 29151, 'twenty-nine thousand one hundred fifty-one'), (15838, 13052, 'thirteen thousand fifty-two'), (15839, 54863, 'fifty-four thousand eight hundred sixty-three'), (15840, 94909, 'ninety-four thousand nine hundred nine'), (15841, 43745, 'forty-three thousand seven hundred forty-five'), (15842, 64386, 'sixty-four thousand three hundred eighty-six'), (15843, 3084, 'three thousand eighty-four'), (15844, 92479, 'ninety-two thousand four hundred seventy-nine'), (15845, 35910, 'thirty-five thousand nine hundred ten'), (15846, 65149, 'sixty-five thousand one hundred forty-nine'), (15847, 24507, 'twenty-four thousand five hundred seven'), (15848, 75000, 'seventy-five thousand'), (15849, 82539, 'eighty-two thousand five hundred thirty-nine'), (15850, 51689, 'fifty-one thousand six hundred eighty-nine'), (15851, 89567, 'eighty-nine thousand five hundred sixty-seven'), (15852, 73056, 'seventy-three thousand fifty-six'), (15853, 71067, 'seventy-one thousand sixty-seven'), (15854, 12457, 'twelve thousand four hundred fifty-seven'), (15855, 26706, 'twenty-six thousand seven hundred six'), (15856, 2912, 'two thousand nine hundred twelve'), (15857, 55005, 'fifty-five thousand five'), (15858, 37894, 'thirty-seven thousand eight hundred ninety-four'), (15859, 39584, 'thirty-nine thousand five hundred eighty-four'), (15860, 51846, 'fifty-one thousand eight hundred forty-six'), (15861, 81164, 'eighty-one thousand one hundred sixty-four'), (15862, 20254, 'twenty thousand two hundred fifty-four'), (15863, 1529, 'one thousand five hundred twenty-nine'), (15864, 30952, 'thirty thousand nine hundred fifty-two'), (15865, 18580, 'eighteen thousand five hundred eighty'), (15866, 27203, 'twenty-seven thousand two hundred three'), (15867, 29178, 'twenty-nine thousand one hundred seventy-eight'), (15868, 2871, 'two thousand eight hundred seventy-one'), (15869, 20110, 'twenty thousand one hundred ten'), (15870, 59595, 'fifty-nine thousand five hundred ninety-five'), (15871, 90346, 'ninety thousand three hundred forty-six'), (15872, 49951, 'forty-nine thousand nine hundred fifty-one'), (15873, 89218, 'eighty-nine thousand two hundred eighteen'), (15874, 46432, 'forty-six thousand four hundred thirty-two'), (15875, 83179, 'eighty-three thousand one hundred seventy-nine'), (15876, 39442, 'thirty-nine thousand four hundred forty-two'), (15877, 56640, 'fifty-six thousand six hundred forty'), (15878, 62928, 'sixty-two thousand nine hundred twenty-eight'), (15879, 19757, 'nineteen thousand seven hundred fifty-seven'), (15880, 21134, 'twenty-one thousand one hundred thirty-four'), (15881, 10120, 'ten thousand one hundred twenty'), (15882, 86006, 'eighty-six thousand six'), (15883, 25262, 'twenty-five thousand two hundred sixty-two'), (15884, 99733, 'ninety-nine thousand seven hundred thirty-three'), (15885, 42110, 'forty-two thousand one hundred ten'), (15886, 33981, 'thirty-three thousand nine hundred eighty-one'), (15887, 88952, 'eighty-eight thousand nine hundred fifty-two'), (15888, 43788, 'forty-three thousand seven hundred eighty-eight'), (15889, 32857, 'thirty-two thousand eight hundred fifty-seven'), (15890, 30809, 'thirty thousand eight hundred nine'), (15891, 74873, 'seventy-four thousand eight hundred seventy-three'), (15892, 39109, 'thirty-nine thousand one hundred nine'), (15893, 90617, 'ninety thousand six hundred seventeen'), (15894, 22633, 'twenty-two thousand six hundred thirty-three'), (15895, 18549, 'eighteen thousand five hundred forty-nine'), (15896, 82776, 'eighty-two thousand seven hundred seventy-six'), (15897, 4576, 'four thousand five hundred seventy-six'), (15898, 31219, 'thirty-one thousand two hundred nineteen'), (15899, 9301, 'nine thousand three hundred one'), (15900, 28554, 'twenty-eight thousand five hundred fifty-four'), (15901, 481, 'four hundred eighty-one'), (15902, 29167, 'twenty-nine thousand one hundred sixty-seven'), (15903, 11440, 'eleven thousand four hundred forty'), (15904, 16451, 'sixteen thousand four hundred fifty-one'), (15905, 13885, 'thirteen thousand eight hundred eighty-five'), (15906, 91841, 'ninety-one thousand eight hundred forty-one'), (15907, 97112, 'ninety-seven thousand one hundred twelve'), (15908, 39319, 'thirty-nine thousand three hundred nineteen'), (15909, 29294, 'twenty-nine thousand two hundred ninety-four'), (15910, 5086, 'five thousand eighty-six'), (15911, 9715, 'nine thousand seven hundred fifteen'), (15912, 29295, 'twenty-nine thousand two hundred ninety-five'), (15913, 29313, 'twenty-nine thousand three hundred thirteen'), (15914, 85821, 'eighty-five thousand eight hundred twenty-one'), (15915, 9970, 'nine thousand nine hundred seventy'), (15916, 94835, 'ninety-four thousand eight hundred thirty-five'), (15917, 48286, 'forty-eight thousand two hundred eighty-six'), (15918, 47916, 'forty-seven thousand nine hundred sixteen'), (15919, 86919, 'eighty-six thousand nine hundred nineteen'), (15920, 52691, 'fifty-two thousand six hundred ninety-one'), (15921, 18178, 'eighteen thousand one hundred seventy-eight'), (15922, 22089, 'twenty-two thousand eighty-nine'), (15923, 23263, 'twenty-three thousand two hundred sixty-three'), (15924, 76782, 'seventy-six thousand seven hundred eighty-two'), (15925, 37280, 'thirty-seven thousand two hundred eighty'), (15926, 66211, 'sixty-six thousand two hundred eleven'), (15927, 18769, 'eighteen thousand seven hundred sixty-nine'), (15928, 52527, 'fifty-two thousand five hundred twenty-seven'), (15929, 13964, 'thirteen thousand nine hundred sixty-four'), (15930, 77013, 'seventy-seven thousand thirteen'), (15931, 87217, 'eighty-seven thousand two hundred seventeen'), (15932, 58723, 'fifty-eight thousand seven hundred twenty-three'), (15933, 45694, 'forty-five thousand six hundred ninety-four'), (15934, 73566, 'seventy-three thousand five hundred sixty-six'), (15935, 4799, 'four thousand seven hundred ninety-nine'), (15936, 44725, 'forty-four thousand seven hundred twenty-five'), (15937, 81732, 'eighty-one thousand seven hundred thirty-two'), (15938, 25916, 'twenty-five thousand nine hundred sixteen'), (15939, 17399, 'seventeen thousand three hundred ninety-nine'), (15940, 10941, 'ten thousand nine hundred forty-one'), (15941, 84526, 'eighty-four thousand five hundred twenty-six'), (15942, 29237, 'twenty-nine thousand two hundred thirty-seven'), (15943, 16483, 'sixteen thousand four hundred eighty-three'), (15944, 16545, 'sixteen thousand five hundred forty-five'), (15945, 85472, 'eighty-five thousand four hundred seventy-two'), (15946, 90402, 'ninety thousand four hundred two'), (15947, 69356, 'sixty-nine thousand three hundred fifty-six'), (15948, 98401, 'ninety-eight thousand four hundred one'), (15949, 36109, 'thirty-six thousand one hundred nine'), (15950, 85041, 'eighty-five thousand forty-one'), (15951, 22035, 'twenty-two thousand thirty-five'), (15952, 54581, 'fifty-four thousand five hundred eighty-one'), (15953, 19057, 'nineteen thousand fifty-seven'), (15954, 56795, 'fifty-six thousand seven hundred ninety-five'), (15955, 95939, 'ninety-five thousand nine hundred thirty-nine'), (15956, 2417, 'two thousand four hundred seventeen'), (15957, 91270, 'ninety-one thousand two hundred seventy'), (15958, 40899, 'forty thousand eight hundred ninety-nine'), (15959, 87942, 'eighty-seven thousand nine hundred forty-two'), (15960, 75647, 'seventy-five thousand six hundred forty-seven'), (15961, 24984, 'twenty-four thousand nine hundred eighty-four'), (15962, 85564, 'eighty-five thousand five hundred sixty-four'), (15963, 78694, 'seventy-eight thousand six hundred ninety-four'), (15964, 21360, 'twenty-one thousand three hundred sixty'), (15965, 85288, 'eighty-five thousand two hundred eighty-eight'), (15966, 13749, 'thirteen thousand seven hundred forty-nine'), (15967, 68260, 'sixty-eight thousand two hundred sixty'), (15968, 16359, 'sixteen thousand three hundred fifty-nine'), (15969, 36265, 'thirty-six thousand two hundred sixty-five'), (15970, 52948, 'fifty-two thousand nine hundred forty-eight'), (15971, 50751, 'fifty thousand seven hundred fifty-one'), (15972, 48659, 'forty-eight thousand six hundred fifty-nine'), (15973, 76413, 'seventy-six thousand four hundred thirteen'), (15974, 43925, 'forty-three thousand nine hundred twenty-five'), (15975, 35488, 'thirty-five thousand four hundred eighty-eight'), (15976, 47650, 'forty-seven thousand six hundred fifty'), (15977, 64588, 'sixty-four thousand five hundred eighty-eight'), (15978, 37111, 'thirty-seven thousand one hundred eleven'), (15979, 1296, 'one thousand two hundred ninety-six'), (15980, 71106, 'seventy-one thousand one hundred six'), (15981, 1978, 'one thousand nine hundred seventy-eight'), (15982, 7573, 'seven thousand five hundred seventy-three'), (15983, 48238, 'forty-eight thousand two hundred thirty-eight'), (15984, 96048, 'ninety-six thousand forty-eight'), (15985, 34429, 'thirty-four thousand four hundred twenty-nine'), (15986, 86902, 'eighty-six thousand nine hundred two'), (15987, 71973, 'seventy-one thousand nine hundred seventy-three'), (15988, 27220, 'twenty-seven thousand two hundred twenty'), (15989, 97652, 'ninety-seven thousand six hundred fifty-two'), (15990, 40297, 'forty thousand two hundred ninety-seven'), (15991, 70229, 'seventy thousand two hundred twenty-nine'), (15992, 23440, 'twenty-three thousand four hundred forty'), (15993, 74759, 'seventy-four thousand seven hundred fifty-nine'), (15994, 77050, 'seventy-seven thousand fifty'), (15995, 99274, 'ninety-nine thousand two hundred seventy-four'), (15996, 98047, 'ninety-eight thousand forty-seven'), (15997, 29133, 'twenty-nine thousand one hundred thirty-three'), (15998, 82205, 'eighty-two thousand two hundred five'), (15999, 70141, 'seventy thousand one hundred forty-one'), (16000, 76251, 'seventy-six thousand two hundred fifty-one'), (16001, 84170, 'eighty-four thousand one hundred seventy'), (16002, 91043, 'ninety-one thousand forty-three'), (16003, 87672, 'eighty-seven thousand six hundred seventy-two'), (16004, 74782, 'seventy-four thousand seven hundred eighty-two'), (16005, 58608, 'fifty-eight thousand six hundred eight'), (16006, 96816, 'ninety-six thousand eight hundred sixteen'), (16007, 28584, 'twenty-eight thousand five hundred eighty-four'), (16008, 56670, 'fifty-six thousand six hundred seventy'), (16009, 7630, 'seven thousand six hundred thirty'), (16010, 94290, 'ninety-four thousand two hundred ninety'), (16011, 12913, 'twelve thousand nine hundred thirteen'), (16012, 94587, 'ninety-four thousand five hundred eighty-seven'), (16013, 18624, 'eighteen thousand six hundred twenty-four'), (16014, 87441, 'eighty-seven thousand four hundred forty-one'), (16015, 58243, 'fifty-eight thousand two hundred forty-three'), (16016, 71871, 'seventy-one thousand eight hundred seventy-one'), (16017, 82033, 'eighty-two thousand thirty-three'), (16018, 14443, 'fourteen thousand four hundred forty-three'), (16019, 42290, 'forty-two thousand two hundred ninety'), (16020, 47334, 'forty-seven thousand three hundred thirty-four'), (16021, 84039, 'eighty-four thousand thirty-nine'), (16022, 31982, 'thirty-one thousand nine hundred eighty-two'), (16023, 21716, 'twenty-one thousand seven hundred sixteen'), (16024, 79688, 'seventy-nine thousand six hundred eighty-eight'), (16025, 10315, 'ten thousand three hundred fifteen'), (16026, 49694, 'forty-nine thousand six hundred ninety-four'), (16027, 21387, 'twenty-one thousand three hundred eighty-seven'), (16028, 5082, 'five thousand eighty-two'), (16029, 63886, 'sixty-three thousand eight hundred eighty-six'), (16030, 34656, 'thirty-four thousand six hundred fifty-six'), (16031, 49531, 'forty-nine thousand five hundred thirty-one'), (16032, 95666, 'ninety-five thousand six hundred sixty-six'), (16033, 85709, 'eighty-five thousand seven hundred nine'), (16034, 2086, 'two thousand eighty-six'), (16035, 72110, 'seventy-two thousand one hundred ten'), (16036, 21688, 'twenty-one thousand six hundred eighty-eight'), (16037, 46976, 'forty-six thousand nine hundred seventy-six'), (16038, 60339, 'sixty thousand three hundred thirty-nine'), (16039, 18327, 'eighteen thousand three hundred twenty-seven'), (16040, 80395, 'eighty thousand three hundred ninety-five'), (16041, 98302, 'ninety-eight thousand three hundred two'), (16042, 5387, 'five thousand three hundred eighty-seven'), (16043, 6078, 'six thousand seventy-eight'), (16044, 9051, 'nine thousand fifty-one'), (16045, 12295, 'twelve thousand two hundred ninety-five'), (16046, 85567, 'eighty-five thousand five hundred sixty-seven'), (16047, 61870, 'sixty-one thousand eight hundred seventy'), (16048, 73569, 'seventy-three thousand five hundred sixty-nine'), (16049, 30847, 'thirty thousand eight hundred forty-seven'), (16050, 57768, 'fifty-seven thousand seven hundred sixty-eight'), (16051, 87632, 'eighty-seven thousand six hundred thirty-two'), (16052, 10860, 'ten thousand eight hundred sixty'), (16053, 95099, 'ninety-five thousand ninety-nine'), (16054, 16308, 'sixteen thousand three hundred eight'), (16055, 19403, 'nineteen thousand four hundred three'), (16056, 25261, 'twenty-five thousand two hundred sixty-one'), (16057, 25641, 'twenty-five thousand six hundred forty-one'), (16058, 2087, 'two thousand eighty-seven'), (16059, 92824, 'ninety-two thousand eight hundred twenty-four'), (16060, 60191, 'sixty thousand one hundred ninety-one'), (16061, 94860, 'ninety-four thousand eight hundred sixty'), (16062, 62525, 'sixty-two thousand five hundred twenty-five'), (16063, 29113, 'twenty-nine thousand one hundred thirteen'), (16064, 44740, 'forty-four thousand seven hundred forty'), (16065, 27831, 'twenty-seven thousand eight hundred thirty-one'), (16066, 54713, 'fifty-four thousand seven hundred thirteen'), (16067, 2363, 'two thousand three hundred sixty-three'), (16068, 49810, 'forty-nine thousand eight hundred ten'), (16069, 10021, 'ten thousand twenty-one'), (16070, 63987, 'sixty-three thousand nine hundred eighty-seven'), (16071, 22812, 'twenty-two thousand eight hundred twelve'), (16072, 48094, 'forty-eight thousand ninety-four'), (16073, 62218, 'sixty-two thousand two hundred eighteen'), (16074, 27155, 'twenty-seven thousand one hundred fifty-five'), (16075, 99053, 'ninety-nine thousand fifty-three'), (16076, 16807, 'sixteen thousand eight hundred seven'), (16077, 23527, 'twenty-three thousand five hundred twenty-seven'), (16078, 85282, 'eighty-five thousand two hundred eighty-two'), (16079, 97038, 'ninety-seven thousand thirty-eight'), (16080, 77910, 'seventy-seven thousand nine hundred ten'), (16081, 20870, 'twenty thousand eight hundred seventy'), (16082, 59185, 'fifty-nine thousand one hundred eighty-five'), (16083, 77996, 'seventy-seven thousand nine hundred ninety-six'), (16084, 18470, 'eighteen thousand four hundred seventy'), (16085, 81078, 'eighty-one thousand seventy-eight'), (16086, 9262, 'nine thousand two hundred sixty-two'), (16087, 35307, 'thirty-five thousand three hundred seven'), (16088, 39244, 'thirty-nine thousand two hundred forty-four'), (16089, 8882, 'eight thousand eight hundred eighty-two'), (16090, 21110, 'twenty-one thousand one hundred ten'), (16091, 37331, 'thirty-seven thousand three hundred thirty-one'), (16092, 70242, 'seventy thousand two hundred forty-two'), (16093, 61850, 'sixty-one thousand eight hundred fifty'), (16094, 75197, 'seventy-five thousand one hundred ninety-seven'), (16095, 66512, 'sixty-six thousand five hundred twelve'), (16096, 42722, 'forty-two thousand seven hundred twenty-two'), (16097, 99254, 'ninety-nine thousand two hundred fifty-four'), (16098, 61338, 'sixty-one thousand three hundred thirty-eight'), (16099, 96694, 'ninety-six thousand six hundred ninety-four'), (16100, 46680, 'forty-six thousand six hundred eighty'), (16101, 7371, 'seven thousand three hundred seventy-one'), (16102, 41255, 'forty-one thousand two hundred fifty-five'), (16103, 56563, 'fifty-six thousand five hundred sixty-three'), (16104, 45600, 'forty-five thousand six hundred'), (16105, 98904, 'ninety-eight thousand nine hundred four'), (16106, 78223, 'seventy-eight thousand two hundred twenty-three'), (16107, 57420, 'fifty-seven thousand four hundred twenty'), (16108, 35945, 'thirty-five thousand nine hundred forty-five'), (16109, 57187, 'fifty-seven thousand one hundred eighty-seven'), (16110, 77349, 'seventy-seven thousand three hundred forty-nine'), (16111, 42789, 'forty-two thousand seven hundred eighty-nine'), (16112, 35906, 'thirty-five thousand nine hundred six'), (16113, 51085, 'fifty-one thousand eighty-five'), (16114, 86768, 'eighty-six thousand seven hundred sixty-eight'), (16115, 51828, 'fifty-one thousand eight hundred twenty-eight'), (16116, 19442, 'nineteen thousand four hundred forty-two'), (16117, 27486, 'twenty-seven thousand four hundred eighty-six'), (16118, 15511, 'fifteen thousand five hundred eleven'), (16119, 10224, 'ten thousand two hundred twenty-four'), (16120, 1887, 'one thousand eight hundred eighty-seven'), (16121, 94072, 'ninety-four thousand seventy-two'), (16122, 38517, 'thirty-eight thousand five hundred seventeen'), (16123, 81149, 'eighty-one thousand one hundred forty-nine'), (16124, 6642, 'six thousand six hundred forty-two'), (16125, 93889, 'ninety-three thousand eight hundred eighty-nine'), (16126, 13319, 'thirteen thousand three hundred nineteen'), (16127, 47727, 'forty-seven thousand seven hundred twenty-seven'), (16128, 39412, 'thirty-nine thousand four hundred twelve'), (16129, 63979, 'sixty-three thousand nine hundred seventy-nine'), (16130, 982, 'nine hundred eighty-two'), (16131, 76188, 'seventy-six thousand one hundred eighty-eight'), (16132, 53246, 'fifty-three thousand two hundred forty-six'), (16133, 37034, 'thirty-seven thousand thirty-four'), (16134, 25812, 'twenty-five thousand eight hundred twelve'), (16135, 63184, 'sixty-three thousand one hundred eighty-four'), (16136, 19783, 'nineteen thousand seven hundred eighty-three'), (16137, 57997, 'fifty-seven thousand nine hundred ninety-seven'), (16138, 76135, 'seventy-six thousand one hundred thirty-five'), (16139, 16756, 'sixteen thousand seven hundred fifty-six'), (16140, 70935, 'seventy thousand nine hundred thirty-five'), (16141, 59119, 'fifty-nine thousand one hundred nineteen'), (16142, 18065, 'eighteen thousand sixty-five'), (16143, 15408, 'fifteen thousand four hundred eight'), (16144, 41387, 'forty-one thousand three hundred eighty-seven'), (16145, 33319, 'thirty-three thousand three hundred nineteen'), (16146, 62577, 'sixty-two thousand five hundred seventy-seven'), (16147, 46805, 'forty-six thousand eight hundred five'), (16148, 49174, 'forty-nine thousand one hundred seventy-four'), (16149, 89647, 'eighty-nine thousand six hundred forty-seven'), (16150, 1934, 'one thousand nine hundred thirty-four'), (16151, 9996, 'nine thousand nine hundred ninety-six'), (16152, 45686, 'forty-five thousand six hundred eighty-six'), (16153, 86495, 'eighty-six thousand four hundred ninety-five'), (16154, 46939, 'forty-six thousand nine hundred thirty-nine'), (16155, 84358, 'eighty-four thousand three hundred fifty-eight'), (16156, 85226, 'eighty-five thousand two hundred twenty-six'), (16157, 3259, 'three thousand two hundred fifty-nine'), (16158, 31960, 'thirty-one thousand nine hundred sixty'), (16159, 19489, 'nineteen thousand four hundred eighty-nine'), (16160, 13754, 'thirteen thousand seven hundred fifty-four'), (16161, 8984, 'eight thousand nine hundred eighty-four'), (16162, 32860, 'thirty-two thousand eight hundred sixty'), (16163, 98639, 'ninety-eight thousand six hundred thirty-nine'), (16164, 8832, 'eight thousand eight hundred thirty-two'), (16165, 25823, 'twenty-five thousand eight hundred twenty-three'), (16166, 42372, 'forty-two thousand three hundred seventy-two'), (16167, 20932, 'twenty thousand nine hundred thirty-two'), (16168, 646, 'six hundred forty-six'), (16169, 48906, 'forty-eight thousand nine hundred six'), (16170, 48227, 'forty-eight thousand two hundred twenty-seven'), (16171, 19963, 'nineteen thousand nine hundred sixty-three'), (16172, 49439, 'forty-nine thousand four hundred thirty-nine'), (16173, 48081, 'forty-eight thousand eighty-one'), (16174, 38632, 'thirty-eight thousand six hundred thirty-two'), (16175, 17196, 'seventeen thousand one hundred ninety-six'), (16176, 72207, 'seventy-two thousand two hundred seven'), (16177, 8430, 'eight thousand four hundred thirty'), (16178, 28319, 'twenty-eight thousand three hundred nineteen'), (16179, 85779, 'eighty-five thousand seven hundred seventy-nine'), (16180, 88955, 'eighty-eight thousand nine hundred fifty-five'), (16181, 62648, 'sixty-two thousand six hundred forty-eight'), (16182, 255, 'two hundred fifty-five'), (16183, 6398, 'six thousand three hundred ninety-eight'), (16184, 56235, 'fifty-six thousand two hundred thirty-five'), (16185, 82051, 'eighty-two thousand fifty-one'), (16186, 8568, 'eight thousand five hundred sixty-eight'), (16187, 77839, 'seventy-seven thousand eight hundred thirty-nine'), (16188, 82034, 'eighty-two thousand thirty-four'), (16189, 23832, 'twenty-three thousand eight hundred thirty-two'), (16190, 36042, 'thirty-six thousand forty-two'), (16191, 21665, 'twenty-one thousand six hundred sixty-five'), (16192, 196, 'one hundred ninety-six'), (16193, 80706, 'eighty thousand seven hundred six'), (16194, 95914, 'ninety-five thousand nine hundred fourteen'), (16195, 42866, 'forty-two thousand eight hundred sixty-six'), (16196, 36279, 'thirty-six thousand two hundred seventy-nine'), (16197, 54542, 'fifty-four thousand five hundred forty-two'), (16198, 87180, 'eighty-seven thousand one hundred eighty'), (16199, 67856, 'sixty-seven thousand eight hundred fifty-six'), (16200, 9116, 'nine thousand one hundred sixteen'), (16201, 64021, 'sixty-four thousand twenty-one'), (16202, 20565, 'twenty thousand five hundred sixty-five'), (16203, 99625, 'ninety-nine thousand six hundred twenty-five'), (16204, 13416, 'thirteen thousand four hundred sixteen'), (16205, 60633, 'sixty thousand six hundred thirty-three'), (16206, 30002, 'thirty thousand two'), (16207, 60622, 'sixty thousand six hundred twenty-two'), (16208, 26307, 'twenty-six thousand three hundred seven'), (16209, 97563, 'ninety-seven thousand five hundred sixty-three'), (16210, 55807, 'fifty-five thousand eight hundred seven'), (16211, 22106, 'twenty-two thousand one hundred six'), (16212, 4490, 'four thousand four hundred ninety'), (16213, 91635, 'ninety-one thousand six hundred thirty-five'), (16214, 31135, 'thirty-one thousand one hundred thirty-five'), (16215, 49872, 'forty-nine thousand eight hundred seventy-two'), (16216, 65808, 'sixty-five thousand eight hundred eight'), (16217, 36010, 'thirty-six thousand ten'), (16218, 33265, 'thirty-three thousand two hundred sixty-five'), (16219, 84849, 'eighty-four thousand eight hundred forty-nine'), (16220, 11340, 'eleven thousand three hundred forty'), (16221, 85480, 'eighty-five thousand four hundred eighty'), (16222, 7234, 'seven thousand two hundred thirty-four'), (16223, 28974, 'twenty-eight thousand nine hundred seventy-four'), (16224, 46542, 'forty-six thousand five hundred forty-two'), (16225, 41413, 'forty-one thousand four hundred thirteen'), (16226, 56244, 'fifty-six thousand two hundred forty-four'), (16227, 18165, 'eighteen thousand one hundred sixty-five'), (16228, 48462, 'forty-eight thousand four hundred sixty-two'), (16229, 96480, 'ninety-six thousand four hundred eighty'), (16230, 29633, 'twenty-nine thousand six hundred thirty-three'), (16231, 44582, 'forty-four thousand five hundred eighty-two'), (16232, 80132, 'eighty thousand one hundred thirty-two'), (16233, 71522, 'seventy-one thousand five hundred twenty-two'), (16234, 62916, 'sixty-two thousand nine hundred sixteen'), (16235, 61373, 'sixty-one thousand three hundred seventy-three'), (16236, 54532, 'fifty-four thousand five hundred thirty-two'), (16237, 71995, 'seventy-one thousand nine hundred ninety-five'), (16238, 35558, 'thirty-five thousand five hundred fifty-eight'), (16239, 91537, 'ninety-one thousand five hundred thirty-seven'), (16240, 22038, 'twenty-two thousand thirty-eight'), (16241, 25339, 'twenty-five thousand three hundred thirty-nine'), (16242, 9899, 'nine thousand eight hundred ninety-nine'), (16243, 75618, 'seventy-five thousand six hundred eighteen'), (16244, 4967, 'four thousand nine hundred sixty-seven'), (16245, 76204, 'seventy-six thousand two hundred four'), (16246, 46582, 'forty-six thousand five hundred eighty-two'), (16247, 2728, 'two thousand seven hundred twenty-eight'), (16248, 42985, 'forty-two thousand nine hundred eighty-five'), (16249, 31809, 'thirty-one thousand eight hundred nine'), (16250, 93601, 'ninety-three thousand six hundred one'), (16251, 39570, 'thirty-nine thousand five hundred seventy'), (16252, 74782, 'seventy-four thousand seven hundred eighty-two'), (16253, 17383, 'seventeen thousand three hundred eighty-three'), (16254, 90613, 'ninety thousand six hundred thirteen'), (16255, 83804, 'eighty-three thousand eight hundred four'), (16256, 72251, 'seventy-two thousand two hundred fifty-one'), (16257, 94840, 'ninety-four thousand eight hundred forty'), (16258, 52977, 'fifty-two thousand nine hundred seventy-seven'), (16259, 95811, 'ninety-five thousand eight hundred eleven'), (16260, 78113, 'seventy-eight thousand one hundred thirteen'), (16261, 45720, 'forty-five thousand seven hundred twenty'), (16262, 9158, 'nine thousand one hundred fifty-eight'), (16263, 64131, 'sixty-four thousand one hundred thirty-one'), (16264, 44225, 'forty-four thousand two hundred twenty-five'), (16265, 46856, 'forty-six thousand eight hundred fifty-six'), (16266, 77173, 'seventy-seven thousand one hundred seventy-three'), (16267, 22839, 'twenty-two thousand eight hundred thirty-nine'), (16268, 57339, 'fifty-seven thousand three hundred thirty-nine'), (16269, 29735, 'twenty-nine thousand seven hundred thirty-five'), (16270, 4850, 'four thousand eight hundred fifty'), (16271, 99310, 'ninety-nine thousand three hundred ten'), (16272, 83699, 'eighty-three thousand six hundred ninety-nine'), (16273, 74231, 'seventy-four thousand two hundred thirty-one'), (16274, 98971, 'ninety-eight thousand nine hundred seventy-one'), (16275, 91330, 'ninety-one thousand three hundred thirty'), (16276, 55128, 'fifty-five thousand one hundred twenty-eight'), (16277, 36250, 'thirty-six thousand two hundred fifty'), (16278, 89901, 'eighty-nine thousand nine hundred one'), (16279, 67826, 'sixty-seven thousand eight hundred twenty-six'), (16280, 64001, 'sixty-four thousand one'), (16281, 70308, 'seventy thousand three hundred eight'), (16282, 67318, 'sixty-seven thousand three hundred eighteen'), (16283, 56771, 'fifty-six thousand seven hundred seventy-one'), (16284, 1677, 'one thousand six hundred seventy-seven'), (16285, 5888, 'five thousand eight hundred eighty-eight'), (16286, 94270, 'ninety-four thousand two hundred seventy'), (16287, 10332, 'ten thousand three hundred thirty-two'), (16288, 14107, 'fourteen thousand one hundred seven'), (16289, 948, 'nine hundred forty-eight'), (16290, 202, 'two hundred two'), (16291, 75169, 'seventy-five thousand one hundred sixty-nine'), (16292, 79522, 'seventy-nine thousand five hundred twenty-two'), (16293, 71927, 'seventy-one thousand nine hundred twenty-seven'), (16294, 1138, 'one thousand one hundred thirty-eight'), (16295, 98919, 'ninety-eight thousand nine hundred nineteen'), (16296, 58024, 'fifty-eight thousand twenty-four'), (16297, 30489, 'thirty thousand four hundred eighty-nine'), (16298, 50409, 'fifty thousand four hundred nine'), (16299, 6894, 'six thousand eight hundred ninety-four'), (16300, 53285, 'fifty-three thousand two hundred eighty-five'), (16301, 36270, 'thirty-six thousand two hundred seventy'), (16302, 42252, 'forty-two thousand two hundred fifty-two'), (16303, 30362, 'thirty thousand three hundred sixty-two'), (16304, 52895, 'fifty-two thousand eight hundred ninety-five'), (16305, 64909, 'sixty-four thousand nine hundred nine'), (16306, 60806, 'sixty thousand eight hundred six'), (16307, 11936, 'eleven thousand nine hundred thirty-six'), (16308, 36296, 'thirty-six thousand two hundred ninety-six'), (16309, 99074, 'ninety-nine thousand seventy-four'), (16310, 5695, 'five thousand six hundred ninety-five'), (16311, 91351, 'ninety-one thousand three hundred fifty-one'), (16312, 46110, 'forty-six thousand one hundred ten'), (16313, 59810, 'fifty-nine thousand eight hundred ten'), (16314, 69024, 'sixty-nine thousand twenty-four'), (16315, 46756, 'forty-six thousand seven hundred fifty-six'), (16316, 17170, 'seventeen thousand one hundred seventy'), (16317, 71402, 'seventy-one thousand four hundred two'), (16318, 81600, 'eighty-one thousand six hundred'), (16319, 3407, 'three thousand four hundred seven'), (16320, 32188, 'thirty-two thousand one hundred eighty-eight'), (16321, 16842, 'sixteen thousand eight hundred forty-two'), (16322, 6375, 'six thousand three hundred seventy-five'), (16323, 62878, 'sixty-two thousand eight hundred seventy-eight'), (16324, 53426, 'fifty-three thousand four hundred twenty-six'), (16325, 93337, 'ninety-three thousand three hundred thirty-seven'), (16326, 55886, 'fifty-five thousand eight hundred eighty-six'), (16327, 49437, 'forty-nine thousand four hundred thirty-seven'), (16328, 39960, 'thirty-nine thousand nine hundred sixty'), (16329, 30953, 'thirty thousand nine hundred fifty-three'), (16330, 23339, 'twenty-three thousand three hundred thirty-nine'), (16331, 40207, 'forty thousand two hundred seven'), (16332, 71581, 'seventy-one thousand five hundred eighty-one'), (16333, 62429, 'sixty-two thousand four hundred twenty-nine'), (16334, 30739, 'thirty thousand seven hundred thirty-nine'), (16335, 36016, 'thirty-six thousand sixteen'), (16336, 70272, 'seventy thousand two hundred seventy-two'), (16337, 68870, 'sixty-eight thousand eight hundred seventy'), (16338, 16131, 'sixteen thousand one hundred thirty-one'), (16339, 16757, 'sixteen thousand seven hundred fifty-seven'), (16340, 61245, 'sixty-one thousand two hundred forty-five'), (16341, 85830, 'eighty-five thousand eight hundred thirty'), (16342, 19743, 'nineteen thousand seven hundred forty-three'), (16343, 15977, 'fifteen thousand nine hundred seventy-seven'), (16344, 29168, 'twenty-nine thousand one hundred sixty-eight'), (16345, 67100, 'sixty-seven thousand one hundred'), (16346, 80098, 'eighty thousand ninety-eight'), (16347, 93153, 'ninety-three thousand one hundred fifty-three'), (16348, 65069, 'sixty-five thousand sixty-nine'), (16349, 45760, 'forty-five thousand seven hundred sixty'), (16350, 57927, 'fifty-seven thousand nine hundred twenty-seven'), (16351, 94757, 'ninety-four thousand seven hundred fifty-seven'), (16352, 29768, 'twenty-nine thousand seven hundred sixty-eight'), (16353, 38222, 'thirty-eight thousand two hundred twenty-two'), (16354, 30870, 'thirty thousand eight hundred seventy'), (16355, 85694, 'eighty-five thousand six hundred ninety-four'), (16356, 71346, 'seventy-one thousand three hundred forty-six'), (16357, 31036, 'thirty-one thousand thirty-six'), (16358, 96987, 'ninety-six thousand nine hundred eighty-seven'), (16359, 26137, 'twenty-six thousand one hundred thirty-seven'), (16360, 86739, 'eighty-six thousand seven hundred thirty-nine'), (16361, 73896, 'seventy-three thousand eight hundred ninety-six'), (16362, 33026, 'thirty-three thousand twenty-six'), (16363, 84924, 'eighty-four thousand nine hundred twenty-four'), (16364, 61463, 'sixty-one thousand four hundred sixty-three'), (16365, 19377, 'nineteen thousand three hundred seventy-seven'), (16366, 72052, 'seventy-two thousand fifty-two'), (16367, 87059, 'eighty-seven thousand fifty-nine'), (16368, 91232, 'ninety-one thousand two hundred thirty-two'), (16369, 3943, 'three thousand nine hundred forty-three'), (16370, 98321, 'ninety-eight thousand three hundred twenty-one'), (16371, 19363, 'nineteen thousand three hundred sixty-three'), (16372, 31774, 'thirty-one thousand seven hundred seventy-four'), (16373, 14384, 'fourteen thousand three hundred eighty-four'), (16374, 61879, 'sixty-one thousand eight hundred seventy-nine'), (16375, 16085, 'sixteen thousand eighty-five'), (16376, 1008, 'one thousand eight'), (16377, 76827, 'seventy-six thousand eight hundred twenty-seven'), (16378, 96159, 'ninety-six thousand one hundred fifty-nine'), (16379, 44128, 'forty-four thousand one hundred twenty-eight'), (16380, 80042, 'eighty thousand forty-two'), (16381, 89518, 'eighty-nine thousand five hundred eighteen'), (16382, 86365, 'eighty-six thousand three hundred sixty-five'), (16383, 91358, 'ninety-one thousand three hundred fifty-eight'), (16384, 38116, 'thirty-eight thousand one hundred sixteen'), (16385, 25, 'twenty-five'), (16386, 53486, 'fifty-three thousand four hundred eighty-six'), (16387, 34164, 'thirty-four thousand one hundred sixty-four'), (16388, 91577, 'ninety-one thousand five hundred seventy-seven'), (16389, 63052, 'sixty-three thousand fifty-two'), (16390, 73188, 'seventy-three thousand one hundred eighty-eight'), (16391, 79627, 'seventy-nine thousand six hundred twenty-seven'), (16392, 18066, 'eighteen thousand sixty-six'), (16393, 31726, 'thirty-one thousand seven hundred twenty-six'), (16394, 95102, 'ninety-five thousand one hundred two'), (16395, 9848, 'nine thousand eight hundred forty-eight'), (16396, 11797, 'eleven thousand seven hundred ninety-seven'), (16397, 12525, 'twelve thousand five hundred twenty-five'), (16398, 69709, 'sixty-nine thousand seven hundred nine'), (16399, 21914, 'twenty-one thousand nine hundred fourteen'), (16400, 15578, 'fifteen thousand five hundred seventy-eight'), (16401, 2941, 'two thousand nine hundred forty-one'), (16402, 44751, 'forty-four thousand seven hundred fifty-one'), (16403, 5166, 'five thousand one hundred sixty-six'), (16404, 31610, 'thirty-one thousand six hundred ten'), (16405, 9989, 'nine thousand nine hundred eighty-nine'), (16406, 38502, 'thirty-eight thousand five hundred two'), (16407, 77586, 'seventy-seven thousand five hundred eighty-six'), (16408, 5357, 'five thousand three hundred fifty-seven'), (16409, 60596, 'sixty thousand five hundred ninety-six'), (16410, 43738, 'forty-three thousand seven hundred thirty-eight'), (16411, 54102, 'fifty-four thousand one hundred two'), (16412, 25696, 'twenty-five thousand six hundred ninety-six'), (16413, 56156, 'fifty-six thousand one hundred fifty-six'), (16414, 52572, 'fifty-two thousand five hundred seventy-two'), (16415, 5467, 'five thousand four hundred sixty-seven'), (16416, 25563, 'twenty-five thousand five hundred sixty-three'), (16417, 22000, 'twenty-two thousand'), (16418, 29063, 'twenty-nine thousand sixty-three'), (16419, 87619, 'eighty-seven thousand six hundred nineteen'), (16420, 9880, 'nine thousand eight hundred eighty'), (16421, 84634, 'eighty-four thousand six hundred thirty-four'), (16422, 58183, 'fifty-eight thousand one hundred eighty-three'), (16423, 17798, 'seventeen thousand seven hundred ninety-eight'), (16424, 28489, 'twenty-eight thousand four hundred eighty-nine'), (16425, 72350, 'seventy-two thousand three hundred fifty'), (16426, 70677, 'seventy thousand six hundred seventy-seven'), (16427, 97117, 'ninety-seven thousand one hundred seventeen'), (16428, 50980, 'fifty thousand nine hundred eighty'), (16429, 6242, 'six thousand two hundred forty-two'), (16430, 96689, 'ninety-six thousand six hundred eighty-nine'), (16431, 90942, 'ninety thousand nine hundred forty-two'), (16432, 65985, 'sixty-five thousand nine hundred eighty-five'), (16433, 28628, 'twenty-eight thousand six hundred twenty-eight'), (16434, 1894, 'one thousand eight hundred ninety-four'), (16435, 50375, 'fifty thousand three hundred seventy-five'), (16436, 56479, 'fifty-six thousand four hundred seventy-nine'), (16437, 26548, 'twenty-six thousand five hundred forty-eight'), (16438, 48816, 'forty-eight thousand eight hundred sixteen'), (16439, 26452, 'twenty-six thousand four hundred fifty-two'), (16440, 70126, 'seventy thousand one hundred twenty-six'), (16441, 14081, 'fourteen thousand eighty-one'), (16442, 6910, 'six thousand nine hundred ten'), (16443, 99267, 'ninety-nine thousand two hundred sixty-seven'), (16444, 1959, 'one thousand nine hundred fifty-nine'), (16445, 7385, 'seven thousand three hundred eighty-five'), (16446, 53227, 'fifty-three thousand two hundred twenty-seven'), (16447, 3823, 'three thousand eight hundred twenty-three'), (16448, 70798, 'seventy thousand seven hundred ninety-eight'), (16449, 45192, 'forty-five thousand one hundred ninety-two'), (16450, 12664, 'twelve thousand six hundred sixty-four'), (16451, 22962, 'twenty-two thousand nine hundred sixty-two'), (16452, 46753, 'forty-six thousand seven hundred fifty-three'), (16453, 24233, 'twenty-four thousand two hundred thirty-three'), (16454, 41168, 'forty-one thousand one hundred sixty-eight'), (16455, 98612, 'ninety-eight thousand six hundred twelve'), (16456, 46050, 'forty-six thousand fifty'), (16457, 80354, 'eighty thousand three hundred fifty-four'), (16458, 11067, 'eleven thousand sixty-seven'), (16459, 98333, 'ninety-eight thousand three hundred thirty-three'), (16460, 43830, 'forty-three thousand eight hundred thirty'), (16461, 95140, 'ninety-five thousand one hundred forty'), (16462, 34244, 'thirty-four thousand two hundred forty-four'), (16463, 7730, 'seven thousand seven hundred thirty'), (16464, 84998, 'eighty-four thousand nine hundred ninety-eight'), (16465, 38262, 'thirty-eight thousand two hundred sixty-two'), (16466, 27851, 'twenty-seven thousand eight hundred fifty-one'), (16467, 74183, 'seventy-four thousand one hundred eighty-three'), (16468, 71961, 'seventy-one thousand nine hundred sixty-one'), (16469, 20150, 'twenty thousand one hundred fifty'), (16470, 97161, 'ninety-seven thousand one hundred sixty-one'), (16471, 37515, 'thirty-seven thousand five hundred fifteen'), (16472, 44636, 'forty-four thousand six hundred thirty-six'), (16473, 54391, 'fifty-four thousand three hundred ninety-one'), (16474, 40704, 'forty thousand seven hundred four'), (16475, 92388, 'ninety-two thousand three hundred eighty-eight'), (16476, 23913, 'twenty-three thousand nine hundred thirteen'), (16477, 5553, 'five thousand five hundred fifty-three'), (16478, 2111, 'two thousand one hundred eleven'), (16479, 10017, 'ten thousand seventeen'), (16480, 59341, 'fifty-nine thousand three hundred forty-one'), (16481, 6943, 'six thousand nine hundred forty-three'), (16482, 27474, 'twenty-seven thousand four hundred seventy-four'), (16483, 21919, 'twenty-one thousand nine hundred nineteen'), (16484, 75523, 'seventy-five thousand five hundred twenty-three'), (16485, 11804, 'eleven thousand eight hundred four'), (16486, 77689, 'seventy-seven thousand six hundred eighty-nine'), (16487, 93631, 'ninety-three thousand six hundred thirty-one'), (16488, 24989, 'twenty-four thousand nine hundred eighty-nine'), (16489, 43707, 'forty-three thousand seven hundred seven'), (16490, 84187, 'eighty-four thousand one hundred eighty-seven'), (16491, 37401, 'thirty-seven thousand four hundred one'), (16492, 92105, 'ninety-two thousand one hundred five'), (16493, 5740, 'five thousand seven hundred forty'), (16494, 46408, 'forty-six thousand four hundred eight'), (16495, 20796, 'twenty thousand seven hundred ninety-six'), (16496, 54911, 'fifty-four thousand nine hundred eleven'), (16497, 57730, 'fifty-seven thousand seven hundred thirty'), (16498, 28369, 'twenty-eight thousand three hundred sixty-nine'), (16499, 50018, 'fifty thousand eighteen'), (16500, 5554, 'five thousand five hundred fifty-four'), (16501, 64164, 'sixty-four thousand one hundred sixty-four'), (16502, 22750, 'twenty-two thousand seven hundred fifty'), (16503, 4604, 'four thousand six hundred four'), (16504, 43792, 'forty-three thousand seven hundred ninety-two'), (16505, 78767, 'seventy-eight thousand seven hundred sixty-seven'), (16506, 16689, 'sixteen thousand six hundred eighty-nine'), (16507, 73463, 'seventy-three thousand four hundred sixty-three'), (16508, 71135, 'seventy-one thousand one hundred thirty-five'), (16509, 93149, 'ninety-three thousand one hundred forty-nine'), (16510, 3504, 'three thousand five hundred four'), (16511, 98538, 'ninety-eight thousand five hundred thirty-eight'), (16512, 89108, 'eighty-nine thousand one hundred eight'), (16513, 97708, 'ninety-seven thousand seven hundred eight'), (16514, 57353, 'fifty-seven thousand three hundred fifty-three'), (16515, 21626, 'twenty-one thousand six hundred twenty-six'), (16516, 89719, 'eighty-nine thousand seven hundred nineteen'), (16517, 94085, 'ninety-four thousand eighty-five'), (16518, 85095, 'eighty-five thousand ninety-five'), (16519, 49252, 'forty-nine thousand two hundred fifty-two'), (16520, 48114, 'forty-eight thousand one hundred fourteen'), (16521, 78855, 'seventy-eight thousand eight hundred fifty-five'), (16522, 15596, 'fifteen thousand five hundred ninety-six'), (16523, 94790, 'ninety-four thousand seven hundred ninety'), (16524, 74232, 'seventy-four thousand two hundred thirty-two'), (16525, 37928, 'thirty-seven thousand nine hundred twenty-eight'), (16526, 4075, 'four thousand seventy-five'), (16527, 81990, 'eighty-one thousand nine hundred ninety'), (16528, 42126, 'forty-two thousand one hundred twenty-six'), (16529, 13943, 'thirteen thousand nine hundred forty-three'), (16530, 94325, 'ninety-four thousand three hundred twenty-five'), (16531, 7122, 'seven thousand one hundred twenty-two'), (16532, 67562, 'sixty-seven thousand five hundred sixty-two'), (16533, 40253, 'forty thousand two hundred fifty-three'), (16534, 70042, 'seventy thousand forty-two'), (16535, 69253, 'sixty-nine thousand two hundred fifty-three'), (16536, 66007, 'sixty-six thousand seven'), (16537, 83630, 'eighty-three thousand six hundred thirty'), (16538, 33589, 'thirty-three thousand five hundred eighty-nine'), (16539, 70993, 'seventy thousand nine hundred ninety-three'), (16540, 24581, 'twenty-four thousand five hundred eighty-one'), (16541, 12489, 'twelve thousand four hundred eighty-nine'), (16542, 37807, 'thirty-seven thousand eight hundred seven'), (16543, 31594, 'thirty-one thousand five hundred ninety-four'), (16544, 6248, 'six thousand two hundred forty-eight'), (16545, 91117, 'ninety-one thousand one hundred seventeen'), (16546, 16096, 'sixteen thousand ninety-six'), (16547, 83898, 'eighty-three thousand eight hundred ninety-eight'), (16548, 94402, 'ninety-four thousand four hundred two'), (16549, 5180, 'five thousand one hundred eighty'), (16550, 65020, 'sixty-five thousand twenty'), (16551, 82203, 'eighty-two thousand two hundred three'), (16552, 89424, 'eighty-nine thousand four hundred twenty-four'), (16553, 82060, 'eighty-two thousand sixty'), (16554, 34425, 'thirty-four thousand four hundred twenty-five'), (16555, 29211, 'twenty-nine thousand two hundred eleven'), (16556, 94496, 'ninety-four thousand four hundred ninety-six'), (16557, 26701, 'twenty-six thousand seven hundred one'), (16558, 60958, 'sixty thousand nine hundred fifty-eight'), (16559, 81826, 'eighty-one thousand eight hundred twenty-six'), (16560, 42157, 'forty-two thousand one hundred fifty-seven'), (16561, 35660, 'thirty-five thousand six hundred sixty'), (16562, 78893, 'seventy-eight thousand eight hundred ninety-three'), (16563, 99288, 'ninety-nine thousand two hundred eighty-eight'), (16564, 84784, 'eighty-four thousand seven hundred eighty-four'), (16565, 55252, 'fifty-five thousand two hundred fifty-two'), (16566, 7686, 'seven thousand six hundred eighty-six'), (16567, 49280, 'forty-nine thousand two hundred eighty'), (16568, 29623, 'twenty-nine thousand six hundred twenty-three'), (16569, 14298, 'fourteen thousand two hundred ninety-eight'), (16570, 50356, 'fifty thousand three hundred fifty-six'), (16571, 26867, 'twenty-six thousand eight hundred sixty-seven'), (16572, 67817, 'sixty-seven thousand eight hundred seventeen'), (16573, 25310, 'twenty-five thousand three hundred ten'), (16574, 24928, 'twenty-four thousand nine hundred twenty-eight'), (16575, 72510, 'seventy-two thousand five hundred ten'), (16576, 44975, 'forty-four thousand nine hundred seventy-five'), (16577, 23957, 'twenty-three thousand nine hundred fifty-seven'), (16578, 88426, 'eighty-eight thousand four hundred twenty-six'), (16579, 76158, 'seventy-six thousand one hundred fifty-eight'), (16580, 16503, 'sixteen thousand five hundred three'), (16581, 97127, 'ninety-seven thousand one hundred twenty-seven'), (16582, 93858, 'ninety-three thousand eight hundred fifty-eight'), (16583, 68715, 'sixty-eight thousand seven hundred fifteen'), (16584, 55142, 'fifty-five thousand one hundred forty-two'), (16585, 56164, 'fifty-six thousand one hundred sixty-four'), (16586, 90967, 'ninety thousand nine hundred sixty-seven'), (16587, 90260, 'ninety thousand two hundred sixty'), (16588, 5762, 'five thousand seven hundred sixty-two'), (16589, 6257, 'six thousand two hundred fifty-seven'), (16590, 81436, 'eighty-one thousand four hundred thirty-six'), (16591, 6830, 'six thousand eight hundred thirty'), (16592, 15419, 'fifteen thousand four hundred nineteen'), (16593, 57242, 'fifty-seven thousand two hundred forty-two'), (16594, 45880, 'forty-five thousand eight hundred eighty'), (16595, 95943, 'ninety-five thousand nine hundred forty-three'), (16596, 58916, 'fifty-eight thousand nine hundred sixteen'), (16597, 39368, 'thirty-nine thousand three hundred sixty-eight'), (16598, 49719, 'forty-nine thousand seven hundred nineteen'), (16599, 71253, 'seventy-one thousand two hundred fifty-three'), (16600, 78996, 'seventy-eight thousand nine hundred ninety-six'), (16601, 85298, 'eighty-five thousand two hundred ninety-eight'), (16602, 29028, 'twenty-nine thousand twenty-eight'), (16603, 9968, 'nine thousand nine hundred sixty-eight'), (16604, 19528, 'nineteen thousand five hundred twenty-eight'), (16605, 97740, 'ninety-seven thousand seven hundred forty'), (16606, 82269, 'eighty-two thousand two hundred sixty-nine'), (16607, 31525, 'thirty-one thousand five hundred twenty-five'), (16608, 84320, 'eighty-four thousand three hundred twenty'), (16609, 32254, 'thirty-two thousand two hundred fifty-four'), (16610, 82210, 'eighty-two thousand two hundred ten'), (16611, 4707, 'four thousand seven hundred seven'), (16612, 88726, 'eighty-eight thousand seven hundred twenty-six'), (16613, 59890, 'fifty-nine thousand eight hundred ninety'), (16614, 48064, 'forty-eight thousand sixty-four'), (16615, 79186, 'seventy-nine thousand one hundred eighty-six'), (16616, 96873, 'ninety-six thousand eight hundred seventy-three'), (16617, 67112, 'sixty-seven thousand one hundred twelve'), (16618, 64281, 'sixty-four thousand two hundred eighty-one'), (16619, 51857, 'fifty-one thousand eight hundred fifty-seven'), (16620, 86019, 'eighty-six thousand nineteen'), (16621, 1557, 'one thousand five hundred fifty-seven'), (16622, 70741, 'seventy thousand seven hundred forty-one'), (16623, 71783, 'seventy-one thousand seven hundred eighty-three'), (16624, 25620, 'twenty-five thousand six hundred twenty'), (16625, 40113, 'forty thousand one hundred thirteen'), (16626, 97310, 'ninety-seven thousand three hundred ten'), (16627, 19707, 'nineteen thousand seven hundred seven'), (16628, 80869, 'eighty thousand eight hundred sixty-nine'), (16629, 73997, 'seventy-three thousand nine hundred ninety-seven'), (16630, 95063, 'ninety-five thousand sixty-three'), (16631, 40131, 'forty thousand one hundred thirty-one'), (16632, 83385, 'eighty-three thousand three hundred eighty-five'), (16633, 17344, 'seventeen thousand three hundred forty-four'), (16634, 81701, 'eighty-one thousand seven hundred one'), (16635, 40864, 'forty thousand eight hundred sixty-four'), (16636, 73484, 'seventy-three thousand four hundred eighty-four'), (16637, 47371, 'forty-seven thousand three hundred seventy-one'), (16638, 13680, 'thirteen thousand six hundred eighty'), (16639, 58944, 'fifty-eight thousand nine hundred forty-four'), (16640, 48766, 'forty-eight thousand seven hundred sixty-six'), (16641, 56983, 'fifty-six thousand nine hundred eighty-three'), (16642, 49063, 'forty-nine thousand sixty-three'), (16643, 35055, 'thirty-five thousand fifty-five'), (16644, 16333, 'sixteen thousand three hundred thirty-three'), (16645, 2595, 'two thousand five hundred ninety-five'), (16646, 74693, 'seventy-four thousand six hundred ninety-three'), (16647, 23070, 'twenty-three thousand seventy'), (16648, 94879, 'ninety-four thousand eight hundred seventy-nine'), (16649, 78876, 'seventy-eight thousand eight hundred seventy-six'), (16650, 40040, 'forty thousand forty'), (16651, 40327, 'forty thousand three hundred twenty-seven'), (16652, 94773, 'ninety-four thousand seven hundred seventy-three'), (16653, 97894, 'ninety-seven thousand eight hundred ninety-four'), (16654, 28232, 'twenty-eight thousand two hundred thirty-two'), (16655, 41606, 'forty-one thousand six hundred six'), (16656, 58347, 'fifty-eight thousand three hundred forty-seven'), (16657, 70372, 'seventy thousand three hundred seventy-two'), (16658, 2307, 'two thousand three hundred seven'), (16659, 10443, 'ten thousand four hundred forty-three'), (16660, 98569, 'ninety-eight thousand five hundred sixty-nine'), (16661, 64822, 'sixty-four thousand eight hundred twenty-two'), (16662, 4020, 'four thousand twenty'), (16663, 61330, 'sixty-one thousand three hundred thirty'), (16664, 25805, 'twenty-five thousand eight hundred five'), (16665, 85760, 'eighty-five thousand seven hundred sixty'), (16666, 49823, 'forty-nine thousand eight hundred twenty-three'), (16667, 13946, 'thirteen thousand nine hundred forty-six'), (16668, 10774, 'ten thousand seven hundred seventy-four'), (16669, 70412, 'seventy thousand four hundred twelve'), (16670, 75357, 'seventy-five thousand three hundred fifty-seven'), (16671, 40273, 'forty thousand two hundred seventy-three'), (16672, 41325, 'forty-one thousand three hundred twenty-five'), (16673, 80069, 'eighty thousand sixty-nine'), (16674, 79826, 'seventy-nine thousand eight hundred twenty-six'), (16675, 40063, 'forty thousand sixty-three'), (16676, 4729, 'four thousand seven hundred twenty-nine'), (16677, 33520, 'thirty-three thousand five hundred twenty'), (16678, 10896, 'ten thousand eight hundred ninety-six'), (16679, 39604, 'thirty-nine thousand six hundred four'), (16680, 91270, 'ninety-one thousand two hundred seventy'), (16681, 31440, 'thirty-one thousand four hundred forty'), (16682, 67528, 'sixty-seven thousand five hundred twenty-eight'), (16683, 47873, 'forty-seven thousand eight hundred seventy-three'), (16684, 71769, 'seventy-one thousand seven hundred sixty-nine'), (16685, 41492, 'forty-one thousand four hundred ninety-two'), (16686, 23302, 'twenty-three thousand three hundred two'), (16687, 36299, 'thirty-six thousand two hundred ninety-nine'), (16688, 32092, 'thirty-two thousand ninety-two'), (16689, 74985, 'seventy-four thousand nine hundred eighty-five'), (16690, 92065, 'ninety-two thousand sixty-five'), (16691, 18205, 'eighteen thousand two hundred five'), (16692, 94840, 'ninety-four thousand eight hundred forty'), (16693, 41416, 'forty-one thousand four hundred sixteen'), (16694, 88002, 'eighty-eight thousand two'), (16695, 94338, 'ninety-four thousand three hundred thirty-eight'), (16696, 95261, 'ninety-five thousand two hundred sixty-one'), (16697, 50277, 'fifty thousand two hundred seventy-seven'), (16698, 17066, 'seventeen thousand sixty-six'), (16699, 38162, 'thirty-eight thousand one hundred sixty-two'), (16700, 44807, 'forty-four thousand eight hundred seven'), (16701, 10727, 'ten thousand seven hundred twenty-seven'), (16702, 14542, 'fourteen thousand five hundred forty-two'), (16703, 95518, 'ninety-five thousand five hundred eighteen'), (16704, 83077, 'eighty-three thousand seventy-seven'), (16705, 55666, 'fifty-five thousand six hundred sixty-six'), (16706, 25202, 'twenty-five thousand two hundred two'), (16707, 73677, 'seventy-three thousand six hundred seventy-seven'), (16708, 73768, 'seventy-three thousand seven hundred sixty-eight'), (16709, 84851, 'eighty-four thousand eight hundred fifty-one'), (16710, 37636, 'thirty-seven thousand six hundred thirty-six'), (16711, 18429, 'eighteen thousand four hundred twenty-nine'), (16712, 71339, 'seventy-one thousand three hundred thirty-nine'), (16713, 55770, 'fifty-five thousand seven hundred seventy'), (16714, 9861, 'nine thousand eight hundred sixty-one'), (16715, 17973, 'seventeen thousand nine hundred seventy-three'), (16716, 38438, 'thirty-eight thousand four hundred thirty-eight'), (16717, 67855, 'sixty-seven thousand eight hundred fifty-five'), (16718, 40450, 'forty thousand four hundred fifty'), (16719, 40228, 'forty thousand two hundred twenty-eight'), (16720, 75986, 'seventy-five thousand nine hundred eighty-six'), (16721, 4348, 'four thousand three hundred forty-eight'), (16722, 80956, 'eighty thousand nine hundred fifty-six'), (16723, 72242, 'seventy-two thousand two hundred forty-two'), (16724, 50975, 'fifty thousand nine hundred seventy-five'), (16725, 66261, 'sixty-six thousand two hundred sixty-one'), (16726, 74527, 'seventy-four thousand five hundred twenty-seven'), (16727, 73247, 'seventy-three thousand two hundred forty-seven'), (16728, 39306, 'thirty-nine thousand three hundred six'), (16729, 77488, 'seventy-seven thousand four hundred eighty-eight'), (16730, 46180, 'forty-six thousand one hundred eighty'), (16731, 41076, 'forty-one thousand seventy-six'), (16732, 20270, 'twenty thousand two hundred seventy'), (16733, 81210, 'eighty-one thousand two hundred ten'), (16734, 8430, 'eight thousand four hundred thirty'), (16735, 43882, 'forty-three thousand eight hundred eighty-two'), (16736, 88178, 'eighty-eight thousand one hundred seventy-eight'), (16737, 1745, 'one thousand seven hundred forty-five'), (16738, 50680, 'fifty thousand six hundred eighty'), (16739, 30272, 'thirty thousand two hundred seventy-two'), (16740, 42171, 'forty-two thousand one hundred seventy-one'), (16741, 15460, 'fifteen thousand four hundred sixty'), (16742, 15161, 'fifteen thousand one hundred sixty-one'), (16743, 20855, 'twenty thousand eight hundred fifty-five'), (16744, 38718, 'thirty-eight thousand seven hundred eighteen'), (16745, 4495, 'four thousand four hundred ninety-five'), (16746, 25727, 'twenty-five thousand seven hundred twenty-seven'), (16747, 77573, 'seventy-seven thousand five hundred seventy-three'), (16748, 161, 'one hundred sixty-one'), (16749, 91763, 'ninety-one thousand seven hundred sixty-three'), (16750, 96121, 'ninety-six thousand one hundred twenty-one'), (16751, 94514, 'ninety-four thousand five hundred fourteen'), (16752, 84448, 'eighty-four thousand four hundred forty-eight'), (16753, 54246, 'fifty-four thousand two hundred forty-six'), (16754, 70057, 'seventy thousand fifty-seven'), (16755, 1893, 'one thousand eight hundred ninety-three'), (16756, 65360, 'sixty-five thousand three hundred sixty'), (16757, 68082, 'sixty-eight thousand eighty-two'), (16758, 94486, 'ninety-four thousand four hundred eighty-six'), (16759, 16424, 'sixteen thousand four hundred twenty-four'), (16760, 8171, 'eight thousand one hundred seventy-one'), (16761, 66650, 'sixty-six thousand six hundred fifty'), (16762, 57761, 'fifty-seven thousand seven hundred sixty-one'), (16763, 81716, 'eighty-one thousand seven hundred sixteen'), (16764, 20959, 'twenty thousand nine hundred fifty-nine'), (16765, 64886, 'sixty-four thousand eight hundred eighty-six'), (16766, 11942, 'eleven thousand nine hundred forty-two'), (16767, 43713, 'forty-three thousand seven hundred thirteen'), (16768, 27009, 'twenty-seven thousand nine'), (16769, 65097, 'sixty-five thousand ninety-seven'), (16770, 224, 'two hundred twenty-four'), (16771, 68279, 'sixty-eight thousand two hundred seventy-nine'), (16772, 75585, 'seventy-five thousand five hundred eighty-five'), (16773, 25412, 'twenty-five thousand four hundred twelve'), (16774, 8120, 'eight thousand one hundred twenty'), (16775, 77387, 'seventy-seven thousand three hundred eighty-seven'), (16776, 55274, 'fifty-five thousand two hundred seventy-four'), (16777, 98376, 'ninety-eight thousand three hundred seventy-six'), (16778, 32920, 'thirty-two thousand nine hundred twenty'), (16779, 9442, 'nine thousand four hundred forty-two'), (16780, 47345, 'forty-seven thousand three hundred forty-five'), (16781, 80701, 'eighty thousand seven hundred one'), (16782, 81536, 'eighty-one thousand five hundred thirty-six'), (16783, 24773, 'twenty-four thousand seven hundred seventy-three'), (16784, 43372, 'forty-three thousand three hundred seventy-two'), (16785, 98513, 'ninety-eight thousand five hundred thirteen'), (16786, 75910, 'seventy-five thousand nine hundred ten'), (16787, 43921, 'forty-three thousand nine hundred twenty-one'), (16788, 67223, 'sixty-seven thousand two hundred twenty-three'), (16789, 16180, 'sixteen thousand one hundred eighty'), (16790, 5120, 'five thousand one hundred twenty'), (16791, 33007, 'thirty-three thousand seven'), (16792, 16289, 'sixteen thousand two hundred eighty-nine'), (16793, 9307, 'nine thousand three hundred seven'), (16794, 99746, 'ninety-nine thousand seven hundred forty-six'), (16795, 4384, 'four thousand three hundred eighty-four'), (16796, 34029, 'thirty-four thousand twenty-nine'), (16797, 52498, 'fifty-two thousand four hundred ninety-eight'), (16798, 25558, 'twenty-five thousand five hundred fifty-eight'), (16799, 45698, 'forty-five thousand six hundred ninety-eight'), (16800, 46660, 'forty-six thousand six hundred sixty'), (16801, 62847, 'sixty-two thousand eight hundred forty-seven'), (16802, 87048, 'eighty-seven thousand forty-eight'), (16803, 36782, 'thirty-six thousand seven hundred eighty-two'), (16804, 29840, 'twenty-nine thousand eight hundred forty'), (16805, 87985, 'eighty-seven thousand nine hundred eighty-five'), (16806, 49742, 'forty-nine thousand seven hundred forty-two'), (16807, 45591, 'forty-five thousand five hundred ninety-one'), (16808, 88951, 'eighty-eight thousand nine hundred fifty-one'), (16809, 91650, 'ninety-one thousand six hundred fifty'), (16810, 5211, 'five thousand two hundred eleven'), (16811, 72990, 'seventy-two thousand nine hundred ninety'), (16812, 11207, 'eleven thousand two hundred seven'), (16813, 75821, 'seventy-five thousand eight hundred twenty-one'), (16814, 80781, 'eighty thousand seven hundred eighty-one'), (16815, 81383, 'eighty-one thousand three hundred eighty-three'), (16816, 54858, 'fifty-four thousand eight hundred fifty-eight'), (16817, 23954, 'twenty-three thousand nine hundred fifty-four'), (16818, 16825, 'sixteen thousand eight hundred twenty-five'), (16819, 20043, 'twenty thousand forty-three'), (16820, 25323, 'twenty-five thousand three hundred twenty-three'), (16821, 88853, 'eighty-eight thousand eight hundred fifty-three'), (16822, 66251, 'sixty-six thousand two hundred fifty-one'), (16823, 53299, 'fifty-three thousand two hundred ninety-nine'), (16824, 73133, 'seventy-three thousand one hundred thirty-three'), (16825, 54252, 'fifty-four thousand two hundred fifty-two'), (16826, 42210, 'forty-two thousand two hundred ten'), (16827, 1008, 'one thousand eight'), (16828, 88511, 'eighty-eight thousand five hundred eleven'), (16829, 94909, 'ninety-four thousand nine hundred nine'), (16830, 90538, 'ninety thousand five hundred thirty-eight'), (16831, 5984, 'five thousand nine hundred eighty-four'), (16832, 64051, 'sixty-four thousand fifty-one'), (16833, 93119, 'ninety-three thousand one hundred nineteen'), (16834, 2658, 'two thousand six hundred fifty-eight'), (16835, 5181, 'five thousand one hundred eighty-one'), (16836, 6647, 'six thousand six hundred forty-seven'), (16837, 13864, 'thirteen thousand eight hundred sixty-four'), (16838, 21195, 'twenty-one thousand one hundred ninety-five'), (16839, 31379, 'thirty-one thousand three hundred seventy-nine'), (16840, 20884, 'twenty thousand eight hundred eighty-four'), (16841, 31841, 'thirty-one thousand eight hundred forty-one'), (16842, 17804, 'seventeen thousand eight hundred four'), (16843, 34418, 'thirty-four thousand four hundred eighteen'), (16844, 81012, 'eighty-one thousand twelve'), (16845, 34202, 'thirty-four thousand two hundred two'), (16846, 41365, 'forty-one thousand three hundred sixty-five'), (16847, 57005, 'fifty-seven thousand five'), (16848, 13783, 'thirteen thousand seven hundred eighty-three'), (16849, 26317, 'twenty-six thousand three hundred seventeen'), (16850, 15735, 'fifteen thousand seven hundred thirty-five'), (16851, 52702, 'fifty-two thousand seven hundred two'), (16852, 46999, 'forty-six thousand nine hundred ninety-nine'), (16853, 17673, 'seventeen thousand six hundred seventy-three'), (16854, 34843, 'thirty-four thousand eight hundred forty-three'), (16855, 91000, 'ninety-one thousand'), (16856, 23654, 'twenty-three thousand six hundred fifty-four'), (16857, 39864, 'thirty-nine thousand eight hundred sixty-four'), (16858, 36335, 'thirty-six thousand three hundred thirty-five'), (16859, 62564, 'sixty-two thousand five hundred sixty-four'), (16860, 10970, 'ten thousand nine hundred seventy'), (16861, 54194, 'fifty-four thousand one hundred ninety-four'), (16862, 7003, 'seven thousand three'), (16863, 42238, 'forty-two thousand two hundred thirty-eight'), (16864, 86694, 'eighty-six thousand six hundred ninety-four'), (16865, 76589, 'seventy-six thousand five hundred eighty-nine'), (16866, 2153, 'two thousand one hundred fifty-three'), (16867, 5233, 'five thousand two hundred thirty-three'), (16868, 51793, 'fifty-one thousand seven hundred ninety-three'), (16869, 88978, 'eighty-eight thousand nine hundred seventy-eight'), (16870, 21437, 'twenty-one thousand four hundred thirty-seven'), (16871, 49746, 'forty-nine thousand seven hundred forty-six'), (16872, 75343, 'seventy-five thousand three hundred forty-three'), (16873, 84019, 'eighty-four thousand nineteen'), (16874, 5524, 'five thousand five hundred twenty-four'), (16875, 92466, 'ninety-two thousand four hundred sixty-six'), (16876, 94043, 'ninety-four thousand forty-three'), (16877, 41692, 'forty-one thousand six hundred ninety-two'), (16878, 60075, 'sixty thousand seventy-five'), (16879, 57777, 'fifty-seven thousand seven hundred seventy-seven'), (16880, 63361, 'sixty-three thousand three hundred sixty-one'), (16881, 12691, 'twelve thousand six hundred ninety-one'), (16882, 35852, 'thirty-five thousand eight hundred fifty-two'), (16883, 89924, 'eighty-nine thousand nine hundred twenty-four'), (16884, 37922, 'thirty-seven thousand nine hundred twenty-two'), (16885, 19978, 'nineteen thousand nine hundred seventy-eight'), (16886, 69874, 'sixty-nine thousand eight hundred seventy-four'), (16887, 37673, 'thirty-seven thousand six hundred seventy-three'), (16888, 47718, 'forty-seven thousand seven hundred eighteen'), (16889, 81335, 'eighty-one thousand three hundred thirty-five'), (16890, 20094, 'twenty thousand ninety-four'), (16891, 39051, 'thirty-nine thousand fifty-one'), (16892, 87785, 'eighty-seven thousand seven hundred eighty-five'), (16893, 3777, 'three thousand seven hundred seventy-seven'), (16894, 48554, 'forty-eight thousand five hundred fifty-four'), (16895, 55848, 'fifty-five thousand eight hundred forty-eight'), (16896, 65128, 'sixty-five thousand one hundred twenty-eight'), (16897, 866, 'eight hundred sixty-six'), (16898, 91552, 'ninety-one thousand five hundred fifty-two'), (16899, 42745, 'forty-two thousand seven hundred forty-five'), (16900, 44360, 'forty-four thousand three hundred sixty'), (16901, 76329, 'seventy-six thousand three hundred twenty-nine'), (16902, 39101, 'thirty-nine thousand one hundred one'), (16903, 87458, 'eighty-seven thousand four hundred fifty-eight'), (16904, 11345, 'eleven thousand three hundred forty-five'), (16905, 60509, 'sixty thousand five hundred nine'), (16906, 65765, 'sixty-five thousand seven hundred sixty-five'), (16907, 1938, 'one thousand nine hundred thirty-eight'), (16908, 51533, 'fifty-one thousand five hundred thirty-three'), (16909, 51167, 'fifty-one thousand one hundred sixty-seven'), (16910, 32618, 'thirty-two thousand six hundred eighteen'), (16911, 2213, 'two thousand two hundred thirteen'), (16912, 90188, 'ninety thousand one hundred eighty-eight'), (16913, 33544, 'thirty-three thousand five hundred forty-four'), (16914, 36602, 'thirty-six thousand six hundred two'), (16915, 59814, 'fifty-nine thousand eight hundred fourteen'), (16916, 58502, 'fifty-eight thousand five hundred two'), (16917, 14464, 'fourteen thousand four hundred sixty-four'), (16918, 60101, 'sixty thousand one hundred one'), (16919, 54040, 'fifty-four thousand forty'), (16920, 90217, 'ninety thousand two hundred seventeen'), (16921, 29392, 'twenty-nine thousand three hundred ninety-two'), (16922, 91626, 'ninety-one thousand six hundred twenty-six'), (16923, 75991, 'seventy-five thousand nine hundred ninety-one'), (16924, 15585, 'fifteen thousand five hundred eighty-five'), (16925, 64082, 'sixty-four thousand eighty-two'), (16926, 38232, 'thirty-eight thousand two hundred thirty-two'), (16927, 11196, 'eleven thousand one hundred ninety-six'), (16928, 30689, 'thirty thousand six hundred eighty-nine'), (16929, 28855, 'twenty-eight thousand eight hundred fifty-five'), (16930, 32059, 'thirty-two thousand fifty-nine'), (16931, 91177, 'ninety-one thousand one hundred seventy-seven'), (16932, 53387, 'fifty-three thousand three hundred eighty-seven'), (16933, 42930, 'forty-two thousand nine hundred thirty'), (16934, 27797, 'twenty-seven thousand seven hundred ninety-seven'), (16935, 41899, 'forty-one thousand eight hundred ninety-nine'), (16936, 77488, 'seventy-seven thousand four hundred eighty-eight'), (16937, 79068, 'seventy-nine thousand sixty-eight'), (16938, 47908, 'forty-seven thousand nine hundred eight'), (16939, 19993, 'nineteen thousand nine hundred ninety-three'), (16940, 58154, 'fifty-eight thousand one hundred fifty-four'), (16941, 4725, 'four thousand seven hundred twenty-five'), (16942, 36570, 'thirty-six thousand five hundred seventy'), (16943, 6516, 'six thousand five hundred sixteen'), (16944, 7855, 'seven thousand eight hundred fifty-five'), (16945, 47358, 'forty-seven thousand three hundred fifty-eight'), (16946, 99510, 'ninety-nine thousand five hundred ten'), (16947, 81640, 'eighty-one thousand six hundred forty'), (16948, 76124, 'seventy-six thousand one hundred twenty-four'), (16949, 21127, 'twenty-one thousand one hundred twenty-seven'), (16950, 23642, 'twenty-three thousand six hundred forty-two'), (16951, 34613, 'thirty-four thousand six hundred thirteen'), (16952, 12952, 'twelve thousand nine hundred fifty-two'), (16953, 30383, 'thirty thousand three hundred eighty-three'), (16954, 76084, 'seventy-six thousand eighty-four'), (16955, 32886, 'thirty-two thousand eight hundred eighty-six'), (16956, 82780, 'eighty-two thousand seven hundred eighty'), (16957, 23413, 'twenty-three thousand four hundred thirteen'), (16958, 70806, 'seventy thousand eight hundred six'), (16959, 10306, 'ten thousand three hundred six'), (16960, 96443, 'ninety-six thousand four hundred forty-three'), (16961, 26933, 'twenty-six thousand nine hundred thirty-three'), (16962, 34535, 'thirty-four thousand five hundred thirty-five'), (16963, 60531, 'sixty thousand five hundred thirty-one'), (16964, 67857, 'sixty-seven thousand eight hundred fifty-seven'), (16965, 25588, 'twenty-five thousand five hundred eighty-eight'), (16966, 93291, 'ninety-three thousand two hundred ninety-one'), (16967, 75840, 'seventy-five thousand eight hundred forty'), (16968, 54350, 'fifty-four thousand three hundred fifty'), (16969, 9060, 'nine thousand sixty'), (16970, 21383, 'twenty-one thousand three hundred eighty-three'), (16971, 77407, 'seventy-seven thousand four hundred seven'), (16972, 70534, 'seventy thousand five hundred thirty-four'), (16973, 6166, 'six thousand one hundred sixty-six'), (16974, 27907, 'twenty-seven thousand nine hundred seven'), (16975, 14888, 'fourteen thousand eight hundred eighty-eight'), (16976, 91496, 'ninety-one thousand four hundred ninety-six'), (16977, 74124, 'seventy-four thousand one hundred twenty-four'), (16978, 38036, 'thirty-eight thousand thirty-six'), (16979, 31916, 'thirty-one thousand nine hundred sixteen'), (16980, 81656, 'eighty-one thousand six hundred fifty-six'), (16981, 33247, 'thirty-three thousand two hundred forty-seven'), (16982, 10253, 'ten thousand two hundred fifty-three'), (16983, 66230, 'sixty-six thousand two hundred thirty'), (16984, 9165, 'nine thousand one hundred sixty-five'), (16985, 2763, 'two thousand seven hundred sixty-three'), (16986, 63257, 'sixty-three thousand two hundred fifty-seven'), (16987, 51111, 'fifty-one thousand one hundred eleven'), (16988, 93673, 'ninety-three thousand six hundred seventy-three'), (16989, 65158, 'sixty-five thousand one hundred fifty-eight'), (16990, 25098, 'twenty-five thousand ninety-eight'), (16991, 41649, 'forty-one thousand six hundred forty-nine'), (16992, 92139, 'ninety-two thousand one hundred thirty-nine'), (16993, 68270, 'sixty-eight thousand two hundred seventy'), (16994, 89759, 'eighty-nine thousand seven hundred fifty-nine'), (16995, 58740, 'fifty-eight thousand seven hundred forty'), (16996, 28522, 'twenty-eight thousand five hundred twenty-two'), (16997, 65057, 'sixty-five thousand fifty-seven'), (16998, 75102, 'seventy-five thousand one hundred two'), (16999, 95953, 'ninety-five thousand nine hundred fifty-three'), (17000, 2106, 'two thousand one hundred six'), (17001, 63494, 'sixty-three thousand four hundred ninety-four'), (17002, 35242, 'thirty-five thousand two hundred forty-two'), (17003, 97552, 'ninety-seven thousand five hundred fifty-two'), (17004, 56337, 'fifty-six thousand three hundred thirty-seven'), (17005, 82048, 'eighty-two thousand forty-eight'), (17006, 62080, 'sixty-two thousand eighty'), (17007, 60988, 'sixty thousand nine hundred eighty-eight'), (17008, 97047, 'ninety-seven thousand forty-seven'), (17009, 81550, 'eighty-one thousand five hundred fifty'), (17010, 46611, 'forty-six thousand six hundred eleven'), (17011, 53479, 'fifty-three thousand four hundred seventy-nine'), (17012, 60548, 'sixty thousand five hundred forty-eight'), (17013, 92466, 'ninety-two thousand four hundred sixty-six'), (17014, 21052, 'twenty-one thousand fifty-two'), (17015, 49849, 'forty-nine thousand eight hundred forty-nine'), (17016, 34225, 'thirty-four thousand two hundred twenty-five'), (17017, 39376, 'thirty-nine thousand three hundred seventy-six'), (17018, 4686, 'four thousand six hundred eighty-six'), (17019, 81570, 'eighty-one thousand five hundred seventy'), (17020, 46477, 'forty-six thousand four hundred seventy-seven'), (17021, 77972, 'seventy-seven thousand nine hundred seventy-two'), (17022, 39055, 'thirty-nine thousand fifty-five'), (17023, 95375, 'ninety-five thousand three hundred seventy-five'), (17024, 91815, 'ninety-one thousand eight hundred fifteen'), (17025, 735, 'seven hundred thirty-five'), (17026, 43397, 'forty-three thousand three hundred ninety-seven'), (17027, 45161, 'forty-five thousand one hundred sixty-one'), (17028, 39624, 'thirty-nine thousand six hundred twenty-four'), (17029, 16783, 'sixteen thousand seven hundred eighty-three'), (17030, 19972, 'nineteen thousand nine hundred seventy-two'), (17031, 52155, 'fifty-two thousand one hundred fifty-five'), (17032, 4652, 'four thousand six hundred fifty-two'), (17033, 39468, 'thirty-nine thousand four hundred sixty-eight'), (17034, 68683, 'sixty-eight thousand six hundred eighty-three'), (17035, 81991, 'eighty-one thousand nine hundred ninety-one'), (17036, 15181, 'fifteen thousand one hundred eighty-one'), (17037, 27494, 'twenty-seven thousand four hundred ninety-four'), (17038, 71154, 'seventy-one thousand one hundred fifty-four'), (17039, 11199, 'eleven thousand one hundred ninety-nine'), (17040, 62844, 'sixty-two thousand eight hundred forty-four'), (17041, 15174, 'fifteen thousand one hundred seventy-four'), (17042, 32416, 'thirty-two thousand four hundred sixteen'), (17043, 70650, 'seventy thousand six hundred fifty'), (17044, 18574, 'eighteen thousand five hundred seventy-four'), (17045, 22158, 'twenty-two thousand one hundred fifty-eight'), (17046, 49011, 'forty-nine thousand eleven'), (17047, 30590, 'thirty thousand five hundred ninety'), (17048, 24304, 'twenty-four thousand three hundred four'), (17049, 81443, 'eighty-one thousand four hundred forty-three'), (17050, 2895, 'two thousand eight hundred ninety-five'), (17051, 85918, 'eighty-five thousand nine hundred eighteen'), (17052, 38673, 'thirty-eight thousand six hundred seventy-three'), (17053, 19919, 'nineteen thousand nine hundred nineteen'), (17054, 31687, 'thirty-one thousand six hundred eighty-seven'), (17055, 78710, 'seventy-eight thousand seven hundred ten'), (17056, 58359, 'fifty-eight thousand three hundred fifty-nine'), (17057, 16313, 'sixteen thousand three hundred thirteen'), (17058, 51524, 'fifty-one thousand five hundred twenty-four'), (17059, 94909, 'ninety-four thousand nine hundred nine'), (17060, 97295, 'ninety-seven thousand two hundred ninety-five'), (17061, 22096, 'twenty-two thousand ninety-six'), (17062, 54751, 'fifty-four thousand seven hundred fifty-one'), (17063, 42063, 'forty-two thousand sixty-three'), (17064, 91707, 'ninety-one thousand seven hundred seven'), (17065, 28529, 'twenty-eight thousand five hundred twenty-nine'), (17066, 98122, 'ninety-eight thousand one hundred twenty-two'), (17067, 29868, 'twenty-nine thousand eight hundred sixty-eight'), (17068, 35526, 'thirty-five thousand five hundred twenty-six'), (17069, 59778, 'fifty-nine thousand seven hundred seventy-eight'), (17070, 22656, 'twenty-two thousand six hundred fifty-six'), (17071, 93149, 'ninety-three thousand one hundred forty-nine'), (17072, 63377, 'sixty-three thousand three hundred seventy-seven'), (17073, 93865, 'ninety-three thousand eight hundred sixty-five'), (17074, 14180, 'fourteen thousand one hundred eighty'), (17075, 34188, 'thirty-four thousand one hundred eighty-eight'), (17076, 89235, 'eighty-nine thousand two hundred thirty-five'), (17077, 93828, 'ninety-three thousand eight hundred twenty-eight'), (17078, 7899, 'seven thousand eight hundred ninety-nine'), (17079, 98138, 'ninety-eight thousand one hundred thirty-eight'), (17080, 80323, 'eighty thousand three hundred twenty-three'), (17081, 53807, 'fifty-three thousand eight hundred seven'), (17082, 20562, 'twenty thousand five hundred sixty-two'), (17083, 58572, 'fifty-eight thousand five hundred seventy-two'), (17084, 46951, 'forty-six thousand nine hundred fifty-one'), (17085, 90458, 'ninety thousand four hundred fifty-eight'), (17086, 59746, 'fifty-nine thousand seven hundred forty-six'), (17087, 98561, 'ninety-eight thousand five hundred sixty-one'), (17088, 36478, 'thirty-six thousand four hundred seventy-eight'), (17089, 45280, 'forty-five thousand two hundred eighty'), (17090, 12372, 'twelve thousand three hundred seventy-two'), (17091, 60392, 'sixty thousand three hundred ninety-two'), (17092, 62, 'sixty-two'), (17093, 99396, 'ninety-nine thousand three hundred ninety-six'), (17094, 67809, 'sixty-seven thousand eight hundred nine'), (17095, 48807, 'forty-eight thousand eight hundred seven'), (17096, 72405, 'seventy-two thousand four hundred five'), (17097, 57368, 'fifty-seven thousand three hundred sixty-eight'), (17098, 69057, 'sixty-nine thousand fifty-seven'), (17099, 15945, 'fifteen thousand nine hundred forty-five'), (17100, 43936, 'forty-three thousand nine hundred thirty-six'), (17101, 89880, 'eighty-nine thousand eight hundred eighty'), (17102, 21105, 'twenty-one thousand one hundred five'), (17103, 87808, 'eighty-seven thousand eight hundred eight'), (17104, 55528, 'fifty-five thousand five hundred twenty-eight'), (17105, 89706, 'eighty-nine thousand seven hundred six'), (17106, 81463, 'eighty-one thousand four hundred sixty-three'), (17107, 78574, 'seventy-eight thousand five hundred seventy-four'), (17108, 52927, 'fifty-two thousand nine hundred twenty-seven'), (17109, 93016, 'ninety-three thousand sixteen'), (17110, 3222, 'three thousand two hundred twenty-two'), (17111, 18419, 'eighteen thousand four hundred nineteen'), (17112, 95128, 'ninety-five thousand one hundred twenty-eight'), (17113, 64838, 'sixty-four thousand eight hundred thirty-eight'), (17114, 69028, 'sixty-nine thousand twenty-eight'), (17115, 78468, 'seventy-eight thousand four hundred sixty-eight'), (17116, 6485, 'six thousand four hundred eighty-five'), (17117, 55154, 'fifty-five thousand one hundred fifty-four'), (17118, 73539, 'seventy-three thousand five hundred thirty-nine'), (17119, 33698, 'thirty-three thousand six hundred ninety-eight'), (17120, 83939, 'eighty-three thousand nine hundred thirty-nine'), (17121, 14141, 'fourteen thousand one hundred forty-one'), (17122, 86954, 'eighty-six thousand nine hundred fifty-four'), (17123, 8303, 'eight thousand three hundred three'), (17124, 55917, 'fifty-five thousand nine hundred seventeen'), (17125, 9175, 'nine thousand one hundred seventy-five'), (17126, 96897, 'ninety-six thousand eight hundred ninety-seven'), (17127, 68871, 'sixty-eight thousand eight hundred seventy-one'), (17128, 10538, 'ten thousand five hundred thirty-eight'), (17129, 73302, 'seventy-three thousand three hundred two'), (17130, 34807, 'thirty-four thousand eight hundred seven'), (17131, 17621, 'seventeen thousand six hundred twenty-one'), (17132, 4673, 'four thousand six hundred seventy-three'), (17133, 90590, 'ninety thousand five hundred ninety'), (17134, 25996, 'twenty-five thousand nine hundred ninety-six'), (17135, 33932, 'thirty-three thousand nine hundred thirty-two'), (17136, 40592, 'forty thousand five hundred ninety-two'), (17137, 95991, 'ninety-five thousand nine hundred ninety-one'), (17138, 91788, 'ninety-one thousand seven hundred eighty-eight'), (17139, 41981, 'forty-one thousand nine hundred eighty-one'), (17140, 65715, 'sixty-five thousand seven hundred fifteen'), (17141, 22104, 'twenty-two thousand one hundred four'), (17142, 53630, 'fifty-three thousand six hundred thirty'), (17143, 54650, 'fifty-four thousand six hundred fifty'), (17144, 36936, 'thirty-six thousand nine hundred thirty-six'), (17145, 93432, 'ninety-three thousand four hundred thirty-two'), (17146, 24318, 'twenty-four thousand three hundred eighteen'), (17147, 92624, 'ninety-two thousand six hundred twenty-four'), (17148, 10678, 'ten thousand six hundred seventy-eight'), (17149, 79128, 'seventy-nine thousand one hundred twenty-eight'), (17150, 59929, 'fifty-nine thousand nine hundred twenty-nine'), (17151, 9996, 'nine thousand nine hundred ninety-six'), (17152, 50132, 'fifty thousand one hundred thirty-two'), (17153, 4093, 'four thousand ninety-three'), (17154, 76092, 'seventy-six thousand ninety-two'), (17155, 34664, 'thirty-four thousand six hundred sixty-four'), (17156, 21112, 'twenty-one thousand one hundred twelve'), (17157, 55122, 'fifty-five thousand one hundred twenty-two'), (17158, 59103, 'fifty-nine thousand one hundred three'), (17159, 87026, 'eighty-seven thousand twenty-six'), (17160, 65022, 'sixty-five thousand twenty-two'), (17161, 27318, 'twenty-seven thousand three hundred eighteen'), (17162, 17662, 'seventeen thousand six hundred sixty-two'), (17163, 46278, 'forty-six thousand two hundred seventy-eight'), (17164, 77712, 'seventy-seven thousand seven hundred twelve'), (17165, 53207, 'fifty-three thousand two hundred seven'), (17166, 23658, 'twenty-three thousand six hundred fifty-eight'), (17167, 26472, 'twenty-six thousand four hundred seventy-two'), (17168, 67377, 'sixty-seven thousand three hundred seventy-seven'), (17169, 888, 'eight hundred eighty-eight'), (17170, 8775, 'eight thousand seven hundred seventy-five'), (17171, 58278, 'fifty-eight thousand two hundred seventy-eight'), (17172, 48347, 'forty-eight thousand three hundred forty-seven'), (17173, 76870, 'seventy-six thousand eight hundred seventy'), (17174, 65663, 'sixty-five thousand six hundred sixty-three'), (17175, 90062, 'ninety thousand sixty-two'), (17176, 8813, 'eight thousand eight hundred thirteen'), (17177, 37052, 'thirty-seven thousand fifty-two'), (17178, 72063, 'seventy-two thousand sixty-three'), (17179, 10988, 'ten thousand nine hundred eighty-eight'), (17180, 3149, 'three thousand one hundred forty-nine'), (17181, 33735, 'thirty-three thousand seven hundred thirty-five'), (17182, 87434, 'eighty-seven thousand four hundred thirty-four'), (17183, 8757, 'eight thousand seven hundred fifty-seven'), (17184, 95461, 'ninety-five thousand four hundred sixty-one'), (17185, 56422, 'fifty-six thousand four hundred twenty-two'), (17186, 91783, 'ninety-one thousand seven hundred eighty-three'), (17187, 10699, 'ten thousand six hundred ninety-nine'), (17188, 21675, 'twenty-one thousand six hundred seventy-five'), (17189, 53553, 'fifty-three thousand five hundred fifty-three'), (17190, 88533, 'eighty-eight thousand five hundred thirty-three'), (17191, 2480, 'two thousand four hundred eighty'), (17192, 38926, 'thirty-eight thousand nine hundred twenty-six'), (17193, 65269, 'sixty-five thousand two hundred sixty-nine'), (17194, 26628, 'twenty-six thousand six hundred twenty-eight'), (17195, 32774, 'thirty-two thousand seven hundred seventy-four'), (17196, 46194, 'forty-six thousand one hundred ninety-four'), (17197, 96839, 'ninety-six thousand eight hundred thirty-nine'), (17198, 91090, 'ninety-one thousand ninety'), (17199, 8269, 'eight thousand two hundred sixty-nine'), (17200, 63390, 'sixty-three thousand three hundred ninety'), (17201, 83483, 'eighty-three thousand four hundred eighty-three'), (17202, 47181, 'forty-seven thousand one hundred eighty-one'), (17203, 13357, 'thirteen thousand three hundred fifty-seven'), (17204, 98189, 'ninety-eight thousand one hundred eighty-nine'), (17205, 78812, 'seventy-eight thousand eight hundred twelve'), (17206, 14344, 'fourteen thousand three hundred forty-four'), (17207, 84390, 'eighty-four thousand three hundred ninety'), (17208, 14158, 'fourteen thousand one hundred fifty-eight'), (17209, 93841, 'ninety-three thousand eight hundred forty-one'), (17210, 21158, 'twenty-one thousand one hundred fifty-eight'), (17211, 50851, 'fifty thousand eight hundred fifty-one'), (17212, 70584, 'seventy thousand five hundred eighty-four'), (17213, 85215, 'eighty-five thousand two hundred fifteen'), (17214, 82167, 'eighty-two thousand one hundred sixty-seven'), (17215, 41063, 'forty-one thousand sixty-three'), (17216, 93141, 'ninety-three thousand one hundred forty-one'), (17217, 84600, 'eighty-four thousand six hundred'), (17218, 49293, 'forty-nine thousand two hundred ninety-three'), (17219, 33538, 'thirty-three thousand five hundred thirty-eight'), (17220, 30856, 'thirty thousand eight hundred fifty-six'), (17221, 48479, 'forty-eight thousand four hundred seventy-nine'), (17222, 13694, 'thirteen thousand six hundred ninety-four'), (17223, 76600, 'seventy-six thousand six hundred'), (17224, 59023, 'fifty-nine thousand twenty-three'), (17225, 54963, 'fifty-four thousand nine hundred sixty-three'), (17226, 39854, 'thirty-nine thousand eight hundred fifty-four'), (17227, 40256, 'forty thousand two hundred fifty-six'), (17228, 28092, 'twenty-eight thousand ninety-two'), (17229, 27349, 'twenty-seven thousand three hundred forty-nine'), (17230, 47690, 'forty-seven thousand six hundred ninety'), (17231, 46433, 'forty-six thousand four hundred thirty-three'), (17232, 41026, 'forty-one thousand twenty-six'), (17233, 53599, 'fifty-three thousand five hundred ninety-nine'), (17234, 30550, 'thirty thousand five hundred fifty'), (17235, 61934, 'sixty-one thousand nine hundred thirty-four'), (17236, 53803, 'fifty-three thousand eight hundred three'), (17237, 91617, 'ninety-one thousand six hundred seventeen'), (17238, 53567, 'fifty-three thousand five hundred sixty-seven'), (17239, 64500, 'sixty-four thousand five hundred'), (17240, 98670, 'ninety-eight thousand six hundred seventy'), (17241, 17892, 'seventeen thousand eight hundred ninety-two'), (17242, 27127, 'twenty-seven thousand one hundred twenty-seven'), (17243, 96444, 'ninety-six thousand four hundred forty-four'), (17244, 60476, 'sixty thousand four hundred seventy-six'), (17245, 67161, 'sixty-seven thousand one hundred sixty-one'), (17246, 63900, 'sixty-three thousand nine hundred'), (17247, 2094, 'two thousand ninety-four'), (17248, 52811, 'fifty-two thousand eight hundred eleven'), (17249, 74228, 'seventy-four thousand two hundred twenty-eight'), (17250, 37440, 'thirty-seven thousand four hundred forty'), (17251, 89085, 'eighty-nine thousand eighty-five'), (17252, 59547, 'fifty-nine thousand five hundred forty-seven'), (17253, 60700, 'sixty thousand seven hundred'), (17254, 53466, 'fifty-three thousand four hundred sixty-six'), (17255, 66011, 'sixty-six thousand eleven'), (17256, 34632, 'thirty-four thousand six hundred thirty-two'), (17257, 41468, 'forty-one thousand four hundred sixty-eight'), (17258, 94596, 'ninety-four thousand five hundred ninety-six'), (17259, 55601, 'fifty-five thousand six hundred one'), (17260, 5446, 'five thousand four hundred forty-six'), (17261, 88094, 'eighty-eight thousand ninety-four'), (17262, 72755, 'seventy-two thousand seven hundred fifty-five'), (17263, 66707, 'sixty-six thousand seven hundred seven'), (17264, 8056, 'eight thousand fifty-six'), (17265, 30860, 'thirty thousand eight hundred sixty'), (17266, 19647, 'nineteen thousand six hundred forty-seven'), (17267, 77559, 'seventy-seven thousand five hundred fifty-nine'), (17268, 35563, 'thirty-five thousand five hundred sixty-three'), (17269, 46642, 'forty-six thousand six hundred forty-two'), (17270, 99099, 'ninety-nine thousand ninety-nine'), (17271, 9219, 'nine thousand two hundred nineteen'), (17272, 79523, 'seventy-nine thousand five hundred twenty-three'), (17273, 91917, 'ninety-one thousand nine hundred seventeen'), (17274, 60014, 'sixty thousand fourteen'), (17275, 71364, 'seventy-one thousand three hundred sixty-four'), (17276, 557, 'five hundred fifty-seven'), (17277, 28117, 'twenty-eight thousand one hundred seventeen'), (17278, 87812, 'eighty-seven thousand eight hundred twelve'), (17279, 93135, 'ninety-three thousand one hundred thirty-five'), (17280, 18468, 'eighteen thousand four hundred sixty-eight'), (17281, 56091, 'fifty-six thousand ninety-one'), (17282, 72680, 'seventy-two thousand six hundred eighty'), (17283, 75736, 'seventy-five thousand seven hundred thirty-six'), (17284, 83168, 'eighty-three thousand one hundred sixty-eight'), (17285, 86728, 'eighty-six thousand seven hundred twenty-eight'), (17286, 97068, 'ninety-seven thousand sixty-eight'), (17287, 32244, 'thirty-two thousand two hundred forty-four'), (17288, 81858, 'eighty-one thousand eight hundred fifty-eight'), (17289, 23694, 'twenty-three thousand six hundred ninety-four'), (17290, 56352, 'fifty-six thousand three hundred fifty-two'), (17291, 20224, 'twenty thousand two hundred twenty-four'), (17292, 1067, 'one thousand sixty-seven'), (17293, 46648, 'forty-six thousand six hundred forty-eight'), (17294, 56363, 'fifty-six thousand three hundred sixty-three'), (17295, 88953, 'eighty-eight thousand nine hundred fifty-three'), (17296, 43058, 'forty-three thousand fifty-eight'), (17297, 83410, 'eighty-three thousand four hundred ten'), (17298, 97488, 'ninety-seven thousand four hundred eighty-eight'), (17299, 39155, 'thirty-nine thousand one hundred fifty-five'), (17300, 42067, 'forty-two thousand sixty-seven'), (17301, 99319, 'ninety-nine thousand three hundred nineteen'), (17302, 13988, 'thirteen thousand nine hundred eighty-eight'), (17303, 76283, 'seventy-six thousand two hundred eighty-three'), (17304, 19680, 'nineteen thousand six hundred eighty'), (17305, 25786, 'twenty-five thousand seven hundred eighty-six'), (17306, 88533, 'eighty-eight thousand five hundred thirty-three'), (17307, 93832, 'ninety-three thousand eight hundred thirty-two'), (17308, 84794, 'eighty-four thousand seven hundred ninety-four'), (17309, 71713, 'seventy-one thousand seven hundred thirteen'), (17310, 76074, 'seventy-six thousand seventy-four'), (17311, 17658, 'seventeen thousand six hundred fifty-eight'), (17312, 67593, 'sixty-seven thousand five hundred ninety-three'), (17313, 13007, 'thirteen thousand seven'), (17314, 63949, 'sixty-three thousand nine hundred forty-nine'), (17315, 82744, 'eighty-two thousand seven hundred forty-four'), (17316, 65270, 'sixty-five thousand two hundred seventy'), (17317, 43890, 'forty-three thousand eight hundred ninety'), (17318, 49784, 'forty-nine thousand seven hundred eighty-four'), (17319, 18125, 'eighteen thousand one hundred twenty-five'), (17320, 75522, 'seventy-five thousand five hundred twenty-two'), (17321, 18754, 'eighteen thousand seven hundred fifty-four'), (17322, 88535, 'eighty-eight thousand five hundred thirty-five'), (17323, 12107, 'twelve thousand one hundred seven'), (17324, 75921, 'seventy-five thousand nine hundred twenty-one'), (17325, 24134, 'twenty-four thousand one hundred thirty-four'), (17326, 95164, 'ninety-five thousand one hundred sixty-four'), (17327, 61678, 'sixty-one thousand six hundred seventy-eight'), (17328, 66420, 'sixty-six thousand four hundred twenty'), (17329, 33320, 'thirty-three thousand three hundred twenty'), (17330, 76596, 'seventy-six thousand five hundred ninety-six'), (17331, 99900, 'ninety-nine thousand nine hundred'), (17332, 31240, 'thirty-one thousand two hundred forty'), (17333, 22729, 'twenty-two thousand seven hundred twenty-nine'), (17334, 1535, 'one thousand five hundred thirty-five'), (17335, 77161, 'seventy-seven thousand one hundred sixty-one'), (17336, 14523, 'fourteen thousand five hundred twenty-three'), (17337, 18582, 'eighteen thousand five hundred eighty-two'), (17338, 60282, 'sixty thousand two hundred eighty-two'), (17339, 87311, 'eighty-seven thousand three hundred eleven'), (17340, 67938, 'sixty-seven thousand nine hundred thirty-eight'), (17341, 57163, 'fifty-seven thousand one hundred sixty-three'), (17342, 22950, 'twenty-two thousand nine hundred fifty'), (17343, 15736, 'fifteen thousand seven hundred thirty-six'), (17344, 24865, 'twenty-four thousand eight hundred sixty-five'), (17345, 27625, 'twenty-seven thousand six hundred twenty-five'), (17346, 70419, 'seventy thousand four hundred nineteen'), (17347, 33160, 'thirty-three thousand one hundred sixty'), (17348, 37, 'thirty-seven'), (17349, 59209, 'fifty-nine thousand two hundred nine'), (17350, 82707, 'eighty-two thousand seven hundred seven'), (17351, 41629, 'forty-one thousand six hundred twenty-nine'), (17352, 14169, 'fourteen thousand one hundred sixty-nine'), (17353, 88522, 'eighty-eight thousand five hundred twenty-two'), (17354, 34182, 'thirty-four thousand one hundred eighty-two'), (17355, 78215, 'seventy-eight thousand two hundred fifteen'), (17356, 46537, 'forty-six thousand five hundred thirty-seven'), (17357, 9696, 'nine thousand six hundred ninety-six'), (17358, 42283, 'forty-two thousand two hundred eighty-three'), (17359, 80535, 'eighty thousand five hundred thirty-five'), (17360, 78685, 'seventy-eight thousand six hundred eighty-five'), (17361, 37087, 'thirty-seven thousand eighty-seven'), (17362, 37816, 'thirty-seven thousand eight hundred sixteen'), (17363, 60918, 'sixty thousand nine hundred eighteen'), (17364, 18999, 'eighteen thousand nine hundred ninety-nine'), (17365, 33862, 'thirty-three thousand eight hundred sixty-two'), (17366, 24617, 'twenty-four thousand six hundred seventeen'), (17367, 10363, 'ten thousand three hundred sixty-three'), (17368, 42079, 'forty-two thousand seventy-nine'), (17369, 67730, 'sixty-seven thousand seven hundred thirty'), (17370, 80735, 'eighty thousand seven hundred thirty-five'), (17371, 32515, 'thirty-two thousand five hundred fifteen'), (17372, 74332, 'seventy-four thousand three hundred thirty-two'), (17373, 30849, 'thirty thousand eight hundred forty-nine'), (17374, 96863, 'ninety-six thousand eight hundred sixty-three'), (17375, 93536, 'ninety-three thousand five hundred thirty-six'), (17376, 91972, 'ninety-one thousand nine hundred seventy-two'), (17377, 13228, 'thirteen thousand two hundred twenty-eight'), (17378, 91561, 'ninety-one thousand five hundred sixty-one'), (17379, 76561, 'seventy-six thousand five hundred sixty-one'), (17380, 4676, 'four thousand six hundred seventy-six'), (17381, 195, 'one hundred ninety-five'), (17382, 1109, 'one thousand one hundred nine'), (17383, 14509, 'fourteen thousand five hundred nine'), (17384, 26918, 'twenty-six thousand nine hundred eighteen'), (17385, 79922, 'seventy-nine thousand nine hundred twenty-two'), (17386, 41019, 'forty-one thousand nineteen'), (17387, 35935, 'thirty-five thousand nine hundred thirty-five'), (17388, 89528, 'eighty-nine thousand five hundred twenty-eight'), (17389, 47490, 'forty-seven thousand four hundred ninety'), (17390, 25468, 'twenty-five thousand four hundred sixty-eight'), (17391, 31467, 'thirty-one thousand four hundred sixty-seven'), (17392, 58023, 'fifty-eight thousand twenty-three'), (17393, 4147, 'four thousand one hundred forty-seven'), (17394, 30051, 'thirty thousand fifty-one'), (17395, 90608, 'ninety thousand six hundred eight'), (17396, 25770, 'twenty-five thousand seven hundred seventy'), (17397, 85241, 'eighty-five thousand two hundred forty-one'), (17398, 29384, 'twenty-nine thousand three hundred eighty-four'), (17399, 25326, 'twenty-five thousand three hundred twenty-six'), (17400, 35119, 'thirty-five thousand one hundred nineteen'), (17401, 60678, 'sixty thousand six hundred seventy-eight'), (17402, 77889, 'seventy-seven thousand eight hundred eighty-nine'), (17403, 67076, 'sixty-seven thousand seventy-six'), (17404, 43069, 'forty-three thousand sixty-nine'), (17405, 95869, 'ninety-five thousand eight hundred sixty-nine'), (17406, 2903, 'two thousand nine hundred three'), (17407, 96462, 'ninety-six thousand four hundred sixty-two'), (17408, 53568, 'fifty-three thousand five hundred sixty-eight'), (17409, 85191, 'eighty-five thousand one hundred ninety-one'), (17410, 54962, 'fifty-four thousand nine hundred sixty-two'), (17411, 98593, 'ninety-eight thousand five hundred ninety-three'), (17412, 57265, 'fifty-seven thousand two hundred sixty-five'), (17413, 3813, 'three thousand eight hundred thirteen'), (17414, 1201, 'one thousand two hundred one'), (17415, 87004, 'eighty-seven thousand four'), (17416, 44213, 'forty-four thousand two hundred thirteen'), (17417, 23674, 'twenty-three thousand six hundred seventy-four'), (17418, 57964, 'fifty-seven thousand nine hundred sixty-four'), (17419, 89736, 'eighty-nine thousand seven hundred thirty-six'), (17420, 4479, 'four thousand four hundred seventy-nine'), (17421, 16580, 'sixteen thousand five hundred eighty'), (17422, 16003, 'sixteen thousand three'), (17423, 83659, 'eighty-three thousand six hundred fifty-nine'), (17424, 33902, 'thirty-three thousand nine hundred two'), (17425, 73288, 'seventy-three thousand two hundred eighty-eight'), (17426, 48838, 'forty-eight thousand eight hundred thirty-eight'), (17427, 91513, 'ninety-one thousand five hundred thirteen'), (17428, 45571, 'forty-five thousand five hundred seventy-one'), (17429, 94675, 'ninety-four thousand six hundred seventy-five'), (17430, 68769, 'sixty-eight thousand seven hundred sixty-nine'), (17431, 42647, 'forty-two thousand six hundred forty-seven'), (17432, 72533, 'seventy-two thousand five hundred thirty-three'), (17433, 57278, 'fifty-seven thousand two hundred seventy-eight'), (17434, 12087, 'twelve thousand eighty-seven'), (17435, 5075, 'five thousand seventy-five'), (17436, 36197, 'thirty-six thousand one hundred ninety-seven'), (17437, 19769, 'nineteen thousand seven hundred sixty-nine'), (17438, 47337, 'forty-seven thousand three hundred thirty-seven'), (17439, 56534, 'fifty-six thousand five hundred thirty-four'), (17440, 58181, 'fifty-eight thousand one hundred eighty-one'), (17441, 92020, 'ninety-two thousand twenty'), (17442, 10268, 'ten thousand two hundred sixty-eight'), (17443, 5868, 'five thousand eight hundred sixty-eight'), (17444, 13103, 'thirteen thousand one hundred three'), (17445, 52922, 'fifty-two thousand nine hundred twenty-two'), (17446, 51880, 'fifty-one thousand eight hundred eighty'), (17447, 41381, 'forty-one thousand three hundred eighty-one'), (17448, 2827, 'two thousand eight hundred twenty-seven'), (17449, 55685, 'fifty-five thousand six hundred eighty-five'), (17450, 25345, 'twenty-five thousand three hundred forty-five'), (17451, 24964, 'twenty-four thousand nine hundred sixty-four'), (17452, 8355, 'eight thousand three hundred fifty-five'), (17453, 74437, 'seventy-four thousand four hundred thirty-seven'), (17454, 74994, 'seventy-four thousand nine hundred ninety-four'), (17455, 89371, 'eighty-nine thousand three hundred seventy-one'), (17456, 39282, 'thirty-nine thousand two hundred eighty-two'), (17457, 46014, 'forty-six thousand fourteen'), (17458, 51057, 'fifty-one thousand fifty-seven'), (17459, 91001, 'ninety-one thousand one'), (17460, 33003, 'thirty-three thousand three'), (17461, 56644, 'fifty-six thousand six hundred forty-four'), (17462, 6452, 'six thousand four hundred fifty-two'), (17463, 74031, 'seventy-four thousand thirty-one'), (17464, 56371, 'fifty-six thousand three hundred seventy-one'), (17465, 33284, 'thirty-three thousand two hundred eighty-four'), (17466, 79683, 'seventy-nine thousand six hundred eighty-three'), (17467, 13263, 'thirteen thousand two hundred sixty-three'), (17468, 90917, 'ninety thousand nine hundred seventeen'), (17469, 72584, 'seventy-two thousand five hundred eighty-four'), (17470, 86612, 'eighty-six thousand six hundred twelve'), (17471, 98649, 'ninety-eight thousand six hundred forty-nine'), (17472, 43030, 'forty-three thousand thirty'), (17473, 26670, 'twenty-six thousand six hundred seventy'), (17474, 26883, 'twenty-six thousand eight hundred eighty-three'), (17475, 79136, 'seventy-nine thousand one hundred thirty-six'), (17476, 84623, 'eighty-four thousand six hundred twenty-three'), (17477, 93465, 'ninety-three thousand four hundred sixty-five'), (17478, 53845, 'fifty-three thousand eight hundred forty-five'), (17479, 93261, 'ninety-three thousand two hundred sixty-one'), (17480, 3051, 'three thousand fifty-one'), (17481, 24643, 'twenty-four thousand six hundred forty-three'), (17482, 99914, 'ninety-nine thousand nine hundred fourteen'), (17483, 14836, 'fourteen thousand eight hundred thirty-six'), (17484, 10282, 'ten thousand two hundred eighty-two'), (17485, 24457, 'twenty-four thousand four hundred fifty-seven'), (17486, 35734, 'thirty-five thousand seven hundred thirty-four'), (17487, 15776, 'fifteen thousand seven hundred seventy-six'), (17488, 77932, 'seventy-seven thousand nine hundred thirty-two'), (17489, 97120, 'ninety-seven thousand one hundred twenty'), (17490, 63723, 'sixty-three thousand seven hundred twenty-three'), (17491, 67452, 'sixty-seven thousand four hundred fifty-two'), (17492, 88195, 'eighty-eight thousand one hundred ninety-five'), (17493, 37465, 'thirty-seven thousand four hundred sixty-five'), (17494, 75229, 'seventy-five thousand two hundred twenty-nine'), (17495, 43176, 'forty-three thousand one hundred seventy-six'), (17496, 41789, 'forty-one thousand seven hundred eighty-nine'), (17497, 26937, 'twenty-six thousand nine hundred thirty-seven'), (17498, 74888, 'seventy-four thousand eight hundred eighty-eight'), (17499, 11412, 'eleven thousand four hundred twelve'), (17500, 31516, 'thirty-one thousand five hundred sixteen'), (17501, 57568, 'fifty-seven thousand five hundred sixty-eight'), (17502, 15612, 'fifteen thousand six hundred twelve'), (17503, 91895, 'ninety-one thousand eight hundred ninety-five'), (17504, 17165, 'seventeen thousand one hundred sixty-five'), (17505, 41926, 'forty-one thousand nine hundred twenty-six'), (17506, 96692, 'ninety-six thousand six hundred ninety-two'), (17507, 14031, 'fourteen thousand thirty-one'), (17508, 25832, 'twenty-five thousand eight hundred thirty-two'), (17509, 67804, 'sixty-seven thousand eight hundred four'), (17510, 93924, 'ninety-three thousand nine hundred twenty-four'), (17511, 42288, 'forty-two thousand two hundred eighty-eight'), (17512, 95876, 'ninety-five thousand eight hundred seventy-six'), (17513, 69269, 'sixty-nine thousand two hundred sixty-nine'), (17514, 12747, 'twelve thousand seven hundred forty-seven'), (17515, 41387, 'forty-one thousand three hundred eighty-seven'), (17516, 10493, 'ten thousand four hundred ninety-three'), (17517, 45226, 'forty-five thousand two hundred twenty-six'), (17518, 66508, 'sixty-six thousand five hundred eight'), (17519, 37969, 'thirty-seven thousand nine hundred sixty-nine'), (17520, 75665, 'seventy-five thousand six hundred sixty-five'), (17521, 78876, 'seventy-eight thousand eight hundred seventy-six'), (17522, 88242, 'eighty-eight thousand two hundred forty-two'), (17523, 73739, 'seventy-three thousand seven hundred thirty-nine'), (17524, 22731, 'twenty-two thousand seven hundred thirty-one'), (17525, 37589, 'thirty-seven thousand five hundred eighty-nine'), (17526, 51762, 'fifty-one thousand seven hundred sixty-two'), (17527, 61697, 'sixty-one thousand six hundred ninety-seven'), (17528, 89318, 'eighty-nine thousand three hundred eighteen'), (17529, 11369, 'eleven thousand three hundred sixty-nine'), (17530, 87247, 'eighty-seven thousand two hundred forty-seven'), (17531, 22926, 'twenty-two thousand nine hundred twenty-six'), (17532, 94472, 'ninety-four thousand four hundred seventy-two'), (17533, 99708, 'ninety-nine thousand seven hundred eight'), (17534, 12875, 'twelve thousand eight hundred seventy-five'), (17535, 88, 'eighty-eight'), (17536, 10150, 'ten thousand one hundred fifty'), (17537, 24199, 'twenty-four thousand one hundred ninety-nine'), (17538, 18188, 'eighteen thousand one hundred eighty-eight'), (17539, 20030, 'twenty thousand thirty'), (17540, 52891, 'fifty-two thousand eight hundred ninety-one'), (17541, 93155, 'ninety-three thousand one hundred fifty-five'), (17542, 93154, 'ninety-three thousand one hundred fifty-four'), (17543, 86312, 'eighty-six thousand three hundred twelve'), (17544, 41385, 'forty-one thousand three hundred eighty-five'), (17545, 75473, 'seventy-five thousand four hundred seventy-three'), (17546, 12444, 'twelve thousand four hundred forty-four'), (17547, 32865, 'thirty-two thousand eight hundred sixty-five'), (17548, 20502, 'twenty thousand five hundred two'), (17549, 56523, 'fifty-six thousand five hundred twenty-three'), (17550, 98949, 'ninety-eight thousand nine hundred forty-nine'), (17551, 69419, 'sixty-nine thousand four hundred nineteen'), (17552, 10870, 'ten thousand eight hundred seventy'), (17553, 39468, 'thirty-nine thousand four hundred sixty-eight'), (17554, 39858, 'thirty-nine thousand eight hundred fifty-eight'), (17555, 49087, 'forty-nine thousand eighty-seven'), (17556, 77726, 'seventy-seven thousand seven hundred twenty-six'), (17557, 7803, 'seven thousand eight hundred three'), (17558, 37196, 'thirty-seven thousand one hundred ninety-six'), (17559, 56807, 'fifty-six thousand eight hundred seven'), (17560, 50037, 'fifty thousand thirty-seven'), (17561, 95382, 'ninety-five thousand three hundred eighty-two'), (17562, 12584, 'twelve thousand five hundred eighty-four'), (17563, 52870, 'fifty-two thousand eight hundred seventy'), (17564, 17676, 'seventeen thousand six hundred seventy-six'), (17565, 65768, 'sixty-five thousand seven hundred sixty-eight'), (17566, 50764, 'fifty thousand seven hundred sixty-four'), (17567, 9737, 'nine thousand seven hundred thirty-seven'), (17568, 74778, 'seventy-four thousand seven hundred seventy-eight'), (17569, 60936, 'sixty thousand nine hundred thirty-six'), (17570, 62682, 'sixty-two thousand six hundred eighty-two'), (17571, 35256, 'thirty-five thousand two hundred fifty-six'), (17572, 41055, 'forty-one thousand fifty-five'), (17573, 51172, 'fifty-one thousand one hundred seventy-two'), (17574, 95407, 'ninety-five thousand four hundred seven'), (17575, 90030, 'ninety thousand thirty'), (17576, 26852, 'twenty-six thousand eight hundred fifty-two'), (17577, 51152, 'fifty-one thousand one hundred fifty-two'), (17578, 67455, 'sixty-seven thousand four hundred fifty-five'), (17579, 21796, 'twenty-one thousand seven hundred ninety-six'), (17580, 56047, 'fifty-six thousand forty-seven'), (17581, 65081, 'sixty-five thousand eighty-one'), (17582, 31077, 'thirty-one thousand seventy-seven'), (17583, 74918, 'seventy-four thousand nine hundred eighteen'), (17584, 62546, 'sixty-two thousand five hundred forty-six'), (17585, 90853, 'ninety thousand eight hundred fifty-three'), (17586, 55438, 'fifty-five thousand four hundred thirty-eight'), (17587, 90330, 'ninety thousand three hundred thirty'), (17588, 77923, 'seventy-seven thousand nine hundred twenty-three'), (17589, 80184, 'eighty thousand one hundred eighty-four'), (17590, 35732, 'thirty-five thousand seven hundred thirty-two'), (17591, 39709, 'thirty-nine thousand seven hundred nine'), (17592, 17693, 'seventeen thousand six hundred ninety-three'), (17593, 85741, 'eighty-five thousand seven hundred forty-one'), (17594, 51620, 'fifty-one thousand six hundred twenty'), (17595, 30830, 'thirty thousand eight hundred thirty'), (17596, 31848, 'thirty-one thousand eight hundred forty-eight'), (17597, 59390, 'fifty-nine thousand three hundred ninety'), (17598, 24918, 'twenty-four thousand nine hundred eighteen'), (17599, 62418, 'sixty-two thousand four hundred eighteen'), (17600, 21171, 'twenty-one thousand one hundred seventy-one'), (17601, 34830, 'thirty-four thousand eight hundred thirty'), (17602, 43768, 'forty-three thousand seven hundred sixty-eight'), (17603, 59847, 'fifty-nine thousand eight hundred forty-seven'), (17604, 89342, 'eighty-nine thousand three hundred forty-two'), (17605, 70383, 'seventy thousand three hundred eighty-three'), (17606, 11726, 'eleven thousand seven hundred twenty-six'), (17607, 56860, 'fifty-six thousand eight hundred sixty'), (17608, 41407, 'forty-one thousand four hundred seven'), (17609, 43786, 'forty-three thousand seven hundred eighty-six'), (17610, 86377, 'eighty-six thousand three hundred seventy-seven'), (17611, 55855, 'fifty-five thousand eight hundred fifty-five'), (17612, 7715, 'seven thousand seven hundred fifteen'), (17613, 11419, 'eleven thousand four hundred nineteen'), (17614, 23784, 'twenty-three thousand seven hundred eighty-four'), (17615, 17653, 'seventeen thousand six hundred fifty-three'), (17616, 91732, 'ninety-one thousand seven hundred thirty-two'), (17617, 7860, 'seven thousand eight hundred sixty'), (17618, 72271, 'seventy-two thousand two hundred seventy-one'), (17619, 83737, 'eighty-three thousand seven hundred thirty-seven'), (17620, 75751, 'seventy-five thousand seven hundred fifty-one'), (17621, 77700, 'seventy-seven thousand seven hundred'), (17622, 79743, 'seventy-nine thousand seven hundred forty-three'), (17623, 56795, 'fifty-six thousand seven hundred ninety-five'), (17624, 39975, 'thirty-nine thousand nine hundred seventy-five'), (17625, 21684, 'twenty-one thousand six hundred eighty-four'), (17626, 29248, 'twenty-nine thousand two hundred forty-eight'), (17627, 89903, 'eighty-nine thousand nine hundred three'), (17628, 16404, 'sixteen thousand four hundred four'), (17629, 60768, 'sixty thousand seven hundred sixty-eight'), (17630, 24833, 'twenty-four thousand eight hundred thirty-three'), (17631, 52624, 'fifty-two thousand six hundred twenty-four'), (17632, 69077, 'sixty-nine thousand seventy-seven'), (17633, 36519, 'thirty-six thousand five hundred nineteen'), (17634, 96660, 'ninety-six thousand six hundred sixty'), (17635, 74495, 'seventy-four thousand four hundred ninety-five'), (17636, 25592, 'twenty-five thousand five hundred ninety-two'), (17637, 46957, 'forty-six thousand nine hundred fifty-seven'), (17638, 52685, 'fifty-two thousand six hundred eighty-five'), (17639, 35020, 'thirty-five thousand twenty'), (17640, 15625, 'fifteen thousand six hundred twenty-five'), (17641, 35781, 'thirty-five thousand seven hundred eighty-one'), (17642, 99379, 'ninety-nine thousand three hundred seventy-nine'), (17643, 98631, 'ninety-eight thousand six hundred thirty-one'), (17644, 80614, 'eighty thousand six hundred fourteen'), (17645, 1920, 'one thousand nine hundred twenty'), (17646, 98111, 'ninety-eight thousand one hundred eleven'), (17647, 14585, 'fourteen thousand five hundred eighty-five'), (17648, 87757, 'eighty-seven thousand seven hundred fifty-seven'), (17649, 57772, 'fifty-seven thousand seven hundred seventy-two'), (17650, 47167, 'forty-seven thousand one hundred sixty-seven'), (17651, 17867, 'seventeen thousand eight hundred sixty-seven'), (17652, 6589, 'six thousand five hundred eighty-nine'), (17653, 51462, 'fifty-one thousand four hundred sixty-two'), (17654, 98288, 'ninety-eight thousand two hundred eighty-eight'), (17655, 7811, 'seven thousand eight hundred eleven'), (17656, 78378, 'seventy-eight thousand three hundred seventy-eight'), (17657, 26411, 'twenty-six thousand four hundred eleven'), (17658, 28167, 'twenty-eight thousand one hundred sixty-seven'), (17659, 3454, 'three thousand four hundred fifty-four'), (17660, 39847, 'thirty-nine thousand eight hundred forty-seven'), (17661, 82093, 'eighty-two thousand ninety-three'), (17662, 86634, 'eighty-six thousand six hundred thirty-four'), (17663, 37862, 'thirty-seven thousand eight hundred sixty-two'), (17664, 63171, 'sixty-three thousand one hundred seventy-one'), (17665, 76944, 'seventy-six thousand nine hundred forty-four'), (17666, 82239, 'eighty-two thousand two hundred thirty-nine'), (17667, 54575, 'fifty-four thousand five hundred seventy-five'), (17668, 37685, 'thirty-seven thousand six hundred eighty-five'), (17669, 77488, 'seventy-seven thousand four hundred eighty-eight'), (17670, 21665, 'twenty-one thousand six hundred sixty-five'), (17671, 63199, 'sixty-three thousand one hundred ninety-nine'), (17672, 21983, 'twenty-one thousand nine hundred eighty-three'), (17673, 94443, 'ninety-four thousand four hundred forty-three'), (17674, 91733, 'ninety-one thousand seven hundred thirty-three'), (17675, 95647, 'ninety-five thousand six hundred forty-seven'), (17676, 92221, 'ninety-two thousand two hundred twenty-one'), (17677, 87880, 'eighty-seven thousand eight hundred eighty'), (17678, 53685, 'fifty-three thousand six hundred eighty-five'), (17679, 8883, 'eight thousand eight hundred eighty-three'), (17680, 31725, 'thirty-one thousand seven hundred twenty-five'), (17681, 91081, 'ninety-one thousand eighty-one'), (17682, 82949, 'eighty-two thousand nine hundred forty-nine'), (17683, 90581, 'ninety thousand five hundred eighty-one'), (17684, 63938, 'sixty-three thousand nine hundred thirty-eight'), (17685, 48851, 'forty-eight thousand eight hundred fifty-one'), (17686, 19564, 'nineteen thousand five hundred sixty-four'), (17687, 52663, 'fifty-two thousand six hundred sixty-three'), (17688, 75487, 'seventy-five thousand four hundred eighty-seven'), (17689, 72695, 'seventy-two thousand six hundred ninety-five'), (17690, 46730, 'forty-six thousand seven hundred thirty'), (17691, 67831, 'sixty-seven thousand eight hundred thirty-one'), (17692, 46946, 'forty-six thousand nine hundred forty-six'), (17693, 53113, 'fifty-three thousand one hundred thirteen'), (17694, 13244, 'thirteen thousand two hundred forty-four'), (17695, 87, 'eighty-seven'), (17696, 19494, 'nineteen thousand four hundred ninety-four'), (17697, 99792, 'ninety-nine thousand seven hundred ninety-two'), (17698, 73340, 'seventy-three thousand three hundred forty'), (17699, 81613, 'eighty-one thousand six hundred thirteen'), (17700, 93920, 'ninety-three thousand nine hundred twenty'), (17701, 73732, 'seventy-three thousand seven hundred thirty-two'), (17702, 80410, 'eighty thousand four hundred ten'), (17703, 51994, 'fifty-one thousand nine hundred ninety-four'), (17704, 42307, 'forty-two thousand three hundred seven'), (17705, 36248, 'thirty-six thousand two hundred forty-eight'), (17706, 36489, 'thirty-six thousand four hundred eighty-nine'), (17707, 19005, 'nineteen thousand five'), (17708, 37548, 'thirty-seven thousand five hundred forty-eight'), (17709, 69366, 'sixty-nine thousand three hundred sixty-six'), (17710, 14395, 'fourteen thousand three hundred ninety-five'), (17711, 35288, 'thirty-five thousand two hundred eighty-eight'), (17712, 29790, 'twenty-nine thousand seven hundred ninety'), (17713, 13633, 'thirteen thousand six hundred thirty-three'), (17714, 83464, 'eighty-three thousand four hundred sixty-four'), (17715, 22097, 'twenty-two thousand ninety-seven'), (17716, 5682, 'five thousand six hundred eighty-two'), (17717, 73064, 'seventy-three thousand sixty-four'), (17718, 7691, 'seven thousand six hundred ninety-one'), (17719, 13390, 'thirteen thousand three hundred ninety'), (17720, 6306, 'six thousand three hundred six'), (17721, 99715, 'ninety-nine thousand seven hundred fifteen'), (17722, 84750, 'eighty-four thousand seven hundred fifty'), (17723, 12202, 'twelve thousand two hundred two'), (17724, 49268, 'forty-nine thousand two hundred sixty-eight'), (17725, 87166, 'eighty-seven thousand one hundred sixty-six'), (17726, 25358, 'twenty-five thousand three hundred fifty-eight'), (17727, 54847, 'fifty-four thousand eight hundred forty-seven'), (17728, 69387, 'sixty-nine thousand three hundred eighty-seven'), (17729, 55417, 'fifty-five thousand four hundred seventeen'), (17730, 9609, 'nine thousand six hundred nine'), (17731, 76930, 'seventy-six thousand nine hundred thirty'), (17732, 91924, 'ninety-one thousand nine hundred twenty-four'), (17733, 8422, 'eight thousand four hundred twenty-two'), (17734, 17809, 'seventeen thousand eight hundred nine'), (17735, 46685, 'forty-six thousand six hundred eighty-five'), (17736, 53399, 'fifty-three thousand three hundred ninety-nine'), (17737, 29952, 'twenty-nine thousand nine hundred fifty-two'), (17738, 90447, 'ninety thousand four hundred forty-seven'), (17739, 16263, 'sixteen thousand two hundred sixty-three'), (17740, 76348, 'seventy-six thousand three hundred forty-eight'), (17741, 8173, 'eight thousand one hundred seventy-three'), (17742, 16328, 'sixteen thousand three hundred twenty-eight'), (17743, 58642, 'fifty-eight thousand six hundred forty-two'), (17744, 31944, 'thirty-one thousand nine hundred forty-four'), (17745, 67730, 'sixty-seven thousand seven hundred thirty'), (17746, 59165, 'fifty-nine thousand one hundred sixty-five'), (17747, 8866, 'eight thousand eight hundred sixty-six'), (17748, 20806, 'twenty thousand eight hundred six'), (17749, 86418, 'eighty-six thousand four hundred eighteen'), (17750, 82864, 'eighty-two thousand eight hundred sixty-four'), (17751, 58171, 'fifty-eight thousand one hundred seventy-one'), (17752, 76204, 'seventy-six thousand two hundred four'), (17753, 89838, 'eighty-nine thousand eight hundred thirty-eight'), (17754, 52827, 'fifty-two thousand eight hundred twenty-seven'), (17755, 16458, 'sixteen thousand four hundred fifty-eight'), (17756, 14893, 'fourteen thousand eight hundred ninety-three'), (17757, 53896, 'fifty-three thousand eight hundred ninety-six'), (17758, 8478, 'eight thousand four hundred seventy-eight'), (17759, 68662, 'sixty-eight thousand six hundred sixty-two'), (17760, 46437, 'forty-six thousand four hundred thirty-seven'), (17761, 63750, 'sixty-three thousand seven hundred fifty'), (17762, 35093, 'thirty-five thousand ninety-three'), (17763, 772, 'seven hundred seventy-two'), (17764, 98314, 'ninety-eight thousand three hundred fourteen'), (17765, 60801, 'sixty thousand eight hundred one'), (17766, 89526, 'eighty-nine thousand five hundred twenty-six'), (17767, 36376, 'thirty-six thousand three hundred seventy-six'), (17768, 94593, 'ninety-four thousand five hundred ninety-three'), (17769, 78598, 'seventy-eight thousand five hundred ninety-eight'), (17770, 21062, 'twenty-one thousand sixty-two'), (17771, 27746, 'twenty-seven thousand seven hundred forty-six'), (17772, 76638, 'seventy-six thousand six hundred thirty-eight'), (17773, 62875, 'sixty-two thousand eight hundred seventy-five'), (17774, 26599, 'twenty-six thousand five hundred ninety-nine'), (17775, 5629, 'five thousand six hundred twenty-nine'), (17776, 82263, 'eighty-two thousand two hundred sixty-three'), (17777, 61294, 'sixty-one thousand two hundred ninety-four'), (17778, 33953, 'thirty-three thousand nine hundred fifty-three'), (17779, 53874, 'fifty-three thousand eight hundred seventy-four'), (17780, 14011, 'fourteen thousand eleven'), (17781, 50811, 'fifty thousand eight hundred eleven'), (17782, 53219, 'fifty-three thousand two hundred nineteen'), (17783, 25681, 'twenty-five thousand six hundred eighty-one'), (17784, 1809, 'one thousand eight hundred nine'), (17785, 82258, 'eighty-two thousand two hundred fifty-eight'), (17786, 94045, 'ninety-four thousand forty-five'), (17787, 29348, 'twenty-nine thousand three hundred forty-eight'), (17788, 30412, 'thirty thousand four hundred twelve'), (17789, 87681, 'eighty-seven thousand six hundred eighty-one'), (17790, 60273, 'sixty thousand two hundred seventy-three'), (17791, 40092, 'forty thousand ninety-two'), (17792, 81275, 'eighty-one thousand two hundred seventy-five'), (17793, 20076, 'twenty thousand seventy-six'), (17794, 61402, 'sixty-one thousand four hundred two'), (17795, 26374, 'twenty-six thousand three hundred seventy-four'), (17796, 33432, 'thirty-three thousand four hundred thirty-two'), (17797, 61706, 'sixty-one thousand seven hundred six'), (17798, 82056, 'eighty-two thousand fifty-six'), (17799, 68873, 'sixty-eight thousand eight hundred seventy-three'), (17800, 6825, 'six thousand eight hundred twenty-five'), (17801, 37695, 'thirty-seven thousand six hundred ninety-five'), (17802, 70432, 'seventy thousand four hundred thirty-two'), (17803, 62135, 'sixty-two thousand one hundred thirty-five'), (17804, 28082, 'twenty-eight thousand eighty-two'), (17805, 63759, 'sixty-three thousand seven hundred fifty-nine'), (17806, 88376, 'eighty-eight thousand three hundred seventy-six'), (17807, 74151, 'seventy-four thousand one hundred fifty-one'), (17808, 29346, 'twenty-nine thousand three hundred forty-six'), (17809, 12150, 'twelve thousand one hundred fifty'), (17810, 85825, 'eighty-five thousand eight hundred twenty-five'), (17811, 62769, 'sixty-two thousand seven hundred sixty-nine'), (17812, 43568, 'forty-three thousand five hundred sixty-eight'), (17813, 71883, 'seventy-one thousand eight hundred eighty-three'), (17814, 69112, 'sixty-nine thousand one hundred twelve'), (17815, 32911, 'thirty-two thousand nine hundred eleven'), (17816, 12044, 'twelve thousand forty-four'), (17817, 56352, 'fifty-six thousand three hundred fifty-two'), (17818, 45003, 'forty-five thousand three'), (17819, 35502, 'thirty-five thousand five hundred two'), (17820, 22350, 'twenty-two thousand three hundred fifty'), (17821, 56070, 'fifty-six thousand seventy'), (17822, 56816, 'fifty-six thousand eight hundred sixteen'), (17823, 83065, 'eighty-three thousand sixty-five'), (17824, 22631, 'twenty-two thousand six hundred thirty-one'), (17825, 88120, 'eighty-eight thousand one hundred twenty'), (17826, 74633, 'seventy-four thousand six hundred thirty-three'), (17827, 8139, 'eight thousand one hundred thirty-nine'), (17828, 79216, 'seventy-nine thousand two hundred sixteen'), (17829, 85046, 'eighty-five thousand forty-six'), (17830, 5617, 'five thousand six hundred seventeen'), (17831, 32949, 'thirty-two thousand nine hundred forty-nine'), (17832, 26317, 'twenty-six thousand three hundred seventeen'), (17833, 79722, 'seventy-nine thousand seven hundred twenty-two'), (17834, 86904, 'eighty-six thousand nine hundred four'), (17835, 39538, 'thirty-nine thousand five hundred thirty-eight'), (17836, 19647, 'nineteen thousand six hundred forty-seven'), (17837, 44283, 'forty-four thousand two hundred eighty-three'), (17838, 39081, 'thirty-nine thousand eighty-one'), (17839, 34624, 'thirty-four thousand six hundred twenty-four'), (17840, 42048, 'forty-two thousand forty-eight'), (17841, 74551, 'seventy-four thousand five hundred fifty-one'), (17842, 59597, 'fifty-nine thousand five hundred ninety-seven'), (17843, 8040, 'eight thousand forty'), (17844, 19093, 'nineteen thousand ninety-three'), (17845, 19410, 'nineteen thousand four hundred ten'), (17846, 31251, 'thirty-one thousand two hundred fifty-one'), (17847, 14022, 'fourteen thousand twenty-two'), (17848, 29958, 'twenty-nine thousand nine hundred fifty-eight'), (17849, 79087, 'seventy-nine thousand eighty-seven'), (17850, 52688, 'fifty-two thousand six hundred eighty-eight'), (17851, 15659, 'fifteen thousand six hundred fifty-nine'), (17852, 66253, 'sixty-six thousand two hundred fifty-three'), (17853, 83549, 'eighty-three thousand five hundred forty-nine'), (17854, 89996, 'eighty-nine thousand nine hundred ninety-six'), (17855, 65554, 'sixty-five thousand five hundred fifty-four'), (17856, 14523, 'fourteen thousand five hundred twenty-three'), (17857, 82825, 'eighty-two thousand eight hundred twenty-five'), (17858, 13218, 'thirteen thousand two hundred eighteen'), (17859, 77149, 'seventy-seven thousand one hundred forty-nine'), (17860, 64741, 'sixty-four thousand seven hundred forty-one'), (17861, 15653, 'fifteen thousand six hundred fifty-three'), (17862, 85936, 'eighty-five thousand nine hundred thirty-six'), (17863, 65480, 'sixty-five thousand four hundred eighty'), (17864, 47998, 'forty-seven thousand nine hundred ninety-eight'), (17865, 2382, 'two thousand three hundred eighty-two'), (17866, 93477, 'ninety-three thousand four hundred seventy-seven'), (17867, 73813, 'seventy-three thousand eight hundred thirteen'), (17868, 71602, 'seventy-one thousand six hundred two'), (17869, 91069, 'ninety-one thousand sixty-nine'), (17870, 51829, 'fifty-one thousand eight hundred twenty-nine'), (17871, 75886, 'seventy-five thousand eight hundred eighty-six'), (17872, 96103, 'ninety-six thousand one hundred three'), (17873, 23981, 'twenty-three thousand nine hundred eighty-one'), (17874, 76315, 'seventy-six thousand three hundred fifteen'), (17875, 16276, 'sixteen thousand two hundred seventy-six'), (17876, 94634, 'ninety-four thousand six hundred thirty-four'), (17877, 3216, 'three thousand two hundred sixteen'), (17878, 89150, 'eighty-nine thousand one hundred fifty'), (17879, 16375, 'sixteen thousand three hundred seventy-five'), (17880, 12629, 'twelve thousand six hundred twenty-nine'), (17881, 95663, 'ninety-five thousand six hundred sixty-three'), (17882, 91220, 'ninety-one thousand two hundred twenty'), (17883, 56519, 'fifty-six thousand five hundred nineteen'), (17884, 13454, 'thirteen thousand four hundred fifty-four'), (17885, 89501, 'eighty-nine thousand five hundred one'), (17886, 92338, 'ninety-two thousand three hundred thirty-eight'), (17887, 98119, 'ninety-eight thousand one hundred nineteen'), (17888, 72505, 'seventy-two thousand five hundred five'), (17889, 4299, 'four thousand two hundred ninety-nine'), (17890, 64775, 'sixty-four thousand seven hundred seventy-five'), (17891, 83595, 'eighty-three thousand five hundred ninety-five'), (17892, 98721, 'ninety-eight thousand seven hundred twenty-one'), (17893, 9219, 'nine thousand two hundred nineteen'), (17894, 8209, 'eight thousand two hundred nine'), (17895, 55911, 'fifty-five thousand nine hundred eleven'), (17896, 94223, 'ninety-four thousand two hundred twenty-three'), (17897, 63077, 'sixty-three thousand seventy-seven'), (17898, 5698, 'five thousand six hundred ninety-eight'), (17899, 16246, 'sixteen thousand two hundred forty-six'), (17900, 25465, 'twenty-five thousand four hundred sixty-five'), (17901, 67774, 'sixty-seven thousand seven hundred seventy-four'), (17902, 49246, 'forty-nine thousand two hundred forty-six'), (17903, 91288, 'ninety-one thousand two hundred eighty-eight'), (17904, 72734, 'seventy-two thousand seven hundred thirty-four'), (17905, 1354, 'one thousand three hundred fifty-four'), (17906, 84056, 'eighty-four thousand fifty-six'), (17907, 95351, 'ninety-five thousand three hundred fifty-one'), (17908, 15392, 'fifteen thousand three hundred ninety-two'), (17909, 47084, 'forty-seven thousand eighty-four'), (17910, 96227, 'ninety-six thousand two hundred twenty-seven'), (17911, 23022, 'twenty-three thousand twenty-two'), (17912, 42752, 'forty-two thousand seven hundred fifty-two'), (17913, 63080, 'sixty-three thousand eighty'), (17914, 27426, 'twenty-seven thousand four hundred twenty-six'), (17915, 23584, 'twenty-three thousand five hundred eighty-four'), (17916, 36291, 'thirty-six thousand two hundred ninety-one'), (17917, 13101, 'thirteen thousand one hundred one'), (17918, 48775, 'forty-eight thousand seven hundred seventy-five'), (17919, 82615, 'eighty-two thousand six hundred fifteen'), (17920, 55879, 'fifty-five thousand eight hundred seventy-nine'), (17921, 57494, 'fifty-seven thousand four hundred ninety-four'), (17922, 76448, 'seventy-six thousand four hundred forty-eight'), (17923, 28283, 'twenty-eight thousand two hundred eighty-three'), (17924, 75078, 'seventy-five thousand seventy-eight'), (17925, 88310, 'eighty-eight thousand three hundred ten'), (17926, 95161, 'ninety-five thousand one hundred sixty-one'), (17927, 51378, 'fifty-one thousand three hundred seventy-eight'), (17928, 58869, 'fifty-eight thousand eight hundred sixty-nine'), (17929, 40507, 'forty thousand five hundred seven'), (17930, 24474, 'twenty-four thousand four hundred seventy-four'), (17931, 47542, 'forty-seven thousand five hundred forty-two'), (17932, 52732, 'fifty-two thousand seven hundred thirty-two'), (17933, 56947, 'fifty-six thousand nine hundred forty-seven'), (17934, 29519, 'twenty-nine thousand five hundred nineteen'), (17935, 99309, 'ninety-nine thousand three hundred nine'), (17936, 70286, 'seventy thousand two hundred eighty-six'), (17937, 9444, 'nine thousand four hundred forty-four'), (17938, 32244, 'thirty-two thousand two hundred forty-four'), (17939, 90349, 'ninety thousand three hundred forty-nine'), (17940, 47663, 'forty-seven thousand six hundred sixty-three'), (17941, 68129, 'sixty-eight thousand one hundred twenty-nine'), (17942, 42894, 'forty-two thousand eight hundred ninety-four'), (17943, 22371, 'twenty-two thousand three hundred seventy-one'), (17944, 2050, 'two thousand fifty'), (17945, 54080, 'fifty-four thousand eighty'), (17946, 32418, 'thirty-two thousand four hundred eighteen'), (17947, 10752, 'ten thousand seven hundred fifty-two'), (17948, 30485, 'thirty thousand four hundred eighty-five'), (17949, 53889, 'fifty-three thousand eight hundred eighty-nine'), (17950, 20835, 'twenty thousand eight hundred thirty-five'), (17951, 96020, 'ninety-six thousand twenty'), (17952, 57995, 'fifty-seven thousand nine hundred ninety-five'), (17953, 29325, 'twenty-nine thousand three hundred twenty-five'), (17954, 96345, 'ninety-six thousand three hundred forty-five'), (17955, 68578, 'sixty-eight thousand five hundred seventy-eight'), (17956, 17093, 'seventeen thousand ninety-three'), (17957, 62325, 'sixty-two thousand three hundred twenty-five'), (17958, 68485, 'sixty-eight thousand four hundred eighty-five'), (17959, 21071, 'twenty-one thousand seventy-one'), (17960, 52918, 'fifty-two thousand nine hundred eighteen'), (17961, 80859, 'eighty thousand eight hundred fifty-nine'), (17962, 72353, 'seventy-two thousand three hundred fifty-three'), (17963, 71133, 'seventy-one thousand one hundred thirty-three'), (17964, 73061, 'seventy-three thousand sixty-one'), (17965, 37682, 'thirty-seven thousand six hundred eighty-two'), (17966, 82745, 'eighty-two thousand seven hundred forty-five'), (17967, 40224, 'forty thousand two hundred twenty-four'), (17968, 99229, 'ninety-nine thousand two hundred twenty-nine'), (17969, 42472, 'forty-two thousand four hundred seventy-two'), (17970, 93964, 'ninety-three thousand nine hundred sixty-four'), (17971, 7893, 'seven thousand eight hundred ninety-three'), (17972, 84563, 'eighty-four thousand five hundred sixty-three'), (17973, 57563, 'fifty-seven thousand five hundred sixty-three'), (17974, 42823, 'forty-two thousand eight hundred twenty-three'), (17975, 1971, 'one thousand nine hundred seventy-one'), (17976, 96182, 'ninety-six thousand one hundred eighty-two'), (17977, 52709, 'fifty-two thousand seven hundred nine'), (17978, 43323, 'forty-three thousand three hundred twenty-three'), (17979, 16690, 'sixteen thousand six hundred ninety'), (17980, 6635, 'six thousand six hundred thirty-five'), (17981, 64219, 'sixty-four thousand two hundred nineteen'), (17982, 45442, 'forty-five thousand four hundred forty-two'), (17983, 46858, 'forty-six thousand eight hundred fifty-eight'), (17984, 3606, 'three thousand six hundred six'), (17985, 80516, 'eighty thousand five hundred sixteen'), (17986, 33192, 'thirty-three thousand one hundred ninety-two'), (17987, 64247, 'sixty-four thousand two hundred forty-seven'), (17988, 92874, 'ninety-two thousand eight hundred seventy-four'), (17989, 11726, 'eleven thousand seven hundred twenty-six'), (17990, 49012, 'forty-nine thousand twelve'), (17991, 38807, 'thirty-eight thousand eight hundred seven'), (17992, 16052, 'sixteen thousand fifty-two'), (17993, 97764, 'ninety-seven thousand seven hundred sixty-four'), (17994, 71190, 'seventy-one thousand one hundred ninety'), (17995, 6621, 'six thousand six hundred twenty-one'), (17996, 19299, 'nineteen thousand two hundred ninety-nine'), (17997, 43855, 'forty-three thousand eight hundred fifty-five'), (17998, 9654, 'nine thousand six hundred fifty-four'), (17999, 1262, 'one thousand two hundred sixty-two'), (18000, 46607, 'forty-six thousand six hundred seven'), (18001, 80357, 'eighty thousand three hundred fifty-seven'), (18002, 40502, 'forty thousand five hundred two'), (18003, 7463, 'seven thousand four hundred sixty-three'), (18004, 44920, 'forty-four thousand nine hundred twenty'), (18005, 69025, 'sixty-nine thousand twenty-five'), (18006, 53259, 'fifty-three thousand two hundred fifty-nine'), (18007, 95385, 'ninety-five thousand three hundred eighty-five'), (18008, 28584, 'twenty-eight thousand five hundred eighty-four'), (18009, 64394, 'sixty-four thousand three hundred ninety-four'), (18010, 97418, 'ninety-seven thousand four hundred eighteen'), (18011, 60303, 'sixty thousand three hundred three'), (18012, 59579, 'fifty-nine thousand five hundred seventy-nine'), (18013, 70024, 'seventy thousand twenty-four'), (18014, 30126, 'thirty thousand one hundred twenty-six'), (18015, 81077, 'eighty-one thousand seventy-seven'), (18016, 56914, 'fifty-six thousand nine hundred fourteen'), (18017, 53828, 'fifty-three thousand eight hundred twenty-eight'), (18018, 27228, 'twenty-seven thousand two hundred twenty-eight'), (18019, 9993, 'nine thousand nine hundred ninety-three'), (18020, 3068, 'three thousand sixty-eight'), (18021, 37906, 'thirty-seven thousand nine hundred six'), (18022, 74579, 'seventy-four thousand five hundred seventy-nine'), (18023, 65759, 'sixty-five thousand seven hundred fifty-nine'), (18024, 85183, 'eighty-five thousand one hundred eighty-three'), (18025, 58336, 'fifty-eight thousand three hundred thirty-six'), (18026, 34942, 'thirty-four thousand nine hundred forty-two'), (18027, 47704, 'forty-seven thousand seven hundred four'), (18028, 29699, 'twenty-nine thousand six hundred ninety-nine'), (18029, 48239, 'forty-eight thousand two hundred thirty-nine'), (18030, 95087, 'ninety-five thousand eighty-seven'), (18031, 4932, 'four thousand nine hundred thirty-two'), (18032, 46522, 'forty-six thousand five hundred twenty-two'), (18033, 27530, 'twenty-seven thousand five hundred thirty'), (18034, 30769, 'thirty thousand seven hundred sixty-nine'), (18035, 36540, 'thirty-six thousand five hundred forty'), (18036, 50683, 'fifty thousand six hundred eighty-three'), (18037, 2368, 'two thousand three hundred sixty-eight'), (18038, 94257, 'ninety-four thousand two hundred fifty-seven'), (18039, 9613, 'nine thousand six hundred thirteen'), (18040, 55861, 'fifty-five thousand eight hundred sixty-one'), (18041, 88442, 'eighty-eight thousand four hundred forty-two'), (18042, 16143, 'sixteen thousand one hundred forty-three'), (18043, 84943, 'eighty-four thousand nine hundred forty-three'), (18044, 68504, 'sixty-eight thousand five hundred four'), (18045, 93843, 'ninety-three thousand eight hundred forty-three'), (18046, 13186, 'thirteen thousand one hundred eighty-six'), (18047, 23238, 'twenty-three thousand two hundred thirty-eight'), (18048, 98507, 'ninety-eight thousand five hundred seven'), (18049, 5925, 'five thousand nine hundred twenty-five'), (18050, 85957, 'eighty-five thousand nine hundred fifty-seven'), (18051, 31111, 'thirty-one thousand one hundred eleven'), (18052, 59965, 'fifty-nine thousand nine hundred sixty-five'), (18053, 92816, 'ninety-two thousand eight hundred sixteen'), (18054, 52710, 'fifty-two thousand seven hundred ten'), (18055, 10541, 'ten thousand five hundred forty-one'), (18056, 12322, 'twelve thousand three hundred twenty-two'), (18057, 43736, 'forty-three thousand seven hundred thirty-six'), (18058, 68988, 'sixty-eight thousand nine hundred eighty-eight'), (18059, 59005, 'fifty-nine thousand five'), (18060, 51783, 'fifty-one thousand seven hundred eighty-three'), (18061, 75873, 'seventy-five thousand eight hundred seventy-three'), (18062, 56628, 'fifty-six thousand six hundred twenty-eight'), (18063, 65081, 'sixty-five thousand eighty-one'), (18064, 33059, 'thirty-three thousand fifty-nine'), (18065, 34342, 'thirty-four thousand three hundred forty-two'), (18066, 92252, 'ninety-two thousand two hundred fifty-two'), (18067, 88614, 'eighty-eight thousand six hundred fourteen'), (18068, 71734, 'seventy-one thousand seven hundred thirty-four'), (18069, 13511, 'thirteen thousand five hundred eleven'), (18070, 1641, 'one thousand six hundred forty-one'), (18071, 60353, 'sixty thousand three hundred fifty-three'), (18072, 55540, 'fifty-five thousand five hundred forty'), (18073, 81987, 'eighty-one thousand nine hundred eighty-seven'), (18074, 81009, 'eighty-one thousand nine'), (18075, 42246, 'forty-two thousand two hundred forty-six'), (18076, 5935, 'five thousand nine hundred thirty-five'), (18077, 62205, 'sixty-two thousand two hundred five'), (18078, 65614, 'sixty-five thousand six hundred fourteen'), (18079, 95842, 'ninety-five thousand eight hundred forty-two'), (18080, 39588, 'thirty-nine thousand five hundred eighty-eight'), (18081, 84271, 'eighty-four thousand two hundred seventy-one'), (18082, 50839, 'fifty thousand eight hundred thirty-nine'), (18083, 53520, 'fifty-three thousand five hundred twenty'), (18084, 46391, 'forty-six thousand three hundred ninety-one'), (18085, 96597, 'ninety-six thousand five hundred ninety-seven'), (18086, 50655, 'fifty thousand six hundred fifty-five'), (18087, 70757, 'seventy thousand seven hundred fifty-seven'), (18088, 14714, 'fourteen thousand seven hundred fourteen'), (18089, 97339, 'ninety-seven thousand three hundred thirty-nine'), (18090, 31265, 'thirty-one thousand two hundred sixty-five'), (18091, 27668, 'twenty-seven thousand six hundred sixty-eight'), (18092, 43832, 'forty-three thousand eight hundred thirty-two'), (18093, 97418, 'ninety-seven thousand four hundred eighteen'), (18094, 65042, 'sixty-five thousand forty-two'), (18095, 90074, 'ninety thousand seventy-four'), (18096, 87805, 'eighty-seven thousand eight hundred five'), (18097, 12612, 'twelve thousand six hundred twelve'), (18098, 86175, 'eighty-six thousand one hundred seventy-five'), (18099, 83403, 'eighty-three thousand four hundred three'), (18100, 97528, 'ninety-seven thousand five hundred twenty-eight'), (18101, 18517, 'eighteen thousand five hundred seventeen'), (18102, 51258, 'fifty-one thousand two hundred fifty-eight'), (18103, 90469, 'ninety thousand four hundred sixty-nine'), (18104, 34809, 'thirty-four thousand eight hundred nine'), (18105, 44780, 'forty-four thousand seven hundred eighty'), (18106, 17402, 'seventeen thousand four hundred two'), (18107, 65102, 'sixty-five thousand one hundred two'), (18108, 36667, 'thirty-six thousand six hundred sixty-seven'), (18109, 60010, 'sixty thousand ten'), (18110, 11518, 'eleven thousand five hundred eighteen'), (18111, 20867, 'twenty thousand eight hundred sixty-seven'), (18112, 23135, 'twenty-three thousand one hundred thirty-five'), (18113, 97125, 'ninety-seven thousand one hundred twenty-five'), (18114, 90884, 'ninety thousand eight hundred eighty-four'), (18115, 3753, 'three thousand seven hundred fifty-three'), (18116, 84093, 'eighty-four thousand ninety-three'), (18117, 15786, 'fifteen thousand seven hundred eighty-six'), (18118, 23000, 'twenty-three thousand'), (18119, 33087, 'thirty-three thousand eighty-seven'), (18120, 64898, 'sixty-four thousand eight hundred ninety-eight'), (18121, 16200, 'sixteen thousand two hundred'), (18122, 74484, 'seventy-four thousand four hundred eighty-four'), (18123, 33502, 'thirty-three thousand five hundred two'), (18124, 47339, 'forty-seven thousand three hundred thirty-nine'), (18125, 96785, 'ninety-six thousand seven hundred eighty-five'), (18126, 54734, 'fifty-four thousand seven hundred thirty-four'), (18127, 24230, 'twenty-four thousand two hundred thirty'), (18128, 63860, 'sixty-three thousand eight hundred sixty'), (18129, 48822, 'forty-eight thousand eight hundred twenty-two'), (18130, 82896, 'eighty-two thousand eight hundred ninety-six'), (18131, 10112, 'ten thousand one hundred twelve'), (18132, 9075, 'nine thousand seventy-five'), (18133, 14780, 'fourteen thousand seven hundred eighty'), (18134, 49475, 'forty-nine thousand four hundred seventy-five'), (18135, 24714, 'twenty-four thousand seven hundred fourteen'), (18136, 14943, 'fourteen thousand nine hundred forty-three'), (18137, 24686, 'twenty-four thousand six hundred eighty-six'), (18138, 36880, 'thirty-six thousand eight hundred eighty'), (18139, 79326, 'seventy-nine thousand three hundred twenty-six'), (18140, 30601, 'thirty thousand six hundred one'), (18141, 81379, 'eighty-one thousand three hundred seventy-nine'), (18142, 35694, 'thirty-five thousand six hundred ninety-four'), (18143, 5153, 'five thousand one hundred fifty-three'), (18144, 35016, 'thirty-five thousand sixteen'), (18145, 36034, 'thirty-six thousand thirty-four'), (18146, 6296, 'six thousand two hundred ninety-six'), (18147, 24982, 'twenty-four thousand nine hundred eighty-two'), (18148, 56176, 'fifty-six thousand one hundred seventy-six'), (18149, 3253, 'three thousand two hundred fifty-three'), (18150, 55845, 'fifty-five thousand eight hundred forty-five'), (18151, 81684, 'eighty-one thousand six hundred eighty-four'), (18152, 86517, 'eighty-six thousand five hundred seventeen'), (18153, 99051, 'ninety-nine thousand fifty-one'), (18154, 48695, 'forty-eight thousand six hundred ninety-five'), (18155, 69661, 'sixty-nine thousand six hundred sixty-one'), (18156, 76037, 'seventy-six thousand thirty-seven'), (18157, 41687, 'forty-one thousand six hundred eighty-seven'), (18158, 44266, 'forty-four thousand two hundred sixty-six'), (18159, 48769, 'forty-eight thousand seven hundred sixty-nine'), (18160, 5780, 'five thousand seven hundred eighty'), (18161, 53399, 'fifty-three thousand three hundred ninety-nine'), (18162, 2897, 'two thousand eight hundred ninety-seven'), (18163, 76323, 'seventy-six thousand three hundred twenty-three'), (18164, 49273, 'forty-nine thousand two hundred seventy-three'), (18165, 9685, 'nine thousand six hundred eighty-five'), (18166, 27050, 'twenty-seven thousand fifty'), (18167, 25116, 'twenty-five thousand one hundred sixteen'), (18168, 8942, 'eight thousand nine hundred forty-two'), (18169, 74359, 'seventy-four thousand three hundred fifty-nine'), (18170, 16774, 'sixteen thousand seven hundred seventy-four'), (18171, 17060, 'seventeen thousand sixty'), (18172, 84211, 'eighty-four thousand two hundred eleven'), (18173, 82852, 'eighty-two thousand eight hundred fifty-two'), (18174, 35496, 'thirty-five thousand four hundred ninety-six'), (18175, 59457, 'fifty-nine thousand four hundred fifty-seven'), (18176, 47516, 'forty-seven thousand five hundred sixteen'), (18177, 43854, 'forty-three thousand eight hundred fifty-four'), (18178, 92712, 'ninety-two thousand seven hundred twelve'), (18179, 79098, 'seventy-nine thousand ninety-eight'), (18180, 21502, 'twenty-one thousand five hundred two'), (18181, 59637, 'fifty-nine thousand six hundred thirty-seven'), (18182, 64537, 'sixty-four thousand five hundred thirty-seven'), (18183, 84158, 'eighty-four thousand one hundred fifty-eight'), (18184, 50642, 'fifty thousand six hundred forty-two'), (18185, 52862, 'fifty-two thousand eight hundred sixty-two'), (18186, 53577, 'fifty-three thousand five hundred seventy-seven'), (18187, 1878, 'one thousand eight hundred seventy-eight'), (18188, 22071, 'twenty-two thousand seventy-one'), (18189, 27161, 'twenty-seven thousand one hundred sixty-one'), (18190, 64374, 'sixty-four thousand three hundred seventy-four'), (18191, 20246, 'twenty thousand two hundred forty-six'), (18192, 79039, 'seventy-nine thousand thirty-nine'), (18193, 84932, 'eighty-four thousand nine hundred thirty-two'), (18194, 23998, 'twenty-three thousand nine hundred ninety-eight'), (18195, 11418, 'eleven thousand four hundred eighteen'), (18196, 60607, 'sixty thousand six hundred seven'), (18197, 59348, 'fifty-nine thousand three hundred forty-eight'), (18198, 30387, 'thirty thousand three hundred eighty-seven'), (18199, 61315, 'sixty-one thousand three hundred fifteen'), (18200, 81309, 'eighty-one thousand three hundred nine'), (18201, 24516, 'twenty-four thousand five hundred sixteen'), (18202, 50635, 'fifty thousand six hundred thirty-five'), (18203, 51920, 'fifty-one thousand nine hundred twenty'), (18204, 93460, 'ninety-three thousand four hundred sixty'), (18205, 19742, 'nineteen thousand seven hundred forty-two'), (18206, 18636, 'eighteen thousand six hundred thirty-six'), (18207, 46930, 'forty-six thousand nine hundred thirty'), (18208, 9529, 'nine thousand five hundred twenty-nine'), (18209, 51897, 'fifty-one thousand eight hundred ninety-seven'), (18210, 68078, 'sixty-eight thousand seventy-eight'), (18211, 2627, 'two thousand six hundred twenty-seven'), (18212, 76397, 'seventy-six thousand three hundred ninety-seven'), (18213, 3804, 'three thousand eight hundred four'), (18214, 69943, 'sixty-nine thousand nine hundred forty-three'), (18215, 78204, 'seventy-eight thousand two hundred four'), (18216, 21311, 'twenty-one thousand three hundred eleven'), (18217, 8966, 'eight thousand nine hundred sixty-six'), (18218, 52972, 'fifty-two thousand nine hundred seventy-two'), (18219, 43969, 'forty-three thousand nine hundred sixty-nine'), (18220, 11308, 'eleven thousand three hundred eight'), (18221, 7718, 'seven thousand seven hundred eighteen'), (18222, 77721, 'seventy-seven thousand seven hundred twenty-one'), (18223, 28942, 'twenty-eight thousand nine hundred forty-two'), (18224, 49210, 'forty-nine thousand two hundred ten'), (18225, 16401, 'sixteen thousand four hundred one'), (18226, 86843, 'eighty-six thousand eight hundred forty-three'), (18227, 30902, 'thirty thousand nine hundred two'), (18228, 56063, 'fifty-six thousand sixty-three'), (18229, 6257, 'six thousand two hundred fifty-seven'), (18230, 76737, 'seventy-six thousand seven hundred thirty-seven'), (18231, 34825, 'thirty-four thousand eight hundred twenty-five'), (18232, 16194, 'sixteen thousand one hundred ninety-four'), (18233, 26122, 'twenty-six thousand one hundred twenty-two'), (18234, 70025, 'seventy thousand twenty-five'), (18235, 48124, 'forty-eight thousand one hundred twenty-four'), (18236, 78417, 'seventy-eight thousand four hundred seventeen'), (18237, 86395, 'eighty-six thousand three hundred ninety-five'), (18238, 87713, 'eighty-seven thousand seven hundred thirteen'), (18239, 51009, 'fifty-one thousand nine'), (18240, 73813, 'seventy-three thousand eight hundred thirteen'), (18241, 31835, 'thirty-one thousand eight hundred thirty-five'), (18242, 19299, 'nineteen thousand two hundred ninety-nine'), (18243, 47732, 'forty-seven thousand seven hundred thirty-two'), (18244, 996, 'nine hundred ninety-six'), (18245, 8223, 'eight thousand two hundred twenty-three'), (18246, 10792, 'ten thousand seven hundred ninety-two'), (18247, 5085, 'five thousand eighty-five'), (18248, 64617, 'sixty-four thousand six hundred seventeen'), (18249, 2321, 'two thousand three hundred twenty-one'), (18250, 38299, 'thirty-eight thousand two hundred ninety-nine'), (18251, 80401, 'eighty thousand four hundred one'), (18252, 53315, 'fifty-three thousand three hundred fifteen'), (18253, 58755, 'fifty-eight thousand seven hundred fifty-five'), (18254, 64247, 'sixty-four thousand two hundred forty-seven'), (18255, 86587, 'eighty-six thousand five hundred eighty-seven'), (18256, 77288, 'seventy-seven thousand two hundred eighty-eight'), (18257, 30358, 'thirty thousand three hundred fifty-eight'), (18258, 74818, 'seventy-four thousand eight hundred eighteen'), (18259, 77945, 'seventy-seven thousand nine hundred forty-five'), (18260, 7023, 'seven thousand twenty-three'), (18261, 87292, 'eighty-seven thousand two hundred ninety-two'), (18262, 97220, 'ninety-seven thousand two hundred twenty'), (18263, 25983, 'twenty-five thousand nine hundred eighty-three'), (18264, 56976, 'fifty-six thousand nine hundred seventy-six'), (18265, 84091, 'eighty-four thousand ninety-one'), (18266, 88097, 'eighty-eight thousand ninety-seven'), (18267, 52424, 'fifty-two thousand four hundred twenty-four'), (18268, 19355, 'nineteen thousand three hundred fifty-five'), (18269, 31643, 'thirty-one thousand six hundred forty-three'), (18270, 54584, 'fifty-four thousand five hundred eighty-four'), (18271, 51599, 'fifty-one thousand five hundred ninety-nine'), (18272, 60062, 'sixty thousand sixty-two'), (18273, 54742, 'fifty-four thousand seven hundred forty-two'), (18274, 57724, 'fifty-seven thousand seven hundred twenty-four'), (18275, 45933, 'forty-five thousand nine hundred thirty-three'), (18276, 29680, 'twenty-nine thousand six hundred eighty'), (18277, 97832, 'ninety-seven thousand eight hundred thirty-two'), (18278, 64374, 'sixty-four thousand three hundred seventy-four'), (18279, 42366, 'forty-two thousand three hundred sixty-six'), (18280, 30522, 'thirty thousand five hundred twenty-two'), (18281, 19807, 'nineteen thousand eight hundred seven'), (18282, 59948, 'fifty-nine thousand nine hundred forty-eight'), (18283, 6594, 'six thousand five hundred ninety-four'), (18284, 41687, 'forty-one thousand six hundred eighty-seven'), (18285, 976, 'nine hundred seventy-six'), (18286, 24438, 'twenty-four thousand four hundred thirty-eight'), (18287, 91114, 'ninety-one thousand one hundred fourteen'), (18288, 20747, 'twenty thousand seven hundred forty-seven'), (18289, 71132, 'seventy-one thousand one hundred thirty-two'), (18290, 65628, 'sixty-five thousand six hundred twenty-eight'), (18291, 68844, 'sixty-eight thousand eight hundred forty-four'), (18292, 78142, 'seventy-eight thousand one hundred forty-two'), (18293, 73195, 'seventy-three thousand one hundred ninety-five'), (18294, 44241, 'forty-four thousand two hundred forty-one'), (18295, 61208, 'sixty-one thousand two hundred eight'), (18296, 38710, 'thirty-eight thousand seven hundred ten'), (18297, 15264, 'fifteen thousand two hundred sixty-four'), (18298, 16725, 'sixteen thousand seven hundred twenty-five'), (18299, 44131, 'forty-four thousand one hundred thirty-one'), (18300, 55692, 'fifty-five thousand six hundred ninety-two'), (18301, 65051, 'sixty-five thousand fifty-one'), (18302, 46725, 'forty-six thousand seven hundred twenty-five'), (18303, 45137, 'forty-five thousand one hundred thirty-seven'), (18304, 88708, 'eighty-eight thousand seven hundred eight'), (18305, 22612, 'twenty-two thousand six hundred twelve'), (18306, 51228, 'fifty-one thousand two hundred twenty-eight'), (18307, 68304, 'sixty-eight thousand three hundred four'), (18308, 33177, 'thirty-three thousand one hundred seventy-seven'), (18309, 57633, 'fifty-seven thousand six hundred thirty-three'), (18310, 25377, 'twenty-five thousand three hundred seventy-seven'), (18311, 69279, 'sixty-nine thousand two hundred seventy-nine'), (18312, 86015, 'eighty-six thousand fifteen'), (18313, 76678, 'seventy-six thousand six hundred seventy-eight'), (18314, 24319, 'twenty-four thousand three hundred nineteen'), (18315, 35107, 'thirty-five thousand one hundred seven'), (18316, 38478, 'thirty-eight thousand four hundred seventy-eight'), (18317, 53921, 'fifty-three thousand nine hundred twenty-one'), (18318, 81705, 'eighty-one thousand seven hundred five'), (18319, 74888, 'seventy-four thousand eight hundred eighty-eight'), (18320, 49500, 'forty-nine thousand five hundred'), (18321, 19384, 'nineteen thousand three hundred eighty-four'), (18322, 18388, 'eighteen thousand three hundred eighty-eight'), (18323, 61515, 'sixty-one thousand five hundred fifteen'), (18324, 41419, 'forty-one thousand four hundred nineteen'), (18325, 82468, 'eighty-two thousand four hundred sixty-eight'), (18326, 99380, 'ninety-nine thousand three hundred eighty'), (18327, 45167, 'forty-five thousand one hundred sixty-seven'), (18328, 85160, 'eighty-five thousand one hundred sixty'), (18329, 72739, 'seventy-two thousand seven hundred thirty-nine'), (18330, 903, 'nine hundred three'), (18331, 3952, 'three thousand nine hundred fifty-two'), (18332, 80286, 'eighty thousand two hundred eighty-six'), (18333, 37632, 'thirty-seven thousand six hundred thirty-two'), (18334, 67183, 'sixty-seven thousand one hundred eighty-three'), (18335, 74772, 'seventy-four thousand seven hundred seventy-two'), (18336, 45775, 'forty-five thousand seven hundred seventy-five'), (18337, 6140, 'six thousand one hundred forty'), (18338, 66729, 'sixty-six thousand seven hundred twenty-nine'), (18339, 63314, 'sixty-three thousand three hundred fourteen'), (18340, 55524, 'fifty-five thousand five hundred twenty-four'), (18341, 27110, 'twenty-seven thousand one hundred ten'), (18342, 64228, 'sixty-four thousand two hundred twenty-eight'), (18343, 94382, 'ninety-four thousand three hundred eighty-two'), (18344, 83692, 'eighty-three thousand six hundred ninety-two'), (18345, 66141, 'sixty-six thousand one hundred forty-one'), (18346, 47972, 'forty-seven thousand nine hundred seventy-two'), (18347, 50844, 'fifty thousand eight hundred forty-four'), (18348, 89925, 'eighty-nine thousand nine hundred twenty-five'), (18349, 27064, 'twenty-seven thousand sixty-four'), (18350, 28613, 'twenty-eight thousand six hundred thirteen'), (18351, 26202, 'twenty-six thousand two hundred two'), (18352, 77549, 'seventy-seven thousand five hundred forty-nine'), (18353, 63689, 'sixty-three thousand six hundred eighty-nine'), (18354, 50428, 'fifty thousand four hundred twenty-eight'), (18355, 74060, 'seventy-four thousand sixty'), (18356, 74889, 'seventy-four thousand eight hundred eighty-nine'), (18357, 1489, 'one thousand four hundred eighty-nine'), (18358, 93198, 'ninety-three thousand one hundred ninety-eight'), (18359, 64793, 'sixty-four thousand seven hundred ninety-three'), (18360, 87947, 'eighty-seven thousand nine hundred forty-seven'), (18361, 87510, 'eighty-seven thousand five hundred ten'), (18362, 39211, 'thirty-nine thousand two hundred eleven'), (18363, 23641, 'twenty-three thousand six hundred forty-one'), (18364, 70192, 'seventy thousand one hundred ninety-two'), (18365, 90185, 'ninety thousand one hundred eighty-five'), (18366, 60627, 'sixty thousand six hundred twenty-seven'), (18367, 90277, 'ninety thousand two hundred seventy-seven'), (18368, 22697, 'twenty-two thousand six hundred ninety-seven'), (18369, 25456, 'twenty-five thousand four hundred fifty-six'), (18370, 27193, 'twenty-seven thousand one hundred ninety-three'), (18371, 83459, 'eighty-three thousand four hundred fifty-nine'), (18372, 58361, 'fifty-eight thousand three hundred sixty-one'), (18373, 94507, 'ninety-four thousand five hundred seven'), (18374, 42456, 'forty-two thousand four hundred fifty-six'), (18375, 45775, 'forty-five thousand seven hundred seventy-five'), (18376, 78177, 'seventy-eight thousand one hundred seventy-seven'), (18377, 99884, 'ninety-nine thousand eight hundred eighty-four'), (18378, 89989, 'eighty-nine thousand nine hundred eighty-nine'), (18379, 3411, 'three thousand four hundred eleven'), (18380, 39445, 'thirty-nine thousand four hundred forty-five'), (18381, 80567, 'eighty thousand five hundred sixty-seven'), (18382, 75406, 'seventy-five thousand four hundred six'), (18383, 69302, 'sixty-nine thousand three hundred two'), (18384, 17856, 'seventeen thousand eight hundred fifty-six'), (18385, 69150, 'sixty-nine thousand one hundred fifty'), (18386, 91985, 'ninety-one thousand nine hundred eighty-five'), (18387, 50213, 'fifty thousand two hundred thirteen'), (18388, 50372, 'fifty thousand three hundred seventy-two'), (18389, 79670, 'seventy-nine thousand six hundred seventy'), (18390, 36403, 'thirty-six thousand four hundred three'), (18391, 67890, 'sixty-seven thousand eight hundred ninety'), (18392, 85477, 'eighty-five thousand four hundred seventy-seven'), (18393, 83491, 'eighty-three thousand four hundred ninety-one'), (18394, 62623, 'sixty-two thousand six hundred twenty-three'), (18395, 55489, 'fifty-five thousand four hundred eighty-nine'), (18396, 96528, 'ninety-six thousand five hundred twenty-eight'), (18397, 92954, 'ninety-two thousand nine hundred fifty-four'), (18398, 1654, 'one thousand six hundred fifty-four'), (18399, 30687, 'thirty thousand six hundred eighty-seven'), (18400, 43342, 'forty-three thousand three hundred forty-two'), (18401, 11341, 'eleven thousand three hundred forty-one'), (18402, 14932, 'fourteen thousand nine hundred thirty-two'), (18403, 61091, 'sixty-one thousand ninety-one'), (18404, 51662, 'fifty-one thousand six hundred sixty-two'), (18405, 94771, 'ninety-four thousand seven hundred seventy-one'), (18406, 1972, 'one thousand nine hundred seventy-two'), (18407, 58946, 'fifty-eight thousand nine hundred forty-six'), (18408, 92849, 'ninety-two thousand eight hundred forty-nine'), (18409, 71729, 'seventy-one thousand seven hundred twenty-nine'), (18410, 99638, 'ninety-nine thousand six hundred thirty-eight'), (18411, 13245, 'thirteen thousand two hundred forty-five'), (18412, 8477, 'eight thousand four hundred seventy-seven'), (18413, 17911, 'seventeen thousand nine hundred eleven'), (18414, 53383, 'fifty-three thousand three hundred eighty-three'), (18415, 89717, 'eighty-nine thousand seven hundred seventeen'), (18416, 59461, 'fifty-nine thousand four hundred sixty-one'), (18417, 97991, 'ninety-seven thousand nine hundred ninety-one'), (18418, 97374, 'ninety-seven thousand three hundred seventy-four'), (18419, 24503, 'twenty-four thousand five hundred three'), (18420, 42542, 'forty-two thousand five hundred forty-two'), (18421, 75529, 'seventy-five thousand five hundred twenty-nine'), (18422, 75777, 'seventy-five thousand seven hundred seventy-seven'), (18423, 66107, 'sixty-six thousand one hundred seven'), (18424, 35511, 'thirty-five thousand five hundred eleven'), (18425, 32886, 'thirty-two thousand eight hundred eighty-six'), (18426, 46627, 'forty-six thousand six hundred twenty-seven'), (18427, 39785, 'thirty-nine thousand seven hundred eighty-five'), (18428, 95150, 'ninety-five thousand one hundred fifty'), (18429, 16706, 'sixteen thousand seven hundred six'), (18430, 25967, 'twenty-five thousand nine hundred sixty-seven'), (18431, 43901, 'forty-three thousand nine hundred one'), (18432, 388, 'three hundred eighty-eight'), (18433, 93434, 'ninety-three thousand four hundred thirty-four'), (18434, 63865, 'sixty-three thousand eight hundred sixty-five'), (18435, 55652, 'fifty-five thousand six hundred fifty-two'), (18436, 92549, 'ninety-two thousand five hundred forty-nine'), (18437, 93456, 'ninety-three thousand four hundred fifty-six'), (18438, 46926, 'forty-six thousand nine hundred twenty-six'), (18439, 72986, 'seventy-two thousand nine hundred eighty-six'), (18440, 87309, 'eighty-seven thousand three hundred nine'), (18441, 14182, 'fourteen thousand one hundred eighty-two'), (18442, 75379, 'seventy-five thousand three hundred seventy-nine'), (18443, 17174, 'seventeen thousand one hundred seventy-four'), (18444, 42335, 'forty-two thousand three hundred thirty-five'), (18445, 33390, 'thirty-three thousand three hundred ninety'), (18446, 3238, 'three thousand two hundred thirty-eight'), (18447, 41810, 'forty-one thousand eight hundred ten'), (18448, 72465, 'seventy-two thousand four hundred sixty-five'), (18449, 35974, 'thirty-five thousand nine hundred seventy-four'), (18450, 52491, 'fifty-two thousand four hundred ninety-one'), (18451, 76467, 'seventy-six thousand four hundred sixty-seven'), (18452, 81814, 'eighty-one thousand eight hundred fourteen'), (18453, 93487, 'ninety-three thousand four hundred eighty-seven'), (18454, 33693, 'thirty-three thousand six hundred ninety-three'), (18455, 50781, 'fifty thousand seven hundred eighty-one'), (18456, 29834, 'twenty-nine thousand eight hundred thirty-four'), (18457, 37711, 'thirty-seven thousand seven hundred eleven'), (18458, 33883, 'thirty-three thousand eight hundred eighty-three'), (18459, 32302, 'thirty-two thousand three hundred two'), (18460, 67171, 'sixty-seven thousand one hundred seventy-one'), (18461, 17351, 'seventeen thousand three hundred fifty-one'), (18462, 36245, 'thirty-six thousand two hundred forty-five'), (18463, 55781, 'fifty-five thousand seven hundred eighty-one'), (18464, 89311, 'eighty-nine thousand three hundred eleven'), (18465, 2192, 'two thousand one hundred ninety-two'), (18466, 76841, 'seventy-six thousand eight hundred forty-one'), (18467, 8533, 'eight thousand five hundred thirty-three'), (18468, 2852, 'two thousand eight hundred fifty-two'), (18469, 55734, 'fifty-five thousand seven hundred thirty-four'), (18470, 96069, 'ninety-six thousand sixty-nine'), (18471, 89693, 'eighty-nine thousand six hundred ninety-three'), (18472, 49818, 'forty-nine thousand eight hundred eighteen'), (18473, 84487, 'eighty-four thousand four hundred eighty-seven'), (18474, 88751, 'eighty-eight thousand seven hundred fifty-one'), (18475, 12503, 'twelve thousand five hundred three'), (18476, 91114, 'ninety-one thousand one hundred fourteen'), (18477, 57500, 'fifty-seven thousand five hundred'), (18478, 7997, 'seven thousand nine hundred ninety-seven'), (18479, 62648, 'sixty-two thousand six hundred forty-eight'), (18480, 45973, 'forty-five thousand nine hundred seventy-three'), (18481, 10878, 'ten thousand eight hundred seventy-eight'), (18482, 75158, 'seventy-five thousand one hundred fifty-eight'), (18483, 75392, 'seventy-five thousand three hundred ninety-two'), (18484, 95091, 'ninety-five thousand ninety-one'), (18485, 67895, 'sixty-seven thousand eight hundred ninety-five'), (18486, 45044, 'forty-five thousand forty-four'), (18487, 98820, 'ninety-eight thousand eight hundred twenty'), (18488, 85904, 'eighty-five thousand nine hundred four'), (18489, 26344, 'twenty-six thousand three hundred forty-four'), (18490, 63503, 'sixty-three thousand five hundred three'), (18491, 59648, 'fifty-nine thousand six hundred forty-eight'), (18492, 90336, 'ninety thousand three hundred thirty-six'), (18493, 34940, 'thirty-four thousand nine hundred forty'), (18494, 57506, 'fifty-seven thousand five hundred six'), (18495, 46592, 'forty-six thousand five hundred ninety-two'), (18496, 42923, 'forty-two thousand nine hundred twenty-three'), (18497, 9972, 'nine thousand nine hundred seventy-two'), (18498, 26883, 'twenty-six thousand eight hundred eighty-three'), (18499, 35845, 'thirty-five thousand eight hundred forty-five'), (18500, 27429, 'twenty-seven thousand four hundred twenty-nine'), (18501, 66395, 'sixty-six thousand three hundred ninety-five'), (18502, 38444, 'thirty-eight thousand four hundred forty-four'), (18503, 20797, 'twenty thousand seven hundred ninety-seven'), (18504, 13173, 'thirteen thousand one hundred seventy-three'), (18505, 27531, 'twenty-seven thousand five hundred thirty-one'), (18506, 28425, 'twenty-eight thousand four hundred twenty-five'), (18507, 65182, 'sixty-five thousand one hundred eighty-two'), (18508, 53616, 'fifty-three thousand six hundred sixteen'), (18509, 88065, 'eighty-eight thousand sixty-five'), (18510, 93708, 'ninety-three thousand seven hundred eight'), (18511, 11671, 'eleven thousand six hundred seventy-one'), (18512, 65037, 'sixty-five thousand thirty-seven'), (18513, 32758, 'thirty-two thousand seven hundred fifty-eight'), (18514, 67010, 'sixty-seven thousand ten'), (18515, 26448, 'twenty-six thousand four hundred forty-eight'), (18516, 73537, 'seventy-three thousand five hundred thirty-seven'), (18517, 64700, 'sixty-four thousand seven hundred'), (18518, 45543, 'forty-five thousand five hundred forty-three'), (18519, 59593, 'fifty-nine thousand five hundred ninety-three'), (18520, 95337, 'ninety-five thousand three hundred thirty-seven'), (18521, 54809, 'fifty-four thousand eight hundred nine'), (18522, 29661, 'twenty-nine thousand six hundred sixty-one'), (18523, 14182, 'fourteen thousand one hundred eighty-two'), (18524, 35101, 'thirty-five thousand one hundred one'), (18525, 1288, 'one thousand two hundred eighty-eight'), (18526, 60433, 'sixty thousand four hundred thirty-three'), (18527, 5988, 'five thousand nine hundred eighty-eight'), (18528, 80143, 'eighty thousand one hundred forty-three'), (18529, 89770, 'eighty-nine thousand seven hundred seventy'), (18530, 66060, 'sixty-six thousand sixty'), (18531, 35544, 'thirty-five thousand five hundred forty-four'), (18532, 16239, 'sixteen thousand two hundred thirty-nine'), (18533, 87566, 'eighty-seven thousand five hundred sixty-six'), (18534, 87869, 'eighty-seven thousand eight hundred sixty-nine'), (18535, 36552, 'thirty-six thousand five hundred fifty-two'), (18536, 20681, 'twenty thousand six hundred eighty-one'), (18537, 32961, 'thirty-two thousand nine hundred sixty-one'), (18538, 61273, 'sixty-one thousand two hundred seventy-three'), (18539, 28139, 'twenty-eight thousand one hundred thirty-nine'), (18540, 62584, 'sixty-two thousand five hundred eighty-four'), (18541, 61020, 'sixty-one thousand twenty'), (18542, 88856, 'eighty-eight thousand eight hundred fifty-six'), (18543, 25926, 'twenty-five thousand nine hundred twenty-six'), (18544, 86626, 'eighty-six thousand six hundred twenty-six'), (18545, 32770, 'thirty-two thousand seven hundred seventy'), (18546, 67162, 'sixty-seven thousand one hundred sixty-two'), (18547, 77954, 'seventy-seven thousand nine hundred fifty-four'), (18548, 95855, 'ninety-five thousand eight hundred fifty-five'), (18549, 92285, 'ninety-two thousand two hundred eighty-five'), (18550, 24628, 'twenty-four thousand six hundred twenty-eight'), (18551, 76317, 'seventy-six thousand three hundred seventeen'), (18552, 42831, 'forty-two thousand eight hundred thirty-one'), (18553, 43663, 'forty-three thousand six hundred sixty-three'), (18554, 79880, 'seventy-nine thousand eight hundred eighty'), (18555, 42843, 'forty-two thousand eight hundred forty-three'), (18556, 29024, 'twenty-nine thousand twenty-four'), (18557, 49405, 'forty-nine thousand four hundred five'), (18558, 56569, 'fifty-six thousand five hundred sixty-nine'), (18559, 51993, 'fifty-one thousand nine hundred ninety-three'), (18560, 38950, 'thirty-eight thousand nine hundred fifty'), (18561, 38611, 'thirty-eight thousand six hundred eleven'), (18562, 51912, 'fifty-one thousand nine hundred twelve'), (18563, 95065, 'ninety-five thousand sixty-five'), (18564, 4978, 'four thousand nine hundred seventy-eight'), (18565, 53049, 'fifty-three thousand forty-nine'), (18566, 50983, 'fifty thousand nine hundred eighty-three'), (18567, 61528, 'sixty-one thousand five hundred twenty-eight'), (18568, 11574, 'eleven thousand five hundred seventy-four'), (18569, 89229, 'eighty-nine thousand two hundred twenty-nine'), (18570, 81508, 'eighty-one thousand five hundred eight'), (18571, 2888, 'two thousand eight hundred eighty-eight'), (18572, 45677, 'forty-five thousand six hundred seventy-seven'), (18573, 35397, 'thirty-five thousand three hundred ninety-seven'), (18574, 27297, 'twenty-seven thousand two hundred ninety-seven'), (18575, 49487, 'forty-nine thousand four hundred eighty-seven'), (18576, 7079, 'seven thousand seventy-nine'), (18577, 1439, 'one thousand four hundred thirty-nine'), (18578, 91577, 'ninety-one thousand five hundred seventy-seven'), (18579, 52222, 'fifty-two thousand two hundred twenty-two'), (18580, 98450, 'ninety-eight thousand four hundred fifty'), (18581, 96404, 'ninety-six thousand four hundred four'), (18582, 16749, 'sixteen thousand seven hundred forty-nine'), (18583, 77369, 'seventy-seven thousand three hundred sixty-nine'), (18584, 94287, 'ninety-four thousand two hundred eighty-seven'), (18585, 50644, 'fifty thousand six hundred forty-four'), (18586, 16600, 'sixteen thousand six hundred'), (18587, 5604, 'five thousand six hundred four'), (18588, 95991, 'ninety-five thousand nine hundred ninety-one'), (18589, 12146, 'twelve thousand one hundred forty-six'), (18590, 94594, 'ninety-four thousand five hundred ninety-four'), (18591, 68674, 'sixty-eight thousand six hundred seventy-four'), (18592, 7973, 'seven thousand nine hundred seventy-three'), (18593, 548, 'five hundred forty-eight'), (18594, 15923, 'fifteen thousand nine hundred twenty-three'), (18595, 9617, 'nine thousand six hundred seventeen'), (18596, 46310, 'forty-six thousand three hundred ten'), (18597, 38998, 'thirty-eight thousand nine hundred ninety-eight'), (18598, 57096, 'fifty-seven thousand ninety-six'), (18599, 41587, 'forty-one thousand five hundred eighty-seven'), (18600, 42024, 'forty-two thousand twenty-four'), (18601, 83167, 'eighty-three thousand one hundred sixty-seven'), (18602, 9964, 'nine thousand nine hundred sixty-four'), (18603, 92292, 'ninety-two thousand two hundred ninety-two'), (18604, 46817, 'forty-six thousand eight hundred seventeen'), (18605, 25176, 'twenty-five thousand one hundred seventy-six'), (18606, 17832, 'seventeen thousand eight hundred thirty-two'), (18607, 77585, 'seventy-seven thousand five hundred eighty-five'), (18608, 63098, 'sixty-three thousand ninety-eight'), (18609, 84170, 'eighty-four thousand one hundred seventy'), (18610, 14254, 'fourteen thousand two hundred fifty-four'), (18611, 4597, 'four thousand five hundred ninety-seven'), (18612, 91313, 'ninety-one thousand three hundred thirteen'), (18613, 25550, 'twenty-five thousand five hundred fifty'), (18614, 33302, 'thirty-three thousand three hundred two'), (18615, 35703, 'thirty-five thousand seven hundred three'), (18616, 82237, 'eighty-two thousand two hundred thirty-seven'), (18617, 34118, 'thirty-four thousand one hundred eighteen'), (18618, 46597, 'forty-six thousand five hundred ninety-seven'), (18619, 30992, 'thirty thousand nine hundred ninety-two'), (18620, 62118, 'sixty-two thousand one hundred eighteen'), (18621, 79099, 'seventy-nine thousand ninety-nine'), (18622, 9459, 'nine thousand four hundred fifty-nine'), (18623, 62395, 'sixty-two thousand three hundred ninety-five'), (18624, 72918, 'seventy-two thousand nine hundred eighteen'), (18625, 26053, 'twenty-six thousand fifty-three'), (18626, 37779, 'thirty-seven thousand seven hundred seventy-nine'), (18627, 15200, 'fifteen thousand two hundred'), (18628, 1543, 'one thousand five hundred forty-three'), (18629, 59638, 'fifty-nine thousand six hundred thirty-eight'), (18630, 44749, 'forty-four thousand seven hundred forty-nine'), (18631, 11191, 'eleven thousand one hundred ninety-one'), (18632, 95989, 'ninety-five thousand nine hundred eighty-nine'), (18633, 49339, 'forty-nine thousand three hundred thirty-nine'), (18634, 41797, 'forty-one thousand seven hundred ninety-seven'), (18635, 23431, 'twenty-three thousand four hundred thirty-one'), (18636, 43870, 'forty-three thousand eight hundred seventy'), (18637, 84647, 'eighty-four thousand six hundred forty-seven'), (18638, 27268, 'twenty-seven thousand two hundred sixty-eight'), (18639, 40935, 'forty thousand nine hundred thirty-five'), (18640, 60727, 'sixty thousand seven hundred twenty-seven'), (18641, 96167, 'ninety-six thousand one hundred sixty-seven'), (18642, 51546, 'fifty-one thousand five hundred forty-six'), (18643, 25410, 'twenty-five thousand four hundred ten'), (18644, 13248, 'thirteen thousand two hundred forty-eight'), (18645, 97665, 'ninety-seven thousand six hundred sixty-five'), (18646, 4181, 'four thousand one hundred eighty-one'), (18647, 39132, 'thirty-nine thousand one hundred thirty-two'), (18648, 30539, 'thirty thousand five hundred thirty-nine'), (18649, 55099, 'fifty-five thousand ninety-nine'), (18650, 48603, 'forty-eight thousand six hundred three'), (18651, 42679, 'forty-two thousand six hundred seventy-nine'), (18652, 28675, 'twenty-eight thousand six hundred seventy-five'), (18653, 60301, 'sixty thousand three hundred one'), (18654, 85341, 'eighty-five thousand three hundred forty-one'), (18655, 35306, 'thirty-five thousand three hundred six'), (18656, 49343, 'forty-nine thousand three hundred forty-three'), (18657, 52614, 'fifty-two thousand six hundred fourteen'), (18658, 31677, 'thirty-one thousand six hundred seventy-seven'), (18659, 11346, 'eleven thousand three hundred forty-six'), (18660, 53411, 'fifty-three thousand four hundred eleven'), (18661, 99199, 'ninety-nine thousand one hundred ninety-nine'), (18662, 32163, 'thirty-two thousand one hundred sixty-three'), (18663, 68289, 'sixty-eight thousand two hundred eighty-nine'), (18664, 90230, 'ninety thousand two hundred thirty'), (18665, 75919, 'seventy-five thousand nine hundred nineteen'), (18666, 34044, 'thirty-four thousand forty-four'), (18667, 49904, 'forty-nine thousand nine hundred four'), (18668, 85650, 'eighty-five thousand six hundred fifty'), (18669, 18062, 'eighteen thousand sixty-two'), (18670, 22579, 'twenty-two thousand five hundred seventy-nine'), (18671, 11010, 'eleven thousand ten'), (18672, 11271, 'eleven thousand two hundred seventy-one'), (18673, 7284, 'seven thousand two hundred eighty-four'), (18674, 18480, 'eighteen thousand four hundred eighty'), (18675, 9578, 'nine thousand five hundred seventy-eight'), (18676, 43174, 'forty-three thousand one hundred seventy-four'), (18677, 75965, 'seventy-five thousand nine hundred sixty-five'), (18678, 98446, 'ninety-eight thousand four hundred forty-six'), (18679, 11444, 'eleven thousand four hundred forty-four'), (18680, 98202, 'ninety-eight thousand two hundred two'), (18681, 8258, 'eight thousand two hundred fifty-eight'), (18682, 32675, 'thirty-two thousand six hundred seventy-five'), (18683, 78554, 'seventy-eight thousand five hundred fifty-four'), (18684, 16884, 'sixteen thousand eight hundred eighty-four'), (18685, 15310, 'fifteen thousand three hundred ten'), (18686, 35758, 'thirty-five thousand seven hundred fifty-eight'), (18687, 36913, 'thirty-six thousand nine hundred thirteen'), (18688, 92009, 'ninety-two thousand nine'), (18689, 68205, 'sixty-eight thousand two hundred five'), (18690, 84239, 'eighty-four thousand two hundred thirty-nine'), (18691, 88664, 'eighty-eight thousand six hundred sixty-four'), (18692, 97755, 'ninety-seven thousand seven hundred fifty-five'), (18693, 7560, 'seven thousand five hundred sixty'), (18694, 55386, 'fifty-five thousand three hundred eighty-six'), (18695, 44610, 'forty-four thousand six hundred ten'), (18696, 27478, 'twenty-seven thousand four hundred seventy-eight'), (18697, 47371, 'forty-seven thousand three hundred seventy-one'), (18698, 11486, 'eleven thousand four hundred eighty-six'), (18699, 51099, 'fifty-one thousand ninety-nine'), (18700, 78602, 'seventy-eight thousand six hundred two'), (18701, 63112, 'sixty-three thousand one hundred twelve'), (18702, 27265, 'twenty-seven thousand two hundred sixty-five'), (18703, 70689, 'seventy thousand six hundred eighty-nine'), (18704, 90717, 'ninety thousand seven hundred seventeen'), (18705, 25091, 'twenty-five thousand ninety-one'), (18706, 18528, 'eighteen thousand five hundred twenty-eight'), (18707, 33035, 'thirty-three thousand thirty-five'), (18708, 69001, 'sixty-nine thousand one'), (18709, 78426, 'seventy-eight thousand four hundred twenty-six'), (18710, 13304, 'thirteen thousand three hundred four'), (18711, 89892, 'eighty-nine thousand eight hundred ninety-two'), (18712, 84291, 'eighty-four thousand two hundred ninety-one'), (18713, 87791, 'eighty-seven thousand seven hundred ninety-one'), (18714, 90040, 'ninety thousand forty'), (18715, 5994, 'five thousand nine hundred ninety-four'), (18716, 50395, 'fifty thousand three hundred ninety-five'), (18717, 6911, 'six thousand nine hundred eleven'), (18718, 95743, 'ninety-five thousand seven hundred forty-three'), (18719, 64628, 'sixty-four thousand six hundred twenty-eight'), (18720, 22269, 'twenty-two thousand two hundred sixty-nine'), (18721, 16314, 'sixteen thousand three hundred fourteen'), (18722, 14946, 'fourteen thousand nine hundred forty-six'), (18723, 52244, 'fifty-two thousand two hundred forty-four'), (18724, 58671, 'fifty-eight thousand six hundred seventy-one'), (18725, 61846, 'sixty-one thousand eight hundred forty-six'), (18726, 74758, 'seventy-four thousand seven hundred fifty-eight'), (18727, 81530, 'eighty-one thousand five hundred thirty'), (18728, 42428, 'forty-two thousand four hundred twenty-eight'), (18729, 24627, 'twenty-four thousand six hundred twenty-seven'), (18730, 106, 'one hundred six'), (18731, 42431, 'forty-two thousand four hundred thirty-one'), (18732, 2282, 'two thousand two hundred eighty-two'), (18733, 79844, 'seventy-nine thousand eight hundred forty-four'), (18734, 48786, 'forty-eight thousand seven hundred eighty-six'), (18735, 85320, 'eighty-five thousand three hundred twenty'), (18736, 11154, 'eleven thousand one hundred fifty-four'), (18737, 97251, 'ninety-seven thousand two hundred fifty-one'), (18738, 92147, 'ninety-two thousand one hundred forty-seven'), (18739, 87396, 'eighty-seven thousand three hundred ninety-six'), (18740, 66999, 'sixty-six thousand nine hundred ninety-nine'), (18741, 13294, 'thirteen thousand two hundred ninety-four'), (18742, 61125, 'sixty-one thousand one hundred twenty-five'), (18743, 60732, 'sixty thousand seven hundred thirty-two'), (18744, 48337, 'forty-eight thousand three hundred thirty-seven'), (18745, 6341, 'six thousand three hundred forty-one'), (18746, 74634, 'seventy-four thousand six hundred thirty-four'), (18747, 86994, 'eighty-six thousand nine hundred ninety-four'), (18748, 42118, 'forty-two thousand one hundred eighteen'), (18749, 31398, 'thirty-one thousand three hundred ninety-eight'), (18750, 44913, 'forty-four thousand nine hundred thirteen'), (18751, 34848, 'thirty-four thousand eight hundred forty-eight'), (18752, 39400, 'thirty-nine thousand four hundred'), (18753, 56601, 'fifty-six thousand six hundred one'), (18754, 16294, 'sixteen thousand two hundred ninety-four'), (18755, 63656, 'sixty-three thousand six hundred fifty-six'), (18756, 98194, 'ninety-eight thousand one hundred ninety-four'), (18757, 92858, 'ninety-two thousand eight hundred fifty-eight'), (18758, 65206, 'sixty-five thousand two hundred six'), (18759, 85648, 'eighty-five thousand six hundred forty-eight'), (18760, 96686, 'ninety-six thousand six hundred eighty-six'), (18761, 74897, 'seventy-four thousand eight hundred ninety-seven'), (18762, 59926, 'fifty-nine thousand nine hundred twenty-six'), (18763, 64164, 'sixty-four thousand one hundred sixty-four'), (18764, 33597, 'thirty-three thousand five hundred ninety-seven'), (18765, 81268, 'eighty-one thousand two hundred sixty-eight'), (18766, 28863, 'twenty-eight thousand eight hundred sixty-three'), (18767, 43485, 'forty-three thousand four hundred eighty-five'), (18768, 84159, 'eighty-four thousand one hundred fifty-nine'), (18769, 45494, 'forty-five thousand four hundred ninety-four'), (18770, 77193, 'seventy-seven thousand one hundred ninety-three'), (18771, 90676, 'ninety thousand six hundred seventy-six'), (18772, 36719, 'thirty-six thousand seven hundred nineteen'), (18773, 4193, 'four thousand one hundred ninety-three'), (18774, 56371, 'fifty-six thousand three hundred seventy-one'), (18775, 75903, 'seventy-five thousand nine hundred three'), (18776, 42276, 'forty-two thousand two hundred seventy-six'), (18777, 67061, 'sixty-seven thousand sixty-one'), (18778, 19155, 'nineteen thousand one hundred fifty-five'), (18779, 87725, 'eighty-seven thousand seven hundred twenty-five'), (18780, 76126, 'seventy-six thousand one hundred twenty-six'), (18781, 17401, 'seventeen thousand four hundred one'), (18782, 6778, 'six thousand seven hundred seventy-eight'), (18783, 11369, 'eleven thousand three hundred sixty-nine'), (18784, 46896, 'forty-six thousand eight hundred ninety-six'), (18785, 52100, 'fifty-two thousand one hundred'), (18786, 78444, 'seventy-eight thousand four hundred forty-four'), (18787, 95937, 'ninety-five thousand nine hundred thirty-seven'), (18788, 59928, 'fifty-nine thousand nine hundred twenty-eight'), (18789, 66090, 'sixty-six thousand ninety'), (18790, 32284, 'thirty-two thousand two hundred eighty-four'), (18791, 62217, 'sixty-two thousand two hundred seventeen'), (18792, 60527, 'sixty thousand five hundred twenty-seven'), (18793, 59742, 'fifty-nine thousand seven hundred forty-two'), (18794, 26273, 'twenty-six thousand two hundred seventy-three'), (18795, 70231, 'seventy thousand two hundred thirty-one'), (18796, 96756, 'ninety-six thousand seven hundred fifty-six'), (18797, 79571, 'seventy-nine thousand five hundred seventy-one'), (18798, 53384, 'fifty-three thousand three hundred eighty-four'), (18799, 65062, 'sixty-five thousand sixty-two'), (18800, 72008, 'seventy-two thousand eight'), (18801, 94847, 'ninety-four thousand eight hundred forty-seven'), (18802, 3457, 'three thousand four hundred fifty-seven'), (18803, 47953, 'forty-seven thousand nine hundred fifty-three'), (18804, 44271, 'forty-four thousand two hundred seventy-one'), (18805, 83249, 'eighty-three thousand two hundred forty-nine'), (18806, 70124, 'seventy thousand one hundred twenty-four'), (18807, 76273, 'seventy-six thousand two hundred seventy-three'), (18808, 72531, 'seventy-two thousand five hundred thirty-one'), (18809, 76750, 'seventy-six thousand seven hundred fifty'), (18810, 19297, 'nineteen thousand two hundred ninety-seven'), (18811, 98994, 'ninety-eight thousand nine hundred ninety-four'), (18812, 59393, 'fifty-nine thousand three hundred ninety-three'), (18813, 36450, 'thirty-six thousand four hundred fifty'), (18814, 29968, 'twenty-nine thousand nine hundred sixty-eight'), (18815, 97467, 'ninety-seven thousand four hundred sixty-seven'), (18816, 72920, 'seventy-two thousand nine hundred twenty'), (18817, 19864, 'nineteen thousand eight hundred sixty-four'), (18818, 65690, 'sixty-five thousand six hundred ninety'), (18819, 44368, 'forty-four thousand three hundred sixty-eight'), (18820, 59460, 'fifty-nine thousand four hundred sixty'), (18821, 1117, 'one thousand one hundred seventeen'), (18822, 42064, 'forty-two thousand sixty-four'), (18823, 51994, 'fifty-one thousand nine hundred ninety-four'), (18824, 21207, 'twenty-one thousand two hundred seven'), (18825, 70781, 'seventy thousand seven hundred eighty-one'), (18826, 71788, 'seventy-one thousand seven hundred eighty-eight'), (18827, 8187, 'eight thousand one hundred eighty-seven'), (18828, 52185, 'fifty-two thousand one hundred eighty-five'), (18829, 43560, 'forty-three thousand five hundred sixty'), (18830, 4447, 'four thousand four hundred forty-seven'), (18831, 57691, 'fifty-seven thousand six hundred ninety-one'), (18832, 73173, 'seventy-three thousand one hundred seventy-three'), (18833, 97262, 'ninety-seven thousand two hundred sixty-two'), (18834, 53716, 'fifty-three thousand seven hundred sixteen'), (18835, 27801, 'twenty-seven thousand eight hundred one'), (18836, 24232, 'twenty-four thousand two hundred thirty-two'), (18837, 65524, 'sixty-five thousand five hundred twenty-four'), (18838, 4322, 'four thousand three hundred twenty-two'), (18839, 34317, 'thirty-four thousand three hundred seventeen'), (18840, 91648, 'ninety-one thousand six hundred forty-eight'), (18841, 75457, 'seventy-five thousand four hundred fifty-seven'), (18842, 65874, 'sixty-five thousand eight hundred seventy-four'), (18843, 24299, 'twenty-four thousand two hundred ninety-nine'), (18844, 18617, 'eighteen thousand six hundred seventeen'), (18845, 47054, 'forty-seven thousand fifty-four'), (18846, 76445, 'seventy-six thousand four hundred forty-five'), (18847, 44521, 'forty-four thousand five hundred twenty-one'), (18848, 11903, 'eleven thousand nine hundred three'), (18849, 58548, 'fifty-eight thousand five hundred forty-eight'), (18850, 63366, 'sixty-three thousand three hundred sixty-six'), (18851, 50522, 'fifty thousand five hundred twenty-two'), (18852, 60409, 'sixty thousand four hundred nine'), (18853, 94726, 'ninety-four thousand seven hundred twenty-six'), (18854, 8362, 'eight thousand three hundred sixty-two'), (18855, 58704, 'fifty-eight thousand seven hundred four'), (18856, 34083, 'thirty-four thousand eighty-three'), (18857, 32163, 'thirty-two thousand one hundred sixty-three'), (18858, 76585, 'seventy-six thousand five hundred eighty-five'), (18859, 58877, 'fifty-eight thousand eight hundred seventy-seven'), (18860, 885, 'eight hundred eighty-five'), (18861, 77870, 'seventy-seven thousand eight hundred seventy'), (18862, 7294, 'seven thousand two hundred ninety-four'), (18863, 88072, 'eighty-eight thousand seventy-two'), (18864, 54439, 'fifty-four thousand four hundred thirty-nine'), (18865, 85053, 'eighty-five thousand fifty-three'), (18866, 29349, 'twenty-nine thousand three hundred forty-nine'), (18867, 88188, 'eighty-eight thousand one hundred eighty-eight'), (18868, 46796, 'forty-six thousand seven hundred ninety-six'), (18869, 68455, 'sixty-eight thousand four hundred fifty-five'), (18870, 44864, 'forty-four thousand eight hundred sixty-four'), (18871, 89739, 'eighty-nine thousand seven hundred thirty-nine'), (18872, 74125, 'seventy-four thousand one hundred twenty-five'), (18873, 1383, 'one thousand three hundred eighty-three'), (18874, 26463, 'twenty-six thousand four hundred sixty-three'), (18875, 50189, 'fifty thousand one hundred eighty-nine'), (18876, 89975, 'eighty-nine thousand nine hundred seventy-five'), (18877, 16997, 'sixteen thousand nine hundred ninety-seven'), (18878, 98227, 'ninety-eight thousand two hundred twenty-seven'), (18879, 7065, 'seven thousand sixty-five'), (18880, 91772, 'ninety-one thousand seven hundred seventy-two'), (18881, 72483, 'seventy-two thousand four hundred eighty-three'), (18882, 37213, 'thirty-seven thousand two hundred thirteen'), (18883, 55182, 'fifty-five thousand one hundred eighty-two'), (18884, 65889, 'sixty-five thousand eight hundred eighty-nine'), (18885, 46315, 'forty-six thousand three hundred fifteen'), (18886, 47201, 'forty-seven thousand two hundred one'), (18887, 92058, 'ninety-two thousand fifty-eight'), (18888, 55764, 'fifty-five thousand seven hundred sixty-four'), (18889, 61412, 'sixty-one thousand four hundred twelve'), (18890, 70546, 'seventy thousand five hundred forty-six'), (18891, 46174, 'forty-six thousand one hundred seventy-four'), (18892, 32242, 'thirty-two thousand two hundred forty-two'), (18893, 62182, 'sixty-two thousand one hundred eighty-two'), (18894, 62651, 'sixty-two thousand six hundred fifty-one'), (18895, 5214, 'five thousand two hundred fourteen'), (18896, 18847, 'eighteen thousand eight hundred forty-seven'), (18897, 69003, 'sixty-nine thousand three'), (18898, 57563, 'fifty-seven thousand five hundred sixty-three'), (18899, 78251, 'seventy-eight thousand two hundred fifty-one'), (18900, 34366, 'thirty-four thousand three hundred sixty-six'), (18901, 84677, 'eighty-four thousand six hundred seventy-seven'), (18902, 34614, 'thirty-four thousand six hundred fourteen'), (18903, 75476, 'seventy-five thousand four hundred seventy-six'), (18904, 76851, 'seventy-six thousand eight hundred fifty-one'), (18905, 84055, 'eighty-four thousand fifty-five'), (18906, 32503, 'thirty-two thousand five hundred three'), (18907, 9465, 'nine thousand four hundred sixty-five'), (18908, 18852, 'eighteen thousand eight hundred fifty-two'), (18909, 87675, 'eighty-seven thousand six hundred seventy-five'), (18910, 55541, 'fifty-five thousand five hundred forty-one'), (18911, 1378, 'one thousand three hundred seventy-eight'), (18912, 97259, 'ninety-seven thousand two hundred fifty-nine'), (18913, 82405, 'eighty-two thousand four hundred five'), (18914, 60871, 'sixty thousand eight hundred seventy-one'), (18915, 80236, 'eighty thousand two hundred thirty-six'), (18916, 41450, 'forty-one thousand four hundred fifty'), (18917, 71297, 'seventy-one thousand two hundred ninety-seven'), (18918, 92569, 'ninety-two thousand five hundred sixty-nine'), (18919, 20765, 'twenty thousand seven hundred sixty-five'), (18920, 19735, 'nineteen thousand seven hundred thirty-five'), (18921, 84972, 'eighty-four thousand nine hundred seventy-two'), (18922, 62076, 'sixty-two thousand seventy-six'), (18923, 94141, 'ninety-four thousand one hundred forty-one'), (18924, 59902, 'fifty-nine thousand nine hundred two'), (18925, 97838, 'ninety-seven thousand eight hundred thirty-eight'), (18926, 85728, 'eighty-five thousand seven hundred twenty-eight'), (18927, 63132, 'sixty-three thousand one hundred thirty-two'), (18928, 68867, 'sixty-eight thousand eight hundred sixty-seven'), (18929, 40247, 'forty thousand two hundred forty-seven'), (18930, 77917, 'seventy-seven thousand nine hundred seventeen'), (18931, 81676, 'eighty-one thousand six hundred seventy-six'), (18932, 56925, 'fifty-six thousand nine hundred twenty-five'), (18933, 3544, 'three thousand five hundred forty-four'), (18934, 67215, 'sixty-seven thousand two hundred fifteen'), (18935, 45788, 'forty-five thousand seven hundred eighty-eight'), (18936, 39372, 'thirty-nine thousand three hundred seventy-two'), (18937, 87080, 'eighty-seven thousand eighty'), (18938, 74440, 'seventy-four thousand four hundred forty'), (18939, 70762, 'seventy thousand seven hundred sixty-two'), (18940, 13355, 'thirteen thousand three hundred fifty-five'), (18941, 73977, 'seventy-three thousand nine hundred seventy-seven'), (18942, 55475, 'fifty-five thousand four hundred seventy-five'), (18943, 66975, 'sixty-six thousand nine hundred seventy-five'), (18944, 73274, 'seventy-three thousand two hundred seventy-four'), (18945, 60413, 'sixty thousand four hundred thirteen'), (18946, 80572, 'eighty thousand five hundred seventy-two'), (18947, 42795, 'forty-two thousand seven hundred ninety-five'), (18948, 18583, 'eighteen thousand five hundred eighty-three'), (18949, 95420, 'ninety-five thousand four hundred twenty'), (18950, 25248, 'twenty-five thousand two hundred forty-eight'), (18951, 85879, 'eighty-five thousand eight hundred seventy-nine'), (18952, 51771, 'fifty-one thousand seven hundred seventy-one'), (18953, 44598, 'forty-four thousand five hundred ninety-eight'), (18954, 30002, 'thirty thousand two'), (18955, 84066, 'eighty-four thousand sixty-six'), (18956, 8118, 'eight thousand one hundred eighteen'), (18957, 74216, 'seventy-four thousand two hundred sixteen'), (18958, 74502, 'seventy-four thousand five hundred two'), (18959, 45132, 'forty-five thousand one hundred thirty-two'), (18960, 66694, 'sixty-six thousand six hundred ninety-four'), (18961, 6417, 'six thousand four hundred seventeen'), (18962, 73161, 'seventy-three thousand one hundred sixty-one'), (18963, 72779, 'seventy-two thousand seven hundred seventy-nine'), (18964, 53925, 'fifty-three thousand nine hundred twenty-five'), (18965, 12992, 'twelve thousand nine hundred ninety-two'), (18966, 56070, 'fifty-six thousand seventy'), (18967, 58621, 'fifty-eight thousand six hundred twenty-one'), (18968, 30892, 'thirty thousand eight hundred ninety-two'), (18969, 93924, 'ninety-three thousand nine hundred twenty-four'), (18970, 11515, 'eleven thousand five hundred fifteen'), (18971, 33578, 'thirty-three thousand five hundred seventy-eight'), (18972, 50926, 'fifty thousand nine hundred twenty-six'), (18973, 59551, 'fifty-nine thousand five hundred fifty-one'), (18974, 32804, 'thirty-two thousand eight hundred four'), (18975, 74070, 'seventy-four thousand seventy'), (18976, 15476, 'fifteen thousand four hundred seventy-six'), (18977, 82143, 'eighty-two thousand one hundred forty-three'), (18978, 60288, 'sixty thousand two hundred eighty-eight'), (18979, 34265, 'thirty-four thousand two hundred sixty-five'), (18980, 98020, 'ninety-eight thousand twenty'), (18981, 36902, 'thirty-six thousand nine hundred two'), (18982, 94328, 'ninety-four thousand three hundred twenty-eight'), (18983, 96352, 'ninety-six thousand three hundred fifty-two'), (18984, 36689, 'thirty-six thousand six hundred eighty-nine'), (18985, 27598, 'twenty-seven thousand five hundred ninety-eight'), (18986, 38840, 'thirty-eight thousand eight hundred forty'), (18987, 44259, 'forty-four thousand two hundred fifty-nine'), (18988, 18362, 'eighteen thousand three hundred sixty-two'), (18989, 37280, 'thirty-seven thousand two hundred eighty'), (18990, 83787, 'eighty-three thousand seven hundred eighty-seven'), (18991, 75121, 'seventy-five thousand one hundred twenty-one'), (18992, 10175, 'ten thousand one hundred seventy-five'), (18993, 33943, 'thirty-three thousand nine hundred forty-three'), (18994, 6876, 'six thousand eight hundred seventy-six'), (18995, 97034, 'ninety-seven thousand thirty-four'), (18996, 49544, 'forty-nine thousand five hundred forty-four'), (18997, 30537, 'thirty thousand five hundred thirty-seven'), (18998, 48124, 'forty-eight thousand one hundred twenty-four'), (18999, 35328, 'thirty-five thousand three hundred twenty-eight'), (19000, 30960, 'thirty thousand nine hundred sixty'), (19001, 26399, 'twenty-six thousand three hundred ninety-nine'), (19002, 38409, 'thirty-eight thousand four hundred nine'), (19003, 24082, 'twenty-four thousand eighty-two'), (19004, 62351, 'sixty-two thousand three hundred fifty-one'), (19005, 70781, 'seventy thousand seven hundred eighty-one'), (19006, 85776, 'eighty-five thousand seven hundred seventy-six'), (19007, 3070, 'three thousand seventy'), (19008, 44907, 'forty-four thousand nine hundred seven'), (19009, 20046, 'twenty thousand forty-six'), (19010, 24002, 'twenty-four thousand two'), (19011, 84822, 'eighty-four thousand eight hundred twenty-two'), (19012, 92772, 'ninety-two thousand seven hundred seventy-two'), (19013, 27401, 'twenty-seven thousand four hundred one'), (19014, 81771, 'eighty-one thousand seven hundred seventy-one'), (19015, 27904, 'twenty-seven thousand nine hundred four'), (19016, 82691, 'eighty-two thousand six hundred ninety-one'), (19017, 96336, 'ninety-six thousand three hundred thirty-six'), (19018, 45300, 'forty-five thousand three hundred'), (19019, 85509, 'eighty-five thousand five hundred nine'), (19020, 69922, 'sixty-nine thousand nine hundred twenty-two'), (19021, 57586, 'fifty-seven thousand five hundred eighty-six'), (19022, 70111, 'seventy thousand one hundred eleven'), (19023, 22784, 'twenty-two thousand seven hundred eighty-four'), (19024, 92222, 'ninety-two thousand two hundred twenty-two'), (19025, 86158, 'eighty-six thousand one hundred fifty-eight'), (19026, 35704, 'thirty-five thousand seven hundred four'), (19027, 21669, 'twenty-one thousand six hundred sixty-nine'), (19028, 61658, 'sixty-one thousand six hundred fifty-eight'), (19029, 5937, 'five thousand nine hundred thirty-seven'), (19030, 2332, 'two thousand three hundred thirty-two'), (19031, 3516, 'three thousand five hundred sixteen'), (19032, 79192, 'seventy-nine thousand one hundred ninety-two'), (19033, 55569, 'fifty-five thousand five hundred sixty-nine'), (19034, 48449, 'forty-eight thousand four hundred forty-nine'), (19035, 27747, 'twenty-seven thousand seven hundred forty-seven'), (19036, 13815, 'thirteen thousand eight hundred fifteen'), (19037, 12806, 'twelve thousand eight hundred six'), (19038, 3871, 'three thousand eight hundred seventy-one'), (19039, 92915, 'ninety-two thousand nine hundred fifteen'), (19040, 47689, 'forty-seven thousand six hundred eighty-nine'), (19041, 30862, 'thirty thousand eight hundred sixty-two'), (19042, 2879, 'two thousand eight hundred seventy-nine'), (19043, 98883, 'ninety-eight thousand eight hundred eighty-three'), (19044, 79072, 'seventy-nine thousand seventy-two'), (19045, 98286, 'ninety-eight thousand two hundred eighty-six'), (19046, 59325, 'fifty-nine thousand three hundred twenty-five'), (19047, 82941, 'eighty-two thousand nine hundred forty-one'), (19048, 52351, 'fifty-two thousand three hundred fifty-one'), (19049, 38304, 'thirty-eight thousand three hundred four'), (19050, 45242, 'forty-five thousand two hundred forty-two'), (19051, 53761, 'fifty-three thousand seven hundred sixty-one'), (19052, 78370, 'seventy-eight thousand three hundred seventy'), (19053, 45632, 'forty-five thousand six hundred thirty-two'), (19054, 91602, 'ninety-one thousand six hundred two'), (19055, 73271, 'seventy-three thousand two hundred seventy-one'), (19056, 10216, 'ten thousand two hundred sixteen'), (19057, 99867, 'ninety-nine thousand eight hundred sixty-seven'), (19058, 98142, 'ninety-eight thousand one hundred forty-two'), (19059, 14549, 'fourteen thousand five hundred forty-nine'), (19060, 14907, 'fourteen thousand nine hundred seven'), (19061, 71373, 'seventy-one thousand three hundred seventy-three'), (19062, 63785, 'sixty-three thousand seven hundred eighty-five'), (19063, 5362, 'five thousand three hundred sixty-two'), (19064, 30362, 'thirty thousand three hundred sixty-two'), (19065, 54061, 'fifty-four thousand sixty-one'), (19066, 12468, 'twelve thousand four hundred sixty-eight'), (19067, 85315, 'eighty-five thousand three hundred fifteen'), (19068, 82368, 'eighty-two thousand three hundred sixty-eight'), (19069, 11763, 'eleven thousand seven hundred sixty-three'), (19070, 55905, 'fifty-five thousand nine hundred five'), (19071, 12865, 'twelve thousand eight hundred sixty-five'), (19072, 65471, 'sixty-five thousand four hundred seventy-one'), (19073, 82453, 'eighty-two thousand four hundred fifty-three'), (19074, 96920, 'ninety-six thousand nine hundred twenty'), (19075, 23505, 'twenty-three thousand five hundred five'), (19076, 57822, 'fifty-seven thousand eight hundred twenty-two'), (19077, 75785, 'seventy-five thousand seven hundred eighty-five'), (19078, 33855, 'thirty-three thousand eight hundred fifty-five'), (19079, 52546, 'fifty-two thousand five hundred forty-six'), (19080, 16080, 'sixteen thousand eighty'), (19081, 48402, 'forty-eight thousand four hundred two'), (19082, 45543, 'forty-five thousand five hundred forty-three'), (19083, 81897, 'eighty-one thousand eight hundred ninety-seven'), (19084, 64036, 'sixty-four thousand thirty-six'), (19085, 71160, 'seventy-one thousand one hundred sixty'), (19086, 42053, 'forty-two thousand fifty-three'), (19087, 51602, 'fifty-one thousand six hundred two'), (19088, 8241, 'eight thousand two hundred forty-one'), (19089, 69556, 'sixty-nine thousand five hundred fifty-six'), (19090, 1356, 'one thousand three hundred fifty-six'), (19091, 27155, 'twenty-seven thousand one hundred fifty-five'), (19092, 16002, 'sixteen thousand two'), (19093, 12649, 'twelve thousand six hundred forty-nine'), (19094, 8934, 'eight thousand nine hundred thirty-four'), (19095, 26227, 'twenty-six thousand two hundred twenty-seven'), (19096, 50221, 'fifty thousand two hundred twenty-one'), (19097, 67833, 'sixty-seven thousand eight hundred thirty-three'), (19098, 92708, 'ninety-two thousand seven hundred eight'), (19099, 98898, 'ninety-eight thousand eight hundred ninety-eight'), (19100, 16873, 'sixteen thousand eight hundred seventy-three'), (19101, 88274, 'eighty-eight thousand two hundred seventy-four'), (19102, 13946, 'thirteen thousand nine hundred forty-six'), (19103, 68794, 'sixty-eight thousand seven hundred ninety-four'), (19104, 53188, 'fifty-three thousand one hundred eighty-eight'), (19105, 82426, 'eighty-two thousand four hundred twenty-six'), (19106, 88988, 'eighty-eight thousand nine hundred eighty-eight'), (19107, 51507, 'fifty-one thousand five hundred seven'), (19108, 23007, 'twenty-three thousand seven'), (19109, 55150, 'fifty-five thousand one hundred fifty'), (19110, 40871, 'forty thousand eight hundred seventy-one'), (19111, 12719, 'twelve thousand seven hundred nineteen'), (19112, 25784, 'twenty-five thousand seven hundred eighty-four'), (19113, 96995, 'ninety-six thousand nine hundred ninety-five'), (19114, 86974, 'eighty-six thousand nine hundred seventy-four'), (19115, 68066, 'sixty-eight thousand sixty-six'), (19116, 77620, 'seventy-seven thousand six hundred twenty'), (19117, 75970, 'seventy-five thousand nine hundred seventy'), (19118, 3491, 'three thousand four hundred ninety-one'), (19119, 6774, 'six thousand seven hundred seventy-four'), (19120, 56688, 'fifty-six thousand six hundred eighty-eight'), (19121, 55841, 'fifty-five thousand eight hundred forty-one'), (19122, 32028, 'thirty-two thousand twenty-eight'), (19123, 1938, 'one thousand nine hundred thirty-eight'), (19124, 6840, 'six thousand eight hundred forty'), (19125, 81500, 'eighty-one thousand five hundred'), (19126, 77506, 'seventy-seven thousand five hundred six'), (19127, 74941, 'seventy-four thousand nine hundred forty-one'), (19128, 84442, 'eighty-four thousand four hundred forty-two'), (19129, 19488, 'nineteen thousand four hundred eighty-eight'), (19130, 72826, 'seventy-two thousand eight hundred twenty-six'), (19131, 51902, 'fifty-one thousand nine hundred two'), (19132, 50409, 'fifty thousand four hundred nine'), (19133, 89130, 'eighty-nine thousand one hundred thirty'), (19134, 25031, 'twenty-five thousand thirty-one'), (19135, 29878, 'twenty-nine thousand eight hundred seventy-eight'), (19136, 94723, 'ninety-four thousand seven hundred twenty-three'), (19137, 44705, 'forty-four thousand seven hundred five'), (19138, 7336, 'seven thousand three hundred thirty-six'), (19139, 71163, 'seventy-one thousand one hundred sixty-three'), (19140, 37845, 'thirty-seven thousand eight hundred forty-five'), (19141, 83676, 'eighty-three thousand six hundred seventy-six'), (19142, 78520, 'seventy-eight thousand five hundred twenty'), (19143, 43294, 'forty-three thousand two hundred ninety-four'), (19144, 15680, 'fifteen thousand six hundred eighty'), (19145, 649, 'six hundred forty-nine'), (19146, 38942, 'thirty-eight thousand nine hundred forty-two'), (19147, 54722, 'fifty-four thousand seven hundred twenty-two'), (19148, 32631, 'thirty-two thousand six hundred thirty-one'), (19149, 32537, 'thirty-two thousand five hundred thirty-seven'), (19150, 12435, 'twelve thousand four hundred thirty-five'), (19151, 57531, 'fifty-seven thousand five hundred thirty-one'), (19152, 18768, 'eighteen thousand seven hundred sixty-eight'), (19153, 7575, 'seven thousand five hundred seventy-five'), (19154, 57788, 'fifty-seven thousand seven hundred eighty-eight'), (19155, 99296, 'ninety-nine thousand two hundred ninety-six'), (19156, 99079, 'ninety-nine thousand seventy-nine'), (19157, 51450, 'fifty-one thousand four hundred fifty'), (19158, 76474, 'seventy-six thousand four hundred seventy-four'), (19159, 25216, 'twenty-five thousand two hundred sixteen'), (19160, 87368, 'eighty-seven thousand three hundred sixty-eight'), (19161, 38802, 'thirty-eight thousand eight hundred two'), (19162, 90680, 'ninety thousand six hundred eighty'), (19163, 27929, 'twenty-seven thousand nine hundred twenty-nine'), (19164, 11041, 'eleven thousand forty-one'), (19165, 29294, 'twenty-nine thousand two hundred ninety-four'), (19166, 40817, 'forty thousand eight hundred seventeen'), (19167, 94846, 'ninety-four thousand eight hundred forty-six'), (19168, 43202, 'forty-three thousand two hundred two'), (19169, 4176, 'four thousand one hundred seventy-six'), (19170, 52655, 'fifty-two thousand six hundred fifty-five'), (19171, 30971, 'thirty thousand nine hundred seventy-one'), (19172, 36164, 'thirty-six thousand one hundred sixty-four'), (19173, 21434, 'twenty-one thousand four hundred thirty-four'), (19174, 7540, 'seven thousand five hundred forty'), (19175, 21745, 'twenty-one thousand seven hundred forty-five'), (19176, 74374, 'seventy-four thousand three hundred seventy-four'), (19177, 10027, 'ten thousand twenty-seven'), (19178, 69286, 'sixty-nine thousand two hundred eighty-six'), (19179, 39631, 'thirty-nine thousand six hundred thirty-one'), (19180, 1756, 'one thousand seven hundred fifty-six'), (19181, 40258, 'forty thousand two hundred fifty-eight'), (19182, 79403, 'seventy-nine thousand four hundred three'), (19183, 63237, 'sixty-three thousand two hundred thirty-seven'), (19184, 45039, 'forty-five thousand thirty-nine'), (19185, 3482, 'three thousand four hundred eighty-two'), (19186, 9956, 'nine thousand nine hundred fifty-six'), (19187, 84470, 'eighty-four thousand four hundred seventy'), (19188, 42458, 'forty-two thousand four hundred fifty-eight'), (19189, 68936, 'sixty-eight thousand nine hundred thirty-six'), (19190, 16164, 'sixteen thousand one hundred sixty-four'), (19191, 2558, 'two thousand five hundred fifty-eight'), (19192, 8798, 'eight thousand seven hundred ninety-eight'), (19193, 20677, 'twenty thousand six hundred seventy-seven'), (19194, 74619, 'seventy-four thousand six hundred nineteen'), (19195, 8139, 'eight thousand one hundred thirty-nine'), (19196, 52851, 'fifty-two thousand eight hundred fifty-one'), (19197, 23480, 'twenty-three thousand four hundred eighty'), (19198, 50974, 'fifty thousand nine hundred seventy-four'), (19199, 83924, 'eighty-three thousand nine hundred twenty-four'), (19200, 48805, 'forty-eight thousand eight hundred five'), (19201, 74834, 'seventy-four thousand eight hundred thirty-four'), (19202, 38775, 'thirty-eight thousand seven hundred seventy-five'), (19203, 73541, 'seventy-three thousand five hundred forty-one'), (19204, 5628, 'five thousand six hundred twenty-eight'), (19205, 34459, 'thirty-four thousand four hundred fifty-nine'), (19206, 99156, 'ninety-nine thousand one hundred fifty-six'), (19207, 14020, 'fourteen thousand twenty'), (19208, 25878, 'twenty-five thousand eight hundred seventy-eight'), (19209, 3654, 'three thousand six hundred fifty-four'), (19210, 37485, 'thirty-seven thousand four hundred eighty-five'), (19211, 60960, 'sixty thousand nine hundred sixty'), (19212, 42698, 'forty-two thousand six hundred ninety-eight'), (19213, 37372, 'thirty-seven thousand three hundred seventy-two'), (19214, 35289, 'thirty-five thousand two hundred eighty-nine'), (19215, 63126, 'sixty-three thousand one hundred twenty-six'), (19216, 4885, 'four thousand eight hundred eighty-five'), (19217, 82297, 'eighty-two thousand two hundred ninety-seven'), (19218, 14835, 'fourteen thousand eight hundred thirty-five'), (19219, 89944, 'eighty-nine thousand nine hundred forty-four'), (19220, 29919, 'twenty-nine thousand nine hundred nineteen'), (19221, 76797, 'seventy-six thousand seven hundred ninety-seven'), (19222, 49302, 'forty-nine thousand three hundred two'), (19223, 26299, 'twenty-six thousand two hundred ninety-nine'), (19224, 77060, 'seventy-seven thousand sixty'), (19225, 54919, 'fifty-four thousand nine hundred nineteen'), (19226, 84837, 'eighty-four thousand eight hundred thirty-seven'), (19227, 14129, 'fourteen thousand one hundred twenty-nine'), (19228, 86156, 'eighty-six thousand one hundred fifty-six'), (19229, 38468, 'thirty-eight thousand four hundred sixty-eight'), (19230, 3762, 'three thousand seven hundred sixty-two'), (19231, 27960, 'twenty-seven thousand nine hundred sixty'), (19232, 10536, 'ten thousand five hundred thirty-six'), (19233, 33587, 'thirty-three thousand five hundred eighty-seven'), (19234, 54041, 'fifty-four thousand forty-one'), (19235, 72170, 'seventy-two thousand one hundred seventy'), (19236, 22027, 'twenty-two thousand twenty-seven'), (19237, 86352, 'eighty-six thousand three hundred fifty-two'), (19238, 11058, 'eleven thousand fifty-eight'), (19239, 81770, 'eighty-one thousand seven hundred seventy'), (19240, 66570, 'sixty-six thousand five hundred seventy'), (19241, 58845, 'fifty-eight thousand eight hundred forty-five'), (19242, 47560, 'forty-seven thousand five hundred sixty'), (19243, 24883, 'twenty-four thousand eight hundred eighty-three'), (19244, 84170, 'eighty-four thousand one hundred seventy'), (19245, 80654, 'eighty thousand six hundred fifty-four'), (19246, 59459, 'fifty-nine thousand four hundred fifty-nine'), (19247, 66891, 'sixty-six thousand eight hundred ninety-one'), (19248, 82190, 'eighty-two thousand one hundred ninety'), (19249, 4497, 'four thousand four hundred ninety-seven'), (19250, 69744, 'sixty-nine thousand seven hundred forty-four'), (19251, 93005, 'ninety-three thousand five'), (19252, 24295, 'twenty-four thousand two hundred ninety-five'), (19253, 40096, 'forty thousand ninety-six'), (19254, 11787, 'eleven thousand seven hundred eighty-seven'), (19255, 29662, 'twenty-nine thousand six hundred sixty-two'), (19256, 25747, 'twenty-five thousand seven hundred forty-seven'), (19257, 53060, 'fifty-three thousand sixty'), (19258, 42716, 'forty-two thousand seven hundred sixteen'), (19259, 13387, 'thirteen thousand three hundred eighty-seven'), (19260, 57184, 'fifty-seven thousand one hundred eighty-four'), (19261, 8762, 'eight thousand seven hundred sixty-two'), (19262, 91502, 'ninety-one thousand five hundred two'), (19263, 90584, 'ninety thousand five hundred eighty-four'), (19264, 20696, 'twenty thousand six hundred ninety-six'), (19265, 28461, 'twenty-eight thousand four hundred sixty-one'), (19266, 56947, 'fifty-six thousand nine hundred forty-seven'), (19267, 62628, 'sixty-two thousand six hundred twenty-eight'), (19268, 36006, 'thirty-six thousand six'), (19269, 62814, 'sixty-two thousand eight hundred fourteen'), (19270, 19012, 'nineteen thousand twelve'), (19271, 5111, 'five thousand one hundred eleven'), (19272, 17350, 'seventeen thousand three hundred fifty'), (19273, 31091, 'thirty-one thousand ninety-one'), (19274, 19263, 'nineteen thousand two hundred sixty-three'), (19275, 15340, 'fifteen thousand three hundred forty'), (19276, 43789, 'forty-three thousand seven hundred eighty-nine'), (19277, 13304, 'thirteen thousand three hundred four'), (19278, 84999, 'eighty-four thousand nine hundred ninety-nine'), (19279, 98484, 'ninety-eight thousand four hundred eighty-four'), (19280, 3135, 'three thousand one hundred thirty-five'), (19281, 13038, 'thirteen thousand thirty-eight'), (19282, 27710, 'twenty-seven thousand seven hundred ten'), (19283, 98051, 'ninety-eight thousand fifty-one'), (19284, 72987, 'seventy-two thousand nine hundred eighty-seven'), (19285, 36497, 'thirty-six thousand four hundred ninety-seven'), (19286, 9566, 'nine thousand five hundred sixty-six'), (19287, 22220, 'twenty-two thousand two hundred twenty'), (19288, 55902, 'fifty-five thousand nine hundred two'), (19289, 68522, 'sixty-eight thousand five hundred twenty-two'), (19290, 22980, 'twenty-two thousand nine hundred eighty'), (19291, 21642, 'twenty-one thousand six hundred forty-two'), (19292, 74886, 'seventy-four thousand eight hundred eighty-six'), (19293, 78815, 'seventy-eight thousand eight hundred fifteen'), (19294, 41243, 'forty-one thousand two hundred forty-three'), (19295, 62219, 'sixty-two thousand two hundred nineteen'), (19296, 8671, 'eight thousand six hundred seventy-one'), (19297, 68166, 'sixty-eight thousand one hundred sixty-six'), (19298, 13329, 'thirteen thousand three hundred twenty-nine'), (19299, 62502, 'sixty-two thousand five hundred two'), (19300, 57816, 'fifty-seven thousand eight hundred sixteen'), (19301, 43200, 'forty-three thousand two hundred'), (19302, 73233, 'seventy-three thousand two hundred thirty-three'), (19303, 87550, 'eighty-seven thousand five hundred fifty'), (19304, 48825, 'forty-eight thousand eight hundred twenty-five'), (19305, 52004, 'fifty-two thousand four'), (19306, 66329, 'sixty-six thousand three hundred twenty-nine'), (19307, 50483, 'fifty thousand four hundred eighty-three'), (19308, 81052, 'eighty-one thousand fifty-two'), (19309, 42063, 'forty-two thousand sixty-three'), (19310, 63746, 'sixty-three thousand seven hundred forty-six'), (19311, 38013, 'thirty-eight thousand thirteen'), (19312, 83479, 'eighty-three thousand four hundred seventy-nine'), (19313, 48264, 'forty-eight thousand two hundred sixty-four'), (19314, 77479, 'seventy-seven thousand four hundred seventy-nine'), (19315, 34929, 'thirty-four thousand nine hundred twenty-nine'), (19316, 93940, 'ninety-three thousand nine hundred forty'), (19317, 74500, 'seventy-four thousand five hundred'), (19318, 32088, 'thirty-two thousand eighty-eight'), (19319, 6824, 'six thousand eight hundred twenty-four'), (19320, 29822, 'twenty-nine thousand eight hundred twenty-two'), (19321, 35919, 'thirty-five thousand nine hundred nineteen'), (19322, 36168, 'thirty-six thousand one hundred sixty-eight'), (19323, 50482, 'fifty thousand four hundred eighty-two'), (19324, 54143, 'fifty-four thousand one hundred forty-three'), (19325, 54764, 'fifty-four thousand seven hundred sixty-four'), (19326, 38564, 'thirty-eight thousand five hundred sixty-four'), (19327, 52634, 'fifty-two thousand six hundred thirty-four'), (19328, 21695, 'twenty-one thousand six hundred ninety-five'), (19329, 40688, 'forty thousand six hundred eighty-eight'), (19330, 73201, 'seventy-three thousand two hundred one'), (19331, 8022, 'eight thousand twenty-two'), (19332, 45075, 'forty-five thousand seventy-five'), (19333, 24083, 'twenty-four thousand eighty-three'), (19334, 29778, 'twenty-nine thousand seven hundred seventy-eight'), (19335, 78567, 'seventy-eight thousand five hundred sixty-seven'), (19336, 12268, 'twelve thousand two hundred sixty-eight'), (19337, 71123, 'seventy-one thousand one hundred twenty-three'), (19338, 61497, 'sixty-one thousand four hundred ninety-seven'), (19339, 68928, 'sixty-eight thousand nine hundred twenty-eight'), (19340, 73731, 'seventy-three thousand seven hundred thirty-one'), (19341, 57916, 'fifty-seven thousand nine hundred sixteen'), (19342, 38249, 'thirty-eight thousand two hundred forty-nine'), (19343, 66808, 'sixty-six thousand eight hundred eight'), (19344, 50991, 'fifty thousand nine hundred ninety-one'), (19345, 97340, 'ninety-seven thousand three hundred forty'), (19346, 24648, 'twenty-four thousand six hundred forty-eight'), (19347, 61487, 'sixty-one thousand four hundred eighty-seven'), (19348, 20005, 'twenty thousand five'), (19349, 10661, 'ten thousand six hundred sixty-one'), (19350, 24221, 'twenty-four thousand two hundred twenty-one'), (19351, 70621, 'seventy thousand six hundred twenty-one'), (19352, 95002, 'ninety-five thousand two'), (19353, 20369, 'twenty thousand three hundred sixty-nine'), (19354, 81437, 'eighty-one thousand four hundred thirty-seven'), (19355, 38349, 'thirty-eight thousand three hundred forty-nine'), (19356, 95879, 'ninety-five thousand eight hundred seventy-nine'), (19357, 47986, 'forty-seven thousand nine hundred eighty-six'), (19358, 24843, 'twenty-four thousand eight hundred forty-three'), (19359, 62771, 'sixty-two thousand seven hundred seventy-one'), (19360, 55203, 'fifty-five thousand two hundred three'), (19361, 20827, 'twenty thousand eight hundred twenty-seven'), (19362, 75422, 'seventy-five thousand four hundred twenty-two'), (19363, 23511, 'twenty-three thousand five hundred eleven'), (19364, 44941, 'forty-four thousand nine hundred forty-one'), (19365, 76031, 'seventy-six thousand thirty-one'), (19366, 47483, 'forty-seven thousand four hundred eighty-three'), (19367, 22838, 'twenty-two thousand eight hundred thirty-eight'), (19368, 40943, 'forty thousand nine hundred forty-three'), (19369, 39962, 'thirty-nine thousand nine hundred sixty-two'), (19370, 44467, 'forty-four thousand four hundred sixty-seven'), (19371, 40881, 'forty thousand eight hundred eighty-one'), (19372, 40948, 'forty thousand nine hundred forty-eight'), (19373, 15781, 'fifteen thousand seven hundred eighty-one'), (19374, 42097, 'forty-two thousand ninety-seven'), (19375, 50040, 'fifty thousand forty'), (19376, 23848, 'twenty-three thousand eight hundred forty-eight'), (19377, 34824, 'thirty-four thousand eight hundred twenty-four'), (19378, 63401, 'sixty-three thousand four hundred one'), (19379, 4028, 'four thousand twenty-eight'), (19380, 11031, 'eleven thousand thirty-one'), (19381, 20010, 'twenty thousand ten'), (19382, 79127, 'seventy-nine thousand one hundred twenty-seven'), (19383, 91267, 'ninety-one thousand two hundred sixty-seven'), (19384, 37367, 'thirty-seven thousand three hundred sixty-seven'), (19385, 24251, 'twenty-four thousand two hundred fifty-one'), (19386, 4007, 'four thousand seven'), (19387, 93082, 'ninety-three thousand eighty-two'), (19388, 92026, 'ninety-two thousand twenty-six'), (19389, 79191, 'seventy-nine thousand one hundred ninety-one'), (19390, 54203, 'fifty-four thousand two hundred three'), (19391, 23416, 'twenty-three thousand four hundred sixteen'), (19392, 1644, 'one thousand six hundred forty-four'), (19393, 37158, 'thirty-seven thousand one hundred fifty-eight'), (19394, 3649, 'three thousand six hundred forty-nine'), (19395, 23719, 'twenty-three thousand seven hundred nineteen'), (19396, 13818, 'thirteen thousand eight hundred eighteen'), (19397, 14942, 'fourteen thousand nine hundred forty-two'), (19398, 47030, 'forty-seven thousand thirty'), (19399, 75713, 'seventy-five thousand seven hundred thirteen'), (19400, 4984, 'four thousand nine hundred eighty-four'), (19401, 59030, 'fifty-nine thousand thirty'), (19402, 85772, 'eighty-five thousand seven hundred seventy-two'), (19403, 58356, 'fifty-eight thousand three hundred fifty-six'), (19404, 27157, 'twenty-seven thousand one hundred fifty-seven'), (19405, 81669, 'eighty-one thousand six hundred sixty-nine'), (19406, 12946, 'twelve thousand nine hundred forty-six'), (19407, 10503, 'ten thousand five hundred three'), (19408, 90744, 'ninety thousand seven hundred forty-four'), (19409, 17218, 'seventeen thousand two hundred eighteen'), (19410, 75769, 'seventy-five thousand seven hundred sixty-nine'), (19411, 20569, 'twenty thousand five hundred sixty-nine'), (19412, 4762, 'four thousand seven hundred sixty-two'), (19413, 52701, 'fifty-two thousand seven hundred one'), (19414, 58258, 'fifty-eight thousand two hundred fifty-eight'), (19415, 10573, 'ten thousand five hundred seventy-three'), (19416, 66853, 'sixty-six thousand eight hundred fifty-three'), (19417, 30150, 'thirty thousand one hundred fifty'), (19418, 29555, 'twenty-nine thousand five hundred fifty-five'), (19419, 40950, 'forty thousand nine hundred fifty'), (19420, 17094, 'seventeen thousand ninety-four'), (19421, 16641, 'sixteen thousand six hundred forty-one'), (19422, 27514, 'twenty-seven thousand five hundred fourteen'), (19423, 74113, 'seventy-four thousand one hundred thirteen'), (19424, 19084, 'nineteen thousand eighty-four'), (19425, 67528, 'sixty-seven thousand five hundred twenty-eight'), (19426, 94108, 'ninety-four thousand one hundred eight'), (19427, 7342, 'seven thousand three hundred forty-two'), (19428, 87382, 'eighty-seven thousand three hundred eighty-two'), (19429, 6274, 'six thousand two hundred seventy-four'), (19430, 8839, 'eight thousand eight hundred thirty-nine'), (19431, 82365, 'eighty-two thousand three hundred sixty-five'), (19432, 8566, 'eight thousand five hundred sixty-six'), (19433, 81837, 'eighty-one thousand eight hundred thirty-seven'), (19434, 69217, 'sixty-nine thousand two hundred seventeen'), (19435, 72010, 'seventy-two thousand ten'), (19436, 65223, 'sixty-five thousand two hundred twenty-three'), (19437, 27739, 'twenty-seven thousand seven hundred thirty-nine'), (19438, 74026, 'seventy-four thousand twenty-six'), (19439, 50419, 'fifty thousand four hundred nineteen'), (19440, 55579, 'fifty-five thousand five hundred seventy-nine'), (19441, 34087, 'thirty-four thousand eighty-seven'), (19442, 41468, 'forty-one thousand four hundred sixty-eight'), (19443, 60871, 'sixty thousand eight hundred seventy-one'), (19444, 76019, 'seventy-six thousand nineteen'), (19445, 46668, 'forty-six thousand six hundred sixty-eight'), (19446, 42665, 'forty-two thousand six hundred sixty-five'), (19447, 90446, 'ninety thousand four hundred forty-six'), (19448, 38321, 'thirty-eight thousand three hundred twenty-one'), (19449, 80086, 'eighty thousand eighty-six'), (19450, 39787, 'thirty-nine thousand seven hundred eighty-seven'), (19451, 19767, 'nineteen thousand seven hundred sixty-seven'), (19452, 34380, 'thirty-four thousand three hundred eighty'), (19453, 28171, 'twenty-eight thousand one hundred seventy-one'), (19454, 90990, 'ninety thousand nine hundred ninety'), (19455, 79448, 'seventy-nine thousand four hundred forty-eight'), (19456, 76235, 'seventy-six thousand two hundred thirty-five'), (19457, 23829, 'twenty-three thousand eight hundred twenty-nine'), (19458, 49486, 'forty-nine thousand four hundred eighty-six'), (19459, 34634, 'thirty-four thousand six hundred thirty-four'), (19460, 52118, 'fifty-two thousand one hundred eighteen'), (19461, 50940, 'fifty thousand nine hundred forty'), (19462, 71601, 'seventy-one thousand six hundred one'), (19463, 1992, 'one thousand nine hundred ninety-two'), (19464, 24335, 'twenty-four thousand three hundred thirty-five'), (19465, 20424, 'twenty thousand four hundred twenty-four'), (19466, 93259, 'ninety-three thousand two hundred fifty-nine'), (19467, 26351, 'twenty-six thousand three hundred fifty-one'), (19468, 75270, 'seventy-five thousand two hundred seventy'), (19469, 88988, 'eighty-eight thousand nine hundred eighty-eight'), (19470, 39984, 'thirty-nine thousand nine hundred eighty-four'), (19471, 96634, 'ninety-six thousand six hundred thirty-four'), (19472, 1772, 'one thousand seven hundred seventy-two'), (19473, 71056, 'seventy-one thousand fifty-six'), (19474, 62891, 'sixty-two thousand eight hundred ninety-one'), (19475, 69856, 'sixty-nine thousand eight hundred fifty-six'), (19476, 81369, 'eighty-one thousand three hundred sixty-nine'), (19477, 8940, 'eight thousand nine hundred forty'), (19478, 66439, 'sixty-six thousand four hundred thirty-nine'), (19479, 66313, 'sixty-six thousand three hundred thirteen'), (19480, 16695, 'sixteen thousand six hundred ninety-five'), (19481, 70150, 'seventy thousand one hundred fifty'), (19482, 79462, 'seventy-nine thousand four hundred sixty-two'), (19483, 21151, 'twenty-one thousand one hundred fifty-one'), (19484, 1070, 'one thousand seventy'), (19485, 34701, 'thirty-four thousand seven hundred one'), (19486, 58249, 'fifty-eight thousand two hundred forty-nine'), (19487, 23890, 'twenty-three thousand eight hundred ninety'), (19488, 48438, 'forty-eight thousand four hundred thirty-eight'), (19489, 33987, 'thirty-three thousand nine hundred eighty-seven'), (19490, 6411, 'six thousand four hundred eleven'), (19491, 24962, 'twenty-four thousand nine hundred sixty-two'), (19492, 90714, 'ninety thousand seven hundred fourteen'), (19493, 65087, 'sixty-five thousand eighty-seven'), (19494, 93866, 'ninety-three thousand eight hundred sixty-six'), (19495, 25135, 'twenty-five thousand one hundred thirty-five'), (19496, 48147, 'forty-eight thousand one hundred forty-seven'), (19497, 42033, 'forty-two thousand thirty-three'), (19498, 71644, 'seventy-one thousand six hundred forty-four'), (19499, 49267, 'forty-nine thousand two hundred sixty-seven'), (19500, 90474, 'ninety thousand four hundred seventy-four'), (19501, 24721, 'twenty-four thousand seven hundred twenty-one'), (19502, 66812, 'sixty-six thousand eight hundred twelve'), (19503, 85934, 'eighty-five thousand nine hundred thirty-four'), (19504, 29788, 'twenty-nine thousand seven hundred eighty-eight'), (19505, 4555, 'four thousand five hundred fifty-five'), (19506, 78210, 'seventy-eight thousand two hundred ten'), (19507, 29423, 'twenty-nine thousand four hundred twenty-three'), (19508, 99737, 'ninety-nine thousand seven hundred thirty-seven'), (19509, 65009, 'sixty-five thousand nine'), (19510, 82090, 'eighty-two thousand ninety'), (19511, 12260, 'twelve thousand two hundred sixty'), (19512, 62869, 'sixty-two thousand eight hundred sixty-nine'), (19513, 29318, 'twenty-nine thousand three hundred eighteen'), (19514, 56175, 'fifty-six thousand one hundred seventy-five'), (19515, 3130, 'three thousand one hundred thirty'), (19516, 51537, 'fifty-one thousand five hundred thirty-seven'), (19517, 76463, 'seventy-six thousand four hundred sixty-three'), (19518, 2425, 'two thousand four hundred twenty-five'), (19519, 93173, 'ninety-three thousand one hundred seventy-three'), (19520, 66383, 'sixty-six thousand three hundred eighty-three'), (19521, 99310, 'ninety-nine thousand three hundred ten'), (19522, 32574, 'thirty-two thousand five hundred seventy-four'), (19523, 99192, 'ninety-nine thousand one hundred ninety-two'), (19524, 84320, 'eighty-four thousand three hundred twenty'), (19525, 69763, 'sixty-nine thousand seven hundred sixty-three'), (19526, 80323, 'eighty thousand three hundred twenty-three'), (19527, 94322, 'ninety-four thousand three hundred twenty-two'), (19528, 49608, 'forty-nine thousand six hundred eight'), (19529, 1716, 'one thousand seven hundred sixteen'), (19530, 14239, 'fourteen thousand two hundred thirty-nine'), (19531, 69469, 'sixty-nine thousand four hundred sixty-nine'), (19532, 38129, 'thirty-eight thousand one hundred twenty-nine'), (19533, 57751, 'fifty-seven thousand seven hundred fifty-one'), (19534, 83980, 'eighty-three thousand nine hundred eighty'), (19535, 3741, 'three thousand seven hundred forty-one'), (19536, 43682, 'forty-three thousand six hundred eighty-two'), (19537, 19228, 'nineteen thousand two hundred twenty-eight'), (19538, 27463, 'twenty-seven thousand four hundred sixty-three'), (19539, 66551, 'sixty-six thousand five hundred fifty-one'), (19540, 96082, 'ninety-six thousand eighty-two'), (19541, 56533, 'fifty-six thousand five hundred thirty-three'), (19542, 73140, 'seventy-three thousand one hundred forty'), (19543, 17485, 'seventeen thousand four hundred eighty-five'), (19544, 96640, 'ninety-six thousand six hundred forty'), (19545, 74765, 'seventy-four thousand seven hundred sixty-five'), (19546, 42865, 'forty-two thousand eight hundred sixty-five'), (19547, 99163, 'ninety-nine thousand one hundred sixty-three'), (19548, 75413, 'seventy-five thousand four hundred thirteen'), (19549, 7084, 'seven thousand eighty-four'), (19550, 17387, 'seventeen thousand three hundred eighty-seven'), (19551, 47377, 'forty-seven thousand three hundred seventy-seven'), (19552, 5600, 'five thousand six hundred'), (19553, 47422, 'forty-seven thousand four hundred twenty-two'), (19554, 71011, 'seventy-one thousand eleven'), (19555, 13051, 'thirteen thousand fifty-one'), (19556, 49894, 'forty-nine thousand eight hundred ninety-four'), (19557, 9139, 'nine thousand one hundred thirty-nine'), (19558, 65841, 'sixty-five thousand eight hundred forty-one'), (19559, 47289, 'forty-seven thousand two hundred eighty-nine'), (19560, 32328, 'thirty-two thousand three hundred twenty-eight'), (19561, 25482, 'twenty-five thousand four hundred eighty-two'), (19562, 67366, 'sixty-seven thousand three hundred sixty-six'), (19563, 54187, 'fifty-four thousand one hundred eighty-seven'), (19564, 60024, 'sixty thousand twenty-four'), (19565, 81200, 'eighty-one thousand two hundred'), (19566, 92367, 'ninety-two thousand three hundred sixty-seven'), (19567, 65367, 'sixty-five thousand three hundred sixty-seven'), (19568, 40393, 'forty thousand three hundred ninety-three'), (19569, 43767, 'forty-three thousand seven hundred sixty-seven'), (19570, 69296, 'sixty-nine thousand two hundred ninety-six'), (19571, 6751, 'six thousand seven hundred fifty-one'), (19572, 79303, 'seventy-nine thousand three hundred three'), (19573, 10762, 'ten thousand seven hundred sixty-two'), (19574, 56400, 'fifty-six thousand four hundred'), (19575, 28473, 'twenty-eight thousand four hundred seventy-three'), (19576, 70473, 'seventy thousand four hundred seventy-three'), (19577, 79981, 'seventy-nine thousand nine hundred eighty-one'), (19578, 53920, 'fifty-three thousand nine hundred twenty'), (19579, 62161, 'sixty-two thousand one hundred sixty-one'), (19580, 22223, 'twenty-two thousand two hundred twenty-three'), (19581, 46901, 'forty-six thousand nine hundred one'), (19582, 1420, 'one thousand four hundred twenty'), (19583, 2379, 'two thousand three hundred seventy-nine'), (19584, 56826, 'fifty-six thousand eight hundred twenty-six'), (19585, 71097, 'seventy-one thousand ninety-seven'), (19586, 83243, 'eighty-three thousand two hundred forty-three'), (19587, 62366, 'sixty-two thousand three hundred sixty-six'), (19588, 72168, 'seventy-two thousand one hundred sixty-eight'), (19589, 34441, 'thirty-four thousand four hundred forty-one'), (19590, 35373, 'thirty-five thousand three hundred seventy-three'), (19591, 66907, 'sixty-six thousand nine hundred seven'), (19592, 51812, 'fifty-one thousand eight hundred twelve'), (19593, 50333, 'fifty thousand three hundred thirty-three'), (19594, 94849, 'ninety-four thousand eight hundred forty-nine'), (19595, 68171, 'sixty-eight thousand one hundred seventy-one'), (19596, 56179, 'fifty-six thousand one hundred seventy-nine'), (19597, 60905, 'sixty thousand nine hundred five'), (19598, 51465, 'fifty-one thousand four hundred sixty-five'), (19599, 71288, 'seventy-one thousand two hundred eighty-eight'), (19600, 10479, 'ten thousand four hundred seventy-nine'), (19601, 54583, 'fifty-four thousand five hundred eighty-three'), (19602, 19665, 'nineteen thousand six hundred sixty-five'), (19603, 74329, 'seventy-four thousand three hundred twenty-nine'), (19604, 99730, 'ninety-nine thousand seven hundred thirty'), (19605, 27510, 'twenty-seven thousand five hundred ten'), (19606, 61606, 'sixty-one thousand six hundred six'), (19607, 50992, 'fifty thousand nine hundred ninety-two'), (19608, 59499, 'fifty-nine thousand four hundred ninety-nine'), (19609, 19786, 'nineteen thousand seven hundred eighty-six'), (19610, 96247, 'ninety-six thousand two hundred forty-seven'), (19611, 84024, 'eighty-four thousand twenty-four'), (19612, 5501, 'five thousand five hundred one'), (19613, 77281, 'seventy-seven thousand two hundred eighty-one'), (19614, 31446, 'thirty-one thousand four hundred forty-six'), (19615, 13030, 'thirteen thousand thirty'), (19616, 99772, 'ninety-nine thousand seven hundred seventy-two'), (19617, 74603, 'seventy-four thousand six hundred three'), (19618, 79584, 'seventy-nine thousand five hundred eighty-four'), (19619, 70165, 'seventy thousand one hundred sixty-five'), (19620, 19582, 'nineteen thousand five hundred eighty-two'), (19621, 84299, 'eighty-four thousand two hundred ninety-nine'), (19622, 39072, 'thirty-nine thousand seventy-two'), (19623, 90871, 'ninety thousand eight hundred seventy-one'), (19624, 10223, 'ten thousand two hundred twenty-three'), (19625, 13913, 'thirteen thousand nine hundred thirteen'), (19626, 66601, 'sixty-six thousand six hundred one'), (19627, 71461, 'seventy-one thousand four hundred sixty-one'), (19628, 63563, 'sixty-three thousand five hundred sixty-three'), (19629, 18564, 'eighteen thousand five hundred sixty-four'), (19630, 49072, 'forty-nine thousand seventy-two'), (19631, 18366, 'eighteen thousand three hundred sixty-six'), (19632, 20203, 'twenty thousand two hundred three'), (19633, 85191, 'eighty-five thousand one hundred ninety-one'), (19634, 1383, 'one thousand three hundred eighty-three'), (19635, 38597, 'thirty-eight thousand five hundred ninety-seven'), (19636, 47337, 'forty-seven thousand three hundred thirty-seven'), (19637, 55480, 'fifty-five thousand four hundred eighty'), (19638, 32288, 'thirty-two thousand two hundred eighty-eight'), (19639, 37063, 'thirty-seven thousand sixty-three'), (19640, 10462, 'ten thousand four hundred sixty-two'), (19641, 8688, 'eight thousand six hundred eighty-eight'), (19642, 39222, 'thirty-nine thousand two hundred twenty-two'), (19643, 54962, 'fifty-four thousand nine hundred sixty-two'), (19644, 77710, 'seventy-seven thousand seven hundred ten'), (19645, 43534, 'forty-three thousand five hundred thirty-four'), (19646, 24987, 'twenty-four thousand nine hundred eighty-seven'), (19647, 85361, 'eighty-five thousand three hundred sixty-one'), (19648, 30092, 'thirty thousand ninety-two'), (19649, 43636, 'forty-three thousand six hundred thirty-six'), (19650, 26230, 'twenty-six thousand two hundred thirty'), (19651, 84234, 'eighty-four thousand two hundred thirty-four'), (19652, 32251, 'thirty-two thousand two hundred fifty-one'), (19653, 882, 'eight hundred eighty-two'), (19654, 92107, 'ninety-two thousand one hundred seven'), (19655, 99716, 'ninety-nine thousand seven hundred sixteen'), (19656, 50542, 'fifty thousand five hundred forty-two'), (19657, 45478, 'forty-five thousand four hundred seventy-eight'), (19658, 38320, 'thirty-eight thousand three hundred twenty'), (19659, 15275, 'fifteen thousand two hundred seventy-five'), (19660, 23080, 'twenty-three thousand eighty'), (19661, 68580, 'sixty-eight thousand five hundred eighty'), (19662, 79123, 'seventy-nine thousand one hundred twenty-three'), (19663, 97516, 'ninety-seven thousand five hundred sixteen'), (19664, 59696, 'fifty-nine thousand six hundred ninety-six'), (19665, 25986, 'twenty-five thousand nine hundred eighty-six'), (19666, 36244, 'thirty-six thousand two hundred forty-four'), (19667, 48938, 'forty-eight thousand nine hundred thirty-eight'), (19668, 61749, 'sixty-one thousand seven hundred forty-nine'), (19669, 85629, 'eighty-five thousand six hundred twenty-nine'), (19670, 27798, 'twenty-seven thousand seven hundred ninety-eight'), (19671, 60826, 'sixty thousand eight hundred twenty-six'), (19672, 19402, 'nineteen thousand four hundred two'), (19673, 40330, 'forty thousand three hundred thirty'), (19674, 88833, 'eighty-eight thousand eight hundred thirty-three'), (19675, 77860, 'seventy-seven thousand eight hundred sixty'), (19676, 66794, 'sixty-six thousand seven hundred ninety-four'), (19677, 36817, 'thirty-six thousand eight hundred seventeen'), (19678, 67337, 'sixty-seven thousand three hundred thirty-seven'), (19679, 8582, 'eight thousand five hundred eighty-two'), (19680, 88205, 'eighty-eight thousand two hundred five'), (19681, 42375, 'forty-two thousand three hundred seventy-five'), (19682, 52953, 'fifty-two thousand nine hundred fifty-three'), (19683, 98214, 'ninety-eight thousand two hundred fourteen'), (19684, 44401, 'forty-four thousand four hundred one'), (19685, 39133, 'thirty-nine thousand one hundred thirty-three'), (19686, 39340, 'thirty-nine thousand three hundred forty'), (19687, 21943, 'twenty-one thousand nine hundred forty-three'), (19688, 33226, 'thirty-three thousand two hundred twenty-six'), (19689, 94784, 'ninety-four thousand seven hundred eighty-four'), (19690, 50677, 'fifty thousand six hundred seventy-seven'), (19691, 60817, 'sixty thousand eight hundred seventeen'), (19692, 2026, 'two thousand twenty-six'), (19693, 90895, 'ninety thousand eight hundred ninety-five'), (19694, 86422, 'eighty-six thousand four hundred twenty-two'), (19695, 83445, 'eighty-three thousand four hundred forty-five'), (19696, 65549, 'sixty-five thousand five hundred forty-nine'), (19697, 28657, 'twenty-eight thousand six hundred fifty-seven'), (19698, 98125, 'ninety-eight thousand one hundred twenty-five'), (19699, 67725, 'sixty-seven thousand seven hundred twenty-five'), (19700, 12133, 'twelve thousand one hundred thirty-three'), (19701, 9044, 'nine thousand forty-four'), (19702, 67802, 'sixty-seven thousand eight hundred two'), (19703, 71589, 'seventy-one thousand five hundred eighty-nine'), (19704, 79185, 'seventy-nine thousand one hundred eighty-five'), (19705, 63241, 'sixty-three thousand two hundred forty-one'), (19706, 85620, 'eighty-five thousand six hundred twenty'), (19707, 17780, 'seventeen thousand seven hundred eighty'), (19708, 89943, 'eighty-nine thousand nine hundred forty-three'), (19709, 14640, 'fourteen thousand six hundred forty'), (19710, 45665, 'forty-five thousand six hundred sixty-five'), (19711, 85205, 'eighty-five thousand two hundred five'), (19712, 10290, 'ten thousand two hundred ninety'), (19713, 45735, 'forty-five thousand seven hundred thirty-five'), (19714, 80588, 'eighty thousand five hundred eighty-eight'), (19715, 15032, 'fifteen thousand thirty-two'), (19716, 33082, 'thirty-three thousand eighty-two'), (19717, 55344, 'fifty-five thousand three hundred forty-four'), (19718, 17423, 'seventeen thousand four hundred twenty-three'), (19719, 75379, 'seventy-five thousand three hundred seventy-nine'), (19720, 2893, 'two thousand eight hundred ninety-three'), (19721, 66038, 'sixty-six thousand thirty-eight'), (19722, 82191, 'eighty-two thousand one hundred ninety-one'), (19723, 48842, 'forty-eight thousand eight hundred forty-two'), (19724, 31711, 'thirty-one thousand seven hundred eleven'), (19725, 93787, 'ninety-three thousand seven hundred eighty-seven'), (19726, 25164, 'twenty-five thousand one hundred sixty-four'), (19727, 96793, 'ninety-six thousand seven hundred ninety-three'), (19728, 28407, 'twenty-eight thousand four hundred seven'), (19729, 52847, 'fifty-two thousand eight hundred forty-seven'), (19730, 49130, 'forty-nine thousand one hundred thirty'), (19731, 46686, 'forty-six thousand six hundred eighty-six'), (19732, 96039, 'ninety-six thousand thirty-nine'), (19733, 61381, 'sixty-one thousand three hundred eighty-one'), (19734, 53597, 'fifty-three thousand five hundred ninety-seven'), (19735, 23959, 'twenty-three thousand nine hundred fifty-nine'), (19736, 61829, 'sixty-one thousand eight hundred twenty-nine'), (19737, 81176, 'eighty-one thousand one hundred seventy-six'), (19738, 43831, 'forty-three thousand eight hundred thirty-one'), (19739, 7036, 'seven thousand thirty-six'), (19740, 32322, 'thirty-two thousand three hundred twenty-two'), (19741, 37934, 'thirty-seven thousand nine hundred thirty-four'), (19742, 66758, 'sixty-six thousand seven hundred fifty-eight'), (19743, 45174, 'forty-five thousand one hundred seventy-four'), (19744, 83864, 'eighty-three thousand eight hundred sixty-four'), (19745, 75121, 'seventy-five thousand one hundred twenty-one'), (19746, 15547, 'fifteen thousand five hundred forty-seven'), (19747, 42879, 'forty-two thousand eight hundred seventy-nine'), (19748, 59338, 'fifty-nine thousand three hundred thirty-eight'), (19749, 83235, 'eighty-three thousand two hundred thirty-five'), (19750, 81696, 'eighty-one thousand six hundred ninety-six'), (19751, 81932, 'eighty-one thousand nine hundred thirty-two'), (19752, 82448, 'eighty-two thousand four hundred forty-eight'), (19753, 18173, 'eighteen thousand one hundred seventy-three'), (19754, 39948, 'thirty-nine thousand nine hundred forty-eight'), (19755, 9960, 'nine thousand nine hundred sixty'), (19756, 13506, 'thirteen thousand five hundred six'), (19757, 69330, 'sixty-nine thousand three hundred thirty'), (19758, 41610, 'forty-one thousand six hundred ten'), (19759, 10375, 'ten thousand three hundred seventy-five'), (19760, 12254, 'twelve thousand two hundred fifty-four'), (19761, 27022, 'twenty-seven thousand twenty-two'), (19762, 21672, 'twenty-one thousand six hundred seventy-two'), (19763, 97924, 'ninety-seven thousand nine hundred twenty-four'), (19764, 21275, 'twenty-one thousand two hundred seventy-five'), (19765, 41434, 'forty-one thousand four hundred thirty-four'), (19766, 67561, 'sixty-seven thousand five hundred sixty-one'), (19767, 29913, 'twenty-nine thousand nine hundred thirteen'), (19768, 2251, 'two thousand two hundred fifty-one'), (19769, 86272, 'eighty-six thousand two hundred seventy-two'), (19770, 27018, 'twenty-seven thousand eighteen'), (19771, 60262, 'sixty thousand two hundred sixty-two'), (19772, 88037, 'eighty-eight thousand thirty-seven'), (19773, 94890, 'ninety-four thousand eight hundred ninety'), (19774, 58644, 'fifty-eight thousand six hundred forty-four'), (19775, 31719, 'thirty-one thousand seven hundred nineteen'), (19776, 23190, 'twenty-three thousand one hundred ninety'), (19777, 82442, 'eighty-two thousand four hundred forty-two'), (19778, 20141, 'twenty thousand one hundred forty-one'), (19779, 70728, 'seventy thousand seven hundred twenty-eight'), (19780, 83587, 'eighty-three thousand five hundred eighty-seven'), (19781, 60129, 'sixty thousand one hundred twenty-nine'), (19782, 70021, 'seventy thousand twenty-one'), (19783, 62802, 'sixty-two thousand eight hundred two'), (19784, 78640, 'seventy-eight thousand six hundred forty'), (19785, 90621, 'ninety thousand six hundred twenty-one'), (19786, 31976, 'thirty-one thousand nine hundred seventy-six'), (19787, 37063, 'thirty-seven thousand sixty-three'), (19788, 62699, 'sixty-two thousand six hundred ninety-nine'), (19789, 6977, 'six thousand nine hundred seventy-seven'), (19790, 51912, 'fifty-one thousand nine hundred twelve'), (19791, 90446, 'ninety thousand four hundred forty-six'), (19792, 1478, 'one thousand four hundred seventy-eight'), (19793, 72252, 'seventy-two thousand two hundred fifty-two'), (19794, 47687, 'forty-seven thousand six hundred eighty-seven'), (19795, 65765, 'sixty-five thousand seven hundred sixty-five'), (19796, 61418, 'sixty-one thousand four hundred eighteen'), (19797, 72313, 'seventy-two thousand three hundred thirteen'), (19798, 90370, 'ninety thousand three hundred seventy'), (19799, 1015, 'one thousand fifteen'), (19800, 18947, 'eighteen thousand nine hundred forty-seven'), (19801, 17851, 'seventeen thousand eight hundred fifty-one'), (19802, 1129, 'one thousand one hundred twenty-nine'), (19803, 15667, 'fifteen thousand six hundred sixty-seven'), (19804, 50535, 'fifty thousand five hundred thirty-five'), (19805, 70946, 'seventy thousand nine hundred forty-six'), (19806, 70067, 'seventy thousand sixty-seven'), (19807, 2556, 'two thousand five hundred fifty-six'), (19808, 39882, 'thirty-nine thousand eight hundred eighty-two'), (19809, 14889, 'fourteen thousand eight hundred eighty-nine'), (19810, 44477, 'forty-four thousand four hundred seventy-seven'), (19811, 86763, 'eighty-six thousand seven hundred sixty-three'), (19812, 5665, 'five thousand six hundred sixty-five'), (19813, 94413, 'ninety-four thousand four hundred thirteen'), (19814, 84967, 'eighty-four thousand nine hundred sixty-seven'), (19815, 72708, 'seventy-two thousand seven hundred eight'), (19816, 59377, 'fifty-nine thousand three hundred seventy-seven'), (19817, 25755, 'twenty-five thousand seven hundred fifty-five'), (19818, 85276, 'eighty-five thousand two hundred seventy-six'), (19819, 37133, 'thirty-seven thousand one hundred thirty-three'), (19820, 32899, 'thirty-two thousand eight hundred ninety-nine'), (19821, 46888, 'forty-six thousand eight hundred eighty-eight'), (19822, 37400, 'thirty-seven thousand four hundred'), (19823, 31553, 'thirty-one thousand five hundred fifty-three'), (19824, 3975, 'three thousand nine hundred seventy-five'), (19825, 60602, 'sixty thousand six hundred two'), (19826, 34809, 'thirty-four thousand eight hundred nine'), (19827, 93913, 'ninety-three thousand nine hundred thirteen'), (19828, 60955, 'sixty thousand nine hundred fifty-five'), (19829, 38244, 'thirty-eight thousand two hundred forty-four'), (19830, 41871, 'forty-one thousand eight hundred seventy-one'), (19831, 63818, 'sixty-three thousand eight hundred eighteen'), (19832, 71926, 'seventy-one thousand nine hundred twenty-six'), (19833, 16497, 'sixteen thousand four hundred ninety-seven'), (19834, 43479, 'forty-three thousand four hundred seventy-nine'), (19835, 81730, 'eighty-one thousand seven hundred thirty'), (19836, 99727, 'ninety-nine thousand seven hundred twenty-seven'), (19837, 91659, 'ninety-one thousand six hundred fifty-nine'), (19838, 28872, 'twenty-eight thousand eight hundred seventy-two'), (19839, 89897, 'eighty-nine thousand eight hundred ninety-seven'), (19840, 30178, 'thirty thousand one hundred seventy-eight'), (19841, 51585, 'fifty-one thousand five hundred eighty-five'), (19842, 69564, 'sixty-nine thousand five hundred sixty-four'), (19843, 63977, 'sixty-three thousand nine hundred seventy-seven'), (19844, 92869, 'ninety-two thousand eight hundred sixty-nine'), (19845, 94104, 'ninety-four thousand one hundred four'), (19846, 62170, 'sixty-two thousand one hundred seventy'), (19847, 21038, 'twenty-one thousand thirty-eight'), (19848, 40153, 'forty thousand one hundred fifty-three'), (19849, 58743, 'fifty-eight thousand seven hundred forty-three'), (19850, 87508, 'eighty-seven thousand five hundred eight'), (19851, 47657, 'forty-seven thousand six hundred fifty-seven'), (19852, 8778, 'eight thousand seven hundred seventy-eight'), (19853, 19032, 'nineteen thousand thirty-two'), (19854, 97097, 'ninety-seven thousand ninety-seven'), (19855, 46159, 'forty-six thousand one hundred fifty-nine'), (19856, 63827, 'sixty-three thousand eight hundred twenty-seven'), (19857, 26517, 'twenty-six thousand five hundred seventeen'), (19858, 36600, 'thirty-six thousand six hundred'), (19859, 84267, 'eighty-four thousand two hundred sixty-seven'), (19860, 37159, 'thirty-seven thousand one hundred fifty-nine'), (19861, 59740, 'fifty-nine thousand seven hundred forty'), (19862, 73271, 'seventy-three thousand two hundred seventy-one'), (19863, 28873, 'twenty-eight thousand eight hundred seventy-three'), (19864, 91438, 'ninety-one thousand four hundred thirty-eight'), (19865, 20923, 'twenty thousand nine hundred twenty-three'), (19866, 27148, 'twenty-seven thousand one hundred forty-eight'), (19867, 64999, 'sixty-four thousand nine hundred ninety-nine'), (19868, 34313, 'thirty-four thousand three hundred thirteen'), (19869, 12471, 'twelve thousand four hundred seventy-one'), (19870, 73301, 'seventy-three thousand three hundred one'), (19871, 34869, 'thirty-four thousand eight hundred sixty-nine'), (19872, 61468, 'sixty-one thousand four hundred sixty-eight'), (19873, 15136, 'fifteen thousand one hundred thirty-six'), (19874, 15382, 'fifteen thousand three hundred eighty-two'), (19875, 46431, 'forty-six thousand four hundred thirty-one'), (19876, 52555, 'fifty-two thousand five hundred fifty-five'), (19877, 92447, 'ninety-two thousand four hundred forty-seven'), (19878, 92426, 'ninety-two thousand four hundred twenty-six'), (19879, 2934, 'two thousand nine hundred thirty-four'), (19880, 35780, 'thirty-five thousand seven hundred eighty'), (19881, 65149, 'sixty-five thousand one hundred forty-nine'), (19882, 99341, 'ninety-nine thousand three hundred forty-one'), (19883, 34445, 'thirty-four thousand four hundred forty-five'), (19884, 6659, 'six thousand six hundred fifty-nine'), (19885, 49294, 'forty-nine thousand two hundred ninety-four'), (19886, 70129, 'seventy thousand one hundred twenty-nine'), (19887, 52160, 'fifty-two thousand one hundred sixty'), (19888, 9256, 'nine thousand two hundred fifty-six'), (19889, 27420, 'twenty-seven thousand four hundred twenty'), (19890, 85105, 'eighty-five thousand one hundred five'), (19891, 88313, 'eighty-eight thousand three hundred thirteen'), (19892, 94589, 'ninety-four thousand five hundred eighty-nine'), (19893, 50596, 'fifty thousand five hundred ninety-six'), (19894, 1419, 'one thousand four hundred nineteen'), (19895, 98933, 'ninety-eight thousand nine hundred thirty-three'), (19896, 23016, 'twenty-three thousand sixteen'), (19897, 33872, 'thirty-three thousand eight hundred seventy-two'), (19898, 8746, 'eight thousand seven hundred forty-six'), (19899, 60781, 'sixty thousand seven hundred eighty-one'), (19900, 57197, 'fifty-seven thousand one hundred ninety-seven'), (19901, 48381, 'forty-eight thousand three hundred eighty-one'), (19902, 36376, 'thirty-six thousand three hundred seventy-six'), (19903, 40747, 'forty thousand seven hundred forty-seven'), (19904, 93661, 'ninety-three thousand six hundred sixty-one'), (19905, 39503, 'thirty-nine thousand five hundred three'), (19906, 75834, 'seventy-five thousand eight hundred thirty-four'), (19907, 39896, 'thirty-nine thousand eight hundred ninety-six'), (19908, 21524, 'twenty-one thousand five hundred twenty-four'), (19909, 28841, 'twenty-eight thousand eight hundred forty-one'), (19910, 84599, 'eighty-four thousand five hundred ninety-nine'), (19911, 67626, 'sixty-seven thousand six hundred twenty-six'), (19912, 14462, 'fourteen thousand four hundred sixty-two'), (19913, 34477, 'thirty-four thousand four hundred seventy-seven'), (19914, 73679, 'seventy-three thousand six hundred seventy-nine'), (19915, 58623, 'fifty-eight thousand six hundred twenty-three'), (19916, 44535, 'forty-four thousand five hundred thirty-five'), (19917, 42057, 'forty-two thousand fifty-seven'), (19918, 50415, 'fifty thousand four hundred fifteen'), (19919, 56208, 'fifty-six thousand two hundred eight'), (19920, 60080, 'sixty thousand eighty'), (19921, 61892, 'sixty-one thousand eight hundred ninety-two'), (19922, 2953, 'two thousand nine hundred fifty-three'), (19923, 56019, 'fifty-six thousand nineteen'), (19924, 3443, 'three thousand four hundred forty-three'), (19925, 15304, 'fifteen thousand three hundred four'), (19926, 11900, 'eleven thousand nine hundred'), (19927, 82593, 'eighty-two thousand five hundred ninety-three'), (19928, 65750, 'sixty-five thousand seven hundred fifty'), (19929, 57487, 'fifty-seven thousand four hundred eighty-seven'), (19930, 49996, 'forty-nine thousand nine hundred ninety-six'), (19931, 25910, 'twenty-five thousand nine hundred ten'), (19932, 37419, 'thirty-seven thousand four hundred nineteen'), (19933, 51058, 'fifty-one thousand fifty-eight'), (19934, 47063, 'forty-seven thousand sixty-three'), (19935, 65359, 'sixty-five thousand three hundred fifty-nine'), (19936, 21441, 'twenty-one thousand four hundred forty-one'), (19937, 10523, 'ten thousand five hundred twenty-three'), (19938, 93248, 'ninety-three thousand two hundred forty-eight'), (19939, 40118, 'forty thousand one hundred eighteen'), (19940, 13415, 'thirteen thousand four hundred fifteen'), (19941, 71686, 'seventy-one thousand six hundred eighty-six'), (19942, 23126, 'twenty-three thousand one hundred twenty-six'), (19943, 20988, 'twenty thousand nine hundred eighty-eight'), (19944, 96562, 'ninety-six thousand five hundred sixty-two'), (19945, 46135, 'forty-six thousand one hundred thirty-five'), (19946, 87688, 'eighty-seven thousand six hundred eighty-eight'), (19947, 20017, 'twenty thousand seventeen'), (19948, 64558, 'sixty-four thousand five hundred fifty-eight'), (19949, 29409, 'twenty-nine thousand four hundred nine'), (19950, 81852, 'eighty-one thousand eight hundred fifty-two'), (19951, 50508, 'fifty thousand five hundred eight'), (19952, 70948, 'seventy thousand nine hundred forty-eight'), (19953, 49295, 'forty-nine thousand two hundred ninety-five'), (19954, 14605, 'fourteen thousand six hundred five'), (19955, 58637, 'fifty-eight thousand six hundred thirty-seven'), (19956, 67154, 'sixty-seven thousand one hundred fifty-four'), (19957, 29958, 'twenty-nine thousand nine hundred fifty-eight'), (19958, 43635, 'forty-three thousand six hundred thirty-five'), (19959, 45428, 'forty-five thousand four hundred twenty-eight'), (19960, 77933, 'seventy-seven thousand nine hundred thirty-three'), (19961, 39866, 'thirty-nine thousand eight hundred sixty-six'), (19962, 1300, 'one thousand three hundred'), (19963, 71768, 'seventy-one thousand seven hundred sixty-eight'), (19964, 9086, 'nine thousand eighty-six'), (19965, 81277, 'eighty-one thousand two hundred seventy-seven'), (19966, 79415, 'seventy-nine thousand four hundred fifteen'), (19967, 31317, 'thirty-one thousand three hundred seventeen'), (19968, 34975, 'thirty-four thousand nine hundred seventy-five'), (19969, 72187, 'seventy-two thousand one hundred eighty-seven'), (19970, 59586, 'fifty-nine thousand five hundred eighty-six'), (19971, 61657, 'sixty-one thousand six hundred fifty-seven'), (19972, 50029, 'fifty thousand twenty-nine'), (19973, 33323, 'thirty-three thousand three hundred twenty-three'), (19974, 30487, 'thirty thousand four hundred eighty-seven'), (19975, 92473, 'ninety-two thousand four hundred seventy-three'), (19976, 39835, 'thirty-nine thousand eight hundred thirty-five'), (19977, 93597, 'ninety-three thousand five hundred ninety-seven'), (19978, 97398, 'ninety-seven thousand three hundred ninety-eight'), (19979, 52199, 'fifty-two thousand one hundred ninety-nine'), (19980, 89086, 'eighty-nine thousand eighty-six'), (19981, 88142, 'eighty-eight thousand one hundred forty-two'), (19982, 8792, 'eight thousand seven hundred ninety-two'), (19983, 27822, 'twenty-seven thousand eight hundred twenty-two'), (19984, 47446, 'forty-seven thousand four hundred forty-six'), (19985, 56479, 'fifty-six thousand four hundred seventy-nine'), (19986, 11341, 'eleven thousand three hundred forty-one'), (19987, 69157, 'sixty-nine thousand one hundred fifty-seven'), (19988, 96921, 'ninety-six thousand nine hundred twenty-one'), (19989, 68806, 'sixty-eight thousand eight hundred six'), (19990, 59805, 'fifty-nine thousand eight hundred five'), (19991, 46439, 'forty-six thousand four hundred thirty-nine'), (19992, 9872, 'nine thousand eight hundred seventy-two'), (19993, 10598, 'ten thousand five hundred ninety-eight'), (19994, 22692, 'twenty-two thousand six hundred ninety-two'), (19995, 72003, 'seventy-two thousand three'), (19996, 31972, 'thirty-one thousand nine hundred seventy-two'), (19997, 9513, 'nine thousand five hundred thirteen'), (19998, 85249, 'eighty-five thousand two hundred forty-nine'), (19999, 87644, 'eighty-seven thousand six hundred forty-four'), (20000, 18342, 'eighteen thousand three hundred forty-two'), (20001, 72862, 'seventy-two thousand eight hundred sixty-two'), (20002, 27783, 'twenty-seven thousand seven hundred eighty-three'), (20003, 49347, 'forty-nine thousand three hundred forty-seven'), (20004, 95687, 'ninety-five thousand six hundred eighty-seven'), (20005, 87797, 'eighty-seven thousand seven hundred ninety-seven'), (20006, 14516, 'fourteen thousand five hundred sixteen'), (20007, 29523, 'twenty-nine thousand five hundred twenty-three'), (20008, 84355, 'eighty-four thousand three hundred fifty-five'), (20009, 22001, 'twenty-two thousand one'), (20010, 21492, 'twenty-one thousand four hundred ninety-two'), (20011, 27886, 'twenty-seven thousand eight hundred eighty-six'), (20012, 39281, 'thirty-nine thousand two hundred eighty-one'), (20013, 78223, 'seventy-eight thousand two hundred twenty-three'), (20014, 84396, 'eighty-four thousand three hundred ninety-six'), (20015, 46422, 'forty-six thousand four hundred twenty-two'), (20016, 77705, 'seventy-seven thousand seven hundred five'), (20017, 79657, 'seventy-nine thousand six hundred fifty-seven'), (20018, 29826, 'twenty-nine thousand eight hundred twenty-six'), (20019, 64606, 'sixty-four thousand six hundred six'), (20020, 11440, 'eleven thousand four hundred forty'), (20021, 71914, 'seventy-one thousand nine hundred fourteen'), (20022, 7272, 'seven thousand two hundred seventy-two'), (20023, 35100, 'thirty-five thousand one hundred'), (20024, 80122, 'eighty thousand one hundred twenty-two'), (20025, 32695, 'thirty-two thousand six hundred ninety-five'), (20026, 42114, 'forty-two thousand one hundred fourteen'), (20027, 61052, 'sixty-one thousand fifty-two'), (20028, 67891, 'sixty-seven thousand eight hundred ninety-one'), (20029, 72012, 'seventy-two thousand twelve'), (20030, 31745, 'thirty-one thousand seven hundred forty-five'), (20031, 24360, 'twenty-four thousand three hundred sixty'), (20032, 63286, 'sixty-three thousand two hundred eighty-six'), (20033, 1827, 'one thousand eight hundred twenty-seven'), (20034, 350, 'three hundred fifty'), (20035, 80110, 'eighty thousand one hundred ten'), (20036, 92311, 'ninety-two thousand three hundred eleven'), (20037, 19998, 'nineteen thousand nine hundred ninety-eight'), (20038, 20848, 'twenty thousand eight hundred forty-eight'), (20039, 1933, 'one thousand nine hundred thirty-three'), (20040, 37059, 'thirty-seven thousand fifty-nine'), (20041, 99283, 'ninety-nine thousand two hundred eighty-three'), (20042, 4257, 'four thousand two hundred fifty-seven'), (20043, 55905, 'fifty-five thousand nine hundred five'), (20044, 22092, 'twenty-two thousand ninety-two'), (20045, 26126, 'twenty-six thousand one hundred twenty-six'), (20046, 59006, 'fifty-nine thousand six'), (20047, 89616, 'eighty-nine thousand six hundred sixteen'), (20048, 37275, 'thirty-seven thousand two hundred seventy-five'), (20049, 63717, 'sixty-three thousand seven hundred seventeen'), (20050, 43823, 'forty-three thousand eight hundred twenty-three'), (20051, 23976, 'twenty-three thousand nine hundred seventy-six'), (20052, 16387, 'sixteen thousand three hundred eighty-seven'), (20053, 12225, 'twelve thousand two hundred twenty-five'), (20054, 12405, 'twelve thousand four hundred five'), (20055, 49729, 'forty-nine thousand seven hundred twenty-nine'), (20056, 74226, 'seventy-four thousand two hundred twenty-six'), (20057, 60049, 'sixty thousand forty-nine'), (20058, 81561, 'eighty-one thousand five hundred sixty-one'), (20059, 44020, 'forty-four thousand twenty'), (20060, 86626, 'eighty-six thousand six hundred twenty-six'), (20061, 16821, 'sixteen thousand eight hundred twenty-one'), (20062, 25113, 'twenty-five thousand one hundred thirteen'), (20063, 12880, 'twelve thousand eight hundred eighty'), (20064, 74147, 'seventy-four thousand one hundred forty-seven'), (20065, 97826, 'ninety-seven thousand eight hundred twenty-six'), (20066, 45166, 'forty-five thousand one hundred sixty-six'), (20067, 91066, 'ninety-one thousand sixty-six'), (20068, 89402, 'eighty-nine thousand four hundred two'), (20069, 89113, 'eighty-nine thousand one hundred thirteen'), (20070, 8, 'eight'), (20071, 39403, 'thirty-nine thousand four hundred three'), (20072, 7215, 'seven thousand two hundred fifteen'), (20073, 47610, 'forty-seven thousand six hundred ten'), (20074, 88159, 'eighty-eight thousand one hundred fifty-nine'), (20075, 40010, 'forty thousand ten'), (20076, 11713, 'eleven thousand seven hundred thirteen'), (20077, 58482, 'fifty-eight thousand four hundred eighty-two'), (20078, 23014, 'twenty-three thousand fourteen'), (20079, 89282, 'eighty-nine thousand two hundred eighty-two'), (20080, 20917, 'twenty thousand nine hundred seventeen'), (20081, 58392, 'fifty-eight thousand three hundred ninety-two'), (20082, 14355, 'fourteen thousand three hundred fifty-five'), (20083, 29034, 'twenty-nine thousand thirty-four'), (20084, 81063, 'eighty-one thousand sixty-three'), (20085, 49923, 'forty-nine thousand nine hundred twenty-three'), (20086, 48645, 'forty-eight thousand six hundred forty-five'), (20087, 59887, 'fifty-nine thousand eight hundred eighty-seven'), (20088, 48516, 'forty-eight thousand five hundred sixteen'), (20089, 75736, 'seventy-five thousand seven hundred thirty-six'), (20090, 9612, 'nine thousand six hundred twelve'), (20091, 97975, 'ninety-seven thousand nine hundred seventy-five'), (20092, 88628, 'eighty-eight thousand six hundred twenty-eight'), (20093, 29287, 'twenty-nine thousand two hundred eighty-seven'), (20094, 3449, 'three thousand four hundred forty-nine'), (20095, 31607, 'thirty-one thousand six hundred seven'), (20096, 73131, 'seventy-three thousand one hundred thirty-one'), (20097, 4960, 'four thousand nine hundred sixty'), (20098, 14549, 'fourteen thousand five hundred forty-nine'), (20099, 40715, 'forty thousand seven hundred fifteen'), (20100, 48079, 'forty-eight thousand seventy-nine'), (20101, 16078, 'sixteen thousand seventy-eight'), (20102, 34676, 'thirty-four thousand six hundred seventy-six'), (20103, 63067, 'sixty-three thousand sixty-seven'), (20104, 96366, 'ninety-six thousand three hundred sixty-six'), (20105, 52984, 'fifty-two thousand nine hundred eighty-four'), (20106, 72429, 'seventy-two thousand four hundred twenty-nine'), (20107, 48630, 'forty-eight thousand six hundred thirty'), (20108, 72547, 'seventy-two thousand five hundred forty-seven'), (20109, 48978, 'forty-eight thousand nine hundred seventy-eight'), (20110, 99021, 'ninety-nine thousand twenty-one'), (20111, 10349, 'ten thousand three hundred forty-nine'), (20112, 61108, 'sixty-one thousand one hundred eight'), (20113, 19567, 'nineteen thousand five hundred sixty-seven'), (20114, 98076, 'ninety-eight thousand seventy-six'), (20115, 32649, 'thirty-two thousand six hundred forty-nine'), (20116, 89376, 'eighty-nine thousand three hundred seventy-six'), (20117, 80259, 'eighty thousand two hundred fifty-nine'), (20118, 16508, 'sixteen thousand five hundred eight'), (20119, 40664, 'forty thousand six hundred sixty-four'), (20120, 64867, 'sixty-four thousand eight hundred sixty-seven'), (20121, 29464, 'twenty-nine thousand four hundred sixty-four'), (20122, 84123, 'eighty-four thousand one hundred twenty-three'), (20123, 10426, 'ten thousand four hundred twenty-six'), (20124, 97138, 'ninety-seven thousand one hundred thirty-eight'), (20125, 57609, 'fifty-seven thousand six hundred nine'), (20126, 68905, 'sixty-eight thousand nine hundred five'), (20127, 88566, 'eighty-eight thousand five hundred sixty-six'), (20128, 73735, 'seventy-three thousand seven hundred thirty-five'), (20129, 84373, 'eighty-four thousand three hundred seventy-three'), (20130, 23240, 'twenty-three thousand two hundred forty'), (20131, 39150, 'thirty-nine thousand one hundred fifty'), (20132, 28464, 'twenty-eight thousand four hundred sixty-four'), (20133, 84955, 'eighty-four thousand nine hundred fifty-five'), (20134, 32704, 'thirty-two thousand seven hundred four'), (20135, 22677, 'twenty-two thousand six hundred seventy-seven'), (20136, 65463, 'sixty-five thousand four hundred sixty-three'), (20137, 9486, 'nine thousand four hundred eighty-six'), (20138, 13158, 'thirteen thousand one hundred fifty-eight'), (20139, 91570, 'ninety-one thousand five hundred seventy'), (20140, 43322, 'forty-three thousand three hundred twenty-two'), (20141, 88949, 'eighty-eight thousand nine hundred forty-nine'), (20142, 78149, 'seventy-eight thousand one hundred forty-nine'), (20143, 72529, 'seventy-two thousand five hundred twenty-nine'), (20144, 3711, 'three thousand seven hundred eleven'), (20145, 8649, 'eight thousand six hundred forty-nine'), (20146, 23426, 'twenty-three thousand four hundred twenty-six'), (20147, 34679, 'thirty-four thousand six hundred seventy-nine'), (20148, 81451, 'eighty-one thousand four hundred fifty-one'), (20149, 98709, 'ninety-eight thousand seven hundred nine'), (20150, 90607, 'ninety thousand six hundred seven'), (20151, 22375, 'twenty-two thousand three hundred seventy-five'), (20152, 8602, 'eight thousand six hundred two'), (20153, 42276, 'forty-two thousand two hundred seventy-six'), (20154, 52226, 'fifty-two thousand two hundred twenty-six'), (20155, 34057, 'thirty-four thousand fifty-seven'), (20156, 20944, 'twenty thousand nine hundred forty-four'), (20157, 29028, 'twenty-nine thousand twenty-eight'), (20158, 4897, 'four thousand eight hundred ninety-seven'), (20159, 81555, 'eighty-one thousand five hundred fifty-five'), (20160, 6222, 'six thousand two hundred twenty-two'), (20161, 34985, 'thirty-four thousand nine hundred eighty-five'), (20162, 26548, 'twenty-six thousand five hundred forty-eight'), (20163, 74916, 'seventy-four thousand nine hundred sixteen'), (20164, 97934, 'ninety-seven thousand nine hundred thirty-four'), (20165, 27026, 'twenty-seven thousand twenty-six'), (20166, 11742, 'eleven thousand seven hundred forty-two'), (20167, 1714, 'one thousand seven hundred fourteen'), (20168, 49035, 'forty-nine thousand thirty-five'), (20169, 51243, 'fifty-one thousand two hundred forty-three'), (20170, 66148, 'sixty-six thousand one hundred forty-eight'), (20171, 89710, 'eighty-nine thousand seven hundred ten'), (20172, 54029, 'fifty-four thousand twenty-nine'), (20173, 29283, 'twenty-nine thousand two hundred eighty-three'), (20174, 48651, 'forty-eight thousand six hundred fifty-one'), (20175, 15919, 'fifteen thousand nine hundred nineteen'), (20176, 87723, 'eighty-seven thousand seven hundred twenty-three'), (20177, 68795, 'sixty-eight thousand seven hundred ninety-five'), (20178, 67533, 'sixty-seven thousand five hundred thirty-three'), (20179, 80581, 'eighty thousand five hundred eighty-one'), (20180, 30384, 'thirty thousand three hundred eighty-four'), (20181, 45186, 'forty-five thousand one hundred eighty-six'), (20182, 67694, 'sixty-seven thousand six hundred ninety-four'), (20183, 29585, 'twenty-nine thousand five hundred eighty-five'), (20184, 34755, 'thirty-four thousand seven hundred fifty-five'), (20185, 72418, 'seventy-two thousand four hundred eighteen'), (20186, 87034, 'eighty-seven thousand thirty-four'), (20187, 84495, 'eighty-four thousand four hundred ninety-five'), (20188, 97624, 'ninety-seven thousand six hundred twenty-four'), (20189, 869, 'eight hundred sixty-nine'), (20190, 90134, 'ninety thousand one hundred thirty-four'), (20191, 47882, 'forty-seven thousand eight hundred eighty-two'), (20192, 14472, 'fourteen thousand four hundred seventy-two'), (20193, 39259, 'thirty-nine thousand two hundred fifty-nine'), (20194, 73963, 'seventy-three thousand nine hundred sixty-three'), (20195, 67132, 'sixty-seven thousand one hundred thirty-two'), (20196, 49969, 'forty-nine thousand nine hundred sixty-nine'), (20197, 77803, 'seventy-seven thousand eight hundred three'), (20198, 45476, 'forty-five thousand four hundred seventy-six'), (20199, 8426, 'eight thousand four hundred twenty-six'), (20200, 21633, 'twenty-one thousand six hundred thirty-three'), (20201, 69279, 'sixty-nine thousand two hundred seventy-nine'), (20202, 27395, 'twenty-seven thousand three hundred ninety-five'), (20203, 97795, 'ninety-seven thousand seven hundred ninety-five'), (20204, 30638, 'thirty thousand six hundred thirty-eight'), (20205, 49290, 'forty-nine thousand two hundred ninety'), (20206, 56915, 'fifty-six thousand nine hundred fifteen'), (20207, 44696, 'forty-four thousand six hundred ninety-six'), (20208, 14745, 'fourteen thousand seven hundred forty-five'), (20209, 92913, 'ninety-two thousand nine hundred thirteen'), (20210, 37422, 'thirty-seven thousand four hundred twenty-two'), (20211, 65899, 'sixty-five thousand eight hundred ninety-nine'), (20212, 71968, 'seventy-one thousand nine hundred sixty-eight'), (20213, 89164, 'eighty-nine thousand one hundred sixty-four'), (20214, 66721, 'sixty-six thousand seven hundred twenty-one'), (20215, 62756, 'sixty-two thousand seven hundred fifty-six'), (20216, 83207, 'eighty-three thousand two hundred seven'), (20217, 4913, 'four thousand nine hundred thirteen'), (20218, 49123, 'forty-nine thousand one hundred twenty-three'), (20219, 69819, 'sixty-nine thousand eight hundred nineteen'), (20220, 70861, 'seventy thousand eight hundred sixty-one'), (20221, 14788, 'fourteen thousand seven hundred eighty-eight'), (20222, 27661, 'twenty-seven thousand six hundred sixty-one'), (20223, 31164, 'thirty-one thousand one hundred sixty-four'), (20224, 85828, 'eighty-five thousand eight hundred twenty-eight'), (20225, 54919, 'fifty-four thousand nine hundred nineteen'), (20226, 98642, 'ninety-eight thousand six hundred forty-two'), (20227, 63960, 'sixty-three thousand nine hundred sixty'), (20228, 69879, 'sixty-nine thousand eight hundred seventy-nine'), (20229, 88180, 'eighty-eight thousand one hundred eighty'), (20230, 10061, 'ten thousand sixty-one'), (20231, 44878, 'forty-four thousand eight hundred seventy-eight'), (20232, 5789, 'five thousand seven hundred eighty-nine'), (20233, 10630, 'ten thousand six hundred thirty'), (20234, 92864, 'ninety-two thousand eight hundred sixty-four'), (20235, 71520, 'seventy-one thousand five hundred twenty'), (20236, 59113, 'fifty-nine thousand one hundred thirteen'), (20237, 55590, 'fifty-five thousand five hundred ninety'), (20238, 41222, 'forty-one thousand two hundred twenty-two'), (20239, 27480, 'twenty-seven thousand four hundred eighty'), (20240, 50519, 'fifty thousand five hundred nineteen'), (20241, 94614, 'ninety-four thousand six hundred fourteen'), (20242, 57474, 'fifty-seven thousand four hundred seventy-four'), (20243, 67847, 'sixty-seven thousand eight hundred forty-seven'), (20244, 31556, 'thirty-one thousand five hundred fifty-six'), (20245, 90532, 'ninety thousand five hundred thirty-two'), (20246, 69260, 'sixty-nine thousand two hundred sixty'), (20247, 48035, 'forty-eight thousand thirty-five'), (20248, 73504, 'seventy-three thousand five hundred four'), (20249, 78185, 'seventy-eight thousand one hundred eighty-five'), (20250, 40349, 'forty thousand three hundred forty-nine'), (20251, 74600, 'seventy-four thousand six hundred'), (20252, 47483, 'forty-seven thousand four hundred eighty-three'), (20253, 87093, 'eighty-seven thousand ninety-three'), (20254, 99883, 'ninety-nine thousand eight hundred eighty-three'), (20255, 8908, 'eight thousand nine hundred eight'), (20256, 18853, 'eighteen thousand eight hundred fifty-three'), (20257, 19762, 'nineteen thousand seven hundred sixty-two'), (20258, 7302, 'seven thousand three hundred two'), (20259, 59806, 'fifty-nine thousand eight hundred six'), (20260, 59271, 'fifty-nine thousand two hundred seventy-one'), (20261, 45947, 'forty-five thousand nine hundred forty-seven'), (20262, 1535, 'one thousand five hundred thirty-five'), (20263, 17297, 'seventeen thousand two hundred ninety-seven'), (20264, 71649, 'seventy-one thousand six hundred forty-nine'), (20265, 30445, 'thirty thousand four hundred forty-five'), (20266, 18312, 'eighteen thousand three hundred twelve'), (20267, 12690, 'twelve thousand six hundred ninety'), (20268, 24478, 'twenty-four thousand four hundred seventy-eight'), (20269, 66395, 'sixty-six thousand three hundred ninety-five'), (20270, 78133, 'seventy-eight thousand one hundred thirty-three'), (20271, 93571, 'ninety-three thousand five hundred seventy-one'), (20272, 31625, 'thirty-one thousand six hundred twenty-five'), (20273, 90725, 'ninety thousand seven hundred twenty-five'), (20274, 62907, 'sixty-two thousand nine hundred seven'), (20275, 58476, 'fifty-eight thousand four hundred seventy-six'), (20276, 67476, 'sixty-seven thousand four hundred seventy-six'), (20277, 33733, 'thirty-three thousand seven hundred thirty-three'), (20278, 87036, 'eighty-seven thousand thirty-six'), (20279, 58642, 'fifty-eight thousand six hundred forty-two'), (20280, 32142, 'thirty-two thousand one hundred forty-two'), (20281, 20472, 'twenty thousand four hundred seventy-two'), (20282, 76455, 'seventy-six thousand four hundred fifty-five'), (20283, 66648, 'sixty-six thousand six hundred forty-eight'), (20284, 19122, 'nineteen thousand one hundred twenty-two'), (20285, 49942, 'forty-nine thousand nine hundred forty-two'), (20286, 54128, 'fifty-four thousand one hundred twenty-eight'), (20287, 76092, 'seventy-six thousand ninety-two'), (20288, 51461, 'fifty-one thousand four hundred sixty-one'), (20289, 92708, 'ninety-two thousand seven hundred eight'), (20290, 41224, 'forty-one thousand two hundred twenty-four'), (20291, 50772, 'fifty thousand seven hundred seventy-two'), (20292, 25478, 'twenty-five thousand four hundred seventy-eight'), (20293, 11329, 'eleven thousand three hundred twenty-nine'), (20294, 68580, 'sixty-eight thousand five hundred eighty'), (20295, 58527, 'fifty-eight thousand five hundred twenty-seven'), (20296, 307, 'three hundred seven'), (20297, 95577, 'ninety-five thousand five hundred seventy-seven'), (20298, 99602, 'ninety-nine thousand six hundred two'), (20299, 74371, 'seventy-four thousand three hundred seventy-one'), (20300, 77802, 'seventy-seven thousand eight hundred two'), (20301, 14037, 'fourteen thousand thirty-seven'), (20302, 65270, 'sixty-five thousand two hundred seventy'), (20303, 83992, 'eighty-three thousand nine hundred ninety-two'), (20304, 88705, 'eighty-eight thousand seven hundred five'), (20305, 65671, 'sixty-five thousand six hundred seventy-one'), (20306, 13563, 'thirteen thousand five hundred sixty-three'), (20307, 75158, 'seventy-five thousand one hundred fifty-eight'), (20308, 32068, 'thirty-two thousand sixty-eight'), (20309, 64761, 'sixty-four thousand seven hundred sixty-one'), (20310, 30331, 'thirty thousand three hundred thirty-one'), (20311, 40, 'forty'), (20312, 44317, 'forty-four thousand three hundred seventeen'), (20313, 17848, 'seventeen thousand eight hundred forty-eight'), (20314, 51395, 'fifty-one thousand three hundred ninety-five'), (20315, 87078, 'eighty-seven thousand seventy-eight'), (20316, 73363, 'seventy-three thousand three hundred sixty-three'), (20317, 97750, 'ninety-seven thousand seven hundred fifty'), (20318, 64435, 'sixty-four thousand four hundred thirty-five'), (20319, 90450, 'ninety thousand four hundred fifty'), (20320, 75574, 'seventy-five thousand five hundred seventy-four'), (20321, 19960, 'nineteen thousand nine hundred sixty'), (20322, 74593, 'seventy-four thousand five hundred ninety-three'), (20323, 49745, 'forty-nine thousand seven hundred forty-five'), (20324, 44849, 'forty-four thousand eight hundred forty-nine'), (20325, 30015, 'thirty thousand fifteen'), (20326, 78545, 'seventy-eight thousand five hundred forty-five'), (20327, 78699, 'seventy-eight thousand six hundred ninety-nine'), (20328, 70392, 'seventy thousand three hundred ninety-two'), (20329, 21027, 'twenty-one thousand twenty-seven'), (20330, 77562, 'seventy-seven thousand five hundred sixty-two'), (20331, 11036, 'eleven thousand thirty-six'), (20332, 68284, 'sixty-eight thousand two hundred eighty-four'), (20333, 49430, 'forty-nine thousand four hundred thirty'), (20334, 96756, 'ninety-six thousand seven hundred fifty-six'), (20335, 10476, 'ten thousand four hundred seventy-six'), (20336, 3721, 'three thousand seven hundred twenty-one'), (20337, 87464, 'eighty-seven thousand four hundred sixty-four'), (20338, 86393, 'eighty-six thousand three hundred ninety-three'), (20339, 12371, 'twelve thousand three hundred seventy-one'), (20340, 31432, 'thirty-one thousand four hundred thirty-two'), (20341, 18890, 'eighteen thousand eight hundred ninety'), (20342, 25999, 'twenty-five thousand nine hundred ninety-nine'), (20343, 30466, 'thirty thousand four hundred sixty-six'), (20344, 23117, 'twenty-three thousand one hundred seventeen'), (20345, 54760, 'fifty-four thousand seven hundred sixty'), (20346, 50415, 'fifty thousand four hundred fifteen'), (20347, 41057, 'forty-one thousand fifty-seven'), (20348, 71802, 'seventy-one thousand eight hundred two'), (20349, 51995, 'fifty-one thousand nine hundred ninety-five'), (20350, 16583, 'sixteen thousand five hundred eighty-three'), (20351, 89543, 'eighty-nine thousand five hundred forty-three'), (20352, 13374, 'thirteen thousand three hundred seventy-four'), (20353, 66932, 'sixty-six thousand nine hundred thirty-two'), (20354, 99473, 'ninety-nine thousand four hundred seventy-three'), (20355, 48022, 'forty-eight thousand twenty-two'), (20356, 75867, 'seventy-five thousand eight hundred sixty-seven'), (20357, 61328, 'sixty-one thousand three hundred twenty-eight'), (20358, 79963, 'seventy-nine thousand nine hundred sixty-three'), (20359, 19830, 'nineteen thousand eight hundred thirty'), (20360, 19382, 'nineteen thousand three hundred eighty-two'), (20361, 93361, 'ninety-three thousand three hundred sixty-one'), (20362, 3755, 'three thousand seven hundred fifty-five'), (20363, 62155, 'sixty-two thousand one hundred fifty-five'), (20364, 23116, 'twenty-three thousand one hundred sixteen'), (20365, 37229, 'thirty-seven thousand two hundred twenty-nine'), (20366, 33044, 'thirty-three thousand forty-four'), (20367, 90842, 'ninety thousand eight hundred forty-two'), (20368, 41054, 'forty-one thousand fifty-four'), (20369, 1813, 'one thousand eight hundred thirteen'), (20370, 73985, 'seventy-three thousand nine hundred eighty-five'), (20371, 43705, 'forty-three thousand seven hundred five'), (20372, 71838, 'seventy-one thousand eight hundred thirty-eight'), (20373, 84602, 'eighty-four thousand six hundred two'), (20374, 29630, 'twenty-nine thousand six hundred thirty'), (20375, 52846, 'fifty-two thousand eight hundred forty-six'), (20376, 92741, 'ninety-two thousand seven hundred forty-one'), (20377, 33094, 'thirty-three thousand ninety-four'), (20378, 76200, 'seventy-six thousand two hundred'), (20379, 65338, 'sixty-five thousand three hundred thirty-eight'), (20380, 92689, 'ninety-two thousand six hundred eighty-nine'), (20381, 85493, 'eighty-five thousand four hundred ninety-three'), (20382, 91242, 'ninety-one thousand two hundred forty-two'), (20383, 37067, 'thirty-seven thousand sixty-seven'), (20384, 24548, 'twenty-four thousand five hundred forty-eight'), (20385, 20168, 'twenty thousand one hundred sixty-eight'), (20386, 89279, 'eighty-nine thousand two hundred seventy-nine'), (20387, 44857, 'forty-four thousand eight hundred fifty-seven'), (20388, 84475, 'eighty-four thousand four hundred seventy-five'), (20389, 48457, 'forty-eight thousand four hundred fifty-seven'), (20390, 15727, 'fifteen thousand seven hundred twenty-seven'), (20391, 89829, 'eighty-nine thousand eight hundred twenty-nine'), (20392, 97082, 'ninety-seven thousand eighty-two'), (20393, 4575, 'four thousand five hundred seventy-five'), (20394, 76311, 'seventy-six thousand three hundred eleven'), (20395, 13414, 'thirteen thousand four hundred fourteen'), (20396, 44200, 'forty-four thousand two hundred'), (20397, 18718, 'eighteen thousand seven hundred eighteen'), (20398, 14587, 'fourteen thousand five hundred eighty-seven'), (20399, 99840, 'ninety-nine thousand eight hundred forty'), (20400, 14243, 'fourteen thousand two hundred forty-three'), (20401, 84287, 'eighty-four thousand two hundred eighty-seven'), (20402, 9289, 'nine thousand two hundred eighty-nine'), (20403, 10957, 'ten thousand nine hundred fifty-seven'), (20404, 85839, 'eighty-five thousand eight hundred thirty-nine'), (20405, 44002, 'forty-four thousand two'), (20406, 54719, 'fifty-four thousand seven hundred nineteen'), (20407, 16367, 'sixteen thousand three hundred sixty-seven'), (20408, 20067, 'twenty thousand sixty-seven'), (20409, 11614, 'eleven thousand six hundred fourteen'), (20410, 71523, 'seventy-one thousand five hundred twenty-three'), (20411, 2749, 'two thousand seven hundred forty-nine'), (20412, 13229, 'thirteen thousand two hundred twenty-nine'), (20413, 98086, 'ninety-eight thousand eighty-six'), (20414, 46089, 'forty-six thousand eighty-nine'), (20415, 10941, 'ten thousand nine hundred forty-one'), (20416, 93739, 'ninety-three thousand seven hundred thirty-nine'), (20417, 35974, 'thirty-five thousand nine hundred seventy-four'), (20418, 4226, 'four thousand two hundred twenty-six'), (20419, 37640, 'thirty-seven thousand six hundred forty'), (20420, 29326, 'twenty-nine thousand three hundred twenty-six'), (20421, 99948, 'ninety-nine thousand nine hundred forty-eight'), (20422, 51704, 'fifty-one thousand seven hundred four'), (20423, 32392, 'thirty-two thousand three hundred ninety-two'), (20424, 33479, 'thirty-three thousand four hundred seventy-nine'), (20425, 46703, 'forty-six thousand seven hundred three'), (20426, 35829, 'thirty-five thousand eight hundred twenty-nine'), (20427, 88969, 'eighty-eight thousand nine hundred sixty-nine'), (20428, 9725, 'nine thousand seven hundred twenty-five'), (20429, 29151, 'twenty-nine thousand one hundred fifty-one'), (20430, 3867, 'three thousand eight hundred sixty-seven'), (20431, 6469, 'six thousand four hundred sixty-nine'), (20432, 32910, 'thirty-two thousand nine hundred ten'), (20433, 61884, 'sixty-one thousand eight hundred eighty-four'), (20434, 5513, 'five thousand five hundred thirteen'), (20435, 19049, 'nineteen thousand forty-nine'), (20436, 26063, 'twenty-six thousand sixty-three'), (20437, 48597, 'forty-eight thousand five hundred ninety-seven'), (20438, 51750, 'fifty-one thousand seven hundred fifty'), (20439, 12557, 'twelve thousand five hundred fifty-seven'), (20440, 13770, 'thirteen thousand seven hundred seventy'), (20441, 46516, 'forty-six thousand five hundred sixteen'), (20442, 51217, 'fifty-one thousand two hundred seventeen'), (20443, 17935, 'seventeen thousand nine hundred thirty-five'), (20444, 8078, 'eight thousand seventy-eight'), (20445, 43565, 'forty-three thousand five hundred sixty-five'), (20446, 72524, 'seventy-two thousand five hundred twenty-four'), (20447, 59901, 'fifty-nine thousand nine hundred one'), (20448, 59402, 'fifty-nine thousand four hundred two'), (20449, 78458, 'seventy-eight thousand four hundred fifty-eight'), (20450, 64109, 'sixty-four thousand one hundred nine'), (20451, 79973, 'seventy-nine thousand nine hundred seventy-three'), (20452, 62417, 'sixty-two thousand four hundred seventeen'), (20453, 78484, 'seventy-eight thousand four hundred eighty-four'), (20454, 9569, 'nine thousand five hundred sixty-nine'), (20455, 15794, 'fifteen thousand seven hundred ninety-four'), (20456, 16175, 'sixteen thousand one hundred seventy-five'), (20457, 15906, 'fifteen thousand nine hundred six'), (20458, 79140, 'seventy-nine thousand one hundred forty'), (20459, 96082, 'ninety-six thousand eighty-two'), (20460, 44463, 'forty-four thousand four hundred sixty-three'), (20461, 50305, 'fifty thousand three hundred five'), (20462, 79389, 'seventy-nine thousand three hundred eighty-nine'), (20463, 41931, 'forty-one thousand nine hundred thirty-one'), (20464, 76179, 'seventy-six thousand one hundred seventy-nine'), (20465, 713, 'seven hundred thirteen'), (20466, 61012, 'sixty-one thousand twelve'), (20467, 25827, 'twenty-five thousand eight hundred twenty-seven'), (20468, 549, 'five hundred forty-nine'), (20469, 41269, 'forty-one thousand two hundred sixty-nine'), (20470, 72172, 'seventy-two thousand one hundred seventy-two'), (20471, 89382, 'eighty-nine thousand three hundred eighty-two'), (20472, 37601, 'thirty-seven thousand six hundred one'), (20473, 16979, 'sixteen thousand nine hundred seventy-nine'), (20474, 76345, 'seventy-six thousand three hundred forty-five'), (20475, 37696, 'thirty-seven thousand six hundred ninety-six'), (20476, 74669, 'seventy-four thousand six hundred sixty-nine'), (20477, 696, 'six hundred ninety-six'), (20478, 19249, 'nineteen thousand two hundred forty-nine'), (20479, 9849, 'nine thousand eight hundred forty-nine'), (20480, 31551, 'thirty-one thousand five hundred fifty-one'), (20481, 74125, 'seventy-four thousand one hundred twenty-five'), (20482, 16960, 'sixteen thousand nine hundred sixty'), (20483, 30364, 'thirty thousand three hundred sixty-four'), (20484, 72335, 'seventy-two thousand three hundred thirty-five'), (20485, 94878, 'ninety-four thousand eight hundred seventy-eight'), (20486, 92301, 'ninety-two thousand three hundred one'), (20487, 60978, 'sixty thousand nine hundred seventy-eight'), (20488, 69767, 'sixty-nine thousand seven hundred sixty-seven'), (20489, 13933, 'thirteen thousand nine hundred thirty-three'), (20490, 33212, 'thirty-three thousand two hundred twelve'), (20491, 90390, 'ninety thousand three hundred ninety'), (20492, 30667, 'thirty thousand six hundred sixty-seven'), (20493, 87652, 'eighty-seven thousand six hundred fifty-two'), (20494, 31049, 'thirty-one thousand forty-nine'), (20495, 59932, 'fifty-nine thousand nine hundred thirty-two'), (20496, 68922, 'sixty-eight thousand nine hundred twenty-two'), (20497, 12761, 'twelve thousand seven hundred sixty-one'), (20498, 81110, 'eighty-one thousand one hundred ten'), (20499, 22859, 'twenty-two thousand eight hundred fifty-nine'), (20500, 67753, 'sixty-seven thousand seven hundred fifty-three'), (20501, 61919, 'sixty-one thousand nine hundred nineteen'), (20502, 97152, 'ninety-seven thousand one hundred fifty-two'), (20503, 41109, 'forty-one thousand one hundred nine'), (20504, 83430, 'eighty-three thousand four hundred thirty'), (20505, 9429, 'nine thousand four hundred twenty-nine'), (20506, 8447, 'eight thousand four hundred forty-seven'), (20507, 91117, 'ninety-one thousand one hundred seventeen'), (20508, 99719, 'ninety-nine thousand seven hundred nineteen'), (20509, 11446, 'eleven thousand four hundred forty-six'), (20510, 16205, 'sixteen thousand two hundred five'), (20511, 63051, 'sixty-three thousand fifty-one'), (20512, 58773, 'fifty-eight thousand seven hundred seventy-three'), (20513, 81836, 'eighty-one thousand eight hundred thirty-six'), (20514, 17045, 'seventeen thousand forty-five'), (20515, 91505, 'ninety-one thousand five hundred five'), (20516, 48991, 'forty-eight thousand nine hundred ninety-one'), (20517, 44459, 'forty-four thousand four hundred fifty-nine'), (20518, 58453, 'fifty-eight thousand four hundred fifty-three'), (20519, 70909, 'seventy thousand nine hundred nine'), (20520, 60103, 'sixty thousand one hundred three'), (20521, 54991, 'fifty-four thousand nine hundred ninety-one'), (20522, 16708, 'sixteen thousand seven hundred eight'), (20523, 17403, 'seventeen thousand four hundred three'), (20524, 9083, 'nine thousand eighty-three'), (20525, 20340, 'twenty thousand three hundred forty'), (20526, 93037, 'ninety-three thousand thirty-seven'), (20527, 7600, 'seven thousand six hundred'), (20528, 86450, 'eighty-six thousand four hundred fifty'), (20529, 84867, 'eighty-four thousand eight hundred sixty-seven'), (20530, 61092, 'sixty-one thousand ninety-two'), (20531, 24401, 'twenty-four thousand four hundred one'), (20532, 96588, 'ninety-six thousand five hundred eighty-eight'), (20533, 97549, 'ninety-seven thousand five hundred forty-nine'), (20534, 32355, 'thirty-two thousand three hundred fifty-five'), (20535, 71714, 'seventy-one thousand seven hundred fourteen'), (20536, 72398, 'seventy-two thousand three hundred ninety-eight'), (20537, 18156, 'eighteen thousand one hundred fifty-six'), (20538, 98605, 'ninety-eight thousand six hundred five'), (20539, 61579, 'sixty-one thousand five hundred seventy-nine'), (20540, 32126, 'thirty-two thousand one hundred twenty-six'), (20541, 31859, 'thirty-one thousand eight hundred fifty-nine'), (20542, 17709, 'seventeen thousand seven hundred nine'), (20543, 21756, 'twenty-one thousand seven hundred fifty-six'), (20544, 94866, 'ninety-four thousand eight hundred sixty-six'), (20545, 43968, 'forty-three thousand nine hundred sixty-eight'), (20546, 43551, 'forty-three thousand five hundred fifty-one'), (20547, 19538, 'nineteen thousand five hundred thirty-eight'), (20548, 49633, 'forty-nine thousand six hundred thirty-three'), (20549, 62508, 'sixty-two thousand five hundred eight'), (20550, 80371, 'eighty thousand three hundred seventy-one'), (20551, 22064, 'twenty-two thousand sixty-four'), (20552, 25577, 'twenty-five thousand five hundred seventy-seven'), (20553, 93125, 'ninety-three thousand one hundred twenty-five'), (20554, 44459, 'forty-four thousand four hundred fifty-nine'), (20555, 81909, 'eighty-one thousand nine hundred nine'), (20556, 44403, 'forty-four thousand four hundred three'), (20557, 16111, 'sixteen thousand one hundred eleven'), (20558, 66724, 'sixty-six thousand seven hundred twenty-four'), (20559, 29464, 'twenty-nine thousand four hundred sixty-four'), (20560, 82143, 'eighty-two thousand one hundred forty-three'), (20561, 32352, 'thirty-two thousand three hundred fifty-two'), (20562, 26542, 'twenty-six thousand five hundred forty-two'), (20563, 19247, 'nineteen thousand two hundred forty-seven'), (20564, 85640, 'eighty-five thousand six hundred forty'), (20565, 43306, 'forty-three thousand three hundred six'), (20566, 3101, 'three thousand one hundred one'), (20567, 93085, 'ninety-three thousand eighty-five'), (20568, 53939, 'fifty-three thousand nine hundred thirty-nine'), (20569, 90044, 'ninety thousand forty-four'), (20570, 89458, 'eighty-nine thousand four hundred fifty-eight'), (20571, 81200, 'eighty-one thousand two hundred'), (20572, 83993, 'eighty-three thousand nine hundred ninety-three'), (20573, 21213, 'twenty-one thousand two hundred thirteen'), (20574, 92381, 'ninety-two thousand three hundred eighty-one'), (20575, 27559, 'twenty-seven thousand five hundred fifty-nine'), (20576, 25835, 'twenty-five thousand eight hundred thirty-five'), (20577, 90657, 'ninety thousand six hundred fifty-seven'), (20578, 55662, 'fifty-five thousand six hundred sixty-two'), (20579, 77858, 'seventy-seven thousand eight hundred fifty-eight'), (20580, 98751, 'ninety-eight thousand seven hundred fifty-one'), (20581, 34780, 'thirty-four thousand seven hundred eighty'), (20582, 12787, 'twelve thousand seven hundred eighty-seven'), (20583, 11822, 'eleven thousand eight hundred twenty-two'), (20584, 48995, 'forty-eight thousand nine hundred ninety-five'), (20585, 47788, 'forty-seven thousand seven hundred eighty-eight'), (20586, 93536, 'ninety-three thousand five hundred thirty-six'), (20587, 12965, 'twelve thousand nine hundred sixty-five'), (20588, 26793, 'twenty-six thousand seven hundred ninety-three'), (20589, 52086, 'fifty-two thousand eighty-six'), (20590, 68691, 'sixty-eight thousand six hundred ninety-one'), (20591, 38386, 'thirty-eight thousand three hundred eighty-six'), (20592, 45715, 'forty-five thousand seven hundred fifteen'), (20593, 60670, 'sixty thousand six hundred seventy'), (20594, 42106, 'forty-two thousand one hundred six'), (20595, 67586, 'sixty-seven thousand five hundred eighty-six'), (20596, 78811, 'seventy-eight thousand eight hundred eleven'), (20597, 4821, 'four thousand eight hundred twenty-one'), (20598, 82827, 'eighty-two thousand eight hundred twenty-seven'), (20599, 30627, 'thirty thousand six hundred twenty-seven'), (20600, 68266, 'sixty-eight thousand two hundred sixty-six'), (20601, 10003, 'ten thousand three'), (20602, 34100, 'thirty-four thousand one hundred'), (20603, 51631, 'fifty-one thousand six hundred thirty-one'), (20604, 33292, 'thirty-three thousand two hundred ninety-two'), (20605, 20293, 'twenty thousand two hundred ninety-three'), (20606, 65053, 'sixty-five thousand fifty-three'), (20607, 52574, 'fifty-two thousand five hundred seventy-four'), (20608, 22853, 'twenty-two thousand eight hundred fifty-three'), (20609, 85257, 'eighty-five thousand two hundred fifty-seven'), (20610, 9757, 'nine thousand seven hundred fifty-seven'), (20611, 19062, 'nineteen thousand sixty-two'), (20612, 76393, 'seventy-six thousand three hundred ninety-three'), (20613, 1638, 'one thousand six hundred thirty-eight'), (20614, 73224, 'seventy-three thousand two hundred twenty-four'), (20615, 11868, 'eleven thousand eight hundred sixty-eight'), (20616, 37770, 'thirty-seven thousand seven hundred seventy'), (20617, 43848, 'forty-three thousand eight hundred forty-eight'), (20618, 46578, 'forty-six thousand five hundred seventy-eight'), (20619, 55498, 'fifty-five thousand four hundred ninety-eight'), (20620, 67263, 'sixty-seven thousand two hundred sixty-three'), (20621, 39353, 'thirty-nine thousand three hundred fifty-three'), (20622, 68732, 'sixty-eight thousand seven hundred thirty-two'), (20623, 95702, 'ninety-five thousand seven hundred two'), (20624, 10960, 'ten thousand nine hundred sixty'), (20625, 54874, 'fifty-four thousand eight hundred seventy-four'), (20626, 44253, 'forty-four thousand two hundred fifty-three'), (20627, 60069, 'sixty thousand sixty-nine'), (20628, 55331, 'fifty-five thousand three hundred thirty-one'), (20629, 59255, 'fifty-nine thousand two hundred fifty-five'), (20630, 77786, 'seventy-seven thousand seven hundred eighty-six'), (20631, 18752, 'eighteen thousand seven hundred fifty-two'), (20632, 71980, 'seventy-one thousand nine hundred eighty'), (20633, 18353, 'eighteen thousand three hundred fifty-three'), (20634, 86345, 'eighty-six thousand three hundred forty-five'), (20635, 6872, 'six thousand eight hundred seventy-two'), (20636, 96741, 'ninety-six thousand seven hundred forty-one'), (20637, 18832, 'eighteen thousand eight hundred thirty-two'), (20638, 60925, 'sixty thousand nine hundred twenty-five'), (20639, 14442, 'fourteen thousand four hundred forty-two'), (20640, 40773, 'forty thousand seven hundred seventy-three'), (20641, 32332, 'thirty-two thousand three hundred thirty-two'), (20642, 14262, 'fourteen thousand two hundred sixty-two'), (20643, 23154, 'twenty-three thousand one hundred fifty-four'), (20644, 77453, 'seventy-seven thousand four hundred fifty-three'), (20645, 50006, 'fifty thousand six'), (20646, 48892, 'forty-eight thousand eight hundred ninety-two'), (20647, 27647, 'twenty-seven thousand six hundred forty-seven'), (20648, 97154, 'ninety-seven thousand one hundred fifty-four'), (20649, 86498, 'eighty-six thousand four hundred ninety-eight'), (20650, 45331, 'forty-five thousand three hundred thirty-one'), (20651, 77855, 'seventy-seven thousand eight hundred fifty-five'), (20652, 25185, 'twenty-five thousand one hundred eighty-five'), (20653, 87726, 'eighty-seven thousand seven hundred twenty-six'), (20654, 95122, 'ninety-five thousand one hundred twenty-two'), (20655, 31884, 'thirty-one thousand eight hundred eighty-four'), (20656, 50322, 'fifty thousand three hundred twenty-two'), (20657, 50565, 'fifty thousand five hundred sixty-five'), (20658, 72873, 'seventy-two thousand eight hundred seventy-three'), (20659, 97283, 'ninety-seven thousand two hundred eighty-three'), (20660, 54358, 'fifty-four thousand three hundred fifty-eight'), (20661, 13863, 'thirteen thousand eight hundred sixty-three'), (20662, 23776, 'twenty-three thousand seven hundred seventy-six'), (20663, 78957, 'seventy-eight thousand nine hundred fifty-seven'), (20664, 84058, 'eighty-four thousand fifty-eight'), (20665, 87005, 'eighty-seven thousand five'), (20666, 431, 'four hundred thirty-one'), (20667, 17823, 'seventeen thousand eight hundred twenty-three'), (20668, 66985, 'sixty-six thousand nine hundred eighty-five'), (20669, 49520, 'forty-nine thousand five hundred twenty'), (20670, 43160, 'forty-three thousand one hundred sixty'), (20671, 4300, 'four thousand three hundred'), (20672, 69912, 'sixty-nine thousand nine hundred twelve'), (20673, 37963, 'thirty-seven thousand nine hundred sixty-three'), (20674, 92299, 'ninety-two thousand two hundred ninety-nine'), (20675, 89267, 'eighty-nine thousand two hundred sixty-seven'), (20676, 45422, 'forty-five thousand four hundred twenty-two'), (20677, 65500, 'sixty-five thousand five hundred'), (20678, 29400, 'twenty-nine thousand four hundred'), (20679, 8494, 'eight thousand four hundred ninety-four'), (20680, 89396, 'eighty-nine thousand three hundred ninety-six'), (20681, 11908, 'eleven thousand nine hundred eight'), (20682, 55665, 'fifty-five thousand six hundred sixty-five'), (20683, 7747, 'seven thousand seven hundred forty-seven'), (20684, 74265, 'seventy-four thousand two hundred sixty-five'), (20685, 1858, 'one thousand eight hundred fifty-eight'), (20686, 50175, 'fifty thousand one hundred seventy-five'), (20687, 24678, 'twenty-four thousand six hundred seventy-eight'), (20688, 69402, 'sixty-nine thousand four hundred two'), (20689, 83445, 'eighty-three thousand four hundred forty-five'), (20690, 67624, 'sixty-seven thousand six hundred twenty-four'), (20691, 7340, 'seven thousand three hundred forty'), (20692, 31104, 'thirty-one thousand one hundred four'), (20693, 56268, 'fifty-six thousand two hundred sixty-eight'), (20694, 43581, 'forty-three thousand five hundred eighty-one'), (20695, 73953, 'seventy-three thousand nine hundred fifty-three'), (20696, 64906, 'sixty-four thousand nine hundred six'), (20697, 80239, 'eighty thousand two hundred thirty-nine'), (20698, 21376, 'twenty-one thousand three hundred seventy-six'), (20699, 72485, 'seventy-two thousand four hundred eighty-five'), (20700, 32057, 'thirty-two thousand fifty-seven'), (20701, 10269, 'ten thousand two hundred sixty-nine'), (20702, 29113, 'twenty-nine thousand one hundred thirteen'), (20703, 91615, 'ninety-one thousand six hundred fifteen'), (20704, 10517, 'ten thousand five hundred seventeen'), (20705, 41237, 'forty-one thousand two hundred thirty-seven'), (20706, 22845, 'twenty-two thousand eight hundred forty-five'), (20707, 5240, 'five thousand two hundred forty'), (20708, 20548, 'twenty thousand five hundred forty-eight'), (20709, 71854, 'seventy-one thousand eight hundred fifty-four'), (20710, 82289, 'eighty-two thousand two hundred eighty-nine'), (20711, 10179, 'ten thousand one hundred seventy-nine'), (20712, 78783, 'seventy-eight thousand seven hundred eighty-three'), (20713, 77833, 'seventy-seven thousand eight hundred thirty-three'), (20714, 57407, 'fifty-seven thousand four hundred seven'), (20715, 42436, 'forty-two thousand four hundred thirty-six'), (20716, 23594, 'twenty-three thousand five hundred ninety-four'), (20717, 75767, 'seventy-five thousand seven hundred sixty-seven'), (20718, 4036, 'four thousand thirty-six'), (20719, 3028, 'three thousand twenty-eight'), (20720, 58126, 'fifty-eight thousand one hundred twenty-six'), (20721, 26808, 'twenty-six thousand eight hundred eight'), (20722, 34599, 'thirty-four thousand five hundred ninety-nine'), (20723, 72030, 'seventy-two thousand thirty'), (20724, 80484, 'eighty thousand four hundred eighty-four'), (20725, 50928, 'fifty thousand nine hundred twenty-eight'), (20726, 62459, 'sixty-two thousand four hundred fifty-nine'), (20727, 42085, 'forty-two thousand eighty-five'), (20728, 94841, 'ninety-four thousand eight hundred forty-one'), (20729, 13342, 'thirteen thousand three hundred forty-two'), (20730, 18736, 'eighteen thousand seven hundred thirty-six'), (20731, 28673, 'twenty-eight thousand six hundred seventy-three'), (20732, 12408, 'twelve thousand four hundred eight'), (20733, 68696, 'sixty-eight thousand six hundred ninety-six'), (20734, 49738, 'forty-nine thousand seven hundred thirty-eight'), (20735, 18335, 'eighteen thousand three hundred thirty-five'), (20736, 33631, 'thirty-three thousand six hundred thirty-one'), (20737, 81244, 'eighty-one thousand two hundred forty-four'), (20738, 65037, 'sixty-five thousand thirty-seven'), (20739, 40534, 'forty thousand five hundred thirty-four'), (20740, 60564, 'sixty thousand five hundred sixty-four'), (20741, 91139, 'ninety-one thousand one hundred thirty-nine'), (20742, 95676, 'ninety-five thousand six hundred seventy-six'), (20743, 69153, 'sixty-nine thousand one hundred fifty-three'), (20744, 47813, 'forty-seven thousand eight hundred thirteen'), (20745, 9933, 'nine thousand nine hundred thirty-three'), (20746, 60633, 'sixty thousand six hundred thirty-three'), (20747, 46093, 'forty-six thousand ninety-three'), (20748, 33493, 'thirty-three thousand four hundred ninety-three'), (20749, 29406, 'twenty-nine thousand four hundred six'), (20750, 14327, 'fourteen thousand three hundred twenty-seven'), (20751, 18242, 'eighteen thousand two hundred forty-two'), (20752, 56308, 'fifty-six thousand three hundred eight'), (20753, 17229, 'seventeen thousand two hundred twenty-nine'), (20754, 91534, 'ninety-one thousand five hundred thirty-four'), (20755, 49420, 'forty-nine thousand four hundred twenty'), (20756, 67885, 'sixty-seven thousand eight hundred eighty-five'), (20757, 14332, 'fourteen thousand three hundred thirty-two'), (20758, 59544, 'fifty-nine thousand five hundred forty-four'), (20759, 92431, 'ninety-two thousand four hundred thirty-one'), (20760, 69142, 'sixty-nine thousand one hundred forty-two'), (20761, 97357, 'ninety-seven thousand three hundred fifty-seven'), (20762, 25729, 'twenty-five thousand seven hundred twenty-nine'), (20763, 38656, 'thirty-eight thousand six hundred fifty-six'), (20764, 87577, 'eighty-seven thousand five hundred seventy-seven'), (20765, 55181, 'fifty-five thousand one hundred eighty-one'), (20766, 9439, 'nine thousand four hundred thirty-nine'), (20767, 45984, 'forty-five thousand nine hundred eighty-four'), (20768, 95565, 'ninety-five thousand five hundred sixty-five'), (20769, 15160, 'fifteen thousand one hundred sixty'), (20770, 20833, 'twenty thousand eight hundred thirty-three'), (20771, 74562, 'seventy-four thousand five hundred sixty-two'), (20772, 18534, 'eighteen thousand five hundred thirty-four'), (20773, 71951, 'seventy-one thousand nine hundred fifty-one'), (20774, 12861, 'twelve thousand eight hundred sixty-one'), (20775, 56609, 'fifty-six thousand six hundred nine'), (20776, 65268, 'sixty-five thousand two hundred sixty-eight'), (20777, 56988, 'fifty-six thousand nine hundred eighty-eight'), (20778, 57434, 'fifty-seven thousand four hundred thirty-four'), (20779, 86747, 'eighty-six thousand seven hundred forty-seven'), (20780, 58210, 'fifty-eight thousand two hundred ten'), (20781, 38729, 'thirty-eight thousand seven hundred twenty-nine'), (20782, 74131, 'seventy-four thousand one hundred thirty-one'), (20783, 45052, 'forty-five thousand fifty-two'), (20784, 64970, 'sixty-four thousand nine hundred seventy'), (20785, 4662, 'four thousand six hundred sixty-two'), (20786, 66009, 'sixty-six thousand nine'), (20787, 36744, 'thirty-six thousand seven hundred forty-four'), (20788, 97665, 'ninety-seven thousand six hundred sixty-five'), (20789, 5712, 'five thousand seven hundred twelve'), (20790, 60735, 'sixty thousand seven hundred thirty-five'), (20791, 98961, 'ninety-eight thousand nine hundred sixty-one'), (20792, 64648, 'sixty-four thousand six hundred forty-eight'), (20793, 76449, 'seventy-six thousand four hundred forty-nine'), (20794, 57372, 'fifty-seven thousand three hundred seventy-two'), (20795, 17349, 'seventeen thousand three hundred forty-nine'), (20796, 57011, 'fifty-seven thousand eleven'), (20797, 51736, 'fifty-one thousand seven hundred thirty-six'), (20798, 97584, 'ninety-seven thousand five hundred eighty-four'), (20799, 22595, 'twenty-two thousand five hundred ninety-five'), (20800, 71976, 'seventy-one thousand nine hundred seventy-six'), (20801, 51515, 'fifty-one thousand five hundred fifteen'), (20802, 76089, 'seventy-six thousand eighty-nine'), (20803, 77060, 'seventy-seven thousand sixty'), (20804, 79446, 'seventy-nine thousand four hundred forty-six'), (20805, 33286, 'thirty-three thousand two hundred eighty-six'), (20806, 38066, 'thirty-eight thousand sixty-six'), (20807, 33525, 'thirty-three thousand five hundred twenty-five'), (20808, 91750, 'ninety-one thousand seven hundred fifty'), (20809, 71977, 'seventy-one thousand nine hundred seventy-seven'), (20810, 87678, 'eighty-seven thousand six hundred seventy-eight'), (20811, 98988, 'ninety-eight thousand nine hundred eighty-eight'), (20812, 25993, 'twenty-five thousand nine hundred ninety-three'), (20813, 67531, 'sixty-seven thousand five hundred thirty-one'), (20814, 52159, 'fifty-two thousand one hundred fifty-nine'), (20815, 94970, 'ninety-four thousand nine hundred seventy'), (20816, 90655, 'ninety thousand six hundred fifty-five'), (20817, 93054, 'ninety-three thousand fifty-four'), (20818, 47093, 'forty-seven thousand ninety-three'), (20819, 30159, 'thirty thousand one hundred fifty-nine'), (20820, 9763, 'nine thousand seven hundred sixty-three'), (20821, 54900, 'fifty-four thousand nine hundred'), (20822, 83891, 'eighty-three thousand eight hundred ninety-one'), (20823, 5898, 'five thousand eight hundred ninety-eight'), (20824, 64287, 'sixty-four thousand two hundred eighty-seven'), (20825, 78880, 'seventy-eight thousand eight hundred eighty'), (20826, 27520, 'twenty-seven thousand five hundred twenty'), (20827, 72341, 'seventy-two thousand three hundred forty-one'), (20828, 39326, 'thirty-nine thousand three hundred twenty-six'), (20829, 72734, 'seventy-two thousand seven hundred thirty-four'), (20830, 75519, 'seventy-five thousand five hundred nineteen'), (20831, 59511, 'fifty-nine thousand five hundred eleven'), (20832, 38423, 'thirty-eight thousand four hundred twenty-three'), (20833, 31019, 'thirty-one thousand nineteen'), (20834, 5794, 'five thousand seven hundred ninety-four'), (20835, 95783, 'ninety-five thousand seven hundred eighty-three'), (20836, 68949, 'sixty-eight thousand nine hundred forty-nine'), (20837, 5955, 'five thousand nine hundred fifty-five'), (20838, 46310, 'forty-six thousand three hundred ten'), (20839, 73, 'seventy-three'), (20840, 31497, 'thirty-one thousand four hundred ninety-seven'), (20841, 28050, 'twenty-eight thousand fifty'), (20842, 16080, 'sixteen thousand eighty'), (20843, 76546, 'seventy-six thousand five hundred forty-six'), (20844, 35140, 'thirty-five thousand one hundred forty'), (20845, 39018, 'thirty-nine thousand eighteen'), (20846, 35038, 'thirty-five thousand thirty-eight'), (20847, 713, 'seven hundred thirteen'), (20848, 49986, 'forty-nine thousand nine hundred eighty-six'), (20849, 12599, 'twelve thousand five hundred ninety-nine'), (20850, 44985, 'forty-four thousand nine hundred eighty-five'), (20851, 63869, 'sixty-three thousand eight hundred sixty-nine'), (20852, 55184, 'fifty-five thousand one hundred eighty-four'), (20853, 18393, 'eighteen thousand three hundred ninety-three'), (20854, 79607, 'seventy-nine thousand six hundred seven'), (20855, 70721, 'seventy thousand seven hundred twenty-one'), (20856, 23704, 'twenty-three thousand seven hundred four'), (20857, 94840, 'ninety-four thousand eight hundred forty'), (20858, 18866, 'eighteen thousand eight hundred sixty-six'), (20859, 12650, 'twelve thousand six hundred fifty'), (20860, 54339, 'fifty-four thousand three hundred thirty-nine'), (20861, 90994, 'ninety thousand nine hundred ninety-four'), (20862, 11553, 'eleven thousand five hundred fifty-three'), (20863, 21094, 'twenty-one thousand ninety-four'), (20864, 17314, 'seventeen thousand three hundred fourteen'), (20865, 53828, 'fifty-three thousand eight hundred twenty-eight'), (20866, 69873, 'sixty-nine thousand eight hundred seventy-three'), (20867, 41647, 'forty-one thousand six hundred forty-seven'), (20868, 87110, 'eighty-seven thousand one hundred ten'), (20869, 65001, 'sixty-five thousand one'), (20870, 38710, 'thirty-eight thousand seven hundred ten'), (20871, 11303, 'eleven thousand three hundred three'), (20872, 66116, 'sixty-six thousand one hundred sixteen'), (20873, 31910, 'thirty-one thousand nine hundred ten'), (20874, 70287, 'seventy thousand two hundred eighty-seven'), (20875, 67464, 'sixty-seven thousand four hundred sixty-four'), (20876, 16312, 'sixteen thousand three hundred twelve'), (20877, 45563, 'forty-five thousand five hundred sixty-three'), (20878, 50869, 'fifty thousand eight hundred sixty-nine'), (20879, 12900, 'twelve thousand nine hundred'), (20880, 73595, 'seventy-three thousand five hundred ninety-five'), (20881, 3009, 'three thousand nine'), (20882, 83706, 'eighty-three thousand seven hundred six'), (20883, 72886, 'seventy-two thousand eight hundred eighty-six'), (20884, 97365, 'ninety-seven thousand three hundred sixty-five'), (20885, 29661, 'twenty-nine thousand six hundred sixty-one'), (20886, 64571, 'sixty-four thousand five hundred seventy-one'), (20887, 34161, 'thirty-four thousand one hundred sixty-one'), (20888, 7808, 'seven thousand eight hundred eight'), (20889, 58029, 'fifty-eight thousand twenty-nine'), (20890, 58286, 'fifty-eight thousand two hundred eighty-six'), (20891, 45915, 'forty-five thousand nine hundred fifteen'), (20892, 86274, 'eighty-six thousand two hundred seventy-four'), (20893, 19091, 'nineteen thousand ninety-one'), (20894, 92017, 'ninety-two thousand seventeen'), (20895, 10011, 'ten thousand eleven'), (20896, 99703, 'ninety-nine thousand seven hundred three'), (20897, 89702, 'eighty-nine thousand seven hundred two'), (20898, 56605, 'fifty-six thousand six hundred five'), (20899, 89958, 'eighty-nine thousand nine hundred fifty-eight'), (20900, 84558, 'eighty-four thousand five hundred fifty-eight'), (20901, 46970, 'forty-six thousand nine hundred seventy'), (20902, 90213, 'ninety thousand two hundred thirteen'), (20903, 86754, 'eighty-six thousand seven hundred fifty-four'), (20904, 94557, 'ninety-four thousand five hundred fifty-seven'), (20905, 90431, 'ninety thousand four hundred thirty-one'), (20906, 99255, 'ninety-nine thousand two hundred fifty-five'), (20907, 3510, 'three thousand five hundred ten'), (20908, 92988, 'ninety-two thousand nine hundred eighty-eight'), (20909, 34617, 'thirty-four thousand six hundred seventeen'), (20910, 73710, 'seventy-three thousand seven hundred ten'), (20911, 54479, 'fifty-four thousand four hundred seventy-nine'), (20912, 80877, 'eighty thousand eight hundred seventy-seven'), (20913, 34343, 'thirty-four thousand three hundred forty-three'), (20914, 34552, 'thirty-four thousand five hundred fifty-two'), (20915, 49156, 'forty-nine thousand one hundred fifty-six'), (20916, 59708, 'fifty-nine thousand seven hundred eight'), (20917, 50559, 'fifty thousand five hundred fifty-nine'), (20918, 45551, 'forty-five thousand five hundred fifty-one'), (20919, 89426, 'eighty-nine thousand four hundred twenty-six'), (20920, 41571, 'forty-one thousand five hundred seventy-one'), (20921, 28131, 'twenty-eight thousand one hundred thirty-one'), (20922, 81271, 'eighty-one thousand two hundred seventy-one'), (20923, 7342, 'seven thousand three hundred forty-two'), (20924, 84478, 'eighty-four thousand four hundred seventy-eight'), (20925, 13500, 'thirteen thousand five hundred'), (20926, 65245, 'sixty-five thousand two hundred forty-five'), (20927, 46142, 'forty-six thousand one hundred forty-two'), (20928, 6124, 'six thousand one hundred twenty-four'), (20929, 81955, 'eighty-one thousand nine hundred fifty-five'), (20930, 51579, 'fifty-one thousand five hundred seventy-nine'), (20931, 34983, 'thirty-four thousand nine hundred eighty-three'), (20932, 31440, 'thirty-one thousand four hundred forty'), (20933, 68096, 'sixty-eight thousand ninety-six'), (20934, 82045, 'eighty-two thousand forty-five'), (20935, 43707, 'forty-three thousand seven hundred seven'), (20936, 69697, 'sixty-nine thousand six hundred ninety-seven'), (20937, 93179, 'ninety-three thousand one hundred seventy-nine'), (20938, 77302, 'seventy-seven thousand three hundred two'), (20939, 9321, 'nine thousand three hundred twenty-one'), (20940, 37961, 'thirty-seven thousand nine hundred sixty-one'), (20941, 40125, 'forty thousand one hundred twenty-five'), (20942, 94848, 'ninety-four thousand eight hundred forty-eight'), (20943, 11962, 'eleven thousand nine hundred sixty-two'), (20944, 62133, 'sixty-two thousand one hundred thirty-three'), (20945, 35225, 'thirty-five thousand two hundred twenty-five'), (20946, 62811, 'sixty-two thousand eight hundred eleven'), (20947, 25119, 'twenty-five thousand one hundred nineteen'), (20948, 6006, 'six thousand six'), (20949, 32466, 'thirty-two thousand four hundred sixty-six'), (20950, 45101, 'forty-five thousand one hundred one'), (20951, 35736, 'thirty-five thousand seven hundred thirty-six'), (20952, 66224, 'sixty-six thousand two hundred twenty-four'), (20953, 46437, 'forty-six thousand four hundred thirty-seven'), (20954, 47185, 'forty-seven thousand one hundred eighty-five'), (20955, 57869, 'fifty-seven thousand eight hundred sixty-nine'), (20956, 41204, 'forty-one thousand two hundred four'), (20957, 64622, 'sixty-four thousand six hundred twenty-two'), (20958, 53458, 'fifty-three thousand four hundred fifty-eight'), (20959, 99293, 'ninety-nine thousand two hundred ninety-three'), (20960, 28997, 'twenty-eight thousand nine hundred ninety-seven'), (20961, 12820, 'twelve thousand eight hundred twenty'), (20962, 21644, 'twenty-one thousand six hundred forty-four'), (20963, 10764, 'ten thousand seven hundred sixty-four'), (20964, 90596, 'ninety thousand five hundred ninety-six'), (20965, 68661, 'sixty-eight thousand six hundred sixty-one'), (20966, 41532, 'forty-one thousand five hundred thirty-two'), (20967, 48499, 'forty-eight thousand four hundred ninety-nine'), (20968, 36253, 'thirty-six thousand two hundred fifty-three'), (20969, 45061, 'forty-five thousand sixty-one'), (20970, 84611, 'eighty-four thousand six hundred eleven'), (20971, 77452, 'seventy-seven thousand four hundred fifty-two'), (20972, 57511, 'fifty-seven thousand five hundred eleven'), (20973, 30688, 'thirty thousand six hundred eighty-eight'), (20974, 78086, 'seventy-eight thousand eighty-six'), (20975, 70241, 'seventy thousand two hundred forty-one'), (20976, 52250, 'fifty-two thousand two hundred fifty'), (20977, 94213, 'ninety-four thousand two hundred thirteen'), (20978, 45993, 'forty-five thousand nine hundred ninety-three'), (20979, 9415, 'nine thousand four hundred fifteen'), (20980, 22496, 'twenty-two thousand four hundred ninety-six'), (20981, 94760, 'ninety-four thousand seven hundred sixty'), (20982, 32736, 'thirty-two thousand seven hundred thirty-six'), (20983, 20919, 'twenty thousand nine hundred nineteen'), (20984, 63891, 'sixty-three thousand eight hundred ninety-one'), (20985, 5606, 'five thousand six hundred six'), (20986, 86559, 'eighty-six thousand five hundred fifty-nine'), (20987, 77443, 'seventy-seven thousand four hundred forty-three'), (20988, 82235, 'eighty-two thousand two hundred thirty-five'), (20989, 92187, 'ninety-two thousand one hundred eighty-seven'), (20990, 98638, 'ninety-eight thousand six hundred thirty-eight'), (20991, 12531, 'twelve thousand five hundred thirty-one'), (20992, 39949, 'thirty-nine thousand nine hundred forty-nine'), (20993, 64361, 'sixty-four thousand three hundred sixty-one'), (20994, 31996, 'thirty-one thousand nine hundred ninety-six'), (20995, 12644, 'twelve thousand six hundred forty-four'), (20996, 13802, 'thirteen thousand eight hundred two'), (20997, 81663, 'eighty-one thousand six hundred sixty-three'), (20998, 27831, 'twenty-seven thousand eight hundred thirty-one'), (20999, 10136, 'ten thousand one hundred thirty-six'), (21000, 76524, 'seventy-six thousand five hundred twenty-four'), (21001, 37425, 'thirty-seven thousand four hundred twenty-five'), (21002, 84150, 'eighty-four thousand one hundred fifty'), (21003, 85297, 'eighty-five thousand two hundred ninety-seven'), (21004, 98034, 'ninety-eight thousand thirty-four'), (21005, 11826, 'eleven thousand eight hundred twenty-six'), (21006, 48202, 'forty-eight thousand two hundred two'), (21007, 73272, 'seventy-three thousand two hundred seventy-two'), (21008, 16035, 'sixteen thousand thirty-five'), (21009, 4649, 'four thousand six hundred forty-nine'), (21010, 66088, 'sixty-six thousand eighty-eight'), (21011, 99506, 'ninety-nine thousand five hundred six'), (21012, 61038, 'sixty-one thousand thirty-eight'), (21013, 88196, 'eighty-eight thousand one hundred ninety-six'), (21014, 96517, 'ninety-six thousand five hundred seventeen'), (21015, 26177, 'twenty-six thousand one hundred seventy-seven'), (21016, 602, 'six hundred two'), (21017, 21717, 'twenty-one thousand seven hundred seventeen'), (21018, 21469, 'twenty-one thousand four hundred sixty-nine'), (21019, 64240, 'sixty-four thousand two hundred forty'), (21020, 65443, 'sixty-five thousand four hundred forty-three'), (21021, 87430, 'eighty-seven thousand four hundred thirty'), (21022, 75716, 'seventy-five thousand seven hundred sixteen'), (21023, 83743, 'eighty-three thousand seven hundred forty-three'), (21024, 70976, 'seventy thousand nine hundred seventy-six'), (21025, 54193, 'fifty-four thousand one hundred ninety-three'), (21026, 2466, 'two thousand four hundred sixty-six'), (21027, 23794, 'twenty-three thousand seven hundred ninety-four'), (21028, 77808, 'seventy-seven thousand eight hundred eight'), (21029, 82905, 'eighty-two thousand nine hundred five'), (21030, 96527, 'ninety-six thousand five hundred twenty-seven'), (21031, 93562, 'ninety-three thousand five hundred sixty-two'), (21032, 83259, 'eighty-three thousand two hundred fifty-nine'), (21033, 31672, 'thirty-one thousand six hundred seventy-two'), (21034, 12597, 'twelve thousand five hundred ninety-seven'), (21035, 27922, 'twenty-seven thousand nine hundred twenty-two'), (21036, 60856, 'sixty thousand eight hundred fifty-six'), (21037, 53038, 'fifty-three thousand thirty-eight'), (21038, 39941, 'thirty-nine thousand nine hundred forty-one'), (21039, 91535, 'ninety-one thousand five hundred thirty-five'), (21040, 43868, 'forty-three thousand eight hundred sixty-eight'), (21041, 22105, 'twenty-two thousand one hundred five'), (21042, 21722, 'twenty-one thousand seven hundred twenty-two'), (21043, 5833, 'five thousand eight hundred thirty-three'), (21044, 18864, 'eighteen thousand eight hundred sixty-four'), (21045, 6383, 'six thousand three hundred eighty-three'), (21046, 53190, 'fifty-three thousand one hundred ninety'), (21047, 15280, 'fifteen thousand two hundred eighty'), (21048, 35362, 'thirty-five thousand three hundred sixty-two'), (21049, 30900, 'thirty thousand nine hundred'), (21050, 18104, 'eighteen thousand one hundred four'), (21051, 62309, 'sixty-two thousand three hundred nine'), (21052, 51843, 'fifty-one thousand eight hundred forty-three'), (21053, 10002, 'ten thousand two'), (21054, 18605, 'eighteen thousand six hundred five'), (21055, 46024, 'forty-six thousand twenty-four'), (21056, 77012, 'seventy-seven thousand twelve'), (21057, 57620, 'fifty-seven thousand six hundred twenty'), (21058, 6770, 'six thousand seven hundred seventy'), (21059, 40298, 'forty thousand two hundred ninety-eight'), (21060, 48970, 'forty-eight thousand nine hundred seventy'), (21061, 10779, 'ten thousand seven hundred seventy-nine'), (21062, 50657, 'fifty thousand six hundred fifty-seven'), (21063, 13479, 'thirteen thousand four hundred seventy-nine'), (21064, 29909, 'twenty-nine thousand nine hundred nine'), (21065, 75081, 'seventy-five thousand eighty-one'), (21066, 16799, 'sixteen thousand seven hundred ninety-nine'), (21067, 13987, 'thirteen thousand nine hundred eighty-seven'), (21068, 78631, 'seventy-eight thousand six hundred thirty-one'), (21069, 32003, 'thirty-two thousand three'), (21070, 71218, 'seventy-one thousand two hundred eighteen'), (21071, 37771, 'thirty-seven thousand seven hundred seventy-one'), (21072, 59579, 'fifty-nine thousand five hundred seventy-nine'), (21073, 26602, 'twenty-six thousand six hundred two'), (21074, 5604, 'five thousand six hundred four'), (21075, 84568, 'eighty-four thousand five hundred sixty-eight'), (21076, 59106, 'fifty-nine thousand one hundred six'), (21077, 45690, 'forty-five thousand six hundred ninety'), (21078, 93610, 'ninety-three thousand six hundred ten'), (21079, 58583, 'fifty-eight thousand five hundred eighty-three'), (21080, 52384, 'fifty-two thousand three hundred eighty-four'), (21081, 65824, 'sixty-five thousand eight hundred twenty-four'), (21082, 6716, 'six thousand seven hundred sixteen'), (21083, 84130, 'eighty-four thousand one hundred thirty'), (21084, 62103, 'sixty-two thousand one hundred three'), (21085, 21557, 'twenty-one thousand five hundred fifty-seven'), (21086, 4655, 'four thousand six hundred fifty-five'), (21087, 76820, 'seventy-six thousand eight hundred twenty'), (21088, 53337, 'fifty-three thousand three hundred thirty-seven'), (21089, 6606, 'six thousand six hundred six'), (21090, 1724, 'one thousand seven hundred twenty-four'), (21091, 50844, 'fifty thousand eight hundred forty-four'), (21092, 60610, 'sixty thousand six hundred ten'), (21093, 37681, 'thirty-seven thousand six hundred eighty-one'), (21094, 54741, 'fifty-four thousand seven hundred forty-one'), (21095, 36154, 'thirty-six thousand one hundred fifty-four'), (21096, 54755, 'fifty-four thousand seven hundred fifty-five'), (21097, 10418, 'ten thousand four hundred eighteen'), (21098, 41761, 'forty-one thousand seven hundred sixty-one'), (21099, 18534, 'eighteen thousand five hundred thirty-four'), (21100, 98917, 'ninety-eight thousand nine hundred seventeen'), (21101, 32256, 'thirty-two thousand two hundred fifty-six'), (21102, 5103, 'five thousand one hundred three'), (21103, 23475, 'twenty-three thousand four hundred seventy-five'), (21104, 7396, 'seven thousand three hundred ninety-six'), (21105, 39952, 'thirty-nine thousand nine hundred fifty-two'), (21106, 46510, 'forty-six thousand five hundred ten'), (21107, 90204, 'ninety thousand two hundred four'), (21108, 25762, 'twenty-five thousand seven hundred sixty-two'), (21109, 52464, 'fifty-two thousand four hundred sixty-four'), (21110, 49024, 'forty-nine thousand twenty-four'), (21111, 11161, 'eleven thousand one hundred sixty-one'), (21112, 21274, 'twenty-one thousand two hundred seventy-four'), (21113, 78610, 'seventy-eight thousand six hundred ten'), (21114, 35671, 'thirty-five thousand six hundred seventy-one'), (21115, 24578, 'twenty-four thousand five hundred seventy-eight'), (21116, 79384, 'seventy-nine thousand three hundred eighty-four'), (21117, 1248, 'one thousand two hundred forty-eight'), (21118, 65359, 'sixty-five thousand three hundred fifty-nine'), (21119, 87627, 'eighty-seven thousand six hundred twenty-seven'), (21120, 49099, 'forty-nine thousand ninety-nine'), (21121, 77170, 'seventy-seven thousand one hundred seventy'), (21122, 98679, 'ninety-eight thousand six hundred seventy-nine'), (21123, 18101, 'eighteen thousand one hundred one'), (21124, 22036, 'twenty-two thousand thirty-six'), (21125, 54864, 'fifty-four thousand eight hundred sixty-four'), (21126, 2843, 'two thousand eight hundred forty-three'), (21127, 51339, 'fifty-one thousand three hundred thirty-nine'), (21128, 72226, 'seventy-two thousand two hundred twenty-six'), (21129, 27815, 'twenty-seven thousand eight hundred fifteen'), (21130, 58312, 'fifty-eight thousand three hundred twelve'), (21131, 55616, 'fifty-five thousand six hundred sixteen'), (21132, 76763, 'seventy-six thousand seven hundred sixty-three'), (21133, 38193, 'thirty-eight thousand one hundred ninety-three'), (21134, 31399, 'thirty-one thousand three hundred ninety-nine'), (21135, 94983, 'ninety-four thousand nine hundred eighty-three'), (21136, 93605, 'ninety-three thousand six hundred five'), (21137, 59464, 'fifty-nine thousand four hundred sixty-four'), (21138, 56463, 'fifty-six thousand four hundred sixty-three'), (21139, 50245, 'fifty thousand two hundred forty-five'), (21140, 84319, 'eighty-four thousand three hundred nineteen'), (21141, 8338, 'eight thousand three hundred thirty-eight'), (21142, 74698, 'seventy-four thousand six hundred ninety-eight'), (21143, 56701, 'fifty-six thousand seven hundred one'), (21144, 14385, 'fourteen thousand three hundred eighty-five'), (21145, 56034, 'fifty-six thousand thirty-four'), (21146, 70383, 'seventy thousand three hundred eighty-three'), (21147, 72584, 'seventy-two thousand five hundred eighty-four'), (21148, 55092, 'fifty-five thousand ninety-two'), (21149, 79780, 'seventy-nine thousand seven hundred eighty'), (21150, 46694, 'forty-six thousand six hundred ninety-four'), (21151, 57961, 'fifty-seven thousand nine hundred sixty-one'), (21152, 58173, 'fifty-eight thousand one hundred seventy-three'), (21153, 51989, 'fifty-one thousand nine hundred eighty-nine'), (21154, 91963, 'ninety-one thousand nine hundred sixty-three'), (21155, 47380, 'forty-seven thousand three hundred eighty'), (21156, 44128, 'forty-four thousand one hundred twenty-eight'), (21157, 72012, 'seventy-two thousand twelve'), (21158, 53635, 'fifty-three thousand six hundred thirty-five'), (21159, 34624, 'thirty-four thousand six hundred twenty-four'), (21160, 77428, 'seventy-seven thousand four hundred twenty-eight'), (21161, 47049, 'forty-seven thousand forty-nine'), (21162, 45050, 'forty-five thousand fifty'), (21163, 74721, 'seventy-four thousand seven hundred twenty-one'), (21164, 22718, 'twenty-two thousand seven hundred eighteen'), (21165, 60983, 'sixty thousand nine hundred eighty-three'), (21166, 69130, 'sixty-nine thousand one hundred thirty'), (21167, 57466, 'fifty-seven thousand four hundred sixty-six'), (21168, 9803, 'nine thousand eight hundred three'), (21169, 79807, 'seventy-nine thousand eight hundred seven'), (21170, 67194, 'sixty-seven thousand one hundred ninety-four'), (21171, 37746, 'thirty-seven thousand seven hundred forty-six'), (21172, 80860, 'eighty thousand eight hundred sixty'), (21173, 9850, 'nine thousand eight hundred fifty'), (21174, 45383, 'forty-five thousand three hundred eighty-three'), (21175, 65997, 'sixty-five thousand nine hundred ninety-seven'), (21176, 95738, 'ninety-five thousand seven hundred thirty-eight'), (21177, 58828, 'fifty-eight thousand eight hundred twenty-eight'), (21178, 81971, 'eighty-one thousand nine hundred seventy-one'), (21179, 7641, 'seven thousand six hundred forty-one'), (21180, 7723, 'seven thousand seven hundred twenty-three'), (21181, 3820, 'three thousand eight hundred twenty'), (21182, 73511, 'seventy-three thousand five hundred eleven'), (21183, 60887, 'sixty thousand eight hundred eighty-seven'), (21184, 33349, 'thirty-three thousand three hundred forty-nine'), (21185, 41303, 'forty-one thousand three hundred three'), (21186, 99307, 'ninety-nine thousand three hundred seven'), (21187, 19969, 'nineteen thousand nine hundred sixty-nine'), (21188, 78923, 'seventy-eight thousand nine hundred twenty-three'), (21189, 92739, 'ninety-two thousand seven hundred thirty-nine'), (21190, 64022, 'sixty-four thousand twenty-two'), (21191, 13342, 'thirteen thousand three hundred forty-two'), (21192, 66510, 'sixty-six thousand five hundred ten'), (21193, 89912, 'eighty-nine thousand nine hundred twelve'), (21194, 38205, 'thirty-eight thousand two hundred five'), (21195, 11257, 'eleven thousand two hundred fifty-seven'), (21196, 88842, 'eighty-eight thousand eight hundred forty-two'), (21197, 21514, 'twenty-one thousand five hundred fourteen'), (21198, 81451, 'eighty-one thousand four hundred fifty-one'), (21199, 37321, 'thirty-seven thousand three hundred twenty-one'), (21200, 12376, 'twelve thousand three hundred seventy-six'), (21201, 94493, 'ninety-four thousand four hundred ninety-three'), (21202, 84579, 'eighty-four thousand five hundred seventy-nine'), (21203, 64859, 'sixty-four thousand eight hundred fifty-nine'), (21204, 70935, 'seventy thousand nine hundred thirty-five'), (21205, 64375, 'sixty-four thousand three hundred seventy-five'), (21206, 1923, 'one thousand nine hundred twenty-three'), (21207, 11065, 'eleven thousand sixty-five'), (21208, 69769, 'sixty-nine thousand seven hundred sixty-nine'), (21209, 79690, 'seventy-nine thousand six hundred ninety'), (21210, 27326, 'twenty-seven thousand three hundred twenty-six'), (21211, 46426, 'forty-six thousand four hundred twenty-six'), (21212, 39032, 'thirty-nine thousand thirty-two'), (21213, 16516, 'sixteen thousand five hundred sixteen'), (21214, 56359, 'fifty-six thousand three hundred fifty-nine'), (21215, 65516, 'sixty-five thousand five hundred sixteen'), (21216, 96327, 'ninety-six thousand three hundred twenty-seven'), (21217, 28013, 'twenty-eight thousand thirteen'), (21218, 19666, 'nineteen thousand six hundred sixty-six'), (21219, 52926, 'fifty-two thousand nine hundred twenty-six'), (21220, 18147, 'eighteen thousand one hundred forty-seven'), (21221, 5065, 'five thousand sixty-five'), (21222, 24529, 'twenty-four thousand five hundred twenty-nine'), (21223, 69597, 'sixty-nine thousand five hundred ninety-seven'), (21224, 99325, 'ninety-nine thousand three hundred twenty-five'), (21225, 68459, 'sixty-eight thousand four hundred fifty-nine'), (21226, 10431, 'ten thousand four hundred thirty-one'), (21227, 49123, 'forty-nine thousand one hundred twenty-three'), (21228, 65687, 'sixty-five thousand six hundred eighty-seven'), (21229, 93170, 'ninety-three thousand one hundred seventy'), (21230, 38223, 'thirty-eight thousand two hundred twenty-three'), (21231, 43111, 'forty-three thousand one hundred eleven'), (21232, 77938, 'seventy-seven thousand nine hundred thirty-eight'), (21233, 72641, 'seventy-two thousand six hundred forty-one'), (21234, 25133, 'twenty-five thousand one hundred thirty-three'), (21235, 16906, 'sixteen thousand nine hundred six'), (21236, 6633, 'six thousand six hundred thirty-three'), (21237, 58631, 'fifty-eight thousand six hundred thirty-one'), (21238, 35253, 'thirty-five thousand two hundred fifty-three'), (21239, 67550, 'sixty-seven thousand five hundred fifty'), (21240, 79461, 'seventy-nine thousand four hundred sixty-one'), (21241, 30295, 'thirty thousand two hundred ninety-five'), (21242, 43785, 'forty-three thousand seven hundred eighty-five'), (21243, 89336, 'eighty-nine thousand three hundred thirty-six'), (21244, 73351, 'seventy-three thousand three hundred fifty-one'), (21245, 37262, 'thirty-seven thousand two hundred sixty-two'), (21246, 35129, 'thirty-five thousand one hundred twenty-nine'), (21247, 10119, 'ten thousand one hundred nineteen'), (21248, 56112, 'fifty-six thousand one hundred twelve'), (21249, 28548, 'twenty-eight thousand five hundred forty-eight'), (21250, 13115, 'thirteen thousand one hundred fifteen'), (21251, 80286, 'eighty thousand two hundred eighty-six'), (21252, 69147, 'sixty-nine thousand one hundred forty-seven'), (21253, 65728, 'sixty-five thousand seven hundred twenty-eight'), (21254, 3719, 'three thousand seven hundred nineteen'), (21255, 25014, 'twenty-five thousand fourteen'), (21256, 14991, 'fourteen thousand nine hundred ninety-one'), (21257, 70268, 'seventy thousand two hundred sixty-eight'), (21258, 54924, 'fifty-four thousand nine hundred twenty-four'), (21259, 31017, 'thirty-one thousand seventeen'), (21260, 90810, 'ninety thousand eight hundred ten'), (21261, 26717, 'twenty-six thousand seven hundred seventeen'), (21262, 22031, 'twenty-two thousand thirty-one'), (21263, 61116, 'sixty-one thousand one hundred sixteen'), (21264, 51453, 'fifty-one thousand four hundred fifty-three'), (21265, 11482, 'eleven thousand four hundred eighty-two'), (21266, 56454, 'fifty-six thousand four hundred fifty-four'), (21267, 97193, 'ninety-seven thousand one hundred ninety-three'), (21268, 28472, 'twenty-eight thousand four hundred seventy-two'), (21269, 68957, 'sixty-eight thousand nine hundred fifty-seven'), (21270, 91060, 'ninety-one thousand sixty'), (21271, 95292, 'ninety-five thousand two hundred ninety-two'), (21272, 8577, 'eight thousand five hundred seventy-seven'), (21273, 38635, 'thirty-eight thousand six hundred thirty-five'), (21274, 17952, 'seventeen thousand nine hundred fifty-two'), (21275, 49788, 'forty-nine thousand seven hundred eighty-eight'), (21276, 56854, 'fifty-six thousand eight hundred fifty-four'), (21277, 16567, 'sixteen thousand five hundred sixty-seven'), (21278, 54793, 'fifty-four thousand seven hundred ninety-three'), (21279, 95460, 'ninety-five thousand four hundred sixty'), (21280, 37602, 'thirty-seven thousand six hundred two'), (21281, 38717, 'thirty-eight thousand seven hundred seventeen'), (21282, 23758, 'twenty-three thousand seven hundred fifty-eight'), (21283, 3027, 'three thousand twenty-seven'), (21284, 699, 'six hundred ninety-nine'), (21285, 50325, 'fifty thousand three hundred twenty-five'), (21286, 46260, 'forty-six thousand two hundred sixty'), (21287, 24424, 'twenty-four thousand four hundred twenty-four'), (21288, 43256, 'forty-three thousand two hundred fifty-six'), (21289, 54408, 'fifty-four thousand four hundred eight'), (21290, 83235, 'eighty-three thousand two hundred thirty-five'), (21291, 88866, 'eighty-eight thousand eight hundred sixty-six'), (21292, 93809, 'ninety-three thousand eight hundred nine'), (21293, 76333, 'seventy-six thousand three hundred thirty-three'), (21294, 19405, 'nineteen thousand four hundred five'), (21295, 38694, 'thirty-eight thousand six hundred ninety-four'), (21296, 71078, 'seventy-one thousand seventy-eight'), (21297, 43986, 'forty-three thousand nine hundred eighty-six'), (21298, 14483, 'fourteen thousand four hundred eighty-three'), (21299, 67360, 'sixty-seven thousand three hundred sixty'), (21300, 51192, 'fifty-one thousand one hundred ninety-two'), (21301, 76933, 'seventy-six thousand nine hundred thirty-three'), (21302, 85569, 'eighty-five thousand five hundred sixty-nine'), (21303, 68577, 'sixty-eight thousand five hundred seventy-seven'), (21304, 2701, 'two thousand seven hundred one'), (21305, 46845, 'forty-six thousand eight hundred forty-five'), (21306, 53627, 'fifty-three thousand six hundred twenty-seven'), (21307, 36701, 'thirty-six thousand seven hundred one'), (21308, 8267, 'eight thousand two hundred sixty-seven'), (21309, 81965, 'eighty-one thousand nine hundred sixty-five'), (21310, 76699, 'seventy-six thousand six hundred ninety-nine'), (21311, 87802, 'eighty-seven thousand eight hundred two'), (21312, 22902, 'twenty-two thousand nine hundred two'), (21313, 57170, 'fifty-seven thousand one hundred seventy'), (21314, 15532, 'fifteen thousand five hundred thirty-two'), (21315, 61255, 'sixty-one thousand two hundred fifty-five'), (21316, 45677, 'forty-five thousand six hundred seventy-seven'), (21317, 49736, 'forty-nine thousand seven hundred thirty-six'), (21318, 22784, 'twenty-two thousand seven hundred eighty-four'), (21319, 67308, 'sixty-seven thousand three hundred eight'), (21320, 77073, 'seventy-seven thousand seventy-three'), (21321, 58, 'fifty-eight'), (21322, 91089, 'ninety-one thousand eighty-nine'), (21323, 31013, 'thirty-one thousand thirteen'), (21324, 60989, 'sixty thousand nine hundred eighty-nine'), (21325, 45384, 'forty-five thousand three hundred eighty-four'), (21326, 91252, 'ninety-one thousand two hundred fifty-two'), (21327, 92086, 'ninety-two thousand eighty-six'), (21328, 54231, 'fifty-four thousand two hundred thirty-one'), (21329, 56193, 'fifty-six thousand one hundred ninety-three'), (21330, 16542, 'sixteen thousand five hundred forty-two'), (21331, 90770, 'ninety thousand seven hundred seventy'), (21332, 21326, 'twenty-one thousand three hundred twenty-six'), (21333, 7154, 'seven thousand one hundred fifty-four'), (21334, 64555, 'sixty-four thousand five hundred fifty-five'), (21335, 15486, 'fifteen thousand four hundred eighty-six'), (21336, 28218, 'twenty-eight thousand two hundred eighteen'), (21337, 19153, 'nineteen thousand one hundred fifty-three'), (21338, 64241, 'sixty-four thousand two hundred forty-one'), (21339, 284, 'two hundred eighty-four'), (21340, 5998, 'five thousand nine hundred ninety-eight'), (21341, 40075, 'forty thousand seventy-five'), (21342, 1898, 'one thousand eight hundred ninety-eight'), (21343, 18262, 'eighteen thousand two hundred sixty-two'), (21344, 47969, 'forty-seven thousand nine hundred sixty-nine'), (21345, 72196, 'seventy-two thousand one hundred ninety-six'), (21346, 88168, 'eighty-eight thousand one hundred sixty-eight'), (21347, 59900, 'fifty-nine thousand nine hundred'), (21348, 68024, 'sixty-eight thousand twenty-four'), (21349, 18366, 'eighteen thousand three hundred sixty-six'), (21350, 28768, 'twenty-eight thousand seven hundred sixty-eight'), (21351, 64026, 'sixty-four thousand twenty-six'), (21352, 9538, 'nine thousand five hundred thirty-eight'), (21353, 9580, 'nine thousand five hundred eighty'), (21354, 14044, 'fourteen thousand forty-four'), (21355, 66235, 'sixty-six thousand two hundred thirty-five'), (21356, 20381, 'twenty thousand three hundred eighty-one'), (21357, 52306, 'fifty-two thousand three hundred six'), (21358, 44789, 'forty-four thousand seven hundred eighty-nine'), (21359, 90283, 'ninety thousand two hundred eighty-three'), (21360, 43261, 'forty-three thousand two hundred sixty-one'), (21361, 66986, 'sixty-six thousand nine hundred eighty-six'), (21362, 75009, 'seventy-five thousand nine'), (21363, 69385, 'sixty-nine thousand three hundred eighty-five'), (21364, 29806, 'twenty-nine thousand eight hundred six'), (21365, 68438, 'sixty-eight thousand four hundred thirty-eight'), (21366, 53306, 'fifty-three thousand three hundred six'), (21367, 166, 'one hundred sixty-six'), (21368, 75263, 'seventy-five thousand two hundred sixty-three'), (21369, 18116, 'eighteen thousand one hundred sixteen'), (21370, 23360, 'twenty-three thousand three hundred sixty'), (21371, 70223, 'seventy thousand two hundred twenty-three'), (21372, 14270, 'fourteen thousand two hundred seventy'), (21373, 62807, 'sixty-two thousand eight hundred seven'), (21374, 1479, 'one thousand four hundred seventy-nine'), (21375, 25868, 'twenty-five thousand eight hundred sixty-eight'), (21376, 45842, 'forty-five thousand eight hundred forty-two'), (21377, 38531, 'thirty-eight thousand five hundred thirty-one'), (21378, 28633, 'twenty-eight thousand six hundred thirty-three'), (21379, 89657, 'eighty-nine thousand six hundred fifty-seven'), (21380, 50729, 'fifty thousand seven hundred twenty-nine'), (21381, 6515, 'six thousand five hundred fifteen'), (21382, 25163, 'twenty-five thousand one hundred sixty-three'), (21383, 13325, 'thirteen thousand three hundred twenty-five'), (21384, 33822, 'thirty-three thousand eight hundred twenty-two'), (21385, 56555, 'fifty-six thousand five hundred fifty-five'), (21386, 86213, 'eighty-six thousand two hundred thirteen'), (21387, 20050, 'twenty thousand fifty'), (21388, 20905, 'twenty thousand nine hundred five'), (21389, 73578, 'seventy-three thousand five hundred seventy-eight'), (21390, 65196, 'sixty-five thousand one hundred ninety-six'), (21391, 98731, 'ninety-eight thousand seven hundred thirty-one'), (21392, 49755, 'forty-nine thousand seven hundred fifty-five'), (21393, 74855, 'seventy-four thousand eight hundred fifty-five'), (21394, 43913, 'forty-three thousand nine hundred thirteen'), (21395, 72070, 'seventy-two thousand seventy'), (21396, 16311, 'sixteen thousand three hundred eleven'), (21397, 79274, 'seventy-nine thousand two hundred seventy-four'), (21398, 42906, 'forty-two thousand nine hundred six'), (21399, 53052, 'fifty-three thousand fifty-two'), (21400, 87970, 'eighty-seven thousand nine hundred seventy'), (21401, 71868, 'seventy-one thousand eight hundred sixty-eight'), (21402, 23882, 'twenty-three thousand eight hundred eighty-two'), (21403, 59125, 'fifty-nine thousand one hundred twenty-five'), (21404, 90598, 'ninety thousand five hundred ninety-eight'), (21405, 55700, 'fifty-five thousand seven hundred'), (21406, 98865, 'ninety-eight thousand eight hundred sixty-five'), (21407, 99734, 'ninety-nine thousand seven hundred thirty-four'), (21408, 35660, 'thirty-five thousand six hundred sixty'), (21409, 96579, 'ninety-six thousand five hundred seventy-nine'), (21410, 97555, 'ninety-seven thousand five hundred fifty-five'), (21411, 10380, 'ten thousand three hundred eighty'), (21412, 57470, 'fifty-seven thousand four hundred seventy'), (21413, 37730, 'thirty-seven thousand seven hundred thirty'), (21414, 49065, 'forty-nine thousand sixty-five'), (21415, 87986, 'eighty-seven thousand nine hundred eighty-six'), (21416, 11150, 'eleven thousand one hundred fifty'), (21417, 34808, 'thirty-four thousand eight hundred eight'), (21418, 74280, 'seventy-four thousand two hundred eighty'), (21419, 51963, 'fifty-one thousand nine hundred sixty-three'), (21420, 42638, 'forty-two thousand six hundred thirty-eight'), (21421, 83882, 'eighty-three thousand eight hundred eighty-two'), (21422, 55078, 'fifty-five thousand seventy-eight'), (21423, 22566, 'twenty-two thousand five hundred sixty-six'), (21424, 18029, 'eighteen thousand twenty-nine'), (21425, 32124, 'thirty-two thousand one hundred twenty-four'), (21426, 94122, 'ninety-four thousand one hundred twenty-two'), (21427, 57186, 'fifty-seven thousand one hundred eighty-six'), (21428, 93900, 'ninety-three thousand nine hundred'), (21429, 58253, 'fifty-eight thousand two hundred fifty-three'), (21430, 90206, 'ninety thousand two hundred six'), (21431, 71120, 'seventy-one thousand one hundred twenty'), (21432, 61687, 'sixty-one thousand six hundred eighty-seven'), (21433, 57180, 'fifty-seven thousand one hundred eighty'), (21434, 59545, 'fifty-nine thousand five hundred forty-five'), (21435, 85553, 'eighty-five thousand five hundred fifty-three'), (21436, 31645, 'thirty-one thousand six hundred forty-five'), (21437, 97301, 'ninety-seven thousand three hundred one'), (21438, 39198, 'thirty-nine thousand one hundred ninety-eight'), (21439, 50337, 'fifty thousand three hundred thirty-seven'), (21440, 51918, 'fifty-one thousand nine hundred eighteen'), (21441, 2819, 'two thousand eight hundred nineteen'), (21442, 44434, 'forty-four thousand four hundred thirty-four'), (21443, 45954, 'forty-five thousand nine hundred fifty-four'), (21444, 73117, 'seventy-three thousand one hundred seventeen'), (21445, 86892, 'eighty-six thousand eight hundred ninety-two'), (21446, 1546, 'one thousand five hundred forty-six'), (21447, 85983, 'eighty-five thousand nine hundred eighty-three'), (21448, 45096, 'forty-five thousand ninety-six'), (21449, 38385, 'thirty-eight thousand three hundred eighty-five'), (21450, 89218, 'eighty-nine thousand two hundred eighteen'), (21451, 77057, 'seventy-seven thousand fifty-seven'), (21452, 97983, 'ninety-seven thousand nine hundred eighty-three'), (21453, 67145, 'sixty-seven thousand one hundred forty-five'), (21454, 80510, 'eighty thousand five hundred ten'), (21455, 86018, 'eighty-six thousand eighteen'), (21456, 81518, 'eighty-one thousand five hundred eighteen'), (21457, 54371, 'fifty-four thousand three hundred seventy-one'), (21458, 93231, 'ninety-three thousand two hundred thirty-one'), (21459, 63953, 'sixty-three thousand nine hundred fifty-three'), (21460, 17209, 'seventeen thousand two hundred nine'), (21461, 90362, 'ninety thousand three hundred sixty-two'), (21462, 47282, 'forty-seven thousand two hundred eighty-two'), (21463, 83240, 'eighty-three thousand two hundred forty'), (21464, 30838, 'thirty thousand eight hundred thirty-eight'), (21465, 14411, 'fourteen thousand four hundred eleven'), (21466, 7401, 'seven thousand four hundred one'), (21467, 59627, 'fifty-nine thousand six hundred twenty-seven'), (21468, 51807, 'fifty-one thousand eight hundred seven'), (21469, 81946, 'eighty-one thousand nine hundred forty-six'), (21470, 67830, 'sixty-seven thousand eight hundred thirty'), (21471, 63413, 'sixty-three thousand four hundred thirteen'), (21472, 47127, 'forty-seven thousand one hundred twenty-seven'), (21473, 83482, 'eighty-three thousand four hundred eighty-two'), (21474, 94895, 'ninety-four thousand eight hundred ninety-five'), (21475, 303, 'three hundred three'), (21476, 9602, 'nine thousand six hundred two'), (21477, 3700, 'three thousand seven hundred'), (21478, 70204, 'seventy thousand two hundred four'), (21479, 30340, 'thirty thousand three hundred forty'), (21480, 58741, 'fifty-eight thousand seven hundred forty-one'), (21481, 9414, 'nine thousand four hundred fourteen'), (21482, 20273, 'twenty thousand two hundred seventy-three'), (21483, 34814, 'thirty-four thousand eight hundred fourteen'), (21484, 18909, 'eighteen thousand nine hundred nine'), (21485, 7279, 'seven thousand two hundred seventy-nine'), (21486, 11667, 'eleven thousand six hundred sixty-seven'), (21487, 54898, 'fifty-four thousand eight hundred ninety-eight'), (21488, 74597, 'seventy-four thousand five hundred ninety-seven'), (21489, 60445, 'sixty thousand four hundred forty-five'), (21490, 53461, 'fifty-three thousand four hundred sixty-one'), (21491, 63266, 'sixty-three thousand two hundred sixty-six'), (21492, 52471, 'fifty-two thousand four hundred seventy-one'), (21493, 97454, 'ninety-seven thousand four hundred fifty-four'), (21494, 40920, 'forty thousand nine hundred twenty'), (21495, 83251, 'eighty-three thousand two hundred fifty-one'), (21496, 295, 'two hundred ninety-five'), (21497, 40824, 'forty thousand eight hundred twenty-four'), (21498, 94697, 'ninety-four thousand six hundred ninety-seven'), (21499, 8574, 'eight thousand five hundred seventy-four'), (21500, 49587, 'forty-nine thousand five hundred eighty-seven'), (21501, 38914, 'thirty-eight thousand nine hundred fourteen'), (21502, 98344, 'ninety-eight thousand three hundred forty-four'), (21503, 63146, 'sixty-three thousand one hundred forty-six'), (21504, 74695, 'seventy-four thousand six hundred ninety-five'), (21505, 80843, 'eighty thousand eight hundred forty-three'), (21506, 32987, 'thirty-two thousand nine hundred eighty-seven'), (21507, 15762, 'fifteen thousand seven hundred sixty-two'), (21508, 45077, 'forty-five thousand seventy-seven'), (21509, 59624, 'fifty-nine thousand six hundred twenty-four'), (21510, 18342, 'eighteen thousand three hundred forty-two'), (21511, 95890, 'ninety-five thousand eight hundred ninety'), (21512, 89234, 'eighty-nine thousand two hundred thirty-four'), (21513, 44716, 'forty-four thousand seven hundred sixteen'), (21514, 4542, 'four thousand five hundred forty-two'), (21515, 82616, 'eighty-two thousand six hundred sixteen'), (21516, 57197, 'fifty-seven thousand one hundred ninety-seven'), (21517, 17675, 'seventeen thousand six hundred seventy-five'), (21518, 70653, 'seventy thousand six hundred fifty-three'), (21519, 96781, 'ninety-six thousand seven hundred eighty-one'), (21520, 51478, 'fifty-one thousand four hundred seventy-eight'), (21521, 20295, 'twenty thousand two hundred ninety-five'), (21522, 97421, 'ninety-seven thousand four hundred twenty-one'), (21523, 52905, 'fifty-two thousand nine hundred five'), (21524, 30670, 'thirty thousand six hundred seventy'), (21525, 6862, 'six thousand eight hundred sixty-two'), (21526, 37099, 'thirty-seven thousand ninety-nine'), (21527, 5196, 'five thousand one hundred ninety-six'), (21528, 13272, 'thirteen thousand two hundred seventy-two'), (21529, 15139, 'fifteen thousand one hundred thirty-nine'), (21530, 49514, 'forty-nine thousand five hundred fourteen'), (21531, 37737, 'thirty-seven thousand seven hundred thirty-seven'), (21532, 23749, 'twenty-three thousand seven hundred forty-nine'), (21533, 97539, 'ninety-seven thousand five hundred thirty-nine'), (21534, 91772, 'ninety-one thousand seven hundred seventy-two'), (21535, 73126, 'seventy-three thousand one hundred twenty-six'), (21536, 86589, 'eighty-six thousand five hundred eighty-nine'), (21537, 96126, 'ninety-six thousand one hundred twenty-six'), (21538, 84447, 'eighty-four thousand four hundred forty-seven'), (21539, 72310, 'seventy-two thousand three hundred ten'), (21540, 18829, 'eighteen thousand eight hundred twenty-nine'), (21541, 19148, 'nineteen thousand one hundred forty-eight'), (21542, 97257, 'ninety-seven thousand two hundred fifty-seven'), (21543, 98677, 'ninety-eight thousand six hundred seventy-seven'), (21544, 29769, 'twenty-nine thousand seven hundred sixty-nine'), (21545, 54671, 'fifty-four thousand six hundred seventy-one'), (21546, 18598, 'eighteen thousand five hundred ninety-eight'), (21547, 53259, 'fifty-three thousand two hundred fifty-nine'), (21548, 26847, 'twenty-six thousand eight hundred forty-seven'), (21549, 8886, 'eight thousand eight hundred eighty-six'), (21550, 99129, 'ninety-nine thousand one hundred twenty-nine'), (21551, 74547, 'seventy-four thousand five hundred forty-seven'), (21552, 48185, 'forty-eight thousand one hundred eighty-five'), (21553, 73522, 'seventy-three thousand five hundred twenty-two'), (21554, 88478, 'eighty-eight thousand four hundred seventy-eight'), (21555, 61341, 'sixty-one thousand three hundred forty-one'), (21556, 76056, 'seventy-six thousand fifty-six'), (21557, 82915, 'eighty-two thousand nine hundred fifteen'), (21558, 89760, 'eighty-nine thousand seven hundred sixty'), (21559, 86237, 'eighty-six thousand two hundred thirty-seven'), (21560, 42146, 'forty-two thousand one hundred forty-six'), (21561, 56689, 'fifty-six thousand six hundred eighty-nine'), (21562, 13458, 'thirteen thousand four hundred fifty-eight'), (21563, 66809, 'sixty-six thousand eight hundred nine'), (21564, 59628, 'fifty-nine thousand six hundred twenty-eight'), (21565, 4091, 'four thousand ninety-one'), (21566, 6728, 'six thousand seven hundred twenty-eight'), (21567, 56263, 'fifty-six thousand two hundred sixty-three'), (21568, 64969, 'sixty-four thousand nine hundred sixty-nine'), (21569, 59894, 'fifty-nine thousand eight hundred ninety-four'), (21570, 34055, 'thirty-four thousand fifty-five'), (21571, 60244, 'sixty thousand two hundred forty-four'), (21572, 39364, 'thirty-nine thousand three hundred sixty-four'), (21573, 10139, 'ten thousand one hundred thirty-nine'), (21574, 87016, 'eighty-seven thousand sixteen'), (21575, 86302, 'eighty-six thousand three hundred two'), (21576, 71826, 'seventy-one thousand eight hundred twenty-six'), (21577, 72801, 'seventy-two thousand eight hundred one'), (21578, 88955, 'eighty-eight thousand nine hundred fifty-five'), (21579, 47171, 'forty-seven thousand one hundred seventy-one'), (21580, 16583, 'sixteen thousand five hundred eighty-three'), (21581, 12476, 'twelve thousand four hundred seventy-six'), (21582, 73586, 'seventy-three thousand five hundred eighty-six'), (21583, 69546, 'sixty-nine thousand five hundred forty-six'), (21584, 67841, 'sixty-seven thousand eight hundred forty-one'), (21585, 71758, 'seventy-one thousand seven hundred fifty-eight'), (21586, 96169, 'ninety-six thousand one hundred sixty-nine'), (21587, 25453, 'twenty-five thousand four hundred fifty-three'), (21588, 19691, 'nineteen thousand six hundred ninety-one'), (21589, 66236, 'sixty-six thousand two hundred thirty-six'), (21590, 48160, 'forty-eight thousand one hundred sixty'), (21591, 88173, 'eighty-eight thousand one hundred seventy-three'), (21592, 64755, 'sixty-four thousand seven hundred fifty-five'), (21593, 81286, 'eighty-one thousand two hundred eighty-six'), (21594, 68945, 'sixty-eight thousand nine hundred forty-five'), (21595, 27970, 'twenty-seven thousand nine hundred seventy'), (21596, 18679, 'eighteen thousand six hundred seventy-nine'), (21597, 35565, 'thirty-five thousand five hundred sixty-five'), (21598, 30835, 'thirty thousand eight hundred thirty-five'), (21599, 35010, 'thirty-five thousand ten'), (21600, 85539, 'eighty-five thousand five hundred thirty-nine'), (21601, 70412, 'seventy thousand four hundred twelve'), (21602, 21032, 'twenty-one thousand thirty-two'), (21603, 57223, 'fifty-seven thousand two hundred twenty-three'), (21604, 60443, 'sixty thousand four hundred forty-three'), (21605, 85621, 'eighty-five thousand six hundred twenty-one'), (21606, 19692, 'nineteen thousand six hundred ninety-two'), (21607, 54266, 'fifty-four thousand two hundred sixty-six'), (21608, 97028, 'ninety-seven thousand twenty-eight'), (21609, 4670, 'four thousand six hundred seventy'), (21610, 98178, 'ninety-eight thousand one hundred seventy-eight'), (21611, 98359, 'ninety-eight thousand three hundred fifty-nine'), (21612, 61961, 'sixty-one thousand nine hundred sixty-one'), (21613, 9739, 'nine thousand seven hundred thirty-nine'), (21614, 29973, 'twenty-nine thousand nine hundred seventy-three'), (21615, 35991, 'thirty-five thousand nine hundred ninety-one'), (21616, 28889, 'twenty-eight thousand eight hundred eighty-nine'), (21617, 55720, 'fifty-five thousand seven hundred twenty'), (21618, 33435, 'thirty-three thousand four hundred thirty-five'), (21619, 37358, 'thirty-seven thousand three hundred fifty-eight'), (21620, 54114, 'fifty-four thousand one hundred fourteen'), (21621, 43990, 'forty-three thousand nine hundred ninety'), (21622, 66541, 'sixty-six thousand five hundred forty-one'), (21623, 87493, 'eighty-seven thousand four hundred ninety-three'), (21624, 55828, 'fifty-five thousand eight hundred twenty-eight'), (21625, 77336, 'seventy-seven thousand three hundred thirty-six'), (21626, 76885, 'seventy-six thousand eight hundred eighty-five'), (21627, 94799, 'ninety-four thousand seven hundred ninety-nine'), (21628, 73560, 'seventy-three thousand five hundred sixty'), (21629, 24910, 'twenty-four thousand nine hundred ten'), (21630, 51904, 'fifty-one thousand nine hundred four'), (21631, 78312, 'seventy-eight thousand three hundred twelve'), (21632, 80111, 'eighty thousand one hundred eleven'), (21633, 47097, 'forty-seven thousand ninety-seven'), (21634, 58822, 'fifty-eight thousand eight hundred twenty-two'), (21635, 94797, 'ninety-four thousand seven hundred ninety-seven'), (21636, 41647, 'forty-one thousand six hundred forty-seven'), (21637, 67488, 'sixty-seven thousand four hundred eighty-eight'), (21638, 73991, 'seventy-three thousand nine hundred ninety-one'), (21639, 19018, 'nineteen thousand eighteen'), (21640, 46130, 'forty-six thousand one hundred thirty'), (21641, 49619, 'forty-nine thousand six hundred nineteen'), (21642, 86410, 'eighty-six thousand four hundred ten'), (21643, 98746, 'ninety-eight thousand seven hundred forty-six'), (21644, 80081, 'eighty thousand eighty-one'), (21645, 23602, 'twenty-three thousand six hundred two'), (21646, 53738, 'fifty-three thousand seven hundred thirty-eight'), (21647, 57507, 'fifty-seven thousand five hundred seven'), (21648, 91098, 'ninety-one thousand ninety-eight'), (21649, 22548, 'twenty-two thousand five hundred forty-eight'), (21650, 52949, 'fifty-two thousand nine hundred forty-nine'), (21651, 48397, 'forty-eight thousand three hundred ninety-seven'), (21652, 68520, 'sixty-eight thousand five hundred twenty'), (21653, 45764, 'forty-five thousand seven hundred sixty-four'), (21654, 89042, 'eighty-nine thousand forty-two'), (21655, 81841, 'eighty-one thousand eight hundred forty-one'), (21656, 61921, 'sixty-one thousand nine hundred twenty-one'), (21657, 33447, 'thirty-three thousand four hundred forty-seven'), (21658, 23029, 'twenty-three thousand twenty-nine'), (21659, 20860, 'twenty thousand eight hundred sixty'), (21660, 52724, 'fifty-two thousand seven hundred twenty-four'), (21661, 27520, 'twenty-seven thousand five hundred twenty'), (21662, 12842, 'twelve thousand eight hundred forty-two'), (21663, 58656, 'fifty-eight thousand six hundred fifty-six'), (21664, 99320, 'ninety-nine thousand three hundred twenty'), (21665, 80694, 'eighty thousand six hundred ninety-four'), (21666, 4065, 'four thousand sixty-five'), (21667, 68726, 'sixty-eight thousand seven hundred twenty-six'), (21668, 5703, 'five thousand seven hundred three'), (21669, 42800, 'forty-two thousand eight hundred'), (21670, 36919, 'thirty-six thousand nine hundred nineteen'), (21671, 17720, 'seventeen thousand seven hundred twenty'), (21672, 70908, 'seventy thousand nine hundred eight'), (21673, 64337, 'sixty-four thousand three hundred thirty-seven'), (21674, 27963, 'twenty-seven thousand nine hundred sixty-three'), (21675, 74404, 'seventy-four thousand four hundred four'), (21676, 62765, 'sixty-two thousand seven hundred sixty-five'), (21677, 86854, 'eighty-six thousand eight hundred fifty-four'), (21678, 20013, 'twenty thousand thirteen'), (21679, 89292, 'eighty-nine thousand two hundred ninety-two'), (21680, 17617, 'seventeen thousand six hundred seventeen'), (21681, 17373, 'seventeen thousand three hundred seventy-three'), (21682, 1565, 'one thousand five hundred sixty-five'), (21683, 66398, 'sixty-six thousand three hundred ninety-eight'), (21684, 90905, 'ninety thousand nine hundred five'), (21685, 82850, 'eighty-two thousand eight hundred fifty'), (21686, 39995, 'thirty-nine thousand nine hundred ninety-five'), (21687, 67839, 'sixty-seven thousand eight hundred thirty-nine'), (21688, 33093, 'thirty-three thousand ninety-three'), (21689, 93729, 'ninety-three thousand seven hundred twenty-nine'), (21690, 31005, 'thirty-one thousand five'), (21691, 37862, 'thirty-seven thousand eight hundred sixty-two'), (21692, 68511, 'sixty-eight thousand five hundred eleven'), (21693, 4341, 'four thousand three hundred forty-one'), (21694, 97807, 'ninety-seven thousand eight hundred seven'), (21695, 23951, 'twenty-three thousand nine hundred fifty-one'), (21696, 96296, 'ninety-six thousand two hundred ninety-six'), (21697, 5501, 'five thousand five hundred one'), (21698, 97834, 'ninety-seven thousand eight hundred thirty-four'), (21699, 45237, 'forty-five thousand two hundred thirty-seven'), (21700, 40405, 'forty thousand four hundred five'), (21701, 88857, 'eighty-eight thousand eight hundred fifty-seven'), (21702, 78751, 'seventy-eight thousand seven hundred fifty-one'), (21703, 89831, 'eighty-nine thousand eight hundred thirty-one'), (21704, 6171, 'six thousand one hundred seventy-one'), (21705, 90377, 'ninety thousand three hundred seventy-seven'), (21706, 43306, 'forty-three thousand three hundred six'), (21707, 56331, 'fifty-six thousand three hundred thirty-one'), (21708, 98964, 'ninety-eight thousand nine hundred sixty-four'), (21709, 21825, 'twenty-one thousand eight hundred twenty-five'), (21710, 69346, 'sixty-nine thousand three hundred forty-six'), (21711, 53177, 'fifty-three thousand one hundred seventy-seven'), (21712, 83594, 'eighty-three thousand five hundred ninety-four'), (21713, 60761, 'sixty thousand seven hundred sixty-one'), (21714, 42793, 'forty-two thousand seven hundred ninety-three'), (21715, 29174, 'twenty-nine thousand one hundred seventy-four'), (21716, 56968, 'fifty-six thousand nine hundred sixty-eight'), (21717, 37084, 'thirty-seven thousand eighty-four'), (21718, 61554, 'sixty-one thousand five hundred fifty-four'), (21719, 64985, 'sixty-four thousand nine hundred eighty-five'), (21720, 68130, 'sixty-eight thousand one hundred thirty'), (21721, 30015, 'thirty thousand fifteen'), (21722, 71322, 'seventy-one thousand three hundred twenty-two'), (21723, 15126, 'fifteen thousand one hundred twenty-six'), (21724, 34535, 'thirty-four thousand five hundred thirty-five'), (21725, 65715, 'sixty-five thousand seven hundred fifteen'), (21726, 79774, 'seventy-nine thousand seven hundred seventy-four'), (21727, 81942, 'eighty-one thousand nine hundred forty-two'), (21728, 94781, 'ninety-four thousand seven hundred eighty-one'), (21729, 83743, 'eighty-three thousand seven hundred forty-three'), (21730, 63858, 'sixty-three thousand eight hundred fifty-eight'), (21731, 94141, 'ninety-four thousand one hundred forty-one'), (21732, 21591, 'twenty-one thousand five hundred ninety-one'), (21733, 57667, 'fifty-seven thousand six hundred sixty-seven'), (21734, 4716, 'four thousand seven hundred sixteen'), (21735, 46004, 'forty-six thousand four'), (21736, 86420, 'eighty-six thousand four hundred twenty'), (21737, 90992, 'ninety thousand nine hundred ninety-two'), (21738, 19485, 'nineteen thousand four hundred eighty-five'), (21739, 6993, 'six thousand nine hundred ninety-three'), (21740, 25064, 'twenty-five thousand sixty-four'), (21741, 69267, 'sixty-nine thousand two hundred sixty-seven'), (21742, 28914, 'twenty-eight thousand nine hundred fourteen'), (21743, 3114, 'three thousand one hundred fourteen'), (21744, 95079, 'ninety-five thousand seventy-nine'), (21745, 27567, 'twenty-seven thousand five hundred sixty-seven'), (21746, 60035, 'sixty thousand thirty-five'), (21747, 84652, 'eighty-four thousand six hundred fifty-two'), (21748, 40368, 'forty thousand three hundred sixty-eight'), (21749, 51076, 'fifty-one thousand seventy-six'), (21750, 9999, 'nine thousand nine hundred ninety-nine'), (21751, 54720, 'fifty-four thousand seven hundred twenty'), (21752, 75631, 'seventy-five thousand six hundred thirty-one'), (21753, 15827, 'fifteen thousand eight hundred twenty-seven'), (21754, 81618, 'eighty-one thousand six hundred eighteen'), (21755, 58561, 'fifty-eight thousand five hundred sixty-one'), (21756, 97117, 'ninety-seven thousand one hundred seventeen'), (21757, 39525, 'thirty-nine thousand five hundred twenty-five'), (21758, 43578, 'forty-three thousand five hundred seventy-eight'), (21759, 94515, 'ninety-four thousand five hundred fifteen'), (21760, 72718, 'seventy-two thousand seven hundred eighteen'), (21761, 21522, 'twenty-one thousand five hundred twenty-two'), (21762, 50014, 'fifty thousand fourteen'), (21763, 51048, 'fifty-one thousand forty-eight'), (21764, 67155, 'sixty-seven thousand one hundred fifty-five'), (21765, 25380, 'twenty-five thousand three hundred eighty'), (21766, 80252, 'eighty thousand two hundred fifty-two'), (21767, 68528, 'sixty-eight thousand five hundred twenty-eight'), (21768, 73870, 'seventy-three thousand eight hundred seventy'), (21769, 51953, 'fifty-one thousand nine hundred fifty-three'), (21770, 39891, 'thirty-nine thousand eight hundred ninety-one'), (21771, 16758, 'sixteen thousand seven hundred fifty-eight'), (21772, 13352, 'thirteen thousand three hundred fifty-two'), (21773, 88431, 'eighty-eight thousand four hundred thirty-one'), (21774, 4485, 'four thousand four hundred eighty-five'), (21775, 53749, 'fifty-three thousand seven hundred forty-nine'), (21776, 14934, 'fourteen thousand nine hundred thirty-four'), (21777, 70610, 'seventy thousand six hundred ten'), (21778, 23436, 'twenty-three thousand four hundred thirty-six'), (21779, 91687, 'ninety-one thousand six hundred eighty-seven'), (21780, 82018, 'eighty-two thousand eighteen'), (21781, 98497, 'ninety-eight thousand four hundred ninety-seven'), (21782, 17450, 'seventeen thousand four hundred fifty'), (21783, 93562, 'ninety-three thousand five hundred sixty-two'), (21784, 38979, 'thirty-eight thousand nine hundred seventy-nine'), (21785, 91797, 'ninety-one thousand seven hundred ninety-seven'), (21786, 75183, 'seventy-five thousand one hundred eighty-three'), (21787, 94341, 'ninety-four thousand three hundred forty-one'), (21788, 75405, 'seventy-five thousand four hundred five'), (21789, 66537, 'sixty-six thousand five hundred thirty-seven'), (21790, 52209, 'fifty-two thousand two hundred nine'), (21791, 99338, 'ninety-nine thousand three hundred thirty-eight'), (21792, 20662, 'twenty thousand six hundred sixty-two'), (21793, 10920, 'ten thousand nine hundred twenty'), (21794, 2709, 'two thousand seven hundred nine'), (21795, 72310, 'seventy-two thousand three hundred ten'), (21796, 6286, 'six thousand two hundred eighty-six'), (21797, 87500, 'eighty-seven thousand five hundred'), (21798, 72328, 'seventy-two thousand three hundred twenty-eight'), (21799, 76075, 'seventy-six thousand seventy-five'), (21800, 8544, 'eight thousand five hundred forty-four'), (21801, 74734, 'seventy-four thousand seven hundred thirty-four'), (21802, 67474, 'sixty-seven thousand four hundred seventy-four'), (21803, 87012, 'eighty-seven thousand twelve'), (21804, 99064, 'ninety-nine thousand sixty-four'), (21805, 29634, 'twenty-nine thousand six hundred thirty-four'), (21806, 47705, 'forty-seven thousand seven hundred five'), (21807, 33764, 'thirty-three thousand seven hundred sixty-four'), (21808, 39170, 'thirty-nine thousand one hundred seventy'), (21809, 41108, 'forty-one thousand one hundred eight'), (21810, 57917, 'fifty-seven thousand nine hundred seventeen'), (21811, 8329, 'eight thousand three hundred twenty-nine'), (21812, 67604, 'sixty-seven thousand six hundred four'), (21813, 59359, 'fifty-nine thousand three hundred fifty-nine'), (21814, 17918, 'seventeen thousand nine hundred eighteen'), (21815, 87327, 'eighty-seven thousand three hundred twenty-seven'), (21816, 31095, 'thirty-one thousand ninety-five'), (21817, 27969, 'twenty-seven thousand nine hundred sixty-nine'), (21818, 69506, 'sixty-nine thousand five hundred six'), (21819, 70904, 'seventy thousand nine hundred four'), (21820, 92884, 'ninety-two thousand eight hundred eighty-four'), (21821, 32971, 'thirty-two thousand nine hundred seventy-one'), (21822, 65546, 'sixty-five thousand five hundred forty-six'), (21823, 50857, 'fifty thousand eight hundred fifty-seven'), (21824, 35789, 'thirty-five thousand seven hundred eighty-nine'), (21825, 4288, 'four thousand two hundred eighty-eight'), (21826, 90398, 'ninety thousand three hundred ninety-eight'), (21827, 42854, 'forty-two thousand eight hundred fifty-four'), (21828, 32745, 'thirty-two thousand seven hundred forty-five'), (21829, 48947, 'forty-eight thousand nine hundred forty-seven'), (21830, 92941, 'ninety-two thousand nine hundred forty-one'), (21831, 23727, 'twenty-three thousand seven hundred twenty-seven'), (21832, 68653, 'sixty-eight thousand six hundred fifty-three'), (21833, 30849, 'thirty thousand eight hundred forty-nine'), (21834, 22341, 'twenty-two thousand three hundred forty-one'), (21835, 75943, 'seventy-five thousand nine hundred forty-three'), (21836, 60832, 'sixty thousand eight hundred thirty-two'), (21837, 15379, 'fifteen thousand three hundred seventy-nine'), (21838, 9633, 'nine thousand six hundred thirty-three'), (21839, 16192, 'sixteen thousand one hundred ninety-two'), (21840, 7455, 'seven thousand four hundred fifty-five'), (21841, 93093, 'ninety-three thousand ninety-three'), (21842, 16607, 'sixteen thousand six hundred seven'), (21843, 44581, 'forty-four thousand five hundred eighty-one'), (21844, 44141, 'forty-four thousand one hundred forty-one'), (21845, 99823, 'ninety-nine thousand eight hundred twenty-three'), (21846, 79086, 'seventy-nine thousand eighty-six'), (21847, 53969, 'fifty-three thousand nine hundred sixty-nine'), (21848, 30312, 'thirty thousand three hundred twelve'), (21849, 65113, 'sixty-five thousand one hundred thirteen'), (21850, 10777, 'ten thousand seven hundred seventy-seven'), (21851, 47268, 'forty-seven thousand two hundred sixty-eight'), (21852, 84667, 'eighty-four thousand six hundred sixty-seven'), (21853, 39774, 'thirty-nine thousand seven hundred seventy-four'), (21854, 52091, 'fifty-two thousand ninety-one'), (21855, 92660, 'ninety-two thousand six hundred sixty'), (21856, 47736, 'forty-seven thousand seven hundred thirty-six'), (21857, 97166, 'ninety-seven thousand one hundred sixty-six'), (21858, 96227, 'ninety-six thousand two hundred twenty-seven'), (21859, 33203, 'thirty-three thousand two hundred three'), (21860, 33046, 'thirty-three thousand forty-six'), (21861, 30118, 'thirty thousand one hundred eighteen'), (21862, 56096, 'fifty-six thousand ninety-six'), (21863, 35752, 'thirty-five thousand seven hundred fifty-two'), (21864, 33698, 'thirty-three thousand six hundred ninety-eight'), (21865, 78295, 'seventy-eight thousand two hundred ninety-five'), (21866, 10199, 'ten thousand one hundred ninety-nine'), (21867, 39004, 'thirty-nine thousand four'), (21868, 90378, 'ninety thousand three hundred seventy-eight'), (21869, 76915, 'seventy-six thousand nine hundred fifteen'), (21870, 55631, 'fifty-five thousand six hundred thirty-one'), (21871, 74979, 'seventy-four thousand nine hundred seventy-nine'), (21872, 97225, 'ninety-seven thousand two hundred twenty-five'), (21873, 94842, 'ninety-four thousand eight hundred forty-two'), (21874, 21478, 'twenty-one thousand four hundred seventy-eight'), (21875, 4652, 'four thousand six hundred fifty-two'), (21876, 82748, 'eighty-two thousand seven hundred forty-eight'), (21877, 47630, 'forty-seven thousand six hundred thirty'), (21878, 43209, 'forty-three thousand two hundred nine'), (21879, 37997, 'thirty-seven thousand nine hundred ninety-seven'), (21880, 68641, 'sixty-eight thousand six hundred forty-one'), (21881, 56459, 'fifty-six thousand four hundred fifty-nine'), (21882, 39403, 'thirty-nine thousand four hundred three'), (21883, 57796, 'fifty-seven thousand seven hundred ninety-six'), (21884, 8415, 'eight thousand four hundred fifteen'), (21885, 47413, 'forty-seven thousand four hundred thirteen'), (21886, 38099, 'thirty-eight thousand ninety-nine'), (21887, 5485, 'five thousand four hundred eighty-five'), (21888, 91519, 'ninety-one thousand five hundred nineteen'), (21889, 55128, 'fifty-five thousand one hundred twenty-eight'), (21890, 28634, 'twenty-eight thousand six hundred thirty-four'), (21891, 76248, 'seventy-six thousand two hundred forty-eight'), (21892, 89658, 'eighty-nine thousand six hundred fifty-eight'), (21893, 91945, 'ninety-one thousand nine hundred forty-five'), (21894, 64582, 'sixty-four thousand five hundred eighty-two'), (21895, 86153, 'eighty-six thousand one hundred fifty-three'), (21896, 78557, 'seventy-eight thousand five hundred fifty-seven'), (21897, 67688, 'sixty-seven thousand six hundred eighty-eight'), (21898, 66032, 'sixty-six thousand thirty-two'), (21899, 88081, 'eighty-eight thousand eighty-one'), (21900, 36291, 'thirty-six thousand two hundred ninety-one'), (21901, 44679, 'forty-four thousand six hundred seventy-nine'), (21902, 31126, 'thirty-one thousand one hundred twenty-six'), (21903, 46538, 'forty-six thousand five hundred thirty-eight'), (21904, 77708, 'seventy-seven thousand seven hundred eight'), (21905, 54121, 'fifty-four thousand one hundred twenty-one'), (21906, 76197, 'seventy-six thousand one hundred ninety-seven'), (21907, 25453, 'twenty-five thousand four hundred fifty-three'), (21908, 22099, 'twenty-two thousand ninety-nine'), (21909, 8369, 'eight thousand three hundred sixty-nine'), (21910, 83817, 'eighty-three thousand eight hundred seventeen'), (21911, 94769, 'ninety-four thousand seven hundred sixty-nine'), (21912, 47835, 'forty-seven thousand eight hundred thirty-five'), (21913, 62419, 'sixty-two thousand four hundred nineteen'), (21914, 44499, 'forty-four thousand four hundred ninety-nine'), (21915, 86687, 'eighty-six thousand six hundred eighty-seven'), (21916, 21177, 'twenty-one thousand one hundred seventy-seven'), (21917, 40121, 'forty thousand one hundred twenty-one'), (21918, 2924, 'two thousand nine hundred twenty-four'), (21919, 77515, 'seventy-seven thousand five hundred fifteen'), (21920, 23061, 'twenty-three thousand sixty-one'), (21921, 84221, 'eighty-four thousand two hundred twenty-one'), (21922, 60092, 'sixty thousand ninety-two'), (21923, 69903, 'sixty-nine thousand nine hundred three'), (21924, 45916, 'forty-five thousand nine hundred sixteen'), (21925, 98372, 'ninety-eight thousand three hundred seventy-two'), (21926, 29329, 'twenty-nine thousand three hundred twenty-nine'), (21927, 25083, 'twenty-five thousand eighty-three'), (21928, 52504, 'fifty-two thousand five hundred four'), (21929, 65295, 'sixty-five thousand two hundred ninety-five'), (21930, 15269, 'fifteen thousand two hundred sixty-nine'), (21931, 87628, 'eighty-seven thousand six hundred twenty-eight'), (21932, 77470, 'seventy-seven thousand four hundred seventy'), (21933, 13420, 'thirteen thousand four hundred twenty'), (21934, 83703, 'eighty-three thousand seven hundred three'), (21935, 94774, 'ninety-four thousand seven hundred seventy-four'), (21936, 33634, 'thirty-three thousand six hundred thirty-four'), (21937, 25273, 'twenty-five thousand two hundred seventy-three'), (21938, 95282, 'ninety-five thousand two hundred eighty-two'), (21939, 99845, 'ninety-nine thousand eight hundred forty-five'), (21940, 17647, 'seventeen thousand six hundred forty-seven'), (21941, 44078, 'forty-four thousand seventy-eight'), (21942, 75405, 'seventy-five thousand four hundred five'), (21943, 36585, 'thirty-six thousand five hundred eighty-five'), (21944, 6473, 'six thousand four hundred seventy-three'), (21945, 76932, 'seventy-six thousand nine hundred thirty-two'), (21946, 14319, 'fourteen thousand three hundred nineteen'), (21947, 63996, 'sixty-three thousand nine hundred ninety-six'), (21948, 56276, 'fifty-six thousand two hundred seventy-six'), (21949, 22356, 'twenty-two thousand three hundred fifty-six'), (21950, 40348, 'forty thousand three hundred forty-eight'), (21951, 42079, 'forty-two thousand seventy-nine'), (21952, 80634, 'eighty thousand six hundred thirty-four'), (21953, 70610, 'seventy thousand six hundred ten'), (21954, 66029, 'sixty-six thousand twenty-nine'), (21955, 90633, 'ninety thousand six hundred thirty-three'), (21956, 65380, 'sixty-five thousand three hundred eighty'), (21957, 94403, 'ninety-four thousand four hundred three'), (21958, 46758, 'forty-six thousand seven hundred fifty-eight'), (21959, 26535, 'twenty-six thousand five hundred thirty-five'), (21960, 48445, 'forty-eight thousand four hundred forty-five'), (21961, 8762, 'eight thousand seven hundred sixty-two'), (21962, 79914, 'seventy-nine thousand nine hundred fourteen'), (21963, 56382, 'fifty-six thousand three hundred eighty-two'), (21964, 30100, 'thirty thousand one hundred'), (21965, 17523, 'seventeen thousand five hundred twenty-three'), (21966, 49851, 'forty-nine thousand eight hundred fifty-one'), (21967, 74393, 'seventy-four thousand three hundred ninety-three'), (21968, 68835, 'sixty-eight thousand eight hundred thirty-five'), (21969, 18575, 'eighteen thousand five hundred seventy-five'), (21970, 30917, 'thirty thousand nine hundred seventeen'), (21971, 44203, 'forty-four thousand two hundred three'), (21972, 11347, 'eleven thousand three hundred forty-seven'), (21973, 92433, 'ninety-two thousand four hundred thirty-three'), (21974, 60395, 'sixty thousand three hundred ninety-five'), (21975, 90768, 'ninety thousand seven hundred sixty-eight'), (21976, 82429, 'eighty-two thousand four hundred twenty-nine'), (21977, 96538, 'ninety-six thousand five hundred thirty-eight'), (21978, 5518, 'five thousand five hundred eighteen'), (21979, 26303, 'twenty-six thousand three hundred three'), (21980, 24734, 'twenty-four thousand seven hundred thirty-four'), (21981, 35227, 'thirty-five thousand two hundred twenty-seven'), (21982, 50495, 'fifty thousand four hundred ninety-five'), (21983, 93473, 'ninety-three thousand four hundred seventy-three'), (21984, 38333, 'thirty-eight thousand three hundred thirty-three'), (21985, 1973, 'one thousand nine hundred seventy-three'), (21986, 72879, 'seventy-two thousand eight hundred seventy-nine'), (21987, 28969, 'twenty-eight thousand nine hundred sixty-nine'), (21988, 55017, 'fifty-five thousand seventeen'), (21989, 78751, 'seventy-eight thousand seven hundred fifty-one'), (21990, 27198, 'twenty-seven thousand one hundred ninety-eight'), (21991, 24835, 'twenty-four thousand eight hundred thirty-five'), (21992, 98192, 'ninety-eight thousand one hundred ninety-two'), (21993, 19795, 'nineteen thousand seven hundred ninety-five'), (21994, 39801, 'thirty-nine thousand eight hundred one'), (21995, 20349, 'twenty thousand three hundred forty-nine'), (21996, 99510, 'ninety-nine thousand five hundred ten'), (21997, 48628, 'forty-eight thousand six hundred twenty-eight'), (21998, 25333, 'twenty-five thousand three hundred thirty-three'), (21999, 36647, 'thirty-six thousand six hundred forty-seven'), (22000, 66560, 'sixty-six thousand five hundred sixty'), (22001, 92593, 'ninety-two thousand five hundred ninety-three'), (22002, 60865, 'sixty thousand eight hundred sixty-five'), (22003, 26079, 'twenty-six thousand seventy-nine'), (22004, 42325, 'forty-two thousand three hundred twenty-five'), (22005, 46686, 'forty-six thousand six hundred eighty-six'), (22006, 95396, 'ninety-five thousand three hundred ninety-six'), (22007, 19469, 'nineteen thousand four hundred sixty-nine'), (22008, 31944, 'thirty-one thousand nine hundred forty-four'), (22009, 50232, 'fifty thousand two hundred thirty-two'), (22010, 87423, 'eighty-seven thousand four hundred twenty-three'), (22011, 70904, 'seventy thousand nine hundred four'), (22012, 11860, 'eleven thousand eight hundred sixty'), (22013, 24315, 'twenty-four thousand three hundred fifteen'), (22014, 21198, 'twenty-one thousand one hundred ninety-eight'), (22015, 70848, 'seventy thousand eight hundred forty-eight'), (22016, 61107, 'sixty-one thousand one hundred seven'), (22017, 76396, 'seventy-six thousand three hundred ninety-six'), (22018, 16940, 'sixteen thousand nine hundred forty'), (22019, 16966, 'sixteen thousand nine hundred sixty-six'), (22020, 63684, 'sixty-three thousand six hundred eighty-four'), (22021, 80970, 'eighty thousand nine hundred seventy'), (22022, 67388, 'sixty-seven thousand three hundred eighty-eight'), (22023, 52517, 'fifty-two thousand five hundred seventeen'), (22024, 70927, 'seventy thousand nine hundred twenty-seven'), (22025, 9211, 'nine thousand two hundred eleven'), (22026, 48190, 'forty-eight thousand one hundred ninety'), (22027, 85062, 'eighty-five thousand sixty-two'), (22028, 63665, 'sixty-three thousand six hundred sixty-five'), (22029, 31791, 'thirty-one thousand seven hundred ninety-one'), (22030, 83974, 'eighty-three thousand nine hundred seventy-four'), (22031, 38592, 'thirty-eight thousand five hundred ninety-two'), (22032, 60492, 'sixty thousand four hundred ninety-two'), (22033, 67278, 'sixty-seven thousand two hundred seventy-eight'), (22034, 40641, 'forty thousand six hundred forty-one'), (22035, 88920, 'eighty-eight thousand nine hundred twenty'), (22036, 98712, 'ninety-eight thousand seven hundred twelve'), (22037, 57458, 'fifty-seven thousand four hundred fifty-eight'), (22038, 6475, 'six thousand four hundred seventy-five'), (22039, 85301, 'eighty-five thousand three hundred one'), (22040, 70311, 'seventy thousand three hundred eleven'), (22041, 50789, 'fifty thousand seven hundred eighty-nine'), (22042, 1718, 'one thousand seven hundred eighteen'), (22043, 40565, 'forty thousand five hundred sixty-five'), (22044, 171, 'one hundred seventy-one'), (22045, 57255, 'fifty-seven thousand two hundred fifty-five'), (22046, 20144, 'twenty thousand one hundred forty-four'), (22047, 75646, 'seventy-five thousand six hundred forty-six'), (22048, 80232, 'eighty thousand two hundred thirty-two'), (22049, 20449, 'twenty thousand four hundred forty-nine'), (22050, 66904, 'sixty-six thousand nine hundred four'), (22051, 4763, 'four thousand seven hundred sixty-three'), (22052, 86920, 'eighty-six thousand nine hundred twenty'), (22053, 21218, 'twenty-one thousand two hundred eighteen'), (22054, 5994, 'five thousand nine hundred ninety-four'), (22055, 66771, 'sixty-six thousand seven hundred seventy-one'), (22056, 82911, 'eighty-two thousand nine hundred eleven'), (22057, 12842, 'twelve thousand eight hundred forty-two'), (22058, 33261, 'thirty-three thousand two hundred sixty-one'), (22059, 82572, 'eighty-two thousand five hundred seventy-two'), (22060, 12893, 'twelve thousand eight hundred ninety-three'), (22061, 4185, 'four thousand one hundred eighty-five'), (22062, 21705, 'twenty-one thousand seven hundred five'), (22063, 86817, 'eighty-six thousand eight hundred seventeen'), (22064, 76944, 'seventy-six thousand nine hundred forty-four'), (22065, 92861, 'ninety-two thousand eight hundred sixty-one'), (22066, 40617, 'forty thousand six hundred seventeen'), (22067, 78125, 'seventy-eight thousand one hundred twenty-five'), (22068, 84567, 'eighty-four thousand five hundred sixty-seven'), (22069, 54283, 'fifty-four thousand two hundred eighty-three'), (22070, 41122, 'forty-one thousand one hundred twenty-two'), (22071, 64794, 'sixty-four thousand seven hundred ninety-four'), (22072, 57904, 'fifty-seven thousand nine hundred four'), (22073, 70334, 'seventy thousand three hundred thirty-four'), (22074, 76547, 'seventy-six thousand five hundred forty-seven'), (22075, 41099, 'forty-one thousand ninety-nine'), (22076, 41852, 'forty-one thousand eight hundred fifty-two'), (22077, 95399, 'ninety-five thousand three hundred ninety-nine'), (22078, 33041, 'thirty-three thousand forty-one'), (22079, 90452, 'ninety thousand four hundred fifty-two'), (22080, 7987, 'seven thousand nine hundred eighty-seven'), (22081, 24217, 'twenty-four thousand two hundred seventeen'), (22082, 33572, 'thirty-three thousand five hundred seventy-two'), (22083, 85749, 'eighty-five thousand seven hundred forty-nine'), (22084, 86845, 'eighty-six thousand eight hundred forty-five'), (22085, 67807, 'sixty-seven thousand eight hundred seven'), (22086, 80578, 'eighty thousand five hundred seventy-eight'), (22087, 23327, 'twenty-three thousand three hundred twenty-seven'), (22088, 39754, 'thirty-nine thousand seven hundred fifty-four'), (22089, 63761, 'sixty-three thousand seven hundred sixty-one'), (22090, 2636, 'two thousand six hundred thirty-six'), (22091, 75310, 'seventy-five thousand three hundred ten'), (22092, 73297, 'seventy-three thousand two hundred ninety-seven'), (22093, 14881, 'fourteen thousand eight hundred eighty-one'), (22094, 83964, 'eighty-three thousand nine hundred sixty-four'), (22095, 51004, 'fifty-one thousand four'), (22096, 1125, 'one thousand one hundred twenty-five'), (22097, 63339, 'sixty-three thousand three hundred thirty-nine'), (22098, 32238, 'thirty-two thousand two hundred thirty-eight'), (22099, 3737, 'three thousand seven hundred thirty-seven'), (22100, 10713, 'ten thousand seven hundred thirteen'), (22101, 58180, 'fifty-eight thousand one hundred eighty'), (22102, 35979, 'thirty-five thousand nine hundred seventy-nine'), (22103, 85736, 'eighty-five thousand seven hundred thirty-six'), (22104, 33023, 'thirty-three thousand twenty-three'), (22105, 97869, 'ninety-seven thousand eight hundred sixty-nine'), (22106, 40387, 'forty thousand three hundred eighty-seven'), (22107, 61887, 'sixty-one thousand eight hundred eighty-seven'), (22108, 94088, 'ninety-four thousand eighty-eight'), (22109, 25966, 'twenty-five thousand nine hundred sixty-six'), (22110, 93545, 'ninety-three thousand five hundred forty-five'), (22111, 82846, 'eighty-two thousand eight hundred forty-six'), (22112, 20382, 'twenty thousand three hundred eighty-two'), (22113, 45079, 'forty-five thousand seventy-nine'), (22114, 73263, 'seventy-three thousand two hundred sixty-three'), (22115, 54981, 'fifty-four thousand nine hundred eighty-one'), (22116, 80869, 'eighty thousand eight hundred sixty-nine'), (22117, 29987, 'twenty-nine thousand nine hundred eighty-seven'), (22118, 18504, 'eighteen thousand five hundred four'), (22119, 75998, 'seventy-five thousand nine hundred ninety-eight'), (22120, 48009, 'forty-eight thousand nine'), (22121, 48218, 'forty-eight thousand two hundred eighteen'), (22122, 34127, 'thirty-four thousand one hundred twenty-seven'), (22123, 87784, 'eighty-seven thousand seven hundred eighty-four'), (22124, 14684, 'fourteen thousand six hundred eighty-four'), (22125, 74809, 'seventy-four thousand eight hundred nine'), (22126, 77260, 'seventy-seven thousand two hundred sixty'), (22127, 30377, 'thirty thousand three hundred seventy-seven'), (22128, 94871, 'ninety-four thousand eight hundred seventy-one'), (22129, 52853, 'fifty-two thousand eight hundred fifty-three'), (22130, 53170, 'fifty-three thousand one hundred seventy'), (22131, 79606, 'seventy-nine thousand six hundred six'), (22132, 72761, 'seventy-two thousand seven hundred sixty-one'), (22133, 82911, 'eighty-two thousand nine hundred eleven'), (22134, 70998, 'seventy thousand nine hundred ninety-eight'), (22135, 72642, 'seventy-two thousand six hundred forty-two'), (22136, 28308, 'twenty-eight thousand three hundred eight'), (22137, 74693, 'seventy-four thousand six hundred ninety-three'), (22138, 63906, 'sixty-three thousand nine hundred six'), (22139, 10514, 'ten thousand five hundred fourteen'), (22140, 91274, 'ninety-one thousand two hundred seventy-four'), (22141, 76512, 'seventy-six thousand five hundred twelve'), (22142, 11170, 'eleven thousand one hundred seventy'), (22143, 82167, 'eighty-two thousand one hundred sixty-seven'), (22144, 54032, 'fifty-four thousand thirty-two'), (22145, 42032, 'forty-two thousand thirty-two'), (22146, 89546, 'eighty-nine thousand five hundred forty-six'), (22147, 14355, 'fourteen thousand three hundred fifty-five'), (22148, 57704, 'fifty-seven thousand seven hundred four'), (22149, 75763, 'seventy-five thousand seven hundred sixty-three'), (22150, 11673, 'eleven thousand six hundred seventy-three'), (22151, 51496, 'fifty-one thousand four hundred ninety-six'), (22152, 87000, 'eighty-seven thousand'), (22153, 52696, 'fifty-two thousand six hundred ninety-six'), (22154, 3053, 'three thousand fifty-three'), (22155, 49341, 'forty-nine thousand three hundred forty-one'), (22156, 74935, 'seventy-four thousand nine hundred thirty-five'), (22157, 14683, 'fourteen thousand six hundred eighty-three'), (22158, 89605, 'eighty-nine thousand six hundred five'), (22159, 2163, 'two thousand one hundred sixty-three'), (22160, 17040, 'seventeen thousand forty'), (22161, 21273, 'twenty-one thousand two hundred seventy-three'), (22162, 22030, 'twenty-two thousand thirty'), (22163, 67304, 'sixty-seven thousand three hundred four'), (22164, 60825, 'sixty thousand eight hundred twenty-five'), (22165, 36470, 'thirty-six thousand four hundred seventy'), (22166, 24639, 'twenty-four thousand six hundred thirty-nine'), (22167, 73691, 'seventy-three thousand six hundred ninety-one'), (22168, 78480, 'seventy-eight thousand four hundred eighty'), (22169, 55117, 'fifty-five thousand one hundred seventeen'), (22170, 81330, 'eighty-one thousand three hundred thirty'), (22171, 59072, 'fifty-nine thousand seventy-two'), (22172, 84281, 'eighty-four thousand two hundred eighty-one'), (22173, 99234, 'ninety-nine thousand two hundred thirty-four'), (22174, 43945, 'forty-three thousand nine hundred forty-five'), (22175, 64726, 'sixty-four thousand seven hundred twenty-six'), (22176, 62291, 'sixty-two thousand two hundred ninety-one'), (22177, 85230, 'eighty-five thousand two hundred thirty'), (22178, 73236, 'seventy-three thousand two hundred thirty-six'), (22179, 45742, 'forty-five thousand seven hundred forty-two'), (22180, 66694, 'sixty-six thousand six hundred ninety-four'), (22181, 41176, 'forty-one thousand one hundred seventy-six'), (22182, 3667, 'three thousand six hundred sixty-seven'), (22183, 1534, 'one thousand five hundred thirty-four'), (22184, 47968, 'forty-seven thousand nine hundred sixty-eight'), (22185, 42396, 'forty-two thousand three hundred ninety-six'), (22186, 5384, 'five thousand three hundred eighty-four'), (22187, 84542, 'eighty-four thousand five hundred forty-two'), (22188, 17584, 'seventeen thousand five hundred eighty-four'), (22189, 41676, 'forty-one thousand six hundred seventy-six'), (22190, 63638, 'sixty-three thousand six hundred thirty-eight'), (22191, 32257, 'thirty-two thousand two hundred fifty-seven'), (22192, 27905, 'twenty-seven thousand nine hundred five'), (22193, 42782, 'forty-two thousand seven hundred eighty-two'), (22194, 46624, 'forty-six thousand six hundred twenty-four'), (22195, 36917, 'thirty-six thousand nine hundred seventeen'), (22196, 12763, 'twelve thousand seven hundred sixty-three'), (22197, 61144, 'sixty-one thousand one hundred forty-four'), (22198, 62532, 'sixty-two thousand five hundred thirty-two'), (22199, 81763, 'eighty-one thousand seven hundred sixty-three'), (22200, 49107, 'forty-nine thousand one hundred seven'), (22201, 28109, 'twenty-eight thousand one hundred nine'), (22202, 64467, 'sixty-four thousand four hundred sixty-seven'), (22203, 1124, 'one thousand one hundred twenty-four'), (22204, 26410, 'twenty-six thousand four hundred ten'), (22205, 43587, 'forty-three thousand five hundred eighty-seven'), (22206, 34727, 'thirty-four thousand seven hundred twenty-seven'), (22207, 95716, 'ninety-five thousand seven hundred sixteen'), (22208, 92279, 'ninety-two thousand two hundred seventy-nine'), (22209, 35788, 'thirty-five thousand seven hundred eighty-eight'), (22210, 81985, 'eighty-one thousand nine hundred eighty-five'), (22211, 7868, 'seven thousand eight hundred sixty-eight'), (22212, 71330, 'seventy-one thousand three hundred thirty'), (22213, 58023, 'fifty-eight thousand twenty-three'), (22214, 88477, 'eighty-eight thousand four hundred seventy-seven'), (22215, 64213, 'sixty-four thousand two hundred thirteen'), (22216, 80826, 'eighty thousand eight hundred twenty-six'), (22217, 16682, 'sixteen thousand six hundred eighty-two'), (22218, 80776, 'eighty thousand seven hundred seventy-six'), (22219, 53842, 'fifty-three thousand eight hundred forty-two'), (22220, 7046, 'seven thousand forty-six'), (22221, 60079, 'sixty thousand seventy-nine'), (22222, 87325, 'eighty-seven thousand three hundred twenty-five'), (22223, 44786, 'forty-four thousand seven hundred eighty-six'), (22224, 23913, 'twenty-three thousand nine hundred thirteen'), (22225, 54119, 'fifty-four thousand one hundred nineteen'), (22226, 23761, 'twenty-three thousand seven hundred sixty-one'), (22227, 12017, 'twelve thousand seventeen'), (22228, 8419, 'eight thousand four hundred nineteen'), (22229, 43363, 'forty-three thousand three hundred sixty-three'), (22230, 21331, 'twenty-one thousand three hundred thirty-one'), (22231, 79039, 'seventy-nine thousand thirty-nine'), (22232, 99062, 'ninety-nine thousand sixty-two'), (22233, 40008, 'forty thousand eight'), (22234, 51089, 'fifty-one thousand eighty-nine'), (22235, 67742, 'sixty-seven thousand seven hundred forty-two'), (22236, 62695, 'sixty-two thousand six hundred ninety-five'), (22237, 28883, 'twenty-eight thousand eight hundred eighty-three'), (22238, 85403, 'eighty-five thousand four hundred three'), (22239, 11587, 'eleven thousand five hundred eighty-seven'), (22240, 55658, 'fifty-five thousand six hundred fifty-eight'), (22241, 93458, 'ninety-three thousand four hundred fifty-eight'), (22242, 90818, 'ninety thousand eight hundred eighteen'), (22243, 30392, 'thirty thousand three hundred ninety-two'), (22244, 49103, 'forty-nine thousand one hundred three'), (22245, 63938, 'sixty-three thousand nine hundred thirty-eight'), (22246, 82730, 'eighty-two thousand seven hundred thirty'), (22247, 74486, 'seventy-four thousand four hundred eighty-six'), (22248, 48080, 'forty-eight thousand eighty'), (22249, 91120, 'ninety-one thousand one hundred twenty'), (22250, 99009, 'ninety-nine thousand nine'), (22251, 31387, 'thirty-one thousand three hundred eighty-seven'), (22252, 9844, 'nine thousand eight hundred forty-four'), (22253, 7762, 'seven thousand seven hundred sixty-two'), (22254, 76669, 'seventy-six thousand six hundred sixty-nine'), (22255, 99610, 'ninety-nine thousand six hundred ten'), (22256, 95934, 'ninety-five thousand nine hundred thirty-four'), (22257, 92261, 'ninety-two thousand two hundred sixty-one'), (22258, 2922, 'two thousand nine hundred twenty-two'), (22259, 31718, 'thirty-one thousand seven hundred eighteen'), (22260, 16480, 'sixteen thousand four hundred eighty'), (22261, 45693, 'forty-five thousand six hundred ninety-three'), (22262, 74182, 'seventy-four thousand one hundred eighty-two'), (22263, 77439, 'seventy-seven thousand four hundred thirty-nine'), (22264, 1307, 'one thousand three hundred seven'), (22265, 98301, 'ninety-eight thousand three hundred one'), (22266, 52033, 'fifty-two thousand thirty-three'), (22267, 50061, 'fifty thousand sixty-one'), (22268, 42286, 'forty-two thousand two hundred eighty-six'), (22269, 12585, 'twelve thousand five hundred eighty-five'), (22270, 95924, 'ninety-five thousand nine hundred twenty-four'), (22271, 11159, 'eleven thousand one hundred fifty-nine'), (22272, 98641, 'ninety-eight thousand six hundred forty-one'), (22273, 67024, 'sixty-seven thousand twenty-four'), (22274, 3976, 'three thousand nine hundred seventy-six'), (22275, 86312, 'eighty-six thousand three hundred twelve'), (22276, 97764, 'ninety-seven thousand seven hundred sixty-four'), (22277, 9204, 'nine thousand two hundred four'), (22278, 66999, 'sixty-six thousand nine hundred ninety-nine'), (22279, 77110, 'seventy-seven thousand one hundred ten'), (22280, 68710, 'sixty-eight thousand seven hundred ten'), (22281, 21654, 'twenty-one thousand six hundred fifty-four'), (22282, 32178, 'thirty-two thousand one hundred seventy-eight'), (22283, 50938, 'fifty thousand nine hundred thirty-eight'), (22284, 60472, 'sixty thousand four hundred seventy-two'), (22285, 57332, 'fifty-seven thousand three hundred thirty-two'), (22286, 81781, 'eighty-one thousand seven hundred eighty-one'), (22287, 46591, 'forty-six thousand five hundred ninety-one'), (22288, 61060, 'sixty-one thousand sixty'), (22289, 40000, 'forty thousand'), (22290, 17242, 'seventeen thousand two hundred forty-two'), (22291, 47359, 'forty-seven thousand three hundred fifty-nine'), (22292, 53394, 'fifty-three thousand three hundred ninety-four'), (22293, 73258, 'seventy-three thousand two hundred fifty-eight'), (22294, 37930, 'thirty-seven thousand nine hundred thirty'), (22295, 88902, 'eighty-eight thousand nine hundred two'), (22296, 23865, 'twenty-three thousand eight hundred sixty-five'), (22297, 52522, 'fifty-two thousand five hundred twenty-two'), (22298, 10986, 'ten thousand nine hundred eighty-six'), (22299, 67658, 'sixty-seven thousand six hundred fifty-eight'), (22300, 80184, 'eighty thousand one hundred eighty-four'), (22301, 59131, 'fifty-nine thousand one hundred thirty-one'), (22302, 12625, 'twelve thousand six hundred twenty-five'), (22303, 8368, 'eight thousand three hundred sixty-eight'), (22304, 10908, 'ten thousand nine hundred eight'), (22305, 20317, 'twenty thousand three hundred seventeen'), (22306, 44456, 'forty-four thousand four hundred fifty-six'), (22307, 52754, 'fifty-two thousand seven hundred fifty-four'), (22308, 51128, 'fifty-one thousand one hundred twenty-eight'), (22309, 3730, 'three thousand seven hundred thirty'), (22310, 84201, 'eighty-four thousand two hundred one'), (22311, 25468, 'twenty-five thousand four hundred sixty-eight'), (22312, 773, 'seven hundred seventy-three'), (22313, 52296, 'fifty-two thousand two hundred ninety-six'), (22314, 63724, 'sixty-three thousand seven hundred twenty-four'), (22315, 27149, 'twenty-seven thousand one hundred forty-nine'), (22316, 97401, 'ninety-seven thousand four hundred one'), (22317, 56210, 'fifty-six thousand two hundred ten'), (22318, 2715, 'two thousand seven hundred fifteen'), (22319, 35745, 'thirty-five thousand seven hundred forty-five'), (22320, 36475, 'thirty-six thousand four hundred seventy-five'), (22321, 25178, 'twenty-five thousand one hundred seventy-eight'), (22322, 82726, 'eighty-two thousand seven hundred twenty-six'), (22323, 17715, 'seventeen thousand seven hundred fifteen'), (22324, 90969, 'ninety thousand nine hundred sixty-nine'), (22325, 35633, 'thirty-five thousand six hundred thirty-three'), (22326, 70702, 'seventy thousand seven hundred two'), (22327, 83992, 'eighty-three thousand nine hundred ninety-two'), (22328, 29490, 'twenty-nine thousand four hundred ninety'), (22329, 35399, 'thirty-five thousand three hundred ninety-nine'), (22330, 85766, 'eighty-five thousand seven hundred sixty-six'), (22331, 2271, 'two thousand two hundred seventy-one'), (22332, 16685, 'sixteen thousand six hundred eighty-five'), (22333, 20762, 'twenty thousand seven hundred sixty-two'), (22334, 94064, 'ninety-four thousand sixty-four'), (22335, 84347, 'eighty-four thousand three hundred forty-seven'), (22336, 86339, 'eighty-six thousand three hundred thirty-nine'), (22337, 19130, 'nineteen thousand one hundred thirty'), (22338, 85596, 'eighty-five thousand five hundred ninety-six'), (22339, 50706, 'fifty thousand seven hundred six'), (22340, 56772, 'fifty-six thousand seven hundred seventy-two'), (22341, 52976, 'fifty-two thousand nine hundred seventy-six'), (22342, 22760, 'twenty-two thousand seven hundred sixty'), (22343, 24765, 'twenty-four thousand seven hundred sixty-five'), (22344, 97206, 'ninety-seven thousand two hundred six'), (22345, 63438, 'sixty-three thousand four hundred thirty-eight'), (22346, 72553, 'seventy-two thousand five hundred fifty-three'), (22347, 55990, 'fifty-five thousand nine hundred ninety'), (22348, 51665, 'fifty-one thousand six hundred sixty-five'), (22349, 7379, 'seven thousand three hundred seventy-nine'), (22350, 90234, 'ninety thousand two hundred thirty-four'), (22351, 69009, 'sixty-nine thousand nine'), (22352, 69078, 'sixty-nine thousand seventy-eight'), (22353, 18873, 'eighteen thousand eight hundred seventy-three'), (22354, 20351, 'twenty thousand three hundred fifty-one'), (22355, 23257, 'twenty-three thousand two hundred fifty-seven'), (22356, 47683, 'forty-seven thousand six hundred eighty-three'), (22357, 25129, 'twenty-five thousand one hundred twenty-nine'), (22358, 42392, 'forty-two thousand three hundred ninety-two'), (22359, 61533, 'sixty-one thousand five hundred thirty-three'), (22360, 74504, 'seventy-four thousand five hundred four'), (22361, 21283, 'twenty-one thousand two hundred eighty-three'), (22362, 34181, 'thirty-four thousand one hundred eighty-one'), (22363, 90907, 'ninety thousand nine hundred seven'), (22364, 20857, 'twenty thousand eight hundred fifty-seven'), (22365, 81696, 'eighty-one thousand six hundred ninety-six'), (22366, 40214, 'forty thousand two hundred fourteen'), (22367, 63976, 'sixty-three thousand nine hundred seventy-six'), (22368, 50398, 'fifty thousand three hundred ninety-eight'), (22369, 13364, 'thirteen thousand three hundred sixty-four'), (22370, 97470, 'ninety-seven thousand four hundred seventy'), (22371, 27065, 'twenty-seven thousand sixty-five'), (22372, 73598, 'seventy-three thousand five hundred ninety-eight'), (22373, 89848, 'eighty-nine thousand eight hundred forty-eight'), (22374, 42272, 'forty-two thousand two hundred seventy-two'), (22375, 60287, 'sixty thousand two hundred eighty-seven'), (22376, 3178, 'three thousand one hundred seventy-eight'), (22377, 57321, 'fifty-seven thousand three hundred twenty-one'), (22378, 78679, 'seventy-eight thousand six hundred seventy-nine'), (22379, 86227, 'eighty-six thousand two hundred twenty-seven'), (22380, 85683, 'eighty-five thousand six hundred eighty-three'), (22381, 47749, 'forty-seven thousand seven hundred forty-nine'), (22382, 1655, 'one thousand six hundred fifty-five'), (22383, 98561, 'ninety-eight thousand five hundred sixty-one'), (22384, 66277, 'sixty-six thousand two hundred seventy-seven'), (22385, 27619, 'twenty-seven thousand six hundred nineteen'), (22386, 33063, 'thirty-three thousand sixty-three'), (22387, 51934, 'fifty-one thousand nine hundred thirty-four'), (22388, 51697, 'fifty-one thousand six hundred ninety-seven'), (22389, 94067, 'ninety-four thousand sixty-seven'), (22390, 9406, 'nine thousand four hundred six'), (22391, 77419, 'seventy-seven thousand four hundred nineteen'), (22392, 51600, 'fifty-one thousand six hundred'), (22393, 68734, 'sixty-eight thousand seven hundred thirty-four'), (22394, 94698, 'ninety-four thousand six hundred ninety-eight'), (22395, 26845, 'twenty-six thousand eight hundred forty-five'), (22396, 33145, 'thirty-three thousand one hundred forty-five'), (22397, 46414, 'forty-six thousand four hundred fourteen'), (22398, 94506, 'ninety-four thousand five hundred six'), (22399, 95090, 'ninety-five thousand ninety'), (22400, 6585, 'six thousand five hundred eighty-five'), (22401, 40779, 'forty thousand seven hundred seventy-nine'), (22402, 96607, 'ninety-six thousand six hundred seven'), (22403, 64492, 'sixty-four thousand four hundred ninety-two'), (22404, 84078, 'eighty-four thousand seventy-eight'), (22405, 36908, 'thirty-six thousand nine hundred eight'), (22406, 40657, 'forty thousand six hundred fifty-seven'), (22407, 20646, 'twenty thousand six hundred forty-six'), (22408, 60510, 'sixty thousand five hundred ten'), (22409, 73961, 'seventy-three thousand nine hundred sixty-one'), (22410, 13169, 'thirteen thousand one hundred sixty-nine'), (22411, 21915, 'twenty-one thousand nine hundred fifteen'), (22412, 11303, 'eleven thousand three hundred three'), (22413, 39326, 'thirty-nine thousand three hundred twenty-six'), (22414, 5671, 'five thousand six hundred seventy-one'), (22415, 52919, 'fifty-two thousand nine hundred nineteen'), (22416, 75336, 'seventy-five thousand three hundred thirty-six'), (22417, 99578, 'ninety-nine thousand five hundred seventy-eight'), (22418, 32711, 'thirty-two thousand seven hundred eleven'), (22419, 36038, 'thirty-six thousand thirty-eight'), (22420, 6707, 'six thousand seven hundred seven'), (22421, 3678, 'three thousand six hundred seventy-eight'), (22422, 30427, 'thirty thousand four hundred twenty-seven'), (22423, 25681, 'twenty-five thousand six hundred eighty-one'), (22424, 86599, 'eighty-six thousand five hundred ninety-nine'), (22425, 80271, 'eighty thousand two hundred seventy-one'), (22426, 43175, 'forty-three thousand one hundred seventy-five'), (22427, 81706, 'eighty-one thousand seven hundred six'), (22428, 83982, 'eighty-three thousand nine hundred eighty-two'), (22429, 54881, 'fifty-four thousand eight hundred eighty-one'), (22430, 31451, 'thirty-one thousand four hundred fifty-one'), (22431, 4086, 'four thousand eighty-six'), (22432, 69995, 'sixty-nine thousand nine hundred ninety-five'), (22433, 49166, 'forty-nine thousand one hundred sixty-six'), (22434, 89482, 'eighty-nine thousand four hundred eighty-two'), (22435, 82005, 'eighty-two thousand five'), (22436, 49004, 'forty-nine thousand four'), (22437, 63147, 'sixty-three thousand one hundred forty-seven'), (22438, 80267, 'eighty thousand two hundred sixty-seven'), (22439, 50796, 'fifty thousand seven hundred ninety-six'), (22440, 75097, 'seventy-five thousand ninety-seven'), (22441, 13363, 'thirteen thousand three hundred sixty-three'), (22442, 8339, 'eight thousand three hundred thirty-nine'), (22443, 34388, 'thirty-four thousand three hundred eighty-eight'), (22444, 3952, 'three thousand nine hundred fifty-two'), (22445, 13186, 'thirteen thousand one hundred eighty-six'), (22446, 30296, 'thirty thousand two hundred ninety-six'), (22447, 31017, 'thirty-one thousand seventeen'), (22448, 17804, 'seventeen thousand eight hundred four'), (22449, 34962, 'thirty-four thousand nine hundred sixty-two'), (22450, 55189, 'fifty-five thousand one hundred eighty-nine'), (22451, 91833, 'ninety-one thousand eight hundred thirty-three'), (22452, 49688, 'forty-nine thousand six hundred eighty-eight'), (22453, 66182, 'sixty-six thousand one hundred eighty-two'), (22454, 99582, 'ninety-nine thousand five hundred eighty-two'), (22455, 86313, 'eighty-six thousand three hundred thirteen'), (22456, 35188, 'thirty-five thousand one hundred eighty-eight'), (22457, 96210, 'ninety-six thousand two hundred ten'), (22458, 95687, 'ninety-five thousand six hundred eighty-seven'), (22459, 91745, 'ninety-one thousand seven hundred forty-five'), (22460, 82713, 'eighty-two thousand seven hundred thirteen'), (22461, 46026, 'forty-six thousand twenty-six'), (22462, 96590, 'ninety-six thousand five hundred ninety'), (22463, 26335, 'twenty-six thousand three hundred thirty-five'), (22464, 73744, 'seventy-three thousand seven hundred forty-four'), (22465, 4912, 'four thousand nine hundred twelve'), (22466, 74079, 'seventy-four thousand seventy-nine'), (22467, 71283, 'seventy-one thousand two hundred eighty-three'), (22468, 82510, 'eighty-two thousand five hundred ten'), (22469, 36400, 'thirty-six thousand four hundred'), (22470, 24584, 'twenty-four thousand five hundred eighty-four'), (22471, 62690, 'sixty-two thousand six hundred ninety'), (22472, 74182, 'seventy-four thousand one hundred eighty-two'), (22473, 59501, 'fifty-nine thousand five hundred one'), (22474, 73906, 'seventy-three thousand nine hundred six'), (22475, 84201, 'eighty-four thousand two hundred one'), (22476, 19013, 'nineteen thousand thirteen'), (22477, 21821, 'twenty-one thousand eight hundred twenty-one'), (22478, 47711, 'forty-seven thousand seven hundred eleven'), (22479, 10009, 'ten thousand nine'), (22480, 23909, 'twenty-three thousand nine hundred nine'), (22481, 39934, 'thirty-nine thousand nine hundred thirty-four'), (22482, 76259, 'seventy-six thousand two hundred fifty-nine'), (22483, 26065, 'twenty-six thousand sixty-five'), (22484, 39543, 'thirty-nine thousand five hundred forty-three'), (22485, 49427, 'forty-nine thousand four hundred twenty-seven'), (22486, 91481, 'ninety-one thousand four hundred eighty-one'), (22487, 51955, 'fifty-one thousand nine hundred fifty-five'), (22488, 73018, 'seventy-three thousand eighteen'), (22489, 42658, 'forty-two thousand six hundred fifty-eight'), (22490, 1012, 'one thousand twelve'), (22491, 66699, 'sixty-six thousand six hundred ninety-nine'), (22492, 99683, 'ninety-nine thousand six hundred eighty-three'), (22493, 26364, 'twenty-six thousand three hundred sixty-four'), (22494, 14630, 'fourteen thousand six hundred thirty'), (22495, 97375, 'ninety-seven thousand three hundred seventy-five'), (22496, 97080, 'ninety-seven thousand eighty'), (22497, 2373, 'two thousand three hundred seventy-three'), (22498, 41211, 'forty-one thousand two hundred eleven'), (22499, 29659, 'twenty-nine thousand six hundred fifty-nine'), (22500, 6419, 'six thousand four hundred nineteen'), (22501, 17338, 'seventeen thousand three hundred thirty-eight'), (22502, 76924, 'seventy-six thousand nine hundred twenty-four'), (22503, 19371, 'nineteen thousand three hundred seventy-one'), (22504, 20685, 'twenty thousand six hundred eighty-five'), (22505, 36069, 'thirty-six thousand sixty-nine'), (22506, 73981, 'seventy-three thousand nine hundred eighty-one'), (22507, 13129, 'thirteen thousand one hundred twenty-nine'), (22508, 88970, 'eighty-eight thousand nine hundred seventy'), (22509, 82916, 'eighty-two thousand nine hundred sixteen'), (22510, 38938, 'thirty-eight thousand nine hundred thirty-eight'), (22511, 94741, 'ninety-four thousand seven hundred forty-one'), (22512, 38227, 'thirty-eight thousand two hundred twenty-seven'), (22513, 68239, 'sixty-eight thousand two hundred thirty-nine'), (22514, 81326, 'eighty-one thousand three hundred twenty-six'), (22515, 94805, 'ninety-four thousand eight hundred five'), (22516, 6101, 'six thousand one hundred one'), (22517, 14592, 'fourteen thousand five hundred ninety-two'), (22518, 99163, 'ninety-nine thousand one hundred sixty-three'), (22519, 18708, 'eighteen thousand seven hundred eight'), (22520, 51549, 'fifty-one thousand five hundred forty-nine'), (22521, 56196, 'fifty-six thousand one hundred ninety-six'), (22522, 13361, 'thirteen thousand three hundred sixty-one'), (22523, 821, 'eight hundred twenty-one'), (22524, 67528, 'sixty-seven thousand five hundred twenty-eight'), (22525, 44933, 'forty-four thousand nine hundred thirty-three'), (22526, 54841, 'fifty-four thousand eight hundred forty-one'), (22527, 77904, 'seventy-seven thousand nine hundred four'), (22528, 12606, 'twelve thousand six hundred six'), (22529, 14951, 'fourteen thousand nine hundred fifty-one'), (22530, 62014, 'sixty-two thousand fourteen'), (22531, 14627, 'fourteen thousand six hundred twenty-seven'), (22532, 99277, 'ninety-nine thousand two hundred seventy-seven'), (22533, 69933, 'sixty-nine thousand nine hundred thirty-three'), (22534, 58272, 'fifty-eight thousand two hundred seventy-two'), (22535, 47217, 'forty-seven thousand two hundred seventeen'), (22536, 78599, 'seventy-eight thousand five hundred ninety-nine'), (22537, 10699, 'ten thousand six hundred ninety-nine'), (22538, 60801, 'sixty thousand eight hundred one'), (22539, 23594, 'twenty-three thousand five hundred ninety-four'), (22540, 91715, 'ninety-one thousand seven hundred fifteen'), (22541, 10879, 'ten thousand eight hundred seventy-nine'), (22542, 53661, 'fifty-three thousand six hundred sixty-one'), (22543, 8007, 'eight thousand seven'), (22544, 54731, 'fifty-four thousand seven hundred thirty-one'), (22545, 38540, 'thirty-eight thousand five hundred forty'), (22546, 1512, 'one thousand five hundred twelve'), (22547, 5898, 'five thousand eight hundred ninety-eight'), (22548, 79462, 'seventy-nine thousand four hundred sixty-two'), (22549, 68885, 'sixty-eight thousand eight hundred eighty-five'), (22550, 9204, 'nine thousand two hundred four'), (22551, 40727, 'forty thousand seven hundred twenty-seven'), (22552, 63189, 'sixty-three thousand one hundred eighty-nine'), (22553, 8225, 'eight thousand two hundred twenty-five'), (22554, 10054, 'ten thousand fifty-four'), (22555, 91146, 'ninety-one thousand one hundred forty-six'), (22556, 15561, 'fifteen thousand five hundred sixty-one'), (22557, 99349, 'ninety-nine thousand three hundred forty-nine'), (22558, 13638, 'thirteen thousand six hundred thirty-eight'), (22559, 77478, 'seventy-seven thousand four hundred seventy-eight'), (22560, 70421, 'seventy thousand four hundred twenty-one'), (22561, 63773, 'sixty-three thousand seven hundred seventy-three'), (22562, 21984, 'twenty-one thousand nine hundred eighty-four'), (22563, 26207, 'twenty-six thousand two hundred seven'), (22564, 57262, 'fifty-seven thousand two hundred sixty-two'), (22565, 14062, 'fourteen thousand sixty-two'), (22566, 54079, 'fifty-four thousand seventy-nine'), (22567, 67119, 'sixty-seven thousand one hundred nineteen'), (22568, 52911, 'fifty-two thousand nine hundred eleven'), (22569, 68926, 'sixty-eight thousand nine hundred twenty-six'), (22570, 20437, 'twenty thousand four hundred thirty-seven'), (22571, 10588, 'ten thousand five hundred eighty-eight'), (22572, 60399, 'sixty thousand three hundred ninety-nine'), (22573, 45134, 'forty-five thousand one hundred thirty-four'), (22574, 38698, 'thirty-eight thousand six hundred ninety-eight'), (22575, 89621, 'eighty-nine thousand six hundred twenty-one'), (22576, 13891, 'thirteen thousand eight hundred ninety-one'), (22577, 42727, 'forty-two thousand seven hundred twenty-seven'), (22578, 17700, 'seventeen thousand seven hundred'), (22579, 78109, 'seventy-eight thousand one hundred nine'), (22580, 13448, 'thirteen thousand four hundred forty-eight'), (22581, 80599, 'eighty thousand five hundred ninety-nine'), (22582, 85955, 'eighty-five thousand nine hundred fifty-five'), (22583, 47326, 'forty-seven thousand three hundred twenty-six'), (22584, 95948, 'ninety-five thousand nine hundred forty-eight'), (22585, 80920, 'eighty thousand nine hundred twenty'), (22586, 71642, 'seventy-one thousand six hundred forty-two'), (22587, 35628, 'thirty-five thousand six hundred twenty-eight'), (22588, 63218, 'sixty-three thousand two hundred eighteen'), (22589, 88825, 'eighty-eight thousand eight hundred twenty-five'), (22590, 62320, 'sixty-two thousand three hundred twenty'), (22591, 46363, 'forty-six thousand three hundred sixty-three'), (22592, 14135, 'fourteen thousand one hundred thirty-five'), (22593, 34076, 'thirty-four thousand seventy-six'), (22594, 53105, 'fifty-three thousand one hundred five'), (22595, 31265, 'thirty-one thousand two hundred sixty-five'), (22596, 86163, 'eighty-six thousand one hundred sixty-three'), (22597, 68260, 'sixty-eight thousand two hundred sixty'), (22598, 59241, 'fifty-nine thousand two hundred forty-one'), (22599, 68074, 'sixty-eight thousand seventy-four'), (22600, 96699, 'ninety-six thousand six hundred ninety-nine'), (22601, 29323, 'twenty-nine thousand three hundred twenty-three'), (22602, 69624, 'sixty-nine thousand six hundred twenty-four'), (22603, 68641, 'sixty-eight thousand six hundred forty-one'), (22604, 10943, 'ten thousand nine hundred forty-three'), (22605, 86206, 'eighty-six thousand two hundred six'), (22606, 17687, 'seventeen thousand six hundred eighty-seven'), (22607, 69124, 'sixty-nine thousand one hundred twenty-four'), (22608, 37262, 'thirty-seven thousand two hundred sixty-two'), (22609, 76436, 'seventy-six thousand four hundred thirty-six'), (22610, 8463, 'eight thousand four hundred sixty-three'), (22611, 77467, 'seventy-seven thousand four hundred sixty-seven'), (22612, 8572, 'eight thousand five hundred seventy-two'), (22613, 68056, 'sixty-eight thousand fifty-six'), (22614, 93635, 'ninety-three thousand six hundred thirty-five'), (22615, 54697, 'fifty-four thousand six hundred ninety-seven'), (22616, 21655, 'twenty-one thousand six hundred fifty-five'), (22617, 99454, 'ninety-nine thousand four hundred fifty-four'), (22618, 48855, 'forty-eight thousand eight hundred fifty-five'), (22619, 86744, 'eighty-six thousand seven hundred forty-four'), (22620, 10357, 'ten thousand three hundred fifty-seven'), (22621, 37591, 'thirty-seven thousand five hundred ninety-one'), (22622, 44149, 'forty-four thousand one hundred forty-nine'), (22623, 13913, 'thirteen thousand nine hundred thirteen'), (22624, 38012, 'thirty-eight thousand twelve'), (22625, 77186, 'seventy-seven thousand one hundred eighty-six'), (22626, 38275, 'thirty-eight thousand two hundred seventy-five'), (22627, 82596, 'eighty-two thousand five hundred ninety-six'), (22628, 31863, 'thirty-one thousand eight hundred sixty-three'), (22629, 59071, 'fifty-nine thousand seventy-one'), (22630, 17881, 'seventeen thousand eight hundred eighty-one'), (22631, 67570, 'sixty-seven thousand five hundred seventy'), (22632, 43826, 'forty-three thousand eight hundred twenty-six'), (22633, 83633, 'eighty-three thousand six hundred thirty-three'), (22634, 31002, 'thirty-one thousand two'), (22635, 60684, 'sixty thousand six hundred eighty-four'), (22636, 28923, 'twenty-eight thousand nine hundred twenty-three'), (22637, 22175, 'twenty-two thousand one hundred seventy-five'), (22638, 89221, 'eighty-nine thousand two hundred twenty-one'), (22639, 63361, 'sixty-three thousand three hundred sixty-one'), (22640, 58237, 'fifty-eight thousand two hundred thirty-seven'), (22641, 35054, 'thirty-five thousand fifty-four'), (22642, 1424, 'one thousand four hundred twenty-four'), (22643, 43666, 'forty-three thousand six hundred sixty-six'), (22644, 40409, 'forty thousand four hundred nine'), (22645, 33682, 'thirty-three thousand six hundred eighty-two'), (22646, 65654, 'sixty-five thousand six hundred fifty-four'), (22647, 38851, 'thirty-eight thousand eight hundred fifty-one'), (22648, 90697, 'ninety thousand six hundred ninety-seven'), (22649, 55186, 'fifty-five thousand one hundred eighty-six'), (22650, 47660, 'forty-seven thousand six hundred sixty'), (22651, 73333, 'seventy-three thousand three hundred thirty-three'), (22652, 80656, 'eighty thousand six hundred fifty-six'), (22653, 90456, 'ninety thousand four hundred fifty-six'), (22654, 80206, 'eighty thousand two hundred six'), (22655, 13317, 'thirteen thousand three hundred seventeen'), (22656, 92130, 'ninety-two thousand one hundred thirty'), (22657, 69691, 'sixty-nine thousand six hundred ninety-one'), (22658, 49643, 'forty-nine thousand six hundred forty-three'), (22659, 72908, 'seventy-two thousand nine hundred eight'), (22660, 17863, 'seventeen thousand eight hundred sixty-three'), (22661, 56125, 'fifty-six thousand one hundred twenty-five'), (22662, 56476, 'fifty-six thousand four hundred seventy-six'), (22663, 47629, 'forty-seven thousand six hundred twenty-nine'), (22664, 95842, 'ninety-five thousand eight hundred forty-two'), (22665, 30306, 'thirty thousand three hundred six'), (22666, 73791, 'seventy-three thousand seven hundred ninety-one'), (22667, 93124, 'ninety-three thousand one hundred twenty-four'), (22668, 72960, 'seventy-two thousand nine hundred sixty'), (22669, 39190, 'thirty-nine thousand one hundred ninety'), (22670, 31214, 'thirty-one thousand two hundred fourteen'), (22671, 24897, 'twenty-four thousand eight hundred ninety-seven'), (22672, 36517, 'thirty-six thousand five hundred seventeen'), (22673, 1381, 'one thousand three hundred eighty-one'), (22674, 81193, 'eighty-one thousand one hundred ninety-three'), (22675, 49723, 'forty-nine thousand seven hundred twenty-three'), (22676, 58089, 'fifty-eight thousand eighty-nine'), (22677, 42656, 'forty-two thousand six hundred fifty-six'), (22678, 53931, 'fifty-three thousand nine hundred thirty-one'), (22679, 98745, 'ninety-eight thousand seven hundred forty-five'), (22680, 70780, 'seventy thousand seven hundred eighty'), (22681, 42708, 'forty-two thousand seven hundred eight'), (22682, 94266, 'ninety-four thousand two hundred sixty-six'), (22683, 35797, 'thirty-five thousand seven hundred ninety-seven'), (22684, 94661, 'ninety-four thousand six hundred sixty-one'), (22685, 725, 'seven hundred twenty-five'), (22686, 66150, 'sixty-six thousand one hundred fifty'), (22687, 47855, 'forty-seven thousand eight hundred fifty-five'), (22688, 51487, 'fifty-one thousand four hundred eighty-seven'), (22689, 85336, 'eighty-five thousand three hundred thirty-six'), (22690, 58295, 'fifty-eight thousand two hundred ninety-five'), (22691, 79736, 'seventy-nine thousand seven hundred thirty-six'), (22692, 62021, 'sixty-two thousand twenty-one'), (22693, 47243, 'forty-seven thousand two hundred forty-three'), (22694, 71839, 'seventy-one thousand eight hundred thirty-nine'), (22695, 80541, 'eighty thousand five hundred forty-one'), (22696, 55725, 'fifty-five thousand seven hundred twenty-five'), (22697, 12857, 'twelve thousand eight hundred fifty-seven'), (22698, 80649, 'eighty thousand six hundred forty-nine'), (22699, 24997, 'twenty-four thousand nine hundred ninety-seven'), (22700, 56304, 'fifty-six thousand three hundred four'), (22701, 5252, 'five thousand two hundred fifty-two'), (22702, 43552, 'forty-three thousand five hundred fifty-two'), (22703, 5, 'five'), (22704, 13340, 'thirteen thousand three hundred forty'), (22705, 2375, 'two thousand three hundred seventy-five'), (22706, 44108, 'forty-four thousand one hundred eight'), (22707, 95838, 'ninety-five thousand eight hundred thirty-eight'), (22708, 8189, 'eight thousand one hundred eighty-nine'), (22709, 84953, 'eighty-four thousand nine hundred fifty-three'), (22710, 24689, 'twenty-four thousand six hundred eighty-nine'), (22711, 84885, 'eighty-four thousand eight hundred eighty-five'), (22712, 1806, 'one thousand eight hundred six'), (22713, 49348, 'forty-nine thousand three hundred forty-eight'), (22714, 67161, 'sixty-seven thousand one hundred sixty-one'), (22715, 94487, 'ninety-four thousand four hundred eighty-seven'), (22716, 38308, 'thirty-eight thousand three hundred eight'), (22717, 17704, 'seventeen thousand seven hundred four'), (22718, 22828, 'twenty-two thousand eight hundred twenty-eight'), (22719, 48924, 'forty-eight thousand nine hundred twenty-four'), (22720, 49914, 'forty-nine thousand nine hundred fourteen'), (22721, 97594, 'ninety-seven thousand five hundred ninety-four'), (22722, 74533, 'seventy-four thousand five hundred thirty-three'), (22723, 35492, 'thirty-five thousand four hundred ninety-two'), (22724, 22402, 'twenty-two thousand four hundred two'), (22725, 19780, 'nineteen thousand seven hundred eighty'), (22726, 33038, 'thirty-three thousand thirty-eight'), (22727, 66726, 'sixty-six thousand seven hundred twenty-six'), (22728, 30253, 'thirty thousand two hundred fifty-three'), (22729, 76364, 'seventy-six thousand three hundred sixty-four'), (22730, 9212, 'nine thousand two hundred twelve'), (22731, 11843, 'eleven thousand eight hundred forty-three'), (22732, 58408, 'fifty-eight thousand four hundred eight'), (22733, 33650, 'thirty-three thousand six hundred fifty'), (22734, 9744, 'nine thousand seven hundred forty-four'), (22735, 82056, 'eighty-two thousand fifty-six'), (22736, 94458, 'ninety-four thousand four hundred fifty-eight'), (22737, 26991, 'twenty-six thousand nine hundred ninety-one'), (22738, 42960, 'forty-two thousand nine hundred sixty'), (22739, 13422, 'thirteen thousand four hundred twenty-two'), (22740, 9496, 'nine thousand four hundred ninety-six'), (22741, 30449, 'thirty thousand four hundred forty-nine'), (22742, 57562, 'fifty-seven thousand five hundred sixty-two'), (22743, 54016, 'fifty-four thousand sixteen'), (22744, 97907, 'ninety-seven thousand nine hundred seven'), (22745, 81128, 'eighty-one thousand one hundred twenty-eight'), (22746, 27930, 'twenty-seven thousand nine hundred thirty'), (22747, 85207, 'eighty-five thousand two hundred seven'), (22748, 39185, 'thirty-nine thousand one hundred eighty-five'), (22749, 77846, 'seventy-seven thousand eight hundred forty-six'), (22750, 51781, 'fifty-one thousand seven hundred eighty-one'), (22751, 79854, 'seventy-nine thousand eight hundred fifty-four'), (22752, 9606, 'nine thousand six hundred six'), (22753, 50958, 'fifty thousand nine hundred fifty-eight'), (22754, 16512, 'sixteen thousand five hundred twelve'), (22755, 61013, 'sixty-one thousand thirteen'), (22756, 18658, 'eighteen thousand six hundred fifty-eight'), (22757, 58300, 'fifty-eight thousand three hundred'), (22758, 98007, 'ninety-eight thousand seven'), (22759, 71426, 'seventy-one thousand four hundred twenty-six'), (22760, 75233, 'seventy-five thousand two hundred thirty-three'), (22761, 47294, 'forty-seven thousand two hundred ninety-four'), (22762, 15051, 'fifteen thousand fifty-one'), (22763, 70283, 'seventy thousand two hundred eighty-three'), (22764, 31152, 'thirty-one thousand one hundred fifty-two'), (22765, 3590, 'three thousand five hundred ninety'), (22766, 65487, 'sixty-five thousand four hundred eighty-seven'), (22767, 24637, 'twenty-four thousand six hundred thirty-seven'), (22768, 70476, 'seventy thousand four hundred seventy-six'), (22769, 22345, 'twenty-two thousand three hundred forty-five'), (22770, 53565, 'fifty-three thousand five hundred sixty-five'), (22771, 69842, 'sixty-nine thousand eight hundred forty-two'), (22772, 57504, 'fifty-seven thousand five hundred four'), (22773, 13734, 'thirteen thousand seven hundred thirty-four'), (22774, 64786, 'sixty-four thousand seven hundred eighty-six'), (22775, 71061, 'seventy-one thousand sixty-one'), (22776, 76605, 'seventy-six thousand six hundred five'), (22777, 40969, 'forty thousand nine hundred sixty-nine'), (22778, 7010, 'seven thousand ten'), (22779, 14256, 'fourteen thousand two hundred fifty-six'), (22780, 80568, 'eighty thousand five hundred sixty-eight'), (22781, 86164, 'eighty-six thousand one hundred sixty-four'), (22782, 30268, 'thirty thousand two hundred sixty-eight'), (22783, 45155, 'forty-five thousand one hundred fifty-five'), (22784, 89211, 'eighty-nine thousand two hundred eleven'), (22785, 32628, 'thirty-two thousand six hundred twenty-eight'), (22786, 63124, 'sixty-three thousand one hundred twenty-four'), (22787, 34098, 'thirty-four thousand ninety-eight'), (22788, 81545, 'eighty-one thousand five hundred forty-five'), (22789, 18780, 'eighteen thousand seven hundred eighty'), (22790, 94641, 'ninety-four thousand six hundred forty-one'), (22791, 11975, 'eleven thousand nine hundred seventy-five'), (22792, 18230, 'eighteen thousand two hundred thirty'), (22793, 97006, 'ninety-seven thousand six'), (22794, 44021, 'forty-four thousand twenty-one'), (22795, 90412, 'ninety thousand four hundred twelve'), (22796, 58337, 'fifty-eight thousand three hundred thirty-seven'), (22797, 64127, 'sixty-four thousand one hundred twenty-seven'), (22798, 18269, 'eighteen thousand two hundred sixty-nine'), (22799, 4267, 'four thousand two hundred sixty-seven'), (22800, 68632, 'sixty-eight thousand six hundred thirty-two'), (22801, 53660, 'fifty-three thousand six hundred sixty'), (22802, 59516, 'fifty-nine thousand five hundred sixteen'), (22803, 84911, 'eighty-four thousand nine hundred eleven'), (22804, 68153, 'sixty-eight thousand one hundred fifty-three'), (22805, 20918, 'twenty thousand nine hundred eighteen'), (22806, 51369, 'fifty-one thousand three hundred sixty-nine'), (22807, 98827, 'ninety-eight thousand eight hundred twenty-seven'), (22808, 31139, 'thirty-one thousand one hundred thirty-nine'), (22809, 30834, 'thirty thousand eight hundred thirty-four'), (22810, 47328, 'forty-seven thousand three hundred twenty-eight'), (22811, 12819, 'twelve thousand eight hundred nineteen'), (22812, 95853, 'ninety-five thousand eight hundred fifty-three'), (22813, 56234, 'fifty-six thousand two hundred thirty-four'), (22814, 63364, 'sixty-three thousand three hundred sixty-four'), (22815, 50632, 'fifty thousand six hundred thirty-two'), (22816, 96322, 'ninety-six thousand three hundred twenty-two'), (22817, 31209, 'thirty-one thousand two hundred nine'), (22818, 79984, 'seventy-nine thousand nine hundred eighty-four'), (22819, 14699, 'fourteen thousand six hundred ninety-nine'), (22820, 46747, 'forty-six thousand seven hundred forty-seven'), (22821, 67471, 'sixty-seven thousand four hundred seventy-one'), (22822, 58140, 'fifty-eight thousand one hundred forty'), (22823, 66496, 'sixty-six thousand four hundred ninety-six'), (22824, 1201, 'one thousand two hundred one'), (22825, 73674, 'seventy-three thousand six hundred seventy-four'), (22826, 54786, 'fifty-four thousand seven hundred eighty-six'), (22827, 17528, 'seventeen thousand five hundred twenty-eight'), (22828, 97169, 'ninety-seven thousand one hundred sixty-nine'), (22829, 29489, 'twenty-nine thousand four hundred eighty-nine'), (22830, 53143, 'fifty-three thousand one hundred forty-three'), (22831, 60344, 'sixty thousand three hundred forty-four'), (22832, 40566, 'forty thousand five hundred sixty-six'), (22833, 53504, 'fifty-three thousand five hundred four'), (22834, 68612, 'sixty-eight thousand six hundred twelve'), (22835, 47093, 'forty-seven thousand ninety-three'), (22836, 10012, 'ten thousand twelve'), (22837, 38837, 'thirty-eight thousand eight hundred thirty-seven'), (22838, 32262, 'thirty-two thousand two hundred sixty-two'), (22839, 92035, 'ninety-two thousand thirty-five'), (22840, 45549, 'forty-five thousand five hundred forty-nine'), (22841, 59702, 'fifty-nine thousand seven hundred two'), (22842, 86555, 'eighty-six thousand five hundred fifty-five'), (22843, 29582, 'twenty-nine thousand five hundred eighty-two'), (22844, 55207, 'fifty-five thousand two hundred seven'), (22845, 61230, 'sixty-one thousand two hundred thirty'), (22846, 42412, 'forty-two thousand four hundred twelve'), (22847, 58210, 'fifty-eight thousand two hundred ten'), (22848, 44653, 'forty-four thousand six hundred fifty-three'), (22849, 12389, 'twelve thousand three hundred eighty-nine'), (22850, 35040, 'thirty-five thousand forty'), (22851, 28941, 'twenty-eight thousand nine hundred forty-one'), (22852, 93101, 'ninety-three thousand one hundred one'), (22853, 10222, 'ten thousand two hundred twenty-two'), (22854, 82013, 'eighty-two thousand thirteen'), (22855, 275, 'two hundred seventy-five'), (22856, 4327, 'four thousand three hundred twenty-seven'), (22857, 49325, 'forty-nine thousand three hundred twenty-five'), (22858, 2367, 'two thousand three hundred sixty-seven'), (22859, 63900, 'sixty-three thousand nine hundred'), (22860, 97488, 'ninety-seven thousand four hundred eighty-eight'), (22861, 49314, 'forty-nine thousand three hundred fourteen'), (22862, 80974, 'eighty thousand nine hundred seventy-four'), (22863, 16594, 'sixteen thousand five hundred ninety-four'), (22864, 41280, 'forty-one thousand two hundred eighty'), (22865, 61373, 'sixty-one thousand three hundred seventy-three'), (22866, 19224, 'nineteen thousand two hundred twenty-four'), (22867, 43507, 'forty-three thousand five hundred seven'), (22868, 31376, 'thirty-one thousand three hundred seventy-six'), (22869, 39992, 'thirty-nine thousand nine hundred ninety-two'), (22870, 31748, 'thirty-one thousand seven hundred forty-eight'), (22871, 99487, 'ninety-nine thousand four hundred eighty-seven'), (22872, 35881, 'thirty-five thousand eight hundred eighty-one'), (22873, 33317, 'thirty-three thousand three hundred seventeen'), (22874, 13641, 'thirteen thousand six hundred forty-one'), (22875, 3369, 'three thousand three hundred sixty-nine'), (22876, 68216, 'sixty-eight thousand two hundred sixteen'), (22877, 48698, 'forty-eight thousand six hundred ninety-eight'), (22878, 45380, 'forty-five thousand three hundred eighty'), (22879, 54102, 'fifty-four thousand one hundred two'), (22880, 92108, 'ninety-two thousand one hundred eight'), (22881, 46749, 'forty-six thousand seven hundred forty-nine'), (22882, 69667, 'sixty-nine thousand six hundred sixty-seven'), (22883, 3973, 'three thousand nine hundred seventy-three'), (22884, 62945, 'sixty-two thousand nine hundred forty-five'), (22885, 49955, 'forty-nine thousand nine hundred fifty-five'), (22886, 86100, 'eighty-six thousand one hundred'), (22887, 85299, 'eighty-five thousand two hundred ninety-nine'), (22888, 65291, 'sixty-five thousand two hundred ninety-one'), (22889, 11694, 'eleven thousand six hundred ninety-four'), (22890, 90309, 'ninety thousand three hundred nine'), (22891, 16983, 'sixteen thousand nine hundred eighty-three'), (22892, 12167, 'twelve thousand one hundred sixty-seven'), (22893, 24894, 'twenty-four thousand eight hundred ninety-four'), (22894, 39342, 'thirty-nine thousand three hundred forty-two'), (22895, 660, 'six hundred sixty'), (22896, 15285, 'fifteen thousand two hundred eighty-five'), (22897, 61519, 'sixty-one thousand five hundred nineteen'), (22898, 40291, 'forty thousand two hundred ninety-one'), (22899, 36560, 'thirty-six thousand five hundred sixty'), (22900, 84379, 'eighty-four thousand three hundred seventy-nine'), (22901, 76362, 'seventy-six thousand three hundred sixty-two'), (22902, 89723, 'eighty-nine thousand seven hundred twenty-three'), (22903, 58355, 'fifty-eight thousand three hundred fifty-five'), (22904, 45419, 'forty-five thousand four hundred nineteen'), (22905, 32225, 'thirty-two thousand two hundred twenty-five'), (22906, 97406, 'ninety-seven thousand four hundred six'), (22907, 56868, 'fifty-six thousand eight hundred sixty-eight'), (22908, 93462, 'ninety-three thousand four hundred sixty-two'), (22909, 63205, 'sixty-three thousand two hundred five'), (22910, 27987, 'twenty-seven thousand nine hundred eighty-seven'), (22911, 59525, 'fifty-nine thousand five hundred twenty-five'), (22912, 70262, 'seventy thousand two hundred sixty-two'), (22913, 39374, 'thirty-nine thousand three hundred seventy-four'), (22914, 40047, 'forty thousand forty-seven'), (22915, 22047, 'twenty-two thousand forty-seven'), (22916, 81424, 'eighty-one thousand four hundred twenty-four'), (22917, 20440, 'twenty thousand four hundred forty'), (22918, 75087, 'seventy-five thousand eighty-seven'), (22919, 81908, 'eighty-one thousand nine hundred eight'), (22920, 21473, 'twenty-one thousand four hundred seventy-three'), (22921, 35063, 'thirty-five thousand sixty-three'), (22922, 62545, 'sixty-two thousand five hundred forty-five'), (22923, 59027, 'fifty-nine thousand twenty-seven'), (22924, 23539, 'twenty-three thousand five hundred thirty-nine'), (22925, 67118, 'sixty-seven thousand one hundred eighteen'), (22926, 32933, 'thirty-two thousand nine hundred thirty-three'), (22927, 18681, 'eighteen thousand six hundred eighty-one'), (22928, 58604, 'fifty-eight thousand six hundred four'), (22929, 40455, 'forty thousand four hundred fifty-five'), (22930, 88400, 'eighty-eight thousand four hundred'), (22931, 28814, 'twenty-eight thousand eight hundred fourteen'), (22932, 63577, 'sixty-three thousand five hundred seventy-seven'), (22933, 4947, 'four thousand nine hundred forty-seven'), (22934, 6039, 'six thousand thirty-nine'), (22935, 8664, 'eight thousand six hundred sixty-four'), (22936, 15823, 'fifteen thousand eight hundred twenty-three'), (22937, 64187, 'sixty-four thousand one hundred eighty-seven'), (22938, 24621, 'twenty-four thousand six hundred twenty-one'), (22939, 83123, 'eighty-three thousand one hundred twenty-three'), (22940, 67581, 'sixty-seven thousand five hundred eighty-one'), (22941, 74700, 'seventy-four thousand seven hundred'), (22942, 16105, 'sixteen thousand one hundred five'), (22943, 80916, 'eighty thousand nine hundred sixteen'), (22944, 34414, 'thirty-four thousand four hundred fourteen'), (22945, 47875, 'forty-seven thousand eight hundred seventy-five'), (22946, 90804, 'ninety thousand eight hundred four'), (22947, 2445, 'two thousand four hundred forty-five'), (22948, 95420, 'ninety-five thousand four hundred twenty'), (22949, 25641, 'twenty-five thousand six hundred forty-one'), (22950, 42960, 'forty-two thousand nine hundred sixty'), (22951, 79147, 'seventy-nine thousand one hundred forty-seven'), (22952, 44372, 'forty-four thousand three hundred seventy-two'), (22953, 97313, 'ninety-seven thousand three hundred thirteen'), (22954, 14157, 'fourteen thousand one hundred fifty-seven'), (22955, 52264, 'fifty-two thousand two hundred sixty-four'), (22956, 35769, 'thirty-five thousand seven hundred sixty-nine'), (22957, 1400, 'one thousand four hundred'), (22958, 8281, 'eight thousand two hundred eighty-one'), (22959, 18991, 'eighteen thousand nine hundred ninety-one'), (22960, 38254, 'thirty-eight thousand two hundred fifty-four'), (22961, 26838, 'twenty-six thousand eight hundred thirty-eight'), (22962, 76795, 'seventy-six thousand seven hundred ninety-five'), (22963, 62194, 'sixty-two thousand one hundred ninety-four'), (22964, 16614, 'sixteen thousand six hundred fourteen'), (22965, 94025, 'ninety-four thousand twenty-five'), (22966, 70055, 'seventy thousand fifty-five'), (22967, 37001, 'thirty-seven thousand one'), (22968, 1595, 'one thousand five hundred ninety-five'), (22969, 41386, 'forty-one thousand three hundred eighty-six'), (22970, 80505, 'eighty thousand five hundred five'), (22971, 19489, 'nineteen thousand four hundred eighty-nine'), (22972, 3409, 'three thousand four hundred nine'), (22973, 72882, 'seventy-two thousand eight hundred eighty-two'), (22974, 48677, 'forty-eight thousand six hundred seventy-seven'), (22975, 23885, 'twenty-three thousand eight hundred eighty-five'), (22976, 14376, 'fourteen thousand three hundred seventy-six'), (22977, 53459, 'fifty-three thousand four hundred fifty-nine'), (22978, 64701, 'sixty-four thousand seven hundred one'), (22979, 34054, 'thirty-four thousand fifty-four'), (22980, 46734, 'forty-six thousand seven hundred thirty-four'), (22981, 91189, 'ninety-one thousand one hundred eighty-nine'), (22982, 14075, 'fourteen thousand seventy-five'), (22983, 39615, 'thirty-nine thousand six hundred fifteen'), (22984, 85059, 'eighty-five thousand fifty-nine'), (22985, 59457, 'fifty-nine thousand four hundred fifty-seven'), (22986, 10143, 'ten thousand one hundred forty-three'), (22987, 75054, 'seventy-five thousand fifty-four'), (22988, 61469, 'sixty-one thousand four hundred sixty-nine'), (22989, 12803, 'twelve thousand eight hundred three'), (22990, 15617, 'fifteen thousand six hundred seventeen'), (22991, 23181, 'twenty-three thousand one hundred eighty-one'), (22992, 65662, 'sixty-five thousand six hundred sixty-two'), (22993, 23783, 'twenty-three thousand seven hundred eighty-three'), (22994, 12011, 'twelve thousand eleven'), (22995, 40657, 'forty thousand six hundred fifty-seven'), (22996, 18837, 'eighteen thousand eight hundred thirty-seven'), (22997, 68983, 'sixty-eight thousand nine hundred eighty-three'), (22998, 78511, 'seventy-eight thousand five hundred eleven'), (22999, 10581, 'ten thousand five hundred eighty-one'), (23000, 11350, 'eleven thousand three hundred fifty'), (23001, 66567, 'sixty-six thousand five hundred sixty-seven'), (23002, 48073, 'forty-eight thousand seventy-three'), (23003, 76384, 'seventy-six thousand three hundred eighty-four'), (23004, 25536, 'twenty-five thousand five hundred thirty-six'), (23005, 6861, 'six thousand eight hundred sixty-one'), (23006, 99209, 'ninety-nine thousand two hundred nine'), (23007, 66833, 'sixty-six thousand eight hundred thirty-three'), (23008, 14114, 'fourteen thousand one hundred fourteen'), (23009, 24192, 'twenty-four thousand one hundred ninety-two'), (23010, 9552, 'nine thousand five hundred fifty-two'), (23011, 36135, 'thirty-six thousand one hundred thirty-five'), (23012, 91087, 'ninety-one thousand eighty-seven'), (23013, 61946, 'sixty-one thousand nine hundred forty-six'), (23014, 16485, 'sixteen thousand four hundred eighty-five'), (23015, 98493, 'ninety-eight thousand four hundred ninety-three'), (23016, 67539, 'sixty-seven thousand five hundred thirty-nine'), (23017, 78278, 'seventy-eight thousand two hundred seventy-eight'), (23018, 41429, 'forty-one thousand four hundred twenty-nine'), (23019, 19827, 'nineteen thousand eight hundred twenty-seven'), (23020, 79489, 'seventy-nine thousand four hundred eighty-nine'), (23021, 91287, 'ninety-one thousand two hundred eighty-seven'), (23022, 91843, 'ninety-one thousand eight hundred forty-three'), (23023, 76153, 'seventy-six thousand one hundred fifty-three'), (23024, 50683, 'fifty thousand six hundred eighty-three'), (23025, 28875, 'twenty-eight thousand eight hundred seventy-five'), (23026, 81191, 'eighty-one thousand one hundred ninety-one'), (23027, 58883, 'fifty-eight thousand eight hundred eighty-three'), (23028, 25628, 'twenty-five thousand six hundred twenty-eight'), (23029, 30816, 'thirty thousand eight hundred sixteen'), (23030, 63716, 'sixty-three thousand seven hundred sixteen'), (23031, 41084, 'forty-one thousand eighty-four'), (23032, 20720, 'twenty thousand seven hundred twenty'), (23033, 42353, 'forty-two thousand three hundred fifty-three'), (23034, 56594, 'fifty-six thousand five hundred ninety-four'), (23035, 87754, 'eighty-seven thousand seven hundred fifty-four'), (23036, 5313, 'five thousand three hundred thirteen'), (23037, 72281, 'seventy-two thousand two hundred eighty-one'), (23038, 85904, 'eighty-five thousand nine hundred four'), (23039, 34449, 'thirty-four thousand four hundred forty-nine'), (23040, 1053, 'one thousand fifty-three'), (23041, 71285, 'seventy-one thousand two hundred eighty-five'), (23042, 43866, 'forty-three thousand eight hundred sixty-six'), (23043, 51646, 'fifty-one thousand six hundred forty-six'), (23044, 53961, 'fifty-three thousand nine hundred sixty-one'), (23045, 52878, 'fifty-two thousand eight hundred seventy-eight'), (23046, 4008, 'four thousand eight'), (23047, 34585, 'thirty-four thousand five hundred eighty-five'), (23048, 35507, 'thirty-five thousand five hundred seven'), (23049, 21406, 'twenty-one thousand four hundred six'), (23050, 48613, 'forty-eight thousand six hundred thirteen'), (23051, 95326, 'ninety-five thousand three hundred twenty-six'), (23052, 66962, 'sixty-six thousand nine hundred sixty-two'), (23053, 5894, 'five thousand eight hundred ninety-four'), (23054, 70930, 'seventy thousand nine hundred thirty'), (23055, 99180, 'ninety-nine thousand one hundred eighty'), (23056, 54294, 'fifty-four thousand two hundred ninety-four'), (23057, 72453, 'seventy-two thousand four hundred fifty-three'), (23058, 27943, 'twenty-seven thousand nine hundred forty-three'), (23059, 6644, 'six thousand six hundred forty-four'), (23060, 23131, 'twenty-three thousand one hundred thirty-one'), (23061, 52234, 'fifty-two thousand two hundred thirty-four'), (23062, 34433, 'thirty-four thousand four hundred thirty-three'), (23063, 11985, 'eleven thousand nine hundred eighty-five'), (23064, 83619, 'eighty-three thousand six hundred nineteen'), (23065, 7549, 'seven thousand five hundred forty-nine'), (23066, 61214, 'sixty-one thousand two hundred fourteen'), (23067, 83855, 'eighty-three thousand eight hundred fifty-five'), (23068, 46128, 'forty-six thousand one hundred twenty-eight'), (23069, 86560, 'eighty-six thousand five hundred sixty'), (23070, 96219, 'ninety-six thousand two hundred nineteen'), (23071, 73016, 'seventy-three thousand sixteen'), (23072, 10887, 'ten thousand eight hundred eighty-seven'), (23073, 75265, 'seventy-five thousand two hundred sixty-five'), (23074, 98835, 'ninety-eight thousand eight hundred thirty-five'), (23075, 91250, 'ninety-one thousand two hundred fifty'), (23076, 27001, 'twenty-seven thousand one'), (23077, 18930, 'eighteen thousand nine hundred thirty'), (23078, 76974, 'seventy-six thousand nine hundred seventy-four'), (23079, 19006, 'nineteen thousand six'), (23080, 95770, 'ninety-five thousand seven hundred seventy'), (23081, 40934, 'forty thousand nine hundred thirty-four'), (23082, 39149, 'thirty-nine thousand one hundred forty-nine'), (23083, 76963, 'seventy-six thousand nine hundred sixty-three'), (23084, 46497, 'forty-six thousand four hundred ninety-seven'), (23085, 92177, 'ninety-two thousand one hundred seventy-seven'), (23086, 62186, 'sixty-two thousand one hundred eighty-six'), (23087, 481, 'four hundred eighty-one'), (23088, 82975, 'eighty-two thousand nine hundred seventy-five'), (23089, 96149, 'ninety-six thousand one hundred forty-nine'), (23090, 94670, 'ninety-four thousand six hundred seventy'), (23091, 94696, 'ninety-four thousand six hundred ninety-six'), (23092, 39892, 'thirty-nine thousand eight hundred ninety-two'), (23093, 68058, 'sixty-eight thousand fifty-eight'), (23094, 37851, 'thirty-seven thousand eight hundred fifty-one'), (23095, 67218, 'sixty-seven thousand two hundred eighteen'), (23096, 52925, 'fifty-two thousand nine hundred twenty-five'), (23097, 64368, 'sixty-four thousand three hundred sixty-eight'), (23098, 29304, 'twenty-nine thousand three hundred four'), (23099, 20209, 'twenty thousand two hundred nine'), (23100, 5995, 'five thousand nine hundred ninety-five'), (23101, 12562, 'twelve thousand five hundred sixty-two'), (23102, 18938, 'eighteen thousand nine hundred thirty-eight'), (23103, 10478, 'ten thousand four hundred seventy-eight'), (23104, 61098, 'sixty-one thousand ninety-eight'), (23105, 99284, 'ninety-nine thousand two hundred eighty-four'), (23106, 17911, 'seventeen thousand nine hundred eleven'), (23107, 18150, 'eighteen thousand one hundred fifty'), (23108, 6214, 'six thousand two hundred fourteen'), (23109, 47205, 'forty-seven thousand two hundred five'), (23110, 9065, 'nine thousand sixty-five'), (23111, 46042, 'forty-six thousand forty-two'), (23112, 55490, 'fifty-five thousand four hundred ninety'), (23113, 68322, 'sixty-eight thousand three hundred twenty-two'), (23114, 60574, 'sixty thousand five hundred seventy-four'), (23115, 73601, 'seventy-three thousand six hundred one'), (23116, 32783, 'thirty-two thousand seven hundred eighty-three'), (23117, 98620, 'ninety-eight thousand six hundred twenty'), (23118, 31790, 'thirty-one thousand seven hundred ninety'), (23119, 1375, 'one thousand three hundred seventy-five'), (23120, 10330, 'ten thousand three hundred thirty'), (23121, 30552, 'thirty thousand five hundred fifty-two'), (23122, 60630, 'sixty thousand six hundred thirty'), (23123, 71198, 'seventy-one thousand one hundred ninety-eight'), (23124, 86487, 'eighty-six thousand four hundred eighty-seven'), (23125, 19938, 'nineteen thousand nine hundred thirty-eight'), (23126, 79990, 'seventy-nine thousand nine hundred ninety'), (23127, 27717, 'twenty-seven thousand seven hundred seventeen'), (23128, 96471, 'ninety-six thousand four hundred seventy-one'), (23129, 51872, 'fifty-one thousand eight hundred seventy-two'), (23130, 80786, 'eighty thousand seven hundred eighty-six'), (23131, 54547, 'fifty-four thousand five hundred forty-seven'), (23132, 82645, 'eighty-two thousand six hundred forty-five'), (23133, 85876, 'eighty-five thousand eight hundred seventy-six'), (23134, 41386, 'forty-one thousand three hundred eighty-six'), (23135, 20498, 'twenty thousand four hundred ninety-eight'), (23136, 26093, 'twenty-six thousand ninety-three'), (23137, 19592, 'nineteen thousand five hundred ninety-two'), (23138, 79794, 'seventy-nine thousand seven hundred ninety-four'), (23139, 52073, 'fifty-two thousand seventy-three'), (23140, 19289, 'nineteen thousand two hundred eighty-nine'), (23141, 66033, 'sixty-six thousand thirty-three'), (23142, 81274, 'eighty-one thousand two hundred seventy-four'), (23143, 73729, 'seventy-three thousand seven hundred twenty-nine'), (23144, 96530, 'ninety-six thousand five hundred thirty'), (23145, 99634, 'ninety-nine thousand six hundred thirty-four'), (23146, 68224, 'sixty-eight thousand two hundred twenty-four'), (23147, 15392, 'fifteen thousand three hundred ninety-two'), (23148, 16454, 'sixteen thousand four hundred fifty-four'), (23149, 9850, 'nine thousand eight hundred fifty'), (23150, 87416, 'eighty-seven thousand four hundred sixteen'), (23151, 44719, 'forty-four thousand seven hundred nineteen'), (23152, 24418, 'twenty-four thousand four hundred eighteen'), (23153, 45169, 'forty-five thousand one hundred sixty-nine'), (23154, 84136, 'eighty-four thousand one hundred thirty-six'), (23155, 11471, 'eleven thousand four hundred seventy-one'), (23156, 97232, 'ninety-seven thousand two hundred thirty-two'), (23157, 95879, 'ninety-five thousand eight hundred seventy-nine'), (23158, 39264, 'thirty-nine thousand two hundred sixty-four'), (23159, 54919, 'fifty-four thousand nine hundred nineteen'), (23160, 59821, 'fifty-nine thousand eight hundred twenty-one'), (23161, 85477, 'eighty-five thousand four hundred seventy-seven'), (23162, 56209, 'fifty-six thousand two hundred nine'), (23163, 91301, 'ninety-one thousand three hundred one'), (23164, 48433, 'forty-eight thousand four hundred thirty-three'), (23165, 46090, 'forty-six thousand ninety'), (23166, 84253, 'eighty-four thousand two hundred fifty-three'), (23167, 45992, 'forty-five thousand nine hundred ninety-two'), (23168, 72540, 'seventy-two thousand five hundred forty'), (23169, 68022, 'sixty-eight thousand twenty-two'), (23170, 93401, 'ninety-three thousand four hundred one'), (23171, 58412, 'fifty-eight thousand four hundred twelve'), (23172, 56328, 'fifty-six thousand three hundred twenty-eight'), (23173, 98224, 'ninety-eight thousand two hundred twenty-four'), (23174, 99950, 'ninety-nine thousand nine hundred fifty'), (23175, 25006, 'twenty-five thousand six'), (23176, 85041, 'eighty-five thousand forty-one'), (23177, 29170, 'twenty-nine thousand one hundred seventy'), (23178, 59211, 'fifty-nine thousand two hundred eleven'), (23179, 42934, 'forty-two thousand nine hundred thirty-four'), (23180, 8273, 'eight thousand two hundred seventy-three'), (23181, 2480, 'two thousand four hundred eighty'), (23182, 21749, 'twenty-one thousand seven hundred forty-nine'), (23183, 50524, 'fifty thousand five hundred twenty-four'), (23184, 34177, 'thirty-four thousand one hundred seventy-seven'), (23185, 32279, 'thirty-two thousand two hundred seventy-nine'), (23186, 24393, 'twenty-four thousand three hundred ninety-three'), (23187, 40406, 'forty thousand four hundred six'), (23188, 12174, 'twelve thousand one hundred seventy-four'), (23189, 89902, 'eighty-nine thousand nine hundred two'), (23190, 7553, 'seven thousand five hundred fifty-three'), (23191, 32574, 'thirty-two thousand five hundred seventy-four'), (23192, 12878, 'twelve thousand eight hundred seventy-eight'), (23193, 58930, 'fifty-eight thousand nine hundred thirty'), (23194, 15381, 'fifteen thousand three hundred eighty-one'), (23195, 52001, 'fifty-two thousand one'), (23196, 52185, 'fifty-two thousand one hundred eighty-five'), (23197, 77302, 'seventy-seven thousand three hundred two'), (23198, 71116, 'seventy-one thousand one hundred sixteen'), (23199, 6608, 'six thousand six hundred eight'), (23200, 18785, 'eighteen thousand seven hundred eighty-five'), (23201, 22015, 'twenty-two thousand fifteen'), (23202, 52050, 'fifty-two thousand fifty'), (23203, 46707, 'forty-six thousand seven hundred seven'), (23204, 57026, 'fifty-seven thousand twenty-six'), (23205, 5542, 'five thousand five hundred forty-two'), (23206, 59209, 'fifty-nine thousand two hundred nine'), (23207, 73010, 'seventy-three thousand ten'), (23208, 4497, 'four thousand four hundred ninety-seven'), (23209, 21277, 'twenty-one thousand two hundred seventy-seven'), (23210, 21827, 'twenty-one thousand eight hundred twenty-seven'), (23211, 20842, 'twenty thousand eight hundred forty-two'), (23212, 61158, 'sixty-one thousand one hundred fifty-eight'), (23213, 64285, 'sixty-four thousand two hundred eighty-five'), (23214, 38411, 'thirty-eight thousand four hundred eleven'), (23215, 35084, 'thirty-five thousand eighty-four'), (23216, 56475, 'fifty-six thousand four hundred seventy-five'), (23217, 36618, 'thirty-six thousand six hundred eighteen'), (23218, 69348, 'sixty-nine thousand three hundred forty-eight'), (23219, 95593, 'ninety-five thousand five hundred ninety-three'), (23220, 45175, 'forty-five thousand one hundred seventy-five'), (23221, 23965, 'twenty-three thousand nine hundred sixty-five'), (23222, 10674, 'ten thousand six hundred seventy-four'), (23223, 40173, 'forty thousand one hundred seventy-three'), (23224, 43460, 'forty-three thousand four hundred sixty'), (23225, 69230, 'sixty-nine thousand two hundred thirty'), (23226, 12050, 'twelve thousand fifty'), (23227, 82804, 'eighty-two thousand eight hundred four'), (23228, 81191, 'eighty-one thousand one hundred ninety-one'), (23229, 16192, 'sixteen thousand one hundred ninety-two'), (23230, 21229, 'twenty-one thousand two hundred twenty-nine'), (23231, 54057, 'fifty-four thousand fifty-seven'), (23232, 89477, 'eighty-nine thousand four hundred seventy-seven'), (23233, 45420, 'forty-five thousand four hundred twenty'), (23234, 42627, 'forty-two thousand six hundred twenty-seven'), (23235, 41618, 'forty-one thousand six hundred eighteen'), (23236, 51029, 'fifty-one thousand twenty-nine'), (23237, 30136, 'thirty thousand one hundred thirty-six'), (23238, 94738, 'ninety-four thousand seven hundred thirty-eight'), (23239, 36657, 'thirty-six thousand six hundred fifty-seven'), (23240, 1490, 'one thousand four hundred ninety'), (23241, 45710, 'forty-five thousand seven hundred ten'), (23242, 53264, 'fifty-three thousand two hundred sixty-four'), (23243, 42754, 'forty-two thousand seven hundred fifty-four'), (23244, 6321, 'six thousand three hundred twenty-one'), (23245, 78860, 'seventy-eight thousand eight hundred sixty'), (23246, 3726, 'three thousand seven hundred twenty-six'), (23247, 65819, 'sixty-five thousand eight hundred nineteen'), (23248, 98692, 'ninety-eight thousand six hundred ninety-two'), (23249, 9544, 'nine thousand five hundred forty-four'), (23250, 83446, 'eighty-three thousand four hundred forty-six'), (23251, 13012, 'thirteen thousand twelve'), (23252, 744, 'seven hundred forty-four'), (23253, 43721, 'forty-three thousand seven hundred twenty-one'), (23254, 2573, 'two thousand five hundred seventy-three'), (23255, 28905, 'twenty-eight thousand nine hundred five'), (23256, 88956, 'eighty-eight thousand nine hundred fifty-six'), (23257, 4478, 'four thousand four hundred seventy-eight'), (23258, 3243, 'three thousand two hundred forty-three'), (23259, 80055, 'eighty thousand fifty-five'), (23260, 14059, 'fourteen thousand fifty-nine'), (23261, 69373, 'sixty-nine thousand three hundred seventy-three'), (23262, 67952, 'sixty-seven thousand nine hundred fifty-two'), (23263, 47982, 'forty-seven thousand nine hundred eighty-two'), (23264, 19665, 'nineteen thousand six hundred sixty-five'), (23265, 51533, 'fifty-one thousand five hundred thirty-three'), (23266, 37268, 'thirty-seven thousand two hundred sixty-eight'), (23267, 34734, 'thirty-four thousand seven hundred thirty-four'), (23268, 18763, 'eighteen thousand seven hundred sixty-three'), (23269, 57121, 'fifty-seven thousand one hundred twenty-one'), (23270, 21212, 'twenty-one thousand two hundred twelve'), (23271, 569, 'five hundred sixty-nine'), (23272, 10095, 'ten thousand ninety-five'), (23273, 20709, 'twenty thousand seven hundred nine'), (23274, 64638, 'sixty-four thousand six hundred thirty-eight'), (23275, 73673, 'seventy-three thousand six hundred seventy-three'), (23276, 65355, 'sixty-five thousand three hundred fifty-five'), (23277, 35863, 'thirty-five thousand eight hundred sixty-three'), (23278, 58863, 'fifty-eight thousand eight hundred sixty-three'), (23279, 28257, 'twenty-eight thousand two hundred fifty-seven'), (23280, 68402, 'sixty-eight thousand four hundred two'), (23281, 56490, 'fifty-six thousand four hundred ninety'), (23282, 27938, 'twenty-seven thousand nine hundred thirty-eight'), (23283, 35348, 'thirty-five thousand three hundred forty-eight'), (23284, 78663, 'seventy-eight thousand six hundred sixty-three'), (23285, 33958, 'thirty-three thousand nine hundred fifty-eight'), (23286, 5746, 'five thousand seven hundred forty-six'), (23287, 19777, 'nineteen thousand seven hundred seventy-seven'), (23288, 399, 'three hundred ninety-nine'), (23289, 23170, 'twenty-three thousand one hundred seventy'), (23290, 51670, 'fifty-one thousand six hundred seventy'), (23291, 74796, 'seventy-four thousand seven hundred ninety-six'), (23292, 8410, 'eight thousand four hundred ten'), (23293, 21286, 'twenty-one thousand two hundred eighty-six'), (23294, 23409, 'twenty-three thousand four hundred nine'), (23295, 46798, 'forty-six thousand seven hundred ninety-eight'), (23296, 76767, 'seventy-six thousand seven hundred sixty-seven'), (23297, 42024, 'forty-two thousand twenty-four'), (23298, 20189, 'twenty thousand one hundred eighty-nine'), (23299, 2198, 'two thousand one hundred ninety-eight'), (23300, 95112, 'ninety-five thousand one hundred twelve'), (23301, 82485, 'eighty-two thousand four hundred eighty-five'), (23302, 52747, 'fifty-two thousand seven hundred forty-seven'), (23303, 52766, 'fifty-two thousand seven hundred sixty-six'), (23304, 55894, 'fifty-five thousand eight hundred ninety-four'), (23305, 22554, 'twenty-two thousand five hundred fifty-four'), (23306, 93021, 'ninety-three thousand twenty-one'), (23307, 44701, 'forty-four thousand seven hundred one'), (23308, 38275, 'thirty-eight thousand two hundred seventy-five'), (23309, 7581, 'seven thousand five hundred eighty-one'), (23310, 29117, 'twenty-nine thousand one hundred seventeen'), (23311, 4578, 'four thousand five hundred seventy-eight'), (23312, 69371, 'sixty-nine thousand three hundred seventy-one'), (23313, 48153, 'forty-eight thousand one hundred fifty-three'), (23314, 94113, 'ninety-four thousand one hundred thirteen'), (23315, 60997, 'sixty thousand nine hundred ninety-seven'), (23316, 80722, 'eighty thousand seven hundred twenty-two'), (23317, 2000, 'two thousand'), (23318, 32432, 'thirty-two thousand four hundred thirty-two'), (23319, 57304, 'fifty-seven thousand three hundred four'), (23320, 58126, 'fifty-eight thousand one hundred twenty-six'), (23321, 53084, 'fifty-three thousand eighty-four'), (23322, 25830, 'twenty-five thousand eight hundred thirty'), (23323, 90572, 'ninety thousand five hundred seventy-two'), (23324, 16442, 'sixteen thousand four hundred forty-two'), (23325, 86995, 'eighty-six thousand nine hundred ninety-five'), (23326, 94924, 'ninety-four thousand nine hundred twenty-four'), (23327, 65952, 'sixty-five thousand nine hundred fifty-two'), (23328, 15351, 'fifteen thousand three hundred fifty-one'), (23329, 61859, 'sixty-one thousand eight hundred fifty-nine'), (23330, 88223, 'eighty-eight thousand two hundred twenty-three'), (23331, 77162, 'seventy-seven thousand one hundred sixty-two'), (23332, 9451, 'nine thousand four hundred fifty-one'), (23333, 40002, 'forty thousand two'), (23334, 44649, 'forty-four thousand six hundred forty-nine'), (23335, 43516, 'forty-three thousand five hundred sixteen'), (23336, 44651, 'forty-four thousand six hundred fifty-one'), (23337, 94737, 'ninety-four thousand seven hundred thirty-seven'), (23338, 79897, 'seventy-nine thousand eight hundred ninety-seven'), (23339, 25784, 'twenty-five thousand seven hundred eighty-four'), (23340, 63329, 'sixty-three thousand three hundred twenty-nine'), (23341, 8716, 'eight thousand seven hundred sixteen'), (23342, 48804, 'forty-eight thousand eight hundred four'), (23343, 25234, 'twenty-five thousand two hundred thirty-four'), (23344, 64381, 'sixty-four thousand three hundred eighty-one'), (23345, 21241, 'twenty-one thousand two hundred forty-one'), (23346, 20190, 'twenty thousand one hundred ninety'), (23347, 50515, 'fifty thousand five hundred fifteen'), (23348, 85348, 'eighty-five thousand three hundred forty-eight'), (23349, 74973, 'seventy-four thousand nine hundred seventy-three'), (23350, 24942, 'twenty-four thousand nine hundred forty-two'), (23351, 59084, 'fifty-nine thousand eighty-four'), (23352, 99109, 'ninety-nine thousand one hundred nine'), (23353, 90129, 'ninety thousand one hundred twenty-nine'), (23354, 48853, 'forty-eight thousand eight hundred fifty-three'), (23355, 81315, 'eighty-one thousand three hundred fifteen'), (23356, 72127, 'seventy-two thousand one hundred twenty-seven'), (23357, 83360, 'eighty-three thousand three hundred sixty'), (23358, 70460, 'seventy thousand four hundred sixty'), (23359, 44305, 'forty-four thousand three hundred five'), (23360, 70984, 'seventy thousand nine hundred eighty-four'), (23361, 75792, 'seventy-five thousand seven hundred ninety-two'), (23362, 72626, 'seventy-two thousand six hundred twenty-six'), (23363, 12300, 'twelve thousand three hundred'), (23364, 97133, 'ninety-seven thousand one hundred thirty-three'), (23365, 64205, 'sixty-four thousand two hundred five'), (23366, 76703, 'seventy-six thousand seven hundred three'), (23367, 22185, 'twenty-two thousand one hundred eighty-five'), (23368, 29390, 'twenty-nine thousand three hundred ninety'), (23369, 81470, 'eighty-one thousand four hundred seventy'), (23370, 80574, 'eighty thousand five hundred seventy-four'), (23371, 90910, 'ninety thousand nine hundred ten'), (23372, 40383, 'forty thousand three hundred eighty-three'), (23373, 53280, 'fifty-three thousand two hundred eighty'), (23374, 86649, 'eighty-six thousand six hundred forty-nine'), (23375, 82652, 'eighty-two thousand six hundred fifty-two'), (23376, 83720, 'eighty-three thousand seven hundred twenty'), (23377, 3875, 'three thousand eight hundred seventy-five'), (23378, 3651, 'three thousand six hundred fifty-one'), (23379, 30530, 'thirty thousand five hundred thirty'), (23380, 27788, 'twenty-seven thousand seven hundred eighty-eight'), (23381, 53028, 'fifty-three thousand twenty-eight'), (23382, 36076, 'thirty-six thousand seventy-six'), (23383, 24208, 'twenty-four thousand two hundred eight'), (23384, 92257, 'ninety-two thousand two hundred fifty-seven'), (23385, 80550, 'eighty thousand five hundred fifty'), (23386, 8594, 'eight thousand five hundred ninety-four'), (23387, 65989, 'sixty-five thousand nine hundred eighty-nine'), (23388, 51032, 'fifty-one thousand thirty-two'), (23389, 9293, 'nine thousand two hundred ninety-three'), (23390, 25268, 'twenty-five thousand two hundred sixty-eight'), (23391, 32198, 'thirty-two thousand one hundred ninety-eight'), (23392, 98849, 'ninety-eight thousand eight hundred forty-nine'), (23393, 46353, 'forty-six thousand three hundred fifty-three'), (23394, 98513, 'ninety-eight thousand five hundred thirteen'), (23395, 16495, 'sixteen thousand four hundred ninety-five'), (23396, 39765, 'thirty-nine thousand seven hundred sixty-five'), (23397, 19160, 'nineteen thousand one hundred sixty'), (23398, 97219, 'ninety-seven thousand two hundred nineteen'), (23399, 66678, 'sixty-six thousand six hundred seventy-eight'), (23400, 78864, 'seventy-eight thousand eight hundred sixty-four'), (23401, 23579, 'twenty-three thousand five hundred seventy-nine'), (23402, 50445, 'fifty thousand four hundred forty-five'), (23403, 49582, 'forty-nine thousand five hundred eighty-two'), (23404, 49279, 'forty-nine thousand two hundred seventy-nine'), (23405, 32229, 'thirty-two thousand two hundred twenty-nine'), (23406, 31784, 'thirty-one thousand seven hundred eighty-four'), (23407, 12278, 'twelve thousand two hundred seventy-eight'), (23408, 15041, 'fifteen thousand forty-one'), (23409, 97946, 'ninety-seven thousand nine hundred forty-six'), (23410, 34219, 'thirty-four thousand two hundred nineteen'), (23411, 69063, 'sixty-nine thousand sixty-three'), (23412, 67278, 'sixty-seven thousand two hundred seventy-eight'), (23413, 93825, 'ninety-three thousand eight hundred twenty-five'), (23414, 86096, 'eighty-six thousand ninety-six'), (23415, 69699, 'sixty-nine thousand six hundred ninety-nine'), (23416, 67540, 'sixty-seven thousand five hundred forty'), (23417, 36108, 'thirty-six thousand one hundred eight'), (23418, 14792, 'fourteen thousand seven hundred ninety-two'), (23419, 28293, 'twenty-eight thousand two hundred ninety-three'), (23420, 24306, 'twenty-four thousand three hundred six'), (23421, 65701, 'sixty-five thousand seven hundred one'), (23422, 43083, 'forty-three thousand eighty-three'), (23423, 5437, 'five thousand four hundred thirty-seven'), (23424, 75594, 'seventy-five thousand five hundred ninety-four'), (23425, 32724, 'thirty-two thousand seven hundred twenty-four'), (23426, 26494, 'twenty-six thousand four hundred ninety-four'), (23427, 51796, 'fifty-one thousand seven hundred ninety-six'), (23428, 22504, 'twenty-two thousand five hundred four'), (23429, 5493, 'five thousand four hundred ninety-three'), (23430, 28605, 'twenty-eight thousand six hundred five'), (23431, 75751, 'seventy-five thousand seven hundred fifty-one'), (23432, 14295, 'fourteen thousand two hundred ninety-five'), (23433, 95044, 'ninety-five thousand forty-four'), (23434, 22419, 'twenty-two thousand four hundred nineteen'), (23435, 92444, 'ninety-two thousand four hundred forty-four'), (23436, 18709, 'eighteen thousand seven hundred nine'), (23437, 8409, 'eight thousand four hundred nine'), (23438, 55631, 'fifty-five thousand six hundred thirty-one'), (23439, 43624, 'forty-three thousand six hundred twenty-four'), (23440, 64917, 'sixty-four thousand nine hundred seventeen'), (23441, 2672, 'two thousand six hundred seventy-two'), (23442, 94243, 'ninety-four thousand two hundred forty-three'), (23443, 3445, 'three thousand four hundred forty-five'), (23444, 93716, 'ninety-three thousand seven hundred sixteen'), (23445, 33007, 'thirty-three thousand seven'), (23446, 1623, 'one thousand six hundred twenty-three'), (23447, 63865, 'sixty-three thousand eight hundred sixty-five'), (23448, 99659, 'ninety-nine thousand six hundred fifty-nine'), (23449, 2847, 'two thousand eight hundred forty-seven'), (23450, 91135, 'ninety-one thousand one hundred thirty-five'), (23451, 68236, 'sixty-eight thousand two hundred thirty-six'), (23452, 564, 'five hundred sixty-four'), (23453, 74617, 'seventy-four thousand six hundred seventeen'), (23454, 24814, 'twenty-four thousand eight hundred fourteen'), (23455, 96192, 'ninety-six thousand one hundred ninety-two'), (23456, 59102, 'fifty-nine thousand one hundred two'), (23457, 76018, 'seventy-six thousand eighteen'), (23458, 8029, 'eight thousand twenty-nine'), (23459, 57431, 'fifty-seven thousand four hundred thirty-one'), (23460, 1815, 'one thousand eight hundred fifteen'), (23461, 17772, 'seventeen thousand seven hundred seventy-two'), (23462, 65183, 'sixty-five thousand one hundred eighty-three'), (23463, 72540, 'seventy-two thousand five hundred forty'), (23464, 24482, 'twenty-four thousand four hundred eighty-two'), (23465, 8490, 'eight thousand four hundred ninety'), (23466, 18404, 'eighteen thousand four hundred four'), (23467, 37344, 'thirty-seven thousand three hundred forty-four'), (23468, 48478, 'forty-eight thousand four hundred seventy-eight'), (23469, 98727, 'ninety-eight thousand seven hundred twenty-seven'), (23470, 52604, 'fifty-two thousand six hundred four'), (23471, 97024, 'ninety-seven thousand twenty-four'), (23472, 86328, 'eighty-six thousand three hundred twenty-eight'), (23473, 21559, 'twenty-one thousand five hundred fifty-nine'), (23474, 21147, 'twenty-one thousand one hundred forty-seven'), (23475, 15058, 'fifteen thousand fifty-eight'), (23476, 54076, 'fifty-four thousand seventy-six'), (23477, 22547, 'twenty-two thousand five hundred forty-seven'), (23478, 77433, 'seventy-seven thousand four hundred thirty-three'), (23479, 26859, 'twenty-six thousand eight hundred fifty-nine'), (23480, 21962, 'twenty-one thousand nine hundred sixty-two'), (23481, 76856, 'seventy-six thousand eight hundred fifty-six'), (23482, 27754, 'twenty-seven thousand seven hundred fifty-four'), (23483, 28591, 'twenty-eight thousand five hundred ninety-one'), (23484, 17376, 'seventeen thousand three hundred seventy-six'), (23485, 18813, 'eighteen thousand eight hundred thirteen'), (23486, 5282, 'five thousand two hundred eighty-two'), (23487, 52488, 'fifty-two thousand four hundred eighty-eight'), (23488, 10655, 'ten thousand six hundred fifty-five'), (23489, 16162, 'sixteen thousand one hundred sixty-two'), (23490, 43793, 'forty-three thousand seven hundred ninety-three'), (23491, 10226, 'ten thousand two hundred twenty-six'), (23492, 11628, 'eleven thousand six hundred twenty-eight'), (23493, 18775, 'eighteen thousand seven hundred seventy-five'), (23494, 50433, 'fifty thousand four hundred thirty-three'), (23495, 13932, 'thirteen thousand nine hundred thirty-two'), (23496, 82111, 'eighty-two thousand one hundred eleven'), (23497, 96458, 'ninety-six thousand four hundred fifty-eight'), (23498, 10118, 'ten thousand one hundred eighteen'), (23499, 95958, 'ninety-five thousand nine hundred fifty-eight'), (23500, 67526, 'sixty-seven thousand five hundred twenty-six'), (23501, 70795, 'seventy thousand seven hundred ninety-five'), (23502, 17859, 'seventeen thousand eight hundred fifty-nine'), (23503, 14355, 'fourteen thousand three hundred fifty-five'), (23504, 22810, 'twenty-two thousand eight hundred ten'), (23505, 90886, 'ninety thousand eight hundred eighty-six'), (23506, 8603, 'eight thousand six hundred three'), (23507, 84909, 'eighty-four thousand nine hundred nine'), (23508, 83846, 'eighty-three thousand eight hundred forty-six'), (23509, 71714, 'seventy-one thousand seven hundred fourteen'), (23510, 48247, 'forty-eight thousand two hundred forty-seven'), (23511, 86614, 'eighty-six thousand six hundred fourteen'), (23512, 26186, 'twenty-six thousand one hundred eighty-six'), (23513, 16558, 'sixteen thousand five hundred fifty-eight'), (23514, 30360, 'thirty thousand three hundred sixty'), (23515, 38691, 'thirty-eight thousand six hundred ninety-one'), (23516, 71548, 'seventy-one thousand five hundred forty-eight'), (23517, 54678, 'fifty-four thousand six hundred seventy-eight'), (23518, 47737, 'forty-seven thousand seven hundred thirty-seven'), (23519, 18355, 'eighteen thousand three hundred fifty-five'), (23520, 74423, 'seventy-four thousand four hundred twenty-three'), (23521, 95437, 'ninety-five thousand four hundred thirty-seven'), (23522, 9469, 'nine thousand four hundred sixty-nine'), (23523, 92722, 'ninety-two thousand seven hundred twenty-two'), (23524, 26722, 'twenty-six thousand seven hundred twenty-two'), (23525, 26761, 'twenty-six thousand seven hundred sixty-one'), (23526, 3402, 'three thousand four hundred two'), (23527, 74672, 'seventy-four thousand six hundred seventy-two'), (23528, 71706, 'seventy-one thousand seven hundred six'), (23529, 2883, 'two thousand eight hundred eighty-three'), (23530, 31197, 'thirty-one thousand one hundred ninety-seven'), (23531, 17244, 'seventeen thousand two hundred forty-four'), (23532, 37093, 'thirty-seven thousand ninety-three'), (23533, 38294, 'thirty-eight thousand two hundred ninety-four'), (23534, 61466, 'sixty-one thousand four hundred sixty-six'), (23535, 54430, 'fifty-four thousand four hundred thirty'), (23536, 87720, 'eighty-seven thousand seven hundred twenty'), (23537, 51579, 'fifty-one thousand five hundred seventy-nine'), (23538, 61482, 'sixty-one thousand four hundred eighty-two'), (23539, 93483, 'ninety-three thousand four hundred eighty-three'), (23540, 1278, 'one thousand two hundred seventy-eight'), (23541, 39606, 'thirty-nine thousand six hundred six'), (23542, 38473, 'thirty-eight thousand four hundred seventy-three'), (23543, 55195, 'fifty-five thousand one hundred ninety-five'), (23544, 64507, 'sixty-four thousand five hundred seven'), (23545, 3334, 'three thousand three hundred thirty-four'), (23546, 53799, 'fifty-three thousand seven hundred ninety-nine'), (23547, 92707, 'ninety-two thousand seven hundred seven'), (23548, 18125, 'eighteen thousand one hundred twenty-five'), (23549, 62649, 'sixty-two thousand six hundred forty-nine'), (23550, 69419, 'sixty-nine thousand four hundred nineteen'), (23551, 2370, 'two thousand three hundred seventy'), (23552, 16396, 'sixteen thousand three hundred ninety-six'), (23553, 61512, 'sixty-one thousand five hundred twelve'), (23554, 30759, 'thirty thousand seven hundred fifty-nine'), (23555, 40746, 'forty thousand seven hundred forty-six'), (23556, 10091, 'ten thousand ninety-one'), (23557, 36710, 'thirty-six thousand seven hundred ten'), (23558, 83900, 'eighty-three thousand nine hundred'), (23559, 30959, 'thirty thousand nine hundred fifty-nine'), (23560, 60182, 'sixty thousand one hundred eighty-two'), (23561, 59887, 'fifty-nine thousand eight hundred eighty-seven'), (23562, 42941, 'forty-two thousand nine hundred forty-one'), (23563, 94187, 'ninety-four thousand one hundred eighty-seven'), (23564, 5987, 'five thousand nine hundred eighty-seven'), (23565, 39046, 'thirty-nine thousand forty-six'), (23566, 7399, 'seven thousand three hundred ninety-nine'), (23567, 69957, 'sixty-nine thousand nine hundred fifty-seven'), (23568, 86820, 'eighty-six thousand eight hundred twenty'), (23569, 23573, 'twenty-three thousand five hundred seventy-three'), (23570, 54932, 'fifty-four thousand nine hundred thirty-two'), (23571, 2182, 'two thousand one hundred eighty-two'), (23572, 81298, 'eighty-one thousand two hundred ninety-eight'), (23573, 2196, 'two thousand one hundred ninety-six'), (23574, 27319, 'twenty-seven thousand three hundred nineteen'), (23575, 13215, 'thirteen thousand two hundred fifteen'), (23576, 80871, 'eighty thousand eight hundred seventy-one'), (23577, 30735, 'thirty thousand seven hundred thirty-five'), (23578, 64550, 'sixty-four thousand five hundred fifty'), (23579, 42344, 'forty-two thousand three hundred forty-four'), (23580, 4413, 'four thousand four hundred thirteen'), (23581, 26455, 'twenty-six thousand four hundred fifty-five'), (23582, 62610, 'sixty-two thousand six hundred ten'), (23583, 8899, 'eight thousand eight hundred ninety-nine'), (23584, 50846, 'fifty thousand eight hundred forty-six'), (23585, 49248, 'forty-nine thousand two hundred forty-eight'), (23586, 52575, 'fifty-two thousand five hundred seventy-five'), (23587, 57411, 'fifty-seven thousand four hundred eleven'), (23588, 25151, 'twenty-five thousand one hundred fifty-one'), (23589, 57624, 'fifty-seven thousand six hundred twenty-four'), (23590, 49571, 'forty-nine thousand five hundred seventy-one'), (23591, 67799, 'sixty-seven thousand seven hundred ninety-nine'), (23592, 40059, 'forty thousand fifty-nine'), (23593, 62167, 'sixty-two thousand one hundred sixty-seven'), (23594, 20583, 'twenty thousand five hundred eighty-three'), (23595, 24724, 'twenty-four thousand seven hundred twenty-four'), (23596, 40703, 'forty thousand seven hundred three'), (23597, 85707, 'eighty-five thousand seven hundred seven'), (23598, 38209, 'thirty-eight thousand two hundred nine'), (23599, 58826, 'fifty-eight thousand eight hundred twenty-six'), (23600, 99341, 'ninety-nine thousand three hundred forty-one'), (23601, 23133, 'twenty-three thousand one hundred thirty-three'), (23602, 73103, 'seventy-three thousand one hundred three'), (23603, 97851, 'ninety-seven thousand eight hundred fifty-one'), (23604, 79555, 'seventy-nine thousand five hundred fifty-five'), (23605, 95111, 'ninety-five thousand one hundred eleven'), (23606, 73440, 'seventy-three thousand four hundred forty'), (23607, 90824, 'ninety thousand eight hundred twenty-four'), (23608, 53358, 'fifty-three thousand three hundred fifty-eight'), (23609, 65004, 'sixty-five thousand four'), (23610, 82717, 'eighty-two thousand seven hundred seventeen'), (23611, 16867, 'sixteen thousand eight hundred sixty-seven'), (23612, 60442, 'sixty thousand four hundred forty-two'), (23613, 77593, 'seventy-seven thousand five hundred ninety-three'), (23614, 73115, 'seventy-three thousand one hundred fifteen'), (23615, 16073, 'sixteen thousand seventy-three'), (23616, 34014, 'thirty-four thousand fourteen'), (23617, 17573, 'seventeen thousand five hundred seventy-three'), (23618, 35465, 'thirty-five thousand four hundred sixty-five'), (23619, 82501, 'eighty-two thousand five hundred one'), (23620, 96795, 'ninety-six thousand seven hundred ninety-five'), (23621, 30923, 'thirty thousand nine hundred twenty-three'), (23622, 86696, 'eighty-six thousand six hundred ninety-six'), (23623, 66602, 'sixty-six thousand six hundred two'), (23624, 64764, 'sixty-four thousand seven hundred sixty-four'), (23625, 40955, 'forty thousand nine hundred fifty-five'), (23626, 17818, 'seventeen thousand eight hundred eighteen'), (23627, 14627, 'fourteen thousand six hundred twenty-seven'), (23628, 50966, 'fifty thousand nine hundred sixty-six'), (23629, 28307, 'twenty-eight thousand three hundred seven'), (23630, 5343, 'five thousand three hundred forty-three'), (23631, 75438, 'seventy-five thousand four hundred thirty-eight'), (23632, 18477, 'eighteen thousand four hundred seventy-seven'), (23633, 70317, 'seventy thousand three hundred seventeen'), (23634, 24792, 'twenty-four thousand seven hundred ninety-two'), (23635, 14079, 'fourteen thousand seventy-nine'), (23636, 71084, 'seventy-one thousand eighty-four'), (23637, 12620, 'twelve thousand six hundred twenty'), (23638, 17480, 'seventeen thousand four hundred eighty'), (23639, 24724, 'twenty-four thousand seven hundred twenty-four'), (23640, 16185, 'sixteen thousand one hundred eighty-five'), (23641, 74936, 'seventy-four thousand nine hundred thirty-six'), (23642, 86982, 'eighty-six thousand nine hundred eighty-two'), (23643, 64673, 'sixty-four thousand six hundred seventy-three'), (23644, 27413, 'twenty-seven thousand four hundred thirteen'), (23645, 76881, 'seventy-six thousand eight hundred eighty-one'), (23646, 96176, 'ninety-six thousand one hundred seventy-six'), (23647, 4524, 'four thousand five hundred twenty-four'), (23648, 38103, 'thirty-eight thousand one hundred three'), (23649, 44713, 'forty-four thousand seven hundred thirteen'), (23650, 51531, 'fifty-one thousand five hundred thirty-one'), (23651, 17723, 'seventeen thousand seven hundred twenty-three'), (23652, 33190, 'thirty-three thousand one hundred ninety'), (23653, 92518, 'ninety-two thousand five hundred eighteen'), (23654, 90485, 'ninety thousand four hundred eighty-five'), (23655, 86879, 'eighty-six thousand eight hundred seventy-nine'), (23656, 48126, 'forty-eight thousand one hundred twenty-six'), (23657, 86738, 'eighty-six thousand seven hundred thirty-eight'), (23658, 99642, 'ninety-nine thousand six hundred forty-two'), (23659, 76021, 'seventy-six thousand twenty-one'), (23660, 81664, 'eighty-one thousand six hundred sixty-four'), (23661, 50538, 'fifty thousand five hundred thirty-eight'), (23662, 51732, 'fifty-one thousand seven hundred thirty-two'), (23663, 37218, 'thirty-seven thousand two hundred eighteen'), (23664, 87061, 'eighty-seven thousand sixty-one'), (23665, 26895, 'twenty-six thousand eight hundred ninety-five'), (23666, 8686, 'eight thousand six hundred eighty-six'), (23667, 81487, 'eighty-one thousand four hundred eighty-seven'), (23668, 28329, 'twenty-eight thousand three hundred twenty-nine'), (23669, 88527, 'eighty-eight thousand five hundred twenty-seven'), (23670, 28915, 'twenty-eight thousand nine hundred fifteen'), (23671, 25845, 'twenty-five thousand eight hundred forty-five'), (23672, 42529, 'forty-two thousand five hundred twenty-nine'), (23673, 13321, 'thirteen thousand three hundred twenty-one'), (23674, 4907, 'four thousand nine hundred seven'), (23675, 28057, 'twenty-eight thousand fifty-seven'), (23676, 4316, 'four thousand three hundred sixteen'), (23677, 88438, 'eighty-eight thousand four hundred thirty-eight'), (23678, 46994, 'forty-six thousand nine hundred ninety-four'), (23679, 57761, 'fifty-seven thousand seven hundred sixty-one'), (23680, 25477, 'twenty-five thousand four hundred seventy-seven'), (23681, 56481, 'fifty-six thousand four hundred eighty-one'), (23682, 35285, 'thirty-five thousand two hundred eighty-five'), (23683, 40414, 'forty thousand four hundred fourteen'), (23684, 33727, 'thirty-three thousand seven hundred twenty-seven'), (23685, 42403, 'forty-two thousand four hundred three'), (23686, 10077, 'ten thousand seventy-seven'), (23687, 82837, 'eighty-two thousand eight hundred thirty-seven'), (23688, 89782, 'eighty-nine thousand seven hundred eighty-two'), (23689, 50995, 'fifty thousand nine hundred ninety-five'), (23690, 49859, 'forty-nine thousand eight hundred fifty-nine'), (23691, 4843, 'four thousand eight hundred forty-three'), (23692, 60366, 'sixty thousand three hundred sixty-six'), (23693, 85857, 'eighty-five thousand eight hundred fifty-seven'), (23694, 92262, 'ninety-two thousand two hundred sixty-two'), (23695, 51111, 'fifty-one thousand one hundred eleven'), (23696, 54124, 'fifty-four thousand one hundred twenty-four'), (23697, 68038, 'sixty-eight thousand thirty-eight'), (23698, 4959, 'four thousand nine hundred fifty-nine'), (23699, 78719, 'seventy-eight thousand seven hundred nineteen'), (23700, 71954, 'seventy-one thousand nine hundred fifty-four'), (23701, 50224, 'fifty thousand two hundred twenty-four'), (23702, 48630, 'forty-eight thousand six hundred thirty'), (23703, 6606, 'six thousand six hundred six'), (23704, 12784, 'twelve thousand seven hundred eighty-four'), (23705, 48375, 'forty-eight thousand three hundred seventy-five'), (23706, 59890, 'fifty-nine thousand eight hundred ninety'), (23707, 1834, 'one thousand eight hundred thirty-four'), (23708, 16932, 'sixteen thousand nine hundred thirty-two'), (23709, 93071, 'ninety-three thousand seventy-one'), (23710, 25041, 'twenty-five thousand forty-one'), (23711, 18141, 'eighteen thousand one hundred forty-one'), (23712, 66856, 'sixty-six thousand eight hundred fifty-six'), (23713, 73727, 'seventy-three thousand seven hundred twenty-seven'), (23714, 73236, 'seventy-three thousand two hundred thirty-six'), (23715, 39925, 'thirty-nine thousand nine hundred twenty-five'), (23716, 14269, 'fourteen thousand two hundred sixty-nine'), (23717, 87148, 'eighty-seven thousand one hundred forty-eight'), (23718, 45589, 'forty-five thousand five hundred eighty-nine'), (23719, 70828, 'seventy thousand eight hundred twenty-eight'), (23720, 47337, 'forty-seven thousand three hundred thirty-seven'), (23721, 57009, 'fifty-seven thousand nine'), (23722, 13121, 'thirteen thousand one hundred twenty-one'), (23723, 97971, 'ninety-seven thousand nine hundred seventy-one'), (23724, 54488, 'fifty-four thousand four hundred eighty-eight'), (23725, 76314, 'seventy-six thousand three hundred fourteen'), (23726, 37727, 'thirty-seven thousand seven hundred twenty-seven'), (23727, 45799, 'forty-five thousand seven hundred ninety-nine'), (23728, 13502, 'thirteen thousand five hundred two'), (23729, 27634, 'twenty-seven thousand six hundred thirty-four'), (23730, 42985, 'forty-two thousand nine hundred eighty-five'), (23731, 86995, 'eighty-six thousand nine hundred ninety-five'), (23732, 9107, 'nine thousand one hundred seven'), (23733, 98628, 'ninety-eight thousand six hundred twenty-eight'), (23734, 49058, 'forty-nine thousand fifty-eight'), (23735, 80684, 'eighty thousand six hundred eighty-four'), (23736, 13313, 'thirteen thousand three hundred thirteen'), (23737, 68137, 'sixty-eight thousand one hundred thirty-seven'), (23738, 13307, 'thirteen thousand three hundred seven'), (23739, 6261, 'six thousand two hundred sixty-one'), (23740, 84216, 'eighty-four thousand two hundred sixteen'), (23741, 21375, 'twenty-one thousand three hundred seventy-five'), (23742, 56627, 'fifty-six thousand six hundred twenty-seven'), (23743, 97402, 'ninety-seven thousand four hundred two'), (23744, 32714, 'thirty-two thousand seven hundred fourteen'), (23745, 72907, 'seventy-two thousand nine hundred seven'), (23746, 25554, 'twenty-five thousand five hundred fifty-four'), (23747, 90319, 'ninety thousand three hundred nineteen'), (23748, 75026, 'seventy-five thousand twenty-six'), (23749, 14558, 'fourteen thousand five hundred fifty-eight'), (23750, 39151, 'thirty-nine thousand one hundred fifty-one'), (23751, 67247, 'sixty-seven thousand two hundred forty-seven'), (23752, 34646, 'thirty-four thousand six hundred forty-six'), (23753, 8971, 'eight thousand nine hundred seventy-one'), (23754, 53488, 'fifty-three thousand four hundred eighty-eight'), (23755, 54866, 'fifty-four thousand eight hundred sixty-six'), (23756, 87762, 'eighty-seven thousand seven hundred sixty-two'), (23757, 57999, 'fifty-seven thousand nine hundred ninety-nine'), (23758, 14097, 'fourteen thousand ninety-seven'), (23759, 11700, 'eleven thousand seven hundred'), (23760, 56779, 'fifty-six thousand seven hundred seventy-nine'), (23761, 97944, 'ninety-seven thousand nine hundred forty-four'), (23762, 52631, 'fifty-two thousand six hundred thirty-one'), (23763, 26939, 'twenty-six thousand nine hundred thirty-nine'), (23764, 30676, 'thirty thousand six hundred seventy-six'), (23765, 23913, 'twenty-three thousand nine hundred thirteen'), (23766, 85419, 'eighty-five thousand four hundred nineteen'), (23767, 23862, 'twenty-three thousand eight hundred sixty-two'), (23768, 76562, 'seventy-six thousand five hundred sixty-two'), (23769, 47077, 'forty-seven thousand seventy-seven'), (23770, 27829, 'twenty-seven thousand eight hundred twenty-nine'), (23771, 72686, 'seventy-two thousand six hundred eighty-six'), (23772, 47292, 'forty-seven thousand two hundred ninety-two'), (23773, 20328, 'twenty thousand three hundred twenty-eight'), (23774, 5901, 'five thousand nine hundred one'), (23775, 39359, 'thirty-nine thousand three hundred fifty-nine'), (23776, 84815, 'eighty-four thousand eight hundred fifteen'), (23777, 84465, 'eighty-four thousand four hundred sixty-five'), (23778, 50404, 'fifty thousand four hundred four'), (23779, 7769, 'seven thousand seven hundred sixty-nine'), (23780, 17334, 'seventeen thousand three hundred thirty-four'), (23781, 54708, 'fifty-four thousand seven hundred eight'), (23782, 168, 'one hundred sixty-eight'), (23783, 27381, 'twenty-seven thousand three hundred eighty-one'), (23784, 4711, 'four thousand seven hundred eleven'), (23785, 79371, 'seventy-nine thousand three hundred seventy-one'), (23786, 28455, 'twenty-eight thousand four hundred fifty-five'), (23787, 80271, 'eighty thousand two hundred seventy-one'), (23788, 42986, 'forty-two thousand nine hundred eighty-six'), (23789, 65728, 'sixty-five thousand seven hundred twenty-eight'), (23790, 40154, 'forty thousand one hundred fifty-four'), (23791, 34146, 'thirty-four thousand one hundred forty-six'), (23792, 45928, 'forty-five thousand nine hundred twenty-eight'), (23793, 22438, 'twenty-two thousand four hundred thirty-eight'), (23794, 95764, 'ninety-five thousand seven hundred sixty-four'), (23795, 98693, 'ninety-eight thousand six hundred ninety-three'), (23796, 88040, 'eighty-eight thousand forty'), (23797, 57179, 'fifty-seven thousand one hundred seventy-nine'), (23798, 44329, 'forty-four thousand three hundred twenty-nine'), (23799, 47526, 'forty-seven thousand five hundred twenty-six'), (23800, 74130, 'seventy-four thousand one hundred thirty'), (23801, 59210, 'fifty-nine thousand two hundred ten'), (23802, 76351, 'seventy-six thousand three hundred fifty-one'), (23803, 74751, 'seventy-four thousand seven hundred fifty-one'), (23804, 5642, 'five thousand six hundred forty-two'), (23805, 81823, 'eighty-one thousand eight hundred twenty-three'), (23806, 44736, 'forty-four thousand seven hundred thirty-six'), (23807, 29374, 'twenty-nine thousand three hundred seventy-four'), (23808, 85145, 'eighty-five thousand one hundred forty-five'), (23809, 6764, 'six thousand seven hundred sixty-four'), (23810, 96775, 'ninety-six thousand seven hundred seventy-five'), (23811, 18354, 'eighteen thousand three hundred fifty-four'), (23812, 20977, 'twenty thousand nine hundred seventy-seven'), (23813, 43564, 'forty-three thousand five hundred sixty-four'), (23814, 3869, 'three thousand eight hundred sixty-nine'), (23815, 18821, 'eighteen thousand eight hundred twenty-one'), (23816, 46133, 'forty-six thousand one hundred thirty-three'), (23817, 1495, 'one thousand four hundred ninety-five'), (23818, 57541, 'fifty-seven thousand five hundred forty-one'), (23819, 72573, 'seventy-two thousand five hundred seventy-three'), (23820, 33494, 'thirty-three thousand four hundred ninety-four'), (23821, 51918, 'fifty-one thousand nine hundred eighteen'), (23822, 93391, 'ninety-three thousand three hundred ninety-one'), (23823, 58255, 'fifty-eight thousand two hundred fifty-five'), (23824, 1356, 'one thousand three hundred fifty-six'), (23825, 68965, 'sixty-eight thousand nine hundred sixty-five'), (23826, 33007, 'thirty-three thousand seven'), (23827, 3477, 'three thousand four hundred seventy-seven'), (23828, 83162, 'eighty-three thousand one hundred sixty-two'), (23829, 54242, 'fifty-four thousand two hundred forty-two'), (23830, 74037, 'seventy-four thousand thirty-seven'), (23831, 36860, 'thirty-six thousand eight hundred sixty'), (23832, 28096, 'twenty-eight thousand ninety-six'), (23833, 12737, 'twelve thousand seven hundred thirty-seven'), (23834, 79159, 'seventy-nine thousand one hundred fifty-nine'), (23835, 57547, 'fifty-seven thousand five hundred forty-seven'), (23836, 51154, 'fifty-one thousand one hundred fifty-four'), (23837, 77439, 'seventy-seven thousand four hundred thirty-nine'), (23838, 93124, 'ninety-three thousand one hundred twenty-four'), (23839, 67347, 'sixty-seven thousand three hundred forty-seven'), (23840, 39833, 'thirty-nine thousand eight hundred thirty-three'), (23841, 5447, 'five thousand four hundred forty-seven'), (23842, 12911, 'twelve thousand nine hundred eleven'), (23843, 12916, 'twelve thousand nine hundred sixteen'), (23844, 92452, 'ninety-two thousand four hundred fifty-two'), (23845, 50515, 'fifty thousand five hundred fifteen'), (23846, 15898, 'fifteen thousand eight hundred ninety-eight'), (23847, 68416, 'sixty-eight thousand four hundred sixteen'), (23848, 72179, 'seventy-two thousand one hundred seventy-nine'), (23849, 37175, 'thirty-seven thousand one hundred seventy-five'), (23850, 50495, 'fifty thousand four hundred ninety-five'), (23851, 56026, 'fifty-six thousand twenty-six'), (23852, 60961, 'sixty thousand nine hundred sixty-one'), (23853, 76351, 'seventy-six thousand three hundred fifty-one'), (23854, 73053, 'seventy-three thousand fifty-three'), (23855, 19211, 'nineteen thousand two hundred eleven'), (23856, 73516, 'seventy-three thousand five hundred sixteen'), (23857, 26319, 'twenty-six thousand three hundred nineteen'), (23858, 41276, 'forty-one thousand two hundred seventy-six'), (23859, 45926, 'forty-five thousand nine hundred twenty-six'), (23860, 5171, 'five thousand one hundred seventy-one'), (23861, 78829, 'seventy-eight thousand eight hundred twenty-nine'), (23862, 66865, 'sixty-six thousand eight hundred sixty-five'), (23863, 34401, 'thirty-four thousand four hundred one'), (23864, 55621, 'fifty-five thousand six hundred twenty-one'), (23865, 51118, 'fifty-one thousand one hundred eighteen'), (23866, 27574, 'twenty-seven thousand five hundred seventy-four'), (23867, 98813, 'ninety-eight thousand eight hundred thirteen'), (23868, 68913, 'sixty-eight thousand nine hundred thirteen'), (23869, 36079, 'thirty-six thousand seventy-nine'), (23870, 19794, 'nineteen thousand seven hundred ninety-four'), (23871, 59294, 'fifty-nine thousand two hundred ninety-four'), (23872, 82700, 'eighty-two thousand seven hundred'), (23873, 51582, 'fifty-one thousand five hundred eighty-two'), (23874, 71711, 'seventy-one thousand seven hundred eleven'), (23875, 20373, 'twenty thousand three hundred seventy-three'), (23876, 99834, 'ninety-nine thousand eight hundred thirty-four'), (23877, 18089, 'eighteen thousand eighty-nine'), (23878, 46778, 'forty-six thousand seven hundred seventy-eight'), (23879, 61674, 'sixty-one thousand six hundred seventy-four'), (23880, 35359, 'thirty-five thousand three hundred fifty-nine'), (23881, 3556, 'three thousand five hundred fifty-six'), (23882, 44793, 'forty-four thousand seven hundred ninety-three'), (23883, 46168, 'forty-six thousand one hundred sixty-eight'), (23884, 3762, 'three thousand seven hundred sixty-two'), (23885, 49049, 'forty-nine thousand forty-nine'), (23886, 47010, 'forty-seven thousand ten'), (23887, 31400, 'thirty-one thousand four hundred'), (23888, 66239, 'sixty-six thousand two hundred thirty-nine'), (23889, 2061, 'two thousand sixty-one'), (23890, 19073, 'nineteen thousand seventy-three'), (23891, 57056, 'fifty-seven thousand fifty-six'), (23892, 48949, 'forty-eight thousand nine hundred forty-nine'), (23893, 78308, 'seventy-eight thousand three hundred eight'), (23894, 40673, 'forty thousand six hundred seventy-three'), (23895, 48027, 'forty-eight thousand twenty-seven'), (23896, 91316, 'ninety-one thousand three hundred sixteen'), (23897, 64895, 'sixty-four thousand eight hundred ninety-five'), (23898, 82672, 'eighty-two thousand six hundred seventy-two'), (23899, 61551, 'sixty-one thousand five hundred fifty-one'), (23900, 26406, 'twenty-six thousand four hundred six'), (23901, 88116, 'eighty-eight thousand one hundred sixteen'), (23902, 47210, 'forty-seven thousand two hundred ten'), (23903, 67816, 'sixty-seven thousand eight hundred sixteen'), (23904, 6575, 'six thousand five hundred seventy-five'), (23905, 54459, 'fifty-four thousand four hundred fifty-nine'), (23906, 41446, 'forty-one thousand four hundred forty-six'), (23907, 84563, 'eighty-four thousand five hundred sixty-three'), (23908, 6719, 'six thousand seven hundred nineteen'), (23909, 15279, 'fifteen thousand two hundred seventy-nine'), (23910, 35365, 'thirty-five thousand three hundred sixty-five'), (23911, 33572, 'thirty-three thousand five hundred seventy-two'), (23912, 60664, 'sixty thousand six hundred sixty-four'), (23913, 780, 'seven hundred eighty'), (23914, 65557, 'sixty-five thousand five hundred fifty-seven'), (23915, 99238, 'ninety-nine thousand two hundred thirty-eight'), (23916, 31940, 'thirty-one thousand nine hundred forty'), (23917, 59345, 'fifty-nine thousand three hundred forty-five'), (23918, 30947, 'thirty thousand nine hundred forty-seven'), (23919, 8137, 'eight thousand one hundred thirty-seven'), (23920, 66843, 'sixty-six thousand eight hundred forty-three'), (23921, 52685, 'fifty-two thousand six hundred eighty-five'), (23922, 65848, 'sixty-five thousand eight hundred forty-eight'), (23923, 24628, 'twenty-four thousand six hundred twenty-eight'), (23924, 98908, 'ninety-eight thousand nine hundred eight'), (23925, 14938, 'fourteen thousand nine hundred thirty-eight'), (23926, 93863, 'ninety-three thousand eight hundred sixty-three'), (23927, 64580, 'sixty-four thousand five hundred eighty'), (23928, 50642, 'fifty thousand six hundred forty-two'), (23929, 94055, 'ninety-four thousand fifty-five'), (23930, 87291, 'eighty-seven thousand two hundred ninety-one'), (23931, 77405, 'seventy-seven thousand four hundred five'), (23932, 62586, 'sixty-two thousand five hundred eighty-six'), (23933, 58411, 'fifty-eight thousand four hundred eleven'), (23934, 30530, 'thirty thousand five hundred thirty'), (23935, 72649, 'seventy-two thousand six hundred forty-nine'), (23936, 51197, 'fifty-one thousand one hundred ninety-seven'), (23937, 52636, 'fifty-two thousand six hundred thirty-six'), (23938, 78415, 'seventy-eight thousand four hundred fifteen'), (23939, 67547, 'sixty-seven thousand five hundred forty-seven'), (23940, 12626, 'twelve thousand six hundred twenty-six'), (23941, 86230, 'eighty-six thousand two hundred thirty'), (23942, 72504, 'seventy-two thousand five hundred four'), (23943, 43234, 'forty-three thousand two hundred thirty-four'), (23944, 18554, 'eighteen thousand five hundred fifty-four'), (23945, 59763, 'fifty-nine thousand seven hundred sixty-three'), (23946, 36924, 'thirty-six thousand nine hundred twenty-four'), (23947, 75737, 'seventy-five thousand seven hundred thirty-seven'), (23948, 21297, 'twenty-one thousand two hundred ninety-seven'), (23949, 74578, 'seventy-four thousand five hundred seventy-eight'), (23950, 65189, 'sixty-five thousand one hundred eighty-nine'), (23951, 16955, 'sixteen thousand nine hundred fifty-five'), (23952, 13351, 'thirteen thousand three hundred fifty-one'), (23953, 74175, 'seventy-four thousand one hundred seventy-five'), (23954, 75675, 'seventy-five thousand six hundred seventy-five'), (23955, 31054, 'thirty-one thousand fifty-four'), (23956, 32687, 'thirty-two thousand six hundred eighty-seven'), (23957, 26821, 'twenty-six thousand eight hundred twenty-one'), (23958, 47698, 'forty-seven thousand six hundred ninety-eight'), (23959, 27589, 'twenty-seven thousand five hundred eighty-nine'), (23960, 14029, 'fourteen thousand twenty-nine'), (23961, 58632, 'fifty-eight thousand six hundred thirty-two'), (23962, 39282, 'thirty-nine thousand two hundred eighty-two'), (23963, 80040, 'eighty thousand forty'), (23964, 20882, 'twenty thousand eight hundred eighty-two'), (23965, 94832, 'ninety-four thousand eight hundred thirty-two'), (23966, 21360, 'twenty-one thousand three hundred sixty'), (23967, 87114, 'eighty-seven thousand one hundred fourteen'), (23968, 39850, 'thirty-nine thousand eight hundred fifty'), (23969, 80942, 'eighty thousand nine hundred forty-two'), (23970, 64624, 'sixty-four thousand six hundred twenty-four'), (23971, 50071, 'fifty thousand seventy-one'), (23972, 7611, 'seven thousand six hundred eleven'), (23973, 26896, 'twenty-six thousand eight hundred ninety-six'), (23974, 25091, 'twenty-five thousand ninety-one'), (23975, 55911, 'fifty-five thousand nine hundred eleven'), (23976, 78769, 'seventy-eight thousand seven hundred sixty-nine'), (23977, 61944, 'sixty-one thousand nine hundred forty-four'), (23978, 98430, 'ninety-eight thousand four hundred thirty'), (23979, 68960, 'sixty-eight thousand nine hundred sixty'), (23980, 87121, 'eighty-seven thousand one hundred twenty-one'), (23981, 98309, 'ninety-eight thousand three hundred nine'), (23982, 88462, 'eighty-eight thousand four hundred sixty-two'), (23983, 55234, 'fifty-five thousand two hundred thirty-four'), (23984, 21077, 'twenty-one thousand seventy-seven'), (23985, 90825, 'ninety thousand eight hundred twenty-five'), (23986, 25076, 'twenty-five thousand seventy-six'), (23987, 17326, 'seventeen thousand three hundred twenty-six'), (23988, 87564, 'eighty-seven thousand five hundred sixty-four'), (23989, 52365, 'fifty-two thousand three hundred sixty-five'), (23990, 14533, 'fourteen thousand five hundred thirty-three'), (23991, 28964, 'twenty-eight thousand nine hundred sixty-four'), (23992, 35622, 'thirty-five thousand six hundred twenty-two'), (23993, 86396, 'eighty-six thousand three hundred ninety-six'), (23994, 86612, 'eighty-six thousand six hundred twelve'), (23995, 49887, 'forty-nine thousand eight hundred eighty-seven'), (23996, 21185, 'twenty-one thousand one hundred eighty-five'), (23997, 19313, 'nineteen thousand three hundred thirteen'), (23998, 78892, 'seventy-eight thousand eight hundred ninety-two'), (23999, 54790, 'fifty-four thousand seven hundred ninety'), (24000, 90071, 'ninety thousand seventy-one'), (24001, 94931, 'ninety-four thousand nine hundred thirty-one'), (24002, 99001, 'ninety-nine thousand one'), (24003, 8140, 'eight thousand one hundred forty'), (24004, 23335, 'twenty-three thousand three hundred thirty-five'), (24005, 55695, 'fifty-five thousand six hundred ninety-five'), (24006, 52109, 'fifty-two thousand one hundred nine'), (24007, 33912, 'thirty-three thousand nine hundred twelve'), (24008, 55636, 'fifty-five thousand six hundred thirty-six'), (24009, 27909, 'twenty-seven thousand nine hundred nine'), (24010, 55259, 'fifty-five thousand two hundred fifty-nine'), (24011, 49855, 'forty-nine thousand eight hundred fifty-five'), (24012, 20303, 'twenty thousand three hundred three'), (24013, 4110, 'four thousand one hundred ten'), (24014, 8022, 'eight thousand twenty-two'), (24015, 93612, 'ninety-three thousand six hundred twelve'), (24016, 65783, 'sixty-five thousand seven hundred eighty-three'), (24017, 95618, 'ninety-five thousand six hundred eighteen'), (24018, 12357, 'twelve thousand three hundred fifty-seven'), (24019, 23889, 'twenty-three thousand eight hundred eighty-nine'), (24020, 53220, 'fifty-three thousand two hundred twenty'), (24021, 43163, 'forty-three thousand one hundred sixty-three'), (24022, 1629, 'one thousand six hundred twenty-nine'), (24023, 36, 'thirty-six'), (24024, 31719, 'thirty-one thousand seven hundred nineteen'), (24025, 59172, 'fifty-nine thousand one hundred seventy-two'), (24026, 76172, 'seventy-six thousand one hundred seventy-two'), (24027, 21949, 'twenty-one thousand nine hundred forty-nine'), (24028, 54965, 'fifty-four thousand nine hundred sixty-five'), (24029, 21240, 'twenty-one thousand two hundred forty'), (24030, 26377, 'twenty-six thousand three hundred seventy-seven'), (24031, 45731, 'forty-five thousand seven hundred thirty-one'), (24032, 7966, 'seven thousand nine hundred sixty-six'), (24033, 39163, 'thirty-nine thousand one hundred sixty-three'), (24034, 47215, 'forty-seven thousand two hundred fifteen'), (24035, 83299, 'eighty-three thousand two hundred ninety-nine'), (24036, 15845, 'fifteen thousand eight hundred forty-five'), (24037, 87940, 'eighty-seven thousand nine hundred forty'), (24038, 15816, 'fifteen thousand eight hundred sixteen'), (24039, 29868, 'twenty-nine thousand eight hundred sixty-eight'), (24040, 37258, 'thirty-seven thousand two hundred fifty-eight'), (24041, 40164, 'forty thousand one hundred sixty-four'), (24042, 3427, 'three thousand four hundred twenty-seven'), (24043, 88676, 'eighty-eight thousand six hundred seventy-six'), (24044, 19320, 'nineteen thousand three hundred twenty'), (24045, 54068, 'fifty-four thousand sixty-eight'), (24046, 87190, 'eighty-seven thousand one hundred ninety'), (24047, 66933, 'sixty-six thousand nine hundred thirty-three'), (24048, 23351, 'twenty-three thousand three hundred fifty-one'), (24049, 21806, 'twenty-one thousand eight hundred six'), (24050, 62236, 'sixty-two thousand two hundred thirty-six'), (24051, 54484, 'fifty-four thousand four hundred eighty-four'), (24052, 29894, 'twenty-nine thousand eight hundred ninety-four'), (24053, 97769, 'ninety-seven thousand seven hundred sixty-nine'), (24054, 95203, 'ninety-five thousand two hundred three'), (24055, 75525, 'seventy-five thousand five hundred twenty-five'), (24056, 30261, 'thirty thousand two hundred sixty-one'), (24057, 44374, 'forty-four thousand three hundred seventy-four'), (24058, 49104, 'forty-nine thousand one hundred four'), (24059, 92160, 'ninety-two thousand one hundred sixty'), (24060, 36988, 'thirty-six thousand nine hundred eighty-eight'), (24061, 46423, 'forty-six thousand four hundred twenty-three'), (24062, 74489, 'seventy-four thousand four hundred eighty-nine'), (24063, 16584, 'sixteen thousand five hundred eighty-four'), (24064, 5688, 'five thousand six hundred eighty-eight'), (24065, 92117, 'ninety-two thousand one hundred seventeen'), (24066, 90923, 'ninety thousand nine hundred twenty-three'), (24067, 21477, 'twenty-one thousand four hundred seventy-seven'), (24068, 70451, 'seventy thousand four hundred fifty-one'), (24069, 14295, 'fourteen thousand two hundred ninety-five'), (24070, 81918, 'eighty-one thousand nine hundred eighteen'), (24071, 26764, 'twenty-six thousand seven hundred sixty-four'), (24072, 60454, 'sixty thousand four hundred fifty-four'), (24073, 16923, 'sixteen thousand nine hundred twenty-three'), (24074, 22959, 'twenty-two thousand nine hundred fifty-nine'), (24075, 2292, 'two thousand two hundred ninety-two'), (24076, 71398, 'seventy-one thousand three hundred ninety-eight'), (24077, 56500, 'fifty-six thousand five hundred'), (24078, 35466, 'thirty-five thousand four hundred sixty-six'), (24079, 60552, 'sixty thousand five hundred fifty-two'), (24080, 39432, 'thirty-nine thousand four hundred thirty-two'), (24081, 22183, 'twenty-two thousand one hundred eighty-three'), (24082, 20019, 'twenty thousand nineteen'), (24083, 84798, 'eighty-four thousand seven hundred ninety-eight'), (24084, 35652, 'thirty-five thousand six hundred fifty-two'), (24085, 43387, 'forty-three thousand three hundred eighty-seven'), (24086, 41270, 'forty-one thousand two hundred seventy'), (24087, 57567, 'fifty-seven thousand five hundred sixty-seven'), (24088, 56276, 'fifty-six thousand two hundred seventy-six'), (24089, 49037, 'forty-nine thousand thirty-seven'), (24090, 96718, 'ninety-six thousand seven hundred eighteen'), (24091, 83590, 'eighty-three thousand five hundred ninety'), (24092, 52886, 'fifty-two thousand eight hundred eighty-six'), (24093, 59046, 'fifty-nine thousand forty-six'), (24094, 50641, 'fifty thousand six hundred forty-one'), (24095, 41908, 'forty-one thousand nine hundred eight'), (24096, 56235, 'fifty-six thousand two hundred thirty-five'), (24097, 68318, 'sixty-eight thousand three hundred eighteen'), (24098, 20710, 'twenty thousand seven hundred ten'), (24099, 74069, 'seventy-four thousand sixty-nine'), (24100, 99157, 'ninety-nine thousand one hundred fifty-seven'), (24101, 34599, 'thirty-four thousand five hundred ninety-nine'), (24102, 55257, 'fifty-five thousand two hundred fifty-seven'), (24103, 75281, 'seventy-five thousand two hundred eighty-one'), (24104, 54087, 'fifty-four thousand eighty-seven'), (24105, 71767, 'seventy-one thousand seven hundred sixty-seven'), (24106, 6888, 'six thousand eight hundred eighty-eight'), (24107, 84461, 'eighty-four thousand four hundred sixty-one'), (24108, 51451, 'fifty-one thousand four hundred fifty-one'), (24109, 85769, 'eighty-five thousand seven hundred sixty-nine'), (24110, 16592, 'sixteen thousand five hundred ninety-two'), (24111, 1479, 'one thousand four hundred seventy-nine'), (24112, 58823, 'fifty-eight thousand eight hundred twenty-three'), (24113, 70422, 'seventy thousand four hundred twenty-two'), (24114, 87284, 'eighty-seven thousand two hundred eighty-four'), (24115, 1718, 'one thousand seven hundred eighteen'), (24116, 87246, 'eighty-seven thousand two hundred forty-six'), (24117, 16900, 'sixteen thousand nine hundred'), (24118, 7435, 'seven thousand four hundred thirty-five'), (24119, 45711, 'forty-five thousand seven hundred eleven'), (24120, 40317, 'forty thousand three hundred seventeen'), (24121, 79996, 'seventy-nine thousand nine hundred ninety-six'), (24122, 2859, 'two thousand eight hundred fifty-nine'), (24123, 6234, 'six thousand two hundred thirty-four'), (24124, 77863, 'seventy-seven thousand eight hundred sixty-three'), (24125, 73021, 'seventy-three thousand twenty-one'), (24126, 45377, 'forty-five thousand three hundred seventy-seven'), (24127, 17756, 'seventeen thousand seven hundred fifty-six'), (24128, 744, 'seven hundred forty-four'), (24129, 37629, 'thirty-seven thousand six hundred twenty-nine'), (24130, 75416, 'seventy-five thousand four hundred sixteen'), (24131, 88361, 'eighty-eight thousand three hundred sixty-one'), (24132, 86522, 'eighty-six thousand five hundred twenty-two'), (24133, 55572, 'fifty-five thousand five hundred seventy-two'), (24134, 94502, 'ninety-four thousand five hundred two'), (24135, 66135, 'sixty-six thousand one hundred thirty-five'), (24136, 19773, 'nineteen thousand seven hundred seventy-three'), (24137, 5160, 'five thousand one hundred sixty'), (24138, 57793, 'fifty-seven thousand seven hundred ninety-three'), (24139, 96035, 'ninety-six thousand thirty-five'), (24140, 90243, 'ninety thousand two hundred forty-three'), (24141, 96147, 'ninety-six thousand one hundred forty-seven'), (24142, 50901, 'fifty thousand nine hundred one'), (24143, 61566, 'sixty-one thousand five hundred sixty-six'), (24144, 26813, 'twenty-six thousand eight hundred thirteen'), (24145, 36899, 'thirty-six thousand eight hundred ninety-nine'), (24146, 63756, 'sixty-three thousand seven hundred fifty-six'), (24147, 86063, 'eighty-six thousand sixty-three'), (24148, 18273, 'eighteen thousand two hundred seventy-three'), (24149, 32548, 'thirty-two thousand five hundred forty-eight'), (24150, 49109, 'forty-nine thousand one hundred nine'), (24151, 26996, 'twenty-six thousand nine hundred ninety-six'), (24152, 80234, 'eighty thousand two hundred thirty-four'), (24153, 91248, 'ninety-one thousand two hundred forty-eight'), (24154, 84814, 'eighty-four thousand eight hundred fourteen'), (24155, 45555, 'forty-five thousand five hundred fifty-five'), (24156, 20686, 'twenty thousand six hundred eighty-six'), (24157, 1059, 'one thousand fifty-nine'), (24158, 70472, 'seventy thousand four hundred seventy-two'), (24159, 9753, 'nine thousand seven hundred fifty-three'), (24160, 74767, 'seventy-four thousand seven hundred sixty-seven'), (24161, 42393, 'forty-two thousand three hundred ninety-three'), (24162, 6867, 'six thousand eight hundred sixty-seven'), (24163, 36977, 'thirty-six thousand nine hundred seventy-seven'), (24164, 82076, 'eighty-two thousand seventy-six'), (24165, 57751, 'fifty-seven thousand seven hundred fifty-one'), (24166, 62165, 'sixty-two thousand one hundred sixty-five'), (24167, 76151, 'seventy-six thousand one hundred fifty-one'), (24168, 27540, 'twenty-seven thousand five hundred forty'), (24169, 5612, 'five thousand six hundred twelve'), (24170, 46837, 'forty-six thousand eight hundred thirty-seven'), (24171, 86651, 'eighty-six thousand six hundred fifty-one'), (24172, 1344, 'one thousand three hundred forty-four'), (24173, 27004, 'twenty-seven thousand four'), (24174, 32518, 'thirty-two thousand five hundred eighteen'), (24175, 35958, 'thirty-five thousand nine hundred fifty-eight'), (24176, 73739, 'seventy-three thousand seven hundred thirty-nine'), (24177, 99477, 'ninety-nine thousand four hundred seventy-seven'), (24178, 42384, 'forty-two thousand three hundred eighty-four'), (24179, 57017, 'fifty-seven thousand seventeen'), (24180, 30865, 'thirty thousand eight hundred sixty-five'), (24181, 6790, 'six thousand seven hundred ninety'), (24182, 46218, 'forty-six thousand two hundred eighteen'), (24183, 63425, 'sixty-three thousand four hundred twenty-five'), (24184, 1656, 'one thousand six hundred fifty-six'), (24185, 60484, 'sixty thousand four hundred eighty-four'), (24186, 57439, 'fifty-seven thousand four hundred thirty-nine'), (24187, 26347, 'twenty-six thousand three hundred forty-seven'), (24188, 99269, 'ninety-nine thousand two hundred sixty-nine'), (24189, 85963, 'eighty-five thousand nine hundred sixty-three'), (24190, 60815, 'sixty thousand eight hundred fifteen'), (24191, 61964, 'sixty-one thousand nine hundred sixty-four'), (24192, 70323, 'seventy thousand three hundred twenty-three'), (24193, 43133, 'forty-three thousand one hundred thirty-three'), (24194, 54654, 'fifty-four thousand six hundred fifty-four'), (24195, 65737, 'sixty-five thousand seven hundred thirty-seven'), (24196, 19142, 'nineteen thousand one hundred forty-two'), (24197, 82550, 'eighty-two thousand five hundred fifty'), (24198, 30351, 'thirty thousand three hundred fifty-one'), (24199, 90266, 'ninety thousand two hundred sixty-six'), (24200, 20746, 'twenty thousand seven hundred forty-six'), (24201, 87818, 'eighty-seven thousand eight hundred eighteen'), (24202, 6139, 'six thousand one hundred thirty-nine'), (24203, 53332, 'fifty-three thousand three hundred thirty-two'), (24204, 23784, 'twenty-three thousand seven hundred eighty-four'), (24205, 34886, 'thirty-four thousand eight hundred eighty-six'), (24206, 76745, 'seventy-six thousand seven hundred forty-five'), (24207, 88544, 'eighty-eight thousand five hundred forty-four'), (24208, 39137, 'thirty-nine thousand one hundred thirty-seven'), (24209, 32481, 'thirty-two thousand four hundred eighty-one'), (24210, 30267, 'thirty thousand two hundred sixty-seven'), (24211, 83100, 'eighty-three thousand one hundred'), (24212, 18315, 'eighteen thousand three hundred fifteen'), (24213, 30801, 'thirty thousand eight hundred one'), (24214, 71607, 'seventy-one thousand six hundred seven'), (24215, 88756, 'eighty-eight thousand seven hundred fifty-six'), (24216, 85504, 'eighty-five thousand five hundred four'), (24217, 32305, 'thirty-two thousand three hundred five'), (24218, 10714, 'ten thousand seven hundred fourteen'), (24219, 90610, 'ninety thousand six hundred ten'), (24220, 75072, 'seventy-five thousand seventy-two'), (24221, 99570, 'ninety-nine thousand five hundred seventy'), (24222, 9757, 'nine thousand seven hundred fifty-seven'), (24223, 49580, 'forty-nine thousand five hundred eighty'), (24224, 55609, 'fifty-five thousand six hundred nine'), (24225, 17004, 'seventeen thousand four'), (24226, 20095, 'twenty thousand ninety-five'), (24227, 85427, 'eighty-five thousand four hundred twenty-seven'), (24228, 90566, 'ninety thousand five hundred sixty-six'), (24229, 70564, 'seventy thousand five hundred sixty-four'), (24230, 54460, 'fifty-four thousand four hundred sixty'), (24231, 18412, 'eighteen thousand four hundred twelve'), (24232, 21185, 'twenty-one thousand one hundred eighty-five'), (24233, 60896, 'sixty thousand eight hundred ninety-six'), (24234, 30189, 'thirty thousand one hundred eighty-nine'), (24235, 3247, 'three thousand two hundred forty-seven'), (24236, 75625, 'seventy-five thousand six hundred twenty-five'), (24237, 14206, 'fourteen thousand two hundred six'), (24238, 61125, 'sixty-one thousand one hundred twenty-five'), (24239, 60035, 'sixty thousand thirty-five'), (24240, 46132, 'forty-six thousand one hundred thirty-two'), (24241, 4114, 'four thousand one hundred fourteen'), (24242, 67192, 'sixty-seven thousand one hundred ninety-two'), (24243, 34113, 'thirty-four thousand one hundred thirteen'), (24244, 89568, 'eighty-nine thousand five hundred sixty-eight'), (24245, 67747, 'sixty-seven thousand seven hundred forty-seven'), (24246, 90778, 'ninety thousand seven hundred seventy-eight'), (24247, 55695, 'fifty-five thousand six hundred ninety-five'), (24248, 4052, 'four thousand fifty-two'), (24249, 9363, 'nine thousand three hundred sixty-three'), (24250, 47164, 'forty-seven thousand one hundred sixty-four'), (24251, 89184, 'eighty-nine thousand one hundred eighty-four'), (24252, 45096, 'forty-five thousand ninety-six'), (24253, 92163, 'ninety-two thousand one hundred sixty-three'), (24254, 29439, 'twenty-nine thousand four hundred thirty-nine'), (24255, 70999, 'seventy thousand nine hundred ninety-nine'), (24256, 7325, 'seven thousand three hundred twenty-five'), (24257, 81525, 'eighty-one thousand five hundred twenty-five'), (24258, 34198, 'thirty-four thousand one hundred ninety-eight'), (24259, 87047, 'eighty-seven thousand forty-seven'), (24260, 95417, 'ninety-five thousand four hundred seventeen'), (24261, 12295, 'twelve thousand two hundred ninety-five'), (24262, 53309, 'fifty-three thousand three hundred nine'), (24263, 94748, 'ninety-four thousand seven hundred forty-eight'), (24264, 51279, 'fifty-one thousand two hundred seventy-nine'), (24265, 9246, 'nine thousand two hundred forty-six'), (24266, 26322, 'twenty-six thousand three hundred twenty-two'), (24267, 99822, 'ninety-nine thousand eight hundred twenty-two'), (24268, 22495, 'twenty-two thousand four hundred ninety-five'), (24269, 86576, 'eighty-six thousand five hundred seventy-six'), (24270, 6341, 'six thousand three hundred forty-one'), (24271, 19839, 'nineteen thousand eight hundred thirty-nine'), (24272, 14212, 'fourteen thousand two hundred twelve'), (24273, 7512, 'seven thousand five hundred twelve'), (24274, 3569, 'three thousand five hundred sixty-nine'), (24275, 30740, 'thirty thousand seven hundred forty'), (24276, 22887, 'twenty-two thousand eight hundred eighty-seven'), (24277, 90008, 'ninety thousand eight'), (24278, 11432, 'eleven thousand four hundred thirty-two'), (24279, 9524, 'nine thousand five hundred twenty-four'), (24280, 8545, 'eight thousand five hundred forty-five'), (24281, 24301, 'twenty-four thousand three hundred one'), (24282, 27592, 'twenty-seven thousand five hundred ninety-two'), (24283, 46187, 'forty-six thousand one hundred eighty-seven'), (24284, 87906, 'eighty-seven thousand nine hundred six'), (24285, 82874, 'eighty-two thousand eight hundred seventy-four'), (24286, 14103, 'fourteen thousand one hundred three'), (24287, 36336, 'thirty-six thousand three hundred thirty-six'), (24288, 413, 'four hundred thirteen'), (24289, 80380, 'eighty thousand three hundred eighty'), (24290, 12130, 'twelve thousand one hundred thirty'), (24291, 33388, 'thirty-three thousand three hundred eighty-eight'), (24292, 27234, 'twenty-seven thousand two hundred thirty-four'), (24293, 23303, 'twenty-three thousand three hundred three'), (24294, 23785, 'twenty-three thousand seven hundred eighty-five'), (24295, 58047, 'fifty-eight thousand forty-seven'), (24296, 86222, 'eighty-six thousand two hundred twenty-two'), (24297, 72942, 'seventy-two thousand nine hundred forty-two'), (24298, 34234, 'thirty-four thousand two hundred thirty-four'), (24299, 95952, 'ninety-five thousand nine hundred fifty-two'), (24300, 67529, 'sixty-seven thousand five hundred twenty-nine'), (24301, 20170, 'twenty thousand one hundred seventy'), (24302, 16044, 'sixteen thousand forty-four'), (24303, 13010, 'thirteen thousand ten'), (24304, 61784, 'sixty-one thousand seven hundred eighty-four'), (24305, 67607, 'sixty-seven thousand six hundred seven'), (24306, 66520, 'sixty-six thousand five hundred twenty'), (24307, 24561, 'twenty-four thousand five hundred sixty-one'), (24308, 21322, 'twenty-one thousand three hundred twenty-two'), (24309, 91048, 'ninety-one thousand forty-eight'), (24310, 62144, 'sixty-two thousand one hundred forty-four'), (24311, 82240, 'eighty-two thousand two hundred forty'), (24312, 37167, 'thirty-seven thousand one hundred sixty-seven'), (24313, 64451, 'sixty-four thousand four hundred fifty-one'), (24314, 77498, 'seventy-seven thousand four hundred ninety-eight'), (24315, 92266, 'ninety-two thousand two hundred sixty-six'), (24316, 98716, 'ninety-eight thousand seven hundred sixteen'), (24317, 86872, 'eighty-six thousand eight hundred seventy-two'), (24318, 23925, 'twenty-three thousand nine hundred twenty-five'), (24319, 99540, 'ninety-nine thousand five hundred forty'), (24320, 17365, 'seventeen thousand three hundred sixty-five'), (24321, 37740, 'thirty-seven thousand seven hundred forty'), (24322, 4820, 'four thousand eight hundred twenty'), (24323, 42174, 'forty-two thousand one hundred seventy-four'), (24324, 70809, 'seventy thousand eight hundred nine'), (24325, 40942, 'forty thousand nine hundred forty-two'), (24326, 16925, 'sixteen thousand nine hundred twenty-five'), (24327, 33847, 'thirty-three thousand eight hundred forty-seven'), (24328, 16270, 'sixteen thousand two hundred seventy'), (24329, 49039, 'forty-nine thousand thirty-nine'), (24330, 97879, 'ninety-seven thousand eight hundred seventy-nine'), (24331, 38094, 'thirty-eight thousand ninety-four'), (24332, 10820, 'ten thousand eight hundred twenty'), (24333, 42248, 'forty-two thousand two hundred forty-eight'), (24334, 4932, 'four thousand nine hundred thirty-two'), (24335, 94550, 'ninety-four thousand five hundred fifty'), (24336, 44146, 'forty-four thousand one hundred forty-six'), (24337, 68447, 'sixty-eight thousand four hundred forty-seven'), (24338, 4194, 'four thousand one hundred ninety-four'), (24339, 35231, 'thirty-five thousand two hundred thirty-one'), (24340, 14755, 'fourteen thousand seven hundred fifty-five'), (24341, 44146, 'forty-four thousand one hundred forty-six'), (24342, 38066, 'thirty-eight thousand sixty-six'), (24343, 22902, 'twenty-two thousand nine hundred two'), (24344, 93823, 'ninety-three thousand eight hundred twenty-three'), (24345, 86633, 'eighty-six thousand six hundred thirty-three'), (24346, 72782, 'seventy-two thousand seven hundred eighty-two'), (24347, 27207, 'twenty-seven thousand two hundred seven'), (24348, 68015, 'sixty-eight thousand fifteen'), (24349, 30868, 'thirty thousand eight hundred sixty-eight'), (24350, 70852, 'seventy thousand eight hundred fifty-two'), (24351, 56358, 'fifty-six thousand three hundred fifty-eight'), (24352, 57722, 'fifty-seven thousand seven hundred twenty-two'), (24353, 67819, 'sixty-seven thousand eight hundred nineteen'), (24354, 869, 'eight hundred sixty-nine'), (24355, 23457, 'twenty-three thousand four hundred fifty-seven'), (24356, 72507, 'seventy-two thousand five hundred seven'), (24357, 90593, 'ninety thousand five hundred ninety-three'), (24358, 29056, 'twenty-nine thousand fifty-six'), (24359, 73383, 'seventy-three thousand three hundred eighty-three'), (24360, 81575, 'eighty-one thousand five hundred seventy-five'), (24361, 52289, 'fifty-two thousand two hundred eighty-nine'), (24362, 48070, 'forty-eight thousand seventy'), (24363, 2194, 'two thousand one hundred ninety-four'), (24364, 88547, 'eighty-eight thousand five hundred forty-seven'), (24365, 37819, 'thirty-seven thousand eight hundred nineteen'), (24366, 50800, 'fifty thousand eight hundred'), (24367, 47428, 'forty-seven thousand four hundred twenty-eight'), (24368, 75210, 'seventy-five thousand two hundred ten'), (24369, 82060, 'eighty-two thousand sixty'), (24370, 70475, 'seventy thousand four hundred seventy-five'), (24371, 90114, 'ninety thousand one hundred fourteen'), (24372, 2140, 'two thousand one hundred forty'), (24373, 38748, 'thirty-eight thousand seven hundred forty-eight'), (24374, 38895, 'thirty-eight thousand eight hundred ninety-five'), (24375, 56230, 'fifty-six thousand two hundred thirty'), (24376, 89212, 'eighty-nine thousand two hundred twelve'), (24377, 50995, 'fifty thousand nine hundred ninety-five'), (24378, 8667, 'eight thousand six hundred sixty-seven'), (24379, 76985, 'seventy-six thousand nine hundred eighty-five'), (24380, 19323, 'nineteen thousand three hundred twenty-three'), (24381, 28715, 'twenty-eight thousand seven hundred fifteen'), (24382, 95333, 'ninety-five thousand three hundred thirty-three'), (24383, 87775, 'eighty-seven thousand seven hundred seventy-five'), (24384, 79217, 'seventy-nine thousand two hundred seventeen'), (24385, 17528, 'seventeen thousand five hundred twenty-eight'), (24386, 19807, 'nineteen thousand eight hundred seven'), (24387, 50780, 'fifty thousand seven hundred eighty'), (24388, 1177, 'one thousand one hundred seventy-seven'), (24389, 2770, 'two thousand seven hundred seventy'), (24390, 23640, 'twenty-three thousand six hundred forty'), (24391, 3431, 'three thousand four hundred thirty-one'), (24392, 38215, 'thirty-eight thousand two hundred fifteen'), (24393, 54120, 'fifty-four thousand one hundred twenty'), (24394, 27689, 'twenty-seven thousand six hundred eighty-nine'), (24395, 76466, 'seventy-six thousand four hundred sixty-six'), (24396, 11482, 'eleven thousand four hundred eighty-two'), (24397, 34690, 'thirty-four thousand six hundred ninety'), (24398, 16757, 'sixteen thousand seven hundred fifty-seven'), (24399, 2875, 'two thousand eight hundred seventy-five'), (24400, 68747, 'sixty-eight thousand seven hundred forty-seven'), (24401, 67288, 'sixty-seven thousand two hundred eighty-eight'), (24402, 93617, 'ninety-three thousand six hundred seventeen'), (24403, 35251, 'thirty-five thousand two hundred fifty-one'), (24404, 9498, 'nine thousand four hundred ninety-eight'), (24405, 96559, 'ninety-six thousand five hundred fifty-nine'), (24406, 91503, 'ninety-one thousand five hundred three'), (24407, 66708, 'sixty-six thousand seven hundred eight'), (24408, 61119, 'sixty-one thousand one hundred nineteen'), (24409, 48100, 'forty-eight thousand one hundred'), (24410, 40588, 'forty thousand five hundred eighty-eight'), (24411, 16282, 'sixteen thousand two hundred eighty-two'), (24412, 19994, 'nineteen thousand nine hundred ninety-four'), (24413, 93293, 'ninety-three thousand two hundred ninety-three'), (24414, 75901, 'seventy-five thousand nine hundred one'), (24415, 62213, 'sixty-two thousand two hundred thirteen'), (24416, 45938, 'forty-five thousand nine hundred thirty-eight'), (24417, 23092, 'twenty-three thousand ninety-two'), (24418, 10660, 'ten thousand six hundred sixty'), (24419, 90159, 'ninety thousand one hundred fifty-nine'), (24420, 35123, 'thirty-five thousand one hundred twenty-three'), (24421, 77560, 'seventy-seven thousand five hundred sixty'), (24422, 34337, 'thirty-four thousand three hundred thirty-seven'), (24423, 90351, 'ninety thousand three hundred fifty-one'), (24424, 37659, 'thirty-seven thousand six hundred fifty-nine'), (24425, 35335, 'thirty-five thousand three hundred thirty-five'), (24426, 93515, 'ninety-three thousand five hundred fifteen'), (24427, 19652, 'nineteen thousand six hundred fifty-two'), (24428, 86115, 'eighty-six thousand one hundred fifteen'), (24429, 27073, 'twenty-seven thousand seventy-three'), (24430, 14415, 'fourteen thousand four hundred fifteen'), (24431, 47214, 'forty-seven thousand two hundred fourteen'), (24432, 48815, 'forty-eight thousand eight hundred fifteen'), (24433, 24870, 'twenty-four thousand eight hundred seventy'), (24434, 58889, 'fifty-eight thousand eight hundred eighty-nine'), (24435, 71158, 'seventy-one thousand one hundred fifty-eight'), (24436, 39961, 'thirty-nine thousand nine hundred sixty-one'), (24437, 98540, 'ninety-eight thousand five hundred forty'), (24438, 37466, 'thirty-seven thousand four hundred sixty-six'), (24439, 56040, 'fifty-six thousand forty'), (24440, 70629, 'seventy thousand six hundred twenty-nine'), (24441, 37860, 'thirty-seven thousand eight hundred sixty'), (24442, 15740, 'fifteen thousand seven hundred forty'), (24443, 93234, 'ninety-three thousand two hundred thirty-four'), (24444, 89390, 'eighty-nine thousand three hundred ninety'), (24445, 14526, 'fourteen thousand five hundred twenty-six'), (24446, 97962, 'ninety-seven thousand nine hundred sixty-two'), (24447, 42909, 'forty-two thousand nine hundred nine'), (24448, 74360, 'seventy-four thousand three hundred sixty'), (24449, 60817, 'sixty thousand eight hundred seventeen'), (24450, 25841, 'twenty-five thousand eight hundred forty-one'), (24451, 9101, 'nine thousand one hundred one'), (24452, 18890, 'eighteen thousand eight hundred ninety'), (24453, 81233, 'eighty-one thousand two hundred thirty-three'), (24454, 92974, 'ninety-two thousand nine hundred seventy-four'), (24455, 89356, 'eighty-nine thousand three hundred fifty-six'), (24456, 18243, 'eighteen thousand two hundred forty-three'), (24457, 98125, 'ninety-eight thousand one hundred twenty-five'), (24458, 52567, 'fifty-two thousand five hundred sixty-seven'), (24459, 3050, 'three thousand fifty'), (24460, 98478, 'ninety-eight thousand four hundred seventy-eight'), (24461, 55677, 'fifty-five thousand six hundred seventy-seven'), (24462, 90817, 'ninety thousand eight hundred seventeen'), (24463, 15455, 'fifteen thousand four hundred fifty-five'), (24464, 84762, 'eighty-four thousand seven hundred sixty-two'), (24465, 73081, 'seventy-three thousand eighty-one'), (24466, 15422, 'fifteen thousand four hundred twenty-two'), (24467, 24890, 'twenty-four thousand eight hundred ninety'), (24468, 90029, 'ninety thousand twenty-nine'), (24469, 61562, 'sixty-one thousand five hundred sixty-two'), (24470, 29744, 'twenty-nine thousand seven hundred forty-four'), (24471, 58936, 'fifty-eight thousand nine hundred thirty-six'), (24472, 71971, 'seventy-one thousand nine hundred seventy-one'), (24473, 70982, 'seventy thousand nine hundred eighty-two'), (24474, 41725, 'forty-one thousand seven hundred twenty-five'), (24475, 92927, 'ninety-two thousand nine hundred twenty-seven'), (24476, 33862, 'thirty-three thousand eight hundred sixty-two'), (24477, 93382, 'ninety-three thousand three hundred eighty-two'), (24478, 77954, 'seventy-seven thousand nine hundred fifty-four'), (24479, 15383, 'fifteen thousand three hundred eighty-three'), (24480, 28813, 'twenty-eight thousand eight hundred thirteen'), (24481, 5512, 'five thousand five hundred twelve'), (24482, 51480, 'fifty-one thousand four hundred eighty'), (24483, 6514, 'six thousand five hundred fourteen'), (24484, 30236, 'thirty thousand two hundred thirty-six'), (24485, 11104, 'eleven thousand one hundred four'), (24486, 86824, 'eighty-six thousand eight hundred twenty-four'), (24487, 78228, 'seventy-eight thousand two hundred twenty-eight'), (24488, 41145, 'forty-one thousand one hundred forty-five'), (24489, 29657, 'twenty-nine thousand six hundred fifty-seven'), (24490, 85757, 'eighty-five thousand seven hundred fifty-seven'), (24491, 69398, 'sixty-nine thousand three hundred ninety-eight'), (24492, 79563, 'seventy-nine thousand five hundred sixty-three'), (24493, 92682, 'ninety-two thousand six hundred eighty-two'), (24494, 2935, 'two thousand nine hundred thirty-five'), (24495, 35906, 'thirty-five thousand nine hundred six'), (24496, 75457, 'seventy-five thousand four hundred fifty-seven'), (24497, 26969, 'twenty-six thousand nine hundred sixty-nine'), (24498, 92773, 'ninety-two thousand seven hundred seventy-three'), (24499, 31957, 'thirty-one thousand nine hundred fifty-seven'), (24500, 70185, 'seventy thousand one hundred eighty-five'), (24501, 29928, 'twenty-nine thousand nine hundred twenty-eight'), (24502, 32432, 'thirty-two thousand four hundred thirty-two'), (24503, 25115, 'twenty-five thousand one hundred fifteen'), (24504, 50198, 'fifty thousand one hundred ninety-eight'), (24505, 79471, 'seventy-nine thousand four hundred seventy-one'), (24506, 42183, 'forty-two thousand one hundred eighty-three'), (24507, 84705, 'eighty-four thousand seven hundred five'), (24508, 46781, 'forty-six thousand seven hundred eighty-one'), (24509, 3406, 'three thousand four hundred six'), (24510, 82340, 'eighty-two thousand three hundred forty'), (24511, 72548, 'seventy-two thousand five hundred forty-eight'), (24512, 69097, 'sixty-nine thousand ninety-seven'), (24513, 78159, 'seventy-eight thousand one hundred fifty-nine'), (24514, 7241, 'seven thousand two hundred forty-one'), (24515, 11154, 'eleven thousand one hundred fifty-four'), (24516, 72759, 'seventy-two thousand seven hundred fifty-nine'), (24517, 37411, 'thirty-seven thousand four hundred eleven'), (24518, 90691, 'ninety thousand six hundred ninety-one'), (24519, 17329, 'seventeen thousand three hundred twenty-nine'), (24520, 21136, 'twenty-one thousand one hundred thirty-six'), (24521, 73397, 'seventy-three thousand three hundred ninety-seven'), (24522, 58848, 'fifty-eight thousand eight hundred forty-eight'), (24523, 29869, 'twenty-nine thousand eight hundred sixty-nine'), (24524, 74504, 'seventy-four thousand five hundred four'), (24525, 29171, 'twenty-nine thousand one hundred seventy-one'), (24526, 67023, 'sixty-seven thousand twenty-three'), (24527, 16021, 'sixteen thousand twenty-one'), (24528, 76889, 'seventy-six thousand eight hundred eighty-nine'), (24529, 13227, 'thirteen thousand two hundred twenty-seven'), (24530, 60563, 'sixty thousand five hundred sixty-three'), (24531, 9637, 'nine thousand six hundred thirty-seven'), (24532, 70863, 'seventy thousand eight hundred sixty-three'), (24533, 36076, 'thirty-six thousand seventy-six'), (24534, 98410, 'ninety-eight thousand four hundred ten'), (24535, 12095, 'twelve thousand ninety-five'), (24536, 24406, 'twenty-four thousand four hundred six'), (24537, 73409, 'seventy-three thousand four hundred nine'), (24538, 29768, 'twenty-nine thousand seven hundred sixty-eight'), (24539, 84265, 'eighty-four thousand two hundred sixty-five'), (24540, 26609, 'twenty-six thousand six hundred nine'), (24541, 35668, 'thirty-five thousand six hundred sixty-eight'), (24542, 85458, 'eighty-five thousand four hundred fifty-eight'), (24543, 12571, 'twelve thousand five hundred seventy-one'), (24544, 30268, 'thirty thousand two hundred sixty-eight'), (24545, 66940, 'sixty-six thousand nine hundred forty'), (24546, 89088, 'eighty-nine thousand eighty-eight'), (24547, 52116, 'fifty-two thousand one hundred sixteen'), (24548, 52044, 'fifty-two thousand forty-four'), (24549, 43022, 'forty-three thousand twenty-two'), (24550, 82921, 'eighty-two thousand nine hundred twenty-one'), (24551, 74469, 'seventy-four thousand four hundred sixty-nine'), (24552, 32766, 'thirty-two thousand seven hundred sixty-six'), (24553, 36163, 'thirty-six thousand one hundred sixty-three'), (24554, 42630, 'forty-two thousand six hundred thirty'), (24555, 40683, 'forty thousand six hundred eighty-three'), (24556, 19842, 'nineteen thousand eight hundred forty-two'), (24557, 33550, 'thirty-three thousand five hundred fifty'), (24558, 7122, 'seven thousand one hundred twenty-two'), (24559, 68362, 'sixty-eight thousand three hundred sixty-two'), (24560, 60637, 'sixty thousand six hundred thirty-seven'), (24561, 21302, 'twenty-one thousand three hundred two'), (24562, 77989, 'seventy-seven thousand nine hundred eighty-nine'), (24563, 73376, 'seventy-three thousand three hundred seventy-six'), (24564, 43376, 'forty-three thousand three hundred seventy-six'), (24565, 87694, 'eighty-seven thousand six hundred ninety-four'), (24566, 90797, 'ninety thousand seven hundred ninety-seven'), (24567, 46321, 'forty-six thousand three hundred twenty-one'), (24568, 19654, 'nineteen thousand six hundred fifty-four'), (24569, 28489, 'twenty-eight thousand four hundred eighty-nine'), (24570, 83580, 'eighty-three thousand five hundred eighty'), (24571, 24168, 'twenty-four thousand one hundred sixty-eight'), (24572, 35300, 'thirty-five thousand three hundred'), (24573, 86199, 'eighty-six thousand one hundred ninety-nine'), (24574, 39534, 'thirty-nine thousand five hundred thirty-four'), (24575, 53386, 'fifty-three thousand three hundred eighty-six'), (24576, 96527, 'ninety-six thousand five hundred twenty-seven'), (24577, 70262, 'seventy thousand two hundred sixty-two'), (24578, 56369, 'fifty-six thousand three hundred sixty-nine'), (24579, 71474, 'seventy-one thousand four hundred seventy-four'), (24580, 24093, 'twenty-four thousand ninety-three'), (24581, 48149, 'forty-eight thousand one hundred forty-nine'), (24582, 9717, 'nine thousand seven hundred seventeen'), (24583, 20205, 'twenty thousand two hundred five'), (24584, 15770, 'fifteen thousand seven hundred seventy'), (24585, 8601, 'eight thousand six hundred one'), (24586, 33272, 'thirty-three thousand two hundred seventy-two'), (24587, 9620, 'nine thousand six hundred twenty'), (24588, 19035, 'nineteen thousand thirty-five'), (24589, 77898, 'seventy-seven thousand eight hundred ninety-eight'), (24590, 43891, 'forty-three thousand eight hundred ninety-one'), (24591, 7341, 'seven thousand three hundred forty-one'), (24592, 21012, 'twenty-one thousand twelve'), (24593, 47304, 'forty-seven thousand three hundred four'), (24594, 13771, 'thirteen thousand seven hundred seventy-one'), (24595, 56852, 'fifty-six thousand eight hundred fifty-two'), (24596, 1092, 'one thousand ninety-two'), (24597, 10527, 'ten thousand five hundred twenty-seven'), (24598, 24351, 'twenty-four thousand three hundred fifty-one'), (24599, 3185, 'three thousand one hundred eighty-five'), (24600, 20932, 'twenty thousand nine hundred thirty-two'), (24601, 2044, 'two thousand forty-four'), (24602, 79491, 'seventy-nine thousand four hundred ninety-one'), (24603, 63479, 'sixty-three thousand four hundred seventy-nine'), (24604, 64144, 'sixty-four thousand one hundred forty-four'), (24605, 11553, 'eleven thousand five hundred fifty-three'), (24606, 80080, 'eighty thousand eighty'), (24607, 42841, 'forty-two thousand eight hundred forty-one'), (24608, 26094, 'twenty-six thousand ninety-four'), (24609, 38439, 'thirty-eight thousand four hundred thirty-nine'), (24610, 28474, 'twenty-eight thousand four hundred seventy-four'), (24611, 58847, 'fifty-eight thousand eight hundred forty-seven'), (24612, 8319, 'eight thousand three hundred nineteen'), (24613, 85074, 'eighty-five thousand seventy-four'), (24614, 26116, 'twenty-six thousand one hundred sixteen'), (24615, 32315, 'thirty-two thousand three hundred fifteen'), (24616, 23304, 'twenty-three thousand three hundred four'), (24617, 69448, 'sixty-nine thousand four hundred forty-eight'), (24618, 79351, 'seventy-nine thousand three hundred fifty-one'), (24619, 80548, 'eighty thousand five hundred forty-eight'), (24620, 74037, 'seventy-four thousand thirty-seven'), (24621, 11683, 'eleven thousand six hundred eighty-three'), (24622, 32115, 'thirty-two thousand one hundred fifteen'), (24623, 90383, 'ninety thousand three hundred eighty-three'), (24624, 95459, 'ninety-five thousand four hundred fifty-nine'), (24625, 6463, 'six thousand four hundred sixty-three'), (24626, 72425, 'seventy-two thousand four hundred twenty-five'), (24627, 96118, 'ninety-six thousand one hundred eighteen'), (24628, 99948, 'ninety-nine thousand nine hundred forty-eight'), (24629, 40496, 'forty thousand four hundred ninety-six'), (24630, 57027, 'fifty-seven thousand twenty-seven'), (24631, 54806, 'fifty-four thousand eight hundred six'), (24632, 74192, 'seventy-four thousand one hundred ninety-two'), (24633, 1458, 'one thousand four hundred fifty-eight'), (24634, 60022, 'sixty thousand twenty-two'), (24635, 13015, 'thirteen thousand fifteen'), (24636, 4182, 'four thousand one hundred eighty-two'), (24637, 47728, 'forty-seven thousand seven hundred twenty-eight'), (24638, 48780, 'forty-eight thousand seven hundred eighty'), (24639, 35252, 'thirty-five thousand two hundred fifty-two'), (24640, 5917, 'five thousand nine hundred seventeen'), (24641, 80663, 'eighty thousand six hundred sixty-three'), (24642, 16943, 'sixteen thousand nine hundred forty-three'), (24643, 14529, 'fourteen thousand five hundred twenty-nine'), (24644, 13366, 'thirteen thousand three hundred sixty-six'), (24645, 94467, 'ninety-four thousand four hundred sixty-seven'), (24646, 26831, 'twenty-six thousand eight hundred thirty-one'), (24647, 64859, 'sixty-four thousand eight hundred fifty-nine'), (24648, 79940, 'seventy-nine thousand nine hundred forty'), (24649, 56200, 'fifty-six thousand two hundred'), (24650, 48830, 'forty-eight thousand eight hundred thirty'), (24651, 90965, 'ninety thousand nine hundred sixty-five'), (24652, 67810, 'sixty-seven thousand eight hundred ten'), (24653, 77419, 'seventy-seven thousand four hundred nineteen'), (24654, 16345, 'sixteen thousand three hundred forty-five'), (24655, 28572, 'twenty-eight thousand five hundred seventy-two'), (24656, 24503, 'twenty-four thousand five hundred three'), (24657, 52829, 'fifty-two thousand eight hundred twenty-nine'), (24658, 9201, 'nine thousand two hundred one'), (24659, 60184, 'sixty thousand one hundred eighty-four'), (24660, 65258, 'sixty-five thousand two hundred fifty-eight'), (24661, 68277, 'sixty-eight thousand two hundred seventy-seven'), (24662, 12632, 'twelve thousand six hundred thirty-two'), (24663, 88871, 'eighty-eight thousand eight hundred seventy-one'), (24664, 88888, 'eighty-eight thousand eight hundred eighty-eight'), (24665, 94189, 'ninety-four thousand one hundred eighty-nine'), (24666, 17742, 'seventeen thousand seven hundred forty-two'), (24667, 46197, 'forty-six thousand one hundred ninety-seven'), (24668, 28493, 'twenty-eight thousand four hundred ninety-three'), (24669, 21476, 'twenty-one thousand four hundred seventy-six'), (24670, 59660, 'fifty-nine thousand six hundred sixty'), (24671, 33157, 'thirty-three thousand one hundred fifty-seven'), (24672, 70806, 'seventy thousand eight hundred six'), (24673, 10282, 'ten thousand two hundred eighty-two'), (24674, 46608, 'forty-six thousand six hundred eight'), (24675, 93057, 'ninety-three thousand fifty-seven'), (24676, 87137, 'eighty-seven thousand one hundred thirty-seven'), (24677, 59914, 'fifty-nine thousand nine hundred fourteen'), (24678, 15138, 'fifteen thousand one hundred thirty-eight'), (24679, 66081, 'sixty-six thousand eighty-one'), (24680, 2872, 'two thousand eight hundred seventy-two'), (24681, 58182, 'fifty-eight thousand one hundred eighty-two'), (24682, 98693, 'ninety-eight thousand six hundred ninety-three'), (24683, 6402, 'six thousand four hundred two'), (24684, 81893, 'eighty-one thousand eight hundred ninety-three'), (24685, 82769, 'eighty-two thousand seven hundred sixty-nine'), (24686, 28132, 'twenty-eight thousand one hundred thirty-two'), (24687, 23087, 'twenty-three thousand eighty-seven'), (24688, 39363, 'thirty-nine thousand three hundred sixty-three'), (24689, 33263, 'thirty-three thousand two hundred sixty-three'), (24690, 8211, 'eight thousand two hundred eleven'), (24691, 41329, 'forty-one thousand three hundred twenty-nine'), (24692, 95183, 'ninety-five thousand one hundred eighty-three'), (24693, 47040, 'forty-seven thousand forty'), (24694, 59347, 'fifty-nine thousand three hundred forty-seven'), (24695, 19887, 'nineteen thousand eight hundred eighty-seven'), (24696, 10700, 'ten thousand seven hundred'), (24697, 44206, 'forty-four thousand two hundred six'), (24698, 66580, 'sixty-six thousand five hundred eighty'), (24699, 47669, 'forty-seven thousand six hundred sixty-nine'), (24700, 80892, 'eighty thousand eight hundred ninety-two'), (24701, 75755, 'seventy-five thousand seven hundred fifty-five'), (24702, 70814, 'seventy thousand eight hundred fourteen'), (24703, 84205, 'eighty-four thousand two hundred five'), (24704, 49501, 'forty-nine thousand five hundred one'), (24705, 61490, 'sixty-one thousand four hundred ninety'), (24706, 95982, 'ninety-five thousand nine hundred eighty-two'), (24707, 15473, 'fifteen thousand four hundred seventy-three'), (24708, 59440, 'fifty-nine thousand four hundred forty'), (24709, 2995, 'two thousand nine hundred ninety-five'), (24710, 38547, 'thirty-eight thousand five hundred forty-seven'), (24711, 85352, 'eighty-five thousand three hundred fifty-two'), (24712, 10539, 'ten thousand five hundred thirty-nine'), (24713, 78665, 'seventy-eight thousand six hundred sixty-five'), (24714, 46340, 'forty-six thousand three hundred forty'), (24715, 52171, 'fifty-two thousand one hundred seventy-one'), (24716, 79592, 'seventy-nine thousand five hundred ninety-two'), (24717, 80347, 'eighty thousand three hundred forty-seven'), (24718, 36969, 'thirty-six thousand nine hundred sixty-nine'), (24719, 58825, 'fifty-eight thousand eight hundred twenty-five'), (24720, 50497, 'fifty thousand four hundred ninety-seven'), (24721, 52942, 'fifty-two thousand nine hundred forty-two'), (24722, 53225, 'fifty-three thousand two hundred twenty-five'), (24723, 35595, 'thirty-five thousand five hundred ninety-five'), (24724, 70411, 'seventy thousand four hundred eleven'), (24725, 23175, 'twenty-three thousand one hundred seventy-five'), (24726, 20256, 'twenty thousand two hundred fifty-six'), (24727, 75444, 'seventy-five thousand four hundred forty-four'), (24728, 29472, 'twenty-nine thousand four hundred seventy-two'), (24729, 74873, 'seventy-four thousand eight hundred seventy-three'), (24730, 96570, 'ninety-six thousand five hundred seventy'), (24731, 34886, 'thirty-four thousand eight hundred eighty-six'), (24732, 5332, 'five thousand three hundred thirty-two'), (24733, 2099, 'two thousand ninety-nine'), (24734, 54409, 'fifty-four thousand four hundred nine'), (24735, 3586, 'three thousand five hundred eighty-six'), (24736, 70081, 'seventy thousand eighty-one'), (24737, 44769, 'forty-four thousand seven hundred sixty-nine'), (24738, 9967, 'nine thousand nine hundred sixty-seven'), (24739, 86997, 'eighty-six thousand nine hundred ninety-seven'), (24740, 22978, 'twenty-two thousand nine hundred seventy-eight'), (24741, 41041, 'forty-one thousand forty-one'), (24742, 12900, 'twelve thousand nine hundred'), (24743, 16669, 'sixteen thousand six hundred sixty-nine'), (24744, 97688, 'ninety-seven thousand six hundred eighty-eight'), (24745, 33963, 'thirty-three thousand nine hundred sixty-three'), (24746, 13508, 'thirteen thousand five hundred eight'), (24747, 39008, 'thirty-nine thousand eight'), (24748, 53052, 'fifty-three thousand fifty-two'), (24749, 92622, 'ninety-two thousand six hundred twenty-two'), (24750, 95918, 'ninety-five thousand nine hundred eighteen'), (24751, 67927, 'sixty-seven thousand nine hundred twenty-seven'), (24752, 8489, 'eight thousand four hundred eighty-nine'), (24753, 38917, 'thirty-eight thousand nine hundred seventeen'), (24754, 13065, 'thirteen thousand sixty-five'), (24755, 15772, 'fifteen thousand seven hundred seventy-two'), (24756, 71996, 'seventy-one thousand nine hundred ninety-six'), (24757, 93804, 'ninety-three thousand eight hundred four'), (24758, 62376, 'sixty-two thousand three hundred seventy-six'), (24759, 19210, 'nineteen thousand two hundred ten'), (24760, 55669, 'fifty-five thousand six hundred sixty-nine'), (24761, 60397, 'sixty thousand three hundred ninety-seven'), (24762, 15157, 'fifteen thousand one hundred fifty-seven'), (24763, 17765, 'seventeen thousand seven hundred sixty-five'), (24764, 24303, 'twenty-four thousand three hundred three'), (24765, 74762, 'seventy-four thousand seven hundred sixty-two'), (24766, 12660, 'twelve thousand six hundred sixty'), (24767, 71115, 'seventy-one thousand one hundred fifteen'), (24768, 75727, 'seventy-five thousand seven hundred twenty-seven'), (24769, 81886, 'eighty-one thousand eight hundred eighty-six'), (24770, 93418, 'ninety-three thousand four hundred eighteen'), (24771, 55993, 'fifty-five thousand nine hundred ninety-three'), (24772, 98380, 'ninety-eight thousand three hundred eighty'), (24773, 58971, 'fifty-eight thousand nine hundred seventy-one'), (24774, 16900, 'sixteen thousand nine hundred'), (24775, 93345, 'ninety-three thousand three hundred forty-five'), (24776, 60673, 'sixty thousand six hundred seventy-three'), (24777, 50247, 'fifty thousand two hundred forty-seven'), (24778, 78763, 'seventy-eight thousand seven hundred sixty-three'), (24779, 2916, 'two thousand nine hundred sixteen'), (24780, 38779, 'thirty-eight thousand seven hundred seventy-nine'), (24781, 9671, 'nine thousand six hundred seventy-one'), (24782, 75048, 'seventy-five thousand forty-eight'), (24783, 71339, 'seventy-one thousand three hundred thirty-nine'), (24784, 99363, 'ninety-nine thousand three hundred sixty-three'), (24785, 43445, 'forty-three thousand four hundred forty-five'), (24786, 15216, 'fifteen thousand two hundred sixteen'), (24787, 86770, 'eighty-six thousand seven hundred seventy'), (24788, 94108, 'ninety-four thousand one hundred eight'), (24789, 53313, 'fifty-three thousand three hundred thirteen'), (24790, 62927, 'sixty-two thousand nine hundred twenty-seven'), (24791, 2633, 'two thousand six hundred thirty-three'), (24792, 71987, 'seventy-one thousand nine hundred eighty-seven'), (24793, 31816, 'thirty-one thousand eight hundred sixteen'), (24794, 44145, 'forty-four thousand one hundred forty-five'), (24795, 44670, 'forty-four thousand six hundred seventy'), (24796, 32652, 'thirty-two thousand six hundred fifty-two'), (24797, 86370, 'eighty-six thousand three hundred seventy'), (24798, 77806, 'seventy-seven thousand eight hundred six'), (24799, 49010, 'forty-nine thousand ten'), (24800, 41469, 'forty-one thousand four hundred sixty-nine'), (24801, 86497, 'eighty-six thousand four hundred ninety-seven'), (24802, 89416, 'eighty-nine thousand four hundred sixteen'), (24803, 22795, 'twenty-two thousand seven hundred ninety-five'), (24804, 16486, 'sixteen thousand four hundred eighty-six'), (24805, 83767, 'eighty-three thousand seven hundred sixty-seven'), (24806, 69813, 'sixty-nine thousand eight hundred thirteen'), (24807, 24398, 'twenty-four thousand three hundred ninety-eight'), (24808, 4641, 'four thousand six hundred forty-one'), (24809, 19155, 'nineteen thousand one hundred fifty-five'), (24810, 10874, 'ten thousand eight hundred seventy-four'), (24811, 35546, 'thirty-five thousand five hundred forty-six'), (24812, 13792, 'thirteen thousand seven hundred ninety-two'), (24813, 47786, 'forty-seven thousand seven hundred eighty-six'), (24814, 43075, 'forty-three thousand seventy-five'), (24815, 63969, 'sixty-three thousand nine hundred sixty-nine'), (24816, 42942, 'forty-two thousand nine hundred forty-two'), (24817, 46118, 'forty-six thousand one hundred eighteen'), (24818, 58231, 'fifty-eight thousand two hundred thirty-one'), (24819, 10334, 'ten thousand three hundred thirty-four'), (24820, 34774, 'thirty-four thousand seven hundred seventy-four'), (24821, 10146, 'ten thousand one hundred forty-six'), (24822, 99742, 'ninety-nine thousand seven hundred forty-two'), (24823, 11418, 'eleven thousand four hundred eighteen'), (24824, 69613, 'sixty-nine thousand six hundred thirteen'), (24825, 66806, 'sixty-six thousand eight hundred six'), (24826, 34060, 'thirty-four thousand sixty'), (24827, 40116, 'forty thousand one hundred sixteen'), (24828, 25042, 'twenty-five thousand forty-two'), (24829, 77863, 'seventy-seven thousand eight hundred sixty-three'), (24830, 97334, 'ninety-seven thousand three hundred thirty-four'), (24831, 84687, 'eighty-four thousand six hundred eighty-seven'), (24832, 44197, 'forty-four thousand one hundred ninety-seven'), (24833, 94141, 'ninety-four thousand one hundred forty-one'), (24834, 87283, 'eighty-seven thousand two hundred eighty-three'), (24835, 80045, 'eighty thousand forty-five'), (24836, 57110, 'fifty-seven thousand one hundred ten'), (24837, 98823, 'ninety-eight thousand eight hundred twenty-three'), (24838, 10560, 'ten thousand five hundred sixty'), (24839, 48709, 'forty-eight thousand seven hundred nine'), (24840, 84826, 'eighty-four thousand eight hundred twenty-six'), (24841, 8743, 'eight thousand seven hundred forty-three'), (24842, 5747, 'five thousand seven hundred forty-seven'), (24843, 96079, 'ninety-six thousand seventy-nine'), (24844, 29287, 'twenty-nine thousand two hundred eighty-seven'), (24845, 10503, 'ten thousand five hundred three'), (24846, 42835, 'forty-two thousand eight hundred thirty-five'), (24847, 39803, 'thirty-nine thousand eight hundred three'), (24848, 47531, 'forty-seven thousand five hundred thirty-one'), (24849, 12240, 'twelve thousand two hundred forty'), (24850, 41777, 'forty-one thousand seven hundred seventy-seven'), (24851, 21596, 'twenty-one thousand five hundred ninety-six'), (24852, 24048, 'twenty-four thousand forty-eight'), (24853, 36560, 'thirty-six thousand five hundred sixty'), (24854, 13578, 'thirteen thousand five hundred seventy-eight'), (24855, 49976, 'forty-nine thousand nine hundred seventy-six'), (24856, 54781, 'fifty-four thousand seven hundred eighty-one'), (24857, 94365, 'ninety-four thousand three hundred sixty-five'), (24858, 67888, 'sixty-seven thousand eight hundred eighty-eight'), (24859, 60940, 'sixty thousand nine hundred forty'), (24860, 45712, 'forty-five thousand seven hundred twelve'), (24861, 74303, 'seventy-four thousand three hundred three'), (24862, 21345, 'twenty-one thousand three hundred forty-five'), (24863, 22554, 'twenty-two thousand five hundred fifty-four'), (24864, 54730, 'fifty-four thousand seven hundred thirty'), (24865, 79057, 'seventy-nine thousand fifty-seven'), (24866, 13523, 'thirteen thousand five hundred twenty-three'), (24867, 43990, 'forty-three thousand nine hundred ninety'), (24868, 25902, 'twenty-five thousand nine hundred two'), (24869, 51825, 'fifty-one thousand eight hundred twenty-five'), (24870, 50909, 'fifty thousand nine hundred nine'), (24871, 18586, 'eighteen thousand five hundred eighty-six'), (24872, 6607, 'six thousand six hundred seven'), (24873, 3890, 'three thousand eight hundred ninety'), (24874, 46905, 'forty-six thousand nine hundred five'), (24875, 13209, 'thirteen thousand two hundred nine'), (24876, 63392, 'sixty-three thousand three hundred ninety-two'), (24877, 91399, 'ninety-one thousand three hundred ninety-nine'), (24878, 31171, 'thirty-one thousand one hundred seventy-one'), (24879, 35561, 'thirty-five thousand five hundred sixty-one'), (24880, 1318, 'one thousand three hundred eighteen'), (24881, 32933, 'thirty-two thousand nine hundred thirty-three'), (24882, 41733, 'forty-one thousand seven hundred thirty-three'), (24883, 65985, 'sixty-five thousand nine hundred eighty-five'), (24884, 57242, 'fifty-seven thousand two hundred forty-two'), (24885, 10678, 'ten thousand six hundred seventy-eight'), (24886, 12854, 'twelve thousand eight hundred fifty-four'), (24887, 14436, 'fourteen thousand four hundred thirty-six'), (24888, 23988, 'twenty-three thousand nine hundred eighty-eight'), (24889, 32428, 'thirty-two thousand four hundred twenty-eight'), (24890, 31980, 'thirty-one thousand nine hundred eighty'), (24891, 42592, 'forty-two thousand five hundred ninety-two'), (24892, 10777, 'ten thousand seven hundred seventy-seven'), (24893, 90039, 'ninety thousand thirty-nine'), (24894, 98488, 'ninety-eight thousand four hundred eighty-eight'), (24895, 66119, 'sixty-six thousand one hundred nineteen'), (24896, 90906, 'ninety thousand nine hundred six'), (24897, 43273, 'forty-three thousand two hundred seventy-three'), (24898, 86923, 'eighty-six thousand nine hundred twenty-three'), (24899, 24398, 'twenty-four thousand three hundred ninety-eight'), (24900, 70697, 'seventy thousand six hundred ninety-seven'), (24901, 67776, 'sixty-seven thousand seven hundred seventy-six'), (24902, 72999, 'seventy-two thousand nine hundred ninety-nine'), (24903, 64202, 'sixty-four thousand two hundred two'), (24904, 246, 'two hundred forty-six'), (24905, 8602, 'eight thousand six hundred two'), (24906, 2864, 'two thousand eight hundred sixty-four'), (24907, 7330, 'seven thousand three hundred thirty'), (24908, 21614, 'twenty-one thousand six hundred fourteen'), (24909, 98092, 'ninety-eight thousand ninety-two'), (24910, 53159, 'fifty-three thousand one hundred fifty-nine'), (24911, 24758, 'twenty-four thousand seven hundred fifty-eight'), (24912, 83464, 'eighty-three thousand four hundred sixty-four'), (24913, 79332, 'seventy-nine thousand three hundred thirty-two'), (24914, 73379, 'seventy-three thousand three hundred seventy-nine'), (24915, 78436, 'seventy-eight thousand four hundred thirty-six'), (24916, 55314, 'fifty-five thousand three hundred fourteen'), (24917, 49986, 'forty-nine thousand nine hundred eighty-six'), (24918, 20172, 'twenty thousand one hundred seventy-two'), (24919, 46094, 'forty-six thousand ninety-four'), (24920, 52678, 'fifty-two thousand six hundred seventy-eight'), (24921, 20785, 'twenty thousand seven hundred eighty-five'), (24922, 19531, 'nineteen thousand five hundred thirty-one'), (24923, 70323, 'seventy thousand three hundred twenty-three'), (24924, 29816, 'twenty-nine thousand eight hundred sixteen'), (24925, 95128, 'ninety-five thousand one hundred twenty-eight'), (24926, 95759, 'ninety-five thousand seven hundred fifty-nine'), (24927, 5910, 'five thousand nine hundred ten'), (24928, 72781, 'seventy-two thousand seven hundred eighty-one'), (24929, 71098, 'seventy-one thousand ninety-eight'), (24930, 52832, 'fifty-two thousand eight hundred thirty-two'), (24931, 96014, 'ninety-six thousand fourteen'), (24932, 70544, 'seventy thousand five hundred forty-four'), (24933, 161, 'one hundred sixty-one'), (24934, 623, 'six hundred twenty-three'), (24935, 72399, 'seventy-two thousand three hundred ninety-nine'), (24936, 83929, 'eighty-three thousand nine hundred twenty-nine'), (24937, 97985, 'ninety-seven thousand nine hundred eighty-five'), (24938, 25597, 'twenty-five thousand five hundred ninety-seven'), (24939, 78421, 'seventy-eight thousand four hundred twenty-one'), (24940, 60639, 'sixty thousand six hundred thirty-nine'), (24941, 50903, 'fifty thousand nine hundred three'), (24942, 934, 'nine hundred thirty-four'), (24943, 53684, 'fifty-three thousand six hundred eighty-four'), (24944, 12930, 'twelve thousand nine hundred thirty'), (24945, 38638, 'thirty-eight thousand six hundred thirty-eight'), (24946, 1269, 'one thousand two hundred sixty-nine'), (24947, 36603, 'thirty-six thousand six hundred three'), (24948, 43295, 'forty-three thousand two hundred ninety-five'), (24949, 58480, 'fifty-eight thousand four hundred eighty'), (24950, 74075, 'seventy-four thousand seventy-five'), (24951, 24688, 'twenty-four thousand six hundred eighty-eight'), (24952, 83209, 'eighty-three thousand two hundred nine'), (24953, 59084, 'fifty-nine thousand eighty-four'), (24954, 20663, 'twenty thousand six hundred sixty-three'), (24955, 79179, 'seventy-nine thousand one hundred seventy-nine'), (24956, 1978, 'one thousand nine hundred seventy-eight'), (24957, 66295, 'sixty-six thousand two hundred ninety-five'), (24958, 22993, 'twenty-two thousand nine hundred ninety-three'), (24959, 90318, 'ninety thousand three hundred eighteen'), (24960, 30818, 'thirty thousand eight hundred eighteen'), (24961, 83489, 'eighty-three thousand four hundred eighty-nine'), (24962, 50881, 'fifty thousand eight hundred eighty-one'), (24963, 91104, 'ninety-one thousand one hundred four'), (24964, 83683, 'eighty-three thousand six hundred eighty-three'), (24965, 27051, 'twenty-seven thousand fifty-one'), (24966, 84694, 'eighty-four thousand six hundred ninety-four'), (24967, 16269, 'sixteen thousand two hundred sixty-nine'), (24968, 21299, 'twenty-one thousand two hundred ninety-nine'), (24969, 21036, 'twenty-one thousand thirty-six'), (24970, 85042, 'eighty-five thousand forty-two'), (24971, 5100, 'five thousand one hundred'), (24972, 73645, 'seventy-three thousand six hundred forty-five'), (24973, 45681, 'forty-five thousand six hundred eighty-one'), (24974, 43656, 'forty-three thousand six hundred fifty-six'), (24975, 71105, 'seventy-one thousand one hundred five'), (24976, 7628, 'seven thousand six hundred twenty-eight'), (24977, 23163, 'twenty-three thousand one hundred sixty-three'), (24978, 146, 'one hundred forty-six'), (24979, 12055, 'twelve thousand fifty-five'), (24980, 36730, 'thirty-six thousand seven hundred thirty'), (24981, 96387, 'ninety-six thousand three hundred eighty-seven'), (24982, 30707, 'thirty thousand seven hundred seven'), (24983, 85821, 'eighty-five thousand eight hundred twenty-one'), (24984, 72713, 'seventy-two thousand seven hundred thirteen'), (24985, 89071, 'eighty-nine thousand seventy-one'), (24986, 95729, 'ninety-five thousand seven hundred twenty-nine'), (24987, 19944, 'nineteen thousand nine hundred forty-four'), (24988, 63977, 'sixty-three thousand nine hundred seventy-seven'), (24989, 80696, 'eighty thousand six hundred ninety-six'), (24990, 80543, 'eighty thousand five hundred forty-three'), (24991, 93012, 'ninety-three thousand twelve'), (24992, 53561, 'fifty-three thousand five hundred sixty-one'), (24993, 96345, 'ninety-six thousand three hundred forty-five'), (24994, 45500, 'forty-five thousand five hundred'), (24995, 71895, 'seventy-one thousand eight hundred ninety-five'), (24996, 88950, 'eighty-eight thousand nine hundred fifty'), (24997, 10863, 'ten thousand eight hundred sixty-three'), (24998, 94124, 'ninety-four thousand one hundred twenty-four'), (24999, 44871, 'forty-four thousand eight hundred seventy-one'), (25000, 35764, 'thirty-five thousand seven hundred sixty-four'); COMMIT; ================================================ FILE: packages/benchmark/src/benchmark3.sql ================================================ BEGIN; CREATE TABLE t3(a INTEGER, b INTEGER, c VARCHAR(100)); CREATE INDEX i3 ON t3(c); INSERT INTO t3 VALUES(1, 90183, 'ninety thousand one hundred eighty-three'); INSERT INTO t3 VALUES(2, 65182, 'sixty-five thousand one hundred eighty-two'); INSERT INTO t3 VALUES(3, 79184, 'seventy-nine thousand one hundred eighty-four'); INSERT INTO t3 VALUES(4, 62773, 'sixty-two thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(5, 6630, 'six thousand six hundred thirty'); INSERT INTO t3 VALUES(6, 79715, 'seventy-nine thousand seven hundred fifteen'); INSERT INTO t3 VALUES(7, 49778, 'forty-nine thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(8, 33198, 'thirty-three thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(9, 59322, 'fifty-nine thousand three hundred twenty-two'); INSERT INTO t3 VALUES(10, 48234, 'forty-eight thousand two hundred thirty-four'); INSERT INTO t3 VALUES(11, 21538, 'twenty-one thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(12, 24452, 'twenty-four thousand four hundred fifty-two'); INSERT INTO t3 VALUES(13, 23004, 'twenty-three thousand four'); INSERT INTO t3 VALUES(14, 1240, 'one thousand two hundred forty'); INSERT INTO t3 VALUES(15, 63122, 'sixty-three thousand one hundred twenty-two'); INSERT INTO t3 VALUES(16, 56286, 'fifty-six thousand two hundred eighty-six'); INSERT INTO t3 VALUES(17, 25005, 'twenty-five thousand five'); INSERT INTO t3 VALUES(18, 944, 'nine hundred forty-four'); INSERT INTO t3 VALUES(19, 80737, 'eighty thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(20, 16724, 'sixteen thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(21, 31354, 'thirty-one thousand three hundred fifty-four'); INSERT INTO t3 VALUES(22, 17696, 'seventeen thousand six hundred ninety-six'); INSERT INTO t3 VALUES(23, 44146, 'forty-four thousand one hundred forty-six'); INSERT INTO t3 VALUES(24, 14105, 'fourteen thousand one hundred five'); INSERT INTO t3 VALUES(25, 56396, 'fifty-six thousand three hundred ninety-six'); INSERT INTO t3 VALUES(26, 34947, 'thirty-four thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(27, 73851, 'seventy-three thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(28, 36410, 'thirty-six thousand four hundred ten'); INSERT INTO t3 VALUES(29, 68033, 'sixty-eight thousand thirty-three'); INSERT INTO t3 VALUES(30, 72153, 'seventy-two thousand one hundred fifty-three'); INSERT INTO t3 VALUES(31, 29430, 'twenty-nine thousand four hundred thirty'); INSERT INTO t3 VALUES(32, 435, 'four hundred thirty-five'); INSERT INTO t3 VALUES(33, 8430, 'eight thousand four hundred thirty'); INSERT INTO t3 VALUES(34, 64854, 'sixty-four thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(35, 50457, 'fifty thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(36, 28095, 'twenty-eight thousand ninety-five'); INSERT INTO t3 VALUES(37, 87893, 'eighty-seven thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(38, 81207, 'eighty-one thousand two hundred seven'); INSERT INTO t3 VALUES(39, 72268, 'seventy-two thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(40, 45940, 'forty-five thousand nine hundred forty'); INSERT INTO t3 VALUES(41, 55242, 'fifty-five thousand two hundred forty-two'); INSERT INTO t3 VALUES(42, 7100, 'seven thousand one hundred'); INSERT INTO t3 VALUES(43, 35460, 'thirty-five thousand four hundred sixty'); INSERT INTO t3 VALUES(44, 20012, 'twenty thousand twelve'); INSERT INTO t3 VALUES(45, 95948, 'ninety-five thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(46, 12696, 'twelve thousand six hundred ninety-six'); INSERT INTO t3 VALUES(47, 81014, 'eighty-one thousand fourteen'); INSERT INTO t3 VALUES(48, 73388, 'seventy-three thousand three hundred eighty-eight'); INSERT INTO t3 VALUES(49, 52983, 'fifty-two thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(50, 19671, 'nineteen thousand six hundred seventy-one'); INSERT INTO t3 VALUES(51, 16274, 'sixteen thousand two hundred seventy-four'); INSERT INTO t3 VALUES(52, 82940, 'eighty-two thousand nine hundred forty'); INSERT INTO t3 VALUES(53, 67503, 'sixty-seven thousand five hundred three'); INSERT INTO t3 VALUES(54, 13522, 'thirteen thousand five hundred twenty-two'); INSERT INTO t3 VALUES(55, 51083, 'fifty-one thousand eighty-three'); INSERT INTO t3 VALUES(56, 2617, 'two thousand six hundred seventeen'); INSERT INTO t3 VALUES(57, 23555, 'twenty-three thousand five hundred fifty-five'); INSERT INTO t3 VALUES(58, 89075, 'eighty-nine thousand seventy-five'); INSERT INTO t3 VALUES(59, 49313, 'forty-nine thousand three hundred thirteen'); INSERT INTO t3 VALUES(60, 78873, 'seventy-eight thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(61, 84645, 'eighty-four thousand six hundred forty-five'); INSERT INTO t3 VALUES(62, 89920, 'eighty-nine thousand nine hundred twenty'); INSERT INTO t3 VALUES(63, 58805, 'fifty-eight thousand eight hundred five'); INSERT INTO t3 VALUES(64, 53068, 'fifty-three thousand sixty-eight'); INSERT INTO t3 VALUES(65, 68084, 'sixty-eight thousand eighty-four'); INSERT INTO t3 VALUES(66, 29207, 'twenty-nine thousand two hundred seven'); INSERT INTO t3 VALUES(67, 63457, 'sixty-three thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(68, 40143, 'forty thousand one hundred forty-three'); INSERT INTO t3 VALUES(69, 62048, 'sixty-two thousand forty-eight'); INSERT INTO t3 VALUES(70, 36006, 'thirty-six thousand six'); INSERT INTO t3 VALUES(71, 83152, 'eighty-three thousand one hundred fifty-two'); INSERT INTO t3 VALUES(72, 13387, 'thirteen thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(73, 50704, 'fifty thousand seven hundred four'); INSERT INTO t3 VALUES(74, 39743, 'thirty-nine thousand seven hundred forty-three'); INSERT INTO t3 VALUES(75, 44716, 'forty-four thousand seven hundred sixteen'); INSERT INTO t3 VALUES(76, 31685, 'thirty-one thousand six hundred eighty-five'); INSERT INTO t3 VALUES(77, 65893, 'sixty-five thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(78, 62854, 'sixty-two thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(79, 8739, 'eight thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(80, 26513, 'twenty-six thousand five hundred thirteen'); INSERT INTO t3 VALUES(81, 59948, 'fifty-nine thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(82, 73120, 'seventy-three thousand one hundred twenty'); INSERT INTO t3 VALUES(83, 96520, 'ninety-six thousand five hundred twenty'); INSERT INTO t3 VALUES(84, 86506, 'eighty-six thousand five hundred six'); INSERT INTO t3 VALUES(85, 3172, 'three thousand one hundred seventy-two'); INSERT INTO t3 VALUES(86, 10494, 'ten thousand four hundred ninety-four'); INSERT INTO t3 VALUES(87, 22034, 'twenty-two thousand thirty-four'); INSERT INTO t3 VALUES(88, 65036, 'sixty-five thousand thirty-six'); INSERT INTO t3 VALUES(89, 51863, 'fifty-one thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(90, 62035, 'sixty-two thousand thirty-five'); INSERT INTO t3 VALUES(91, 59883, 'fifty-nine thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(92, 70677, 'seventy thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(93, 95902, 'ninety-five thousand nine hundred two'); INSERT INTO t3 VALUES(94, 83317, 'eighty-three thousand three hundred seventeen'); INSERT INTO t3 VALUES(95, 89743, 'eighty-nine thousand seven hundred forty-three'); INSERT INTO t3 VALUES(96, 63528, 'sixty-three thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(97, 76909, 'seventy-six thousand nine hundred nine'); INSERT INTO t3 VALUES(98, 96469, 'ninety-six thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(99, 46474, 'forty-six thousand four hundred seventy-four'); INSERT INTO t3 VALUES(100, 64326, 'sixty-four thousand three hundred twenty-six'); INSERT INTO t3 VALUES(101, 81805, 'eighty-one thousand eight hundred five'); INSERT INTO t3 VALUES(102, 38591, 'thirty-eight thousand five hundred ninety-one'); INSERT INTO t3 VALUES(103, 3909, 'three thousand nine hundred nine'); INSERT INTO t3 VALUES(104, 85755, 'eighty-five thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(105, 99762, 'ninety-nine thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(106, 56813, 'fifty-six thousand eight hundred thirteen'); INSERT INTO t3 VALUES(107, 50487, 'fifty thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(108, 73438, 'seventy-three thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(109, 26555, 'twenty-six thousand five hundred fifty-five'); INSERT INTO t3 VALUES(110, 76235, 'seventy-six thousand two hundred thirty-five'); INSERT INTO t3 VALUES(111, 1879, 'one thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(112, 21174, 'twenty-one thousand one hundred seventy-four'); INSERT INTO t3 VALUES(113, 99289, 'ninety-nine thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(114, 72523, 'seventy-two thousand five hundred twenty-three'); INSERT INTO t3 VALUES(115, 93286, 'ninety-three thousand two hundred eighty-six'); INSERT INTO t3 VALUES(116, 76012, 'seventy-six thousand twelve'); INSERT INTO t3 VALUES(117, 9372, 'nine thousand three hundred seventy-two'); INSERT INTO t3 VALUES(118, 33992, 'thirty-three thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(119, 9869, 'nine thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(120, 87554, 'eighty-seven thousand five hundred fifty-four'); INSERT INTO t3 VALUES(121, 27130, 'twenty-seven thousand one hundred thirty'); INSERT INTO t3 VALUES(122, 24420, 'twenty-four thousand four hundred twenty'); INSERT INTO t3 VALUES(123, 81218, 'eighty-one thousand two hundred eighteen'); INSERT INTO t3 VALUES(124, 87915, 'eighty-seven thousand nine hundred fifteen'); INSERT INTO t3 VALUES(125, 82797, 'eighty-two thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(126, 99867, 'ninety-nine thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(127, 45608, 'forty-five thousand six hundred eight'); INSERT INTO t3 VALUES(128, 27027, 'twenty-seven thousand twenty-seven'); INSERT INTO t3 VALUES(129, 10148, 'ten thousand one hundred forty-eight'); INSERT INTO t3 VALUES(130, 90119, 'ninety thousand one hundred nineteen'); INSERT INTO t3 VALUES(131, 3539, 'three thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(132, 14278, 'fourteen thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(133, 70628, 'seventy thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(134, 40495, 'forty thousand four hundred ninety-five'); INSERT INTO t3 VALUES(135, 77630, 'seventy-seven thousand six hundred thirty'); INSERT INTO t3 VALUES(136, 24919, 'twenty-four thousand nine hundred nineteen'); INSERT INTO t3 VALUES(137, 563, 'five hundred sixty-three'); INSERT INTO t3 VALUES(138, 13613, 'thirteen thousand six hundred thirteen'); INSERT INTO t3 VALUES(139, 83588, 'eighty-three thousand five hundred eighty-eight'); INSERT INTO t3 VALUES(140, 27930, 'twenty-seven thousand nine hundred thirty'); INSERT INTO t3 VALUES(141, 30958, 'thirty thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(142, 75153, 'seventy-five thousand one hundred fifty-three'); INSERT INTO t3 VALUES(143, 99222, 'ninety-nine thousand two hundred twenty-two'); INSERT INTO t3 VALUES(144, 32451, 'thirty-two thousand four hundred fifty-one'); INSERT INTO t3 VALUES(145, 76632, 'seventy-six thousand six hundred thirty-two'); INSERT INTO t3 VALUES(146, 34681, 'thirty-four thousand six hundred eighty-one'); INSERT INTO t3 VALUES(147, 32317, 'thirty-two thousand three hundred seventeen'); INSERT INTO t3 VALUES(148, 56149, 'fifty-six thousand one hundred forty-nine'); INSERT INTO t3 VALUES(149, 60229, 'sixty thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(150, 19532, 'nineteen thousand five hundred thirty-two'); INSERT INTO t3 VALUES(151, 87902, 'eighty-seven thousand nine hundred two'); INSERT INTO t3 VALUES(152, 40686, 'forty thousand six hundred eighty-six'); INSERT INTO t3 VALUES(153, 46888, 'forty-six thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(154, 12672, 'twelve thousand six hundred seventy-two'); INSERT INTO t3 VALUES(155, 74042, 'seventy-four thousand forty-two'); INSERT INTO t3 VALUES(156, 43172, 'forty-three thousand one hundred seventy-two'); INSERT INTO t3 VALUES(157, 41588, 'forty-one thousand five hundred eighty-eight'); INSERT INTO t3 VALUES(158, 58654, 'fifty-eight thousand six hundred fifty-four'); INSERT INTO t3 VALUES(159, 80637, 'eighty thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(160, 25022, 'twenty-five thousand twenty-two'); INSERT INTO t3 VALUES(161, 2878, 'two thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(162, 87182, 'eighty-seven thousand one hundred eighty-two'); INSERT INTO t3 VALUES(163, 34851, 'thirty-four thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(164, 4544, 'four thousand five hundred forty-four'); INSERT INTO t3 VALUES(165, 75925, 'seventy-five thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(166, 65362, 'sixty-five thousand three hundred sixty-two'); INSERT INTO t3 VALUES(167, 51857, 'fifty-one thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(168, 81481, 'eighty-one thousand four hundred eighty-one'); INSERT INTO t3 VALUES(169, 66526, 'sixty-six thousand five hundred twenty-six'); INSERT INTO t3 VALUES(170, 47242, 'forty-seven thousand two hundred forty-two'); INSERT INTO t3 VALUES(171, 81290, 'eighty-one thousand two hundred ninety'); INSERT INTO t3 VALUES(172, 98004, 'ninety-eight thousand four'); INSERT INTO t3 VALUES(173, 80313, 'eighty thousand three hundred thirteen'); INSERT INTO t3 VALUES(174, 93361, 'ninety-three thousand three hundred sixty-one'); INSERT INTO t3 VALUES(175, 29697, 'twenty-nine thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(176, 33778, 'thirty-three thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(177, 88134, 'eighty-eight thousand one hundred thirty-four'); INSERT INTO t3 VALUES(178, 30768, 'thirty thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(179, 26673, 'twenty-six thousand six hundred seventy-three'); INSERT INTO t3 VALUES(180, 86295, 'eighty-six thousand two hundred ninety-five'); INSERT INTO t3 VALUES(181, 41292, 'forty-one thousand two hundred ninety-two'); INSERT INTO t3 VALUES(182, 74272, 'seventy-four thousand two hundred seventy-two'); INSERT INTO t3 VALUES(183, 84254, 'eighty-four thousand two hundred fifty-four'); INSERT INTO t3 VALUES(184, 5812, 'five thousand eight hundred twelve'); INSERT INTO t3 VALUES(185, 12042, 'twelve thousand forty-two'); INSERT INTO t3 VALUES(186, 11546, 'eleven thousand five hundred forty-six'); INSERT INTO t3 VALUES(187, 60254, 'sixty thousand two hundred fifty-four'); INSERT INTO t3 VALUES(188, 39302, 'thirty-nine thousand three hundred two'); INSERT INTO t3 VALUES(189, 1812, 'one thousand eight hundred twelve'); INSERT INTO t3 VALUES(190, 12018, 'twelve thousand eighteen'); INSERT INTO t3 VALUES(191, 94386, 'ninety-four thousand three hundred eighty-six'); INSERT INTO t3 VALUES(192, 44723, 'forty-four thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(193, 9197, 'nine thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(194, 99234, 'ninety-nine thousand two hundred thirty-four'); INSERT INTO t3 VALUES(195, 36549, 'thirty-six thousand five hundred forty-nine'); INSERT INTO t3 VALUES(196, 99550, 'ninety-nine thousand five hundred fifty'); INSERT INTO t3 VALUES(197, 68978, 'sixty-eight thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(198, 75951, 'seventy-five thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(199, 41705, 'forty-one thousand seven hundred five'); INSERT INTO t3 VALUES(200, 10998, 'ten thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(201, 36868, 'thirty-six thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(202, 17944, 'seventeen thousand nine hundred forty-four'); INSERT INTO t3 VALUES(203, 28310, 'twenty-eight thousand three hundred ten'); INSERT INTO t3 VALUES(204, 50765, 'fifty thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(205, 58754, 'fifty-eight thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(206, 68159, 'sixty-eight thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(207, 1578, 'one thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(208, 77708, 'seventy-seven thousand seven hundred eight'); INSERT INTO t3 VALUES(209, 2248, 'two thousand two hundred forty-eight'); INSERT INTO t3 VALUES(210, 56563, 'fifty-six thousand five hundred sixty-three'); INSERT INTO t3 VALUES(211, 39829, 'thirty-nine thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(212, 47346, 'forty-seven thousand three hundred forty-six'); INSERT INTO t3 VALUES(213, 73875, 'seventy-three thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(214, 78489, 'seventy-eight thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(215, 375, 'three hundred seventy-five'); INSERT INTO t3 VALUES(216, 89242, 'eighty-nine thousand two hundred forty-two'); INSERT INTO t3 VALUES(217, 3818, 'three thousand eight hundred eighteen'); INSERT INTO t3 VALUES(218, 35355, 'thirty-five thousand three hundred fifty-five'); INSERT INTO t3 VALUES(219, 9835, 'nine thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(220, 20768, 'twenty thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(221, 43749, 'forty-three thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(222, 23736, 'twenty-three thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(223, 8111, 'eight thousand one hundred eleven'); INSERT INTO t3 VALUES(224, 37926, 'thirty-seven thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(225, 25507, 'twenty-five thousand five hundred seven'); INSERT INTO t3 VALUES(226, 44121, 'forty-four thousand one hundred twenty-one'); INSERT INTO t3 VALUES(227, 23445, 'twenty-three thousand four hundred forty-five'); INSERT INTO t3 VALUES(228, 5392, 'five thousand three hundred ninety-two'); INSERT INTO t3 VALUES(229, 96000, 'ninety-six thousand'); INSERT INTO t3 VALUES(230, 69638, 'sixty-nine thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(231, 44145, 'forty-four thousand one hundred forty-five'); INSERT INTO t3 VALUES(232, 32916, 'thirty-two thousand nine hundred sixteen'); INSERT INTO t3 VALUES(233, 85171, 'eighty-five thousand one hundred seventy-one'); INSERT INTO t3 VALUES(234, 2597, 'two thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(235, 61625, 'sixty-one thousand six hundred twenty-five'); INSERT INTO t3 VALUES(236, 88977, 'eighty-eight thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(237, 57311, 'fifty-seven thousand three hundred eleven'); INSERT INTO t3 VALUES(238, 26687, 'twenty-six thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(239, 20185, 'twenty thousand one hundred eighty-five'); INSERT INTO t3 VALUES(240, 82839, 'eighty-two thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(241, 13801, 'thirteen thousand eight hundred one'); INSERT INTO t3 VALUES(242, 53847, 'fifty-three thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(243, 68561, 'sixty-eight thousand five hundred sixty-one'); INSERT INTO t3 VALUES(244, 19898, 'nineteen thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(245, 63660, 'sixty-three thousand six hundred sixty'); INSERT INTO t3 VALUES(246, 63738, 'sixty-three thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(247, 6887, 'six thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(248, 94457, 'ninety-four thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(249, 37683, 'thirty-seven thousand six hundred eighty-three'); INSERT INTO t3 VALUES(250, 85191, 'eighty-five thousand one hundred ninety-one'); INSERT INTO t3 VALUES(251, 79271, 'seventy-nine thousand two hundred seventy-one'); INSERT INTO t3 VALUES(252, 43173, 'forty-three thousand one hundred seventy-three'); INSERT INTO t3 VALUES(253, 9368, 'nine thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(254, 66602, 'sixty-six thousand six hundred two'); INSERT INTO t3 VALUES(255, 58241, 'fifty-eight thousand two hundred forty-one'); INSERT INTO t3 VALUES(256, 7657, 'seven thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(257, 42926, 'forty-two thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(258, 90780, 'ninety thousand seven hundred eighty'); INSERT INTO t3 VALUES(259, 24357, 'twenty-four thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(260, 28660, 'twenty-eight thousand six hundred sixty'); INSERT INTO t3 VALUES(261, 17525, 'seventeen thousand five hundred twenty-five'); INSERT INTO t3 VALUES(262, 32537, 'thirty-two thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(263, 78891, 'seventy-eight thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(264, 76052, 'seventy-six thousand fifty-two'); INSERT INTO t3 VALUES(265, 55990, 'fifty-five thousand nine hundred ninety'); INSERT INTO t3 VALUES(266, 85622, 'eighty-five thousand six hundred twenty-two'); INSERT INTO t3 VALUES(267, 59213, 'fifty-nine thousand two hundred thirteen'); INSERT INTO t3 VALUES(268, 8091, 'eight thousand ninety-one'); INSERT INTO t3 VALUES(269, 20089, 'twenty thousand eighty-nine'); INSERT INTO t3 VALUES(270, 10462, 'ten thousand four hundred sixty-two'); INSERT INTO t3 VALUES(271, 25496, 'twenty-five thousand four hundred ninety-six'); INSERT INTO t3 VALUES(272, 51072, 'fifty-one thousand seventy-two'); INSERT INTO t3 VALUES(273, 195, 'one hundred ninety-five'); INSERT INTO t3 VALUES(274, 67763, 'sixty-seven thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(275, 13734, 'thirteen thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(276, 63678, 'sixty-three thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(277, 147, 'one hundred forty-seven'); INSERT INTO t3 VALUES(278, 18492, 'eighteen thousand four hundred ninety-two'); INSERT INTO t3 VALUES(279, 88892, 'eighty-eight thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(280, 30787, 'thirty thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(281, 7265, 'seven thousand two hundred sixty-five'); INSERT INTO t3 VALUES(282, 24479, 'twenty-four thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(283, 20177, 'twenty thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(284, 67194, 'sixty-seven thousand one hundred ninety-four'); INSERT INTO t3 VALUES(285, 52662, 'fifty-two thousand six hundred sixty-two'); INSERT INTO t3 VALUES(286, 35497, 'thirty-five thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(287, 36529, 'thirty-six thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(288, 36482, 'thirty-six thousand four hundred eighty-two'); INSERT INTO t3 VALUES(289, 39017, 'thirty-nine thousand seventeen'); INSERT INTO t3 VALUES(290, 29718, 'twenty-nine thousand seven hundred eighteen'); INSERT INTO t3 VALUES(291, 38728, 'thirty-eight thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(292, 78773, 'seventy-eight thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(293, 92733, 'ninety-two thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(294, 6736, 'six thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(295, 66806, 'sixty-six thousand eight hundred six'); INSERT INTO t3 VALUES(296, 86980, 'eighty-six thousand nine hundred eighty'); INSERT INTO t3 VALUES(297, 29884, 'twenty-nine thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(298, 30679, 'thirty thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(299, 79306, 'seventy-nine thousand three hundred six'); INSERT INTO t3 VALUES(300, 65953, 'sixty-five thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(301, 17438, 'seventeen thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(302, 38751, 'thirty-eight thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(303, 46399, 'forty-six thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(304, 78452, 'seventy-eight thousand four hundred fifty-two'); INSERT INTO t3 VALUES(305, 20000, 'twenty thousand'); INSERT INTO t3 VALUES(306, 13194, 'thirteen thousand one hundred ninety-four'); INSERT INTO t3 VALUES(307, 81019, 'eighty-one thousand nineteen'); INSERT INTO t3 VALUES(308, 76798, 'seventy-six thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(309, 22161, 'twenty-two thousand one hundred sixty-one'); INSERT INTO t3 VALUES(310, 37233, 'thirty-seven thousand two hundred thirty-three'); INSERT INTO t3 VALUES(311, 74787, 'seventy-four thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(312, 30941, 'thirty thousand nine hundred forty-one'); INSERT INTO t3 VALUES(313, 78402, 'seventy-eight thousand four hundred two'); INSERT INTO t3 VALUES(314, 16427, 'sixteen thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(315, 82948, 'eighty-two thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(316, 5416, 'five thousand four hundred sixteen'); INSERT INTO t3 VALUES(317, 58180, 'fifty-eight thousand one hundred eighty'); INSERT INTO t3 VALUES(318, 55537, 'fifty-five thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(319, 83931, 'eighty-three thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(320, 25393, 'twenty-five thousand three hundred ninety-three'); INSERT INTO t3 VALUES(321, 88398, 'eighty-eight thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(322, 53156, 'fifty-three thousand one hundred fifty-six'); INSERT INTO t3 VALUES(323, 39695, 'thirty-nine thousand six hundred ninety-five'); INSERT INTO t3 VALUES(324, 35844, 'thirty-five thousand eight hundred forty-four'); INSERT INTO t3 VALUES(325, 11225, 'eleven thousand two hundred twenty-five'); INSERT INTO t3 VALUES(326, 35707, 'thirty-five thousand seven hundred seven'); INSERT INTO t3 VALUES(327, 29558, 'twenty-nine thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(328, 80039, 'eighty thousand thirty-nine'); INSERT INTO t3 VALUES(329, 23028, 'twenty-three thousand twenty-eight'); INSERT INTO t3 VALUES(330, 5767, 'five thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(331, 1959, 'one thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(332, 21325, 'twenty-one thousand three hundred twenty-five'); INSERT INTO t3 VALUES(333, 81488, 'eighty-one thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(334, 12011, 'twelve thousand eleven'); INSERT INTO t3 VALUES(335, 19694, 'nineteen thousand six hundred ninety-four'); INSERT INTO t3 VALUES(336, 84000, 'eighty-four thousand'); INSERT INTO t3 VALUES(337, 72761, 'seventy-two thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(338, 24198, 'twenty-four thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(339, 30422, 'thirty thousand four hundred twenty-two'); INSERT INTO t3 VALUES(340, 75099, 'seventy-five thousand ninety-nine'); INSERT INTO t3 VALUES(341, 4255, 'four thousand two hundred fifty-five'); INSERT INTO t3 VALUES(342, 48202, 'forty-eight thousand two hundred two'); INSERT INTO t3 VALUES(343, 53180, 'fifty-three thousand one hundred eighty'); INSERT INTO t3 VALUES(344, 56346, 'fifty-six thousand three hundred forty-six'); INSERT INTO t3 VALUES(345, 94707, 'ninety-four thousand seven hundred seven'); INSERT INTO t3 VALUES(346, 28275, 'twenty-eight thousand two hundred seventy-five'); INSERT INTO t3 VALUES(347, 20096, 'twenty thousand ninety-six'); INSERT INTO t3 VALUES(348, 66336, 'sixty-six thousand three hundred thirty-six'); INSERT INTO t3 VALUES(349, 45394, 'forty-five thousand three hundred ninety-four'); INSERT INTO t3 VALUES(350, 99448, 'ninety-nine thousand four hundred forty-eight'); INSERT INTO t3 VALUES(351, 29637, 'twenty-nine thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(352, 14212, 'fourteen thousand two hundred twelve'); INSERT INTO t3 VALUES(353, 72503, 'seventy-two thousand five hundred three'); INSERT INTO t3 VALUES(354, 82096, 'eighty-two thousand ninety-six'); INSERT INTO t3 VALUES(355, 24848, 'twenty-four thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(356, 79870, 'seventy-nine thousand eight hundred seventy'); INSERT INTO t3 VALUES(357, 61332, 'sixty-one thousand three hundred thirty-two'); INSERT INTO t3 VALUES(358, 99109, 'ninety-nine thousand one hundred nine'); INSERT INTO t3 VALUES(359, 22266, 'twenty-two thousand two hundred sixty-six'); INSERT INTO t3 VALUES(360, 55154, 'fifty-five thousand one hundred fifty-four'); INSERT INTO t3 VALUES(361, 99933, 'ninety-nine thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(362, 49927, 'forty-nine thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(363, 15041, 'fifteen thousand forty-one'); INSERT INTO t3 VALUES(364, 34503, 'thirty-four thousand five hundred three'); INSERT INTO t3 VALUES(365, 34573, 'thirty-four thousand five hundred seventy-three'); INSERT INTO t3 VALUES(366, 78481, 'seventy-eight thousand four hundred eighty-one'); INSERT INTO t3 VALUES(367, 98233, 'ninety-eight thousand two hundred thirty-three'); INSERT INTO t3 VALUES(368, 70101, 'seventy thousand one hundred one'); INSERT INTO t3 VALUES(369, 89364, 'eighty-nine thousand three hundred sixty-four'); INSERT INTO t3 VALUES(370, 37758, 'thirty-seven thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(371, 90088, 'ninety thousand eighty-eight'); INSERT INTO t3 VALUES(372, 94690, 'ninety-four thousand six hundred ninety'); INSERT INTO t3 VALUES(373, 27142, 'twenty-seven thousand one hundred forty-two'); INSERT INTO t3 VALUES(374, 50630, 'fifty thousand six hundred thirty'); INSERT INTO t3 VALUES(375, 44828, 'forty-four thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(376, 98807, 'ninety-eight thousand eight hundred seven'); INSERT INTO t3 VALUES(377, 90633, 'ninety thousand six hundred thirty-three'); INSERT INTO t3 VALUES(378, 34161, 'thirty-four thousand one hundred sixty-one'); INSERT INTO t3 VALUES(379, 50847, 'fifty thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(380, 10041, 'ten thousand forty-one'); INSERT INTO t3 VALUES(381, 66663, 'sixty-six thousand six hundred sixty-three'); INSERT INTO t3 VALUES(382, 59676, 'fifty-nine thousand six hundred seventy-six'); INSERT INTO t3 VALUES(383, 1066, 'one thousand sixty-six'); INSERT INTO t3 VALUES(384, 36999, 'thirty-six thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(385, 51597, 'fifty-one thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(386, 10998, 'ten thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(387, 23753, 'twenty-three thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(388, 42331, 'forty-two thousand three hundred thirty-one'); INSERT INTO t3 VALUES(389, 28060, 'twenty-eight thousand sixty'); INSERT INTO t3 VALUES(390, 50748, 'fifty thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(391, 63826, 'sixty-three thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(392, 40657, 'forty thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(393, 46977, 'forty-six thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(394, 78180, 'seventy-eight thousand one hundred eighty'); INSERT INTO t3 VALUES(395, 53102, 'fifty-three thousand one hundred two'); INSERT INTO t3 VALUES(396, 48776, 'forty-eight thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(397, 53364, 'fifty-three thousand three hundred sixty-four'); INSERT INTO t3 VALUES(398, 33461, 'thirty-three thousand four hundred sixty-one'); INSERT INTO t3 VALUES(399, 16726, 'sixteen thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(400, 56266, 'fifty-six thousand two hundred sixty-six'); INSERT INTO t3 VALUES(401, 6527, 'six thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(402, 79, 'seventy-nine'); INSERT INTO t3 VALUES(403, 57142, 'fifty-seven thousand one hundred forty-two'); INSERT INTO t3 VALUES(404, 60814, 'sixty thousand eight hundred fourteen'); INSERT INTO t3 VALUES(405, 10460, 'ten thousand four hundred sixty'); INSERT INTO t3 VALUES(406, 47929, 'forty-seven thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(407, 915, 'nine hundred fifteen'); INSERT INTO t3 VALUES(408, 8265, 'eight thousand two hundred sixty-five'); INSERT INTO t3 VALUES(409, 61283, 'sixty-one thousand two hundred eighty-three'); INSERT INTO t3 VALUES(410, 74918, 'seventy-four thousand nine hundred eighteen'); INSERT INTO t3 VALUES(411, 94696, 'ninety-four thousand six hundred ninety-six'); INSERT INTO t3 VALUES(412, 20180, 'twenty thousand one hundred eighty'); INSERT INTO t3 VALUES(413, 51296, 'fifty-one thousand two hundred ninety-six'); INSERT INTO t3 VALUES(414, 4759, 'four thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(415, 97901, 'ninety-seven thousand nine hundred one'); INSERT INTO t3 VALUES(416, 63344, 'sixty-three thousand three hundred forty-four'); INSERT INTO t3 VALUES(417, 87408, 'eighty-seven thousand four hundred eight'); INSERT INTO t3 VALUES(418, 73199, 'seventy-three thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(419, 4080, 'four thousand eighty'); INSERT INTO t3 VALUES(420, 83058, 'eighty-three thousand fifty-eight'); INSERT INTO t3 VALUES(421, 26771, 'twenty-six thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(422, 53218, 'fifty-three thousand two hundred eighteen'); INSERT INTO t3 VALUES(423, 25723, 'twenty-five thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(424, 90849, 'ninety thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(425, 92601, 'ninety-two thousand six hundred one'); INSERT INTO t3 VALUES(426, 6504, 'six thousand five hundred four'); INSERT INTO t3 VALUES(427, 29563, 'twenty-nine thousand five hundred sixty-three'); INSERT INTO t3 VALUES(428, 68593, 'sixty-eight thousand five hundred ninety-three'); INSERT INTO t3 VALUES(429, 65691, 'sixty-five thousand six hundred ninety-one'); INSERT INTO t3 VALUES(430, 43039, 'forty-three thousand thirty-nine'); INSERT INTO t3 VALUES(431, 58255, 'fifty-eight thousand two hundred fifty-five'); INSERT INTO t3 VALUES(432, 80688, 'eighty thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(433, 88514, 'eighty-eight thousand five hundred fourteen'); INSERT INTO t3 VALUES(434, 79061, 'seventy-nine thousand sixty-one'); INSERT INTO t3 VALUES(435, 3809, 'three thousand eight hundred nine'); INSERT INTO t3 VALUES(436, 13032, 'thirteen thousand thirty-two'); INSERT INTO t3 VALUES(437, 5484, 'five thousand four hundred eighty-four'); INSERT INTO t3 VALUES(438, 92694, 'ninety-two thousand six hundred ninety-four'); INSERT INTO t3 VALUES(439, 30988, 'thirty thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(440, 47634, 'forty-seven thousand six hundred thirty-four'); INSERT INTO t3 VALUES(441, 93286, 'ninety-three thousand two hundred eighty-six'); INSERT INTO t3 VALUES(442, 52092, 'fifty-two thousand ninety-two'); INSERT INTO t3 VALUES(443, 25338, 'twenty-five thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(444, 27407, 'twenty-seven thousand four hundred seven'); INSERT INTO t3 VALUES(445, 31005, 'thirty-one thousand five'); INSERT INTO t3 VALUES(446, 51089, 'fifty-one thousand eighty-nine'); INSERT INTO t3 VALUES(447, 67611, 'sixty-seven thousand six hundred eleven'); INSERT INTO t3 VALUES(448, 59140, 'fifty-nine thousand one hundred forty'); INSERT INTO t3 VALUES(449, 62305, 'sixty-two thousand three hundred five'); INSERT INTO t3 VALUES(450, 65481, 'sixty-five thousand four hundred eighty-one'); INSERT INTO t3 VALUES(451, 56582, 'fifty-six thousand five hundred eighty-two'); INSERT INTO t3 VALUES(452, 73844, 'seventy-three thousand eight hundred forty-four'); INSERT INTO t3 VALUES(453, 80966, 'eighty thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(454, 63129, 'sixty-three thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(455, 54072, 'fifty-four thousand seventy-two'); INSERT INTO t3 VALUES(456, 89320, 'eighty-nine thousand three hundred twenty'); INSERT INTO t3 VALUES(457, 82740, 'eighty-two thousand seven hundred forty'); INSERT INTO t3 VALUES(458, 80819, 'eighty thousand eight hundred nineteen'); INSERT INTO t3 VALUES(459, 77771, 'seventy-seven thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(460, 60669, 'sixty thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(461, 39184, 'thirty-nine thousand one hundred eighty-four'); INSERT INTO t3 VALUES(462, 68848, 'sixty-eight thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(463, 99938, 'ninety-nine thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(464, 93791, 'ninety-three thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(465, 24279, 'twenty-four thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(466, 15217, 'fifteen thousand two hundred seventeen'); INSERT INTO t3 VALUES(467, 12705, 'twelve thousand seven hundred five'); INSERT INTO t3 VALUES(468, 82683, 'eighty-two thousand six hundred eighty-three'); INSERT INTO t3 VALUES(469, 7164, 'seven thousand one hundred sixty-four'); INSERT INTO t3 VALUES(470, 75594, 'seventy-five thousand five hundred ninety-four'); INSERT INTO t3 VALUES(471, 2754, 'two thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(472, 71229, 'seventy-one thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(473, 21874, 'twenty-one thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(474, 9216, 'nine thousand two hundred sixteen'); INSERT INTO t3 VALUES(475, 65001, 'sixty-five thousand one'); INSERT INTO t3 VALUES(476, 28692, 'twenty-eight thousand six hundred ninety-two'); INSERT INTO t3 VALUES(477, 78230, 'seventy-eight thousand two hundred thirty'); INSERT INTO t3 VALUES(478, 120, 'one hundred twenty'); INSERT INTO t3 VALUES(479, 19649, 'nineteen thousand six hundred forty-nine'); INSERT INTO t3 VALUES(480, 40790, 'forty thousand seven hundred ninety'); INSERT INTO t3 VALUES(481, 34612, 'thirty-four thousand six hundred twelve'); INSERT INTO t3 VALUES(482, 61303, 'sixty-one thousand three hundred three'); INSERT INTO t3 VALUES(483, 29631, 'twenty-nine thousand six hundred thirty-one'); INSERT INTO t3 VALUES(484, 92284, 'ninety-two thousand two hundred eighty-four'); INSERT INTO t3 VALUES(485, 13349, 'thirteen thousand three hundred forty-nine'); INSERT INTO t3 VALUES(486, 74211, 'seventy-four thousand two hundred eleven'); INSERT INTO t3 VALUES(487, 39512, 'thirty-nine thousand five hundred twelve'); INSERT INTO t3 VALUES(488, 50529, 'fifty thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(489, 4724, 'four thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(490, 78296, 'seventy-eight thousand two hundred ninety-six'); INSERT INTO t3 VALUES(491, 66338, 'sixty-six thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(492, 50105, 'fifty thousand one hundred five'); INSERT INTO t3 VALUES(493, 54289, 'fifty-four thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(494, 89960, 'eighty-nine thousand nine hundred sixty'); INSERT INTO t3 VALUES(495, 97482, 'ninety-seven thousand four hundred eighty-two'); INSERT INTO t3 VALUES(496, 73469, 'seventy-three thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(497, 37240, 'thirty-seven thousand two hundred forty'); INSERT INTO t3 VALUES(498, 25358, 'twenty-five thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(499, 90833, 'ninety thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(500, 67689, 'sixty-seven thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(501, 86135, 'eighty-six thousand one hundred thirty-five'); INSERT INTO t3 VALUES(502, 72655, 'seventy-two thousand six hundred fifty-five'); INSERT INTO t3 VALUES(503, 14299, 'fourteen thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(504, 58565, 'fifty-eight thousand five hundred sixty-five'); INSERT INTO t3 VALUES(505, 51039, 'fifty-one thousand thirty-nine'); INSERT INTO t3 VALUES(506, 3781, 'three thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(507, 53031, 'fifty-three thousand thirty-one'); INSERT INTO t3 VALUES(508, 83820, 'eighty-three thousand eight hundred twenty'); INSERT INTO t3 VALUES(509, 52689, 'fifty-two thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(510, 75502, 'seventy-five thousand five hundred two'); INSERT INTO t3 VALUES(511, 67061, 'sixty-seven thousand sixty-one'); INSERT INTO t3 VALUES(512, 48192, 'forty-eight thousand one hundred ninety-two'); INSERT INTO t3 VALUES(513, 43987, 'forty-three thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(514, 79375, 'seventy-nine thousand three hundred seventy-five'); INSERT INTO t3 VALUES(515, 88227, 'eighty-eight thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(516, 31058, 'thirty-one thousand fifty-eight'); INSERT INTO t3 VALUES(517, 66045, 'sixty-six thousand forty-five'); INSERT INTO t3 VALUES(518, 33816, 'thirty-three thousand eight hundred sixteen'); INSERT INTO t3 VALUES(519, 20901, 'twenty thousand nine hundred one'); INSERT INTO t3 VALUES(520, 97866, 'ninety-seven thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(521, 95757, 'ninety-five thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(522, 5770, 'five thousand seven hundred seventy'); INSERT INTO t3 VALUES(523, 35260, 'thirty-five thousand two hundred sixty'); INSERT INTO t3 VALUES(524, 27704, 'twenty-seven thousand seven hundred four'); INSERT INTO t3 VALUES(525, 57938, 'fifty-seven thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(526, 40212, 'forty thousand two hundred twelve'); INSERT INTO t3 VALUES(527, 23433, 'twenty-three thousand four hundred thirty-three'); INSERT INTO t3 VALUES(528, 53782, 'fifty-three thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(529, 91027, 'ninety-one thousand twenty-seven'); INSERT INTO t3 VALUES(530, 24951, 'twenty-four thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(531, 14166, 'fourteen thousand one hundred sixty-six'); INSERT INTO t3 VALUES(532, 4291, 'four thousand two hundred ninety-one'); INSERT INTO t3 VALUES(533, 16897, 'sixteen thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(534, 30100, 'thirty thousand one hundred'); INSERT INTO t3 VALUES(535, 15943, 'fifteen thousand nine hundred forty-three'); INSERT INTO t3 VALUES(536, 61552, 'sixty-one thousand five hundred fifty-two'); INSERT INTO t3 VALUES(537, 28251, 'twenty-eight thousand two hundred fifty-one'); INSERT INTO t3 VALUES(538, 74560, 'seventy-four thousand five hundred sixty'); INSERT INTO t3 VALUES(539, 63732, 'sixty-three thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(540, 56346, 'fifty-six thousand three hundred forty-six'); INSERT INTO t3 VALUES(541, 19525, 'nineteen thousand five hundred twenty-five'); INSERT INTO t3 VALUES(542, 46029, 'forty-six thousand twenty-nine'); INSERT INTO t3 VALUES(543, 90910, 'ninety thousand nine hundred ten'); INSERT INTO t3 VALUES(544, 71723, 'seventy-one thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(545, 79085, 'seventy-nine thousand eighty-five'); INSERT INTO t3 VALUES(546, 92607, 'ninety-two thousand six hundred seven'); INSERT INTO t3 VALUES(547, 96583, 'ninety-six thousand five hundred eighty-three'); INSERT INTO t3 VALUES(548, 74964, 'seventy-four thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(549, 31048, 'thirty-one thousand forty-eight'); INSERT INTO t3 VALUES(550, 78469, 'seventy-eight thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(551, 55499, 'fifty-five thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(552, 92389, 'ninety-two thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(553, 91848, 'ninety-one thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(554, 65795, 'sixty-five thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(555, 22453, 'twenty-two thousand four hundred fifty-three'); INSERT INTO t3 VALUES(556, 31578, 'thirty-one thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(557, 47322, 'forty-seven thousand three hundred twenty-two'); INSERT INTO t3 VALUES(558, 5279, 'five thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(559, 97232, 'ninety-seven thousand two hundred thirty-two'); INSERT INTO t3 VALUES(560, 41765, 'forty-one thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(561, 19565, 'nineteen thousand five hundred sixty-five'); INSERT INTO t3 VALUES(562, 90673, 'ninety thousand six hundred seventy-three'); INSERT INTO t3 VALUES(563, 34856, 'thirty-four thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(564, 18369, 'eighteen thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(565, 66398, 'sixty-six thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(566, 52590, 'fifty-two thousand five hundred ninety'); INSERT INTO t3 VALUES(567, 91644, 'ninety-one thousand six hundred forty-four'); INSERT INTO t3 VALUES(568, 34637, 'thirty-four thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(569, 9244, 'nine thousand two hundred forty-four'); INSERT INTO t3 VALUES(570, 76019, 'seventy-six thousand nineteen'); INSERT INTO t3 VALUES(571, 40624, 'forty thousand six hundred twenty-four'); INSERT INTO t3 VALUES(572, 23892, 'twenty-three thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(573, 12027, 'twelve thousand twenty-seven'); INSERT INTO t3 VALUES(574, 87744, 'eighty-seven thousand seven hundred forty-four'); INSERT INTO t3 VALUES(575, 92241, 'ninety-two thousand two hundred forty-one'); INSERT INTO t3 VALUES(576, 18570, 'eighteen thousand five hundred seventy'); INSERT INTO t3 VALUES(577, 12463, 'twelve thousand four hundred sixty-three'); INSERT INTO t3 VALUES(578, 27663, 'twenty-seven thousand six hundred sixty-three'); INSERT INTO t3 VALUES(579, 98405, 'ninety-eight thousand four hundred five'); INSERT INTO t3 VALUES(580, 97899, 'ninety-seven thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(581, 93129, 'ninety-three thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(582, 58876, 'fifty-eight thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(583, 75761, 'seventy-five thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(584, 3080, 'three thousand eighty'); INSERT INTO t3 VALUES(585, 43332, 'forty-three thousand three hundred thirty-two'); INSERT INTO t3 VALUES(586, 50589, 'fifty thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(587, 23157, 'twenty-three thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(588, 71354, 'seventy-one thousand three hundred fifty-four'); INSERT INTO t3 VALUES(589, 29656, 'twenty-nine thousand six hundred fifty-six'); INSERT INTO t3 VALUES(590, 34077, 'thirty-four thousand seventy-seven'); INSERT INTO t3 VALUES(591, 86707, 'eighty-six thousand seven hundred seven'); INSERT INTO t3 VALUES(592, 8135, 'eight thousand one hundred thirty-five'); INSERT INTO t3 VALUES(593, 49190, 'forty-nine thousand one hundred ninety'); INSERT INTO t3 VALUES(594, 24109, 'twenty-four thousand one hundred nine'); INSERT INTO t3 VALUES(595, 2553, 'two thousand five hundred fifty-three'); INSERT INTO t3 VALUES(596, 8775, 'eight thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(597, 4192, 'four thousand one hundred ninety-two'); INSERT INTO t3 VALUES(598, 16535, 'sixteen thousand five hundred thirty-five'); INSERT INTO t3 VALUES(599, 70100, 'seventy thousand one hundred'); INSERT INTO t3 VALUES(600, 72784, 'seventy-two thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(601, 85207, 'eighty-five thousand two hundred seven'); INSERT INTO t3 VALUES(602, 84033, 'eighty-four thousand thirty-three'); INSERT INTO t3 VALUES(603, 50289, 'fifty thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(604, 45270, 'forty-five thousand two hundred seventy'); INSERT INTO t3 VALUES(605, 15121, 'fifteen thousand one hundred twenty-one'); INSERT INTO t3 VALUES(606, 96021, 'ninety-six thousand twenty-one'); INSERT INTO t3 VALUES(607, 1700, 'one thousand seven hundred'); INSERT INTO t3 VALUES(608, 32762, 'thirty-two thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(609, 98766, 'ninety-eight thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(610, 4557, 'four thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(611, 41504, 'forty-one thousand five hundred four'); INSERT INTO t3 VALUES(612, 87199, 'eighty-seven thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(613, 55255, 'fifty-five thousand two hundred fifty-five'); INSERT INTO t3 VALUES(614, 83727, 'eighty-three thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(615, 9000, 'nine thousand'); INSERT INTO t3 VALUES(616, 22676, 'twenty-two thousand six hundred seventy-six'); INSERT INTO t3 VALUES(617, 97094, 'ninety-seven thousand ninety-four'); INSERT INTO t3 VALUES(618, 66160, 'sixty-six thousand one hundred sixty'); INSERT INTO t3 VALUES(619, 53497, 'fifty-three thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(620, 61579, 'sixty-one thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(621, 86571, 'eighty-six thousand five hundred seventy-one'); INSERT INTO t3 VALUES(622, 2308, 'two thousand three hundred eight'); INSERT INTO t3 VALUES(623, 35960, 'thirty-five thousand nine hundred sixty'); INSERT INTO t3 VALUES(624, 98290, 'ninety-eight thousand two hundred ninety'); INSERT INTO t3 VALUES(625, 22605, 'twenty-two thousand six hundred five'); INSERT INTO t3 VALUES(626, 73700, 'seventy-three thousand seven hundred'); INSERT INTO t3 VALUES(627, 76160, 'seventy-six thousand one hundred sixty'); INSERT INTO t3 VALUES(628, 63164, 'sixty-three thousand one hundred sixty-four'); INSERT INTO t3 VALUES(629, 54301, 'fifty-four thousand three hundred one'); INSERT INTO t3 VALUES(630, 89457, 'eighty-nine thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(631, 9100, 'nine thousand one hundred'); INSERT INTO t3 VALUES(632, 45220, 'forty-five thousand two hundred twenty'); INSERT INTO t3 VALUES(633, 44339, 'forty-four thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(634, 99875, 'ninety-nine thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(635, 36622, 'thirty-six thousand six hundred twenty-two'); INSERT INTO t3 VALUES(636, 22818, 'twenty-two thousand eight hundred eighteen'); INSERT INTO t3 VALUES(637, 45079, 'forty-five thousand seventy-nine'); INSERT INTO t3 VALUES(638, 79120, 'seventy-nine thousand one hundred twenty'); INSERT INTO t3 VALUES(639, 19298, 'nineteen thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(640, 71225, 'seventy-one thousand two hundred twenty-five'); INSERT INTO t3 VALUES(641, 21129, 'twenty-one thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(642, 89568, 'eighty-nine thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(643, 39972, 'thirty-nine thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(644, 68251, 'sixty-eight thousand two hundred fifty-one'); INSERT INTO t3 VALUES(645, 26025, 'twenty-six thousand twenty-five'); INSERT INTO t3 VALUES(646, 66601, 'sixty-six thousand six hundred one'); INSERT INTO t3 VALUES(647, 96932, 'ninety-six thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(648, 87168, 'eighty-seven thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(649, 96357, 'ninety-six thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(650, 20298, 'twenty thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(651, 37545, 'thirty-seven thousand five hundred forty-five'); INSERT INTO t3 VALUES(652, 65636, 'sixty-five thousand six hundred thirty-six'); INSERT INTO t3 VALUES(653, 94130, 'ninety-four thousand one hundred thirty'); INSERT INTO t3 VALUES(654, 81967, 'eighty-one thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(655, 20700, 'twenty thousand seven hundred'); INSERT INTO t3 VALUES(656, 4484, 'four thousand four hundred eighty-four'); INSERT INTO t3 VALUES(657, 27452, 'twenty-seven thousand four hundred fifty-two'); INSERT INTO t3 VALUES(658, 76292, 'seventy-six thousand two hundred ninety-two'); INSERT INTO t3 VALUES(659, 42300, 'forty-two thousand three hundred'); INSERT INTO t3 VALUES(660, 40073, 'forty thousand seventy-three'); INSERT INTO t3 VALUES(661, 28949, 'twenty-eight thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(662, 36759, 'thirty-six thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(663, 29034, 'twenty-nine thousand thirty-four'); INSERT INTO t3 VALUES(664, 52711, 'fifty-two thousand seven hundred eleven'); INSERT INTO t3 VALUES(665, 79385, 'seventy-nine thousand three hundred eighty-five'); INSERT INTO t3 VALUES(666, 12945, 'twelve thousand nine hundred forty-five'); INSERT INTO t3 VALUES(667, 10377, 'ten thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(668, 28079, 'twenty-eight thousand seventy-nine'); INSERT INTO t3 VALUES(669, 89753, 'eighty-nine thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(670, 8605, 'eight thousand six hundred five'); INSERT INTO t3 VALUES(671, 37018, 'thirty-seven thousand eighteen'); INSERT INTO t3 VALUES(672, 66150, 'sixty-six thousand one hundred fifty'); INSERT INTO t3 VALUES(673, 66564, 'sixty-six thousand five hundred sixty-four'); INSERT INTO t3 VALUES(674, 99011, 'ninety-nine thousand eleven'); INSERT INTO t3 VALUES(675, 68395, 'sixty-eight thousand three hundred ninety-five'); INSERT INTO t3 VALUES(676, 69904, 'sixty-nine thousand nine hundred four'); INSERT INTO t3 VALUES(677, 34993, 'thirty-four thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(678, 2401, 'two thousand four hundred one'); INSERT INTO t3 VALUES(679, 24145, 'twenty-four thousand one hundred forty-five'); INSERT INTO t3 VALUES(680, 86250, 'eighty-six thousand two hundred fifty'); INSERT INTO t3 VALUES(681, 58318, 'fifty-eight thousand three hundred eighteen'); INSERT INTO t3 VALUES(682, 44353, 'forty-four thousand three hundred fifty-three'); INSERT INTO t3 VALUES(683, 45887, 'forty-five thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(684, 51925, 'fifty-one thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(685, 52235, 'fifty-two thousand two hundred thirty-five'); INSERT INTO t3 VALUES(686, 52428, 'fifty-two thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(687, 38146, 'thirty-eight thousand one hundred forty-six'); INSERT INTO t3 VALUES(688, 68723, 'sixty-eight thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(689, 60883, 'sixty thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(690, 18111, 'eighteen thousand one hundred eleven'); INSERT INTO t3 VALUES(691, 91083, 'ninety-one thousand eighty-three'); INSERT INTO t3 VALUES(692, 73801, 'seventy-three thousand eight hundred one'); INSERT INTO t3 VALUES(693, 78093, 'seventy-eight thousand ninety-three'); INSERT INTO t3 VALUES(694, 478, 'four hundred seventy-eight'); INSERT INTO t3 VALUES(695, 53728, 'fifty-three thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(696, 16203, 'sixteen thousand two hundred three'); INSERT INTO t3 VALUES(697, 32014, 'thirty-two thousand fourteen'); INSERT INTO t3 VALUES(698, 54762, 'fifty-four thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(699, 39265, 'thirty-nine thousand two hundred sixty-five'); INSERT INTO t3 VALUES(700, 98331, 'ninety-eight thousand three hundred thirty-one'); INSERT INTO t3 VALUES(701, 72738, 'seventy-two thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(702, 93239, 'ninety-three thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(703, 83486, 'eighty-three thousand four hundred eighty-six'); INSERT INTO t3 VALUES(704, 63304, 'sixty-three thousand three hundred four'); INSERT INTO t3 VALUES(705, 51732, 'fifty-one thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(706, 59997, 'fifty-nine thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(707, 95198, 'ninety-five thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(708, 64717, 'sixty-four thousand seven hundred seventeen'); INSERT INTO t3 VALUES(709, 77278, 'seventy-seven thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(710, 60032, 'sixty thousand thirty-two'); INSERT INTO t3 VALUES(711, 30972, 'thirty thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(712, 18631, 'eighteen thousand six hundred thirty-one'); INSERT INTO t3 VALUES(713, 85011, 'eighty-five thousand eleven'); INSERT INTO t3 VALUES(714, 54491, 'fifty-four thousand four hundred ninety-one'); INSERT INTO t3 VALUES(715, 3144, 'three thousand one hundred forty-four'); INSERT INTO t3 VALUES(716, 46631, 'forty-six thousand six hundred thirty-one'); INSERT INTO t3 VALUES(717, 26420, 'twenty-six thousand four hundred twenty'); INSERT INTO t3 VALUES(718, 60444, 'sixty thousand four hundred forty-four'); INSERT INTO t3 VALUES(719, 93079, 'ninety-three thousand seventy-nine'); INSERT INTO t3 VALUES(720, 65486, 'sixty-five thousand four hundred eighty-six'); INSERT INTO t3 VALUES(721, 37657, 'thirty-seven thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(722, 89554, 'eighty-nine thousand five hundred fifty-four'); INSERT INTO t3 VALUES(723, 34795, 'thirty-four thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(724, 61849, 'sixty-one thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(725, 50893, 'fifty thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(726, 54824, 'fifty-four thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(727, 70141, 'seventy thousand one hundred forty-one'); INSERT INTO t3 VALUES(728, 18785, 'eighteen thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(729, 71155, 'seventy-one thousand one hundred fifty-five'); INSERT INTO t3 VALUES(730, 82657, 'eighty-two thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(731, 49123, 'forty-nine thousand one hundred twenty-three'); INSERT INTO t3 VALUES(732, 30704, 'thirty thousand seven hundred four'); INSERT INTO t3 VALUES(733, 34632, 'thirty-four thousand six hundred thirty-two'); INSERT INTO t3 VALUES(734, 6440, 'six thousand four hundred forty'); INSERT INTO t3 VALUES(735, 39917, 'thirty-nine thousand nine hundred seventeen'); INSERT INTO t3 VALUES(736, 92176, 'ninety-two thousand one hundred seventy-six'); INSERT INTO t3 VALUES(737, 34647, 'thirty-four thousand six hundred forty-seven'); INSERT INTO t3 VALUES(738, 13096, 'thirteen thousand ninety-six'); INSERT INTO t3 VALUES(739, 15165, 'fifteen thousand one hundred sixty-five'); INSERT INTO t3 VALUES(740, 26303, 'twenty-six thousand three hundred three'); INSERT INTO t3 VALUES(741, 63149, 'sixty-three thousand one hundred forty-nine'); INSERT INTO t3 VALUES(742, 643, 'six hundred forty-three'); INSERT INTO t3 VALUES(743, 46377, 'forty-six thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(744, 75722, 'seventy-five thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(745, 904, 'nine hundred four'); INSERT INTO t3 VALUES(746, 35726, 'thirty-five thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(747, 31409, 'thirty-one thousand four hundred nine'); INSERT INTO t3 VALUES(748, 96595, 'ninety-six thousand five hundred ninety-five'); INSERT INTO t3 VALUES(749, 405, 'four hundred five'); INSERT INTO t3 VALUES(750, 78860, 'seventy-eight thousand eight hundred sixty'); INSERT INTO t3 VALUES(751, 78491, 'seventy-eight thousand four hundred ninety-one'); INSERT INTO t3 VALUES(752, 75500, 'seventy-five thousand five hundred'); INSERT INTO t3 VALUES(753, 88873, 'eighty-eight thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(754, 75943, 'seventy-five thousand nine hundred forty-three'); INSERT INTO t3 VALUES(755, 87013, 'eighty-seven thousand thirteen'); INSERT INTO t3 VALUES(756, 80357, 'eighty thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(757, 58039, 'fifty-eight thousand thirty-nine'); INSERT INTO t3 VALUES(758, 33498, 'thirty-three thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(759, 63703, 'sixty-three thousand seven hundred three'); INSERT INTO t3 VALUES(760, 14663, 'fourteen thousand six hundred sixty-three'); INSERT INTO t3 VALUES(761, 27734, 'twenty-seven thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(762, 84282, 'eighty-four thousand two hundred eighty-two'); INSERT INTO t3 VALUES(763, 15214, 'fifteen thousand two hundred fourteen'); INSERT INTO t3 VALUES(764, 47449, 'forty-seven thousand four hundred forty-nine'); INSERT INTO t3 VALUES(765, 30014, 'thirty thousand fourteen'); INSERT INTO t3 VALUES(766, 44734, 'forty-four thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(767, 61854, 'sixty-one thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(768, 3346, 'three thousand three hundred forty-six'); INSERT INTO t3 VALUES(769, 35580, 'thirty-five thousand five hundred eighty'); INSERT INTO t3 VALUES(770, 98432, 'ninety-eight thousand four hundred thirty-two'); INSERT INTO t3 VALUES(771, 300, 'three hundred'); INSERT INTO t3 VALUES(772, 55376, 'fifty-five thousand three hundred seventy-six'); INSERT INTO t3 VALUES(773, 80877, 'eighty thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(774, 43933, 'forty-three thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(775, 51760, 'fifty-one thousand seven hundred sixty'); INSERT INTO t3 VALUES(776, 33696, 'thirty-three thousand six hundred ninety-six'); INSERT INTO t3 VALUES(777, 82408, 'eighty-two thousand four hundred eight'); INSERT INTO t3 VALUES(778, 14504, 'fourteen thousand five hundred four'); INSERT INTO t3 VALUES(779, 50108, 'fifty thousand one hundred eight'); INSERT INTO t3 VALUES(780, 97058, 'ninety-seven thousand fifty-eight'); INSERT INTO t3 VALUES(781, 74468, 'seventy-four thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(782, 68213, 'sixty-eight thousand two hundred thirteen'); INSERT INTO t3 VALUES(783, 1076, 'one thousand seventy-six'); INSERT INTO t3 VALUES(784, 45271, 'forty-five thousand two hundred seventy-one'); INSERT INTO t3 VALUES(785, 34964, 'thirty-four thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(786, 14228, 'fourteen thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(787, 19200, 'nineteen thousand two hundred'); INSERT INTO t3 VALUES(788, 80414, 'eighty thousand four hundred fourteen'); INSERT INTO t3 VALUES(789, 27636, 'twenty-seven thousand six hundred thirty-six'); INSERT INTO t3 VALUES(790, 8214, 'eight thousand two hundred fourteen'); INSERT INTO t3 VALUES(791, 27386, 'twenty-seven thousand three hundred eighty-six'); INSERT INTO t3 VALUES(792, 32242, 'thirty-two thousand two hundred forty-two'); INSERT INTO t3 VALUES(793, 52548, 'fifty-two thousand five hundred forty-eight'); INSERT INTO t3 VALUES(794, 8985, 'eight thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(795, 86741, 'eighty-six thousand seven hundred forty-one'); INSERT INTO t3 VALUES(796, 49915, 'forty-nine thousand nine hundred fifteen'); INSERT INTO t3 VALUES(797, 74705, 'seventy-four thousand seven hundred five'); INSERT INTO t3 VALUES(798, 30034, 'thirty thousand thirty-four'); INSERT INTO t3 VALUES(799, 61239, 'sixty-one thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(800, 98196, 'ninety-eight thousand one hundred ninety-six'); INSERT INTO t3 VALUES(801, 91281, 'ninety-one thousand two hundred eighty-one'); INSERT INTO t3 VALUES(802, 84740, 'eighty-four thousand seven hundred forty'); INSERT INTO t3 VALUES(803, 2070, 'two thousand seventy'); INSERT INTO t3 VALUES(804, 78383, 'seventy-eight thousand three hundred eighty-three'); INSERT INTO t3 VALUES(805, 66789, 'sixty-six thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(806, 91529, 'ninety-one thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(807, 47484, 'forty-seven thousand four hundred eighty-four'); INSERT INTO t3 VALUES(808, 34303, 'thirty-four thousand three hundred three'); INSERT INTO t3 VALUES(809, 60661, 'sixty thousand six hundred sixty-one'); INSERT INTO t3 VALUES(810, 99635, 'ninety-nine thousand six hundred thirty-five'); INSERT INTO t3 VALUES(811, 90865, 'ninety thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(812, 92401, 'ninety-two thousand four hundred one'); INSERT INTO t3 VALUES(813, 89329, 'eighty-nine thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(814, 58767, 'fifty-eight thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(815, 38618, 'thirty-eight thousand six hundred eighteen'); INSERT INTO t3 VALUES(816, 32645, 'thirty-two thousand six hundred forty-five'); INSERT INTO t3 VALUES(817, 60147, 'sixty thousand one hundred forty-seven'); INSERT INTO t3 VALUES(818, 77130, 'seventy-seven thousand one hundred thirty'); INSERT INTO t3 VALUES(819, 89712, 'eighty-nine thousand seven hundred twelve'); INSERT INTO t3 VALUES(820, 84405, 'eighty-four thousand four hundred five'); INSERT INTO t3 VALUES(821, 68079, 'sixty-eight thousand seventy-nine'); INSERT INTO t3 VALUES(822, 48312, 'forty-eight thousand three hundred twelve'); INSERT INTO t3 VALUES(823, 52981, 'fifty-two thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(824, 67737, 'sixty-seven thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(825, 82728, 'eighty-two thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(826, 40074, 'forty thousand seventy-four'); INSERT INTO t3 VALUES(827, 42727, 'forty-two thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(828, 25509, 'twenty-five thousand five hundred nine'); INSERT INTO t3 VALUES(829, 25994, 'twenty-five thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(830, 3000, 'three thousand'); INSERT INTO t3 VALUES(831, 84969, 'eighty-four thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(832, 55878, 'fifty-five thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(833, 67112, 'sixty-seven thousand one hundred twelve'); INSERT INTO t3 VALUES(834, 83937, 'eighty-three thousand nine hundred thirty-seven'); INSERT INTO t3 VALUES(835, 81016, 'eighty-one thousand sixteen'); INSERT INTO t3 VALUES(836, 40331, 'forty thousand three hundred thirty-one'); INSERT INTO t3 VALUES(837, 83067, 'eighty-three thousand sixty-seven'); INSERT INTO t3 VALUES(838, 7500, 'seven thousand five hundred'); INSERT INTO t3 VALUES(839, 43809, 'forty-three thousand eight hundred nine'); INSERT INTO t3 VALUES(840, 10120, 'ten thousand one hundred twenty'); INSERT INTO t3 VALUES(841, 69871, 'sixty-nine thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(842, 63592, 'sixty-three thousand five hundred ninety-two'); INSERT INTO t3 VALUES(843, 77310, 'seventy-seven thousand three hundred ten'); INSERT INTO t3 VALUES(844, 73925, 'seventy-three thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(845, 38003, 'thirty-eight thousand three'); INSERT INTO t3 VALUES(846, 72814, 'seventy-two thousand eight hundred fourteen'); INSERT INTO t3 VALUES(847, 74602, 'seventy-four thousand six hundred two'); INSERT INTO t3 VALUES(848, 91671, 'ninety-one thousand six hundred seventy-one'); INSERT INTO t3 VALUES(849, 72281, 'seventy-two thousand two hundred eighty-one'); INSERT INTO t3 VALUES(850, 26861, 'twenty-six thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(851, 12126, 'twelve thousand one hundred twenty-six'); INSERT INTO t3 VALUES(852, 5096, 'five thousand ninety-six'); INSERT INTO t3 VALUES(853, 1116, 'one thousand one hundred sixteen'); INSERT INTO t3 VALUES(854, 80169, 'eighty thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(855, 62297, 'sixty-two thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(856, 7367, 'seven thousand three hundred sixty-seven'); INSERT INTO t3 VALUES(857, 16942, 'sixteen thousand nine hundred forty-two'); INSERT INTO t3 VALUES(858, 6685, 'six thousand six hundred eighty-five'); INSERT INTO t3 VALUES(859, 93081, 'ninety-three thousand eighty-one'); INSERT INTO t3 VALUES(860, 76562, 'seventy-six thousand five hundred sixty-two'); INSERT INTO t3 VALUES(861, 89286, 'eighty-nine thousand two hundred eighty-six'); INSERT INTO t3 VALUES(862, 72002, 'seventy-two thousand two'); INSERT INTO t3 VALUES(863, 46896, 'forty-six thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(864, 91762, 'ninety-one thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(865, 79775, 'seventy-nine thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(866, 56480, 'fifty-six thousand four hundred eighty'); INSERT INTO t3 VALUES(867, 56775, 'fifty-six thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(868, 23043, 'twenty-three thousand forty-three'); INSERT INTO t3 VALUES(869, 71859, 'seventy-one thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(870, 2224, 'two thousand two hundred twenty-four'); INSERT INTO t3 VALUES(871, 33439, 'thirty-three thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(872, 49639, 'forty-nine thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(873, 35035, 'thirty-five thousand thirty-five'); INSERT INTO t3 VALUES(874, 24312, 'twenty-four thousand three hundred twelve'); INSERT INTO t3 VALUES(875, 58095, 'fifty-eight thousand ninety-five'); INSERT INTO t3 VALUES(876, 93932, 'ninety-three thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(877, 43410, 'forty-three thousand four hundred ten'); INSERT INTO t3 VALUES(878, 77814, 'seventy-seven thousand eight hundred fourteen'); INSERT INTO t3 VALUES(879, 8232, 'eight thousand two hundred thirty-two'); INSERT INTO t3 VALUES(880, 2192, 'two thousand one hundred ninety-two'); INSERT INTO t3 VALUES(881, 7342, 'seven thousand three hundred forty-two'); INSERT INTO t3 VALUES(882, 77610, 'seventy-seven thousand six hundred ten'); INSERT INTO t3 VALUES(883, 48520, 'forty-eight thousand five hundred twenty'); INSERT INTO t3 VALUES(884, 848, 'eight hundred forty-eight'); INSERT INTO t3 VALUES(885, 59646, 'fifty-nine thousand six hundred forty-six'); INSERT INTO t3 VALUES(886, 69356, 'sixty-nine thousand three hundred fifty-six'); INSERT INTO t3 VALUES(887, 14891, 'fourteen thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(888, 6407, 'six thousand four hundred seven'); INSERT INTO t3 VALUES(889, 35514, 'thirty-five thousand five hundred fourteen'); INSERT INTO t3 VALUES(890, 68643, 'sixty-eight thousand six hundred forty-three'); INSERT INTO t3 VALUES(891, 86636, 'eighty-six thousand six hundred thirty-six'); INSERT INTO t3 VALUES(892, 39365, 'thirty-nine thousand three hundred sixty-five'); INSERT INTO t3 VALUES(893, 44205, 'forty-four thousand two hundred five'); INSERT INTO t3 VALUES(894, 5198, 'five thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(895, 5597, 'five thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(896, 3459, 'three thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(897, 4188, 'four thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(898, 98567, 'ninety-eight thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(899, 17567, 'seventeen thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(900, 22720, 'twenty-two thousand seven hundred twenty'); INSERT INTO t3 VALUES(901, 99730, 'ninety-nine thousand seven hundred thirty'); INSERT INTO t3 VALUES(902, 16445, 'sixteen thousand four hundred forty-five'); INSERT INTO t3 VALUES(903, 68994, 'sixty-eight thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(904, 93584, 'ninety-three thousand five hundred eighty-four'); INSERT INTO t3 VALUES(905, 86750, 'eighty-six thousand seven hundred fifty'); INSERT INTO t3 VALUES(906, 80181, 'eighty thousand one hundred eighty-one'); INSERT INTO t3 VALUES(907, 53732, 'fifty-three thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(908, 73027, 'seventy-three thousand twenty-seven'); INSERT INTO t3 VALUES(909, 16179, 'sixteen thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(910, 84827, 'eighty-four thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(911, 78361, 'seventy-eight thousand three hundred sixty-one'); INSERT INTO t3 VALUES(912, 4261, 'four thousand two hundred sixty-one'); INSERT INTO t3 VALUES(913, 96227, 'ninety-six thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(914, 17073, 'seventeen thousand seventy-three'); INSERT INTO t3 VALUES(915, 97, 'ninety-seven'); INSERT INTO t3 VALUES(916, 92380, 'ninety-two thousand three hundred eighty'); INSERT INTO t3 VALUES(917, 61506, 'sixty-one thousand five hundred six'); INSERT INTO t3 VALUES(918, 50585, 'fifty thousand five hundred eighty-five'); INSERT INTO t3 VALUES(919, 56705, 'fifty-six thousand seven hundred five'); INSERT INTO t3 VALUES(920, 38685, 'thirty-eight thousand six hundred eighty-five'); INSERT INTO t3 VALUES(921, 83442, 'eighty-three thousand four hundred forty-two'); INSERT INTO t3 VALUES(922, 11260, 'eleven thousand two hundred sixty'); INSERT INTO t3 VALUES(923, 21660, 'twenty-one thousand six hundred sixty'); INSERT INTO t3 VALUES(924, 79802, 'seventy-nine thousand eight hundred two'); INSERT INTO t3 VALUES(925, 16513, 'sixteen thousand five hundred thirteen'); INSERT INTO t3 VALUES(926, 30555, 'thirty thousand five hundred fifty-five'); INSERT INTO t3 VALUES(927, 79963, 'seventy-nine thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(928, 7254, 'seven thousand two hundred fifty-four'); INSERT INTO t3 VALUES(929, 62226, 'sixty-two thousand two hundred twenty-six'); INSERT INTO t3 VALUES(930, 25716, 'twenty-five thousand seven hundred sixteen'); INSERT INTO t3 VALUES(931, 66617, 'sixty-six thousand six hundred seventeen'); INSERT INTO t3 VALUES(932, 73791, 'seventy-three thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(933, 40546, 'forty thousand five hundred forty-six'); INSERT INTO t3 VALUES(934, 19036, 'nineteen thousand thirty-six'); INSERT INTO t3 VALUES(935, 12583, 'twelve thousand five hundred eighty-three'); INSERT INTO t3 VALUES(936, 59331, 'fifty-nine thousand three hundred thirty-one'); INSERT INTO t3 VALUES(937, 72492, 'seventy-two thousand four hundred ninety-two'); INSERT INTO t3 VALUES(938, 69492, 'sixty-nine thousand four hundred ninety-two'); INSERT INTO t3 VALUES(939, 73907, 'seventy-three thousand nine hundred seven'); INSERT INTO t3 VALUES(940, 8321, 'eight thousand three hundred twenty-one'); INSERT INTO t3 VALUES(941, 53600, 'fifty-three thousand six hundred'); INSERT INTO t3 VALUES(942, 10347, 'ten thousand three hundred forty-seven'); INSERT INTO t3 VALUES(943, 95048, 'ninety-five thousand forty-eight'); INSERT INTO t3 VALUES(944, 87508, 'eighty-seven thousand five hundred eight'); INSERT INTO t3 VALUES(945, 67881, 'sixty-seven thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(946, 16788, 'sixteen thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(947, 46220, 'forty-six thousand two hundred twenty'); INSERT INTO t3 VALUES(948, 22600, 'twenty-two thousand six hundred'); INSERT INTO t3 VALUES(949, 55802, 'fifty-five thousand eight hundred two'); INSERT INTO t3 VALUES(950, 10327, 'ten thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(951, 60079, 'sixty thousand seventy-nine'); INSERT INTO t3 VALUES(952, 86346, 'eighty-six thousand three hundred forty-six'); INSERT INTO t3 VALUES(953, 78039, 'seventy-eight thousand thirty-nine'); INSERT INTO t3 VALUES(954, 42495, 'forty-two thousand four hundred ninety-five'); INSERT INTO t3 VALUES(955, 61802, 'sixty-one thousand eight hundred two'); INSERT INTO t3 VALUES(956, 74935, 'seventy-four thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(957, 32848, 'thirty-two thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(958, 22843, 'twenty-two thousand eight hundred forty-three'); INSERT INTO t3 VALUES(959, 43434, 'forty-three thousand four hundred thirty-four'); INSERT INTO t3 VALUES(960, 55140, 'fifty-five thousand one hundred forty'); INSERT INTO t3 VALUES(961, 25101, 'twenty-five thousand one hundred one'); INSERT INTO t3 VALUES(962, 66892, 'sixty-six thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(963, 84404, 'eighty-four thousand four hundred four'); INSERT INTO t3 VALUES(964, 95016, 'ninety-five thousand sixteen'); INSERT INTO t3 VALUES(965, 82669, 'eighty-two thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(966, 47664, 'forty-seven thousand six hundred sixty-four'); INSERT INTO t3 VALUES(967, 67050, 'sixty-seven thousand fifty'); INSERT INTO t3 VALUES(968, 65685, 'sixty-five thousand six hundred eighty-five'); INSERT INTO t3 VALUES(969, 13432, 'thirteen thousand four hundred thirty-two'); INSERT INTO t3 VALUES(970, 8364, 'eight thousand three hundred sixty-four'); INSERT INTO t3 VALUES(971, 33856, 'thirty-three thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(972, 38428, 'thirty-eight thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(973, 63682, 'sixty-three thousand six hundred eighty-two'); INSERT INTO t3 VALUES(974, 61059, 'sixty-one thousand fifty-nine'); INSERT INTO t3 VALUES(975, 48432, 'forty-eight thousand four hundred thirty-two'); INSERT INTO t3 VALUES(976, 15809, 'fifteen thousand eight hundred nine'); INSERT INTO t3 VALUES(977, 75497, 'seventy-five thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(978, 84648, 'eighty-four thousand six hundred forty-eight'); INSERT INTO t3 VALUES(979, 12450, 'twelve thousand four hundred fifty'); INSERT INTO t3 VALUES(980, 91915, 'ninety-one thousand nine hundred fifteen'); INSERT INTO t3 VALUES(981, 72230, 'seventy-two thousand two hundred thirty'); INSERT INTO t3 VALUES(982, 39393, 'thirty-nine thousand three hundred ninety-three'); INSERT INTO t3 VALUES(983, 58539, 'fifty-eight thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(984, 8203, 'eight thousand two hundred three'); INSERT INTO t3 VALUES(985, 42106, 'forty-two thousand one hundred six'); INSERT INTO t3 VALUES(986, 52469, 'fifty-two thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(987, 67579, 'sixty-seven thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(988, 96196, 'ninety-six thousand one hundred ninety-six'); INSERT INTO t3 VALUES(989, 35045, 'thirty-five thousand forty-five'); INSERT INTO t3 VALUES(990, 90414, 'ninety thousand four hundred fourteen'); INSERT INTO t3 VALUES(991, 30338, 'thirty thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(992, 13060, 'thirteen thousand sixty'); INSERT INTO t3 VALUES(993, 89796, 'eighty-nine thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(994, 37165, 'thirty-seven thousand one hundred sixty-five'); INSERT INTO t3 VALUES(995, 47626, 'forty-seven thousand six hundred twenty-six'); INSERT INTO t3 VALUES(996, 48263, 'forty-eight thousand two hundred sixty-three'); INSERT INTO t3 VALUES(997, 89604, 'eighty-nine thousand six hundred four'); INSERT INTO t3 VALUES(998, 22717, 'twenty-two thousand seven hundred seventeen'); INSERT INTO t3 VALUES(999, 96890, 'ninety-six thousand eight hundred ninety'); INSERT INTO t3 VALUES(1000, 49281, 'forty-nine thousand two hundred eighty-one'); INSERT INTO t3 VALUES(1001, 97199, 'ninety-seven thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(1002, 9105, 'nine thousand one hundred five'); INSERT INTO t3 VALUES(1003, 47038, 'forty-seven thousand thirty-eight'); INSERT INTO t3 VALUES(1004, 47997, 'forty-seven thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(1005, 29607, 'twenty-nine thousand six hundred seven'); INSERT INTO t3 VALUES(1006, 90974, 'ninety thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(1007, 45881, 'forty-five thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(1008, 75493, 'seventy-five thousand four hundred ninety-three'); INSERT INTO t3 VALUES(1009, 60427, 'sixty thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(1010, 36340, 'thirty-six thousand three hundred forty'); INSERT INTO t3 VALUES(1011, 25776, 'twenty-five thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(1012, 2298, 'two thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(1013, 74993, 'seventy-four thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(1014, 84184, 'eighty-four thousand one hundred eighty-four'); INSERT INTO t3 VALUES(1015, 63766, 'sixty-three thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(1016, 57229, 'fifty-seven thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(1017, 70358, 'seventy thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(1018, 81720, 'eighty-one thousand seven hundred twenty'); INSERT INTO t3 VALUES(1019, 75643, 'seventy-five thousand six hundred forty-three'); INSERT INTO t3 VALUES(1020, 97854, 'ninety-seven thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(1021, 64872, 'sixty-four thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(1022, 90183, 'ninety thousand one hundred eighty-three'); INSERT INTO t3 VALUES(1023, 55141, 'fifty-five thousand one hundred forty-one'); INSERT INTO t3 VALUES(1024, 40225, 'forty thousand two hundred twenty-five'); INSERT INTO t3 VALUES(1025, 46110, 'forty-six thousand one hundred ten'); INSERT INTO t3 VALUES(1026, 10425, 'ten thousand four hundred twenty-five'); INSERT INTO t3 VALUES(1027, 51852, 'fifty-one thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(1028, 3105, 'three thousand one hundred five'); INSERT INTO t3 VALUES(1029, 1682, 'one thousand six hundred eighty-two'); INSERT INTO t3 VALUES(1030, 5921, 'five thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(1031, 76812, 'seventy-six thousand eight hundred twelve'); INSERT INTO t3 VALUES(1032, 8500, 'eight thousand five hundred'); INSERT INTO t3 VALUES(1033, 39697, 'thirty-nine thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(1034, 26023, 'twenty-six thousand twenty-three'); INSERT INTO t3 VALUES(1035, 63676, 'sixty-three thousand six hundred seventy-six'); INSERT INTO t3 VALUES(1036, 80944, 'eighty thousand nine hundred forty-four'); INSERT INTO t3 VALUES(1037, 5634, 'five thousand six hundred thirty-four'); INSERT INTO t3 VALUES(1038, 99197, 'ninety-nine thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(1039, 84278, 'eighty-four thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(1040, 79593, 'seventy-nine thousand five hundred ninety-three'); INSERT INTO t3 VALUES(1041, 90743, 'ninety thousand seven hundred forty-three'); INSERT INTO t3 VALUES(1042, 27103, 'twenty-seven thousand one hundred three'); INSERT INTO t3 VALUES(1043, 5424, 'five thousand four hundred twenty-four'); INSERT INTO t3 VALUES(1044, 33033, 'thirty-three thousand thirty-three'); INSERT INTO t3 VALUES(1045, 70460, 'seventy thousand four hundred sixty'); INSERT INTO t3 VALUES(1046, 86249, 'eighty-six thousand two hundred forty-nine'); INSERT INTO t3 VALUES(1047, 15048, 'fifteen thousand forty-eight'); INSERT INTO t3 VALUES(1048, 89487, 'eighty-nine thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(1049, 28006, 'twenty-eight thousand six'); INSERT INTO t3 VALUES(1050, 98931, 'ninety-eight thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(1051, 68014, 'sixty-eight thousand fourteen'); INSERT INTO t3 VALUES(1052, 2809, 'two thousand eight hundred nine'); INSERT INTO t3 VALUES(1053, 4099, 'four thousand ninety-nine'); INSERT INTO t3 VALUES(1054, 38381, 'thirty-eight thousand three hundred eighty-one'); INSERT INTO t3 VALUES(1055, 74460, 'seventy-four thousand four hundred sixty'); INSERT INTO t3 VALUES(1056, 26766, 'twenty-six thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(1057, 57861, 'fifty-seven thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(1058, 9450, 'nine thousand four hundred fifty'); INSERT INTO t3 VALUES(1059, 93608, 'ninety-three thousand six hundred eight'); INSERT INTO t3 VALUES(1060, 66697, 'sixty-six thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(1061, 48693, 'forty-eight thousand six hundred ninety-three'); INSERT INTO t3 VALUES(1062, 71134, 'seventy-one thousand one hundred thirty-four'); INSERT INTO t3 VALUES(1063, 33992, 'thirty-three thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(1064, 97587, 'ninety-seven thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(1065, 88714, 'eighty-eight thousand seven hundred fourteen'); INSERT INTO t3 VALUES(1066, 28802, 'twenty-eight thousand eight hundred two'); INSERT INTO t3 VALUES(1067, 69995, 'sixty-nine thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(1068, 43144, 'forty-three thousand one hundred forty-four'); INSERT INTO t3 VALUES(1069, 66996, 'sixty-six thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(1070, 12277, 'twelve thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(1071, 41633, 'forty-one thousand six hundred thirty-three'); INSERT INTO t3 VALUES(1072, 712, 'seven hundred twelve'); INSERT INTO t3 VALUES(1073, 70963, 'seventy thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(1074, 9700, 'nine thousand seven hundred'); INSERT INTO t3 VALUES(1075, 63916, 'sixty-three thousand nine hundred sixteen'); INSERT INTO t3 VALUES(1076, 59439, 'fifty-nine thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(1077, 46112, 'forty-six thousand one hundred twelve'); INSERT INTO t3 VALUES(1078, 79176, 'seventy-nine thousand one hundred seventy-six'); INSERT INTO t3 VALUES(1079, 12136, 'twelve thousand one hundred thirty-six'); INSERT INTO t3 VALUES(1080, 72113, 'seventy-two thousand one hundred thirteen'); INSERT INTO t3 VALUES(1081, 79476, 'seventy-nine thousand four hundred seventy-six'); INSERT INTO t3 VALUES(1082, 49360, 'forty-nine thousand three hundred sixty'); INSERT INTO t3 VALUES(1083, 24035, 'twenty-four thousand thirty-five'); INSERT INTO t3 VALUES(1084, 38611, 'thirty-eight thousand six hundred eleven'); INSERT INTO t3 VALUES(1085, 67502, 'sixty-seven thousand five hundred two'); INSERT INTO t3 VALUES(1086, 15787, 'fifteen thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(1087, 45602, 'forty-five thousand six hundred two'); INSERT INTO t3 VALUES(1088, 60098, 'sixty thousand ninety-eight'); INSERT INTO t3 VALUES(1089, 12844, 'twelve thousand eight hundred forty-four'); INSERT INTO t3 VALUES(1090, 62637, 'sixty-two thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(1091, 35555, 'thirty-five thousand five hundred fifty-five'); INSERT INTO t3 VALUES(1092, 44883, 'forty-four thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(1093, 93964, 'ninety-three thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(1094, 82176, 'eighty-two thousand one hundred seventy-six'); INSERT INTO t3 VALUES(1095, 19420, 'nineteen thousand four hundred twenty'); INSERT INTO t3 VALUES(1096, 15406, 'fifteen thousand four hundred six'); INSERT INTO t3 VALUES(1097, 58163, 'fifty-eight thousand one hundred sixty-three'); INSERT INTO t3 VALUES(1098, 91616, 'ninety-one thousand six hundred sixteen'); INSERT INTO t3 VALUES(1099, 91461, 'ninety-one thousand four hundred sixty-one'); INSERT INTO t3 VALUES(1100, 86510, 'eighty-six thousand five hundred ten'); INSERT INTO t3 VALUES(1101, 22347, 'twenty-two thousand three hundred forty-seven'); INSERT INTO t3 VALUES(1102, 67932, 'sixty-seven thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(1103, 59003, 'fifty-nine thousand three'); INSERT INTO t3 VALUES(1104, 11831, 'eleven thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(1105, 2932, 'two thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(1106, 6237, 'six thousand two hundred thirty-seven'); INSERT INTO t3 VALUES(1107, 14253, 'fourteen thousand two hundred fifty-three'); INSERT INTO t3 VALUES(1108, 5294, 'five thousand two hundred ninety-four'); INSERT INTO t3 VALUES(1109, 41001, 'forty-one thousand one'); INSERT INTO t3 VALUES(1110, 97290, 'ninety-seven thousand two hundred ninety'); INSERT INTO t3 VALUES(1111, 343, 'three hundred forty-three'); INSERT INTO t3 VALUES(1112, 33607, 'thirty-three thousand six hundred seven'); INSERT INTO t3 VALUES(1113, 17415, 'seventeen thousand four hundred fifteen'); INSERT INTO t3 VALUES(1114, 60356, 'sixty thousand three hundred fifty-six'); INSERT INTO t3 VALUES(1115, 2445, 'two thousand four hundred forty-five'); INSERT INTO t3 VALUES(1116, 31461, 'thirty-one thousand four hundred sixty-one'); INSERT INTO t3 VALUES(1117, 73244, 'seventy-three thousand two hundred forty-four'); INSERT INTO t3 VALUES(1118, 30405, 'thirty thousand four hundred five'); INSERT INTO t3 VALUES(1119, 9412, 'nine thousand four hundred twelve'); INSERT INTO t3 VALUES(1120, 20592, 'twenty thousand five hundred ninety-two'); INSERT INTO t3 VALUES(1121, 85501, 'eighty-five thousand five hundred one'); INSERT INTO t3 VALUES(1122, 53561, 'fifty-three thousand five hundred sixty-one'); INSERT INTO t3 VALUES(1123, 9897, 'nine thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(1124, 5217, 'five thousand two hundred seventeen'); INSERT INTO t3 VALUES(1125, 97865, 'ninety-seven thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(1126, 11106, 'eleven thousand one hundred six'); INSERT INTO t3 VALUES(1127, 97398, 'ninety-seven thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(1128, 50152, 'fifty thousand one hundred fifty-two'); INSERT INTO t3 VALUES(1129, 73310, 'seventy-three thousand three hundred ten'); INSERT INTO t3 VALUES(1130, 56210, 'fifty-six thousand two hundred ten'); INSERT INTO t3 VALUES(1131, 93117, 'ninety-three thousand one hundred seventeen'); INSERT INTO t3 VALUES(1132, 42559, 'forty-two thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(1133, 58212, 'fifty-eight thousand two hundred twelve'); INSERT INTO t3 VALUES(1134, 55497, 'fifty-five thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(1135, 96013, 'ninety-six thousand thirteen'); INSERT INTO t3 VALUES(1136, 94608, 'ninety-four thousand six hundred eight'); INSERT INTO t3 VALUES(1137, 26072, 'twenty-six thousand seventy-two'); INSERT INTO t3 VALUES(1138, 20988, 'twenty thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(1139, 43531, 'forty-three thousand five hundred thirty-one'); INSERT INTO t3 VALUES(1140, 89146, 'eighty-nine thousand one hundred forty-six'); INSERT INTO t3 VALUES(1141, 62142, 'sixty-two thousand one hundred forty-two'); INSERT INTO t3 VALUES(1142, 46807, 'forty-six thousand eight hundred seven'); INSERT INTO t3 VALUES(1143, 86238, 'eighty-six thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(1144, 83926, 'eighty-three thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(1145, 71668, 'seventy-one thousand six hundred sixty-eight'); INSERT INTO t3 VALUES(1146, 61916, 'sixty-one thousand nine hundred sixteen'); INSERT INTO t3 VALUES(1147, 38403, 'thirty-eight thousand four hundred three'); INSERT INTO t3 VALUES(1148, 82548, 'eighty-two thousand five hundred forty-eight'); INSERT INTO t3 VALUES(1149, 81750, 'eighty-one thousand seven hundred fifty'); INSERT INTO t3 VALUES(1150, 20317, 'twenty thousand three hundred seventeen'); INSERT INTO t3 VALUES(1151, 71943, 'seventy-one thousand nine hundred forty-three'); INSERT INTO t3 VALUES(1152, 29755, 'twenty-nine thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(1153, 67979, 'sixty-seven thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(1154, 24984, 'twenty-four thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(1155, 77664, 'seventy-seven thousand six hundred sixty-four'); INSERT INTO t3 VALUES(1156, 4511, 'four thousand five hundred eleven'); INSERT INTO t3 VALUES(1157, 85346, 'eighty-five thousand three hundred forty-six'); INSERT INTO t3 VALUES(1158, 39469, 'thirty-nine thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(1159, 82021, 'eighty-two thousand twenty-one'); INSERT INTO t3 VALUES(1160, 16319, 'sixteen thousand three hundred nineteen'); INSERT INTO t3 VALUES(1161, 88589, 'eighty-eight thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(1162, 12892, 'twelve thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(1163, 30032, 'thirty thousand thirty-two'); INSERT INTO t3 VALUES(1164, 16998, 'sixteen thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(1165, 80012, 'eighty thousand twelve'); INSERT INTO t3 VALUES(1166, 59783, 'fifty-nine thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(1167, 19293, 'nineteen thousand two hundred ninety-three'); INSERT INTO t3 VALUES(1168, 1817, 'one thousand eight hundred seventeen'); INSERT INTO t3 VALUES(1169, 19305, 'nineteen thousand three hundred five'); INSERT INTO t3 VALUES(1170, 63337, 'sixty-three thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(1171, 21406, 'twenty-one thousand four hundred six'); INSERT INTO t3 VALUES(1172, 38956, 'thirty-eight thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(1173, 37556, 'thirty-seven thousand five hundred fifty-six'); INSERT INTO t3 VALUES(1174, 41018, 'forty-one thousand eighteen'); INSERT INTO t3 VALUES(1175, 89937, 'eighty-nine thousand nine hundred thirty-seven'); INSERT INTO t3 VALUES(1176, 66116, 'sixty-six thousand one hundred sixteen'); INSERT INTO t3 VALUES(1177, 70582, 'seventy thousand five hundred eighty-two'); INSERT INTO t3 VALUES(1178, 59643, 'fifty-nine thousand six hundred forty-three'); INSERT INTO t3 VALUES(1179, 57124, 'fifty-seven thousand one hundred twenty-four'); INSERT INTO t3 VALUES(1180, 28428, 'twenty-eight thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(1181, 23417, 'twenty-three thousand four hundred seventeen'); INSERT INTO t3 VALUES(1182, 90882, 'ninety thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(1183, 68251, 'sixty-eight thousand two hundred fifty-one'); INSERT INTO t3 VALUES(1184, 32942, 'thirty-two thousand nine hundred forty-two'); INSERT INTO t3 VALUES(1185, 90299, 'ninety thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(1186, 48094, 'forty-eight thousand ninety-four'); INSERT INTO t3 VALUES(1187, 59916, 'fifty-nine thousand nine hundred sixteen'); INSERT INTO t3 VALUES(1188, 90808, 'ninety thousand eight hundred eight'); INSERT INTO t3 VALUES(1189, 51195, 'fifty-one thousand one hundred ninety-five'); INSERT INTO t3 VALUES(1190, 37695, 'thirty-seven thousand six hundred ninety-five'); INSERT INTO t3 VALUES(1191, 1001, 'one thousand one'); INSERT INTO t3 VALUES(1192, 69242, 'sixty-nine thousand two hundred forty-two'); INSERT INTO t3 VALUES(1193, 63726, 'sixty-three thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(1194, 27518, 'twenty-seven thousand five hundred eighteen'); INSERT INTO t3 VALUES(1195, 36308, 'thirty-six thousand three hundred eight'); INSERT INTO t3 VALUES(1196, 6083, 'six thousand eighty-three'); INSERT INTO t3 VALUES(1197, 47512, 'forty-seven thousand five hundred twelve'); INSERT INTO t3 VALUES(1198, 16219, 'sixteen thousand two hundred nineteen'); INSERT INTO t3 VALUES(1199, 53244, 'fifty-three thousand two hundred forty-four'); INSERT INTO t3 VALUES(1200, 56966, 'fifty-six thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(1201, 68968, 'sixty-eight thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(1202, 73409, 'seventy-three thousand four hundred nine'); INSERT INTO t3 VALUES(1203, 17591, 'seventeen thousand five hundred ninety-one'); INSERT INTO t3 VALUES(1204, 85015, 'eighty-five thousand fifteen'); INSERT INTO t3 VALUES(1205, 58168, 'fifty-eight thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(1206, 67212, 'sixty-seven thousand two hundred twelve'); INSERT INTO t3 VALUES(1207, 5715, 'five thousand seven hundred fifteen'); INSERT INTO t3 VALUES(1208, 30513, 'thirty thousand five hundred thirteen'); INSERT INTO t3 VALUES(1209, 13270, 'thirteen thousand two hundred seventy'); INSERT INTO t3 VALUES(1210, 81577, 'eighty-one thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(1211, 65057, 'sixty-five thousand fifty-seven'); INSERT INTO t3 VALUES(1212, 13964, 'thirteen thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(1213, 55689, 'fifty-five thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(1214, 51240, 'fifty-one thousand two hundred forty'); INSERT INTO t3 VALUES(1215, 96727, 'ninety-six thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(1216, 58780, 'fifty-eight thousand seven hundred eighty'); INSERT INTO t3 VALUES(1217, 49104, 'forty-nine thousand one hundred four'); INSERT INTO t3 VALUES(1218, 7745, 'seven thousand seven hundred forty-five'); INSERT INTO t3 VALUES(1219, 11196, 'eleven thousand one hundred ninety-six'); INSERT INTO t3 VALUES(1220, 46401, 'forty-six thousand four hundred one'); INSERT INTO t3 VALUES(1221, 21603, 'twenty-one thousand six hundred three'); INSERT INTO t3 VALUES(1222, 38565, 'thirty-eight thousand five hundred sixty-five'); INSERT INTO t3 VALUES(1223, 41527, 'forty-one thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(1224, 97123, 'ninety-seven thousand one hundred twenty-three'); INSERT INTO t3 VALUES(1225, 77124, 'seventy-seven thousand one hundred twenty-four'); INSERT INTO t3 VALUES(1226, 92537, 'ninety-two thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(1227, 57471, 'fifty-seven thousand four hundred seventy-one'); INSERT INTO t3 VALUES(1228, 60445, 'sixty thousand four hundred forty-five'); INSERT INTO t3 VALUES(1229, 54092, 'fifty-four thousand ninety-two'); INSERT INTO t3 VALUES(1230, 38603, 'thirty-eight thousand six hundred three'); INSERT INTO t3 VALUES(1231, 70173, 'seventy thousand one hundred seventy-three'); INSERT INTO t3 VALUES(1232, 87517, 'eighty-seven thousand five hundred seventeen'); INSERT INTO t3 VALUES(1233, 11572, 'eleven thousand five hundred seventy-two'); INSERT INTO t3 VALUES(1234, 31249, 'thirty-one thousand two hundred forty-nine'); INSERT INTO t3 VALUES(1235, 25790, 'twenty-five thousand seven hundred ninety'); INSERT INTO t3 VALUES(1236, 26701, 'twenty-six thousand seven hundred one'); INSERT INTO t3 VALUES(1237, 96441, 'ninety-six thousand four hundred forty-one'); INSERT INTO t3 VALUES(1238, 57908, 'fifty-seven thousand nine hundred eight'); INSERT INTO t3 VALUES(1239, 68899, 'sixty-eight thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(1240, 65198, 'sixty-five thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(1241, 48083, 'forty-eight thousand eighty-three'); INSERT INTO t3 VALUES(1242, 48974, 'forty-eight thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(1243, 33636, 'thirty-three thousand six hundred thirty-six'); INSERT INTO t3 VALUES(1244, 86883, 'eighty-six thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(1245, 24118, 'twenty-four thousand one hundred eighteen'); INSERT INTO t3 VALUES(1246, 11624, 'eleven thousand six hundred twenty-four'); INSERT INTO t3 VALUES(1247, 71832, 'seventy-one thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(1248, 14241, 'fourteen thousand two hundred forty-one'); INSERT INTO t3 VALUES(1249, 13727, 'thirteen thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(1250, 98896, 'ninety-eight thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(1251, 22466, 'twenty-two thousand four hundred sixty-six'); INSERT INTO t3 VALUES(1252, 51965, 'fifty-one thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(1253, 5811, 'five thousand eight hundred eleven'); INSERT INTO t3 VALUES(1254, 82040, 'eighty-two thousand forty'); INSERT INTO t3 VALUES(1255, 42197, 'forty-two thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(1256, 71055, 'seventy-one thousand fifty-five'); INSERT INTO t3 VALUES(1257, 79098, 'seventy-nine thousand ninety-eight'); INSERT INTO t3 VALUES(1258, 29148, 'twenty-nine thousand one hundred forty-eight'); INSERT INTO t3 VALUES(1259, 61808, 'sixty-one thousand eight hundred eight'); INSERT INTO t3 VALUES(1260, 10755, 'ten thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(1261, 6921, 'six thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(1262, 80787, 'eighty thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(1263, 3455, 'three thousand four hundred fifty-five'); INSERT INTO t3 VALUES(1264, 9138, 'nine thousand one hundred thirty-eight'); INSERT INTO t3 VALUES(1265, 13898, 'thirteen thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(1266, 94168, 'ninety-four thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(1267, 15361, 'fifteen thousand three hundred sixty-one'); INSERT INTO t3 VALUES(1268, 66571, 'sixty-six thousand five hundred seventy-one'); INSERT INTO t3 VALUES(1269, 98644, 'ninety-eight thousand six hundred forty-four'); INSERT INTO t3 VALUES(1270, 2464, 'two thousand four hundred sixty-four'); INSERT INTO t3 VALUES(1271, 3054, 'three thousand fifty-four'); INSERT INTO t3 VALUES(1272, 98150, 'ninety-eight thousand one hundred fifty'); INSERT INTO t3 VALUES(1273, 30894, 'thirty thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(1274, 78137, 'seventy-eight thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(1275, 87380, 'eighty-seven thousand three hundred eighty'); INSERT INTO t3 VALUES(1276, 96748, 'ninety-six thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(1277, 8470, 'eight thousand four hundred seventy'); INSERT INTO t3 VALUES(1278, 91619, 'ninety-one thousand six hundred nineteen'); INSERT INTO t3 VALUES(1279, 47809, 'forty-seven thousand eight hundred nine'); INSERT INTO t3 VALUES(1280, 46125, 'forty-six thousand one hundred twenty-five'); INSERT INTO t3 VALUES(1281, 28577, 'twenty-eight thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(1282, 94539, 'ninety-four thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(1283, 87306, 'eighty-seven thousand three hundred six'); INSERT INTO t3 VALUES(1284, 85815, 'eighty-five thousand eight hundred fifteen'); INSERT INTO t3 VALUES(1285, 78595, 'seventy-eight thousand five hundred ninety-five'); INSERT INTO t3 VALUES(1286, 13517, 'thirteen thousand five hundred seventeen'); INSERT INTO t3 VALUES(1287, 50245, 'fifty thousand two hundred forty-five'); INSERT INTO t3 VALUES(1288, 77424, 'seventy-seven thousand four hundred twenty-four'); INSERT INTO t3 VALUES(1289, 15876, 'fifteen thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(1290, 22920, 'twenty-two thousand nine hundred twenty'); INSERT INTO t3 VALUES(1291, 64435, 'sixty-four thousand four hundred thirty-five'); INSERT INTO t3 VALUES(1292, 76768, 'seventy-six thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(1293, 43391, 'forty-three thousand three hundred ninety-one'); INSERT INTO t3 VALUES(1294, 34950, 'thirty-four thousand nine hundred fifty'); INSERT INTO t3 VALUES(1295, 25178, 'twenty-five thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(1296, 56805, 'fifty-six thousand eight hundred five'); INSERT INTO t3 VALUES(1297, 91578, 'ninety-one thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(1298, 809, 'eight hundred nine'); INSERT INTO t3 VALUES(1299, 37088, 'thirty-seven thousand eighty-eight'); INSERT INTO t3 VALUES(1300, 98258, 'ninety-eight thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(1301, 10616, 'ten thousand six hundred sixteen'); INSERT INTO t3 VALUES(1302, 57352, 'fifty-seven thousand three hundred fifty-two'); INSERT INTO t3 VALUES(1303, 15, 'fifteen'); INSERT INTO t3 VALUES(1304, 43089, 'forty-three thousand eighty-nine'); INSERT INTO t3 VALUES(1305, 60424, 'sixty thousand four hundred twenty-four'); INSERT INTO t3 VALUES(1306, 37851, 'thirty-seven thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(1307, 86969, 'eighty-six thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(1308, 14795, 'fourteen thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(1309, 92219, 'ninety-two thousand two hundred nineteen'); INSERT INTO t3 VALUES(1310, 59566, 'fifty-nine thousand five hundred sixty-six'); INSERT INTO t3 VALUES(1311, 31151, 'thirty-one thousand one hundred fifty-one'); INSERT INTO t3 VALUES(1312, 42130, 'forty-two thousand one hundred thirty'); INSERT INTO t3 VALUES(1313, 66603, 'sixty-six thousand six hundred three'); INSERT INTO t3 VALUES(1314, 6130, 'six thousand one hundred thirty'); INSERT INTO t3 VALUES(1315, 52192, 'fifty-two thousand one hundred ninety-two'); INSERT INTO t3 VALUES(1316, 16269, 'sixteen thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(1317, 90244, 'ninety thousand two hundred forty-four'); INSERT INTO t3 VALUES(1318, 7823, 'seven thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(1319, 40621, 'forty thousand six hundred twenty-one'); INSERT INTO t3 VALUES(1320, 24321, 'twenty-four thousand three hundred twenty-one'); INSERT INTO t3 VALUES(1321, 37443, 'thirty-seven thousand four hundred forty-three'); INSERT INTO t3 VALUES(1322, 79623, 'seventy-nine thousand six hundred twenty-three'); INSERT INTO t3 VALUES(1323, 30079, 'thirty thousand seventy-nine'); INSERT INTO t3 VALUES(1324, 26923, 'twenty-six thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(1325, 95823, 'ninety-five thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(1326, 8493, 'eight thousand four hundred ninety-three'); INSERT INTO t3 VALUES(1327, 2583, 'two thousand five hundred eighty-three'); INSERT INTO t3 VALUES(1328, 3296, 'three thousand two hundred ninety-six'); INSERT INTO t3 VALUES(1329, 31514, 'thirty-one thousand five hundred fourteen'); INSERT INTO t3 VALUES(1330, 93837, 'ninety-three thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(1331, 5294, 'five thousand two hundred ninety-four'); INSERT INTO t3 VALUES(1332, 89455, 'eighty-nine thousand four hundred fifty-five'); INSERT INTO t3 VALUES(1333, 23735, 'twenty-three thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(1334, 10457, 'ten thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(1335, 90792, 'ninety thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(1336, 63964, 'sixty-three thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(1337, 62810, 'sixty-two thousand eight hundred ten'); INSERT INTO t3 VALUES(1338, 34157, 'thirty-four thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(1339, 64482, 'sixty-four thousand four hundred eighty-two'); INSERT INTO t3 VALUES(1340, 57185, 'fifty-seven thousand one hundred eighty-five'); INSERT INTO t3 VALUES(1341, 40320, 'forty thousand three hundred twenty'); INSERT INTO t3 VALUES(1342, 7836, 'seven thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(1343, 79467, 'seventy-nine thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(1344, 75395, 'seventy-five thousand three hundred ninety-five'); INSERT INTO t3 VALUES(1345, 87556, 'eighty-seven thousand five hundred fifty-six'); INSERT INTO t3 VALUES(1346, 72239, 'seventy-two thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(1347, 32149, 'thirty-two thousand one hundred forty-nine'); INSERT INTO t3 VALUES(1348, 65816, 'sixty-five thousand eight hundred sixteen'); INSERT INTO t3 VALUES(1349, 23374, 'twenty-three thousand three hundred seventy-four'); INSERT INTO t3 VALUES(1350, 67750, 'sixty-seven thousand seven hundred fifty'); INSERT INTO t3 VALUES(1351, 65070, 'sixty-five thousand seventy'); INSERT INTO t3 VALUES(1352, 34656, 'thirty-four thousand six hundred fifty-six'); INSERT INTO t3 VALUES(1353, 75525, 'seventy-five thousand five hundred twenty-five'); INSERT INTO t3 VALUES(1354, 61261, 'sixty-one thousand two hundred sixty-one'); INSERT INTO t3 VALUES(1355, 19402, 'nineteen thousand four hundred two'); INSERT INTO t3 VALUES(1356, 68104, 'sixty-eight thousand one hundred four'); INSERT INTO t3 VALUES(1357, 95231, 'ninety-five thousand two hundred thirty-one'); INSERT INTO t3 VALUES(1358, 98580, 'ninety-eight thousand five hundred eighty'); INSERT INTO t3 VALUES(1359, 9571, 'nine thousand five hundred seventy-one'); INSERT INTO t3 VALUES(1360, 44427, 'forty-four thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(1361, 33019, 'thirty-three thousand nineteen'); INSERT INTO t3 VALUES(1362, 38266, 'thirty-eight thousand two hundred sixty-six'); INSERT INTO t3 VALUES(1363, 30826, 'thirty thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(1364, 52381, 'fifty-two thousand three hundred eighty-one'); INSERT INTO t3 VALUES(1365, 46265, 'forty-six thousand two hundred sixty-five'); INSERT INTO t3 VALUES(1366, 89302, 'eighty-nine thousand three hundred two'); INSERT INTO t3 VALUES(1367, 4265, 'four thousand two hundred sixty-five'); INSERT INTO t3 VALUES(1368, 30521, 'thirty thousand five hundred twenty-one'); INSERT INTO t3 VALUES(1369, 55590, 'fifty-five thousand five hundred ninety'); INSERT INTO t3 VALUES(1370, 28966, 'twenty-eight thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(1371, 45024, 'forty-five thousand twenty-four'); INSERT INTO t3 VALUES(1372, 41342, 'forty-one thousand three hundred forty-two'); INSERT INTO t3 VALUES(1373, 49561, 'forty-nine thousand five hundred sixty-one'); INSERT INTO t3 VALUES(1374, 34543, 'thirty-four thousand five hundred forty-three'); INSERT INTO t3 VALUES(1375, 84984, 'eighty-four thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(1376, 68593, 'sixty-eight thousand five hundred ninety-three'); INSERT INTO t3 VALUES(1377, 85461, 'eighty-five thousand four hundred sixty-one'); INSERT INTO t3 VALUES(1378, 59726, 'fifty-nine thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(1379, 45242, 'forty-five thousand two hundred forty-two'); INSERT INTO t3 VALUES(1380, 29651, 'twenty-nine thousand six hundred fifty-one'); INSERT INTO t3 VALUES(1381, 64765, 'sixty-four thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(1382, 26568, 'twenty-six thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(1383, 36933, 'thirty-six thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(1384, 94490, 'ninety-four thousand four hundred ninety'); INSERT INTO t3 VALUES(1385, 35036, 'thirty-five thousand thirty-six'); INSERT INTO t3 VALUES(1386, 42971, 'forty-two thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(1387, 44831, 'forty-four thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(1388, 17790, 'seventeen thousand seven hundred ninety'); INSERT INTO t3 VALUES(1389, 35361, 'thirty-five thousand three hundred sixty-one'); INSERT INTO t3 VALUES(1390, 52622, 'fifty-two thousand six hundred twenty-two'); INSERT INTO t3 VALUES(1391, 87742, 'eighty-seven thousand seven hundred forty-two'); INSERT INTO t3 VALUES(1392, 63207, 'sixty-three thousand two hundred seven'); INSERT INTO t3 VALUES(1393, 79106, 'seventy-nine thousand one hundred six'); INSERT INTO t3 VALUES(1394, 93806, 'ninety-three thousand eight hundred six'); INSERT INTO t3 VALUES(1395, 52567, 'fifty-two thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(1396, 43100, 'forty-three thousand one hundred'); INSERT INTO t3 VALUES(1397, 26459, 'twenty-six thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(1398, 43270, 'forty-three thousand two hundred seventy'); INSERT INTO t3 VALUES(1399, 32584, 'thirty-two thousand five hundred eighty-four'); INSERT INTO t3 VALUES(1400, 5213, 'five thousand two hundred thirteen'); INSERT INTO t3 VALUES(1401, 54750, 'fifty-four thousand seven hundred fifty'); INSERT INTO t3 VALUES(1402, 52989, 'fifty-two thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(1403, 24893, 'twenty-four thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(1404, 40131, 'forty thousand one hundred thirty-one'); INSERT INTO t3 VALUES(1405, 68586, 'sixty-eight thousand five hundred eighty-six'); INSERT INTO t3 VALUES(1406, 88256, 'eighty-eight thousand two hundred fifty-six'); INSERT INTO t3 VALUES(1407, 19826, 'nineteen thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(1408, 7635, 'seven thousand six hundred thirty-five'); INSERT INTO t3 VALUES(1409, 53220, 'fifty-three thousand two hundred twenty'); INSERT INTO t3 VALUES(1410, 33504, 'thirty-three thousand five hundred four'); INSERT INTO t3 VALUES(1411, 44043, 'forty-four thousand forty-three'); INSERT INTO t3 VALUES(1412, 73365, 'seventy-three thousand three hundred sixty-five'); INSERT INTO t3 VALUES(1413, 40119, 'forty thousand one hundred nineteen'); INSERT INTO t3 VALUES(1414, 28251, 'twenty-eight thousand two hundred fifty-one'); INSERT INTO t3 VALUES(1415, 27530, 'twenty-seven thousand five hundred thirty'); INSERT INTO t3 VALUES(1416, 35089, 'thirty-five thousand eighty-nine'); INSERT INTO t3 VALUES(1417, 74383, 'seventy-four thousand three hundred eighty-three'); INSERT INTO t3 VALUES(1418, 25861, 'twenty-five thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(1419, 33100, 'thirty-three thousand one hundred'); INSERT INTO t3 VALUES(1420, 1924, 'one thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(1421, 92486, 'ninety-two thousand four hundred eighty-six'); INSERT INTO t3 VALUES(1422, 65303, 'sixty-five thousand three hundred three'); INSERT INTO t3 VALUES(1423, 45406, 'forty-five thousand four hundred six'); INSERT INTO t3 VALUES(1424, 62525, 'sixty-two thousand five hundred twenty-five'); INSERT INTO t3 VALUES(1425, 75622, 'seventy-five thousand six hundred twenty-two'); INSERT INTO t3 VALUES(1426, 72808, 'seventy-two thousand eight hundred eight'); INSERT INTO t3 VALUES(1427, 23115, 'twenty-three thousand one hundred fifteen'); INSERT INTO t3 VALUES(1428, 88348, 'eighty-eight thousand three hundred forty-eight'); INSERT INTO t3 VALUES(1429, 54075, 'fifty-four thousand seventy-five'); INSERT INTO t3 VALUES(1430, 4823, 'four thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(1431, 81215, 'eighty-one thousand two hundred fifteen'); INSERT INTO t3 VALUES(1432, 28184, 'twenty-eight thousand one hundred eighty-four'); INSERT INTO t3 VALUES(1433, 67225, 'sixty-seven thousand two hundred twenty-five'); INSERT INTO t3 VALUES(1434, 93642, 'ninety-three thousand six hundred forty-two'); INSERT INTO t3 VALUES(1435, 67951, 'sixty-seven thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(1436, 83096, 'eighty-three thousand ninety-six'); INSERT INTO t3 VALUES(1437, 36654, 'thirty-six thousand six hundred fifty-four'); INSERT INTO t3 VALUES(1438, 51904, 'fifty-one thousand nine hundred four'); INSERT INTO t3 VALUES(1439, 8175, 'eight thousand one hundred seventy-five'); INSERT INTO t3 VALUES(1440, 70724, 'seventy thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(1441, 59652, 'fifty-nine thousand six hundred fifty-two'); INSERT INTO t3 VALUES(1442, 24583, 'twenty-four thousand five hundred eighty-three'); INSERT INTO t3 VALUES(1443, 31864, 'thirty-one thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(1444, 66077, 'sixty-six thousand seventy-seven'); INSERT INTO t3 VALUES(1445, 84809, 'eighty-four thousand eight hundred nine'); INSERT INTO t3 VALUES(1446, 66310, 'sixty-six thousand three hundred ten'); INSERT INTO t3 VALUES(1447, 68023, 'sixty-eight thousand twenty-three'); INSERT INTO t3 VALUES(1448, 60989, 'sixty thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(1449, 58479, 'fifty-eight thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(1450, 6397, 'six thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(1451, 15312, 'fifteen thousand three hundred twelve'); INSERT INTO t3 VALUES(1452, 33482, 'thirty-three thousand four hundred eighty-two'); INSERT INTO t3 VALUES(1453, 65288, 'sixty-five thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(1454, 691, 'six hundred ninety-one'); INSERT INTO t3 VALUES(1455, 8952, 'eight thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(1456, 58815, 'fifty-eight thousand eight hundred fifteen'); INSERT INTO t3 VALUES(1457, 60639, 'sixty thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(1458, 5418, 'five thousand four hundred eighteen'); INSERT INTO t3 VALUES(1459, 19309, 'nineteen thousand three hundred nine'); INSERT INTO t3 VALUES(1460, 62587, 'sixty-two thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(1461, 58739, 'fifty-eight thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(1462, 72625, 'seventy-two thousand six hundred twenty-five'); INSERT INTO t3 VALUES(1463, 54499, 'fifty-four thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(1464, 79342, 'seventy-nine thousand three hundred forty-two'); INSERT INTO t3 VALUES(1465, 5924, 'five thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(1466, 86304, 'eighty-six thousand three hundred four'); INSERT INTO t3 VALUES(1467, 32065, 'thirty-two thousand sixty-five'); INSERT INTO t3 VALUES(1468, 35725, 'thirty-five thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(1469, 16876, 'sixteen thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(1470, 71641, 'seventy-one thousand six hundred forty-one'); INSERT INTO t3 VALUES(1471, 28399, 'twenty-eight thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(1472, 11765, 'eleven thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(1473, 76934, 'seventy-six thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(1474, 6358, 'six thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(1475, 63043, 'sixty-three thousand forty-three'); INSERT INTO t3 VALUES(1476, 50901, 'fifty thousand nine hundred one'); INSERT INTO t3 VALUES(1477, 28043, 'twenty-eight thousand forty-three'); INSERT INTO t3 VALUES(1478, 86547, 'eighty-six thousand five hundred forty-seven'); INSERT INTO t3 VALUES(1479, 94729, 'ninety-four thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(1480, 66862, 'sixty-six thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(1481, 76025, 'seventy-six thousand twenty-five'); INSERT INTO t3 VALUES(1482, 3473, 'three thousand four hundred seventy-three'); INSERT INTO t3 VALUES(1483, 82952, 'eighty-two thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(1484, 43056, 'forty-three thousand fifty-six'); INSERT INTO t3 VALUES(1485, 17253, 'seventeen thousand two hundred fifty-three'); INSERT INTO t3 VALUES(1486, 60835, 'sixty thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(1487, 74180, 'seventy-four thousand one hundred eighty'); INSERT INTO t3 VALUES(1488, 22424, 'twenty-two thousand four hundred twenty-four'); INSERT INTO t3 VALUES(1489, 24391, 'twenty-four thousand three hundred ninety-one'); INSERT INTO t3 VALUES(1490, 73879, 'seventy-three thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(1491, 34259, 'thirty-four thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(1492, 3650, 'three thousand six hundred fifty'); INSERT INTO t3 VALUES(1493, 36136, 'thirty-six thousand one hundred thirty-six'); INSERT INTO t3 VALUES(1494, 63106, 'sixty-three thousand one hundred six'); INSERT INTO t3 VALUES(1495, 35314, 'thirty-five thousand three hundred fourteen'); INSERT INTO t3 VALUES(1496, 24073, 'twenty-four thousand seventy-three'); INSERT INTO t3 VALUES(1497, 34121, 'thirty-four thousand one hundred twenty-one'); INSERT INTO t3 VALUES(1498, 6274, 'six thousand two hundred seventy-four'); INSERT INTO t3 VALUES(1499, 69931, 'sixty-nine thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(1500, 75742, 'seventy-five thousand seven hundred forty-two'); INSERT INTO t3 VALUES(1501, 29960, 'twenty-nine thousand nine hundred sixty'); INSERT INTO t3 VALUES(1502, 9293, 'nine thousand two hundred ninety-three'); INSERT INTO t3 VALUES(1503, 30339, 'thirty thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(1504, 20901, 'twenty thousand nine hundred one'); INSERT INTO t3 VALUES(1505, 54874, 'fifty-four thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(1506, 63855, 'sixty-three thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(1507, 61816, 'sixty-one thousand eight hundred sixteen'); INSERT INTO t3 VALUES(1508, 35403, 'thirty-five thousand four hundred three'); INSERT INTO t3 VALUES(1509, 6552, 'six thousand five hundred fifty-two'); INSERT INTO t3 VALUES(1510, 33105, 'thirty-three thousand one hundred five'); INSERT INTO t3 VALUES(1511, 51394, 'fifty-one thousand three hundred ninety-four'); INSERT INTO t3 VALUES(1512, 29236, 'twenty-nine thousand two hundred thirty-six'); INSERT INTO t3 VALUES(1513, 57423, 'fifty-seven thousand four hundred twenty-three'); INSERT INTO t3 VALUES(1514, 32304, 'thirty-two thousand three hundred four'); INSERT INTO t3 VALUES(1515, 45100, 'forty-five thousand one hundred'); INSERT INTO t3 VALUES(1516, 83599, 'eighty-three thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(1517, 82256, 'eighty-two thousand two hundred fifty-six'); INSERT INTO t3 VALUES(1518, 16049, 'sixteen thousand forty-nine'); INSERT INTO t3 VALUES(1519, 45463, 'forty-five thousand four hundred sixty-three'); INSERT INTO t3 VALUES(1520, 32310, 'thirty-two thousand three hundred ten'); INSERT INTO t3 VALUES(1521, 6475, 'six thousand four hundred seventy-five'); INSERT INTO t3 VALUES(1522, 70488, 'seventy thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(1523, 40257, 'forty thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(1524, 52374, 'fifty-two thousand three hundred seventy-four'); INSERT INTO t3 VALUES(1525, 70669, 'seventy thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(1526, 33910, 'thirty-three thousand nine hundred ten'); INSERT INTO t3 VALUES(1527, 81072, 'eighty-one thousand seventy-two'); INSERT INTO t3 VALUES(1528, 23172, 'twenty-three thousand one hundred seventy-two'); INSERT INTO t3 VALUES(1529, 77387, 'seventy-seven thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(1530, 28441, 'twenty-eight thousand four hundred forty-one'); INSERT INTO t3 VALUES(1531, 42804, 'forty-two thousand eight hundred four'); INSERT INTO t3 VALUES(1532, 42298, 'forty-two thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(1533, 13594, 'thirteen thousand five hundred ninety-four'); INSERT INTO t3 VALUES(1534, 1045, 'one thousand forty-five'); INSERT INTO t3 VALUES(1535, 56575, 'fifty-six thousand five hundred seventy-five'); INSERT INTO t3 VALUES(1536, 20197, 'twenty thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(1537, 21989, 'twenty-one thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(1538, 68341, 'sixty-eight thousand three hundred forty-one'); INSERT INTO t3 VALUES(1539, 54258, 'fifty-four thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(1540, 32984, 'thirty-two thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(1541, 31747, 'thirty-one thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(1542, 88436, 'eighty-eight thousand four hundred thirty-six'); INSERT INTO t3 VALUES(1543, 57530, 'fifty-seven thousand five hundred thirty'); INSERT INTO t3 VALUES(1544, 31675, 'thirty-one thousand six hundred seventy-five'); INSERT INTO t3 VALUES(1545, 77525, 'seventy-seven thousand five hundred twenty-five'); INSERT INTO t3 VALUES(1546, 27764, 'twenty-seven thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(1547, 49705, 'forty-nine thousand seven hundred five'); INSERT INTO t3 VALUES(1548, 71362, 'seventy-one thousand three hundred sixty-two'); INSERT INTO t3 VALUES(1549, 96058, 'ninety-six thousand fifty-eight'); INSERT INTO t3 VALUES(1550, 48130, 'forty-eight thousand one hundred thirty'); INSERT INTO t3 VALUES(1551, 93355, 'ninety-three thousand three hundred fifty-five'); INSERT INTO t3 VALUES(1552, 20762, 'twenty thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(1553, 29874, 'twenty-nine thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(1554, 48108, 'forty-eight thousand one hundred eight'); INSERT INTO t3 VALUES(1555, 97598, 'ninety-seven thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(1556, 62902, 'sixty-two thousand nine hundred two'); INSERT INTO t3 VALUES(1557, 95447, 'ninety-five thousand four hundred forty-seven'); INSERT INTO t3 VALUES(1558, 63295, 'sixty-three thousand two hundred ninety-five'); INSERT INTO t3 VALUES(1559, 59971, 'fifty-nine thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(1560, 85311, 'eighty-five thousand three hundred eleven'); INSERT INTO t3 VALUES(1561, 16180, 'sixteen thousand one hundred eighty'); INSERT INTO t3 VALUES(1562, 12882, 'twelve thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(1563, 9574, 'nine thousand five hundred seventy-four'); INSERT INTO t3 VALUES(1564, 53832, 'fifty-three thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(1565, 68806, 'sixty-eight thousand eight hundred six'); INSERT INTO t3 VALUES(1566, 68886, 'sixty-eight thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(1567, 47312, 'forty-seven thousand three hundred twelve'); INSERT INTO t3 VALUES(1568, 40956, 'forty thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(1569, 81278, 'eighty-one thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(1570, 81024, 'eighty-one thousand twenty-four'); INSERT INTO t3 VALUES(1571, 94492, 'ninety-four thousand four hundred ninety-two'); INSERT INTO t3 VALUES(1572, 14555, 'fourteen thousand five hundred fifty-five'); INSERT INTO t3 VALUES(1573, 88599, 'eighty-eight thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(1574, 17427, 'seventeen thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(1575, 37635, 'thirty-seven thousand six hundred thirty-five'); INSERT INTO t3 VALUES(1576, 14697, 'fourteen thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(1577, 23884, 'twenty-three thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(1578, 49243, 'forty-nine thousand two hundred forty-three'); INSERT INTO t3 VALUES(1579, 19993, 'nineteen thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(1580, 65763, 'sixty-five thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(1581, 70657, 'seventy thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(1582, 6309, 'six thousand three hundred nine'); INSERT INTO t3 VALUES(1583, 95396, 'ninety-five thousand three hundred ninety-six'); INSERT INTO t3 VALUES(1584, 34119, 'thirty-four thousand one hundred nineteen'); INSERT INTO t3 VALUES(1585, 60184, 'sixty thousand one hundred eighty-four'); INSERT INTO t3 VALUES(1586, 60530, 'sixty thousand five hundred thirty'); INSERT INTO t3 VALUES(1587, 519, 'five hundred nineteen'); INSERT INTO t3 VALUES(1588, 29332, 'twenty-nine thousand three hundred thirty-two'); INSERT INTO t3 VALUES(1589, 37833, 'thirty-seven thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(1590, 61159, 'sixty-one thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(1591, 80522, 'eighty thousand five hundred twenty-two'); INSERT INTO t3 VALUES(1592, 53291, 'fifty-three thousand two hundred ninety-one'); INSERT INTO t3 VALUES(1593, 49051, 'forty-nine thousand fifty-one'); INSERT INTO t3 VALUES(1594, 2056, 'two thousand fifty-six'); INSERT INTO t3 VALUES(1595, 77210, 'seventy-seven thousand two hundred ten'); INSERT INTO t3 VALUES(1596, 86325, 'eighty-six thousand three hundred twenty-five'); INSERT INTO t3 VALUES(1597, 84665, 'eighty-four thousand six hundred sixty-five'); INSERT INTO t3 VALUES(1598, 67725, 'sixty-seven thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(1599, 26029, 'twenty-six thousand twenty-nine'); INSERT INTO t3 VALUES(1600, 88601, 'eighty-eight thousand six hundred one'); INSERT INTO t3 VALUES(1601, 32752, 'thirty-two thousand seven hundred fifty-two'); INSERT INTO t3 VALUES(1602, 19325, 'nineteen thousand three hundred twenty-five'); INSERT INTO t3 VALUES(1603, 37076, 'thirty-seven thousand seventy-six'); INSERT INTO t3 VALUES(1604, 15094, 'fifteen thousand ninety-four'); INSERT INTO t3 VALUES(1605, 52998, 'fifty-two thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(1606, 26678, 'twenty-six thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(1607, 69600, 'sixty-nine thousand six hundred'); INSERT INTO t3 VALUES(1608, 62118, 'sixty-two thousand one hundred eighteen'); INSERT INTO t3 VALUES(1609, 80950, 'eighty thousand nine hundred fifty'); INSERT INTO t3 VALUES(1610, 98818, 'ninety-eight thousand eight hundred eighteen'); INSERT INTO t3 VALUES(1611, 51614, 'fifty-one thousand six hundred fourteen'); INSERT INTO t3 VALUES(1612, 12599, 'twelve thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(1613, 39089, 'thirty-nine thousand eighty-nine'); INSERT INTO t3 VALUES(1614, 95895, 'ninety-five thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(1615, 88094, 'eighty-eight thousand ninety-four'); INSERT INTO t3 VALUES(1616, 82079, 'eighty-two thousand seventy-nine'); INSERT INTO t3 VALUES(1617, 95142, 'ninety-five thousand one hundred forty-two'); INSERT INTO t3 VALUES(1618, 73845, 'seventy-three thousand eight hundred forty-five'); INSERT INTO t3 VALUES(1619, 2906, 'two thousand nine hundred six'); INSERT INTO t3 VALUES(1620, 80960, 'eighty thousand nine hundred sixty'); INSERT INTO t3 VALUES(1621, 23479, 'twenty-three thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(1622, 88298, 'eighty-eight thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(1623, 57077, 'fifty-seven thousand seventy-seven'); INSERT INTO t3 VALUES(1624, 24630, 'twenty-four thousand six hundred thirty'); INSERT INTO t3 VALUES(1625, 74083, 'seventy-four thousand eighty-three'); INSERT INTO t3 VALUES(1626, 32204, 'thirty-two thousand two hundred four'); INSERT INTO t3 VALUES(1627, 40032, 'forty thousand thirty-two'); INSERT INTO t3 VALUES(1628, 61026, 'sixty-one thousand twenty-six'); INSERT INTO t3 VALUES(1629, 44543, 'forty-four thousand five hundred forty-three'); INSERT INTO t3 VALUES(1630, 58253, 'fifty-eight thousand two hundred fifty-three'); INSERT INTO t3 VALUES(1631, 26899, 'twenty-six thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(1632, 97209, 'ninety-seven thousand two hundred nine'); INSERT INTO t3 VALUES(1633, 41316, 'forty-one thousand three hundred sixteen'); INSERT INTO t3 VALUES(1634, 4556, 'four thousand five hundred fifty-six'); INSERT INTO t3 VALUES(1635, 36548, 'thirty-six thousand five hundred forty-eight'); INSERT INTO t3 VALUES(1636, 38921, 'thirty-eight thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(1637, 9280, 'nine thousand two hundred eighty'); INSERT INTO t3 VALUES(1638, 32498, 'thirty-two thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(1639, 16992, 'sixteen thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(1640, 19324, 'nineteen thousand three hundred twenty-four'); INSERT INTO t3 VALUES(1641, 96451, 'ninety-six thousand four hundred fifty-one'); INSERT INTO t3 VALUES(1642, 22576, 'twenty-two thousand five hundred seventy-six'); INSERT INTO t3 VALUES(1643, 97309, 'ninety-seven thousand three hundred nine'); INSERT INTO t3 VALUES(1644, 80770, 'eighty thousand seven hundred seventy'); INSERT INTO t3 VALUES(1645, 9121, 'nine thousand one hundred twenty-one'); INSERT INTO t3 VALUES(1646, 3338, 'three thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(1647, 66580, 'sixty-six thousand five hundred eighty'); INSERT INTO t3 VALUES(1648, 19191, 'nineteen thousand one hundred ninety-one'); INSERT INTO t3 VALUES(1649, 54541, 'fifty-four thousand five hundred forty-one'); INSERT INTO t3 VALUES(1650, 78396, 'seventy-eight thousand three hundred ninety-six'); INSERT INTO t3 VALUES(1651, 74699, 'seventy-four thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(1652, 27794, 'twenty-seven thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(1653, 55989, 'fifty-five thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(1654, 54249, 'fifty-four thousand two hundred forty-nine'); INSERT INTO t3 VALUES(1655, 14881, 'fourteen thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(1656, 80268, 'eighty thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(1657, 95277, 'ninety-five thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(1658, 1797, 'one thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(1659, 1225, 'one thousand two hundred twenty-five'); INSERT INTO t3 VALUES(1660, 8618, 'eight thousand six hundred eighteen'); INSERT INTO t3 VALUES(1661, 39882, 'thirty-nine thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(1662, 54884, 'fifty-four thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(1663, 73047, 'seventy-three thousand forty-seven'); INSERT INTO t3 VALUES(1664, 5927, 'five thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(1665, 13817, 'thirteen thousand eight hundred seventeen'); INSERT INTO t3 VALUES(1666, 30176, 'thirty thousand one hundred seventy-six'); INSERT INTO t3 VALUES(1667, 33774, 'thirty-three thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(1668, 9833, 'nine thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(1669, 65221, 'sixty-five thousand two hundred twenty-one'); INSERT INTO t3 VALUES(1670, 19520, 'nineteen thousand five hundred twenty'); INSERT INTO t3 VALUES(1671, 35027, 'thirty-five thousand twenty-seven'); INSERT INTO t3 VALUES(1672, 49390, 'forty-nine thousand three hundred ninety'); INSERT INTO t3 VALUES(1673, 76401, 'seventy-six thousand four hundred one'); INSERT INTO t3 VALUES(1674, 57398, 'fifty-seven thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(1675, 63452, 'sixty-three thousand four hundred fifty-two'); INSERT INTO t3 VALUES(1676, 69211, 'sixty-nine thousand two hundred eleven'); INSERT INTO t3 VALUES(1677, 43066, 'forty-three thousand sixty-six'); INSERT INTO t3 VALUES(1678, 89905, 'eighty-nine thousand nine hundred five'); INSERT INTO t3 VALUES(1679, 20694, 'twenty thousand six hundred ninety-four'); INSERT INTO t3 VALUES(1680, 53351, 'fifty-three thousand three hundred fifty-one'); INSERT INTO t3 VALUES(1681, 36442, 'thirty-six thousand four hundred forty-two'); INSERT INTO t3 VALUES(1682, 19987, 'nineteen thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(1683, 78561, 'seventy-eight thousand five hundred sixty-one'); INSERT INTO t3 VALUES(1684, 76690, 'seventy-six thousand six hundred ninety'); INSERT INTO t3 VALUES(1685, 81665, 'eighty-one thousand six hundred sixty-five'); INSERT INTO t3 VALUES(1686, 9725, 'nine thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(1687, 87526, 'eighty-seven thousand five hundred twenty-six'); INSERT INTO t3 VALUES(1688, 38779, 'thirty-eight thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(1689, 73641, 'seventy-three thousand six hundred forty-one'); INSERT INTO t3 VALUES(1690, 31420, 'thirty-one thousand four hundred twenty'); INSERT INTO t3 VALUES(1691, 49868, 'forty-nine thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(1692, 94217, 'ninety-four thousand two hundred seventeen'); INSERT INTO t3 VALUES(1693, 80648, 'eighty thousand six hundred forty-eight'); INSERT INTO t3 VALUES(1694, 14059, 'fourteen thousand fifty-nine'); INSERT INTO t3 VALUES(1695, 35226, 'thirty-five thousand two hundred twenty-six'); INSERT INTO t3 VALUES(1696, 8847, 'eight thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(1697, 83846, 'eighty-three thousand eight hundred forty-six'); INSERT INTO t3 VALUES(1698, 81789, 'eighty-one thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(1699, 29756, 'twenty-nine thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(1700, 79253, 'seventy-nine thousand two hundred fifty-three'); INSERT INTO t3 VALUES(1701, 4424, 'four thousand four hundred twenty-four'); INSERT INTO t3 VALUES(1702, 96946, 'ninety-six thousand nine hundred forty-six'); INSERT INTO t3 VALUES(1703, 40452, 'forty thousand four hundred fifty-two'); INSERT INTO t3 VALUES(1704, 53559, 'fifty-three thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(1705, 99321, 'ninety-nine thousand three hundred twenty-one'); INSERT INTO t3 VALUES(1706, 70435, 'seventy thousand four hundred thirty-five'); INSERT INTO t3 VALUES(1707, 70689, 'seventy thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(1708, 93232, 'ninety-three thousand two hundred thirty-two'); INSERT INTO t3 VALUES(1709, 25439, 'twenty-five thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(1710, 88816, 'eighty-eight thousand eight hundred sixteen'); INSERT INTO t3 VALUES(1711, 18057, 'eighteen thousand fifty-seven'); INSERT INTO t3 VALUES(1712, 83538, 'eighty-three thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(1713, 14919, 'fourteen thousand nine hundred nineteen'); INSERT INTO t3 VALUES(1714, 65130, 'sixty-five thousand one hundred thirty'); INSERT INTO t3 VALUES(1715, 351, 'three hundred fifty-one'); INSERT INTO t3 VALUES(1716, 8796, 'eight thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(1717, 5647, 'five thousand six hundred forty-seven'); INSERT INTO t3 VALUES(1718, 14079, 'fourteen thousand seventy-nine'); INSERT INTO t3 VALUES(1719, 30128, 'thirty thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(1720, 96358, 'ninety-six thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(1721, 86275, 'eighty-six thousand two hundred seventy-five'); INSERT INTO t3 VALUES(1722, 78679, 'seventy-eight thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(1723, 24988, 'twenty-four thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(1724, 81247, 'eighty-one thousand two hundred forty-seven'); INSERT INTO t3 VALUES(1725, 14632, 'fourteen thousand six hundred thirty-two'); INSERT INTO t3 VALUES(1726, 65441, 'sixty-five thousand four hundred forty-one'); INSERT INTO t3 VALUES(1727, 27646, 'twenty-seven thousand six hundred forty-six'); INSERT INTO t3 VALUES(1728, 61750, 'sixty-one thousand seven hundred fifty'); INSERT INTO t3 VALUES(1729, 81287, 'eighty-one thousand two hundred eighty-seven'); INSERT INTO t3 VALUES(1730, 47423, 'forty-seven thousand four hundred twenty-three'); INSERT INTO t3 VALUES(1731, 86776, 'eighty-six thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(1732, 86755, 'eighty-six thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(1733, 5222, 'five thousand two hundred twenty-two'); INSERT INTO t3 VALUES(1734, 53629, 'fifty-three thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(1735, 74582, 'seventy-four thousand five hundred eighty-two'); INSERT INTO t3 VALUES(1736, 17560, 'seventeen thousand five hundred sixty'); INSERT INTO t3 VALUES(1737, 53440, 'fifty-three thousand four hundred forty'); INSERT INTO t3 VALUES(1738, 25990, 'twenty-five thousand nine hundred ninety'); INSERT INTO t3 VALUES(1739, 47210, 'forty-seven thousand two hundred ten'); INSERT INTO t3 VALUES(1740, 57398, 'fifty-seven thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(1741, 25842, 'twenty-five thousand eight hundred forty-two'); INSERT INTO t3 VALUES(1742, 77328, 'seventy-seven thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(1743, 18096, 'eighteen thousand ninety-six'); INSERT INTO t3 VALUES(1744, 34754, 'thirty-four thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(1745, 45405, 'forty-five thousand four hundred five'); INSERT INTO t3 VALUES(1746, 13823, 'thirteen thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(1747, 49923, 'forty-nine thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(1748, 83819, 'eighty-three thousand eight hundred nineteen'); INSERT INTO t3 VALUES(1749, 17607, 'seventeen thousand six hundred seven'); INSERT INTO t3 VALUES(1750, 27690, 'twenty-seven thousand six hundred ninety'); INSERT INTO t3 VALUES(1751, 94247, 'ninety-four thousand two hundred forty-seven'); INSERT INTO t3 VALUES(1752, 49325, 'forty-nine thousand three hundred twenty-five'); INSERT INTO t3 VALUES(1753, 85965, 'eighty-five thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(1754, 91977, 'ninety-one thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(1755, 78239, 'seventy-eight thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(1756, 85321, 'eighty-five thousand three hundred twenty-one'); INSERT INTO t3 VALUES(1757, 9783, 'nine thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(1758, 52766, 'fifty-two thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(1759, 60639, 'sixty thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(1760, 51278, 'fifty-one thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(1761, 27375, 'twenty-seven thousand three hundred seventy-five'); INSERT INTO t3 VALUES(1762, 1617, 'one thousand six hundred seventeen'); INSERT INTO t3 VALUES(1763, 66623, 'sixty-six thousand six hundred twenty-three'); INSERT INTO t3 VALUES(1764, 74421, 'seventy-four thousand four hundred twenty-one'); INSERT INTO t3 VALUES(1765, 24325, 'twenty-four thousand three hundred twenty-five'); INSERT INTO t3 VALUES(1766, 79776, 'seventy-nine thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(1767, 33732, 'thirty-three thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(1768, 61564, 'sixty-one thousand five hundred sixty-four'); INSERT INTO t3 VALUES(1769, 79172, 'seventy-nine thousand one hundred seventy-two'); INSERT INTO t3 VALUES(1770, 90022, 'ninety thousand twenty-two'); INSERT INTO t3 VALUES(1771, 91525, 'ninety-one thousand five hundred twenty-five'); INSERT INTO t3 VALUES(1772, 85153, 'eighty-five thousand one hundred fifty-three'); INSERT INTO t3 VALUES(1773, 84868, 'eighty-four thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(1774, 19344, 'nineteen thousand three hundred forty-four'); INSERT INTO t3 VALUES(1775, 90744, 'ninety thousand seven hundred forty-four'); INSERT INTO t3 VALUES(1776, 15514, 'fifteen thousand five hundred fourteen'); INSERT INTO t3 VALUES(1777, 71377, 'seventy-one thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(1778, 5810, 'five thousand eight hundred ten'); INSERT INTO t3 VALUES(1779, 33066, 'thirty-three thousand sixty-six'); INSERT INTO t3 VALUES(1780, 67045, 'sixty-seven thousand forty-five'); INSERT INTO t3 VALUES(1781, 47539, 'forty-seven thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(1782, 85185, 'eighty-five thousand one hundred eighty-five'); INSERT INTO t3 VALUES(1783, 22446, 'twenty-two thousand four hundred forty-six'); INSERT INTO t3 VALUES(1784, 92330, 'ninety-two thousand three hundred thirty'); INSERT INTO t3 VALUES(1785, 99813, 'ninety-nine thousand eight hundred thirteen'); INSERT INTO t3 VALUES(1786, 92270, 'ninety-two thousand two hundred seventy'); INSERT INTO t3 VALUES(1787, 71971, 'seventy-one thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(1788, 8653, 'eight thousand six hundred fifty-three'); INSERT INTO t3 VALUES(1789, 74307, 'seventy-four thousand three hundred seven'); INSERT INTO t3 VALUES(1790, 45585, 'forty-five thousand five hundred eighty-five'); INSERT INTO t3 VALUES(1791, 60701, 'sixty thousand seven hundred one'); INSERT INTO t3 VALUES(1792, 58417, 'fifty-eight thousand four hundred seventeen'); INSERT INTO t3 VALUES(1793, 74492, 'seventy-four thousand four hundred ninety-two'); INSERT INTO t3 VALUES(1794, 89732, 'eighty-nine thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(1795, 67912, 'sixty-seven thousand nine hundred twelve'); INSERT INTO t3 VALUES(1796, 18422, 'eighteen thousand four hundred twenty-two'); INSERT INTO t3 VALUES(1797, 11633, 'eleven thousand six hundred thirty-three'); INSERT INTO t3 VALUES(1798, 38432, 'thirty-eight thousand four hundred thirty-two'); INSERT INTO t3 VALUES(1799, 53350, 'fifty-three thousand three hundred fifty'); INSERT INTO t3 VALUES(1800, 3256, 'three thousand two hundred fifty-six'); INSERT INTO t3 VALUES(1801, 18800, 'eighteen thousand eight hundred'); INSERT INTO t3 VALUES(1802, 74056, 'seventy-four thousand fifty-six'); INSERT INTO t3 VALUES(1803, 39640, 'thirty-nine thousand six hundred forty'); INSERT INTO t3 VALUES(1804, 17551, 'seventeen thousand five hundred fifty-one'); INSERT INTO t3 VALUES(1805, 33076, 'thirty-three thousand seventy-six'); INSERT INTO t3 VALUES(1806, 5062, 'five thousand sixty-two'); INSERT INTO t3 VALUES(1807, 59579, 'fifty-nine thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(1808, 93580, 'ninety-three thousand five hundred eighty'); INSERT INTO t3 VALUES(1809, 49252, 'forty-nine thousand two hundred fifty-two'); INSERT INTO t3 VALUES(1810, 14480, 'fourteen thousand four hundred eighty'); INSERT INTO t3 VALUES(1811, 13799, 'thirteen thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(1812, 6840, 'six thousand eight hundred forty'); INSERT INTO t3 VALUES(1813, 87793, 'eighty-seven thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(1814, 41698, 'forty-one thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(1815, 37665, 'thirty-seven thousand six hundred sixty-five'); INSERT INTO t3 VALUES(1816, 71170, 'seventy-one thousand one hundred seventy'); INSERT INTO t3 VALUES(1817, 69307, 'sixty-nine thousand three hundred seven'); INSERT INTO t3 VALUES(1818, 36344, 'thirty-six thousand three hundred forty-four'); INSERT INTO t3 VALUES(1819, 82535, 'eighty-two thousand five hundred thirty-five'); INSERT INTO t3 VALUES(1820, 11733, 'eleven thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(1821, 37335, 'thirty-seven thousand three hundred thirty-five'); INSERT INTO t3 VALUES(1822, 16657, 'sixteen thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(1823, 77184, 'seventy-seven thousand one hundred eighty-four'); INSERT INTO t3 VALUES(1824, 29887, 'twenty-nine thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(1825, 38486, 'thirty-eight thousand four hundred eighty-six'); INSERT INTO t3 VALUES(1826, 15093, 'fifteen thousand ninety-three'); INSERT INTO t3 VALUES(1827, 23045, 'twenty-three thousand forty-five'); INSERT INTO t3 VALUES(1828, 84551, 'eighty-four thousand five hundred fifty-one'); INSERT INTO t3 VALUES(1829, 53035, 'fifty-three thousand thirty-five'); INSERT INTO t3 VALUES(1830, 64634, 'sixty-four thousand six hundred thirty-four'); INSERT INTO t3 VALUES(1831, 43246, 'forty-three thousand two hundred forty-six'); INSERT INTO t3 VALUES(1832, 91381, 'ninety-one thousand three hundred eighty-one'); INSERT INTO t3 VALUES(1833, 48117, 'forty-eight thousand one hundred seventeen'); INSERT INTO t3 VALUES(1834, 28126, 'twenty-eight thousand one hundred twenty-six'); INSERT INTO t3 VALUES(1835, 94457, 'ninety-four thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(1836, 53085, 'fifty-three thousand eighty-five'); INSERT INTO t3 VALUES(1837, 91230, 'ninety-one thousand two hundred thirty'); INSERT INTO t3 VALUES(1838, 80930, 'eighty thousand nine hundred thirty'); INSERT INTO t3 VALUES(1839, 51813, 'fifty-one thousand eight hundred thirteen'); INSERT INTO t3 VALUES(1840, 48853, 'forty-eight thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(1841, 10541, 'ten thousand five hundred forty-one'); INSERT INTO t3 VALUES(1842, 63316, 'sixty-three thousand three hundred sixteen'); INSERT INTO t3 VALUES(1843, 86642, 'eighty-six thousand six hundred forty-two'); INSERT INTO t3 VALUES(1844, 90329, 'ninety thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(1845, 45310, 'forty-five thousand three hundred ten'); INSERT INTO t3 VALUES(1846, 41949, 'forty-one thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(1847, 35438, 'thirty-five thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(1848, 46641, 'forty-six thousand six hundred forty-one'); INSERT INTO t3 VALUES(1849, 23307, 'twenty-three thousand three hundred seven'); INSERT INTO t3 VALUES(1850, 79886, 'seventy-nine thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(1851, 284, 'two hundred eighty-four'); INSERT INTO t3 VALUES(1852, 13104, 'thirteen thousand one hundred four'); INSERT INTO t3 VALUES(1853, 53609, 'fifty-three thousand six hundred nine'); INSERT INTO t3 VALUES(1854, 58540, 'fifty-eight thousand five hundred forty'); INSERT INTO t3 VALUES(1855, 22527, 'twenty-two thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(1856, 89998, 'eighty-nine thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(1857, 17504, 'seventeen thousand five hundred four'); INSERT INTO t3 VALUES(1858, 82012, 'eighty-two thousand twelve'); INSERT INTO t3 VALUES(1859, 1468, 'one thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(1860, 76117, 'seventy-six thousand one hundred seventeen'); INSERT INTO t3 VALUES(1861, 83855, 'eighty-three thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(1862, 84711, 'eighty-four thousand seven hundred eleven'); INSERT INTO t3 VALUES(1863, 71607, 'seventy-one thousand six hundred seven'); INSERT INTO t3 VALUES(1864, 13753, 'thirteen thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(1865, 44167, 'forty-four thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(1866, 49345, 'forty-nine thousand three hundred forty-five'); INSERT INTO t3 VALUES(1867, 89810, 'eighty-nine thousand eight hundred ten'); INSERT INTO t3 VALUES(1868, 3843, 'three thousand eight hundred forty-three'); INSERT INTO t3 VALUES(1869, 55672, 'fifty-five thousand six hundred seventy-two'); INSERT INTO t3 VALUES(1870, 74000, 'seventy-four thousand'); INSERT INTO t3 VALUES(1871, 74072, 'seventy-four thousand seventy-two'); INSERT INTO t3 VALUES(1872, 92844, 'ninety-two thousand eight hundred forty-four'); INSERT INTO t3 VALUES(1873, 28448, 'twenty-eight thousand four hundred forty-eight'); INSERT INTO t3 VALUES(1874, 33924, 'thirty-three thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(1875, 34292, 'thirty-four thousand two hundred ninety-two'); INSERT INTO t3 VALUES(1876, 45610, 'forty-five thousand six hundred ten'); INSERT INTO t3 VALUES(1877, 62127, 'sixty-two thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(1878, 60105, 'sixty thousand one hundred five'); INSERT INTO t3 VALUES(1879, 65062, 'sixty-five thousand sixty-two'); INSERT INTO t3 VALUES(1880, 57148, 'fifty-seven thousand one hundred forty-eight'); INSERT INTO t3 VALUES(1881, 66796, 'sixty-six thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(1882, 62699, 'sixty-two thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(1883, 75145, 'seventy-five thousand one hundred forty-five'); INSERT INTO t3 VALUES(1884, 41321, 'forty-one thousand three hundred twenty-one'); INSERT INTO t3 VALUES(1885, 2213, 'two thousand two hundred thirteen'); INSERT INTO t3 VALUES(1886, 74966, 'seventy-four thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(1887, 45305, 'forty-five thousand three hundred five'); INSERT INTO t3 VALUES(1888, 76632, 'seventy-six thousand six hundred thirty-two'); INSERT INTO t3 VALUES(1889, 99047, 'ninety-nine thousand forty-seven'); INSERT INTO t3 VALUES(1890, 54068, 'fifty-four thousand sixty-eight'); INSERT INTO t3 VALUES(1891, 8881, 'eight thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(1892, 46208, 'forty-six thousand two hundred eight'); INSERT INTO t3 VALUES(1893, 73868, 'seventy-three thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(1894, 19510, 'nineteen thousand five hundred ten'); INSERT INTO t3 VALUES(1895, 72069, 'seventy-two thousand sixty-nine'); INSERT INTO t3 VALUES(1896, 51770, 'fifty-one thousand seven hundred seventy'); INSERT INTO t3 VALUES(1897, 91125, 'ninety-one thousand one hundred twenty-five'); INSERT INTO t3 VALUES(1898, 69281, 'sixty-nine thousand two hundred eighty-one'); INSERT INTO t3 VALUES(1899, 96078, 'ninety-six thousand seventy-eight'); INSERT INTO t3 VALUES(1900, 99710, 'ninety-nine thousand seven hundred ten'); INSERT INTO t3 VALUES(1901, 92553, 'ninety-two thousand five hundred fifty-three'); INSERT INTO t3 VALUES(1902, 66580, 'sixty-six thousand five hundred eighty'); INSERT INTO t3 VALUES(1903, 48921, 'forty-eight thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(1904, 57229, 'fifty-seven thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(1905, 4529, 'four thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(1906, 38632, 'thirty-eight thousand six hundred thirty-two'); INSERT INTO t3 VALUES(1907, 12327, 'twelve thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(1908, 37881, 'thirty-seven thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(1909, 54221, 'fifty-four thousand two hundred twenty-one'); INSERT INTO t3 VALUES(1910, 58504, 'fifty-eight thousand five hundred four'); INSERT INTO t3 VALUES(1911, 81205, 'eighty-one thousand two hundred five'); INSERT INTO t3 VALUES(1912, 49852, 'forty-nine thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(1913, 18990, 'eighteen thousand nine hundred ninety'); INSERT INTO t3 VALUES(1914, 46686, 'forty-six thousand six hundred eighty-six'); INSERT INTO t3 VALUES(1915, 49449, 'forty-nine thousand four hundred forty-nine'); INSERT INTO t3 VALUES(1916, 32859, 'thirty-two thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(1917, 93576, 'ninety-three thousand five hundred seventy-six'); INSERT INTO t3 VALUES(1918, 79522, 'seventy-nine thousand five hundred twenty-two'); INSERT INTO t3 VALUES(1919, 48625, 'forty-eight thousand six hundred twenty-five'); INSERT INTO t3 VALUES(1920, 17379, 'seventeen thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(1921, 86661, 'eighty-six thousand six hundred sixty-one'); INSERT INTO t3 VALUES(1922, 89879, 'eighty-nine thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(1923, 88484, 'eighty-eight thousand four hundred eighty-four'); INSERT INTO t3 VALUES(1924, 60303, 'sixty thousand three hundred three'); INSERT INTO t3 VALUES(1925, 66627, 'sixty-six thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(1926, 9889, 'nine thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(1927, 54268, 'fifty-four thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(1928, 509, 'five hundred nine'); INSERT INTO t3 VALUES(1929, 29418, 'twenty-nine thousand four hundred eighteen'); INSERT INTO t3 VALUES(1930, 1114, 'one thousand one hundred fourteen'); INSERT INTO t3 VALUES(1931, 57107, 'fifty-seven thousand one hundred seven'); INSERT INTO t3 VALUES(1932, 49837, 'forty-nine thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(1933, 31332, 'thirty-one thousand three hundred thirty-two'); INSERT INTO t3 VALUES(1934, 19882, 'nineteen thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(1935, 6390, 'six thousand three hundred ninety'); INSERT INTO t3 VALUES(1936, 92051, 'ninety-two thousand fifty-one'); INSERT INTO t3 VALUES(1937, 73591, 'seventy-three thousand five hundred ninety-one'); INSERT INTO t3 VALUES(1938, 73809, 'seventy-three thousand eight hundred nine'); INSERT INTO t3 VALUES(1939, 37123, 'thirty-seven thousand one hundred twenty-three'); INSERT INTO t3 VALUES(1940, 46702, 'forty-six thousand seven hundred two'); INSERT INTO t3 VALUES(1941, 44453, 'forty-four thousand four hundred fifty-three'); INSERT INTO t3 VALUES(1942, 94498, 'ninety-four thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(1943, 41213, 'forty-one thousand two hundred thirteen'); INSERT INTO t3 VALUES(1944, 37512, 'thirty-seven thousand five hundred twelve'); INSERT INTO t3 VALUES(1945, 40345, 'forty thousand three hundred forty-five'); INSERT INTO t3 VALUES(1946, 65300, 'sixty-five thousand three hundred'); INSERT INTO t3 VALUES(1947, 99023, 'ninety-nine thousand twenty-three'); INSERT INTO t3 VALUES(1948, 51529, 'fifty-one thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(1949, 40564, 'forty thousand five hundred sixty-four'); INSERT INTO t3 VALUES(1950, 93119, 'ninety-three thousand one hundred nineteen'); INSERT INTO t3 VALUES(1951, 95801, 'ninety-five thousand eight hundred one'); INSERT INTO t3 VALUES(1952, 29139, 'twenty-nine thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(1953, 88533, 'eighty-eight thousand five hundred thirty-three'); INSERT INTO t3 VALUES(1954, 36391, 'thirty-six thousand three hundred ninety-one'); INSERT INTO t3 VALUES(1955, 46914, 'forty-six thousand nine hundred fourteen'); INSERT INTO t3 VALUES(1956, 1945, 'one thousand nine hundred forty-five'); INSERT INTO t3 VALUES(1957, 17441, 'seventeen thousand four hundred forty-one'); INSERT INTO t3 VALUES(1958, 50389, 'fifty thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(1959, 2919, 'two thousand nine hundred nineteen'); INSERT INTO t3 VALUES(1960, 7387, 'seven thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(1961, 60435, 'sixty thousand four hundred thirty-five'); INSERT INTO t3 VALUES(1962, 87437, 'eighty-seven thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(1963, 48552, 'forty-eight thousand five hundred fifty-two'); INSERT INTO t3 VALUES(1964, 97032, 'ninety-seven thousand thirty-two'); INSERT INTO t3 VALUES(1965, 3774, 'three thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(1966, 88663, 'eighty-eight thousand six hundred sixty-three'); INSERT INTO t3 VALUES(1967, 49949, 'forty-nine thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(1968, 42172, 'forty-two thousand one hundred seventy-two'); INSERT INTO t3 VALUES(1969, 81342, 'eighty-one thousand three hundred forty-two'); INSERT INTO t3 VALUES(1970, 50370, 'fifty thousand three hundred seventy'); INSERT INTO t3 VALUES(1971, 68432, 'sixty-eight thousand four hundred thirty-two'); INSERT INTO t3 VALUES(1972, 74779, 'seventy-four thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(1973, 78931, 'seventy-eight thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(1974, 88840, 'eighty-eight thousand eight hundred forty'); INSERT INTO t3 VALUES(1975, 33044, 'thirty-three thousand forty-four'); INSERT INTO t3 VALUES(1976, 33493, 'thirty-three thousand four hundred ninety-three'); INSERT INTO t3 VALUES(1977, 93664, 'ninety-three thousand six hundred sixty-four'); INSERT INTO t3 VALUES(1978, 18493, 'eighteen thousand four hundred ninety-three'); INSERT INTO t3 VALUES(1979, 31558, 'thirty-one thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(1980, 78410, 'seventy-eight thousand four hundred ten'); INSERT INTO t3 VALUES(1981, 18024, 'eighteen thousand twenty-four'); INSERT INTO t3 VALUES(1982, 84219, 'eighty-four thousand two hundred nineteen'); INSERT INTO t3 VALUES(1983, 93478, 'ninety-three thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(1984, 77514, 'seventy-seven thousand five hundred fourteen'); INSERT INTO t3 VALUES(1985, 40296, 'forty thousand two hundred ninety-six'); INSERT INTO t3 VALUES(1986, 51888, 'fifty-one thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(1987, 16949, 'sixteen thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(1988, 68817, 'sixty-eight thousand eight hundred seventeen'); INSERT INTO t3 VALUES(1989, 69649, 'sixty-nine thousand six hundred forty-nine'); INSERT INTO t3 VALUES(1990, 72933, 'seventy-two thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(1991, 12206, 'twelve thousand two hundred six'); INSERT INTO t3 VALUES(1992, 97291, 'ninety-seven thousand two hundred ninety-one'); INSERT INTO t3 VALUES(1993, 39229, 'thirty-nine thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(1994, 37831, 'thirty-seven thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(1995, 33866, 'thirty-three thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(1996, 85012, 'eighty-five thousand twelve'); INSERT INTO t3 VALUES(1997, 38533, 'thirty-eight thousand five hundred thirty-three'); INSERT INTO t3 VALUES(1998, 46016, 'forty-six thousand sixteen'); INSERT INTO t3 VALUES(1999, 93324, 'ninety-three thousand three hundred twenty-four'); INSERT INTO t3 VALUES(2000, 63623, 'sixty-three thousand six hundred twenty-three'); INSERT INTO t3 VALUES(2001, 98556, 'ninety-eight thousand five hundred fifty-six'); INSERT INTO t3 VALUES(2002, 58599, 'fifty-eight thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(2003, 45225, 'forty-five thousand two hundred twenty-five'); INSERT INTO t3 VALUES(2004, 37548, 'thirty-seven thousand five hundred forty-eight'); INSERT INTO t3 VALUES(2005, 83650, 'eighty-three thousand six hundred fifty'); INSERT INTO t3 VALUES(2006, 14417, 'fourteen thousand four hundred seventeen'); INSERT INTO t3 VALUES(2007, 32517, 'thirty-two thousand five hundred seventeen'); INSERT INTO t3 VALUES(2008, 22945, 'twenty-two thousand nine hundred forty-five'); INSERT INTO t3 VALUES(2009, 3316, 'three thousand three hundred sixteen'); INSERT INTO t3 VALUES(2010, 93213, 'ninety-three thousand two hundred thirteen'); INSERT INTO t3 VALUES(2011, 26724, 'twenty-six thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(2012, 21333, 'twenty-one thousand three hundred thirty-three'); INSERT INTO t3 VALUES(2013, 81607, 'eighty-one thousand six hundred seven'); INSERT INTO t3 VALUES(2014, 82073, 'eighty-two thousand seventy-three'); INSERT INTO t3 VALUES(2015, 79396, 'seventy-nine thousand three hundred ninety-six'); INSERT INTO t3 VALUES(2016, 27732, 'twenty-seven thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(2017, 15834, 'fifteen thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(2018, 72301, 'seventy-two thousand three hundred one'); INSERT INTO t3 VALUES(2019, 9948, 'nine thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(2020, 65047, 'sixty-five thousand forty-seven'); INSERT INTO t3 VALUES(2021, 75772, 'seventy-five thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(2022, 79232, 'seventy-nine thousand two hundred thirty-two'); INSERT INTO t3 VALUES(2023, 97661, 'ninety-seven thousand six hundred sixty-one'); INSERT INTO t3 VALUES(2024, 25306, 'twenty-five thousand three hundred six'); INSERT INTO t3 VALUES(2025, 31192, 'thirty-one thousand one hundred ninety-two'); INSERT INTO t3 VALUES(2026, 88179, 'eighty-eight thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(2027, 20441, 'twenty thousand four hundred forty-one'); INSERT INTO t3 VALUES(2028, 47119, 'forty-seven thousand one hundred nineteen'); INSERT INTO t3 VALUES(2029, 65133, 'sixty-five thousand one hundred thirty-three'); INSERT INTO t3 VALUES(2030, 8819, 'eight thousand eight hundred nineteen'); INSERT INTO t3 VALUES(2031, 6202, 'six thousand two hundred two'); INSERT INTO t3 VALUES(2032, 20304, 'twenty thousand three hundred four'); INSERT INTO t3 VALUES(2033, 1572, 'one thousand five hundred seventy-two'); INSERT INTO t3 VALUES(2034, 17955, 'seventeen thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(2035, 49827, 'forty-nine thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(2036, 61984, 'sixty-one thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(2037, 56316, 'fifty-six thousand three hundred sixteen'); INSERT INTO t3 VALUES(2038, 26547, 'twenty-six thousand five hundred forty-seven'); INSERT INTO t3 VALUES(2039, 47448, 'forty-seven thousand four hundred forty-eight'); INSERT INTO t3 VALUES(2040, 56793, 'fifty-six thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(2041, 47578, 'forty-seven thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(2042, 70665, 'seventy thousand six hundred sixty-five'); INSERT INTO t3 VALUES(2043, 7051, 'seven thousand fifty-one'); INSERT INTO t3 VALUES(2044, 26887, 'twenty-six thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(2045, 71921, 'seventy-one thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(2046, 69606, 'sixty-nine thousand six hundred six'); INSERT INTO t3 VALUES(2047, 81647, 'eighty-one thousand six hundred forty-seven'); INSERT INTO t3 VALUES(2048, 44218, 'forty-four thousand two hundred eighteen'); INSERT INTO t3 VALUES(2049, 85354, 'eighty-five thousand three hundred fifty-four'); INSERT INTO t3 VALUES(2050, 8849, 'eight thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(2051, 84181, 'eighty-four thousand one hundred eighty-one'); INSERT INTO t3 VALUES(2052, 32708, 'thirty-two thousand seven hundred eight'); INSERT INTO t3 VALUES(2053, 68880, 'sixty-eight thousand eight hundred eighty'); INSERT INTO t3 VALUES(2054, 75721, 'seventy-five thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(2055, 29936, 'twenty-nine thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(2056, 89236, 'eighty-nine thousand two hundred thirty-six'); INSERT INTO t3 VALUES(2057, 91416, 'ninety-one thousand four hundred sixteen'); INSERT INTO t3 VALUES(2058, 63884, 'sixty-three thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(2059, 33238, 'thirty-three thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(2060, 74676, 'seventy-four thousand six hundred seventy-six'); INSERT INTO t3 VALUES(2061, 72246, 'seventy-two thousand two hundred forty-six'); INSERT INTO t3 VALUES(2062, 69954, 'sixty-nine thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(2063, 23336, 'twenty-three thousand three hundred thirty-six'); INSERT INTO t3 VALUES(2064, 35017, 'thirty-five thousand seventeen'); INSERT INTO t3 VALUES(2065, 86820, 'eighty-six thousand eight hundred twenty'); INSERT INTO t3 VALUES(2066, 17954, 'seventeen thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(2067, 35069, 'thirty-five thousand sixty-nine'); INSERT INTO t3 VALUES(2068, 44963, 'forty-four thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(2069, 16622, 'sixteen thousand six hundred twenty-two'); INSERT INTO t3 VALUES(2070, 77447, 'seventy-seven thousand four hundred forty-seven'); INSERT INTO t3 VALUES(2071, 4786, 'four thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(2072, 77713, 'seventy-seven thousand seven hundred thirteen'); INSERT INTO t3 VALUES(2073, 80044, 'eighty thousand forty-four'); INSERT INTO t3 VALUES(2074, 84960, 'eighty-four thousand nine hundred sixty'); INSERT INTO t3 VALUES(2075, 75412, 'seventy-five thousand four hundred twelve'); INSERT INTO t3 VALUES(2076, 32987, 'thirty-two thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(2077, 27500, 'twenty-seven thousand five hundred'); INSERT INTO t3 VALUES(2078, 69099, 'sixty-nine thousand ninety-nine'); INSERT INTO t3 VALUES(2079, 95854, 'ninety-five thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(2080, 60201, 'sixty thousand two hundred one'); INSERT INTO t3 VALUES(2081, 18459, 'eighteen thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(2082, 35972, 'thirty-five thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(2083, 74050, 'seventy-four thousand fifty'); INSERT INTO t3 VALUES(2084, 19799, 'nineteen thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(2085, 95778, 'ninety-five thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(2086, 62066, 'sixty-two thousand sixty-six'); INSERT INTO t3 VALUES(2087, 61196, 'sixty-one thousand one hundred ninety-six'); INSERT INTO t3 VALUES(2088, 58432, 'fifty-eight thousand four hundred thirty-two'); INSERT INTO t3 VALUES(2089, 97946, 'ninety-seven thousand nine hundred forty-six'); INSERT INTO t3 VALUES(2090, 12406, 'twelve thousand four hundred six'); INSERT INTO t3 VALUES(2091, 68826, 'sixty-eight thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(2092, 88084, 'eighty-eight thousand eighty-four'); INSERT INTO t3 VALUES(2093, 53313, 'fifty-three thousand three hundred thirteen'); INSERT INTO t3 VALUES(2094, 61535, 'sixty-one thousand five hundred thirty-five'); INSERT INTO t3 VALUES(2095, 18262, 'eighteen thousand two hundred sixty-two'); INSERT INTO t3 VALUES(2096, 23242, 'twenty-three thousand two hundred forty-two'); INSERT INTO t3 VALUES(2097, 69693, 'sixty-nine thousand six hundred ninety-three'); INSERT INTO t3 VALUES(2098, 57613, 'fifty-seven thousand six hundred thirteen'); INSERT INTO t3 VALUES(2099, 93021, 'ninety-three thousand twenty-one'); INSERT INTO t3 VALUES(2100, 39809, 'thirty-nine thousand eight hundred nine'); INSERT INTO t3 VALUES(2101, 67259, 'sixty-seven thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(2102, 6215, 'six thousand two hundred fifteen'); INSERT INTO t3 VALUES(2103, 59291, 'fifty-nine thousand two hundred ninety-one'); INSERT INTO t3 VALUES(2104, 10985, 'ten thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(2105, 33289, 'thirty-three thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(2106, 82410, 'eighty-two thousand four hundred ten'); INSERT INTO t3 VALUES(2107, 24220, 'twenty-four thousand two hundred twenty'); INSERT INTO t3 VALUES(2108, 48165, 'forty-eight thousand one hundred sixty-five'); INSERT INTO t3 VALUES(2109, 82098, 'eighty-two thousand ninety-eight'); INSERT INTO t3 VALUES(2110, 94652, 'ninety-four thousand six hundred fifty-two'); INSERT INTO t3 VALUES(2111, 22610, 'twenty-two thousand six hundred ten'); INSERT INTO t3 VALUES(2112, 20576, 'twenty thousand five hundred seventy-six'); INSERT INTO t3 VALUES(2113, 66793, 'sixty-six thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(2114, 89310, 'eighty-nine thousand three hundred ten'); INSERT INTO t3 VALUES(2115, 68790, 'sixty-eight thousand seven hundred ninety'); INSERT INTO t3 VALUES(2116, 86133, 'eighty-six thousand one hundred thirty-three'); INSERT INTO t3 VALUES(2117, 31710, 'thirty-one thousand seven hundred ten'); INSERT INTO t3 VALUES(2118, 14160, 'fourteen thousand one hundred sixty'); INSERT INTO t3 VALUES(2119, 26244, 'twenty-six thousand two hundred forty-four'); INSERT INTO t3 VALUES(2120, 30473, 'thirty thousand four hundred seventy-three'); INSERT INTO t3 VALUES(2121, 26424, 'twenty-six thousand four hundred twenty-four'); INSERT INTO t3 VALUES(2122, 90055, 'ninety thousand fifty-five'); INSERT INTO t3 VALUES(2123, 85290, 'eighty-five thousand two hundred ninety'); INSERT INTO t3 VALUES(2124, 63577, 'sixty-three thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(2125, 73925, 'seventy-three thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(2126, 62904, 'sixty-two thousand nine hundred four'); INSERT INTO t3 VALUES(2127, 12256, 'twelve thousand two hundred fifty-six'); INSERT INTO t3 VALUES(2128, 35748, 'thirty-five thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(2129, 96591, 'ninety-six thousand five hundred ninety-one'); INSERT INTO t3 VALUES(2130, 33621, 'thirty-three thousand six hundred twenty-one'); INSERT INTO t3 VALUES(2131, 61369, 'sixty-one thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(2132, 20108, 'twenty thousand one hundred eight'); INSERT INTO t3 VALUES(2133, 47031, 'forty-seven thousand thirty-one'); INSERT INTO t3 VALUES(2134, 16205, 'sixteen thousand two hundred five'); INSERT INTO t3 VALUES(2135, 69777, 'sixty-nine thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(2136, 50091, 'fifty thousand ninety-one'); INSERT INTO t3 VALUES(2137, 87328, 'eighty-seven thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(2138, 75202, 'seventy-five thousand two hundred two'); INSERT INTO t3 VALUES(2139, 86031, 'eighty-six thousand thirty-one'); INSERT INTO t3 VALUES(2140, 83275, 'eighty-three thousand two hundred seventy-five'); INSERT INTO t3 VALUES(2141, 91163, 'ninety-one thousand one hundred sixty-three'); INSERT INTO t3 VALUES(2142, 29596, 'twenty-nine thousand five hundred ninety-six'); INSERT INTO t3 VALUES(2143, 80885, 'eighty thousand eight hundred eighty-five'); INSERT INTO t3 VALUES(2144, 7114, 'seven thousand one hundred fourteen'); INSERT INTO t3 VALUES(2145, 95311, 'ninety-five thousand three hundred eleven'); INSERT INTO t3 VALUES(2146, 41598, 'forty-one thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(2147, 15299, 'fifteen thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(2148, 68783, 'sixty-eight thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(2149, 77923, 'seventy-seven thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(2150, 84420, 'eighty-four thousand four hundred twenty'); INSERT INTO t3 VALUES(2151, 29543, 'twenty-nine thousand five hundred forty-three'); INSERT INTO t3 VALUES(2152, 61605, 'sixty-one thousand six hundred five'); INSERT INTO t3 VALUES(2153, 24259, 'twenty-four thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(2154, 26587, 'twenty-six thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(2155, 3750, 'three thousand seven hundred fifty'); INSERT INTO t3 VALUES(2156, 19736, 'nineteen thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(2157, 30736, 'thirty thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(2158, 90402, 'ninety thousand four hundred two'); INSERT INTO t3 VALUES(2159, 2620, 'two thousand six hundred twenty'); INSERT INTO t3 VALUES(2160, 88988, 'eighty-eight thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(2161, 36807, 'thirty-six thousand eight hundred seven'); INSERT INTO t3 VALUES(2162, 61988, 'sixty-one thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(2163, 84714, 'eighty-four thousand seven hundred fourteen'); INSERT INTO t3 VALUES(2164, 60150, 'sixty thousand one hundred fifty'); INSERT INTO t3 VALUES(2165, 10846, 'ten thousand eight hundred forty-six'); INSERT INTO t3 VALUES(2166, 60791, 'sixty thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(2167, 73750, 'seventy-three thousand seven hundred fifty'); INSERT INTO t3 VALUES(2168, 81970, 'eighty-one thousand nine hundred seventy'); INSERT INTO t3 VALUES(2169, 91144, 'ninety-one thousand one hundred forty-four'); INSERT INTO t3 VALUES(2170, 3387, 'three thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(2171, 5474, 'five thousand four hundred seventy-four'); INSERT INTO t3 VALUES(2172, 98118, 'ninety-eight thousand one hundred eighteen'); INSERT INTO t3 VALUES(2173, 1979, 'one thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(2174, 48815, 'forty-eight thousand eight hundred fifteen'); INSERT INTO t3 VALUES(2175, 65851, 'sixty-five thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(2176, 20554, 'twenty thousand five hundred fifty-four'); INSERT INTO t3 VALUES(2177, 74468, 'seventy-four thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(2178, 26877, 'twenty-six thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(2179, 8772, 'eight thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(2180, 14905, 'fourteen thousand nine hundred five'); INSERT INTO t3 VALUES(2181, 26261, 'twenty-six thousand two hundred sixty-one'); INSERT INTO t3 VALUES(2182, 81205, 'eighty-one thousand two hundred five'); INSERT INTO t3 VALUES(2183, 3169, 'three thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(2184, 60000, 'sixty thousand'); INSERT INTO t3 VALUES(2185, 36692, 'thirty-six thousand six hundred ninety-two'); INSERT INTO t3 VALUES(2186, 66844, 'sixty-six thousand eight hundred forty-four'); INSERT INTO t3 VALUES(2187, 84078, 'eighty-four thousand seventy-eight'); INSERT INTO t3 VALUES(2188, 70466, 'seventy thousand four hundred sixty-six'); INSERT INTO t3 VALUES(2189, 87040, 'eighty-seven thousand forty'); INSERT INTO t3 VALUES(2190, 36416, 'thirty-six thousand four hundred sixteen'); INSERT INTO t3 VALUES(2191, 37209, 'thirty-seven thousand two hundred nine'); INSERT INTO t3 VALUES(2192, 19563, 'nineteen thousand five hundred sixty-three'); INSERT INTO t3 VALUES(2193, 99620, 'ninety-nine thousand six hundred twenty'); INSERT INTO t3 VALUES(2194, 83710, 'eighty-three thousand seven hundred ten'); INSERT INTO t3 VALUES(2195, 17594, 'seventeen thousand five hundred ninety-four'); INSERT INTO t3 VALUES(2196, 48053, 'forty-eight thousand fifty-three'); INSERT INTO t3 VALUES(2197, 9309, 'nine thousand three hundred nine'); INSERT INTO t3 VALUES(2198, 87289, 'eighty-seven thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(2199, 38833, 'thirty-eight thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(2200, 54107, 'fifty-four thousand one hundred seven'); INSERT INTO t3 VALUES(2201, 33163, 'thirty-three thousand one hundred sixty-three'); INSERT INTO t3 VALUES(2202, 15512, 'fifteen thousand five hundred twelve'); INSERT INTO t3 VALUES(2203, 36025, 'thirty-six thousand twenty-five'); INSERT INTO t3 VALUES(2204, 68272, 'sixty-eight thousand two hundred seventy-two'); INSERT INTO t3 VALUES(2205, 96954, 'ninety-six thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(2206, 56025, 'fifty-six thousand twenty-five'); INSERT INTO t3 VALUES(2207, 72751, 'seventy-two thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(2208, 98035, 'ninety-eight thousand thirty-five'); INSERT INTO t3 VALUES(2209, 33551, 'thirty-three thousand five hundred fifty-one'); INSERT INTO t3 VALUES(2210, 8544, 'eight thousand five hundred forty-four'); INSERT INTO t3 VALUES(2211, 75038, 'seventy-five thousand thirty-eight'); INSERT INTO t3 VALUES(2212, 53059, 'fifty-three thousand fifty-nine'); INSERT INTO t3 VALUES(2213, 66618, 'sixty-six thousand six hundred eighteen'); INSERT INTO t3 VALUES(2214, 57733, 'fifty-seven thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(2215, 49471, 'forty-nine thousand four hundred seventy-one'); INSERT INTO t3 VALUES(2216, 41965, 'forty-one thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(2217, 12073, 'twelve thousand seventy-three'); INSERT INTO t3 VALUES(2218, 20417, 'twenty thousand four hundred seventeen'); INSERT INTO t3 VALUES(2219, 87203, 'eighty-seven thousand two hundred three'); INSERT INTO t3 VALUES(2220, 86819, 'eighty-six thousand eight hundred nineteen'); INSERT INTO t3 VALUES(2221, 93531, 'ninety-three thousand five hundred thirty-one'); INSERT INTO t3 VALUES(2222, 68156, 'sixty-eight thousand one hundred fifty-six'); INSERT INTO t3 VALUES(2223, 8306, 'eight thousand three hundred six'); INSERT INTO t3 VALUES(2224, 72081, 'seventy-two thousand eighty-one'); INSERT INTO t3 VALUES(2225, 96486, 'ninety-six thousand four hundred eighty-six'); INSERT INTO t3 VALUES(2226, 71337, 'seventy-one thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(2227, 55335, 'fifty-five thousand three hundred thirty-five'); INSERT INTO t3 VALUES(2228, 37346, 'thirty-seven thousand three hundred forty-six'); INSERT INTO t3 VALUES(2229, 15828, 'fifteen thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(2230, 47959, 'forty-seven thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(2231, 77454, 'seventy-seven thousand four hundred fifty-four'); INSERT INTO t3 VALUES(2232, 29837, 'twenty-nine thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(2233, 93078, 'ninety-three thousand seventy-eight'); INSERT INTO t3 VALUES(2234, 4704, 'four thousand seven hundred four'); INSERT INTO t3 VALUES(2235, 47966, 'forty-seven thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(2236, 27502, 'twenty-seven thousand five hundred two'); INSERT INTO t3 VALUES(2237, 27683, 'twenty-seven thousand six hundred eighty-three'); INSERT INTO t3 VALUES(2238, 89607, 'eighty-nine thousand six hundred seven'); INSERT INTO t3 VALUES(2239, 92749, 'ninety-two thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(2240, 11907, 'eleven thousand nine hundred seven'); INSERT INTO t3 VALUES(2241, 6074, 'six thousand seventy-four'); INSERT INTO t3 VALUES(2242, 30711, 'thirty thousand seven hundred eleven'); INSERT INTO t3 VALUES(2243, 61014, 'sixty-one thousand fourteen'); INSERT INTO t3 VALUES(2244, 79255, 'seventy-nine thousand two hundred fifty-five'); INSERT INTO t3 VALUES(2245, 71286, 'seventy-one thousand two hundred eighty-six'); INSERT INTO t3 VALUES(2246, 60934, 'sixty thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(2247, 69311, 'sixty-nine thousand three hundred eleven'); INSERT INTO t3 VALUES(2248, 86131, 'eighty-six thousand one hundred thirty-one'); INSERT INTO t3 VALUES(2249, 25307, 'twenty-five thousand three hundred seven'); INSERT INTO t3 VALUES(2250, 72456, 'seventy-two thousand four hundred fifty-six'); INSERT INTO t3 VALUES(2251, 45054, 'forty-five thousand fifty-four'); INSERT INTO t3 VALUES(2252, 50350, 'fifty thousand three hundred fifty'); INSERT INTO t3 VALUES(2253, 38134, 'thirty-eight thousand one hundred thirty-four'); INSERT INTO t3 VALUES(2254, 65253, 'sixty-five thousand two hundred fifty-three'); INSERT INTO t3 VALUES(2255, 23208, 'twenty-three thousand two hundred eight'); INSERT INTO t3 VALUES(2256, 15835, 'fifteen thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(2257, 27997, 'twenty-seven thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(2258, 21168, 'twenty-one thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(2259, 6740, 'six thousand seven hundred forty'); INSERT INTO t3 VALUES(2260, 89734, 'eighty-nine thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(2261, 62215, 'sixty-two thousand two hundred fifteen'); INSERT INTO t3 VALUES(2262, 92196, 'ninety-two thousand one hundred ninety-six'); INSERT INTO t3 VALUES(2263, 96590, 'ninety-six thousand five hundred ninety'); INSERT INTO t3 VALUES(2264, 35844, 'thirty-five thousand eight hundred forty-four'); INSERT INTO t3 VALUES(2265, 0, 'zero'); INSERT INTO t3 VALUES(2266, 88210, 'eighty-eight thousand two hundred ten'); INSERT INTO t3 VALUES(2267, 12229, 'twelve thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(2268, 4044, 'four thousand forty-four'); INSERT INTO t3 VALUES(2269, 57305, 'fifty-seven thousand three hundred five'); INSERT INTO t3 VALUES(2270, 60151, 'sixty thousand one hundred fifty-one'); INSERT INTO t3 VALUES(2271, 87982, 'eighty-seven thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(2272, 82274, 'eighty-two thousand two hundred seventy-four'); INSERT INTO t3 VALUES(2273, 25777, 'twenty-five thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(2274, 48417, 'forty-eight thousand four hundred seventeen'); INSERT INTO t3 VALUES(2275, 91581, 'ninety-one thousand five hundred eighty-one'); INSERT INTO t3 VALUES(2276, 89561, 'eighty-nine thousand five hundred sixty-one'); INSERT INTO t3 VALUES(2277, 98447, 'ninety-eight thousand four hundred forty-seven'); INSERT INTO t3 VALUES(2278, 94677, 'ninety-four thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(2279, 87830, 'eighty-seven thousand eight hundred thirty'); INSERT INTO t3 VALUES(2280, 32972, 'thirty-two thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(2281, 89701, 'eighty-nine thousand seven hundred one'); INSERT INTO t3 VALUES(2282, 16398, 'sixteen thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(2283, 97877, 'ninety-seven thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(2284, 88436, 'eighty-eight thousand four hundred thirty-six'); INSERT INTO t3 VALUES(2285, 12266, 'twelve thousand two hundred sixty-six'); INSERT INTO t3 VALUES(2286, 48915, 'forty-eight thousand nine hundred fifteen'); INSERT INTO t3 VALUES(2287, 26226, 'twenty-six thousand two hundred twenty-six'); INSERT INTO t3 VALUES(2288, 74341, 'seventy-four thousand three hundred forty-one'); INSERT INTO t3 VALUES(2289, 13094, 'thirteen thousand ninety-four'); INSERT INTO t3 VALUES(2290, 4047, 'four thousand forty-seven'); INSERT INTO t3 VALUES(2291, 77945, 'seventy-seven thousand nine hundred forty-five'); INSERT INTO t3 VALUES(2292, 56908, 'fifty-six thousand nine hundred eight'); INSERT INTO t3 VALUES(2293, 7946, 'seven thousand nine hundred forty-six'); INSERT INTO t3 VALUES(2294, 64802, 'sixty-four thousand eight hundred two'); INSERT INTO t3 VALUES(2295, 27687, 'twenty-seven thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(2296, 10869, 'ten thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(2297, 74280, 'seventy-four thousand two hundred eighty'); INSERT INTO t3 VALUES(2298, 44015, 'forty-four thousand fifteen'); INSERT INTO t3 VALUES(2299, 96226, 'ninety-six thousand two hundred twenty-six'); INSERT INTO t3 VALUES(2300, 84163, 'eighty-four thousand one hundred sixty-three'); INSERT INTO t3 VALUES(2301, 86187, 'eighty-six thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(2302, 75480, 'seventy-five thousand four hundred eighty'); INSERT INTO t3 VALUES(2303, 47697, 'forty-seven thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(2304, 83305, 'eighty-three thousand three hundred five'); INSERT INTO t3 VALUES(2305, 97239, 'ninety-seven thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(2306, 7950, 'seven thousand nine hundred fifty'); INSERT INTO t3 VALUES(2307, 22901, 'twenty-two thousand nine hundred one'); INSERT INTO t3 VALUES(2308, 79988, 'seventy-nine thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(2309, 27934, 'twenty-seven thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(2310, 25620, 'twenty-five thousand six hundred twenty'); INSERT INTO t3 VALUES(2311, 81565, 'eighty-one thousand five hundred sixty-five'); INSERT INTO t3 VALUES(2312, 77671, 'seventy-seven thousand six hundred seventy-one'); INSERT INTO t3 VALUES(2313, 49585, 'forty-nine thousand five hundred eighty-five'); INSERT INTO t3 VALUES(2314, 47771, 'forty-seven thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(2315, 10113, 'ten thousand one hundred thirteen'); INSERT INTO t3 VALUES(2316, 58491, 'fifty-eight thousand four hundred ninety-one'); INSERT INTO t3 VALUES(2317, 98064, 'ninety-eight thousand sixty-four'); INSERT INTO t3 VALUES(2318, 17766, 'seventeen thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(2319, 37223, 'thirty-seven thousand two hundred twenty-three'); INSERT INTO t3 VALUES(2320, 36656, 'thirty-six thousand six hundred fifty-six'); INSERT INTO t3 VALUES(2321, 9340, 'nine thousand three hundred forty'); INSERT INTO t3 VALUES(2322, 20908, 'twenty thousand nine hundred eight'); INSERT INTO t3 VALUES(2323, 51631, 'fifty-one thousand six hundred thirty-one'); INSERT INTO t3 VALUES(2324, 10204, 'ten thousand two hundred four'); INSERT INTO t3 VALUES(2325, 95060, 'ninety-five thousand sixty'); INSERT INTO t3 VALUES(2326, 71757, 'seventy-one thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(2327, 46087, 'forty-six thousand eighty-seven'); INSERT INTO t3 VALUES(2328, 45770, 'forty-five thousand seven hundred seventy'); INSERT INTO t3 VALUES(2329, 66703, 'sixty-six thousand seven hundred three'); INSERT INTO t3 VALUES(2330, 65978, 'sixty-five thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(2331, 9302, 'nine thousand three hundred two'); INSERT INTO t3 VALUES(2332, 21573, 'twenty-one thousand five hundred seventy-three'); INSERT INTO t3 VALUES(2333, 3821, 'three thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(2334, 5260, 'five thousand two hundred sixty'); INSERT INTO t3 VALUES(2335, 67314, 'sixty-seven thousand three hundred fourteen'); INSERT INTO t3 VALUES(2336, 44719, 'forty-four thousand seven hundred nineteen'); INSERT INTO t3 VALUES(2337, 78552, 'seventy-eight thousand five hundred fifty-two'); INSERT INTO t3 VALUES(2338, 37670, 'thirty-seven thousand six hundred seventy'); INSERT INTO t3 VALUES(2339, 65650, 'sixty-five thousand six hundred fifty'); INSERT INTO t3 VALUES(2340, 69105, 'sixty-nine thousand one hundred five'); INSERT INTO t3 VALUES(2341, 58762, 'fifty-eight thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(2342, 88042, 'eighty-eight thousand forty-two'); INSERT INTO t3 VALUES(2343, 25627, 'twenty-five thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(2344, 60636, 'sixty thousand six hundred thirty-six'); INSERT INTO t3 VALUES(2345, 78849, 'seventy-eight thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(2346, 24665, 'twenty-four thousand six hundred sixty-five'); INSERT INTO t3 VALUES(2347, 84106, 'eighty-four thousand one hundred six'); INSERT INTO t3 VALUES(2348, 5037, 'five thousand thirty-seven'); INSERT INTO t3 VALUES(2349, 22737, 'twenty-two thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(2350, 42380, 'forty-two thousand three hundred eighty'); INSERT INTO t3 VALUES(2351, 66356, 'sixty-six thousand three hundred fifty-six'); INSERT INTO t3 VALUES(2352, 80186, 'eighty thousand one hundred eighty-six'); INSERT INTO t3 VALUES(2353, 79687, 'seventy-nine thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(2354, 23996, 'twenty-three thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(2355, 35446, 'thirty-five thousand four hundred forty-six'); INSERT INTO t3 VALUES(2356, 81372, 'eighty-one thousand three hundred seventy-two'); INSERT INTO t3 VALUES(2357, 70867, 'seventy thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(2358, 54517, 'fifty-four thousand five hundred seventeen'); INSERT INTO t3 VALUES(2359, 74460, 'seventy-four thousand four hundred sixty'); INSERT INTO t3 VALUES(2360, 44116, 'forty-four thousand one hundred sixteen'); INSERT INTO t3 VALUES(2361, 6833, 'six thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(2362, 90428, 'ninety thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(2363, 47466, 'forty-seven thousand four hundred sixty-six'); INSERT INTO t3 VALUES(2364, 2992, 'two thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(2365, 47872, 'forty-seven thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(2366, 38438, 'thirty-eight thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(2367, 8818, 'eight thousand eight hundred eighteen'); INSERT INTO t3 VALUES(2368, 50516, 'fifty thousand five hundred sixteen'); INSERT INTO t3 VALUES(2369, 90572, 'ninety thousand five hundred seventy-two'); INSERT INTO t3 VALUES(2370, 63342, 'sixty-three thousand three hundred forty-two'); INSERT INTO t3 VALUES(2371, 35210, 'thirty-five thousand two hundred ten'); INSERT INTO t3 VALUES(2372, 37579, 'thirty-seven thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(2373, 32524, 'thirty-two thousand five hundred twenty-four'); INSERT INTO t3 VALUES(2374, 34698, 'thirty-four thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(2375, 3342, 'three thousand three hundred forty-two'); INSERT INTO t3 VALUES(2376, 41340, 'forty-one thousand three hundred forty'); INSERT INTO t3 VALUES(2377, 22400, 'twenty-two thousand four hundred'); INSERT INTO t3 VALUES(2378, 10603, 'ten thousand six hundred three'); INSERT INTO t3 VALUES(2379, 18792, 'eighteen thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(2380, 69656, 'sixty-nine thousand six hundred fifty-six'); INSERT INTO t3 VALUES(2381, 1537, 'one thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(2382, 65375, 'sixty-five thousand three hundred seventy-five'); INSERT INTO t3 VALUES(2383, 68829, 'sixty-eight thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(2384, 76719, 'seventy-six thousand seven hundred nineteen'); INSERT INTO t3 VALUES(2385, 45387, 'forty-five thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(2386, 55655, 'fifty-five thousand six hundred fifty-five'); INSERT INTO t3 VALUES(2387, 3400, 'three thousand four hundred'); INSERT INTO t3 VALUES(2388, 2563, 'two thousand five hundred sixty-three'); INSERT INTO t3 VALUES(2389, 52934, 'fifty-two thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(2390, 18900, 'eighteen thousand nine hundred'); INSERT INTO t3 VALUES(2391, 57718, 'fifty-seven thousand seven hundred eighteen'); INSERT INTO t3 VALUES(2392, 25010, 'twenty-five thousand ten'); INSERT INTO t3 VALUES(2393, 42145, 'forty-two thousand one hundred forty-five'); INSERT INTO t3 VALUES(2394, 70177, 'seventy thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(2395, 43561, 'forty-three thousand five hundred sixty-one'); INSERT INTO t3 VALUES(2396, 50772, 'fifty thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(2397, 75624, 'seventy-five thousand six hundred twenty-four'); INSERT INTO t3 VALUES(2398, 19708, 'nineteen thousand seven hundred eight'); INSERT INTO t3 VALUES(2399, 39121, 'thirty-nine thousand one hundred twenty-one'); INSERT INTO t3 VALUES(2400, 7490, 'seven thousand four hundred ninety'); INSERT INTO t3 VALUES(2401, 93965, 'ninety-three thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(2402, 30359, 'thirty thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(2403, 83205, 'eighty-three thousand two hundred five'); INSERT INTO t3 VALUES(2404, 63964, 'sixty-three thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(2405, 63427, 'sixty-three thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(2406, 85035, 'eighty-five thousand thirty-five'); INSERT INTO t3 VALUES(2407, 76974, 'seventy-six thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(2408, 84544, 'eighty-four thousand five hundred forty-four'); INSERT INTO t3 VALUES(2409, 22880, 'twenty-two thousand eight hundred eighty'); INSERT INTO t3 VALUES(2410, 32394, 'thirty-two thousand three hundred ninety-four'); INSERT INTO t3 VALUES(2411, 4397, 'four thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(2412, 58250, 'fifty-eight thousand two hundred fifty'); INSERT INTO t3 VALUES(2413, 11423, 'eleven thousand four hundred twenty-three'); INSERT INTO t3 VALUES(2414, 3384, 'three thousand three hundred eighty-four'); INSERT INTO t3 VALUES(2415, 4653, 'four thousand six hundred fifty-three'); INSERT INTO t3 VALUES(2416, 95751, 'ninety-five thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(2417, 78350, 'seventy-eight thousand three hundred fifty'); INSERT INTO t3 VALUES(2418, 57494, 'fifty-seven thousand four hundred ninety-four'); INSERT INTO t3 VALUES(2419, 16605, 'sixteen thousand six hundred five'); INSERT INTO t3 VALUES(2420, 52211, 'fifty-two thousand two hundred eleven'); INSERT INTO t3 VALUES(2421, 24109, 'twenty-four thousand one hundred nine'); INSERT INTO t3 VALUES(2422, 73016, 'seventy-three thousand sixteen'); INSERT INTO t3 VALUES(2423, 99809, 'ninety-nine thousand eight hundred nine'); INSERT INTO t3 VALUES(2424, 57522, 'fifty-seven thousand five hundred twenty-two'); INSERT INTO t3 VALUES(2425, 66662, 'sixty-six thousand six hundred sixty-two'); INSERT INTO t3 VALUES(2426, 72539, 'seventy-two thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(2427, 49871, 'forty-nine thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(2428, 67148, 'sixty-seven thousand one hundred forty-eight'); INSERT INTO t3 VALUES(2429, 20157, 'twenty thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(2430, 88979, 'eighty-eight thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(2431, 11450, 'eleven thousand four hundred fifty'); INSERT INTO t3 VALUES(2432, 34394, 'thirty-four thousand three hundred ninety-four'); INSERT INTO t3 VALUES(2433, 34837, 'thirty-four thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(2434, 96687, 'ninety-six thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(2435, 25169, 'twenty-five thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(2436, 27018, 'twenty-seven thousand eighteen'); INSERT INTO t3 VALUES(2437, 13348, 'thirteen thousand three hundred forty-eight'); INSERT INTO t3 VALUES(2438, 72334, 'seventy-two thousand three hundred thirty-four'); INSERT INTO t3 VALUES(2439, 53396, 'fifty-three thousand three hundred ninety-six'); INSERT INTO t3 VALUES(2440, 91877, 'ninety-one thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(2441, 49119, 'forty-nine thousand one hundred nineteen'); INSERT INTO t3 VALUES(2442, 87228, 'eighty-seven thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(2443, 63236, 'sixty-three thousand two hundred thirty-six'); INSERT INTO t3 VALUES(2444, 92588, 'ninety-two thousand five hundred eighty-eight'); INSERT INTO t3 VALUES(2445, 26333, 'twenty-six thousand three hundred thirty-three'); INSERT INTO t3 VALUES(2446, 25720, 'twenty-five thousand seven hundred twenty'); INSERT INTO t3 VALUES(2447, 9825, 'nine thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(2448, 36830, 'thirty-six thousand eight hundred thirty'); INSERT INTO t3 VALUES(2449, 75312, 'seventy-five thousand three hundred twelve'); INSERT INTO t3 VALUES(2450, 8093, 'eight thousand ninety-three'); INSERT INTO t3 VALUES(2451, 99357, 'ninety-nine thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(2452, 59573, 'fifty-nine thousand five hundred seventy-three'); INSERT INTO t3 VALUES(2453, 65022, 'sixty-five thousand twenty-two'); INSERT INTO t3 VALUES(2454, 13828, 'thirteen thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(2455, 3673, 'three thousand six hundred seventy-three'); INSERT INTO t3 VALUES(2456, 87125, 'eighty-seven thousand one hundred twenty-five'); INSERT INTO t3 VALUES(2457, 60795, 'sixty thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(2458, 15605, 'fifteen thousand six hundred five'); INSERT INTO t3 VALUES(2459, 80770, 'eighty thousand seven hundred seventy'); INSERT INTO t3 VALUES(2460, 83596, 'eighty-three thousand five hundred ninety-six'); INSERT INTO t3 VALUES(2461, 92525, 'ninety-two thousand five hundred twenty-five'); INSERT INTO t3 VALUES(2462, 63263, 'sixty-three thousand two hundred sixty-three'); INSERT INTO t3 VALUES(2463, 97131, 'ninety-seven thousand one hundred thirty-one'); INSERT INTO t3 VALUES(2464, 35456, 'thirty-five thousand four hundred fifty-six'); INSERT INTO t3 VALUES(2465, 64523, 'sixty-four thousand five hundred twenty-three'); INSERT INTO t3 VALUES(2466, 72571, 'seventy-two thousand five hundred seventy-one'); INSERT INTO t3 VALUES(2467, 54026, 'fifty-four thousand twenty-six'); INSERT INTO t3 VALUES(2468, 61926, 'sixty-one thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(2469, 62152, 'sixty-two thousand one hundred fifty-two'); INSERT INTO t3 VALUES(2470, 80596, 'eighty thousand five hundred ninety-six'); INSERT INTO t3 VALUES(2471, 89606, 'eighty-nine thousand six hundred six'); INSERT INTO t3 VALUES(2472, 72678, 'seventy-two thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(2473, 71118, 'seventy-one thousand one hundred eighteen'); INSERT INTO t3 VALUES(2474, 28079, 'twenty-eight thousand seventy-nine'); INSERT INTO t3 VALUES(2475, 95003, 'ninety-five thousand three'); INSERT INTO t3 VALUES(2476, 42831, 'forty-two thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(2477, 98044, 'ninety-eight thousand forty-four'); INSERT INTO t3 VALUES(2478, 3162, 'three thousand one hundred sixty-two'); INSERT INTO t3 VALUES(2479, 10492, 'ten thousand four hundred ninety-two'); INSERT INTO t3 VALUES(2480, 87908, 'eighty-seven thousand nine hundred eight'); INSERT INTO t3 VALUES(2481, 53349, 'fifty-three thousand three hundred forty-nine'); INSERT INTO t3 VALUES(2482, 68224, 'sixty-eight thousand two hundred twenty-four'); INSERT INTO t3 VALUES(2483, 37751, 'thirty-seven thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(2484, 18702, 'eighteen thousand seven hundred two'); INSERT INTO t3 VALUES(2485, 45334, 'forty-five thousand three hundred thirty-four'); INSERT INTO t3 VALUES(2486, 24824, 'twenty-four thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(2487, 45140, 'forty-five thousand one hundred forty'); INSERT INTO t3 VALUES(2488, 71423, 'seventy-one thousand four hundred twenty-three'); INSERT INTO t3 VALUES(2489, 52624, 'fifty-two thousand six hundred twenty-four'); INSERT INTO t3 VALUES(2490, 35072, 'thirty-five thousand seventy-two'); INSERT INTO t3 VALUES(2491, 22552, 'twenty-two thousand five hundred fifty-two'); INSERT INTO t3 VALUES(2492, 42079, 'forty-two thousand seventy-nine'); INSERT INTO t3 VALUES(2493, 59778, 'fifty-nine thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(2494, 67390, 'sixty-seven thousand three hundred ninety'); INSERT INTO t3 VALUES(2495, 30808, 'thirty thousand eight hundred eight'); INSERT INTO t3 VALUES(2496, 49898, 'forty-nine thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(2497, 26281, 'twenty-six thousand two hundred eighty-one'); INSERT INTO t3 VALUES(2498, 68377, 'sixty-eight thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(2499, 86484, 'eighty-six thousand four hundred eighty-four'); INSERT INTO t3 VALUES(2500, 68605, 'sixty-eight thousand six hundred five'); INSERT INTO t3 VALUES(2501, 97418, 'ninety-seven thousand four hundred eighteen'); INSERT INTO t3 VALUES(2502, 13303, 'thirteen thousand three hundred three'); INSERT INTO t3 VALUES(2503, 11002, 'eleven thousand two'); INSERT INTO t3 VALUES(2504, 8381, 'eight thousand three hundred eighty-one'); INSERT INTO t3 VALUES(2505, 55441, 'fifty-five thousand four hundred forty-one'); INSERT INTO t3 VALUES(2506, 74873, 'seventy-four thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(2507, 62879, 'sixty-two thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(2508, 63232, 'sixty-three thousand two hundred thirty-two'); INSERT INTO t3 VALUES(2509, 1313, 'one thousand three hundred thirteen'); INSERT INTO t3 VALUES(2510, 8467, 'eight thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(2511, 78551, 'seventy-eight thousand five hundred fifty-one'); INSERT INTO t3 VALUES(2512, 80986, 'eighty thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(2513, 63983, 'sixty-three thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(2514, 67781, 'sixty-seven thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(2515, 55836, 'fifty-five thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(2516, 48712, 'forty-eight thousand seven hundred twelve'); INSERT INTO t3 VALUES(2517, 86037, 'eighty-six thousand thirty-seven'); INSERT INTO t3 VALUES(2518, 88278, 'eighty-eight thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(2519, 28253, 'twenty-eight thousand two hundred fifty-three'); INSERT INTO t3 VALUES(2520, 40539, 'forty thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(2521, 41034, 'forty-one thousand thirty-four'); INSERT INTO t3 VALUES(2522, 74231, 'seventy-four thousand two hundred thirty-one'); INSERT INTO t3 VALUES(2523, 69400, 'sixty-nine thousand four hundred'); INSERT INTO t3 VALUES(2524, 82757, 'eighty-two thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(2525, 10172, 'ten thousand one hundred seventy-two'); INSERT INTO t3 VALUES(2526, 61081, 'sixty-one thousand eighty-one'); INSERT INTO t3 VALUES(2527, 35435, 'thirty-five thousand four hundred thirty-five'); INSERT INTO t3 VALUES(2528, 65370, 'sixty-five thousand three hundred seventy'); INSERT INTO t3 VALUES(2529, 65570, 'sixty-five thousand five hundred seventy'); INSERT INTO t3 VALUES(2530, 9468, 'nine thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(2531, 30798, 'thirty thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(2532, 3973, 'three thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(2533, 98690, 'ninety-eight thousand six hundred ninety'); INSERT INTO t3 VALUES(2534, 42091, 'forty-two thousand ninety-one'); INSERT INTO t3 VALUES(2535, 93808, 'ninety-three thousand eight hundred eight'); INSERT INTO t3 VALUES(2536, 34476, 'thirty-four thousand four hundred seventy-six'); INSERT INTO t3 VALUES(2537, 94435, 'ninety-four thousand four hundred thirty-five'); INSERT INTO t3 VALUES(2538, 65549, 'sixty-five thousand five hundred forty-nine'); INSERT INTO t3 VALUES(2539, 17697, 'seventeen thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(2540, 89480, 'eighty-nine thousand four hundred eighty'); INSERT INTO t3 VALUES(2541, 48800, 'forty-eight thousand eight hundred'); INSERT INTO t3 VALUES(2542, 39972, 'thirty-nine thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(2543, 30739, 'thirty thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(2544, 69585, 'sixty-nine thousand five hundred eighty-five'); INSERT INTO t3 VALUES(2545, 78525, 'seventy-eight thousand five hundred twenty-five'); INSERT INTO t3 VALUES(2546, 93131, 'ninety-three thousand one hundred thirty-one'); INSERT INTO t3 VALUES(2547, 50469, 'fifty thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(2548, 54221, 'fifty-four thousand two hundred twenty-one'); INSERT INTO t3 VALUES(2549, 47721, 'forty-seven thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(2550, 44819, 'forty-four thousand eight hundred nineteen'); INSERT INTO t3 VALUES(2551, 66606, 'sixty-six thousand six hundred six'); INSERT INTO t3 VALUES(2552, 21323, 'twenty-one thousand three hundred twenty-three'); INSERT INTO t3 VALUES(2553, 80810, 'eighty thousand eight hundred ten'); INSERT INTO t3 VALUES(2554, 49582, 'forty-nine thousand five hundred eighty-two'); INSERT INTO t3 VALUES(2555, 89194, 'eighty-nine thousand one hundred ninety-four'); INSERT INTO t3 VALUES(2556, 33832, 'thirty-three thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(2557, 42125, 'forty-two thousand one hundred twenty-five'); INSERT INTO t3 VALUES(2558, 98532, 'ninety-eight thousand five hundred thirty-two'); INSERT INTO t3 VALUES(2559, 16766, 'sixteen thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(2560, 42094, 'forty-two thousand ninety-four'); INSERT INTO t3 VALUES(2561, 18849, 'eighteen thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(2562, 51779, 'fifty-one thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(2563, 57940, 'fifty-seven thousand nine hundred forty'); INSERT INTO t3 VALUES(2564, 53670, 'fifty-three thousand six hundred seventy'); INSERT INTO t3 VALUES(2565, 64193, 'sixty-four thousand one hundred ninety-three'); INSERT INTO t3 VALUES(2566, 7027, 'seven thousand twenty-seven'); INSERT INTO t3 VALUES(2567, 12283, 'twelve thousand two hundred eighty-three'); INSERT INTO t3 VALUES(2568, 21365, 'twenty-one thousand three hundred sixty-five'); INSERT INTO t3 VALUES(2569, 69557, 'sixty-nine thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(2570, 1114, 'one thousand one hundred fourteen'); INSERT INTO t3 VALUES(2571, 26469, 'twenty-six thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(2572, 80281, 'eighty thousand two hundred eighty-one'); INSERT INTO t3 VALUES(2573, 56680, 'fifty-six thousand six hundred eighty'); INSERT INTO t3 VALUES(2574, 33364, 'thirty-three thousand three hundred sixty-four'); INSERT INTO t3 VALUES(2575, 51200, 'fifty-one thousand two hundred'); INSERT INTO t3 VALUES(2576, 87117, 'eighty-seven thousand one hundred seventeen'); INSERT INTO t3 VALUES(2577, 67931, 'sixty-seven thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(2578, 95004, 'ninety-five thousand four'); INSERT INTO t3 VALUES(2579, 77494, 'seventy-seven thousand four hundred ninety-four'); INSERT INTO t3 VALUES(2580, 16408, 'sixteen thousand four hundred eight'); INSERT INTO t3 VALUES(2581, 93608, 'ninety-three thousand six hundred eight'); INSERT INTO t3 VALUES(2582, 53734, 'fifty-three thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(2583, 9750, 'nine thousand seven hundred fifty'); INSERT INTO t3 VALUES(2584, 15555, 'fifteen thousand five hundred fifty-five'); INSERT INTO t3 VALUES(2585, 40888, 'forty thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(2586, 21758, 'twenty-one thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(2587, 36876, 'thirty-six thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(2588, 71094, 'seventy-one thousand ninety-four'); INSERT INTO t3 VALUES(2589, 71363, 'seventy-one thousand three hundred sixty-three'); INSERT INTO t3 VALUES(2590, 24553, 'twenty-four thousand five hundred fifty-three'); INSERT INTO t3 VALUES(2591, 73931, 'seventy-three thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(2592, 15314, 'fifteen thousand three hundred fourteen'); INSERT INTO t3 VALUES(2593, 97503, 'ninety-seven thousand five hundred three'); INSERT INTO t3 VALUES(2594, 25189, 'twenty-five thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(2595, 8199, 'eight thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(2596, 68451, 'sixty-eight thousand four hundred fifty-one'); INSERT INTO t3 VALUES(2597, 70192, 'seventy thousand one hundred ninety-two'); INSERT INTO t3 VALUES(2598, 46664, 'forty-six thousand six hundred sixty-four'); INSERT INTO t3 VALUES(2599, 42059, 'forty-two thousand fifty-nine'); INSERT INTO t3 VALUES(2600, 45616, 'forty-five thousand six hundred sixteen'); INSERT INTO t3 VALUES(2601, 5874, 'five thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(2602, 15960, 'fifteen thousand nine hundred sixty'); INSERT INTO t3 VALUES(2603, 34898, 'thirty-four thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(2604, 55412, 'fifty-five thousand four hundred twelve'); INSERT INTO t3 VALUES(2605, 6590, 'six thousand five hundred ninety'); INSERT INTO t3 VALUES(2606, 45220, 'forty-five thousand two hundred twenty'); INSERT INTO t3 VALUES(2607, 29499, 'twenty-nine thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(2608, 51342, 'fifty-one thousand three hundred forty-two'); INSERT INTO t3 VALUES(2609, 8705, 'eight thousand seven hundred five'); INSERT INTO t3 VALUES(2610, 45853, 'forty-five thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(2611, 35279, 'thirty-five thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(2612, 62318, 'sixty-two thousand three hundred eighteen'); INSERT INTO t3 VALUES(2613, 66736, 'sixty-six thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(2614, 45988, 'forty-five thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(2615, 94586, 'ninety-four thousand five hundred eighty-six'); INSERT INTO t3 VALUES(2616, 21116, 'twenty-one thousand one hundred sixteen'); INSERT INTO t3 VALUES(2617, 1804, 'one thousand eight hundred four'); INSERT INTO t3 VALUES(2618, 24905, 'twenty-four thousand nine hundred five'); INSERT INTO t3 VALUES(2619, 88957, 'eighty-eight thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(2620, 58175, 'fifty-eight thousand one hundred seventy-five'); INSERT INTO t3 VALUES(2621, 85473, 'eighty-five thousand four hundred seventy-three'); INSERT INTO t3 VALUES(2622, 74166, 'seventy-four thousand one hundred sixty-six'); INSERT INTO t3 VALUES(2623, 74461, 'seventy-four thousand four hundred sixty-one'); INSERT INTO t3 VALUES(2624, 40501, 'forty thousand five hundred one'); INSERT INTO t3 VALUES(2625, 43541, 'forty-three thousand five hundred forty-one'); INSERT INTO t3 VALUES(2626, 85325, 'eighty-five thousand three hundred twenty-five'); INSERT INTO t3 VALUES(2627, 95640, 'ninety-five thousand six hundred forty'); INSERT INTO t3 VALUES(2628, 75868, 'seventy-five thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(2629, 69109, 'sixty-nine thousand one hundred nine'); INSERT INTO t3 VALUES(2630, 53050, 'fifty-three thousand fifty'); INSERT INTO t3 VALUES(2631, 14024, 'fourteen thousand twenty-four'); INSERT INTO t3 VALUES(2632, 13679, 'thirteen thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(2633, 67620, 'sixty-seven thousand six hundred twenty'); INSERT INTO t3 VALUES(2634, 32305, 'thirty-two thousand three hundred five'); INSERT INTO t3 VALUES(2635, 61720, 'sixty-one thousand seven hundred twenty'); INSERT INTO t3 VALUES(2636, 80107, 'eighty thousand one hundred seven'); INSERT INTO t3 VALUES(2637, 82722, 'eighty-two thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(2638, 51847, 'fifty-one thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(2639, 8453, 'eight thousand four hundred fifty-three'); INSERT INTO t3 VALUES(2640, 30105, 'thirty thousand one hundred five'); INSERT INTO t3 VALUES(2641, 41861, 'forty-one thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(2642, 93561, 'ninety-three thousand five hundred sixty-one'); INSERT INTO t3 VALUES(2643, 75440, 'seventy-five thousand four hundred forty'); INSERT INTO t3 VALUES(2644, 22876, 'twenty-two thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(2645, 6604, 'six thousand six hundred four'); INSERT INTO t3 VALUES(2646, 95596, 'ninety-five thousand five hundred ninety-six'); INSERT INTO t3 VALUES(2647, 19414, 'nineteen thousand four hundred fourteen'); INSERT INTO t3 VALUES(2648, 77905, 'seventy-seven thousand nine hundred five'); INSERT INTO t3 VALUES(2649, 92789, 'ninety-two thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(2650, 20860, 'twenty thousand eight hundred sixty'); INSERT INTO t3 VALUES(2651, 99286, 'ninety-nine thousand two hundred eighty-six'); INSERT INTO t3 VALUES(2652, 29996, 'twenty-nine thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(2653, 15159, 'fifteen thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(2654, 99606, 'ninety-nine thousand six hundred six'); INSERT INTO t3 VALUES(2655, 54128, 'fifty-four thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(2656, 77405, 'seventy-seven thousand four hundred five'); INSERT INTO t3 VALUES(2657, 15625, 'fifteen thousand six hundred twenty-five'); INSERT INTO t3 VALUES(2658, 1525, 'one thousand five hundred twenty-five'); INSERT INTO t3 VALUES(2659, 34244, 'thirty-four thousand two hundred forty-four'); INSERT INTO t3 VALUES(2660, 38687, 'thirty-eight thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(2661, 98998, 'ninety-eight thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(2662, 98698, 'ninety-eight thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(2663, 3920, 'three thousand nine hundred twenty'); INSERT INTO t3 VALUES(2664, 2, 'two'); INSERT INTO t3 VALUES(2665, 91857, 'ninety-one thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(2666, 23195, 'twenty-three thousand one hundred ninety-five'); INSERT INTO t3 VALUES(2667, 49499, 'forty-nine thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(2668, 20086, 'twenty thousand eighty-six'); INSERT INTO t3 VALUES(2669, 97756, 'ninety-seven thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(2670, 19579, 'nineteen thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(2671, 41971, 'forty-one thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(2672, 45456, 'forty-five thousand four hundred fifty-six'); INSERT INTO t3 VALUES(2673, 86745, 'eighty-six thousand seven hundred forty-five'); INSERT INTO t3 VALUES(2674, 65633, 'sixty-five thousand six hundred thirty-three'); INSERT INTO t3 VALUES(2675, 36789, 'thirty-six thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(2676, 76483, 'seventy-six thousand four hundred eighty-three'); INSERT INTO t3 VALUES(2677, 36356, 'thirty-six thousand three hundred fifty-six'); INSERT INTO t3 VALUES(2678, 98591, 'ninety-eight thousand five hundred ninety-one'); INSERT INTO t3 VALUES(2679, 44868, 'forty-four thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(2680, 3562, 'three thousand five hundred sixty-two'); INSERT INTO t3 VALUES(2681, 22007, 'twenty-two thousand seven'); INSERT INTO t3 VALUES(2682, 9310, 'nine thousand three hundred ten'); INSERT INTO t3 VALUES(2683, 20270, 'twenty thousand two hundred seventy'); INSERT INTO t3 VALUES(2684, 3926, 'three thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(2685, 66696, 'sixty-six thousand six hundred ninety-six'); INSERT INTO t3 VALUES(2686, 28671, 'twenty-eight thousand six hundred seventy-one'); INSERT INTO t3 VALUES(2687, 72817, 'seventy-two thousand eight hundred seventeen'); INSERT INTO t3 VALUES(2688, 89783, 'eighty-nine thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(2689, 15300, 'fifteen thousand three hundred'); INSERT INTO t3 VALUES(2690, 18812, 'eighteen thousand eight hundred twelve'); INSERT INTO t3 VALUES(2691, 44985, 'forty-four thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(2692, 82912, 'eighty-two thousand nine hundred twelve'); INSERT INTO t3 VALUES(2693, 62118, 'sixty-two thousand one hundred eighteen'); INSERT INTO t3 VALUES(2694, 18031, 'eighteen thousand thirty-one'); INSERT INTO t3 VALUES(2695, 71084, 'seventy-one thousand eighty-four'); INSERT INTO t3 VALUES(2696, 45924, 'forty-five thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(2697, 36912, 'thirty-six thousand nine hundred twelve'); INSERT INTO t3 VALUES(2698, 44209, 'forty-four thousand two hundred nine'); INSERT INTO t3 VALUES(2699, 88553, 'eighty-eight thousand five hundred fifty-three'); INSERT INTO t3 VALUES(2700, 73660, 'seventy-three thousand six hundred sixty'); INSERT INTO t3 VALUES(2701, 94137, 'ninety-four thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(2702, 88150, 'eighty-eight thousand one hundred fifty'); INSERT INTO t3 VALUES(2703, 59646, 'fifty-nine thousand six hundred forty-six'); INSERT INTO t3 VALUES(2704, 64108, 'sixty-four thousand one hundred eight'); INSERT INTO t3 VALUES(2705, 39472, 'thirty-nine thousand four hundred seventy-two'); INSERT INTO t3 VALUES(2706, 69953, 'sixty-nine thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(2707, 74597, 'seventy-four thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(2708, 88306, 'eighty-eight thousand three hundred six'); INSERT INTO t3 VALUES(2709, 67164, 'sixty-seven thousand one hundred sixty-four'); INSERT INTO t3 VALUES(2710, 44767, 'forty-four thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(2711, 21537, 'twenty-one thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(2712, 21814, 'twenty-one thousand eight hundred fourteen'); INSERT INTO t3 VALUES(2713, 30743, 'thirty thousand seven hundred forty-three'); INSERT INTO t3 VALUES(2714, 62130, 'sixty-two thousand one hundred thirty'); INSERT INTO t3 VALUES(2715, 5202, 'five thousand two hundred two'); INSERT INTO t3 VALUES(2716, 5298, 'five thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(2717, 38591, 'thirty-eight thousand five hundred ninety-one'); INSERT INTO t3 VALUES(2718, 44341, 'forty-four thousand three hundred forty-one'); INSERT INTO t3 VALUES(2719, 25784, 'twenty-five thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(2720, 65934, 'sixty-five thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(2721, 84085, 'eighty-four thousand eighty-five'); INSERT INTO t3 VALUES(2722, 5445, 'five thousand four hundred forty-five'); INSERT INTO t3 VALUES(2723, 92558, 'ninety-two thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(2724, 41297, 'forty-one thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(2725, 92501, 'ninety-two thousand five hundred one'); INSERT INTO t3 VALUES(2726, 65477, 'sixty-five thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(2727, 14831, 'fourteen thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(2728, 17597, 'seventeen thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(2729, 18997, 'eighteen thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(2730, 23019, 'twenty-three thousand nineteen'); INSERT INTO t3 VALUES(2731, 29811, 'twenty-nine thousand eight hundred eleven'); INSERT INTO t3 VALUES(2732, 91076, 'ninety-one thousand seventy-six'); INSERT INTO t3 VALUES(2733, 73795, 'seventy-three thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(2734, 48080, 'forty-eight thousand eighty'); INSERT INTO t3 VALUES(2735, 33473, 'thirty-three thousand four hundred seventy-three'); INSERT INTO t3 VALUES(2736, 20578, 'twenty thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(2737, 26740, 'twenty-six thousand seven hundred forty'); INSERT INTO t3 VALUES(2738, 30309, 'thirty thousand three hundred nine'); INSERT INTO t3 VALUES(2739, 58713, 'fifty-eight thousand seven hundred thirteen'); INSERT INTO t3 VALUES(2740, 30816, 'thirty thousand eight hundred sixteen'); INSERT INTO t3 VALUES(2741, 78961, 'seventy-eight thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(2742, 17980, 'seventeen thousand nine hundred eighty'); INSERT INTO t3 VALUES(2743, 62725, 'sixty-two thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(2744, 42900, 'forty-two thousand nine hundred'); INSERT INTO t3 VALUES(2745, 12795, 'twelve thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(2746, 30167, 'thirty thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(2747, 98000, 'ninety-eight thousand'); INSERT INTO t3 VALUES(2748, 31452, 'thirty-one thousand four hundred fifty-two'); INSERT INTO t3 VALUES(2749, 50181, 'fifty thousand one hundred eighty-one'); INSERT INTO t3 VALUES(2750, 20346, 'twenty thousand three hundred forty-six'); INSERT INTO t3 VALUES(2751, 76642, 'seventy-six thousand six hundred forty-two'); INSERT INTO t3 VALUES(2752, 23856, 'twenty-three thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(2753, 12872, 'twelve thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(2754, 28961, 'twenty-eight thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(2755, 65273, 'sixty-five thousand two hundred seventy-three'); INSERT INTO t3 VALUES(2756, 83360, 'eighty-three thousand three hundred sixty'); INSERT INTO t3 VALUES(2757, 3413, 'three thousand four hundred thirteen'); INSERT INTO t3 VALUES(2758, 18407, 'eighteen thousand four hundred seven'); INSERT INTO t3 VALUES(2759, 74015, 'seventy-four thousand fifteen'); INSERT INTO t3 VALUES(2760, 61982, 'sixty-one thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(2761, 42140, 'forty-two thousand one hundred forty'); INSERT INTO t3 VALUES(2762, 15807, 'fifteen thousand eight hundred seven'); INSERT INTO t3 VALUES(2763, 97705, 'ninety-seven thousand seven hundred five'); INSERT INTO t3 VALUES(2764, 78911, 'seventy-eight thousand nine hundred eleven'); INSERT INTO t3 VALUES(2765, 91429, 'ninety-one thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(2766, 11774, 'eleven thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(2767, 34703, 'thirty-four thousand seven hundred three'); INSERT INTO t3 VALUES(2768, 59228, 'fifty-nine thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(2769, 77844, 'seventy-seven thousand eight hundred forty-four'); INSERT INTO t3 VALUES(2770, 22568, 'twenty-two thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(2771, 71347, 'seventy-one thousand three hundred forty-seven'); INSERT INTO t3 VALUES(2772, 65482, 'sixty-five thousand four hundred eighty-two'); INSERT INTO t3 VALUES(2773, 13520, 'thirteen thousand five hundred twenty'); INSERT INTO t3 VALUES(2774, 33718, 'thirty-three thousand seven hundred eighteen'); INSERT INTO t3 VALUES(2775, 71037, 'seventy-one thousand thirty-seven'); INSERT INTO t3 VALUES(2776, 64303, 'sixty-four thousand three hundred three'); INSERT INTO t3 VALUES(2777, 30809, 'thirty thousand eight hundred nine'); INSERT INTO t3 VALUES(2778, 37571, 'thirty-seven thousand five hundred seventy-one'); INSERT INTO t3 VALUES(2779, 5279, 'five thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(2780, 60787, 'sixty thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(2781, 61872, 'sixty-one thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(2782, 71610, 'seventy-one thousand six hundred ten'); INSERT INTO t3 VALUES(2783, 22146, 'twenty-two thousand one hundred forty-six'); INSERT INTO t3 VALUES(2784, 63599, 'sixty-three thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(2785, 72064, 'seventy-two thousand sixty-four'); INSERT INTO t3 VALUES(2786, 55081, 'fifty-five thousand eighty-one'); INSERT INTO t3 VALUES(2787, 52846, 'fifty-two thousand eight hundred forty-six'); INSERT INTO t3 VALUES(2788, 98065, 'ninety-eight thousand sixty-five'); INSERT INTO t3 VALUES(2789, 30484, 'thirty thousand four hundred eighty-four'); INSERT INTO t3 VALUES(2790, 38907, 'thirty-eight thousand nine hundred seven'); INSERT INTO t3 VALUES(2791, 46554, 'forty-six thousand five hundred fifty-four'); INSERT INTO t3 VALUES(2792, 59014, 'fifty-nine thousand fourteen'); INSERT INTO t3 VALUES(2793, 65648, 'sixty-five thousand six hundred forty-eight'); INSERT INTO t3 VALUES(2794, 74065, 'seventy-four thousand sixty-five'); INSERT INTO t3 VALUES(2795, 17116, 'seventeen thousand one hundred sixteen'); INSERT INTO t3 VALUES(2796, 38993, 'thirty-eight thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(2797, 21715, 'twenty-one thousand seven hundred fifteen'); INSERT INTO t3 VALUES(2798, 15477, 'fifteen thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(2799, 4544, 'four thousand five hundred forty-four'); INSERT INTO t3 VALUES(2800, 75787, 'seventy-five thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(2801, 59319, 'fifty-nine thousand three hundred nineteen'); INSERT INTO t3 VALUES(2802, 96873, 'ninety-six thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(2803, 24004, 'twenty-four thousand four'); INSERT INTO t3 VALUES(2804, 63353, 'sixty-three thousand three hundred fifty-three'); INSERT INTO t3 VALUES(2805, 96846, 'ninety-six thousand eight hundred forty-six'); INSERT INTO t3 VALUES(2806, 57281, 'fifty-seven thousand two hundred eighty-one'); INSERT INTO t3 VALUES(2807, 93566, 'ninety-three thousand five hundred sixty-six'); INSERT INTO t3 VALUES(2808, 15708, 'fifteen thousand seven hundred eight'); INSERT INTO t3 VALUES(2809, 46292, 'forty-six thousand two hundred ninety-two'); INSERT INTO t3 VALUES(2810, 78479, 'seventy-eight thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(2811, 37086, 'thirty-seven thousand eighty-six'); INSERT INTO t3 VALUES(2812, 81103, 'eighty-one thousand one hundred three'); INSERT INTO t3 VALUES(2813, 90998, 'ninety thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(2814, 97436, 'ninety-seven thousand four hundred thirty-six'); INSERT INTO t3 VALUES(2815, 32908, 'thirty-two thousand nine hundred eight'); INSERT INTO t3 VALUES(2816, 51525, 'fifty-one thousand five hundred twenty-five'); INSERT INTO t3 VALUES(2817, 97632, 'ninety-seven thousand six hundred thirty-two'); INSERT INTO t3 VALUES(2818, 97160, 'ninety-seven thousand one hundred sixty'); INSERT INTO t3 VALUES(2819, 23392, 'twenty-three thousand three hundred ninety-two'); INSERT INTO t3 VALUES(2820, 80278, 'eighty thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(2821, 60041, 'sixty thousand forty-one'); INSERT INTO t3 VALUES(2822, 38382, 'thirty-eight thousand three hundred eighty-two'); INSERT INTO t3 VALUES(2823, 61360, 'sixty-one thousand three hundred sixty'); INSERT INTO t3 VALUES(2824, 44477, 'forty-four thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(2825, 93896, 'ninety-three thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(2826, 67062, 'sixty-seven thousand sixty-two'); INSERT INTO t3 VALUES(2827, 59706, 'fifty-nine thousand seven hundred six'); INSERT INTO t3 VALUES(2828, 99114, 'ninety-nine thousand one hundred fourteen'); INSERT INTO t3 VALUES(2829, 85310, 'eighty-five thousand three hundred ten'); INSERT INTO t3 VALUES(2830, 86574, 'eighty-six thousand five hundred seventy-four'); INSERT INTO t3 VALUES(2831, 57310, 'fifty-seven thousand three hundred ten'); INSERT INTO t3 VALUES(2832, 83371, 'eighty-three thousand three hundred seventy-one'); INSERT INTO t3 VALUES(2833, 92203, 'ninety-two thousand two hundred three'); INSERT INTO t3 VALUES(2834, 58493, 'fifty-eight thousand four hundred ninety-three'); INSERT INTO t3 VALUES(2835, 14561, 'fourteen thousand five hundred sixty-one'); INSERT INTO t3 VALUES(2836, 74188, 'seventy-four thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(2837, 56285, 'fifty-six thousand two hundred eighty-five'); INSERT INTO t3 VALUES(2838, 97663, 'ninety-seven thousand six hundred sixty-three'); INSERT INTO t3 VALUES(2839, 70747, 'seventy thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(2840, 51624, 'fifty-one thousand six hundred twenty-four'); INSERT INTO t3 VALUES(2841, 60717, 'sixty thousand seven hundred seventeen'); INSERT INTO t3 VALUES(2842, 79443, 'seventy-nine thousand four hundred forty-three'); INSERT INTO t3 VALUES(2843, 38812, 'thirty-eight thousand eight hundred twelve'); INSERT INTO t3 VALUES(2844, 53715, 'fifty-three thousand seven hundred fifteen'); INSERT INTO t3 VALUES(2845, 46403, 'forty-six thousand four hundred three'); INSERT INTO t3 VALUES(2846, 10139, 'ten thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(2847, 57390, 'fifty-seven thousand three hundred ninety'); INSERT INTO t3 VALUES(2848, 60862, 'sixty thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(2849, 7243, 'seven thousand two hundred forty-three'); INSERT INTO t3 VALUES(2850, 92790, 'ninety-two thousand seven hundred ninety'); INSERT INTO t3 VALUES(2851, 19055, 'nineteen thousand fifty-five'); INSERT INTO t3 VALUES(2852, 10827, 'ten thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(2853, 38979, 'thirty-eight thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(2854, 24786, 'twenty-four thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(2855, 22515, 'twenty-two thousand five hundred fifteen'); INSERT INTO t3 VALUES(2856, 71199, 'seventy-one thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(2857, 84471, 'eighty-four thousand four hundred seventy-one'); INSERT INTO t3 VALUES(2858, 84750, 'eighty-four thousand seven hundred fifty'); INSERT INTO t3 VALUES(2859, 35002, 'thirty-five thousand two'); INSERT INTO t3 VALUES(2860, 50215, 'fifty thousand two hundred fifteen'); INSERT INTO t3 VALUES(2861, 66801, 'sixty-six thousand eight hundred one'); INSERT INTO t3 VALUES(2862, 40186, 'forty thousand one hundred eighty-six'); INSERT INTO t3 VALUES(2863, 86213, 'eighty-six thousand two hundred thirteen'); INSERT INTO t3 VALUES(2864, 38960, 'thirty-eight thousand nine hundred sixty'); INSERT INTO t3 VALUES(2865, 2641, 'two thousand six hundred forty-one'); INSERT INTO t3 VALUES(2866, 88520, 'eighty-eight thousand five hundred twenty'); INSERT INTO t3 VALUES(2867, 99257, 'ninety-nine thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(2868, 69547, 'sixty-nine thousand five hundred forty-seven'); INSERT INTO t3 VALUES(2869, 13986, 'thirteen thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(2870, 63408, 'sixty-three thousand four hundred eight'); INSERT INTO t3 VALUES(2871, 39134, 'thirty-nine thousand one hundred thirty-four'); INSERT INTO t3 VALUES(2872, 94940, 'ninety-four thousand nine hundred forty'); INSERT INTO t3 VALUES(2873, 62101, 'sixty-two thousand one hundred one'); INSERT INTO t3 VALUES(2874, 85013, 'eighty-five thousand thirteen'); INSERT INTO t3 VALUES(2875, 3429, 'three thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(2876, 2082, 'two thousand eighty-two'); INSERT INTO t3 VALUES(2877, 73703, 'seventy-three thousand seven hundred three'); INSERT INTO t3 VALUES(2878, 56579, 'fifty-six thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(2879, 8304, 'eight thousand three hundred four'); INSERT INTO t3 VALUES(2880, 24126, 'twenty-four thousand one hundred twenty-six'); INSERT INTO t3 VALUES(2881, 73590, 'seventy-three thousand five hundred ninety'); INSERT INTO t3 VALUES(2882, 53523, 'fifty-three thousand five hundred twenty-three'); INSERT INTO t3 VALUES(2883, 35807, 'thirty-five thousand eight hundred seven'); INSERT INTO t3 VALUES(2884, 73785, 'seventy-three thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(2885, 29535, 'twenty-nine thousand five hundred thirty-five'); INSERT INTO t3 VALUES(2886, 45575, 'forty-five thousand five hundred seventy-five'); INSERT INTO t3 VALUES(2887, 11998, 'eleven thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(2888, 80544, 'eighty thousand five hundred forty-four'); INSERT INTO t3 VALUES(2889, 27665, 'twenty-seven thousand six hundred sixty-five'); INSERT INTO t3 VALUES(2890, 89301, 'eighty-nine thousand three hundred one'); INSERT INTO t3 VALUES(2891, 98443, 'ninety-eight thousand four hundred forty-three'); INSERT INTO t3 VALUES(2892, 46410, 'forty-six thousand four hundred ten'); INSERT INTO t3 VALUES(2893, 55437, 'fifty-five thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(2894, 20985, 'twenty thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(2895, 26558, 'twenty-six thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(2896, 43405, 'forty-three thousand four hundred five'); INSERT INTO t3 VALUES(2897, 35451, 'thirty-five thousand four hundred fifty-one'); INSERT INTO t3 VALUES(2898, 91920, 'ninety-one thousand nine hundred twenty'); INSERT INTO t3 VALUES(2899, 16981, 'sixteen thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(2900, 51626, 'fifty-one thousand six hundred twenty-six'); INSERT INTO t3 VALUES(2901, 15867, 'fifteen thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(2902, 1917, 'one thousand nine hundred seventeen'); INSERT INTO t3 VALUES(2903, 3598, 'three thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(2904, 6021, 'six thousand twenty-one'); INSERT INTO t3 VALUES(2905, 58385, 'fifty-eight thousand three hundred eighty-five'); INSERT INTO t3 VALUES(2906, 91305, 'ninety-one thousand three hundred five'); INSERT INTO t3 VALUES(2907, 80849, 'eighty thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(2908, 2038, 'two thousand thirty-eight'); INSERT INTO t3 VALUES(2909, 74335, 'seventy-four thousand three hundred thirty-five'); INSERT INTO t3 VALUES(2910, 18766, 'eighteen thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(2911, 92557, 'ninety-two thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(2912, 60464, 'sixty thousand four hundred sixty-four'); INSERT INTO t3 VALUES(2913, 29183, 'twenty-nine thousand one hundred eighty-three'); INSERT INTO t3 VALUES(2914, 68522, 'sixty-eight thousand five hundred twenty-two'); INSERT INTO t3 VALUES(2915, 8023, 'eight thousand twenty-three'); INSERT INTO t3 VALUES(2916, 92844, 'ninety-two thousand eight hundred forty-four'); INSERT INTO t3 VALUES(2917, 60176, 'sixty thousand one hundred seventy-six'); INSERT INTO t3 VALUES(2918, 27847, 'twenty-seven thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(2919, 61306, 'sixty-one thousand three hundred six'); INSERT INTO t3 VALUES(2920, 1652, 'one thousand six hundred fifty-two'); INSERT INTO t3 VALUES(2921, 83708, 'eighty-three thousand seven hundred eight'); INSERT INTO t3 VALUES(2922, 17423, 'seventeen thousand four hundred twenty-three'); INSERT INTO t3 VALUES(2923, 28731, 'twenty-eight thousand seven hundred thirty-one'); INSERT INTO t3 VALUES(2924, 84517, 'eighty-four thousand five hundred seventeen'); INSERT INTO t3 VALUES(2925, 91257, 'ninety-one thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(2926, 102, 'one hundred two'); INSERT INTO t3 VALUES(2927, 55034, 'fifty-five thousand thirty-four'); INSERT INTO t3 VALUES(2928, 58807, 'fifty-eight thousand eight hundred seven'); INSERT INTO t3 VALUES(2929, 67341, 'sixty-seven thousand three hundred forty-one'); INSERT INTO t3 VALUES(2930, 26924, 'twenty-six thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(2931, 5980, 'five thousand nine hundred eighty'); INSERT INTO t3 VALUES(2932, 84936, 'eighty-four thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(2933, 74198, 'seventy-four thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(2934, 88469, 'eighty-eight thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(2935, 59988, 'fifty-nine thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(2936, 96305, 'ninety-six thousand three hundred five'); INSERT INTO t3 VALUES(2937, 36534, 'thirty-six thousand five hundred thirty-four'); INSERT INTO t3 VALUES(2938, 96565, 'ninety-six thousand five hundred sixty-five'); INSERT INTO t3 VALUES(2939, 63601, 'sixty-three thousand six hundred one'); INSERT INTO t3 VALUES(2940, 74848, 'seventy-four thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(2941, 3419, 'three thousand four hundred nineteen'); INSERT INTO t3 VALUES(2942, 46979, 'forty-six thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(2943, 70502, 'seventy thousand five hundred two'); INSERT INTO t3 VALUES(2944, 67926, 'sixty-seven thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(2945, 3646, 'three thousand six hundred forty-six'); INSERT INTO t3 VALUES(2946, 23691, 'twenty-three thousand six hundred ninety-one'); INSERT INTO t3 VALUES(2947, 46257, 'forty-six thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(2948, 24501, 'twenty-four thousand five hundred one'); INSERT INTO t3 VALUES(2949, 87797, 'eighty-seven thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(2950, 65232, 'sixty-five thousand two hundred thirty-two'); INSERT INTO t3 VALUES(2951, 61134, 'sixty-one thousand one hundred thirty-four'); INSERT INTO t3 VALUES(2952, 6112, 'six thousand one hundred twelve'); INSERT INTO t3 VALUES(2953, 80928, 'eighty thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(2954, 29115, 'twenty-nine thousand one hundred fifteen'); INSERT INTO t3 VALUES(2955, 39090, 'thirty-nine thousand ninety'); INSERT INTO t3 VALUES(2956, 59496, 'fifty-nine thousand four hundred ninety-six'); INSERT INTO t3 VALUES(2957, 96603, 'ninety-six thousand six hundred three'); INSERT INTO t3 VALUES(2958, 61338, 'sixty-one thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(2959, 89053, 'eighty-nine thousand fifty-three'); INSERT INTO t3 VALUES(2960, 16712, 'sixteen thousand seven hundred twelve'); INSERT INTO t3 VALUES(2961, 18896, 'eighteen thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(2962, 43642, 'forty-three thousand six hundred forty-two'); INSERT INTO t3 VALUES(2963, 82354, 'eighty-two thousand three hundred fifty-four'); INSERT INTO t3 VALUES(2964, 29710, 'twenty-nine thousand seven hundred ten'); INSERT INTO t3 VALUES(2965, 40168, 'forty thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(2966, 77207, 'seventy-seven thousand two hundred seven'); INSERT INTO t3 VALUES(2967, 57743, 'fifty-seven thousand seven hundred forty-three'); INSERT INTO t3 VALUES(2968, 35097, 'thirty-five thousand ninety-seven'); INSERT INTO t3 VALUES(2969, 23686, 'twenty-three thousand six hundred eighty-six'); INSERT INTO t3 VALUES(2970, 18806, 'eighteen thousand eight hundred six'); INSERT INTO t3 VALUES(2971, 3162, 'three thousand one hundred sixty-two'); INSERT INTO t3 VALUES(2972, 38435, 'thirty-eight thousand four hundred thirty-five'); INSERT INTO t3 VALUES(2973, 90663, 'ninety thousand six hundred sixty-three'); INSERT INTO t3 VALUES(2974, 37123, 'thirty-seven thousand one hundred twenty-three'); INSERT INTO t3 VALUES(2975, 17443, 'seventeen thousand four hundred forty-three'); INSERT INTO t3 VALUES(2976, 69930, 'sixty-nine thousand nine hundred thirty'); INSERT INTO t3 VALUES(2977, 36756, 'thirty-six thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(2978, 47146, 'forty-seven thousand one hundred forty-six'); INSERT INTO t3 VALUES(2979, 82587, 'eighty-two thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(2980, 51656, 'fifty-one thousand six hundred fifty-six'); INSERT INTO t3 VALUES(2981, 36488, 'thirty-six thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(2982, 15389, 'fifteen thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(2983, 10391, 'ten thousand three hundred ninety-one'); INSERT INTO t3 VALUES(2984, 57071, 'fifty-seven thousand seventy-one'); INSERT INTO t3 VALUES(2985, 5693, 'five thousand six hundred ninety-three'); INSERT INTO t3 VALUES(2986, 91681, 'ninety-one thousand six hundred eighty-one'); INSERT INTO t3 VALUES(2987, 14795, 'fourteen thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(2988, 98622, 'ninety-eight thousand six hundred twenty-two'); INSERT INTO t3 VALUES(2989, 80049, 'eighty thousand forty-nine'); INSERT INTO t3 VALUES(2990, 79991, 'seventy-nine thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(2991, 16058, 'sixteen thousand fifty-eight'); INSERT INTO t3 VALUES(2992, 84106, 'eighty-four thousand one hundred six'); INSERT INTO t3 VALUES(2993, 11367, 'eleven thousand three hundred sixty-seven'); INSERT INTO t3 VALUES(2994, 96630, 'ninety-six thousand six hundred thirty'); INSERT INTO t3 VALUES(2995, 60407, 'sixty thousand four hundred seven'); INSERT INTO t3 VALUES(2996, 96793, 'ninety-six thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(2997, 11440, 'eleven thousand four hundred forty'); INSERT INTO t3 VALUES(2998, 92353, 'ninety-two thousand three hundred fifty-three'); INSERT INTO t3 VALUES(2999, 12279, 'twelve thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(3000, 83061, 'eighty-three thousand sixty-one'); INSERT INTO t3 VALUES(3001, 93474, 'ninety-three thousand four hundred seventy-four'); INSERT INTO t3 VALUES(3002, 61141, 'sixty-one thousand one hundred forty-one'); INSERT INTO t3 VALUES(3003, 94748, 'ninety-four thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(3004, 15011, 'fifteen thousand eleven'); INSERT INTO t3 VALUES(3005, 9935, 'nine thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(3006, 96190, 'ninety-six thousand one hundred ninety'); INSERT INTO t3 VALUES(3007, 8888, 'eight thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(3008, 7642, 'seven thousand six hundred forty-two'); INSERT INTO t3 VALUES(3009, 7963, 'seven thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(3010, 89639, 'eighty-nine thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(3011, 50589, 'fifty thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(3012, 72397, 'seventy-two thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(3013, 70401, 'seventy thousand four hundred one'); INSERT INTO t3 VALUES(3014, 9318, 'nine thousand three hundred eighteen'); INSERT INTO t3 VALUES(3015, 3896, 'three thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(3016, 514, 'five hundred fourteen'); INSERT INTO t3 VALUES(3017, 91559, 'ninety-one thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(3018, 5144, 'five thousand one hundred forty-four'); INSERT INTO t3 VALUES(3019, 74807, 'seventy-four thousand eight hundred seven'); INSERT INTO t3 VALUES(3020, 69331, 'sixty-nine thousand three hundred thirty-one'); INSERT INTO t3 VALUES(3021, 78478, 'seventy-eight thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(3022, 54085, 'fifty-four thousand eighty-five'); INSERT INTO t3 VALUES(3023, 28495, 'twenty-eight thousand four hundred ninety-five'); INSERT INTO t3 VALUES(3024, 89152, 'eighty-nine thousand one hundred fifty-two'); INSERT INTO t3 VALUES(3025, 62723, 'sixty-two thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(3026, 10209, 'ten thousand two hundred nine'); INSERT INTO t3 VALUES(3027, 75374, 'seventy-five thousand three hundred seventy-four'); INSERT INTO t3 VALUES(3028, 57968, 'fifty-seven thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(3029, 24154, 'twenty-four thousand one hundred fifty-four'); INSERT INTO t3 VALUES(3030, 42180, 'forty-two thousand one hundred eighty'); INSERT INTO t3 VALUES(3031, 34365, 'thirty-four thousand three hundred sixty-five'); INSERT INTO t3 VALUES(3032, 36802, 'thirty-six thousand eight hundred two'); INSERT INTO t3 VALUES(3033, 10804, 'ten thousand eight hundred four'); INSERT INTO t3 VALUES(3034, 393, 'three hundred ninety-three'); INSERT INTO t3 VALUES(3035, 32409, 'thirty-two thousand four hundred nine'); INSERT INTO t3 VALUES(3036, 24639, 'twenty-four thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(3037, 31732, 'thirty-one thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(3038, 93655, 'ninety-three thousand six hundred fifty-five'); INSERT INTO t3 VALUES(3039, 45352, 'forty-five thousand three hundred fifty-two'); INSERT INTO t3 VALUES(3040, 71495, 'seventy-one thousand four hundred ninety-five'); INSERT INTO t3 VALUES(3041, 49125, 'forty-nine thousand one hundred twenty-five'); INSERT INTO t3 VALUES(3042, 71475, 'seventy-one thousand four hundred seventy-five'); INSERT INTO t3 VALUES(3043, 88099, 'eighty-eight thousand ninety-nine'); INSERT INTO t3 VALUES(3044, 2802, 'two thousand eight hundred two'); INSERT INTO t3 VALUES(3045, 92302, 'ninety-two thousand three hundred two'); INSERT INTO t3 VALUES(3046, 46223, 'forty-six thousand two hundred twenty-three'); INSERT INTO t3 VALUES(3047, 49251, 'forty-nine thousand two hundred fifty-one'); INSERT INTO t3 VALUES(3048, 53096, 'fifty-three thousand ninety-six'); INSERT INTO t3 VALUES(3049, 6124, 'six thousand one hundred twenty-four'); INSERT INTO t3 VALUES(3050, 60182, 'sixty thousand one hundred eighty-two'); INSERT INTO t3 VALUES(3051, 11384, 'eleven thousand three hundred eighty-four'); INSERT INTO t3 VALUES(3052, 46371, 'forty-six thousand three hundred seventy-one'); INSERT INTO t3 VALUES(3053, 3496, 'three thousand four hundred ninety-six'); INSERT INTO t3 VALUES(3054, 75447, 'seventy-five thousand four hundred forty-seven'); INSERT INTO t3 VALUES(3055, 37564, 'thirty-seven thousand five hundred sixty-four'); INSERT INTO t3 VALUES(3056, 84478, 'eighty-four thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(3057, 6359, 'six thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(3058, 65080, 'sixty-five thousand eighty'); INSERT INTO t3 VALUES(3059, 82568, 'eighty-two thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(3060, 38785, 'thirty-eight thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(3061, 5026, 'five thousand twenty-six'); INSERT INTO t3 VALUES(3062, 10490, 'ten thousand four hundred ninety'); INSERT INTO t3 VALUES(3063, 70633, 'seventy thousand six hundred thirty-three'); INSERT INTO t3 VALUES(3064, 5906, 'five thousand nine hundred six'); INSERT INTO t3 VALUES(3065, 63913, 'sixty-three thousand nine hundred thirteen'); INSERT INTO t3 VALUES(3066, 20968, 'twenty thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(3067, 76354, 'seventy-six thousand three hundred fifty-four'); INSERT INTO t3 VALUES(3068, 80536, 'eighty thousand five hundred thirty-six'); INSERT INTO t3 VALUES(3069, 90110, 'ninety thousand one hundred ten'); INSERT INTO t3 VALUES(3070, 22153, 'twenty-two thousand one hundred fifty-three'); INSERT INTO t3 VALUES(3071, 28585, 'twenty-eight thousand five hundred eighty-five'); INSERT INTO t3 VALUES(3072, 42975, 'forty-two thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(3073, 60548, 'sixty thousand five hundred forty-eight'); INSERT INTO t3 VALUES(3074, 35162, 'thirty-five thousand one hundred sixty-two'); INSERT INTO t3 VALUES(3075, 17299, 'seventeen thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(3076, 34103, 'thirty-four thousand one hundred three'); INSERT INTO t3 VALUES(3077, 60403, 'sixty thousand four hundred three'); INSERT INTO t3 VALUES(3078, 68821, 'sixty-eight thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(3079, 66551, 'sixty-six thousand five hundred fifty-one'); INSERT INTO t3 VALUES(3080, 34044, 'thirty-four thousand forty-four'); INSERT INTO t3 VALUES(3081, 2434, 'two thousand four hundred thirty-four'); INSERT INTO t3 VALUES(3082, 32678, 'thirty-two thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(3083, 97573, 'ninety-seven thousand five hundred seventy-three'); INSERT INTO t3 VALUES(3084, 79730, 'seventy-nine thousand seven hundred thirty'); INSERT INTO t3 VALUES(3085, 96952, 'ninety-six thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(3086, 12113, 'twelve thousand one hundred thirteen'); INSERT INTO t3 VALUES(3087, 86105, 'eighty-six thousand one hundred five'); INSERT INTO t3 VALUES(3088, 9565, 'nine thousand five hundred sixty-five'); INSERT INTO t3 VALUES(3089, 2746, 'two thousand seven hundred forty-six'); INSERT INTO t3 VALUES(3090, 73122, 'seventy-three thousand one hundred twenty-two'); INSERT INTO t3 VALUES(3091, 76138, 'seventy-six thousand one hundred thirty-eight'); INSERT INTO t3 VALUES(3092, 83045, 'eighty-three thousand forty-five'); INSERT INTO t3 VALUES(3093, 72737, 'seventy-two thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(3094, 43302, 'forty-three thousand three hundred two'); INSERT INTO t3 VALUES(3095, 17047, 'seventeen thousand forty-seven'); INSERT INTO t3 VALUES(3096, 24057, 'twenty-four thousand fifty-seven'); INSERT INTO t3 VALUES(3097, 55979, 'fifty-five thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(3098, 11932, 'eleven thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(3099, 80004, 'eighty thousand four'); INSERT INTO t3 VALUES(3100, 56325, 'fifty-six thousand three hundred twenty-five'); INSERT INTO t3 VALUES(3101, 60659, 'sixty thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(3102, 95109, 'ninety-five thousand one hundred nine'); INSERT INTO t3 VALUES(3103, 89053, 'eighty-nine thousand fifty-three'); INSERT INTO t3 VALUES(3104, 97057, 'ninety-seven thousand fifty-seven'); INSERT INTO t3 VALUES(3105, 56689, 'fifty-six thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(3106, 83363, 'eighty-three thousand three hundred sixty-three'); INSERT INTO t3 VALUES(3107, 11483, 'eleven thousand four hundred eighty-three'); INSERT INTO t3 VALUES(3108, 90357, 'ninety thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(3109, 26054, 'twenty-six thousand fifty-four'); INSERT INTO t3 VALUES(3110, 85082, 'eighty-five thousand eighty-two'); INSERT INTO t3 VALUES(3111, 24911, 'twenty-four thousand nine hundred eleven'); INSERT INTO t3 VALUES(3112, 92631, 'ninety-two thousand six hundred thirty-one'); INSERT INTO t3 VALUES(3113, 21372, 'twenty-one thousand three hundred seventy-two'); INSERT INTO t3 VALUES(3114, 86961, 'eighty-six thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(3115, 14489, 'fourteen thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(3116, 18307, 'eighteen thousand three hundred seven'); INSERT INTO t3 VALUES(3117, 6507, 'six thousand five hundred seven'); INSERT INTO t3 VALUES(3118, 15450, 'fifteen thousand four hundred fifty'); INSERT INTO t3 VALUES(3119, 53337, 'fifty-three thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(3120, 15581, 'fifteen thousand five hundred eighty-one'); INSERT INTO t3 VALUES(3121, 46980, 'forty-six thousand nine hundred eighty'); INSERT INTO t3 VALUES(3122, 39734, 'thirty-nine thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(3123, 58132, 'fifty-eight thousand one hundred thirty-two'); INSERT INTO t3 VALUES(3124, 22902, 'twenty-two thousand nine hundred two'); INSERT INTO t3 VALUES(3125, 77108, 'seventy-seven thousand one hundred eight'); INSERT INTO t3 VALUES(3126, 27427, 'twenty-seven thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(3127, 37714, 'thirty-seven thousand seven hundred fourteen'); INSERT INTO t3 VALUES(3128, 21911, 'twenty-one thousand nine hundred eleven'); INSERT INTO t3 VALUES(3129, 21458, 'twenty-one thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(3130, 55137, 'fifty-five thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(3131, 47173, 'forty-seven thousand one hundred seventy-three'); INSERT INTO t3 VALUES(3132, 50761, 'fifty thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(3133, 46622, 'forty-six thousand six hundred twenty-two'); INSERT INTO t3 VALUES(3134, 40402, 'forty thousand four hundred two'); INSERT INTO t3 VALUES(3135, 80867, 'eighty thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(3136, 76342, 'seventy-six thousand three hundred forty-two'); INSERT INTO t3 VALUES(3137, 16687, 'sixteen thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(3138, 73752, 'seventy-three thousand seven hundred fifty-two'); INSERT INTO t3 VALUES(3139, 39178, 'thirty-nine thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(3140, 41487, 'forty-one thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(3141, 24561, 'twenty-four thousand five hundred sixty-one'); INSERT INTO t3 VALUES(3142, 20612, 'twenty thousand six hundred twelve'); INSERT INTO t3 VALUES(3143, 87930, 'eighty-seven thousand nine hundred thirty'); INSERT INTO t3 VALUES(3144, 12138, 'twelve thousand one hundred thirty-eight'); INSERT INTO t3 VALUES(3145, 3689, 'three thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(3146, 72938, 'seventy-two thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(3147, 69887, 'sixty-nine thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(3148, 90716, 'ninety thousand seven hundred sixteen'); INSERT INTO t3 VALUES(3149, 18817, 'eighteen thousand eight hundred seventeen'); INSERT INTO t3 VALUES(3150, 46065, 'forty-six thousand sixty-five'); INSERT INTO t3 VALUES(3151, 86098, 'eighty-six thousand ninety-eight'); INSERT INTO t3 VALUES(3152, 50593, 'fifty thousand five hundred ninety-three'); INSERT INTO t3 VALUES(3153, 33024, 'thirty-three thousand twenty-four'); INSERT INTO t3 VALUES(3154, 31817, 'thirty-one thousand eight hundred seventeen'); INSERT INTO t3 VALUES(3155, 42271, 'forty-two thousand two hundred seventy-one'); INSERT INTO t3 VALUES(3156, 11794, 'eleven thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(3157, 79035, 'seventy-nine thousand thirty-five'); INSERT INTO t3 VALUES(3158, 69096, 'sixty-nine thousand ninety-six'); INSERT INTO t3 VALUES(3159, 20828, 'twenty thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(3160, 36978, 'thirty-six thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(3161, 44827, 'forty-four thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(3162, 22940, 'twenty-two thousand nine hundred forty'); INSERT INTO t3 VALUES(3163, 17136, 'seventeen thousand one hundred thirty-six'); INSERT INTO t3 VALUES(3164, 91650, 'ninety-one thousand six hundred fifty'); INSERT INTO t3 VALUES(3165, 61088, 'sixty-one thousand eighty-eight'); INSERT INTO t3 VALUES(3166, 59033, 'fifty-nine thousand thirty-three'); INSERT INTO t3 VALUES(3167, 72525, 'seventy-two thousand five hundred twenty-five'); INSERT INTO t3 VALUES(3168, 59873, 'fifty-nine thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(3169, 95312, 'ninety-five thousand three hundred twelve'); INSERT INTO t3 VALUES(3170, 56056, 'fifty-six thousand fifty-six'); INSERT INTO t3 VALUES(3171, 78722, 'seventy-eight thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(3172, 70408, 'seventy thousand four hundred eight'); INSERT INTO t3 VALUES(3173, 79756, 'seventy-nine thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(3174, 20845, 'twenty thousand eight hundred forty-five'); INSERT INTO t3 VALUES(3175, 94769, 'ninety-four thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(3176, 10242, 'ten thousand two hundred forty-two'); INSERT INTO t3 VALUES(3177, 28214, 'twenty-eight thousand two hundred fourteen'); INSERT INTO t3 VALUES(3178, 15220, 'fifteen thousand two hundred twenty'); INSERT INTO t3 VALUES(3179, 57142, 'fifty-seven thousand one hundred forty-two'); INSERT INTO t3 VALUES(3180, 8049, 'eight thousand forty-nine'); INSERT INTO t3 VALUES(3181, 99608, 'ninety-nine thousand six hundred eight'); INSERT INTO t3 VALUES(3182, 16838, 'sixteen thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(3183, 14823, 'fourteen thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(3184, 95734, 'ninety-five thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(3185, 49103, 'forty-nine thousand one hundred three'); INSERT INTO t3 VALUES(3186, 76791, 'seventy-six thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(3187, 8509, 'eight thousand five hundred nine'); INSERT INTO t3 VALUES(3188, 84475, 'eighty-four thousand four hundred seventy-five'); INSERT INTO t3 VALUES(3189, 58753, 'fifty-eight thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(3190, 36274, 'thirty-six thousand two hundred seventy-four'); INSERT INTO t3 VALUES(3191, 3981, 'three thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(3192, 71800, 'seventy-one thousand eight hundred'); INSERT INTO t3 VALUES(3193, 70992, 'seventy thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(3194, 94931, 'ninety-four thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(3195, 28535, 'twenty-eight thousand five hundred thirty-five'); INSERT INTO t3 VALUES(3196, 41850, 'forty-one thousand eight hundred fifty'); INSERT INTO t3 VALUES(3197, 12618, 'twelve thousand six hundred eighteen'); INSERT INTO t3 VALUES(3198, 43481, 'forty-three thousand four hundred eighty-one'); INSERT INTO t3 VALUES(3199, 67425, 'sixty-seven thousand four hundred twenty-five'); INSERT INTO t3 VALUES(3200, 21396, 'twenty-one thousand three hundred ninety-six'); INSERT INTO t3 VALUES(3201, 79411, 'seventy-nine thousand four hundred eleven'); INSERT INTO t3 VALUES(3202, 36051, 'thirty-six thousand fifty-one'); INSERT INTO t3 VALUES(3203, 39527, 'thirty-nine thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(3204, 74647, 'seventy-four thousand six hundred forty-seven'); INSERT INTO t3 VALUES(3205, 59682, 'fifty-nine thousand six hundred eighty-two'); INSERT INTO t3 VALUES(3206, 44226, 'forty-four thousand two hundred twenty-six'); INSERT INTO t3 VALUES(3207, 91876, 'ninety-one thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(3208, 42268, 'forty-two thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(3209, 32013, 'thirty-two thousand thirteen'); INSERT INTO t3 VALUES(3210, 74405, 'seventy-four thousand four hundred five'); INSERT INTO t3 VALUES(3211, 28426, 'twenty-eight thousand four hundred twenty-six'); INSERT INTO t3 VALUES(3212, 6638, 'six thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(3213, 45690, 'forty-five thousand six hundred ninety'); INSERT INTO t3 VALUES(3214, 43887, 'forty-three thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(3215, 70692, 'seventy thousand six hundred ninety-two'); INSERT INTO t3 VALUES(3216, 75903, 'seventy-five thousand nine hundred three'); INSERT INTO t3 VALUES(3217, 4733, 'four thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(3218, 61268, 'sixty-one thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(3219, 96708, 'ninety-six thousand seven hundred eight'); INSERT INTO t3 VALUES(3220, 85602, 'eighty-five thousand six hundred two'); INSERT INTO t3 VALUES(3221, 56994, 'fifty-six thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(3222, 29897, 'twenty-nine thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(3223, 37207, 'thirty-seven thousand two hundred seven'); INSERT INTO t3 VALUES(3224, 27267, 'twenty-seven thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(3225, 4364, 'four thousand three hundred sixty-four'); INSERT INTO t3 VALUES(3226, 4764, 'four thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(3227, 21280, 'twenty-one thousand two hundred eighty'); INSERT INTO t3 VALUES(3228, 57894, 'fifty-seven thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(3229, 97878, 'ninety-seven thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(3230, 20265, 'twenty thousand two hundred sixty-five'); INSERT INTO t3 VALUES(3231, 55906, 'fifty-five thousand nine hundred six'); INSERT INTO t3 VALUES(3232, 45999, 'forty-five thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(3233, 26862, 'twenty-six thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(3234, 66546, 'sixty-six thousand five hundred forty-six'); INSERT INTO t3 VALUES(3235, 58681, 'fifty-eight thousand six hundred eighty-one'); INSERT INTO t3 VALUES(3236, 20634, 'twenty thousand six hundred thirty-four'); INSERT INTO t3 VALUES(3237, 23165, 'twenty-three thousand one hundred sixty-five'); INSERT INTO t3 VALUES(3238, 69608, 'sixty-nine thousand six hundred eight'); INSERT INTO t3 VALUES(3239, 51635, 'fifty-one thousand six hundred thirty-five'); INSERT INTO t3 VALUES(3240, 78119, 'seventy-eight thousand one hundred nineteen'); INSERT INTO t3 VALUES(3241, 13103, 'thirteen thousand one hundred three'); INSERT INTO t3 VALUES(3242, 98193, 'ninety-eight thousand one hundred ninety-three'); INSERT INTO t3 VALUES(3243, 97710, 'ninety-seven thousand seven hundred ten'); INSERT INTO t3 VALUES(3244, 39832, 'thirty-nine thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(3245, 1304, 'one thousand three hundred four'); INSERT INTO t3 VALUES(3246, 77713, 'seventy-seven thousand seven hundred thirteen'); INSERT INTO t3 VALUES(3247, 55426, 'fifty-five thousand four hundred twenty-six'); INSERT INTO t3 VALUES(3248, 30414, 'thirty thousand four hundred fourteen'); INSERT INTO t3 VALUES(3249, 36097, 'thirty-six thousand ninety-seven'); INSERT INTO t3 VALUES(3250, 66159, 'sixty-six thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(3251, 48348, 'forty-eight thousand three hundred forty-eight'); INSERT INTO t3 VALUES(3252, 24606, 'twenty-four thousand six hundred six'); INSERT INTO t3 VALUES(3253, 78026, 'seventy-eight thousand twenty-six'); INSERT INTO t3 VALUES(3254, 33277, 'thirty-three thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(3255, 13613, 'thirteen thousand six hundred thirteen'); INSERT INTO t3 VALUES(3256, 22998, 'twenty-two thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(3257, 1499, 'one thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(3258, 54486, 'fifty-four thousand four hundred eighty-six'); INSERT INTO t3 VALUES(3259, 59699, 'fifty-nine thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(3260, 89747, 'eighty-nine thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(3261, 18002, 'eighteen thousand two'); INSERT INTO t3 VALUES(3262, 46061, 'forty-six thousand sixty-one'); INSERT INTO t3 VALUES(3263, 34695, 'thirty-four thousand six hundred ninety-five'); INSERT INTO t3 VALUES(3264, 30017, 'thirty thousand seventeen'); INSERT INTO t3 VALUES(3265, 24428, 'twenty-four thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(3266, 50421, 'fifty thousand four hundred twenty-one'); INSERT INTO t3 VALUES(3267, 14749, 'fourteen thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(3268, 98725, 'ninety-eight thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(3269, 52706, 'fifty-two thousand seven hundred six'); INSERT INTO t3 VALUES(3270, 55253, 'fifty-five thousand two hundred fifty-three'); INSERT INTO t3 VALUES(3271, 79854, 'seventy-nine thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(3272, 23774, 'twenty-three thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(3273, 38704, 'thirty-eight thousand seven hundred four'); INSERT INTO t3 VALUES(3274, 5778, 'five thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(3275, 16180, 'sixteen thousand one hundred eighty'); INSERT INTO t3 VALUES(3276, 42048, 'forty-two thousand forty-eight'); INSERT INTO t3 VALUES(3277, 89075, 'eighty-nine thousand seventy-five'); INSERT INTO t3 VALUES(3278, 88616, 'eighty-eight thousand six hundred sixteen'); INSERT INTO t3 VALUES(3279, 66289, 'sixty-six thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(3280, 63549, 'sixty-three thousand five hundred forty-nine'); INSERT INTO t3 VALUES(3281, 6772, 'six thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(3282, 88839, 'eighty-eight thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(3283, 335, 'three hundred thirty-five'); INSERT INTO t3 VALUES(3284, 73167, 'seventy-three thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(3285, 26017, 'twenty-six thousand seventeen'); INSERT INTO t3 VALUES(3286, 47230, 'forty-seven thousand two hundred thirty'); INSERT INTO t3 VALUES(3287, 3536, 'three thousand five hundred thirty-six'); INSERT INTO t3 VALUES(3288, 92717, 'ninety-two thousand seven hundred seventeen'); INSERT INTO t3 VALUES(3289, 92707, 'ninety-two thousand seven hundred seven'); INSERT INTO t3 VALUES(3290, 80363, 'eighty thousand three hundred sixty-three'); INSERT INTO t3 VALUES(3291, 70795, 'seventy thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(3292, 28974, 'twenty-eight thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(3293, 98907, 'ninety-eight thousand nine hundred seven'); INSERT INTO t3 VALUES(3294, 16328, 'sixteen thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(3295, 52258, 'fifty-two thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(3296, 10018, 'ten thousand eighteen'); INSERT INTO t3 VALUES(3297, 76504, 'seventy-six thousand five hundred four'); INSERT INTO t3 VALUES(3298, 41695, 'forty-one thousand six hundred ninety-five'); INSERT INTO t3 VALUES(3299, 8079, 'eight thousand seventy-nine'); INSERT INTO t3 VALUES(3300, 55552, 'fifty-five thousand five hundred fifty-two'); INSERT INTO t3 VALUES(3301, 59369, 'fifty-nine thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(3302, 95604, 'ninety-five thousand six hundred four'); INSERT INTO t3 VALUES(3303, 54871, 'fifty-four thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(3304, 60447, 'sixty thousand four hundred forty-seven'); INSERT INTO t3 VALUES(3305, 16541, 'sixteen thousand five hundred forty-one'); INSERT INTO t3 VALUES(3306, 4792, 'four thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(3307, 32900, 'thirty-two thousand nine hundred'); INSERT INTO t3 VALUES(3308, 20302, 'twenty thousand three hundred two'); INSERT INTO t3 VALUES(3309, 69833, 'sixty-nine thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(3310, 48982, 'forty-eight thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(3311, 44646, 'forty-four thousand six hundred forty-six'); INSERT INTO t3 VALUES(3312, 16740, 'sixteen thousand seven hundred forty'); INSERT INTO t3 VALUES(3313, 84826, 'eighty-four thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(3314, 76724, 'seventy-six thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(3315, 20399, 'twenty thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(3316, 44189, 'forty-four thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(3317, 52064, 'fifty-two thousand sixty-four'); INSERT INTO t3 VALUES(3318, 19888, 'nineteen thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(3319, 87260, 'eighty-seven thousand two hundred sixty'); INSERT INTO t3 VALUES(3320, 60706, 'sixty thousand seven hundred six'); INSERT INTO t3 VALUES(3321, 11743, 'eleven thousand seven hundred forty-three'); INSERT INTO t3 VALUES(3322, 98332, 'ninety-eight thousand three hundred thirty-two'); INSERT INTO t3 VALUES(3323, 98608, 'ninety-eight thousand six hundred eight'); INSERT INTO t3 VALUES(3324, 12706, 'twelve thousand seven hundred six'); INSERT INTO t3 VALUES(3325, 80743, 'eighty thousand seven hundred forty-three'); INSERT INTO t3 VALUES(3326, 9245, 'nine thousand two hundred forty-five'); INSERT INTO t3 VALUES(3327, 97091, 'ninety-seven thousand ninety-one'); INSERT INTO t3 VALUES(3328, 37640, 'thirty-seven thousand six hundred forty'); INSERT INTO t3 VALUES(3329, 30129, 'thirty thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(3330, 14433, 'fourteen thousand four hundred thirty-three'); INSERT INTO t3 VALUES(3331, 36501, 'thirty-six thousand five hundred one'); INSERT INTO t3 VALUES(3332, 98143, 'ninety-eight thousand one hundred forty-three'); INSERT INTO t3 VALUES(3333, 94760, 'ninety-four thousand seven hundred sixty'); INSERT INTO t3 VALUES(3334, 1365, 'one thousand three hundred sixty-five'); INSERT INTO t3 VALUES(3335, 64789, 'sixty-four thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(3336, 91166, 'ninety-one thousand one hundred sixty-six'); INSERT INTO t3 VALUES(3337, 95275, 'ninety-five thousand two hundred seventy-five'); INSERT INTO t3 VALUES(3338, 29549, 'twenty-nine thousand five hundred forty-nine'); INSERT INTO t3 VALUES(3339, 3192, 'three thousand one hundred ninety-two'); INSERT INTO t3 VALUES(3340, 22206, 'twenty-two thousand two hundred six'); INSERT INTO t3 VALUES(3341, 24498, 'twenty-four thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(3342, 96383, 'ninety-six thousand three hundred eighty-three'); INSERT INTO t3 VALUES(3343, 56472, 'fifty-six thousand four hundred seventy-two'); INSERT INTO t3 VALUES(3344, 19309, 'nineteen thousand three hundred nine'); INSERT INTO t3 VALUES(3345, 28583, 'twenty-eight thousand five hundred eighty-three'); INSERT INTO t3 VALUES(3346, 18820, 'eighteen thousand eight hundred twenty'); INSERT INTO t3 VALUES(3347, 14519, 'fourteen thousand five hundred nineteen'); INSERT INTO t3 VALUES(3348, 19863, 'nineteen thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(3349, 82008, 'eighty-two thousand eight'); INSERT INTO t3 VALUES(3350, 37956, 'thirty-seven thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(3351, 77175, 'seventy-seven thousand one hundred seventy-five'); INSERT INTO t3 VALUES(3352, 76470, 'seventy-six thousand four hundred seventy'); INSERT INTO t3 VALUES(3353, 56710, 'fifty-six thousand seven hundred ten'); INSERT INTO t3 VALUES(3354, 36240, 'thirty-six thousand two hundred forty'); INSERT INTO t3 VALUES(3355, 13736, 'thirteen thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(3356, 26905, 'twenty-six thousand nine hundred five'); INSERT INTO t3 VALUES(3357, 94429, 'ninety-four thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(3358, 69232, 'sixty-nine thousand two hundred thirty-two'); INSERT INTO t3 VALUES(3359, 13347, 'thirteen thousand three hundred forty-seven'); INSERT INTO t3 VALUES(3360, 41222, 'forty-one thousand two hundred twenty-two'); INSERT INTO t3 VALUES(3361, 22915, 'twenty-two thousand nine hundred fifteen'); INSERT INTO t3 VALUES(3362, 99782, 'ninety-nine thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(3363, 39237, 'thirty-nine thousand two hundred thirty-seven'); INSERT INTO t3 VALUES(3364, 59013, 'fifty-nine thousand thirteen'); INSERT INTO t3 VALUES(3365, 35271, 'thirty-five thousand two hundred seventy-one'); INSERT INTO t3 VALUES(3366, 87957, 'eighty-seven thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(3367, 96047, 'ninety-six thousand forty-seven'); INSERT INTO t3 VALUES(3368, 44935, 'forty-four thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(3369, 48207, 'forty-eight thousand two hundred seven'); INSERT INTO t3 VALUES(3370, 59682, 'fifty-nine thousand six hundred eighty-two'); INSERT INTO t3 VALUES(3371, 34427, 'thirty-four thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(3372, 76097, 'seventy-six thousand ninety-seven'); INSERT INTO t3 VALUES(3373, 6940, 'six thousand nine hundred forty'); INSERT INTO t3 VALUES(3374, 34411, 'thirty-four thousand four hundred eleven'); INSERT INTO t3 VALUES(3375, 76909, 'seventy-six thousand nine hundred nine'); INSERT INTO t3 VALUES(3376, 37211, 'thirty-seven thousand two hundred eleven'); INSERT INTO t3 VALUES(3377, 33070, 'thirty-three thousand seventy'); INSERT INTO t3 VALUES(3378, 62925, 'sixty-two thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(3379, 10312, 'ten thousand three hundred twelve'); INSERT INTO t3 VALUES(3380, 87309, 'eighty-seven thousand three hundred nine'); INSERT INTO t3 VALUES(3381, 51257, 'fifty-one thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(3382, 41032, 'forty-one thousand thirty-two'); INSERT INTO t3 VALUES(3383, 12112, 'twelve thousand one hundred twelve'); INSERT INTO t3 VALUES(3384, 83862, 'eighty-three thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(3385, 18658, 'eighteen thousand six hundred fifty-eight'); INSERT INTO t3 VALUES(3386, 66391, 'sixty-six thousand three hundred ninety-one'); INSERT INTO t3 VALUES(3387, 53702, 'fifty-three thousand seven hundred two'); INSERT INTO t3 VALUES(3388, 70524, 'seventy thousand five hundred twenty-four'); INSERT INTO t3 VALUES(3389, 76634, 'seventy-six thousand six hundred thirty-four'); INSERT INTO t3 VALUES(3390, 70354, 'seventy thousand three hundred fifty-four'); INSERT INTO t3 VALUES(3391, 25667, 'twenty-five thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(3392, 51157, 'fifty-one thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(3393, 53810, 'fifty-three thousand eight hundred ten'); INSERT INTO t3 VALUES(3394, 43269, 'forty-three thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(3395, 56935, 'fifty-six thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(3396, 69881, 'sixty-nine thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(3397, 80011, 'eighty thousand eleven'); INSERT INTO t3 VALUES(3398, 3626, 'three thousand six hundred twenty-six'); INSERT INTO t3 VALUES(3399, 73648, 'seventy-three thousand six hundred forty-eight'); INSERT INTO t3 VALUES(3400, 62576, 'sixty-two thousand five hundred seventy-six'); INSERT INTO t3 VALUES(3401, 93419, 'ninety-three thousand four hundred nineteen'); INSERT INTO t3 VALUES(3402, 14079, 'fourteen thousand seventy-nine'); INSERT INTO t3 VALUES(3403, 52611, 'fifty-two thousand six hundred eleven'); INSERT INTO t3 VALUES(3404, 28500, 'twenty-eight thousand five hundred'); INSERT INTO t3 VALUES(3405, 38930, 'thirty-eight thousand nine hundred thirty'); INSERT INTO t3 VALUES(3406, 91958, 'ninety-one thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(3407, 20713, 'twenty thousand seven hundred thirteen'); INSERT INTO t3 VALUES(3408, 93978, 'ninety-three thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(3409, 49774, 'forty-nine thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(3410, 1238, 'one thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(3411, 9685, 'nine thousand six hundred eighty-five'); INSERT INTO t3 VALUES(3412, 9456, 'nine thousand four hundred fifty-six'); INSERT INTO t3 VALUES(3413, 44453, 'forty-four thousand four hundred fifty-three'); INSERT INTO t3 VALUES(3414, 91541, 'ninety-one thousand five hundred forty-one'); INSERT INTO t3 VALUES(3415, 14691, 'fourteen thousand six hundred ninety-one'); INSERT INTO t3 VALUES(3416, 53203, 'fifty-three thousand two hundred three'); INSERT INTO t3 VALUES(3417, 94105, 'ninety-four thousand one hundred five'); INSERT INTO t3 VALUES(3418, 60224, 'sixty thousand two hundred twenty-four'); INSERT INTO t3 VALUES(3419, 89945, 'eighty-nine thousand nine hundred forty-five'); INSERT INTO t3 VALUES(3420, 17324, 'seventeen thousand three hundred twenty-four'); INSERT INTO t3 VALUES(3421, 17782, 'seventeen thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(3422, 48307, 'forty-eight thousand three hundred seven'); INSERT INTO t3 VALUES(3423, 32385, 'thirty-two thousand three hundred eighty-five'); INSERT INTO t3 VALUES(3424, 9722, 'nine thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(3425, 81913, 'eighty-one thousand nine hundred thirteen'); INSERT INTO t3 VALUES(3426, 11459, 'eleven thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(3427, 58685, 'fifty-eight thousand six hundred eighty-five'); INSERT INTO t3 VALUES(3428, 46908, 'forty-six thousand nine hundred eight'); INSERT INTO t3 VALUES(3429, 34277, 'thirty-four thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(3430, 83881, 'eighty-three thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(3431, 1014, 'one thousand fourteen'); INSERT INTO t3 VALUES(3432, 5613, 'five thousand six hundred thirteen'); INSERT INTO t3 VALUES(3433, 37723, 'thirty-seven thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(3434, 1412, 'one thousand four hundred twelve'); INSERT INTO t3 VALUES(3435, 29531, 'twenty-nine thousand five hundred thirty-one'); INSERT INTO t3 VALUES(3436, 52687, 'fifty-two thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(3437, 58641, 'fifty-eight thousand six hundred forty-one'); INSERT INTO t3 VALUES(3438, 14948, 'fourteen thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(3439, 30402, 'thirty thousand four hundred two'); INSERT INTO t3 VALUES(3440, 10454, 'ten thousand four hundred fifty-four'); INSERT INTO t3 VALUES(3441, 3681, 'three thousand six hundred eighty-one'); INSERT INTO t3 VALUES(3442, 26793, 'twenty-six thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(3443, 30432, 'thirty thousand four hundred thirty-two'); INSERT INTO t3 VALUES(3444, 97488, 'ninety-seven thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(3445, 50850, 'fifty thousand eight hundred fifty'); INSERT INTO t3 VALUES(3446, 27925, 'twenty-seven thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(3447, 12718, 'twelve thousand seven hundred eighteen'); INSERT INTO t3 VALUES(3448, 92578, 'ninety-two thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(3449, 51978, 'fifty-one thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(3450, 86646, 'eighty-six thousand six hundred forty-six'); INSERT INTO t3 VALUES(3451, 33086, 'thirty-three thousand eighty-six'); INSERT INTO t3 VALUES(3452, 55619, 'fifty-five thousand six hundred nineteen'); INSERT INTO t3 VALUES(3453, 65250, 'sixty-five thousand two hundred fifty'); INSERT INTO t3 VALUES(3454, 59911, 'fifty-nine thousand nine hundred eleven'); INSERT INTO t3 VALUES(3455, 81759, 'eighty-one thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(3456, 71062, 'seventy-one thousand sixty-two'); INSERT INTO t3 VALUES(3457, 10868, 'ten thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(3458, 70403, 'seventy thousand four hundred three'); INSERT INTO t3 VALUES(3459, 45063, 'forty-five thousand sixty-three'); INSERT INTO t3 VALUES(3460, 45529, 'forty-five thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(3461, 94216, 'ninety-four thousand two hundred sixteen'); INSERT INTO t3 VALUES(3462, 24337, 'twenty-four thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(3463, 7640, 'seven thousand six hundred forty'); INSERT INTO t3 VALUES(3464, 16664, 'sixteen thousand six hundred sixty-four'); INSERT INTO t3 VALUES(3465, 37270, 'thirty-seven thousand two hundred seventy'); INSERT INTO t3 VALUES(3466, 49452, 'forty-nine thousand four hundred fifty-two'); INSERT INTO t3 VALUES(3467, 1811, 'one thousand eight hundred eleven'); INSERT INTO t3 VALUES(3468, 79888, 'seventy-nine thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(3469, 15557, 'fifteen thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(3470, 94193, 'ninety-four thousand one hundred ninety-three'); INSERT INTO t3 VALUES(3471, 2569, 'two thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(3472, 87304, 'eighty-seven thousand three hundred four'); INSERT INTO t3 VALUES(3473, 11008, 'eleven thousand eight'); INSERT INTO t3 VALUES(3474, 16952, 'sixteen thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(3475, 86084, 'eighty-six thousand eighty-four'); INSERT INTO t3 VALUES(3476, 83241, 'eighty-three thousand two hundred forty-one'); INSERT INTO t3 VALUES(3477, 64364, 'sixty-four thousand three hundred sixty-four'); INSERT INTO t3 VALUES(3478, 78288, 'seventy-eight thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(3479, 14905, 'fourteen thousand nine hundred five'); INSERT INTO t3 VALUES(3480, 69033, 'sixty-nine thousand thirty-three'); INSERT INTO t3 VALUES(3481, 53276, 'fifty-three thousand two hundred seventy-six'); INSERT INTO t3 VALUES(3482, 21153, 'twenty-one thousand one hundred fifty-three'); INSERT INTO t3 VALUES(3483, 37373, 'thirty-seven thousand three hundred seventy-three'); INSERT INTO t3 VALUES(3484, 52384, 'fifty-two thousand three hundred eighty-four'); INSERT INTO t3 VALUES(3485, 63492, 'sixty-three thousand four hundred ninety-two'); INSERT INTO t3 VALUES(3486, 19040, 'nineteen thousand forty'); INSERT INTO t3 VALUES(3487, 15865, 'fifteen thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(3488, 12410, 'twelve thousand four hundred ten'); INSERT INTO t3 VALUES(3489, 5191, 'five thousand one hundred ninety-one'); INSERT INTO t3 VALUES(3490, 8405, 'eight thousand four hundred five'); INSERT INTO t3 VALUES(3491, 21078, 'twenty-one thousand seventy-eight'); INSERT INTO t3 VALUES(3492, 70681, 'seventy thousand six hundred eighty-one'); INSERT INTO t3 VALUES(3493, 19842, 'nineteen thousand eight hundred forty-two'); INSERT INTO t3 VALUES(3494, 36600, 'thirty-six thousand six hundred'); INSERT INTO t3 VALUES(3495, 34675, 'thirty-four thousand six hundred seventy-five'); INSERT INTO t3 VALUES(3496, 85508, 'eighty-five thousand five hundred eight'); INSERT INTO t3 VALUES(3497, 81047, 'eighty-one thousand forty-seven'); INSERT INTO t3 VALUES(3498, 20026, 'twenty thousand twenty-six'); INSERT INTO t3 VALUES(3499, 51140, 'fifty-one thousand one hundred forty'); INSERT INTO t3 VALUES(3500, 38104, 'thirty-eight thousand one hundred four'); INSERT INTO t3 VALUES(3501, 40857, 'forty thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(3502, 19692, 'nineteen thousand six hundred ninety-two'); INSERT INTO t3 VALUES(3503, 75578, 'seventy-five thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(3504, 7332, 'seven thousand three hundred thirty-two'); INSERT INTO t3 VALUES(3505, 50317, 'fifty thousand three hundred seventeen'); INSERT INTO t3 VALUES(3506, 88095, 'eighty-eight thousand ninety-five'); INSERT INTO t3 VALUES(3507, 79423, 'seventy-nine thousand four hundred twenty-three'); INSERT INTO t3 VALUES(3508, 95804, 'ninety-five thousand eight hundred four'); INSERT INTO t3 VALUES(3509, 50175, 'fifty thousand one hundred seventy-five'); INSERT INTO t3 VALUES(3510, 67967, 'sixty-seven thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(3511, 44107, 'forty-four thousand one hundred seven'); INSERT INTO t3 VALUES(3512, 4732, 'four thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(3513, 6006, 'six thousand six'); INSERT INTO t3 VALUES(3514, 89241, 'eighty-nine thousand two hundred forty-one'); INSERT INTO t3 VALUES(3515, 33098, 'thirty-three thousand ninety-eight'); INSERT INTO t3 VALUES(3516, 53970, 'fifty-three thousand nine hundred seventy'); INSERT INTO t3 VALUES(3517, 50673, 'fifty thousand six hundred seventy-three'); INSERT INTO t3 VALUES(3518, 71248, 'seventy-one thousand two hundred forty-eight'); INSERT INTO t3 VALUES(3519, 38851, 'thirty-eight thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(3520, 75879, 'seventy-five thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(3521, 55963, 'fifty-five thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(3522, 81847, 'eighty-one thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(3523, 20088, 'twenty thousand eighty-eight'); INSERT INTO t3 VALUES(3524, 24424, 'twenty-four thousand four hundred twenty-four'); INSERT INTO t3 VALUES(3525, 98812, 'ninety-eight thousand eight hundred twelve'); INSERT INTO t3 VALUES(3526, 79831, 'seventy-nine thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(3527, 82159, 'eighty-two thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(3528, 84576, 'eighty-four thousand five hundred seventy-six'); INSERT INTO t3 VALUES(3529, 87260, 'eighty-seven thousand two hundred sixty'); INSERT INTO t3 VALUES(3530, 25149, 'twenty-five thousand one hundred forty-nine'); INSERT INTO t3 VALUES(3531, 36043, 'thirty-six thousand forty-three'); INSERT INTO t3 VALUES(3532, 27471, 'twenty-seven thousand four hundred seventy-one'); INSERT INTO t3 VALUES(3533, 74261, 'seventy-four thousand two hundred sixty-one'); INSERT INTO t3 VALUES(3534, 80999, 'eighty thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(3535, 92131, 'ninety-two thousand one hundred thirty-one'); INSERT INTO t3 VALUES(3536, 37716, 'thirty-seven thousand seven hundred sixteen'); INSERT INTO t3 VALUES(3537, 73671, 'seventy-three thousand six hundred seventy-one'); INSERT INTO t3 VALUES(3538, 12676, 'twelve thousand six hundred seventy-six'); INSERT INTO t3 VALUES(3539, 61303, 'sixty-one thousand three hundred three'); INSERT INTO t3 VALUES(3540, 77151, 'seventy-seven thousand one hundred fifty-one'); INSERT INTO t3 VALUES(3541, 10589, 'ten thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(3542, 99886, 'ninety-nine thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(3543, 44288, 'forty-four thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(3544, 37964, 'thirty-seven thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(3545, 51476, 'fifty-one thousand four hundred seventy-six'); INSERT INTO t3 VALUES(3546, 38822, 'thirty-eight thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(3547, 89678, 'eighty-nine thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(3548, 94251, 'ninety-four thousand two hundred fifty-one'); INSERT INTO t3 VALUES(3549, 86262, 'eighty-six thousand two hundred sixty-two'); INSERT INTO t3 VALUES(3550, 35023, 'thirty-five thousand twenty-three'); INSERT INTO t3 VALUES(3551, 76586, 'seventy-six thousand five hundred eighty-six'); INSERT INTO t3 VALUES(3552, 6219, 'six thousand two hundred nineteen'); INSERT INTO t3 VALUES(3553, 14553, 'fourteen thousand five hundred fifty-three'); INSERT INTO t3 VALUES(3554, 11137, 'eleven thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(3555, 38217, 'thirty-eight thousand two hundred seventeen'); INSERT INTO t3 VALUES(3556, 35364, 'thirty-five thousand three hundred sixty-four'); INSERT INTO t3 VALUES(3557, 10977, 'ten thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(3558, 30006, 'thirty thousand six'); INSERT INTO t3 VALUES(3559, 64493, 'sixty-four thousand four hundred ninety-three'); INSERT INTO t3 VALUES(3560, 69257, 'sixty-nine thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(3561, 55981, 'fifty-five thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(3562, 98127, 'ninety-eight thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(3563, 28253, 'twenty-eight thousand two hundred fifty-three'); INSERT INTO t3 VALUES(3564, 35260, 'thirty-five thousand two hundred sixty'); INSERT INTO t3 VALUES(3565, 23799, 'twenty-three thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(3566, 59537, 'fifty-nine thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(3567, 87676, 'eighty-seven thousand six hundred seventy-six'); INSERT INTO t3 VALUES(3568, 95457, 'ninety-five thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(3569, 21582, 'twenty-one thousand five hundred eighty-two'); INSERT INTO t3 VALUES(3570, 67797, 'sixty-seven thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(3571, 42930, 'forty-two thousand nine hundred thirty'); INSERT INTO t3 VALUES(3572, 48312, 'forty-eight thousand three hundred twelve'); INSERT INTO t3 VALUES(3573, 41226, 'forty-one thousand two hundred twenty-six'); INSERT INTO t3 VALUES(3574, 56975, 'fifty-six thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(3575, 18167, 'eighteen thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(3576, 15265, 'fifteen thousand two hundred sixty-five'); INSERT INTO t3 VALUES(3577, 84769, 'eighty-four thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(3578, 16040, 'sixteen thousand forty'); INSERT INTO t3 VALUES(3579, 22085, 'twenty-two thousand eighty-five'); INSERT INTO t3 VALUES(3580, 62524, 'sixty-two thousand five hundred twenty-four'); INSERT INTO t3 VALUES(3581, 34443, 'thirty-four thousand four hundred forty-three'); INSERT INTO t3 VALUES(3582, 53238, 'fifty-three thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(3583, 41441, 'forty-one thousand four hundred forty-one'); INSERT INTO t3 VALUES(3584, 76927, 'seventy-six thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(3585, 97977, 'ninety-seven thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(3586, 18492, 'eighteen thousand four hundred ninety-two'); INSERT INTO t3 VALUES(3587, 60198, 'sixty thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(3588, 23384, 'twenty-three thousand three hundred eighty-four'); INSERT INTO t3 VALUES(3589, 12543, 'twelve thousand five hundred forty-three'); INSERT INTO t3 VALUES(3590, 83354, 'eighty-three thousand three hundred fifty-four'); INSERT INTO t3 VALUES(3591, 32010, 'thirty-two thousand ten'); INSERT INTO t3 VALUES(3592, 41820, 'forty-one thousand eight hundred twenty'); INSERT INTO t3 VALUES(3593, 60217, 'sixty thousand two hundred seventeen'); INSERT INTO t3 VALUES(3594, 45614, 'forty-five thousand six hundred fourteen'); INSERT INTO t3 VALUES(3595, 81524, 'eighty-one thousand five hundred twenty-four'); INSERT INTO t3 VALUES(3596, 6468, 'six thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(3597, 3865, 'three thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(3598, 25574, 'twenty-five thousand five hundred seventy-four'); INSERT INTO t3 VALUES(3599, 90048, 'ninety thousand forty-eight'); INSERT INTO t3 VALUES(3600, 40344, 'forty thousand three hundred forty-four'); INSERT INTO t3 VALUES(3601, 14343, 'fourteen thousand three hundred forty-three'); INSERT INTO t3 VALUES(3602, 9495, 'nine thousand four hundred ninety-five'); INSERT INTO t3 VALUES(3603, 12641, 'twelve thousand six hundred forty-one'); INSERT INTO t3 VALUES(3604, 9795, 'nine thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(3605, 34230, 'thirty-four thousand two hundred thirty'); INSERT INTO t3 VALUES(3606, 90559, 'ninety thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(3607, 94175, 'ninety-four thousand one hundred seventy-five'); INSERT INTO t3 VALUES(3608, 84020, 'eighty-four thousand twenty'); INSERT INTO t3 VALUES(3609, 46560, 'forty-six thousand five hundred sixty'); INSERT INTO t3 VALUES(3610, 59520, 'fifty-nine thousand five hundred twenty'); INSERT INTO t3 VALUES(3611, 6613, 'six thousand six hundred thirteen'); INSERT INTO t3 VALUES(3612, 86324, 'eighty-six thousand three hundred twenty-four'); INSERT INTO t3 VALUES(3613, 250, 'two hundred fifty'); INSERT INTO t3 VALUES(3614, 69136, 'sixty-nine thousand one hundred thirty-six'); INSERT INTO t3 VALUES(3615, 92537, 'ninety-two thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(3616, 13115, 'thirteen thousand one hundred fifteen'); INSERT INTO t3 VALUES(3617, 23907, 'twenty-three thousand nine hundred seven'); INSERT INTO t3 VALUES(3618, 9513, 'nine thousand five hundred thirteen'); INSERT INTO t3 VALUES(3619, 26982, 'twenty-six thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(3620, 7879, 'seven thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(3621, 92331, 'ninety-two thousand three hundred thirty-one'); INSERT INTO t3 VALUES(3622, 2880, 'two thousand eight hundred eighty'); INSERT INTO t3 VALUES(3623, 99525, 'ninety-nine thousand five hundred twenty-five'); INSERT INTO t3 VALUES(3624, 46522, 'forty-six thousand five hundred twenty-two'); INSERT INTO t3 VALUES(3625, 23039, 'twenty-three thousand thirty-nine'); INSERT INTO t3 VALUES(3626, 34304, 'thirty-four thousand three hundred four'); INSERT INTO t3 VALUES(3627, 78013, 'seventy-eight thousand thirteen'); INSERT INTO t3 VALUES(3628, 94249, 'ninety-four thousand two hundred forty-nine'); INSERT INTO t3 VALUES(3629, 2279, 'two thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(3630, 53610, 'fifty-three thousand six hundred ten'); INSERT INTO t3 VALUES(3631, 63129, 'sixty-three thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(3632, 8500, 'eight thousand five hundred'); INSERT INTO t3 VALUES(3633, 53798, 'fifty-three thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(3634, 38422, 'thirty-eight thousand four hundred twenty-two'); INSERT INTO t3 VALUES(3635, 10541, 'ten thousand five hundred forty-one'); INSERT INTO t3 VALUES(3636, 49289, 'forty-nine thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(3637, 49273, 'forty-nine thousand two hundred seventy-three'); INSERT INTO t3 VALUES(3638, 91803, 'ninety-one thousand eight hundred three'); INSERT INTO t3 VALUES(3639, 12468, 'twelve thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(3640, 44785, 'forty-four thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(3641, 95707, 'ninety-five thousand seven hundred seven'); INSERT INTO t3 VALUES(3642, 49976, 'forty-nine thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(3643, 86860, 'eighty-six thousand eight hundred sixty'); INSERT INTO t3 VALUES(3644, 92127, 'ninety-two thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(3645, 26431, 'twenty-six thousand four hundred thirty-one'); INSERT INTO t3 VALUES(3646, 92262, 'ninety-two thousand two hundred sixty-two'); INSERT INTO t3 VALUES(3647, 37206, 'thirty-seven thousand two hundred six'); INSERT INTO t3 VALUES(3648, 91060, 'ninety-one thousand sixty'); INSERT INTO t3 VALUES(3649, 94561, 'ninety-four thousand five hundred sixty-one'); INSERT INTO t3 VALUES(3650, 98528, 'ninety-eight thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(3651, 9871, 'nine thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(3652, 82124, 'eighty-two thousand one hundred twenty-four'); INSERT INTO t3 VALUES(3653, 14270, 'fourteen thousand two hundred seventy'); INSERT INTO t3 VALUES(3654, 12047, 'twelve thousand forty-seven'); INSERT INTO t3 VALUES(3655, 75356, 'seventy-five thousand three hundred fifty-six'); INSERT INTO t3 VALUES(3656, 15419, 'fifteen thousand four hundred nineteen'); INSERT INTO t3 VALUES(3657, 67423, 'sixty-seven thousand four hundred twenty-three'); INSERT INTO t3 VALUES(3658, 42790, 'forty-two thousand seven hundred ninety'); INSERT INTO t3 VALUES(3659, 76395, 'seventy-six thousand three hundred ninety-five'); INSERT INTO t3 VALUES(3660, 94864, 'ninety-four thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(3661, 52231, 'fifty-two thousand two hundred thirty-one'); INSERT INTO t3 VALUES(3662, 80409, 'eighty thousand four hundred nine'); INSERT INTO t3 VALUES(3663, 17263, 'seventeen thousand two hundred sixty-three'); INSERT INTO t3 VALUES(3664, 15859, 'fifteen thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(3665, 58869, 'fifty-eight thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(3666, 90772, 'ninety thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(3667, 17022, 'seventeen thousand twenty-two'); INSERT INTO t3 VALUES(3668, 20295, 'twenty thousand two hundred ninety-five'); INSERT INTO t3 VALUES(3669, 66309, 'sixty-six thousand three hundred nine'); INSERT INTO t3 VALUES(3670, 80008, 'eighty thousand eight'); INSERT INTO t3 VALUES(3671, 17712, 'seventeen thousand seven hundred twelve'); INSERT INTO t3 VALUES(3672, 66589, 'sixty-six thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(3673, 28283, 'twenty-eight thousand two hundred eighty-three'); INSERT INTO t3 VALUES(3674, 39222, 'thirty-nine thousand two hundred twenty-two'); INSERT INTO t3 VALUES(3675, 48453, 'forty-eight thousand four hundred fifty-three'); INSERT INTO t3 VALUES(3676, 23555, 'twenty-three thousand five hundred fifty-five'); INSERT INTO t3 VALUES(3677, 91764, 'ninety-one thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(3678, 22594, 'twenty-two thousand five hundred ninety-four'); INSERT INTO t3 VALUES(3679, 46680, 'forty-six thousand six hundred eighty'); INSERT INTO t3 VALUES(3680, 76455, 'seventy-six thousand four hundred fifty-five'); INSERT INTO t3 VALUES(3681, 61116, 'sixty-one thousand one hundred sixteen'); INSERT INTO t3 VALUES(3682, 9267, 'nine thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(3683, 73619, 'seventy-three thousand six hundred nineteen'); INSERT INTO t3 VALUES(3684, 4314, 'four thousand three hundred fourteen'); INSERT INTO t3 VALUES(3685, 47379, 'forty-seven thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(3686, 27913, 'twenty-seven thousand nine hundred thirteen'); INSERT INTO t3 VALUES(3687, 40459, 'forty thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(3688, 87849, 'eighty-seven thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(3689, 73921, 'seventy-three thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(3690, 27243, 'twenty-seven thousand two hundred forty-three'); INSERT INTO t3 VALUES(3691, 39125, 'thirty-nine thousand one hundred twenty-five'); INSERT INTO t3 VALUES(3692, 56011, 'fifty-six thousand eleven'); INSERT INTO t3 VALUES(3693, 85383, 'eighty-five thousand three hundred eighty-three'); INSERT INTO t3 VALUES(3694, 74158, 'seventy-four thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(3695, 24199, 'twenty-four thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(3696, 44257, 'forty-four thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(3697, 38808, 'thirty-eight thousand eight hundred eight'); INSERT INTO t3 VALUES(3698, 11852, 'eleven thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(3699, 74550, 'seventy-four thousand five hundred fifty'); INSERT INTO t3 VALUES(3700, 79099, 'seventy-nine thousand ninety-nine'); INSERT INTO t3 VALUES(3701, 58589, 'fifty-eight thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(3702, 9158, 'nine thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(3703, 16166, 'sixteen thousand one hundred sixty-six'); INSERT INTO t3 VALUES(3704, 84637, 'eighty-four thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(3705, 83306, 'eighty-three thousand three hundred six'); INSERT INTO t3 VALUES(3706, 21595, 'twenty-one thousand five hundred ninety-five'); INSERT INTO t3 VALUES(3707, 2151, 'two thousand one hundred fifty-one'); INSERT INTO t3 VALUES(3708, 44562, 'forty-four thousand five hundred sixty-two'); INSERT INTO t3 VALUES(3709, 70876, 'seventy thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(3710, 81209, 'eighty-one thousand two hundred nine'); INSERT INTO t3 VALUES(3711, 38502, 'thirty-eight thousand five hundred two'); INSERT INTO t3 VALUES(3712, 5252, 'five thousand two hundred fifty-two'); INSERT INTO t3 VALUES(3713, 46419, 'forty-six thousand four hundred nineteen'); INSERT INTO t3 VALUES(3714, 31465, 'thirty-one thousand four hundred sixty-five'); INSERT INTO t3 VALUES(3715, 88555, 'eighty-eight thousand five hundred fifty-five'); INSERT INTO t3 VALUES(3716, 63170, 'sixty-three thousand one hundred seventy'); INSERT INTO t3 VALUES(3717, 49868, 'forty-nine thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(3718, 90823, 'ninety thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(3719, 69446, 'sixty-nine thousand four hundred forty-six'); INSERT INTO t3 VALUES(3720, 26892, 'twenty-six thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(3721, 17543, 'seventeen thousand five hundred forty-three'); INSERT INTO t3 VALUES(3722, 33844, 'thirty-three thousand eight hundred forty-four'); INSERT INTO t3 VALUES(3723, 29478, 'twenty-nine thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(3724, 96685, 'ninety-six thousand six hundred eighty-five'); INSERT INTO t3 VALUES(3725, 38526, 'thirty-eight thousand five hundred twenty-six'); INSERT INTO t3 VALUES(3726, 23760, 'twenty-three thousand seven hundred sixty'); INSERT INTO t3 VALUES(3727, 22053, 'twenty-two thousand fifty-three'); INSERT INTO t3 VALUES(3728, 41143, 'forty-one thousand one hundred forty-three'); INSERT INTO t3 VALUES(3729, 16812, 'sixteen thousand eight hundred twelve'); INSERT INTO t3 VALUES(3730, 88806, 'eighty-eight thousand eight hundred six'); INSERT INTO t3 VALUES(3731, 57290, 'fifty-seven thousand two hundred ninety'); INSERT INTO t3 VALUES(3732, 46403, 'forty-six thousand four hundred three'); INSERT INTO t3 VALUES(3733, 14487, 'fourteen thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(3734, 76705, 'seventy-six thousand seven hundred five'); INSERT INTO t3 VALUES(3735, 50634, 'fifty thousand six hundred thirty-four'); INSERT INTO t3 VALUES(3736, 9062, 'nine thousand sixty-two'); INSERT INTO t3 VALUES(3737, 1788, 'one thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(3738, 25958, 'twenty-five thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(3739, 11601, 'eleven thousand six hundred one'); INSERT INTO t3 VALUES(3740, 74330, 'seventy-four thousand three hundred thirty'); INSERT INTO t3 VALUES(3741, 22172, 'twenty-two thousand one hundred seventy-two'); INSERT INTO t3 VALUES(3742, 42888, 'forty-two thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(3743, 5402, 'five thousand four hundred two'); INSERT INTO t3 VALUES(3744, 72775, 'seventy-two thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(3745, 90270, 'ninety thousand two hundred seventy'); INSERT INTO t3 VALUES(3746, 5137, 'five thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(3747, 10295, 'ten thousand two hundred ninety-five'); INSERT INTO t3 VALUES(3748, 94444, 'ninety-four thousand four hundred forty-four'); INSERT INTO t3 VALUES(3749, 75640, 'seventy-five thousand six hundred forty'); INSERT INTO t3 VALUES(3750, 51028, 'fifty-one thousand twenty-eight'); INSERT INTO t3 VALUES(3751, 95855, 'ninety-five thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(3752, 3382, 'three thousand three hundred eighty-two'); INSERT INTO t3 VALUES(3753, 7116, 'seven thousand one hundred sixteen'); INSERT INTO t3 VALUES(3754, 56076, 'fifty-six thousand seventy-six'); INSERT INTO t3 VALUES(3755, 62902, 'sixty-two thousand nine hundred two'); INSERT INTO t3 VALUES(3756, 94747, 'ninety-four thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(3757, 7483, 'seven thousand four hundred eighty-three'); INSERT INTO t3 VALUES(3758, 79276, 'seventy-nine thousand two hundred seventy-six'); INSERT INTO t3 VALUES(3759, 48065, 'forty-eight thousand sixty-five'); INSERT INTO t3 VALUES(3760, 78755, 'seventy-eight thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(3761, 90005, 'ninety thousand five'); INSERT INTO t3 VALUES(3762, 52348, 'fifty-two thousand three hundred forty-eight'); INSERT INTO t3 VALUES(3763, 38175, 'thirty-eight thousand one hundred seventy-five'); INSERT INTO t3 VALUES(3764, 53580, 'fifty-three thousand five hundred eighty'); INSERT INTO t3 VALUES(3765, 12084, 'twelve thousand eighty-four'); INSERT INTO t3 VALUES(3766, 92991, 'ninety-two thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(3767, 47407, 'forty-seven thousand four hundred seven'); INSERT INTO t3 VALUES(3768, 41929, 'forty-one thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(3769, 82296, 'eighty-two thousand two hundred ninety-six'); INSERT INTO t3 VALUES(3770, 63828, 'sixty-three thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(3771, 21283, 'twenty-one thousand two hundred eighty-three'); INSERT INTO t3 VALUES(3772, 89438, 'eighty-nine thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(3773, 24512, 'twenty-four thousand five hundred twelve'); INSERT INTO t3 VALUES(3774, 66007, 'sixty-six thousand seven'); INSERT INTO t3 VALUES(3775, 72757, 'seventy-two thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(3776, 41536, 'forty-one thousand five hundred thirty-six'); INSERT INTO t3 VALUES(3777, 71384, 'seventy-one thousand three hundred eighty-four'); INSERT INTO t3 VALUES(3778, 72708, 'seventy-two thousand seven hundred eight'); INSERT INTO t3 VALUES(3779, 74895, 'seventy-four thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(3780, 81670, 'eighty-one thousand six hundred seventy'); INSERT INTO t3 VALUES(3781, 82046, 'eighty-two thousand forty-six'); INSERT INTO t3 VALUES(3782, 21869, 'twenty-one thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(3783, 33329, 'thirty-three thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(3784, 77826, 'seventy-seven thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(3785, 13056, 'thirteen thousand fifty-six'); INSERT INTO t3 VALUES(3786, 86200, 'eighty-six thousand two hundred'); INSERT INTO t3 VALUES(3787, 31648, 'thirty-one thousand six hundred forty-eight'); INSERT INTO t3 VALUES(3788, 57542, 'fifty-seven thousand five hundred forty-two'); INSERT INTO t3 VALUES(3789, 1374, 'one thousand three hundred seventy-four'); INSERT INTO t3 VALUES(3790, 67665, 'sixty-seven thousand six hundred sixty-five'); INSERT INTO t3 VALUES(3791, 95754, 'ninety-five thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(3792, 35655, 'thirty-five thousand six hundred fifty-five'); INSERT INTO t3 VALUES(3793, 65333, 'sixty-five thousand three hundred thirty-three'); INSERT INTO t3 VALUES(3794, 64188, 'sixty-four thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(3795, 19698, 'nineteen thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(3796, 26736, 'twenty-six thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(3797, 14857, 'fourteen thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(3798, 42009, 'forty-two thousand nine'); INSERT INTO t3 VALUES(3799, 91156, 'ninety-one thousand one hundred fifty-six'); INSERT INTO t3 VALUES(3800, 14638, 'fourteen thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(3801, 51122, 'fifty-one thousand one hundred twenty-two'); INSERT INTO t3 VALUES(3802, 20192, 'twenty thousand one hundred ninety-two'); INSERT INTO t3 VALUES(3803, 88185, 'eighty-eight thousand one hundred eighty-five'); INSERT INTO t3 VALUES(3804, 13798, 'thirteen thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(3805, 62073, 'sixty-two thousand seventy-three'); INSERT INTO t3 VALUES(3806, 68516, 'sixty-eight thousand five hundred sixteen'); INSERT INTO t3 VALUES(3807, 88104, 'eighty-eight thousand one hundred four'); INSERT INTO t3 VALUES(3808, 55007, 'fifty-five thousand seven'); INSERT INTO t3 VALUES(3809, 49778, 'forty-nine thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(3810, 91147, 'ninety-one thousand one hundred forty-seven'); INSERT INTO t3 VALUES(3811, 48531, 'forty-eight thousand five hundred thirty-one'); INSERT INTO t3 VALUES(3812, 61940, 'sixty-one thousand nine hundred forty'); INSERT INTO t3 VALUES(3813, 79835, 'seventy-nine thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(3814, 53589, 'fifty-three thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(3815, 69097, 'sixty-nine thousand ninety-seven'); INSERT INTO t3 VALUES(3816, 35293, 'thirty-five thousand two hundred ninety-three'); INSERT INTO t3 VALUES(3817, 39234, 'thirty-nine thousand two hundred thirty-four'); INSERT INTO t3 VALUES(3818, 6271, 'six thousand two hundred seventy-one'); INSERT INTO t3 VALUES(3819, 10038, 'ten thousand thirty-eight'); INSERT INTO t3 VALUES(3820, 22953, 'twenty-two thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(3821, 99930, 'ninety-nine thousand nine hundred thirty'); INSERT INTO t3 VALUES(3822, 41920, 'forty-one thousand nine hundred twenty'); INSERT INTO t3 VALUES(3823, 65428, 'sixty-five thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(3824, 90627, 'ninety thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(3825, 76289, 'seventy-six thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(3826, 34994, 'thirty-four thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(3827, 33317, 'thirty-three thousand three hundred seventeen'); INSERT INTO t3 VALUES(3828, 15994, 'fifteen thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(3829, 6982, 'six thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(3830, 74519, 'seventy-four thousand five hundred nineteen'); INSERT INTO t3 VALUES(3831, 67713, 'sixty-seven thousand seven hundred thirteen'); INSERT INTO t3 VALUES(3832, 47487, 'forty-seven thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(3833, 78746, 'seventy-eight thousand seven hundred forty-six'); INSERT INTO t3 VALUES(3834, 35846, 'thirty-five thousand eight hundred forty-six'); INSERT INTO t3 VALUES(3835, 15850, 'fifteen thousand eight hundred fifty'); INSERT INTO t3 VALUES(3836, 79240, 'seventy-nine thousand two hundred forty'); INSERT INTO t3 VALUES(3837, 24858, 'twenty-four thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(3838, 61899, 'sixty-one thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(3839, 2494, 'two thousand four hundred ninety-four'); INSERT INTO t3 VALUES(3840, 83904, 'eighty-three thousand nine hundred four'); INSERT INTO t3 VALUES(3841, 53824, 'fifty-three thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(3842, 55396, 'fifty-five thousand three hundred ninety-six'); INSERT INTO t3 VALUES(3843, 21043, 'twenty-one thousand forty-three'); INSERT INTO t3 VALUES(3844, 26998, 'twenty-six thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(3845, 62737, 'sixty-two thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(3846, 6127, 'six thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(3847, 33690, 'thirty-three thousand six hundred ninety'); INSERT INTO t3 VALUES(3848, 23612, 'twenty-three thousand six hundred twelve'); INSERT INTO t3 VALUES(3849, 61672, 'sixty-one thousand six hundred seventy-two'); INSERT INTO t3 VALUES(3850, 98334, 'ninety-eight thousand three hundred thirty-four'); INSERT INTO t3 VALUES(3851, 15798, 'fifteen thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(3852, 9049, 'nine thousand forty-nine'); INSERT INTO t3 VALUES(3853, 68023, 'sixty-eight thousand twenty-three'); INSERT INTO t3 VALUES(3854, 13200, 'thirteen thousand two hundred'); INSERT INTO t3 VALUES(3855, 44840, 'forty-four thousand eight hundred forty'); INSERT INTO t3 VALUES(3856, 52850, 'fifty-two thousand eight hundred fifty'); INSERT INTO t3 VALUES(3857, 78920, 'seventy-eight thousand nine hundred twenty'); INSERT INTO t3 VALUES(3858, 25681, 'twenty-five thousand six hundred eighty-one'); INSERT INTO t3 VALUES(3859, 73985, 'seventy-three thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(3860, 90829, 'ninety thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(3861, 42114, 'forty-two thousand one hundred fourteen'); INSERT INTO t3 VALUES(3862, 74654, 'seventy-four thousand six hundred fifty-four'); INSERT INTO t3 VALUES(3863, 82999, 'eighty-two thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(3864, 86163, 'eighty-six thousand one hundred sixty-three'); INSERT INTO t3 VALUES(3865, 35046, 'thirty-five thousand forty-six'); INSERT INTO t3 VALUES(3866, 26, 'twenty-six'); INSERT INTO t3 VALUES(3867, 34716, 'thirty-four thousand seven hundred sixteen'); INSERT INTO t3 VALUES(3868, 52005, 'fifty-two thousand five'); INSERT INTO t3 VALUES(3869, 71929, 'seventy-one thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(3870, 98714, 'ninety-eight thousand seven hundred fourteen'); INSERT INTO t3 VALUES(3871, 80296, 'eighty thousand two hundred ninety-six'); INSERT INTO t3 VALUES(3872, 14160, 'fourteen thousand one hundred sixty'); INSERT INTO t3 VALUES(3873, 17204, 'seventeen thousand two hundred four'); INSERT INTO t3 VALUES(3874, 81894, 'eighty-one thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(3875, 50209, 'fifty thousand two hundred nine'); INSERT INTO t3 VALUES(3876, 14953, 'fourteen thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(3877, 88741, 'eighty-eight thousand seven hundred forty-one'); INSERT INTO t3 VALUES(3878, 82388, 'eighty-two thousand three hundred eighty-eight'); INSERT INTO t3 VALUES(3879, 50662, 'fifty thousand six hundred sixty-two'); INSERT INTO t3 VALUES(3880, 47277, 'forty-seven thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(3881, 60580, 'sixty thousand five hundred eighty'); INSERT INTO t3 VALUES(3882, 62492, 'sixty-two thousand four hundred ninety-two'); INSERT INTO t3 VALUES(3883, 59825, 'fifty-nine thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(3884, 86562, 'eighty-six thousand five hundred sixty-two'); INSERT INTO t3 VALUES(3885, 84715, 'eighty-four thousand seven hundred fifteen'); INSERT INTO t3 VALUES(3886, 4030, 'four thousand thirty'); INSERT INTO t3 VALUES(3887, 42269, 'forty-two thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(3888, 20337, 'twenty thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(3889, 36923, 'thirty-six thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(3890, 55266, 'fifty-five thousand two hundred sixty-six'); INSERT INTO t3 VALUES(3891, 55697, 'fifty-five thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(3892, 89651, 'eighty-nine thousand six hundred fifty-one'); INSERT INTO t3 VALUES(3893, 56503, 'fifty-six thousand five hundred three'); INSERT INTO t3 VALUES(3894, 241, 'two hundred forty-one'); INSERT INTO t3 VALUES(3895, 96754, 'ninety-six thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(3896, 32415, 'thirty-two thousand four hundred fifteen'); INSERT INTO t3 VALUES(3897, 74331, 'seventy-four thousand three hundred thirty-one'); INSERT INTO t3 VALUES(3898, 6841, 'six thousand eight hundred forty-one'); INSERT INTO t3 VALUES(3899, 88591, 'eighty-eight thousand five hundred ninety-one'); INSERT INTO t3 VALUES(3900, 9138, 'nine thousand one hundred thirty-eight'); INSERT INTO t3 VALUES(3901, 64961, 'sixty-four thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(3902, 23722, 'twenty-three thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(3903, 39599, 'thirty-nine thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(3904, 42647, 'forty-two thousand six hundred forty-seven'); INSERT INTO t3 VALUES(3905, 12856, 'twelve thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(3906, 86363, 'eighty-six thousand three hundred sixty-three'); INSERT INTO t3 VALUES(3907, 29129, 'twenty-nine thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(3908, 84042, 'eighty-four thousand forty-two'); INSERT INTO t3 VALUES(3909, 13888, 'thirteen thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(3910, 9500, 'nine thousand five hundred'); INSERT INTO t3 VALUES(3911, 53484, 'fifty-three thousand four hundred eighty-four'); INSERT INTO t3 VALUES(3912, 25395, 'twenty-five thousand three hundred ninety-five'); INSERT INTO t3 VALUES(3913, 27352, 'twenty-seven thousand three hundred fifty-two'); INSERT INTO t3 VALUES(3914, 89396, 'eighty-nine thousand three hundred ninety-six'); INSERT INTO t3 VALUES(3915, 31375, 'thirty-one thousand three hundred seventy-five'); INSERT INTO t3 VALUES(3916, 60857, 'sixty thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(3917, 61172, 'sixty-one thousand one hundred seventy-two'); INSERT INTO t3 VALUES(3918, 29329, 'twenty-nine thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(3919, 27707, 'twenty-seven thousand seven hundred seven'); INSERT INTO t3 VALUES(3920, 29677, 'twenty-nine thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(3921, 40205, 'forty thousand two hundred five'); INSERT INTO t3 VALUES(3922, 45678, 'forty-five thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(3923, 99927, 'ninety-nine thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(3924, 64743, 'sixty-four thousand seven hundred forty-three'); INSERT INTO t3 VALUES(3925, 22868, 'twenty-two thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(3926, 70743, 'seventy thousand seven hundred forty-three'); INSERT INTO t3 VALUES(3927, 28192, 'twenty-eight thousand one hundred ninety-two'); INSERT INTO t3 VALUES(3928, 3302, 'three thousand three hundred two'); INSERT INTO t3 VALUES(3929, 47726, 'forty-seven thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(3930, 37683, 'thirty-seven thousand six hundred eighty-three'); INSERT INTO t3 VALUES(3931, 6905, 'six thousand nine hundred five'); INSERT INTO t3 VALUES(3932, 66454, 'sixty-six thousand four hundred fifty-four'); INSERT INTO t3 VALUES(3933, 60775, 'sixty thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(3934, 87639, 'eighty-seven thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(3935, 59479, 'fifty-nine thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(3936, 89619, 'eighty-nine thousand six hundred nineteen'); INSERT INTO t3 VALUES(3937, 40144, 'forty thousand one hundred forty-four'); INSERT INTO t3 VALUES(3938, 52613, 'fifty-two thousand six hundred thirteen'); INSERT INTO t3 VALUES(3939, 96051, 'ninety-six thousand fifty-one'); INSERT INTO t3 VALUES(3940, 24290, 'twenty-four thousand two hundred ninety'); INSERT INTO t3 VALUES(3941, 7882, 'seven thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(3942, 44252, 'forty-four thousand two hundred fifty-two'); INSERT INTO t3 VALUES(3943, 88439, 'eighty-eight thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(3944, 54009, 'fifty-four thousand nine'); INSERT INTO t3 VALUES(3945, 45373, 'forty-five thousand three hundred seventy-three'); INSERT INTO t3 VALUES(3946, 71039, 'seventy-one thousand thirty-nine'); INSERT INTO t3 VALUES(3947, 55529, 'fifty-five thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(3948, 77501, 'seventy-seven thousand five hundred one'); INSERT INTO t3 VALUES(3949, 280, 'two hundred eighty'); INSERT INTO t3 VALUES(3950, 85133, 'eighty-five thousand one hundred thirty-three'); INSERT INTO t3 VALUES(3951, 761, 'seven hundred sixty-one'); INSERT INTO t3 VALUES(3952, 43709, 'forty-three thousand seven hundred nine'); INSERT INTO t3 VALUES(3953, 39383, 'thirty-nine thousand three hundred eighty-three'); INSERT INTO t3 VALUES(3954, 71129, 'seventy-one thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(3955, 78300, 'seventy-eight thousand three hundred'); INSERT INTO t3 VALUES(3956, 15677, 'fifteen thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(3957, 45654, 'forty-five thousand six hundred fifty-four'); INSERT INTO t3 VALUES(3958, 37655, 'thirty-seven thousand six hundred fifty-five'); INSERT INTO t3 VALUES(3959, 73870, 'seventy-three thousand eight hundred seventy'); INSERT INTO t3 VALUES(3960, 13586, 'thirteen thousand five hundred eighty-six'); INSERT INTO t3 VALUES(3961, 17935, 'seventeen thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(3962, 22377, 'twenty-two thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(3963, 83852, 'eighty-three thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(3964, 82982, 'eighty-two thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(3965, 23942, 'twenty-three thousand nine hundred forty-two'); INSERT INTO t3 VALUES(3966, 4, 'four'); INSERT INTO t3 VALUES(3967, 62696, 'sixty-two thousand six hundred ninety-six'); INSERT INTO t3 VALUES(3968, 80592, 'eighty thousand five hundred ninety-two'); INSERT INTO t3 VALUES(3969, 76795, 'seventy-six thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(3970, 8968, 'eight thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(3971, 13813, 'thirteen thousand eight hundred thirteen'); INSERT INTO t3 VALUES(3972, 19275, 'nineteen thousand two hundred seventy-five'); INSERT INTO t3 VALUES(3973, 7545, 'seven thousand five hundred forty-five'); INSERT INTO t3 VALUES(3974, 93004, 'ninety-three thousand four'); INSERT INTO t3 VALUES(3975, 92311, 'ninety-two thousand three hundred eleven'); INSERT INTO t3 VALUES(3976, 50992, 'fifty thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(3977, 61181, 'sixty-one thousand one hundred eighty-one'); INSERT INTO t3 VALUES(3978, 31652, 'thirty-one thousand six hundred fifty-two'); INSERT INTO t3 VALUES(3979, 61949, 'sixty-one thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(3980, 11738, 'eleven thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(3981, 68579, 'sixty-eight thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(3982, 23943, 'twenty-three thousand nine hundred forty-three'); INSERT INTO t3 VALUES(3983, 98358, 'ninety-eight thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(3984, 84861, 'eighty-four thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(3985, 51132, 'fifty-one thousand one hundred thirty-two'); INSERT INTO t3 VALUES(3986, 56845, 'fifty-six thousand eight hundred forty-five'); INSERT INTO t3 VALUES(3987, 7917, 'seven thousand nine hundred seventeen'); INSERT INTO t3 VALUES(3988, 84918, 'eighty-four thousand nine hundred eighteen'); INSERT INTO t3 VALUES(3989, 91809, 'ninety-one thousand eight hundred nine'); INSERT INTO t3 VALUES(3990, 49335, 'forty-nine thousand three hundred thirty-five'); INSERT INTO t3 VALUES(3991, 26021, 'twenty-six thousand twenty-one'); INSERT INTO t3 VALUES(3992, 88977, 'eighty-eight thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(3993, 85932, 'eighty-five thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(3994, 81681, 'eighty-one thousand six hundred eighty-one'); INSERT INTO t3 VALUES(3995, 80234, 'eighty thousand two hundred thirty-four'); INSERT INTO t3 VALUES(3996, 26116, 'twenty-six thousand one hundred sixteen'); INSERT INTO t3 VALUES(3997, 10573, 'ten thousand five hundred seventy-three'); INSERT INTO t3 VALUES(3998, 46517, 'forty-six thousand five hundred seventeen'); INSERT INTO t3 VALUES(3999, 67769, 'sixty-seven thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(4000, 67841, 'sixty-seven thousand eight hundred forty-one'); INSERT INTO t3 VALUES(4001, 13891, 'thirteen thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(4002, 50116, 'fifty thousand one hundred sixteen'); INSERT INTO t3 VALUES(4003, 79805, 'seventy-nine thousand eight hundred five'); INSERT INTO t3 VALUES(4004, 18204, 'eighteen thousand two hundred four'); INSERT INTO t3 VALUES(4005, 42378, 'forty-two thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(4006, 23498, 'twenty-three thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(4007, 87466, 'eighty-seven thousand four hundred sixty-six'); INSERT INTO t3 VALUES(4008, 65485, 'sixty-five thousand four hundred eighty-five'); INSERT INTO t3 VALUES(4009, 58163, 'fifty-eight thousand one hundred sixty-three'); INSERT INTO t3 VALUES(4010, 11691, 'eleven thousand six hundred ninety-one'); INSERT INTO t3 VALUES(4011, 12158, 'twelve thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(4012, 82826, 'eighty-two thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(4013, 27264, 'twenty-seven thousand two hundred sixty-four'); INSERT INTO t3 VALUES(4014, 28716, 'twenty-eight thousand seven hundred sixteen'); INSERT INTO t3 VALUES(4015, 56473, 'fifty-six thousand four hundred seventy-three'); INSERT INTO t3 VALUES(4016, 89156, 'eighty-nine thousand one hundred fifty-six'); INSERT INTO t3 VALUES(4017, 22711, 'twenty-two thousand seven hundred eleven'); INSERT INTO t3 VALUES(4018, 55770, 'fifty-five thousand seven hundred seventy'); INSERT INTO t3 VALUES(4019, 95322, 'ninety-five thousand three hundred twenty-two'); INSERT INTO t3 VALUES(4020, 87100, 'eighty-seven thousand one hundred'); INSERT INTO t3 VALUES(4021, 6281, 'six thousand two hundred eighty-one'); INSERT INTO t3 VALUES(4022, 78620, 'seventy-eight thousand six hundred twenty'); INSERT INTO t3 VALUES(4023, 42110, 'forty-two thousand one hundred ten'); INSERT INTO t3 VALUES(4024, 17579, 'seventeen thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(4025, 5873, 'five thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(4026, 56565, 'fifty-six thousand five hundred sixty-five'); INSERT INTO t3 VALUES(4027, 48526, 'forty-eight thousand five hundred twenty-six'); INSERT INTO t3 VALUES(4028, 10780, 'ten thousand seven hundred eighty'); INSERT INTO t3 VALUES(4029, 97192, 'ninety-seven thousand one hundred ninety-two'); INSERT INTO t3 VALUES(4030, 46551, 'forty-six thousand five hundred fifty-one'); INSERT INTO t3 VALUES(4031, 91319, 'ninety-one thousand three hundred nineteen'); INSERT INTO t3 VALUES(4032, 72702, 'seventy-two thousand seven hundred two'); INSERT INTO t3 VALUES(4033, 18348, 'eighteen thousand three hundred forty-eight'); INSERT INTO t3 VALUES(4034, 52538, 'fifty-two thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(4035, 3279, 'three thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(4036, 19798, 'nineteen thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(4037, 95655, 'ninety-five thousand six hundred fifty-five'); INSERT INTO t3 VALUES(4038, 56546, 'fifty-six thousand five hundred forty-six'); INSERT INTO t3 VALUES(4039, 90290, 'ninety thousand two hundred ninety'); INSERT INTO t3 VALUES(4040, 18337, 'eighteen thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(4041, 17331, 'seventeen thousand three hundred thirty-one'); INSERT INTO t3 VALUES(4042, 68901, 'sixty-eight thousand nine hundred one'); INSERT INTO t3 VALUES(4043, 5405, 'five thousand four hundred five'); INSERT INTO t3 VALUES(4044, 37699, 'thirty-seven thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(4045, 71749, 'seventy-one thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(4046, 58436, 'fifty-eight thousand four hundred thirty-six'); INSERT INTO t3 VALUES(4047, 46642, 'forty-six thousand six hundred forty-two'); INSERT INTO t3 VALUES(4048, 61738, 'sixty-one thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(4049, 42610, 'forty-two thousand six hundred ten'); INSERT INTO t3 VALUES(4050, 90581, 'ninety thousand five hundred eighty-one'); INSERT INTO t3 VALUES(4051, 10680, 'ten thousand six hundred eighty'); INSERT INTO t3 VALUES(4052, 90251, 'ninety thousand two hundred fifty-one'); INSERT INTO t3 VALUES(4053, 47153, 'forty-seven thousand one hundred fifty-three'); INSERT INTO t3 VALUES(4054, 39923, 'thirty-nine thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(4055, 11893, 'eleven thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(4056, 50665, 'fifty thousand six hundred sixty-five'); INSERT INTO t3 VALUES(4057, 11104, 'eleven thousand one hundred four'); INSERT INTO t3 VALUES(4058, 79874, 'seventy-nine thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(4059, 4094, 'four thousand ninety-four'); INSERT INTO t3 VALUES(4060, 38552, 'thirty-eight thousand five hundred fifty-two'); INSERT INTO t3 VALUES(4061, 54111, 'fifty-four thousand one hundred eleven'); INSERT INTO t3 VALUES(4062, 22374, 'twenty-two thousand three hundred seventy-four'); INSERT INTO t3 VALUES(4063, 60384, 'sixty thousand three hundred eighty-four'); INSERT INTO t3 VALUES(4064, 39523, 'thirty-nine thousand five hundred twenty-three'); INSERT INTO t3 VALUES(4065, 67745, 'sixty-seven thousand seven hundred forty-five'); INSERT INTO t3 VALUES(4066, 80339, 'eighty thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(4067, 9518, 'nine thousand five hundred eighteen'); INSERT INTO t3 VALUES(4068, 51432, 'fifty-one thousand four hundred thirty-two'); INSERT INTO t3 VALUES(4069, 40099, 'forty thousand ninety-nine'); INSERT INTO t3 VALUES(4070, 87356, 'eighty-seven thousand three hundred fifty-six'); INSERT INTO t3 VALUES(4071, 53766, 'fifty-three thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(4072, 2507, 'two thousand five hundred seven'); INSERT INTO t3 VALUES(4073, 66416, 'sixty-six thousand four hundred sixteen'); INSERT INTO t3 VALUES(4074, 51181, 'fifty-one thousand one hundred eighty-one'); INSERT INTO t3 VALUES(4075, 64977, 'sixty-four thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(4076, 56522, 'fifty-six thousand five hundred twenty-two'); INSERT INTO t3 VALUES(4077, 31144, 'thirty-one thousand one hundred forty-four'); INSERT INTO t3 VALUES(4078, 61935, 'sixty-one thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(4079, 10340, 'ten thousand three hundred forty'); INSERT INTO t3 VALUES(4080, 29470, 'twenty-nine thousand four hundred seventy'); INSERT INTO t3 VALUES(4081, 78829, 'seventy-eight thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(4082, 98781, 'ninety-eight thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(4083, 31055, 'thirty-one thousand fifty-five'); INSERT INTO t3 VALUES(4084, 7417, 'seven thousand four hundred seventeen'); INSERT INTO t3 VALUES(4085, 79189, 'seventy-nine thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(4086, 65370, 'sixty-five thousand three hundred seventy'); INSERT INTO t3 VALUES(4087, 96578, 'ninety-six thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(4088, 97408, 'ninety-seven thousand four hundred eight'); INSERT INTO t3 VALUES(4089, 90722, 'ninety thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(4090, 22255, 'twenty-two thousand two hundred fifty-five'); INSERT INTO t3 VALUES(4091, 48402, 'forty-eight thousand four hundred two'); INSERT INTO t3 VALUES(4092, 35261, 'thirty-five thousand two hundred sixty-one'); INSERT INTO t3 VALUES(4093, 99676, 'ninety-nine thousand six hundred seventy-six'); INSERT INTO t3 VALUES(4094, 75546, 'seventy-five thousand five hundred forty-six'); INSERT INTO t3 VALUES(4095, 87220, 'eighty-seven thousand two hundred twenty'); INSERT INTO t3 VALUES(4096, 54875, 'fifty-four thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(4097, 39578, 'thirty-nine thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(4098, 92443, 'ninety-two thousand four hundred forty-three'); INSERT INTO t3 VALUES(4099, 50914, 'fifty thousand nine hundred fourteen'); INSERT INTO t3 VALUES(4100, 13199, 'thirteen thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(4101, 80974, 'eighty thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(4102, 27734, 'twenty-seven thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(4103, 621, 'six hundred twenty-one'); INSERT INTO t3 VALUES(4104, 82337, 'eighty-two thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(4105, 59507, 'fifty-nine thousand five hundred seven'); INSERT INTO t3 VALUES(4106, 48954, 'forty-eight thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(4107, 3461, 'three thousand four hundred sixty-one'); INSERT INTO t3 VALUES(4108, 97764, 'ninety-seven thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(4109, 58530, 'fifty-eight thousand five hundred thirty'); INSERT INTO t3 VALUES(4110, 38254, 'thirty-eight thousand two hundred fifty-four'); INSERT INTO t3 VALUES(4111, 47627, 'forty-seven thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(4112, 1144, 'one thousand one hundred forty-four'); INSERT INTO t3 VALUES(4113, 57982, 'fifty-seven thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(4114, 12045, 'twelve thousand forty-five'); INSERT INTO t3 VALUES(4115, 73737, 'seventy-three thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(4116, 1705, 'one thousand seven hundred five'); INSERT INTO t3 VALUES(4117, 44831, 'forty-four thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(4118, 10526, 'ten thousand five hundred twenty-six'); INSERT INTO t3 VALUES(4119, 67233, 'sixty-seven thousand two hundred thirty-three'); INSERT INTO t3 VALUES(4120, 86347, 'eighty-six thousand three hundred forty-seven'); INSERT INTO t3 VALUES(4121, 56915, 'fifty-six thousand nine hundred fifteen'); INSERT INTO t3 VALUES(4122, 12764, 'twelve thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(4123, 1199, 'one thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(4124, 17277, 'seventeen thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(4125, 45789, 'forty-five thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(4126, 93842, 'ninety-three thousand eight hundred forty-two'); INSERT INTO t3 VALUES(4127, 68211, 'sixty-eight thousand two hundred eleven'); INSERT INTO t3 VALUES(4128, 71114, 'seventy-one thousand one hundred fourteen'); INSERT INTO t3 VALUES(4129, 71842, 'seventy-one thousand eight hundred forty-two'); INSERT INTO t3 VALUES(4130, 79355, 'seventy-nine thousand three hundred fifty-five'); INSERT INTO t3 VALUES(4131, 26021, 'twenty-six thousand twenty-one'); INSERT INTO t3 VALUES(4132, 534, 'five hundred thirty-four'); INSERT INTO t3 VALUES(4133, 91055, 'ninety-one thousand fifty-five'); INSERT INTO t3 VALUES(4134, 25406, 'twenty-five thousand four hundred six'); INSERT INTO t3 VALUES(4135, 83441, 'eighty-three thousand four hundred forty-one'); INSERT INTO t3 VALUES(4136, 85622, 'eighty-five thousand six hundred twenty-two'); INSERT INTO t3 VALUES(4137, 22765, 'twenty-two thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(4138, 82509, 'eighty-two thousand five hundred nine'); INSERT INTO t3 VALUES(4139, 60793, 'sixty thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(4140, 67859, 'sixty-seven thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(4141, 28247, 'twenty-eight thousand two hundred forty-seven'); INSERT INTO t3 VALUES(4142, 38438, 'thirty-eight thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(4143, 39253, 'thirty-nine thousand two hundred fifty-three'); INSERT INTO t3 VALUES(4144, 59683, 'fifty-nine thousand six hundred eighty-three'); INSERT INTO t3 VALUES(4145, 70618, 'seventy thousand six hundred eighteen'); INSERT INTO t3 VALUES(4146, 70076, 'seventy thousand seventy-six'); INSERT INTO t3 VALUES(4147, 28746, 'twenty-eight thousand seven hundred forty-six'); INSERT INTO t3 VALUES(4148, 98045, 'ninety-eight thousand forty-five'); INSERT INTO t3 VALUES(4149, 44064, 'forty-four thousand sixty-four'); INSERT INTO t3 VALUES(4150, 64983, 'sixty-four thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(4151, 19396, 'nineteen thousand three hundred ninety-six'); INSERT INTO t3 VALUES(4152, 96122, 'ninety-six thousand one hundred twenty-two'); INSERT INTO t3 VALUES(4153, 48803, 'forty-eight thousand eight hundred three'); INSERT INTO t3 VALUES(4154, 55604, 'fifty-five thousand six hundred four'); INSERT INTO t3 VALUES(4155, 20081, 'twenty thousand eighty-one'); INSERT INTO t3 VALUES(4156, 69433, 'sixty-nine thousand four hundred thirty-three'); INSERT INTO t3 VALUES(4157, 16188, 'sixteen thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(4158, 22864, 'twenty-two thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(4159, 11513, 'eleven thousand five hundred thirteen'); INSERT INTO t3 VALUES(4160, 47654, 'forty-seven thousand six hundred fifty-four'); INSERT INTO t3 VALUES(4161, 94904, 'ninety-four thousand nine hundred four'); INSERT INTO t3 VALUES(4162, 63606, 'sixty-three thousand six hundred six'); INSERT INTO t3 VALUES(4163, 75012, 'seventy-five thousand twelve'); INSERT INTO t3 VALUES(4164, 99980, 'ninety-nine thousand nine hundred eighty'); INSERT INTO t3 VALUES(4165, 50010, 'fifty thousand ten'); INSERT INTO t3 VALUES(4166, 63239, 'sixty-three thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(4167, 46264, 'forty-six thousand two hundred sixty-four'); INSERT INTO t3 VALUES(4168, 3008, 'three thousand eight'); INSERT INTO t3 VALUES(4169, 73017, 'seventy-three thousand seventeen'); INSERT INTO t3 VALUES(4170, 80318, 'eighty thousand three hundred eighteen'); INSERT INTO t3 VALUES(4171, 88927, 'eighty-eight thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(4172, 81274, 'eighty-one thousand two hundred seventy-four'); INSERT INTO t3 VALUES(4173, 2042, 'two thousand forty-two'); INSERT INTO t3 VALUES(4174, 64208, 'sixty-four thousand two hundred eight'); INSERT INTO t3 VALUES(4175, 68960, 'sixty-eight thousand nine hundred sixty'); INSERT INTO t3 VALUES(4176, 35762, 'thirty-five thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(4177, 34565, 'thirty-four thousand five hundred sixty-five'); INSERT INTO t3 VALUES(4178, 25206, 'twenty-five thousand two hundred six'); INSERT INTO t3 VALUES(4179, 88983, 'eighty-eight thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(4180, 1561, 'one thousand five hundred sixty-one'); INSERT INTO t3 VALUES(4181, 78055, 'seventy-eight thousand fifty-five'); INSERT INTO t3 VALUES(4182, 15211, 'fifteen thousand two hundred eleven'); INSERT INTO t3 VALUES(4183, 6521, 'six thousand five hundred twenty-one'); INSERT INTO t3 VALUES(4184, 90252, 'ninety thousand two hundred fifty-two'); INSERT INTO t3 VALUES(4185, 36148, 'thirty-six thousand one hundred forty-eight'); INSERT INTO t3 VALUES(4186, 25154, 'twenty-five thousand one hundred fifty-four'); INSERT INTO t3 VALUES(4187, 26225, 'twenty-six thousand two hundred twenty-five'); INSERT INTO t3 VALUES(4188, 29731, 'twenty-nine thousand seven hundred thirty-one'); INSERT INTO t3 VALUES(4189, 53019, 'fifty-three thousand nineteen'); INSERT INTO t3 VALUES(4190, 63655, 'sixty-three thousand six hundred fifty-five'); INSERT INTO t3 VALUES(4191, 98432, 'ninety-eight thousand four hundred thirty-two'); INSERT INTO t3 VALUES(4192, 35425, 'thirty-five thousand four hundred twenty-five'); INSERT INTO t3 VALUES(4193, 76458, 'seventy-six thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(4194, 23698, 'twenty-three thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(4195, 17217, 'seventeen thousand two hundred seventeen'); INSERT INTO t3 VALUES(4196, 47301, 'forty-seven thousand three hundred one'); INSERT INTO t3 VALUES(4197, 27341, 'twenty-seven thousand three hundred forty-one'); INSERT INTO t3 VALUES(4198, 75533, 'seventy-five thousand five hundred thirty-three'); INSERT INTO t3 VALUES(4199, 12303, 'twelve thousand three hundred three'); INSERT INTO t3 VALUES(4200, 24176, 'twenty-four thousand one hundred seventy-six'); INSERT INTO t3 VALUES(4201, 21438, 'twenty-one thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(4202, 21970, 'twenty-one thousand nine hundred seventy'); INSERT INTO t3 VALUES(4203, 59033, 'fifty-nine thousand thirty-three'); INSERT INTO t3 VALUES(4204, 46814, 'forty-six thousand eight hundred fourteen'); INSERT INTO t3 VALUES(4205, 38981, 'thirty-eight thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(4206, 27904, 'twenty-seven thousand nine hundred four'); INSERT INTO t3 VALUES(4207, 24136, 'twenty-four thousand one hundred thirty-six'); INSERT INTO t3 VALUES(4208, 70749, 'seventy thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(4209, 45423, 'forty-five thousand four hundred twenty-three'); INSERT INTO t3 VALUES(4210, 24329, 'twenty-four thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(4211, 50187, 'fifty thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(4212, 40052, 'forty thousand fifty-two'); INSERT INTO t3 VALUES(4213, 42353, 'forty-two thousand three hundred fifty-three'); INSERT INTO t3 VALUES(4214, 15519, 'fifteen thousand five hundred nineteen'); INSERT INTO t3 VALUES(4215, 56068, 'fifty-six thousand sixty-eight'); INSERT INTO t3 VALUES(4216, 62342, 'sixty-two thousand three hundred forty-two'); INSERT INTO t3 VALUES(4217, 12713, 'twelve thousand seven hundred thirteen'); INSERT INTO t3 VALUES(4218, 45393, 'forty-five thousand three hundred ninety-three'); INSERT INTO t3 VALUES(4219, 58954, 'fifty-eight thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(4220, 75288, 'seventy-five thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(4221, 17860, 'seventeen thousand eight hundred sixty'); INSERT INTO t3 VALUES(4222, 81471, 'eighty-one thousand four hundred seventy-one'); INSERT INTO t3 VALUES(4223, 77160, 'seventy-seven thousand one hundred sixty'); INSERT INTO t3 VALUES(4224, 79079, 'seventy-nine thousand seventy-nine'); INSERT INTO t3 VALUES(4225, 12010, 'twelve thousand ten'); INSERT INTO t3 VALUES(4226, 80815, 'eighty thousand eight hundred fifteen'); INSERT INTO t3 VALUES(4227, 90813, 'ninety thousand eight hundred thirteen'); INSERT INTO t3 VALUES(4228, 88816, 'eighty-eight thousand eight hundred sixteen'); INSERT INTO t3 VALUES(4229, 98715, 'ninety-eight thousand seven hundred fifteen'); INSERT INTO t3 VALUES(4230, 21600, 'twenty-one thousand six hundred'); INSERT INTO t3 VALUES(4231, 15447, 'fifteen thousand four hundred forty-seven'); INSERT INTO t3 VALUES(4232, 88291, 'eighty-eight thousand two hundred ninety-one'); INSERT INTO t3 VALUES(4233, 72622, 'seventy-two thousand six hundred twenty-two'); INSERT INTO t3 VALUES(4234, 12937, 'twelve thousand nine hundred thirty-seven'); INSERT INTO t3 VALUES(4235, 56112, 'fifty-six thousand one hundred twelve'); INSERT INTO t3 VALUES(4236, 54464, 'fifty-four thousand four hundred sixty-four'); INSERT INTO t3 VALUES(4237, 53441, 'fifty-three thousand four hundred forty-one'); INSERT INTO t3 VALUES(4238, 78597, 'seventy-eight thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(4239, 36983, 'thirty-six thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(4240, 2498, 'two thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(4241, 9398, 'nine thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(4242, 27954, 'twenty-seven thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(4243, 43254, 'forty-three thousand two hundred fifty-four'); INSERT INTO t3 VALUES(4244, 27133, 'twenty-seven thousand one hundred thirty-three'); INSERT INTO t3 VALUES(4245, 11405, 'eleven thousand four hundred five'); INSERT INTO t3 VALUES(4246, 90710, 'ninety thousand seven hundred ten'); INSERT INTO t3 VALUES(4247, 65269, 'sixty-five thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(4248, 65463, 'sixty-five thousand four hundred sixty-three'); INSERT INTO t3 VALUES(4249, 20022, 'twenty thousand twenty-two'); INSERT INTO t3 VALUES(4250, 57930, 'fifty-seven thousand nine hundred thirty'); INSERT INTO t3 VALUES(4251, 84894, 'eighty-four thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(4252, 6773, 'six thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(4253, 47603, 'forty-seven thousand six hundred three'); INSERT INTO t3 VALUES(4254, 73149, 'seventy-three thousand one hundred forty-nine'); INSERT INTO t3 VALUES(4255, 56350, 'fifty-six thousand three hundred fifty'); INSERT INTO t3 VALUES(4256, 31678, 'thirty-one thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(4257, 36192, 'thirty-six thousand one hundred ninety-two'); INSERT INTO t3 VALUES(4258, 88732, 'eighty-eight thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(4259, 78366, 'seventy-eight thousand three hundred sixty-six'); INSERT INTO t3 VALUES(4260, 44574, 'forty-four thousand five hundred seventy-four'); INSERT INTO t3 VALUES(4261, 44046, 'forty-four thousand forty-six'); INSERT INTO t3 VALUES(4262, 56665, 'fifty-six thousand six hundred sixty-five'); INSERT INTO t3 VALUES(4263, 24447, 'twenty-four thousand four hundred forty-seven'); INSERT INTO t3 VALUES(4264, 17583, 'seventeen thousand five hundred eighty-three'); INSERT INTO t3 VALUES(4265, 77045, 'seventy-seven thousand forty-five'); INSERT INTO t3 VALUES(4266, 39551, 'thirty-nine thousand five hundred fifty-one'); INSERT INTO t3 VALUES(4267, 27270, 'twenty-seven thousand two hundred seventy'); INSERT INTO t3 VALUES(4268, 10895, 'ten thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(4269, 14927, 'fourteen thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(4270, 9843, 'nine thousand eight hundred forty-three'); INSERT INTO t3 VALUES(4271, 69052, 'sixty-nine thousand fifty-two'); INSERT INTO t3 VALUES(4272, 40042, 'forty thousand forty-two'); INSERT INTO t3 VALUES(4273, 26035, 'twenty-six thousand thirty-five'); INSERT INTO t3 VALUES(4274, 45101, 'forty-five thousand one hundred one'); INSERT INTO t3 VALUES(4275, 87634, 'eighty-seven thousand six hundred thirty-four'); INSERT INTO t3 VALUES(4276, 26431, 'twenty-six thousand four hundred thirty-one'); INSERT INTO t3 VALUES(4277, 95501, 'ninety-five thousand five hundred one'); INSERT INTO t3 VALUES(4278, 43019, 'forty-three thousand nineteen'); INSERT INTO t3 VALUES(4279, 13232, 'thirteen thousand two hundred thirty-two'); INSERT INTO t3 VALUES(4280, 73359, 'seventy-three thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(4281, 2032, 'two thousand thirty-two'); INSERT INTO t3 VALUES(4282, 53445, 'fifty-three thousand four hundred forty-five'); INSERT INTO t3 VALUES(4283, 3762, 'three thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(4284, 54323, 'fifty-four thousand three hundred twenty-three'); INSERT INTO t3 VALUES(4285, 26353, 'twenty-six thousand three hundred fifty-three'); INSERT INTO t3 VALUES(4286, 23823, 'twenty-three thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(4287, 10107, 'ten thousand one hundred seven'); INSERT INTO t3 VALUES(4288, 38757, 'thirty-eight thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(4289, 72327, 'seventy-two thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(4290, 53587, 'fifty-three thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(4291, 89088, 'eighty-nine thousand eighty-eight'); INSERT INTO t3 VALUES(4292, 86628, 'eighty-six thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(4293, 10958, 'ten thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(4294, 58652, 'fifty-eight thousand six hundred fifty-two'); INSERT INTO t3 VALUES(4295, 58097, 'fifty-eight thousand ninety-seven'); INSERT INTO t3 VALUES(4296, 4741, 'four thousand seven hundred forty-one'); INSERT INTO t3 VALUES(4297, 97362, 'ninety-seven thousand three hundred sixty-two'); INSERT INTO t3 VALUES(4298, 26291, 'twenty-six thousand two hundred ninety-one'); INSERT INTO t3 VALUES(4299, 90689, 'ninety thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(4300, 21306, 'twenty-one thousand three hundred six'); INSERT INTO t3 VALUES(4301, 12779, 'twelve thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(4302, 43906, 'forty-three thousand nine hundred six'); INSERT INTO t3 VALUES(4303, 28345, 'twenty-eight thousand three hundred forty-five'); INSERT INTO t3 VALUES(4304, 3431, 'three thousand four hundred thirty-one'); INSERT INTO t3 VALUES(4305, 76962, 'seventy-six thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(4306, 22743, 'twenty-two thousand seven hundred forty-three'); INSERT INTO t3 VALUES(4307, 76905, 'seventy-six thousand nine hundred five'); INSERT INTO t3 VALUES(4308, 10903, 'ten thousand nine hundred three'); INSERT INTO t3 VALUES(4309, 28471, 'twenty-eight thousand four hundred seventy-one'); INSERT INTO t3 VALUES(4310, 44109, 'forty-four thousand one hundred nine'); INSERT INTO t3 VALUES(4311, 61065, 'sixty-one thousand sixty-five'); INSERT INTO t3 VALUES(4312, 5809, 'five thousand eight hundred nine'); INSERT INTO t3 VALUES(4313, 81563, 'eighty-one thousand five hundred sixty-three'); INSERT INTO t3 VALUES(4314, 11876, 'eleven thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(4315, 48951, 'forty-eight thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(4316, 36415, 'thirty-six thousand four hundred fifteen'); INSERT INTO t3 VALUES(4317, 88986, 'eighty-eight thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(4318, 28960, 'twenty-eight thousand nine hundred sixty'); INSERT INTO t3 VALUES(4319, 98521, 'ninety-eight thousand five hundred twenty-one'); INSERT INTO t3 VALUES(4320, 37806, 'thirty-seven thousand eight hundred six'); INSERT INTO t3 VALUES(4321, 9153, 'nine thousand one hundred fifty-three'); INSERT INTO t3 VALUES(4322, 96439, 'ninety-six thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(4323, 351, 'three hundred fifty-one'); INSERT INTO t3 VALUES(4324, 38983, 'thirty-eight thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(4325, 96646, 'ninety-six thousand six hundred forty-six'); INSERT INTO t3 VALUES(4326, 14385, 'fourteen thousand three hundred eighty-five'); INSERT INTO t3 VALUES(4327, 40062, 'forty thousand sixty-two'); INSERT INTO t3 VALUES(4328, 97905, 'ninety-seven thousand nine hundred five'); INSERT INTO t3 VALUES(4329, 91239, 'ninety-one thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(4330, 91917, 'ninety-one thousand nine hundred seventeen'); INSERT INTO t3 VALUES(4331, 37756, 'thirty-seven thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(4332, 59951, 'fifty-nine thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(4333, 23108, 'twenty-three thousand one hundred eight'); INSERT INTO t3 VALUES(4334, 75257, 'seventy-five thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(4335, 59810, 'fifty-nine thousand eight hundred ten'); INSERT INTO t3 VALUES(4336, 49996, 'forty-nine thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(4337, 39751, 'thirty-nine thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(4338, 87298, 'eighty-seven thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(4339, 88339, 'eighty-eight thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(4340, 43114, 'forty-three thousand one hundred fourteen'); INSERT INTO t3 VALUES(4341, 22084, 'twenty-two thousand eighty-four'); INSERT INTO t3 VALUES(4342, 17302, 'seventeen thousand three hundred two'); INSERT INTO t3 VALUES(4343, 99188, 'ninety-nine thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(4344, 85310, 'eighty-five thousand three hundred ten'); INSERT INTO t3 VALUES(4345, 77776, 'seventy-seven thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(4346, 46995, 'forty-six thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(4347, 38237, 'thirty-eight thousand two hundred thirty-seven'); INSERT INTO t3 VALUES(4348, 75675, 'seventy-five thousand six hundred seventy-five'); INSERT INTO t3 VALUES(4349, 43642, 'forty-three thousand six hundred forty-two'); INSERT INTO t3 VALUES(4350, 19739, 'nineteen thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(4351, 4855, 'four thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(4352, 46928, 'forty-six thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(4353, 76727, 'seventy-six thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(4354, 56960, 'fifty-six thousand nine hundred sixty'); INSERT INTO t3 VALUES(4355, 84758, 'eighty-four thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(4356, 5461, 'five thousand four hundred sixty-one'); INSERT INTO t3 VALUES(4357, 75425, 'seventy-five thousand four hundred twenty-five'); INSERT INTO t3 VALUES(4358, 79900, 'seventy-nine thousand nine hundred'); INSERT INTO t3 VALUES(4359, 49647, 'forty-nine thousand six hundred forty-seven'); INSERT INTO t3 VALUES(4360, 61141, 'sixty-one thousand one hundred forty-one'); INSERT INTO t3 VALUES(4361, 59243, 'fifty-nine thousand two hundred forty-three'); INSERT INTO t3 VALUES(4362, 51024, 'fifty-one thousand twenty-four'); INSERT INTO t3 VALUES(4363, 84241, 'eighty-four thousand two hundred forty-one'); INSERT INTO t3 VALUES(4364, 73234, 'seventy-three thousand two hundred thirty-four'); INSERT INTO t3 VALUES(4365, 95919, 'ninety-five thousand nine hundred nineteen'); INSERT INTO t3 VALUES(4366, 66637, 'sixty-six thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(4367, 21917, 'twenty-one thousand nine hundred seventeen'); INSERT INTO t3 VALUES(4368, 40846, 'forty thousand eight hundred forty-six'); INSERT INTO t3 VALUES(4369, 34424, 'thirty-four thousand four hundred twenty-four'); INSERT INTO t3 VALUES(4370, 10089, 'ten thousand eighty-nine'); INSERT INTO t3 VALUES(4371, 55554, 'fifty-five thousand five hundred fifty-four'); INSERT INTO t3 VALUES(4372, 36478, 'thirty-six thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(4373, 94012, 'ninety-four thousand twelve'); INSERT INTO t3 VALUES(4374, 637, 'six hundred thirty-seven'); INSERT INTO t3 VALUES(4375, 30513, 'thirty thousand five hundred thirteen'); INSERT INTO t3 VALUES(4376, 33790, 'thirty-three thousand seven hundred ninety'); INSERT INTO t3 VALUES(4377, 8010, 'eight thousand ten'); INSERT INTO t3 VALUES(4378, 72371, 'seventy-two thousand three hundred seventy-one'); INSERT INTO t3 VALUES(4379, 59532, 'fifty-nine thousand five hundred thirty-two'); INSERT INTO t3 VALUES(4380, 38361, 'thirty-eight thousand three hundred sixty-one'); INSERT INTO t3 VALUES(4381, 88203, 'eighty-eight thousand two hundred three'); INSERT INTO t3 VALUES(4382, 39850, 'thirty-nine thousand eight hundred fifty'); INSERT INTO t3 VALUES(4383, 27102, 'twenty-seven thousand one hundred two'); INSERT INTO t3 VALUES(4384, 84757, 'eighty-four thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(4385, 31547, 'thirty-one thousand five hundred forty-seven'); INSERT INTO t3 VALUES(4386, 80939, 'eighty thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(4387, 72745, 'seventy-two thousand seven hundred forty-five'); INSERT INTO t3 VALUES(4388, 49325, 'forty-nine thousand three hundred twenty-five'); INSERT INTO t3 VALUES(4389, 63270, 'sixty-three thousand two hundred seventy'); INSERT INTO t3 VALUES(4390, 30207, 'thirty thousand two hundred seven'); INSERT INTO t3 VALUES(4391, 77692, 'seventy-seven thousand six hundred ninety-two'); INSERT INTO t3 VALUES(4392, 92739, 'ninety-two thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(4393, 99894, 'ninety-nine thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(4394, 88412, 'eighty-eight thousand four hundred twelve'); INSERT INTO t3 VALUES(4395, 38460, 'thirty-eight thousand four hundred sixty'); INSERT INTO t3 VALUES(4396, 50074, 'fifty thousand seventy-four'); INSERT INTO t3 VALUES(4397, 99238, 'ninety-nine thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(4398, 26264, 'twenty-six thousand two hundred sixty-four'); INSERT INTO t3 VALUES(4399, 73237, 'seventy-three thousand two hundred thirty-seven'); INSERT INTO t3 VALUES(4400, 2738, 'two thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(4401, 9490, 'nine thousand four hundred ninety'); INSERT INTO t3 VALUES(4402, 12569, 'twelve thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(4403, 25453, 'twenty-five thousand four hundred fifty-three'); INSERT INTO t3 VALUES(4404, 36806, 'thirty-six thousand eight hundred six'); INSERT INTO t3 VALUES(4405, 48690, 'forty-eight thousand six hundred ninety'); INSERT INTO t3 VALUES(4406, 82009, 'eighty-two thousand nine'); INSERT INTO t3 VALUES(4407, 48119, 'forty-eight thousand one hundred nineteen'); INSERT INTO t3 VALUES(4408, 70048, 'seventy thousand forty-eight'); INSERT INTO t3 VALUES(4409, 35114, 'thirty-five thousand one hundred fourteen'); INSERT INTO t3 VALUES(4410, 53675, 'fifty-three thousand six hundred seventy-five'); INSERT INTO t3 VALUES(4411, 59782, 'fifty-nine thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(4412, 38477, 'thirty-eight thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(4413, 60429, 'sixty thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(4414, 29701, 'twenty-nine thousand seven hundred one'); INSERT INTO t3 VALUES(4415, 36273, 'thirty-six thousand two hundred seventy-three'); INSERT INTO t3 VALUES(4416, 10241, 'ten thousand two hundred forty-one'); INSERT INTO t3 VALUES(4417, 97422, 'ninety-seven thousand four hundred twenty-two'); INSERT INTO t3 VALUES(4418, 21979, 'twenty-one thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(4419, 39535, 'thirty-nine thousand five hundred thirty-five'); INSERT INTO t3 VALUES(4420, 90185, 'ninety thousand one hundred eighty-five'); INSERT INTO t3 VALUES(4421, 6554, 'six thousand five hundred fifty-four'); INSERT INTO t3 VALUES(4422, 69223, 'sixty-nine thousand two hundred twenty-three'); INSERT INTO t3 VALUES(4423, 38368, 'thirty-eight thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(4424, 79574, 'seventy-nine thousand five hundred seventy-four'); INSERT INTO t3 VALUES(4425, 6582, 'six thousand five hundred eighty-two'); INSERT INTO t3 VALUES(4426, 35160, 'thirty-five thousand one hundred sixty'); INSERT INTO t3 VALUES(4427, 19450, 'nineteen thousand four hundred fifty'); INSERT INTO t3 VALUES(4428, 26477, 'twenty-six thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(4429, 46417, 'forty-six thousand four hundred seventeen'); INSERT INTO t3 VALUES(4430, 64785, 'sixty-four thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(4431, 37436, 'thirty-seven thousand four hundred thirty-six'); INSERT INTO t3 VALUES(4432, 68095, 'sixty-eight thousand ninety-five'); INSERT INTO t3 VALUES(4433, 90950, 'ninety thousand nine hundred fifty'); INSERT INTO t3 VALUES(4434, 24468, 'twenty-four thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(4435, 10165, 'ten thousand one hundred sixty-five'); INSERT INTO t3 VALUES(4436, 89249, 'eighty-nine thousand two hundred forty-nine'); INSERT INTO t3 VALUES(4437, 52842, 'fifty-two thousand eight hundred forty-two'); INSERT INTO t3 VALUES(4438, 65308, 'sixty-five thousand three hundred eight'); INSERT INTO t3 VALUES(4439, 41228, 'forty-one thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(4440, 86740, 'eighty-six thousand seven hundred forty'); INSERT INTO t3 VALUES(4441, 25030, 'twenty-five thousand thirty'); INSERT INTO t3 VALUES(4442, 96003, 'ninety-six thousand three'); INSERT INTO t3 VALUES(4443, 83718, 'eighty-three thousand seven hundred eighteen'); INSERT INTO t3 VALUES(4444, 9289, 'nine thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(4445, 10192, 'ten thousand one hundred ninety-two'); INSERT INTO t3 VALUES(4446, 60579, 'sixty thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(4447, 18628, 'eighteen thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(4448, 62218, 'sixty-two thousand two hundred eighteen'); INSERT INTO t3 VALUES(4449, 93144, 'ninety-three thousand one hundred forty-four'); INSERT INTO t3 VALUES(4450, 11835, 'eleven thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(4451, 26689, 'twenty-six thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(4452, 33231, 'thirty-three thousand two hundred thirty-one'); INSERT INTO t3 VALUES(4453, 10699, 'ten thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(4454, 95889, 'ninety-five thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(4455, 48434, 'forty-eight thousand four hundred thirty-four'); INSERT INTO t3 VALUES(4456, 87579, 'eighty-seven thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(4457, 65327, 'sixty-five thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(4458, 98690, 'ninety-eight thousand six hundred ninety'); INSERT INTO t3 VALUES(4459, 48151, 'forty-eight thousand one hundred fifty-one'); INSERT INTO t3 VALUES(4460, 22126, 'twenty-two thousand one hundred twenty-six'); INSERT INTO t3 VALUES(4461, 63437, 'sixty-three thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(4462, 10678, 'ten thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(4463, 15296, 'fifteen thousand two hundred ninety-six'); INSERT INTO t3 VALUES(4464, 82638, 'eighty-two thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(4465, 24493, 'twenty-four thousand four hundred ninety-three'); INSERT INTO t3 VALUES(4466, 82118, 'eighty-two thousand one hundred eighteen'); INSERT INTO t3 VALUES(4467, 4261, 'four thousand two hundred sixty-one'); INSERT INTO t3 VALUES(4468, 57849, 'fifty-seven thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(4469, 61992, 'sixty-one thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(4470, 42803, 'forty-two thousand eight hundred three'); INSERT INTO t3 VALUES(4471, 29108, 'twenty-nine thousand one hundred eight'); INSERT INTO t3 VALUES(4472, 56794, 'fifty-six thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(4473, 18720, 'eighteen thousand seven hundred twenty'); INSERT INTO t3 VALUES(4474, 98395, 'ninety-eight thousand three hundred ninety-five'); INSERT INTO t3 VALUES(4475, 63736, 'sixty-three thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(4476, 70233, 'seventy thousand two hundred thirty-three'); INSERT INTO t3 VALUES(4477, 17035, 'seventeen thousand thirty-five'); INSERT INTO t3 VALUES(4478, 56136, 'fifty-six thousand one hundred thirty-six'); INSERT INTO t3 VALUES(4479, 51772, 'fifty-one thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(4480, 48109, 'forty-eight thousand one hundred nine'); INSERT INTO t3 VALUES(4481, 70008, 'seventy thousand eight'); INSERT INTO t3 VALUES(4482, 8527, 'eight thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(4483, 10841, 'ten thousand eight hundred forty-one'); INSERT INTO t3 VALUES(4484, 85544, 'eighty-five thousand five hundred forty-four'); INSERT INTO t3 VALUES(4485, 54307, 'fifty-four thousand three hundred seven'); INSERT INTO t3 VALUES(4486, 16928, 'sixteen thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(4487, 59755, 'fifty-nine thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(4488, 21933, 'twenty-one thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(4489, 4583, 'four thousand five hundred eighty-three'); INSERT INTO t3 VALUES(4490, 89739, 'eighty-nine thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(4491, 99787, 'ninety-nine thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(4492, 89861, 'eighty-nine thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(4493, 78471, 'seventy-eight thousand four hundred seventy-one'); INSERT INTO t3 VALUES(4494, 23109, 'twenty-three thousand one hundred nine'); INSERT INTO t3 VALUES(4495, 55806, 'fifty-five thousand eight hundred six'); INSERT INTO t3 VALUES(4496, 22721, 'twenty-two thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(4497, 74522, 'seventy-four thousand five hundred twenty-two'); INSERT INTO t3 VALUES(4498, 6563, 'six thousand five hundred sixty-three'); INSERT INTO t3 VALUES(4499, 56428, 'fifty-six thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(4500, 44307, 'forty-four thousand three hundred seven'); INSERT INTO t3 VALUES(4501, 49001, 'forty-nine thousand one'); INSERT INTO t3 VALUES(4502, 40838, 'forty thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(4503, 21195, 'twenty-one thousand one hundred ninety-five'); INSERT INTO t3 VALUES(4504, 91814, 'ninety-one thousand eight hundred fourteen'); INSERT INTO t3 VALUES(4505, 50396, 'fifty thousand three hundred ninety-six'); INSERT INTO t3 VALUES(4506, 61919, 'sixty-one thousand nine hundred nineteen'); INSERT INTO t3 VALUES(4507, 48342, 'forty-eight thousand three hundred forty-two'); INSERT INTO t3 VALUES(4508, 70753, 'seventy thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(4509, 71693, 'seventy-one thousand six hundred ninety-three'); INSERT INTO t3 VALUES(4510, 74549, 'seventy-four thousand five hundred forty-nine'); INSERT INTO t3 VALUES(4511, 60812, 'sixty thousand eight hundred twelve'); INSERT INTO t3 VALUES(4512, 9859, 'nine thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(4513, 36854, 'thirty-six thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(4514, 49793, 'forty-nine thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(4515, 75206, 'seventy-five thousand two hundred six'); INSERT INTO t3 VALUES(4516, 78372, 'seventy-eight thousand three hundred seventy-two'); INSERT INTO t3 VALUES(4517, 4951, 'four thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(4518, 5564, 'five thousand five hundred sixty-four'); INSERT INTO t3 VALUES(4519, 7772, 'seven thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(4520, 30489, 'thirty thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(4521, 84057, 'eighty-four thousand fifty-seven'); INSERT INTO t3 VALUES(4522, 79433, 'seventy-nine thousand four hundred thirty-three'); INSERT INTO t3 VALUES(4523, 2373, 'two thousand three hundred seventy-three'); INSERT INTO t3 VALUES(4524, 45496, 'forty-five thousand four hundred ninety-six'); INSERT INTO t3 VALUES(4525, 87313, 'eighty-seven thousand three hundred thirteen'); INSERT INTO t3 VALUES(4526, 42552, 'forty-two thousand five hundred fifty-two'); INSERT INTO t3 VALUES(4527, 8510, 'eight thousand five hundred ten'); INSERT INTO t3 VALUES(4528, 74269, 'seventy-four thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(4529, 54323, 'fifty-four thousand three hundred twenty-three'); INSERT INTO t3 VALUES(4530, 20979, 'twenty thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(4531, 83057, 'eighty-three thousand fifty-seven'); INSERT INTO t3 VALUES(4532, 95647, 'ninety-five thousand six hundred forty-seven'); INSERT INTO t3 VALUES(4533, 80128, 'eighty thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(4534, 82775, 'eighty-two thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(4535, 19071, 'nineteen thousand seventy-one'); INSERT INTO t3 VALUES(4536, 30344, 'thirty thousand three hundred forty-four'); INSERT INTO t3 VALUES(4537, 69365, 'sixty-nine thousand three hundred sixty-five'); INSERT INTO t3 VALUES(4538, 1011, 'one thousand eleven'); INSERT INTO t3 VALUES(4539, 7474, 'seven thousand four hundred seventy-four'); INSERT INTO t3 VALUES(4540, 69215, 'sixty-nine thousand two hundred fifteen'); INSERT INTO t3 VALUES(4541, 81575, 'eighty-one thousand five hundred seventy-five'); INSERT INTO t3 VALUES(4542, 62393, 'sixty-two thousand three hundred ninety-three'); INSERT INTO t3 VALUES(4543, 70505, 'seventy thousand five hundred five'); INSERT INTO t3 VALUES(4544, 81573, 'eighty-one thousand five hundred seventy-three'); INSERT INTO t3 VALUES(4545, 80358, 'eighty thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(4546, 91336, 'ninety-one thousand three hundred thirty-six'); INSERT INTO t3 VALUES(4547, 76106, 'seventy-six thousand one hundred six'); INSERT INTO t3 VALUES(4548, 38208, 'thirty-eight thousand two hundred eight'); INSERT INTO t3 VALUES(4549, 46026, 'forty-six thousand twenty-six'); INSERT INTO t3 VALUES(4550, 22083, 'twenty-two thousand eighty-three'); INSERT INTO t3 VALUES(4551, 40384, 'forty thousand three hundred eighty-four'); INSERT INTO t3 VALUES(4552, 93542, 'ninety-three thousand five hundred forty-two'); INSERT INTO t3 VALUES(4553, 36433, 'thirty-six thousand four hundred thirty-three'); INSERT INTO t3 VALUES(4554, 70229, 'seventy thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(4555, 59512, 'fifty-nine thousand five hundred twelve'); INSERT INTO t3 VALUES(4556, 26395, 'twenty-six thousand three hundred ninety-five'); INSERT INTO t3 VALUES(4557, 25628, 'twenty-five thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(4558, 98244, 'ninety-eight thousand two hundred forty-four'); INSERT INTO t3 VALUES(4559, 12642, 'twelve thousand six hundred forty-two'); INSERT INTO t3 VALUES(4560, 67710, 'sixty-seven thousand seven hundred ten'); INSERT INTO t3 VALUES(4561, 84543, 'eighty-four thousand five hundred forty-three'); INSERT INTO t3 VALUES(4562, 94985, 'ninety-four thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(4563, 80433, 'eighty thousand four hundred thirty-three'); INSERT INTO t3 VALUES(4564, 47221, 'forty-seven thousand two hundred twenty-one'); INSERT INTO t3 VALUES(4565, 74390, 'seventy-four thousand three hundred ninety'); INSERT INTO t3 VALUES(4566, 66652, 'sixty-six thousand six hundred fifty-two'); INSERT INTO t3 VALUES(4567, 59332, 'fifty-nine thousand three hundred thirty-two'); INSERT INTO t3 VALUES(4568, 62413, 'sixty-two thousand four hundred thirteen'); INSERT INTO t3 VALUES(4569, 68194, 'sixty-eight thousand one hundred ninety-four'); INSERT INTO t3 VALUES(4570, 719, 'seven hundred nineteen'); INSERT INTO t3 VALUES(4571, 41170, 'forty-one thousand one hundred seventy'); INSERT INTO t3 VALUES(4572, 82100, 'eighty-two thousand one hundred'); INSERT INTO t3 VALUES(4573, 89093, 'eighty-nine thousand ninety-three'); INSERT INTO t3 VALUES(4574, 75316, 'seventy-five thousand three hundred sixteen'); INSERT INTO t3 VALUES(4575, 67400, 'sixty-seven thousand four hundred'); INSERT INTO t3 VALUES(4576, 55157, 'fifty-five thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(4577, 60614, 'sixty thousand six hundred fourteen'); INSERT INTO t3 VALUES(4578, 5032, 'five thousand thirty-two'); INSERT INTO t3 VALUES(4579, 56297, 'fifty-six thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(4580, 93783, 'ninety-three thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(4581, 17873, 'seventeen thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(4582, 40278, 'forty thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(4583, 42191, 'forty-two thousand one hundred ninety-one'); INSERT INTO t3 VALUES(4584, 10403, 'ten thousand four hundred three'); INSERT INTO t3 VALUES(4585, 62976, 'sixty-two thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(4586, 48973, 'forty-eight thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(4587, 84179, 'eighty-four thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(4588, 82617, 'eighty-two thousand six hundred seventeen'); INSERT INTO t3 VALUES(4589, 98811, 'ninety-eight thousand eight hundred eleven'); INSERT INTO t3 VALUES(4590, 10810, 'ten thousand eight hundred ten'); INSERT INTO t3 VALUES(4591, 95530, 'ninety-five thousand five hundred thirty'); INSERT INTO t3 VALUES(4592, 60056, 'sixty thousand fifty-six'); INSERT INTO t3 VALUES(4593, 42375, 'forty-two thousand three hundred seventy-five'); INSERT INTO t3 VALUES(4594, 74693, 'seventy-four thousand six hundred ninety-three'); INSERT INTO t3 VALUES(4595, 79545, 'seventy-nine thousand five hundred forty-five'); INSERT INTO t3 VALUES(4596, 34917, 'thirty-four thousand nine hundred seventeen'); INSERT INTO t3 VALUES(4597, 8795, 'eight thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(4598, 69956, 'sixty-nine thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(4599, 15812, 'fifteen thousand eight hundred twelve'); INSERT INTO t3 VALUES(4600, 92571, 'ninety-two thousand five hundred seventy-one'); INSERT INTO t3 VALUES(4601, 23220, 'twenty-three thousand two hundred twenty'); INSERT INTO t3 VALUES(4602, 89679, 'eighty-nine thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(4603, 24818, 'twenty-four thousand eight hundred eighteen'); INSERT INTO t3 VALUES(4604, 67924, 'sixty-seven thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(4605, 99165, 'ninety-nine thousand one hundred sixty-five'); INSERT INTO t3 VALUES(4606, 24311, 'twenty-four thousand three hundred eleven'); INSERT INTO t3 VALUES(4607, 9894, 'nine thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(4608, 63083, 'sixty-three thousand eighty-three'); INSERT INTO t3 VALUES(4609, 92776, 'ninety-two thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(4610, 25999, 'twenty-five thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(4611, 34720, 'thirty-four thousand seven hundred twenty'); INSERT INTO t3 VALUES(4612, 23372, 'twenty-three thousand three hundred seventy-two'); INSERT INTO t3 VALUES(4613, 62772, 'sixty-two thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(4614, 26046, 'twenty-six thousand forty-six'); INSERT INTO t3 VALUES(4615, 95053, 'ninety-five thousand fifty-three'); INSERT INTO t3 VALUES(4616, 2782, 'two thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(4617, 54566, 'fifty-four thousand five hundred sixty-six'); INSERT INTO t3 VALUES(4618, 42688, 'forty-two thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(4619, 79565, 'seventy-nine thousand five hundred sixty-five'); INSERT INTO t3 VALUES(4620, 54007, 'fifty-four thousand seven'); INSERT INTO t3 VALUES(4621, 90412, 'ninety thousand four hundred twelve'); INSERT INTO t3 VALUES(4622, 58728, 'fifty-eight thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(4623, 37957, 'thirty-seven thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(4624, 43202, 'forty-three thousand two hundred two'); INSERT INTO t3 VALUES(4625, 49790, 'forty-nine thousand seven hundred ninety'); INSERT INTO t3 VALUES(4626, 33414, 'thirty-three thousand four hundred fourteen'); INSERT INTO t3 VALUES(4627, 42322, 'forty-two thousand three hundred twenty-two'); INSERT INTO t3 VALUES(4628, 66051, 'sixty-six thousand fifty-one'); INSERT INTO t3 VALUES(4629, 38905, 'thirty-eight thousand nine hundred five'); INSERT INTO t3 VALUES(4630, 48833, 'forty-eight thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(4631, 5917, 'five thousand nine hundred seventeen'); INSERT INTO t3 VALUES(4632, 24691, 'twenty-four thousand six hundred ninety-one'); INSERT INTO t3 VALUES(4633, 1307, 'one thousand three hundred seven'); INSERT INTO t3 VALUES(4634, 81004, 'eighty-one thousand four'); INSERT INTO t3 VALUES(4635, 55384, 'fifty-five thousand three hundred eighty-four'); INSERT INTO t3 VALUES(4636, 8380, 'eight thousand three hundred eighty'); INSERT INTO t3 VALUES(4637, 7495, 'seven thousand four hundred ninety-five'); INSERT INTO t3 VALUES(4638, 1119, 'one thousand one hundred nineteen'); INSERT INTO t3 VALUES(4639, 30853, 'thirty thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(4640, 44294, 'forty-four thousand two hundred ninety-four'); INSERT INTO t3 VALUES(4641, 17223, 'seventeen thousand two hundred twenty-three'); INSERT INTO t3 VALUES(4642, 71350, 'seventy-one thousand three hundred fifty'); INSERT INTO t3 VALUES(4643, 47958, 'forty-seven thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(4644, 55460, 'fifty-five thousand four hundred sixty'); INSERT INTO t3 VALUES(4645, 16224, 'sixteen thousand two hundred twenty-four'); INSERT INTO t3 VALUES(4646, 7300, 'seven thousand three hundred'); INSERT INTO t3 VALUES(4647, 64606, 'sixty-four thousand six hundred six'); INSERT INTO t3 VALUES(4648, 4906, 'four thousand nine hundred six'); INSERT INTO t3 VALUES(4649, 83154, 'eighty-three thousand one hundred fifty-four'); INSERT INTO t3 VALUES(4650, 29720, 'twenty-nine thousand seven hundred twenty'); INSERT INTO t3 VALUES(4651, 26178, 'twenty-six thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(4652, 67536, 'sixty-seven thousand five hundred thirty-six'); INSERT INTO t3 VALUES(4653, 89097, 'eighty-nine thousand ninety-seven'); INSERT INTO t3 VALUES(4654, 69360, 'sixty-nine thousand three hundred sixty'); INSERT INTO t3 VALUES(4655, 75725, 'seventy-five thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(4656, 31599, 'thirty-one thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(4657, 86746, 'eighty-six thousand seven hundred forty-six'); INSERT INTO t3 VALUES(4658, 8155, 'eight thousand one hundred fifty-five'); INSERT INTO t3 VALUES(4659, 10435, 'ten thousand four hundred thirty-five'); INSERT INTO t3 VALUES(4660, 64746, 'sixty-four thousand seven hundred forty-six'); INSERT INTO t3 VALUES(4661, 88342, 'eighty-eight thousand three hundred forty-two'); INSERT INTO t3 VALUES(4662, 29044, 'twenty-nine thousand forty-four'); INSERT INTO t3 VALUES(4663, 87397, 'eighty-seven thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(4664, 95840, 'ninety-five thousand eight hundred forty'); INSERT INTO t3 VALUES(4665, 10172, 'ten thousand one hundred seventy-two'); INSERT INTO t3 VALUES(4666, 61756, 'sixty-one thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(4667, 58421, 'fifty-eight thousand four hundred twenty-one'); INSERT INTO t3 VALUES(4668, 81554, 'eighty-one thousand five hundred fifty-four'); INSERT INTO t3 VALUES(4669, 45405, 'forty-five thousand four hundred five'); INSERT INTO t3 VALUES(4670, 87799, 'eighty-seven thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(4671, 896, 'eight hundred ninety-six'); INSERT INTO t3 VALUES(4672, 87029, 'eighty-seven thousand twenty-nine'); INSERT INTO t3 VALUES(4673, 75762, 'seventy-five thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(4674, 66069, 'sixty-six thousand sixty-nine'); INSERT INTO t3 VALUES(4675, 37825, 'thirty-seven thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(4676, 2593, 'two thousand five hundred ninety-three'); INSERT INTO t3 VALUES(4677, 64303, 'sixty-four thousand three hundred three'); INSERT INTO t3 VALUES(4678, 19227, 'nineteen thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(4679, 87241, 'eighty-seven thousand two hundred forty-one'); INSERT INTO t3 VALUES(4680, 73328, 'seventy-three thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(4681, 98135, 'ninety-eight thousand one hundred thirty-five'); INSERT INTO t3 VALUES(4682, 96177, 'ninety-six thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(4683, 50127, 'fifty thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(4684, 13236, 'thirteen thousand two hundred thirty-six'); INSERT INTO t3 VALUES(4685, 78778, 'seventy-eight thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(4686, 67244, 'sixty-seven thousand two hundred forty-four'); INSERT INTO t3 VALUES(4687, 73829, 'seventy-three thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(4688, 86310, 'eighty-six thousand three hundred ten'); INSERT INTO t3 VALUES(4689, 86329, 'eighty-six thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(4690, 58308, 'fifty-eight thousand three hundred eight'); INSERT INTO t3 VALUES(4691, 85135, 'eighty-five thousand one hundred thirty-five'); INSERT INTO t3 VALUES(4692, 62129, 'sixty-two thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(4693, 41309, 'forty-one thousand three hundred nine'); INSERT INTO t3 VALUES(4694, 80303, 'eighty thousand three hundred three'); INSERT INTO t3 VALUES(4695, 5007, 'five thousand seven'); INSERT INTO t3 VALUES(4696, 53727, 'fifty-three thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(4697, 48423, 'forty-eight thousand four hundred twenty-three'); INSERT INTO t3 VALUES(4698, 75795, 'seventy-five thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(4699, 34905, 'thirty-four thousand nine hundred five'); INSERT INTO t3 VALUES(4700, 89553, 'eighty-nine thousand five hundred fifty-three'); INSERT INTO t3 VALUES(4701, 43494, 'forty-three thousand four hundred ninety-four'); INSERT INTO t3 VALUES(4702, 40590, 'forty thousand five hundred ninety'); INSERT INTO t3 VALUES(4703, 85488, 'eighty-five thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(4704, 12019, 'twelve thousand nineteen'); INSERT INTO t3 VALUES(4705, 97967, 'ninety-seven thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(4706, 82118, 'eighty-two thousand one hundred eighteen'); INSERT INTO t3 VALUES(4707, 64177, 'sixty-four thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(4708, 62453, 'sixty-two thousand four hundred fifty-three'); INSERT INTO t3 VALUES(4709, 7315, 'seven thousand three hundred fifteen'); INSERT INTO t3 VALUES(4710, 45527, 'forty-five thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(4711, 68159, 'sixty-eight thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(4712, 52376, 'fifty-two thousand three hundred seventy-six'); INSERT INTO t3 VALUES(4713, 22528, 'twenty-two thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(4714, 38052, 'thirty-eight thousand fifty-two'); INSERT INTO t3 VALUES(4715, 33765, 'thirty-three thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(4716, 58029, 'fifty-eight thousand twenty-nine'); INSERT INTO t3 VALUES(4717, 69443, 'sixty-nine thousand four hundred forty-three'); INSERT INTO t3 VALUES(4718, 34837, 'thirty-four thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(4719, 75496, 'seventy-five thousand four hundred ninety-six'); INSERT INTO t3 VALUES(4720, 65687, 'sixty-five thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(4721, 24103, 'twenty-four thousand one hundred three'); INSERT INTO t3 VALUES(4722, 99773, 'ninety-nine thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(4723, 51813, 'fifty-one thousand eight hundred thirteen'); INSERT INTO t3 VALUES(4724, 66608, 'sixty-six thousand six hundred eight'); INSERT INTO t3 VALUES(4725, 30541, 'thirty thousand five hundred forty-one'); INSERT INTO t3 VALUES(4726, 88596, 'eighty-eight thousand five hundred ninety-six'); INSERT INTO t3 VALUES(4727, 90716, 'ninety thousand seven hundred sixteen'); INSERT INTO t3 VALUES(4728, 33156, 'thirty-three thousand one hundred fifty-six'); INSERT INTO t3 VALUES(4729, 31137, 'thirty-one thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(4730, 17821, 'seventeen thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(4731, 79641, 'seventy-nine thousand six hundred forty-one'); INSERT INTO t3 VALUES(4732, 24006, 'twenty-four thousand six'); INSERT INTO t3 VALUES(4733, 96030, 'ninety-six thousand thirty'); INSERT INTO t3 VALUES(4734, 93044, 'ninety-three thousand forty-four'); INSERT INTO t3 VALUES(4735, 31485, 'thirty-one thousand four hundred eighty-five'); INSERT INTO t3 VALUES(4736, 37035, 'thirty-seven thousand thirty-five'); INSERT INTO t3 VALUES(4737, 12731, 'twelve thousand seven hundred thirty-one'); INSERT INTO t3 VALUES(4738, 46662, 'forty-six thousand six hundred sixty-two'); INSERT INTO t3 VALUES(4739, 85320, 'eighty-five thousand three hundred twenty'); INSERT INTO t3 VALUES(4740, 26230, 'twenty-six thousand two hundred thirty'); INSERT INTO t3 VALUES(4741, 48928, 'forty-eight thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(4742, 42254, 'forty-two thousand two hundred fifty-four'); INSERT INTO t3 VALUES(4743, 74631, 'seventy-four thousand six hundred thirty-one'); INSERT INTO t3 VALUES(4744, 87733, 'eighty-seven thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(4745, 69235, 'sixty-nine thousand two hundred thirty-five'); INSERT INTO t3 VALUES(4746, 94475, 'ninety-four thousand four hundred seventy-five'); INSERT INTO t3 VALUES(4747, 33328, 'thirty-three thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(4748, 65184, 'sixty-five thousand one hundred eighty-four'); INSERT INTO t3 VALUES(4749, 66030, 'sixty-six thousand thirty'); INSERT INTO t3 VALUES(4750, 91364, 'ninety-one thousand three hundred sixty-four'); INSERT INTO t3 VALUES(4751, 57230, 'fifty-seven thousand two hundred thirty'); INSERT INTO t3 VALUES(4752, 26124, 'twenty-six thousand one hundred twenty-four'); INSERT INTO t3 VALUES(4753, 90492, 'ninety thousand four hundred ninety-two'); INSERT INTO t3 VALUES(4754, 37321, 'thirty-seven thousand three hundred twenty-one'); INSERT INTO t3 VALUES(4755, 62352, 'sixty-two thousand three hundred fifty-two'); INSERT INTO t3 VALUES(4756, 56073, 'fifty-six thousand seventy-three'); INSERT INTO t3 VALUES(4757, 15541, 'fifteen thousand five hundred forty-one'); INSERT INTO t3 VALUES(4758, 33714, 'thirty-three thousand seven hundred fourteen'); INSERT INTO t3 VALUES(4759, 32329, 'thirty-two thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(4760, 77725, 'seventy-seven thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(4761, 14444, 'fourteen thousand four hundred forty-four'); INSERT INTO t3 VALUES(4762, 48509, 'forty-eight thousand five hundred nine'); INSERT INTO t3 VALUES(4763, 85064, 'eighty-five thousand sixty-four'); INSERT INTO t3 VALUES(4764, 85186, 'eighty-five thousand one hundred eighty-six'); INSERT INTO t3 VALUES(4765, 1309, 'one thousand three hundred nine'); INSERT INTO t3 VALUES(4766, 12047, 'twelve thousand forty-seven'); INSERT INTO t3 VALUES(4767, 31292, 'thirty-one thousand two hundred ninety-two'); INSERT INTO t3 VALUES(4768, 32860, 'thirty-two thousand eight hundred sixty'); INSERT INTO t3 VALUES(4769, 1770, 'one thousand seven hundred seventy'); INSERT INTO t3 VALUES(4770, 8379, 'eight thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(4771, 16549, 'sixteen thousand five hundred forty-nine'); INSERT INTO t3 VALUES(4772, 51602, 'fifty-one thousand six hundred two'); INSERT INTO t3 VALUES(4773, 9098, 'nine thousand ninety-eight'); INSERT INTO t3 VALUES(4774, 86228, 'eighty-six thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(4775, 56084, 'fifty-six thousand eighty-four'); INSERT INTO t3 VALUES(4776, 67274, 'sixty-seven thousand two hundred seventy-four'); INSERT INTO t3 VALUES(4777, 9238, 'nine thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(4778, 42824, 'forty-two thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(4779, 95073, 'ninety-five thousand seventy-three'); INSERT INTO t3 VALUES(4780, 64989, 'sixty-four thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(4781, 10437, 'ten thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(4782, 49216, 'forty-nine thousand two hundred sixteen'); INSERT INTO t3 VALUES(4783, 17560, 'seventeen thousand five hundred sixty'); INSERT INTO t3 VALUES(4784, 63865, 'sixty-three thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(4785, 54517, 'fifty-four thousand five hundred seventeen'); INSERT INTO t3 VALUES(4786, 74263, 'seventy-four thousand two hundred sixty-three'); INSERT INTO t3 VALUES(4787, 31483, 'thirty-one thousand four hundred eighty-three'); INSERT INTO t3 VALUES(4788, 38967, 'thirty-eight thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(4789, 10923, 'ten thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(4790, 47843, 'forty-seven thousand eight hundred forty-three'); INSERT INTO t3 VALUES(4791, 84922, 'eighty-four thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(4792, 64591, 'sixty-four thousand five hundred ninety-one'); INSERT INTO t3 VALUES(4793, 80493, 'eighty thousand four hundred ninety-three'); INSERT INTO t3 VALUES(4794, 24902, 'twenty-four thousand nine hundred two'); INSERT INTO t3 VALUES(4795, 63564, 'sixty-three thousand five hundred sixty-four'); INSERT INTO t3 VALUES(4796, 2881, 'two thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(4797, 13764, 'thirteen thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(4798, 61888, 'sixty-one thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(4799, 2098, 'two thousand ninety-eight'); INSERT INTO t3 VALUES(4800, 45862, 'forty-five thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(4801, 69082, 'sixty-nine thousand eighty-two'); INSERT INTO t3 VALUES(4802, 66271, 'sixty-six thousand two hundred seventy-one'); INSERT INTO t3 VALUES(4803, 42768, 'forty-two thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(4804, 35226, 'thirty-five thousand two hundred twenty-six'); INSERT INTO t3 VALUES(4805, 84784, 'eighty-four thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(4806, 74277, 'seventy-four thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(4807, 92202, 'ninety-two thousand two hundred two'); INSERT INTO t3 VALUES(4808, 80464, 'eighty thousand four hundred sixty-four'); INSERT INTO t3 VALUES(4809, 27697, 'twenty-seven thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(4810, 5353, 'five thousand three hundred fifty-three'); INSERT INTO t3 VALUES(4811, 5002, 'five thousand two'); INSERT INTO t3 VALUES(4812, 7687, 'seven thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(4813, 29414, 'twenty-nine thousand four hundred fourteen'); INSERT INTO t3 VALUES(4814, 98274, 'ninety-eight thousand two hundred seventy-four'); INSERT INTO t3 VALUES(4815, 39652, 'thirty-nine thousand six hundred fifty-two'); INSERT INTO t3 VALUES(4816, 74237, 'seventy-four thousand two hundred thirty-seven'); INSERT INTO t3 VALUES(4817, 26761, 'twenty-six thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(4818, 74287, 'seventy-four thousand two hundred eighty-seven'); INSERT INTO t3 VALUES(4819, 84035, 'eighty-four thousand thirty-five'); INSERT INTO t3 VALUES(4820, 82892, 'eighty-two thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(4821, 1117, 'one thousand one hundred seventeen'); INSERT INTO t3 VALUES(4822, 32247, 'thirty-two thousand two hundred forty-seven'); INSERT INTO t3 VALUES(4823, 12453, 'twelve thousand four hundred fifty-three'); INSERT INTO t3 VALUES(4824, 25244, 'twenty-five thousand two hundred forty-four'); INSERT INTO t3 VALUES(4825, 89896, 'eighty-nine thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(4826, 59883, 'fifty-nine thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(4827, 57300, 'fifty-seven thousand three hundred'); INSERT INTO t3 VALUES(4828, 11907, 'eleven thousand nine hundred seven'); INSERT INTO t3 VALUES(4829, 99518, 'ninety-nine thousand five hundred eighteen'); INSERT INTO t3 VALUES(4830, 41801, 'forty-one thousand eight hundred one'); INSERT INTO t3 VALUES(4831, 1239, 'one thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(4832, 47840, 'forty-seven thousand eight hundred forty'); INSERT INTO t3 VALUES(4833, 50098, 'fifty thousand ninety-eight'); INSERT INTO t3 VALUES(4834, 77987, 'seventy-seven thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(4835, 23982, 'twenty-three thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(4836, 8077, 'eight thousand seventy-seven'); INSERT INTO t3 VALUES(4837, 12074, 'twelve thousand seventy-four'); INSERT INTO t3 VALUES(4838, 15024, 'fifteen thousand twenty-four'); INSERT INTO t3 VALUES(4839, 7685, 'seven thousand six hundred eighty-five'); INSERT INTO t3 VALUES(4840, 88200, 'eighty-eight thousand two hundred'); INSERT INTO t3 VALUES(4841, 23529, 'twenty-three thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(4842, 68902, 'sixty-eight thousand nine hundred two'); INSERT INTO t3 VALUES(4843, 81465, 'eighty-one thousand four hundred sixty-five'); INSERT INTO t3 VALUES(4844, 32099, 'thirty-two thousand ninety-nine'); INSERT INTO t3 VALUES(4845, 73640, 'seventy-three thousand six hundred forty'); INSERT INTO t3 VALUES(4846, 34012, 'thirty-four thousand twelve'); INSERT INTO t3 VALUES(4847, 61675, 'sixty-one thousand six hundred seventy-five'); INSERT INTO t3 VALUES(4848, 7280, 'seven thousand two hundred eighty'); INSERT INTO t3 VALUES(4849, 82103, 'eighty-two thousand one hundred three'); INSERT INTO t3 VALUES(4850, 70799, 'seventy thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(4851, 50494, 'fifty thousand four hundred ninety-four'); INSERT INTO t3 VALUES(4852, 77560, 'seventy-seven thousand five hundred sixty'); INSERT INTO t3 VALUES(4853, 38742, 'thirty-eight thousand seven hundred forty-two'); INSERT INTO t3 VALUES(4854, 24288, 'twenty-four thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(4855, 69058, 'sixty-nine thousand fifty-eight'); INSERT INTO t3 VALUES(4856, 12216, 'twelve thousand two hundred sixteen'); INSERT INTO t3 VALUES(4857, 99738, 'ninety-nine thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(4858, 10590, 'ten thousand five hundred ninety'); INSERT INTO t3 VALUES(4859, 15070, 'fifteen thousand seventy'); INSERT INTO t3 VALUES(4860, 90736, 'ninety thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(4861, 56521, 'fifty-six thousand five hundred twenty-one'); INSERT INTO t3 VALUES(4862, 75640, 'seventy-five thousand six hundred forty'); INSERT INTO t3 VALUES(4863, 14212, 'fourteen thousand two hundred twelve'); INSERT INTO t3 VALUES(4864, 81937, 'eighty-one thousand nine hundred thirty-seven'); INSERT INTO t3 VALUES(4865, 99931, 'ninety-nine thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(4866, 64409, 'sixty-four thousand four hundred nine'); INSERT INTO t3 VALUES(4867, 13734, 'thirteen thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(4868, 12079, 'twelve thousand seventy-nine'); INSERT INTO t3 VALUES(4869, 31677, 'thirty-one thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(4870, 95818, 'ninety-five thousand eight hundred eighteen'); INSERT INTO t3 VALUES(4871, 92679, 'ninety-two thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(4872, 80314, 'eighty thousand three hundred fourteen'); INSERT INTO t3 VALUES(4873, 31833, 'thirty-one thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(4874, 14644, 'fourteen thousand six hundred forty-four'); INSERT INTO t3 VALUES(4875, 57882, 'fifty-seven thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(4876, 26362, 'twenty-six thousand three hundred sixty-two'); INSERT INTO t3 VALUES(4877, 29571, 'twenty-nine thousand five hundred seventy-one'); INSERT INTO t3 VALUES(4878, 44941, 'forty-four thousand nine hundred forty-one'); INSERT INTO t3 VALUES(4879, 79555, 'seventy-nine thousand five hundred fifty-five'); INSERT INTO t3 VALUES(4880, 70562, 'seventy thousand five hundred sixty-two'); INSERT INTO t3 VALUES(4881, 99769, 'ninety-nine thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(4882, 34297, 'thirty-four thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(4883, 59558, 'fifty-nine thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(4884, 17514, 'seventeen thousand five hundred fourteen'); INSERT INTO t3 VALUES(4885, 18280, 'eighteen thousand two hundred eighty'); INSERT INTO t3 VALUES(4886, 15878, 'fifteen thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(4887, 24067, 'twenty-four thousand sixty-seven'); INSERT INTO t3 VALUES(4888, 88931, 'eighty-eight thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(4889, 5181, 'five thousand one hundred eighty-one'); INSERT INTO t3 VALUES(4890, 55054, 'fifty-five thousand fifty-four'); INSERT INTO t3 VALUES(4891, 34607, 'thirty-four thousand six hundred seven'); INSERT INTO t3 VALUES(4892, 26048, 'twenty-six thousand forty-eight'); INSERT INTO t3 VALUES(4893, 21009, 'twenty-one thousand nine'); INSERT INTO t3 VALUES(4894, 79519, 'seventy-nine thousand five hundred nineteen'); INSERT INTO t3 VALUES(4895, 13919, 'thirteen thousand nine hundred nineteen'); INSERT INTO t3 VALUES(4896, 48879, 'forty-eight thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(4897, 10839, 'ten thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(4898, 12357, 'twelve thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(4899, 84730, 'eighty-four thousand seven hundred thirty'); INSERT INTO t3 VALUES(4900, 43492, 'forty-three thousand four hundred ninety-two'); INSERT INTO t3 VALUES(4901, 55627, 'fifty-five thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(4902, 44426, 'forty-four thousand four hundred twenty-six'); INSERT INTO t3 VALUES(4903, 14694, 'fourteen thousand six hundred ninety-four'); INSERT INTO t3 VALUES(4904, 69454, 'sixty-nine thousand four hundred fifty-four'); INSERT INTO t3 VALUES(4905, 88501, 'eighty-eight thousand five hundred one'); INSERT INTO t3 VALUES(4906, 55253, 'fifty-five thousand two hundred fifty-three'); INSERT INTO t3 VALUES(4907, 75291, 'seventy-five thousand two hundred ninety-one'); INSERT INTO t3 VALUES(4908, 95152, 'ninety-five thousand one hundred fifty-two'); INSERT INTO t3 VALUES(4909, 31034, 'thirty-one thousand thirty-four'); INSERT INTO t3 VALUES(4910, 99726, 'ninety-nine thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(4911, 24828, 'twenty-four thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(4912, 44348, 'forty-four thousand three hundred forty-eight'); INSERT INTO t3 VALUES(4913, 30303, 'thirty thousand three hundred three'); INSERT INTO t3 VALUES(4914, 5326, 'five thousand three hundred twenty-six'); INSERT INTO t3 VALUES(4915, 34050, 'thirty-four thousand fifty'); INSERT INTO t3 VALUES(4916, 6457, 'six thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(4917, 41994, 'forty-one thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(4918, 59071, 'fifty-nine thousand seventy-one'); INSERT INTO t3 VALUES(4919, 23307, 'twenty-three thousand three hundred seven'); INSERT INTO t3 VALUES(4920, 16993, 'sixteen thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(4921, 27380, 'twenty-seven thousand three hundred eighty'); INSERT INTO t3 VALUES(4922, 52711, 'fifty-two thousand seven hundred eleven'); INSERT INTO t3 VALUES(4923, 16664, 'sixteen thousand six hundred sixty-four'); INSERT INTO t3 VALUES(4924, 83573, 'eighty-three thousand five hundred seventy-three'); INSERT INTO t3 VALUES(4925, 61448, 'sixty-one thousand four hundred forty-eight'); INSERT INTO t3 VALUES(4926, 46892, 'forty-six thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(4927, 36083, 'thirty-six thousand eighty-three'); INSERT INTO t3 VALUES(4928, 3469, 'three thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(4929, 5031, 'five thousand thirty-one'); INSERT INTO t3 VALUES(4930, 21199, 'twenty-one thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(4931, 92415, 'ninety-two thousand four hundred fifteen'); INSERT INTO t3 VALUES(4932, 51844, 'fifty-one thousand eight hundred forty-four'); INSERT INTO t3 VALUES(4933, 24551, 'twenty-four thousand five hundred fifty-one'); INSERT INTO t3 VALUES(4934, 81455, 'eighty-one thousand four hundred fifty-five'); INSERT INTO t3 VALUES(4935, 96000, 'ninety-six thousand'); INSERT INTO t3 VALUES(4936, 71240, 'seventy-one thousand two hundred forty'); INSERT INTO t3 VALUES(4937, 18378, 'eighteen thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(4938, 77605, 'seventy-seven thousand six hundred five'); INSERT INTO t3 VALUES(4939, 49959, 'forty-nine thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(4940, 63338, 'sixty-three thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(4941, 44667, 'forty-four thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(4942, 80826, 'eighty thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(4943, 40813, 'forty thousand eight hundred thirteen'); INSERT INTO t3 VALUES(4944, 70472, 'seventy thousand four hundred seventy-two'); INSERT INTO t3 VALUES(4945, 58210, 'fifty-eight thousand two hundred ten'); INSERT INTO t3 VALUES(4946, 39310, 'thirty-nine thousand three hundred ten'); INSERT INTO t3 VALUES(4947, 51746, 'fifty-one thousand seven hundred forty-six'); INSERT INTO t3 VALUES(4948, 85335, 'eighty-five thousand three hundred thirty-five'); INSERT INTO t3 VALUES(4949, 77283, 'seventy-seven thousand two hundred eighty-three'); INSERT INTO t3 VALUES(4950, 84380, 'eighty-four thousand three hundred eighty'); INSERT INTO t3 VALUES(4951, 50945, 'fifty thousand nine hundred forty-five'); INSERT INTO t3 VALUES(4952, 32624, 'thirty-two thousand six hundred twenty-four'); INSERT INTO t3 VALUES(4953, 37367, 'thirty-seven thousand three hundred sixty-seven'); INSERT INTO t3 VALUES(4954, 34802, 'thirty-four thousand eight hundred two'); INSERT INTO t3 VALUES(4955, 94202, 'ninety-four thousand two hundred two'); INSERT INTO t3 VALUES(4956, 57492, 'fifty-seven thousand four hundred ninety-two'); INSERT INTO t3 VALUES(4957, 76334, 'seventy-six thousand three hundred thirty-four'); INSERT INTO t3 VALUES(4958, 50928, 'fifty thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(4959, 43286, 'forty-three thousand two hundred eighty-six'); INSERT INTO t3 VALUES(4960, 45969, 'forty-five thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(4961, 58281, 'fifty-eight thousand two hundred eighty-one'); INSERT INTO t3 VALUES(4962, 73053, 'seventy-three thousand fifty-three'); INSERT INTO t3 VALUES(4963, 76339, 'seventy-six thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(4964, 99403, 'ninety-nine thousand four hundred three'); INSERT INTO t3 VALUES(4965, 74862, 'seventy-four thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(4966, 33539, 'thirty-three thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(4967, 33275, 'thirty-three thousand two hundred seventy-five'); INSERT INTO t3 VALUES(4968, 91223, 'ninety-one thousand two hundred twenty-three'); INSERT INTO t3 VALUES(4969, 59855, 'fifty-nine thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(4970, 78539, 'seventy-eight thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(4971, 20838, 'twenty thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(4972, 96413, 'ninety-six thousand four hundred thirteen'); INSERT INTO t3 VALUES(4973, 41297, 'forty-one thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(4974, 97134, 'ninety-seven thousand one hundred thirty-four'); INSERT INTO t3 VALUES(4975, 33788, 'thirty-three thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(4976, 18351, 'eighteen thousand three hundred fifty-one'); INSERT INTO t3 VALUES(4977, 45544, 'forty-five thousand five hundred forty-four'); INSERT INTO t3 VALUES(4978, 95782, 'ninety-five thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(4979, 205, 'two hundred five'); INSERT INTO t3 VALUES(4980, 37846, 'thirty-seven thousand eight hundred forty-six'); INSERT INTO t3 VALUES(4981, 31315, 'thirty-one thousand three hundred fifteen'); INSERT INTO t3 VALUES(4982, 84818, 'eighty-four thousand eight hundred eighteen'); INSERT INTO t3 VALUES(4983, 3995, 'three thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(4984, 73963, 'seventy-three thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(4985, 26633, 'twenty-six thousand six hundred thirty-three'); INSERT INTO t3 VALUES(4986, 19891, 'nineteen thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(4987, 49856, 'forty-nine thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(4988, 69721, 'sixty-nine thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(4989, 43404, 'forty-three thousand four hundred four'); INSERT INTO t3 VALUES(4990, 89304, 'eighty-nine thousand three hundred four'); INSERT INTO t3 VALUES(4991, 21843, 'twenty-one thousand eight hundred forty-three'); INSERT INTO t3 VALUES(4992, 59798, 'fifty-nine thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(4993, 46883, 'forty-six thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(4994, 58019, 'fifty-eight thousand nineteen'); INSERT INTO t3 VALUES(4995, 12747, 'twelve thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(4996, 82912, 'eighty-two thousand nine hundred twelve'); INSERT INTO t3 VALUES(4997, 8586, 'eight thousand five hundred eighty-six'); INSERT INTO t3 VALUES(4998, 6723, 'six thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(4999, 85940, 'eighty-five thousand nine hundred forty'); INSERT INTO t3 VALUES(5000, 66113, 'sixty-six thousand one hundred thirteen'); INSERT INTO t3 VALUES(5001, 24322, 'twenty-four thousand three hundred twenty-two'); INSERT INTO t3 VALUES(5002, 8130, 'eight thousand one hundred thirty'); INSERT INTO t3 VALUES(5003, 95971, 'ninety-five thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(5004, 14644, 'fourteen thousand six hundred forty-four'); INSERT INTO t3 VALUES(5005, 37490, 'thirty-seven thousand four hundred ninety'); INSERT INTO t3 VALUES(5006, 65844, 'sixty-five thousand eight hundred forty-four'); INSERT INTO t3 VALUES(5007, 84700, 'eighty-four thousand seven hundred'); INSERT INTO t3 VALUES(5008, 10621, 'ten thousand six hundred twenty-one'); INSERT INTO t3 VALUES(5009, 80919, 'eighty thousand nine hundred nineteen'); INSERT INTO t3 VALUES(5010, 16642, 'sixteen thousand six hundred forty-two'); INSERT INTO t3 VALUES(5011, 43103, 'forty-three thousand one hundred three'); INSERT INTO t3 VALUES(5012, 25487, 'twenty-five thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(5013, 10485, 'ten thousand four hundred eighty-five'); INSERT INTO t3 VALUES(5014, 56375, 'fifty-six thousand three hundred seventy-five'); INSERT INTO t3 VALUES(5015, 10406, 'ten thousand four hundred six'); INSERT INTO t3 VALUES(5016, 5808, 'five thousand eight hundred eight'); INSERT INTO t3 VALUES(5017, 5514, 'five thousand five hundred fourteen'); INSERT INTO t3 VALUES(5018, 90687, 'ninety thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(5019, 1775, 'one thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(5020, 68369, 'sixty-eight thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(5021, 69277, 'sixty-nine thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(5022, 25740, 'twenty-five thousand seven hundred forty'); INSERT INTO t3 VALUES(5023, 78878, 'seventy-eight thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(5024, 83454, 'eighty-three thousand four hundred fifty-four'); INSERT INTO t3 VALUES(5025, 84490, 'eighty-four thousand four hundred ninety'); INSERT INTO t3 VALUES(5026, 39202, 'thirty-nine thousand two hundred two'); INSERT INTO t3 VALUES(5027, 53072, 'fifty-three thousand seventy-two'); INSERT INTO t3 VALUES(5028, 824, 'eight hundred twenty-four'); INSERT INTO t3 VALUES(5029, 35709, 'thirty-five thousand seven hundred nine'); INSERT INTO t3 VALUES(5030, 6074, 'six thousand seventy-four'); INSERT INTO t3 VALUES(5031, 2581, 'two thousand five hundred eighty-one'); INSERT INTO t3 VALUES(5032, 24809, 'twenty-four thousand eight hundred nine'); INSERT INTO t3 VALUES(5033, 12970, 'twelve thousand nine hundred seventy'); INSERT INTO t3 VALUES(5034, 79953, 'seventy-nine thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(5035, 42603, 'forty-two thousand six hundred three'); INSERT INTO t3 VALUES(5036, 14562, 'fourteen thousand five hundred sixty-two'); INSERT INTO t3 VALUES(5037, 79746, 'seventy-nine thousand seven hundred forty-six'); INSERT INTO t3 VALUES(5038, 27403, 'twenty-seven thousand four hundred three'); INSERT INTO t3 VALUES(5039, 16608, 'sixteen thousand six hundred eight'); INSERT INTO t3 VALUES(5040, 92994, 'ninety-two thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(5041, 71370, 'seventy-one thousand three hundred seventy'); INSERT INTO t3 VALUES(5042, 62781, 'sixty-two thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(5043, 39164, 'thirty-nine thousand one hundred sixty-four'); INSERT INTO t3 VALUES(5044, 55574, 'fifty-five thousand five hundred seventy-four'); INSERT INTO t3 VALUES(5045, 18066, 'eighteen thousand sixty-six'); INSERT INTO t3 VALUES(5046, 26590, 'twenty-six thousand five hundred ninety'); INSERT INTO t3 VALUES(5047, 22684, 'twenty-two thousand six hundred eighty-four'); INSERT INTO t3 VALUES(5048, 87821, 'eighty-seven thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(5049, 50642, 'fifty thousand six hundred forty-two'); INSERT INTO t3 VALUES(5050, 69741, 'sixty-nine thousand seven hundred forty-one'); INSERT INTO t3 VALUES(5051, 98648, 'ninety-eight thousand six hundred forty-eight'); INSERT INTO t3 VALUES(5052, 99862, 'ninety-nine thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(5053, 58576, 'fifty-eight thousand five hundred seventy-six'); INSERT INTO t3 VALUES(5054, 69126, 'sixty-nine thousand one hundred twenty-six'); INSERT INTO t3 VALUES(5055, 73653, 'seventy-three thousand six hundred fifty-three'); INSERT INTO t3 VALUES(5056, 71722, 'seventy-one thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(5057, 2286, 'two thousand two hundred eighty-six'); INSERT INTO t3 VALUES(5058, 71000, 'seventy-one thousand'); INSERT INTO t3 VALUES(5059, 79784, 'seventy-nine thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(5060, 82345, 'eighty-two thousand three hundred forty-five'); INSERT INTO t3 VALUES(5061, 50878, 'fifty thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(5062, 55205, 'fifty-five thousand two hundred five'); INSERT INTO t3 VALUES(5063, 60071, 'sixty thousand seventy-one'); INSERT INTO t3 VALUES(5064, 11228, 'eleven thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(5065, 43608, 'forty-three thousand six hundred eight'); INSERT INTO t3 VALUES(5066, 85486, 'eighty-five thousand four hundred eighty-six'); INSERT INTO t3 VALUES(5067, 37168, 'thirty-seven thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(5068, 60688, 'sixty thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(5069, 50678, 'fifty thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(5070, 61226, 'sixty-one thousand two hundred twenty-six'); INSERT INTO t3 VALUES(5071, 38096, 'thirty-eight thousand ninety-six'); INSERT INTO t3 VALUES(5072, 72403, 'seventy-two thousand four hundred three'); INSERT INTO t3 VALUES(5073, 40796, 'forty thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(5074, 60536, 'sixty thousand five hundred thirty-six'); INSERT INTO t3 VALUES(5075, 32704, 'thirty-two thousand seven hundred four'); INSERT INTO t3 VALUES(5076, 82359, 'eighty-two thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(5077, 46989, 'forty-six thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(5078, 73857, 'seventy-three thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(5079, 65620, 'sixty-five thousand six hundred twenty'); INSERT INTO t3 VALUES(5080, 13829, 'thirteen thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(5081, 48515, 'forty-eight thousand five hundred fifteen'); INSERT INTO t3 VALUES(5082, 57684, 'fifty-seven thousand six hundred eighty-four'); INSERT INTO t3 VALUES(5083, 50132, 'fifty thousand one hundred thirty-two'); INSERT INTO t3 VALUES(5084, 41830, 'forty-one thousand eight hundred thirty'); INSERT INTO t3 VALUES(5085, 78551, 'seventy-eight thousand five hundred fifty-one'); INSERT INTO t3 VALUES(5086, 27057, 'twenty-seven thousand fifty-seven'); INSERT INTO t3 VALUES(5087, 21641, 'twenty-one thousand six hundred forty-one'); INSERT INTO t3 VALUES(5088, 90341, 'ninety thousand three hundred forty-one'); INSERT INTO t3 VALUES(5089, 411, 'four hundred eleven'); INSERT INTO t3 VALUES(5090, 50736, 'fifty thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(5091, 85361, 'eighty-five thousand three hundred sixty-one'); INSERT INTO t3 VALUES(5092, 94252, 'ninety-four thousand two hundred fifty-two'); INSERT INTO t3 VALUES(5093, 8800, 'eight thousand eight hundred'); INSERT INTO t3 VALUES(5094, 70026, 'seventy thousand twenty-six'); INSERT INTO t3 VALUES(5095, 41483, 'forty-one thousand four hundred eighty-three'); INSERT INTO t3 VALUES(5096, 32335, 'thirty-two thousand three hundred thirty-five'); INSERT INTO t3 VALUES(5097, 38522, 'thirty-eight thousand five hundred twenty-two'); INSERT INTO t3 VALUES(5098, 55682, 'fifty-five thousand six hundred eighty-two'); INSERT INTO t3 VALUES(5099, 78728, 'seventy-eight thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(5100, 41736, 'forty-one thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(5101, 10910, 'ten thousand nine hundred ten'); INSERT INTO t3 VALUES(5102, 22696, 'twenty-two thousand six hundred ninety-six'); INSERT INTO t3 VALUES(5103, 88552, 'eighty-eight thousand five hundred fifty-two'); INSERT INTO t3 VALUES(5104, 60685, 'sixty thousand six hundred eighty-five'); INSERT INTO t3 VALUES(5105, 5912, 'five thousand nine hundred twelve'); INSERT INTO t3 VALUES(5106, 32618, 'thirty-two thousand six hundred eighteen'); INSERT INTO t3 VALUES(5107, 75531, 'seventy-five thousand five hundred thirty-one'); INSERT INTO t3 VALUES(5108, 34889, 'thirty-four thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(5109, 86766, 'eighty-six thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(5110, 57996, 'fifty-seven thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(5111, 43065, 'forty-three thousand sixty-five'); INSERT INTO t3 VALUES(5112, 26383, 'twenty-six thousand three hundred eighty-three'); INSERT INTO t3 VALUES(5113, 55552, 'fifty-five thousand five hundred fifty-two'); INSERT INTO t3 VALUES(5114, 36143, 'thirty-six thousand one hundred forty-three'); INSERT INTO t3 VALUES(5115, 67325, 'sixty-seven thousand three hundred twenty-five'); INSERT INTO t3 VALUES(5116, 52968, 'fifty-two thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(5117, 9070, 'nine thousand seventy'); INSERT INTO t3 VALUES(5118, 34720, 'thirty-four thousand seven hundred twenty'); INSERT INTO t3 VALUES(5119, 30889, 'thirty thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(5120, 18379, 'eighteen thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(5121, 16918, 'sixteen thousand nine hundred eighteen'); INSERT INTO t3 VALUES(5122, 87570, 'eighty-seven thousand five hundred seventy'); INSERT INTO t3 VALUES(5123, 22310, 'twenty-two thousand three hundred ten'); INSERT INTO t3 VALUES(5124, 37344, 'thirty-seven thousand three hundred forty-four'); INSERT INTO t3 VALUES(5125, 90795, 'ninety thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(5126, 6061, 'six thousand sixty-one'); INSERT INTO t3 VALUES(5127, 66987, 'sixty-six thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(5128, 39779, 'thirty-nine thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(5129, 19394, 'nineteen thousand three hundred ninety-four'); INSERT INTO t3 VALUES(5130, 46010, 'forty-six thousand ten'); INSERT INTO t3 VALUES(5131, 91488, 'ninety-one thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(5132, 66494, 'sixty-six thousand four hundred ninety-four'); INSERT INTO t3 VALUES(5133, 39525, 'thirty-nine thousand five hundred twenty-five'); INSERT INTO t3 VALUES(5134, 31382, 'thirty-one thousand three hundred eighty-two'); INSERT INTO t3 VALUES(5135, 3680, 'three thousand six hundred eighty'); INSERT INTO t3 VALUES(5136, 95424, 'ninety-five thousand four hundred twenty-four'); INSERT INTO t3 VALUES(5137, 21679, 'twenty-one thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(5138, 39293, 'thirty-nine thousand two hundred ninety-three'); INSERT INTO t3 VALUES(5139, 3425, 'three thousand four hundred twenty-five'); INSERT INTO t3 VALUES(5140, 74006, 'seventy-four thousand six'); INSERT INTO t3 VALUES(5141, 17009, 'seventeen thousand nine'); INSERT INTO t3 VALUES(5142, 14475, 'fourteen thousand four hundred seventy-five'); INSERT INTO t3 VALUES(5143, 48520, 'forty-eight thousand five hundred twenty'); INSERT INTO t3 VALUES(5144, 70568, 'seventy thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(5145, 24675, 'twenty-four thousand six hundred seventy-five'); INSERT INTO t3 VALUES(5146, 42895, 'forty-two thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(5147, 39865, 'thirty-nine thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(5148, 70375, 'seventy thousand three hundred seventy-five'); INSERT INTO t3 VALUES(5149, 75726, 'seventy-five thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(5150, 91335, 'ninety-one thousand three hundred thirty-five'); INSERT INTO t3 VALUES(5151, 26796, 'twenty-six thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(5152, 17408, 'seventeen thousand four hundred eight'); INSERT INTO t3 VALUES(5153, 50712, 'fifty thousand seven hundred twelve'); INSERT INTO t3 VALUES(5154, 48776, 'forty-eight thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(5155, 33845, 'thirty-three thousand eight hundred forty-five'); INSERT INTO t3 VALUES(5156, 87474, 'eighty-seven thousand four hundred seventy-four'); INSERT INTO t3 VALUES(5157, 32206, 'thirty-two thousand two hundred six'); INSERT INTO t3 VALUES(5158, 65223, 'sixty-five thousand two hundred twenty-three'); INSERT INTO t3 VALUES(5159, 93682, 'ninety-three thousand six hundred eighty-two'); INSERT INTO t3 VALUES(5160, 35828, 'thirty-five thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(5161, 76847, 'seventy-six thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(5162, 14408, 'fourteen thousand four hundred eight'); INSERT INTO t3 VALUES(5163, 93166, 'ninety-three thousand one hundred sixty-six'); INSERT INTO t3 VALUES(5164, 65629, 'sixty-five thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(5165, 75257, 'seventy-five thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(5166, 17025, 'seventeen thousand twenty-five'); INSERT INTO t3 VALUES(5167, 19091, 'nineteen thousand ninety-one'); INSERT INTO t3 VALUES(5168, 98046, 'ninety-eight thousand forty-six'); INSERT INTO t3 VALUES(5169, 54254, 'fifty-four thousand two hundred fifty-four'); INSERT INTO t3 VALUES(5170, 81464, 'eighty-one thousand four hundred sixty-four'); INSERT INTO t3 VALUES(5171, 44732, 'forty-four thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(5172, 91734, 'ninety-one thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(5173, 47346, 'forty-seven thousand three hundred forty-six'); INSERT INTO t3 VALUES(5174, 58097, 'fifty-eight thousand ninety-seven'); INSERT INTO t3 VALUES(5175, 75380, 'seventy-five thousand three hundred eighty'); INSERT INTO t3 VALUES(5176, 39555, 'thirty-nine thousand five hundred fifty-five'); INSERT INTO t3 VALUES(5177, 47373, 'forty-seven thousand three hundred seventy-three'); INSERT INTO t3 VALUES(5178, 64877, 'sixty-four thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(5179, 21348, 'twenty-one thousand three hundred forty-eight'); INSERT INTO t3 VALUES(5180, 36240, 'thirty-six thousand two hundred forty'); INSERT INTO t3 VALUES(5181, 13435, 'thirteen thousand four hundred thirty-five'); INSERT INTO t3 VALUES(5182, 15048, 'fifteen thousand forty-eight'); INSERT INTO t3 VALUES(5183, 77108, 'seventy-seven thousand one hundred eight'); INSERT INTO t3 VALUES(5184, 25707, 'twenty-five thousand seven hundred seven'); INSERT INTO t3 VALUES(5185, 16716, 'sixteen thousand seven hundred sixteen'); INSERT INTO t3 VALUES(5186, 40386, 'forty thousand three hundred eighty-six'); INSERT INTO t3 VALUES(5187, 94386, 'ninety-four thousand three hundred eighty-six'); INSERT INTO t3 VALUES(5188, 61062, 'sixty-one thousand sixty-two'); INSERT INTO t3 VALUES(5189, 32277, 'thirty-two thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(5190, 7382, 'seven thousand three hundred eighty-two'); INSERT INTO t3 VALUES(5191, 77969, 'seventy-seven thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(5192, 97830, 'ninety-seven thousand eight hundred thirty'); INSERT INTO t3 VALUES(5193, 44012, 'forty-four thousand twelve'); INSERT INTO t3 VALUES(5194, 27865, 'twenty-seven thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(5195, 2111, 'two thousand one hundred eleven'); INSERT INTO t3 VALUES(5196, 92151, 'ninety-two thousand one hundred fifty-one'); INSERT INTO t3 VALUES(5197, 33711, 'thirty-three thousand seven hundred eleven'); INSERT INTO t3 VALUES(5198, 86673, 'eighty-six thousand six hundred seventy-three'); INSERT INTO t3 VALUES(5199, 32063, 'thirty-two thousand sixty-three'); INSERT INTO t3 VALUES(5200, 58137, 'fifty-eight thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(5201, 26677, 'twenty-six thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(5202, 9393, 'nine thousand three hundred ninety-three'); INSERT INTO t3 VALUES(5203, 87719, 'eighty-seven thousand seven hundred nineteen'); INSERT INTO t3 VALUES(5204, 29921, 'twenty-nine thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(5205, 43815, 'forty-three thousand eight hundred fifteen'); INSERT INTO t3 VALUES(5206, 79022, 'seventy-nine thousand twenty-two'); INSERT INTO t3 VALUES(5207, 49840, 'forty-nine thousand eight hundred forty'); INSERT INTO t3 VALUES(5208, 71770, 'seventy-one thousand seven hundred seventy'); INSERT INTO t3 VALUES(5209, 17187, 'seventeen thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(5210, 71694, 'seventy-one thousand six hundred ninety-four'); INSERT INTO t3 VALUES(5211, 26982, 'twenty-six thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(5212, 74211, 'seventy-four thousand two hundred eleven'); INSERT INTO t3 VALUES(5213, 12564, 'twelve thousand five hundred sixty-four'); INSERT INTO t3 VALUES(5214, 62500, 'sixty-two thousand five hundred'); INSERT INTO t3 VALUES(5215, 50541, 'fifty thousand five hundred forty-one'); INSERT INTO t3 VALUES(5216, 19991, 'nineteen thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(5217, 13397, 'thirteen thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(5218, 44687, 'forty-four thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(5219, 70617, 'seventy thousand six hundred seventeen'); INSERT INTO t3 VALUES(5220, 53581, 'fifty-three thousand five hundred eighty-one'); INSERT INTO t3 VALUES(5221, 18273, 'eighteen thousand two hundred seventy-three'); INSERT INTO t3 VALUES(5222, 20163, 'twenty thousand one hundred sixty-three'); INSERT INTO t3 VALUES(5223, 25076, 'twenty-five thousand seventy-six'); INSERT INTO t3 VALUES(5224, 25315, 'twenty-five thousand three hundred fifteen'); INSERT INTO t3 VALUES(5225, 63187, 'sixty-three thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(5226, 28879, 'twenty-eight thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(5227, 21950, 'twenty-one thousand nine hundred fifty'); INSERT INTO t3 VALUES(5228, 19570, 'nineteen thousand five hundred seventy'); INSERT INTO t3 VALUES(5229, 18020, 'eighteen thousand twenty'); INSERT INTO t3 VALUES(5230, 56642, 'fifty-six thousand six hundred forty-two'); INSERT INTO t3 VALUES(5231, 31942, 'thirty-one thousand nine hundred forty-two'); INSERT INTO t3 VALUES(5232, 57754, 'fifty-seven thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(5233, 65107, 'sixty-five thousand one hundred seven'); INSERT INTO t3 VALUES(5234, 895, 'eight hundred ninety-five'); INSERT INTO t3 VALUES(5235, 42916, 'forty-two thousand nine hundred sixteen'); INSERT INTO t3 VALUES(5236, 77099, 'seventy-seven thousand ninety-nine'); INSERT INTO t3 VALUES(5237, 30448, 'thirty thousand four hundred forty-eight'); INSERT INTO t3 VALUES(5238, 49991, 'forty-nine thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(5239, 39896, 'thirty-nine thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(5240, 9542, 'nine thousand five hundred forty-two'); INSERT INTO t3 VALUES(5241, 20577, 'twenty thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(5242, 86435, 'eighty-six thousand four hundred thirty-five'); INSERT INTO t3 VALUES(5243, 30495, 'thirty thousand four hundred ninety-five'); INSERT INTO t3 VALUES(5244, 16327, 'sixteen thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(5245, 7357, 'seven thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(5246, 47431, 'forty-seven thousand four hundred thirty-one'); INSERT INTO t3 VALUES(5247, 53954, 'fifty-three thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(5248, 89868, 'eighty-nine thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(5249, 71608, 'seventy-one thousand six hundred eight'); INSERT INTO t3 VALUES(5250, 77979, 'seventy-seven thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(5251, 53920, 'fifty-three thousand nine hundred twenty'); INSERT INTO t3 VALUES(5252, 17102, 'seventeen thousand one hundred two'); INSERT INTO t3 VALUES(5253, 41283, 'forty-one thousand two hundred eighty-three'); INSERT INTO t3 VALUES(5254, 14681, 'fourteen thousand six hundred eighty-one'); INSERT INTO t3 VALUES(5255, 36124, 'thirty-six thousand one hundred twenty-four'); INSERT INTO t3 VALUES(5256, 40148, 'forty thousand one hundred forty-eight'); INSERT INTO t3 VALUES(5257, 53118, 'fifty-three thousand one hundred eighteen'); INSERT INTO t3 VALUES(5258, 98197, 'ninety-eight thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(5259, 13804, 'thirteen thousand eight hundred four'); INSERT INTO t3 VALUES(5260, 90432, 'ninety thousand four hundred thirty-two'); INSERT INTO t3 VALUES(5261, 91215, 'ninety-one thousand two hundred fifteen'); INSERT INTO t3 VALUES(5262, 67540, 'sixty-seven thousand five hundred forty'); INSERT INTO t3 VALUES(5263, 94507, 'ninety-four thousand five hundred seven'); INSERT INTO t3 VALUES(5264, 97665, 'ninety-seven thousand six hundred sixty-five'); INSERT INTO t3 VALUES(5265, 27722, 'twenty-seven thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(5266, 5525, 'five thousand five hundred twenty-five'); INSERT INTO t3 VALUES(5267, 82660, 'eighty-two thousand six hundred sixty'); INSERT INTO t3 VALUES(5268, 2493, 'two thousand four hundred ninety-three'); INSERT INTO t3 VALUES(5269, 57665, 'fifty-seven thousand six hundred sixty-five'); INSERT INTO t3 VALUES(5270, 11447, 'eleven thousand four hundred forty-seven'); INSERT INTO t3 VALUES(5271, 50975, 'fifty thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(5272, 17031, 'seventeen thousand thirty-one'); INSERT INTO t3 VALUES(5273, 46062, 'forty-six thousand sixty-two'); INSERT INTO t3 VALUES(5274, 50788, 'fifty thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(5275, 66717, 'sixty-six thousand seven hundred seventeen'); INSERT INTO t3 VALUES(5276, 1022, 'one thousand twenty-two'); INSERT INTO t3 VALUES(5277, 2084, 'two thousand eighty-four'); INSERT INTO t3 VALUES(5278, 39473, 'thirty-nine thousand four hundred seventy-three'); INSERT INTO t3 VALUES(5279, 32962, 'thirty-two thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(5280, 3977, 'three thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(5281, 97842, 'ninety-seven thousand eight hundred forty-two'); INSERT INTO t3 VALUES(5282, 30254, 'thirty thousand two hundred fifty-four'); INSERT INTO t3 VALUES(5283, 50811, 'fifty thousand eight hundred eleven'); INSERT INTO t3 VALUES(5284, 94204, 'ninety-four thousand two hundred four'); INSERT INTO t3 VALUES(5285, 4950, 'four thousand nine hundred fifty'); INSERT INTO t3 VALUES(5286, 89870, 'eighty-nine thousand eight hundred seventy'); INSERT INTO t3 VALUES(5287, 40037, 'forty thousand thirty-seven'); INSERT INTO t3 VALUES(5288, 33708, 'thirty-three thousand seven hundred eight'); INSERT INTO t3 VALUES(5289, 33189, 'thirty-three thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(5290, 68296, 'sixty-eight thousand two hundred ninety-six'); INSERT INTO t3 VALUES(5291, 48145, 'forty-eight thousand one hundred forty-five'); INSERT INTO t3 VALUES(5292, 70236, 'seventy thousand two hundred thirty-six'); INSERT INTO t3 VALUES(5293, 10543, 'ten thousand five hundred forty-three'); INSERT INTO t3 VALUES(5294, 3280, 'three thousand two hundred eighty'); INSERT INTO t3 VALUES(5295, 2050, 'two thousand fifty'); INSERT INTO t3 VALUES(5296, 1989, 'one thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(5297, 1699, 'one thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(5298, 45121, 'forty-five thousand one hundred twenty-one'); INSERT INTO t3 VALUES(5299, 11781, 'eleven thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(5300, 48271, 'forty-eight thousand two hundred seventy-one'); INSERT INTO t3 VALUES(5301, 34294, 'thirty-four thousand two hundred ninety-four'); INSERT INTO t3 VALUES(5302, 52464, 'fifty-two thousand four hundred sixty-four'); INSERT INTO t3 VALUES(5303, 59753, 'fifty-nine thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(5304, 21853, 'twenty-one thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(5305, 83948, 'eighty-three thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(5306, 37917, 'thirty-seven thousand nine hundred seventeen'); INSERT INTO t3 VALUES(5307, 60546, 'sixty thousand five hundred forty-six'); INSERT INTO t3 VALUES(5308, 79951, 'seventy-nine thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(5309, 36248, 'thirty-six thousand two hundred forty-eight'); INSERT INTO t3 VALUES(5310, 58113, 'fifty-eight thousand one hundred thirteen'); INSERT INTO t3 VALUES(5311, 28184, 'twenty-eight thousand one hundred eighty-four'); INSERT INTO t3 VALUES(5312, 62196, 'sixty-two thousand one hundred ninety-six'); INSERT INTO t3 VALUES(5313, 87253, 'eighty-seven thousand two hundred fifty-three'); INSERT INTO t3 VALUES(5314, 28779, 'twenty-eight thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(5315, 61512, 'sixty-one thousand five hundred twelve'); INSERT INTO t3 VALUES(5316, 57415, 'fifty-seven thousand four hundred fifteen'); INSERT INTO t3 VALUES(5317, 45644, 'forty-five thousand six hundred forty-four'); INSERT INTO t3 VALUES(5318, 73594, 'seventy-three thousand five hundred ninety-four'); INSERT INTO t3 VALUES(5319, 34783, 'thirty-four thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(5320, 47691, 'forty-seven thousand six hundred ninety-one'); INSERT INTO t3 VALUES(5321, 56864, 'fifty-six thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(5322, 48701, 'forty-eight thousand seven hundred one'); INSERT INTO t3 VALUES(5323, 43437, 'forty-three thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(5324, 49428, 'forty-nine thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(5325, 69435, 'sixty-nine thousand four hundred thirty-five'); INSERT INTO t3 VALUES(5326, 73541, 'seventy-three thousand five hundred forty-one'); INSERT INTO t3 VALUES(5327, 12359, 'twelve thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(5328, 1215, 'one thousand two hundred fifteen'); INSERT INTO t3 VALUES(5329, 98618, 'ninety-eight thousand six hundred eighteen'); INSERT INTO t3 VALUES(5330, 79937, 'seventy-nine thousand nine hundred thirty-seven'); INSERT INTO t3 VALUES(5331, 7028, 'seven thousand twenty-eight'); INSERT INTO t3 VALUES(5332, 98602, 'ninety-eight thousand six hundred two'); INSERT INTO t3 VALUES(5333, 8295, 'eight thousand two hundred ninety-five'); INSERT INTO t3 VALUES(5334, 244, 'two hundred forty-four'); INSERT INTO t3 VALUES(5335, 76684, 'seventy-six thousand six hundred eighty-four'); INSERT INTO t3 VALUES(5336, 42986, 'forty-two thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(5337, 28285, 'twenty-eight thousand two hundred eighty-five'); INSERT INTO t3 VALUES(5338, 825, 'eight hundred twenty-five'); INSERT INTO t3 VALUES(5339, 37649, 'thirty-seven thousand six hundred forty-nine'); INSERT INTO t3 VALUES(5340, 88441, 'eighty-eight thousand four hundred forty-one'); INSERT INTO t3 VALUES(5341, 71026, 'seventy-one thousand twenty-six'); INSERT INTO t3 VALUES(5342, 45722, 'forty-five thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(5343, 52700, 'fifty-two thousand seven hundred'); INSERT INTO t3 VALUES(5344, 95810, 'ninety-five thousand eight hundred ten'); INSERT INTO t3 VALUES(5345, 71403, 'seventy-one thousand four hundred three'); INSERT INTO t3 VALUES(5346, 51049, 'fifty-one thousand forty-nine'); INSERT INTO t3 VALUES(5347, 92748, 'ninety-two thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(5348, 26485, 'twenty-six thousand four hundred eighty-five'); INSERT INTO t3 VALUES(5349, 87979, 'eighty-seven thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(5350, 91638, 'ninety-one thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(5351, 46457, 'forty-six thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(5352, 78445, 'seventy-eight thousand four hundred forty-five'); INSERT INTO t3 VALUES(5353, 20075, 'twenty thousand seventy-five'); INSERT INTO t3 VALUES(5354, 26129, 'twenty-six thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(5355, 57156, 'fifty-seven thousand one hundred fifty-six'); INSERT INTO t3 VALUES(5356, 21719, 'twenty-one thousand seven hundred nineteen'); INSERT INTO t3 VALUES(5357, 92302, 'ninety-two thousand three hundred two'); INSERT INTO t3 VALUES(5358, 96496, 'ninety-six thousand four hundred ninety-six'); INSERT INTO t3 VALUES(5359, 38411, 'thirty-eight thousand four hundred eleven'); INSERT INTO t3 VALUES(5360, 37527, 'thirty-seven thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(5361, 15257, 'fifteen thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(5362, 25022, 'twenty-five thousand twenty-two'); INSERT INTO t3 VALUES(5363, 72624, 'seventy-two thousand six hundred twenty-four'); INSERT INTO t3 VALUES(5364, 66452, 'sixty-six thousand four hundred fifty-two'); INSERT INTO t3 VALUES(5365, 10082, 'ten thousand eighty-two'); INSERT INTO t3 VALUES(5366, 90308, 'ninety thousand three hundred eight'); INSERT INTO t3 VALUES(5367, 68128, 'sixty-eight thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(5368, 51238, 'fifty-one thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(5369, 38205, 'thirty-eight thousand two hundred five'); INSERT INTO t3 VALUES(5370, 67480, 'sixty-seven thousand four hundred eighty'); INSERT INTO t3 VALUES(5371, 54011, 'fifty-four thousand eleven'); INSERT INTO t3 VALUES(5372, 25348, 'twenty-five thousand three hundred forty-eight'); INSERT INTO t3 VALUES(5373, 43677, 'forty-three thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(5374, 56860, 'fifty-six thousand eight hundred sixty'); INSERT INTO t3 VALUES(5375, 10271, 'ten thousand two hundred seventy-one'); INSERT INTO t3 VALUES(5376, 23037, 'twenty-three thousand thirty-seven'); INSERT INTO t3 VALUES(5377, 31953, 'thirty-one thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(5378, 84851, 'eighty-four thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(5379, 49435, 'forty-nine thousand four hundred thirty-five'); INSERT INTO t3 VALUES(5380, 3206, 'three thousand two hundred six'); INSERT INTO t3 VALUES(5381, 97808, 'ninety-seven thousand eight hundred eight'); INSERT INTO t3 VALUES(5382, 92760, 'ninety-two thousand seven hundred sixty'); INSERT INTO t3 VALUES(5383, 35161, 'thirty-five thousand one hundred sixty-one'); INSERT INTO t3 VALUES(5384, 8021, 'eight thousand twenty-one'); INSERT INTO t3 VALUES(5385, 75268, 'seventy-five thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(5386, 14597, 'fourteen thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(5387, 10226, 'ten thousand two hundred twenty-six'); INSERT INTO t3 VALUES(5388, 31482, 'thirty-one thousand four hundred eighty-two'); INSERT INTO t3 VALUES(5389, 33459, 'thirty-three thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(5390, 1548, 'one thousand five hundred forty-eight'); INSERT INTO t3 VALUES(5391, 52926, 'fifty-two thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(5392, 97575, 'ninety-seven thousand five hundred seventy-five'); INSERT INTO t3 VALUES(5393, 33592, 'thirty-three thousand five hundred ninety-two'); INSERT INTO t3 VALUES(5394, 62051, 'sixty-two thousand fifty-one'); INSERT INTO t3 VALUES(5395, 81323, 'eighty-one thousand three hundred twenty-three'); INSERT INTO t3 VALUES(5396, 88375, 'eighty-eight thousand three hundred seventy-five'); INSERT INTO t3 VALUES(5397, 90966, 'ninety thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(5398, 7711, 'seven thousand seven hundred eleven'); INSERT INTO t3 VALUES(5399, 50960, 'fifty thousand nine hundred sixty'); INSERT INTO t3 VALUES(5400, 36562, 'thirty-six thousand five hundred sixty-two'); INSERT INTO t3 VALUES(5401, 72692, 'seventy-two thousand six hundred ninety-two'); INSERT INTO t3 VALUES(5402, 77801, 'seventy-seven thousand eight hundred one'); INSERT INTO t3 VALUES(5403, 86674, 'eighty-six thousand six hundred seventy-four'); INSERT INTO t3 VALUES(5404, 80050, 'eighty thousand fifty'); INSERT INTO t3 VALUES(5405, 96921, 'ninety-six thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(5406, 29254, 'twenty-nine thousand two hundred fifty-four'); INSERT INTO t3 VALUES(5407, 61762, 'sixty-one thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(5408, 9411, 'nine thousand four hundred eleven'); INSERT INTO t3 VALUES(5409, 28873, 'twenty-eight thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(5410, 89536, 'eighty-nine thousand five hundred thirty-six'); INSERT INTO t3 VALUES(5411, 26799, 'twenty-six thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(5412, 65291, 'sixty-five thousand two hundred ninety-one'); INSERT INTO t3 VALUES(5413, 32381, 'thirty-two thousand three hundred eighty-one'); INSERT INTO t3 VALUES(5414, 83702, 'eighty-three thousand seven hundred two'); INSERT INTO t3 VALUES(5415, 12798, 'twelve thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(5416, 98114, 'ninety-eight thousand one hundred fourteen'); INSERT INTO t3 VALUES(5417, 66905, 'sixty-six thousand nine hundred five'); INSERT INTO t3 VALUES(5418, 84363, 'eighty-four thousand three hundred sixty-three'); INSERT INTO t3 VALUES(5419, 50152, 'fifty thousand one hundred fifty-two'); INSERT INTO t3 VALUES(5420, 26278, 'twenty-six thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(5421, 78363, 'seventy-eight thousand three hundred sixty-three'); INSERT INTO t3 VALUES(5422, 73720, 'seventy-three thousand seven hundred twenty'); INSERT INTO t3 VALUES(5423, 33986, 'thirty-three thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(5424, 56758, 'fifty-six thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(5425, 71785, 'seventy-one thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(5426, 56643, 'fifty-six thousand six hundred forty-three'); INSERT INTO t3 VALUES(5427, 60454, 'sixty thousand four hundred fifty-four'); INSERT INTO t3 VALUES(5428, 34441, 'thirty-four thousand four hundred forty-one'); INSERT INTO t3 VALUES(5429, 56989, 'fifty-six thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(5430, 89730, 'eighty-nine thousand seven hundred thirty'); INSERT INTO t3 VALUES(5431, 50716, 'fifty thousand seven hundred sixteen'); INSERT INTO t3 VALUES(5432, 57336, 'fifty-seven thousand three hundred thirty-six'); INSERT INTO t3 VALUES(5433, 99140, 'ninety-nine thousand one hundred forty'); INSERT INTO t3 VALUES(5434, 98878, 'ninety-eight thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(5435, 22004, 'twenty-two thousand four'); INSERT INTO t3 VALUES(5436, 88567, 'eighty-eight thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(5437, 30064, 'thirty thousand sixty-four'); INSERT INTO t3 VALUES(5438, 68263, 'sixty-eight thousand two hundred sixty-three'); INSERT INTO t3 VALUES(5439, 76177, 'seventy-six thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(5440, 33737, 'thirty-three thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(5441, 90124, 'ninety thousand one hundred twenty-four'); INSERT INTO t3 VALUES(5442, 61053, 'sixty-one thousand fifty-three'); INSERT INTO t3 VALUES(5443, 91682, 'ninety-one thousand six hundred eighty-two'); INSERT INTO t3 VALUES(5444, 73299, 'seventy-three thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(5445, 23952, 'twenty-three thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(5446, 51457, 'fifty-one thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(5447, 85838, 'eighty-five thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(5448, 96053, 'ninety-six thousand fifty-three'); INSERT INTO t3 VALUES(5449, 24583, 'twenty-four thousand five hundred eighty-three'); INSERT INTO t3 VALUES(5450, 61000, 'sixty-one thousand'); INSERT INTO t3 VALUES(5451, 83701, 'eighty-three thousand seven hundred one'); INSERT INTO t3 VALUES(5452, 60602, 'sixty thousand six hundred two'); INSERT INTO t3 VALUES(5453, 10405, 'ten thousand four hundred five'); INSERT INTO t3 VALUES(5454, 39446, 'thirty-nine thousand four hundred forty-six'); INSERT INTO t3 VALUES(5455, 70187, 'seventy thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(5456, 3063, 'three thousand sixty-three'); INSERT INTO t3 VALUES(5457, 68077, 'sixty-eight thousand seventy-seven'); INSERT INTO t3 VALUES(5458, 14049, 'fourteen thousand forty-nine'); INSERT INTO t3 VALUES(5459, 38397, 'thirty-eight thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(5460, 73473, 'seventy-three thousand four hundred seventy-three'); INSERT INTO t3 VALUES(5461, 23258, 'twenty-three thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(5462, 72720, 'seventy-two thousand seven hundred twenty'); INSERT INTO t3 VALUES(5463, 97742, 'ninety-seven thousand seven hundred forty-two'); INSERT INTO t3 VALUES(5464, 60375, 'sixty thousand three hundred seventy-five'); INSERT INTO t3 VALUES(5465, 9858, 'nine thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(5466, 72274, 'seventy-two thousand two hundred seventy-four'); INSERT INTO t3 VALUES(5467, 7760, 'seven thousand seven hundred sixty'); INSERT INTO t3 VALUES(5468, 51690, 'fifty-one thousand six hundred ninety'); INSERT INTO t3 VALUES(5469, 87650, 'eighty-seven thousand six hundred fifty'); INSERT INTO t3 VALUES(5470, 4724, 'four thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(5471, 42255, 'forty-two thousand two hundred fifty-five'); INSERT INTO t3 VALUES(5472, 66310, 'sixty-six thousand three hundred ten'); INSERT INTO t3 VALUES(5473, 1321, 'one thousand three hundred twenty-one'); INSERT INTO t3 VALUES(5474, 98609, 'ninety-eight thousand six hundred nine'); INSERT INTO t3 VALUES(5475, 28262, 'twenty-eight thousand two hundred sixty-two'); INSERT INTO t3 VALUES(5476, 50470, 'fifty thousand four hundred seventy'); INSERT INTO t3 VALUES(5477, 58119, 'fifty-eight thousand one hundred nineteen'); INSERT INTO t3 VALUES(5478, 90226, 'ninety thousand two hundred twenty-six'); INSERT INTO t3 VALUES(5479, 94146, 'ninety-four thousand one hundred forty-six'); INSERT INTO t3 VALUES(5480, 55638, 'fifty-five thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(5481, 13318, 'thirteen thousand three hundred eighteen'); INSERT INTO t3 VALUES(5482, 72427, 'seventy-two thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(5483, 56061, 'fifty-six thousand sixty-one'); INSERT INTO t3 VALUES(5484, 12825, 'twelve thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(5485, 31526, 'thirty-one thousand five hundred twenty-six'); INSERT INTO t3 VALUES(5486, 16040, 'sixteen thousand forty'); INSERT INTO t3 VALUES(5487, 31595, 'thirty-one thousand five hundred ninety-five'); INSERT INTO t3 VALUES(5488, 87455, 'eighty-seven thousand four hundred fifty-five'); INSERT INTO t3 VALUES(5489, 87796, 'eighty-seven thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(5490, 98415, 'ninety-eight thousand four hundred fifteen'); INSERT INTO t3 VALUES(5491, 34125, 'thirty-four thousand one hundred twenty-five'); INSERT INTO t3 VALUES(5492, 28284, 'twenty-eight thousand two hundred eighty-four'); INSERT INTO t3 VALUES(5493, 79619, 'seventy-nine thousand six hundred nineteen'); INSERT INTO t3 VALUES(5494, 84179, 'eighty-four thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(5495, 9543, 'nine thousand five hundred forty-three'); INSERT INTO t3 VALUES(5496, 65201, 'sixty-five thousand two hundred one'); INSERT INTO t3 VALUES(5497, 83926, 'eighty-three thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(5498, 81078, 'eighty-one thousand seventy-eight'); INSERT INTO t3 VALUES(5499, 4308, 'four thousand three hundred eight'); INSERT INTO t3 VALUES(5500, 3702, 'three thousand seven hundred two'); INSERT INTO t3 VALUES(5501, 25311, 'twenty-five thousand three hundred eleven'); INSERT INTO t3 VALUES(5502, 8663, 'eight thousand six hundred sixty-three'); INSERT INTO t3 VALUES(5503, 3981, 'three thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(5504, 97794, 'ninety-seven thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(5505, 68196, 'sixty-eight thousand one hundred ninety-six'); INSERT INTO t3 VALUES(5506, 26957, 'twenty-six thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(5507, 47667, 'forty-seven thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(5508, 3065, 'three thousand sixty-five'); INSERT INTO t3 VALUES(5509, 81399, 'eighty-one thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(5510, 81906, 'eighty-one thousand nine hundred six'); INSERT INTO t3 VALUES(5511, 21399, 'twenty-one thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(5512, 28441, 'twenty-eight thousand four hundred forty-one'); INSERT INTO t3 VALUES(5513, 59836, 'fifty-nine thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(5514, 89341, 'eighty-nine thousand three hundred forty-one'); INSERT INTO t3 VALUES(5515, 40958, 'forty thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(5516, 7744, 'seven thousand seven hundred forty-four'); INSERT INTO t3 VALUES(5517, 62732, 'sixty-two thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(5518, 25056, 'twenty-five thousand fifty-six'); INSERT INTO t3 VALUES(5519, 73818, 'seventy-three thousand eight hundred eighteen'); INSERT INTO t3 VALUES(5520, 35370, 'thirty-five thousand three hundred seventy'); INSERT INTO t3 VALUES(5521, 42020, 'forty-two thousand twenty'); INSERT INTO t3 VALUES(5522, 72596, 'seventy-two thousand five hundred ninety-six'); INSERT INTO t3 VALUES(5523, 23649, 'twenty-three thousand six hundred forty-nine'); INSERT INTO t3 VALUES(5524, 94298, 'ninety-four thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(5525, 81324, 'eighty-one thousand three hundred twenty-four'); INSERT INTO t3 VALUES(5526, 95626, 'ninety-five thousand six hundred twenty-six'); INSERT INTO t3 VALUES(5527, 61068, 'sixty-one thousand sixty-eight'); INSERT INTO t3 VALUES(5528, 45707, 'forty-five thousand seven hundred seven'); INSERT INTO t3 VALUES(5529, 4377, 'four thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(5530, 41483, 'forty-one thousand four hundred eighty-three'); INSERT INTO t3 VALUES(5531, 18560, 'eighteen thousand five hundred sixty'); INSERT INTO t3 VALUES(5532, 27875, 'twenty-seven thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(5533, 40865, 'forty thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(5534, 6151, 'six thousand one hundred fifty-one'); INSERT INTO t3 VALUES(5535, 70521, 'seventy thousand five hundred twenty-one'); INSERT INTO t3 VALUES(5536, 6130, 'six thousand one hundred thirty'); INSERT INTO t3 VALUES(5537, 1706, 'one thousand seven hundred six'); INSERT INTO t3 VALUES(5538, 43403, 'forty-three thousand four hundred three'); INSERT INTO t3 VALUES(5539, 97125, 'ninety-seven thousand one hundred twenty-five'); INSERT INTO t3 VALUES(5540, 18306, 'eighteen thousand three hundred six'); INSERT INTO t3 VALUES(5541, 11958, 'eleven thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(5542, 90373, 'ninety thousand three hundred seventy-three'); INSERT INTO t3 VALUES(5543, 11233, 'eleven thousand two hundred thirty-three'); INSERT INTO t3 VALUES(5544, 97197, 'ninety-seven thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(5545, 99475, 'ninety-nine thousand four hundred seventy-five'); INSERT INTO t3 VALUES(5546, 33390, 'thirty-three thousand three hundred ninety'); INSERT INTO t3 VALUES(5547, 44377, 'forty-four thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(5548, 1956, 'one thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(5549, 57641, 'fifty-seven thousand six hundred forty-one'); INSERT INTO t3 VALUES(5550, 63739, 'sixty-three thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(5551, 31748, 'thirty-one thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(5552, 51667, 'fifty-one thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(5553, 1485, 'one thousand four hundred eighty-five'); INSERT INTO t3 VALUES(5554, 60430, 'sixty thousand four hundred thirty'); INSERT INTO t3 VALUES(5555, 29723, 'twenty-nine thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(5556, 5253, 'five thousand two hundred fifty-three'); INSERT INTO t3 VALUES(5557, 98521, 'ninety-eight thousand five hundred twenty-one'); INSERT INTO t3 VALUES(5558, 18462, 'eighteen thousand four hundred sixty-two'); INSERT INTO t3 VALUES(5559, 58784, 'fifty-eight thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(5560, 9436, 'nine thousand four hundred thirty-six'); INSERT INTO t3 VALUES(5561, 75146, 'seventy-five thousand one hundred forty-six'); INSERT INTO t3 VALUES(5562, 84907, 'eighty-four thousand nine hundred seven'); INSERT INTO t3 VALUES(5563, 6703, 'six thousand seven hundred three'); INSERT INTO t3 VALUES(5564, 27166, 'twenty-seven thousand one hundred sixty-six'); INSERT INTO t3 VALUES(5565, 79805, 'seventy-nine thousand eight hundred five'); INSERT INTO t3 VALUES(5566, 2271, 'two thousand two hundred seventy-one'); INSERT INTO t3 VALUES(5567, 814, 'eight hundred fourteen'); INSERT INTO t3 VALUES(5568, 76791, 'seventy-six thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(5569, 41445, 'forty-one thousand four hundred forty-five'); INSERT INTO t3 VALUES(5570, 67739, 'sixty-seven thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(5571, 40762, 'forty thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(5572, 49147, 'forty-nine thousand one hundred forty-seven'); INSERT INTO t3 VALUES(5573, 68749, 'sixty-eight thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(5574, 24410, 'twenty-four thousand four hundred ten'); INSERT INTO t3 VALUES(5575, 45029, 'forty-five thousand twenty-nine'); INSERT INTO t3 VALUES(5576, 33054, 'thirty-three thousand fifty-four'); INSERT INTO t3 VALUES(5577, 71189, 'seventy-one thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(5578, 26073, 'twenty-six thousand seventy-three'); INSERT INTO t3 VALUES(5579, 43701, 'forty-three thousand seven hundred one'); INSERT INTO t3 VALUES(5580, 32492, 'thirty-two thousand four hundred ninety-two'); INSERT INTO t3 VALUES(5581, 15974, 'fifteen thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(5582, 29783, 'twenty-nine thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(5583, 83848, 'eighty-three thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(5584, 38891, 'thirty-eight thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(5585, 10825, 'ten thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(5586, 67744, 'sixty-seven thousand seven hundred forty-four'); INSERT INTO t3 VALUES(5587, 18754, 'eighteen thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(5588, 96347, 'ninety-six thousand three hundred forty-seven'); INSERT INTO t3 VALUES(5589, 65423, 'sixty-five thousand four hundred twenty-three'); INSERT INTO t3 VALUES(5590, 1812, 'one thousand eight hundred twelve'); INSERT INTO t3 VALUES(5591, 11898, 'eleven thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(5592, 37945, 'thirty-seven thousand nine hundred forty-five'); INSERT INTO t3 VALUES(5593, 62917, 'sixty-two thousand nine hundred seventeen'); INSERT INTO t3 VALUES(5594, 26111, 'twenty-six thousand one hundred eleven'); INSERT INTO t3 VALUES(5595, 52307, 'fifty-two thousand three hundred seven'); INSERT INTO t3 VALUES(5596, 83623, 'eighty-three thousand six hundred twenty-three'); INSERT INTO t3 VALUES(5597, 90761, 'ninety thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(5598, 1138, 'one thousand one hundred thirty-eight'); INSERT INTO t3 VALUES(5599, 31338, 'thirty-one thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(5600, 38653, 'thirty-eight thousand six hundred fifty-three'); INSERT INTO t3 VALUES(5601, 64253, 'sixty-four thousand two hundred fifty-three'); INSERT INTO t3 VALUES(5602, 73954, 'seventy-three thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(5603, 10868, 'ten thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(5604, 69293, 'sixty-nine thousand two hundred ninety-three'); INSERT INTO t3 VALUES(5605, 36958, 'thirty-six thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(5606, 25181, 'twenty-five thousand one hundred eighty-one'); INSERT INTO t3 VALUES(5607, 8429, 'eight thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(5608, 30458, 'thirty thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(5609, 34904, 'thirty-four thousand nine hundred four'); INSERT INTO t3 VALUES(5610, 46150, 'forty-six thousand one hundred fifty'); INSERT INTO t3 VALUES(5611, 68186, 'sixty-eight thousand one hundred eighty-six'); INSERT INTO t3 VALUES(5612, 28662, 'twenty-eight thousand six hundred sixty-two'); INSERT INTO t3 VALUES(5613, 15540, 'fifteen thousand five hundred forty'); INSERT INTO t3 VALUES(5614, 67848, 'sixty-seven thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(5615, 85163, 'eighty-five thousand one hundred sixty-three'); INSERT INTO t3 VALUES(5616, 89170, 'eighty-nine thousand one hundred seventy'); INSERT INTO t3 VALUES(5617, 62467, 'sixty-two thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(5618, 43081, 'forty-three thousand eighty-one'); INSERT INTO t3 VALUES(5619, 95296, 'ninety-five thousand two hundred ninety-six'); INSERT INTO t3 VALUES(5620, 68397, 'sixty-eight thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(5621, 99406, 'ninety-nine thousand four hundred six'); INSERT INTO t3 VALUES(5622, 10050, 'ten thousand fifty'); INSERT INTO t3 VALUES(5623, 79849, 'seventy-nine thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(5624, 34661, 'thirty-four thousand six hundred sixty-one'); INSERT INTO t3 VALUES(5625, 72438, 'seventy-two thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(5626, 52913, 'fifty-two thousand nine hundred thirteen'); INSERT INTO t3 VALUES(5627, 76994, 'seventy-six thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(5628, 77064, 'seventy-seven thousand sixty-four'); INSERT INTO t3 VALUES(5629, 52451, 'fifty-two thousand four hundred fifty-one'); INSERT INTO t3 VALUES(5630, 68828, 'sixty-eight thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(5631, 31392, 'thirty-one thousand three hundred ninety-two'); INSERT INTO t3 VALUES(5632, 20532, 'twenty thousand five hundred thirty-two'); INSERT INTO t3 VALUES(5633, 69844, 'sixty-nine thousand eight hundred forty-four'); INSERT INTO t3 VALUES(5634, 13805, 'thirteen thousand eight hundred five'); INSERT INTO t3 VALUES(5635, 47939, 'forty-seven thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(5636, 83289, 'eighty-three thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(5637, 66895, 'sixty-six thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(5638, 38344, 'thirty-eight thousand three hundred forty-four'); INSERT INTO t3 VALUES(5639, 18734, 'eighteen thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(5640, 73413, 'seventy-three thousand four hundred thirteen'); INSERT INTO t3 VALUES(5641, 29702, 'twenty-nine thousand seven hundred two'); INSERT INTO t3 VALUES(5642, 35329, 'thirty-five thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(5643, 76505, 'seventy-six thousand five hundred five'); INSERT INTO t3 VALUES(5644, 52903, 'fifty-two thousand nine hundred three'); INSERT INTO t3 VALUES(5645, 47645, 'forty-seven thousand six hundred forty-five'); INSERT INTO t3 VALUES(5646, 52273, 'fifty-two thousand two hundred seventy-three'); INSERT INTO t3 VALUES(5647, 78414, 'seventy-eight thousand four hundred fourteen'); INSERT INTO t3 VALUES(5648, 68376, 'sixty-eight thousand three hundred seventy-six'); INSERT INTO t3 VALUES(5649, 9173, 'nine thousand one hundred seventy-three'); INSERT INTO t3 VALUES(5650, 22863, 'twenty-two thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(5651, 75193, 'seventy-five thousand one hundred ninety-three'); INSERT INTO t3 VALUES(5652, 71623, 'seventy-one thousand six hundred twenty-three'); INSERT INTO t3 VALUES(5653, 5613, 'five thousand six hundred thirteen'); INSERT INTO t3 VALUES(5654, 97606, 'ninety-seven thousand six hundred six'); INSERT INTO t3 VALUES(5655, 32971, 'thirty-two thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(5656, 8357, 'eight thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(5657, 13702, 'thirteen thousand seven hundred two'); INSERT INTO t3 VALUES(5658, 15368, 'fifteen thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(5659, 0, 'zero'); INSERT INTO t3 VALUES(5660, 9272, 'nine thousand two hundred seventy-two'); INSERT INTO t3 VALUES(5661, 38762, 'thirty-eight thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(5662, 46510, 'forty-six thousand five hundred ten'); INSERT INTO t3 VALUES(5663, 59925, 'fifty-nine thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(5664, 55025, 'fifty-five thousand twenty-five'); INSERT INTO t3 VALUES(5665, 9341, 'nine thousand three hundred forty-one'); INSERT INTO t3 VALUES(5666, 6423, 'six thousand four hundred twenty-three'); INSERT INTO t3 VALUES(5667, 34717, 'thirty-four thousand seven hundred seventeen'); INSERT INTO t3 VALUES(5668, 71495, 'seventy-one thousand four hundred ninety-five'); INSERT INTO t3 VALUES(5669, 62372, 'sixty-two thousand three hundred seventy-two'); INSERT INTO t3 VALUES(5670, 44839, 'forty-four thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(5671, 33771, 'thirty-three thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(5672, 83481, 'eighty-three thousand four hundred eighty-one'); INSERT INTO t3 VALUES(5673, 64572, 'sixty-four thousand five hundred seventy-two'); INSERT INTO t3 VALUES(5674, 6422, 'six thousand four hundred twenty-two'); INSERT INTO t3 VALUES(5675, 660, 'six hundred sixty'); INSERT INTO t3 VALUES(5676, 42167, 'forty-two thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(5677, 2714, 'two thousand seven hundred fourteen'); INSERT INTO t3 VALUES(5678, 26872, 'twenty-six thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(5679, 37913, 'thirty-seven thousand nine hundred thirteen'); INSERT INTO t3 VALUES(5680, 52935, 'fifty-two thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(5681, 85784, 'eighty-five thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(5682, 4393, 'four thousand three hundred ninety-three'); INSERT INTO t3 VALUES(5683, 34709, 'thirty-four thousand seven hundred nine'); INSERT INTO t3 VALUES(5684, 63511, 'sixty-three thousand five hundred eleven'); INSERT INTO t3 VALUES(5685, 59152, 'fifty-nine thousand one hundred fifty-two'); INSERT INTO t3 VALUES(5686, 17749, 'seventeen thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(5687, 19838, 'nineteen thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(5688, 57184, 'fifty-seven thousand one hundred eighty-four'); INSERT INTO t3 VALUES(5689, 76478, 'seventy-six thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(5690, 29167, 'twenty-nine thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(5691, 20600, 'twenty thousand six hundred'); INSERT INTO t3 VALUES(5692, 96537, 'ninety-six thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(5693, 89189, 'eighty-nine thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(5694, 49690, 'forty-nine thousand six hundred ninety'); INSERT INTO t3 VALUES(5695, 10691, 'ten thousand six hundred ninety-one'); INSERT INTO t3 VALUES(5696, 64497, 'sixty-four thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(5697, 67310, 'sixty-seven thousand three hundred ten'); INSERT INTO t3 VALUES(5698, 94114, 'ninety-four thousand one hundred fourteen'); INSERT INTO t3 VALUES(5699, 12674, 'twelve thousand six hundred seventy-four'); INSERT INTO t3 VALUES(5700, 90653, 'ninety thousand six hundred fifty-three'); INSERT INTO t3 VALUES(5701, 53064, 'fifty-three thousand sixty-four'); INSERT INTO t3 VALUES(5702, 61561, 'sixty-one thousand five hundred sixty-one'); INSERT INTO t3 VALUES(5703, 34023, 'thirty-four thousand twenty-three'); INSERT INTO t3 VALUES(5704, 96895, 'ninety-six thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(5705, 41013, 'forty-one thousand thirteen'); INSERT INTO t3 VALUES(5706, 90944, 'ninety thousand nine hundred forty-four'); INSERT INTO t3 VALUES(5707, 49251, 'forty-nine thousand two hundred fifty-one'); INSERT INTO t3 VALUES(5708, 4227, 'four thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(5709, 4355, 'four thousand three hundred fifty-five'); INSERT INTO t3 VALUES(5710, 70217, 'seventy thousand two hundred seventeen'); INSERT INTO t3 VALUES(5711, 11124, 'eleven thousand one hundred twenty-four'); INSERT INTO t3 VALUES(5712, 85891, 'eighty-five thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(5713, 47594, 'forty-seven thousand five hundred ninety-four'); INSERT INTO t3 VALUES(5714, 13720, 'thirteen thousand seven hundred twenty'); INSERT INTO t3 VALUES(5715, 82368, 'eighty-two thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(5716, 14558, 'fourteen thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(5717, 93849, 'ninety-three thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(5718, 38932, 'thirty-eight thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(5719, 46889, 'forty-six thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(5720, 55006, 'fifty-five thousand six'); INSERT INTO t3 VALUES(5721, 21140, 'twenty-one thousand one hundred forty'); INSERT INTO t3 VALUES(5722, 59249, 'fifty-nine thousand two hundred forty-nine'); INSERT INTO t3 VALUES(5723, 77145, 'seventy-seven thousand one hundred forty-five'); INSERT INTO t3 VALUES(5724, 61334, 'sixty-one thousand three hundred thirty-four'); INSERT INTO t3 VALUES(5725, 57733, 'fifty-seven thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(5726, 8850, 'eight thousand eight hundred fifty'); INSERT INTO t3 VALUES(5727, 11080, 'eleven thousand eighty'); INSERT INTO t3 VALUES(5728, 87756, 'eighty-seven thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(5729, 82982, 'eighty-two thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(5730, 31389, 'thirty-one thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(5731, 99295, 'ninety-nine thousand two hundred ninety-five'); INSERT INTO t3 VALUES(5732, 67086, 'sixty-seven thousand eighty-six'); INSERT INTO t3 VALUES(5733, 25913, 'twenty-five thousand nine hundred thirteen'); INSERT INTO t3 VALUES(5734, 53918, 'fifty-three thousand nine hundred eighteen'); INSERT INTO t3 VALUES(5735, 77500, 'seventy-seven thousand five hundred'); INSERT INTO t3 VALUES(5736, 51047, 'fifty-one thousand forty-seven'); INSERT INTO t3 VALUES(5737, 79250, 'seventy-nine thousand two hundred fifty'); INSERT INTO t3 VALUES(5738, 68652, 'sixty-eight thousand six hundred fifty-two'); INSERT INTO t3 VALUES(5739, 78012, 'seventy-eight thousand twelve'); INSERT INTO t3 VALUES(5740, 34673, 'thirty-four thousand six hundred seventy-three'); INSERT INTO t3 VALUES(5741, 40693, 'forty thousand six hundred ninety-three'); INSERT INTO t3 VALUES(5742, 32195, 'thirty-two thousand one hundred ninety-five'); INSERT INTO t3 VALUES(5743, 53934, 'fifty-three thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(5744, 52285, 'fifty-two thousand two hundred eighty-five'); INSERT INTO t3 VALUES(5745, 99119, 'ninety-nine thousand one hundred nineteen'); INSERT INTO t3 VALUES(5746, 32439, 'thirty-two thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(5747, 67246, 'sixty-seven thousand two hundred forty-six'); INSERT INTO t3 VALUES(5748, 29120, 'twenty-nine thousand one hundred twenty'); INSERT INTO t3 VALUES(5749, 58397, 'fifty-eight thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(5750, 71563, 'seventy-one thousand five hundred sixty-three'); INSERT INTO t3 VALUES(5751, 10636, 'ten thousand six hundred thirty-six'); INSERT INTO t3 VALUES(5752, 50880, 'fifty thousand eight hundred eighty'); INSERT INTO t3 VALUES(5753, 97776, 'ninety-seven thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(5754, 21325, 'twenty-one thousand three hundred twenty-five'); INSERT INTO t3 VALUES(5755, 96183, 'ninety-six thousand one hundred eighty-three'); INSERT INTO t3 VALUES(5756, 61992, 'sixty-one thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(5757, 13919, 'thirteen thousand nine hundred nineteen'); INSERT INTO t3 VALUES(5758, 78709, 'seventy-eight thousand seven hundred nine'); INSERT INTO t3 VALUES(5759, 17924, 'seventeen thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(5760, 40616, 'forty thousand six hundred sixteen'); INSERT INTO t3 VALUES(5761, 30345, 'thirty thousand three hundred forty-five'); INSERT INTO t3 VALUES(5762, 38964, 'thirty-eight thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(5763, 2773, 'two thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(5764, 3421, 'three thousand four hundred twenty-one'); INSERT INTO t3 VALUES(5765, 81825, 'eighty-one thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(5766, 68110, 'sixty-eight thousand one hundred ten'); INSERT INTO t3 VALUES(5767, 65071, 'sixty-five thousand seventy-one'); INSERT INTO t3 VALUES(5768, 49628, 'forty-nine thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(5769, 84981, 'eighty-four thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(5770, 94146, 'ninety-four thousand one hundred forty-six'); INSERT INTO t3 VALUES(5771, 93659, 'ninety-three thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(5772, 64318, 'sixty-four thousand three hundred eighteen'); INSERT INTO t3 VALUES(5773, 31828, 'thirty-one thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(5774, 85160, 'eighty-five thousand one hundred sixty'); INSERT INTO t3 VALUES(5775, 49836, 'forty-nine thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(5776, 3678, 'three thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(5777, 19652, 'nineteen thousand six hundred fifty-two'); INSERT INTO t3 VALUES(5778, 7761, 'seven thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(5779, 74211, 'seventy-four thousand two hundred eleven'); INSERT INTO t3 VALUES(5780, 71500, 'seventy-one thousand five hundred'); INSERT INTO t3 VALUES(5781, 11908, 'eleven thousand nine hundred eight'); INSERT INTO t3 VALUES(5782, 66743, 'sixty-six thousand seven hundred forty-three'); INSERT INTO t3 VALUES(5783, 49898, 'forty-nine thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(5784, 44882, 'forty-four thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(5785, 85537, 'eighty-five thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(5786, 6114, 'six thousand one hundred fourteen'); INSERT INTO t3 VALUES(5787, 64709, 'sixty-four thousand seven hundred nine'); INSERT INTO t3 VALUES(5788, 41330, 'forty-one thousand three hundred thirty'); INSERT INTO t3 VALUES(5789, 51927, 'fifty-one thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(5790, 48156, 'forty-eight thousand one hundred fifty-six'); INSERT INTO t3 VALUES(5791, 44608, 'forty-four thousand six hundred eight'); INSERT INTO t3 VALUES(5792, 43763, 'forty-three thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(5793, 94748, 'ninety-four thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(5794, 68301, 'sixty-eight thousand three hundred one'); INSERT INTO t3 VALUES(5795, 44960, 'forty-four thousand nine hundred sixty'); INSERT INTO t3 VALUES(5796, 25732, 'twenty-five thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(5797, 30041, 'thirty thousand forty-one'); INSERT INTO t3 VALUES(5798, 36695, 'thirty-six thousand six hundred ninety-five'); INSERT INTO t3 VALUES(5799, 14301, 'fourteen thousand three hundred one'); INSERT INTO t3 VALUES(5800, 31040, 'thirty-one thousand forty'); INSERT INTO t3 VALUES(5801, 62023, 'sixty-two thousand twenty-three'); INSERT INTO t3 VALUES(5802, 70438, 'seventy thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(5803, 47811, 'forty-seven thousand eight hundred eleven'); INSERT INTO t3 VALUES(5804, 1153, 'one thousand one hundred fifty-three'); INSERT INTO t3 VALUES(5805, 70381, 'seventy thousand three hundred eighty-one'); INSERT INTO t3 VALUES(5806, 7936, 'seven thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(5807, 47176, 'forty-seven thousand one hundred seventy-six'); INSERT INTO t3 VALUES(5808, 16829, 'sixteen thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(5809, 40046, 'forty thousand forty-six'); INSERT INTO t3 VALUES(5810, 74002, 'seventy-four thousand two'); INSERT INTO t3 VALUES(5811, 88807, 'eighty-eight thousand eight hundred seven'); INSERT INTO t3 VALUES(5812, 59044, 'fifty-nine thousand forty-four'); INSERT INTO t3 VALUES(5813, 92143, 'ninety-two thousand one hundred forty-three'); INSERT INTO t3 VALUES(5814, 37754, 'thirty-seven thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(5815, 94083, 'ninety-four thousand eighty-three'); INSERT INTO t3 VALUES(5816, 15225, 'fifteen thousand two hundred twenty-five'); INSERT INTO t3 VALUES(5817, 55810, 'fifty-five thousand eight hundred ten'); INSERT INTO t3 VALUES(5818, 71616, 'seventy-one thousand six hundred sixteen'); INSERT INTO t3 VALUES(5819, 91356, 'ninety-one thousand three hundred fifty-six'); INSERT INTO t3 VALUES(5820, 18545, 'eighteen thousand five hundred forty-five'); INSERT INTO t3 VALUES(5821, 16659, 'sixteen thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(5822, 88311, 'eighty-eight thousand three hundred eleven'); INSERT INTO t3 VALUES(5823, 77535, 'seventy-seven thousand five hundred thirty-five'); INSERT INTO t3 VALUES(5824, 89952, 'eighty-nine thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(5825, 72542, 'seventy-two thousand five hundred forty-two'); INSERT INTO t3 VALUES(5826, 33741, 'thirty-three thousand seven hundred forty-one'); INSERT INTO t3 VALUES(5827, 96591, 'ninety-six thousand five hundred ninety-one'); INSERT INTO t3 VALUES(5828, 99834, 'ninety-nine thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(5829, 65183, 'sixty-five thousand one hundred eighty-three'); INSERT INTO t3 VALUES(5830, 90140, 'ninety thousand one hundred forty'); INSERT INTO t3 VALUES(5831, 55515, 'fifty-five thousand five hundred fifteen'); INSERT INTO t3 VALUES(5832, 45151, 'forty-five thousand one hundred fifty-one'); INSERT INTO t3 VALUES(5833, 27098, 'twenty-seven thousand ninety-eight'); INSERT INTO t3 VALUES(5834, 52417, 'fifty-two thousand four hundred seventeen'); INSERT INTO t3 VALUES(5835, 56437, 'fifty-six thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(5836, 6983, 'six thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(5837, 65299, 'sixty-five thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(5838, 61929, 'sixty-one thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(5839, 96824, 'ninety-six thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(5840, 31520, 'thirty-one thousand five hundred twenty'); INSERT INTO t3 VALUES(5841, 7751, 'seven thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(5842, 48850, 'forty-eight thousand eight hundred fifty'); INSERT INTO t3 VALUES(5843, 7669, 'seven thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(5844, 61495, 'sixty-one thousand four hundred ninety-five'); INSERT INTO t3 VALUES(5845, 33480, 'thirty-three thousand four hundred eighty'); INSERT INTO t3 VALUES(5846, 92299, 'ninety-two thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(5847, 83539, 'eighty-three thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(5848, 83700, 'eighty-three thousand seven hundred'); INSERT INTO t3 VALUES(5849, 34720, 'thirty-four thousand seven hundred twenty'); INSERT INTO t3 VALUES(5850, 56299, 'fifty-six thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(5851, 73157, 'seventy-three thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(5852, 113, 'one hundred thirteen'); INSERT INTO t3 VALUES(5853, 99472, 'ninety-nine thousand four hundred seventy-two'); INSERT INTO t3 VALUES(5854, 35740, 'thirty-five thousand seven hundred forty'); INSERT INTO t3 VALUES(5855, 37123, 'thirty-seven thousand one hundred twenty-three'); INSERT INTO t3 VALUES(5856, 56894, 'fifty-six thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(5857, 28628, 'twenty-eight thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(5858, 97994, 'ninety-seven thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(5859, 60818, 'sixty thousand eight hundred eighteen'); INSERT INTO t3 VALUES(5860, 32606, 'thirty-two thousand six hundred six'); INSERT INTO t3 VALUES(5861, 66357, 'sixty-six thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(5862, 31200, 'thirty-one thousand two hundred'); INSERT INTO t3 VALUES(5863, 83780, 'eighty-three thousand seven hundred eighty'); INSERT INTO t3 VALUES(5864, 37285, 'thirty-seven thousand two hundred eighty-five'); INSERT INTO t3 VALUES(5865, 84952, 'eighty-four thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(5866, 5673, 'five thousand six hundred seventy-three'); INSERT INTO t3 VALUES(5867, 88758, 'eighty-eight thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(5868, 15934, 'fifteen thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(5869, 94157, 'ninety-four thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(5870, 97029, 'ninety-seven thousand twenty-nine'); INSERT INTO t3 VALUES(5871, 22195, 'twenty-two thousand one hundred ninety-five'); INSERT INTO t3 VALUES(5872, 16194, 'sixteen thousand one hundred ninety-four'); INSERT INTO t3 VALUES(5873, 11696, 'eleven thousand six hundred ninety-six'); INSERT INTO t3 VALUES(5874, 8538, 'eight thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(5875, 40134, 'forty thousand one hundred thirty-four'); INSERT INTO t3 VALUES(5876, 41631, 'forty-one thousand six hundred thirty-one'); INSERT INTO t3 VALUES(5877, 5585, 'five thousand five hundred eighty-five'); INSERT INTO t3 VALUES(5878, 16249, 'sixteen thousand two hundred forty-nine'); INSERT INTO t3 VALUES(5879, 60546, 'sixty thousand five hundred forty-six'); INSERT INTO t3 VALUES(5880, 61229, 'sixty-one thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(5881, 46172, 'forty-six thousand one hundred seventy-two'); INSERT INTO t3 VALUES(5882, 48601, 'forty-eight thousand six hundred one'); INSERT INTO t3 VALUES(5883, 78108, 'seventy-eight thousand one hundred eight'); INSERT INTO t3 VALUES(5884, 85412, 'eighty-five thousand four hundred twelve'); INSERT INTO t3 VALUES(5885, 76313, 'seventy-six thousand three hundred thirteen'); INSERT INTO t3 VALUES(5886, 32664, 'thirty-two thousand six hundred sixty-four'); INSERT INTO t3 VALUES(5887, 96577, 'ninety-six thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(5888, 33471, 'thirty-three thousand four hundred seventy-one'); INSERT INTO t3 VALUES(5889, 13233, 'thirteen thousand two hundred thirty-three'); INSERT INTO t3 VALUES(5890, 7834, 'seven thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(5891, 36432, 'thirty-six thousand four hundred thirty-two'); INSERT INTO t3 VALUES(5892, 57676, 'fifty-seven thousand six hundred seventy-six'); INSERT INTO t3 VALUES(5893, 95348, 'ninety-five thousand three hundred forty-eight'); INSERT INTO t3 VALUES(5894, 51577, 'fifty-one thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(5895, 6095, 'six thousand ninety-five'); INSERT INTO t3 VALUES(5896, 71061, 'seventy-one thousand sixty-one'); INSERT INTO t3 VALUES(5897, 10000, 'ten thousand'); INSERT INTO t3 VALUES(5898, 20221, 'twenty thousand two hundred twenty-one'); INSERT INTO t3 VALUES(5899, 80668, 'eighty thousand six hundred sixty-eight'); INSERT INTO t3 VALUES(5900, 98258, 'ninety-eight thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(5901, 7951, 'seven thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(5902, 4674, 'four thousand six hundred seventy-four'); INSERT INTO t3 VALUES(5903, 51365, 'fifty-one thousand three hundred sixty-five'); INSERT INTO t3 VALUES(5904, 5441, 'five thousand four hundred forty-one'); INSERT INTO t3 VALUES(5905, 78262, 'seventy-eight thousand two hundred sixty-two'); INSERT INTO t3 VALUES(5906, 35317, 'thirty-five thousand three hundred seventeen'); INSERT INTO t3 VALUES(5907, 92374, 'ninety-two thousand three hundred seventy-four'); INSERT INTO t3 VALUES(5908, 6797, 'six thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(5909, 16025, 'sixteen thousand twenty-five'); INSERT INTO t3 VALUES(5910, 80500, 'eighty thousand five hundred'); INSERT INTO t3 VALUES(5911, 49666, 'forty-nine thousand six hundred sixty-six'); INSERT INTO t3 VALUES(5912, 27602, 'twenty-seven thousand six hundred two'); INSERT INTO t3 VALUES(5913, 79360, 'seventy-nine thousand three hundred sixty'); INSERT INTO t3 VALUES(5914, 57957, 'fifty-seven thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(5915, 49298, 'forty-nine thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(5916, 36372, 'thirty-six thousand three hundred seventy-two'); INSERT INTO t3 VALUES(5917, 42100, 'forty-two thousand one hundred'); INSERT INTO t3 VALUES(5918, 97612, 'ninety-seven thousand six hundred twelve'); INSERT INTO t3 VALUES(5919, 81689, 'eighty-one thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(5920, 90813, 'ninety thousand eight hundred thirteen'); INSERT INTO t3 VALUES(5921, 89285, 'eighty-nine thousand two hundred eighty-five'); INSERT INTO t3 VALUES(5922, 69042, 'sixty-nine thousand forty-two'); INSERT INTO t3 VALUES(5923, 8290, 'eight thousand two hundred ninety'); INSERT INTO t3 VALUES(5924, 84675, 'eighty-four thousand six hundred seventy-five'); INSERT INTO t3 VALUES(5925, 46719, 'forty-six thousand seven hundred nineteen'); INSERT INTO t3 VALUES(5926, 52118, 'fifty-two thousand one hundred eighteen'); INSERT INTO t3 VALUES(5927, 12792, 'twelve thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(5928, 43253, 'forty-three thousand two hundred fifty-three'); INSERT INTO t3 VALUES(5929, 93656, 'ninety-three thousand six hundred fifty-six'); INSERT INTO t3 VALUES(5930, 6350, 'six thousand three hundred fifty'); INSERT INTO t3 VALUES(5931, 9873, 'nine thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(5932, 40829, 'forty thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(5933, 23687, 'twenty-three thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(5934, 84640, 'eighty-four thousand six hundred forty'); INSERT INTO t3 VALUES(5935, 8003, 'eight thousand three'); INSERT INTO t3 VALUES(5936, 33545, 'thirty-three thousand five hundred forty-five'); INSERT INTO t3 VALUES(5937, 10342, 'ten thousand three hundred forty-two'); INSERT INTO t3 VALUES(5938, 50592, 'fifty thousand five hundred ninety-two'); INSERT INTO t3 VALUES(5939, 96339, 'ninety-six thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(5940, 42938, 'forty-two thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(5941, 45882, 'forty-five thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(5942, 12284, 'twelve thousand two hundred eighty-four'); INSERT INTO t3 VALUES(5943, 39289, 'thirty-nine thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(5944, 51979, 'fifty-one thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(5945, 54256, 'fifty-four thousand two hundred fifty-six'); INSERT INTO t3 VALUES(5946, 11595, 'eleven thousand five hundred ninety-five'); INSERT INTO t3 VALUES(5947, 34923, 'thirty-four thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(5948, 3290, 'three thousand two hundred ninety'); INSERT INTO t3 VALUES(5949, 77175, 'seventy-seven thousand one hundred seventy-five'); INSERT INTO t3 VALUES(5950, 41067, 'forty-one thousand sixty-seven'); INSERT INTO t3 VALUES(5951, 74802, 'seventy-four thousand eight hundred two'); INSERT INTO t3 VALUES(5952, 46936, 'forty-six thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(5953, 89141, 'eighty-nine thousand one hundred forty-one'); INSERT INTO t3 VALUES(5954, 33920, 'thirty-three thousand nine hundred twenty'); INSERT INTO t3 VALUES(5955, 83400, 'eighty-three thousand four hundred'); INSERT INTO t3 VALUES(5956, 36079, 'thirty-six thousand seventy-nine'); INSERT INTO t3 VALUES(5957, 67718, 'sixty-seven thousand seven hundred eighteen'); INSERT INTO t3 VALUES(5958, 10320, 'ten thousand three hundred twenty'); INSERT INTO t3 VALUES(5959, 24947, 'twenty-four thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(5960, 91063, 'ninety-one thousand sixty-three'); INSERT INTO t3 VALUES(5961, 49594, 'forty-nine thousand five hundred ninety-four'); INSERT INTO t3 VALUES(5962, 6485, 'six thousand four hundred eighty-five'); INSERT INTO t3 VALUES(5963, 50921, 'fifty thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(5964, 52281, 'fifty-two thousand two hundred eighty-one'); INSERT INTO t3 VALUES(5965, 22198, 'twenty-two thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(5966, 10588, 'ten thousand five hundred eighty-eight'); INSERT INTO t3 VALUES(5967, 61308, 'sixty-one thousand three hundred eight'); INSERT INTO t3 VALUES(5968, 58529, 'fifty-eight thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(5969, 4380, 'four thousand three hundred eighty'); INSERT INTO t3 VALUES(5970, 63363, 'sixty-three thousand three hundred sixty-three'); INSERT INTO t3 VALUES(5971, 29841, 'twenty-nine thousand eight hundred forty-one'); INSERT INTO t3 VALUES(5972, 4359, 'four thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(5973, 22187, 'twenty-two thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(5974, 5382, 'five thousand three hundred eighty-two'); INSERT INTO t3 VALUES(5975, 33673, 'thirty-three thousand six hundred seventy-three'); INSERT INTO t3 VALUES(5976, 66926, 'sixty-six thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(5977, 43729, 'forty-three thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(5978, 51857, 'fifty-one thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(5979, 5973, 'five thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(5980, 48347, 'forty-eight thousand three hundred forty-seven'); INSERT INTO t3 VALUES(5981, 49285, 'forty-nine thousand two hundred eighty-five'); INSERT INTO t3 VALUES(5982, 46546, 'forty-six thousand five hundred forty-six'); INSERT INTO t3 VALUES(5983, 27825, 'twenty-seven thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(5984, 44198, 'forty-four thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(5985, 60686, 'sixty thousand six hundred eighty-six'); INSERT INTO t3 VALUES(5986, 4840, 'four thousand eight hundred forty'); INSERT INTO t3 VALUES(5987, 50882, 'fifty thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(5988, 59679, 'fifty-nine thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(5989, 49542, 'forty-nine thousand five hundred forty-two'); INSERT INTO t3 VALUES(5990, 35414, 'thirty-five thousand four hundred fourteen'); INSERT INTO t3 VALUES(5991, 70416, 'seventy thousand four hundred sixteen'); INSERT INTO t3 VALUES(5992, 94475, 'ninety-four thousand four hundred seventy-five'); INSERT INTO t3 VALUES(5993, 16106, 'sixteen thousand one hundred six'); INSERT INTO t3 VALUES(5994, 8453, 'eight thousand four hundred fifty-three'); INSERT INTO t3 VALUES(5995, 98273, 'ninety-eight thousand two hundred seventy-three'); INSERT INTO t3 VALUES(5996, 29797, 'twenty-nine thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(5997, 68834, 'sixty-eight thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(5998, 89478, 'eighty-nine thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(5999, 54162, 'fifty-four thousand one hundred sixty-two'); INSERT INTO t3 VALUES(6000, 24008, 'twenty-four thousand eight'); INSERT INTO t3 VALUES(6001, 2307, 'two thousand three hundred seven'); INSERT INTO t3 VALUES(6002, 34992, 'thirty-four thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(6003, 36018, 'thirty-six thousand eighteen'); INSERT INTO t3 VALUES(6004, 29374, 'twenty-nine thousand three hundred seventy-four'); INSERT INTO t3 VALUES(6005, 52748, 'fifty-two thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(6006, 53521, 'fifty-three thousand five hundred twenty-one'); INSERT INTO t3 VALUES(6007, 74448, 'seventy-four thousand four hundred forty-eight'); INSERT INTO t3 VALUES(6008, 61693, 'sixty-one thousand six hundred ninety-three'); INSERT INTO t3 VALUES(6009, 35803, 'thirty-five thousand eight hundred three'); INSERT INTO t3 VALUES(6010, 80114, 'eighty thousand one hundred fourteen'); INSERT INTO t3 VALUES(6011, 28576, 'twenty-eight thousand five hundred seventy-six'); INSERT INTO t3 VALUES(6012, 30343, 'thirty thousand three hundred forty-three'); INSERT INTO t3 VALUES(6013, 55580, 'fifty-five thousand five hundred eighty'); INSERT INTO t3 VALUES(6014, 46399, 'forty-six thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(6015, 17631, 'seventeen thousand six hundred thirty-one'); INSERT INTO t3 VALUES(6016, 83831, 'eighty-three thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(6017, 85809, 'eighty-five thousand eight hundred nine'); INSERT INTO t3 VALUES(6018, 70343, 'seventy thousand three hundred forty-three'); INSERT INTO t3 VALUES(6019, 10277, 'ten thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(6020, 22823, 'twenty-two thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(6021, 16339, 'sixteen thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(6022, 29104, 'twenty-nine thousand one hundred four'); INSERT INTO t3 VALUES(6023, 19441, 'nineteen thousand four hundred forty-one'); INSERT INTO t3 VALUES(6024, 67324, 'sixty-seven thousand three hundred twenty-four'); INSERT INTO t3 VALUES(6025, 94375, 'ninety-four thousand three hundred seventy-five'); INSERT INTO t3 VALUES(6026, 24698, 'twenty-four thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(6027, 23410, 'twenty-three thousand four hundred ten'); INSERT INTO t3 VALUES(6028, 65611, 'sixty-five thousand six hundred eleven'); INSERT INTO t3 VALUES(6029, 79272, 'seventy-nine thousand two hundred seventy-two'); INSERT INTO t3 VALUES(6030, 4992, 'four thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(6031, 72564, 'seventy-two thousand five hundred sixty-four'); INSERT INTO t3 VALUES(6032, 48448, 'forty-eight thousand four hundred forty-eight'); INSERT INTO t3 VALUES(6033, 62748, 'sixty-two thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(6034, 43446, 'forty-three thousand four hundred forty-six'); INSERT INTO t3 VALUES(6035, 44380, 'forty-four thousand three hundred eighty'); INSERT INTO t3 VALUES(6036, 94157, 'ninety-four thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(6037, 92069, 'ninety-two thousand sixty-nine'); INSERT INTO t3 VALUES(6038, 17669, 'seventeen thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(6039, 60076, 'sixty thousand seventy-six'); INSERT INTO t3 VALUES(6040, 6630, 'six thousand six hundred thirty'); INSERT INTO t3 VALUES(6041, 86668, 'eighty-six thousand six hundred sixty-eight'); INSERT INTO t3 VALUES(6042, 31435, 'thirty-one thousand four hundred thirty-five'); INSERT INTO t3 VALUES(6043, 41854, 'forty-one thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(6044, 88936, 'eighty-eight thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(6045, 72159, 'seventy-two thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(6046, 77692, 'seventy-seven thousand six hundred ninety-two'); INSERT INTO t3 VALUES(6047, 45804, 'forty-five thousand eight hundred four'); INSERT INTO t3 VALUES(6048, 94112, 'ninety-four thousand one hundred twelve'); INSERT INTO t3 VALUES(6049, 42870, 'forty-two thousand eight hundred seventy'); INSERT INTO t3 VALUES(6050, 63661, 'sixty-three thousand six hundred sixty-one'); INSERT INTO t3 VALUES(6051, 58049, 'fifty-eight thousand forty-nine'); INSERT INTO t3 VALUES(6052, 6206, 'six thousand two hundred six'); INSERT INTO t3 VALUES(6053, 43765, 'forty-three thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(6054, 3409, 'three thousand four hundred nine'); INSERT INTO t3 VALUES(6055, 93390, 'ninety-three thousand three hundred ninety'); INSERT INTO t3 VALUES(6056, 47959, 'forty-seven thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(6057, 47920, 'forty-seven thousand nine hundred twenty'); INSERT INTO t3 VALUES(6058, 35000, 'thirty-five thousand'); INSERT INTO t3 VALUES(6059, 72544, 'seventy-two thousand five hundred forty-four'); INSERT INTO t3 VALUES(6060, 53087, 'fifty-three thousand eighty-seven'); INSERT INTO t3 VALUES(6061, 51653, 'fifty-one thousand six hundred fifty-three'); INSERT INTO t3 VALUES(6062, 56876, 'fifty-six thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(6063, 53639, 'fifty-three thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(6064, 58465, 'fifty-eight thousand four hundred sixty-five'); INSERT INTO t3 VALUES(6065, 44217, 'forty-four thousand two hundred seventeen'); INSERT INTO t3 VALUES(6066, 95345, 'ninety-five thousand three hundred forty-five'); INSERT INTO t3 VALUES(6067, 11098, 'eleven thousand ninety-eight'); INSERT INTO t3 VALUES(6068, 35005, 'thirty-five thousand five'); INSERT INTO t3 VALUES(6069, 16216, 'sixteen thousand two hundred sixteen'); INSERT INTO t3 VALUES(6070, 78812, 'seventy-eight thousand eight hundred twelve'); INSERT INTO t3 VALUES(6071, 50748, 'fifty thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(6072, 63169, 'sixty-three thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(6073, 83759, 'eighty-three thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(6074, 17745, 'seventeen thousand seven hundred forty-five'); INSERT INTO t3 VALUES(6075, 94833, 'ninety-four thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(6076, 10059, 'ten thousand fifty-nine'); INSERT INTO t3 VALUES(6077, 42643, 'forty-two thousand six hundred forty-three'); INSERT INTO t3 VALUES(6078, 77637, 'seventy-seven thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(6079, 8609, 'eight thousand six hundred nine'); INSERT INTO t3 VALUES(6080, 11434, 'eleven thousand four hundred thirty-four'); INSERT INTO t3 VALUES(6081, 11045, 'eleven thousand forty-five'); INSERT INTO t3 VALUES(6082, 31353, 'thirty-one thousand three hundred fifty-three'); INSERT INTO t3 VALUES(6083, 7984, 'seven thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(6084, 68189, 'sixty-eight thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(6085, 91516, 'ninety-one thousand five hundred sixteen'); INSERT INTO t3 VALUES(6086, 50204, 'fifty thousand two hundred four'); INSERT INTO t3 VALUES(6087, 54992, 'fifty-four thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(6088, 77329, 'seventy-seven thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(6089, 32968, 'thirty-two thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(6090, 63719, 'sixty-three thousand seven hundred nineteen'); INSERT INTO t3 VALUES(6091, 47702, 'forty-seven thousand seven hundred two'); INSERT INTO t3 VALUES(6092, 52202, 'fifty-two thousand two hundred two'); INSERT INTO t3 VALUES(6093, 59382, 'fifty-nine thousand three hundred eighty-two'); INSERT INTO t3 VALUES(6094, 59392, 'fifty-nine thousand three hundred ninety-two'); INSERT INTO t3 VALUES(6095, 81186, 'eighty-one thousand one hundred eighty-six'); INSERT INTO t3 VALUES(6096, 18689, 'eighteen thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(6097, 69433, 'sixty-nine thousand four hundred thirty-three'); INSERT INTO t3 VALUES(6098, 128, 'one hundred twenty-eight'); INSERT INTO t3 VALUES(6099, 65627, 'sixty-five thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(6100, 23807, 'twenty-three thousand eight hundred seven'); INSERT INTO t3 VALUES(6101, 43212, 'forty-three thousand two hundred twelve'); INSERT INTO t3 VALUES(6102, 84247, 'eighty-four thousand two hundred forty-seven'); INSERT INTO t3 VALUES(6103, 10001, 'ten thousand one'); INSERT INTO t3 VALUES(6104, 22817, 'twenty-two thousand eight hundred seventeen'); INSERT INTO t3 VALUES(6105, 10416, 'ten thousand four hundred sixteen'); INSERT INTO t3 VALUES(6106, 46219, 'forty-six thousand two hundred nineteen'); INSERT INTO t3 VALUES(6107, 4292, 'four thousand two hundred ninety-two'); INSERT INTO t3 VALUES(6108, 74762, 'seventy-four thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(6109, 89807, 'eighty-nine thousand eight hundred seven'); INSERT INTO t3 VALUES(6110, 87879, 'eighty-seven thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(6111, 48862, 'forty-eight thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(6112, 2206, 'two thousand two hundred six'); INSERT INTO t3 VALUES(6113, 49516, 'forty-nine thousand five hundred sixteen'); INSERT INTO t3 VALUES(6114, 22374, 'twenty-two thousand three hundred seventy-four'); INSERT INTO t3 VALUES(6115, 47633, 'forty-seven thousand six hundred thirty-three'); INSERT INTO t3 VALUES(6116, 12390, 'twelve thousand three hundred ninety'); INSERT INTO t3 VALUES(6117, 18380, 'eighteen thousand three hundred eighty'); INSERT INTO t3 VALUES(6118, 31722, 'thirty-one thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(6119, 756, 'seven hundred fifty-six'); INSERT INTO t3 VALUES(6120, 73346, 'seventy-three thousand three hundred forty-six'); INSERT INTO t3 VALUES(6121, 33008, 'thirty-three thousand eight'); INSERT INTO t3 VALUES(6122, 18081, 'eighteen thousand eighty-one'); INSERT INTO t3 VALUES(6123, 79796, 'seventy-nine thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(6124, 28515, 'twenty-eight thousand five hundred fifteen'); INSERT INTO t3 VALUES(6125, 48112, 'forty-eight thousand one hundred twelve'); INSERT INTO t3 VALUES(6126, 90871, 'ninety thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(6127, 98029, 'ninety-eight thousand twenty-nine'); INSERT INTO t3 VALUES(6128, 66186, 'sixty-six thousand one hundred eighty-six'); INSERT INTO t3 VALUES(6129, 91369, 'ninety-one thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(6130, 99314, 'ninety-nine thousand three hundred fourteen'); INSERT INTO t3 VALUES(6131, 71977, 'seventy-one thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(6132, 9013, 'nine thousand thirteen'); INSERT INTO t3 VALUES(6133, 9356, 'nine thousand three hundred fifty-six'); INSERT INTO t3 VALUES(6134, 76414, 'seventy-six thousand four hundred fourteen'); INSERT INTO t3 VALUES(6135, 4478, 'four thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(6136, 35494, 'thirty-five thousand four hundred ninety-four'); INSERT INTO t3 VALUES(6137, 91433, 'ninety-one thousand four hundred thirty-three'); INSERT INTO t3 VALUES(6138, 94822, 'ninety-four thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(6139, 22465, 'twenty-two thousand four hundred sixty-five'); INSERT INTO t3 VALUES(6140, 4709, 'four thousand seven hundred nine'); INSERT INTO t3 VALUES(6141, 60301, 'sixty thousand three hundred one'); INSERT INTO t3 VALUES(6142, 58405, 'fifty-eight thousand four hundred five'); INSERT INTO t3 VALUES(6143, 86106, 'eighty-six thousand one hundred six'); INSERT INTO t3 VALUES(6144, 30029, 'thirty thousand twenty-nine'); INSERT INTO t3 VALUES(6145, 29208, 'twenty-nine thousand two hundred eight'); INSERT INTO t3 VALUES(6146, 78173, 'seventy-eight thousand one hundred seventy-three'); INSERT INTO t3 VALUES(6147, 53904, 'fifty-three thousand nine hundred four'); INSERT INTO t3 VALUES(6148, 69034, 'sixty-nine thousand thirty-four'); INSERT INTO t3 VALUES(6149, 1334, 'one thousand three hundred thirty-four'); INSERT INTO t3 VALUES(6150, 34209, 'thirty-four thousand two hundred nine'); INSERT INTO t3 VALUES(6151, 79540, 'seventy-nine thousand five hundred forty'); INSERT INTO t3 VALUES(6152, 95094, 'ninety-five thousand ninety-four'); INSERT INTO t3 VALUES(6153, 13212, 'thirteen thousand two hundred twelve'); INSERT INTO t3 VALUES(6154, 5923, 'five thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(6155, 86512, 'eighty-six thousand five hundred twelve'); INSERT INTO t3 VALUES(6156, 75022, 'seventy-five thousand twenty-two'); INSERT INTO t3 VALUES(6157, 6507, 'six thousand five hundred seven'); INSERT INTO t3 VALUES(6158, 61442, 'sixty-one thousand four hundred forty-two'); INSERT INTO t3 VALUES(6159, 59715, 'fifty-nine thousand seven hundred fifteen'); INSERT INTO t3 VALUES(6160, 25916, 'twenty-five thousand nine hundred sixteen'); INSERT INTO t3 VALUES(6161, 64017, 'sixty-four thousand seventeen'); INSERT INTO t3 VALUES(6162, 31489, 'thirty-one thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(6163, 83785, 'eighty-three thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(6164, 49350, 'forty-nine thousand three hundred fifty'); INSERT INTO t3 VALUES(6165, 20536, 'twenty thousand five hundred thirty-six'); INSERT INTO t3 VALUES(6166, 17509, 'seventeen thousand five hundred nine'); INSERT INTO t3 VALUES(6167, 74261, 'seventy-four thousand two hundred sixty-one'); INSERT INTO t3 VALUES(6168, 55840, 'fifty-five thousand eight hundred forty'); INSERT INTO t3 VALUES(6169, 77248, 'seventy-seven thousand two hundred forty-eight'); INSERT INTO t3 VALUES(6170, 58492, 'fifty-eight thousand four hundred ninety-two'); INSERT INTO t3 VALUES(6171, 27708, 'twenty-seven thousand seven hundred eight'); INSERT INTO t3 VALUES(6172, 69359, 'sixty-nine thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(6173, 76926, 'seventy-six thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(6174, 24775, 'twenty-four thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(6175, 58389, 'fifty-eight thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(6176, 11163, 'eleven thousand one hundred sixty-three'); INSERT INTO t3 VALUES(6177, 69285, 'sixty-nine thousand two hundred eighty-five'); INSERT INTO t3 VALUES(6178, 54425, 'fifty-four thousand four hundred twenty-five'); INSERT INTO t3 VALUES(6179, 30885, 'thirty thousand eight hundred eighty-five'); INSERT INTO t3 VALUES(6180, 32422, 'thirty-two thousand four hundred twenty-two'); INSERT INTO t3 VALUES(6181, 60603, 'sixty thousand six hundred three'); INSERT INTO t3 VALUES(6182, 20336, 'twenty thousand three hundred thirty-six'); INSERT INTO t3 VALUES(6183, 19036, 'nineteen thousand thirty-six'); INSERT INTO t3 VALUES(6184, 5828, 'five thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(6185, 92610, 'ninety-two thousand six hundred ten'); INSERT INTO t3 VALUES(6186, 18058, 'eighteen thousand fifty-eight'); INSERT INTO t3 VALUES(6187, 12805, 'twelve thousand eight hundred five'); INSERT INTO t3 VALUES(6188, 38273, 'thirty-eight thousand two hundred seventy-three'); INSERT INTO t3 VALUES(6189, 18651, 'eighteen thousand six hundred fifty-one'); INSERT INTO t3 VALUES(6190, 70334, 'seventy thousand three hundred thirty-four'); INSERT INTO t3 VALUES(6191, 52816, 'fifty-two thousand eight hundred sixteen'); INSERT INTO t3 VALUES(6192, 39924, 'thirty-nine thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(6193, 61332, 'sixty-one thousand three hundred thirty-two'); INSERT INTO t3 VALUES(6194, 79356, 'seventy-nine thousand three hundred fifty-six'); INSERT INTO t3 VALUES(6195, 91286, 'ninety-one thousand two hundred eighty-six'); INSERT INTO t3 VALUES(6196, 69651, 'sixty-nine thousand six hundred fifty-one'); INSERT INTO t3 VALUES(6197, 13648, 'thirteen thousand six hundred forty-eight'); INSERT INTO t3 VALUES(6198, 51180, 'fifty-one thousand one hundred eighty'); INSERT INTO t3 VALUES(6199, 55062, 'fifty-five thousand sixty-two'); INSERT INTO t3 VALUES(6200, 4308, 'four thousand three hundred eight'); INSERT INTO t3 VALUES(6201, 15057, 'fifteen thousand fifty-seven'); INSERT INTO t3 VALUES(6202, 47894, 'forty-seven thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(6203, 10893, 'ten thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(6204, 87226, 'eighty-seven thousand two hundred twenty-six'); INSERT INTO t3 VALUES(6205, 85207, 'eighty-five thousand two hundred seven'); INSERT INTO t3 VALUES(6206, 43006, 'forty-three thousand six'); INSERT INTO t3 VALUES(6207, 54781, 'fifty-four thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(6208, 65498, 'sixty-five thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(6209, 85704, 'eighty-five thousand seven hundred four'); INSERT INTO t3 VALUES(6210, 53787, 'fifty-three thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(6211, 77261, 'seventy-seven thousand two hundred sixty-one'); INSERT INTO t3 VALUES(6212, 18604, 'eighteen thousand six hundred four'); INSERT INTO t3 VALUES(6213, 40460, 'forty thousand four hundred sixty'); INSERT INTO t3 VALUES(6214, 18314, 'eighteen thousand three hundred fourteen'); INSERT INTO t3 VALUES(6215, 26310, 'twenty-six thousand three hundred ten'); INSERT INTO t3 VALUES(6216, 2686, 'two thousand six hundred eighty-six'); INSERT INTO t3 VALUES(6217, 38087, 'thirty-eight thousand eighty-seven'); INSERT INTO t3 VALUES(6218, 69619, 'sixty-nine thousand six hundred nineteen'); INSERT INTO t3 VALUES(6219, 26013, 'twenty-six thousand thirteen'); INSERT INTO t3 VALUES(6220, 50610, 'fifty thousand six hundred ten'); INSERT INTO t3 VALUES(6221, 85714, 'eighty-five thousand seven hundred fourteen'); INSERT INTO t3 VALUES(6222, 23353, 'twenty-three thousand three hundred fifty-three'); INSERT INTO t3 VALUES(6223, 62157, 'sixty-two thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(6224, 37591, 'thirty-seven thousand five hundred ninety-one'); INSERT INTO t3 VALUES(6225, 78047, 'seventy-eight thousand forty-seven'); INSERT INTO t3 VALUES(6226, 62726, 'sixty-two thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(6227, 60641, 'sixty thousand six hundred forty-one'); INSERT INTO t3 VALUES(6228, 97825, 'ninety-seven thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(6229, 2607, 'two thousand six hundred seven'); INSERT INTO t3 VALUES(6230, 8014, 'eight thousand fourteen'); INSERT INTO t3 VALUES(6231, 46466, 'forty-six thousand four hundred sixty-six'); INSERT INTO t3 VALUES(6232, 57806, 'fifty-seven thousand eight hundred six'); INSERT INTO t3 VALUES(6233, 23166, 'twenty-three thousand one hundred sixty-six'); INSERT INTO t3 VALUES(6234, 92280, 'ninety-two thousand two hundred eighty'); INSERT INTO t3 VALUES(6235, 27927, 'twenty-seven thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(6236, 25297, 'twenty-five thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(6237, 43535, 'forty-three thousand five hundred thirty-five'); INSERT INTO t3 VALUES(6238, 63253, 'sixty-three thousand two hundred fifty-three'); INSERT INTO t3 VALUES(6239, 69290, 'sixty-nine thousand two hundred ninety'); INSERT INTO t3 VALUES(6240, 63322, 'sixty-three thousand three hundred twenty-two'); INSERT INTO t3 VALUES(6241, 464, 'four hundred sixty-four'); INSERT INTO t3 VALUES(6242, 50530, 'fifty thousand five hundred thirty'); INSERT INTO t3 VALUES(6243, 74350, 'seventy-four thousand three hundred fifty'); INSERT INTO t3 VALUES(6244, 17144, 'seventeen thousand one hundred forty-four'); INSERT INTO t3 VALUES(6245, 44542, 'forty-four thousand five hundred forty-two'); INSERT INTO t3 VALUES(6246, 99653, 'ninety-nine thousand six hundred fifty-three'); INSERT INTO t3 VALUES(6247, 86525, 'eighty-six thousand five hundred twenty-five'); INSERT INTO t3 VALUES(6248, 42008, 'forty-two thousand eight'); INSERT INTO t3 VALUES(6249, 15948, 'fifteen thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(6250, 74661, 'seventy-four thousand six hundred sixty-one'); INSERT INTO t3 VALUES(6251, 77191, 'seventy-seven thousand one hundred ninety-one'); INSERT INTO t3 VALUES(6252, 60985, 'sixty thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(6253, 3124, 'three thousand one hundred twenty-four'); INSERT INTO t3 VALUES(6254, 19478, 'nineteen thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(6255, 33284, 'thirty-three thousand two hundred eighty-four'); INSERT INTO t3 VALUES(6256, 29071, 'twenty-nine thousand seventy-one'); INSERT INTO t3 VALUES(6257, 71597, 'seventy-one thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(6258, 28837, 'twenty-eight thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(6259, 80589, 'eighty thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(6260, 39642, 'thirty-nine thousand six hundred forty-two'); INSERT INTO t3 VALUES(6261, 1625, 'one thousand six hundred twenty-five'); INSERT INTO t3 VALUES(6262, 27144, 'twenty-seven thousand one hundred forty-four'); INSERT INTO t3 VALUES(6263, 45420, 'forty-five thousand four hundred twenty'); INSERT INTO t3 VALUES(6264, 40640, 'forty thousand six hundred forty'); INSERT INTO t3 VALUES(6265, 28218, 'twenty-eight thousand two hundred eighteen'); INSERT INTO t3 VALUES(6266, 15926, 'fifteen thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(6267, 5943, 'five thousand nine hundred forty-three'); INSERT INTO t3 VALUES(6268, 13862, 'thirteen thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(6269, 45206, 'forty-five thousand two hundred six'); INSERT INTO t3 VALUES(6270, 17061, 'seventeen thousand sixty-one'); INSERT INTO t3 VALUES(6271, 75997, 'seventy-five thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(6272, 79348, 'seventy-nine thousand three hundred forty-eight'); INSERT INTO t3 VALUES(6273, 67597, 'sixty-seven thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(6274, 98651, 'ninety-eight thousand six hundred fifty-one'); INSERT INTO t3 VALUES(6275, 13566, 'thirteen thousand five hundred sixty-six'); INSERT INTO t3 VALUES(6276, 61555, 'sixty-one thousand five hundred fifty-five'); INSERT INTO t3 VALUES(6277, 14152, 'fourteen thousand one hundred fifty-two'); INSERT INTO t3 VALUES(6278, 39931, 'thirty-nine thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(6279, 63366, 'sixty-three thousand three hundred sixty-six'); INSERT INTO t3 VALUES(6280, 38078, 'thirty-eight thousand seventy-eight'); INSERT INTO t3 VALUES(6281, 63552, 'sixty-three thousand five hundred fifty-two'); INSERT INTO t3 VALUES(6282, 24355, 'twenty-four thousand three hundred fifty-five'); INSERT INTO t3 VALUES(6283, 76778, 'seventy-six thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(6284, 37704, 'thirty-seven thousand seven hundred four'); INSERT INTO t3 VALUES(6285, 67452, 'sixty-seven thousand four hundred fifty-two'); INSERT INTO t3 VALUES(6286, 10168, 'ten thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(6287, 40233, 'forty thousand two hundred thirty-three'); INSERT INTO t3 VALUES(6288, 57993, 'fifty-seven thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(6289, 44453, 'forty-four thousand four hundred fifty-three'); INSERT INTO t3 VALUES(6290, 45171, 'forty-five thousand one hundred seventy-one'); INSERT INTO t3 VALUES(6291, 98533, 'ninety-eight thousand five hundred thirty-three'); INSERT INTO t3 VALUES(6292, 64136, 'sixty-four thousand one hundred thirty-six'); INSERT INTO t3 VALUES(6293, 17545, 'seventeen thousand five hundred forty-five'); INSERT INTO t3 VALUES(6294, 34776, 'thirty-four thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(6295, 44914, 'forty-four thousand nine hundred fourteen'); INSERT INTO t3 VALUES(6296, 2385, 'two thousand three hundred eighty-five'); INSERT INTO t3 VALUES(6297, 3427, 'three thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(6298, 90251, 'ninety thousand two hundred fifty-one'); INSERT INTO t3 VALUES(6299, 48179, 'forty-eight thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(6300, 23545, 'twenty-three thousand five hundred forty-five'); INSERT INTO t3 VALUES(6301, 91963, 'ninety-one thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(6302, 36205, 'thirty-six thousand two hundred five'); INSERT INTO t3 VALUES(6303, 39435, 'thirty-nine thousand four hundred thirty-five'); INSERT INTO t3 VALUES(6304, 29800, 'twenty-nine thousand eight hundred'); INSERT INTO t3 VALUES(6305, 96509, 'ninety-six thousand five hundred nine'); INSERT INTO t3 VALUES(6306, 57204, 'fifty-seven thousand two hundred four'); INSERT INTO t3 VALUES(6307, 79563, 'seventy-nine thousand five hundred sixty-three'); INSERT INTO t3 VALUES(6308, 80867, 'eighty thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(6309, 45072, 'forty-five thousand seventy-two'); INSERT INTO t3 VALUES(6310, 65593, 'sixty-five thousand five hundred ninety-three'); INSERT INTO t3 VALUES(6311, 80577, 'eighty thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(6312, 70703, 'seventy thousand seven hundred three'); INSERT INTO t3 VALUES(6313, 55931, 'fifty-five thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(6314, 81354, 'eighty-one thousand three hundred fifty-four'); INSERT INTO t3 VALUES(6315, 91349, 'ninety-one thousand three hundred forty-nine'); INSERT INTO t3 VALUES(6316, 48785, 'forty-eight thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(6317, 34562, 'thirty-four thousand five hundred sixty-two'); INSERT INTO t3 VALUES(6318, 22034, 'twenty-two thousand thirty-four'); INSERT INTO t3 VALUES(6319, 69561, 'sixty-nine thousand five hundred sixty-one'); INSERT INTO t3 VALUES(6320, 13635, 'thirteen thousand six hundred thirty-five'); INSERT INTO t3 VALUES(6321, 37105, 'thirty-seven thousand one hundred five'); INSERT INTO t3 VALUES(6322, 78774, 'seventy-eight thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(6323, 75724, 'seventy-five thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(6324, 70917, 'seventy thousand nine hundred seventeen'); INSERT INTO t3 VALUES(6325, 7787, 'seven thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(6326, 92398, 'ninety-two thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(6327, 11381, 'eleven thousand three hundred eighty-one'); INSERT INTO t3 VALUES(6328, 75170, 'seventy-five thousand one hundred seventy'); INSERT INTO t3 VALUES(6329, 28232, 'twenty-eight thousand two hundred thirty-two'); INSERT INTO t3 VALUES(6330, 90797, 'ninety thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(6331, 47540, 'forty-seven thousand five hundred forty'); INSERT INTO t3 VALUES(6332, 663, 'six hundred sixty-three'); INSERT INTO t3 VALUES(6333, 33441, 'thirty-three thousand four hundred forty-one'); INSERT INTO t3 VALUES(6334, 13129, 'thirteen thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(6335, 16111, 'sixteen thousand one hundred eleven'); INSERT INTO t3 VALUES(6336, 80935, 'eighty thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(6337, 36369, 'thirty-six thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(6338, 2929, 'two thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(6339, 42061, 'forty-two thousand sixty-one'); INSERT INTO t3 VALUES(6340, 14756, 'fourteen thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(6341, 36945, 'thirty-six thousand nine hundred forty-five'); INSERT INTO t3 VALUES(6342, 45863, 'forty-five thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(6343, 49551, 'forty-nine thousand five hundred fifty-one'); INSERT INTO t3 VALUES(6344, 81406, 'eighty-one thousand four hundred six'); INSERT INTO t3 VALUES(6345, 33015, 'thirty-three thousand fifteen'); INSERT INTO t3 VALUES(6346, 89048, 'eighty-nine thousand forty-eight'); INSERT INTO t3 VALUES(6347, 85800, 'eighty-five thousand eight hundred'); INSERT INTO t3 VALUES(6348, 56357, 'fifty-six thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(6349, 60330, 'sixty thousand three hundred thirty'); INSERT INTO t3 VALUES(6350, 59368, 'fifty-nine thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(6351, 7116, 'seven thousand one hundred sixteen'); INSERT INTO t3 VALUES(6352, 51716, 'fifty-one thousand seven hundred sixteen'); INSERT INTO t3 VALUES(6353, 30310, 'thirty thousand three hundred ten'); INSERT INTO t3 VALUES(6354, 97685, 'ninety-seven thousand six hundred eighty-five'); INSERT INTO t3 VALUES(6355, 10474, 'ten thousand four hundred seventy-four'); INSERT INTO t3 VALUES(6356, 10999, 'ten thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(6357, 83964, 'eighty-three thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(6358, 41674, 'forty-one thousand six hundred seventy-four'); INSERT INTO t3 VALUES(6359, 58272, 'fifty-eight thousand two hundred seventy-two'); INSERT INTO t3 VALUES(6360, 30137, 'thirty thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(6361, 58812, 'fifty-eight thousand eight hundred twelve'); INSERT INTO t3 VALUES(6362, 25428, 'twenty-five thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(6363, 969, 'nine hundred sixty-nine'); INSERT INTO t3 VALUES(6364, 78111, 'seventy-eight thousand one hundred eleven'); INSERT INTO t3 VALUES(6365, 36351, 'thirty-six thousand three hundred fifty-one'); INSERT INTO t3 VALUES(6366, 83450, 'eighty-three thousand four hundred fifty'); INSERT INTO t3 VALUES(6367, 37254, 'thirty-seven thousand two hundred fifty-four'); INSERT INTO t3 VALUES(6368, 31765, 'thirty-one thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(6369, 35840, 'thirty-five thousand eight hundred forty'); INSERT INTO t3 VALUES(6370, 86235, 'eighty-six thousand two hundred thirty-five'); INSERT INTO t3 VALUES(6371, 46187, 'forty-six thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(6372, 98450, 'ninety-eight thousand four hundred fifty'); INSERT INTO t3 VALUES(6373, 36362, 'thirty-six thousand three hundred sixty-two'); INSERT INTO t3 VALUES(6374, 29935, 'twenty-nine thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(6375, 44612, 'forty-four thousand six hundred twelve'); INSERT INTO t3 VALUES(6376, 29621, 'twenty-nine thousand six hundred twenty-one'); INSERT INTO t3 VALUES(6377, 53245, 'fifty-three thousand two hundred forty-five'); INSERT INTO t3 VALUES(6378, 50150, 'fifty thousand one hundred fifty'); INSERT INTO t3 VALUES(6379, 55048, 'fifty-five thousand forty-eight'); INSERT INTO t3 VALUES(6380, 86635, 'eighty-six thousand six hundred thirty-five'); INSERT INTO t3 VALUES(6381, 22673, 'twenty-two thousand six hundred seventy-three'); INSERT INTO t3 VALUES(6382, 67513, 'sixty-seven thousand five hundred thirteen'); INSERT INTO t3 VALUES(6383, 11322, 'eleven thousand three hundred twenty-two'); INSERT INTO t3 VALUES(6384, 81429, 'eighty-one thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(6385, 77694, 'seventy-seven thousand six hundred ninety-four'); INSERT INTO t3 VALUES(6386, 26955, 'twenty-six thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(6387, 50624, 'fifty thousand six hundred twenty-four'); INSERT INTO t3 VALUES(6388, 88337, 'eighty-eight thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(6389, 74642, 'seventy-four thousand six hundred forty-two'); INSERT INTO t3 VALUES(6390, 25409, 'twenty-five thousand four hundred nine'); INSERT INTO t3 VALUES(6391, 85246, 'eighty-five thousand two hundred forty-six'); INSERT INTO t3 VALUES(6392, 39308, 'thirty-nine thousand three hundred eight'); INSERT INTO t3 VALUES(6393, 88919, 'eighty-eight thousand nine hundred nineteen'); INSERT INTO t3 VALUES(6394, 53281, 'fifty-three thousand two hundred eighty-one'); INSERT INTO t3 VALUES(6395, 98267, 'ninety-eight thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(6396, 94201, 'ninety-four thousand two hundred one'); INSERT INTO t3 VALUES(6397, 21657, 'twenty-one thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(6398, 94999, 'ninety-four thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(6399, 88766, 'eighty-eight thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(6400, 31558, 'thirty-one thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(6401, 54436, 'fifty-four thousand four hundred thirty-six'); INSERT INTO t3 VALUES(6402, 2398, 'two thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(6403, 78834, 'seventy-eight thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(6404, 31629, 'thirty-one thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(6405, 84925, 'eighty-four thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(6406, 39224, 'thirty-nine thousand two hundred twenty-four'); INSERT INTO t3 VALUES(6407, 46854, 'forty-six thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(6408, 85988, 'eighty-five thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(6409, 96730, 'ninety-six thousand seven hundred thirty'); INSERT INTO t3 VALUES(6410, 81985, 'eighty-one thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(6411, 28446, 'twenty-eight thousand four hundred forty-six'); INSERT INTO t3 VALUES(6412, 92945, 'ninety-two thousand nine hundred forty-five'); INSERT INTO t3 VALUES(6413, 42122, 'forty-two thousand one hundred twenty-two'); INSERT INTO t3 VALUES(6414, 84171, 'eighty-four thousand one hundred seventy-one'); INSERT INTO t3 VALUES(6415, 23582, 'twenty-three thousand five hundred eighty-two'); INSERT INTO t3 VALUES(6416, 32564, 'thirty-two thousand five hundred sixty-four'); INSERT INTO t3 VALUES(6417, 34568, 'thirty-four thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(6418, 84656, 'eighty-four thousand six hundred fifty-six'); INSERT INTO t3 VALUES(6419, 48291, 'forty-eight thousand two hundred ninety-one'); INSERT INTO t3 VALUES(6420, 87243, 'eighty-seven thousand two hundred forty-three'); INSERT INTO t3 VALUES(6421, 50125, 'fifty thousand one hundred twenty-five'); INSERT INTO t3 VALUES(6422, 90477, 'ninety thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(6423, 36164, 'thirty-six thousand one hundred sixty-four'); INSERT INTO t3 VALUES(6424, 23696, 'twenty-three thousand six hundred ninety-six'); INSERT INTO t3 VALUES(6425, 33040, 'thirty-three thousand forty'); INSERT INTO t3 VALUES(6426, 72836, 'seventy-two thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(6427, 86980, 'eighty-six thousand nine hundred eighty'); INSERT INTO t3 VALUES(6428, 40623, 'forty thousand six hundred twenty-three'); INSERT INTO t3 VALUES(6429, 91390, 'ninety-one thousand three hundred ninety'); INSERT INTO t3 VALUES(6430, 84724, 'eighty-four thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(6431, 35155, 'thirty-five thousand one hundred fifty-five'); INSERT INTO t3 VALUES(6432, 34401, 'thirty-four thousand four hundred one'); INSERT INTO t3 VALUES(6433, 33430, 'thirty-three thousand four hundred thirty'); INSERT INTO t3 VALUES(6434, 14729, 'fourteen thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(6435, 52049, 'fifty-two thousand forty-nine'); INSERT INTO t3 VALUES(6436, 86968, 'eighty-six thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(6437, 31113, 'thirty-one thousand one hundred thirteen'); INSERT INTO t3 VALUES(6438, 62694, 'sixty-two thousand six hundred ninety-four'); INSERT INTO t3 VALUES(6439, 59821, 'fifty-nine thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(6440, 3480, 'three thousand four hundred eighty'); INSERT INTO t3 VALUES(6441, 30845, 'thirty thousand eight hundred forty-five'); INSERT INTO t3 VALUES(6442, 31999, 'thirty-one thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(6443, 65500, 'sixty-five thousand five hundred'); INSERT INTO t3 VALUES(6444, 56122, 'fifty-six thousand one hundred twenty-two'); INSERT INTO t3 VALUES(6445, 19409, 'nineteen thousand four hundred nine'); INSERT INTO t3 VALUES(6446, 59094, 'fifty-nine thousand ninety-four'); INSERT INTO t3 VALUES(6447, 61425, 'sixty-one thousand four hundred twenty-five'); INSERT INTO t3 VALUES(6448, 90974, 'ninety thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(6449, 4160, 'four thousand one hundred sixty'); INSERT INTO t3 VALUES(6450, 25228, 'twenty-five thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(6451, 88487, 'eighty-eight thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(6452, 44319, 'forty-four thousand three hundred nineteen'); INSERT INTO t3 VALUES(6453, 71594, 'seventy-one thousand five hundred ninety-four'); INSERT INTO t3 VALUES(6454, 29525, 'twenty-nine thousand five hundred twenty-five'); INSERT INTO t3 VALUES(6455, 96270, 'ninety-six thousand two hundred seventy'); INSERT INTO t3 VALUES(6456, 71824, 'seventy-one thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(6457, 63054, 'sixty-three thousand fifty-four'); INSERT INTO t3 VALUES(6458, 667, 'six hundred sixty-seven'); INSERT INTO t3 VALUES(6459, 87725, 'eighty-seven thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(6460, 7174, 'seven thousand one hundred seventy-four'); INSERT INTO t3 VALUES(6461, 64534, 'sixty-four thousand five hundred thirty-four'); INSERT INTO t3 VALUES(6462, 72956, 'seventy-two thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(6463, 28646, 'twenty-eight thousand six hundred forty-six'); INSERT INTO t3 VALUES(6464, 9232, 'nine thousand two hundred thirty-two'); INSERT INTO t3 VALUES(6465, 82555, 'eighty-two thousand five hundred fifty-five'); INSERT INTO t3 VALUES(6466, 30862, 'thirty thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(6467, 18916, 'eighteen thousand nine hundred sixteen'); INSERT INTO t3 VALUES(6468, 74101, 'seventy-four thousand one hundred one'); INSERT INTO t3 VALUES(6469, 22953, 'twenty-two thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(6470, 97282, 'ninety-seven thousand two hundred eighty-two'); INSERT INTO t3 VALUES(6471, 68523, 'sixty-eight thousand five hundred twenty-three'); INSERT INTO t3 VALUES(6472, 83312, 'eighty-three thousand three hundred twelve'); INSERT INTO t3 VALUES(6473, 87909, 'eighty-seven thousand nine hundred nine'); INSERT INTO t3 VALUES(6474, 58630, 'fifty-eight thousand six hundred thirty'); INSERT INTO t3 VALUES(6475, 89486, 'eighty-nine thousand four hundred eighty-six'); INSERT INTO t3 VALUES(6476, 61681, 'sixty-one thousand six hundred eighty-one'); INSERT INTO t3 VALUES(6477, 35167, 'thirty-five thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(6478, 68894, 'sixty-eight thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(6479, 25761, 'twenty-five thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(6480, 25405, 'twenty-five thousand four hundred five'); INSERT INTO t3 VALUES(6481, 21503, 'twenty-one thousand five hundred three'); INSERT INTO t3 VALUES(6482, 83719, 'eighty-three thousand seven hundred nineteen'); INSERT INTO t3 VALUES(6483, 66635, 'sixty-six thousand six hundred thirty-five'); INSERT INTO t3 VALUES(6484, 57844, 'fifty-seven thousand eight hundred forty-four'); INSERT INTO t3 VALUES(6485, 38179, 'thirty-eight thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(6486, 53271, 'fifty-three thousand two hundred seventy-one'); INSERT INTO t3 VALUES(6487, 79881, 'seventy-nine thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(6488, 14889, 'fourteen thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(6489, 67614, 'sixty-seven thousand six hundred fourteen'); INSERT INTO t3 VALUES(6490, 97143, 'ninety-seven thousand one hundred forty-three'); INSERT INTO t3 VALUES(6491, 17704, 'seventeen thousand seven hundred four'); INSERT INTO t3 VALUES(6492, 75236, 'seventy-five thousand two hundred thirty-six'); INSERT INTO t3 VALUES(6493, 9330, 'nine thousand three hundred thirty'); INSERT INTO t3 VALUES(6494, 79717, 'seventy-nine thousand seven hundred seventeen'); INSERT INTO t3 VALUES(6495, 25511, 'twenty-five thousand five hundred eleven'); INSERT INTO t3 VALUES(6496, 79585, 'seventy-nine thousand five hundred eighty-five'); INSERT INTO t3 VALUES(6497, 18357, 'eighteen thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(6498, 80700, 'eighty thousand seven hundred'); INSERT INTO t3 VALUES(6499, 34828, 'thirty-four thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(6500, 98144, 'ninety-eight thousand one hundred forty-four'); INSERT INTO t3 VALUES(6501, 90813, 'ninety thousand eight hundred thirteen'); INSERT INTO t3 VALUES(6502, 96512, 'ninety-six thousand five hundred twelve'); INSERT INTO t3 VALUES(6503, 30119, 'thirty thousand one hundred nineteen'); INSERT INTO t3 VALUES(6504, 17465, 'seventeen thousand four hundred sixty-five'); INSERT INTO t3 VALUES(6505, 78894, 'seventy-eight thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(6506, 99059, 'ninety-nine thousand fifty-nine'); INSERT INTO t3 VALUES(6507, 74179, 'seventy-four thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(6508, 40283, 'forty thousand two hundred eighty-three'); INSERT INTO t3 VALUES(6509, 36084, 'thirty-six thousand eighty-four'); INSERT INTO t3 VALUES(6510, 25931, 'twenty-five thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(6511, 15410, 'fifteen thousand four hundred ten'); INSERT INTO t3 VALUES(6512, 36549, 'thirty-six thousand five hundred forty-nine'); INSERT INTO t3 VALUES(6513, 64300, 'sixty-four thousand three hundred'); INSERT INTO t3 VALUES(6514, 3839, 'three thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(6515, 49750, 'forty-nine thousand seven hundred fifty'); INSERT INTO t3 VALUES(6516, 15951, 'fifteen thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(6517, 12595, 'twelve thousand five hundred ninety-five'); INSERT INTO t3 VALUES(6518, 19644, 'nineteen thousand six hundred forty-four'); INSERT INTO t3 VALUES(6519, 78167, 'seventy-eight thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(6520, 51664, 'fifty-one thousand six hundred sixty-four'); INSERT INTO t3 VALUES(6521, 33464, 'thirty-three thousand four hundred sixty-four'); INSERT INTO t3 VALUES(6522, 53416, 'fifty-three thousand four hundred sixteen'); INSERT INTO t3 VALUES(6523, 6901, 'six thousand nine hundred one'); INSERT INTO t3 VALUES(6524, 3388, 'three thousand three hundred eighty-eight'); INSERT INTO t3 VALUES(6525, 55829, 'fifty-five thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(6526, 84538, 'eighty-four thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(6527, 81904, 'eighty-one thousand nine hundred four'); INSERT INTO t3 VALUES(6528, 81219, 'eighty-one thousand two hundred nineteen'); INSERT INTO t3 VALUES(6529, 49076, 'forty-nine thousand seventy-six'); INSERT INTO t3 VALUES(6530, 70818, 'seventy thousand eight hundred eighteen'); INSERT INTO t3 VALUES(6531, 71645, 'seventy-one thousand six hundred forty-five'); INSERT INTO t3 VALUES(6532, 56341, 'fifty-six thousand three hundred forty-one'); INSERT INTO t3 VALUES(6533, 8023, 'eight thousand twenty-three'); INSERT INTO t3 VALUES(6534, 91055, 'ninety-one thousand fifty-five'); INSERT INTO t3 VALUES(6535, 97901, 'ninety-seven thousand nine hundred one'); INSERT INTO t3 VALUES(6536, 7469, 'seven thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(6537, 22260, 'twenty-two thousand two hundred sixty'); INSERT INTO t3 VALUES(6538, 85026, 'eighty-five thousand twenty-six'); INSERT INTO t3 VALUES(6539, 11137, 'eleven thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(6540, 5931, 'five thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(6541, 25921, 'twenty-five thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(6542, 29376, 'twenty-nine thousand three hundred seventy-six'); INSERT INTO t3 VALUES(6543, 13252, 'thirteen thousand two hundred fifty-two'); INSERT INTO t3 VALUES(6544, 98943, 'ninety-eight thousand nine hundred forty-three'); INSERT INTO t3 VALUES(6545, 75499, 'seventy-five thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(6546, 91582, 'ninety-one thousand five hundred eighty-two'); INSERT INTO t3 VALUES(6547, 3533, 'three thousand five hundred thirty-three'); INSERT INTO t3 VALUES(6548, 269, 'two hundred sixty-nine'); INSERT INTO t3 VALUES(6549, 51498, 'fifty-one thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(6550, 48037, 'forty-eight thousand thirty-seven'); INSERT INTO t3 VALUES(6551, 77894, 'seventy-seven thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(6552, 28956, 'twenty-eight thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(6553, 91318, 'ninety-one thousand three hundred eighteen'); INSERT INTO t3 VALUES(6554, 76032, 'seventy-six thousand thirty-two'); INSERT INTO t3 VALUES(6555, 65407, 'sixty-five thousand four hundred seven'); INSERT INTO t3 VALUES(6556, 10141, 'ten thousand one hundred forty-one'); INSERT INTO t3 VALUES(6557, 25177, 'twenty-five thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(6558, 39927, 'thirty-nine thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(6559, 93976, 'ninety-three thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(6560, 17883, 'seventeen thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(6561, 83992, 'eighty-three thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(6562, 70612, 'seventy thousand six hundred twelve'); INSERT INTO t3 VALUES(6563, 63063, 'sixty-three thousand sixty-three'); INSERT INTO t3 VALUES(6564, 84038, 'eighty-four thousand thirty-eight'); INSERT INTO t3 VALUES(6565, 88573, 'eighty-eight thousand five hundred seventy-three'); INSERT INTO t3 VALUES(6566, 14007, 'fourteen thousand seven'); INSERT INTO t3 VALUES(6567, 20355, 'twenty thousand three hundred fifty-five'); INSERT INTO t3 VALUES(6568, 88805, 'eighty-eight thousand eight hundred five'); INSERT INTO t3 VALUES(6569, 74562, 'seventy-four thousand five hundred sixty-two'); INSERT INTO t3 VALUES(6570, 29439, 'twenty-nine thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(6571, 96238, 'ninety-six thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(6572, 69175, 'sixty-nine thousand one hundred seventy-five'); INSERT INTO t3 VALUES(6573, 98109, 'ninety-eight thousand one hundred nine'); INSERT INTO t3 VALUES(6574, 32877, 'thirty-two thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(6575, 19990, 'nineteen thousand nine hundred ninety'); INSERT INTO t3 VALUES(6576, 59341, 'fifty-nine thousand three hundred forty-one'); INSERT INTO t3 VALUES(6577, 94034, 'ninety-four thousand thirty-four'); INSERT INTO t3 VALUES(6578, 66816, 'sixty-six thousand eight hundred sixteen'); INSERT INTO t3 VALUES(6579, 1549, 'one thousand five hundred forty-nine'); INSERT INTO t3 VALUES(6580, 71258, 'seventy-one thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(6581, 12978, 'twelve thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(6582, 23457, 'twenty-three thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(6583, 51508, 'fifty-one thousand five hundred eight'); INSERT INTO t3 VALUES(6584, 35817, 'thirty-five thousand eight hundred seventeen'); INSERT INTO t3 VALUES(6585, 74355, 'seventy-four thousand three hundred fifty-five'); INSERT INTO t3 VALUES(6586, 21771, 'twenty-one thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(6587, 21806, 'twenty-one thousand eight hundred six'); INSERT INTO t3 VALUES(6588, 50591, 'fifty thousand five hundred ninety-one'); INSERT INTO t3 VALUES(6589, 81906, 'eighty-one thousand nine hundred six'); INSERT INTO t3 VALUES(6590, 21753, 'twenty-one thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(6591, 76454, 'seventy-six thousand four hundred fifty-four'); INSERT INTO t3 VALUES(6592, 97959, 'ninety-seven thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(6593, 19861, 'nineteen thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(6594, 74155, 'seventy-four thousand one hundred fifty-five'); INSERT INTO t3 VALUES(6595, 51804, 'fifty-one thousand eight hundred four'); INSERT INTO t3 VALUES(6596, 26162, 'twenty-six thousand one hundred sixty-two'); INSERT INTO t3 VALUES(6597, 27725, 'twenty-seven thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(6598, 75275, 'seventy-five thousand two hundred seventy-five'); INSERT INTO t3 VALUES(6599, 28772, 'twenty-eight thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(6600, 12111, 'twelve thousand one hundred eleven'); INSERT INTO t3 VALUES(6601, 86492, 'eighty-six thousand four hundred ninety-two'); INSERT INTO t3 VALUES(6602, 68872, 'sixty-eight thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(6603, 96635, 'ninety-six thousand six hundred thirty-five'); INSERT INTO t3 VALUES(6604, 24530, 'twenty-four thousand five hundred thirty'); INSERT INTO t3 VALUES(6605, 52095, 'fifty-two thousand ninety-five'); INSERT INTO t3 VALUES(6606, 66430, 'sixty-six thousand four hundred thirty'); INSERT INTO t3 VALUES(6607, 98708, 'ninety-eight thousand seven hundred eight'); INSERT INTO t3 VALUES(6608, 81032, 'eighty-one thousand thirty-two'); INSERT INTO t3 VALUES(6609, 46274, 'forty-six thousand two hundred seventy-four'); INSERT INTO t3 VALUES(6610, 35214, 'thirty-five thousand two hundred fourteen'); INSERT INTO t3 VALUES(6611, 25329, 'twenty-five thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(6612, 89958, 'eighty-nine thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(6613, 56115, 'fifty-six thousand one hundred fifteen'); INSERT INTO t3 VALUES(6614, 1508, 'one thousand five hundred eight'); INSERT INTO t3 VALUES(6615, 66159, 'sixty-six thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(6616, 94091, 'ninety-four thousand ninety-one'); INSERT INTO t3 VALUES(6617, 17931, 'seventeen thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(6618, 50776, 'fifty thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(6619, 51778, 'fifty-one thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(6620, 45754, 'forty-five thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(6621, 1673, 'one thousand six hundred seventy-three'); INSERT INTO t3 VALUES(6622, 41574, 'forty-one thousand five hundred seventy-four'); INSERT INTO t3 VALUES(6623, 92439, 'ninety-two thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(6624, 62210, 'sixty-two thousand two hundred ten'); INSERT INTO t3 VALUES(6625, 41533, 'forty-one thousand five hundred thirty-three'); INSERT INTO t3 VALUES(6626, 7793, 'seven thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(6627, 36450, 'thirty-six thousand four hundred fifty'); INSERT INTO t3 VALUES(6628, 66720, 'sixty-six thousand seven hundred twenty'); INSERT INTO t3 VALUES(6629, 37480, 'thirty-seven thousand four hundred eighty'); INSERT INTO t3 VALUES(6630, 35630, 'thirty-five thousand six hundred thirty'); INSERT INTO t3 VALUES(6631, 75605, 'seventy-five thousand six hundred five'); INSERT INTO t3 VALUES(6632, 7352, 'seven thousand three hundred fifty-two'); INSERT INTO t3 VALUES(6633, 18710, 'eighteen thousand seven hundred ten'); INSERT INTO t3 VALUES(6634, 83097, 'eighty-three thousand ninety-seven'); INSERT INTO t3 VALUES(6635, 34271, 'thirty-four thousand two hundred seventy-one'); INSERT INTO t3 VALUES(6636, 71193, 'seventy-one thousand one hundred ninety-three'); INSERT INTO t3 VALUES(6637, 34249, 'thirty-four thousand two hundred forty-nine'); INSERT INTO t3 VALUES(6638, 79802, 'seventy-nine thousand eight hundred two'); INSERT INTO t3 VALUES(6639, 66577, 'sixty-six thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(6640, 84774, 'eighty-four thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(6641, 67257, 'sixty-seven thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(6642, 55627, 'fifty-five thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(6643, 46698, 'forty-six thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(6644, 40160, 'forty thousand one hundred sixty'); INSERT INTO t3 VALUES(6645, 99461, 'ninety-nine thousand four hundred sixty-one'); INSERT INTO t3 VALUES(6646, 25300, 'twenty-five thousand three hundred'); INSERT INTO t3 VALUES(6647, 75747, 'seventy-five thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(6648, 97000, 'ninety-seven thousand'); INSERT INTO t3 VALUES(6649, 84151, 'eighty-four thousand one hundred fifty-one'); INSERT INTO t3 VALUES(6650, 81183, 'eighty-one thousand one hundred eighty-three'); INSERT INTO t3 VALUES(6651, 65033, 'sixty-five thousand thirty-three'); INSERT INTO t3 VALUES(6652, 18443, 'eighteen thousand four hundred forty-three'); INSERT INTO t3 VALUES(6653, 93426, 'ninety-three thousand four hundred twenty-six'); INSERT INTO t3 VALUES(6654, 66274, 'sixty-six thousand two hundred seventy-four'); INSERT INTO t3 VALUES(6655, 71661, 'seventy-one thousand six hundred sixty-one'); INSERT INTO t3 VALUES(6656, 56328, 'fifty-six thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(6657, 77429, 'seventy-seven thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(6658, 49172, 'forty-nine thousand one hundred seventy-two'); INSERT INTO t3 VALUES(6659, 81563, 'eighty-one thousand five hundred sixty-three'); INSERT INTO t3 VALUES(6660, 15364, 'fifteen thousand three hundred sixty-four'); INSERT INTO t3 VALUES(6661, 40289, 'forty thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(6662, 65642, 'sixty-five thousand six hundred forty-two'); INSERT INTO t3 VALUES(6663, 66392, 'sixty-six thousand three hundred ninety-two'); INSERT INTO t3 VALUES(6664, 39051, 'thirty-nine thousand fifty-one'); INSERT INTO t3 VALUES(6665, 50455, 'fifty thousand four hundred fifty-five'); INSERT INTO t3 VALUES(6666, 86017, 'eighty-six thousand seventeen'); INSERT INTO t3 VALUES(6667, 47725, 'forty-seven thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(6668, 20778, 'twenty thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(6669, 26718, 'twenty-six thousand seven hundred eighteen'); INSERT INTO t3 VALUES(6670, 4198, 'four thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(6671, 4003, 'four thousand three'); INSERT INTO t3 VALUES(6672, 71920, 'seventy-one thousand nine hundred twenty'); INSERT INTO t3 VALUES(6673, 23405, 'twenty-three thousand four hundred five'); INSERT INTO t3 VALUES(6674, 45877, 'forty-five thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(6675, 84650, 'eighty-four thousand six hundred fifty'); INSERT INTO t3 VALUES(6676, 92500, 'ninety-two thousand five hundred'); INSERT INTO t3 VALUES(6677, 33756, 'thirty-three thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(6678, 16742, 'sixteen thousand seven hundred forty-two'); INSERT INTO t3 VALUES(6679, 69714, 'sixty-nine thousand seven hundred fourteen'); INSERT INTO t3 VALUES(6680, 58512, 'fifty-eight thousand five hundred twelve'); INSERT INTO t3 VALUES(6681, 48, 'forty-eight'); INSERT INTO t3 VALUES(6682, 68903, 'sixty-eight thousand nine hundred three'); INSERT INTO t3 VALUES(6683, 63885, 'sixty-three thousand eight hundred eighty-five'); INSERT INTO t3 VALUES(6684, 87619, 'eighty-seven thousand six hundred nineteen'); INSERT INTO t3 VALUES(6685, 93753, 'ninety-three thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(6686, 62988, 'sixty-two thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(6687, 85093, 'eighty-five thousand ninety-three'); INSERT INTO t3 VALUES(6688, 76970, 'seventy-six thousand nine hundred seventy'); INSERT INTO t3 VALUES(6689, 77131, 'seventy-seven thousand one hundred thirty-one'); INSERT INTO t3 VALUES(6690, 80972, 'eighty thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(6691, 94976, 'ninety-four thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(6692, 91698, 'ninety-one thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(6693, 40421, 'forty thousand four hundred twenty-one'); INSERT INTO t3 VALUES(6694, 20937, 'twenty thousand nine hundred thirty-seven'); INSERT INTO t3 VALUES(6695, 14829, 'fourteen thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(6696, 54118, 'fifty-four thousand one hundred eighteen'); INSERT INTO t3 VALUES(6697, 70324, 'seventy thousand three hundred twenty-four'); INSERT INTO t3 VALUES(6698, 69621, 'sixty-nine thousand six hundred twenty-one'); INSERT INTO t3 VALUES(6699, 79897, 'seventy-nine thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(6700, 26637, 'twenty-six thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(6701, 4777, 'four thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(6702, 51548, 'fifty-one thousand five hundred forty-eight'); INSERT INTO t3 VALUES(6703, 90392, 'ninety thousand three hundred ninety-two'); INSERT INTO t3 VALUES(6704, 86107, 'eighty-six thousand one hundred seven'); INSERT INTO t3 VALUES(6705, 38488, 'thirty-eight thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(6706, 44084, 'forty-four thousand eighty-four'); INSERT INTO t3 VALUES(6707, 25919, 'twenty-five thousand nine hundred nineteen'); INSERT INTO t3 VALUES(6708, 68527, 'sixty-eight thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(6709, 65235, 'sixty-five thousand two hundred thirty-five'); INSERT INTO t3 VALUES(6710, 49374, 'forty-nine thousand three hundred seventy-four'); INSERT INTO t3 VALUES(6711, 67287, 'sixty-seven thousand two hundred eighty-seven'); INSERT INTO t3 VALUES(6712, 60554, 'sixty thousand five hundred fifty-four'); INSERT INTO t3 VALUES(6713, 61828, 'sixty-one thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(6714, 75101, 'seventy-five thousand one hundred one'); INSERT INTO t3 VALUES(6715, 58843, 'fifty-eight thousand eight hundred forty-three'); INSERT INTO t3 VALUES(6716, 7528, 'seven thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(6717, 84326, 'eighty-four thousand three hundred twenty-six'); INSERT INTO t3 VALUES(6718, 26606, 'twenty-six thousand six hundred six'); INSERT INTO t3 VALUES(6719, 63107, 'sixty-three thousand one hundred seven'); INSERT INTO t3 VALUES(6720, 85704, 'eighty-five thousand seven hundred four'); INSERT INTO t3 VALUES(6721, 64592, 'sixty-four thousand five hundred ninety-two'); INSERT INTO t3 VALUES(6722, 4172, 'four thousand one hundred seventy-two'); INSERT INTO t3 VALUES(6723, 29724, 'twenty-nine thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(6724, 66256, 'sixty-six thousand two hundred fifty-six'); INSERT INTO t3 VALUES(6725, 28574, 'twenty-eight thousand five hundred seventy-four'); INSERT INTO t3 VALUES(6726, 65820, 'sixty-five thousand eight hundred twenty'); INSERT INTO t3 VALUES(6727, 53820, 'fifty-three thousand eight hundred twenty'); INSERT INTO t3 VALUES(6728, 94194, 'ninety-four thousand one hundred ninety-four'); INSERT INTO t3 VALUES(6729, 85547, 'eighty-five thousand five hundred forty-seven'); INSERT INTO t3 VALUES(6730, 59483, 'fifty-nine thousand four hundred eighty-three'); INSERT INTO t3 VALUES(6731, 88634, 'eighty-eight thousand six hundred thirty-four'); INSERT INTO t3 VALUES(6732, 20559, 'twenty thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(6733, 47258, 'forty-seven thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(6734, 87086, 'eighty-seven thousand eighty-six'); INSERT INTO t3 VALUES(6735, 74994, 'seventy-four thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(6736, 86848, 'eighty-six thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(6737, 38213, 'thirty-eight thousand two hundred thirteen'); INSERT INTO t3 VALUES(6738, 65854, 'sixty-five thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(6739, 52416, 'fifty-two thousand four hundred sixteen'); INSERT INTO t3 VALUES(6740, 13950, 'thirteen thousand nine hundred fifty'); INSERT INTO t3 VALUES(6741, 52315, 'fifty-two thousand three hundred fifteen'); INSERT INTO t3 VALUES(6742, 5782, 'five thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(6743, 47572, 'forty-seven thousand five hundred seventy-two'); INSERT INTO t3 VALUES(6744, 70865, 'seventy thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(6745, 13411, 'thirteen thousand four hundred eleven'); INSERT INTO t3 VALUES(6746, 86184, 'eighty-six thousand one hundred eighty-four'); INSERT INTO t3 VALUES(6747, 29628, 'twenty-nine thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(6748, 67024, 'sixty-seven thousand twenty-four'); INSERT INTO t3 VALUES(6749, 64383, 'sixty-four thousand three hundred eighty-three'); INSERT INTO t3 VALUES(6750, 65944, 'sixty-five thousand nine hundred forty-four'); INSERT INTO t3 VALUES(6751, 90876, 'ninety thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(6752, 22521, 'twenty-two thousand five hundred twenty-one'); INSERT INTO t3 VALUES(6753, 45905, 'forty-five thousand nine hundred five'); INSERT INTO t3 VALUES(6754, 64244, 'sixty-four thousand two hundred forty-four'); INSERT INTO t3 VALUES(6755, 75421, 'seventy-five thousand four hundred twenty-one'); INSERT INTO t3 VALUES(6756, 54487, 'fifty-four thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(6757, 30678, 'thirty thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(6758, 66796, 'sixty-six thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(6759, 80073, 'eighty thousand seventy-three'); INSERT INTO t3 VALUES(6760, 96299, 'ninety-six thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(6761, 11195, 'eleven thousand one hundred ninety-five'); INSERT INTO t3 VALUES(6762, 33964, 'thirty-three thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(6763, 46364, 'forty-six thousand three hundred sixty-four'); INSERT INTO t3 VALUES(6764, 97177, 'ninety-seven thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(6765, 41466, 'forty-one thousand four hundred sixty-six'); INSERT INTO t3 VALUES(6766, 61475, 'sixty-one thousand four hundred seventy-five'); INSERT INTO t3 VALUES(6767, 69685, 'sixty-nine thousand six hundred eighty-five'); INSERT INTO t3 VALUES(6768, 50759, 'fifty thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(6769, 64318, 'sixty-four thousand three hundred eighteen'); INSERT INTO t3 VALUES(6770, 23477, 'twenty-three thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(6771, 74245, 'seventy-four thousand two hundred forty-five'); INSERT INTO t3 VALUES(6772, 91218, 'ninety-one thousand two hundred eighteen'); INSERT INTO t3 VALUES(6773, 64355, 'sixty-four thousand three hundred fifty-five'); INSERT INTO t3 VALUES(6774, 47803, 'forty-seven thousand eight hundred three'); INSERT INTO t3 VALUES(6775, 48927, 'forty-eight thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(6776, 60602, 'sixty thousand six hundred two'); INSERT INTO t3 VALUES(6777, 76210, 'seventy-six thousand two hundred ten'); INSERT INTO t3 VALUES(6778, 85169, 'eighty-five thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(6779, 8482, 'eight thousand four hundred eighty-two'); INSERT INTO t3 VALUES(6780, 27640, 'twenty-seven thousand six hundred forty'); INSERT INTO t3 VALUES(6781, 69276, 'sixty-nine thousand two hundred seventy-six'); INSERT INTO t3 VALUES(6782, 81289, 'eighty-one thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(6783, 86269, 'eighty-six thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(6784, 38434, 'thirty-eight thousand four hundred thirty-four'); INSERT INTO t3 VALUES(6785, 40510, 'forty thousand five hundred ten'); INSERT INTO t3 VALUES(6786, 18913, 'eighteen thousand nine hundred thirteen'); INSERT INTO t3 VALUES(6787, 28514, 'twenty-eight thousand five hundred fourteen'); INSERT INTO t3 VALUES(6788, 80994, 'eighty thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(6789, 41680, 'forty-one thousand six hundred eighty'); INSERT INTO t3 VALUES(6790, 26002, 'twenty-six thousand two'); INSERT INTO t3 VALUES(6791, 40177, 'forty thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(6792, 72208, 'seventy-two thousand two hundred eight'); INSERT INTO t3 VALUES(6793, 74431, 'seventy-four thousand four hundred thirty-one'); INSERT INTO t3 VALUES(6794, 82635, 'eighty-two thousand six hundred thirty-five'); INSERT INTO t3 VALUES(6795, 30379, 'thirty thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(6796, 65894, 'sixty-five thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(6797, 46011, 'forty-six thousand eleven'); INSERT INTO t3 VALUES(6798, 17613, 'seventeen thousand six hundred thirteen'); INSERT INTO t3 VALUES(6799, 4141, 'four thousand one hundred forty-one'); INSERT INTO t3 VALUES(6800, 50157, 'fifty thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(6801, 48985, 'forty-eight thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(6802, 89454, 'eighty-nine thousand four hundred fifty-four'); INSERT INTO t3 VALUES(6803, 93896, 'ninety-three thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(6804, 88009, 'eighty-eight thousand nine'); INSERT INTO t3 VALUES(6805, 89121, 'eighty-nine thousand one hundred twenty-one'); INSERT INTO t3 VALUES(6806, 35164, 'thirty-five thousand one hundred sixty-four'); INSERT INTO t3 VALUES(6807, 1979, 'one thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(6808, 86539, 'eighty-six thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(6809, 28833, 'twenty-eight thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(6810, 65279, 'sixty-five thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(6811, 51761, 'fifty-one thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(6812, 77496, 'seventy-seven thousand four hundred ninety-six'); INSERT INTO t3 VALUES(6813, 66427, 'sixty-six thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(6814, 44762, 'forty-four thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(6815, 4346, 'four thousand three hundred forty-six'); INSERT INTO t3 VALUES(6816, 93476, 'ninety-three thousand four hundred seventy-six'); INSERT INTO t3 VALUES(6817, 27757, 'twenty-seven thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(6818, 62063, 'sixty-two thousand sixty-three'); INSERT INTO t3 VALUES(6819, 54096, 'fifty-four thousand ninety-six'); INSERT INTO t3 VALUES(6820, 49582, 'forty-nine thousand five hundred eighty-two'); INSERT INTO t3 VALUES(6821, 71309, 'seventy-one thousand three hundred nine'); INSERT INTO t3 VALUES(6822, 20614, 'twenty thousand six hundred fourteen'); INSERT INTO t3 VALUES(6823, 35252, 'thirty-five thousand two hundred fifty-two'); INSERT INTO t3 VALUES(6824, 89126, 'eighty-nine thousand one hundred twenty-six'); INSERT INTO t3 VALUES(6825, 17968, 'seventeen thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(6826, 96107, 'ninety-six thousand one hundred seven'); INSERT INTO t3 VALUES(6827, 71625, 'seventy-one thousand six hundred twenty-five'); INSERT INTO t3 VALUES(6828, 78354, 'seventy-eight thousand three hundred fifty-four'); INSERT INTO t3 VALUES(6829, 68297, 'sixty-eight thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(6830, 19363, 'nineteen thousand three hundred sixty-three'); INSERT INTO t3 VALUES(6831, 3034, 'three thousand thirty-four'); INSERT INTO t3 VALUES(6832, 1779, 'one thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(6833, 56414, 'fifty-six thousand four hundred fourteen'); INSERT INTO t3 VALUES(6834, 97655, 'ninety-seven thousand six hundred fifty-five'); INSERT INTO t3 VALUES(6835, 62338, 'sixty-two thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(6836, 61279, 'sixty-one thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(6837, 12672, 'twelve thousand six hundred seventy-two'); INSERT INTO t3 VALUES(6838, 43260, 'forty-three thousand two hundred sixty'); INSERT INTO t3 VALUES(6839, 41922, 'forty-one thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(6840, 2017, 'two thousand seventeen'); INSERT INTO t3 VALUES(6841, 38979, 'thirty-eight thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(6842, 61662, 'sixty-one thousand six hundred sixty-two'); INSERT INTO t3 VALUES(6843, 87046, 'eighty-seven thousand forty-six'); INSERT INTO t3 VALUES(6844, 9004, 'nine thousand four'); INSERT INTO t3 VALUES(6845, 63812, 'sixty-three thousand eight hundred twelve'); INSERT INTO t3 VALUES(6846, 94374, 'ninety-four thousand three hundred seventy-four'); INSERT INTO t3 VALUES(6847, 14000, 'fourteen thousand'); INSERT INTO t3 VALUES(6848, 99440, 'ninety-nine thousand four hundred forty'); INSERT INTO t3 VALUES(6849, 19142, 'nineteen thousand one hundred forty-two'); INSERT INTO t3 VALUES(6850, 66431, 'sixty-six thousand four hundred thirty-one'); INSERT INTO t3 VALUES(6851, 31091, 'thirty-one thousand ninety-one'); INSERT INTO t3 VALUES(6852, 72977, 'seventy-two thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(6853, 6627, 'six thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(6854, 3890, 'three thousand eight hundred ninety'); INSERT INTO t3 VALUES(6855, 79532, 'seventy-nine thousand five hundred thirty-two'); INSERT INTO t3 VALUES(6856, 82016, 'eighty-two thousand sixteen'); INSERT INTO t3 VALUES(6857, 3935, 'three thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(6858, 18287, 'eighteen thousand two hundred eighty-seven'); INSERT INTO t3 VALUES(6859, 67524, 'sixty-seven thousand five hundred twenty-four'); INSERT INTO t3 VALUES(6860, 88049, 'eighty-eight thousand forty-nine'); INSERT INTO t3 VALUES(6861, 20482, 'twenty thousand four hundred eighty-two'); INSERT INTO t3 VALUES(6862, 6539, 'six thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(6863, 32581, 'thirty-two thousand five hundred eighty-one'); INSERT INTO t3 VALUES(6864, 77558, 'seventy-seven thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(6865, 15775, 'fifteen thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(6866, 66441, 'sixty-six thousand four hundred forty-one'); INSERT INTO t3 VALUES(6867, 51390, 'fifty-one thousand three hundred ninety'); INSERT INTO t3 VALUES(6868, 31984, 'thirty-one thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(6869, 3406, 'three thousand four hundred six'); INSERT INTO t3 VALUES(6870, 93957, 'ninety-three thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(6871, 78392, 'seventy-eight thousand three hundred ninety-two'); INSERT INTO t3 VALUES(6872, 23683, 'twenty-three thousand six hundred eighty-three'); INSERT INTO t3 VALUES(6873, 86656, 'eighty-six thousand six hundred fifty-six'); INSERT INTO t3 VALUES(6874, 26091, 'twenty-six thousand ninety-one'); INSERT INTO t3 VALUES(6875, 23091, 'twenty-three thousand ninety-one'); INSERT INTO t3 VALUES(6876, 43220, 'forty-three thousand two hundred twenty'); INSERT INTO t3 VALUES(6877, 42859, 'forty-two thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(6878, 63640, 'sixty-three thousand six hundred forty'); INSERT INTO t3 VALUES(6879, 19381, 'nineteen thousand three hundred eighty-one'); INSERT INTO t3 VALUES(6880, 17280, 'seventeen thousand two hundred eighty'); INSERT INTO t3 VALUES(6881, 5930, 'five thousand nine hundred thirty'); INSERT INTO t3 VALUES(6882, 56086, 'fifty-six thousand eighty-six'); INSERT INTO t3 VALUES(6883, 88653, 'eighty-eight thousand six hundred fifty-three'); INSERT INTO t3 VALUES(6884, 64320, 'sixty-four thousand three hundred twenty'); INSERT INTO t3 VALUES(6885, 96914, 'ninety-six thousand nine hundred fourteen'); INSERT INTO t3 VALUES(6886, 17347, 'seventeen thousand three hundred forty-seven'); INSERT INTO t3 VALUES(6887, 61599, 'sixty-one thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(6888, 57329, 'fifty-seven thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(6889, 85546, 'eighty-five thousand five hundred forty-six'); INSERT INTO t3 VALUES(6890, 75083, 'seventy-five thousand eighty-three'); INSERT INTO t3 VALUES(6891, 58080, 'fifty-eight thousand eighty'); INSERT INTO t3 VALUES(6892, 68641, 'sixty-eight thousand six hundred forty-one'); INSERT INTO t3 VALUES(6893, 17888, 'seventeen thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(6894, 38911, 'thirty-eight thousand nine hundred eleven'); INSERT INTO t3 VALUES(6895, 30958, 'thirty thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(6896, 96449, 'ninety-six thousand four hundred forty-nine'); INSERT INTO t3 VALUES(6897, 26963, 'twenty-six thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(6898, 13180, 'thirteen thousand one hundred eighty'); INSERT INTO t3 VALUES(6899, 97822, 'ninety-seven thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(6900, 46022, 'forty-six thousand twenty-two'); INSERT INTO t3 VALUES(6901, 73946, 'seventy-three thousand nine hundred forty-six'); INSERT INTO t3 VALUES(6902, 42740, 'forty-two thousand seven hundred forty'); INSERT INTO t3 VALUES(6903, 68499, 'sixty-eight thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(6904, 29749, 'twenty-nine thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(6905, 6891, 'six thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(6906, 84251, 'eighty-four thousand two hundred fifty-one'); INSERT INTO t3 VALUES(6907, 29341, 'twenty-nine thousand three hundred forty-one'); INSERT INTO t3 VALUES(6908, 40269, 'forty thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(6909, 16199, 'sixteen thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(6910, 76146, 'seventy-six thousand one hundred forty-six'); INSERT INTO t3 VALUES(6911, 77087, 'seventy-seven thousand eighty-seven'); INSERT INTO t3 VALUES(6912, 3358, 'three thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(6913, 46544, 'forty-six thousand five hundred forty-four'); INSERT INTO t3 VALUES(6914, 38597, 'thirty-eight thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(6915, 72810, 'seventy-two thousand eight hundred ten'); INSERT INTO t3 VALUES(6916, 95688, 'ninety-five thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(6917, 17000, 'seventeen thousand'); INSERT INTO t3 VALUES(6918, 778, 'seven hundred seventy-eight'); INSERT INTO t3 VALUES(6919, 73123, 'seventy-three thousand one hundred twenty-three'); INSERT INTO t3 VALUES(6920, 71200, 'seventy-one thousand two hundred'); INSERT INTO t3 VALUES(6921, 57124, 'fifty-seven thousand one hundred twenty-four'); INSERT INTO t3 VALUES(6922, 42774, 'forty-two thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(6923, 66072, 'sixty-six thousand seventy-two'); INSERT INTO t3 VALUES(6924, 35498, 'thirty-five thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(6925, 23749, 'twenty-three thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(6926, 96540, 'ninety-six thousand five hundred forty'); INSERT INTO t3 VALUES(6927, 90601, 'ninety thousand six hundred one'); INSERT INTO t3 VALUES(6928, 14570, 'fourteen thousand five hundred seventy'); INSERT INTO t3 VALUES(6929, 92049, 'ninety-two thousand forty-nine'); INSERT INTO t3 VALUES(6930, 40567, 'forty thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(6931, 66377, 'sixty-six thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(6932, 29027, 'twenty-nine thousand twenty-seven'); INSERT INTO t3 VALUES(6933, 56397, 'fifty-six thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(6934, 15267, 'fifteen thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(6935, 28644, 'twenty-eight thousand six hundred forty-four'); INSERT INTO t3 VALUES(6936, 30506, 'thirty thousand five hundred six'); INSERT INTO t3 VALUES(6937, 48842, 'forty-eight thousand eight hundred forty-two'); INSERT INTO t3 VALUES(6938, 84447, 'eighty-four thousand four hundred forty-seven'); INSERT INTO t3 VALUES(6939, 4814, 'four thousand eight hundred fourteen'); INSERT INTO t3 VALUES(6940, 56864, 'fifty-six thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(6941, 85799, 'eighty-five thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(6942, 13657, 'thirteen thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(6943, 72959, 'seventy-two thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(6944, 52196, 'fifty-two thousand one hundred ninety-six'); INSERT INTO t3 VALUES(6945, 64209, 'sixty-four thousand two hundred nine'); INSERT INTO t3 VALUES(6946, 17592, 'seventeen thousand five hundred ninety-two'); INSERT INTO t3 VALUES(6947, 17535, 'seventeen thousand five hundred thirty-five'); INSERT INTO t3 VALUES(6948, 27317, 'twenty-seven thousand three hundred seventeen'); INSERT INTO t3 VALUES(6949, 58667, 'fifty-eight thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(6950, 39783, 'thirty-nine thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(6951, 37823, 'thirty-seven thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(6952, 33797, 'thirty-three thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(6953, 85768, 'eighty-five thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(6954, 21336, 'twenty-one thousand three hundred thirty-six'); INSERT INTO t3 VALUES(6955, 36809, 'thirty-six thousand eight hundred nine'); INSERT INTO t3 VALUES(6956, 26883, 'twenty-six thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(6957, 49084, 'forty-nine thousand eighty-four'); INSERT INTO t3 VALUES(6958, 2104, 'two thousand one hundred four'); INSERT INTO t3 VALUES(6959, 58650, 'fifty-eight thousand six hundred fifty'); INSERT INTO t3 VALUES(6960, 21218, 'twenty-one thousand two hundred eighteen'); INSERT INTO t3 VALUES(6961, 83841, 'eighty-three thousand eight hundred forty-one'); INSERT INTO t3 VALUES(6962, 46776, 'forty-six thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(6963, 30017, 'thirty thousand seventeen'); INSERT INTO t3 VALUES(6964, 12552, 'twelve thousand five hundred fifty-two'); INSERT INTO t3 VALUES(6965, 27693, 'twenty-seven thousand six hundred ninety-three'); INSERT INTO t3 VALUES(6966, 66629, 'sixty-six thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(6967, 54683, 'fifty-four thousand six hundred eighty-three'); INSERT INTO t3 VALUES(6968, 31658, 'thirty-one thousand six hundred fifty-eight'); INSERT INTO t3 VALUES(6969, 11550, 'eleven thousand five hundred fifty'); INSERT INTO t3 VALUES(6970, 63676, 'sixty-three thousand six hundred seventy-six'); INSERT INTO t3 VALUES(6971, 82573, 'eighty-two thousand five hundred seventy-three'); INSERT INTO t3 VALUES(6972, 83389, 'eighty-three thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(6973, 28968, 'twenty-eight thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(6974, 5490, 'five thousand four hundred ninety'); INSERT INTO t3 VALUES(6975, 52254, 'fifty-two thousand two hundred fifty-four'); INSERT INTO t3 VALUES(6976, 12891, 'twelve thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(6977, 62032, 'sixty-two thousand thirty-two'); INSERT INTO t3 VALUES(6978, 14329, 'fourteen thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(6979, 58369, 'fifty-eight thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(6980, 15772, 'fifteen thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(6981, 56013, 'fifty-six thousand thirteen'); INSERT INTO t3 VALUES(6982, 73181, 'seventy-three thousand one hundred eighty-one'); INSERT INTO t3 VALUES(6983, 48183, 'forty-eight thousand one hundred eighty-three'); INSERT INTO t3 VALUES(6984, 76611, 'seventy-six thousand six hundred eleven'); INSERT INTO t3 VALUES(6985, 84938, 'eighty-four thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(6986, 35308, 'thirty-five thousand three hundred eight'); INSERT INTO t3 VALUES(6987, 56710, 'fifty-six thousand seven hundred ten'); INSERT INTO t3 VALUES(6988, 53066, 'fifty-three thousand sixty-six'); INSERT INTO t3 VALUES(6989, 74782, 'seventy-four thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(6990, 43304, 'forty-three thousand three hundred four'); INSERT INTO t3 VALUES(6991, 2192, 'two thousand one hundred ninety-two'); INSERT INTO t3 VALUES(6992, 56252, 'fifty-six thousand two hundred fifty-two'); INSERT INTO t3 VALUES(6993, 23775, 'twenty-three thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(6994, 1901, 'one thousand nine hundred one'); INSERT INTO t3 VALUES(6995, 24617, 'twenty-four thousand six hundred seventeen'); INSERT INTO t3 VALUES(6996, 78124, 'seventy-eight thousand one hundred twenty-four'); INSERT INTO t3 VALUES(6997, 40147, 'forty thousand one hundred forty-seven'); INSERT INTO t3 VALUES(6998, 41294, 'forty-one thousand two hundred ninety-four'); INSERT INTO t3 VALUES(6999, 12619, 'twelve thousand six hundred nineteen'); INSERT INTO t3 VALUES(7000, 99847, 'ninety-nine thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(7001, 24323, 'twenty-four thousand three hundred twenty-three'); INSERT INTO t3 VALUES(7002, 90492, 'ninety thousand four hundred ninety-two'); INSERT INTO t3 VALUES(7003, 83106, 'eighty-three thousand one hundred six'); INSERT INTO t3 VALUES(7004, 36329, 'thirty-six thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(7005, 80341, 'eighty thousand three hundred forty-one'); INSERT INTO t3 VALUES(7006, 19238, 'nineteen thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(7007, 44740, 'forty-four thousand seven hundred forty'); INSERT INTO t3 VALUES(7008, 79234, 'seventy-nine thousand two hundred thirty-four'); INSERT INTO t3 VALUES(7009, 87291, 'eighty-seven thousand two hundred ninety-one'); INSERT INTO t3 VALUES(7010, 37049, 'thirty-seven thousand forty-nine'); INSERT INTO t3 VALUES(7011, 50922, 'fifty thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(7012, 42654, 'forty-two thousand six hundred fifty-four'); INSERT INTO t3 VALUES(7013, 42608, 'forty-two thousand six hundred eight'); INSERT INTO t3 VALUES(7014, 94993, 'ninety-four thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(7015, 69001, 'sixty-nine thousand one'); INSERT INTO t3 VALUES(7016, 97800, 'ninety-seven thousand eight hundred'); INSERT INTO t3 VALUES(7017, 23734, 'twenty-three thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(7018, 76026, 'seventy-six thousand twenty-six'); INSERT INTO t3 VALUES(7019, 83205, 'eighty-three thousand two hundred five'); INSERT INTO t3 VALUES(7020, 98968, 'ninety-eight thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(7021, 95951, 'ninety-five thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(7022, 84634, 'eighty-four thousand six hundred thirty-four'); INSERT INTO t3 VALUES(7023, 71311, 'seventy-one thousand three hundred eleven'); INSERT INTO t3 VALUES(7024, 3536, 'three thousand five hundred thirty-six'); INSERT INTO t3 VALUES(7025, 34569, 'thirty-four thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(7026, 89148, 'eighty-nine thousand one hundred forty-eight'); INSERT INTO t3 VALUES(7027, 19223, 'nineteen thousand two hundred twenty-three'); INSERT INTO t3 VALUES(7028, 46452, 'forty-six thousand four hundred fifty-two'); INSERT INTO t3 VALUES(7029, 38054, 'thirty-eight thousand fifty-four'); INSERT INTO t3 VALUES(7030, 3824, 'three thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(7031, 60051, 'sixty thousand fifty-one'); INSERT INTO t3 VALUES(7032, 71012, 'seventy-one thousand twelve'); INSERT INTO t3 VALUES(7033, 90260, 'ninety thousand two hundred sixty'); INSERT INTO t3 VALUES(7034, 85421, 'eighty-five thousand four hundred twenty-one'); INSERT INTO t3 VALUES(7035, 12239, 'twelve thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(7036, 63714, 'sixty-three thousand seven hundred fourteen'); INSERT INTO t3 VALUES(7037, 11567, 'eleven thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(7038, 21215, 'twenty-one thousand two hundred fifteen'); INSERT INTO t3 VALUES(7039, 18088, 'eighteen thousand eighty-eight'); INSERT INTO t3 VALUES(7040, 36051, 'thirty-six thousand fifty-one'); INSERT INTO t3 VALUES(7041, 85907, 'eighty-five thousand nine hundred seven'); INSERT INTO t3 VALUES(7042, 24245, 'twenty-four thousand two hundred forty-five'); INSERT INTO t3 VALUES(7043, 27277, 'twenty-seven thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(7044, 33901, 'thirty-three thousand nine hundred one'); INSERT INTO t3 VALUES(7045, 93841, 'ninety-three thousand eight hundred forty-one'); INSERT INTO t3 VALUES(7046, 84152, 'eighty-four thousand one hundred fifty-two'); INSERT INTO t3 VALUES(7047, 47889, 'forty-seven thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(7048, 6031, 'six thousand thirty-one'); INSERT INTO t3 VALUES(7049, 95152, 'ninety-five thousand one hundred fifty-two'); INSERT INTO t3 VALUES(7050, 19764, 'nineteen thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(7051, 58743, 'fifty-eight thousand seven hundred forty-three'); INSERT INTO t3 VALUES(7052, 45094, 'forty-five thousand ninety-four'); INSERT INTO t3 VALUES(7053, 47239, 'forty-seven thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(7054, 55871, 'fifty-five thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(7055, 55700, 'fifty-five thousand seven hundred'); INSERT INTO t3 VALUES(7056, 97138, 'ninety-seven thousand one hundred thirty-eight'); INSERT INTO t3 VALUES(7057, 68397, 'sixty-eight thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(7058, 86286, 'eighty-six thousand two hundred eighty-six'); INSERT INTO t3 VALUES(7059, 60433, 'sixty thousand four hundred thirty-three'); INSERT INTO t3 VALUES(7060, 86295, 'eighty-six thousand two hundred ninety-five'); INSERT INTO t3 VALUES(7061, 38072, 'thirty-eight thousand seventy-two'); INSERT INTO t3 VALUES(7062, 74952, 'seventy-four thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(7063, 32070, 'thirty-two thousand seventy'); INSERT INTO t3 VALUES(7064, 58471, 'fifty-eight thousand four hundred seventy-one'); INSERT INTO t3 VALUES(7065, 36852, 'thirty-six thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(7066, 61165, 'sixty-one thousand one hundred sixty-five'); INSERT INTO t3 VALUES(7067, 22089, 'twenty-two thousand eighty-nine'); INSERT INTO t3 VALUES(7068, 35839, 'thirty-five thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(7069, 85417, 'eighty-five thousand four hundred seventeen'); INSERT INTO t3 VALUES(7070, 68230, 'sixty-eight thousand two hundred thirty'); INSERT INTO t3 VALUES(7071, 38104, 'thirty-eight thousand one hundred four'); INSERT INTO t3 VALUES(7072, 37538, 'thirty-seven thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(7073, 33802, 'thirty-three thousand eight hundred two'); INSERT INTO t3 VALUES(7074, 69737, 'sixty-nine thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(7075, 5816, 'five thousand eight hundred sixteen'); INSERT INTO t3 VALUES(7076, 91862, 'ninety-one thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(7077, 68416, 'sixty-eight thousand four hundred sixteen'); INSERT INTO t3 VALUES(7078, 13016, 'thirteen thousand sixteen'); INSERT INTO t3 VALUES(7079, 8165, 'eight thousand one hundred sixty-five'); INSERT INTO t3 VALUES(7080, 84485, 'eighty-four thousand four hundred eighty-five'); INSERT INTO t3 VALUES(7081, 53664, 'fifty-three thousand six hundred sixty-four'); INSERT INTO t3 VALUES(7082, 278, 'two hundred seventy-eight'); INSERT INTO t3 VALUES(7083, 54590, 'fifty-four thousand five hundred ninety'); INSERT INTO t3 VALUES(7084, 55644, 'fifty-five thousand six hundred forty-four'); INSERT INTO t3 VALUES(7085, 5222, 'five thousand two hundred twenty-two'); INSERT INTO t3 VALUES(7086, 89371, 'eighty-nine thousand three hundred seventy-one'); INSERT INTO t3 VALUES(7087, 14172, 'fourteen thousand one hundred seventy-two'); INSERT INTO t3 VALUES(7088, 8485, 'eight thousand four hundred eighty-five'); INSERT INTO t3 VALUES(7089, 66008, 'sixty-six thousand eight'); INSERT INTO t3 VALUES(7090, 74780, 'seventy-four thousand seven hundred eighty'); INSERT INTO t3 VALUES(7091, 67764, 'sixty-seven thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(7092, 44389, 'forty-four thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(7093, 79372, 'seventy-nine thousand three hundred seventy-two'); INSERT INTO t3 VALUES(7094, 75617, 'seventy-five thousand six hundred seventeen'); INSERT INTO t3 VALUES(7095, 36126, 'thirty-six thousand one hundred twenty-six'); INSERT INTO t3 VALUES(7096, 79591, 'seventy-nine thousand five hundred ninety-one'); INSERT INTO t3 VALUES(7097, 61635, 'sixty-one thousand six hundred thirty-five'); INSERT INTO t3 VALUES(7098, 45116, 'forty-five thousand one hundred sixteen'); INSERT INTO t3 VALUES(7099, 31220, 'thirty-one thousand two hundred twenty'); INSERT INTO t3 VALUES(7100, 50726, 'fifty thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(7101, 4479, 'four thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(7102, 93759, 'ninety-three thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(7103, 51972, 'fifty-one thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(7104, 70378, 'seventy thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(7105, 53346, 'fifty-three thousand three hundred forty-six'); INSERT INTO t3 VALUES(7106, 97684, 'ninety-seven thousand six hundred eighty-four'); INSERT INTO t3 VALUES(7107, 9978, 'nine thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(7108, 36707, 'thirty-six thousand seven hundred seven'); INSERT INTO t3 VALUES(7109, 64941, 'sixty-four thousand nine hundred forty-one'); INSERT INTO t3 VALUES(7110, 93739, 'ninety-three thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(7111, 94948, 'ninety-four thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(7112, 41867, 'forty-one thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(7113, 28515, 'twenty-eight thousand five hundred fifteen'); INSERT INTO t3 VALUES(7114, 60341, 'sixty thousand three hundred forty-one'); INSERT INTO t3 VALUES(7115, 4047, 'four thousand forty-seven'); INSERT INTO t3 VALUES(7116, 59361, 'fifty-nine thousand three hundred sixty-one'); INSERT INTO t3 VALUES(7117, 11983, 'eleven thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(7118, 1906, 'one thousand nine hundred six'); INSERT INTO t3 VALUES(7119, 14323, 'fourteen thousand three hundred twenty-three'); INSERT INTO t3 VALUES(7120, 92640, 'ninety-two thousand six hundred forty'); INSERT INTO t3 VALUES(7121, 11527, 'eleven thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(7122, 88232, 'eighty-eight thousand two hundred thirty-two'); INSERT INTO t3 VALUES(7123, 16507, 'sixteen thousand five hundred seven'); INSERT INTO t3 VALUES(7124, 72272, 'seventy-two thousand two hundred seventy-two'); INSERT INTO t3 VALUES(7125, 7378, 'seven thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(7126, 14997, 'fourteen thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(7127, 67667, 'sixty-seven thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(7128, 97793, 'ninety-seven thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(7129, 34287, 'thirty-four thousand two hundred eighty-seven'); INSERT INTO t3 VALUES(7130, 39397, 'thirty-nine thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(7131, 83438, 'eighty-three thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(7132, 7585, 'seven thousand five hundred eighty-five'); INSERT INTO t3 VALUES(7133, 42113, 'forty-two thousand one hundred thirteen'); INSERT INTO t3 VALUES(7134, 4189, 'four thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(7135, 94919, 'ninety-four thousand nine hundred nineteen'); INSERT INTO t3 VALUES(7136, 77199, 'seventy-seven thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(7137, 45667, 'forty-five thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(7138, 42730, 'forty-two thousand seven hundred thirty'); INSERT INTO t3 VALUES(7139, 35776, 'thirty-five thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(7140, 31408, 'thirty-one thousand four hundred eight'); INSERT INTO t3 VALUES(7141, 67406, 'sixty-seven thousand four hundred six'); INSERT INTO t3 VALUES(7142, 43811, 'forty-three thousand eight hundred eleven'); INSERT INTO t3 VALUES(7143, 66482, 'sixty-six thousand four hundred eighty-two'); INSERT INTO t3 VALUES(7144, 97833, 'ninety-seven thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(7145, 95012, 'ninety-five thousand twelve'); INSERT INTO t3 VALUES(7146, 22034, 'twenty-two thousand thirty-four'); INSERT INTO t3 VALUES(7147, 16761, 'sixteen thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(7148, 21732, 'twenty-one thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(7149, 18523, 'eighteen thousand five hundred twenty-three'); INSERT INTO t3 VALUES(7150, 4223, 'four thousand two hundred twenty-three'); INSERT INTO t3 VALUES(7151, 9931, 'nine thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(7152, 78366, 'seventy-eight thousand three hundred sixty-six'); INSERT INTO t3 VALUES(7153, 20581, 'twenty thousand five hundred eighty-one'); INSERT INTO t3 VALUES(7154, 357, 'three hundred fifty-seven'); INSERT INTO t3 VALUES(7155, 43136, 'forty-three thousand one hundred thirty-six'); INSERT INTO t3 VALUES(7156, 31700, 'thirty-one thousand seven hundred'); INSERT INTO t3 VALUES(7157, 93442, 'ninety-three thousand four hundred forty-two'); INSERT INTO t3 VALUES(7158, 48765, 'forty-eight thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(7159, 86211, 'eighty-six thousand two hundred eleven'); INSERT INTO t3 VALUES(7160, 40331, 'forty thousand three hundred thirty-one'); INSERT INTO t3 VALUES(7161, 97315, 'ninety-seven thousand three hundred fifteen'); INSERT INTO t3 VALUES(7162, 66147, 'sixty-six thousand one hundred forty-seven'); INSERT INTO t3 VALUES(7163, 73241, 'seventy-three thousand two hundred forty-one'); INSERT INTO t3 VALUES(7164, 64669, 'sixty-four thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(7165, 99813, 'ninety-nine thousand eight hundred thirteen'); INSERT INTO t3 VALUES(7166, 13616, 'thirteen thousand six hundred sixteen'); INSERT INTO t3 VALUES(7167, 25387, 'twenty-five thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(7168, 16111, 'sixteen thousand one hundred eleven'); INSERT INTO t3 VALUES(7169, 66643, 'sixty-six thousand six hundred forty-three'); INSERT INTO t3 VALUES(7170, 24967, 'twenty-four thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(7171, 80090, 'eighty thousand ninety'); INSERT INTO t3 VALUES(7172, 88725, 'eighty-eight thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(7173, 10863, 'ten thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(7174, 17830, 'seventeen thousand eight hundred thirty'); INSERT INTO t3 VALUES(7175, 46076, 'forty-six thousand seventy-six'); INSERT INTO t3 VALUES(7176, 53475, 'fifty-three thousand four hundred seventy-five'); INSERT INTO t3 VALUES(7177, 31456, 'thirty-one thousand four hundred fifty-six'); INSERT INTO t3 VALUES(7178, 85279, 'eighty-five thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(7179, 30140, 'thirty thousand one hundred forty'); INSERT INTO t3 VALUES(7180, 30633, 'thirty thousand six hundred thirty-three'); INSERT INTO t3 VALUES(7181, 80244, 'eighty thousand two hundred forty-four'); INSERT INTO t3 VALUES(7182, 40054, 'forty thousand fifty-four'); INSERT INTO t3 VALUES(7183, 87970, 'eighty-seven thousand nine hundred seventy'); INSERT INTO t3 VALUES(7184, 80555, 'eighty thousand five hundred fifty-five'); INSERT INTO t3 VALUES(7185, 58363, 'fifty-eight thousand three hundred sixty-three'); INSERT INTO t3 VALUES(7186, 10572, 'ten thousand five hundred seventy-two'); INSERT INTO t3 VALUES(7187, 913, 'nine hundred thirteen'); INSERT INTO t3 VALUES(7188, 75543, 'seventy-five thousand five hundred forty-three'); INSERT INTO t3 VALUES(7189, 20338, 'twenty thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(7190, 60082, 'sixty thousand eighty-two'); INSERT INTO t3 VALUES(7191, 85893, 'eighty-five thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(7192, 57415, 'fifty-seven thousand four hundred fifteen'); INSERT INTO t3 VALUES(7193, 29463, 'twenty-nine thousand four hundred sixty-three'); INSERT INTO t3 VALUES(7194, 57079, 'fifty-seven thousand seventy-nine'); INSERT INTO t3 VALUES(7195, 62246, 'sixty-two thousand two hundred forty-six'); INSERT INTO t3 VALUES(7196, 22708, 'twenty-two thousand seven hundred eight'); INSERT INTO t3 VALUES(7197, 73829, 'seventy-three thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(7198, 18328, 'eighteen thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(7199, 31738, 'thirty-one thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(7200, 3161, 'three thousand one hundred sixty-one'); INSERT INTO t3 VALUES(7201, 74510, 'seventy-four thousand five hundred ten'); INSERT INTO t3 VALUES(7202, 83115, 'eighty-three thousand one hundred fifteen'); INSERT INTO t3 VALUES(7203, 4707, 'four thousand seven hundred seven'); INSERT INTO t3 VALUES(7204, 20924, 'twenty thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(7205, 96143, 'ninety-six thousand one hundred forty-three'); INSERT INTO t3 VALUES(7206, 26195, 'twenty-six thousand one hundred ninety-five'); INSERT INTO t3 VALUES(7207, 59345, 'fifty-nine thousand three hundred forty-five'); INSERT INTO t3 VALUES(7208, 86450, 'eighty-six thousand four hundred fifty'); INSERT INTO t3 VALUES(7209, 71425, 'seventy-one thousand four hundred twenty-five'); INSERT INTO t3 VALUES(7210, 6990, 'six thousand nine hundred ninety'); INSERT INTO t3 VALUES(7211, 24491, 'twenty-four thousand four hundred ninety-one'); INSERT INTO t3 VALUES(7212, 98181, 'ninety-eight thousand one hundred eighty-one'); INSERT INTO t3 VALUES(7213, 47808, 'forty-seven thousand eight hundred eight'); INSERT INTO t3 VALUES(7214, 25363, 'twenty-five thousand three hundred sixty-three'); INSERT INTO t3 VALUES(7215, 26427, 'twenty-six thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(7216, 98541, 'ninety-eight thousand five hundred forty-one'); INSERT INTO t3 VALUES(7217, 58438, 'fifty-eight thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(7218, 81857, 'eighty-one thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(7219, 50613, 'fifty thousand six hundred thirteen'); INSERT INTO t3 VALUES(7220, 69379, 'sixty-nine thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(7221, 89679, 'eighty-nine thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(7222, 5764, 'five thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(7223, 86354, 'eighty-six thousand three hundred fifty-four'); INSERT INTO t3 VALUES(7224, 5115, 'five thousand one hundred fifteen'); INSERT INTO t3 VALUES(7225, 62679, 'sixty-two thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(7226, 11391, 'eleven thousand three hundred ninety-one'); INSERT INTO t3 VALUES(7227, 97281, 'ninety-seven thousand two hundred eighty-one'); INSERT INTO t3 VALUES(7228, 33539, 'thirty-three thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(7229, 31375, 'thirty-one thousand three hundred seventy-five'); INSERT INTO t3 VALUES(7230, 77006, 'seventy-seven thousand six'); INSERT INTO t3 VALUES(7231, 54360, 'fifty-four thousand three hundred sixty'); INSERT INTO t3 VALUES(7232, 96812, 'ninety-six thousand eight hundred twelve'); INSERT INTO t3 VALUES(7233, 18611, 'eighteen thousand six hundred eleven'); INSERT INTO t3 VALUES(7234, 12079, 'twelve thousand seventy-nine'); INSERT INTO t3 VALUES(7235, 34411, 'thirty-four thousand four hundred eleven'); INSERT INTO t3 VALUES(7236, 64281, 'sixty-four thousand two hundred eighty-one'); INSERT INTO t3 VALUES(7237, 17064, 'seventeen thousand sixty-four'); INSERT INTO t3 VALUES(7238, 95552, 'ninety-five thousand five hundred fifty-two'); INSERT INTO t3 VALUES(7239, 75158, 'seventy-five thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(7240, 26079, 'twenty-six thousand seventy-nine'); INSERT INTO t3 VALUES(7241, 87235, 'eighty-seven thousand two hundred thirty-five'); INSERT INTO t3 VALUES(7242, 36560, 'thirty-six thousand five hundred sixty'); INSERT INTO t3 VALUES(7243, 50239, 'fifty thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(7244, 59601, 'fifty-nine thousand six hundred one'); INSERT INTO t3 VALUES(7245, 45706, 'forty-five thousand seven hundred six'); INSERT INTO t3 VALUES(7246, 27308, 'twenty-seven thousand three hundred eight'); INSERT INTO t3 VALUES(7247, 26573, 'twenty-six thousand five hundred seventy-three'); INSERT INTO t3 VALUES(7248, 93524, 'ninety-three thousand five hundred twenty-four'); INSERT INTO t3 VALUES(7249, 47438, 'forty-seven thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(7250, 403, 'four hundred three'); INSERT INTO t3 VALUES(7251, 51586, 'fifty-one thousand five hundred eighty-six'); INSERT INTO t3 VALUES(7252, 40570, 'forty thousand five hundred seventy'); INSERT INTO t3 VALUES(7253, 26997, 'twenty-six thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(7254, 32939, 'thirty-two thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(7255, 21478, 'twenty-one thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(7256, 82551, 'eighty-two thousand five hundred fifty-one'); INSERT INTO t3 VALUES(7257, 79146, 'seventy-nine thousand one hundred forty-six'); INSERT INTO t3 VALUES(7258, 78890, 'seventy-eight thousand eight hundred ninety'); INSERT INTO t3 VALUES(7259, 40685, 'forty thousand six hundred eighty-five'); INSERT INTO t3 VALUES(7260, 93267, 'ninety-three thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(7261, 60743, 'sixty thousand seven hundred forty-three'); INSERT INTO t3 VALUES(7262, 40535, 'forty thousand five hundred thirty-five'); INSERT INTO t3 VALUES(7263, 66248, 'sixty-six thousand two hundred forty-eight'); INSERT INTO t3 VALUES(7264, 1632, 'one thousand six hundred thirty-two'); INSERT INTO t3 VALUES(7265, 91926, 'ninety-one thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(7266, 90327, 'ninety thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(7267, 24395, 'twenty-four thousand three hundred ninety-five'); INSERT INTO t3 VALUES(7268, 98064, 'ninety-eight thousand sixty-four'); INSERT INTO t3 VALUES(7269, 84829, 'eighty-four thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(7270, 68154, 'sixty-eight thousand one hundred fifty-four'); INSERT INTO t3 VALUES(7271, 43866, 'forty-three thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(7272, 32063, 'thirty-two thousand sixty-three'); INSERT INTO t3 VALUES(7273, 86571, 'eighty-six thousand five hundred seventy-one'); INSERT INTO t3 VALUES(7274, 75604, 'seventy-five thousand six hundred four'); INSERT INTO t3 VALUES(7275, 26373, 'twenty-six thousand three hundred seventy-three'); INSERT INTO t3 VALUES(7276, 27365, 'twenty-seven thousand three hundred sixty-five'); INSERT INTO t3 VALUES(7277, 45389, 'forty-five thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(7278, 32778, 'thirty-two thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(7279, 79641, 'seventy-nine thousand six hundred forty-one'); INSERT INTO t3 VALUES(7280, 68632, 'sixty-eight thousand six hundred thirty-two'); INSERT INTO t3 VALUES(7281, 91680, 'ninety-one thousand six hundred eighty'); INSERT INTO t3 VALUES(7282, 9698, 'nine thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(7283, 10169, 'ten thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(7284, 95137, 'ninety-five thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(7285, 50545, 'fifty thousand five hundred forty-five'); INSERT INTO t3 VALUES(7286, 28316, 'twenty-eight thousand three hundred sixteen'); INSERT INTO t3 VALUES(7287, 75939, 'seventy-five thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(7288, 99566, 'ninety-nine thousand five hundred sixty-six'); INSERT INTO t3 VALUES(7289, 58914, 'fifty-eight thousand nine hundred fourteen'); INSERT INTO t3 VALUES(7290, 46525, 'forty-six thousand five hundred twenty-five'); INSERT INTO t3 VALUES(7291, 17180, 'seventeen thousand one hundred eighty'); INSERT INTO t3 VALUES(7292, 43503, 'forty-three thousand five hundred three'); INSERT INTO t3 VALUES(7293, 42734, 'forty-two thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(7294, 52603, 'fifty-two thousand six hundred three'); INSERT INTO t3 VALUES(7295, 37051, 'thirty-seven thousand fifty-one'); INSERT INTO t3 VALUES(7296, 88547, 'eighty-eight thousand five hundred forty-seven'); INSERT INTO t3 VALUES(7297, 50661, 'fifty thousand six hundred sixty-one'); INSERT INTO t3 VALUES(7298, 63879, 'sixty-three thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(7299, 43116, 'forty-three thousand one hundred sixteen'); INSERT INTO t3 VALUES(7300, 41459, 'forty-one thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(7301, 52667, 'fifty-two thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(7302, 94465, 'ninety-four thousand four hundred sixty-five'); INSERT INTO t3 VALUES(7303, 1466, 'one thousand four hundred sixty-six'); INSERT INTO t3 VALUES(7304, 7554, 'seven thousand five hundred fifty-four'); INSERT INTO t3 VALUES(7305, 63773, 'sixty-three thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(7306, 81490, 'eighty-one thousand four hundred ninety'); INSERT INTO t3 VALUES(7307, 40160, 'forty thousand one hundred sixty'); INSERT INTO t3 VALUES(7308, 50116, 'fifty thousand one hundred sixteen'); INSERT INTO t3 VALUES(7309, 23794, 'twenty-three thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(7310, 16229, 'sixteen thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(7311, 94774, 'ninety-four thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(7312, 81281, 'eighty-one thousand two hundred eighty-one'); INSERT INTO t3 VALUES(7313, 92361, 'ninety-two thousand three hundred sixty-one'); INSERT INTO t3 VALUES(7314, 8777, 'eight thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(7315, 82318, 'eighty-two thousand three hundred eighteen'); INSERT INTO t3 VALUES(7316, 84670, 'eighty-four thousand six hundred seventy'); INSERT INTO t3 VALUES(7317, 97483, 'ninety-seven thousand four hundred eighty-three'); INSERT INTO t3 VALUES(7318, 63160, 'sixty-three thousand one hundred sixty'); INSERT INTO t3 VALUES(7319, 57553, 'fifty-seven thousand five hundred fifty-three'); INSERT INTO t3 VALUES(7320, 64537, 'sixty-four thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(7321, 82027, 'eighty-two thousand twenty-seven'); INSERT INTO t3 VALUES(7322, 93718, 'ninety-three thousand seven hundred eighteen'); INSERT INTO t3 VALUES(7323, 87896, 'eighty-seven thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(7324, 44585, 'forty-four thousand five hundred eighty-five'); INSERT INTO t3 VALUES(7325, 40057, 'forty thousand fifty-seven'); INSERT INTO t3 VALUES(7326, 26386, 'twenty-six thousand three hundred eighty-six'); INSERT INTO t3 VALUES(7327, 1766, 'one thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(7328, 34015, 'thirty-four thousand fifteen'); INSERT INTO t3 VALUES(7329, 50261, 'fifty thousand two hundred sixty-one'); INSERT INTO t3 VALUES(7330, 78277, 'seventy-eight thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(7331, 46721, 'forty-six thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(7332, 25314, 'twenty-five thousand three hundred fourteen'); INSERT INTO t3 VALUES(7333, 16614, 'sixteen thousand six hundred fourteen'); INSERT INTO t3 VALUES(7334, 48752, 'forty-eight thousand seven hundred fifty-two'); INSERT INTO t3 VALUES(7335, 59627, 'fifty-nine thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(7336, 99314, 'ninety-nine thousand three hundred fourteen'); INSERT INTO t3 VALUES(7337, 19999, 'nineteen thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(7338, 75660, 'seventy-five thousand six hundred sixty'); INSERT INTO t3 VALUES(7339, 99677, 'ninety-nine thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(7340, 73009, 'seventy-three thousand nine'); INSERT INTO t3 VALUES(7341, 22318, 'twenty-two thousand three hundred eighteen'); INSERT INTO t3 VALUES(7342, 60655, 'sixty thousand six hundred fifty-five'); INSERT INTO t3 VALUES(7343, 46171, 'forty-six thousand one hundred seventy-one'); INSERT INTO t3 VALUES(7344, 36168, 'thirty-six thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(7345, 80572, 'eighty thousand five hundred seventy-two'); INSERT INTO t3 VALUES(7346, 93370, 'ninety-three thousand three hundred seventy'); INSERT INTO t3 VALUES(7347, 12796, 'twelve thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(7348, 48320, 'forty-eight thousand three hundred twenty'); INSERT INTO t3 VALUES(7349, 91647, 'ninety-one thousand six hundred forty-seven'); INSERT INTO t3 VALUES(7350, 41767, 'forty-one thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(7351, 53956, 'fifty-three thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(7352, 39825, 'thirty-nine thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(7353, 31096, 'thirty-one thousand ninety-six'); INSERT INTO t3 VALUES(7354, 61425, 'sixty-one thousand four hundred twenty-five'); INSERT INTO t3 VALUES(7355, 22037, 'twenty-two thousand thirty-seven'); INSERT INTO t3 VALUES(7356, 92717, 'ninety-two thousand seven hundred seventeen'); INSERT INTO t3 VALUES(7357, 26391, 'twenty-six thousand three hundred ninety-one'); INSERT INTO t3 VALUES(7358, 52610, 'fifty-two thousand six hundred ten'); INSERT INTO t3 VALUES(7359, 37210, 'thirty-seven thousand two hundred ten'); INSERT INTO t3 VALUES(7360, 91766, 'ninety-one thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(7361, 71153, 'seventy-one thousand one hundred fifty-three'); INSERT INTO t3 VALUES(7362, 99371, 'ninety-nine thousand three hundred seventy-one'); INSERT INTO t3 VALUES(7363, 54607, 'fifty-four thousand six hundred seven'); INSERT INTO t3 VALUES(7364, 31431, 'thirty-one thousand four hundred thirty-one'); INSERT INTO t3 VALUES(7365, 24555, 'twenty-four thousand five hundred fifty-five'); INSERT INTO t3 VALUES(7366, 68445, 'sixty-eight thousand four hundred forty-five'); INSERT INTO t3 VALUES(7367, 53641, 'fifty-three thousand six hundred forty-one'); INSERT INTO t3 VALUES(7368, 64496, 'sixty-four thousand four hundred ninety-six'); INSERT INTO t3 VALUES(7369, 22525, 'twenty-two thousand five hundred twenty-five'); INSERT INTO t3 VALUES(7370, 96979, 'ninety-six thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(7371, 26026, 'twenty-six thousand twenty-six'); INSERT INTO t3 VALUES(7372, 66299, 'sixty-six thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(7373, 63489, 'sixty-three thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(7374, 49429, 'forty-nine thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(7375, 78692, 'seventy-eight thousand six hundred ninety-two'); INSERT INTO t3 VALUES(7376, 837, 'eight hundred thirty-seven'); INSERT INTO t3 VALUES(7377, 70519, 'seventy thousand five hundred nineteen'); INSERT INTO t3 VALUES(7378, 65336, 'sixty-five thousand three hundred thirty-six'); INSERT INTO t3 VALUES(7379, 32764, 'thirty-two thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(7380, 38253, 'thirty-eight thousand two hundred fifty-three'); INSERT INTO t3 VALUES(7381, 11074, 'eleven thousand seventy-four'); INSERT INTO t3 VALUES(7382, 85697, 'eighty-five thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(7383, 39179, 'thirty-nine thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(7384, 65031, 'sixty-five thousand thirty-one'); INSERT INTO t3 VALUES(7385, 67408, 'sixty-seven thousand four hundred eight'); INSERT INTO t3 VALUES(7386, 92027, 'ninety-two thousand twenty-seven'); INSERT INTO t3 VALUES(7387, 67498, 'sixty-seven thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(7388, 53423, 'fifty-three thousand four hundred twenty-three'); INSERT INTO t3 VALUES(7389, 74263, 'seventy-four thousand two hundred sixty-three'); INSERT INTO t3 VALUES(7390, 91085, 'ninety-one thousand eighty-five'); INSERT INTO t3 VALUES(7391, 95463, 'ninety-five thousand four hundred sixty-three'); INSERT INTO t3 VALUES(7392, 77277, 'seventy-seven thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(7393, 38802, 'thirty-eight thousand eight hundred two'); INSERT INTO t3 VALUES(7394, 53304, 'fifty-three thousand three hundred four'); INSERT INTO t3 VALUES(7395, 70192, 'seventy thousand one hundred ninety-two'); INSERT INTO t3 VALUES(7396, 94906, 'ninety-four thousand nine hundred six'); INSERT INTO t3 VALUES(7397, 54039, 'fifty-four thousand thirty-nine'); INSERT INTO t3 VALUES(7398, 20635, 'twenty thousand six hundred thirty-five'); INSERT INTO t3 VALUES(7399, 79504, 'seventy-nine thousand five hundred four'); INSERT INTO t3 VALUES(7400, 9461, 'nine thousand four hundred sixty-one'); INSERT INTO t3 VALUES(7401, 38963, 'thirty-eight thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(7402, 8529, 'eight thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(7403, 81890, 'eighty-one thousand eight hundred ninety'); INSERT INTO t3 VALUES(7404, 40177, 'forty thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(7405, 64703, 'sixty-four thousand seven hundred three'); INSERT INTO t3 VALUES(7406, 79332, 'seventy-nine thousand three hundred thirty-two'); INSERT INTO t3 VALUES(7407, 19102, 'nineteen thousand one hundred two'); INSERT INTO t3 VALUES(7408, 69980, 'sixty-nine thousand nine hundred eighty'); INSERT INTO t3 VALUES(7409, 98709, 'ninety-eight thousand seven hundred nine'); INSERT INTO t3 VALUES(7410, 47286, 'forty-seven thousand two hundred eighty-six'); INSERT INTO t3 VALUES(7411, 94188, 'ninety-four thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(7412, 9888, 'nine thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(7413, 74431, 'seventy-four thousand four hundred thirty-one'); INSERT INTO t3 VALUES(7414, 85319, 'eighty-five thousand three hundred nineteen'); INSERT INTO t3 VALUES(7415, 43359, 'forty-three thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(7416, 59822, 'fifty-nine thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(7417, 54754, 'fifty-four thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(7418, 19939, 'nineteen thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(7419, 27173, 'twenty-seven thousand one hundred seventy-three'); INSERT INTO t3 VALUES(7420, 39417, 'thirty-nine thousand four hundred seventeen'); INSERT INTO t3 VALUES(7421, 5050, 'five thousand fifty'); INSERT INTO t3 VALUES(7422, 82733, 'eighty-two thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(7423, 71513, 'seventy-one thousand five hundred thirteen'); INSERT INTO t3 VALUES(7424, 61625, 'sixty-one thousand six hundred twenty-five'); INSERT INTO t3 VALUES(7425, 38970, 'thirty-eight thousand nine hundred seventy'); INSERT INTO t3 VALUES(7426, 57012, 'fifty-seven thousand twelve'); INSERT INTO t3 VALUES(7427, 86190, 'eighty-six thousand one hundred ninety'); INSERT INTO t3 VALUES(7428, 49754, 'forty-nine thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(7429, 3570, 'three thousand five hundred seventy'); INSERT INTO t3 VALUES(7430, 96076, 'ninety-six thousand seventy-six'); INSERT INTO t3 VALUES(7431, 4745, 'four thousand seven hundred forty-five'); INSERT INTO t3 VALUES(7432, 92184, 'ninety-two thousand one hundred eighty-four'); INSERT INTO t3 VALUES(7433, 72315, 'seventy-two thousand three hundred fifteen'); INSERT INTO t3 VALUES(7434, 85172, 'eighty-five thousand one hundred seventy-two'); INSERT INTO t3 VALUES(7435, 35389, 'thirty-five thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(7436, 67991, 'sixty-seven thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(7437, 35787, 'thirty-five thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(7438, 17895, 'seventeen thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(7439, 97226, 'ninety-seven thousand two hundred twenty-six'); INSERT INTO t3 VALUES(7440, 66758, 'sixty-six thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(7441, 51392, 'fifty-one thousand three hundred ninety-two'); INSERT INTO t3 VALUES(7442, 9569, 'nine thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(7443, 11318, 'eleven thousand three hundred eighteen'); INSERT INTO t3 VALUES(7444, 65677, 'sixty-five thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(7445, 61757, 'sixty-one thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(7446, 66882, 'sixty-six thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(7447, 70581, 'seventy thousand five hundred eighty-one'); INSERT INTO t3 VALUES(7448, 34156, 'thirty-four thousand one hundred fifty-six'); INSERT INTO t3 VALUES(7449, 60205, 'sixty thousand two hundred five'); INSERT INTO t3 VALUES(7450, 96642, 'ninety-six thousand six hundred forty-two'); INSERT INTO t3 VALUES(7451, 72517, 'seventy-two thousand five hundred seventeen'); INSERT INTO t3 VALUES(7452, 61711, 'sixty-one thousand seven hundred eleven'); INSERT INTO t3 VALUES(7453, 64009, 'sixty-four thousand nine'); INSERT INTO t3 VALUES(7454, 4585, 'four thousand five hundred eighty-five'); INSERT INTO t3 VALUES(7455, 2992, 'two thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(7456, 69552, 'sixty-nine thousand five hundred fifty-two'); INSERT INTO t3 VALUES(7457, 48447, 'forty-eight thousand four hundred forty-seven'); INSERT INTO t3 VALUES(7458, 40860, 'forty thousand eight hundred sixty'); INSERT INTO t3 VALUES(7459, 48556, 'forty-eight thousand five hundred fifty-six'); INSERT INTO t3 VALUES(7460, 54763, 'fifty-four thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(7461, 80128, 'eighty thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(7462, 12294, 'twelve thousand two hundred ninety-four'); INSERT INTO t3 VALUES(7463, 99064, 'ninety-nine thousand sixty-four'); INSERT INTO t3 VALUES(7464, 95603, 'ninety-five thousand six hundred three'); INSERT INTO t3 VALUES(7465, 22560, 'twenty-two thousand five hundred sixty'); INSERT INTO t3 VALUES(7466, 4045, 'four thousand forty-five'); INSERT INTO t3 VALUES(7467, 13916, 'thirteen thousand nine hundred sixteen'); INSERT INTO t3 VALUES(7468, 71415, 'seventy-one thousand four hundred fifteen'); INSERT INTO t3 VALUES(7469, 96384, 'ninety-six thousand three hundred eighty-four'); INSERT INTO t3 VALUES(7470, 47370, 'forty-seven thousand three hundred seventy'); INSERT INTO t3 VALUES(7471, 32635, 'thirty-two thousand six hundred thirty-five'); INSERT INTO t3 VALUES(7472, 41647, 'forty-one thousand six hundred forty-seven'); INSERT INTO t3 VALUES(7473, 77570, 'seventy-seven thousand five hundred seventy'); INSERT INTO t3 VALUES(7474, 16982, 'sixteen thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(7475, 57260, 'fifty-seven thousand two hundred sixty'); INSERT INTO t3 VALUES(7476, 81874, 'eighty-one thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(7477, 12504, 'twelve thousand five hundred four'); INSERT INTO t3 VALUES(7478, 6017, 'six thousand seventeen'); INSERT INTO t3 VALUES(7479, 92489, 'ninety-two thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(7480, 24565, 'twenty-four thousand five hundred sixty-five'); INSERT INTO t3 VALUES(7481, 66542, 'sixty-six thousand five hundred forty-two'); INSERT INTO t3 VALUES(7482, 55826, 'fifty-five thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(7483, 58424, 'fifty-eight thousand four hundred twenty-four'); INSERT INTO t3 VALUES(7484, 35503, 'thirty-five thousand five hundred three'); INSERT INTO t3 VALUES(7485, 37619, 'thirty-seven thousand six hundred nineteen'); INSERT INTO t3 VALUES(7486, 35052, 'thirty-five thousand fifty-two'); INSERT INTO t3 VALUES(7487, 20516, 'twenty thousand five hundred sixteen'); INSERT INTO t3 VALUES(7488, 28207, 'twenty-eight thousand two hundred seven'); INSERT INTO t3 VALUES(7489, 37939, 'thirty-seven thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(7490, 64114, 'sixty-four thousand one hundred fourteen'); INSERT INTO t3 VALUES(7491, 57495, 'fifty-seven thousand four hundred ninety-five'); INSERT INTO t3 VALUES(7492, 1723, 'one thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(7493, 30893, 'thirty thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(7494, 84887, 'eighty-four thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(7495, 80399, 'eighty thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(7496, 78016, 'seventy-eight thousand sixteen'); INSERT INTO t3 VALUES(7497, 98840, 'ninety-eight thousand eight hundred forty'); INSERT INTO t3 VALUES(7498, 46953, 'forty-six thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(7499, 44776, 'forty-four thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(7500, 9547, 'nine thousand five hundred forty-seven'); INSERT INTO t3 VALUES(7501, 90833, 'ninety thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(7502, 53107, 'fifty-three thousand one hundred seven'); INSERT INTO t3 VALUES(7503, 52712, 'fifty-two thousand seven hundred twelve'); INSERT INTO t3 VALUES(7504, 68252, 'sixty-eight thousand two hundred fifty-two'); INSERT INTO t3 VALUES(7505, 74509, 'seventy-four thousand five hundred nine'); INSERT INTO t3 VALUES(7506, 65288, 'sixty-five thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(7507, 50712, 'fifty thousand seven hundred twelve'); INSERT INTO t3 VALUES(7508, 97665, 'ninety-seven thousand six hundred sixty-five'); INSERT INTO t3 VALUES(7509, 79046, 'seventy-nine thousand forty-six'); INSERT INTO t3 VALUES(7510, 41546, 'forty-one thousand five hundred forty-six'); INSERT INTO t3 VALUES(7511, 12239, 'twelve thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(7512, 27949, 'twenty-seven thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(7513, 7411, 'seven thousand four hundred eleven'); INSERT INTO t3 VALUES(7514, 34311, 'thirty-four thousand three hundred eleven'); INSERT INTO t3 VALUES(7515, 74659, 'seventy-four thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(7516, 66488, 'sixty-six thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(7517, 13787, 'thirteen thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(7518, 46028, 'forty-six thousand twenty-eight'); INSERT INTO t3 VALUES(7519, 11820, 'eleven thousand eight hundred twenty'); INSERT INTO t3 VALUES(7520, 45427, 'forty-five thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(7521, 52355, 'fifty-two thousand three hundred fifty-five'); INSERT INTO t3 VALUES(7522, 28745, 'twenty-eight thousand seven hundred forty-five'); INSERT INTO t3 VALUES(7523, 9026, 'nine thousand twenty-six'); INSERT INTO t3 VALUES(7524, 94884, 'ninety-four thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(7525, 76702, 'seventy-six thousand seven hundred two'); INSERT INTO t3 VALUES(7526, 39677, 'thirty-nine thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(7527, 72087, 'seventy-two thousand eighty-seven'); INSERT INTO t3 VALUES(7528, 97734, 'ninety-seven thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(7529, 32518, 'thirty-two thousand five hundred eighteen'); INSERT INTO t3 VALUES(7530, 50306, 'fifty thousand three hundred six'); INSERT INTO t3 VALUES(7531, 37149, 'thirty-seven thousand one hundred forty-nine'); INSERT INTO t3 VALUES(7532, 97313, 'ninety-seven thousand three hundred thirteen'); INSERT INTO t3 VALUES(7533, 1129, 'one thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(7534, 12070, 'twelve thousand seventy'); INSERT INTO t3 VALUES(7535, 30942, 'thirty thousand nine hundred forty-two'); INSERT INTO t3 VALUES(7536, 77989, 'seventy-seven thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(7537, 54855, 'fifty-four thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(7538, 35213, 'thirty-five thousand two hundred thirteen'); INSERT INTO t3 VALUES(7539, 39137, 'thirty-nine thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(7540, 14845, 'fourteen thousand eight hundred forty-five'); INSERT INTO t3 VALUES(7541, 97824, 'ninety-seven thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(7542, 34872, 'thirty-four thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(7543, 35272, 'thirty-five thousand two hundred seventy-two'); INSERT INTO t3 VALUES(7544, 78747, 'seventy-eight thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(7545, 12609, 'twelve thousand six hundred nine'); INSERT INTO t3 VALUES(7546, 22610, 'twenty-two thousand six hundred ten'); INSERT INTO t3 VALUES(7547, 74120, 'seventy-four thousand one hundred twenty'); INSERT INTO t3 VALUES(7548, 11307, 'eleven thousand three hundred seven'); INSERT INTO t3 VALUES(7549, 78732, 'seventy-eight thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(7550, 38744, 'thirty-eight thousand seven hundred forty-four'); INSERT INTO t3 VALUES(7551, 86177, 'eighty-six thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(7552, 76698, 'seventy-six thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(7553, 98127, 'ninety-eight thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(7554, 45165, 'forty-five thousand one hundred sixty-five'); INSERT INTO t3 VALUES(7555, 20447, 'twenty thousand four hundred forty-seven'); INSERT INTO t3 VALUES(7556, 50029, 'fifty thousand twenty-nine'); INSERT INTO t3 VALUES(7557, 45474, 'forty-five thousand four hundred seventy-four'); INSERT INTO t3 VALUES(7558, 58763, 'fifty-eight thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(7559, 1595, 'one thousand five hundred ninety-five'); INSERT INTO t3 VALUES(7560, 85801, 'eighty-five thousand eight hundred one'); INSERT INTO t3 VALUES(7561, 71686, 'seventy-one thousand six hundred eighty-six'); INSERT INTO t3 VALUES(7562, 48690, 'forty-eight thousand six hundred ninety'); INSERT INTO t3 VALUES(7563, 69831, 'sixty-nine thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(7564, 41830, 'forty-one thousand eight hundred thirty'); INSERT INTO t3 VALUES(7565, 39401, 'thirty-nine thousand four hundred one'); INSERT INTO t3 VALUES(7566, 36409, 'thirty-six thousand four hundred nine'); INSERT INTO t3 VALUES(7567, 93546, 'ninety-three thousand five hundred forty-six'); INSERT INTO t3 VALUES(7568, 28623, 'twenty-eight thousand six hundred twenty-three'); INSERT INTO t3 VALUES(7569, 76447, 'seventy-six thousand four hundred forty-seven'); INSERT INTO t3 VALUES(7570, 74155, 'seventy-four thousand one hundred fifty-five'); INSERT INTO t3 VALUES(7571, 27676, 'twenty-seven thousand six hundred seventy-six'); INSERT INTO t3 VALUES(7572, 93103, 'ninety-three thousand one hundred three'); INSERT INTO t3 VALUES(7573, 74447, 'seventy-four thousand four hundred forty-seven'); INSERT INTO t3 VALUES(7574, 15621, 'fifteen thousand six hundred twenty-one'); INSERT INTO t3 VALUES(7575, 2525, 'two thousand five hundred twenty-five'); INSERT INTO t3 VALUES(7576, 33109, 'thirty-three thousand one hundred nine'); INSERT INTO t3 VALUES(7577, 64120, 'sixty-four thousand one hundred twenty'); INSERT INTO t3 VALUES(7578, 52964, 'fifty-two thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(7579, 76616, 'seventy-six thousand six hundred sixteen'); INSERT INTO t3 VALUES(7580, 48564, 'forty-eight thousand five hundred sixty-four'); INSERT INTO t3 VALUES(7581, 16025, 'sixteen thousand twenty-five'); INSERT INTO t3 VALUES(7582, 80423, 'eighty thousand four hundred twenty-three'); INSERT INTO t3 VALUES(7583, 70279, 'seventy thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(7584, 5922, 'five thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(7585, 98448, 'ninety-eight thousand four hundred forty-eight'); INSERT INTO t3 VALUES(7586, 87113, 'eighty-seven thousand one hundred thirteen'); INSERT INTO t3 VALUES(7587, 94305, 'ninety-four thousand three hundred five'); INSERT INTO t3 VALUES(7588, 16578, 'sixteen thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(7589, 82326, 'eighty-two thousand three hundred twenty-six'); INSERT INTO t3 VALUES(7590, 88899, 'eighty-eight thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(7591, 44787, 'forty-four thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(7592, 33204, 'thirty-three thousand two hundred four'); INSERT INTO t3 VALUES(7593, 57376, 'fifty-seven thousand three hundred seventy-six'); INSERT INTO t3 VALUES(7594, 13450, 'thirteen thousand four hundred fifty'); INSERT INTO t3 VALUES(7595, 12044, 'twelve thousand forty-four'); INSERT INTO t3 VALUES(7596, 44098, 'forty-four thousand ninety-eight'); INSERT INTO t3 VALUES(7597, 52412, 'fifty-two thousand four hundred twelve'); INSERT INTO t3 VALUES(7598, 10663, 'ten thousand six hundred sixty-three'); INSERT INTO t3 VALUES(7599, 99892, 'ninety-nine thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(7600, 63839, 'sixty-three thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(7601, 49410, 'forty-nine thousand four hundred ten'); INSERT INTO t3 VALUES(7602, 61592, 'sixty-one thousand five hundred ninety-two'); INSERT INTO t3 VALUES(7603, 24187, 'twenty-four thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(7604, 697, 'six hundred ninety-seven'); INSERT INTO t3 VALUES(7605, 73808, 'seventy-three thousand eight hundred eight'); INSERT INTO t3 VALUES(7606, 51709, 'fifty-one thousand seven hundred nine'); INSERT INTO t3 VALUES(7607, 28293, 'twenty-eight thousand two hundred ninety-three'); INSERT INTO t3 VALUES(7608, 10204, 'ten thousand two hundred four'); INSERT INTO t3 VALUES(7609, 67203, 'sixty-seven thousand two hundred three'); INSERT INTO t3 VALUES(7610, 12565, 'twelve thousand five hundred sixty-five'); INSERT INTO t3 VALUES(7611, 25215, 'twenty-five thousand two hundred fifteen'); INSERT INTO t3 VALUES(7612, 34623, 'thirty-four thousand six hundred twenty-three'); INSERT INTO t3 VALUES(7613, 69754, 'sixty-nine thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(7614, 11969, 'eleven thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(7615, 86414, 'eighty-six thousand four hundred fourteen'); INSERT INTO t3 VALUES(7616, 77625, 'seventy-seven thousand six hundred twenty-five'); INSERT INTO t3 VALUES(7617, 73643, 'seventy-three thousand six hundred forty-three'); INSERT INTO t3 VALUES(7618, 82224, 'eighty-two thousand two hundred twenty-four'); INSERT INTO t3 VALUES(7619, 86857, 'eighty-six thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(7620, 23712, 'twenty-three thousand seven hundred twelve'); INSERT INTO t3 VALUES(7621, 9453, 'nine thousand four hundred fifty-three'); INSERT INTO t3 VALUES(7622, 14528, 'fourteen thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(7623, 44197, 'forty-four thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(7624, 80800, 'eighty thousand eight hundred'); INSERT INTO t3 VALUES(7625, 36617, 'thirty-six thousand six hundred seventeen'); INSERT INTO t3 VALUES(7626, 43490, 'forty-three thousand four hundred ninety'); INSERT INTO t3 VALUES(7627, 40014, 'forty thousand fourteen'); INSERT INTO t3 VALUES(7628, 27058, 'twenty-seven thousand fifty-eight'); INSERT INTO t3 VALUES(7629, 31330, 'thirty-one thousand three hundred thirty'); INSERT INTO t3 VALUES(7630, 18183, 'eighteen thousand one hundred eighty-three'); INSERT INTO t3 VALUES(7631, 26692, 'twenty-six thousand six hundred ninety-two'); INSERT INTO t3 VALUES(7632, 2326, 'two thousand three hundred twenty-six'); INSERT INTO t3 VALUES(7633, 8740, 'eight thousand seven hundred forty'); INSERT INTO t3 VALUES(7634, 71872, 'seventy-one thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(7635, 94980, 'ninety-four thousand nine hundred eighty'); INSERT INTO t3 VALUES(7636, 57421, 'fifty-seven thousand four hundred twenty-one'); INSERT INTO t3 VALUES(7637, 50262, 'fifty thousand two hundred sixty-two'); INSERT INTO t3 VALUES(7638, 92558, 'ninety-two thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(7639, 28433, 'twenty-eight thousand four hundred thirty-three'); INSERT INTO t3 VALUES(7640, 38487, 'thirty-eight thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(7641, 57935, 'fifty-seven thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(7642, 80686, 'eighty thousand six hundred eighty-six'); INSERT INTO t3 VALUES(7643, 82288, 'eighty-two thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(7644, 45145, 'forty-five thousand one hundred forty-five'); INSERT INTO t3 VALUES(7645, 42731, 'forty-two thousand seven hundred thirty-one'); INSERT INTO t3 VALUES(7646, 92859, 'ninety-two thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(7647, 25249, 'twenty-five thousand two hundred forty-nine'); INSERT INTO t3 VALUES(7648, 27889, 'twenty-seven thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(7649, 32498, 'thirty-two thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(7650, 67190, 'sixty-seven thousand one hundred ninety'); INSERT INTO t3 VALUES(7651, 16483, 'sixteen thousand four hundred eighty-three'); INSERT INTO t3 VALUES(7652, 92921, 'ninety-two thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(7653, 81931, 'eighty-one thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(7654, 62118, 'sixty-two thousand one hundred eighteen'); INSERT INTO t3 VALUES(7655, 65606, 'sixty-five thousand six hundred six'); INSERT INTO t3 VALUES(7656, 80140, 'eighty thousand one hundred forty'); INSERT INTO t3 VALUES(7657, 17924, 'seventeen thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(7658, 73424, 'seventy-three thousand four hundred twenty-four'); INSERT INTO t3 VALUES(7659, 44329, 'forty-four thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(7660, 17251, 'seventeen thousand two hundred fifty-one'); INSERT INTO t3 VALUES(7661, 76550, 'seventy-six thousand five hundred fifty'); INSERT INTO t3 VALUES(7662, 96373, 'ninety-six thousand three hundred seventy-three'); INSERT INTO t3 VALUES(7663, 74089, 'seventy-four thousand eighty-nine'); INSERT INTO t3 VALUES(7664, 59197, 'fifty-nine thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(7665, 33611, 'thirty-three thousand six hundred eleven'); INSERT INTO t3 VALUES(7666, 95643, 'ninety-five thousand six hundred forty-three'); INSERT INTO t3 VALUES(7667, 75288, 'seventy-five thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(7668, 80946, 'eighty thousand nine hundred forty-six'); INSERT INTO t3 VALUES(7669, 65429, 'sixty-five thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(7670, 93209, 'ninety-three thousand two hundred nine'); INSERT INTO t3 VALUES(7671, 57171, 'fifty-seven thousand one hundred seventy-one'); INSERT INTO t3 VALUES(7672, 7760, 'seven thousand seven hundred sixty'); INSERT INTO t3 VALUES(7673, 91460, 'ninety-one thousand four hundred sixty'); INSERT INTO t3 VALUES(7674, 63700, 'sixty-three thousand seven hundred'); INSERT INTO t3 VALUES(7675, 82372, 'eighty-two thousand three hundred seventy-two'); INSERT INTO t3 VALUES(7676, 50389, 'fifty thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(7677, 67003, 'sixty-seven thousand three'); INSERT INTO t3 VALUES(7678, 9189, 'nine thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(7679, 35140, 'thirty-five thousand one hundred forty'); INSERT INTO t3 VALUES(7680, 23469, 'twenty-three thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(7681, 75837, 'seventy-five thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(7682, 50823, 'fifty thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(7683, 39602, 'thirty-nine thousand six hundred two'); INSERT INTO t3 VALUES(7684, 2325, 'two thousand three hundred twenty-five'); INSERT INTO t3 VALUES(7685, 20892, 'twenty thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(7686, 37539, 'thirty-seven thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(7687, 48973, 'forty-eight thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(7688, 30137, 'thirty thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(7689, 64638, 'sixty-four thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(7690, 29011, 'twenty-nine thousand eleven'); INSERT INTO t3 VALUES(7691, 28390, 'twenty-eight thousand three hundred ninety'); INSERT INTO t3 VALUES(7692, 46941, 'forty-six thousand nine hundred forty-one'); INSERT INTO t3 VALUES(7693, 41927, 'forty-one thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(7694, 87484, 'eighty-seven thousand four hundred eighty-four'); INSERT INTO t3 VALUES(7695, 41679, 'forty-one thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(7696, 26773, 'twenty-six thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(7697, 10393, 'ten thousand three hundred ninety-three'); INSERT INTO t3 VALUES(7698, 14423, 'fourteen thousand four hundred twenty-three'); INSERT INTO t3 VALUES(7699, 15814, 'fifteen thousand eight hundred fourteen'); INSERT INTO t3 VALUES(7700, 89719, 'eighty-nine thousand seven hundred nineteen'); INSERT INTO t3 VALUES(7701, 28084, 'twenty-eight thousand eighty-four'); INSERT INTO t3 VALUES(7702, 22485, 'twenty-two thousand four hundred eighty-five'); INSERT INTO t3 VALUES(7703, 41293, 'forty-one thousand two hundred ninety-three'); INSERT INTO t3 VALUES(7704, 7387, 'seven thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(7705, 52637, 'fifty-two thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(7706, 88522, 'eighty-eight thousand five hundred twenty-two'); INSERT INTO t3 VALUES(7707, 18970, 'eighteen thousand nine hundred seventy'); INSERT INTO t3 VALUES(7708, 43657, 'forty-three thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(7709, 97783, 'ninety-seven thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(7710, 54116, 'fifty-four thousand one hundred sixteen'); INSERT INTO t3 VALUES(7711, 82187, 'eighty-two thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(7712, 73570, 'seventy-three thousand five hundred seventy'); INSERT INTO t3 VALUES(7713, 44730, 'forty-four thousand seven hundred thirty'); INSERT INTO t3 VALUES(7714, 34501, 'thirty-four thousand five hundred one'); INSERT INTO t3 VALUES(7715, 42000, 'forty-two thousand'); INSERT INTO t3 VALUES(7716, 24661, 'twenty-four thousand six hundred sixty-one'); INSERT INTO t3 VALUES(7717, 77717, 'seventy-seven thousand seven hundred seventeen'); INSERT INTO t3 VALUES(7718, 40548, 'forty thousand five hundred forty-eight'); INSERT INTO t3 VALUES(7719, 50510, 'fifty thousand five hundred ten'); INSERT INTO t3 VALUES(7720, 3961, 'three thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(7721, 39790, 'thirty-nine thousand seven hundred ninety'); INSERT INTO t3 VALUES(7722, 38183, 'thirty-eight thousand one hundred eighty-three'); INSERT INTO t3 VALUES(7723, 66361, 'sixty-six thousand three hundred sixty-one'); INSERT INTO t3 VALUES(7724, 45077, 'forty-five thousand seventy-seven'); INSERT INTO t3 VALUES(7725, 28732, 'twenty-eight thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(7726, 38696, 'thirty-eight thousand six hundred ninety-six'); INSERT INTO t3 VALUES(7727, 30611, 'thirty thousand six hundred eleven'); INSERT INTO t3 VALUES(7728, 76970, 'seventy-six thousand nine hundred seventy'); INSERT INTO t3 VALUES(7729, 71637, 'seventy-one thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(7730, 53458, 'fifty-three thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(7731, 59707, 'fifty-nine thousand seven hundred seven'); INSERT INTO t3 VALUES(7732, 22138, 'twenty-two thousand one hundred thirty-eight'); INSERT INTO t3 VALUES(7733, 98817, 'ninety-eight thousand eight hundred seventeen'); INSERT INTO t3 VALUES(7734, 65492, 'sixty-five thousand four hundred ninety-two'); INSERT INTO t3 VALUES(7735, 90389, 'ninety thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(7736, 32177, 'thirty-two thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(7737, 45441, 'forty-five thousand four hundred forty-one'); INSERT INTO t3 VALUES(7738, 37475, 'thirty-seven thousand four hundred seventy-five'); INSERT INTO t3 VALUES(7739, 86254, 'eighty-six thousand two hundred fifty-four'); INSERT INTO t3 VALUES(7740, 67310, 'sixty-seven thousand three hundred ten'); INSERT INTO t3 VALUES(7741, 44406, 'forty-four thousand four hundred six'); INSERT INTO t3 VALUES(7742, 92365, 'ninety-two thousand three hundred sixty-five'); INSERT INTO t3 VALUES(7743, 3669, 'three thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(7744, 72385, 'seventy-two thousand three hundred eighty-five'); INSERT INTO t3 VALUES(7745, 28656, 'twenty-eight thousand six hundred fifty-six'); INSERT INTO t3 VALUES(7746, 34393, 'thirty-four thousand three hundred ninety-three'); INSERT INTO t3 VALUES(7747, 23183, 'twenty-three thousand one hundred eighty-three'); INSERT INTO t3 VALUES(7748, 94824, 'ninety-four thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(7749, 80816, 'eighty thousand eight hundred sixteen'); INSERT INTO t3 VALUES(7750, 43350, 'forty-three thousand three hundred fifty'); INSERT INTO t3 VALUES(7751, 74944, 'seventy-four thousand nine hundred forty-four'); INSERT INTO t3 VALUES(7752, 57786, 'fifty-seven thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(7753, 76814, 'seventy-six thousand eight hundred fourteen'); INSERT INTO t3 VALUES(7754, 48104, 'forty-eight thousand one hundred four'); INSERT INTO t3 VALUES(7755, 65442, 'sixty-five thousand four hundred forty-two'); INSERT INTO t3 VALUES(7756, 45982, 'forty-five thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(7757, 72415, 'seventy-two thousand four hundred fifteen'); INSERT INTO t3 VALUES(7758, 49098, 'forty-nine thousand ninety-eight'); INSERT INTO t3 VALUES(7759, 59919, 'fifty-nine thousand nine hundred nineteen'); INSERT INTO t3 VALUES(7760, 56507, 'fifty-six thousand five hundred seven'); INSERT INTO t3 VALUES(7761, 85707, 'eighty-five thousand seven hundred seven'); INSERT INTO t3 VALUES(7762, 54960, 'fifty-four thousand nine hundred sixty'); INSERT INTO t3 VALUES(7763, 97175, 'ninety-seven thousand one hundred seventy-five'); INSERT INTO t3 VALUES(7764, 37918, 'thirty-seven thousand nine hundred eighteen'); INSERT INTO t3 VALUES(7765, 73860, 'seventy-three thousand eight hundred sixty'); INSERT INTO t3 VALUES(7766, 31892, 'thirty-one thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(7767, 41566, 'forty-one thousand five hundred sixty-six'); INSERT INTO t3 VALUES(7768, 82413, 'eighty-two thousand four hundred thirteen'); INSERT INTO t3 VALUES(7769, 59479, 'fifty-nine thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(7770, 64370, 'sixty-four thousand three hundred seventy'); INSERT INTO t3 VALUES(7771, 4669, 'four thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(7772, 14769, 'fourteen thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(7773, 53780, 'fifty-three thousand seven hundred eighty'); INSERT INTO t3 VALUES(7774, 62838, 'sixty-two thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(7775, 34292, 'thirty-four thousand two hundred ninety-two'); INSERT INTO t3 VALUES(7776, 3466, 'three thousand four hundred sixty-six'); INSERT INTO t3 VALUES(7777, 76865, 'seventy-six thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(7778, 17160, 'seventeen thousand one hundred sixty'); INSERT INTO t3 VALUES(7779, 401, 'four hundred one'); INSERT INTO t3 VALUES(7780, 17164, 'seventeen thousand one hundred sixty-four'); INSERT INTO t3 VALUES(7781, 75688, 'seventy-five thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(7782, 11361, 'eleven thousand three hundred sixty-one'); INSERT INTO t3 VALUES(7783, 37011, 'thirty-seven thousand eleven'); INSERT INTO t3 VALUES(7784, 1004, 'one thousand four'); INSERT INTO t3 VALUES(7785, 59597, 'fifty-nine thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(7786, 95316, 'ninety-five thousand three hundred sixteen'); INSERT INTO t3 VALUES(7787, 98556, 'ninety-eight thousand five hundred fifty-six'); INSERT INTO t3 VALUES(7788, 21101, 'twenty-one thousand one hundred one'); INSERT INTO t3 VALUES(7789, 61503, 'sixty-one thousand five hundred three'); INSERT INTO t3 VALUES(7790, 18958, 'eighteen thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(7791, 16053, 'sixteen thousand fifty-three'); INSERT INTO t3 VALUES(7792, 34345, 'thirty-four thousand three hundred forty-five'); INSERT INTO t3 VALUES(7793, 71286, 'seventy-one thousand two hundred eighty-six'); INSERT INTO t3 VALUES(7794, 55079, 'fifty-five thousand seventy-nine'); INSERT INTO t3 VALUES(7795, 84709, 'eighty-four thousand seven hundred nine'); INSERT INTO t3 VALUES(7796, 6401, 'six thousand four hundred one'); INSERT INTO t3 VALUES(7797, 49916, 'forty-nine thousand nine hundred sixteen'); INSERT INTO t3 VALUES(7798, 16557, 'sixteen thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(7799, 53884, 'fifty-three thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(7800, 49497, 'forty-nine thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(7801, 35399, 'thirty-five thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(7802, 32014, 'thirty-two thousand fourteen'); INSERT INTO t3 VALUES(7803, 80150, 'eighty thousand one hundred fifty'); INSERT INTO t3 VALUES(7804, 76209, 'seventy-six thousand two hundred nine'); INSERT INTO t3 VALUES(7805, 27119, 'twenty-seven thousand one hundred nineteen'); INSERT INTO t3 VALUES(7806, 1436, 'one thousand four hundred thirty-six'); INSERT INTO t3 VALUES(7807, 28443, 'twenty-eight thousand four hundred forty-three'); INSERT INTO t3 VALUES(7808, 5128, 'five thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(7809, 42019, 'forty-two thousand nineteen'); INSERT INTO t3 VALUES(7810, 67110, 'sixty-seven thousand one hundred ten'); INSERT INTO t3 VALUES(7811, 72176, 'seventy-two thousand one hundred seventy-six'); INSERT INTO t3 VALUES(7812, 85266, 'eighty-five thousand two hundred sixty-six'); INSERT INTO t3 VALUES(7813, 57660, 'fifty-seven thousand six hundred sixty'); INSERT INTO t3 VALUES(7814, 12268, 'twelve thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(7815, 49656, 'forty-nine thousand six hundred fifty-six'); INSERT INTO t3 VALUES(7816, 16759, 'sixteen thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(7817, 58515, 'fifty-eight thousand five hundred fifteen'); INSERT INTO t3 VALUES(7818, 71716, 'seventy-one thousand seven hundred sixteen'); INSERT INTO t3 VALUES(7819, 3380, 'three thousand three hundred eighty'); INSERT INTO t3 VALUES(7820, 41427, 'forty-one thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(7821, 45370, 'forty-five thousand three hundred seventy'); INSERT INTO t3 VALUES(7822, 71901, 'seventy-one thousand nine hundred one'); INSERT INTO t3 VALUES(7823, 65301, 'sixty-five thousand three hundred one'); INSERT INTO t3 VALUES(7824, 2670, 'two thousand six hundred seventy'); INSERT INTO t3 VALUES(7825, 19172, 'nineteen thousand one hundred seventy-two'); INSERT INTO t3 VALUES(7826, 68339, 'sixty-eight thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(7827, 16225, 'sixteen thousand two hundred twenty-five'); INSERT INTO t3 VALUES(7828, 18858, 'eighteen thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(7829, 88999, 'eighty-eight thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(7830, 51327, 'fifty-one thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(7831, 48742, 'forty-eight thousand seven hundred forty-two'); INSERT INTO t3 VALUES(7832, 23314, 'twenty-three thousand three hundred fourteen'); INSERT INTO t3 VALUES(7833, 91632, 'ninety-one thousand six hundred thirty-two'); INSERT INTO t3 VALUES(7834, 64090, 'sixty-four thousand ninety'); INSERT INTO t3 VALUES(7835, 35586, 'thirty-five thousand five hundred eighty-six'); INSERT INTO t3 VALUES(7836, 68515, 'sixty-eight thousand five hundred fifteen'); INSERT INTO t3 VALUES(7837, 29135, 'twenty-nine thousand one hundred thirty-five'); INSERT INTO t3 VALUES(7838, 82777, 'eighty-two thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(7839, 11929, 'eleven thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(7840, 90970, 'ninety thousand nine hundred seventy'); INSERT INTO t3 VALUES(7841, 28168, 'twenty-eight thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(7842, 33405, 'thirty-three thousand four hundred five'); INSERT INTO t3 VALUES(7843, 39836, 'thirty-nine thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(7844, 95084, 'ninety-five thousand eighty-four'); INSERT INTO t3 VALUES(7845, 69434, 'sixty-nine thousand four hundred thirty-four'); INSERT INTO t3 VALUES(7846, 9721, 'nine thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(7847, 95295, 'ninety-five thousand two hundred ninety-five'); INSERT INTO t3 VALUES(7848, 67347, 'sixty-seven thousand three hundred forty-seven'); INSERT INTO t3 VALUES(7849, 98004, 'ninety-eight thousand four'); INSERT INTO t3 VALUES(7850, 68255, 'sixty-eight thousand two hundred fifty-five'); INSERT INTO t3 VALUES(7851, 27363, 'twenty-seven thousand three hundred sixty-three'); INSERT INTO t3 VALUES(7852, 57905, 'fifty-seven thousand nine hundred five'); INSERT INTO t3 VALUES(7853, 24252, 'twenty-four thousand two hundred fifty-two'); INSERT INTO t3 VALUES(7854, 67704, 'sixty-seven thousand seven hundred four'); INSERT INTO t3 VALUES(7855, 21725, 'twenty-one thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(7856, 91845, 'ninety-one thousand eight hundred forty-five'); INSERT INTO t3 VALUES(7857, 1314, 'one thousand three hundred fourteen'); INSERT INTO t3 VALUES(7858, 9917, 'nine thousand nine hundred seventeen'); INSERT INTO t3 VALUES(7859, 75048, 'seventy-five thousand forty-eight'); INSERT INTO t3 VALUES(7860, 85623, 'eighty-five thousand six hundred twenty-three'); INSERT INTO t3 VALUES(7861, 71987, 'seventy-one thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(7862, 24285, 'twenty-four thousand two hundred eighty-five'); INSERT INTO t3 VALUES(7863, 58454, 'fifty-eight thousand four hundred fifty-four'); INSERT INTO t3 VALUES(7864, 42786, 'forty-two thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(7865, 79234, 'seventy-nine thousand two hundred thirty-four'); INSERT INTO t3 VALUES(7866, 99516, 'ninety-nine thousand five hundred sixteen'); INSERT INTO t3 VALUES(7867, 64444, 'sixty-four thousand four hundred forty-four'); INSERT INTO t3 VALUES(7868, 7352, 'seven thousand three hundred fifty-two'); INSERT INTO t3 VALUES(7869, 63602, 'sixty-three thousand six hundred two'); INSERT INTO t3 VALUES(7870, 9958, 'nine thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(7871, 71753, 'seventy-one thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(7872, 86691, 'eighty-six thousand six hundred ninety-one'); INSERT INTO t3 VALUES(7873, 47792, 'forty-seven thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(7874, 33791, 'thirty-three thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(7875, 51444, 'fifty-one thousand four hundred forty-four'); INSERT INTO t3 VALUES(7876, 11292, 'eleven thousand two hundred ninety-two'); INSERT INTO t3 VALUES(7877, 78248, 'seventy-eight thousand two hundred forty-eight'); INSERT INTO t3 VALUES(7878, 75482, 'seventy-five thousand four hundred eighty-two'); INSERT INTO t3 VALUES(7879, 20041, 'twenty thousand forty-one'); INSERT INTO t3 VALUES(7880, 98709, 'ninety-eight thousand seven hundred nine'); INSERT INTO t3 VALUES(7881, 83684, 'eighty-three thousand six hundred eighty-four'); INSERT INTO t3 VALUES(7882, 25884, 'twenty-five thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(7883, 4485, 'four thousand four hundred eighty-five'); INSERT INTO t3 VALUES(7884, 58970, 'fifty-eight thousand nine hundred seventy'); INSERT INTO t3 VALUES(7885, 56064, 'fifty-six thousand sixty-four'); INSERT INTO t3 VALUES(7886, 37825, 'thirty-seven thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(7887, 60151, 'sixty thousand one hundred fifty-one'); INSERT INTO t3 VALUES(7888, 24460, 'twenty-four thousand four hundred sixty'); INSERT INTO t3 VALUES(7889, 91714, 'ninety-one thousand seven hundred fourteen'); INSERT INTO t3 VALUES(7890, 8689, 'eight thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(7891, 86106, 'eighty-six thousand one hundred six'); INSERT INTO t3 VALUES(7892, 67108, 'sixty-seven thousand one hundred eight'); INSERT INTO t3 VALUES(7893, 2998, 'two thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(7894, 19490, 'nineteen thousand four hundred ninety'); INSERT INTO t3 VALUES(7895, 94871, 'ninety-four thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(7896, 71871, 'seventy-one thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(7897, 59040, 'fifty-nine thousand forty'); INSERT INTO t3 VALUES(7898, 30046, 'thirty thousand forty-six'); INSERT INTO t3 VALUES(7899, 33383, 'thirty-three thousand three hundred eighty-three'); INSERT INTO t3 VALUES(7900, 90123, 'ninety thousand one hundred twenty-three'); INSERT INTO t3 VALUES(7901, 59580, 'fifty-nine thousand five hundred eighty'); INSERT INTO t3 VALUES(7902, 37492, 'thirty-seven thousand four hundred ninety-two'); INSERT INTO t3 VALUES(7903, 46958, 'forty-six thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(7904, 36796, 'thirty-six thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(7905, 52956, 'fifty-two thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(7906, 50908, 'fifty thousand nine hundred eight'); INSERT INTO t3 VALUES(7907, 91976, 'ninety-one thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(7908, 22398, 'twenty-two thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(7909, 24275, 'twenty-four thousand two hundred seventy-five'); INSERT INTO t3 VALUES(7910, 74154, 'seventy-four thousand one hundred fifty-four'); INSERT INTO t3 VALUES(7911, 34601, 'thirty-four thousand six hundred one'); INSERT INTO t3 VALUES(7912, 66135, 'sixty-six thousand one hundred thirty-five'); INSERT INTO t3 VALUES(7913, 16419, 'sixteen thousand four hundred nineteen'); INSERT INTO t3 VALUES(7914, 78589, 'seventy-eight thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(7915, 15470, 'fifteen thousand four hundred seventy'); INSERT INTO t3 VALUES(7916, 95304, 'ninety-five thousand three hundred four'); INSERT INTO t3 VALUES(7917, 86871, 'eighty-six thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(7918, 12575, 'twelve thousand five hundred seventy-five'); INSERT INTO t3 VALUES(7919, 43291, 'forty-three thousand two hundred ninety-one'); INSERT INTO t3 VALUES(7920, 15152, 'fifteen thousand one hundred fifty-two'); INSERT INTO t3 VALUES(7921, 56256, 'fifty-six thousand two hundred fifty-six'); INSERT INTO t3 VALUES(7922, 57666, 'fifty-seven thousand six hundred sixty-six'); INSERT INTO t3 VALUES(7923, 44178, 'forty-four thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(7924, 4593, 'four thousand five hundred ninety-three'); INSERT INTO t3 VALUES(7925, 19782, 'nineteen thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(7926, 40497, 'forty thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(7927, 98209, 'ninety-eight thousand two hundred nine'); INSERT INTO t3 VALUES(7928, 69063, 'sixty-nine thousand sixty-three'); INSERT INTO t3 VALUES(7929, 59555, 'fifty-nine thousand five hundred fifty-five'); INSERT INTO t3 VALUES(7930, 30160, 'thirty thousand one hundred sixty'); INSERT INTO t3 VALUES(7931, 50693, 'fifty thousand six hundred ninety-three'); INSERT INTO t3 VALUES(7932, 51358, 'fifty-one thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(7933, 79522, 'seventy-nine thousand five hundred twenty-two'); INSERT INTO t3 VALUES(7934, 99189, 'ninety-nine thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(7935, 58707, 'fifty-eight thousand seven hundred seven'); INSERT INTO t3 VALUES(7936, 50317, 'fifty thousand three hundred seventeen'); INSERT INTO t3 VALUES(7937, 78319, 'seventy-eight thousand three hundred nineteen'); INSERT INTO t3 VALUES(7938, 94596, 'ninety-four thousand five hundred ninety-six'); INSERT INTO t3 VALUES(7939, 77718, 'seventy-seven thousand seven hundred eighteen'); INSERT INTO t3 VALUES(7940, 92647, 'ninety-two thousand six hundred forty-seven'); INSERT INTO t3 VALUES(7941, 53345, 'fifty-three thousand three hundred forty-five'); INSERT INTO t3 VALUES(7942, 69238, 'sixty-nine thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(7943, 37157, 'thirty-seven thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(7944, 23715, 'twenty-three thousand seven hundred fifteen'); INSERT INTO t3 VALUES(7945, 38810, 'thirty-eight thousand eight hundred ten'); INSERT INTO t3 VALUES(7946, 8941, 'eight thousand nine hundred forty-one'); INSERT INTO t3 VALUES(7947, 46752, 'forty-six thousand seven hundred fifty-two'); INSERT INTO t3 VALUES(7948, 25448, 'twenty-five thousand four hundred forty-eight'); INSERT INTO t3 VALUES(7949, 22886, 'twenty-two thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(7950, 57989, 'fifty-seven thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(7951, 92414, 'ninety-two thousand four hundred fourteen'); INSERT INTO t3 VALUES(7952, 12194, 'twelve thousand one hundred ninety-four'); INSERT INTO t3 VALUES(7953, 97932, 'ninety-seven thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(7954, 61142, 'sixty-one thousand one hundred forty-two'); INSERT INTO t3 VALUES(7955, 84938, 'eighty-four thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(7956, 15406, 'fifteen thousand four hundred six'); INSERT INTO t3 VALUES(7957, 71546, 'seventy-one thousand five hundred forty-six'); INSERT INTO t3 VALUES(7958, 41813, 'forty-one thousand eight hundred thirteen'); INSERT INTO t3 VALUES(7959, 21609, 'twenty-one thousand six hundred nine'); INSERT INTO t3 VALUES(7960, 19274, 'nineteen thousand two hundred seventy-four'); INSERT INTO t3 VALUES(7961, 21582, 'twenty-one thousand five hundred eighty-two'); INSERT INTO t3 VALUES(7962, 22003, 'twenty-two thousand three'); INSERT INTO t3 VALUES(7963, 49892, 'forty-nine thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(7964, 57352, 'fifty-seven thousand three hundred fifty-two'); INSERT INTO t3 VALUES(7965, 43051, 'forty-three thousand fifty-one'); INSERT INTO t3 VALUES(7966, 91397, 'ninety-one thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(7967, 85229, 'eighty-five thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(7968, 39150, 'thirty-nine thousand one hundred fifty'); INSERT INTO t3 VALUES(7969, 35499, 'thirty-five thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(7970, 72590, 'seventy-two thousand five hundred ninety'); INSERT INTO t3 VALUES(7971, 20282, 'twenty thousand two hundred eighty-two'); INSERT INTO t3 VALUES(7972, 27358, 'twenty-seven thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(7973, 27479, 'twenty-seven thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(7974, 65659, 'sixty-five thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(7975, 18603, 'eighteen thousand six hundred three'); INSERT INTO t3 VALUES(7976, 33109, 'thirty-three thousand one hundred nine'); INSERT INTO t3 VALUES(7977, 18538, 'eighteen thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(7978, 5783, 'five thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(7979, 69921, 'sixty-nine thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(7980, 33659, 'thirty-three thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(7981, 24916, 'twenty-four thousand nine hundred sixteen'); INSERT INTO t3 VALUES(7982, 56172, 'fifty-six thousand one hundred seventy-two'); INSERT INTO t3 VALUES(7983, 2643, 'two thousand six hundred forty-three'); INSERT INTO t3 VALUES(7984, 40158, 'forty thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(7985, 85074, 'eighty-five thousand seventy-four'); INSERT INTO t3 VALUES(7986, 70835, 'seventy thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(7987, 99934, 'ninety-nine thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(7988, 57245, 'fifty-seven thousand two hundred forty-five'); INSERT INTO t3 VALUES(7989, 18632, 'eighteen thousand six hundred thirty-two'); INSERT INTO t3 VALUES(7990, 39069, 'thirty-nine thousand sixty-nine'); INSERT INTO t3 VALUES(7991, 1110, 'one thousand one hundred ten'); INSERT INTO t3 VALUES(7992, 2711, 'two thousand seven hundred eleven'); INSERT INTO t3 VALUES(7993, 67841, 'sixty-seven thousand eight hundred forty-one'); INSERT INTO t3 VALUES(7994, 60824, 'sixty thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(7995, 85780, 'eighty-five thousand seven hundred eighty'); INSERT INTO t3 VALUES(7996, 60914, 'sixty thousand nine hundred fourteen'); INSERT INTO t3 VALUES(7997, 52986, 'fifty-two thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(7998, 33458, 'thirty-three thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(7999, 2844, 'two thousand eight hundred forty-four'); INSERT INTO t3 VALUES(8000, 25070, 'twenty-five thousand seventy'); INSERT INTO t3 VALUES(8001, 8928, 'eight thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(8002, 66324, 'sixty-six thousand three hundred twenty-four'); INSERT INTO t3 VALUES(8003, 53873, 'fifty-three thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(8004, 42018, 'forty-two thousand eighteen'); INSERT INTO t3 VALUES(8005, 3208, 'three thousand two hundred eight'); INSERT INTO t3 VALUES(8006, 43547, 'forty-three thousand five hundred forty-seven'); INSERT INTO t3 VALUES(8007, 22134, 'twenty-two thousand one hundred thirty-four'); INSERT INTO t3 VALUES(8008, 77906, 'seventy-seven thousand nine hundred six'); INSERT INTO t3 VALUES(8009, 61053, 'sixty-one thousand fifty-three'); INSERT INTO t3 VALUES(8010, 78344, 'seventy-eight thousand three hundred forty-four'); INSERT INTO t3 VALUES(8011, 70308, 'seventy thousand three hundred eight'); INSERT INTO t3 VALUES(8012, 16823, 'sixteen thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(8013, 27022, 'twenty-seven thousand twenty-two'); INSERT INTO t3 VALUES(8014, 64371, 'sixty-four thousand three hundred seventy-one'); INSERT INTO t3 VALUES(8015, 38814, 'thirty-eight thousand eight hundred fourteen'); INSERT INTO t3 VALUES(8016, 85065, 'eighty-five thousand sixty-five'); INSERT INTO t3 VALUES(8017, 34790, 'thirty-four thousand seven hundred ninety'); INSERT INTO t3 VALUES(8018, 37346, 'thirty-seven thousand three hundred forty-six'); INSERT INTO t3 VALUES(8019, 30352, 'thirty thousand three hundred fifty-two'); INSERT INTO t3 VALUES(8020, 32487, 'thirty-two thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(8021, 75987, 'seventy-five thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(8022, 11705, 'eleven thousand seven hundred five'); INSERT INTO t3 VALUES(8023, 12606, 'twelve thousand six hundred six'); INSERT INTO t3 VALUES(8024, 74122, 'seventy-four thousand one hundred twenty-two'); INSERT INTO t3 VALUES(8025, 34554, 'thirty-four thousand five hundred fifty-four'); INSERT INTO t3 VALUES(8026, 66, 'sixty-six'); INSERT INTO t3 VALUES(8027, 63000, 'sixty-three thousand'); INSERT INTO t3 VALUES(8028, 59204, 'fifty-nine thousand two hundred four'); INSERT INTO t3 VALUES(8029, 46175, 'forty-six thousand one hundred seventy-five'); INSERT INTO t3 VALUES(8030, 57222, 'fifty-seven thousand two hundred twenty-two'); INSERT INTO t3 VALUES(8031, 65923, 'sixty-five thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(8032, 45749, 'forty-five thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(8033, 90379, 'ninety thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(8034, 50801, 'fifty thousand eight hundred one'); INSERT INTO t3 VALUES(8035, 50274, 'fifty thousand two hundred seventy-four'); INSERT INTO t3 VALUES(8036, 31845, 'thirty-one thousand eight hundred forty-five'); INSERT INTO t3 VALUES(8037, 60255, 'sixty thousand two hundred fifty-five'); INSERT INTO t3 VALUES(8038, 46856, 'forty-six thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(8039, 78744, 'seventy-eight thousand seven hundred forty-four'); INSERT INTO t3 VALUES(8040, 26629, 'twenty-six thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(8041, 2948, 'two thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(8042, 49812, 'forty-nine thousand eight hundred twelve'); INSERT INTO t3 VALUES(8043, 24675, 'twenty-four thousand six hundred seventy-five'); INSERT INTO t3 VALUES(8044, 82955, 'eighty-two thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(8045, 13014, 'thirteen thousand fourteen'); INSERT INTO t3 VALUES(8046, 72677, 'seventy-two thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(8047, 7789, 'seven thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(8048, 745, 'seven hundred forty-five'); INSERT INTO t3 VALUES(8049, 23420, 'twenty-three thousand four hundred twenty'); INSERT INTO t3 VALUES(8050, 19677, 'nineteen thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(8051, 33494, 'thirty-three thousand four hundred ninety-four'); INSERT INTO t3 VALUES(8052, 58613, 'fifty-eight thousand six hundred thirteen'); INSERT INTO t3 VALUES(8053, 16831, 'sixteen thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(8054, 33938, 'thirty-three thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(8055, 44808, 'forty-four thousand eight hundred eight'); INSERT INTO t3 VALUES(8056, 83042, 'eighty-three thousand forty-two'); INSERT INTO t3 VALUES(8057, 69593, 'sixty-nine thousand five hundred ninety-three'); INSERT INTO t3 VALUES(8058, 43322, 'forty-three thousand three hundred twenty-two'); INSERT INTO t3 VALUES(8059, 14947, 'fourteen thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(8060, 73891, 'seventy-three thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(8061, 5146, 'five thousand one hundred forty-six'); INSERT INTO t3 VALUES(8062, 97232, 'ninety-seven thousand two hundred thirty-two'); INSERT INTO t3 VALUES(8063, 71076, 'seventy-one thousand seventy-six'); INSERT INTO t3 VALUES(8064, 48429, 'forty-eight thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(8065, 50647, 'fifty thousand six hundred forty-seven'); INSERT INTO t3 VALUES(8066, 42078, 'forty-two thousand seventy-eight'); INSERT INTO t3 VALUES(8067, 98266, 'ninety-eight thousand two hundred sixty-six'); INSERT INTO t3 VALUES(8068, 90976, 'ninety thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(8069, 3942, 'three thousand nine hundred forty-two'); INSERT INTO t3 VALUES(8070, 14231, 'fourteen thousand two hundred thirty-one'); INSERT INTO t3 VALUES(8071, 43755, 'forty-three thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(8072, 19136, 'nineteen thousand one hundred thirty-six'); INSERT INTO t3 VALUES(8073, 87900, 'eighty-seven thousand nine hundred'); INSERT INTO t3 VALUES(8074, 12572, 'twelve thousand five hundred seventy-two'); INSERT INTO t3 VALUES(8075, 65299, 'sixty-five thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(8076, 86149, 'eighty-six thousand one hundred forty-nine'); INSERT INTO t3 VALUES(8077, 70547, 'seventy thousand five hundred forty-seven'); INSERT INTO t3 VALUES(8078, 70255, 'seventy thousand two hundred fifty-five'); INSERT INTO t3 VALUES(8079, 53491, 'fifty-three thousand four hundred ninety-one'); INSERT INTO t3 VALUES(8080, 84856, 'eighty-four thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(8081, 64583, 'sixty-four thousand five hundred eighty-three'); INSERT INTO t3 VALUES(8082, 15853, 'fifteen thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(8083, 68244, 'sixty-eight thousand two hundred forty-four'); INSERT INTO t3 VALUES(8084, 94505, 'ninety-four thousand five hundred five'); INSERT INTO t3 VALUES(8085, 63942, 'sixty-three thousand nine hundred forty-two'); INSERT INTO t3 VALUES(8086, 12813, 'twelve thousand eight hundred thirteen'); INSERT INTO t3 VALUES(8087, 74644, 'seventy-four thousand six hundred forty-four'); INSERT INTO t3 VALUES(8088, 5559, 'five thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(8089, 75874, 'seventy-five thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(8090, 73084, 'seventy-three thousand eighty-four'); INSERT INTO t3 VALUES(8091, 94530, 'ninety-four thousand five hundred thirty'); INSERT INTO t3 VALUES(8092, 73051, 'seventy-three thousand fifty-one'); INSERT INTO t3 VALUES(8093, 67429, 'sixty-seven thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(8094, 90987, 'ninety thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(8095, 69402, 'sixty-nine thousand four hundred two'); INSERT INTO t3 VALUES(8096, 46649, 'forty-six thousand six hundred forty-nine'); INSERT INTO t3 VALUES(8097, 83657, 'eighty-three thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(8098, 51060, 'fifty-one thousand sixty'); INSERT INTO t3 VALUES(8099, 5454, 'five thousand four hundred fifty-four'); INSERT INTO t3 VALUES(8100, 80481, 'eighty thousand four hundred eighty-one'); INSERT INTO t3 VALUES(8101, 72941, 'seventy-two thousand nine hundred forty-one'); INSERT INTO t3 VALUES(8102, 59662, 'fifty-nine thousand six hundred sixty-two'); INSERT INTO t3 VALUES(8103, 94896, 'ninety-four thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(8104, 43533, 'forty-three thousand five hundred thirty-three'); INSERT INTO t3 VALUES(8105, 44784, 'forty-four thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(8106, 34969, 'thirty-four thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(8107, 85870, 'eighty-five thousand eight hundred seventy'); INSERT INTO t3 VALUES(8108, 39439, 'thirty-nine thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(8109, 69082, 'sixty-nine thousand eighty-two'); INSERT INTO t3 VALUES(8110, 87282, 'eighty-seven thousand two hundred eighty-two'); INSERT INTO t3 VALUES(8111, 92034, 'ninety-two thousand thirty-four'); INSERT INTO t3 VALUES(8112, 51510, 'fifty-one thousand five hundred ten'); INSERT INTO t3 VALUES(8113, 88207, 'eighty-eight thousand two hundred seven'); INSERT INTO t3 VALUES(8114, 43004, 'forty-three thousand four'); INSERT INTO t3 VALUES(8115, 97505, 'ninety-seven thousand five hundred five'); INSERT INTO t3 VALUES(8116, 95511, 'ninety-five thousand five hundred eleven'); INSERT INTO t3 VALUES(8117, 56740, 'fifty-six thousand seven hundred forty'); INSERT INTO t3 VALUES(8118, 55445, 'fifty-five thousand four hundred forty-five'); INSERT INTO t3 VALUES(8119, 54452, 'fifty-four thousand four hundred fifty-two'); INSERT INTO t3 VALUES(8120, 12929, 'twelve thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(8121, 14668, 'fourteen thousand six hundred sixty-eight'); INSERT INTO t3 VALUES(8122, 98628, 'ninety-eight thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(8123, 51968, 'fifty-one thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(8124, 77764, 'seventy-seven thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(8125, 20181, 'twenty thousand one hundred eighty-one'); INSERT INTO t3 VALUES(8126, 69051, 'sixty-nine thousand fifty-one'); INSERT INTO t3 VALUES(8127, 70075, 'seventy thousand seventy-five'); INSERT INTO t3 VALUES(8128, 31563, 'thirty-one thousand five hundred sixty-three'); INSERT INTO t3 VALUES(8129, 7790, 'seven thousand seven hundred ninety'); INSERT INTO t3 VALUES(8130, 1957, 'one thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(8131, 84808, 'eighty-four thousand eight hundred eight'); INSERT INTO t3 VALUES(8132, 4292, 'four thousand two hundred ninety-two'); INSERT INTO t3 VALUES(8133, 44569, 'forty-four thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(8134, 47193, 'forty-seven thousand one hundred ninety-three'); INSERT INTO t3 VALUES(8135, 36028, 'thirty-six thousand twenty-eight'); INSERT INTO t3 VALUES(8136, 15304, 'fifteen thousand three hundred four'); INSERT INTO t3 VALUES(8137, 67755, 'sixty-seven thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(8138, 89332, 'eighty-nine thousand three hundred thirty-two'); INSERT INTO t3 VALUES(8139, 64504, 'sixty-four thousand five hundred four'); INSERT INTO t3 VALUES(8140, 7286, 'seven thousand two hundred eighty-six'); INSERT INTO t3 VALUES(8141, 32677, 'thirty-two thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(8142, 41147, 'forty-one thousand one hundred forty-seven'); INSERT INTO t3 VALUES(8143, 39377, 'thirty-nine thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(8144, 7483, 'seven thousand four hundred eighty-three'); INSERT INTO t3 VALUES(8145, 96098, 'ninety-six thousand ninety-eight'); INSERT INTO t3 VALUES(8146, 83280, 'eighty-three thousand two hundred eighty'); INSERT INTO t3 VALUES(8147, 54576, 'fifty-four thousand five hundred seventy-six'); INSERT INTO t3 VALUES(8148, 29133, 'twenty-nine thousand one hundred thirty-three'); INSERT INTO t3 VALUES(8149, 99857, 'ninety-nine thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(8150, 43188, 'forty-three thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(8151, 85086, 'eighty-five thousand eighty-six'); INSERT INTO t3 VALUES(8152, 68935, 'sixty-eight thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(8153, 53435, 'fifty-three thousand four hundred thirty-five'); INSERT INTO t3 VALUES(8154, 79809, 'seventy-nine thousand eight hundred nine'); INSERT INTO t3 VALUES(8155, 6183, 'six thousand one hundred eighty-three'); INSERT INTO t3 VALUES(8156, 6566, 'six thousand five hundred sixty-six'); INSERT INTO t3 VALUES(8157, 54440, 'fifty-four thousand four hundred forty'); INSERT INTO t3 VALUES(8158, 23358, 'twenty-three thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(8159, 58084, 'fifty-eight thousand eighty-four'); INSERT INTO t3 VALUES(8160, 84325, 'eighty-four thousand three hundred twenty-five'); INSERT INTO t3 VALUES(8161, 99143, 'ninety-nine thousand one hundred forty-three'); INSERT INTO t3 VALUES(8162, 80258, 'eighty thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(8163, 66455, 'sixty-six thousand four hundred fifty-five'); INSERT INTO t3 VALUES(8164, 92738, 'ninety-two thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(8165, 87998, 'eighty-seven thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(8166, 53623, 'fifty-three thousand six hundred twenty-three'); INSERT INTO t3 VALUES(8167, 96117, 'ninety-six thousand one hundred seventeen'); INSERT INTO t3 VALUES(8168, 37290, 'thirty-seven thousand two hundred ninety'); INSERT INTO t3 VALUES(8169, 24322, 'twenty-four thousand three hundred twenty-two'); INSERT INTO t3 VALUES(8170, 73911, 'seventy-three thousand nine hundred eleven'); INSERT INTO t3 VALUES(8171, 12578, 'twelve thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(8172, 21959, 'twenty-one thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(8173, 25342, 'twenty-five thousand three hundred forty-two'); INSERT INTO t3 VALUES(8174, 21320, 'twenty-one thousand three hundred twenty'); INSERT INTO t3 VALUES(8175, 71598, 'seventy-one thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(8176, 70198, 'seventy thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(8177, 14674, 'fourteen thousand six hundred seventy-four'); INSERT INTO t3 VALUES(8178, 6437, 'six thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(8179, 2993, 'two thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(8180, 85920, 'eighty-five thousand nine hundred twenty'); INSERT INTO t3 VALUES(8181, 3411, 'three thousand four hundred eleven'); INSERT INTO t3 VALUES(8182, 95554, 'ninety-five thousand five hundred fifty-four'); INSERT INTO t3 VALUES(8183, 5261, 'five thousand two hundred sixty-one'); INSERT INTO t3 VALUES(8184, 78776, 'seventy-eight thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(8185, 85782, 'eighty-five thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(8186, 44491, 'forty-four thousand four hundred ninety-one'); INSERT INTO t3 VALUES(8187, 21749, 'twenty-one thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(8188, 91535, 'ninety-one thousand five hundred thirty-five'); INSERT INTO t3 VALUES(8189, 32517, 'thirty-two thousand five hundred seventeen'); INSERT INTO t3 VALUES(8190, 91762, 'ninety-one thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(8191, 3283, 'three thousand two hundred eighty-three'); INSERT INTO t3 VALUES(8192, 68033, 'sixty-eight thousand thirty-three'); INSERT INTO t3 VALUES(8193, 64778, 'sixty-four thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(8194, 51967, 'fifty-one thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(8195, 9192, 'nine thousand one hundred ninety-two'); INSERT INTO t3 VALUES(8196, 21752, 'twenty-one thousand seven hundred fifty-two'); INSERT INTO t3 VALUES(8197, 46847, 'forty-six thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(8198, 42572, 'forty-two thousand five hundred seventy-two'); INSERT INTO t3 VALUES(8199, 11026, 'eleven thousand twenty-six'); INSERT INTO t3 VALUES(8200, 35955, 'thirty-five thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(8201, 889, 'eight hundred eighty-nine'); INSERT INTO t3 VALUES(8202, 82958, 'eighty-two thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(8203, 26821, 'twenty-six thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(8204, 20434, 'twenty thousand four hundred thirty-four'); INSERT INTO t3 VALUES(8205, 62281, 'sixty-two thousand two hundred eighty-one'); INSERT INTO t3 VALUES(8206, 83577, 'eighty-three thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(8207, 27138, 'twenty-seven thousand one hundred thirty-eight'); INSERT INTO t3 VALUES(8208, 76683, 'seventy-six thousand six hundred eighty-three'); INSERT INTO t3 VALUES(8209, 51137, 'fifty-one thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(8210, 72581, 'seventy-two thousand five hundred eighty-one'); INSERT INTO t3 VALUES(8211, 62964, 'sixty-two thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(8212, 62490, 'sixty-two thousand four hundred ninety'); INSERT INTO t3 VALUES(8213, 44681, 'forty-four thousand six hundred eighty-one'); INSERT INTO t3 VALUES(8214, 77074, 'seventy-seven thousand seventy-four'); INSERT INTO t3 VALUES(8215, 83710, 'eighty-three thousand seven hundred ten'); INSERT INTO t3 VALUES(8216, 60067, 'sixty thousand sixty-seven'); INSERT INTO t3 VALUES(8217, 49962, 'forty-nine thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(8218, 61116, 'sixty-one thousand one hundred sixteen'); INSERT INTO t3 VALUES(8219, 20499, 'twenty thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(8220, 16566, 'sixteen thousand five hundred sixty-six'); INSERT INTO t3 VALUES(8221, 4896, 'four thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(8222, 99790, 'ninety-nine thousand seven hundred ninety'); INSERT INTO t3 VALUES(8223, 76178, 'seventy-six thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(8224, 94185, 'ninety-four thousand one hundred eighty-five'); INSERT INTO t3 VALUES(8225, 40965, 'forty thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(8226, 77461, 'seventy-seven thousand four hundred sixty-one'); INSERT INTO t3 VALUES(8227, 58507, 'fifty-eight thousand five hundred seven'); INSERT INTO t3 VALUES(8228, 28533, 'twenty-eight thousand five hundred thirty-three'); INSERT INTO t3 VALUES(8229, 97940, 'ninety-seven thousand nine hundred forty'); INSERT INTO t3 VALUES(8230, 9378, 'nine thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(8231, 22730, 'twenty-two thousand seven hundred thirty'); INSERT INTO t3 VALUES(8232, 41840, 'forty-one thousand eight hundred forty'); INSERT INTO t3 VALUES(8233, 96246, 'ninety-six thousand two hundred forty-six'); INSERT INTO t3 VALUES(8234, 89165, 'eighty-nine thousand one hundred sixty-five'); INSERT INTO t3 VALUES(8235, 34253, 'thirty-four thousand two hundred fifty-three'); INSERT INTO t3 VALUES(8236, 16670, 'sixteen thousand six hundred seventy'); INSERT INTO t3 VALUES(8237, 7604, 'seven thousand six hundred four'); INSERT INTO t3 VALUES(8238, 17221, 'seventeen thousand two hundred twenty-one'); INSERT INTO t3 VALUES(8239, 4489, 'four thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(8240, 6714, 'six thousand seven hundred fourteen'); INSERT INTO t3 VALUES(8241, 41924, 'forty-one thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(8242, 62639, 'sixty-two thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(8243, 26024, 'twenty-six thousand twenty-four'); INSERT INTO t3 VALUES(8244, 79183, 'seventy-nine thousand one hundred eighty-three'); INSERT INTO t3 VALUES(8245, 74813, 'seventy-four thousand eight hundred thirteen'); INSERT INTO t3 VALUES(8246, 27014, 'twenty-seven thousand fourteen'); INSERT INTO t3 VALUES(8247, 19087, 'nineteen thousand eighty-seven'); INSERT INTO t3 VALUES(8248, 12466, 'twelve thousand four hundred sixty-six'); INSERT INTO t3 VALUES(8249, 99145, 'ninety-nine thousand one hundred forty-five'); INSERT INTO t3 VALUES(8250, 44735, 'forty-four thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(8251, 62032, 'sixty-two thousand thirty-two'); INSERT INTO t3 VALUES(8252, 77552, 'seventy-seven thousand five hundred fifty-two'); INSERT INTO t3 VALUES(8253, 99639, 'ninety-nine thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(8254, 54249, 'fifty-four thousand two hundred forty-nine'); INSERT INTO t3 VALUES(8255, 61701, 'sixty-one thousand seven hundred one'); INSERT INTO t3 VALUES(8256, 83396, 'eighty-three thousand three hundred ninety-six'); INSERT INTO t3 VALUES(8257, 47620, 'forty-seven thousand six hundred twenty'); INSERT INTO t3 VALUES(8258, 1042, 'one thousand forty-two'); INSERT INTO t3 VALUES(8259, 15422, 'fifteen thousand four hundred twenty-two'); INSERT INTO t3 VALUES(8260, 71502, 'seventy-one thousand five hundred two'); INSERT INTO t3 VALUES(8261, 29782, 'twenty-nine thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(8262, 96449, 'ninety-six thousand four hundred forty-nine'); INSERT INTO t3 VALUES(8263, 43260, 'forty-three thousand two hundred sixty'); INSERT INTO t3 VALUES(8264, 30715, 'thirty thousand seven hundred fifteen'); INSERT INTO t3 VALUES(8265, 19509, 'nineteen thousand five hundred nine'); INSERT INTO t3 VALUES(8266, 43298, 'forty-three thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(8267, 32807, 'thirty-two thousand eight hundred seven'); INSERT INTO t3 VALUES(8268, 5203, 'five thousand two hundred three'); INSERT INTO t3 VALUES(8269, 27490, 'twenty-seven thousand four hundred ninety'); INSERT INTO t3 VALUES(8270, 13856, 'thirteen thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(8271, 34788, 'thirty-four thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(8272, 79621, 'seventy-nine thousand six hundred twenty-one'); INSERT INTO t3 VALUES(8273, 82808, 'eighty-two thousand eight hundred eight'); INSERT INTO t3 VALUES(8274, 37417, 'thirty-seven thousand four hundred seventeen'); INSERT INTO t3 VALUES(8275, 13244, 'thirteen thousand two hundred forty-four'); INSERT INTO t3 VALUES(8276, 89970, 'eighty-nine thousand nine hundred seventy'); INSERT INTO t3 VALUES(8277, 96425, 'ninety-six thousand four hundred twenty-five'); INSERT INTO t3 VALUES(8278, 34543, 'thirty-four thousand five hundred forty-three'); INSERT INTO t3 VALUES(8279, 53736, 'fifty-three thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(8280, 9308, 'nine thousand three hundred eight'); INSERT INTO t3 VALUES(8281, 63750, 'sixty-three thousand seven hundred fifty'); INSERT INTO t3 VALUES(8282, 82176, 'eighty-two thousand one hundred seventy-six'); INSERT INTO t3 VALUES(8283, 13194, 'thirteen thousand one hundred ninety-four'); INSERT INTO t3 VALUES(8284, 13409, 'thirteen thousand four hundred nine'); INSERT INTO t3 VALUES(8285, 28129, 'twenty-eight thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(8286, 81386, 'eighty-one thousand three hundred eighty-six'); INSERT INTO t3 VALUES(8287, 85996, 'eighty-five thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(8288, 48277, 'forty-eight thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(8289, 18567, 'eighteen thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(8290, 97133, 'ninety-seven thousand one hundred thirty-three'); INSERT INTO t3 VALUES(8291, 76330, 'seventy-six thousand three hundred thirty'); INSERT INTO t3 VALUES(8292, 91044, 'ninety-one thousand forty-four'); INSERT INTO t3 VALUES(8293, 46072, 'forty-six thousand seventy-two'); INSERT INTO t3 VALUES(8294, 76296, 'seventy-six thousand two hundred ninety-six'); INSERT INTO t3 VALUES(8295, 48214, 'forty-eight thousand two hundred fourteen'); INSERT INTO t3 VALUES(8296, 6752, 'six thousand seven hundred fifty-two'); INSERT INTO t3 VALUES(8297, 76845, 'seventy-six thousand eight hundred forty-five'); INSERT INTO t3 VALUES(8298, 13543, 'thirteen thousand five hundred forty-three'); INSERT INTO t3 VALUES(8299, 36318, 'thirty-six thousand three hundred eighteen'); INSERT INTO t3 VALUES(8300, 889, 'eight hundred eighty-nine'); INSERT INTO t3 VALUES(8301, 40713, 'forty thousand seven hundred thirteen'); INSERT INTO t3 VALUES(8302, 70521, 'seventy thousand five hundred twenty-one'); INSERT INTO t3 VALUES(8303, 89295, 'eighty-nine thousand two hundred ninety-five'); INSERT INTO t3 VALUES(8304, 44531, 'forty-four thousand five hundred thirty-one'); INSERT INTO t3 VALUES(8305, 31892, 'thirty-one thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(8306, 86912, 'eighty-six thousand nine hundred twelve'); INSERT INTO t3 VALUES(8307, 54944, 'fifty-four thousand nine hundred forty-four'); INSERT INTO t3 VALUES(8308, 68025, 'sixty-eight thousand twenty-five'); INSERT INTO t3 VALUES(8309, 63382, 'sixty-three thousand three hundred eighty-two'); INSERT INTO t3 VALUES(8310, 72931, 'seventy-two thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(8311, 50168, 'fifty thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(8312, 32605, 'thirty-two thousand six hundred five'); INSERT INTO t3 VALUES(8313, 20937, 'twenty thousand nine hundred thirty-seven'); INSERT INTO t3 VALUES(8314, 25080, 'twenty-five thousand eighty'); INSERT INTO t3 VALUES(8315, 9824, 'nine thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(8316, 71137, 'seventy-one thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(8317, 24958, 'twenty-four thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(8318, 99835, 'ninety-nine thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(8319, 28418, 'twenty-eight thousand four hundred eighteen'); INSERT INTO t3 VALUES(8320, 90929, 'ninety thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(8321, 3172, 'three thousand one hundred seventy-two'); INSERT INTO t3 VALUES(8322, 46563, 'forty-six thousand five hundred sixty-three'); INSERT INTO t3 VALUES(8323, 29177, 'twenty-nine thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(8324, 1303, 'one thousand three hundred three'); INSERT INTO t3 VALUES(8325, 30302, 'thirty thousand three hundred two'); INSERT INTO t3 VALUES(8326, 52575, 'fifty-two thousand five hundred seventy-five'); INSERT INTO t3 VALUES(8327, 36542, 'thirty-six thousand five hundred forty-two'); INSERT INTO t3 VALUES(8328, 12329, 'twelve thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(8329, 92604, 'ninety-two thousand six hundred four'); INSERT INTO t3 VALUES(8330, 51696, 'fifty-one thousand six hundred ninety-six'); INSERT INTO t3 VALUES(8331, 61183, 'sixty-one thousand one hundred eighty-three'); INSERT INTO t3 VALUES(8332, 34611, 'thirty-four thousand six hundred eleven'); INSERT INTO t3 VALUES(8333, 88779, 'eighty-eight thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(8334, 2666, 'two thousand six hundred sixty-six'); INSERT INTO t3 VALUES(8335, 6915, 'six thousand nine hundred fifteen'); INSERT INTO t3 VALUES(8336, 46174, 'forty-six thousand one hundred seventy-four'); INSERT INTO t3 VALUES(8337, 78896, 'seventy-eight thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(8338, 6459, 'six thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(8339, 27371, 'twenty-seven thousand three hundred seventy-one'); INSERT INTO t3 VALUES(8340, 15615, 'fifteen thousand six hundred fifteen'); INSERT INTO t3 VALUES(8341, 80469, 'eighty thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(8342, 35237, 'thirty-five thousand two hundred thirty-seven'); INSERT INTO t3 VALUES(8343, 63927, 'sixty-three thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(8344, 13826, 'thirteen thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(8345, 76699, 'seventy-six thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(8346, 75679, 'seventy-five thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(8347, 6505, 'six thousand five hundred five'); INSERT INTO t3 VALUES(8348, 2695, 'two thousand six hundred ninety-five'); INSERT INTO t3 VALUES(8349, 1716, 'one thousand seven hundred sixteen'); INSERT INTO t3 VALUES(8350, 79143, 'seventy-nine thousand one hundred forty-three'); INSERT INTO t3 VALUES(8351, 44558, 'forty-four thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(8352, 78615, 'seventy-eight thousand six hundred fifteen'); INSERT INTO t3 VALUES(8353, 37550, 'thirty-seven thousand five hundred fifty'); INSERT INTO t3 VALUES(8354, 49053, 'forty-nine thousand fifty-three'); INSERT INTO t3 VALUES(8355, 47259, 'forty-seven thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(8356, 22621, 'twenty-two thousand six hundred twenty-one'); INSERT INTO t3 VALUES(8357, 39368, 'thirty-nine thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(8358, 92407, 'ninety-two thousand four hundred seven'); INSERT INTO t3 VALUES(8359, 77946, 'seventy-seven thousand nine hundred forty-six'); INSERT INTO t3 VALUES(8360, 34266, 'thirty-four thousand two hundred sixty-six'); INSERT INTO t3 VALUES(8361, 9912, 'nine thousand nine hundred twelve'); INSERT INTO t3 VALUES(8362, 85464, 'eighty-five thousand four hundred sixty-four'); INSERT INTO t3 VALUES(8363, 46679, 'forty-six thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(8364, 14462, 'fourteen thousand four hundred sixty-two'); INSERT INTO t3 VALUES(8365, 11746, 'eleven thousand seven hundred forty-six'); INSERT INTO t3 VALUES(8366, 6500, 'six thousand five hundred'); INSERT INTO t3 VALUES(8367, 54701, 'fifty-four thousand seven hundred one'); INSERT INTO t3 VALUES(8368, 41957, 'forty-one thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(8369, 48638, 'forty-eight thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(8370, 49833, 'forty-nine thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(8371, 70205, 'seventy thousand two hundred five'); INSERT INTO t3 VALUES(8372, 41075, 'forty-one thousand seventy-five'); INSERT INTO t3 VALUES(8373, 60126, 'sixty thousand one hundred twenty-six'); INSERT INTO t3 VALUES(8374, 26884, 'twenty-six thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(8375, 5956, 'five thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(8376, 46191, 'forty-six thousand one hundred ninety-one'); INSERT INTO t3 VALUES(8377, 11167, 'eleven thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(8378, 71835, 'seventy-one thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(8379, 65888, 'sixty-five thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(8380, 86164, 'eighty-six thousand one hundred sixty-four'); INSERT INTO t3 VALUES(8381, 98878, 'ninety-eight thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(8382, 16039, 'sixteen thousand thirty-nine'); INSERT INTO t3 VALUES(8383, 85445, 'eighty-five thousand four hundred forty-five'); INSERT INTO t3 VALUES(8384, 64447, 'sixty-four thousand four hundred forty-seven'); INSERT INTO t3 VALUES(8385, 37932, 'thirty-seven thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(8386, 15854, 'fifteen thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(8387, 28488, 'twenty-eight thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(8388, 99324, 'ninety-nine thousand three hundred twenty-four'); INSERT INTO t3 VALUES(8389, 5481, 'five thousand four hundred eighty-one'); INSERT INTO t3 VALUES(8390, 89056, 'eighty-nine thousand fifty-six'); INSERT INTO t3 VALUES(8391, 20327, 'twenty thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(8392, 37222, 'thirty-seven thousand two hundred twenty-two'); INSERT INTO t3 VALUES(8393, 43052, 'forty-three thousand fifty-two'); INSERT INTO t3 VALUES(8394, 90659, 'ninety thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(8395, 27154, 'twenty-seven thousand one hundred fifty-four'); INSERT INTO t3 VALUES(8396, 736, 'seven hundred thirty-six'); INSERT INTO t3 VALUES(8397, 86046, 'eighty-six thousand forty-six'); INSERT INTO t3 VALUES(8398, 7500, 'seven thousand five hundred'); INSERT INTO t3 VALUES(8399, 51472, 'fifty-one thousand four hundred seventy-two'); INSERT INTO t3 VALUES(8400, 65371, 'sixty-five thousand three hundred seventy-one'); INSERT INTO t3 VALUES(8401, 49446, 'forty-nine thousand four hundred forty-six'); INSERT INTO t3 VALUES(8402, 51721, 'fifty-one thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(8403, 25678, 'twenty-five thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(8404, 7300, 'seven thousand three hundred'); INSERT INTO t3 VALUES(8405, 78695, 'seventy-eight thousand six hundred ninety-five'); INSERT INTO t3 VALUES(8406, 26671, 'twenty-six thousand six hundred seventy-one'); INSERT INTO t3 VALUES(8407, 77010, 'seventy-seven thousand ten'); INSERT INTO t3 VALUES(8408, 63530, 'sixty-three thousand five hundred thirty'); INSERT INTO t3 VALUES(8409, 164, 'one hundred sixty-four'); INSERT INTO t3 VALUES(8410, 80868, 'eighty thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(8411, 12023, 'twelve thousand twenty-three'); INSERT INTO t3 VALUES(8412, 22292, 'twenty-two thousand two hundred ninety-two'); INSERT INTO t3 VALUES(8413, 58107, 'fifty-eight thousand one hundred seven'); INSERT INTO t3 VALUES(8414, 13943, 'thirteen thousand nine hundred forty-three'); INSERT INTO t3 VALUES(8415, 11209, 'eleven thousand two hundred nine'); INSERT INTO t3 VALUES(8416, 98621, 'ninety-eight thousand six hundred twenty-one'); INSERT INTO t3 VALUES(8417, 72478, 'seventy-two thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(8418, 59721, 'fifty-nine thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(8419, 9399, 'nine thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(8420, 44360, 'forty-four thousand three hundred sixty'); INSERT INTO t3 VALUES(8421, 85990, 'eighty-five thousand nine hundred ninety'); INSERT INTO t3 VALUES(8422, 17766, 'seventeen thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(8423, 65448, 'sixty-five thousand four hundred forty-eight'); INSERT INTO t3 VALUES(8424, 85640, 'eighty-five thousand six hundred forty'); INSERT INTO t3 VALUES(8425, 95741, 'ninety-five thousand seven hundred forty-one'); INSERT INTO t3 VALUES(8426, 83159, 'eighty-three thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(8427, 99747, 'ninety-nine thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(8428, 65036, 'sixty-five thousand thirty-six'); INSERT INTO t3 VALUES(8429, 21519, 'twenty-one thousand five hundred nineteen'); INSERT INTO t3 VALUES(8430, 78546, 'seventy-eight thousand five hundred forty-six'); INSERT INTO t3 VALUES(8431, 56437, 'fifty-six thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(8432, 26476, 'twenty-six thousand four hundred seventy-six'); INSERT INTO t3 VALUES(8433, 41553, 'forty-one thousand five hundred fifty-three'); INSERT INTO t3 VALUES(8434, 29048, 'twenty-nine thousand forty-eight'); INSERT INTO t3 VALUES(8435, 48807, 'forty-eight thousand eight hundred seven'); INSERT INTO t3 VALUES(8436, 68858, 'sixty-eight thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(8437, 31610, 'thirty-one thousand six hundred ten'); INSERT INTO t3 VALUES(8438, 64515, 'sixty-four thousand five hundred fifteen'); INSERT INTO t3 VALUES(8439, 54131, 'fifty-four thousand one hundred thirty-one'); INSERT INTO t3 VALUES(8440, 58378, 'fifty-eight thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(8441, 51510, 'fifty-one thousand five hundred ten'); INSERT INTO t3 VALUES(8442, 38323, 'thirty-eight thousand three hundred twenty-three'); INSERT INTO t3 VALUES(8443, 32906, 'thirty-two thousand nine hundred six'); INSERT INTO t3 VALUES(8444, 98429, 'ninety-eight thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(8445, 41483, 'forty-one thousand four hundred eighty-three'); INSERT INTO t3 VALUES(8446, 36830, 'thirty-six thousand eight hundred thirty'); INSERT INTO t3 VALUES(8447, 56528, 'fifty-six thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(8448, 55012, 'fifty-five thousand twelve'); INSERT INTO t3 VALUES(8449, 1194, 'one thousand one hundred ninety-four'); INSERT INTO t3 VALUES(8450, 89068, 'eighty-nine thousand sixty-eight'); INSERT INTO t3 VALUES(8451, 40667, 'forty thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(8452, 26453, 'twenty-six thousand four hundred fifty-three'); INSERT INTO t3 VALUES(8453, 82099, 'eighty-two thousand ninety-nine'); INSERT INTO t3 VALUES(8454, 77124, 'seventy-seven thousand one hundred twenty-four'); INSERT INTO t3 VALUES(8455, 112, 'one hundred twelve'); INSERT INTO t3 VALUES(8456, 505, 'five hundred five'); INSERT INTO t3 VALUES(8457, 66191, 'sixty-six thousand one hundred ninety-one'); INSERT INTO t3 VALUES(8458, 31908, 'thirty-one thousand nine hundred eight'); INSERT INTO t3 VALUES(8459, 50473, 'fifty thousand four hundred seventy-three'); INSERT INTO t3 VALUES(8460, 85303, 'eighty-five thousand three hundred three'); INSERT INTO t3 VALUES(8461, 31574, 'thirty-one thousand five hundred seventy-four'); INSERT INTO t3 VALUES(8462, 58783, 'fifty-eight thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(8463, 62521, 'sixty-two thousand five hundred twenty-one'); INSERT INTO t3 VALUES(8464, 51627, 'fifty-one thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(8465, 25990, 'twenty-five thousand nine hundred ninety'); INSERT INTO t3 VALUES(8466, 13789, 'thirteen thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(8467, 34652, 'thirty-four thousand six hundred fifty-two'); INSERT INTO t3 VALUES(8468, 63, 'sixty-three'); INSERT INTO t3 VALUES(8469, 4073, 'four thousand seventy-three'); INSERT INTO t3 VALUES(8470, 4299, 'four thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(8471, 98594, 'ninety-eight thousand five hundred ninety-four'); INSERT INTO t3 VALUES(8472, 83104, 'eighty-three thousand one hundred four'); INSERT INTO t3 VALUES(8473, 9718, 'nine thousand seven hundred eighteen'); INSERT INTO t3 VALUES(8474, 80496, 'eighty thousand four hundred ninety-six'); INSERT INTO t3 VALUES(8475, 36709, 'thirty-six thousand seven hundred nine'); INSERT INTO t3 VALUES(8476, 1097, 'one thousand ninety-seven'); INSERT INTO t3 VALUES(8477, 82095, 'eighty-two thousand ninety-five'); INSERT INTO t3 VALUES(8478, 7709, 'seven thousand seven hundred nine'); INSERT INTO t3 VALUES(8479, 53651, 'fifty-three thousand six hundred fifty-one'); INSERT INTO t3 VALUES(8480, 75797, 'seventy-five thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(8481, 83547, 'eighty-three thousand five hundred forty-seven'); INSERT INTO t3 VALUES(8482, 57254, 'fifty-seven thousand two hundred fifty-four'); INSERT INTO t3 VALUES(8483, 20577, 'twenty thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(8484, 78552, 'seventy-eight thousand five hundred fifty-two'); INSERT INTO t3 VALUES(8485, 91373, 'ninety-one thousand three hundred seventy-three'); INSERT INTO t3 VALUES(8486, 88403, 'eighty-eight thousand four hundred three'); INSERT INTO t3 VALUES(8487, 97507, 'ninety-seven thousand five hundred seven'); INSERT INTO t3 VALUES(8488, 59476, 'fifty-nine thousand four hundred seventy-six'); INSERT INTO t3 VALUES(8489, 26359, 'twenty-six thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(8490, 66974, 'sixty-six thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(8491, 4046, 'four thousand forty-six'); INSERT INTO t3 VALUES(8492, 48533, 'forty-eight thousand five hundred thirty-three'); INSERT INTO t3 VALUES(8493, 63661, 'sixty-three thousand six hundred sixty-one'); INSERT INTO t3 VALUES(8494, 90604, 'ninety thousand six hundred four'); INSERT INTO t3 VALUES(8495, 16909, 'sixteen thousand nine hundred nine'); INSERT INTO t3 VALUES(8496, 15437, 'fifteen thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(8497, 55730, 'fifty-five thousand seven hundred thirty'); INSERT INTO t3 VALUES(8498, 6950, 'six thousand nine hundred fifty'); INSERT INTO t3 VALUES(8499, 24277, 'twenty-four thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(8500, 12909, 'twelve thousand nine hundred nine'); INSERT INTO t3 VALUES(8501, 78383, 'seventy-eight thousand three hundred eighty-three'); INSERT INTO t3 VALUES(8502, 22091, 'twenty-two thousand ninety-one'); INSERT INTO t3 VALUES(8503, 38405, 'thirty-eight thousand four hundred five'); INSERT INTO t3 VALUES(8504, 69844, 'sixty-nine thousand eight hundred forty-four'); INSERT INTO t3 VALUES(8505, 67603, 'sixty-seven thousand six hundred three'); INSERT INTO t3 VALUES(8506, 59345, 'fifty-nine thousand three hundred forty-five'); INSERT INTO t3 VALUES(8507, 80394, 'eighty thousand three hundred ninety-four'); INSERT INTO t3 VALUES(8508, 30834, 'thirty thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(8509, 33971, 'thirty-three thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(8510, 74079, 'seventy-four thousand seventy-nine'); INSERT INTO t3 VALUES(8511, 86757, 'eighty-six thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(8512, 60409, 'sixty thousand four hundred nine'); INSERT INTO t3 VALUES(8513, 84463, 'eighty-four thousand four hundred sixty-three'); INSERT INTO t3 VALUES(8514, 88810, 'eighty-eight thousand eight hundred ten'); INSERT INTO t3 VALUES(8515, 26806, 'twenty-six thousand eight hundred six'); INSERT INTO t3 VALUES(8516, 82994, 'eighty-two thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(8517, 89988, 'eighty-nine thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(8518, 32147, 'thirty-two thousand one hundred forty-seven'); INSERT INTO t3 VALUES(8519, 9594, 'nine thousand five hundred ninety-four'); INSERT INTO t3 VALUES(8520, 1445, 'one thousand four hundred forty-five'); INSERT INTO t3 VALUES(8521, 21467, 'twenty-one thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(8522, 69172, 'sixty-nine thousand one hundred seventy-two'); INSERT INTO t3 VALUES(8523, 78531, 'seventy-eight thousand five hundred thirty-one'); INSERT INTO t3 VALUES(8524, 6630, 'six thousand six hundred thirty'); INSERT INTO t3 VALUES(8525, 90687, 'ninety thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(8526, 82271, 'eighty-two thousand two hundred seventy-one'); INSERT INTO t3 VALUES(8527, 47990, 'forty-seven thousand nine hundred ninety'); INSERT INTO t3 VALUES(8528, 19897, 'nineteen thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(8529, 12909, 'twelve thousand nine hundred nine'); INSERT INTO t3 VALUES(8530, 69152, 'sixty-nine thousand one hundred fifty-two'); INSERT INTO t3 VALUES(8531, 55779, 'fifty-five thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(8532, 95875, 'ninety-five thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(8533, 80275, 'eighty thousand two hundred seventy-five'); INSERT INTO t3 VALUES(8534, 98215, 'ninety-eight thousand two hundred fifteen'); INSERT INTO t3 VALUES(8535, 71919, 'seventy-one thousand nine hundred nineteen'); INSERT INTO t3 VALUES(8536, 43898, 'forty-three thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(8537, 31571, 'thirty-one thousand five hundred seventy-one'); INSERT INTO t3 VALUES(8538, 18403, 'eighteen thousand four hundred three'); INSERT INTO t3 VALUES(8539, 92908, 'ninety-two thousand nine hundred eight'); INSERT INTO t3 VALUES(8540, 81109, 'eighty-one thousand one hundred nine'); INSERT INTO t3 VALUES(8541, 38809, 'thirty-eight thousand eight hundred nine'); INSERT INTO t3 VALUES(8542, 67031, 'sixty-seven thousand thirty-one'); INSERT INTO t3 VALUES(8543, 85667, 'eighty-five thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(8544, 56152, 'fifty-six thousand one hundred fifty-two'); INSERT INTO t3 VALUES(8545, 66775, 'sixty-six thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(8546, 54679, 'fifty-four thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(8547, 24674, 'twenty-four thousand six hundred seventy-four'); INSERT INTO t3 VALUES(8548, 19133, 'nineteen thousand one hundred thirty-three'); INSERT INTO t3 VALUES(8549, 9177, 'nine thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(8550, 40371, 'forty thousand three hundred seventy-one'); INSERT INTO t3 VALUES(8551, 48097, 'forty-eight thousand ninety-seven'); INSERT INTO t3 VALUES(8552, 55150, 'fifty-five thousand one hundred fifty'); INSERT INTO t3 VALUES(8553, 75691, 'seventy-five thousand six hundred ninety-one'); INSERT INTO t3 VALUES(8554, 48760, 'forty-eight thousand seven hundred sixty'); INSERT INTO t3 VALUES(8555, 3509, 'three thousand five hundred nine'); INSERT INTO t3 VALUES(8556, 71295, 'seventy-one thousand two hundred ninety-five'); INSERT INTO t3 VALUES(8557, 84206, 'eighty-four thousand two hundred six'); INSERT INTO t3 VALUES(8558, 84802, 'eighty-four thousand eight hundred two'); INSERT INTO t3 VALUES(8559, 41560, 'forty-one thousand five hundred sixty'); INSERT INTO t3 VALUES(8560, 20674, 'twenty thousand six hundred seventy-four'); INSERT INTO t3 VALUES(8561, 77122, 'seventy-seven thousand one hundred twenty-two'); INSERT INTO t3 VALUES(8562, 69472, 'sixty-nine thousand four hundred seventy-two'); INSERT INTO t3 VALUES(8563, 71524, 'seventy-one thousand five hundred twenty-four'); INSERT INTO t3 VALUES(8564, 71472, 'seventy-one thousand four hundred seventy-two'); INSERT INTO t3 VALUES(8565, 61975, 'sixty-one thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(8566, 51520, 'fifty-one thousand five hundred twenty'); INSERT INTO t3 VALUES(8567, 34972, 'thirty-four thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(8568, 68854, 'sixty-eight thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(8569, 39970, 'thirty-nine thousand nine hundred seventy'); INSERT INTO t3 VALUES(8570, 77254, 'seventy-seven thousand two hundred fifty-four'); INSERT INTO t3 VALUES(8571, 62055, 'sixty-two thousand fifty-five'); INSERT INTO t3 VALUES(8572, 76553, 'seventy-six thousand five hundred fifty-three'); INSERT INTO t3 VALUES(8573, 69329, 'sixty-nine thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(8574, 29285, 'twenty-nine thousand two hundred eighty-five'); INSERT INTO t3 VALUES(8575, 67299, 'sixty-seven thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(8576, 81738, 'eighty-one thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(8577, 58923, 'fifty-eight thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(8578, 88154, 'eighty-eight thousand one hundred fifty-four'); INSERT INTO t3 VALUES(8579, 65662, 'sixty-five thousand six hundred sixty-two'); INSERT INTO t3 VALUES(8580, 14772, 'fourteen thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(8581, 80355, 'eighty thousand three hundred fifty-five'); INSERT INTO t3 VALUES(8582, 38061, 'thirty-eight thousand sixty-one'); INSERT INTO t3 VALUES(8583, 97193, 'ninety-seven thousand one hundred ninety-three'); INSERT INTO t3 VALUES(8584, 80250, 'eighty thousand two hundred fifty'); INSERT INTO t3 VALUES(8585, 78505, 'seventy-eight thousand five hundred five'); INSERT INTO t3 VALUES(8586, 63134, 'sixty-three thousand one hundred thirty-four'); INSERT INTO t3 VALUES(8587, 50787, 'fifty thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(8588, 62379, 'sixty-two thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(8589, 63284, 'sixty-three thousand two hundred eighty-four'); INSERT INTO t3 VALUES(8590, 13024, 'thirteen thousand twenty-four'); INSERT INTO t3 VALUES(8591, 26078, 'twenty-six thousand seventy-eight'); INSERT INTO t3 VALUES(8592, 61146, 'sixty-one thousand one hundred forty-six'); INSERT INTO t3 VALUES(8593, 34917, 'thirty-four thousand nine hundred seventeen'); INSERT INTO t3 VALUES(8594, 9701, 'nine thousand seven hundred one'); INSERT INTO t3 VALUES(8595, 47688, 'forty-seven thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(8596, 64719, 'sixty-four thousand seven hundred nineteen'); INSERT INTO t3 VALUES(8597, 69920, 'sixty-nine thousand nine hundred twenty'); INSERT INTO t3 VALUES(8598, 72744, 'seventy-two thousand seven hundred forty-four'); INSERT INTO t3 VALUES(8599, 97489, 'ninety-seven thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(8600, 18853, 'eighteen thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(8601, 86574, 'eighty-six thousand five hundred seventy-four'); INSERT INTO t3 VALUES(8602, 29577, 'twenty-nine thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(8603, 40183, 'forty thousand one hundred eighty-three'); INSERT INTO t3 VALUES(8604, 34530, 'thirty-four thousand five hundred thirty'); INSERT INTO t3 VALUES(8605, 40642, 'forty thousand six hundred forty-two'); INSERT INTO t3 VALUES(8606, 51141, 'fifty-one thousand one hundred forty-one'); INSERT INTO t3 VALUES(8607, 26970, 'twenty-six thousand nine hundred seventy'); INSERT INTO t3 VALUES(8608, 84351, 'eighty-four thousand three hundred fifty-one'); INSERT INTO t3 VALUES(8609, 37576, 'thirty-seven thousand five hundred seventy-six'); INSERT INTO t3 VALUES(8610, 46952, 'forty-six thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(8611, 5745, 'five thousand seven hundred forty-five'); INSERT INTO t3 VALUES(8612, 30098, 'thirty thousand ninety-eight'); INSERT INTO t3 VALUES(8613, 80019, 'eighty thousand nineteen'); INSERT INTO t3 VALUES(8614, 96206, 'ninety-six thousand two hundred six'); INSERT INTO t3 VALUES(8615, 46491, 'forty-six thousand four hundred ninety-one'); INSERT INTO t3 VALUES(8616, 78279, 'seventy-eight thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(8617, 92949, 'ninety-two thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(8618, 87338, 'eighty-seven thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(8619, 67852, 'sixty-seven thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(8620, 70463, 'seventy thousand four hundred sixty-three'); INSERT INTO t3 VALUES(8621, 90441, 'ninety thousand four hundred forty-one'); INSERT INTO t3 VALUES(8622, 2171, 'two thousand one hundred seventy-one'); INSERT INTO t3 VALUES(8623, 63831, 'sixty-three thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(8624, 44159, 'forty-four thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(8625, 13967, 'thirteen thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(8626, 47445, 'forty-seven thousand four hundred forty-five'); INSERT INTO t3 VALUES(8627, 7992, 'seven thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(8628, 36205, 'thirty-six thousand two hundred five'); INSERT INTO t3 VALUES(8629, 14502, 'fourteen thousand five hundred two'); INSERT INTO t3 VALUES(8630, 6704, 'six thousand seven hundred four'); INSERT INTO t3 VALUES(8631, 7821, 'seven thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(8632, 24643, 'twenty-four thousand six hundred forty-three'); INSERT INTO t3 VALUES(8633, 45674, 'forty-five thousand six hundred seventy-four'); INSERT INTO t3 VALUES(8634, 64487, 'sixty-four thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(8635, 12007, 'twelve thousand seven'); INSERT INTO t3 VALUES(8636, 39929, 'thirty-nine thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(8637, 53304, 'fifty-three thousand three hundred four'); INSERT INTO t3 VALUES(8638, 2231, 'two thousand two hundred thirty-one'); INSERT INTO t3 VALUES(8639, 77189, 'seventy-seven thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(8640, 3887, 'three thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(8641, 44122, 'forty-four thousand one hundred twenty-two'); INSERT INTO t3 VALUES(8642, 63883, 'sixty-three thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(8643, 9229, 'nine thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(8644, 69943, 'sixty-nine thousand nine hundred forty-three'); INSERT INTO t3 VALUES(8645, 12970, 'twelve thousand nine hundred seventy'); INSERT INTO t3 VALUES(8646, 76176, 'seventy-six thousand one hundred seventy-six'); INSERT INTO t3 VALUES(8647, 17089, 'seventeen thousand eighty-nine'); INSERT INTO t3 VALUES(8648, 68542, 'sixty-eight thousand five hundred forty-two'); INSERT INTO t3 VALUES(8649, 43947, 'forty-three thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(8650, 14743, 'fourteen thousand seven hundred forty-three'); INSERT INTO t3 VALUES(8651, 83124, 'eighty-three thousand one hundred twenty-four'); INSERT INTO t3 VALUES(8652, 18569, 'eighteen thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(8653, 80463, 'eighty thousand four hundred sixty-three'); INSERT INTO t3 VALUES(8654, 81819, 'eighty-one thousand eight hundred nineteen'); INSERT INTO t3 VALUES(8655, 8615, 'eight thousand six hundred fifteen'); INSERT INTO t3 VALUES(8656, 39918, 'thirty-nine thousand nine hundred eighteen'); INSERT INTO t3 VALUES(8657, 72064, 'seventy-two thousand sixty-four'); INSERT INTO t3 VALUES(8658, 90041, 'ninety thousand forty-one'); INSERT INTO t3 VALUES(8659, 95297, 'ninety-five thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(8660, 70516, 'seventy thousand five hundred sixteen'); INSERT INTO t3 VALUES(8661, 76766, 'seventy-six thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(8662, 16492, 'sixteen thousand four hundred ninety-two'); INSERT INTO t3 VALUES(8663, 16189, 'sixteen thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(8664, 91662, 'ninety-one thousand six hundred sixty-two'); INSERT INTO t3 VALUES(8665, 59057, 'fifty-nine thousand fifty-seven'); INSERT INTO t3 VALUES(8666, 65902, 'sixty-five thousand nine hundred two'); INSERT INTO t3 VALUES(8667, 17171, 'seventeen thousand one hundred seventy-one'); INSERT INTO t3 VALUES(8668, 24003, 'twenty-four thousand three'); INSERT INTO t3 VALUES(8669, 92149, 'ninety-two thousand one hundred forty-nine'); INSERT INTO t3 VALUES(8670, 1792, 'one thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(8671, 67411, 'sixty-seven thousand four hundred eleven'); INSERT INTO t3 VALUES(8672, 66464, 'sixty-six thousand four hundred sixty-four'); INSERT INTO t3 VALUES(8673, 63074, 'sixty-three thousand seventy-four'); INSERT INTO t3 VALUES(8674, 10873, 'ten thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(8675, 55524, 'fifty-five thousand five hundred twenty-four'); INSERT INTO t3 VALUES(8676, 95313, 'ninety-five thousand three hundred thirteen'); INSERT INTO t3 VALUES(8677, 28052, 'twenty-eight thousand fifty-two'); INSERT INTO t3 VALUES(8678, 24289, 'twenty-four thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(8679, 68418, 'sixty-eight thousand four hundred eighteen'); INSERT INTO t3 VALUES(8680, 53276, 'fifty-three thousand two hundred seventy-six'); INSERT INTO t3 VALUES(8681, 82162, 'eighty-two thousand one hundred sixty-two'); INSERT INTO t3 VALUES(8682, 41681, 'forty-one thousand six hundred eighty-one'); INSERT INTO t3 VALUES(8683, 68119, 'sixty-eight thousand one hundred nineteen'); INSERT INTO t3 VALUES(8684, 70728, 'seventy thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(8685, 8034, 'eight thousand thirty-four'); INSERT INTO t3 VALUES(8686, 60929, 'sixty thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(8687, 21362, 'twenty-one thousand three hundred sixty-two'); INSERT INTO t3 VALUES(8688, 74845, 'seventy-four thousand eight hundred forty-five'); INSERT INTO t3 VALUES(8689, 5697, 'five thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(8690, 93968, 'ninety-three thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(8691, 51095, 'fifty-one thousand ninety-five'); INSERT INTO t3 VALUES(8692, 83810, 'eighty-three thousand eight hundred ten'); INSERT INTO t3 VALUES(8693, 15741, 'fifteen thousand seven hundred forty-one'); INSERT INTO t3 VALUES(8694, 69922, 'sixty-nine thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(8695, 184, 'one hundred eighty-four'); INSERT INTO t3 VALUES(8696, 91324, 'ninety-one thousand three hundred twenty-four'); INSERT INTO t3 VALUES(8697, 95777, 'ninety-five thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(8698, 15723, 'fifteen thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(8699, 43921, 'forty-three thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(8700, 58646, 'fifty-eight thousand six hundred forty-six'); INSERT INTO t3 VALUES(8701, 93710, 'ninety-three thousand seven hundred ten'); INSERT INTO t3 VALUES(8702, 66251, 'sixty-six thousand two hundred fifty-one'); INSERT INTO t3 VALUES(8703, 71083, 'seventy-one thousand eighty-three'); INSERT INTO t3 VALUES(8704, 24317, 'twenty-four thousand three hundred seventeen'); INSERT INTO t3 VALUES(8705, 24353, 'twenty-four thousand three hundred fifty-three'); INSERT INTO t3 VALUES(8706, 89820, 'eighty-nine thousand eight hundred twenty'); INSERT INTO t3 VALUES(8707, 98100, 'ninety-eight thousand one hundred'); INSERT INTO t3 VALUES(8708, 69014, 'sixty-nine thousand fourteen'); INSERT INTO t3 VALUES(8709, 99625, 'ninety-nine thousand six hundred twenty-five'); INSERT INTO t3 VALUES(8710, 91098, 'ninety-one thousand ninety-eight'); INSERT INTO t3 VALUES(8711, 92458, 'ninety-two thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(8712, 31397, 'thirty-one thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(8713, 432, 'four hundred thirty-two'); INSERT INTO t3 VALUES(8714, 32584, 'thirty-two thousand five hundred eighty-four'); INSERT INTO t3 VALUES(8715, 8666, 'eight thousand six hundred sixty-six'); INSERT INTO t3 VALUES(8716, 96638, 'ninety-six thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(8717, 7791, 'seven thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(8718, 1427, 'one thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(8719, 14231, 'fourteen thousand two hundred thirty-one'); INSERT INTO t3 VALUES(8720, 28045, 'twenty-eight thousand forty-five'); INSERT INTO t3 VALUES(8721, 69475, 'sixty-nine thousand four hundred seventy-five'); INSERT INTO t3 VALUES(8722, 91064, 'ninety-one thousand sixty-four'); INSERT INTO t3 VALUES(8723, 39915, 'thirty-nine thousand nine hundred fifteen'); INSERT INTO t3 VALUES(8724, 83169, 'eighty-three thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(8725, 96548, 'ninety-six thousand five hundred forty-eight'); INSERT INTO t3 VALUES(8726, 35018, 'thirty-five thousand eighteen'); INSERT INTO t3 VALUES(8727, 49950, 'forty-nine thousand nine hundred fifty'); INSERT INTO t3 VALUES(8728, 70855, 'seventy thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(8729, 11953, 'eleven thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(8730, 43863, 'forty-three thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(8731, 7490, 'seven thousand four hundred ninety'); INSERT INTO t3 VALUES(8732, 11977, 'eleven thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(8733, 28119, 'twenty-eight thousand one hundred nineteen'); INSERT INTO t3 VALUES(8734, 59887, 'fifty-nine thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(8735, 73473, 'seventy-three thousand four hundred seventy-three'); INSERT INTO t3 VALUES(8736, 19309, 'nineteen thousand three hundred nine'); INSERT INTO t3 VALUES(8737, 70079, 'seventy thousand seventy-nine'); INSERT INTO t3 VALUES(8738, 58537, 'fifty-eight thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(8739, 31414, 'thirty-one thousand four hundred fourteen'); INSERT INTO t3 VALUES(8740, 29081, 'twenty-nine thousand eighty-one'); INSERT INTO t3 VALUES(8741, 18025, 'eighteen thousand twenty-five'); INSERT INTO t3 VALUES(8742, 44324, 'forty-four thousand three hundred twenty-four'); INSERT INTO t3 VALUES(8743, 99072, 'ninety-nine thousand seventy-two'); INSERT INTO t3 VALUES(8744, 85289, 'eighty-five thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(8745, 9000, 'nine thousand'); INSERT INTO t3 VALUES(8746, 3985, 'three thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(8747, 56314, 'fifty-six thousand three hundred fourteen'); INSERT INTO t3 VALUES(8748, 14264, 'fourteen thousand two hundred sixty-four'); INSERT INTO t3 VALUES(8749, 89332, 'eighty-nine thousand three hundred thirty-two'); INSERT INTO t3 VALUES(8750, 69541, 'sixty-nine thousand five hundred forty-one'); INSERT INTO t3 VALUES(8751, 85916, 'eighty-five thousand nine hundred sixteen'); INSERT INTO t3 VALUES(8752, 21170, 'twenty-one thousand one hundred seventy'); INSERT INTO t3 VALUES(8753, 6500, 'six thousand five hundred'); INSERT INTO t3 VALUES(8754, 9578, 'nine thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(8755, 89787, 'eighty-nine thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(8756, 34742, 'thirty-four thousand seven hundred forty-two'); INSERT INTO t3 VALUES(8757, 50788, 'fifty thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(8758, 70835, 'seventy thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(8759, 96005, 'ninety-six thousand five'); INSERT INTO t3 VALUES(8760, 42368, 'forty-two thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(8761, 15670, 'fifteen thousand six hundred seventy'); INSERT INTO t3 VALUES(8762, 20354, 'twenty thousand three hundred fifty-four'); INSERT INTO t3 VALUES(8763, 51169, 'fifty-one thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(8764, 79100, 'seventy-nine thousand one hundred'); INSERT INTO t3 VALUES(8765, 89010, 'eighty-nine thousand ten'); INSERT INTO t3 VALUES(8766, 41959, 'forty-one thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(8767, 89858, 'eighty-nine thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(8768, 12061, 'twelve thousand sixty-one'); INSERT INTO t3 VALUES(8769, 34533, 'thirty-four thousand five hundred thirty-three'); INSERT INTO t3 VALUES(8770, 99846, 'ninety-nine thousand eight hundred forty-six'); INSERT INTO t3 VALUES(8771, 53210, 'fifty-three thousand two hundred ten'); INSERT INTO t3 VALUES(8772, 52662, 'fifty-two thousand six hundred sixty-two'); INSERT INTO t3 VALUES(8773, 86340, 'eighty-six thousand three hundred forty'); INSERT INTO t3 VALUES(8774, 96204, 'ninety-six thousand two hundred four'); INSERT INTO t3 VALUES(8775, 41401, 'forty-one thousand four hundred one'); INSERT INTO t3 VALUES(8776, 53906, 'fifty-three thousand nine hundred six'); INSERT INTO t3 VALUES(8777, 30974, 'thirty thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(8778, 8229, 'eight thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(8779, 32145, 'thirty-two thousand one hundred forty-five'); INSERT INTO t3 VALUES(8780, 98200, 'ninety-eight thousand two hundred'); INSERT INTO t3 VALUES(8781, 66462, 'sixty-six thousand four hundred sixty-two'); INSERT INTO t3 VALUES(8782, 15757, 'fifteen thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(8783, 41432, 'forty-one thousand four hundred thirty-two'); INSERT INTO t3 VALUES(8784, 5004, 'five thousand four'); INSERT INTO t3 VALUES(8785, 65586, 'sixty-five thousand five hundred eighty-six'); INSERT INTO t3 VALUES(8786, 83446, 'eighty-three thousand four hundred forty-six'); INSERT INTO t3 VALUES(8787, 40511, 'forty thousand five hundred eleven'); INSERT INTO t3 VALUES(8788, 86308, 'eighty-six thousand three hundred eight'); INSERT INTO t3 VALUES(8789, 10066, 'ten thousand sixty-six'); INSERT INTO t3 VALUES(8790, 87586, 'eighty-seven thousand five hundred eighty-six'); INSERT INTO t3 VALUES(8791, 36308, 'thirty-six thousand three hundred eight'); INSERT INTO t3 VALUES(8792, 14513, 'fourteen thousand five hundred thirteen'); INSERT INTO t3 VALUES(8793, 21879, 'twenty-one thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(8794, 92112, 'ninety-two thousand one hundred twelve'); INSERT INTO t3 VALUES(8795, 21754, 'twenty-one thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(8796, 83071, 'eighty-three thousand seventy-one'); INSERT INTO t3 VALUES(8797, 53182, 'fifty-three thousand one hundred eighty-two'); INSERT INTO t3 VALUES(8798, 14305, 'fourteen thousand three hundred five'); INSERT INTO t3 VALUES(8799, 91092, 'ninety-one thousand ninety-two'); INSERT INTO t3 VALUES(8800, 55635, 'fifty-five thousand six hundred thirty-five'); INSERT INTO t3 VALUES(8801, 51303, 'fifty-one thousand three hundred three'); INSERT INTO t3 VALUES(8802, 10897, 'ten thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(8803, 86460, 'eighty-six thousand four hundred sixty'); INSERT INTO t3 VALUES(8804, 4877, 'four thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(8805, 19681, 'nineteen thousand six hundred eighty-one'); INSERT INTO t3 VALUES(8806, 62275, 'sixty-two thousand two hundred seventy-five'); INSERT INTO t3 VALUES(8807, 97781, 'ninety-seven thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(8808, 43961, 'forty-three thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(8809, 71519, 'seventy-one thousand five hundred nineteen'); INSERT INTO t3 VALUES(8810, 84180, 'eighty-four thousand one hundred eighty'); INSERT INTO t3 VALUES(8811, 14910, 'fourteen thousand nine hundred ten'); INSERT INTO t3 VALUES(8812, 49664, 'forty-nine thousand six hundred sixty-four'); INSERT INTO t3 VALUES(8813, 89952, 'eighty-nine thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(8814, 53247, 'fifty-three thousand two hundred forty-seven'); INSERT INTO t3 VALUES(8815, 66226, 'sixty-six thousand two hundred twenty-six'); INSERT INTO t3 VALUES(8816, 57384, 'fifty-seven thousand three hundred eighty-four'); INSERT INTO t3 VALUES(8817, 31951, 'thirty-one thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(8818, 44210, 'forty-four thousand two hundred ten'); INSERT INTO t3 VALUES(8819, 55985, 'fifty-five thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(8820, 60322, 'sixty thousand three hundred twenty-two'); INSERT INTO t3 VALUES(8821, 13591, 'thirteen thousand five hundred ninety-one'); INSERT INTO t3 VALUES(8822, 45349, 'forty-five thousand three hundred forty-nine'); INSERT INTO t3 VALUES(8823, 44807, 'forty-four thousand eight hundred seven'); INSERT INTO t3 VALUES(8824, 75197, 'seventy-five thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(8825, 28009, 'twenty-eight thousand nine'); INSERT INTO t3 VALUES(8826, 51527, 'fifty-one thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(8827, 578, 'five hundred seventy-eight'); INSERT INTO t3 VALUES(8828, 83112, 'eighty-three thousand one hundred twelve'); INSERT INTO t3 VALUES(8829, 36658, 'thirty-six thousand six hundred fifty-eight'); INSERT INTO t3 VALUES(8830, 20388, 'twenty thousand three hundred eighty-eight'); INSERT INTO t3 VALUES(8831, 32378, 'thirty-two thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(8832, 22213, 'twenty-two thousand two hundred thirteen'); INSERT INTO t3 VALUES(8833, 10178, 'ten thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(8834, 75615, 'seventy-five thousand six hundred fifteen'); INSERT INTO t3 VALUES(8835, 2848, 'two thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(8836, 22770, 'twenty-two thousand seven hundred seventy'); INSERT INTO t3 VALUES(8837, 1945, 'one thousand nine hundred forty-five'); INSERT INTO t3 VALUES(8838, 64352, 'sixty-four thousand three hundred fifty-two'); INSERT INTO t3 VALUES(8839, 66296, 'sixty-six thousand two hundred ninety-six'); INSERT INTO t3 VALUES(8840, 26810, 'twenty-six thousand eight hundred ten'); INSERT INTO t3 VALUES(8841, 9063, 'nine thousand sixty-three'); INSERT INTO t3 VALUES(8842, 70208, 'seventy thousand two hundred eight'); INSERT INTO t3 VALUES(8843, 56121, 'fifty-six thousand one hundred twenty-one'); INSERT INTO t3 VALUES(8844, 94374, 'ninety-four thousand three hundred seventy-four'); INSERT INTO t3 VALUES(8845, 5647, 'five thousand six hundred forty-seven'); INSERT INTO t3 VALUES(8846, 51547, 'fifty-one thousand five hundred forty-seven'); INSERT INTO t3 VALUES(8847, 73646, 'seventy-three thousand six hundred forty-six'); INSERT INTO t3 VALUES(8848, 89250, 'eighty-nine thousand two hundred fifty'); INSERT INTO t3 VALUES(8849, 51303, 'fifty-one thousand three hundred three'); INSERT INTO t3 VALUES(8850, 41930, 'forty-one thousand nine hundred thirty'); INSERT INTO t3 VALUES(8851, 87727, 'eighty-seven thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(8852, 28453, 'twenty-eight thousand four hundred fifty-three'); INSERT INTO t3 VALUES(8853, 50451, 'fifty thousand four hundred fifty-one'); INSERT INTO t3 VALUES(8854, 38686, 'thirty-eight thousand six hundred eighty-six'); INSERT INTO t3 VALUES(8855, 82827, 'eighty-two thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(8856, 71581, 'seventy-one thousand five hundred eighty-one'); INSERT INTO t3 VALUES(8857, 14394, 'fourteen thousand three hundred ninety-four'); INSERT INTO t3 VALUES(8858, 46068, 'forty-six thousand sixty-eight'); INSERT INTO t3 VALUES(8859, 76252, 'seventy-six thousand two hundred fifty-two'); INSERT INTO t3 VALUES(8860, 27505, 'twenty-seven thousand five hundred five'); INSERT INTO t3 VALUES(8861, 30289, 'thirty thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(8862, 38900, 'thirty-eight thousand nine hundred'); INSERT INTO t3 VALUES(8863, 97764, 'ninety-seven thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(8864, 49229, 'forty-nine thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(8865, 81206, 'eighty-one thousand two hundred six'); INSERT INTO t3 VALUES(8866, 25077, 'twenty-five thousand seventy-seven'); INSERT INTO t3 VALUES(8867, 30768, 'thirty thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(8868, 76620, 'seventy-six thousand six hundred twenty'); INSERT INTO t3 VALUES(8869, 88283, 'eighty-eight thousand two hundred eighty-three'); INSERT INTO t3 VALUES(8870, 69601, 'sixty-nine thousand six hundred one'); INSERT INTO t3 VALUES(8871, 15776, 'fifteen thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(8872, 31227, 'thirty-one thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(8873, 66875, 'sixty-six thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(8874, 11949, 'eleven thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(8875, 43867, 'forty-three thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(8876, 23306, 'twenty-three thousand three hundred six'); INSERT INTO t3 VALUES(8877, 95692, 'ninety-five thousand six hundred ninety-two'); INSERT INTO t3 VALUES(8878, 18750, 'eighteen thousand seven hundred fifty'); INSERT INTO t3 VALUES(8879, 66788, 'sixty-six thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(8880, 29822, 'twenty-nine thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(8881, 76107, 'seventy-six thousand one hundred seven'); INSERT INTO t3 VALUES(8882, 45957, 'forty-five thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(8883, 73445, 'seventy-three thousand four hundred forty-five'); INSERT INTO t3 VALUES(8884, 2545, 'two thousand five hundred forty-five'); INSERT INTO t3 VALUES(8885, 19954, 'nineteen thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(8886, 27381, 'twenty-seven thousand three hundred eighty-one'); INSERT INTO t3 VALUES(8887, 49683, 'forty-nine thousand six hundred eighty-three'); INSERT INTO t3 VALUES(8888, 97902, 'ninety-seven thousand nine hundred two'); INSERT INTO t3 VALUES(8889, 5402, 'five thousand four hundred two'); INSERT INTO t3 VALUES(8890, 99699, 'ninety-nine thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(8891, 59650, 'fifty-nine thousand six hundred fifty'); INSERT INTO t3 VALUES(8892, 33569, 'thirty-three thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(8893, 93460, 'ninety-three thousand four hundred sixty'); INSERT INTO t3 VALUES(8894, 77070, 'seventy-seven thousand seventy'); INSERT INTO t3 VALUES(8895, 23010, 'twenty-three thousand ten'); INSERT INTO t3 VALUES(8896, 54896, 'fifty-four thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(8897, 30246, 'thirty thousand two hundred forty-six'); INSERT INTO t3 VALUES(8898, 29053, 'twenty-nine thousand fifty-three'); INSERT INTO t3 VALUES(8899, 83920, 'eighty-three thousand nine hundred twenty'); INSERT INTO t3 VALUES(8900, 99441, 'ninety-nine thousand four hundred forty-one'); INSERT INTO t3 VALUES(8901, 8083, 'eight thousand eighty-three'); INSERT INTO t3 VALUES(8902, 47671, 'forty-seven thousand six hundred seventy-one'); INSERT INTO t3 VALUES(8903, 67591, 'sixty-seven thousand five hundred ninety-one'); INSERT INTO t3 VALUES(8904, 27541, 'twenty-seven thousand five hundred forty-one'); INSERT INTO t3 VALUES(8905, 85863, 'eighty-five thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(8906, 53989, 'fifty-three thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(8907, 14198, 'fourteen thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(8908, 6871, 'six thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(8909, 61035, 'sixty-one thousand thirty-five'); INSERT INTO t3 VALUES(8910, 58806, 'fifty-eight thousand eight hundred six'); INSERT INTO t3 VALUES(8911, 94134, 'ninety-four thousand one hundred thirty-four'); INSERT INTO t3 VALUES(8912, 44315, 'forty-four thousand three hundred fifteen'); INSERT INTO t3 VALUES(8913, 45755, 'forty-five thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(8914, 80281, 'eighty thousand two hundred eighty-one'); INSERT INTO t3 VALUES(8915, 43508, 'forty-three thousand five hundred eight'); INSERT INTO t3 VALUES(8916, 5750, 'five thousand seven hundred fifty'); INSERT INTO t3 VALUES(8917, 41402, 'forty-one thousand four hundred two'); INSERT INTO t3 VALUES(8918, 37310, 'thirty-seven thousand three hundred ten'); INSERT INTO t3 VALUES(8919, 50893, 'fifty thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(8920, 183, 'one hundred eighty-three'); INSERT INTO t3 VALUES(8921, 38346, 'thirty-eight thousand three hundred forty-six'); INSERT INTO t3 VALUES(8922, 97429, 'ninety-seven thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(8923, 98566, 'ninety-eight thousand five hundred sixty-six'); INSERT INTO t3 VALUES(8924, 6844, 'six thousand eight hundred forty-four'); INSERT INTO t3 VALUES(8925, 21894, 'twenty-one thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(8926, 53738, 'fifty-three thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(8927, 72729, 'seventy-two thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(8928, 96701, 'ninety-six thousand seven hundred one'); INSERT INTO t3 VALUES(8929, 89221, 'eighty-nine thousand two hundred twenty-one'); INSERT INTO t3 VALUES(8930, 51201, 'fifty-one thousand two hundred one'); INSERT INTO t3 VALUES(8931, 31702, 'thirty-one thousand seven hundred two'); INSERT INTO t3 VALUES(8932, 24390, 'twenty-four thousand three hundred ninety'); INSERT INTO t3 VALUES(8933, 55746, 'fifty-five thousand seven hundred forty-six'); INSERT INTO t3 VALUES(8934, 68375, 'sixty-eight thousand three hundred seventy-five'); INSERT INTO t3 VALUES(8935, 87377, 'eighty-seven thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(8936, 30091, 'thirty thousand ninety-one'); INSERT INTO t3 VALUES(8937, 82666, 'eighty-two thousand six hundred sixty-six'); INSERT INTO t3 VALUES(8938, 67335, 'sixty-seven thousand three hundred thirty-five'); INSERT INTO t3 VALUES(8939, 80977, 'eighty thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(8940, 39017, 'thirty-nine thousand seventeen'); INSERT INTO t3 VALUES(8941, 22438, 'twenty-two thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(8942, 96170, 'ninety-six thousand one hundred seventy'); INSERT INTO t3 VALUES(8943, 69719, 'sixty-nine thousand seven hundred nineteen'); INSERT INTO t3 VALUES(8944, 61880, 'sixty-one thousand eight hundred eighty'); INSERT INTO t3 VALUES(8945, 87408, 'eighty-seven thousand four hundred eight'); INSERT INTO t3 VALUES(8946, 32094, 'thirty-two thousand ninety-four'); INSERT INTO t3 VALUES(8947, 54233, 'fifty-four thousand two hundred thirty-three'); INSERT INTO t3 VALUES(8948, 46995, 'forty-six thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(8949, 75594, 'seventy-five thousand five hundred ninety-four'); INSERT INTO t3 VALUES(8950, 79004, 'seventy-nine thousand four'); INSERT INTO t3 VALUES(8951, 24787, 'twenty-four thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(8952, 33917, 'thirty-three thousand nine hundred seventeen'); INSERT INTO t3 VALUES(8953, 20650, 'twenty thousand six hundred fifty'); INSERT INTO t3 VALUES(8954, 15545, 'fifteen thousand five hundred forty-five'); INSERT INTO t3 VALUES(8955, 28465, 'twenty-eight thousand four hundred sixty-five'); INSERT INTO t3 VALUES(8956, 77966, 'seventy-seven thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(8957, 40490, 'forty thousand four hundred ninety'); INSERT INTO t3 VALUES(8958, 65944, 'sixty-five thousand nine hundred forty-four'); INSERT INTO t3 VALUES(8959, 71646, 'seventy-one thousand six hundred forty-six'); INSERT INTO t3 VALUES(8960, 83584, 'eighty-three thousand five hundred eighty-four'); INSERT INTO t3 VALUES(8961, 73512, 'seventy-three thousand five hundred twelve'); INSERT INTO t3 VALUES(8962, 49920, 'forty-nine thousand nine hundred twenty'); INSERT INTO t3 VALUES(8963, 53318, 'fifty-three thousand three hundred eighteen'); INSERT INTO t3 VALUES(8964, 39959, 'thirty-nine thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(8965, 72167, 'seventy-two thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(8966, 86184, 'eighty-six thousand one hundred eighty-four'); INSERT INTO t3 VALUES(8967, 24020, 'twenty-four thousand twenty'); INSERT INTO t3 VALUES(8968, 51653, 'fifty-one thousand six hundred fifty-three'); INSERT INTO t3 VALUES(8969, 80578, 'eighty thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(8970, 39003, 'thirty-nine thousand three'); INSERT INTO t3 VALUES(8971, 80866, 'eighty thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(8972, 14425, 'fourteen thousand four hundred twenty-five'); INSERT INTO t3 VALUES(8973, 55029, 'fifty-five thousand twenty-nine'); INSERT INTO t3 VALUES(8974, 57905, 'fifty-seven thousand nine hundred five'); INSERT INTO t3 VALUES(8975, 20717, 'twenty thousand seven hundred seventeen'); INSERT INTO t3 VALUES(8976, 89894, 'eighty-nine thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(8977, 30105, 'thirty thousand one hundred five'); INSERT INTO t3 VALUES(8978, 78493, 'seventy-eight thousand four hundred ninety-three'); INSERT INTO t3 VALUES(8979, 17777, 'seventeen thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(8980, 74946, 'seventy-four thousand nine hundred forty-six'); INSERT INTO t3 VALUES(8981, 72797, 'seventy-two thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(8982, 75024, 'seventy-five thousand twenty-four'); INSERT INTO t3 VALUES(8983, 51532, 'fifty-one thousand five hundred thirty-two'); INSERT INTO t3 VALUES(8984, 33724, 'thirty-three thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(8985, 2930, 'two thousand nine hundred thirty'); INSERT INTO t3 VALUES(8986, 54770, 'fifty-four thousand seven hundred seventy'); INSERT INTO t3 VALUES(8987, 80780, 'eighty thousand seven hundred eighty'); INSERT INTO t3 VALUES(8988, 73147, 'seventy-three thousand one hundred forty-seven'); INSERT INTO t3 VALUES(8989, 89684, 'eighty-nine thousand six hundred eighty-four'); INSERT INTO t3 VALUES(8990, 71585, 'seventy-one thousand five hundred eighty-five'); INSERT INTO t3 VALUES(8991, 51694, 'fifty-one thousand six hundred ninety-four'); INSERT INTO t3 VALUES(8992, 55158, 'fifty-five thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(8993, 28755, 'twenty-eight thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(8994, 66584, 'sixty-six thousand five hundred eighty-four'); INSERT INTO t3 VALUES(8995, 59752, 'fifty-nine thousand seven hundred fifty-two'); INSERT INTO t3 VALUES(8996, 95143, 'ninety-five thousand one hundred forty-three'); INSERT INTO t3 VALUES(8997, 5092, 'five thousand ninety-two'); INSERT INTO t3 VALUES(8998, 56792, 'fifty-six thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(8999, 88899, 'eighty-eight thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(9000, 42062, 'forty-two thousand sixty-two'); INSERT INTO t3 VALUES(9001, 87458, 'eighty-seven thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(9002, 83037, 'eighty-three thousand thirty-seven'); INSERT INTO t3 VALUES(9003, 45442, 'forty-five thousand four hundred forty-two'); INSERT INTO t3 VALUES(9004, 96335, 'ninety-six thousand three hundred thirty-five'); INSERT INTO t3 VALUES(9005, 17437, 'seventeen thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(9006, 41234, 'forty-one thousand two hundred thirty-four'); INSERT INTO t3 VALUES(9007, 38464, 'thirty-eight thousand four hundred sixty-four'); INSERT INTO t3 VALUES(9008, 25912, 'twenty-five thousand nine hundred twelve'); INSERT INTO t3 VALUES(9009, 18006, 'eighteen thousand six'); INSERT INTO t3 VALUES(9010, 58518, 'fifty-eight thousand five hundred eighteen'); INSERT INTO t3 VALUES(9011, 96286, 'ninety-six thousand two hundred eighty-six'); INSERT INTO t3 VALUES(9012, 88919, 'eighty-eight thousand nine hundred nineteen'); INSERT INTO t3 VALUES(9013, 86871, 'eighty-six thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(9014, 55545, 'fifty-five thousand five hundred forty-five'); INSERT INTO t3 VALUES(9015, 52368, 'fifty-two thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(9016, 42202, 'forty-two thousand two hundred two'); INSERT INTO t3 VALUES(9017, 31564, 'thirty-one thousand five hundred sixty-four'); INSERT INTO t3 VALUES(9018, 17558, 'seventeen thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(9019, 25854, 'twenty-five thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(9020, 346, 'three hundred forty-six'); INSERT INTO t3 VALUES(9021, 67734, 'sixty-seven thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(9022, 65704, 'sixty-five thousand seven hundred four'); INSERT INTO t3 VALUES(9023, 95894, 'ninety-five thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(9024, 18630, 'eighteen thousand six hundred thirty'); INSERT INTO t3 VALUES(9025, 33634, 'thirty-three thousand six hundred thirty-four'); INSERT INTO t3 VALUES(9026, 40109, 'forty thousand one hundred nine'); INSERT INTO t3 VALUES(9027, 63064, 'sixty-three thousand sixty-four'); INSERT INTO t3 VALUES(9028, 77187, 'seventy-seven thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(9029, 99038, 'ninety-nine thousand thirty-eight'); INSERT INTO t3 VALUES(9030, 76139, 'seventy-six thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(9031, 82667, 'eighty-two thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(9032, 70647, 'seventy thousand six hundred forty-seven'); INSERT INTO t3 VALUES(9033, 38367, 'thirty-eight thousand three hundred sixty-seven'); INSERT INTO t3 VALUES(9034, 93294, 'ninety-three thousand two hundred ninety-four'); INSERT INTO t3 VALUES(9035, 66244, 'sixty-six thousand two hundred forty-four'); INSERT INTO t3 VALUES(9036, 24895, 'twenty-four thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(9037, 28956, 'twenty-eight thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(9038, 21442, 'twenty-one thousand four hundred forty-two'); INSERT INTO t3 VALUES(9039, 82489, 'eighty-two thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(9040, 15722, 'fifteen thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(9041, 5325, 'five thousand three hundred twenty-five'); INSERT INTO t3 VALUES(9042, 3042, 'three thousand forty-two'); INSERT INTO t3 VALUES(9043, 69840, 'sixty-nine thousand eight hundred forty'); INSERT INTO t3 VALUES(9044, 86368, 'eighty-six thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(9045, 41213, 'forty-one thousand two hundred thirteen'); INSERT INTO t3 VALUES(9046, 66450, 'sixty-six thousand four hundred fifty'); INSERT INTO t3 VALUES(9047, 80470, 'eighty thousand four hundred seventy'); INSERT INTO t3 VALUES(9048, 63488, 'sixty-three thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(9049, 9774, 'nine thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(9050, 79757, 'seventy-nine thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(9051, 31476, 'thirty-one thousand four hundred seventy-six'); INSERT INTO t3 VALUES(9052, 54062, 'fifty-four thousand sixty-two'); INSERT INTO t3 VALUES(9053, 99610, 'ninety-nine thousand six hundred ten'); INSERT INTO t3 VALUES(9054, 50809, 'fifty thousand eight hundred nine'); INSERT INTO t3 VALUES(9055, 29135, 'twenty-nine thousand one hundred thirty-five'); INSERT INTO t3 VALUES(9056, 58535, 'fifty-eight thousand five hundred thirty-five'); INSERT INTO t3 VALUES(9057, 62396, 'sixty-two thousand three hundred ninety-six'); INSERT INTO t3 VALUES(9058, 85313, 'eighty-five thousand three hundred thirteen'); INSERT INTO t3 VALUES(9059, 18362, 'eighteen thousand three hundred sixty-two'); INSERT INTO t3 VALUES(9060, 33031, 'thirty-three thousand thirty-one'); INSERT INTO t3 VALUES(9061, 76547, 'seventy-six thousand five hundred forty-seven'); INSERT INTO t3 VALUES(9062, 18035, 'eighteen thousand thirty-five'); INSERT INTO t3 VALUES(9063, 93426, 'ninety-three thousand four hundred twenty-six'); INSERT INTO t3 VALUES(9064, 40275, 'forty thousand two hundred seventy-five'); INSERT INTO t3 VALUES(9065, 36240, 'thirty-six thousand two hundred forty'); INSERT INTO t3 VALUES(9066, 95982, 'ninety-five thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(9067, 63305, 'sixty-three thousand three hundred five'); INSERT INTO t3 VALUES(9068, 49114, 'forty-nine thousand one hundred fourteen'); INSERT INTO t3 VALUES(9069, 96689, 'ninety-six thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(9070, 39056, 'thirty-nine thousand fifty-six'); INSERT INTO t3 VALUES(9071, 39255, 'thirty-nine thousand two hundred fifty-five'); INSERT INTO t3 VALUES(9072, 18392, 'eighteen thousand three hundred ninety-two'); INSERT INTO t3 VALUES(9073, 52779, 'fifty-two thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(9074, 70740, 'seventy thousand seven hundred forty'); INSERT INTO t3 VALUES(9075, 28177, 'twenty-eight thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(9076, 53022, 'fifty-three thousand twenty-two'); INSERT INTO t3 VALUES(9077, 8438, 'eight thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(9078, 90857, 'ninety thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(9079, 71045, 'seventy-one thousand forty-five'); INSERT INTO t3 VALUES(9080, 73389, 'seventy-three thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(9081, 62752, 'sixty-two thousand seven hundred fifty-two'); INSERT INTO t3 VALUES(9082, 68794, 'sixty-eight thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(9083, 61942, 'sixty-one thousand nine hundred forty-two'); INSERT INTO t3 VALUES(9084, 13103, 'thirteen thousand one hundred three'); INSERT INTO t3 VALUES(9085, 76440, 'seventy-six thousand four hundred forty'); INSERT INTO t3 VALUES(9086, 67343, 'sixty-seven thousand three hundred forty-three'); INSERT INTO t3 VALUES(9087, 96950, 'ninety-six thousand nine hundred fifty'); INSERT INTO t3 VALUES(9088, 38512, 'thirty-eight thousand five hundred twelve'); INSERT INTO t3 VALUES(9089, 65977, 'sixty-five thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(9090, 14040, 'fourteen thousand forty'); INSERT INTO t3 VALUES(9091, 64962, 'sixty-four thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(9092, 57923, 'fifty-seven thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(9093, 39954, 'thirty-nine thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(9094, 44316, 'forty-four thousand three hundred sixteen'); INSERT INTO t3 VALUES(9095, 59214, 'fifty-nine thousand two hundred fourteen'); INSERT INTO t3 VALUES(9096, 33593, 'thirty-three thousand five hundred ninety-three'); INSERT INTO t3 VALUES(9097, 92761, 'ninety-two thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(9098, 10028, 'ten thousand twenty-eight'); INSERT INTO t3 VALUES(9099, 35798, 'thirty-five thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(9100, 84095, 'eighty-four thousand ninety-five'); INSERT INTO t3 VALUES(9101, 29822, 'twenty-nine thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(9102, 37880, 'thirty-seven thousand eight hundred eighty'); INSERT INTO t3 VALUES(9103, 35717, 'thirty-five thousand seven hundred seventeen'); INSERT INTO t3 VALUES(9104, 68276, 'sixty-eight thousand two hundred seventy-six'); INSERT INTO t3 VALUES(9105, 19185, 'nineteen thousand one hundred eighty-five'); INSERT INTO t3 VALUES(9106, 33368, 'thirty-three thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(9107, 93229, 'ninety-three thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(9108, 22248, 'twenty-two thousand two hundred forty-eight'); INSERT INTO t3 VALUES(9109, 94024, 'ninety-four thousand twenty-four'); INSERT INTO t3 VALUES(9110, 76816, 'seventy-six thousand eight hundred sixteen'); INSERT INTO t3 VALUES(9111, 8189, 'eight thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(9112, 14797, 'fourteen thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(9113, 32570, 'thirty-two thousand five hundred seventy'); INSERT INTO t3 VALUES(9114, 9894, 'nine thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(9115, 68941, 'sixty-eight thousand nine hundred forty-one'); INSERT INTO t3 VALUES(9116, 27996, 'twenty-seven thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(9117, 35583, 'thirty-five thousand five hundred eighty-three'); INSERT INTO t3 VALUES(9118, 25430, 'twenty-five thousand four hundred thirty'); INSERT INTO t3 VALUES(9119, 22255, 'twenty-two thousand two hundred fifty-five'); INSERT INTO t3 VALUES(9120, 58894, 'fifty-eight thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(9121, 24066, 'twenty-four thousand sixty-six'); INSERT INTO t3 VALUES(9122, 38320, 'thirty-eight thousand three hundred twenty'); INSERT INTO t3 VALUES(9123, 10351, 'ten thousand three hundred fifty-one'); INSERT INTO t3 VALUES(9124, 8349, 'eight thousand three hundred forty-nine'); INSERT INTO t3 VALUES(9125, 79192, 'seventy-nine thousand one hundred ninety-two'); INSERT INTO t3 VALUES(9126, 11116, 'eleven thousand one hundred sixteen'); INSERT INTO t3 VALUES(9127, 8725, 'eight thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(9128, 65492, 'sixty-five thousand four hundred ninety-two'); INSERT INTO t3 VALUES(9129, 37008, 'thirty-seven thousand eight'); INSERT INTO t3 VALUES(9130, 28614, 'twenty-eight thousand six hundred fourteen'); INSERT INTO t3 VALUES(9131, 2083, 'two thousand eighty-three'); INSERT INTO t3 VALUES(9132, 15522, 'fifteen thousand five hundred twenty-two'); INSERT INTO t3 VALUES(9133, 37053, 'thirty-seven thousand fifty-three'); INSERT INTO t3 VALUES(9134, 54309, 'fifty-four thousand three hundred nine'); INSERT INTO t3 VALUES(9135, 56198, 'fifty-six thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(9136, 11354, 'eleven thousand three hundred fifty-four'); INSERT INTO t3 VALUES(9137, 32381, 'thirty-two thousand three hundred eighty-one'); INSERT INTO t3 VALUES(9138, 11379, 'eleven thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(9139, 79715, 'seventy-nine thousand seven hundred fifteen'); INSERT INTO t3 VALUES(9140, 99040, 'ninety-nine thousand forty'); INSERT INTO t3 VALUES(9141, 42907, 'forty-two thousand nine hundred seven'); INSERT INTO t3 VALUES(9142, 97582, 'ninety-seven thousand five hundred eighty-two'); INSERT INTO t3 VALUES(9143, 26920, 'twenty-six thousand nine hundred twenty'); INSERT INTO t3 VALUES(9144, 14972, 'fourteen thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(9145, 99929, 'ninety-nine thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(9146, 18113, 'eighteen thousand one hundred thirteen'); INSERT INTO t3 VALUES(9147, 48729, 'forty-eight thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(9148, 38634, 'thirty-eight thousand six hundred thirty-four'); INSERT INTO t3 VALUES(9149, 36178, 'thirty-six thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(9150, 20243, 'twenty thousand two hundred forty-three'); INSERT INTO t3 VALUES(9151, 42704, 'forty-two thousand seven hundred four'); INSERT INTO t3 VALUES(9152, 18710, 'eighteen thousand seven hundred ten'); INSERT INTO t3 VALUES(9153, 16143, 'sixteen thousand one hundred forty-three'); INSERT INTO t3 VALUES(9154, 32009, 'thirty-two thousand nine'); INSERT INTO t3 VALUES(9155, 63727, 'sixty-three thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(9156, 53242, 'fifty-three thousand two hundred forty-two'); INSERT INTO t3 VALUES(9157, 3236, 'three thousand two hundred thirty-six'); INSERT INTO t3 VALUES(9158, 55435, 'fifty-five thousand four hundred thirty-five'); INSERT INTO t3 VALUES(9159, 77610, 'seventy-seven thousand six hundred ten'); INSERT INTO t3 VALUES(9160, 1072, 'one thousand seventy-two'); INSERT INTO t3 VALUES(9161, 95288, 'ninety-five thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(9162, 64213, 'sixty-four thousand two hundred thirteen'); INSERT INTO t3 VALUES(9163, 92749, 'ninety-two thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(9164, 31485, 'thirty-one thousand four hundred eighty-five'); INSERT INTO t3 VALUES(9165, 22927, 'twenty-two thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(9166, 89768, 'eighty-nine thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(9167, 10867, 'ten thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(9168, 11046, 'eleven thousand forty-six'); INSERT INTO t3 VALUES(9169, 98054, 'ninety-eight thousand fifty-four'); INSERT INTO t3 VALUES(9170, 11549, 'eleven thousand five hundred forty-nine'); INSERT INTO t3 VALUES(9171, 67832, 'sixty-seven thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(9172, 2112, 'two thousand one hundred twelve'); INSERT INTO t3 VALUES(9173, 94490, 'ninety-four thousand four hundred ninety'); INSERT INTO t3 VALUES(9174, 51480, 'fifty-one thousand four hundred eighty'); INSERT INTO t3 VALUES(9175, 60796, 'sixty thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(9176, 26361, 'twenty-six thousand three hundred sixty-one'); INSERT INTO t3 VALUES(9177, 67022, 'sixty-seven thousand twenty-two'); INSERT INTO t3 VALUES(9178, 63130, 'sixty-three thousand one hundred thirty'); INSERT INTO t3 VALUES(9179, 46755, 'forty-six thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(9180, 21060, 'twenty-one thousand sixty'); INSERT INTO t3 VALUES(9181, 14523, 'fourteen thousand five hundred twenty-three'); INSERT INTO t3 VALUES(9182, 82727, 'eighty-two thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(9183, 1546, 'one thousand five hundred forty-six'); INSERT INTO t3 VALUES(9184, 72420, 'seventy-two thousand four hundred twenty'); INSERT INTO t3 VALUES(9185, 90446, 'ninety thousand four hundred forty-six'); INSERT INTO t3 VALUES(9186, 2821, 'two thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(9187, 81558, 'eighty-one thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(9188, 91643, 'ninety-one thousand six hundred forty-three'); INSERT INTO t3 VALUES(9189, 41793, 'forty-one thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(9190, 88071, 'eighty-eight thousand seventy-one'); INSERT INTO t3 VALUES(9191, 17534, 'seventeen thousand five hundred thirty-four'); INSERT INTO t3 VALUES(9192, 88129, 'eighty-eight thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(9193, 80657, 'eighty thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(9194, 91355, 'ninety-one thousand three hundred fifty-five'); INSERT INTO t3 VALUES(9195, 23533, 'twenty-three thousand five hundred thirty-three'); INSERT INTO t3 VALUES(9196, 27599, 'twenty-seven thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(9197, 72294, 'seventy-two thousand two hundred ninety-four'); INSERT INTO t3 VALUES(9198, 78603, 'seventy-eight thousand six hundred three'); INSERT INTO t3 VALUES(9199, 26761, 'twenty-six thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(9200, 59860, 'fifty-nine thousand eight hundred sixty'); INSERT INTO t3 VALUES(9201, 50947, 'fifty thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(9202, 43175, 'forty-three thousand one hundred seventy-five'); INSERT INTO t3 VALUES(9203, 48134, 'forty-eight thousand one hundred thirty-four'); INSERT INTO t3 VALUES(9204, 18280, 'eighteen thousand two hundred eighty'); INSERT INTO t3 VALUES(9205, 35461, 'thirty-five thousand four hundred sixty-one'); INSERT INTO t3 VALUES(9206, 91273, 'ninety-one thousand two hundred seventy-three'); INSERT INTO t3 VALUES(9207, 6046, 'six thousand forty-six'); INSERT INTO t3 VALUES(9208, 90076, 'ninety thousand seventy-six'); INSERT INTO t3 VALUES(9209, 66903, 'sixty-six thousand nine hundred three'); INSERT INTO t3 VALUES(9210, 13199, 'thirteen thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(9211, 83217, 'eighty-three thousand two hundred seventeen'); INSERT INTO t3 VALUES(9212, 92154, 'ninety-two thousand one hundred fifty-four'); INSERT INTO t3 VALUES(9213, 38937, 'thirty-eight thousand nine hundred thirty-seven'); INSERT INTO t3 VALUES(9214, 20628, 'twenty thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(9215, 62348, 'sixty-two thousand three hundred forty-eight'); INSERT INTO t3 VALUES(9216, 29919, 'twenty-nine thousand nine hundred nineteen'); INSERT INTO t3 VALUES(9217, 34281, 'thirty-four thousand two hundred eighty-one'); INSERT INTO t3 VALUES(9218, 15475, 'fifteen thousand four hundred seventy-five'); INSERT INTO t3 VALUES(9219, 37942, 'thirty-seven thousand nine hundred forty-two'); INSERT INTO t3 VALUES(9220, 31341, 'thirty-one thousand three hundred forty-one'); INSERT INTO t3 VALUES(9221, 59714, 'fifty-nine thousand seven hundred fourteen'); INSERT INTO t3 VALUES(9222, 33237, 'thirty-three thousand two hundred thirty-seven'); INSERT INTO t3 VALUES(9223, 70487, 'seventy thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(9224, 62617, 'sixty-two thousand six hundred seventeen'); INSERT INTO t3 VALUES(9225, 61349, 'sixty-one thousand three hundred forty-nine'); INSERT INTO t3 VALUES(9226, 64067, 'sixty-four thousand sixty-seven'); INSERT INTO t3 VALUES(9227, 65358, 'sixty-five thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(9228, 88344, 'eighty-eight thousand three hundred forty-four'); INSERT INTO t3 VALUES(9229, 64528, 'sixty-four thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(9230, 96716, 'ninety-six thousand seven hundred sixteen'); INSERT INTO t3 VALUES(9231, 77063, 'seventy-seven thousand sixty-three'); INSERT INTO t3 VALUES(9232, 75673, 'seventy-five thousand six hundred seventy-three'); INSERT INTO t3 VALUES(9233, 92475, 'ninety-two thousand four hundred seventy-five'); INSERT INTO t3 VALUES(9234, 50843, 'fifty thousand eight hundred forty-three'); INSERT INTO t3 VALUES(9235, 97043, 'ninety-seven thousand forty-three'); INSERT INTO t3 VALUES(9236, 6072, 'six thousand seventy-two'); INSERT INTO t3 VALUES(9237, 65314, 'sixty-five thousand three hundred fourteen'); INSERT INTO t3 VALUES(9238, 82344, 'eighty-two thousand three hundred forty-four'); INSERT INTO t3 VALUES(9239, 74018, 'seventy-four thousand eighteen'); INSERT INTO t3 VALUES(9240, 32928, 'thirty-two thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(9241, 60082, 'sixty thousand eighty-two'); INSERT INTO t3 VALUES(9242, 81604, 'eighty-one thousand six hundred four'); INSERT INTO t3 VALUES(9243, 38115, 'thirty-eight thousand one hundred fifteen'); INSERT INTO t3 VALUES(9244, 80246, 'eighty thousand two hundred forty-six'); INSERT INTO t3 VALUES(9245, 50234, 'fifty thousand two hundred thirty-four'); INSERT INTO t3 VALUES(9246, 8465, 'eight thousand four hundred sixty-five'); INSERT INTO t3 VALUES(9247, 43140, 'forty-three thousand one hundred forty'); INSERT INTO t3 VALUES(9248, 17223, 'seventeen thousand two hundred twenty-three'); INSERT INTO t3 VALUES(9249, 93099, 'ninety-three thousand ninety-nine'); INSERT INTO t3 VALUES(9250, 70775, 'seventy thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(9251, 77097, 'seventy-seven thousand ninety-seven'); INSERT INTO t3 VALUES(9252, 26685, 'twenty-six thousand six hundred eighty-five'); INSERT INTO t3 VALUES(9253, 84011, 'eighty-four thousand eleven'); INSERT INTO t3 VALUES(9254, 35749, 'thirty-five thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(9255, 43137, 'forty-three thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(9256, 73765, 'seventy-three thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(9257, 61041, 'sixty-one thousand forty-one'); INSERT INTO t3 VALUES(9258, 59354, 'fifty-nine thousand three hundred fifty-four'); INSERT INTO t3 VALUES(9259, 19542, 'nineteen thousand five hundred forty-two'); INSERT INTO t3 VALUES(9260, 71523, 'seventy-one thousand five hundred twenty-three'); INSERT INTO t3 VALUES(9261, 2298, 'two thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(9262, 715, 'seven hundred fifteen'); INSERT INTO t3 VALUES(9263, 60243, 'sixty thousand two hundred forty-three'); INSERT INTO t3 VALUES(9264, 32053, 'thirty-two thousand fifty-three'); INSERT INTO t3 VALUES(9265, 12963, 'twelve thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(9266, 24250, 'twenty-four thousand two hundred fifty'); INSERT INTO t3 VALUES(9267, 36631, 'thirty-six thousand six hundred thirty-one'); INSERT INTO t3 VALUES(9268, 52928, 'fifty-two thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(9269, 16333, 'sixteen thousand three hundred thirty-three'); INSERT INTO t3 VALUES(9270, 82870, 'eighty-two thousand eight hundred seventy'); INSERT INTO t3 VALUES(9271, 81515, 'eighty-one thousand five hundred fifteen'); INSERT INTO t3 VALUES(9272, 99191, 'ninety-nine thousand one hundred ninety-one'); INSERT INTO t3 VALUES(9273, 87415, 'eighty-seven thousand four hundred fifteen'); INSERT INTO t3 VALUES(9274, 55020, 'fifty-five thousand twenty'); INSERT INTO t3 VALUES(9275, 25213, 'twenty-five thousand two hundred thirteen'); INSERT INTO t3 VALUES(9276, 38515, 'thirty-eight thousand five hundred fifteen'); INSERT INTO t3 VALUES(9277, 56758, 'fifty-six thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(9278, 24777, 'twenty-four thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(9279, 4780, 'four thousand seven hundred eighty'); INSERT INTO t3 VALUES(9280, 12336, 'twelve thousand three hundred thirty-six'); INSERT INTO t3 VALUES(9281, 24419, 'twenty-four thousand four hundred nineteen'); INSERT INTO t3 VALUES(9282, 29000, 'twenty-nine thousand'); INSERT INTO t3 VALUES(9283, 26475, 'twenty-six thousand four hundred seventy-five'); INSERT INTO t3 VALUES(9284, 10365, 'ten thousand three hundred sixty-five'); INSERT INTO t3 VALUES(9285, 4733, 'four thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(9286, 62551, 'sixty-two thousand five hundred fifty-one'); INSERT INTO t3 VALUES(9287, 9207, 'nine thousand two hundred seven'); INSERT INTO t3 VALUES(9288, 69259, 'sixty-nine thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(9289, 64025, 'sixty-four thousand twenty-five'); INSERT INTO t3 VALUES(9290, 79316, 'seventy-nine thousand three hundred sixteen'); INSERT INTO t3 VALUES(9291, 53916, 'fifty-three thousand nine hundred sixteen'); INSERT INTO t3 VALUES(9292, 56301, 'fifty-six thousand three hundred one'); INSERT INTO t3 VALUES(9293, 17156, 'seventeen thousand one hundred fifty-six'); INSERT INTO t3 VALUES(9294, 81030, 'eighty-one thousand thirty'); INSERT INTO t3 VALUES(9295, 65931, 'sixty-five thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(9296, 70204, 'seventy thousand two hundred four'); INSERT INTO t3 VALUES(9297, 88942, 'eighty-eight thousand nine hundred forty-two'); INSERT INTO t3 VALUES(9298, 54425, 'fifty-four thousand four hundred twenty-five'); INSERT INTO t3 VALUES(9299, 45614, 'forty-five thousand six hundred fourteen'); INSERT INTO t3 VALUES(9300, 33829, 'thirty-three thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(9301, 47087, 'forty-seven thousand eighty-seven'); INSERT INTO t3 VALUES(9302, 89386, 'eighty-nine thousand three hundred eighty-six'); INSERT INTO t3 VALUES(9303, 80191, 'eighty thousand one hundred ninety-one'); INSERT INTO t3 VALUES(9304, 52285, 'fifty-two thousand two hundred eighty-five'); INSERT INTO t3 VALUES(9305, 44795, 'forty-four thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(9306, 71836, 'seventy-one thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(9307, 19547, 'nineteen thousand five hundred forty-seven'); INSERT INTO t3 VALUES(9308, 94144, 'ninety-four thousand one hundred forty-four'); INSERT INTO t3 VALUES(9309, 50085, 'fifty thousand eighty-five'); INSERT INTO t3 VALUES(9310, 12091, 'twelve thousand ninety-one'); INSERT INTO t3 VALUES(9311, 90620, 'ninety thousand six hundred twenty'); INSERT INTO t3 VALUES(9312, 21667, 'twenty-one thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(9313, 2828, 'two thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(9314, 79979, 'seventy-nine thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(9315, 42653, 'forty-two thousand six hundred fifty-three'); INSERT INTO t3 VALUES(9316, 22651, 'twenty-two thousand six hundred fifty-one'); INSERT INTO t3 VALUES(9317, 46836, 'forty-six thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(9318, 6891, 'six thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(9319, 65648, 'sixty-five thousand six hundred forty-eight'); INSERT INTO t3 VALUES(9320, 4568, 'four thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(9321, 70927, 'seventy thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(9322, 43772, 'forty-three thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(9323, 13829, 'thirteen thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(9324, 90942, 'ninety thousand nine hundred forty-two'); INSERT INTO t3 VALUES(9325, 16722, 'sixteen thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(9326, 70488, 'seventy thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(9327, 10181, 'ten thousand one hundred eighty-one'); INSERT INTO t3 VALUES(9328, 51044, 'fifty-one thousand forty-four'); INSERT INTO t3 VALUES(9329, 51516, 'fifty-one thousand five hundred sixteen'); INSERT INTO t3 VALUES(9330, 22091, 'twenty-two thousand ninety-one'); INSERT INTO t3 VALUES(9331, 46933, 'forty-six thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(9332, 13896, 'thirteen thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(9333, 52569, 'fifty-two thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(9334, 26404, 'twenty-six thousand four hundred four'); INSERT INTO t3 VALUES(9335, 65553, 'sixty-five thousand five hundred fifty-three'); INSERT INTO t3 VALUES(9336, 7091, 'seven thousand ninety-one'); INSERT INTO t3 VALUES(9337, 53998, 'fifty-three thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(9338, 80480, 'eighty thousand four hundred eighty'); INSERT INTO t3 VALUES(9339, 73810, 'seventy-three thousand eight hundred ten'); INSERT INTO t3 VALUES(9340, 14807, 'fourteen thousand eight hundred seven'); INSERT INTO t3 VALUES(9341, 47446, 'forty-seven thousand four hundred forty-six'); INSERT INTO t3 VALUES(9342, 94755, 'ninety-four thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(9343, 41874, 'forty-one thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(9344, 49840, 'forty-nine thousand eight hundred forty'); INSERT INTO t3 VALUES(9345, 98442, 'ninety-eight thousand four hundred forty-two'); INSERT INTO t3 VALUES(9346, 52772, 'fifty-two thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(9347, 29363, 'twenty-nine thousand three hundred sixty-three'); INSERT INTO t3 VALUES(9348, 22819, 'twenty-two thousand eight hundred nineteen'); INSERT INTO t3 VALUES(9349, 70973, 'seventy thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(9350, 83032, 'eighty-three thousand thirty-two'); INSERT INTO t3 VALUES(9351, 22199, 'twenty-two thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(9352, 59295, 'fifty-nine thousand two hundred ninety-five'); INSERT INTO t3 VALUES(9353, 51235, 'fifty-one thousand two hundred thirty-five'); INSERT INTO t3 VALUES(9354, 70910, 'seventy thousand nine hundred ten'); INSERT INTO t3 VALUES(9355, 30627, 'thirty thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(9356, 30518, 'thirty thousand five hundred eighteen'); INSERT INTO t3 VALUES(9357, 92969, 'ninety-two thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(9358, 25130, 'twenty-five thousand one hundred thirty'); INSERT INTO t3 VALUES(9359, 54858, 'fifty-four thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(9360, 1656, 'one thousand six hundred fifty-six'); INSERT INTO t3 VALUES(9361, 96248, 'ninety-six thousand two hundred forty-eight'); INSERT INTO t3 VALUES(9362, 55331, 'fifty-five thousand three hundred thirty-one'); INSERT INTO t3 VALUES(9363, 23849, 'twenty-three thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(9364, 68780, 'sixty-eight thousand seven hundred eighty'); INSERT INTO t3 VALUES(9365, 68674, 'sixty-eight thousand six hundred seventy-four'); INSERT INTO t3 VALUES(9366, 9263, 'nine thousand two hundred sixty-three'); INSERT INTO t3 VALUES(9367, 15001, 'fifteen thousand one'); INSERT INTO t3 VALUES(9368, 44927, 'forty-four thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(9369, 74966, 'seventy-four thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(9370, 77659, 'seventy-seven thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(9371, 16585, 'sixteen thousand five hundred eighty-five'); INSERT INTO t3 VALUES(9372, 70397, 'seventy thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(9373, 54297, 'fifty-four thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(9374, 16079, 'sixteen thousand seventy-nine'); INSERT INTO t3 VALUES(9375, 57305, 'fifty-seven thousand three hundred five'); INSERT INTO t3 VALUES(9376, 28710, 'twenty-eight thousand seven hundred ten'); INSERT INTO t3 VALUES(9377, 72838, 'seventy-two thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(9378, 65613, 'sixty-five thousand six hundred thirteen'); INSERT INTO t3 VALUES(9379, 2299, 'two thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(9380, 81974, 'eighty-one thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(9381, 74535, 'seventy-four thousand five hundred thirty-five'); INSERT INTO t3 VALUES(9382, 92645, 'ninety-two thousand six hundred forty-five'); INSERT INTO t3 VALUES(9383, 46704, 'forty-six thousand seven hundred four'); INSERT INTO t3 VALUES(9384, 87040, 'eighty-seven thousand forty'); INSERT INTO t3 VALUES(9385, 17892, 'seventeen thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(9386, 17587, 'seventeen thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(9387, 46374, 'forty-six thousand three hundred seventy-four'); INSERT INTO t3 VALUES(9388, 33874, 'thirty-three thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(9389, 35921, 'thirty-five thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(9390, 34701, 'thirty-four thousand seven hundred one'); INSERT INTO t3 VALUES(9391, 69836, 'sixty-nine thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(9392, 25533, 'twenty-five thousand five hundred thirty-three'); INSERT INTO t3 VALUES(9393, 24734, 'twenty-four thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(9394, 93359, 'ninety-three thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(9395, 85681, 'eighty-five thousand six hundred eighty-one'); INSERT INTO t3 VALUES(9396, 83898, 'eighty-three thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(9397, 83847, 'eighty-three thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(9398, 91137, 'ninety-one thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(9399, 39397, 'thirty-nine thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(9400, 54919, 'fifty-four thousand nine hundred nineteen'); INSERT INTO t3 VALUES(9401, 51388, 'fifty-one thousand three hundred eighty-eight'); INSERT INTO t3 VALUES(9402, 2759, 'two thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(9403, 50512, 'fifty thousand five hundred twelve'); INSERT INTO t3 VALUES(9404, 91961, 'ninety-one thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(9405, 25773, 'twenty-five thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(9406, 90873, 'ninety thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(9407, 48072, 'forty-eight thousand seventy-two'); INSERT INTO t3 VALUES(9408, 76197, 'seventy-six thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(9409, 23501, 'twenty-three thousand five hundred one'); INSERT INTO t3 VALUES(9410, 15196, 'fifteen thousand one hundred ninety-six'); INSERT INTO t3 VALUES(9411, 92399, 'ninety-two thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(9412, 97769, 'ninety-seven thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(9413, 27952, 'twenty-seven thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(9414, 11128, 'eleven thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(9415, 63811, 'sixty-three thousand eight hundred eleven'); INSERT INTO t3 VALUES(9416, 70663, 'seventy thousand six hundred sixty-three'); INSERT INTO t3 VALUES(9417, 95007, 'ninety-five thousand seven'); INSERT INTO t3 VALUES(9418, 58978, 'fifty-eight thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(9419, 31954, 'thirty-one thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(9420, 81219, 'eighty-one thousand two hundred nineteen'); INSERT INTO t3 VALUES(9421, 5188, 'five thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(9422, 7825, 'seven thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(9423, 9196, 'nine thousand one hundred ninety-six'); INSERT INTO t3 VALUES(9424, 86791, 'eighty-six thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(9425, 29721, 'twenty-nine thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(9426, 12847, 'twelve thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(9427, 99213, 'ninety-nine thousand two hundred thirteen'); INSERT INTO t3 VALUES(9428, 66885, 'sixty-six thousand eight hundred eighty-five'); INSERT INTO t3 VALUES(9429, 42654, 'forty-two thousand six hundred fifty-four'); INSERT INTO t3 VALUES(9430, 20906, 'twenty thousand nine hundred six'); INSERT INTO t3 VALUES(9431, 62821, 'sixty-two thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(9432, 75368, 'seventy-five thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(9433, 49370, 'forty-nine thousand three hundred seventy'); INSERT INTO t3 VALUES(9434, 39473, 'thirty-nine thousand four hundred seventy-three'); INSERT INTO t3 VALUES(9435, 9521, 'nine thousand five hundred twenty-one'); INSERT INTO t3 VALUES(9436, 89273, 'eighty-nine thousand two hundred seventy-three'); INSERT INTO t3 VALUES(9437, 12641, 'twelve thousand six hundred forty-one'); INSERT INTO t3 VALUES(9438, 41305, 'forty-one thousand three hundred five'); INSERT INTO t3 VALUES(9439, 31247, 'thirty-one thousand two hundred forty-seven'); INSERT INTO t3 VALUES(9440, 81295, 'eighty-one thousand two hundred ninety-five'); INSERT INTO t3 VALUES(9441, 86702, 'eighty-six thousand seven hundred two'); INSERT INTO t3 VALUES(9442, 58812, 'fifty-eight thousand eight hundred twelve'); INSERT INTO t3 VALUES(9443, 94537, 'ninety-four thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(9444, 27049, 'twenty-seven thousand forty-nine'); INSERT INTO t3 VALUES(9445, 17031, 'seventeen thousand thirty-one'); INSERT INTO t3 VALUES(9446, 69314, 'sixty-nine thousand three hundred fourteen'); INSERT INTO t3 VALUES(9447, 23716, 'twenty-three thousand seven hundred sixteen'); INSERT INTO t3 VALUES(9448, 76076, 'seventy-six thousand seventy-six'); INSERT INTO t3 VALUES(9449, 2717, 'two thousand seven hundred seventeen'); INSERT INTO t3 VALUES(9450, 44747, 'forty-four thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(9451, 53340, 'fifty-three thousand three hundred forty'); INSERT INTO t3 VALUES(9452, 95746, 'ninety-five thousand seven hundred forty-six'); INSERT INTO t3 VALUES(9453, 71187, 'seventy-one thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(9454, 7917, 'seven thousand nine hundred seventeen'); INSERT INTO t3 VALUES(9455, 28789, 'twenty-eight thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(9456, 60796, 'sixty thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(9457, 81345, 'eighty-one thousand three hundred forty-five'); INSERT INTO t3 VALUES(9458, 9391, 'nine thousand three hundred ninety-one'); INSERT INTO t3 VALUES(9459, 64031, 'sixty-four thousand thirty-one'); INSERT INTO t3 VALUES(9460, 55265, 'fifty-five thousand two hundred sixty-five'); INSERT INTO t3 VALUES(9461, 34927, 'thirty-four thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(9462, 41428, 'forty-one thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(9463, 83770, 'eighty-three thousand seven hundred seventy'); INSERT INTO t3 VALUES(9464, 70159, 'seventy thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(9465, 18267, 'eighteen thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(9466, 39244, 'thirty-nine thousand two hundred forty-four'); INSERT INTO t3 VALUES(9467, 44228, 'forty-four thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(9468, 1947, 'one thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(9469, 72422, 'seventy-two thousand four hundred twenty-two'); INSERT INTO t3 VALUES(9470, 53802, 'fifty-three thousand eight hundred two'); INSERT INTO t3 VALUES(9471, 64829, 'sixty-four thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(9472, 6289, 'six thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(9473, 62878, 'sixty-two thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(9474, 22415, 'twenty-two thousand four hundred fifteen'); INSERT INTO t3 VALUES(9475, 69964, 'sixty-nine thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(9476, 59869, 'fifty-nine thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(9477, 2433, 'two thousand four hundred thirty-three'); INSERT INTO t3 VALUES(9478, 35295, 'thirty-five thousand two hundred ninety-five'); INSERT INTO t3 VALUES(9479, 44059, 'forty-four thousand fifty-nine'); INSERT INTO t3 VALUES(9480, 49410, 'forty-nine thousand four hundred ten'); INSERT INTO t3 VALUES(9481, 10316, 'ten thousand three hundred sixteen'); INSERT INTO t3 VALUES(9482, 11864, 'eleven thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(9483, 45783, 'forty-five thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(9484, 71139, 'seventy-one thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(9485, 64769, 'sixty-four thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(9486, 69627, 'sixty-nine thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(9487, 6160, 'six thousand one hundred sixty'); INSERT INTO t3 VALUES(9488, 1622, 'one thousand six hundred twenty-two'); INSERT INTO t3 VALUES(9489, 32963, 'thirty-two thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(9490, 4482, 'four thousand four hundred eighty-two'); INSERT INTO t3 VALUES(9491, 65797, 'sixty-five thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(9492, 6525, 'six thousand five hundred twenty-five'); INSERT INTO t3 VALUES(9493, 95289, 'ninety-five thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(9494, 94277, 'ninety-four thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(9495, 38195, 'thirty-eight thousand one hundred ninety-five'); INSERT INTO t3 VALUES(9496, 73136, 'seventy-three thousand one hundred thirty-six'); INSERT INTO t3 VALUES(9497, 24640, 'twenty-four thousand six hundred forty'); INSERT INTO t3 VALUES(9498, 50773, 'fifty thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(9499, 53197, 'fifty-three thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(9500, 28393, 'twenty-eight thousand three hundred ninety-three'); INSERT INTO t3 VALUES(9501, 68463, 'sixty-eight thousand four hundred sixty-three'); INSERT INTO t3 VALUES(9502, 97319, 'ninety-seven thousand three hundred nineteen'); INSERT INTO t3 VALUES(9503, 7449, 'seven thousand four hundred forty-nine'); INSERT INTO t3 VALUES(9504, 40053, 'forty thousand fifty-three'); INSERT INTO t3 VALUES(9505, 92826, 'ninety-two thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(9506, 92280, 'ninety-two thousand two hundred eighty'); INSERT INTO t3 VALUES(9507, 66373, 'sixty-six thousand three hundred seventy-three'); INSERT INTO t3 VALUES(9508, 46904, 'forty-six thousand nine hundred four'); INSERT INTO t3 VALUES(9509, 36587, 'thirty-six thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(9510, 24990, 'twenty-four thousand nine hundred ninety'); INSERT INTO t3 VALUES(9511, 34899, 'thirty-four thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(9512, 65838, 'sixty-five thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(9513, 37982, 'thirty-seven thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(9514, 95348, 'ninety-five thousand three hundred forty-eight'); INSERT INTO t3 VALUES(9515, 99069, 'ninety-nine thousand sixty-nine'); INSERT INTO t3 VALUES(9516, 19341, 'nineteen thousand three hundred forty-one'); INSERT INTO t3 VALUES(9517, 34630, 'thirty-four thousand six hundred thirty'); INSERT INTO t3 VALUES(9518, 62749, 'sixty-two thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(9519, 54795, 'fifty-four thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(9520, 65885, 'sixty-five thousand eight hundred eighty-five'); INSERT INTO t3 VALUES(9521, 42110, 'forty-two thousand one hundred ten'); INSERT INTO t3 VALUES(9522, 94995, 'ninety-four thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(9523, 44099, 'forty-four thousand ninety-nine'); INSERT INTO t3 VALUES(9524, 5023, 'five thousand twenty-three'); INSERT INTO t3 VALUES(9525, 44432, 'forty-four thousand four hundred thirty-two'); INSERT INTO t3 VALUES(9526, 58385, 'fifty-eight thousand three hundred eighty-five'); INSERT INTO t3 VALUES(9527, 27411, 'twenty-seven thousand four hundred eleven'); INSERT INTO t3 VALUES(9528, 46696, 'forty-six thousand six hundred ninety-six'); INSERT INTO t3 VALUES(9529, 35288, 'thirty-five thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(9530, 51650, 'fifty-one thousand six hundred fifty'); INSERT INTO t3 VALUES(9531, 50346, 'fifty thousand three hundred forty-six'); INSERT INTO t3 VALUES(9532, 53778, 'fifty-three thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(9533, 77104, 'seventy-seven thousand one hundred four'); INSERT INTO t3 VALUES(9534, 81645, 'eighty-one thousand six hundred forty-five'); INSERT INTO t3 VALUES(9535, 93730, 'ninety-three thousand seven hundred thirty'); INSERT INTO t3 VALUES(9536, 53911, 'fifty-three thousand nine hundred eleven'); INSERT INTO t3 VALUES(9537, 46429, 'forty-six thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(9538, 912, 'nine hundred twelve'); INSERT INTO t3 VALUES(9539, 80247, 'eighty thousand two hundred forty-seven'); INSERT INTO t3 VALUES(9540, 59461, 'fifty-nine thousand four hundred sixty-one'); INSERT INTO t3 VALUES(9541, 85411, 'eighty-five thousand four hundred eleven'); INSERT INTO t3 VALUES(9542, 88498, 'eighty-eight thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(9543, 64667, 'sixty-four thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(9544, 86721, 'eighty-six thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(9545, 42294, 'forty-two thousand two hundred ninety-four'); INSERT INTO t3 VALUES(9546, 95975, 'ninety-five thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(9547, 85394, 'eighty-five thousand three hundred ninety-four'); INSERT INTO t3 VALUES(9548, 2596, 'two thousand five hundred ninety-six'); INSERT INTO t3 VALUES(9549, 15830, 'fifteen thousand eight hundred thirty'); INSERT INTO t3 VALUES(9550, 11774, 'eleven thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(9551, 58243, 'fifty-eight thousand two hundred forty-three'); INSERT INTO t3 VALUES(9552, 49363, 'forty-nine thousand three hundred sixty-three'); INSERT INTO t3 VALUES(9553, 17763, 'seventeen thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(9554, 37835, 'thirty-seven thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(9555, 62394, 'sixty-two thousand three hundred ninety-four'); INSERT INTO t3 VALUES(9556, 82566, 'eighty-two thousand five hundred sixty-six'); INSERT INTO t3 VALUES(9557, 9620, 'nine thousand six hundred twenty'); INSERT INTO t3 VALUES(9558, 43924, 'forty-three thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(9559, 13939, 'thirteen thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(9560, 42034, 'forty-two thousand thirty-four'); INSERT INTO t3 VALUES(9561, 39386, 'thirty-nine thousand three hundred eighty-six'); INSERT INTO t3 VALUES(9562, 37292, 'thirty-seven thousand two hundred ninety-two'); INSERT INTO t3 VALUES(9563, 55768, 'fifty-five thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(9564, 12746, 'twelve thousand seven hundred forty-six'); INSERT INTO t3 VALUES(9565, 15598, 'fifteen thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(9566, 76861, 'seventy-six thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(9567, 88958, 'eighty-eight thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(9568, 57242, 'fifty-seven thousand two hundred forty-two'); INSERT INTO t3 VALUES(9569, 53535, 'fifty-three thousand five hundred thirty-five'); INSERT INTO t3 VALUES(9570, 68429, 'sixty-eight thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(9571, 94325, 'ninety-four thousand three hundred twenty-five'); INSERT INTO t3 VALUES(9572, 61897, 'sixty-one thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(9573, 56375, 'fifty-six thousand three hundred seventy-five'); INSERT INTO t3 VALUES(9574, 53383, 'fifty-three thousand three hundred eighty-three'); INSERT INTO t3 VALUES(9575, 75975, 'seventy-five thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(9576, 52430, 'fifty-two thousand four hundred thirty'); INSERT INTO t3 VALUES(9577, 32397, 'thirty-two thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(9578, 52315, 'fifty-two thousand three hundred fifteen'); INSERT INTO t3 VALUES(9579, 92937, 'ninety-two thousand nine hundred thirty-seven'); INSERT INTO t3 VALUES(9580, 97196, 'ninety-seven thousand one hundred ninety-six'); INSERT INTO t3 VALUES(9581, 51060, 'fifty-one thousand sixty'); INSERT INTO t3 VALUES(9582, 73173, 'seventy-three thousand one hundred seventy-three'); INSERT INTO t3 VALUES(9583, 69205, 'sixty-nine thousand two hundred five'); INSERT INTO t3 VALUES(9584, 72584, 'seventy-two thousand five hundred eighty-four'); INSERT INTO t3 VALUES(9585, 62794, 'sixty-two thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(9586, 95094, 'ninety-five thousand ninety-four'); INSERT INTO t3 VALUES(9587, 93164, 'ninety-three thousand one hundred sixty-four'); INSERT INTO t3 VALUES(9588, 31782, 'thirty-one thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(9589, 67414, 'sixty-seven thousand four hundred fourteen'); INSERT INTO t3 VALUES(9590, 14328, 'fourteen thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(9591, 28027, 'twenty-eight thousand twenty-seven'); INSERT INTO t3 VALUES(9592, 36845, 'thirty-six thousand eight hundred forty-five'); INSERT INTO t3 VALUES(9593, 90582, 'ninety thousand five hundred eighty-two'); INSERT INTO t3 VALUES(9594, 78397, 'seventy-eight thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(9595, 32621, 'thirty-two thousand six hundred twenty-one'); INSERT INTO t3 VALUES(9596, 33893, 'thirty-three thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(9597, 3035, 'three thousand thirty-five'); INSERT INTO t3 VALUES(9598, 2249, 'two thousand two hundred forty-nine'); INSERT INTO t3 VALUES(9599, 28115, 'twenty-eight thousand one hundred fifteen'); INSERT INTO t3 VALUES(9600, 48283, 'forty-eight thousand two hundred eighty-three'); INSERT INTO t3 VALUES(9601, 82132, 'eighty-two thousand one hundred thirty-two'); INSERT INTO t3 VALUES(9602, 35998, 'thirty-five thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(9603, 1349, 'one thousand three hundred forty-nine'); INSERT INTO t3 VALUES(9604, 18482, 'eighteen thousand four hundred eighty-two'); INSERT INTO t3 VALUES(9605, 8550, 'eight thousand five hundred fifty'); INSERT INTO t3 VALUES(9606, 41277, 'forty-one thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(9607, 63595, 'sixty-three thousand five hundred ninety-five'); INSERT INTO t3 VALUES(9608, 11102, 'eleven thousand one hundred two'); INSERT INTO t3 VALUES(9609, 75196, 'seventy-five thousand one hundred ninety-six'); INSERT INTO t3 VALUES(9610, 21415, 'twenty-one thousand four hundred fifteen'); INSERT INTO t3 VALUES(9611, 62935, 'sixty-two thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(9612, 60561, 'sixty thousand five hundred sixty-one'); INSERT INTO t3 VALUES(9613, 42112, 'forty-two thousand one hundred twelve'); INSERT INTO t3 VALUES(9614, 3546, 'three thousand five hundred forty-six'); INSERT INTO t3 VALUES(9615, 84965, 'eighty-four thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(9616, 23021, 'twenty-three thousand twenty-one'); INSERT INTO t3 VALUES(9617, 11024, 'eleven thousand twenty-four'); INSERT INTO t3 VALUES(9618, 19148, 'nineteen thousand one hundred forty-eight'); INSERT INTO t3 VALUES(9619, 62660, 'sixty-two thousand six hundred sixty'); INSERT INTO t3 VALUES(9620, 66222, 'sixty-six thousand two hundred twenty-two'); INSERT INTO t3 VALUES(9621, 7150, 'seven thousand one hundred fifty'); INSERT INTO t3 VALUES(9622, 94115, 'ninety-four thousand one hundred fifteen'); INSERT INTO t3 VALUES(9623, 79455, 'seventy-nine thousand four hundred fifty-five'); INSERT INTO t3 VALUES(9624, 66501, 'sixty-six thousand five hundred one'); INSERT INTO t3 VALUES(9625, 25874, 'twenty-five thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(9626, 83933, 'eighty-three thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(9627, 45557, 'forty-five thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(9628, 42680, 'forty-two thousand six hundred eighty'); INSERT INTO t3 VALUES(9629, 41739, 'forty-one thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(9630, 8693, 'eight thousand six hundred ninety-three'); INSERT INTO t3 VALUES(9631, 55585, 'fifty-five thousand five hundred eighty-five'); INSERT INTO t3 VALUES(9632, 38535, 'thirty-eight thousand five hundred thirty-five'); INSERT INTO t3 VALUES(9633, 21156, 'twenty-one thousand one hundred fifty-six'); INSERT INTO t3 VALUES(9634, 20406, 'twenty thousand four hundred six'); INSERT INTO t3 VALUES(9635, 66134, 'sixty-six thousand one hundred thirty-four'); INSERT INTO t3 VALUES(9636, 52453, 'fifty-two thousand four hundred fifty-three'); INSERT INTO t3 VALUES(9637, 41268, 'forty-one thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(9638, 63276, 'sixty-three thousand two hundred seventy-six'); INSERT INTO t3 VALUES(9639, 87526, 'eighty-seven thousand five hundred twenty-six'); INSERT INTO t3 VALUES(9640, 90635, 'ninety thousand six hundred thirty-five'); INSERT INTO t3 VALUES(9641, 97688, 'ninety-seven thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(9642, 36016, 'thirty-six thousand sixteen'); INSERT INTO t3 VALUES(9643, 43498, 'forty-three thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(9644, 22834, 'twenty-two thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(9645, 9528, 'nine thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(9646, 74739, 'seventy-four thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(9647, 536, 'five hundred thirty-six'); INSERT INTO t3 VALUES(9648, 77270, 'seventy-seven thousand two hundred seventy'); INSERT INTO t3 VALUES(9649, 97018, 'ninety-seven thousand eighteen'); INSERT INTO t3 VALUES(9650, 50645, 'fifty thousand six hundred forty-five'); INSERT INTO t3 VALUES(9651, 69848, 'sixty-nine thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(9652, 11415, 'eleven thousand four hundred fifteen'); INSERT INTO t3 VALUES(9653, 11438, 'eleven thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(9654, 38760, 'thirty-eight thousand seven hundred sixty'); INSERT INTO t3 VALUES(9655, 36497, 'thirty-six thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(9656, 9140, 'nine thousand one hundred forty'); INSERT INTO t3 VALUES(9657, 29546, 'twenty-nine thousand five hundred forty-six'); INSERT INTO t3 VALUES(9658, 31898, 'thirty-one thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(9659, 25844, 'twenty-five thousand eight hundred forty-four'); INSERT INTO t3 VALUES(9660, 32481, 'thirty-two thousand four hundred eighty-one'); INSERT INTO t3 VALUES(9661, 60532, 'sixty thousand five hundred thirty-two'); INSERT INTO t3 VALUES(9662, 29790, 'twenty-nine thousand seven hundred ninety'); INSERT INTO t3 VALUES(9663, 74747, 'seventy-four thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(9664, 58643, 'fifty-eight thousand six hundred forty-three'); INSERT INTO t3 VALUES(9665, 33744, 'thirty-three thousand seven hundred forty-four'); INSERT INTO t3 VALUES(9666, 59480, 'fifty-nine thousand four hundred eighty'); INSERT INTO t3 VALUES(9667, 50128, 'fifty thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(9668, 70384, 'seventy thousand three hundred eighty-four'); INSERT INTO t3 VALUES(9669, 7158, 'seven thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(9670, 80151, 'eighty thousand one hundred fifty-one'); INSERT INTO t3 VALUES(9671, 24344, 'twenty-four thousand three hundred forty-four'); INSERT INTO t3 VALUES(9672, 61214, 'sixty-one thousand two hundred fourteen'); INSERT INTO t3 VALUES(9673, 35741, 'thirty-five thousand seven hundred forty-one'); INSERT INTO t3 VALUES(9674, 24894, 'twenty-four thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(9675, 19114, 'nineteen thousand one hundred fourteen'); INSERT INTO t3 VALUES(9676, 12239, 'twelve thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(9677, 88554, 'eighty-eight thousand five hundred fifty-four'); INSERT INTO t3 VALUES(9678, 36293, 'thirty-six thousand two hundred ninety-three'); INSERT INTO t3 VALUES(9679, 48425, 'forty-eight thousand four hundred twenty-five'); INSERT INTO t3 VALUES(9680, 99726, 'ninety-nine thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(9681, 62229, 'sixty-two thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(9682, 63653, 'sixty-three thousand six hundred fifty-three'); INSERT INTO t3 VALUES(9683, 15592, 'fifteen thousand five hundred ninety-two'); INSERT INTO t3 VALUES(9684, 33061, 'thirty-three thousand sixty-one'); INSERT INTO t3 VALUES(9685, 53447, 'fifty-three thousand four hundred forty-seven'); INSERT INTO t3 VALUES(9686, 63564, 'sixty-three thousand five hundred sixty-four'); INSERT INTO t3 VALUES(9687, 57386, 'fifty-seven thousand three hundred eighty-six'); INSERT INTO t3 VALUES(9688, 81975, 'eighty-one thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(9689, 35470, 'thirty-five thousand four hundred seventy'); INSERT INTO t3 VALUES(9690, 98418, 'ninety-eight thousand four hundred eighteen'); INSERT INTO t3 VALUES(9691, 88402, 'eighty-eight thousand four hundred two'); INSERT INTO t3 VALUES(9692, 98496, 'ninety-eight thousand four hundred ninety-six'); INSERT INTO t3 VALUES(9693, 97784, 'ninety-seven thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(9694, 35214, 'thirty-five thousand two hundred fourteen'); INSERT INTO t3 VALUES(9695, 42063, 'forty-two thousand sixty-three'); INSERT INTO t3 VALUES(9696, 76077, 'seventy-six thousand seventy-seven'); INSERT INTO t3 VALUES(9697, 23088, 'twenty-three thousand eighty-eight'); INSERT INTO t3 VALUES(9698, 14265, 'fourteen thousand two hundred sixty-five'); INSERT INTO t3 VALUES(9699, 76827, 'seventy-six thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(9700, 27804, 'twenty-seven thousand eight hundred four'); INSERT INTO t3 VALUES(9701, 53844, 'fifty-three thousand eight hundred forty-four'); INSERT INTO t3 VALUES(9702, 4007, 'four thousand seven'); INSERT INTO t3 VALUES(9703, 96952, 'ninety-six thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(9704, 46585, 'forty-six thousand five hundred eighty-five'); INSERT INTO t3 VALUES(9705, 83391, 'eighty-three thousand three hundred ninety-one'); INSERT INTO t3 VALUES(9706, 78111, 'seventy-eight thousand one hundred eleven'); INSERT INTO t3 VALUES(9707, 80532, 'eighty thousand five hundred thirty-two'); INSERT INTO t3 VALUES(9708, 43375, 'forty-three thousand three hundred seventy-five'); INSERT INTO t3 VALUES(9709, 56714, 'fifty-six thousand seven hundred fourteen'); INSERT INTO t3 VALUES(9710, 57329, 'fifty-seven thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(9711, 16576, 'sixteen thousand five hundred seventy-six'); INSERT INTO t3 VALUES(9712, 1329, 'one thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(9713, 88054, 'eighty-eight thousand fifty-four'); INSERT INTO t3 VALUES(9714, 70183, 'seventy thousand one hundred eighty-three'); INSERT INTO t3 VALUES(9715, 70877, 'seventy thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(9716, 7748, 'seven thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(9717, 53011, 'fifty-three thousand eleven'); INSERT INTO t3 VALUES(9718, 54458, 'fifty-four thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(9719, 55829, 'fifty-five thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(9720, 23875, 'twenty-three thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(9721, 83438, 'eighty-three thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(9722, 30843, 'thirty thousand eight hundred forty-three'); INSERT INTO t3 VALUES(9723, 31460, 'thirty-one thousand four hundred sixty'); INSERT INTO t3 VALUES(9724, 1279, 'one thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(9725, 94085, 'ninety-four thousand eighty-five'); INSERT INTO t3 VALUES(9726, 9956, 'nine thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(9727, 59878, 'fifty-nine thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(9728, 95406, 'ninety-five thousand four hundred six'); INSERT INTO t3 VALUES(9729, 78322, 'seventy-eight thousand three hundred twenty-two'); INSERT INTO t3 VALUES(9730, 54152, 'fifty-four thousand one hundred fifty-two'); INSERT INTO t3 VALUES(9731, 28924, 'twenty-eight thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(9732, 86051, 'eighty-six thousand fifty-one'); INSERT INTO t3 VALUES(9733, 54314, 'fifty-four thousand three hundred fourteen'); INSERT INTO t3 VALUES(9734, 86506, 'eighty-six thousand five hundred six'); INSERT INTO t3 VALUES(9735, 43503, 'forty-three thousand five hundred three'); INSERT INTO t3 VALUES(9736, 76407, 'seventy-six thousand four hundred seven'); INSERT INTO t3 VALUES(9737, 81693, 'eighty-one thousand six hundred ninety-three'); INSERT INTO t3 VALUES(9738, 68742, 'sixty-eight thousand seven hundred forty-two'); INSERT INTO t3 VALUES(9739, 93083, 'ninety-three thousand eighty-three'); INSERT INTO t3 VALUES(9740, 15616, 'fifteen thousand six hundred sixteen'); INSERT INTO t3 VALUES(9741, 25334, 'twenty-five thousand three hundred thirty-four'); INSERT INTO t3 VALUES(9742, 16841, 'sixteen thousand eight hundred forty-one'); INSERT INTO t3 VALUES(9743, 15428, 'fifteen thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(9744, 11639, 'eleven thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(9745, 12882, 'twelve thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(9746, 4539, 'four thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(9747, 12686, 'twelve thousand six hundred eighty-six'); INSERT INTO t3 VALUES(9748, 76435, 'seventy-six thousand four hundred thirty-five'); INSERT INTO t3 VALUES(9749, 87542, 'eighty-seven thousand five hundred forty-two'); INSERT INTO t3 VALUES(9750, 66329, 'sixty-six thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(9751, 68697, 'sixty-eight thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(9752, 61991, 'sixty-one thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(9753, 30348, 'thirty thousand three hundred forty-eight'); INSERT INTO t3 VALUES(9754, 45560, 'forty-five thousand five hundred sixty'); INSERT INTO t3 VALUES(9755, 88732, 'eighty-eight thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(9756, 51458, 'fifty-one thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(9757, 24599, 'twenty-four thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(9758, 72912, 'seventy-two thousand nine hundred twelve'); INSERT INTO t3 VALUES(9759, 95571, 'ninety-five thousand five hundred seventy-one'); INSERT INTO t3 VALUES(9760, 20329, 'twenty thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(9761, 57317, 'fifty-seven thousand three hundred seventeen'); INSERT INTO t3 VALUES(9762, 81954, 'eighty-one thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(9763, 62989, 'sixty-two thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(9764, 27606, 'twenty-seven thousand six hundred six'); INSERT INTO t3 VALUES(9765, 57035, 'fifty-seven thousand thirty-five'); INSERT INTO t3 VALUES(9766, 69996, 'sixty-nine thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(9767, 44204, 'forty-four thousand two hundred four'); INSERT INTO t3 VALUES(9768, 69784, 'sixty-nine thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(9769, 4270, 'four thousand two hundred seventy'); INSERT INTO t3 VALUES(9770, 82805, 'eighty-two thousand eight hundred five'); INSERT INTO t3 VALUES(9771, 13843, 'thirteen thousand eight hundred forty-three'); INSERT INTO t3 VALUES(9772, 65155, 'sixty-five thousand one hundred fifty-five'); INSERT INTO t3 VALUES(9773, 87772, 'eighty-seven thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(9774, 22324, 'twenty-two thousand three hundred twenty-four'); INSERT INTO t3 VALUES(9775, 28212, 'twenty-eight thousand two hundred twelve'); INSERT INTO t3 VALUES(9776, 3590, 'three thousand five hundred ninety'); INSERT INTO t3 VALUES(9777, 76740, 'seventy-six thousand seven hundred forty'); INSERT INTO t3 VALUES(9778, 26033, 'twenty-six thousand thirty-three'); INSERT INTO t3 VALUES(9779, 70943, 'seventy thousand nine hundred forty-three'); INSERT INTO t3 VALUES(9780, 78762, 'seventy-eight thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(9781, 30940, 'thirty thousand nine hundred forty'); INSERT INTO t3 VALUES(9782, 25141, 'twenty-five thousand one hundred forty-one'); INSERT INTO t3 VALUES(9783, 70917, 'seventy thousand nine hundred seventeen'); INSERT INTO t3 VALUES(9784, 75039, 'seventy-five thousand thirty-nine'); INSERT INTO t3 VALUES(9785, 5772, 'five thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(9786, 39799, 'thirty-nine thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(9787, 64216, 'sixty-four thousand two hundred sixteen'); INSERT INTO t3 VALUES(9788, 53001, 'fifty-three thousand one'); INSERT INTO t3 VALUES(9789, 83948, 'eighty-three thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(9790, 24615, 'twenty-four thousand six hundred fifteen'); INSERT INTO t3 VALUES(9791, 78344, 'seventy-eight thousand three hundred forty-four'); INSERT INTO t3 VALUES(9792, 27521, 'twenty-seven thousand five hundred twenty-one'); INSERT INTO t3 VALUES(9793, 94991, 'ninety-four thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(9794, 16917, 'sixteen thousand nine hundred seventeen'); INSERT INTO t3 VALUES(9795, 80476, 'eighty thousand four hundred seventy-six'); INSERT INTO t3 VALUES(9796, 49562, 'forty-nine thousand five hundred sixty-two'); INSERT INTO t3 VALUES(9797, 95018, 'ninety-five thousand eighteen'); INSERT INTO t3 VALUES(9798, 95112, 'ninety-five thousand one hundred twelve'); INSERT INTO t3 VALUES(9799, 31541, 'thirty-one thousand five hundred forty-one'); INSERT INTO t3 VALUES(9800, 40264, 'forty thousand two hundred sixty-four'); INSERT INTO t3 VALUES(9801, 54100, 'fifty-four thousand one hundred'); INSERT INTO t3 VALUES(9802, 16500, 'sixteen thousand five hundred'); INSERT INTO t3 VALUES(9803, 95598, 'ninety-five thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(9804, 8549, 'eight thousand five hundred forty-nine'); INSERT INTO t3 VALUES(9805, 97901, 'ninety-seven thousand nine hundred one'); INSERT INTO t3 VALUES(9806, 70092, 'seventy thousand ninety-two'); INSERT INTO t3 VALUES(9807, 65868, 'sixty-five thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(9808, 4120, 'four thousand one hundred twenty'); INSERT INTO t3 VALUES(9809, 45413, 'forty-five thousand four hundred thirteen'); INSERT INTO t3 VALUES(9810, 58910, 'fifty-eight thousand nine hundred ten'); INSERT INTO t3 VALUES(9811, 99750, 'ninety-nine thousand seven hundred fifty'); INSERT INTO t3 VALUES(9812, 69120, 'sixty-nine thousand one hundred twenty'); INSERT INTO t3 VALUES(9813, 32266, 'thirty-two thousand two hundred sixty-six'); INSERT INTO t3 VALUES(9814, 6083, 'six thousand eighty-three'); INSERT INTO t3 VALUES(9815, 6993, 'six thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(9816, 35572, 'thirty-five thousand five hundred seventy-two'); INSERT INTO t3 VALUES(9817, 11700, 'eleven thousand seven hundred'); INSERT INTO t3 VALUES(9818, 28232, 'twenty-eight thousand two hundred thirty-two'); INSERT INTO t3 VALUES(9819, 28761, 'twenty-eight thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(9820, 56504, 'fifty-six thousand five hundred four'); INSERT INTO t3 VALUES(9821, 65920, 'sixty-five thousand nine hundred twenty'); INSERT INTO t3 VALUES(9822, 35287, 'thirty-five thousand two hundred eighty-seven'); INSERT INTO t3 VALUES(9823, 13096, 'thirteen thousand ninety-six'); INSERT INTO t3 VALUES(9824, 44804, 'forty-four thousand eight hundred four'); INSERT INTO t3 VALUES(9825, 48610, 'forty-eight thousand six hundred ten'); INSERT INTO t3 VALUES(9826, 80980, 'eighty thousand nine hundred eighty'); INSERT INTO t3 VALUES(9827, 12163, 'twelve thousand one hundred sixty-three'); INSERT INTO t3 VALUES(9828, 52121, 'fifty-two thousand one hundred twenty-one'); INSERT INTO t3 VALUES(9829, 28802, 'twenty-eight thousand eight hundred two'); INSERT INTO t3 VALUES(9830, 98320, 'ninety-eight thousand three hundred twenty'); INSERT INTO t3 VALUES(9831, 38135, 'thirty-eight thousand one hundred thirty-five'); INSERT INTO t3 VALUES(9832, 75067, 'seventy-five thousand sixty-seven'); INSERT INTO t3 VALUES(9833, 64249, 'sixty-four thousand two hundred forty-nine'); INSERT INTO t3 VALUES(9834, 78018, 'seventy-eight thousand eighteen'); INSERT INTO t3 VALUES(9835, 51877, 'fifty-one thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(9836, 74873, 'seventy-four thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(9837, 18116, 'eighteen thousand one hundred sixteen'); INSERT INTO t3 VALUES(9838, 12202, 'twelve thousand two hundred two'); INSERT INTO t3 VALUES(9839, 26133, 'twenty-six thousand one hundred thirty-three'); INSERT INTO t3 VALUES(9840, 13765, 'thirteen thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(9841, 39184, 'thirty-nine thousand one hundred eighty-four'); INSERT INTO t3 VALUES(9842, 57565, 'fifty-seven thousand five hundred sixty-five'); INSERT INTO t3 VALUES(9843, 41440, 'forty-one thousand four hundred forty'); INSERT INTO t3 VALUES(9844, 3492, 'three thousand four hundred ninety-two'); INSERT INTO t3 VALUES(9845, 44020, 'forty-four thousand twenty'); INSERT INTO t3 VALUES(9846, 44709, 'forty-four thousand seven hundred nine'); INSERT INTO t3 VALUES(9847, 59773, 'fifty-nine thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(9848, 89604, 'eighty-nine thousand six hundred four'); INSERT INTO t3 VALUES(9849, 37881, 'thirty-seven thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(9850, 5299, 'five thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(9851, 41217, 'forty-one thousand two hundred seventeen'); INSERT INTO t3 VALUES(9852, 50078, 'fifty thousand seventy-eight'); INSERT INTO t3 VALUES(9853, 39677, 'thirty-nine thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(9854, 25455, 'twenty-five thousand four hundred fifty-five'); INSERT INTO t3 VALUES(9855, 74369, 'seventy-four thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(9856, 18940, 'eighteen thousand nine hundred forty'); INSERT INTO t3 VALUES(9857, 53098, 'fifty-three thousand ninety-eight'); INSERT INTO t3 VALUES(9858, 88932, 'eighty-eight thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(9859, 45679, 'forty-five thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(9860, 61413, 'sixty-one thousand four hundred thirteen'); INSERT INTO t3 VALUES(9861, 40594, 'forty thousand five hundred ninety-four'); INSERT INTO t3 VALUES(9862, 77281, 'seventy-seven thousand two hundred eighty-one'); INSERT INTO t3 VALUES(9863, 75998, 'seventy-five thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(9864, 72702, 'seventy-two thousand seven hundred two'); INSERT INTO t3 VALUES(9865, 3295, 'three thousand two hundred ninety-five'); INSERT INTO t3 VALUES(9866, 92616, 'ninety-two thousand six hundred sixteen'); INSERT INTO t3 VALUES(9867, 65642, 'sixty-five thousand six hundred forty-two'); INSERT INTO t3 VALUES(9868, 57131, 'fifty-seven thousand one hundred thirty-one'); INSERT INTO t3 VALUES(9869, 58547, 'fifty-eight thousand five hundred forty-seven'); INSERT INTO t3 VALUES(9870, 88583, 'eighty-eight thousand five hundred eighty-three'); INSERT INTO t3 VALUES(9871, 59711, 'fifty-nine thousand seven hundred eleven'); INSERT INTO t3 VALUES(9872, 25812, 'twenty-five thousand eight hundred twelve'); INSERT INTO t3 VALUES(9873, 75902, 'seventy-five thousand nine hundred two'); INSERT INTO t3 VALUES(9874, 99458, 'ninety-nine thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(9875, 10805, 'ten thousand eight hundred five'); INSERT INTO t3 VALUES(9876, 49524, 'forty-nine thousand five hundred twenty-four'); INSERT INTO t3 VALUES(9877, 57630, 'fifty-seven thousand six hundred thirty'); INSERT INTO t3 VALUES(9878, 46295, 'forty-six thousand two hundred ninety-five'); INSERT INTO t3 VALUES(9879, 79257, 'seventy-nine thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(9880, 3821, 'three thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(9881, 94527, 'ninety-four thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(9882, 90174, 'ninety thousand one hundred seventy-four'); INSERT INTO t3 VALUES(9883, 65336, 'sixty-five thousand three hundred thirty-six'); INSERT INTO t3 VALUES(9884, 9558, 'nine thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(9885, 95116, 'ninety-five thousand one hundred sixteen'); INSERT INTO t3 VALUES(9886, 5593, 'five thousand five hundred ninety-three'); INSERT INTO t3 VALUES(9887, 47175, 'forty-seven thousand one hundred seventy-five'); INSERT INTO t3 VALUES(9888, 82353, 'eighty-two thousand three hundred fifty-three'); INSERT INTO t3 VALUES(9889, 78374, 'seventy-eight thousand three hundred seventy-four'); INSERT INTO t3 VALUES(9890, 49833, 'forty-nine thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(9891, 31965, 'thirty-one thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(9892, 50490, 'fifty thousand four hundred ninety'); INSERT INTO t3 VALUES(9893, 18358, 'eighteen thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(9894, 21924, 'twenty-one thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(9895, 83905, 'eighty-three thousand nine hundred five'); INSERT INTO t3 VALUES(9896, 15656, 'fifteen thousand six hundred fifty-six'); INSERT INTO t3 VALUES(9897, 41036, 'forty-one thousand thirty-six'); INSERT INTO t3 VALUES(9898, 42128, 'forty-two thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(9899, 75773, 'seventy-five thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(9900, 56627, 'fifty-six thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(9901, 71417, 'seventy-one thousand four hundred seventeen'); INSERT INTO t3 VALUES(9902, 23768, 'twenty-three thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(9903, 88086, 'eighty-eight thousand eighty-six'); INSERT INTO t3 VALUES(9904, 46849, 'forty-six thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(9905, 36057, 'thirty-six thousand fifty-seven'); INSERT INTO t3 VALUES(9906, 83187, 'eighty-three thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(9907, 55292, 'fifty-five thousand two hundred ninety-two'); INSERT INTO t3 VALUES(9908, 80397, 'eighty thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(9909, 29647, 'twenty-nine thousand six hundred forty-seven'); INSERT INTO t3 VALUES(9910, 50336, 'fifty thousand three hundred thirty-six'); INSERT INTO t3 VALUES(9911, 74987, 'seventy-four thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(9912, 41905, 'forty-one thousand nine hundred five'); INSERT INTO t3 VALUES(9913, 9432, 'nine thousand four hundred thirty-two'); INSERT INTO t3 VALUES(9914, 4855, 'four thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(9915, 7991, 'seven thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(9916, 13472, 'thirteen thousand four hundred seventy-two'); INSERT INTO t3 VALUES(9917, 29238, 'twenty-nine thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(9918, 6738, 'six thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(9919, 57081, 'fifty-seven thousand eighty-one'); INSERT INTO t3 VALUES(9920, 10588, 'ten thousand five hundred eighty-eight'); INSERT INTO t3 VALUES(9921, 10879, 'ten thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(9922, 79359, 'seventy-nine thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(9923, 98281, 'ninety-eight thousand two hundred eighty-one'); INSERT INTO t3 VALUES(9924, 67749, 'sixty-seven thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(9925, 18918, 'eighteen thousand nine hundred eighteen'); INSERT INTO t3 VALUES(9926, 5137, 'five thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(9927, 74561, 'seventy-four thousand five hundred sixty-one'); INSERT INTO t3 VALUES(9928, 80642, 'eighty thousand six hundred forty-two'); INSERT INTO t3 VALUES(9929, 33164, 'thirty-three thousand one hundred sixty-four'); INSERT INTO t3 VALUES(9930, 65336, 'sixty-five thousand three hundred thirty-six'); INSERT INTO t3 VALUES(9931, 3439, 'three thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(9932, 52804, 'fifty-two thousand eight hundred four'); INSERT INTO t3 VALUES(9933, 32821, 'thirty-two thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(9934, 87478, 'eighty-seven thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(9935, 44868, 'forty-four thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(9936, 21660, 'twenty-one thousand six hundred sixty'); INSERT INTO t3 VALUES(9937, 77320, 'seventy-seven thousand three hundred twenty'); INSERT INTO t3 VALUES(9938, 8024, 'eight thousand twenty-four'); INSERT INTO t3 VALUES(9939, 18026, 'eighteen thousand twenty-six'); INSERT INTO t3 VALUES(9940, 75202, 'seventy-five thousand two hundred two'); INSERT INTO t3 VALUES(9941, 3285, 'three thousand two hundred eighty-five'); INSERT INTO t3 VALUES(9942, 37685, 'thirty-seven thousand six hundred eighty-five'); INSERT INTO t3 VALUES(9943, 31654, 'thirty-one thousand six hundred fifty-four'); INSERT INTO t3 VALUES(9944, 42470, 'forty-two thousand four hundred seventy'); INSERT INTO t3 VALUES(9945, 63642, 'sixty-three thousand six hundred forty-two'); INSERT INTO t3 VALUES(9946, 46964, 'forty-six thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(9947, 22816, 'twenty-two thousand eight hundred sixteen'); INSERT INTO t3 VALUES(9948, 80389, 'eighty thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(9949, 59048, 'fifty-nine thousand forty-eight'); INSERT INTO t3 VALUES(9950, 13320, 'thirteen thousand three hundred twenty'); INSERT INTO t3 VALUES(9951, 27617, 'twenty-seven thousand six hundred seventeen'); INSERT INTO t3 VALUES(9952, 27069, 'twenty-seven thousand sixty-nine'); INSERT INTO t3 VALUES(9953, 13166, 'thirteen thousand one hundred sixty-six'); INSERT INTO t3 VALUES(9954, 62500, 'sixty-two thousand five hundred'); INSERT INTO t3 VALUES(9955, 89697, 'eighty-nine thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(9956, 94209, 'ninety-four thousand two hundred nine'); INSERT INTO t3 VALUES(9957, 28971, 'twenty-eight thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(9958, 23306, 'twenty-three thousand three hundred six'); INSERT INTO t3 VALUES(9959, 85340, 'eighty-five thousand three hundred forty'); INSERT INTO t3 VALUES(9960, 88517, 'eighty-eight thousand five hundred seventeen'); INSERT INTO t3 VALUES(9961, 69535, 'sixty-nine thousand five hundred thirty-five'); INSERT INTO t3 VALUES(9962, 48865, 'forty-eight thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(9963, 21321, 'twenty-one thousand three hundred twenty-one'); INSERT INTO t3 VALUES(9964, 88185, 'eighty-eight thousand one hundred eighty-five'); INSERT INTO t3 VALUES(9965, 54339, 'fifty-four thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(9966, 47482, 'forty-seven thousand four hundred eighty-two'); INSERT INTO t3 VALUES(9967, 51378, 'fifty-one thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(9968, 42984, 'forty-two thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(9969, 11213, 'eleven thousand two hundred thirteen'); INSERT INTO t3 VALUES(9970, 20893, 'twenty thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(9971, 8304, 'eight thousand three hundred four'); INSERT INTO t3 VALUES(9972, 82458, 'eighty-two thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(9973, 67591, 'sixty-seven thousand five hundred ninety-one'); INSERT INTO t3 VALUES(9974, 32604, 'thirty-two thousand six hundred four'); INSERT INTO t3 VALUES(9975, 77734, 'seventy-seven thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(9976, 86587, 'eighty-six thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(9977, 15574, 'fifteen thousand five hundred seventy-four'); INSERT INTO t3 VALUES(9978, 6699, 'six thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(9979, 49970, 'forty-nine thousand nine hundred seventy'); INSERT INTO t3 VALUES(9980, 32108, 'thirty-two thousand one hundred eight'); INSERT INTO t3 VALUES(9981, 79519, 'seventy-nine thousand five hundred nineteen'); INSERT INTO t3 VALUES(9982, 1760, 'one thousand seven hundred sixty'); INSERT INTO t3 VALUES(9983, 86997, 'eighty-six thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(9984, 1514, 'one thousand five hundred fourteen'); INSERT INTO t3 VALUES(9985, 82448, 'eighty-two thousand four hundred forty-eight'); INSERT INTO t3 VALUES(9986, 20963, 'twenty thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(9987, 43593, 'forty-three thousand five hundred ninety-three'); INSERT INTO t3 VALUES(9988, 52932, 'fifty-two thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(9989, 22809, 'twenty-two thousand eight hundred nine'); INSERT INTO t3 VALUES(9990, 2423, 'two thousand four hundred twenty-three'); INSERT INTO t3 VALUES(9991, 14254, 'fourteen thousand two hundred fifty-four'); INSERT INTO t3 VALUES(9992, 34857, 'thirty-four thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(9993, 38878, 'thirty-eight thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(9994, 78264, 'seventy-eight thousand two hundred sixty-four'); INSERT INTO t3 VALUES(9995, 30166, 'thirty thousand one hundred sixty-six'); INSERT INTO t3 VALUES(9996, 92097, 'ninety-two thousand ninety-seven'); INSERT INTO t3 VALUES(9997, 90726, 'ninety thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(9998, 77552, 'seventy-seven thousand five hundred fifty-two'); INSERT INTO t3 VALUES(9999, 90712, 'ninety thousand seven hundred twelve'); INSERT INTO t3 VALUES(10000, 38233, 'thirty-eight thousand two hundred thirty-three'); INSERT INTO t3 VALUES(10001, 47108, 'forty-seven thousand one hundred eight'); INSERT INTO t3 VALUES(10002, 12575, 'twelve thousand five hundred seventy-five'); INSERT INTO t3 VALUES(10003, 41464, 'forty-one thousand four hundred sixty-four'); INSERT INTO t3 VALUES(10004, 99617, 'ninety-nine thousand six hundred seventeen'); INSERT INTO t3 VALUES(10005, 47435, 'forty-seven thousand four hundred thirty-five'); INSERT INTO t3 VALUES(10006, 40042, 'forty thousand forty-two'); INSERT INTO t3 VALUES(10007, 15138, 'fifteen thousand one hundred thirty-eight'); INSERT INTO t3 VALUES(10008, 96584, 'ninety-six thousand five hundred eighty-four'); INSERT INTO t3 VALUES(10009, 61595, 'sixty-one thousand five hundred ninety-five'); INSERT INTO t3 VALUES(10010, 96037, 'ninety-six thousand thirty-seven'); INSERT INTO t3 VALUES(10011, 56384, 'fifty-six thousand three hundred eighty-four'); INSERT INTO t3 VALUES(10012, 86369, 'eighty-six thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(10013, 87206, 'eighty-seven thousand two hundred six'); INSERT INTO t3 VALUES(10014, 56057, 'fifty-six thousand fifty-seven'); INSERT INTO t3 VALUES(10015, 39328, 'thirty-nine thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(10016, 3104, 'three thousand one hundred four'); INSERT INTO t3 VALUES(10017, 56656, 'fifty-six thousand six hundred fifty-six'); INSERT INTO t3 VALUES(10018, 99538, 'ninety-nine thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(10019, 88851, 'eighty-eight thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(10020, 42842, 'forty-two thousand eight hundred forty-two'); INSERT INTO t3 VALUES(10021, 9208, 'nine thousand two hundred eight'); INSERT INTO t3 VALUES(10022, 51921, 'fifty-one thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(10023, 74366, 'seventy-four thousand three hundred sixty-six'); INSERT INTO t3 VALUES(10024, 11710, 'eleven thousand seven hundred ten'); INSERT INTO t3 VALUES(10025, 59456, 'fifty-nine thousand four hundred fifty-six'); INSERT INTO t3 VALUES(10026, 28553, 'twenty-eight thousand five hundred fifty-three'); INSERT INTO t3 VALUES(10027, 35135, 'thirty-five thousand one hundred thirty-five'); INSERT INTO t3 VALUES(10028, 9698, 'nine thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(10029, 67917, 'sixty-seven thousand nine hundred seventeen'); INSERT INTO t3 VALUES(10030, 55651, 'fifty-five thousand six hundred fifty-one'); INSERT INTO t3 VALUES(10031, 64240, 'sixty-four thousand two hundred forty'); INSERT INTO t3 VALUES(10032, 4942, 'four thousand nine hundred forty-two'); INSERT INTO t3 VALUES(10033, 95924, 'ninety-five thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(10034, 93532, 'ninety-three thousand five hundred thirty-two'); INSERT INTO t3 VALUES(10035, 42543, 'forty-two thousand five hundred forty-three'); INSERT INTO t3 VALUES(10036, 4791, 'four thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(10037, 2016, 'two thousand sixteen'); INSERT INTO t3 VALUES(10038, 74850, 'seventy-four thousand eight hundred fifty'); INSERT INTO t3 VALUES(10039, 84055, 'eighty-four thousand fifty-five'); INSERT INTO t3 VALUES(10040, 58297, 'fifty-eight thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(10041, 11878, 'eleven thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(10042, 15505, 'fifteen thousand five hundred five'); INSERT INTO t3 VALUES(10043, 26858, 'twenty-six thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(10044, 93023, 'ninety-three thousand twenty-three'); INSERT INTO t3 VALUES(10045, 49549, 'forty-nine thousand five hundred forty-nine'); INSERT INTO t3 VALUES(10046, 41047, 'forty-one thousand forty-seven'); INSERT INTO t3 VALUES(10047, 69762, 'sixty-nine thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(10048, 26771, 'twenty-six thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(10049, 24496, 'twenty-four thousand four hundred ninety-six'); INSERT INTO t3 VALUES(10050, 10114, 'ten thousand one hundred fourteen'); INSERT INTO t3 VALUES(10051, 69017, 'sixty-nine thousand seventeen'); INSERT INTO t3 VALUES(10052, 68461, 'sixty-eight thousand four hundred sixty-one'); INSERT INTO t3 VALUES(10053, 85812, 'eighty-five thousand eight hundred twelve'); INSERT INTO t3 VALUES(10054, 76224, 'seventy-six thousand two hundred twenty-four'); INSERT INTO t3 VALUES(10055, 26925, 'twenty-six thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(10056, 11490, 'eleven thousand four hundred ninety'); INSERT INTO t3 VALUES(10057, 29995, 'twenty-nine thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(10058, 62768, 'sixty-two thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(10059, 36851, 'thirty-six thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(10060, 56606, 'fifty-six thousand six hundred six'); INSERT INTO t3 VALUES(10061, 27400, 'twenty-seven thousand four hundred'); INSERT INTO t3 VALUES(10062, 7682, 'seven thousand six hundred eighty-two'); INSERT INTO t3 VALUES(10063, 8759, 'eight thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(10064, 40218, 'forty thousand two hundred eighteen'); INSERT INTO t3 VALUES(10065, 59475, 'fifty-nine thousand four hundred seventy-five'); INSERT INTO t3 VALUES(10066, 62438, 'sixty-two thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(10067, 73426, 'seventy-three thousand four hundred twenty-six'); INSERT INTO t3 VALUES(10068, 14902, 'fourteen thousand nine hundred two'); INSERT INTO t3 VALUES(10069, 96269, 'ninety-six thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(10070, 95485, 'ninety-five thousand four hundred eighty-five'); INSERT INTO t3 VALUES(10071, 48764, 'forty-eight thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(10072, 8358, 'eight thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(10073, 41444, 'forty-one thousand four hundred forty-four'); INSERT INTO t3 VALUES(10074, 2920, 'two thousand nine hundred twenty'); INSERT INTO t3 VALUES(10075, 77790, 'seventy-seven thousand seven hundred ninety'); INSERT INTO t3 VALUES(10076, 33153, 'thirty-three thousand one hundred fifty-three'); INSERT INTO t3 VALUES(10077, 75841, 'seventy-five thousand eight hundred forty-one'); INSERT INTO t3 VALUES(10078, 14008, 'fourteen thousand eight'); INSERT INTO t3 VALUES(10079, 69256, 'sixty-nine thousand two hundred fifty-six'); INSERT INTO t3 VALUES(10080, 66827, 'sixty-six thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(10081, 37227, 'thirty-seven thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(10082, 19492, 'nineteen thousand four hundred ninety-two'); INSERT INTO t3 VALUES(10083, 79671, 'seventy-nine thousand six hundred seventy-one'); INSERT INTO t3 VALUES(10084, 79054, 'seventy-nine thousand fifty-four'); INSERT INTO t3 VALUES(10085, 98994, 'ninety-eight thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(10086, 96096, 'ninety-six thousand ninety-six'); INSERT INTO t3 VALUES(10087, 80967, 'eighty thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(10088, 48633, 'forty-eight thousand six hundred thirty-three'); INSERT INTO t3 VALUES(10089, 38057, 'thirty-eight thousand fifty-seven'); INSERT INTO t3 VALUES(10090, 63749, 'sixty-three thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(10091, 55860, 'fifty-five thousand eight hundred sixty'); INSERT INTO t3 VALUES(10092, 82701, 'eighty-two thousand seven hundred one'); INSERT INTO t3 VALUES(10093, 50344, 'fifty thousand three hundred forty-four'); INSERT INTO t3 VALUES(10094, 47347, 'forty-seven thousand three hundred forty-seven'); INSERT INTO t3 VALUES(10095, 143, 'one hundred forty-three'); INSERT INTO t3 VALUES(10096, 59282, 'fifty-nine thousand two hundred eighty-two'); INSERT INTO t3 VALUES(10097, 46944, 'forty-six thousand nine hundred forty-four'); INSERT INTO t3 VALUES(10098, 20309, 'twenty thousand three hundred nine'); INSERT INTO t3 VALUES(10099, 76981, 'seventy-six thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(10100, 89378, 'eighty-nine thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(10101, 11902, 'eleven thousand nine hundred two'); INSERT INTO t3 VALUES(10102, 21903, 'twenty-one thousand nine hundred three'); INSERT INTO t3 VALUES(10103, 10377, 'ten thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(10104, 88499, 'eighty-eight thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(10105, 21575, 'twenty-one thousand five hundred seventy-five'); INSERT INTO t3 VALUES(10106, 93190, 'ninety-three thousand one hundred ninety'); INSERT INTO t3 VALUES(10107, 61166, 'sixty-one thousand one hundred sixty-six'); INSERT INTO t3 VALUES(10108, 99043, 'ninety-nine thousand forty-three'); INSERT INTO t3 VALUES(10109, 41545, 'forty-one thousand five hundred forty-five'); INSERT INTO t3 VALUES(10110, 17181, 'seventeen thousand one hundred eighty-one'); INSERT INTO t3 VALUES(10111, 25942, 'twenty-five thousand nine hundred forty-two'); INSERT INTO t3 VALUES(10112, 69505, 'sixty-nine thousand five hundred five'); INSERT INTO t3 VALUES(10113, 74574, 'seventy-four thousand five hundred seventy-four'); INSERT INTO t3 VALUES(10114, 11019, 'eleven thousand nineteen'); INSERT INTO t3 VALUES(10115, 39297, 'thirty-nine thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(10116, 96084, 'ninety-six thousand eighty-four'); INSERT INTO t3 VALUES(10117, 95688, 'ninety-five thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(10118, 38350, 'thirty-eight thousand three hundred fifty'); INSERT INTO t3 VALUES(10119, 8942, 'eight thousand nine hundred forty-two'); INSERT INTO t3 VALUES(10120, 21936, 'twenty-one thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(10121, 2361, 'two thousand three hundred sixty-one'); INSERT INTO t3 VALUES(10122, 70758, 'seventy thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(10123, 79416, 'seventy-nine thousand four hundred sixteen'); INSERT INTO t3 VALUES(10124, 50921, 'fifty thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(10125, 16709, 'sixteen thousand seven hundred nine'); INSERT INTO t3 VALUES(10126, 86402, 'eighty-six thousand four hundred two'); INSERT INTO t3 VALUES(10127, 98444, 'ninety-eight thousand four hundred forty-four'); INSERT INTO t3 VALUES(10128, 81170, 'eighty-one thousand one hundred seventy'); INSERT INTO t3 VALUES(10129, 67494, 'sixty-seven thousand four hundred ninety-four'); INSERT INTO t3 VALUES(10130, 68126, 'sixty-eight thousand one hundred twenty-six'); INSERT INTO t3 VALUES(10131, 29829, 'twenty-nine thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(10132, 7464, 'seven thousand four hundred sixty-four'); INSERT INTO t3 VALUES(10133, 63402, 'sixty-three thousand four hundred two'); INSERT INTO t3 VALUES(10134, 32300, 'thirty-two thousand three hundred'); INSERT INTO t3 VALUES(10135, 79483, 'seventy-nine thousand four hundred eighty-three'); INSERT INTO t3 VALUES(10136, 48425, 'forty-eight thousand four hundred twenty-five'); INSERT INTO t3 VALUES(10137, 17150, 'seventeen thousand one hundred fifty'); INSERT INTO t3 VALUES(10138, 19168, 'nineteen thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(10139, 67698, 'sixty-seven thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(10140, 75516, 'seventy-five thousand five hundred sixteen'); INSERT INTO t3 VALUES(10141, 57137, 'fifty-seven thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(10142, 80464, 'eighty thousand four hundred sixty-four'); INSERT INTO t3 VALUES(10143, 80916, 'eighty thousand nine hundred sixteen'); INSERT INTO t3 VALUES(10144, 42731, 'forty-two thousand seven hundred thirty-one'); INSERT INTO t3 VALUES(10145, 56972, 'fifty-six thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(10146, 70343, 'seventy thousand three hundred forty-three'); INSERT INTO t3 VALUES(10147, 9097, 'nine thousand ninety-seven'); INSERT INTO t3 VALUES(10148, 32219, 'thirty-two thousand two hundred nineteen'); INSERT INTO t3 VALUES(10149, 55485, 'fifty-five thousand four hundred eighty-five'); INSERT INTO t3 VALUES(10150, 11369, 'eleven thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(10151, 77631, 'seventy-seven thousand six hundred thirty-one'); INSERT INTO t3 VALUES(10152, 53803, 'fifty-three thousand eight hundred three'); INSERT INTO t3 VALUES(10153, 69533, 'sixty-nine thousand five hundred thirty-three'); INSERT INTO t3 VALUES(10154, 41671, 'forty-one thousand six hundred seventy-one'); INSERT INTO t3 VALUES(10155, 1864, 'one thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(10156, 90970, 'ninety thousand nine hundred seventy'); INSERT INTO t3 VALUES(10157, 35812, 'thirty-five thousand eight hundred twelve'); INSERT INTO t3 VALUES(10158, 8564, 'eight thousand five hundred sixty-four'); INSERT INTO t3 VALUES(10159, 39889, 'thirty-nine thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(10160, 19612, 'nineteen thousand six hundred twelve'); INSERT INTO t3 VALUES(10161, 52799, 'fifty-two thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(10162, 98925, 'ninety-eight thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(10163, 8366, 'eight thousand three hundred sixty-six'); INSERT INTO t3 VALUES(10164, 85195, 'eighty-five thousand one hundred ninety-five'); INSERT INTO t3 VALUES(10165, 51871, 'fifty-one thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(10166, 65532, 'sixty-five thousand five hundred thirty-two'); INSERT INTO t3 VALUES(10167, 5273, 'five thousand two hundred seventy-three'); INSERT INTO t3 VALUES(10168, 88582, 'eighty-eight thousand five hundred eighty-two'); INSERT INTO t3 VALUES(10169, 96024, 'ninety-six thousand twenty-four'); INSERT INTO t3 VALUES(10170, 57607, 'fifty-seven thousand six hundred seven'); INSERT INTO t3 VALUES(10171, 98123, 'ninety-eight thousand one hundred twenty-three'); INSERT INTO t3 VALUES(10172, 97314, 'ninety-seven thousand three hundred fourteen'); INSERT INTO t3 VALUES(10173, 43727, 'forty-three thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(10174, 94052, 'ninety-four thousand fifty-two'); INSERT INTO t3 VALUES(10175, 85173, 'eighty-five thousand one hundred seventy-three'); INSERT INTO t3 VALUES(10176, 97991, 'ninety-seven thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(10177, 92052, 'ninety-two thousand fifty-two'); INSERT INTO t3 VALUES(10178, 75865, 'seventy-five thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(10179, 72141, 'seventy-two thousand one hundred forty-one'); INSERT INTO t3 VALUES(10180, 55382, 'fifty-five thousand three hundred eighty-two'); INSERT INTO t3 VALUES(10181, 95116, 'ninety-five thousand one hundred sixteen'); INSERT INTO t3 VALUES(10182, 88060, 'eighty-eight thousand sixty'); INSERT INTO t3 VALUES(10183, 487, 'four hundred eighty-seven'); INSERT INTO t3 VALUES(10184, 4659, 'four thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(10185, 80149, 'eighty thousand one hundred forty-nine'); INSERT INTO t3 VALUES(10186, 16930, 'sixteen thousand nine hundred thirty'); INSERT INTO t3 VALUES(10187, 10589, 'ten thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(10188, 84137, 'eighty-four thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(10189, 80164, 'eighty thousand one hundred sixty-four'); INSERT INTO t3 VALUES(10190, 10661, 'ten thousand six hundred sixty-one'); INSERT INTO t3 VALUES(10191, 76568, 'seventy-six thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(10192, 92075, 'ninety-two thousand seventy-five'); INSERT INTO t3 VALUES(10193, 26674, 'twenty-six thousand six hundred seventy-four'); INSERT INTO t3 VALUES(10194, 68303, 'sixty-eight thousand three hundred three'); INSERT INTO t3 VALUES(10195, 75931, 'seventy-five thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(10196, 8152, 'eight thousand one hundred fifty-two'); INSERT INTO t3 VALUES(10197, 33799, 'thirty-three thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(10198, 21738, 'twenty-one thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(10199, 5672, 'five thousand six hundred seventy-two'); INSERT INTO t3 VALUES(10200, 99898, 'ninety-nine thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(10201, 16033, 'sixteen thousand thirty-three'); INSERT INTO t3 VALUES(10202, 3964, 'three thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(10203, 24986, 'twenty-four thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(10204, 39973, 'thirty-nine thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(10205, 70562, 'seventy thousand five hundred sixty-two'); INSERT INTO t3 VALUES(10206, 66954, 'sixty-six thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(10207, 99968, 'ninety-nine thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(10208, 91741, 'ninety-one thousand seven hundred forty-one'); INSERT INTO t3 VALUES(10209, 66459, 'sixty-six thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(10210, 90387, 'ninety thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(10211, 12882, 'twelve thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(10212, 94967, 'ninety-four thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(10213, 29799, 'twenty-nine thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(10214, 918, 'nine hundred eighteen'); INSERT INTO t3 VALUES(10215, 86300, 'eighty-six thousand three hundred'); INSERT INTO t3 VALUES(10216, 29489, 'twenty-nine thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(10217, 26758, 'twenty-six thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(10218, 83512, 'eighty-three thousand five hundred twelve'); INSERT INTO t3 VALUES(10219, 59831, 'fifty-nine thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(10220, 33960, 'thirty-three thousand nine hundred sixty'); INSERT INTO t3 VALUES(10221, 10857, 'ten thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(10222, 79734, 'seventy-nine thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(10223, 91431, 'ninety-one thousand four hundred thirty-one'); INSERT INTO t3 VALUES(10224, 85389, 'eighty-five thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(10225, 9711, 'nine thousand seven hundred eleven'); INSERT INTO t3 VALUES(10226, 817, 'eight hundred seventeen'); INSERT INTO t3 VALUES(10227, 5281, 'five thousand two hundred eighty-one'); INSERT INTO t3 VALUES(10228, 18861, 'eighteen thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(10229, 42662, 'forty-two thousand six hundred sixty-two'); INSERT INTO t3 VALUES(10230, 52754, 'fifty-two thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(10231, 99160, 'ninety-nine thousand one hundred sixty'); INSERT INTO t3 VALUES(10232, 51631, 'fifty-one thousand six hundred thirty-one'); INSERT INTO t3 VALUES(10233, 19758, 'nineteen thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(10234, 1128, 'one thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(10235, 13216, 'thirteen thousand two hundred sixteen'); INSERT INTO t3 VALUES(10236, 40414, 'forty thousand four hundred fourteen'); INSERT INTO t3 VALUES(10237, 68008, 'sixty-eight thousand eight'); INSERT INTO t3 VALUES(10238, 55273, 'fifty-five thousand two hundred seventy-three'); INSERT INTO t3 VALUES(10239, 57731, 'fifty-seven thousand seven hundred thirty-one'); INSERT INTO t3 VALUES(10240, 7753, 'seven thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(10241, 84248, 'eighty-four thousand two hundred forty-eight'); INSERT INTO t3 VALUES(10242, 73512, 'seventy-three thousand five hundred twelve'); INSERT INTO t3 VALUES(10243, 5151, 'five thousand one hundred fifty-one'); INSERT INTO t3 VALUES(10244, 22687, 'twenty-two thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(10245, 87087, 'eighty-seven thousand eighty-seven'); INSERT INTO t3 VALUES(10246, 96113, 'ninety-six thousand one hundred thirteen'); INSERT INTO t3 VALUES(10247, 38032, 'thirty-eight thousand thirty-two'); INSERT INTO t3 VALUES(10248, 37952, 'thirty-seven thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(10249, 29910, 'twenty-nine thousand nine hundred ten'); INSERT INTO t3 VALUES(10250, 73037, 'seventy-three thousand thirty-seven'); INSERT INTO t3 VALUES(10251, 37533, 'thirty-seven thousand five hundred thirty-three'); INSERT INTO t3 VALUES(10252, 25552, 'twenty-five thousand five hundred fifty-two'); INSERT INTO t3 VALUES(10253, 95890, 'ninety-five thousand eight hundred ninety'); INSERT INTO t3 VALUES(10254, 73384, 'seventy-three thousand three hundred eighty-four'); INSERT INTO t3 VALUES(10255, 28153, 'twenty-eight thousand one hundred fifty-three'); INSERT INTO t3 VALUES(10256, 73075, 'seventy-three thousand seventy-five'); INSERT INTO t3 VALUES(10257, 37272, 'thirty-seven thousand two hundred seventy-two'); INSERT INTO t3 VALUES(10258, 76836, 'seventy-six thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(10259, 47128, 'forty-seven thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(10260, 44580, 'forty-four thousand five hundred eighty'); INSERT INTO t3 VALUES(10261, 25791, 'twenty-five thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(10262, 75732, 'seventy-five thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(10263, 34477, 'thirty-four thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(10264, 17554, 'seventeen thousand five hundred fifty-four'); INSERT INTO t3 VALUES(10265, 97767, 'ninety-seven thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(10266, 26958, 'twenty-six thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(10267, 7899, 'seven thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(10268, 61767, 'sixty-one thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(10269, 91063, 'ninety-one thousand sixty-three'); INSERT INTO t3 VALUES(10270, 33260, 'thirty-three thousand two hundred sixty'); INSERT INTO t3 VALUES(10271, 6346, 'six thousand three hundred forty-six'); INSERT INTO t3 VALUES(10272, 15264, 'fifteen thousand two hundred sixty-four'); INSERT INTO t3 VALUES(10273, 30455, 'thirty thousand four hundred fifty-five'); INSERT INTO t3 VALUES(10274, 68343, 'sixty-eight thousand three hundred forty-three'); INSERT INTO t3 VALUES(10275, 42090, 'forty-two thousand ninety'); INSERT INTO t3 VALUES(10276, 64780, 'sixty-four thousand seven hundred eighty'); INSERT INTO t3 VALUES(10277, 58562, 'fifty-eight thousand five hundred sixty-two'); INSERT INTO t3 VALUES(10278, 52566, 'fifty-two thousand five hundred sixty-six'); INSERT INTO t3 VALUES(10279, 31319, 'thirty-one thousand three hundred nineteen'); INSERT INTO t3 VALUES(10280, 6021, 'six thousand twenty-one'); INSERT INTO t3 VALUES(10281, 20805, 'twenty thousand eight hundred five'); INSERT INTO t3 VALUES(10282, 8022, 'eight thousand twenty-two'); INSERT INTO t3 VALUES(10283, 50421, 'fifty thousand four hundred twenty-one'); INSERT INTO t3 VALUES(10284, 7331, 'seven thousand three hundred thirty-one'); INSERT INTO t3 VALUES(10285, 1475, 'one thousand four hundred seventy-five'); INSERT INTO t3 VALUES(10286, 47424, 'forty-seven thousand four hundred twenty-four'); INSERT INTO t3 VALUES(10287, 43754, 'forty-three thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(10288, 67350, 'sixty-seven thousand three hundred fifty'); INSERT INTO t3 VALUES(10289, 12017, 'twelve thousand seventeen'); INSERT INTO t3 VALUES(10290, 22773, 'twenty-two thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(10291, 46287, 'forty-six thousand two hundred eighty-seven'); INSERT INTO t3 VALUES(10292, 71061, 'seventy-one thousand sixty-one'); INSERT INTO t3 VALUES(10293, 52897, 'fifty-two thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(10294, 39020, 'thirty-nine thousand twenty'); INSERT INTO t3 VALUES(10295, 27674, 'twenty-seven thousand six hundred seventy-four'); INSERT INTO t3 VALUES(10296, 21666, 'twenty-one thousand six hundred sixty-six'); INSERT INTO t3 VALUES(10297, 37082, 'thirty-seven thousand eighty-two'); INSERT INTO t3 VALUES(10298, 17733, 'seventeen thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(10299, 64767, 'sixty-four thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(10300, 5043, 'five thousand forty-three'); INSERT INTO t3 VALUES(10301, 91348, 'ninety-one thousand three hundred forty-eight'); INSERT INTO t3 VALUES(10302, 17016, 'seventeen thousand sixteen'); INSERT INTO t3 VALUES(10303, 5728, 'five thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(10304, 22891, 'twenty-two thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(10305, 4838, 'four thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(10306, 66294, 'sixty-six thousand two hundred ninety-four'); INSERT INTO t3 VALUES(10307, 92489, 'ninety-two thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(10308, 51575, 'fifty-one thousand five hundred seventy-five'); INSERT INTO t3 VALUES(10309, 37191, 'thirty-seven thousand one hundred ninety-one'); INSERT INTO t3 VALUES(10310, 87785, 'eighty-seven thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(10311, 56922, 'fifty-six thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(10312, 486, 'four hundred eighty-six'); INSERT INTO t3 VALUES(10313, 48655, 'forty-eight thousand six hundred fifty-five'); INSERT INTO t3 VALUES(10314, 54416, 'fifty-four thousand four hundred sixteen'); INSERT INTO t3 VALUES(10315, 12962, 'twelve thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(10316, 6234, 'six thousand two hundred thirty-four'); INSERT INTO t3 VALUES(10317, 39580, 'thirty-nine thousand five hundred eighty'); INSERT INTO t3 VALUES(10318, 78548, 'seventy-eight thousand five hundred forty-eight'); INSERT INTO t3 VALUES(10319, 56983, 'fifty-six thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(10320, 70958, 'seventy thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(10321, 98896, 'ninety-eight thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(10322, 68666, 'sixty-eight thousand six hundred sixty-six'); INSERT INTO t3 VALUES(10323, 67669, 'sixty-seven thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(10324, 16180, 'sixteen thousand one hundred eighty'); INSERT INTO t3 VALUES(10325, 17265, 'seventeen thousand two hundred sixty-five'); INSERT INTO t3 VALUES(10326, 77734, 'seventy-seven thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(10327, 82137, 'eighty-two thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(10328, 21674, 'twenty-one thousand six hundred seventy-four'); INSERT INTO t3 VALUES(10329, 73095, 'seventy-three thousand ninety-five'); INSERT INTO t3 VALUES(10330, 26810, 'twenty-six thousand eight hundred ten'); INSERT INTO t3 VALUES(10331, 40933, 'forty thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(10332, 28879, 'twenty-eight thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(10333, 2228, 'two thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(10334, 12687, 'twelve thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(10335, 21435, 'twenty-one thousand four hundred thirty-five'); INSERT INTO t3 VALUES(10336, 11286, 'eleven thousand two hundred eighty-six'); INSERT INTO t3 VALUES(10337, 41422, 'forty-one thousand four hundred twenty-two'); INSERT INTO t3 VALUES(10338, 65350, 'sixty-five thousand three hundred fifty'); INSERT INTO t3 VALUES(10339, 20648, 'twenty thousand six hundred forty-eight'); INSERT INTO t3 VALUES(10340, 83924, 'eighty-three thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(10341, 1398, 'one thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(10342, 19390, 'nineteen thousand three hundred ninety'); INSERT INTO t3 VALUES(10343, 10477, 'ten thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(10344, 2545, 'two thousand five hundred forty-five'); INSERT INTO t3 VALUES(10345, 55331, 'fifty-five thousand three hundred thirty-one'); INSERT INTO t3 VALUES(10346, 25421, 'twenty-five thousand four hundred twenty-one'); INSERT INTO t3 VALUES(10347, 9548, 'nine thousand five hundred forty-eight'); INSERT INTO t3 VALUES(10348, 13150, 'thirteen thousand one hundred fifty'); INSERT INTO t3 VALUES(10349, 68366, 'sixty-eight thousand three hundred sixty-six'); INSERT INTO t3 VALUES(10350, 40111, 'forty thousand one hundred eleven'); INSERT INTO t3 VALUES(10351, 2468, 'two thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(10352, 75127, 'seventy-five thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(10353, 72225, 'seventy-two thousand two hundred twenty-five'); INSERT INTO t3 VALUES(10354, 67024, 'sixty-seven thousand twenty-four'); INSERT INTO t3 VALUES(10355, 90483, 'ninety thousand four hundred eighty-three'); INSERT INTO t3 VALUES(10356, 36430, 'thirty-six thousand four hundred thirty'); INSERT INTO t3 VALUES(10357, 48789, 'forty-eight thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(10358, 66398, 'sixty-six thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(10359, 42686, 'forty-two thousand six hundred eighty-six'); INSERT INTO t3 VALUES(10360, 57024, 'fifty-seven thousand twenty-four'); INSERT INTO t3 VALUES(10361, 99842, 'ninety-nine thousand eight hundred forty-two'); INSERT INTO t3 VALUES(10362, 48014, 'forty-eight thousand fourteen'); INSERT INTO t3 VALUES(10363, 44062, 'forty-four thousand sixty-two'); INSERT INTO t3 VALUES(10364, 33789, 'thirty-three thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(10365, 40954, 'forty thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(10366, 67608, 'sixty-seven thousand six hundred eight'); INSERT INTO t3 VALUES(10367, 70049, 'seventy thousand forty-nine'); INSERT INTO t3 VALUES(10368, 27817, 'twenty-seven thousand eight hundred seventeen'); INSERT INTO t3 VALUES(10369, 1078, 'one thousand seventy-eight'); INSERT INTO t3 VALUES(10370, 8400, 'eight thousand four hundred'); INSERT INTO t3 VALUES(10371, 76108, 'seventy-six thousand one hundred eight'); INSERT INTO t3 VALUES(10372, 72883, 'seventy-two thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(10373, 38984, 'thirty-eight thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(10374, 72397, 'seventy-two thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(10375, 23620, 'twenty-three thousand six hundred twenty'); INSERT INTO t3 VALUES(10376, 22452, 'twenty-two thousand four hundred fifty-two'); INSERT INTO t3 VALUES(10377, 77334, 'seventy-seven thousand three hundred thirty-four'); INSERT INTO t3 VALUES(10378, 61498, 'sixty-one thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(10379, 95522, 'ninety-five thousand five hundred twenty-two'); INSERT INTO t3 VALUES(10380, 95614, 'ninety-five thousand six hundred fourteen'); INSERT INTO t3 VALUES(10381, 16085, 'sixteen thousand eighty-five'); INSERT INTO t3 VALUES(10382, 93566, 'ninety-three thousand five hundred sixty-six'); INSERT INTO t3 VALUES(10383, 75815, 'seventy-five thousand eight hundred fifteen'); INSERT INTO t3 VALUES(10384, 34576, 'thirty-four thousand five hundred seventy-six'); INSERT INTO t3 VALUES(10385, 36145, 'thirty-six thousand one hundred forty-five'); INSERT INTO t3 VALUES(10386, 18074, 'eighteen thousand seventy-four'); INSERT INTO t3 VALUES(10387, 84877, 'eighty-four thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(10388, 25586, 'twenty-five thousand five hundred eighty-six'); INSERT INTO t3 VALUES(10389, 78809, 'seventy-eight thousand eight hundred nine'); INSERT INTO t3 VALUES(10390, 8662, 'eight thousand six hundred sixty-two'); INSERT INTO t3 VALUES(10391, 29182, 'twenty-nine thousand one hundred eighty-two'); INSERT INTO t3 VALUES(10392, 88864, 'eighty-eight thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(10393, 14679, 'fourteen thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(10394, 91224, 'ninety-one thousand two hundred twenty-four'); INSERT INTO t3 VALUES(10395, 18697, 'eighteen thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(10396, 1975, 'one thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(10397, 35566, 'thirty-five thousand five hundred sixty-six'); INSERT INTO t3 VALUES(10398, 90649, 'ninety thousand six hundred forty-nine'); INSERT INTO t3 VALUES(10399, 41587, 'forty-one thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(10400, 92369, 'ninety-two thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(10401, 59313, 'fifty-nine thousand three hundred thirteen'); INSERT INTO t3 VALUES(10402, 92753, 'ninety-two thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(10403, 67006, 'sixty-seven thousand six'); INSERT INTO t3 VALUES(10404, 90298, 'ninety thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(10405, 23566, 'twenty-three thousand five hundred sixty-six'); INSERT INTO t3 VALUES(10406, 48896, 'forty-eight thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(10407, 3496, 'three thousand four hundred ninety-six'); INSERT INTO t3 VALUES(10408, 15665, 'fifteen thousand six hundred sixty-five'); INSERT INTO t3 VALUES(10409, 77591, 'seventy-seven thousand five hundred ninety-one'); INSERT INTO t3 VALUES(10410, 41215, 'forty-one thousand two hundred fifteen'); INSERT INTO t3 VALUES(10411, 75719, 'seventy-five thousand seven hundred nineteen'); INSERT INTO t3 VALUES(10412, 56052, 'fifty-six thousand fifty-two'); INSERT INTO t3 VALUES(10413, 63159, 'sixty-three thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(10414, 37775, 'thirty-seven thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(10415, 80290, 'eighty thousand two hundred ninety'); INSERT INTO t3 VALUES(10416, 71632, 'seventy-one thousand six hundred thirty-two'); INSERT INTO t3 VALUES(10417, 55940, 'fifty-five thousand nine hundred forty'); INSERT INTO t3 VALUES(10418, 17948, 'seventeen thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(10419, 61118, 'sixty-one thousand one hundred eighteen'); INSERT INTO t3 VALUES(10420, 73096, 'seventy-three thousand ninety-six'); INSERT INTO t3 VALUES(10421, 84122, 'eighty-four thousand one hundred twenty-two'); INSERT INTO t3 VALUES(10422, 30211, 'thirty thousand two hundred eleven'); INSERT INTO t3 VALUES(10423, 12525, 'twelve thousand five hundred twenty-five'); INSERT INTO t3 VALUES(10424, 31874, 'thirty-one thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(10425, 40188, 'forty thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(10426, 20263, 'twenty thousand two hundred sixty-three'); INSERT INTO t3 VALUES(10427, 87825, 'eighty-seven thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(10428, 14178, 'fourteen thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(10429, 7006, 'seven thousand six'); INSERT INTO t3 VALUES(10430, 83573, 'eighty-three thousand five hundred seventy-three'); INSERT INTO t3 VALUES(10431, 98305, 'ninety-eight thousand three hundred five'); INSERT INTO t3 VALUES(10432, 47815, 'forty-seven thousand eight hundred fifteen'); INSERT INTO t3 VALUES(10433, 88362, 'eighty-eight thousand three hundred sixty-two'); INSERT INTO t3 VALUES(10434, 65333, 'sixty-five thousand three hundred thirty-three'); INSERT INTO t3 VALUES(10435, 74064, 'seventy-four thousand sixty-four'); INSERT INTO t3 VALUES(10436, 48996, 'forty-eight thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(10437, 10622, 'ten thousand six hundred twenty-two'); INSERT INTO t3 VALUES(10438, 37478, 'thirty-seven thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(10439, 73908, 'seventy-three thousand nine hundred eight'); INSERT INTO t3 VALUES(10440, 51870, 'fifty-one thousand eight hundred seventy'); INSERT INTO t3 VALUES(10441, 53408, 'fifty-three thousand four hundred eight'); INSERT INTO t3 VALUES(10442, 71735, 'seventy-one thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(10443, 10872, 'ten thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(10444, 21056, 'twenty-one thousand fifty-six'); INSERT INTO t3 VALUES(10445, 45370, 'forty-five thousand three hundred seventy'); INSERT INTO t3 VALUES(10446, 33759, 'thirty-three thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(10447, 79263, 'seventy-nine thousand two hundred sixty-three'); INSERT INTO t3 VALUES(10448, 28087, 'twenty-eight thousand eighty-seven'); INSERT INTO t3 VALUES(10449, 70700, 'seventy thousand seven hundred'); INSERT INTO t3 VALUES(10450, 80511, 'eighty thousand five hundred eleven'); INSERT INTO t3 VALUES(10451, 85319, 'eighty-five thousand three hundred nineteen'); INSERT INTO t3 VALUES(10452, 92756, 'ninety-two thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(10453, 85247, 'eighty-five thousand two hundred forty-seven'); INSERT INTO t3 VALUES(10454, 16858, 'sixteen thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(10455, 10678, 'ten thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(10456, 77277, 'seventy-seven thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(10457, 6750, 'six thousand seven hundred fifty'); INSERT INTO t3 VALUES(10458, 48205, 'forty-eight thousand two hundred five'); INSERT INTO t3 VALUES(10459, 96825, 'ninety-six thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(10460, 32918, 'thirty-two thousand nine hundred eighteen'); INSERT INTO t3 VALUES(10461, 58060, 'fifty-eight thousand sixty'); INSERT INTO t3 VALUES(10462, 25279, 'twenty-five thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(10463, 88729, 'eighty-eight thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(10464, 70945, 'seventy thousand nine hundred forty-five'); INSERT INTO t3 VALUES(10465, 6980, 'six thousand nine hundred eighty'); INSERT INTO t3 VALUES(10466, 23519, 'twenty-three thousand five hundred nineteen'); INSERT INTO t3 VALUES(10467, 65339, 'sixty-five thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(10468, 81502, 'eighty-one thousand five hundred two'); INSERT INTO t3 VALUES(10469, 3684, 'three thousand six hundred eighty-four'); INSERT INTO t3 VALUES(10470, 57249, 'fifty-seven thousand two hundred forty-nine'); INSERT INTO t3 VALUES(10471, 27618, 'twenty-seven thousand six hundred eighteen'); INSERT INTO t3 VALUES(10472, 43156, 'forty-three thousand one hundred fifty-six'); INSERT INTO t3 VALUES(10473, 42109, 'forty-two thousand one hundred nine'); INSERT INTO t3 VALUES(10474, 96017, 'ninety-six thousand seventeen'); INSERT INTO t3 VALUES(10475, 22000, 'twenty-two thousand'); INSERT INTO t3 VALUES(10476, 26633, 'twenty-six thousand six hundred thirty-three'); INSERT INTO t3 VALUES(10477, 47049, 'forty-seven thousand forty-nine'); INSERT INTO t3 VALUES(10478, 78305, 'seventy-eight thousand three hundred five'); INSERT INTO t3 VALUES(10479, 33063, 'thirty-three thousand sixty-three'); INSERT INTO t3 VALUES(10480, 79879, 'seventy-nine thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(10481, 20387, 'twenty thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(10482, 21999, 'twenty-one thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(10483, 74860, 'seventy-four thousand eight hundred sixty'); INSERT INTO t3 VALUES(10484, 45815, 'forty-five thousand eight hundred fifteen'); INSERT INTO t3 VALUES(10485, 93116, 'ninety-three thousand one hundred sixteen'); INSERT INTO t3 VALUES(10486, 8024, 'eight thousand twenty-four'); INSERT INTO t3 VALUES(10487, 18762, 'eighteen thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(10488, 57358, 'fifty-seven thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(10489, 82633, 'eighty-two thousand six hundred thirty-three'); INSERT INTO t3 VALUES(10490, 13679, 'thirteen thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(10491, 91321, 'ninety-one thousand three hundred twenty-one'); INSERT INTO t3 VALUES(10492, 89799, 'eighty-nine thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(10493, 39322, 'thirty-nine thousand three hundred twenty-two'); INSERT INTO t3 VALUES(10494, 2976, 'two thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(10495, 62766, 'sixty-two thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(10496, 18157, 'eighteen thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(10497, 76805, 'seventy-six thousand eight hundred five'); INSERT INTO t3 VALUES(10498, 78640, 'seventy-eight thousand six hundred forty'); INSERT INTO t3 VALUES(10499, 25320, 'twenty-five thousand three hundred twenty'); INSERT INTO t3 VALUES(10500, 62990, 'sixty-two thousand nine hundred ninety'); INSERT INTO t3 VALUES(10501, 68394, 'sixty-eight thousand three hundred ninety-four'); INSERT INTO t3 VALUES(10502, 46396, 'forty-six thousand three hundred ninety-six'); INSERT INTO t3 VALUES(10503, 10416, 'ten thousand four hundred sixteen'); INSERT INTO t3 VALUES(10504, 26590, 'twenty-six thousand five hundred ninety'); INSERT INTO t3 VALUES(10505, 10628, 'ten thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(10506, 26998, 'twenty-six thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(10507, 84962, 'eighty-four thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(10508, 71326, 'seventy-one thousand three hundred twenty-six'); INSERT INTO t3 VALUES(10509, 23527, 'twenty-three thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(10510, 34961, 'thirty-four thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(10511, 22176, 'twenty-two thousand one hundred seventy-six'); INSERT INTO t3 VALUES(10512, 28897, 'twenty-eight thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(10513, 92324, 'ninety-two thousand three hundred twenty-four'); INSERT INTO t3 VALUES(10514, 34571, 'thirty-four thousand five hundred seventy-one'); INSERT INTO t3 VALUES(10515, 39630, 'thirty-nine thousand six hundred thirty'); INSERT INTO t3 VALUES(10516, 32629, 'thirty-two thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(10517, 22073, 'twenty-two thousand seventy-three'); INSERT INTO t3 VALUES(10518, 61773, 'sixty-one thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(10519, 92914, 'ninety-two thousand nine hundred fourteen'); INSERT INTO t3 VALUES(10520, 36986, 'thirty-six thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(10521, 8014, 'eight thousand fourteen'); INSERT INTO t3 VALUES(10522, 620, 'six hundred twenty'); INSERT INTO t3 VALUES(10523, 62244, 'sixty-two thousand two hundred forty-four'); INSERT INTO t3 VALUES(10524, 26554, 'twenty-six thousand five hundred fifty-four'); INSERT INTO t3 VALUES(10525, 18554, 'eighteen thousand five hundred fifty-four'); INSERT INTO t3 VALUES(10526, 57124, 'fifty-seven thousand one hundred twenty-four'); INSERT INTO t3 VALUES(10527, 60698, 'sixty thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(10528, 94766, 'ninety-four thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(10529, 77812, 'seventy-seven thousand eight hundred twelve'); INSERT INTO t3 VALUES(10530, 93719, 'ninety-three thousand seven hundred nineteen'); INSERT INTO t3 VALUES(10531, 47365, 'forty-seven thousand three hundred sixty-five'); INSERT INTO t3 VALUES(10532, 87389, 'eighty-seven thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(10533, 64982, 'sixty-four thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(10534, 68138, 'sixty-eight thousand one hundred thirty-eight'); INSERT INTO t3 VALUES(10535, 19826, 'nineteen thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(10536, 48277, 'forty-eight thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(10537, 60402, 'sixty thousand four hundred two'); INSERT INTO t3 VALUES(10538, 95435, 'ninety-five thousand four hundred thirty-five'); INSERT INTO t3 VALUES(10539, 85718, 'eighty-five thousand seven hundred eighteen'); INSERT INTO t3 VALUES(10540, 16919, 'sixteen thousand nine hundred nineteen'); INSERT INTO t3 VALUES(10541, 79484, 'seventy-nine thousand four hundred eighty-four'); INSERT INTO t3 VALUES(10542, 90653, 'ninety thousand six hundred fifty-three'); INSERT INTO t3 VALUES(10543, 55175, 'fifty-five thousand one hundred seventy-five'); INSERT INTO t3 VALUES(10544, 56264, 'fifty-six thousand two hundred sixty-four'); INSERT INTO t3 VALUES(10545, 15385, 'fifteen thousand three hundred eighty-five'); INSERT INTO t3 VALUES(10546, 96283, 'ninety-six thousand two hundred eighty-three'); INSERT INTO t3 VALUES(10547, 14326, 'fourteen thousand three hundred twenty-six'); INSERT INTO t3 VALUES(10548, 21968, 'twenty-one thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(10549, 76800, 'seventy-six thousand eight hundred'); INSERT INTO t3 VALUES(10550, 63662, 'sixty-three thousand six hundred sixty-two'); INSERT INTO t3 VALUES(10551, 381, 'three hundred eighty-one'); INSERT INTO t3 VALUES(10552, 83093, 'eighty-three thousand ninety-three'); INSERT INTO t3 VALUES(10553, 33168, 'thirty-three thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(10554, 47298, 'forty-seven thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(10555, 77502, 'seventy-seven thousand five hundred two'); INSERT INTO t3 VALUES(10556, 93598, 'ninety-three thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(10557, 93288, 'ninety-three thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(10558, 29031, 'twenty-nine thousand thirty-one'); INSERT INTO t3 VALUES(10559, 72558, 'seventy-two thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(10560, 64221, 'sixty-four thousand two hundred twenty-one'); INSERT INTO t3 VALUES(10561, 61336, 'sixty-one thousand three hundred thirty-six'); INSERT INTO t3 VALUES(10562, 47425, 'forty-seven thousand four hundred twenty-five'); INSERT INTO t3 VALUES(10563, 66118, 'sixty-six thousand one hundred eighteen'); INSERT INTO t3 VALUES(10564, 94202, 'ninety-four thousand two hundred two'); INSERT INTO t3 VALUES(10565, 64386, 'sixty-four thousand three hundred eighty-six'); INSERT INTO t3 VALUES(10566, 23446, 'twenty-three thousand four hundred forty-six'); INSERT INTO t3 VALUES(10567, 70765, 'seventy thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(10568, 99956, 'ninety-nine thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(10569, 84965, 'eighty-four thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(10570, 34288, 'thirty-four thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(10571, 65799, 'sixty-five thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(10572, 53377, 'fifty-three thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(10573, 75598, 'seventy-five thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(10574, 69838, 'sixty-nine thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(10575, 7407, 'seven thousand four hundred seven'); INSERT INTO t3 VALUES(10576, 89051, 'eighty-nine thousand fifty-one'); INSERT INTO t3 VALUES(10577, 79424, 'seventy-nine thousand four hundred twenty-four'); INSERT INTO t3 VALUES(10578, 23182, 'twenty-three thousand one hundred eighty-two'); INSERT INTO t3 VALUES(10579, 2439, 'two thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(10580, 82595, 'eighty-two thousand five hundred ninety-five'); INSERT INTO t3 VALUES(10581, 84904, 'eighty-four thousand nine hundred four'); INSERT INTO t3 VALUES(10582, 17317, 'seventeen thousand three hundred seventeen'); INSERT INTO t3 VALUES(10583, 7454, 'seven thousand four hundred fifty-four'); INSERT INTO t3 VALUES(10584, 26856, 'twenty-six thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(10585, 39450, 'thirty-nine thousand four hundred fifty'); INSERT INTO t3 VALUES(10586, 46229, 'forty-six thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(10587, 18416, 'eighteen thousand four hundred sixteen'); INSERT INTO t3 VALUES(10588, 27678, 'twenty-seven thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(10589, 62272, 'sixty-two thousand two hundred seventy-two'); INSERT INTO t3 VALUES(10590, 28858, 'twenty-eight thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(10591, 29580, 'twenty-nine thousand five hundred eighty'); INSERT INTO t3 VALUES(10592, 223, 'two hundred twenty-three'); INSERT INTO t3 VALUES(10593, 32756, 'thirty-two thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(10594, 88077, 'eighty-eight thousand seventy-seven'); INSERT INTO t3 VALUES(10595, 1615, 'one thousand six hundred fifteen'); INSERT INTO t3 VALUES(10596, 9083, 'nine thousand eighty-three'); INSERT INTO t3 VALUES(10597, 76769, 'seventy-six thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(10598, 2127, 'two thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(10599, 7844, 'seven thousand eight hundred forty-four'); INSERT INTO t3 VALUES(10600, 25991, 'twenty-five thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(10601, 92078, 'ninety-two thousand seventy-eight'); INSERT INTO t3 VALUES(10602, 77023, 'seventy-seven thousand twenty-three'); INSERT INTO t3 VALUES(10603, 65345, 'sixty-five thousand three hundred forty-five'); INSERT INTO t3 VALUES(10604, 29761, 'twenty-nine thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(10605, 22301, 'twenty-two thousand three hundred one'); INSERT INTO t3 VALUES(10606, 42009, 'forty-two thousand nine'); INSERT INTO t3 VALUES(10607, 8044, 'eight thousand forty-four'); INSERT INTO t3 VALUES(10608, 92535, 'ninety-two thousand five hundred thirty-five'); INSERT INTO t3 VALUES(10609, 18115, 'eighteen thousand one hundred fifteen'); INSERT INTO t3 VALUES(10610, 69586, 'sixty-nine thousand five hundred eighty-six'); INSERT INTO t3 VALUES(10611, 21970, 'twenty-one thousand nine hundred seventy'); INSERT INTO t3 VALUES(10612, 40028, 'forty thousand twenty-eight'); INSERT INTO t3 VALUES(10613, 95062, 'ninety-five thousand sixty-two'); INSERT INTO t3 VALUES(10614, 18665, 'eighteen thousand six hundred sixty-five'); INSERT INTO t3 VALUES(10615, 41276, 'forty-one thousand two hundred seventy-six'); INSERT INTO t3 VALUES(10616, 58155, 'fifty-eight thousand one hundred fifty-five'); INSERT INTO t3 VALUES(10617, 26099, 'twenty-six thousand ninety-nine'); INSERT INTO t3 VALUES(10618, 4490, 'four thousand four hundred ninety'); INSERT INTO t3 VALUES(10619, 48273, 'forty-eight thousand two hundred seventy-three'); INSERT INTO t3 VALUES(10620, 62972, 'sixty-two thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(10621, 28466, 'twenty-eight thousand four hundred sixty-six'); INSERT INTO t3 VALUES(10622, 40135, 'forty thousand one hundred thirty-five'); INSERT INTO t3 VALUES(10623, 44157, 'forty-four thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(10624, 34688, 'thirty-four thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(10625, 7993, 'seven thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(10626, 56261, 'fifty-six thousand two hundred sixty-one'); INSERT INTO t3 VALUES(10627, 37344, 'thirty-seven thousand three hundred forty-four'); INSERT INTO t3 VALUES(10628, 73458, 'seventy-three thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(10629, 73568, 'seventy-three thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(10630, 41156, 'forty-one thousand one hundred fifty-six'); INSERT INTO t3 VALUES(10631, 88168, 'eighty-eight thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(10632, 85962, 'eighty-five thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(10633, 71189, 'seventy-one thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(10634, 90972, 'ninety thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(10635, 7654, 'seven thousand six hundred fifty-four'); INSERT INTO t3 VALUES(10636, 18384, 'eighteen thousand three hundred eighty-four'); INSERT INTO t3 VALUES(10637, 66261, 'sixty-six thousand two hundred sixty-one'); INSERT INTO t3 VALUES(10638, 38844, 'thirty-eight thousand eight hundred forty-four'); INSERT INTO t3 VALUES(10639, 28843, 'twenty-eight thousand eight hundred forty-three'); INSERT INTO t3 VALUES(10640, 66852, 'sixty-six thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(10641, 2329, 'two thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(10642, 40783, 'forty thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(10643, 27332, 'twenty-seven thousand three hundred thirty-two'); INSERT INTO t3 VALUES(10644, 17419, 'seventeen thousand four hundred nineteen'); INSERT INTO t3 VALUES(10645, 79638, 'seventy-nine thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(10646, 59611, 'fifty-nine thousand six hundred eleven'); INSERT INTO t3 VALUES(10647, 16088, 'sixteen thousand eighty-eight'); INSERT INTO t3 VALUES(10648, 17910, 'seventeen thousand nine hundred ten'); INSERT INTO t3 VALUES(10649, 33871, 'thirty-three thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(10650, 32269, 'thirty-two thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(10651, 86992, 'eighty-six thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(10652, 84530, 'eighty-four thousand five hundred thirty'); INSERT INTO t3 VALUES(10653, 35047, 'thirty-five thousand forty-seven'); INSERT INTO t3 VALUES(10654, 85542, 'eighty-five thousand five hundred forty-two'); INSERT INTO t3 VALUES(10655, 3445, 'three thousand four hundred forty-five'); INSERT INTO t3 VALUES(10656, 68836, 'sixty-eight thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(10657, 11956, 'eleven thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(10658, 95292, 'ninety-five thousand two hundred ninety-two'); INSERT INTO t3 VALUES(10659, 91386, 'ninety-one thousand three hundred eighty-six'); INSERT INTO t3 VALUES(10660, 71837, 'seventy-one thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(10661, 66915, 'sixty-six thousand nine hundred fifteen'); INSERT INTO t3 VALUES(10662, 70161, 'seventy thousand one hundred sixty-one'); INSERT INTO t3 VALUES(10663, 99641, 'ninety-nine thousand six hundred forty-one'); INSERT INTO t3 VALUES(10664, 96026, 'ninety-six thousand twenty-six'); INSERT INTO t3 VALUES(10665, 88334, 'eighty-eight thousand three hundred thirty-four'); INSERT INTO t3 VALUES(10666, 47846, 'forty-seven thousand eight hundred forty-six'); INSERT INTO t3 VALUES(10667, 17913, 'seventeen thousand nine hundred thirteen'); INSERT INTO t3 VALUES(10668, 46243, 'forty-six thousand two hundred forty-three'); INSERT INTO t3 VALUES(10669, 30678, 'thirty thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(10670, 69251, 'sixty-nine thousand two hundred fifty-one'); INSERT INTO t3 VALUES(10671, 25890, 'twenty-five thousand eight hundred ninety'); INSERT INTO t3 VALUES(10672, 57601, 'fifty-seven thousand six hundred one'); INSERT INTO t3 VALUES(10673, 29708, 'twenty-nine thousand seven hundred eight'); INSERT INTO t3 VALUES(10674, 89733, 'eighty-nine thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(10675, 69295, 'sixty-nine thousand two hundred ninety-five'); INSERT INTO t3 VALUES(10676, 48895, 'forty-eight thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(10677, 61664, 'sixty-one thousand six hundred sixty-four'); INSERT INTO t3 VALUES(10678, 55014, 'fifty-five thousand fourteen'); INSERT INTO t3 VALUES(10679, 99738, 'ninety-nine thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(10680, 29179, 'twenty-nine thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(10681, 9607, 'nine thousand six hundred seven'); INSERT INTO t3 VALUES(10682, 80451, 'eighty thousand four hundred fifty-one'); INSERT INTO t3 VALUES(10683, 44822, 'forty-four thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(10684, 84018, 'eighty-four thousand eighteen'); INSERT INTO t3 VALUES(10685, 16729, 'sixteen thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(10686, 91979, 'ninety-one thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(10687, 60625, 'sixty thousand six hundred twenty-five'); INSERT INTO t3 VALUES(10688, 99882, 'ninety-nine thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(10689, 24529, 'twenty-four thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(10690, 84733, 'eighty-four thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(10691, 45772, 'forty-five thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(10692, 8, 'eight'); INSERT INTO t3 VALUES(10693, 98736, 'ninety-eight thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(10694, 93590, 'ninety-three thousand five hundred ninety'); INSERT INTO t3 VALUES(10695, 49561, 'forty-nine thousand five hundred sixty-one'); INSERT INTO t3 VALUES(10696, 88854, 'eighty-eight thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(10697, 22625, 'twenty-two thousand six hundred twenty-five'); INSERT INTO t3 VALUES(10698, 64550, 'sixty-four thousand five hundred fifty'); INSERT INTO t3 VALUES(10699, 67, 'sixty-seven'); INSERT INTO t3 VALUES(10700, 59263, 'fifty-nine thousand two hundred sixty-three'); INSERT INTO t3 VALUES(10701, 72292, 'seventy-two thousand two hundred ninety-two'); INSERT INTO t3 VALUES(10702, 72744, 'seventy-two thousand seven hundred forty-four'); INSERT INTO t3 VALUES(10703, 90621, 'ninety thousand six hundred twenty-one'); INSERT INTO t3 VALUES(10704, 28998, 'twenty-eight thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(10705, 52921, 'fifty-two thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(10706, 23829, 'twenty-three thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(10707, 10467, 'ten thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(10708, 10845, 'ten thousand eight hundred forty-five'); INSERT INTO t3 VALUES(10709, 75247, 'seventy-five thousand two hundred forty-seven'); INSERT INTO t3 VALUES(10710, 14709, 'fourteen thousand seven hundred nine'); INSERT INTO t3 VALUES(10711, 33817, 'thirty-three thousand eight hundred seventeen'); INSERT INTO t3 VALUES(10712, 43932, 'forty-three thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(10713, 25641, 'twenty-five thousand six hundred forty-one'); INSERT INTO t3 VALUES(10714, 60279, 'sixty thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(10715, 58241, 'fifty-eight thousand two hundred forty-one'); INSERT INTO t3 VALUES(10716, 91520, 'ninety-one thousand five hundred twenty'); INSERT INTO t3 VALUES(10717, 10554, 'ten thousand five hundred fifty-four'); INSERT INTO t3 VALUES(10718, 72043, 'seventy-two thousand forty-three'); INSERT INTO t3 VALUES(10719, 14954, 'fourteen thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(10720, 3162, 'three thousand one hundred sixty-two'); INSERT INTO t3 VALUES(10721, 79965, 'seventy-nine thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(10722, 93779, 'ninety-three thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(10723, 5425, 'five thousand four hundred twenty-five'); INSERT INTO t3 VALUES(10724, 94473, 'ninety-four thousand four hundred seventy-three'); INSERT INTO t3 VALUES(10725, 55444, 'fifty-five thousand four hundred forty-four'); INSERT INTO t3 VALUES(10726, 65769, 'sixty-five thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(10727, 8657, 'eight thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(10728, 74068, 'seventy-four thousand sixty-eight'); INSERT INTO t3 VALUES(10729, 11370, 'eleven thousand three hundred seventy'); INSERT INTO t3 VALUES(10730, 48920, 'forty-eight thousand nine hundred twenty'); INSERT INTO t3 VALUES(10731, 36068, 'thirty-six thousand sixty-eight'); INSERT INTO t3 VALUES(10732, 5915, 'five thousand nine hundred fifteen'); INSERT INTO t3 VALUES(10733, 3206, 'three thousand two hundred six'); INSERT INTO t3 VALUES(10734, 43790, 'forty-three thousand seven hundred ninety'); INSERT INTO t3 VALUES(10735, 30421, 'thirty thousand four hundred twenty-one'); INSERT INTO t3 VALUES(10736, 37784, 'thirty-seven thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(10737, 98331, 'ninety-eight thousand three hundred thirty-one'); INSERT INTO t3 VALUES(10738, 310, 'three hundred ten'); INSERT INTO t3 VALUES(10739, 13404, 'thirteen thousand four hundred four'); INSERT INTO t3 VALUES(10740, 11981, 'eleven thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(10741, 59970, 'fifty-nine thousand nine hundred seventy'); INSERT INTO t3 VALUES(10742, 49494, 'forty-nine thousand four hundred ninety-four'); INSERT INTO t3 VALUES(10743, 6994, 'six thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(10744, 7963, 'seven thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(10745, 72666, 'seventy-two thousand six hundred sixty-six'); INSERT INTO t3 VALUES(10746, 64219, 'sixty-four thousand two hundred nineteen'); INSERT INTO t3 VALUES(10747, 66853, 'sixty-six thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(10748, 40465, 'forty thousand four hundred sixty-five'); INSERT INTO t3 VALUES(10749, 16456, 'sixteen thousand four hundred fifty-six'); INSERT INTO t3 VALUES(10750, 33101, 'thirty-three thousand one hundred one'); INSERT INTO t3 VALUES(10751, 493, 'four hundred ninety-three'); INSERT INTO t3 VALUES(10752, 93733, 'ninety-three thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(10753, 14553, 'fourteen thousand five hundred fifty-three'); INSERT INTO t3 VALUES(10754, 67620, 'sixty-seven thousand six hundred twenty'); INSERT INTO t3 VALUES(10755, 95814, 'ninety-five thousand eight hundred fourteen'); INSERT INTO t3 VALUES(10756, 38707, 'thirty-eight thousand seven hundred seven'); INSERT INTO t3 VALUES(10757, 98011, 'ninety-eight thousand eleven'); INSERT INTO t3 VALUES(10758, 3228, 'three thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(10759, 42719, 'forty-two thousand seven hundred nineteen'); INSERT INTO t3 VALUES(10760, 66266, 'sixty-six thousand two hundred sixty-six'); INSERT INTO t3 VALUES(10761, 20277, 'twenty thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(10762, 95086, 'ninety-five thousand eighty-six'); INSERT INTO t3 VALUES(10763, 77175, 'seventy-seven thousand one hundred seventy-five'); INSERT INTO t3 VALUES(10764, 73903, 'seventy-three thousand nine hundred three'); INSERT INTO t3 VALUES(10765, 54567, 'fifty-four thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(10766, 2049, 'two thousand forty-nine'); INSERT INTO t3 VALUES(10767, 10613, 'ten thousand six hundred thirteen'); INSERT INTO t3 VALUES(10768, 83046, 'eighty-three thousand forty-six'); INSERT INTO t3 VALUES(10769, 88476, 'eighty-eight thousand four hundred seventy-six'); INSERT INTO t3 VALUES(10770, 5472, 'five thousand four hundred seventy-two'); INSERT INTO t3 VALUES(10771, 64693, 'sixty-four thousand six hundred ninety-three'); INSERT INTO t3 VALUES(10772, 91556, 'ninety-one thousand five hundred fifty-six'); INSERT INTO t3 VALUES(10773, 89342, 'eighty-nine thousand three hundred forty-two'); INSERT INTO t3 VALUES(10774, 40578, 'forty thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(10775, 33641, 'thirty-three thousand six hundred forty-one'); INSERT INTO t3 VALUES(10776, 89678, 'eighty-nine thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(10777, 29041, 'twenty-nine thousand forty-one'); INSERT INTO t3 VALUES(10778, 84569, 'eighty-four thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(10779, 39293, 'thirty-nine thousand two hundred ninety-three'); INSERT INTO t3 VALUES(10780, 69547, 'sixty-nine thousand five hundred forty-seven'); INSERT INTO t3 VALUES(10781, 68847, 'sixty-eight thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(10782, 42339, 'forty-two thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(10783, 79802, 'seventy-nine thousand eight hundred two'); INSERT INTO t3 VALUES(10784, 16404, 'sixteen thousand four hundred four'); INSERT INTO t3 VALUES(10785, 75227, 'seventy-five thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(10786, 55243, 'fifty-five thousand two hundred forty-three'); INSERT INTO t3 VALUES(10787, 33653, 'thirty-three thousand six hundred fifty-three'); INSERT INTO t3 VALUES(10788, 22919, 'twenty-two thousand nine hundred nineteen'); INSERT INTO t3 VALUES(10789, 32032, 'thirty-two thousand thirty-two'); INSERT INTO t3 VALUES(10790, 33047, 'thirty-three thousand forty-seven'); INSERT INTO t3 VALUES(10791, 9311, 'nine thousand three hundred eleven'); INSERT INTO t3 VALUES(10792, 97304, 'ninety-seven thousand three hundred four'); INSERT INTO t3 VALUES(10793, 81534, 'eighty-one thousand five hundred thirty-four'); INSERT INTO t3 VALUES(10794, 71401, 'seventy-one thousand four hundred one'); INSERT INTO t3 VALUES(10795, 76388, 'seventy-six thousand three hundred eighty-eight'); INSERT INTO t3 VALUES(10796, 53599, 'fifty-three thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(10797, 80347, 'eighty thousand three hundred forty-seven'); INSERT INTO t3 VALUES(10798, 55653, 'fifty-five thousand six hundred fifty-three'); INSERT INTO t3 VALUES(10799, 6553, 'six thousand five hundred fifty-three'); INSERT INTO t3 VALUES(10800, 28492, 'twenty-eight thousand four hundred ninety-two'); INSERT INTO t3 VALUES(10801, 12151, 'twelve thousand one hundred fifty-one'); INSERT INTO t3 VALUES(10802, 21140, 'twenty-one thousand one hundred forty'); INSERT INTO t3 VALUES(10803, 49912, 'forty-nine thousand nine hundred twelve'); INSERT INTO t3 VALUES(10804, 70308, 'seventy thousand three hundred eight'); INSERT INTO t3 VALUES(10805, 26252, 'twenty-six thousand two hundred fifty-two'); INSERT INTO t3 VALUES(10806, 5600, 'five thousand six hundred'); INSERT INTO t3 VALUES(10807, 92066, 'ninety-two thousand sixty-six'); INSERT INTO t3 VALUES(10808, 47028, 'forty-seven thousand twenty-eight'); INSERT INTO t3 VALUES(10809, 94053, 'ninety-four thousand fifty-three'); INSERT INTO t3 VALUES(10810, 67529, 'sixty-seven thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(10811, 6408, 'six thousand four hundred eight'); INSERT INTO t3 VALUES(10812, 10116, 'ten thousand one hundred sixteen'); INSERT INTO t3 VALUES(10813, 53925, 'fifty-three thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(10814, 69930, 'sixty-nine thousand nine hundred thirty'); INSERT INTO t3 VALUES(10815, 72684, 'seventy-two thousand six hundred eighty-four'); INSERT INTO t3 VALUES(10816, 42314, 'forty-two thousand three hundred fourteen'); INSERT INTO t3 VALUES(10817, 30607, 'thirty thousand six hundred seven'); INSERT INTO t3 VALUES(10818, 67474, 'sixty-seven thousand four hundred seventy-four'); INSERT INTO t3 VALUES(10819, 94213, 'ninety-four thousand two hundred thirteen'); INSERT INTO t3 VALUES(10820, 64568, 'sixty-four thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(10821, 18940, 'eighteen thousand nine hundred forty'); INSERT INTO t3 VALUES(10822, 68450, 'sixty-eight thousand four hundred fifty'); INSERT INTO t3 VALUES(10823, 12469, 'twelve thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(10824, 80658, 'eighty thousand six hundred fifty-eight'); INSERT INTO t3 VALUES(10825, 35318, 'thirty-five thousand three hundred eighteen'); INSERT INTO t3 VALUES(10826, 53041, 'fifty-three thousand forty-one'); INSERT INTO t3 VALUES(10827, 86618, 'eighty-six thousand six hundred eighteen'); INSERT INTO t3 VALUES(10828, 29611, 'twenty-nine thousand six hundred eleven'); INSERT INTO t3 VALUES(10829, 90236, 'ninety thousand two hundred thirty-six'); INSERT INTO t3 VALUES(10830, 12596, 'twelve thousand five hundred ninety-six'); INSERT INTO t3 VALUES(10831, 6870, 'six thousand eight hundred seventy'); INSERT INTO t3 VALUES(10832, 82402, 'eighty-two thousand four hundred two'); INSERT INTO t3 VALUES(10833, 91415, 'ninety-one thousand four hundred fifteen'); INSERT INTO t3 VALUES(10834, 48761, 'forty-eight thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(10835, 92362, 'ninety-two thousand three hundred sixty-two'); INSERT INTO t3 VALUES(10836, 2232, 'two thousand two hundred thirty-two'); INSERT INTO t3 VALUES(10837, 44704, 'forty-four thousand seven hundred four'); INSERT INTO t3 VALUES(10838, 57685, 'fifty-seven thousand six hundred eighty-five'); INSERT INTO t3 VALUES(10839, 65459, 'sixty-five thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(10840, 4310, 'four thousand three hundred ten'); INSERT INTO t3 VALUES(10841, 24407, 'twenty-four thousand four hundred seven'); INSERT INTO t3 VALUES(10842, 16371, 'sixteen thousand three hundred seventy-one'); INSERT INTO t3 VALUES(10843, 90077, 'ninety thousand seventy-seven'); INSERT INTO t3 VALUES(10844, 84437, 'eighty-four thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(10845, 12623, 'twelve thousand six hundred twenty-three'); INSERT INTO t3 VALUES(10846, 20706, 'twenty thousand seven hundred six'); INSERT INTO t3 VALUES(10847, 87851, 'eighty-seven thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(10848, 46832, 'forty-six thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(10849, 13313, 'thirteen thousand three hundred thirteen'); INSERT INTO t3 VALUES(10850, 27800, 'twenty-seven thousand eight hundred'); INSERT INTO t3 VALUES(10851, 89290, 'eighty-nine thousand two hundred ninety'); INSERT INTO t3 VALUES(10852, 36846, 'thirty-six thousand eight hundred forty-six'); INSERT INTO t3 VALUES(10853, 12370, 'twelve thousand three hundred seventy'); INSERT INTO t3 VALUES(10854, 46960, 'forty-six thousand nine hundred sixty'); INSERT INTO t3 VALUES(10855, 96617, 'ninety-six thousand six hundred seventeen'); INSERT INTO t3 VALUES(10856, 5765, 'five thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(10857, 51413, 'fifty-one thousand four hundred thirteen'); INSERT INTO t3 VALUES(10858, 63089, 'sixty-three thousand eighty-nine'); INSERT INTO t3 VALUES(10859, 27286, 'twenty-seven thousand two hundred eighty-six'); INSERT INTO t3 VALUES(10860, 41034, 'forty-one thousand thirty-four'); INSERT INTO t3 VALUES(10861, 69970, 'sixty-nine thousand nine hundred seventy'); INSERT INTO t3 VALUES(10862, 17890, 'seventeen thousand eight hundred ninety'); INSERT INTO t3 VALUES(10863, 90405, 'ninety thousand four hundred five'); INSERT INTO t3 VALUES(10864, 38216, 'thirty-eight thousand two hundred sixteen'); INSERT INTO t3 VALUES(10865, 69559, 'sixty-nine thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(10866, 16568, 'sixteen thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(10867, 70392, 'seventy thousand three hundred ninety-two'); INSERT INTO t3 VALUES(10868, 77787, 'seventy-seven thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(10869, 76020, 'seventy-six thousand twenty'); INSERT INTO t3 VALUES(10870, 98387, 'ninety-eight thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(10871, 85823, 'eighty-five thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(10872, 89197, 'eighty-nine thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(10873, 45427, 'forty-five thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(10874, 87352, 'eighty-seven thousand three hundred fifty-two'); INSERT INTO t3 VALUES(10875, 71029, 'seventy-one thousand twenty-nine'); INSERT INTO t3 VALUES(10876, 72829, 'seventy-two thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(10877, 11497, 'eleven thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(10878, 93275, 'ninety-three thousand two hundred seventy-five'); INSERT INTO t3 VALUES(10879, 57055, 'fifty-seven thousand fifty-five'); INSERT INTO t3 VALUES(10880, 24600, 'twenty-four thousand six hundred'); INSERT INTO t3 VALUES(10881, 83867, 'eighty-three thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(10882, 66656, 'sixty-six thousand six hundred fifty-six'); INSERT INTO t3 VALUES(10883, 90995, 'ninety thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(10884, 71675, 'seventy-one thousand six hundred seventy-five'); INSERT INTO t3 VALUES(10885, 62782, 'sixty-two thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(10886, 92267, 'ninety-two thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(10887, 43924, 'forty-three thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(10888, 95518, 'ninety-five thousand five hundred eighteen'); INSERT INTO t3 VALUES(10889, 43147, 'forty-three thousand one hundred forty-seven'); INSERT INTO t3 VALUES(10890, 49343, 'forty-nine thousand three hundred forty-three'); INSERT INTO t3 VALUES(10891, 38069, 'thirty-eight thousand sixty-nine'); INSERT INTO t3 VALUES(10892, 33796, 'thirty-three thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(10893, 24255, 'twenty-four thousand two hundred fifty-five'); INSERT INTO t3 VALUES(10894, 22434, 'twenty-two thousand four hundred thirty-four'); INSERT INTO t3 VALUES(10895, 75506, 'seventy-five thousand five hundred six'); INSERT INTO t3 VALUES(10896, 72279, 'seventy-two thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(10897, 93236, 'ninety-three thousand two hundred thirty-six'); INSERT INTO t3 VALUES(10898, 88144, 'eighty-eight thousand one hundred forty-four'); INSERT INTO t3 VALUES(10899, 65763, 'sixty-five thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(10900, 70948, 'seventy thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(10901, 1960, 'one thousand nine hundred sixty'); INSERT INTO t3 VALUES(10902, 83281, 'eighty-three thousand two hundred eighty-one'); INSERT INTO t3 VALUES(10903, 84650, 'eighty-four thousand six hundred fifty'); INSERT INTO t3 VALUES(10904, 16765, 'sixteen thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(10905, 75963, 'seventy-five thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(10906, 69832, 'sixty-nine thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(10907, 44509, 'forty-four thousand five hundred nine'); INSERT INTO t3 VALUES(10908, 44148, 'forty-four thousand one hundred forty-eight'); INSERT INTO t3 VALUES(10909, 19685, 'nineteen thousand six hundred eighty-five'); INSERT INTO t3 VALUES(10910, 85157, 'eighty-five thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(10911, 28159, 'twenty-eight thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(10912, 28786, 'twenty-eight thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(10913, 68380, 'sixty-eight thousand three hundred eighty'); INSERT INTO t3 VALUES(10914, 69751, 'sixty-nine thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(10915, 24201, 'twenty-four thousand two hundred one'); INSERT INTO t3 VALUES(10916, 66909, 'sixty-six thousand nine hundred nine'); INSERT INTO t3 VALUES(10917, 97251, 'ninety-seven thousand two hundred fifty-one'); INSERT INTO t3 VALUES(10918, 31144, 'thirty-one thousand one hundred forty-four'); INSERT INTO t3 VALUES(10919, 87052, 'eighty-seven thousand fifty-two'); INSERT INTO t3 VALUES(10920, 22233, 'twenty-two thousand two hundred thirty-three'); INSERT INTO t3 VALUES(10921, 36134, 'thirty-six thousand one hundred thirty-four'); INSERT INTO t3 VALUES(10922, 81986, 'eighty-one thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(10923, 29602, 'twenty-nine thousand six hundred two'); INSERT INTO t3 VALUES(10924, 31699, 'thirty-one thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(10925, 40368, 'forty thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(10926, 13196, 'thirteen thousand one hundred ninety-six'); INSERT INTO t3 VALUES(10927, 67233, 'sixty-seven thousand two hundred thirty-three'); INSERT INTO t3 VALUES(10928, 28292, 'twenty-eight thousand two hundred ninety-two'); INSERT INTO t3 VALUES(10929, 60938, 'sixty thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(10930, 22981, 'twenty-two thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(10931, 55293, 'fifty-five thousand two hundred ninety-three'); INSERT INTO t3 VALUES(10932, 1442, 'one thousand four hundred forty-two'); INSERT INTO t3 VALUES(10933, 89451, 'eighty-nine thousand four hundred fifty-one'); INSERT INTO t3 VALUES(10934, 74352, 'seventy-four thousand three hundred fifty-two'); INSERT INTO t3 VALUES(10935, 53110, 'fifty-three thousand one hundred ten'); INSERT INTO t3 VALUES(10936, 72118, 'seventy-two thousand one hundred eighteen'); INSERT INTO t3 VALUES(10937, 71427, 'seventy-one thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(10938, 73888, 'seventy-three thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(10939, 53151, 'fifty-three thousand one hundred fifty-one'); INSERT INTO t3 VALUES(10940, 16279, 'sixteen thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(10941, 19747, 'nineteen thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(10942, 69530, 'sixty-nine thousand five hundred thirty'); INSERT INTO t3 VALUES(10943, 82903, 'eighty-two thousand nine hundred three'); INSERT INTO t3 VALUES(10944, 10401, 'ten thousand four hundred one'); INSERT INTO t3 VALUES(10945, 28338, 'twenty-eight thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(10946, 18533, 'eighteen thousand five hundred thirty-three'); INSERT INTO t3 VALUES(10947, 54540, 'fifty-four thousand five hundred forty'); INSERT INTO t3 VALUES(10948, 14713, 'fourteen thousand seven hundred thirteen'); INSERT INTO t3 VALUES(10949, 98920, 'ninety-eight thousand nine hundred twenty'); INSERT INTO t3 VALUES(10950, 37564, 'thirty-seven thousand five hundred sixty-four'); INSERT INTO t3 VALUES(10951, 64025, 'sixty-four thousand twenty-five'); INSERT INTO t3 VALUES(10952, 509, 'five hundred nine'); INSERT INTO t3 VALUES(10953, 11087, 'eleven thousand eighty-seven'); INSERT INTO t3 VALUES(10954, 72134, 'seventy-two thousand one hundred thirty-four'); INSERT INTO t3 VALUES(10955, 47045, 'forty-seven thousand forty-five'); INSERT INTO t3 VALUES(10956, 65681, 'sixty-five thousand six hundred eighty-one'); INSERT INTO t3 VALUES(10957, 79936, 'seventy-nine thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(10958, 7810, 'seven thousand eight hundred ten'); INSERT INTO t3 VALUES(10959, 27203, 'twenty-seven thousand two hundred three'); INSERT INTO t3 VALUES(10960, 45275, 'forty-five thousand two hundred seventy-five'); INSERT INTO t3 VALUES(10961, 83078, 'eighty-three thousand seventy-eight'); INSERT INTO t3 VALUES(10962, 80874, 'eighty thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(10963, 49629, 'forty-nine thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(10964, 44591, 'forty-four thousand five hundred ninety-one'); INSERT INTO t3 VALUES(10965, 33517, 'thirty-three thousand five hundred seventeen'); INSERT INTO t3 VALUES(10966, 13108, 'thirteen thousand one hundred eight'); INSERT INTO t3 VALUES(10967, 78838, 'seventy-eight thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(10968, 55590, 'fifty-five thousand five hundred ninety'); INSERT INTO t3 VALUES(10969, 46472, 'forty-six thousand four hundred seventy-two'); INSERT INTO t3 VALUES(10970, 70047, 'seventy thousand forty-seven'); INSERT INTO t3 VALUES(10971, 10331, 'ten thousand three hundred thirty-one'); INSERT INTO t3 VALUES(10972, 19159, 'nineteen thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(10973, 76159, 'seventy-six thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(10974, 16310, 'sixteen thousand three hundred ten'); INSERT INTO t3 VALUES(10975, 12279, 'twelve thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(10976, 28404, 'twenty-eight thousand four hundred four'); INSERT INTO t3 VALUES(10977, 17025, 'seventeen thousand twenty-five'); INSERT INTO t3 VALUES(10978, 30381, 'thirty thousand three hundred eighty-one'); INSERT INTO t3 VALUES(10979, 69400, 'sixty-nine thousand four hundred'); INSERT INTO t3 VALUES(10980, 73936, 'seventy-three thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(10981, 33825, 'thirty-three thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(10982, 60746, 'sixty thousand seven hundred forty-six'); INSERT INTO t3 VALUES(10983, 4917, 'four thousand nine hundred seventeen'); INSERT INTO t3 VALUES(10984, 77692, 'seventy-seven thousand six hundred ninety-two'); INSERT INTO t3 VALUES(10985, 39683, 'thirty-nine thousand six hundred eighty-three'); INSERT INTO t3 VALUES(10986, 92658, 'ninety-two thousand six hundred fifty-eight'); INSERT INTO t3 VALUES(10987, 66522, 'sixty-six thousand five hundred twenty-two'); INSERT INTO t3 VALUES(10988, 23990, 'twenty-three thousand nine hundred ninety'); INSERT INTO t3 VALUES(10989, 37734, 'thirty-seven thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(10990, 82274, 'eighty-two thousand two hundred seventy-four'); INSERT INTO t3 VALUES(10991, 45421, 'forty-five thousand four hundred twenty-one'); INSERT INTO t3 VALUES(10992, 34156, 'thirty-four thousand one hundred fifty-six'); INSERT INTO t3 VALUES(10993, 3791, 'three thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(10994, 26429, 'twenty-six thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(10995, 84978, 'eighty-four thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(10996, 48180, 'forty-eight thousand one hundred eighty'); INSERT INTO t3 VALUES(10997, 71311, 'seventy-one thousand three hundred eleven'); INSERT INTO t3 VALUES(10998, 30852, 'thirty thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(10999, 45959, 'forty-five thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(11000, 10512, 'ten thousand five hundred twelve'); INSERT INTO t3 VALUES(11001, 30183, 'thirty thousand one hundred eighty-three'); INSERT INTO t3 VALUES(11002, 73351, 'seventy-three thousand three hundred fifty-one'); INSERT INTO t3 VALUES(11003, 67270, 'sixty-seven thousand two hundred seventy'); INSERT INTO t3 VALUES(11004, 89632, 'eighty-nine thousand six hundred thirty-two'); INSERT INTO t3 VALUES(11005, 4057, 'four thousand fifty-seven'); INSERT INTO t3 VALUES(11006, 65163, 'sixty-five thousand one hundred sixty-three'); INSERT INTO t3 VALUES(11007, 39256, 'thirty-nine thousand two hundred fifty-six'); INSERT INTO t3 VALUES(11008, 86978, 'eighty-six thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(11009, 56962, 'fifty-six thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(11010, 63263, 'sixty-three thousand two hundred sixty-three'); INSERT INTO t3 VALUES(11011, 18335, 'eighteen thousand three hundred thirty-five'); INSERT INTO t3 VALUES(11012, 18597, 'eighteen thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(11013, 21035, 'twenty-one thousand thirty-five'); INSERT INTO t3 VALUES(11014, 23236, 'twenty-three thousand two hundred thirty-six'); INSERT INTO t3 VALUES(11015, 63952, 'sixty-three thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(11016, 24442, 'twenty-four thousand four hundred forty-two'); INSERT INTO t3 VALUES(11017, 88347, 'eighty-eight thousand three hundred forty-seven'); INSERT INTO t3 VALUES(11018, 74322, 'seventy-four thousand three hundred twenty-two'); INSERT INTO t3 VALUES(11019, 39544, 'thirty-nine thousand five hundred forty-four'); INSERT INTO t3 VALUES(11020, 5834, 'five thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(11021, 72605, 'seventy-two thousand six hundred five'); INSERT INTO t3 VALUES(11022, 35217, 'thirty-five thousand two hundred seventeen'); INSERT INTO t3 VALUES(11023, 43060, 'forty-three thousand sixty'); INSERT INTO t3 VALUES(11024, 51837, 'fifty-one thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(11025, 45135, 'forty-five thousand one hundred thirty-five'); INSERT INTO t3 VALUES(11026, 67767, 'sixty-seven thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(11027, 27976, 'twenty-seven thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(11028, 65836, 'sixty-five thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(11029, 18096, 'eighteen thousand ninety-six'); INSERT INTO t3 VALUES(11030, 84463, 'eighty-four thousand four hundred sixty-three'); INSERT INTO t3 VALUES(11031, 84247, 'eighty-four thousand two hundred forty-seven'); INSERT INTO t3 VALUES(11032, 80923, 'eighty thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(11033, 63983, 'sixty-three thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(11034, 92431, 'ninety-two thousand four hundred thirty-one'); INSERT INTO t3 VALUES(11035, 91538, 'ninety-one thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(11036, 90053, 'ninety thousand fifty-three'); INSERT INTO t3 VALUES(11037, 61166, 'sixty-one thousand one hundred sixty-six'); INSERT INTO t3 VALUES(11038, 19959, 'nineteen thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(11039, 81429, 'eighty-one thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(11040, 24863, 'twenty-four thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(11041, 78128, 'seventy-eight thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(11042, 78672, 'seventy-eight thousand six hundred seventy-two'); INSERT INTO t3 VALUES(11043, 35473, 'thirty-five thousand four hundred seventy-three'); INSERT INTO t3 VALUES(11044, 80758, 'eighty thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(11045, 26306, 'twenty-six thousand three hundred six'); INSERT INTO t3 VALUES(11046, 58280, 'fifty-eight thousand two hundred eighty'); INSERT INTO t3 VALUES(11047, 87616, 'eighty-seven thousand six hundred sixteen'); INSERT INTO t3 VALUES(11048, 23750, 'twenty-three thousand seven hundred fifty'); INSERT INTO t3 VALUES(11049, 28679, 'twenty-eight thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(11050, 27309, 'twenty-seven thousand three hundred nine'); INSERT INTO t3 VALUES(11051, 5706, 'five thousand seven hundred six'); INSERT INTO t3 VALUES(11052, 18708, 'eighteen thousand seven hundred eight'); INSERT INTO t3 VALUES(11053, 14416, 'fourteen thousand four hundred sixteen'); INSERT INTO t3 VALUES(11054, 84060, 'eighty-four thousand sixty'); INSERT INTO t3 VALUES(11055, 5425, 'five thousand four hundred twenty-five'); INSERT INTO t3 VALUES(11056, 79057, 'seventy-nine thousand fifty-seven'); INSERT INTO t3 VALUES(11057, 90187, 'ninety thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(11058, 82494, 'eighty-two thousand four hundred ninety-four'); INSERT INTO t3 VALUES(11059, 98482, 'ninety-eight thousand four hundred eighty-two'); INSERT INTO t3 VALUES(11060, 13681, 'thirteen thousand six hundred eighty-one'); INSERT INTO t3 VALUES(11061, 48138, 'forty-eight thousand one hundred thirty-eight'); INSERT INTO t3 VALUES(11062, 9837, 'nine thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(11063, 33882, 'thirty-three thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(11064, 54906, 'fifty-four thousand nine hundred six'); INSERT INTO t3 VALUES(11065, 62330, 'sixty-two thousand three hundred thirty'); INSERT INTO t3 VALUES(11066, 89439, 'eighty-nine thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(11067, 92900, 'ninety-two thousand nine hundred'); INSERT INTO t3 VALUES(11068, 7689, 'seven thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(11069, 71557, 'seventy-one thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(11070, 22907, 'twenty-two thousand nine hundred seven'); INSERT INTO t3 VALUES(11071, 31465, 'thirty-one thousand four hundred sixty-five'); INSERT INTO t3 VALUES(11072, 83976, 'eighty-three thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(11073, 25962, 'twenty-five thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(11074, 99005, 'ninety-nine thousand five'); INSERT INTO t3 VALUES(11075, 5751, 'five thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(11076, 78356, 'seventy-eight thousand three hundred fifty-six'); INSERT INTO t3 VALUES(11077, 94808, 'ninety-four thousand eight hundred eight'); INSERT INTO t3 VALUES(11078, 45204, 'forty-five thousand two hundred four'); INSERT INTO t3 VALUES(11079, 45877, 'forty-five thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(11080, 91834, 'ninety-one thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(11081, 3333, 'three thousand three hundred thirty-three'); INSERT INTO t3 VALUES(11082, 78102, 'seventy-eight thousand one hundred two'); INSERT INTO t3 VALUES(11083, 5407, 'five thousand four hundred seven'); INSERT INTO t3 VALUES(11084, 12084, 'twelve thousand eighty-four'); INSERT INTO t3 VALUES(11085, 4565, 'four thousand five hundred sixty-five'); INSERT INTO t3 VALUES(11086, 27751, 'twenty-seven thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(11087, 84913, 'eighty-four thousand nine hundred thirteen'); INSERT INTO t3 VALUES(11088, 70328, 'seventy thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(11089, 61211, 'sixty-one thousand two hundred eleven'); INSERT INTO t3 VALUES(11090, 403, 'four hundred three'); INSERT INTO t3 VALUES(11091, 16552, 'sixteen thousand five hundred fifty-two'); INSERT INTO t3 VALUES(11092, 25030, 'twenty-five thousand thirty'); INSERT INTO t3 VALUES(11093, 69512, 'sixty-nine thousand five hundred twelve'); INSERT INTO t3 VALUES(11094, 51926, 'fifty-one thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(11095, 4266, 'four thousand two hundred sixty-six'); INSERT INTO t3 VALUES(11096, 92534, 'ninety-two thousand five hundred thirty-four'); INSERT INTO t3 VALUES(11097, 86815, 'eighty-six thousand eight hundred fifteen'); INSERT INTO t3 VALUES(11098, 49396, 'forty-nine thousand three hundred ninety-six'); INSERT INTO t3 VALUES(11099, 28502, 'twenty-eight thousand five hundred two'); INSERT INTO t3 VALUES(11100, 89435, 'eighty-nine thousand four hundred thirty-five'); INSERT INTO t3 VALUES(11101, 52041, 'fifty-two thousand forty-one'); INSERT INTO t3 VALUES(11102, 11767, 'eleven thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(11103, 96382, 'ninety-six thousand three hundred eighty-two'); INSERT INTO t3 VALUES(11104, 48470, 'forty-eight thousand four hundred seventy'); INSERT INTO t3 VALUES(11105, 76268, 'seventy-six thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(11106, 25589, 'twenty-five thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(11107, 72587, 'seventy-two thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(11108, 67263, 'sixty-seven thousand two hundred sixty-three'); INSERT INTO t3 VALUES(11109, 66930, 'sixty-six thousand nine hundred thirty'); INSERT INTO t3 VALUES(11110, 19956, 'nineteen thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(11111, 74380, 'seventy-four thousand three hundred eighty'); INSERT INTO t3 VALUES(11112, 87688, 'eighty-seven thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(11113, 67537, 'sixty-seven thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(11114, 20848, 'twenty thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(11115, 75957, 'seventy-five thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(11116, 62091, 'sixty-two thousand ninety-one'); INSERT INTO t3 VALUES(11117, 35331, 'thirty-five thousand three hundred thirty-one'); INSERT INTO t3 VALUES(11118, 80361, 'eighty thousand three hundred sixty-one'); INSERT INTO t3 VALUES(11119, 31820, 'thirty-one thousand eight hundred twenty'); INSERT INTO t3 VALUES(11120, 18194, 'eighteen thousand one hundred ninety-four'); INSERT INTO t3 VALUES(11121, 32192, 'thirty-two thousand one hundred ninety-two'); INSERT INTO t3 VALUES(11122, 31710, 'thirty-one thousand seven hundred ten'); INSERT INTO t3 VALUES(11123, 52760, 'fifty-two thousand seven hundred sixty'); INSERT INTO t3 VALUES(11124, 44424, 'forty-four thousand four hundred twenty-four'); INSERT INTO t3 VALUES(11125, 70434, 'seventy thousand four hundred thirty-four'); INSERT INTO t3 VALUES(11126, 66378, 'sixty-six thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(11127, 67007, 'sixty-seven thousand seven'); INSERT INTO t3 VALUES(11128, 28218, 'twenty-eight thousand two hundred eighteen'); INSERT INTO t3 VALUES(11129, 62373, 'sixty-two thousand three hundred seventy-three'); INSERT INTO t3 VALUES(11130, 79043, 'seventy-nine thousand forty-three'); INSERT INTO t3 VALUES(11131, 88281, 'eighty-eight thousand two hundred eighty-one'); INSERT INTO t3 VALUES(11132, 46277, 'forty-six thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(11133, 2777, 'two thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(11134, 65802, 'sixty-five thousand eight hundred two'); INSERT INTO t3 VALUES(11135, 50437, 'fifty thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(11136, 57691, 'fifty-seven thousand six hundred ninety-one'); INSERT INTO t3 VALUES(11137, 18696, 'eighteen thousand six hundred ninety-six'); INSERT INTO t3 VALUES(11138, 48939, 'forty-eight thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(11139, 71127, 'seventy-one thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(11140, 44397, 'forty-four thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(11141, 43218, 'forty-three thousand two hundred eighteen'); INSERT INTO t3 VALUES(11142, 91156, 'ninety-one thousand one hundred fifty-six'); INSERT INTO t3 VALUES(11143, 61725, 'sixty-one thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(11144, 3837, 'three thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(11145, 47329, 'forty-seven thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(11146, 70, 'seventy'); INSERT INTO t3 VALUES(11147, 52445, 'fifty-two thousand four hundred forty-five'); INSERT INTO t3 VALUES(11148, 60824, 'sixty thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(11149, 36397, 'thirty-six thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(11150, 94180, 'ninety-four thousand one hundred eighty'); INSERT INTO t3 VALUES(11151, 54837, 'fifty-four thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(11152, 9405, 'nine thousand four hundred five'); INSERT INTO t3 VALUES(11153, 77189, 'seventy-seven thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(11154, 96640, 'ninety-six thousand six hundred forty'); INSERT INTO t3 VALUES(11155, 71752, 'seventy-one thousand seven hundred fifty-two'); INSERT INTO t3 VALUES(11156, 29213, 'twenty-nine thousand two hundred thirteen'); INSERT INTO t3 VALUES(11157, 9410, 'nine thousand four hundred ten'); INSERT INTO t3 VALUES(11158, 20087, 'twenty thousand eighty-seven'); INSERT INTO t3 VALUES(11159, 39088, 'thirty-nine thousand eighty-eight'); INSERT INTO t3 VALUES(11160, 51053, 'fifty-one thousand fifty-three'); INSERT INTO t3 VALUES(11161, 90947, 'ninety thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(11162, 66163, 'sixty-six thousand one hundred sixty-three'); INSERT INTO t3 VALUES(11163, 31910, 'thirty-one thousand nine hundred ten'); INSERT INTO t3 VALUES(11164, 35284, 'thirty-five thousand two hundred eighty-four'); INSERT INTO t3 VALUES(11165, 56390, 'fifty-six thousand three hundred ninety'); INSERT INTO t3 VALUES(11166, 55863, 'fifty-five thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(11167, 74, 'seventy-four'); INSERT INTO t3 VALUES(11168, 32946, 'thirty-two thousand nine hundred forty-six'); INSERT INTO t3 VALUES(11169, 48776, 'forty-eight thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(11170, 91812, 'ninety-one thousand eight hundred twelve'); INSERT INTO t3 VALUES(11171, 44538, 'forty-four thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(11172, 55368, 'fifty-five thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(11173, 12683, 'twelve thousand six hundred eighty-three'); INSERT INTO t3 VALUES(11174, 73514, 'seventy-three thousand five hundred fourteen'); INSERT INTO t3 VALUES(11175, 28569, 'twenty-eight thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(11176, 1915, 'one thousand nine hundred fifteen'); INSERT INTO t3 VALUES(11177, 16241, 'sixteen thousand two hundred forty-one'); INSERT INTO t3 VALUES(11178, 32149, 'thirty-two thousand one hundred forty-nine'); INSERT INTO t3 VALUES(11179, 55457, 'fifty-five thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(11180, 15350, 'fifteen thousand three hundred fifty'); INSERT INTO t3 VALUES(11181, 91026, 'ninety-one thousand twenty-six'); INSERT INTO t3 VALUES(11182, 56756, 'fifty-six thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(11183, 4659, 'four thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(11184, 52715, 'fifty-two thousand seven hundred fifteen'); INSERT INTO t3 VALUES(11185, 80117, 'eighty thousand one hundred seventeen'); INSERT INTO t3 VALUES(11186, 1154, 'one thousand one hundred fifty-four'); INSERT INTO t3 VALUES(11187, 17609, 'seventeen thousand six hundred nine'); INSERT INTO t3 VALUES(11188, 62436, 'sixty-two thousand four hundred thirty-six'); INSERT INTO t3 VALUES(11189, 79283, 'seventy-nine thousand two hundred eighty-three'); INSERT INTO t3 VALUES(11190, 2215, 'two thousand two hundred fifteen'); INSERT INTO t3 VALUES(11191, 82097, 'eighty-two thousand ninety-seven'); INSERT INTO t3 VALUES(11192, 13349, 'thirteen thousand three hundred forty-nine'); INSERT INTO t3 VALUES(11193, 11629, 'eleven thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(11194, 39647, 'thirty-nine thousand six hundred forty-seven'); INSERT INTO t3 VALUES(11195, 52799, 'fifty-two thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(11196, 6056, 'six thousand fifty-six'); INSERT INTO t3 VALUES(11197, 72419, 'seventy-two thousand four hundred nineteen'); INSERT INTO t3 VALUES(11198, 71084, 'seventy-one thousand eighty-four'); INSERT INTO t3 VALUES(11199, 22972, 'twenty-two thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(11200, 15439, 'fifteen thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(11201, 43453, 'forty-three thousand four hundred fifty-three'); INSERT INTO t3 VALUES(11202, 51486, 'fifty-one thousand four hundred eighty-six'); INSERT INTO t3 VALUES(11203, 42007, 'forty-two thousand seven'); INSERT INTO t3 VALUES(11204, 40911, 'forty thousand nine hundred eleven'); INSERT INTO t3 VALUES(11205, 71131, 'seventy-one thousand one hundred thirty-one'); INSERT INTO t3 VALUES(11206, 19540, 'nineteen thousand five hundred forty'); INSERT INTO t3 VALUES(11207, 70399, 'seventy thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(11208, 86560, 'eighty-six thousand five hundred sixty'); INSERT INTO t3 VALUES(11209, 28959, 'twenty-eight thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(11210, 97042, 'ninety-seven thousand forty-two'); INSERT INTO t3 VALUES(11211, 83365, 'eighty-three thousand three hundred sixty-five'); INSERT INTO t3 VALUES(11212, 92641, 'ninety-two thousand six hundred forty-one'); INSERT INTO t3 VALUES(11213, 4092, 'four thousand ninety-two'); INSERT INTO t3 VALUES(11214, 39897, 'thirty-nine thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(11215, 22955, 'twenty-two thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(11216, 34836, 'thirty-four thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(11217, 28866, 'twenty-eight thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(11218, 52782, 'fifty-two thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(11219, 17209, 'seventeen thousand two hundred nine'); INSERT INTO t3 VALUES(11220, 39108, 'thirty-nine thousand one hundred eight'); INSERT INTO t3 VALUES(11221, 75816, 'seventy-five thousand eight hundred sixteen'); INSERT INTO t3 VALUES(11222, 72616, 'seventy-two thousand six hundred sixteen'); INSERT INTO t3 VALUES(11223, 33417, 'thirty-three thousand four hundred seventeen'); INSERT INTO t3 VALUES(11224, 93679, 'ninety-three thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(11225, 52960, 'fifty-two thousand nine hundred sixty'); INSERT INTO t3 VALUES(11226, 30311, 'thirty thousand three hundred eleven'); INSERT INTO t3 VALUES(11227, 12191, 'twelve thousand one hundred ninety-one'); INSERT INTO t3 VALUES(11228, 89102, 'eighty-nine thousand one hundred two'); INSERT INTO t3 VALUES(11229, 96198, 'ninety-six thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(11230, 97540, 'ninety-seven thousand five hundred forty'); INSERT INTO t3 VALUES(11231, 9085, 'nine thousand eighty-five'); INSERT INTO t3 VALUES(11232, 46069, 'forty-six thousand sixty-nine'); INSERT INTO t3 VALUES(11233, 75687, 'seventy-five thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(11234, 25724, 'twenty-five thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(11235, 41590, 'forty-one thousand five hundred ninety'); INSERT INTO t3 VALUES(11236, 80445, 'eighty thousand four hundred forty-five'); INSERT INTO t3 VALUES(11237, 63073, 'sixty-three thousand seventy-three'); INSERT INTO t3 VALUES(11238, 38755, 'thirty-eight thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(11239, 60809, 'sixty thousand eight hundred nine'); INSERT INTO t3 VALUES(11240, 22330, 'twenty-two thousand three hundred thirty'); INSERT INTO t3 VALUES(11241, 59893, 'fifty-nine thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(11242, 33710, 'thirty-three thousand seven hundred ten'); INSERT INTO t3 VALUES(11243, 37837, 'thirty-seven thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(11244, 94588, 'ninety-four thousand five hundred eighty-eight'); INSERT INTO t3 VALUES(11245, 24821, 'twenty-four thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(11246, 83984, 'eighty-three thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(11247, 84558, 'eighty-four thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(11248, 18676, 'eighteen thousand six hundred seventy-six'); INSERT INTO t3 VALUES(11249, 60062, 'sixty thousand sixty-two'); INSERT INTO t3 VALUES(11250, 35283, 'thirty-five thousand two hundred eighty-three'); INSERT INTO t3 VALUES(11251, 28738, 'twenty-eight thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(11252, 83718, 'eighty-three thousand seven hundred eighteen'); INSERT INTO t3 VALUES(11253, 10063, 'ten thousand sixty-three'); INSERT INTO t3 VALUES(11254, 86317, 'eighty-six thousand three hundred seventeen'); INSERT INTO t3 VALUES(11255, 14531, 'fourteen thousand five hundred thirty-one'); INSERT INTO t3 VALUES(11256, 14168, 'fourteen thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(11257, 2723, 'two thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(11258, 47599, 'forty-seven thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(11259, 53148, 'fifty-three thousand one hundred forty-eight'); INSERT INTO t3 VALUES(11260, 5570, 'five thousand five hundred seventy'); INSERT INTO t3 VALUES(11261, 36026, 'thirty-six thousand twenty-six'); INSERT INTO t3 VALUES(11262, 96930, 'ninety-six thousand nine hundred thirty'); INSERT INTO t3 VALUES(11263, 17867, 'seventeen thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(11264, 95334, 'ninety-five thousand three hundred thirty-four'); INSERT INTO t3 VALUES(11265, 70686, 'seventy thousand six hundred eighty-six'); INSERT INTO t3 VALUES(11266, 12498, 'twelve thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(11267, 92754, 'ninety-two thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(11268, 96156, 'ninety-six thousand one hundred fifty-six'); INSERT INTO t3 VALUES(11269, 83130, 'eighty-three thousand one hundred thirty'); INSERT INTO t3 VALUES(11270, 95538, 'ninety-five thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(11271, 71498, 'seventy-one thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(11272, 25488, 'twenty-five thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(11273, 34216, 'thirty-four thousand two hundred sixteen'); INSERT INTO t3 VALUES(11274, 63954, 'sixty-three thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(11275, 61635, 'sixty-one thousand six hundred thirty-five'); INSERT INTO t3 VALUES(11276, 89166, 'eighty-nine thousand one hundred sixty-six'); INSERT INTO t3 VALUES(11277, 66069, 'sixty-six thousand sixty-nine'); INSERT INTO t3 VALUES(11278, 69532, 'sixty-nine thousand five hundred thirty-two'); INSERT INTO t3 VALUES(11279, 14136, 'fourteen thousand one hundred thirty-six'); INSERT INTO t3 VALUES(11280, 56829, 'fifty-six thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(11281, 73841, 'seventy-three thousand eight hundred forty-one'); INSERT INTO t3 VALUES(11282, 82222, 'eighty-two thousand two hundred twenty-two'); INSERT INTO t3 VALUES(11283, 68802, 'sixty-eight thousand eight hundred two'); INSERT INTO t3 VALUES(11284, 54815, 'fifty-four thousand eight hundred fifteen'); INSERT INTO t3 VALUES(11285, 31933, 'thirty-one thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(11286, 26543, 'twenty-six thousand five hundred forty-three'); INSERT INTO t3 VALUES(11287, 86579, 'eighty-six thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(11288, 58123, 'fifty-eight thousand one hundred twenty-three'); INSERT INTO t3 VALUES(11289, 35272, 'thirty-five thousand two hundred seventy-two'); INSERT INTO t3 VALUES(11290, 83122, 'eighty-three thousand one hundred twenty-two'); INSERT INTO t3 VALUES(11291, 52857, 'fifty-two thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(11292, 14345, 'fourteen thousand three hundred forty-five'); INSERT INTO t3 VALUES(11293, 25953, 'twenty-five thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(11294, 76965, 'seventy-six thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(11295, 91485, 'ninety-one thousand four hundred eighty-five'); INSERT INTO t3 VALUES(11296, 42274, 'forty-two thousand two hundred seventy-four'); INSERT INTO t3 VALUES(11297, 13176, 'thirteen thousand one hundred seventy-six'); INSERT INTO t3 VALUES(11298, 9724, 'nine thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(11299, 68239, 'sixty-eight thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(11300, 17095, 'seventeen thousand ninety-five'); INSERT INTO t3 VALUES(11301, 81118, 'eighty-one thousand one hundred eighteen'); INSERT INTO t3 VALUES(11302, 75755, 'seventy-five thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(11303, 94959, 'ninety-four thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(11304, 44838, 'forty-four thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(11305, 11998, 'eleven thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(11306, 34732, 'thirty-four thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(11307, 48092, 'forty-eight thousand ninety-two'); INSERT INTO t3 VALUES(11308, 48208, 'forty-eight thousand two hundred eight'); INSERT INTO t3 VALUES(11309, 86109, 'eighty-six thousand one hundred nine'); INSERT INTO t3 VALUES(11310, 84440, 'eighty-four thousand four hundred forty'); INSERT INTO t3 VALUES(11311, 28070, 'twenty-eight thousand seventy'); INSERT INTO t3 VALUES(11312, 53496, 'fifty-three thousand four hundred ninety-six'); INSERT INTO t3 VALUES(11313, 17786, 'seventeen thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(11314, 5016, 'five thousand sixteen'); INSERT INTO t3 VALUES(11315, 1230, 'one thousand two hundred thirty'); INSERT INTO t3 VALUES(11316, 35383, 'thirty-five thousand three hundred eighty-three'); INSERT INTO t3 VALUES(11317, 64270, 'sixty-four thousand two hundred seventy'); INSERT INTO t3 VALUES(11318, 64500, 'sixty-four thousand five hundred'); INSERT INTO t3 VALUES(11319, 42906, 'forty-two thousand nine hundred six'); INSERT INTO t3 VALUES(11320, 92747, 'ninety-two thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(11321, 24862, 'twenty-four thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(11322, 87202, 'eighty-seven thousand two hundred two'); INSERT INTO t3 VALUES(11323, 63626, 'sixty-three thousand six hundred twenty-six'); INSERT INTO t3 VALUES(11324, 19956, 'nineteen thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(11325, 37053, 'thirty-seven thousand fifty-three'); INSERT INTO t3 VALUES(11326, 37830, 'thirty-seven thousand eight hundred thirty'); INSERT INTO t3 VALUES(11327, 18255, 'eighteen thousand two hundred fifty-five'); INSERT INTO t3 VALUES(11328, 57473, 'fifty-seven thousand four hundred seventy-three'); INSERT INTO t3 VALUES(11329, 53078, 'fifty-three thousand seventy-eight'); INSERT INTO t3 VALUES(11330, 72570, 'seventy-two thousand five hundred seventy'); INSERT INTO t3 VALUES(11331, 86761, 'eighty-six thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(11332, 62066, 'sixty-two thousand sixty-six'); INSERT INTO t3 VALUES(11333, 71596, 'seventy-one thousand five hundred ninety-six'); INSERT INTO t3 VALUES(11334, 6184, 'six thousand one hundred eighty-four'); INSERT INTO t3 VALUES(11335, 5516, 'five thousand five hundred sixteen'); INSERT INTO t3 VALUES(11336, 45329, 'forty-five thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(11337, 85884, 'eighty-five thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(11338, 76347, 'seventy-six thousand three hundred forty-seven'); INSERT INTO t3 VALUES(11339, 82035, 'eighty-two thousand thirty-five'); INSERT INTO t3 VALUES(11340, 48565, 'forty-eight thousand five hundred sixty-five'); INSERT INTO t3 VALUES(11341, 15716, 'fifteen thousand seven hundred sixteen'); INSERT INTO t3 VALUES(11342, 44293, 'forty-four thousand two hundred ninety-three'); INSERT INTO t3 VALUES(11343, 362, 'three hundred sixty-two'); INSERT INTO t3 VALUES(11344, 29591, 'twenty-nine thousand five hundred ninety-one'); INSERT INTO t3 VALUES(11345, 56955, 'fifty-six thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(11346, 38548, 'thirty-eight thousand five hundred forty-eight'); INSERT INTO t3 VALUES(11347, 17307, 'seventeen thousand three hundred seven'); INSERT INTO t3 VALUES(11348, 78978, 'seventy-eight thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(11349, 64685, 'sixty-four thousand six hundred eighty-five'); INSERT INTO t3 VALUES(11350, 47855, 'forty-seven thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(11351, 65951, 'sixty-five thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(11352, 14685, 'fourteen thousand six hundred eighty-five'); INSERT INTO t3 VALUES(11353, 93213, 'ninety-three thousand two hundred thirteen'); INSERT INTO t3 VALUES(11354, 51313, 'fifty-one thousand three hundred thirteen'); INSERT INTO t3 VALUES(11355, 92868, 'ninety-two thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(11356, 31384, 'thirty-one thousand three hundred eighty-four'); INSERT INTO t3 VALUES(11357, 21938, 'twenty-one thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(11358, 51745, 'fifty-one thousand seven hundred forty-five'); INSERT INTO t3 VALUES(11359, 87292, 'eighty-seven thousand two hundred ninety-two'); INSERT INTO t3 VALUES(11360, 45071, 'forty-five thousand seventy-one'); INSERT INTO t3 VALUES(11361, 67087, 'sixty-seven thousand eighty-seven'); INSERT INTO t3 VALUES(11362, 67809, 'sixty-seven thousand eight hundred nine'); INSERT INTO t3 VALUES(11363, 49186, 'forty-nine thousand one hundred eighty-six'); INSERT INTO t3 VALUES(11364, 46375, 'forty-six thousand three hundred seventy-five'); INSERT INTO t3 VALUES(11365, 87694, 'eighty-seven thousand six hundred ninety-four'); INSERT INTO t3 VALUES(11366, 9470, 'nine thousand four hundred seventy'); INSERT INTO t3 VALUES(11367, 46648, 'forty-six thousand six hundred forty-eight'); INSERT INTO t3 VALUES(11368, 63094, 'sixty-three thousand ninety-four'); INSERT INTO t3 VALUES(11369, 97956, 'ninety-seven thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(11370, 40843, 'forty thousand eight hundred forty-three'); INSERT INTO t3 VALUES(11371, 81668, 'eighty-one thousand six hundred sixty-eight'); INSERT INTO t3 VALUES(11372, 40076, 'forty thousand seventy-six'); INSERT INTO t3 VALUES(11373, 81790, 'eighty-one thousand seven hundred ninety'); INSERT INTO t3 VALUES(11374, 8734, 'eight thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(11375, 72734, 'seventy-two thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(11376, 74402, 'seventy-four thousand four hundred two'); INSERT INTO t3 VALUES(11377, 91455, 'ninety-one thousand four hundred fifty-five'); INSERT INTO t3 VALUES(11378, 53189, 'fifty-three thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(11379, 22371, 'twenty-two thousand three hundred seventy-one'); INSERT INTO t3 VALUES(11380, 90031, 'ninety thousand thirty-one'); INSERT INTO t3 VALUES(11381, 21005, 'twenty-one thousand five'); INSERT INTO t3 VALUES(11382, 46662, 'forty-six thousand six hundred sixty-two'); INSERT INTO t3 VALUES(11383, 65611, 'sixty-five thousand six hundred eleven'); INSERT INTO t3 VALUES(11384, 64529, 'sixty-four thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(11385, 33323, 'thirty-three thousand three hundred twenty-three'); INSERT INTO t3 VALUES(11386, 26092, 'twenty-six thousand ninety-two'); INSERT INTO t3 VALUES(11387, 26208, 'twenty-six thousand two hundred eight'); INSERT INTO t3 VALUES(11388, 23028, 'twenty-three thousand twenty-eight'); INSERT INTO t3 VALUES(11389, 59263, 'fifty-nine thousand two hundred sixty-three'); INSERT INTO t3 VALUES(11390, 19355, 'nineteen thousand three hundred fifty-five'); INSERT INTO t3 VALUES(11391, 40818, 'forty thousand eight hundred eighteen'); INSERT INTO t3 VALUES(11392, 13983, 'thirteen thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(11393, 35597, 'thirty-five thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(11394, 70679, 'seventy thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(11395, 140, 'one hundred forty'); INSERT INTO t3 VALUES(11396, 14735, 'fourteen thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(11397, 9901, 'nine thousand nine hundred one'); INSERT INTO t3 VALUES(11398, 3850, 'three thousand eight hundred fifty'); INSERT INTO t3 VALUES(11399, 69256, 'sixty-nine thousand two hundred fifty-six'); INSERT INTO t3 VALUES(11400, 76261, 'seventy-six thousand two hundred sixty-one'); INSERT INTO t3 VALUES(11401, 86019, 'eighty-six thousand nineteen'); INSERT INTO t3 VALUES(11402, 65412, 'sixty-five thousand four hundred twelve'); INSERT INTO t3 VALUES(11403, 38063, 'thirty-eight thousand sixty-three'); INSERT INTO t3 VALUES(11404, 68221, 'sixty-eight thousand two hundred twenty-one'); INSERT INTO t3 VALUES(11405, 51080, 'fifty-one thousand eighty'); INSERT INTO t3 VALUES(11406, 3324, 'three thousand three hundred twenty-four'); INSERT INTO t3 VALUES(11407, 77335, 'seventy-seven thousand three hundred thirty-five'); INSERT INTO t3 VALUES(11408, 15169, 'fifteen thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(11409, 63181, 'sixty-three thousand one hundred eighty-one'); INSERT INTO t3 VALUES(11410, 11934, 'eleven thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(11411, 20759, 'twenty thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(11412, 79098, 'seventy-nine thousand ninety-eight'); INSERT INTO t3 VALUES(11413, 8830, 'eight thousand eight hundred thirty'); INSERT INTO t3 VALUES(11414, 72585, 'seventy-two thousand five hundred eighty-five'); INSERT INTO t3 VALUES(11415, 79219, 'seventy-nine thousand two hundred nineteen'); INSERT INTO t3 VALUES(11416, 53323, 'fifty-three thousand three hundred twenty-three'); INSERT INTO t3 VALUES(11417, 75558, 'seventy-five thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(11418, 98440, 'ninety-eight thousand four hundred forty'); INSERT INTO t3 VALUES(11419, 64723, 'sixty-four thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(11420, 29164, 'twenty-nine thousand one hundred sixty-four'); INSERT INTO t3 VALUES(11421, 13905, 'thirteen thousand nine hundred five'); INSERT INTO t3 VALUES(11422, 53559, 'fifty-three thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(11423, 46375, 'forty-six thousand three hundred seventy-five'); INSERT INTO t3 VALUES(11424, 49493, 'forty-nine thousand four hundred ninety-three'); INSERT INTO t3 VALUES(11425, 98149, 'ninety-eight thousand one hundred forty-nine'); INSERT INTO t3 VALUES(11426, 32086, 'thirty-two thousand eighty-six'); INSERT INTO t3 VALUES(11427, 98364, 'ninety-eight thousand three hundred sixty-four'); INSERT INTO t3 VALUES(11428, 61177, 'sixty-one thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(11429, 31358, 'thirty-one thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(11430, 19406, 'nineteen thousand four hundred six'); INSERT INTO t3 VALUES(11431, 5513, 'five thousand five hundred thirteen'); INSERT INTO t3 VALUES(11432, 85855, 'eighty-five thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(11433, 39060, 'thirty-nine thousand sixty'); INSERT INTO t3 VALUES(11434, 59061, 'fifty-nine thousand sixty-one'); INSERT INTO t3 VALUES(11435, 85856, 'eighty-five thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(11436, 7417, 'seven thousand four hundred seventeen'); INSERT INTO t3 VALUES(11437, 72822, 'seventy-two thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(11438, 33939, 'thirty-three thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(11439, 27855, 'twenty-seven thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(11440, 83991, 'eighty-three thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(11441, 69927, 'sixty-nine thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(11442, 92195, 'ninety-two thousand one hundred ninety-five'); INSERT INTO t3 VALUES(11443, 12214, 'twelve thousand two hundred fourteen'); INSERT INTO t3 VALUES(11444, 79905, 'seventy-nine thousand nine hundred five'); INSERT INTO t3 VALUES(11445, 40109, 'forty thousand one hundred nine'); INSERT INTO t3 VALUES(11446, 87472, 'eighty-seven thousand four hundred seventy-two'); INSERT INTO t3 VALUES(11447, 32641, 'thirty-two thousand six hundred forty-one'); INSERT INTO t3 VALUES(11448, 98532, 'ninety-eight thousand five hundred thirty-two'); INSERT INTO t3 VALUES(11449, 9061, 'nine thousand sixty-one'); INSERT INTO t3 VALUES(11450, 99133, 'ninety-nine thousand one hundred thirty-three'); INSERT INTO t3 VALUES(11451, 49725, 'forty-nine thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(11452, 27998, 'twenty-seven thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(11453, 65589, 'sixty-five thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(11454, 96383, 'ninety-six thousand three hundred eighty-three'); INSERT INTO t3 VALUES(11455, 26139, 'twenty-six thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(11456, 99366, 'ninety-nine thousand three hundred sixty-six'); INSERT INTO t3 VALUES(11457, 52304, 'fifty-two thousand three hundred four'); INSERT INTO t3 VALUES(11458, 64265, 'sixty-four thousand two hundred sixty-five'); INSERT INTO t3 VALUES(11459, 1666, 'one thousand six hundred sixty-six'); INSERT INTO t3 VALUES(11460, 61856, 'sixty-one thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(11461, 59283, 'fifty-nine thousand two hundred eighty-three'); INSERT INTO t3 VALUES(11462, 81271, 'eighty-one thousand two hundred seventy-one'); INSERT INTO t3 VALUES(11463, 67156, 'sixty-seven thousand one hundred fifty-six'); INSERT INTO t3 VALUES(11464, 72906, 'seventy-two thousand nine hundred six'); INSERT INTO t3 VALUES(11465, 60735, 'sixty thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(11466, 46075, 'forty-six thousand seventy-five'); INSERT INTO t3 VALUES(11467, 59144, 'fifty-nine thousand one hundred forty-four'); INSERT INTO t3 VALUES(11468, 10913, 'ten thousand nine hundred thirteen'); INSERT INTO t3 VALUES(11469, 69991, 'sixty-nine thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(11470, 75679, 'seventy-five thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(11471, 20790, 'twenty thousand seven hundred ninety'); INSERT INTO t3 VALUES(11472, 76456, 'seventy-six thousand four hundred fifty-six'); INSERT INTO t3 VALUES(11473, 1974, 'one thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(11474, 87969, 'eighty-seven thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(11475, 71298, 'seventy-one thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(11476, 51425, 'fifty-one thousand four hundred twenty-five'); INSERT INTO t3 VALUES(11477, 42326, 'forty-two thousand three hundred twenty-six'); INSERT INTO t3 VALUES(11478, 42923, 'forty-two thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(11479, 7171, 'seven thousand one hundred seventy-one'); INSERT INTO t3 VALUES(11480, 84697, 'eighty-four thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(11481, 73177, 'seventy-three thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(11482, 44859, 'forty-four thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(11483, 87578, 'eighty-seven thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(11484, 84187, 'eighty-four thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(11485, 47707, 'forty-seven thousand seven hundred seven'); INSERT INTO t3 VALUES(11486, 89698, 'eighty-nine thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(11487, 76876, 'seventy-six thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(11488, 87271, 'eighty-seven thousand two hundred seventy-one'); INSERT INTO t3 VALUES(11489, 4452, 'four thousand four hundred fifty-two'); INSERT INTO t3 VALUES(11490, 10145, 'ten thousand one hundred forty-five'); INSERT INTO t3 VALUES(11491, 85193, 'eighty-five thousand one hundred ninety-three'); INSERT INTO t3 VALUES(11492, 28159, 'twenty-eight thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(11493, 65748, 'sixty-five thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(11494, 90981, 'ninety thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(11495, 42289, 'forty-two thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(11496, 90226, 'ninety thousand two hundred twenty-six'); INSERT INTO t3 VALUES(11497, 8799, 'eight thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(11498, 30748, 'thirty thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(11499, 75149, 'seventy-five thousand one hundred forty-nine'); INSERT INTO t3 VALUES(11500, 77633, 'seventy-seven thousand six hundred thirty-three'); INSERT INTO t3 VALUES(11501, 96361, 'ninety-six thousand three hundred sixty-one'); INSERT INTO t3 VALUES(11502, 27529, 'twenty-seven thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(11503, 65516, 'sixty-five thousand five hundred sixteen'); INSERT INTO t3 VALUES(11504, 41684, 'forty-one thousand six hundred eighty-four'); INSERT INTO t3 VALUES(11505, 6349, 'six thousand three hundred forty-nine'); INSERT INTO t3 VALUES(11506, 96745, 'ninety-six thousand seven hundred forty-five'); INSERT INTO t3 VALUES(11507, 72707, 'seventy-two thousand seven hundred seven'); INSERT INTO t3 VALUES(11508, 54477, 'fifty-four thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(11509, 27248, 'twenty-seven thousand two hundred forty-eight'); INSERT INTO t3 VALUES(11510, 45589, 'forty-five thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(11511, 56276, 'fifty-six thousand two hundred seventy-six'); INSERT INTO t3 VALUES(11512, 21843, 'twenty-one thousand eight hundred forty-three'); INSERT INTO t3 VALUES(11513, 91633, 'ninety-one thousand six hundred thirty-three'); INSERT INTO t3 VALUES(11514, 99252, 'ninety-nine thousand two hundred fifty-two'); INSERT INTO t3 VALUES(11515, 87771, 'eighty-seven thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(11516, 83352, 'eighty-three thousand three hundred fifty-two'); INSERT INTO t3 VALUES(11517, 15402, 'fifteen thousand four hundred two'); INSERT INTO t3 VALUES(11518, 85261, 'eighty-five thousand two hundred sixty-one'); INSERT INTO t3 VALUES(11519, 76493, 'seventy-six thousand four hundred ninety-three'); INSERT INTO t3 VALUES(11520, 64749, 'sixty-four thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(11521, 91714, 'ninety-one thousand seven hundred fourteen'); INSERT INTO t3 VALUES(11522, 93919, 'ninety-three thousand nine hundred nineteen'); INSERT INTO t3 VALUES(11523, 10405, 'ten thousand four hundred five'); INSERT INTO t3 VALUES(11524, 1601, 'one thousand six hundred one'); INSERT INTO t3 VALUES(11525, 8456, 'eight thousand four hundred fifty-six'); INSERT INTO t3 VALUES(11526, 97383, 'ninety-seven thousand three hundred eighty-three'); INSERT INTO t3 VALUES(11527, 60982, 'sixty thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(11528, 31025, 'thirty-one thousand twenty-five'); INSERT INTO t3 VALUES(11529, 99450, 'ninety-nine thousand four hundred fifty'); INSERT INTO t3 VALUES(11530, 18995, 'eighteen thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(11531, 62005, 'sixty-two thousand five'); INSERT INTO t3 VALUES(11532, 72817, 'seventy-two thousand eight hundred seventeen'); INSERT INTO t3 VALUES(11533, 34325, 'thirty-four thousand three hundred twenty-five'); INSERT INTO t3 VALUES(11534, 27524, 'twenty-seven thousand five hundred twenty-four'); INSERT INTO t3 VALUES(11535, 31700, 'thirty-one thousand seven hundred'); INSERT INTO t3 VALUES(11536, 24894, 'twenty-four thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(11537, 47550, 'forty-seven thousand five hundred fifty'); INSERT INTO t3 VALUES(11538, 4593, 'four thousand five hundred ninety-three'); INSERT INTO t3 VALUES(11539, 57504, 'fifty-seven thousand five hundred four'); INSERT INTO t3 VALUES(11540, 35379, 'thirty-five thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(11541, 46360, 'forty-six thousand three hundred sixty'); INSERT INTO t3 VALUES(11542, 10016, 'ten thousand sixteen'); INSERT INTO t3 VALUES(11543, 56653, 'fifty-six thousand six hundred fifty-three'); INSERT INTO t3 VALUES(11544, 20556, 'twenty thousand five hundred fifty-six'); INSERT INTO t3 VALUES(11545, 73367, 'seventy-three thousand three hundred sixty-seven'); INSERT INTO t3 VALUES(11546, 39418, 'thirty-nine thousand four hundred eighteen'); INSERT INTO t3 VALUES(11547, 40785, 'forty thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(11548, 2341, 'two thousand three hundred forty-one'); INSERT INTO t3 VALUES(11549, 37849, 'thirty-seven thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(11550, 70967, 'seventy thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(11551, 14564, 'fourteen thousand five hundred sixty-four'); INSERT INTO t3 VALUES(11552, 64094, 'sixty-four thousand ninety-four'); INSERT INTO t3 VALUES(11553, 74273, 'seventy-four thousand two hundred seventy-three'); INSERT INTO t3 VALUES(11554, 59823, 'fifty-nine thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(11555, 76224, 'seventy-six thousand two hundred twenty-four'); INSERT INTO t3 VALUES(11556, 11430, 'eleven thousand four hundred thirty'); INSERT INTO t3 VALUES(11557, 57467, 'fifty-seven thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(11558, 85942, 'eighty-five thousand nine hundred forty-two'); INSERT INTO t3 VALUES(11559, 15638, 'fifteen thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(11560, 48558, 'forty-eight thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(11561, 88086, 'eighty-eight thousand eighty-six'); INSERT INTO t3 VALUES(11562, 70378, 'seventy thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(11563, 23132, 'twenty-three thousand one hundred thirty-two'); INSERT INTO t3 VALUES(11564, 35014, 'thirty-five thousand fourteen'); INSERT INTO t3 VALUES(11565, 23330, 'twenty-three thousand three hundred thirty'); INSERT INTO t3 VALUES(11566, 78371, 'seventy-eight thousand three hundred seventy-one'); INSERT INTO t3 VALUES(11567, 91395, 'ninety-one thousand three hundred ninety-five'); INSERT INTO t3 VALUES(11568, 53664, 'fifty-three thousand six hundred sixty-four'); INSERT INTO t3 VALUES(11569, 61805, 'sixty-one thousand eight hundred five'); INSERT INTO t3 VALUES(11570, 99207, 'ninety-nine thousand two hundred seven'); INSERT INTO t3 VALUES(11571, 47569, 'forty-seven thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(11572, 92879, 'ninety-two thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(11573, 36929, 'thirty-six thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(11574, 60151, 'sixty thousand one hundred fifty-one'); INSERT INTO t3 VALUES(11575, 81954, 'eighty-one thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(11576, 91591, 'ninety-one thousand five hundred ninety-one'); INSERT INTO t3 VALUES(11577, 10942, 'ten thousand nine hundred forty-two'); INSERT INTO t3 VALUES(11578, 97663, 'ninety-seven thousand six hundred sixty-three'); INSERT INTO t3 VALUES(11579, 84918, 'eighty-four thousand nine hundred eighteen'); INSERT INTO t3 VALUES(11580, 80587, 'eighty thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(11581, 47675, 'forty-seven thousand six hundred seventy-five'); INSERT INTO t3 VALUES(11582, 41679, 'forty-one thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(11583, 32270, 'thirty-two thousand two hundred seventy'); INSERT INTO t3 VALUES(11584, 86234, 'eighty-six thousand two hundred thirty-four'); INSERT INTO t3 VALUES(11585, 88, 'eighty-eight'); INSERT INTO t3 VALUES(11586, 56924, 'fifty-six thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(11587, 95872, 'ninety-five thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(11588, 8206, 'eight thousand two hundred six'); INSERT INTO t3 VALUES(11589, 29602, 'twenty-nine thousand six hundred two'); INSERT INTO t3 VALUES(11590, 71481, 'seventy-one thousand four hundred eighty-one'); INSERT INTO t3 VALUES(11591, 5352, 'five thousand three hundred fifty-two'); INSERT INTO t3 VALUES(11592, 68841, 'sixty-eight thousand eight hundred forty-one'); INSERT INTO t3 VALUES(11593, 36050, 'thirty-six thousand fifty'); INSERT INTO t3 VALUES(11594, 33688, 'thirty-three thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(11595, 66846, 'sixty-six thousand eight hundred forty-six'); INSERT INTO t3 VALUES(11596, 28149, 'twenty-eight thousand one hundred forty-nine'); INSERT INTO t3 VALUES(11597, 25789, 'twenty-five thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(11598, 43626, 'forty-three thousand six hundred twenty-six'); INSERT INTO t3 VALUES(11599, 27851, 'twenty-seven thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(11600, 52616, 'fifty-two thousand six hundred sixteen'); INSERT INTO t3 VALUES(11601, 1209, 'one thousand two hundred nine'); INSERT INTO t3 VALUES(11602, 78254, 'seventy-eight thousand two hundred fifty-four'); INSERT INTO t3 VALUES(11603, 51943, 'fifty-one thousand nine hundred forty-three'); INSERT INTO t3 VALUES(11604, 47217, 'forty-seven thousand two hundred seventeen'); INSERT INTO t3 VALUES(11605, 16252, 'sixteen thousand two hundred fifty-two'); INSERT INTO t3 VALUES(11606, 95575, 'ninety-five thousand five hundred seventy-five'); INSERT INTO t3 VALUES(11607, 12198, 'twelve thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(11608, 17119, 'seventeen thousand one hundred nineteen'); INSERT INTO t3 VALUES(11609, 88907, 'eighty-eight thousand nine hundred seven'); INSERT INTO t3 VALUES(11610, 40266, 'forty thousand two hundred sixty-six'); INSERT INTO t3 VALUES(11611, 91620, 'ninety-one thousand six hundred twenty'); INSERT INTO t3 VALUES(11612, 47029, 'forty-seven thousand twenty-nine'); INSERT INTO t3 VALUES(11613, 98400, 'ninety-eight thousand four hundred'); INSERT INTO t3 VALUES(11614, 54738, 'fifty-four thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(11615, 46033, 'forty-six thousand thirty-three'); INSERT INTO t3 VALUES(11616, 96272, 'ninety-six thousand two hundred seventy-two'); INSERT INTO t3 VALUES(11617, 15814, 'fifteen thousand eight hundred fourteen'); INSERT INTO t3 VALUES(11618, 96535, 'ninety-six thousand five hundred thirty-five'); INSERT INTO t3 VALUES(11619, 17062, 'seventeen thousand sixty-two'); INSERT INTO t3 VALUES(11620, 87295, 'eighty-seven thousand two hundred ninety-five'); INSERT INTO t3 VALUES(11621, 66649, 'sixty-six thousand six hundred forty-nine'); INSERT INTO t3 VALUES(11622, 88056, 'eighty-eight thousand fifty-six'); INSERT INTO t3 VALUES(11623, 72071, 'seventy-two thousand seventy-one'); INSERT INTO t3 VALUES(11624, 2343, 'two thousand three hundred forty-three'); INSERT INTO t3 VALUES(11625, 18142, 'eighteen thousand one hundred forty-two'); INSERT INTO t3 VALUES(11626, 5621, 'five thousand six hundred twenty-one'); INSERT INTO t3 VALUES(11627, 95596, 'ninety-five thousand five hundred ninety-six'); INSERT INTO t3 VALUES(11628, 59760, 'fifty-nine thousand seven hundred sixty'); INSERT INTO t3 VALUES(11629, 35927, 'thirty-five thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(11630, 26830, 'twenty-six thousand eight hundred thirty'); INSERT INTO t3 VALUES(11631, 94860, 'ninety-four thousand eight hundred sixty'); INSERT INTO t3 VALUES(11632, 62995, 'sixty-two thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(11633, 14163, 'fourteen thousand one hundred sixty-three'); INSERT INTO t3 VALUES(11634, 35378, 'thirty-five thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(11635, 88319, 'eighty-eight thousand three hundred nineteen'); INSERT INTO t3 VALUES(11636, 99214, 'ninety-nine thousand two hundred fourteen'); INSERT INTO t3 VALUES(11637, 75969, 'seventy-five thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(11638, 60158, 'sixty thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(11639, 1035, 'one thousand thirty-five'); INSERT INTO t3 VALUES(11640, 24573, 'twenty-four thousand five hundred seventy-three'); INSERT INTO t3 VALUES(11641, 92899, 'ninety-two thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(11642, 82980, 'eighty-two thousand nine hundred eighty'); INSERT INTO t3 VALUES(11643, 57369, 'fifty-seven thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(11644, 67895, 'sixty-seven thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(11645, 55084, 'fifty-five thousand eighty-four'); INSERT INTO t3 VALUES(11646, 22034, 'twenty-two thousand thirty-four'); INSERT INTO t3 VALUES(11647, 27815, 'twenty-seven thousand eight hundred fifteen'); INSERT INTO t3 VALUES(11648, 81056, 'eighty-one thousand fifty-six'); INSERT INTO t3 VALUES(11649, 83270, 'eighty-three thousand two hundred seventy'); INSERT INTO t3 VALUES(11650, 92373, 'ninety-two thousand three hundred seventy-three'); INSERT INTO t3 VALUES(11651, 3912, 'three thousand nine hundred twelve'); INSERT INTO t3 VALUES(11652, 69180, 'sixty-nine thousand one hundred eighty'); INSERT INTO t3 VALUES(11653, 27208, 'twenty-seven thousand two hundred eight'); INSERT INTO t3 VALUES(11654, 66841, 'sixty-six thousand eight hundred forty-one'); INSERT INTO t3 VALUES(11655, 7032, 'seven thousand thirty-two'); INSERT INTO t3 VALUES(11656, 84356, 'eighty-four thousand three hundred fifty-six'); INSERT INTO t3 VALUES(11657, 29853, 'twenty-nine thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(11658, 2066, 'two thousand sixty-six'); INSERT INTO t3 VALUES(11659, 88164, 'eighty-eight thousand one hundred sixty-four'); INSERT INTO t3 VALUES(11660, 25832, 'twenty-five thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(11661, 21040, 'twenty-one thousand forty'); INSERT INTO t3 VALUES(11662, 78441, 'seventy-eight thousand four hundred forty-one'); INSERT INTO t3 VALUES(11663, 25490, 'twenty-five thousand four hundred ninety'); INSERT INTO t3 VALUES(11664, 95833, 'ninety-five thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(11665, 44350, 'forty-four thousand three hundred fifty'); INSERT INTO t3 VALUES(11666, 55410, 'fifty-five thousand four hundred ten'); INSERT INTO t3 VALUES(11667, 66586, 'sixty-six thousand five hundred eighty-six'); INSERT INTO t3 VALUES(11668, 48512, 'forty-eight thousand five hundred twelve'); INSERT INTO t3 VALUES(11669, 31588, 'thirty-one thousand five hundred eighty-eight'); INSERT INTO t3 VALUES(11670, 71438, 'seventy-one thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(11671, 52689, 'fifty-two thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(11672, 70942, 'seventy thousand nine hundred forty-two'); INSERT INTO t3 VALUES(11673, 60981, 'sixty thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(11674, 7996, 'seven thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(11675, 80461, 'eighty thousand four hundred sixty-one'); INSERT INTO t3 VALUES(11676, 88784, 'eighty-eight thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(11677, 67574, 'sixty-seven thousand five hundred seventy-four'); INSERT INTO t3 VALUES(11678, 41129, 'forty-one thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(11679, 85524, 'eighty-five thousand five hundred twenty-four'); INSERT INTO t3 VALUES(11680, 53194, 'fifty-three thousand one hundred ninety-four'); INSERT INTO t3 VALUES(11681, 41114, 'forty-one thousand one hundred fourteen'); INSERT INTO t3 VALUES(11682, 54224, 'fifty-four thousand two hundred twenty-four'); INSERT INTO t3 VALUES(11683, 10802, 'ten thousand eight hundred two'); INSERT INTO t3 VALUES(11684, 16472, 'sixteen thousand four hundred seventy-two'); INSERT INTO t3 VALUES(11685, 17967, 'seventeen thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(11686, 50698, 'fifty thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(11687, 69813, 'sixty-nine thousand eight hundred thirteen'); INSERT INTO t3 VALUES(11688, 65960, 'sixty-five thousand nine hundred sixty'); INSERT INTO t3 VALUES(11689, 29887, 'twenty-nine thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(11690, 81718, 'eighty-one thousand seven hundred eighteen'); INSERT INTO t3 VALUES(11691, 51062, 'fifty-one thousand sixty-two'); INSERT INTO t3 VALUES(11692, 76307, 'seventy-six thousand three hundred seven'); INSERT INTO t3 VALUES(11693, 60101, 'sixty thousand one hundred one'); INSERT INTO t3 VALUES(11694, 50075, 'fifty thousand seventy-five'); INSERT INTO t3 VALUES(11695, 9563, 'nine thousand five hundred sixty-three'); INSERT INTO t3 VALUES(11696, 70846, 'seventy thousand eight hundred forty-six'); INSERT INTO t3 VALUES(11697, 79914, 'seventy-nine thousand nine hundred fourteen'); INSERT INTO t3 VALUES(11698, 1784, 'one thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(11699, 90575, 'ninety thousand five hundred seventy-five'); INSERT INTO t3 VALUES(11700, 55055, 'fifty-five thousand fifty-five'); INSERT INTO t3 VALUES(11701, 60297, 'sixty thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(11702, 95805, 'ninety-five thousand eight hundred five'); INSERT INTO t3 VALUES(11703, 13273, 'thirteen thousand two hundred seventy-three'); INSERT INTO t3 VALUES(11704, 79815, 'seventy-nine thousand eight hundred fifteen'); INSERT INTO t3 VALUES(11705, 59620, 'fifty-nine thousand six hundred twenty'); INSERT INTO t3 VALUES(11706, 21919, 'twenty-one thousand nine hundred nineteen'); INSERT INTO t3 VALUES(11707, 11005, 'eleven thousand five'); INSERT INTO t3 VALUES(11708, 77163, 'seventy-seven thousand one hundred sixty-three'); INSERT INTO t3 VALUES(11709, 26919, 'twenty-six thousand nine hundred nineteen'); INSERT INTO t3 VALUES(11710, 55824, 'fifty-five thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(11711, 80913, 'eighty thousand nine hundred thirteen'); INSERT INTO t3 VALUES(11712, 90684, 'ninety thousand six hundred eighty-four'); INSERT INTO t3 VALUES(11713, 75231, 'seventy-five thousand two hundred thirty-one'); INSERT INTO t3 VALUES(11714, 98491, 'ninety-eight thousand four hundred ninety-one'); INSERT INTO t3 VALUES(11715, 73973, 'seventy-three thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(11716, 37283, 'thirty-seven thousand two hundred eighty-three'); INSERT INTO t3 VALUES(11717, 21152, 'twenty-one thousand one hundred fifty-two'); INSERT INTO t3 VALUES(11718, 80724, 'eighty thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(11719, 27993, 'twenty-seven thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(11720, 67639, 'sixty-seven thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(11721, 55483, 'fifty-five thousand four hundred eighty-three'); INSERT INTO t3 VALUES(11722, 72527, 'seventy-two thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(11723, 1344, 'one thousand three hundred forty-four'); INSERT INTO t3 VALUES(11724, 23303, 'twenty-three thousand three hundred three'); INSERT INTO t3 VALUES(11725, 51649, 'fifty-one thousand six hundred forty-nine'); INSERT INTO t3 VALUES(11726, 56219, 'fifty-six thousand two hundred nineteen'); INSERT INTO t3 VALUES(11727, 83074, 'eighty-three thousand seventy-four'); INSERT INTO t3 VALUES(11728, 96280, 'ninety-six thousand two hundred eighty'); INSERT INTO t3 VALUES(11729, 38192, 'thirty-eight thousand one hundred ninety-two'); INSERT INTO t3 VALUES(11730, 19189, 'nineteen thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(11731, 59908, 'fifty-nine thousand nine hundred eight'); INSERT INTO t3 VALUES(11732, 96743, 'ninety-six thousand seven hundred forty-three'); INSERT INTO t3 VALUES(11733, 73681, 'seventy-three thousand six hundred eighty-one'); INSERT INTO t3 VALUES(11734, 70265, 'seventy thousand two hundred sixty-five'); INSERT INTO t3 VALUES(11735, 37638, 'thirty-seven thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(11736, 80457, 'eighty thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(11737, 85102, 'eighty-five thousand one hundred two'); INSERT INTO t3 VALUES(11738, 14923, 'fourteen thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(11739, 26066, 'twenty-six thousand sixty-six'); INSERT INTO t3 VALUES(11740, 6474, 'six thousand four hundred seventy-four'); INSERT INTO t3 VALUES(11741, 50681, 'fifty thousand six hundred eighty-one'); INSERT INTO t3 VALUES(11742, 90915, 'ninety thousand nine hundred fifteen'); INSERT INTO t3 VALUES(11743, 5375, 'five thousand three hundred seventy-five'); INSERT INTO t3 VALUES(11744, 96972, 'ninety-six thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(11745, 81165, 'eighty-one thousand one hundred sixty-five'); INSERT INTO t3 VALUES(11746, 32559, 'thirty-two thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(11747, 21887, 'twenty-one thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(11748, 8227, 'eight thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(11749, 49316, 'forty-nine thousand three hundred sixteen'); INSERT INTO t3 VALUES(11750, 39034, 'thirty-nine thousand thirty-four'); INSERT INTO t3 VALUES(11751, 440, 'four hundred forty'); INSERT INTO t3 VALUES(11752, 18325, 'eighteen thousand three hundred twenty-five'); INSERT INTO t3 VALUES(11753, 5570, 'five thousand five hundred seventy'); INSERT INTO t3 VALUES(11754, 75698, 'seventy-five thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(11755, 57080, 'fifty-seven thousand eighty'); INSERT INTO t3 VALUES(11756, 54906, 'fifty-four thousand nine hundred six'); INSERT INTO t3 VALUES(11757, 97788, 'ninety-seven thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(11758, 26394, 'twenty-six thousand three hundred ninety-four'); INSERT INTO t3 VALUES(11759, 12022, 'twelve thousand twenty-two'); INSERT INTO t3 VALUES(11760, 83671, 'eighty-three thousand six hundred seventy-one'); INSERT INTO t3 VALUES(11761, 49503, 'forty-nine thousand five hundred three'); INSERT INTO t3 VALUES(11762, 10326, 'ten thousand three hundred twenty-six'); INSERT INTO t3 VALUES(11763, 95984, 'ninety-five thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(11764, 36728, 'thirty-six thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(11765, 36439, 'thirty-six thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(11766, 88093, 'eighty-eight thousand ninety-three'); INSERT INTO t3 VALUES(11767, 33177, 'thirty-three thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(11768, 40412, 'forty thousand four hundred twelve'); INSERT INTO t3 VALUES(11769, 25415, 'twenty-five thousand four hundred fifteen'); INSERT INTO t3 VALUES(11770, 37087, 'thirty-seven thousand eighty-seven'); INSERT INTO t3 VALUES(11771, 55410, 'fifty-five thousand four hundred ten'); INSERT INTO t3 VALUES(11772, 71558, 'seventy-one thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(11773, 85188, 'eighty-five thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(11774, 33580, 'thirty-three thousand five hundred eighty'); INSERT INTO t3 VALUES(11775, 23461, 'twenty-three thousand four hundred sixty-one'); INSERT INTO t3 VALUES(11776, 7467, 'seven thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(11777, 73274, 'seventy-three thousand two hundred seventy-four'); INSERT INTO t3 VALUES(11778, 49985, 'forty-nine thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(11779, 23604, 'twenty-three thousand six hundred four'); INSERT INTO t3 VALUES(11780, 87154, 'eighty-seven thousand one hundred fifty-four'); INSERT INTO t3 VALUES(11781, 36464, 'thirty-six thousand four hundred sixty-four'); INSERT INTO t3 VALUES(11782, 1245, 'one thousand two hundred forty-five'); INSERT INTO t3 VALUES(11783, 19899, 'nineteen thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(11784, 64, 'sixty-four'); INSERT INTO t3 VALUES(11785, 35942, 'thirty-five thousand nine hundred forty-two'); INSERT INTO t3 VALUES(11786, 36544, 'thirty-six thousand five hundred forty-four'); INSERT INTO t3 VALUES(11787, 39453, 'thirty-nine thousand four hundred fifty-three'); INSERT INTO t3 VALUES(11788, 35472, 'thirty-five thousand four hundred seventy-two'); INSERT INTO t3 VALUES(11789, 95839, 'ninety-five thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(11790, 65438, 'sixty-five thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(11791, 80881, 'eighty thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(11792, 91049, 'ninety-one thousand forty-nine'); INSERT INTO t3 VALUES(11793, 45401, 'forty-five thousand four hundred one'); INSERT INTO t3 VALUES(11794, 56910, 'fifty-six thousand nine hundred ten'); INSERT INTO t3 VALUES(11795, 59246, 'fifty-nine thousand two hundred forty-six'); INSERT INTO t3 VALUES(11796, 60146, 'sixty thousand one hundred forty-six'); INSERT INTO t3 VALUES(11797, 50273, 'fifty thousand two hundred seventy-three'); INSERT INTO t3 VALUES(11798, 48601, 'forty-eight thousand six hundred one'); INSERT INTO t3 VALUES(11799, 32324, 'thirty-two thousand three hundred twenty-four'); INSERT INTO t3 VALUES(11800, 36917, 'thirty-six thousand nine hundred seventeen'); INSERT INTO t3 VALUES(11801, 8041, 'eight thousand forty-one'); INSERT INTO t3 VALUES(11802, 57508, 'fifty-seven thousand five hundred eight'); INSERT INTO t3 VALUES(11803, 88699, 'eighty-eight thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(11804, 56013, 'fifty-six thousand thirteen'); INSERT INTO t3 VALUES(11805, 89561, 'eighty-nine thousand five hundred sixty-one'); INSERT INTO t3 VALUES(11806, 35853, 'thirty-five thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(11807, 91112, 'ninety-one thousand one hundred twelve'); INSERT INTO t3 VALUES(11808, 72755, 'seventy-two thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(11809, 78468, 'seventy-eight thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(11810, 8638, 'eight thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(11811, 51627, 'fifty-one thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(11812, 15833, 'fifteen thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(11813, 55768, 'fifty-five thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(11814, 51803, 'fifty-one thousand eight hundred three'); INSERT INTO t3 VALUES(11815, 87582, 'eighty-seven thousand five hundred eighty-two'); INSERT INTO t3 VALUES(11816, 12511, 'twelve thousand five hundred eleven'); INSERT INTO t3 VALUES(11817, 31315, 'thirty-one thousand three hundred fifteen'); INSERT INTO t3 VALUES(11818, 65312, 'sixty-five thousand three hundred twelve'); INSERT INTO t3 VALUES(11819, 67665, 'sixty-seven thousand six hundred sixty-five'); INSERT INTO t3 VALUES(11820, 43973, 'forty-three thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(11821, 43589, 'forty-three thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(11822, 5111, 'five thousand one hundred eleven'); INSERT INTO t3 VALUES(11823, 43796, 'forty-three thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(11824, 65904, 'sixty-five thousand nine hundred four'); INSERT INTO t3 VALUES(11825, 69766, 'sixty-nine thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(11826, 19447, 'nineteen thousand four hundred forty-seven'); INSERT INTO t3 VALUES(11827, 20647, 'twenty thousand six hundred forty-seven'); INSERT INTO t3 VALUES(11828, 6613, 'six thousand six hundred thirteen'); INSERT INTO t3 VALUES(11829, 62267, 'sixty-two thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(11830, 30086, 'thirty thousand eighty-six'); INSERT INTO t3 VALUES(11831, 10725, 'ten thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(11832, 3074, 'three thousand seventy-four'); INSERT INTO t3 VALUES(11833, 19696, 'nineteen thousand six hundred ninety-six'); INSERT INTO t3 VALUES(11834, 22933, 'twenty-two thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(11835, 67482, 'sixty-seven thousand four hundred eighty-two'); INSERT INTO t3 VALUES(11836, 79397, 'seventy-nine thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(11837, 86421, 'eighty-six thousand four hundred twenty-one'); INSERT INTO t3 VALUES(11838, 39226, 'thirty-nine thousand two hundred twenty-six'); INSERT INTO t3 VALUES(11839, 29997, 'twenty-nine thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(11840, 79509, 'seventy-nine thousand five hundred nine'); INSERT INTO t3 VALUES(11841, 44657, 'forty-four thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(11842, 63587, 'sixty-three thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(11843, 14479, 'fourteen thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(11844, 4629, 'four thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(11845, 74761, 'seventy-four thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(11846, 9036, 'nine thousand thirty-six'); INSERT INTO t3 VALUES(11847, 25931, 'twenty-five thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(11848, 91702, 'ninety-one thousand seven hundred two'); INSERT INTO t3 VALUES(11849, 63578, 'sixty-three thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(11850, 78491, 'seventy-eight thousand four hundred ninety-one'); INSERT INTO t3 VALUES(11851, 50923, 'fifty thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(11852, 28873, 'twenty-eight thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(11853, 28932, 'twenty-eight thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(11854, 73152, 'seventy-three thousand one hundred fifty-two'); INSERT INTO t3 VALUES(11855, 44726, 'forty-four thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(11856, 61010, 'sixty-one thousand ten'); INSERT INTO t3 VALUES(11857, 70973, 'seventy thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(11858, 77361, 'seventy-seven thousand three hundred sixty-one'); INSERT INTO t3 VALUES(11859, 21841, 'twenty-one thousand eight hundred forty-one'); INSERT INTO t3 VALUES(11860, 42493, 'forty-two thousand four hundred ninety-three'); INSERT INTO t3 VALUES(11861, 6008, 'six thousand eight'); INSERT INTO t3 VALUES(11862, 33090, 'thirty-three thousand ninety'); INSERT INTO t3 VALUES(11863, 24484, 'twenty-four thousand four hundred eighty-four'); INSERT INTO t3 VALUES(11864, 82338, 'eighty-two thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(11865, 72875, 'seventy-two thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(11866, 53087, 'fifty-three thousand eighty-seven'); INSERT INTO t3 VALUES(11867, 38368, 'thirty-eight thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(11868, 15277, 'fifteen thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(11869, 38838, 'thirty-eight thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(11870, 85835, 'eighty-five thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(11871, 2091, 'two thousand ninety-one'); INSERT INTO t3 VALUES(11872, 9794, 'nine thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(11873, 89091, 'eighty-nine thousand ninety-one'); INSERT INTO t3 VALUES(11874, 74736, 'seventy-four thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(11875, 29798, 'twenty-nine thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(11876, 27035, 'twenty-seven thousand thirty-five'); INSERT INTO t3 VALUES(11877, 12553, 'twelve thousand five hundred fifty-three'); INSERT INTO t3 VALUES(11878, 73894, 'seventy-three thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(11879, 73009, 'seventy-three thousand nine'); INSERT INTO t3 VALUES(11880, 6554, 'six thousand five hundred fifty-four'); INSERT INTO t3 VALUES(11881, 87612, 'eighty-seven thousand six hundred twelve'); INSERT INTO t3 VALUES(11882, 94342, 'ninety-four thousand three hundred forty-two'); INSERT INTO t3 VALUES(11883, 42012, 'forty-two thousand twelve'); INSERT INTO t3 VALUES(11884, 1825, 'one thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(11885, 90919, 'ninety thousand nine hundred nineteen'); INSERT INTO t3 VALUES(11886, 50519, 'fifty thousand five hundred nineteen'); INSERT INTO t3 VALUES(11887, 6022, 'six thousand twenty-two'); INSERT INTO t3 VALUES(11888, 3404, 'three thousand four hundred four'); INSERT INTO t3 VALUES(11889, 97645, 'ninety-seven thousand six hundred forty-five'); INSERT INTO t3 VALUES(11890, 32575, 'thirty-two thousand five hundred seventy-five'); INSERT INTO t3 VALUES(11891, 3982, 'three thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(11892, 71443, 'seventy-one thousand four hundred forty-three'); INSERT INTO t3 VALUES(11893, 42456, 'forty-two thousand four hundred fifty-six'); INSERT INTO t3 VALUES(11894, 47404, 'forty-seven thousand four hundred four'); INSERT INTO t3 VALUES(11895, 97548, 'ninety-seven thousand five hundred forty-eight'); INSERT INTO t3 VALUES(11896, 55393, 'fifty-five thousand three hundred ninety-three'); INSERT INTO t3 VALUES(11897, 10696, 'ten thousand six hundred ninety-six'); INSERT INTO t3 VALUES(11898, 15414, 'fifteen thousand four hundred fourteen'); INSERT INTO t3 VALUES(11899, 87596, 'eighty-seven thousand five hundred ninety-six'); INSERT INTO t3 VALUES(11900, 19344, 'nineteen thousand three hundred forty-four'); INSERT INTO t3 VALUES(11901, 61027, 'sixty-one thousand twenty-seven'); INSERT INTO t3 VALUES(11902, 14105, 'fourteen thousand one hundred five'); INSERT INTO t3 VALUES(11903, 45470, 'forty-five thousand four hundred seventy'); INSERT INTO t3 VALUES(11904, 31957, 'thirty-one thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(11905, 1912, 'one thousand nine hundred twelve'); INSERT INTO t3 VALUES(11906, 95194, 'ninety-five thousand one hundred ninety-four'); INSERT INTO t3 VALUES(11907, 48183, 'forty-eight thousand one hundred eighty-three'); INSERT INTO t3 VALUES(11908, 75915, 'seventy-five thousand nine hundred fifteen'); INSERT INTO t3 VALUES(11909, 97717, 'ninety-seven thousand seven hundred seventeen'); INSERT INTO t3 VALUES(11910, 34737, 'thirty-four thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(11911, 67401, 'sixty-seven thousand four hundred one'); INSERT INTO t3 VALUES(11912, 62222, 'sixty-two thousand two hundred twenty-two'); INSERT INTO t3 VALUES(11913, 37064, 'thirty-seven thousand sixty-four'); INSERT INTO t3 VALUES(11914, 81917, 'eighty-one thousand nine hundred seventeen'); INSERT INTO t3 VALUES(11915, 71965, 'seventy-one thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(11916, 7275, 'seven thousand two hundred seventy-five'); INSERT INTO t3 VALUES(11917, 20064, 'twenty thousand sixty-four'); INSERT INTO t3 VALUES(11918, 16388, 'sixteen thousand three hundred eighty-eight'); INSERT INTO t3 VALUES(11919, 62706, 'sixty-two thousand seven hundred six'); INSERT INTO t3 VALUES(11920, 50645, 'fifty thousand six hundred forty-five'); INSERT INTO t3 VALUES(11921, 15051, 'fifteen thousand fifty-one'); INSERT INTO t3 VALUES(11922, 51706, 'fifty-one thousand seven hundred six'); INSERT INTO t3 VALUES(11923, 81934, 'eighty-one thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(11924, 70976, 'seventy thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(11925, 503, 'five hundred three'); INSERT INTO t3 VALUES(11926, 78888, 'seventy-eight thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(11927, 58858, 'fifty-eight thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(11928, 93364, 'ninety-three thousand three hundred sixty-four'); INSERT INTO t3 VALUES(11929, 95068, 'ninety-five thousand sixty-eight'); INSERT INTO t3 VALUES(11930, 84890, 'eighty-four thousand eight hundred ninety'); INSERT INTO t3 VALUES(11931, 55955, 'fifty-five thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(11932, 68322, 'sixty-eight thousand three hundred twenty-two'); INSERT INTO t3 VALUES(11933, 91462, 'ninety-one thousand four hundred sixty-two'); INSERT INTO t3 VALUES(11934, 14983, 'fourteen thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(11935, 74169, 'seventy-four thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(11936, 16367, 'sixteen thousand three hundred sixty-seven'); INSERT INTO t3 VALUES(11937, 71572, 'seventy-one thousand five hundred seventy-two'); INSERT INTO t3 VALUES(11938, 72172, 'seventy-two thousand one hundred seventy-two'); INSERT INTO t3 VALUES(11939, 58667, 'fifty-eight thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(11940, 75015, 'seventy-five thousand fifteen'); INSERT INTO t3 VALUES(11941, 5744, 'five thousand seven hundred forty-four'); INSERT INTO t3 VALUES(11942, 72618, 'seventy-two thousand six hundred eighteen'); INSERT INTO t3 VALUES(11943, 27111, 'twenty-seven thousand one hundred eleven'); INSERT INTO t3 VALUES(11944, 78011, 'seventy-eight thousand eleven'); INSERT INTO t3 VALUES(11945, 46133, 'forty-six thousand one hundred thirty-three'); INSERT INTO t3 VALUES(11946, 18135, 'eighteen thousand one hundred thirty-five'); INSERT INTO t3 VALUES(11947, 38877, 'thirty-eight thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(11948, 53753, 'fifty-three thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(11949, 73991, 'seventy-three thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(11950, 83165, 'eighty-three thousand one hundred sixty-five'); INSERT INTO t3 VALUES(11951, 61627, 'sixty-one thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(11952, 84238, 'eighty-four thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(11953, 10115, 'ten thousand one hundred fifteen'); INSERT INTO t3 VALUES(11954, 85230, 'eighty-five thousand two hundred thirty'); INSERT INTO t3 VALUES(11955, 7217, 'seven thousand two hundred seventeen'); INSERT INTO t3 VALUES(11956, 35963, 'thirty-five thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(11957, 9498, 'nine thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(11958, 66553, 'sixty-six thousand five hundred fifty-three'); INSERT INTO t3 VALUES(11959, 38111, 'thirty-eight thousand one hundred eleven'); INSERT INTO t3 VALUES(11960, 43959, 'forty-three thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(11961, 63156, 'sixty-three thousand one hundred fifty-six'); INSERT INTO t3 VALUES(11962, 9518, 'nine thousand five hundred eighteen'); INSERT INTO t3 VALUES(11963, 97171, 'ninety-seven thousand one hundred seventy-one'); INSERT INTO t3 VALUES(11964, 86771, 'eighty-six thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(11965, 69, 'sixty-nine'); INSERT INTO t3 VALUES(11966, 71894, 'seventy-one thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(11967, 79599, 'seventy-nine thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(11968, 24985, 'twenty-four thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(11969, 94272, 'ninety-four thousand two hundred seventy-two'); INSERT INTO t3 VALUES(11970, 62954, 'sixty-two thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(11971, 20343, 'twenty thousand three hundred forty-three'); INSERT INTO t3 VALUES(11972, 67213, 'sixty-seven thousand two hundred thirteen'); INSERT INTO t3 VALUES(11973, 3899, 'three thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(11974, 36809, 'thirty-six thousand eight hundred nine'); INSERT INTO t3 VALUES(11975, 12182, 'twelve thousand one hundred eighty-two'); INSERT INTO t3 VALUES(11976, 25246, 'twenty-five thousand two hundred forty-six'); INSERT INTO t3 VALUES(11977, 44154, 'forty-four thousand one hundred fifty-four'); INSERT INTO t3 VALUES(11978, 863, 'eight hundred sixty-three'); INSERT INTO t3 VALUES(11979, 17694, 'seventeen thousand six hundred ninety-four'); INSERT INTO t3 VALUES(11980, 90126, 'ninety thousand one hundred twenty-six'); INSERT INTO t3 VALUES(11981, 22030, 'twenty-two thousand thirty'); INSERT INTO t3 VALUES(11982, 97792, 'ninety-seven thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(11983, 53180, 'fifty-three thousand one hundred eighty'); INSERT INTO t3 VALUES(11984, 28533, 'twenty-eight thousand five hundred thirty-three'); INSERT INTO t3 VALUES(11985, 18468, 'eighteen thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(11986, 89998, 'eighty-nine thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(11987, 72171, 'seventy-two thousand one hundred seventy-one'); INSERT INTO t3 VALUES(11988, 84881, 'eighty-four thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(11989, 18068, 'eighteen thousand sixty-eight'); INSERT INTO t3 VALUES(11990, 15229, 'fifteen thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(11991, 69248, 'sixty-nine thousand two hundred forty-eight'); INSERT INTO t3 VALUES(11992, 16246, 'sixteen thousand two hundred forty-six'); INSERT INTO t3 VALUES(11993, 86592, 'eighty-six thousand five hundred ninety-two'); INSERT INTO t3 VALUES(11994, 20767, 'twenty thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(11995, 78504, 'seventy-eight thousand five hundred four'); INSERT INTO t3 VALUES(11996, 54547, 'fifty-four thousand five hundred forty-seven'); INSERT INTO t3 VALUES(11997, 48341, 'forty-eight thousand three hundred forty-one'); INSERT INTO t3 VALUES(11998, 40232, 'forty thousand two hundred thirty-two'); INSERT INTO t3 VALUES(11999, 68392, 'sixty-eight thousand three hundred ninety-two'); INSERT INTO t3 VALUES(12000, 51554, 'fifty-one thousand five hundred fifty-four'); INSERT INTO t3 VALUES(12001, 65801, 'sixty-five thousand eight hundred one'); INSERT INTO t3 VALUES(12002, 53753, 'fifty-three thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(12003, 32296, 'thirty-two thousand two hundred ninety-six'); INSERT INTO t3 VALUES(12004, 87943, 'eighty-seven thousand nine hundred forty-three'); INSERT INTO t3 VALUES(12005, 44196, 'forty-four thousand one hundred ninety-six'); INSERT INTO t3 VALUES(12006, 16664, 'sixteen thousand six hundred sixty-four'); INSERT INTO t3 VALUES(12007, 2471, 'two thousand four hundred seventy-one'); INSERT INTO t3 VALUES(12008, 83255, 'eighty-three thousand two hundred fifty-five'); INSERT INTO t3 VALUES(12009, 86819, 'eighty-six thousand eight hundred nineteen'); INSERT INTO t3 VALUES(12010, 26459, 'twenty-six thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(12011, 63043, 'sixty-three thousand forty-three'); INSERT INTO t3 VALUES(12012, 42042, 'forty-two thousand forty-two'); INSERT INTO t3 VALUES(12013, 79976, 'seventy-nine thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(12014, 38489, 'thirty-eight thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(12015, 10762, 'ten thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(12016, 84345, 'eighty-four thousand three hundred forty-five'); INSERT INTO t3 VALUES(12017, 34126, 'thirty-four thousand one hundred twenty-six'); INSERT INTO t3 VALUES(12018, 92073, 'ninety-two thousand seventy-three'); INSERT INTO t3 VALUES(12019, 18829, 'eighteen thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(12020, 93695, 'ninety-three thousand six hundred ninety-five'); INSERT INTO t3 VALUES(12021, 77837, 'seventy-seven thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(12022, 70889, 'seventy thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(12023, 24732, 'twenty-four thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(12024, 33022, 'thirty-three thousand twenty-two'); INSERT INTO t3 VALUES(12025, 63120, 'sixty-three thousand one hundred twenty'); INSERT INTO t3 VALUES(12026, 55172, 'fifty-five thousand one hundred seventy-two'); INSERT INTO t3 VALUES(12027, 10044, 'ten thousand forty-four'); INSERT INTO t3 VALUES(12028, 55713, 'fifty-five thousand seven hundred thirteen'); INSERT INTO t3 VALUES(12029, 95963, 'ninety-five thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(12030, 47040, 'forty-seven thousand forty'); INSERT INTO t3 VALUES(12031, 32114, 'thirty-two thousand one hundred fourteen'); INSERT INTO t3 VALUES(12032, 53632, 'fifty-three thousand six hundred thirty-two'); INSERT INTO t3 VALUES(12033, 26503, 'twenty-six thousand five hundred three'); INSERT INTO t3 VALUES(12034, 202, 'two hundred two'); INSERT INTO t3 VALUES(12035, 64647, 'sixty-four thousand six hundred forty-seven'); INSERT INTO t3 VALUES(12036, 27092, 'twenty-seven thousand ninety-two'); INSERT INTO t3 VALUES(12037, 93899, 'ninety-three thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(12038, 18597, 'eighteen thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(12039, 43637, 'forty-three thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(12040, 24440, 'twenty-four thousand four hundred forty'); INSERT INTO t3 VALUES(12041, 33105, 'thirty-three thousand one hundred five'); INSERT INTO t3 VALUES(12042, 39500, 'thirty-nine thousand five hundred'); INSERT INTO t3 VALUES(12043, 27059, 'twenty-seven thousand fifty-nine'); INSERT INTO t3 VALUES(12044, 58717, 'fifty-eight thousand seven hundred seventeen'); INSERT INTO t3 VALUES(12045, 53111, 'fifty-three thousand one hundred eleven'); INSERT INTO t3 VALUES(12046, 41779, 'forty-one thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(12047, 15163, 'fifteen thousand one hundred sixty-three'); INSERT INTO t3 VALUES(12048, 29164, 'twenty-nine thousand one hundred sixty-four'); INSERT INTO t3 VALUES(12049, 89874, 'eighty-nine thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(12050, 21246, 'twenty-one thousand two hundred forty-six'); INSERT INTO t3 VALUES(12051, 37226, 'thirty-seven thousand two hundred twenty-six'); INSERT INTO t3 VALUES(12052, 24850, 'twenty-four thousand eight hundred fifty'); INSERT INTO t3 VALUES(12053, 54187, 'fifty-four thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(12054, 95951, 'ninety-five thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(12055, 62399, 'sixty-two thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(12056, 83078, 'eighty-three thousand seventy-eight'); INSERT INTO t3 VALUES(12057, 6860, 'six thousand eight hundred sixty'); INSERT INTO t3 VALUES(12058, 60798, 'sixty thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(12059, 76887, 'seventy-six thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(12060, 89067, 'eighty-nine thousand sixty-seven'); INSERT INTO t3 VALUES(12061, 94654, 'ninety-four thousand six hundred fifty-four'); INSERT INTO t3 VALUES(12062, 35551, 'thirty-five thousand five hundred fifty-one'); INSERT INTO t3 VALUES(12063, 82960, 'eighty-two thousand nine hundred sixty'); INSERT INTO t3 VALUES(12064, 36925, 'thirty-six thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(12065, 8681, 'eight thousand six hundred eighty-one'); INSERT INTO t3 VALUES(12066, 93072, 'ninety-three thousand seventy-two'); INSERT INTO t3 VALUES(12067, 41628, 'forty-one thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(12068, 90514, 'ninety thousand five hundred fourteen'); INSERT INTO t3 VALUES(12069, 22772, 'twenty-two thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(12070, 54182, 'fifty-four thousand one hundred eighty-two'); INSERT INTO t3 VALUES(12071, 29198, 'twenty-nine thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(12072, 50855, 'fifty thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(12073, 4904, 'four thousand nine hundred four'); INSERT INTO t3 VALUES(12074, 94642, 'ninety-four thousand six hundred forty-two'); INSERT INTO t3 VALUES(12075, 10151, 'ten thousand one hundred fifty-one'); INSERT INTO t3 VALUES(12076, 61006, 'sixty-one thousand six'); INSERT INTO t3 VALUES(12077, 51419, 'fifty-one thousand four hundred nineteen'); INSERT INTO t3 VALUES(12078, 2005, 'two thousand five'); INSERT INTO t3 VALUES(12079, 29342, 'twenty-nine thousand three hundred forty-two'); INSERT INTO t3 VALUES(12080, 85539, 'eighty-five thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(12081, 29893, 'twenty-nine thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(12082, 46842, 'forty-six thousand eight hundred forty-two'); INSERT INTO t3 VALUES(12083, 6470, 'six thousand four hundred seventy'); INSERT INTO t3 VALUES(12084, 890, 'eight hundred ninety'); INSERT INTO t3 VALUES(12085, 5458, 'five thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(12086, 95722, 'ninety-five thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(12087, 34434, 'thirty-four thousand four hundred thirty-four'); INSERT INTO t3 VALUES(12088, 65788, 'sixty-five thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(12089, 58906, 'fifty-eight thousand nine hundred six'); INSERT INTO t3 VALUES(12090, 66846, 'sixty-six thousand eight hundred forty-six'); INSERT INTO t3 VALUES(12091, 62130, 'sixty-two thousand one hundred thirty'); INSERT INTO t3 VALUES(12092, 18517, 'eighteen thousand five hundred seventeen'); INSERT INTO t3 VALUES(12093, 1055, 'one thousand fifty-five'); INSERT INTO t3 VALUES(12094, 86514, 'eighty-six thousand five hundred fourteen'); INSERT INTO t3 VALUES(12095, 87724, 'eighty-seven thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(12096, 38686, 'thirty-eight thousand six hundred eighty-six'); INSERT INTO t3 VALUES(12097, 52524, 'fifty-two thousand five hundred twenty-four'); INSERT INTO t3 VALUES(12098, 68645, 'sixty-eight thousand six hundred forty-five'); INSERT INTO t3 VALUES(12099, 86971, 'eighty-six thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(12100, 6454, 'six thousand four hundred fifty-four'); INSERT INTO t3 VALUES(12101, 13352, 'thirteen thousand three hundred fifty-two'); INSERT INTO t3 VALUES(12102, 2788, 'two thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(12103, 24667, 'twenty-four thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(12104, 27157, 'twenty-seven thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(12105, 74556, 'seventy-four thousand five hundred fifty-six'); INSERT INTO t3 VALUES(12106, 17054, 'seventeen thousand fifty-four'); INSERT INTO t3 VALUES(12107, 28219, 'twenty-eight thousand two hundred nineteen'); INSERT INTO t3 VALUES(12108, 99698, 'ninety-nine thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(12109, 55770, 'fifty-five thousand seven hundred seventy'); INSERT INTO t3 VALUES(12110, 95691, 'ninety-five thousand six hundred ninety-one'); INSERT INTO t3 VALUES(12111, 77680, 'seventy-seven thousand six hundred eighty'); INSERT INTO t3 VALUES(12112, 82557, 'eighty-two thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(12113, 84289, 'eighty-four thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(12114, 92640, 'ninety-two thousand six hundred forty'); INSERT INTO t3 VALUES(12115, 24198, 'twenty-four thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(12116, 43715, 'forty-three thousand seven hundred fifteen'); INSERT INTO t3 VALUES(12117, 94437, 'ninety-four thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(12118, 72542, 'seventy-two thousand five hundred forty-two'); INSERT INTO t3 VALUES(12119, 97924, 'ninety-seven thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(12120, 75797, 'seventy-five thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(12121, 89770, 'eighty-nine thousand seven hundred seventy'); INSERT INTO t3 VALUES(12122, 29356, 'twenty-nine thousand three hundred fifty-six'); INSERT INTO t3 VALUES(12123, 79476, 'seventy-nine thousand four hundred seventy-six'); INSERT INTO t3 VALUES(12124, 11380, 'eleven thousand three hundred eighty'); INSERT INTO t3 VALUES(12125, 35412, 'thirty-five thousand four hundred twelve'); INSERT INTO t3 VALUES(12126, 86036, 'eighty-six thousand thirty-six'); INSERT INTO t3 VALUES(12127, 51651, 'fifty-one thousand six hundred fifty-one'); INSERT INTO t3 VALUES(12128, 15728, 'fifteen thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(12129, 50357, 'fifty thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(12130, 39694, 'thirty-nine thousand six hundred ninety-four'); INSERT INTO t3 VALUES(12131, 51963, 'fifty-one thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(12132, 46895, 'forty-six thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(12133, 17207, 'seventeen thousand two hundred seven'); INSERT INTO t3 VALUES(12134, 49024, 'forty-nine thousand twenty-four'); INSERT INTO t3 VALUES(12135, 78280, 'seventy-eight thousand two hundred eighty'); INSERT INTO t3 VALUES(12136, 83475, 'eighty-three thousand four hundred seventy-five'); INSERT INTO t3 VALUES(12137, 63565, 'sixty-three thousand five hundred sixty-five'); INSERT INTO t3 VALUES(12138, 54154, 'fifty-four thousand one hundred fifty-four'); INSERT INTO t3 VALUES(12139, 57673, 'fifty-seven thousand six hundred seventy-three'); INSERT INTO t3 VALUES(12140, 85932, 'eighty-five thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(12141, 31555, 'thirty-one thousand five hundred fifty-five'); INSERT INTO t3 VALUES(12142, 9508, 'nine thousand five hundred eight'); INSERT INTO t3 VALUES(12143, 73567, 'seventy-three thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(12144, 44988, 'forty-four thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(12145, 21127, 'twenty-one thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(12146, 61012, 'sixty-one thousand twelve'); INSERT INTO t3 VALUES(12147, 77837, 'seventy-seven thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(12148, 73851, 'seventy-three thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(12149, 2111, 'two thousand one hundred eleven'); INSERT INTO t3 VALUES(12150, 73767, 'seventy-three thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(12151, 62354, 'sixty-two thousand three hundred fifty-four'); INSERT INTO t3 VALUES(12152, 61977, 'sixty-one thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(12153, 73744, 'seventy-three thousand seven hundred forty-four'); INSERT INTO t3 VALUES(12154, 95066, 'ninety-five thousand sixty-six'); INSERT INTO t3 VALUES(12155, 31700, 'thirty-one thousand seven hundred'); INSERT INTO t3 VALUES(12156, 72926, 'seventy-two thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(12157, 72676, 'seventy-two thousand six hundred seventy-six'); INSERT INTO t3 VALUES(12158, 72285, 'seventy-two thousand two hundred eighty-five'); INSERT INTO t3 VALUES(12159, 49915, 'forty-nine thousand nine hundred fifteen'); INSERT INTO t3 VALUES(12160, 7776, 'seven thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(12161, 43821, 'forty-three thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(12162, 28575, 'twenty-eight thousand five hundred seventy-five'); INSERT INTO t3 VALUES(12163, 92576, 'ninety-two thousand five hundred seventy-six'); INSERT INTO t3 VALUES(12164, 98015, 'ninety-eight thousand fifteen'); INSERT INTO t3 VALUES(12165, 88258, 'eighty-eight thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(12166, 95707, 'ninety-five thousand seven hundred seven'); INSERT INTO t3 VALUES(12167, 24589, 'twenty-four thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(12168, 46285, 'forty-six thousand two hundred eighty-five'); INSERT INTO t3 VALUES(12169, 5068, 'five thousand sixty-eight'); INSERT INTO t3 VALUES(12170, 51316, 'fifty-one thousand three hundred sixteen'); INSERT INTO t3 VALUES(12171, 15037, 'fifteen thousand thirty-seven'); INSERT INTO t3 VALUES(12172, 66199, 'sixty-six thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(12173, 33768, 'thirty-three thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(12174, 24122, 'twenty-four thousand one hundred twenty-two'); INSERT INTO t3 VALUES(12175, 17389, 'seventeen thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(12176, 65942, 'sixty-five thousand nine hundred forty-two'); INSERT INTO t3 VALUES(12177, 52529, 'fifty-two thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(12178, 68202, 'sixty-eight thousand two hundred two'); INSERT INTO t3 VALUES(12179, 72068, 'seventy-two thousand sixty-eight'); INSERT INTO t3 VALUES(12180, 83937, 'eighty-three thousand nine hundred thirty-seven'); INSERT INTO t3 VALUES(12181, 61400, 'sixty-one thousand four hundred'); INSERT INTO t3 VALUES(12182, 13197, 'thirteen thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(12183, 13985, 'thirteen thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(12184, 52156, 'fifty-two thousand one hundred fifty-six'); INSERT INTO t3 VALUES(12185, 40126, 'forty thousand one hundred twenty-six'); INSERT INTO t3 VALUES(12186, 58642, 'fifty-eight thousand six hundred forty-two'); INSERT INTO t3 VALUES(12187, 58419, 'fifty-eight thousand four hundred nineteen'); INSERT INTO t3 VALUES(12188, 49468, 'forty-nine thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(12189, 72777, 'seventy-two thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(12190, 95503, 'ninety-five thousand five hundred three'); INSERT INTO t3 VALUES(12191, 49326, 'forty-nine thousand three hundred twenty-six'); INSERT INTO t3 VALUES(12192, 42014, 'forty-two thousand fourteen'); INSERT INTO t3 VALUES(12193, 79926, 'seventy-nine thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(12194, 57119, 'fifty-seven thousand one hundred nineteen'); INSERT INTO t3 VALUES(12195, 42271, 'forty-two thousand two hundred seventy-one'); INSERT INTO t3 VALUES(12196, 23936, 'twenty-three thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(12197, 42816, 'forty-two thousand eight hundred sixteen'); INSERT INTO t3 VALUES(12198, 25696, 'twenty-five thousand six hundred ninety-six'); INSERT INTO t3 VALUES(12199, 37571, 'thirty-seven thousand five hundred seventy-one'); INSERT INTO t3 VALUES(12200, 59291, 'fifty-nine thousand two hundred ninety-one'); INSERT INTO t3 VALUES(12201, 15587, 'fifteen thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(12202, 38850, 'thirty-eight thousand eight hundred fifty'); INSERT INTO t3 VALUES(12203, 96783, 'ninety-six thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(12204, 10262, 'ten thousand two hundred sixty-two'); INSERT INTO t3 VALUES(12205, 19792, 'nineteen thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(12206, 25424, 'twenty-five thousand four hundred twenty-four'); INSERT INTO t3 VALUES(12207, 86536, 'eighty-six thousand five hundred thirty-six'); INSERT INTO t3 VALUES(12208, 91299, 'ninety-one thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(12209, 9903, 'nine thousand nine hundred three'); INSERT INTO t3 VALUES(12210, 75237, 'seventy-five thousand two hundred thirty-seven'); INSERT INTO t3 VALUES(12211, 53924, 'fifty-three thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(12212, 25495, 'twenty-five thousand four hundred ninety-five'); INSERT INTO t3 VALUES(12213, 67720, 'sixty-seven thousand seven hundred twenty'); INSERT INTO t3 VALUES(12214, 33077, 'thirty-three thousand seventy-seven'); INSERT INTO t3 VALUES(12215, 65158, 'sixty-five thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(12216, 67488, 'sixty-seven thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(12217, 25822, 'twenty-five thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(12218, 38798, 'thirty-eight thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(12219, 92248, 'ninety-two thousand two hundred forty-eight'); INSERT INTO t3 VALUES(12220, 3957, 'three thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(12221, 23961, 'twenty-three thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(12222, 83061, 'eighty-three thousand sixty-one'); INSERT INTO t3 VALUES(12223, 47859, 'forty-seven thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(12224, 23347, 'twenty-three thousand three hundred forty-seven'); INSERT INTO t3 VALUES(12225, 78524, 'seventy-eight thousand five hundred twenty-four'); INSERT INTO t3 VALUES(12226, 97047, 'ninety-seven thousand forty-seven'); INSERT INTO t3 VALUES(12227, 27575, 'twenty-seven thousand five hundred seventy-five'); INSERT INTO t3 VALUES(12228, 10705, 'ten thousand seven hundred five'); INSERT INTO t3 VALUES(12229, 49985, 'forty-nine thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(12230, 38058, 'thirty-eight thousand fifty-eight'); INSERT INTO t3 VALUES(12231, 44581, 'forty-four thousand five hundred eighty-one'); INSERT INTO t3 VALUES(12232, 91085, 'ninety-one thousand eighty-five'); INSERT INTO t3 VALUES(12233, 18906, 'eighteen thousand nine hundred six'); INSERT INTO t3 VALUES(12234, 74999, 'seventy-four thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(12235, 93218, 'ninety-three thousand two hundred eighteen'); INSERT INTO t3 VALUES(12236, 48374, 'forty-eight thousand three hundred seventy-four'); INSERT INTO t3 VALUES(12237, 20996, 'twenty thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(12238, 89650, 'eighty-nine thousand six hundred fifty'); INSERT INTO t3 VALUES(12239, 42672, 'forty-two thousand six hundred seventy-two'); INSERT INTO t3 VALUES(12240, 44001, 'forty-four thousand one'); INSERT INTO t3 VALUES(12241, 70701, 'seventy thousand seven hundred one'); INSERT INTO t3 VALUES(12242, 8247, 'eight thousand two hundred forty-seven'); INSERT INTO t3 VALUES(12243, 51628, 'fifty-one thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(12244, 63409, 'sixty-three thousand four hundred nine'); INSERT INTO t3 VALUES(12245, 54207, 'fifty-four thousand two hundred seven'); INSERT INTO t3 VALUES(12246, 42940, 'forty-two thousand nine hundred forty'); INSERT INTO t3 VALUES(12247, 18088, 'eighteen thousand eighty-eight'); INSERT INTO t3 VALUES(12248, 58027, 'fifty-eight thousand twenty-seven'); INSERT INTO t3 VALUES(12249, 2377, 'two thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(12250, 75368, 'seventy-five thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(12251, 75268, 'seventy-five thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(12252, 30975, 'thirty thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(12253, 20743, 'twenty thousand seven hundred forty-three'); INSERT INTO t3 VALUES(12254, 88758, 'eighty-eight thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(12255, 84075, 'eighty-four thousand seventy-five'); INSERT INTO t3 VALUES(12256, 68101, 'sixty-eight thousand one hundred one'); INSERT INTO t3 VALUES(12257, 99073, 'ninety-nine thousand seventy-three'); INSERT INTO t3 VALUES(12258, 40425, 'forty thousand four hundred twenty-five'); INSERT INTO t3 VALUES(12259, 72976, 'seventy-two thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(12260, 94909, 'ninety-four thousand nine hundred nine'); INSERT INTO t3 VALUES(12261, 14725, 'fourteen thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(12262, 71352, 'seventy-one thousand three hundred fifty-two'); INSERT INTO t3 VALUES(12263, 70754, 'seventy thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(12264, 56111, 'fifty-six thousand one hundred eleven'); INSERT INTO t3 VALUES(12265, 24724, 'twenty-four thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(12266, 82841, 'eighty-two thousand eight hundred forty-one'); INSERT INTO t3 VALUES(12267, 14546, 'fourteen thousand five hundred forty-six'); INSERT INTO t3 VALUES(12268, 68833, 'sixty-eight thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(12269, 13914, 'thirteen thousand nine hundred fourteen'); INSERT INTO t3 VALUES(12270, 94002, 'ninety-four thousand two'); INSERT INTO t3 VALUES(12271, 17228, 'seventeen thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(12272, 50320, 'fifty thousand three hundred twenty'); INSERT INTO t3 VALUES(12273, 81657, 'eighty-one thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(12274, 26352, 'twenty-six thousand three hundred fifty-two'); INSERT INTO t3 VALUES(12275, 33434, 'thirty-three thousand four hundred thirty-four'); INSERT INTO t3 VALUES(12276, 63140, 'sixty-three thousand one hundred forty'); INSERT INTO t3 VALUES(12277, 61847, 'sixty-one thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(12278, 60849, 'sixty thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(12279, 58925, 'fifty-eight thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(12280, 82246, 'eighty-two thousand two hundred forty-six'); INSERT INTO t3 VALUES(12281, 75025, 'seventy-five thousand twenty-five'); INSERT INTO t3 VALUES(12282, 16427, 'sixteen thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(12283, 84464, 'eighty-four thousand four hundred sixty-four'); INSERT INTO t3 VALUES(12284, 85030, 'eighty-five thousand thirty'); INSERT INTO t3 VALUES(12285, 54040, 'fifty-four thousand forty'); INSERT INTO t3 VALUES(12286, 57978, 'fifty-seven thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(12287, 32230, 'thirty-two thousand two hundred thirty'); INSERT INTO t3 VALUES(12288, 62464, 'sixty-two thousand four hundred sixty-four'); INSERT INTO t3 VALUES(12289, 6503, 'six thousand five hundred three'); INSERT INTO t3 VALUES(12290, 11213, 'eleven thousand two hundred thirteen'); INSERT INTO t3 VALUES(12291, 20569, 'twenty thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(12292, 76107, 'seventy-six thousand one hundred seven'); INSERT INTO t3 VALUES(12293, 69219, 'sixty-nine thousand two hundred nineteen'); INSERT INTO t3 VALUES(12294, 75998, 'seventy-five thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(12295, 76402, 'seventy-six thousand four hundred two'); INSERT INTO t3 VALUES(12296, 42049, 'forty-two thousand forty-nine'); INSERT INTO t3 VALUES(12297, 44074, 'forty-four thousand seventy-four'); INSERT INTO t3 VALUES(12298, 97327, 'ninety-seven thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(12299, 88499, 'eighty-eight thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(12300, 88271, 'eighty-eight thousand two hundred seventy-one'); INSERT INTO t3 VALUES(12301, 91414, 'ninety-one thousand four hundred fourteen'); INSERT INTO t3 VALUES(12302, 25551, 'twenty-five thousand five hundred fifty-one'); INSERT INTO t3 VALUES(12303, 92869, 'ninety-two thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(12304, 17470, 'seventeen thousand four hundred seventy'); INSERT INTO t3 VALUES(12305, 49322, 'forty-nine thousand three hundred twenty-two'); INSERT INTO t3 VALUES(12306, 4405, 'four thousand four hundred five'); INSERT INTO t3 VALUES(12307, 49683, 'forty-nine thousand six hundred eighty-three'); INSERT INTO t3 VALUES(12308, 93222, 'ninety-three thousand two hundred twenty-two'); INSERT INTO t3 VALUES(12309, 36708, 'thirty-six thousand seven hundred eight'); INSERT INTO t3 VALUES(12310, 66742, 'sixty-six thousand seven hundred forty-two'); INSERT INTO t3 VALUES(12311, 34969, 'thirty-four thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(12312, 89482, 'eighty-nine thousand four hundred eighty-two'); INSERT INTO t3 VALUES(12313, 58554, 'fifty-eight thousand five hundred fifty-four'); INSERT INTO t3 VALUES(12314, 39993, 'thirty-nine thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(12315, 50638, 'fifty thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(12316, 4791, 'four thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(12317, 66854, 'sixty-six thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(12318, 25504, 'twenty-five thousand five hundred four'); INSERT INTO t3 VALUES(12319, 67298, 'sixty-seven thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(12320, 7335, 'seven thousand three hundred thirty-five'); INSERT INTO t3 VALUES(12321, 89558, 'eighty-nine thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(12322, 45790, 'forty-five thousand seven hundred ninety'); INSERT INTO t3 VALUES(12323, 48365, 'forty-eight thousand three hundred sixty-five'); INSERT INTO t3 VALUES(12324, 19106, 'nineteen thousand one hundred six'); INSERT INTO t3 VALUES(12325, 51267, 'fifty-one thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(12326, 3146, 'three thousand one hundred forty-six'); INSERT INTO t3 VALUES(12327, 87813, 'eighty-seven thousand eight hundred thirteen'); INSERT INTO t3 VALUES(12328, 10331, 'ten thousand three hundred thirty-one'); INSERT INTO t3 VALUES(12329, 96012, 'ninety-six thousand twelve'); INSERT INTO t3 VALUES(12330, 28797, 'twenty-eight thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(12331, 91533, 'ninety-one thousand five hundred thirty-three'); INSERT INTO t3 VALUES(12332, 14340, 'fourteen thousand three hundred forty'); INSERT INTO t3 VALUES(12333, 52036, 'fifty-two thousand thirty-six'); INSERT INTO t3 VALUES(12334, 5733, 'five thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(12335, 8866, 'eight thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(12336, 11371, 'eleven thousand three hundred seventy-one'); INSERT INTO t3 VALUES(12337, 55413, 'fifty-five thousand four hundred thirteen'); INSERT INTO t3 VALUES(12338, 23904, 'twenty-three thousand nine hundred four'); INSERT INTO t3 VALUES(12339, 56802, 'fifty-six thousand eight hundred two'); INSERT INTO t3 VALUES(12340, 87067, 'eighty-seven thousand sixty-seven'); INSERT INTO t3 VALUES(12341, 83206, 'eighty-three thousand two hundred six'); INSERT INTO t3 VALUES(12342, 40947, 'forty thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(12343, 72030, 'seventy-two thousand thirty'); INSERT INTO t3 VALUES(12344, 88626, 'eighty-eight thousand six hundred twenty-six'); INSERT INTO t3 VALUES(12345, 80309, 'eighty thousand three hundred nine'); INSERT INTO t3 VALUES(12346, 31106, 'thirty-one thousand one hundred six'); INSERT INTO t3 VALUES(12347, 33592, 'thirty-three thousand five hundred ninety-two'); INSERT INTO t3 VALUES(12348, 78295, 'seventy-eight thousand two hundred ninety-five'); INSERT INTO t3 VALUES(12349, 79065, 'seventy-nine thousand sixty-five'); INSERT INTO t3 VALUES(12350, 23927, 'twenty-three thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(12351, 54139, 'fifty-four thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(12352, 83607, 'eighty-three thousand six hundred seven'); INSERT INTO t3 VALUES(12353, 97703, 'ninety-seven thousand seven hundred three'); INSERT INTO t3 VALUES(12354, 86390, 'eighty-six thousand three hundred ninety'); INSERT INTO t3 VALUES(12355, 81581, 'eighty-one thousand five hundred eighty-one'); INSERT INTO t3 VALUES(12356, 65125, 'sixty-five thousand one hundred twenty-five'); INSERT INTO t3 VALUES(12357, 25619, 'twenty-five thousand six hundred nineteen'); INSERT INTO t3 VALUES(12358, 45601, 'forty-five thousand six hundred one'); INSERT INTO t3 VALUES(12359, 65234, 'sixty-five thousand two hundred thirty-four'); INSERT INTO t3 VALUES(12360, 76715, 'seventy-six thousand seven hundred fifteen'); INSERT INTO t3 VALUES(12361, 35896, 'thirty-five thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(12362, 69346, 'sixty-nine thousand three hundred forty-six'); INSERT INTO t3 VALUES(12363, 67174, 'sixty-seven thousand one hundred seventy-four'); INSERT INTO t3 VALUES(12364, 3094, 'three thousand ninety-four'); INSERT INTO t3 VALUES(12365, 558, 'five hundred fifty-eight'); INSERT INTO t3 VALUES(12366, 47389, 'forty-seven thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(12367, 44635, 'forty-four thousand six hundred thirty-five'); INSERT INTO t3 VALUES(12368, 54662, 'fifty-four thousand six hundred sixty-two'); INSERT INTO t3 VALUES(12369, 32752, 'thirty-two thousand seven hundred fifty-two'); INSERT INTO t3 VALUES(12370, 78081, 'seventy-eight thousand eighty-one'); INSERT INTO t3 VALUES(12371, 33368, 'thirty-three thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(12372, 31931, 'thirty-one thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(12373, 43170, 'forty-three thousand one hundred seventy'); INSERT INTO t3 VALUES(12374, 71960, 'seventy-one thousand nine hundred sixty'); INSERT INTO t3 VALUES(12375, 38617, 'thirty-eight thousand six hundred seventeen'); INSERT INTO t3 VALUES(12376, 82807, 'eighty-two thousand eight hundred seven'); INSERT INTO t3 VALUES(12377, 10336, 'ten thousand three hundred thirty-six'); INSERT INTO t3 VALUES(12378, 1412, 'one thousand four hundred twelve'); INSERT INTO t3 VALUES(12379, 32118, 'thirty-two thousand one hundred eighteen'); INSERT INTO t3 VALUES(12380, 64392, 'sixty-four thousand three hundred ninety-two'); INSERT INTO t3 VALUES(12381, 42476, 'forty-two thousand four hundred seventy-six'); INSERT INTO t3 VALUES(12382, 27134, 'twenty-seven thousand one hundred thirty-four'); INSERT INTO t3 VALUES(12383, 47740, 'forty-seven thousand seven hundred forty'); INSERT INTO t3 VALUES(12384, 7011, 'seven thousand eleven'); INSERT INTO t3 VALUES(12385, 20480, 'twenty thousand four hundred eighty'); INSERT INTO t3 VALUES(12386, 78531, 'seventy-eight thousand five hundred thirty-one'); INSERT INTO t3 VALUES(12387, 71055, 'seventy-one thousand fifty-five'); INSERT INTO t3 VALUES(12388, 8399, 'eight thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(12389, 58006, 'fifty-eight thousand six'); INSERT INTO t3 VALUES(12390, 69496, 'sixty-nine thousand four hundred ninety-six'); INSERT INTO t3 VALUES(12391, 96798, 'ninety-six thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(12392, 79086, 'seventy-nine thousand eighty-six'); INSERT INTO t3 VALUES(12393, 56704, 'fifty-six thousand seven hundred four'); INSERT INTO t3 VALUES(12394, 32766, 'thirty-two thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(12395, 15365, 'fifteen thousand three hundred sixty-five'); INSERT INTO t3 VALUES(12396, 56636, 'fifty-six thousand six hundred thirty-six'); INSERT INTO t3 VALUES(12397, 52152, 'fifty-two thousand one hundred fifty-two'); INSERT INTO t3 VALUES(12398, 4018, 'four thousand eighteen'); INSERT INTO t3 VALUES(12399, 95012, 'ninety-five thousand twelve'); INSERT INTO t3 VALUES(12400, 43967, 'forty-three thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(12401, 30962, 'thirty thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(12402, 51535, 'fifty-one thousand five hundred thirty-five'); INSERT INTO t3 VALUES(12403, 66800, 'sixty-six thousand eight hundred'); INSERT INTO t3 VALUES(12404, 46071, 'forty-six thousand seventy-one'); INSERT INTO t3 VALUES(12405, 63123, 'sixty-three thousand one hundred twenty-three'); INSERT INTO t3 VALUES(12406, 96410, 'ninety-six thousand four hundred ten'); INSERT INTO t3 VALUES(12407, 42174, 'forty-two thousand one hundred seventy-four'); INSERT INTO t3 VALUES(12408, 83887, 'eighty-three thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(12409, 24188, 'twenty-four thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(12410, 41230, 'forty-one thousand two hundred thirty'); INSERT INTO t3 VALUES(12411, 57121, 'fifty-seven thousand one hundred twenty-one'); INSERT INTO t3 VALUES(12412, 47047, 'forty-seven thousand forty-seven'); INSERT INTO t3 VALUES(12413, 65933, 'sixty-five thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(12414, 11440, 'eleven thousand four hundred forty'); INSERT INTO t3 VALUES(12415, 28993, 'twenty-eight thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(12416, 43252, 'forty-three thousand two hundred fifty-two'); INSERT INTO t3 VALUES(12417, 59452, 'fifty-nine thousand four hundred fifty-two'); INSERT INTO t3 VALUES(12418, 67675, 'sixty-seven thousand six hundred seventy-five'); INSERT INTO t3 VALUES(12419, 4068, 'four thousand sixty-eight'); INSERT INTO t3 VALUES(12420, 51511, 'fifty-one thousand five hundred eleven'); INSERT INTO t3 VALUES(12421, 37323, 'thirty-seven thousand three hundred twenty-three'); INSERT INTO t3 VALUES(12422, 98598, 'ninety-eight thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(12423, 70363, 'seventy thousand three hundred sixty-three'); INSERT INTO t3 VALUES(12424, 88471, 'eighty-eight thousand four hundred seventy-one'); INSERT INTO t3 VALUES(12425, 96800, 'ninety-six thousand eight hundred'); INSERT INTO t3 VALUES(12426, 66953, 'sixty-six thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(12427, 93859, 'ninety-three thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(12428, 85522, 'eighty-five thousand five hundred twenty-two'); INSERT INTO t3 VALUES(12429, 83734, 'eighty-three thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(12430, 8259, 'eight thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(12431, 39924, 'thirty-nine thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(12432, 75262, 'seventy-five thousand two hundred sixty-two'); INSERT INTO t3 VALUES(12433, 20752, 'twenty thousand seven hundred fifty-two'); INSERT INTO t3 VALUES(12434, 32105, 'thirty-two thousand one hundred five'); INSERT INTO t3 VALUES(12435, 16337, 'sixteen thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(12436, 1699, 'one thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(12437, 88600, 'eighty-eight thousand six hundred'); INSERT INTO t3 VALUES(12438, 15719, 'fifteen thousand seven hundred nineteen'); INSERT INTO t3 VALUES(12439, 46010, 'forty-six thousand ten'); INSERT INTO t3 VALUES(12440, 46329, 'forty-six thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(12441, 60870, 'sixty thousand eight hundred seventy'); INSERT INTO t3 VALUES(12442, 15013, 'fifteen thousand thirteen'); INSERT INTO t3 VALUES(12443, 1396, 'one thousand three hundred ninety-six'); INSERT INTO t3 VALUES(12444, 9929, 'nine thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(12445, 82977, 'eighty-two thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(12446, 20123, 'twenty thousand one hundred twenty-three'); INSERT INTO t3 VALUES(12447, 18137, 'eighteen thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(12448, 84531, 'eighty-four thousand five hundred thirty-one'); INSERT INTO t3 VALUES(12449, 22905, 'twenty-two thousand nine hundred five'); INSERT INTO t3 VALUES(12450, 8244, 'eight thousand two hundred forty-four'); INSERT INTO t3 VALUES(12451, 79957, 'seventy-nine thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(12452, 6762, 'six thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(12453, 80350, 'eighty thousand three hundred fifty'); INSERT INTO t3 VALUES(12454, 24058, 'twenty-four thousand fifty-eight'); INSERT INTO t3 VALUES(12455, 28450, 'twenty-eight thousand four hundred fifty'); INSERT INTO t3 VALUES(12456, 25114, 'twenty-five thousand one hundred fourteen'); INSERT INTO t3 VALUES(12457, 25121, 'twenty-five thousand one hundred twenty-one'); INSERT INTO t3 VALUES(12458, 81767, 'eighty-one thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(12459, 32815, 'thirty-two thousand eight hundred fifteen'); INSERT INTO t3 VALUES(12460, 58684, 'fifty-eight thousand six hundred eighty-four'); INSERT INTO t3 VALUES(12461, 12150, 'twelve thousand one hundred fifty'); INSERT INTO t3 VALUES(12462, 25453, 'twenty-five thousand four hundred fifty-three'); INSERT INTO t3 VALUES(12463, 94481, 'ninety-four thousand four hundred eighty-one'); INSERT INTO t3 VALUES(12464, 25271, 'twenty-five thousand two hundred seventy-one'); INSERT INTO t3 VALUES(12465, 15510, 'fifteen thousand five hundred ten'); INSERT INTO t3 VALUES(12466, 37587, 'thirty-seven thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(12467, 18037, 'eighteen thousand thirty-seven'); INSERT INTO t3 VALUES(12468, 47583, 'forty-seven thousand five hundred eighty-three'); INSERT INTO t3 VALUES(12469, 48867, 'forty-eight thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(12470, 50053, 'fifty thousand fifty-three'); INSERT INTO t3 VALUES(12471, 94736, 'ninety-four thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(12472, 87965, 'eighty-seven thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(12473, 55778, 'fifty-five thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(12474, 67748, 'sixty-seven thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(12475, 34690, 'thirty-four thousand six hundred ninety'); INSERT INTO t3 VALUES(12476, 50922, 'fifty thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(12477, 8715, 'eight thousand seven hundred fifteen'); INSERT INTO t3 VALUES(12478, 12945, 'twelve thousand nine hundred forty-five'); INSERT INTO t3 VALUES(12479, 68002, 'sixty-eight thousand two'); INSERT INTO t3 VALUES(12480, 15048, 'fifteen thousand forty-eight'); INSERT INTO t3 VALUES(12481, 91440, 'ninety-one thousand four hundred forty'); INSERT INTO t3 VALUES(12482, 51865, 'fifty-one thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(12483, 11627, 'eleven thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(12484, 98039, 'ninety-eight thousand thirty-nine'); INSERT INTO t3 VALUES(12485, 32256, 'thirty-two thousand two hundred fifty-six'); INSERT INTO t3 VALUES(12486, 99595, 'ninety-nine thousand five hundred ninety-five'); INSERT INTO t3 VALUES(12487, 29250, 'twenty-nine thousand two hundred fifty'); INSERT INTO t3 VALUES(12488, 77049, 'seventy-seven thousand forty-nine'); INSERT INTO t3 VALUES(12489, 86646, 'eighty-six thousand six hundred forty-six'); INSERT INTO t3 VALUES(12490, 41257, 'forty-one thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(12491, 77597, 'seventy-seven thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(12492, 9909, 'nine thousand nine hundred nine'); INSERT INTO t3 VALUES(12493, 72690, 'seventy-two thousand six hundred ninety'); INSERT INTO t3 VALUES(12494, 73231, 'seventy-three thousand two hundred thirty-one'); INSERT INTO t3 VALUES(12495, 1184, 'one thousand one hundred eighty-four'); INSERT INTO t3 VALUES(12496, 27663, 'twenty-seven thousand six hundred sixty-three'); INSERT INTO t3 VALUES(12497, 29064, 'twenty-nine thousand sixty-four'); INSERT INTO t3 VALUES(12498, 44542, 'forty-four thousand five hundred forty-two'); INSERT INTO t3 VALUES(12499, 50700, 'fifty thousand seven hundred'); INSERT INTO t3 VALUES(12500, 64527, 'sixty-four thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(12501, 27776, 'twenty-seven thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(12502, 71905, 'seventy-one thousand nine hundred five'); INSERT INTO t3 VALUES(12503, 63327, 'sixty-three thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(12504, 24529, 'twenty-four thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(12505, 53478, 'fifty-three thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(12506, 41381, 'forty-one thousand three hundred eighty-one'); INSERT INTO t3 VALUES(12507, 12987, 'twelve thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(12508, 94291, 'ninety-four thousand two hundred ninety-one'); INSERT INTO t3 VALUES(12509, 83630, 'eighty-three thousand six hundred thirty'); INSERT INTO t3 VALUES(12510, 36087, 'thirty-six thousand eighty-seven'); INSERT INTO t3 VALUES(12511, 28941, 'twenty-eight thousand nine hundred forty-one'); INSERT INTO t3 VALUES(12512, 68723, 'sixty-eight thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(12513, 36126, 'thirty-six thousand one hundred twenty-six'); INSERT INTO t3 VALUES(12514, 63247, 'sixty-three thousand two hundred forty-seven'); INSERT INTO t3 VALUES(12515, 69046, 'sixty-nine thousand forty-six'); INSERT INTO t3 VALUES(12516, 23716, 'twenty-three thousand seven hundred sixteen'); INSERT INTO t3 VALUES(12517, 54643, 'fifty-four thousand six hundred forty-three'); INSERT INTO t3 VALUES(12518, 68032, 'sixty-eight thousand thirty-two'); INSERT INTO t3 VALUES(12519, 15832, 'fifteen thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(12520, 28522, 'twenty-eight thousand five hundred twenty-two'); INSERT INTO t3 VALUES(12521, 1615, 'one thousand six hundred fifteen'); INSERT INTO t3 VALUES(12522, 56734, 'fifty-six thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(12523, 29381, 'twenty-nine thousand three hundred eighty-one'); INSERT INTO t3 VALUES(12524, 96784, 'ninety-six thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(12525, 25678, 'twenty-five thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(12526, 25660, 'twenty-five thousand six hundred sixty'); INSERT INTO t3 VALUES(12527, 51583, 'fifty-one thousand five hundred eighty-three'); INSERT INTO t3 VALUES(12528, 41817, 'forty-one thousand eight hundred seventeen'); INSERT INTO t3 VALUES(12529, 65995, 'sixty-five thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(12530, 18128, 'eighteen thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(12531, 26780, 'twenty-six thousand seven hundred eighty'); INSERT INTO t3 VALUES(12532, 35231, 'thirty-five thousand two hundred thirty-one'); INSERT INTO t3 VALUES(12533, 54947, 'fifty-four thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(12534, 45299, 'forty-five thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(12535, 16410, 'sixteen thousand four hundred ten'); INSERT INTO t3 VALUES(12536, 28447, 'twenty-eight thousand four hundred forty-seven'); INSERT INTO t3 VALUES(12537, 34234, 'thirty-four thousand two hundred thirty-four'); INSERT INTO t3 VALUES(12538, 93067, 'ninety-three thousand sixty-seven'); INSERT INTO t3 VALUES(12539, 357, 'three hundred fifty-seven'); INSERT INTO t3 VALUES(12540, 37564, 'thirty-seven thousand five hundred sixty-four'); INSERT INTO t3 VALUES(12541, 78133, 'seventy-eight thousand one hundred thirty-three'); INSERT INTO t3 VALUES(12542, 12698, 'twelve thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(12543, 81735, 'eighty-one thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(12544, 85149, 'eighty-five thousand one hundred forty-nine'); INSERT INTO t3 VALUES(12545, 6787, 'six thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(12546, 8320, 'eight thousand three hundred twenty'); INSERT INTO t3 VALUES(12547, 7963, 'seven thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(12548, 66394, 'sixty-six thousand three hundred ninety-four'); INSERT INTO t3 VALUES(12549, 83934, 'eighty-three thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(12550, 67896, 'sixty-seven thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(12551, 18949, 'eighteen thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(12552, 75265, 'seventy-five thousand two hundred sixty-five'); INSERT INTO t3 VALUES(12553, 12320, 'twelve thousand three hundred twenty'); INSERT INTO t3 VALUES(12554, 50364, 'fifty thousand three hundred sixty-four'); INSERT INTO t3 VALUES(12555, 85557, 'eighty-five thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(12556, 61745, 'sixty-one thousand seven hundred forty-five'); INSERT INTO t3 VALUES(12557, 33129, 'thirty-three thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(12558, 82482, 'eighty-two thousand four hundred eighty-two'); INSERT INTO t3 VALUES(12559, 29300, 'twenty-nine thousand three hundred'); INSERT INTO t3 VALUES(12560, 39206, 'thirty-nine thousand two hundred six'); INSERT INTO t3 VALUES(12561, 31842, 'thirty-one thousand eight hundred forty-two'); INSERT INTO t3 VALUES(12562, 21973, 'twenty-one thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(12563, 24646, 'twenty-four thousand six hundred forty-six'); INSERT INTO t3 VALUES(12564, 17006, 'seventeen thousand six'); INSERT INTO t3 VALUES(12565, 57897, 'fifty-seven thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(12566, 46859, 'forty-six thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(12567, 68650, 'sixty-eight thousand six hundred fifty'); INSERT INTO t3 VALUES(12568, 19990, 'nineteen thousand nine hundred ninety'); INSERT INTO t3 VALUES(12569, 54074, 'fifty-four thousand seventy-four'); INSERT INTO t3 VALUES(12570, 75240, 'seventy-five thousand two hundred forty'); INSERT INTO t3 VALUES(12571, 53637, 'fifty-three thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(12572, 33994, 'thirty-three thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(12573, 40402, 'forty thousand four hundred two'); INSERT INTO t3 VALUES(12574, 23534, 'twenty-three thousand five hundred thirty-four'); INSERT INTO t3 VALUES(12575, 38116, 'thirty-eight thousand one hundred sixteen'); INSERT INTO t3 VALUES(12576, 63651, 'sixty-three thousand six hundred fifty-one'); INSERT INTO t3 VALUES(12577, 37906, 'thirty-seven thousand nine hundred six'); INSERT INTO t3 VALUES(12578, 84345, 'eighty-four thousand three hundred forty-five'); INSERT INTO t3 VALUES(12579, 24704, 'twenty-four thousand seven hundred four'); INSERT INTO t3 VALUES(12580, 6299, 'six thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(12581, 13423, 'thirteen thousand four hundred twenty-three'); INSERT INTO t3 VALUES(12582, 49551, 'forty-nine thousand five hundred fifty-one'); INSERT INTO t3 VALUES(12583, 61536, 'sixty-one thousand five hundred thirty-six'); INSERT INTO t3 VALUES(12584, 99195, 'ninety-nine thousand one hundred ninety-five'); INSERT INTO t3 VALUES(12585, 90974, 'ninety thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(12586, 86382, 'eighty-six thousand three hundred eighty-two'); INSERT INTO t3 VALUES(12587, 98600, 'ninety-eight thousand six hundred'); INSERT INTO t3 VALUES(12588, 11341, 'eleven thousand three hundred forty-one'); INSERT INTO t3 VALUES(12589, 6230, 'six thousand two hundred thirty'); INSERT INTO t3 VALUES(12590, 84415, 'eighty-four thousand four hundred fifteen'); INSERT INTO t3 VALUES(12591, 13190, 'thirteen thousand one hundred ninety'); INSERT INTO t3 VALUES(12592, 40445, 'forty thousand four hundred forty-five'); INSERT INTO t3 VALUES(12593, 27416, 'twenty-seven thousand four hundred sixteen'); INSERT INTO t3 VALUES(12594, 22997, 'twenty-two thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(12595, 73654, 'seventy-three thousand six hundred fifty-four'); INSERT INTO t3 VALUES(12596, 45799, 'forty-five thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(12597, 11809, 'eleven thousand eight hundred nine'); INSERT INTO t3 VALUES(12598, 71345, 'seventy-one thousand three hundred forty-five'); INSERT INTO t3 VALUES(12599, 78930, 'seventy-eight thousand nine hundred thirty'); INSERT INTO t3 VALUES(12600, 44539, 'forty-four thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(12601, 25888, 'twenty-five thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(12602, 55168, 'fifty-five thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(12603, 17408, 'seventeen thousand four hundred eight'); INSERT INTO t3 VALUES(12604, 91046, 'ninety-one thousand forty-six'); INSERT INTO t3 VALUES(12605, 60487, 'sixty thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(12606, 38260, 'thirty-eight thousand two hundred sixty'); INSERT INTO t3 VALUES(12607, 34970, 'thirty-four thousand nine hundred seventy'); INSERT INTO t3 VALUES(12608, 87774, 'eighty-seven thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(12609, 33514, 'thirty-three thousand five hundred fourteen'); INSERT INTO t3 VALUES(12610, 6794, 'six thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(12611, 70503, 'seventy thousand five hundred three'); INSERT INTO t3 VALUES(12612, 51852, 'fifty-one thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(12613, 23008, 'twenty-three thousand eight'); INSERT INTO t3 VALUES(12614, 2474, 'two thousand four hundred seventy-four'); INSERT INTO t3 VALUES(12615, 14304, 'fourteen thousand three hundred four'); INSERT INTO t3 VALUES(12616, 78739, 'seventy-eight thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(12617, 33290, 'thirty-three thousand two hundred ninety'); INSERT INTO t3 VALUES(12618, 82004, 'eighty-two thousand four'); INSERT INTO t3 VALUES(12619, 24390, 'twenty-four thousand three hundred ninety'); INSERT INTO t3 VALUES(12620, 87146, 'eighty-seven thousand one hundred forty-six'); INSERT INTO t3 VALUES(12621, 8691, 'eight thousand six hundred ninety-one'); INSERT INTO t3 VALUES(12622, 99344, 'ninety-nine thousand three hundred forty-four'); INSERT INTO t3 VALUES(12623, 3238, 'three thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(12624, 71113, 'seventy-one thousand one hundred thirteen'); INSERT INTO t3 VALUES(12625, 71441, 'seventy-one thousand four hundred forty-one'); INSERT INTO t3 VALUES(12626, 71434, 'seventy-one thousand four hundred thirty-four'); INSERT INTO t3 VALUES(12627, 82644, 'eighty-two thousand six hundred forty-four'); INSERT INTO t3 VALUES(12628, 89276, 'eighty-nine thousand two hundred seventy-six'); INSERT INTO t3 VALUES(12629, 8501, 'eight thousand five hundred one'); INSERT INTO t3 VALUES(12630, 60214, 'sixty thousand two hundred fourteen'); INSERT INTO t3 VALUES(12631, 84718, 'eighty-four thousand seven hundred eighteen'); INSERT INTO t3 VALUES(12632, 87349, 'eighty-seven thousand three hundred forty-nine'); INSERT INTO t3 VALUES(12633, 91038, 'ninety-one thousand thirty-eight'); INSERT INTO t3 VALUES(12634, 41025, 'forty-one thousand twenty-five'); INSERT INTO t3 VALUES(12635, 52699, 'fifty-two thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(12636, 81366, 'eighty-one thousand three hundred sixty-six'); INSERT INTO t3 VALUES(12637, 9633, 'nine thousand six hundred thirty-three'); INSERT INTO t3 VALUES(12638, 47238, 'forty-seven thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(12639, 9001, 'nine thousand one'); INSERT INTO t3 VALUES(12640, 66941, 'sixty-six thousand nine hundred forty-one'); INSERT INTO t3 VALUES(12641, 52593, 'fifty-two thousand five hundred ninety-three'); INSERT INTO t3 VALUES(12642, 97813, 'ninety-seven thousand eight hundred thirteen'); INSERT INTO t3 VALUES(12643, 5987, 'five thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(12644, 82630, 'eighty-two thousand six hundred thirty'); INSERT INTO t3 VALUES(12645, 98160, 'ninety-eight thousand one hundred sixty'); INSERT INTO t3 VALUES(12646, 222, 'two hundred twenty-two'); INSERT INTO t3 VALUES(12647, 86892, 'eighty-six thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(12648, 63743, 'sixty-three thousand seven hundred forty-three'); INSERT INTO t3 VALUES(12649, 81734, 'eighty-one thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(12650, 48541, 'forty-eight thousand five hundred forty-one'); INSERT INTO t3 VALUES(12651, 36365, 'thirty-six thousand three hundred sixty-five'); INSERT INTO t3 VALUES(12652, 20826, 'twenty thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(12653, 85203, 'eighty-five thousand two hundred three'); INSERT INTO t3 VALUES(12654, 26495, 'twenty-six thousand four hundred ninety-five'); INSERT INTO t3 VALUES(12655, 19571, 'nineteen thousand five hundred seventy-one'); INSERT INTO t3 VALUES(12656, 1139, 'one thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(12657, 64406, 'sixty-four thousand four hundred six'); INSERT INTO t3 VALUES(12658, 57451, 'fifty-seven thousand four hundred fifty-one'); INSERT INTO t3 VALUES(12659, 79223, 'seventy-nine thousand two hundred twenty-three'); INSERT INTO t3 VALUES(12660, 57009, 'fifty-seven thousand nine'); INSERT INTO t3 VALUES(12661, 73333, 'seventy-three thousand three hundred thirty-three'); INSERT INTO t3 VALUES(12662, 51819, 'fifty-one thousand eight hundred nineteen'); INSERT INTO t3 VALUES(12663, 63717, 'sixty-three thousand seven hundred seventeen'); INSERT INTO t3 VALUES(12664, 75607, 'seventy-five thousand six hundred seven'); INSERT INTO t3 VALUES(12665, 30413, 'thirty thousand four hundred thirteen'); INSERT INTO t3 VALUES(12666, 43176, 'forty-three thousand one hundred seventy-six'); INSERT INTO t3 VALUES(12667, 9969, 'nine thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(12668, 84541, 'eighty-four thousand five hundred forty-one'); INSERT INTO t3 VALUES(12669, 61457, 'sixty-one thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(12670, 39097, 'thirty-nine thousand ninety-seven'); INSERT INTO t3 VALUES(12671, 10062, 'ten thousand sixty-two'); INSERT INTO t3 VALUES(12672, 75919, 'seventy-five thousand nine hundred nineteen'); INSERT INTO t3 VALUES(12673, 33105, 'thirty-three thousand one hundred five'); INSERT INTO t3 VALUES(12674, 85001, 'eighty-five thousand one'); INSERT INTO t3 VALUES(12675, 70635, 'seventy thousand six hundred thirty-five'); INSERT INTO t3 VALUES(12676, 1633, 'one thousand six hundred thirty-three'); INSERT INTO t3 VALUES(12677, 56254, 'fifty-six thousand two hundred fifty-four'); INSERT INTO t3 VALUES(12678, 96865, 'ninety-six thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(12679, 32482, 'thirty-two thousand four hundred eighty-two'); INSERT INTO t3 VALUES(12680, 8805, 'eight thousand eight hundred five'); INSERT INTO t3 VALUES(12681, 44699, 'forty-four thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(12682, 67454, 'sixty-seven thousand four hundred fifty-four'); INSERT INTO t3 VALUES(12683, 6728, 'six thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(12684, 60834, 'sixty thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(12685, 69492, 'sixty-nine thousand four hundred ninety-two'); INSERT INTO t3 VALUES(12686, 75870, 'seventy-five thousand eight hundred seventy'); INSERT INTO t3 VALUES(12687, 46922, 'forty-six thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(12688, 49954, 'forty-nine thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(12689, 89469, 'eighty-nine thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(12690, 19961, 'nineteen thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(12691, 44740, 'forty-four thousand seven hundred forty'); INSERT INTO t3 VALUES(12692, 44840, 'forty-four thousand eight hundred forty'); INSERT INTO t3 VALUES(12693, 92446, 'ninety-two thousand four hundred forty-six'); INSERT INTO t3 VALUES(12694, 58104, 'fifty-eight thousand one hundred four'); INSERT INTO t3 VALUES(12695, 85813, 'eighty-five thousand eight hundred thirteen'); INSERT INTO t3 VALUES(12696, 31356, 'thirty-one thousand three hundred fifty-six'); INSERT INTO t3 VALUES(12697, 36930, 'thirty-six thousand nine hundred thirty'); INSERT INTO t3 VALUES(12698, 33444, 'thirty-three thousand four hundred forty-four'); INSERT INTO t3 VALUES(12699, 49152, 'forty-nine thousand one hundred fifty-two'); INSERT INTO t3 VALUES(12700, 77609, 'seventy-seven thousand six hundred nine'); INSERT INTO t3 VALUES(12701, 66681, 'sixty-six thousand six hundred eighty-one'); INSERT INTO t3 VALUES(12702, 41452, 'forty-one thousand four hundred fifty-two'); INSERT INTO t3 VALUES(12703, 45766, 'forty-five thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(12704, 30935, 'thirty thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(12705, 67848, 'sixty-seven thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(12706, 20793, 'twenty thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(12707, 20614, 'twenty thousand six hundred fourteen'); INSERT INTO t3 VALUES(12708, 80832, 'eighty thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(12709, 93210, 'ninety-three thousand two hundred ten'); INSERT INTO t3 VALUES(12710, 62573, 'sixty-two thousand five hundred seventy-three'); INSERT INTO t3 VALUES(12711, 34415, 'thirty-four thousand four hundred fifteen'); INSERT INTO t3 VALUES(12712, 37357, 'thirty-seven thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(12713, 72961, 'seventy-two thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(12714, 14852, 'fourteen thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(12715, 28075, 'twenty-eight thousand seventy-five'); INSERT INTO t3 VALUES(12716, 83557, 'eighty-three thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(12717, 78992, 'seventy-eight thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(12718, 69052, 'sixty-nine thousand fifty-two'); INSERT INTO t3 VALUES(12719, 41901, 'forty-one thousand nine hundred one'); INSERT INTO t3 VALUES(12720, 76886, 'seventy-six thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(12721, 19779, 'nineteen thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(12722, 84912, 'eighty-four thousand nine hundred twelve'); INSERT INTO t3 VALUES(12723, 66187, 'sixty-six thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(12724, 78636, 'seventy-eight thousand six hundred thirty-six'); INSERT INTO t3 VALUES(12725, 30044, 'thirty thousand forty-four'); INSERT INTO t3 VALUES(12726, 28176, 'twenty-eight thousand one hundred seventy-six'); INSERT INTO t3 VALUES(12727, 27874, 'twenty-seven thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(12728, 95578, 'ninety-five thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(12729, 33681, 'thirty-three thousand six hundred eighty-one'); INSERT INTO t3 VALUES(12730, 12222, 'twelve thousand two hundred twenty-two'); INSERT INTO t3 VALUES(12731, 26598, 'twenty-six thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(12732, 62513, 'sixty-two thousand five hundred thirteen'); INSERT INTO t3 VALUES(12733, 11509, 'eleven thousand five hundred nine'); INSERT INTO t3 VALUES(12734, 83392, 'eighty-three thousand three hundred ninety-two'); INSERT INTO t3 VALUES(12735, 97773, 'ninety-seven thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(12736, 3058, 'three thousand fifty-eight'); INSERT INTO t3 VALUES(12737, 89802, 'eighty-nine thousand eight hundred two'); INSERT INTO t3 VALUES(12738, 49401, 'forty-nine thousand four hundred one'); INSERT INTO t3 VALUES(12739, 28921, 'twenty-eight thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(12740, 45066, 'forty-five thousand sixty-six'); INSERT INTO t3 VALUES(12741, 23035, 'twenty-three thousand thirty-five'); INSERT INTO t3 VALUES(12742, 63245, 'sixty-three thousand two hundred forty-five'); INSERT INTO t3 VALUES(12743, 2524, 'two thousand five hundred twenty-four'); INSERT INTO t3 VALUES(12744, 21784, 'twenty-one thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(12745, 94512, 'ninety-four thousand five hundred twelve'); INSERT INTO t3 VALUES(12746, 80023, 'eighty thousand twenty-three'); INSERT INTO t3 VALUES(12747, 22798, 'twenty-two thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(12748, 16485, 'sixteen thousand four hundred eighty-five'); INSERT INTO t3 VALUES(12749, 29678, 'twenty-nine thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(12750, 4367, 'four thousand three hundred sixty-seven'); INSERT INTO t3 VALUES(12751, 73647, 'seventy-three thousand six hundred forty-seven'); INSERT INTO t3 VALUES(12752, 24278, 'twenty-four thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(12753, 40519, 'forty thousand five hundred nineteen'); INSERT INTO t3 VALUES(12754, 15534, 'fifteen thousand five hundred thirty-four'); INSERT INTO t3 VALUES(12755, 68479, 'sixty-eight thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(12756, 29542, 'twenty-nine thousand five hundred forty-two'); INSERT INTO t3 VALUES(12757, 20877, 'twenty thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(12758, 80932, 'eighty thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(12759, 66037, 'sixty-six thousand thirty-seven'); INSERT INTO t3 VALUES(12760, 17970, 'seventeen thousand nine hundred seventy'); INSERT INTO t3 VALUES(12761, 58418, 'fifty-eight thousand four hundred eighteen'); INSERT INTO t3 VALUES(12762, 19130, 'nineteen thousand one hundred thirty'); INSERT INTO t3 VALUES(12763, 77982, 'seventy-seven thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(12764, 61486, 'sixty-one thousand four hundred eighty-six'); INSERT INTO t3 VALUES(12765, 98514, 'ninety-eight thousand five hundred fourteen'); INSERT INTO t3 VALUES(12766, 7357, 'seven thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(12767, 3509, 'three thousand five hundred nine'); INSERT INTO t3 VALUES(12768, 1141, 'one thousand one hundred forty-one'); INSERT INTO t3 VALUES(12769, 39136, 'thirty-nine thousand one hundred thirty-six'); INSERT INTO t3 VALUES(12770, 80580, 'eighty thousand five hundred eighty'); INSERT INTO t3 VALUES(12771, 15069, 'fifteen thousand sixty-nine'); INSERT INTO t3 VALUES(12772, 87482, 'eighty-seven thousand four hundred eighty-two'); INSERT INTO t3 VALUES(12773, 54223, 'fifty-four thousand two hundred twenty-three'); INSERT INTO t3 VALUES(12774, 3540, 'three thousand five hundred forty'); INSERT INTO t3 VALUES(12775, 15949, 'fifteen thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(12776, 12876, 'twelve thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(12777, 96495, 'ninety-six thousand four hundred ninety-five'); INSERT INTO t3 VALUES(12778, 17739, 'seventeen thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(12779, 93418, 'ninety-three thousand four hundred eighteen'); INSERT INTO t3 VALUES(12780, 68798, 'sixty-eight thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(12781, 73562, 'seventy-three thousand five hundred sixty-two'); INSERT INTO t3 VALUES(12782, 89855, 'eighty-nine thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(12783, 52512, 'fifty-two thousand five hundred twelve'); INSERT INTO t3 VALUES(12784, 70913, 'seventy thousand nine hundred thirteen'); INSERT INTO t3 VALUES(12785, 19681, 'nineteen thousand six hundred eighty-one'); INSERT INTO t3 VALUES(12786, 15170, 'fifteen thousand one hundred seventy'); INSERT INTO t3 VALUES(12787, 1278, 'one thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(12788, 7387, 'seven thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(12789, 76076, 'seventy-six thousand seventy-six'); INSERT INTO t3 VALUES(12790, 9618, 'nine thousand six hundred eighteen'); INSERT INTO t3 VALUES(12791, 82352, 'eighty-two thousand three hundred fifty-two'); INSERT INTO t3 VALUES(12792, 70463, 'seventy thousand four hundred sixty-three'); INSERT INTO t3 VALUES(12793, 8868, 'eight thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(12794, 71028, 'seventy-one thousand twenty-eight'); INSERT INTO t3 VALUES(12795, 74951, 'seventy-four thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(12796, 43086, 'forty-three thousand eighty-six'); INSERT INTO t3 VALUES(12797, 14586, 'fourteen thousand five hundred eighty-six'); INSERT INTO t3 VALUES(12798, 89832, 'eighty-nine thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(12799, 11578, 'eleven thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(12800, 73228, 'seventy-three thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(12801, 51916, 'fifty-one thousand nine hundred sixteen'); INSERT INTO t3 VALUES(12802, 75684, 'seventy-five thousand six hundred eighty-four'); INSERT INTO t3 VALUES(12803, 9282, 'nine thousand two hundred eighty-two'); INSERT INTO t3 VALUES(12804, 62773, 'sixty-two thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(12805, 76492, 'seventy-six thousand four hundred ninety-two'); INSERT INTO t3 VALUES(12806, 38490, 'thirty-eight thousand four hundred ninety'); INSERT INTO t3 VALUES(12807, 77016, 'seventy-seven thousand sixteen'); INSERT INTO t3 VALUES(12808, 36651, 'thirty-six thousand six hundred fifty-one'); INSERT INTO t3 VALUES(12809, 32828, 'thirty-two thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(12810, 46669, 'forty-six thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(12811, 5839, 'five thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(12812, 87461, 'eighty-seven thousand four hundred sixty-one'); INSERT INTO t3 VALUES(12813, 68394, 'sixty-eight thousand three hundred ninety-four'); INSERT INTO t3 VALUES(12814, 8589, 'eight thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(12815, 36381, 'thirty-six thousand three hundred eighty-one'); INSERT INTO t3 VALUES(12816, 38955, 'thirty-eight thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(12817, 7651, 'seven thousand six hundred fifty-one'); INSERT INTO t3 VALUES(12818, 36513, 'thirty-six thousand five hundred thirteen'); INSERT INTO t3 VALUES(12819, 61571, 'sixty-one thousand five hundred seventy-one'); INSERT INTO t3 VALUES(12820, 78388, 'seventy-eight thousand three hundred eighty-eight'); INSERT INTO t3 VALUES(12821, 96959, 'ninety-six thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(12822, 64174, 'sixty-four thousand one hundred seventy-four'); INSERT INTO t3 VALUES(12823, 77853, 'seventy-seven thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(12824, 83875, 'eighty-three thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(12825, 34097, 'thirty-four thousand ninety-seven'); INSERT INTO t3 VALUES(12826, 49286, 'forty-nine thousand two hundred eighty-six'); INSERT INTO t3 VALUES(12827, 53306, 'fifty-three thousand three hundred six'); INSERT INTO t3 VALUES(12828, 50010, 'fifty thousand ten'); INSERT INTO t3 VALUES(12829, 82545, 'eighty-two thousand five hundred forty-five'); INSERT INTO t3 VALUES(12830, 10096, 'ten thousand ninety-six'); INSERT INTO t3 VALUES(12831, 87893, 'eighty-seven thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(12832, 22147, 'twenty-two thousand one hundred forty-seven'); INSERT INTO t3 VALUES(12833, 35019, 'thirty-five thousand nineteen'); INSERT INTO t3 VALUES(12834, 88197, 'eighty-eight thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(12835, 1190, 'one thousand one hundred ninety'); INSERT INTO t3 VALUES(12836, 31003, 'thirty-one thousand three'); INSERT INTO t3 VALUES(12837, 90966, 'ninety thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(12838, 82353, 'eighty-two thousand three hundred fifty-three'); INSERT INTO t3 VALUES(12839, 10483, 'ten thousand four hundred eighty-three'); INSERT INTO t3 VALUES(12840, 34201, 'thirty-four thousand two hundred one'); INSERT INTO t3 VALUES(12841, 8659, 'eight thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(12842, 4141, 'four thousand one hundred forty-one'); INSERT INTO t3 VALUES(12843, 99048, 'ninety-nine thousand forty-eight'); INSERT INTO t3 VALUES(12844, 36881, 'thirty-six thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(12845, 50482, 'fifty thousand four hundred eighty-two'); INSERT INTO t3 VALUES(12846, 16753, 'sixteen thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(12847, 34601, 'thirty-four thousand six hundred one'); INSERT INTO t3 VALUES(12848, 69668, 'sixty-nine thousand six hundred sixty-eight'); INSERT INTO t3 VALUES(12849, 5723, 'five thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(12850, 78806, 'seventy-eight thousand eight hundred six'); INSERT INTO t3 VALUES(12851, 37255, 'thirty-seven thousand two hundred fifty-five'); INSERT INTO t3 VALUES(12852, 1243, 'one thousand two hundred forty-three'); INSERT INTO t3 VALUES(12853, 85509, 'eighty-five thousand five hundred nine'); INSERT INTO t3 VALUES(12854, 23359, 'twenty-three thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(12855, 61139, 'sixty-one thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(12856, 71717, 'seventy-one thousand seven hundred seventeen'); INSERT INTO t3 VALUES(12857, 83152, 'eighty-three thousand one hundred fifty-two'); INSERT INTO t3 VALUES(12858, 91280, 'ninety-one thousand two hundred eighty'); INSERT INTO t3 VALUES(12859, 42023, 'forty-two thousand twenty-three'); INSERT INTO t3 VALUES(12860, 96972, 'ninety-six thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(12861, 6091, 'six thousand ninety-one'); INSERT INTO t3 VALUES(12862, 62824, 'sixty-two thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(12863, 512, 'five hundred twelve'); INSERT INTO t3 VALUES(12864, 49396, 'forty-nine thousand three hundred ninety-six'); INSERT INTO t3 VALUES(12865, 54919, 'fifty-four thousand nine hundred nineteen'); INSERT INTO t3 VALUES(12866, 68481, 'sixty-eight thousand four hundred eighty-one'); INSERT INTO t3 VALUES(12867, 27450, 'twenty-seven thousand four hundred fifty'); INSERT INTO t3 VALUES(12868, 99983, 'ninety-nine thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(12869, 24262, 'twenty-four thousand two hundred sixty-two'); INSERT INTO t3 VALUES(12870, 38760, 'thirty-eight thousand seven hundred sixty'); INSERT INTO t3 VALUES(12871, 43360, 'forty-three thousand three hundred sixty'); INSERT INTO t3 VALUES(12872, 80619, 'eighty thousand six hundred nineteen'); INSERT INTO t3 VALUES(12873, 75727, 'seventy-five thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(12874, 2630, 'two thousand six hundred thirty'); INSERT INTO t3 VALUES(12875, 7541, 'seven thousand five hundred forty-one'); INSERT INTO t3 VALUES(12876, 7291, 'seven thousand two hundred ninety-one'); INSERT INTO t3 VALUES(12877, 88162, 'eighty-eight thousand one hundred sixty-two'); INSERT INTO t3 VALUES(12878, 24432, 'twenty-four thousand four hundred thirty-two'); INSERT INTO t3 VALUES(12879, 14501, 'fourteen thousand five hundred one'); INSERT INTO t3 VALUES(12880, 11520, 'eleven thousand five hundred twenty'); INSERT INTO t3 VALUES(12881, 92393, 'ninety-two thousand three hundred ninety-three'); INSERT INTO t3 VALUES(12882, 46755, 'forty-six thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(12883, 63663, 'sixty-three thousand six hundred sixty-three'); INSERT INTO t3 VALUES(12884, 49559, 'forty-nine thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(12885, 56492, 'fifty-six thousand four hundred ninety-two'); INSERT INTO t3 VALUES(12886, 72253, 'seventy-two thousand two hundred fifty-three'); INSERT INTO t3 VALUES(12887, 96666, 'ninety-six thousand six hundred sixty-six'); INSERT INTO t3 VALUES(12888, 71969, 'seventy-one thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(12889, 46863, 'forty-six thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(12890, 15652, 'fifteen thousand six hundred fifty-two'); INSERT INTO t3 VALUES(12891, 72052, 'seventy-two thousand fifty-two'); INSERT INTO t3 VALUES(12892, 66925, 'sixty-six thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(12893, 85517, 'eighty-five thousand five hundred seventeen'); INSERT INTO t3 VALUES(12894, 69393, 'sixty-nine thousand three hundred ninety-three'); INSERT INTO t3 VALUES(12895, 81891, 'eighty-one thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(12896, 17057, 'seventeen thousand fifty-seven'); INSERT INTO t3 VALUES(12897, 20521, 'twenty thousand five hundred twenty-one'); INSERT INTO t3 VALUES(12898, 68199, 'sixty-eight thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(12899, 72803, 'seventy-two thousand eight hundred three'); INSERT INTO t3 VALUES(12900, 91889, 'ninety-one thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(12901, 78360, 'seventy-eight thousand three hundred sixty'); INSERT INTO t3 VALUES(12902, 93107, 'ninety-three thousand one hundred seven'); INSERT INTO t3 VALUES(12903, 45987, 'forty-five thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(12904, 45793, 'forty-five thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(12905, 8970, 'eight thousand nine hundred seventy'); INSERT INTO t3 VALUES(12906, 56082, 'fifty-six thousand eighty-two'); INSERT INTO t3 VALUES(12907, 91257, 'ninety-one thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(12908, 62921, 'sixty-two thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(12909, 96689, 'ninety-six thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(12910, 24205, 'twenty-four thousand two hundred five'); INSERT INTO t3 VALUES(12911, 11390, 'eleven thousand three hundred ninety'); INSERT INTO t3 VALUES(12912, 73121, 'seventy-three thousand one hundred twenty-one'); INSERT INTO t3 VALUES(12913, 95764, 'ninety-five thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(12914, 36677, 'thirty-six thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(12915, 86653, 'eighty-six thousand six hundred fifty-three'); INSERT INTO t3 VALUES(12916, 65247, 'sixty-five thousand two hundred forty-seven'); INSERT INTO t3 VALUES(12917, 30872, 'thirty thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(12918, 46363, 'forty-six thousand three hundred sixty-three'); INSERT INTO t3 VALUES(12919, 42258, 'forty-two thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(12920, 27708, 'twenty-seven thousand seven hundred eight'); INSERT INTO t3 VALUES(12921, 61779, 'sixty-one thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(12922, 24349, 'twenty-four thousand three hundred forty-nine'); INSERT INTO t3 VALUES(12923, 96704, 'ninety-six thousand seven hundred four'); INSERT INTO t3 VALUES(12924, 95275, 'ninety-five thousand two hundred seventy-five'); INSERT INTO t3 VALUES(12925, 87231, 'eighty-seven thousand two hundred thirty-one'); INSERT INTO t3 VALUES(12926, 53844, 'fifty-three thousand eight hundred forty-four'); INSERT INTO t3 VALUES(12927, 41310, 'forty-one thousand three hundred ten'); INSERT INTO t3 VALUES(12928, 14740, 'fourteen thousand seven hundred forty'); INSERT INTO t3 VALUES(12929, 25345, 'twenty-five thousand three hundred forty-five'); INSERT INTO t3 VALUES(12930, 25025, 'twenty-five thousand twenty-five'); INSERT INTO t3 VALUES(12931, 31759, 'thirty-one thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(12932, 67993, 'sixty-seven thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(12933, 41174, 'forty-one thousand one hundred seventy-four'); INSERT INTO t3 VALUES(12934, 56221, 'fifty-six thousand two hundred twenty-one'); INSERT INTO t3 VALUES(12935, 94024, 'ninety-four thousand twenty-four'); INSERT INTO t3 VALUES(12936, 47734, 'forty-seven thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(12937, 52968, 'fifty-two thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(12938, 28183, 'twenty-eight thousand one hundred eighty-three'); INSERT INTO t3 VALUES(12939, 90718, 'ninety thousand seven hundred eighteen'); INSERT INTO t3 VALUES(12940, 26636, 'twenty-six thousand six hundred thirty-six'); INSERT INTO t3 VALUES(12941, 9657, 'nine thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(12942, 55732, 'fifty-five thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(12943, 3136, 'three thousand one hundred thirty-six'); INSERT INTO t3 VALUES(12944, 85190, 'eighty-five thousand one hundred ninety'); INSERT INTO t3 VALUES(12945, 70538, 'seventy thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(12946, 1230, 'one thousand two hundred thirty'); INSERT INTO t3 VALUES(12947, 22112, 'twenty-two thousand one hundred twelve'); INSERT INTO t3 VALUES(12948, 72798, 'seventy-two thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(12949, 82090, 'eighty-two thousand ninety'); INSERT INTO t3 VALUES(12950, 17523, 'seventeen thousand five hundred twenty-three'); INSERT INTO t3 VALUES(12951, 68350, 'sixty-eight thousand three hundred fifty'); INSERT INTO t3 VALUES(12952, 32789, 'thirty-two thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(12953, 41081, 'forty-one thousand eighty-one'); INSERT INTO t3 VALUES(12954, 2253, 'two thousand two hundred fifty-three'); INSERT INTO t3 VALUES(12955, 50080, 'fifty thousand eighty'); INSERT INTO t3 VALUES(12956, 54578, 'fifty-four thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(12957, 2331, 'two thousand three hundred thirty-one'); INSERT INTO t3 VALUES(12958, 93221, 'ninety-three thousand two hundred twenty-one'); INSERT INTO t3 VALUES(12959, 19311, 'nineteen thousand three hundred eleven'); INSERT INTO t3 VALUES(12960, 90975, 'ninety thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(12961, 19742, 'nineteen thousand seven hundred forty-two'); INSERT INTO t3 VALUES(12962, 75866, 'seventy-five thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(12963, 93547, 'ninety-three thousand five hundred forty-seven'); INSERT INTO t3 VALUES(12964, 96560, 'ninety-six thousand five hundred sixty'); INSERT INTO t3 VALUES(12965, 75627, 'seventy-five thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(12966, 34291, 'thirty-four thousand two hundred ninety-one'); INSERT INTO t3 VALUES(12967, 32072, 'thirty-two thousand seventy-two'); INSERT INTO t3 VALUES(12968, 41331, 'forty-one thousand three hundred thirty-one'); INSERT INTO t3 VALUES(12969, 33966, 'thirty-three thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(12970, 30509, 'thirty thousand five hundred nine'); INSERT INTO t3 VALUES(12971, 26004, 'twenty-six thousand four'); INSERT INTO t3 VALUES(12972, 79445, 'seventy-nine thousand four hundred forty-five'); INSERT INTO t3 VALUES(12973, 59729, 'fifty-nine thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(12974, 58564, 'fifty-eight thousand five hundred sixty-four'); INSERT INTO t3 VALUES(12975, 50568, 'fifty thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(12976, 97406, 'ninety-seven thousand four hundred six'); INSERT INTO t3 VALUES(12977, 79150, 'seventy-nine thousand one hundred fifty'); INSERT INTO t3 VALUES(12978, 5568, 'five thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(12979, 29024, 'twenty-nine thousand twenty-four'); INSERT INTO t3 VALUES(12980, 36483, 'thirty-six thousand four hundred eighty-three'); INSERT INTO t3 VALUES(12981, 82251, 'eighty-two thousand two hundred fifty-one'); INSERT INTO t3 VALUES(12982, 60002, 'sixty thousand two'); INSERT INTO t3 VALUES(12983, 45482, 'forty-five thousand four hundred eighty-two'); INSERT INTO t3 VALUES(12984, 93006, 'ninety-three thousand six'); INSERT INTO t3 VALUES(12985, 27898, 'twenty-seven thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(12986, 61300, 'sixty-one thousand three hundred'); INSERT INTO t3 VALUES(12987, 92218, 'ninety-two thousand two hundred eighteen'); INSERT INTO t3 VALUES(12988, 67535, 'sixty-seven thousand five hundred thirty-five'); INSERT INTO t3 VALUES(12989, 76339, 'seventy-six thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(12990, 72070, 'seventy-two thousand seventy'); INSERT INTO t3 VALUES(12991, 28943, 'twenty-eight thousand nine hundred forty-three'); INSERT INTO t3 VALUES(12992, 66395, 'sixty-six thousand three hundred ninety-five'); INSERT INTO t3 VALUES(12993, 42842, 'forty-two thousand eight hundred forty-two'); INSERT INTO t3 VALUES(12994, 16532, 'sixteen thousand five hundred thirty-two'); INSERT INTO t3 VALUES(12995, 34635, 'thirty-four thousand six hundred thirty-five'); INSERT INTO t3 VALUES(12996, 55582, 'fifty-five thousand five hundred eighty-two'); INSERT INTO t3 VALUES(12997, 9467, 'nine thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(12998, 64893, 'sixty-four thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(12999, 23940, 'twenty-three thousand nine hundred forty'); INSERT INTO t3 VALUES(13000, 55126, 'fifty-five thousand one hundred twenty-six'); INSERT INTO t3 VALUES(13001, 69249, 'sixty-nine thousand two hundred forty-nine'); INSERT INTO t3 VALUES(13002, 6594, 'six thousand five hundred ninety-four'); INSERT INTO t3 VALUES(13003, 859, 'eight hundred fifty-nine'); INSERT INTO t3 VALUES(13004, 73199, 'seventy-three thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(13005, 60033, 'sixty thousand thirty-three'); INSERT INTO t3 VALUES(13006, 95594, 'ninety-five thousand five hundred ninety-four'); INSERT INTO t3 VALUES(13007, 74763, 'seventy-four thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(13008, 80143, 'eighty thousand one hundred forty-three'); INSERT INTO t3 VALUES(13009, 15977, 'fifteen thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(13010, 28553, 'twenty-eight thousand five hundred fifty-three'); INSERT INTO t3 VALUES(13011, 10883, 'ten thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(13012, 52986, 'fifty-two thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(13013, 98725, 'ninety-eight thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(13014, 23894, 'twenty-three thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(13015, 16058, 'sixteen thousand fifty-eight'); INSERT INTO t3 VALUES(13016, 28094, 'twenty-eight thousand ninety-four'); INSERT INTO t3 VALUES(13017, 72037, 'seventy-two thousand thirty-seven'); INSERT INTO t3 VALUES(13018, 72724, 'seventy-two thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(13019, 29083, 'twenty-nine thousand eighty-three'); INSERT INTO t3 VALUES(13020, 61504, 'sixty-one thousand five hundred four'); INSERT INTO t3 VALUES(13021, 98472, 'ninety-eight thousand four hundred seventy-two'); INSERT INTO t3 VALUES(13022, 22160, 'twenty-two thousand one hundred sixty'); INSERT INTO t3 VALUES(13023, 36434, 'thirty-six thousand four hundred thirty-four'); INSERT INTO t3 VALUES(13024, 33592, 'thirty-three thousand five hundred ninety-two'); INSERT INTO t3 VALUES(13025, 49671, 'forty-nine thousand six hundred seventy-one'); INSERT INTO t3 VALUES(13026, 78062, 'seventy-eight thousand sixty-two'); INSERT INTO t3 VALUES(13027, 8393, 'eight thousand three hundred ninety-three'); INSERT INTO t3 VALUES(13028, 34389, 'thirty-four thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(13029, 15687, 'fifteen thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(13030, 19960, 'nineteen thousand nine hundred sixty'); INSERT INTO t3 VALUES(13031, 79730, 'seventy-nine thousand seven hundred thirty'); INSERT INTO t3 VALUES(13032, 73414, 'seventy-three thousand four hundred fourteen'); INSERT INTO t3 VALUES(13033, 16789, 'sixteen thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(13034, 22755, 'twenty-two thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(13035, 71141, 'seventy-one thousand one hundred forty-one'); INSERT INTO t3 VALUES(13036, 29026, 'twenty-nine thousand twenty-six'); INSERT INTO t3 VALUES(13037, 55375, 'fifty-five thousand three hundred seventy-five'); INSERT INTO t3 VALUES(13038, 15263, 'fifteen thousand two hundred sixty-three'); INSERT INTO t3 VALUES(13039, 11836, 'eleven thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(13040, 28710, 'twenty-eight thousand seven hundred ten'); INSERT INTO t3 VALUES(13041, 23040, 'twenty-three thousand forty'); INSERT INTO t3 VALUES(13042, 34904, 'thirty-four thousand nine hundred four'); INSERT INTO t3 VALUES(13043, 66708, 'sixty-six thousand seven hundred eight'); INSERT INTO t3 VALUES(13044, 47542, 'forty-seven thousand five hundred forty-two'); INSERT INTO t3 VALUES(13045, 77947, 'seventy-seven thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(13046, 72736, 'seventy-two thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(13047, 1134, 'one thousand one hundred thirty-four'); INSERT INTO t3 VALUES(13048, 48033, 'forty-eight thousand thirty-three'); INSERT INTO t3 VALUES(13049, 27029, 'twenty-seven thousand twenty-nine'); INSERT INTO t3 VALUES(13050, 35890, 'thirty-five thousand eight hundred ninety'); INSERT INTO t3 VALUES(13051, 79681, 'seventy-nine thousand six hundred eighty-one'); INSERT INTO t3 VALUES(13052, 35486, 'thirty-five thousand four hundred eighty-six'); INSERT INTO t3 VALUES(13053, 66726, 'sixty-six thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(13054, 83162, 'eighty-three thousand one hundred sixty-two'); INSERT INTO t3 VALUES(13055, 97255, 'ninety-seven thousand two hundred fifty-five'); INSERT INTO t3 VALUES(13056, 41277, 'forty-one thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(13057, 25423, 'twenty-five thousand four hundred twenty-three'); INSERT INTO t3 VALUES(13058, 281, 'two hundred eighty-one'); INSERT INTO t3 VALUES(13059, 90417, 'ninety thousand four hundred seventeen'); INSERT INTO t3 VALUES(13060, 62305, 'sixty-two thousand three hundred five'); INSERT INTO t3 VALUES(13061, 49849, 'forty-nine thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(13062, 95997, 'ninety-five thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(13063, 49575, 'forty-nine thousand five hundred seventy-five'); INSERT INTO t3 VALUES(13064, 12959, 'twelve thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(13065, 78908, 'seventy-eight thousand nine hundred eight'); INSERT INTO t3 VALUES(13066, 17761, 'seventeen thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(13067, 69050, 'sixty-nine thousand fifty'); INSERT INTO t3 VALUES(13068, 13445, 'thirteen thousand four hundred forty-five'); INSERT INTO t3 VALUES(13069, 67021, 'sixty-seven thousand twenty-one'); INSERT INTO t3 VALUES(13070, 51585, 'fifty-one thousand five hundred eighty-five'); INSERT INTO t3 VALUES(13071, 11363, 'eleven thousand three hundred sixty-three'); INSERT INTO t3 VALUES(13072, 36716, 'thirty-six thousand seven hundred sixteen'); INSERT INTO t3 VALUES(13073, 46088, 'forty-six thousand eighty-eight'); INSERT INTO t3 VALUES(13074, 92349, 'ninety-two thousand three hundred forty-nine'); INSERT INTO t3 VALUES(13075, 85292, 'eighty-five thousand two hundred ninety-two'); INSERT INTO t3 VALUES(13076, 20095, 'twenty thousand ninety-five'); INSERT INTO t3 VALUES(13077, 28912, 'twenty-eight thousand nine hundred twelve'); INSERT INTO t3 VALUES(13078, 55114, 'fifty-five thousand one hundred fourteen'); INSERT INTO t3 VALUES(13079, 68563, 'sixty-eight thousand five hundred sixty-three'); INSERT INTO t3 VALUES(13080, 80654, 'eighty thousand six hundred fifty-four'); INSERT INTO t3 VALUES(13081, 74404, 'seventy-four thousand four hundred four'); INSERT INTO t3 VALUES(13082, 47088, 'forty-seven thousand eighty-eight'); INSERT INTO t3 VALUES(13083, 94552, 'ninety-four thousand five hundred fifty-two'); INSERT INTO t3 VALUES(13084, 37271, 'thirty-seven thousand two hundred seventy-one'); INSERT INTO t3 VALUES(13085, 64669, 'sixty-four thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(13086, 19183, 'nineteen thousand one hundred eighty-three'); INSERT INTO t3 VALUES(13087, 9634, 'nine thousand six hundred thirty-four'); INSERT INTO t3 VALUES(13088, 90937, 'ninety thousand nine hundred thirty-seven'); INSERT INTO t3 VALUES(13089, 88092, 'eighty-eight thousand ninety-two'); INSERT INTO t3 VALUES(13090, 54780, 'fifty-four thousand seven hundred eighty'); INSERT INTO t3 VALUES(13091, 53309, 'fifty-three thousand three hundred nine'); INSERT INTO t3 VALUES(13092, 99026, 'ninety-nine thousand twenty-six'); INSERT INTO t3 VALUES(13093, 17, 'seventeen'); INSERT INTO t3 VALUES(13094, 69486, 'sixty-nine thousand four hundred eighty-six'); INSERT INTO t3 VALUES(13095, 59899, 'fifty-nine thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(13096, 80285, 'eighty thousand two hundred eighty-five'); INSERT INTO t3 VALUES(13097, 85509, 'eighty-five thousand five hundred nine'); INSERT INTO t3 VALUES(13098, 94755, 'ninety-four thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(13099, 67450, 'sixty-seven thousand four hundred fifty'); INSERT INTO t3 VALUES(13100, 56947, 'fifty-six thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(13101, 42153, 'forty-two thousand one hundred fifty-three'); INSERT INTO t3 VALUES(13102, 40568, 'forty thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(13103, 91808, 'ninety-one thousand eight hundred eight'); INSERT INTO t3 VALUES(13104, 92218, 'ninety-two thousand two hundred eighteen'); INSERT INTO t3 VALUES(13105, 38607, 'thirty-eight thousand six hundred seven'); INSERT INTO t3 VALUES(13106, 59004, 'fifty-nine thousand four'); INSERT INTO t3 VALUES(13107, 40999, 'forty thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(13108, 98708, 'ninety-eight thousand seven hundred eight'); INSERT INTO t3 VALUES(13109, 69257, 'sixty-nine thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(13110, 57812, 'fifty-seven thousand eight hundred twelve'); INSERT INTO t3 VALUES(13111, 97011, 'ninety-seven thousand eleven'); INSERT INTO t3 VALUES(13112, 63689, 'sixty-three thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(13113, 47810, 'forty-seven thousand eight hundred ten'); INSERT INTO t3 VALUES(13114, 48543, 'forty-eight thousand five hundred forty-three'); INSERT INTO t3 VALUES(13115, 32738, 'thirty-two thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(13116, 98108, 'ninety-eight thousand one hundred eight'); INSERT INTO t3 VALUES(13117, 85594, 'eighty-five thousand five hundred ninety-four'); INSERT INTO t3 VALUES(13118, 90226, 'ninety thousand two hundred twenty-six'); INSERT INTO t3 VALUES(13119, 80261, 'eighty thousand two hundred sixty-one'); INSERT INTO t3 VALUES(13120, 23272, 'twenty-three thousand two hundred seventy-two'); INSERT INTO t3 VALUES(13121, 19053, 'nineteen thousand fifty-three'); INSERT INTO t3 VALUES(13122, 56373, 'fifty-six thousand three hundred seventy-three'); INSERT INTO t3 VALUES(13123, 19322, 'nineteen thousand three hundred twenty-two'); INSERT INTO t3 VALUES(13124, 97254, 'ninety-seven thousand two hundred fifty-four'); INSERT INTO t3 VALUES(13125, 47329, 'forty-seven thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(13126, 84678, 'eighty-four thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(13127, 20059, 'twenty thousand fifty-nine'); INSERT INTO t3 VALUES(13128, 12108, 'twelve thousand one hundred eight'); INSERT INTO t3 VALUES(13129, 16420, 'sixteen thousand four hundred twenty'); INSERT INTO t3 VALUES(13130, 67952, 'sixty-seven thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(13131, 36158, 'thirty-six thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(13132, 34597, 'thirty-four thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(13133, 71732, 'seventy-one thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(13134, 31284, 'thirty-one thousand two hundred eighty-four'); INSERT INTO t3 VALUES(13135, 26136, 'twenty-six thousand one hundred thirty-six'); INSERT INTO t3 VALUES(13136, 39234, 'thirty-nine thousand two hundred thirty-four'); INSERT INTO t3 VALUES(13137, 66958, 'sixty-six thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(13138, 5617, 'five thousand six hundred seventeen'); INSERT INTO t3 VALUES(13139, 48970, 'forty-eight thousand nine hundred seventy'); INSERT INTO t3 VALUES(13140, 76398, 'seventy-six thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(13141, 87695, 'eighty-seven thousand six hundred ninety-five'); INSERT INTO t3 VALUES(13142, 31650, 'thirty-one thousand six hundred fifty'); INSERT INTO t3 VALUES(13143, 73864, 'seventy-three thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(13144, 22223, 'twenty-two thousand two hundred twenty-three'); INSERT INTO t3 VALUES(13145, 63003, 'sixty-three thousand three'); INSERT INTO t3 VALUES(13146, 98235, 'ninety-eight thousand two hundred thirty-five'); INSERT INTO t3 VALUES(13147, 73516, 'seventy-three thousand five hundred sixteen'); INSERT INTO t3 VALUES(13148, 22055, 'twenty-two thousand fifty-five'); INSERT INTO t3 VALUES(13149, 84687, 'eighty-four thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(13150, 16220, 'sixteen thousand two hundred twenty'); INSERT INTO t3 VALUES(13151, 20833, 'twenty thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(13152, 7128, 'seven thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(13153, 27644, 'twenty-seven thousand six hundred forty-four'); INSERT INTO t3 VALUES(13154, 68264, 'sixty-eight thousand two hundred sixty-four'); INSERT INTO t3 VALUES(13155, 33776, 'thirty-three thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(13156, 49827, 'forty-nine thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(13157, 12916, 'twelve thousand nine hundred sixteen'); INSERT INTO t3 VALUES(13158, 45687, 'forty-five thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(13159, 7743, 'seven thousand seven hundred forty-three'); INSERT INTO t3 VALUES(13160, 63030, 'sixty-three thousand thirty'); INSERT INTO t3 VALUES(13161, 38906, 'thirty-eight thousand nine hundred six'); INSERT INTO t3 VALUES(13162, 44710, 'forty-four thousand seven hundred ten'); INSERT INTO t3 VALUES(13163, 9474, 'nine thousand four hundred seventy-four'); INSERT INTO t3 VALUES(13164, 37011, 'thirty-seven thousand eleven'); INSERT INTO t3 VALUES(13165, 77744, 'seventy-seven thousand seven hundred forty-four'); INSERT INTO t3 VALUES(13166, 57850, 'fifty-seven thousand eight hundred fifty'); INSERT INTO t3 VALUES(13167, 24437, 'twenty-four thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(13168, 23844, 'twenty-three thousand eight hundred forty-four'); INSERT INTO t3 VALUES(13169, 49159, 'forty-nine thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(13170, 90603, 'ninety thousand six hundred three'); INSERT INTO t3 VALUES(13171, 8572, 'eight thousand five hundred seventy-two'); INSERT INTO t3 VALUES(13172, 56313, 'fifty-six thousand three hundred thirteen'); INSERT INTO t3 VALUES(13173, 19119, 'nineteen thousand one hundred nineteen'); INSERT INTO t3 VALUES(13174, 65311, 'sixty-five thousand three hundred eleven'); INSERT INTO t3 VALUES(13175, 35790, 'thirty-five thousand seven hundred ninety'); INSERT INTO t3 VALUES(13176, 20728, 'twenty thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(13177, 54455, 'fifty-four thousand four hundred fifty-five'); INSERT INTO t3 VALUES(13178, 60544, 'sixty thousand five hundred forty-four'); INSERT INTO t3 VALUES(13179, 57973, 'fifty-seven thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(13180, 7535, 'seven thousand five hundred thirty-five'); INSERT INTO t3 VALUES(13181, 25572, 'twenty-five thousand five hundred seventy-two'); INSERT INTO t3 VALUES(13182, 61500, 'sixty-one thousand five hundred'); INSERT INTO t3 VALUES(13183, 68875, 'sixty-eight thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(13184, 90763, 'ninety thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(13185, 86035, 'eighty-six thousand thirty-five'); INSERT INTO t3 VALUES(13186, 45854, 'forty-five thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(13187, 11968, 'eleven thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(13188, 81860, 'eighty-one thousand eight hundred sixty'); INSERT INTO t3 VALUES(13189, 66107, 'sixty-six thousand one hundred seven'); INSERT INTO t3 VALUES(13190, 70187, 'seventy thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(13191, 17308, 'seventeen thousand three hundred eight'); INSERT INTO t3 VALUES(13192, 73925, 'seventy-three thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(13193, 691, 'six hundred ninety-one'); INSERT INTO t3 VALUES(13194, 94456, 'ninety-four thousand four hundred fifty-six'); INSERT INTO t3 VALUES(13195, 77428, 'seventy-seven thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(13196, 31298, 'thirty-one thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(13197, 97105, 'ninety-seven thousand one hundred five'); INSERT INTO t3 VALUES(13198, 57128, 'fifty-seven thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(13199, 46300, 'forty-six thousand three hundred'); INSERT INTO t3 VALUES(13200, 63106, 'sixty-three thousand one hundred six'); INSERT INTO t3 VALUES(13201, 89302, 'eighty-nine thousand three hundred two'); INSERT INTO t3 VALUES(13202, 86112, 'eighty-six thousand one hundred twelve'); INSERT INTO t3 VALUES(13203, 39338, 'thirty-nine thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(13204, 88424, 'eighty-eight thousand four hundred twenty-four'); INSERT INTO t3 VALUES(13205, 81912, 'eighty-one thousand nine hundred twelve'); INSERT INTO t3 VALUES(13206, 74848, 'seventy-four thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(13207, 87127, 'eighty-seven thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(13208, 96602, 'ninety-six thousand six hundred two'); INSERT INTO t3 VALUES(13209, 48708, 'forty-eight thousand seven hundred eight'); INSERT INTO t3 VALUES(13210, 61251, 'sixty-one thousand two hundred fifty-one'); INSERT INTO t3 VALUES(13211, 27573, 'twenty-seven thousand five hundred seventy-three'); INSERT INTO t3 VALUES(13212, 22015, 'twenty-two thousand fifteen'); INSERT INTO t3 VALUES(13213, 9616, 'nine thousand six hundred sixteen'); INSERT INTO t3 VALUES(13214, 93052, 'ninety-three thousand fifty-two'); INSERT INTO t3 VALUES(13215, 67520, 'sixty-seven thousand five hundred twenty'); INSERT INTO t3 VALUES(13216, 64749, 'sixty-four thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(13217, 28090, 'twenty-eight thousand ninety'); INSERT INTO t3 VALUES(13218, 87071, 'eighty-seven thousand seventy-one'); INSERT INTO t3 VALUES(13219, 25414, 'twenty-five thousand four hundred fourteen'); INSERT INTO t3 VALUES(13220, 45265, 'forty-five thousand two hundred sixty-five'); INSERT INTO t3 VALUES(13221, 63788, 'sixty-three thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(13222, 59271, 'fifty-nine thousand two hundred seventy-one'); INSERT INTO t3 VALUES(13223, 47929, 'forty-seven thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(13224, 40363, 'forty thousand three hundred sixty-three'); INSERT INTO t3 VALUES(13225, 82602, 'eighty-two thousand six hundred two'); INSERT INTO t3 VALUES(13226, 63778, 'sixty-three thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(13227, 71237, 'seventy-one thousand two hundred thirty-seven'); INSERT INTO t3 VALUES(13228, 77446, 'seventy-seven thousand four hundred forty-six'); INSERT INTO t3 VALUES(13229, 18974, 'eighteen thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(13230, 36156, 'thirty-six thousand one hundred fifty-six'); INSERT INTO t3 VALUES(13231, 1495, 'one thousand four hundred ninety-five'); INSERT INTO t3 VALUES(13232, 49776, 'forty-nine thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(13233, 10976, 'ten thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(13234, 33832, 'thirty-three thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(13235, 42095, 'forty-two thousand ninety-five'); INSERT INTO t3 VALUES(13236, 64617, 'sixty-four thousand six hundred seventeen'); INSERT INTO t3 VALUES(13237, 80279, 'eighty thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(13238, 13504, 'thirteen thousand five hundred four'); INSERT INTO t3 VALUES(13239, 49514, 'forty-nine thousand five hundred fourteen'); INSERT INTO t3 VALUES(13240, 51916, 'fifty-one thousand nine hundred sixteen'); INSERT INTO t3 VALUES(13241, 28720, 'twenty-eight thousand seven hundred twenty'); INSERT INTO t3 VALUES(13242, 17828, 'seventeen thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(13243, 55057, 'fifty-five thousand fifty-seven'); INSERT INTO t3 VALUES(13244, 24817, 'twenty-four thousand eight hundred seventeen'); INSERT INTO t3 VALUES(13245, 86737, 'eighty-six thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(13246, 13114, 'thirteen thousand one hundred fourteen'); INSERT INTO t3 VALUES(13247, 75817, 'seventy-five thousand eight hundred seventeen'); INSERT INTO t3 VALUES(13248, 26975, 'twenty-six thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(13249, 41421, 'forty-one thousand four hundred twenty-one'); INSERT INTO t3 VALUES(13250, 33492, 'thirty-three thousand four hundred ninety-two'); INSERT INTO t3 VALUES(13251, 48601, 'forty-eight thousand six hundred one'); INSERT INTO t3 VALUES(13252, 46762, 'forty-six thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(13253, 77731, 'seventy-seven thousand seven hundred thirty-one'); INSERT INTO t3 VALUES(13254, 63058, 'sixty-three thousand fifty-eight'); INSERT INTO t3 VALUES(13255, 37971, 'thirty-seven thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(13256, 68213, 'sixty-eight thousand two hundred thirteen'); INSERT INTO t3 VALUES(13257, 9320, 'nine thousand three hundred twenty'); INSERT INTO t3 VALUES(13258, 33706, 'thirty-three thousand seven hundred six'); INSERT INTO t3 VALUES(13259, 18617, 'eighteen thousand six hundred seventeen'); INSERT INTO t3 VALUES(13260, 57406, 'fifty-seven thousand four hundred six'); INSERT INTO t3 VALUES(13261, 34096, 'thirty-four thousand ninety-six'); INSERT INTO t3 VALUES(13262, 24762, 'twenty-four thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(13263, 65449, 'sixty-five thousand four hundred forty-nine'); INSERT INTO t3 VALUES(13264, 71265, 'seventy-one thousand two hundred sixty-five'); INSERT INTO t3 VALUES(13265, 88866, 'eighty-eight thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(13266, 3049, 'three thousand forty-nine'); INSERT INTO t3 VALUES(13267, 6758, 'six thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(13268, 69365, 'sixty-nine thousand three hundred sixty-five'); INSERT INTO t3 VALUES(13269, 30374, 'thirty thousand three hundred seventy-four'); INSERT INTO t3 VALUES(13270, 91542, 'ninety-one thousand five hundred forty-two'); INSERT INTO t3 VALUES(13271, 5572, 'five thousand five hundred seventy-two'); INSERT INTO t3 VALUES(13272, 64239, 'sixty-four thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(13273, 83705, 'eighty-three thousand seven hundred five'); INSERT INTO t3 VALUES(13274, 39370, 'thirty-nine thousand three hundred seventy'); INSERT INTO t3 VALUES(13275, 58680, 'fifty-eight thousand six hundred eighty'); INSERT INTO t3 VALUES(13276, 36183, 'thirty-six thousand one hundred eighty-three'); INSERT INTO t3 VALUES(13277, 78239, 'seventy-eight thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(13278, 7171, 'seven thousand one hundred seventy-one'); INSERT INTO t3 VALUES(13279, 36180, 'thirty-six thousand one hundred eighty'); INSERT INTO t3 VALUES(13280, 16163, 'sixteen thousand one hundred sixty-three'); INSERT INTO t3 VALUES(13281, 76747, 'seventy-six thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(13282, 65685, 'sixty-five thousand six hundred eighty-five'); INSERT INTO t3 VALUES(13283, 25680, 'twenty-five thousand six hundred eighty'); INSERT INTO t3 VALUES(13284, 33224, 'thirty-three thousand two hundred twenty-four'); INSERT INTO t3 VALUES(13285, 78, 'seventy-eight'); INSERT INTO t3 VALUES(13286, 22597, 'twenty-two thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(13287, 13482, 'thirteen thousand four hundred eighty-two'); INSERT INTO t3 VALUES(13288, 86333, 'eighty-six thousand three hundred thirty-three'); INSERT INTO t3 VALUES(13289, 70133, 'seventy thousand one hundred thirty-three'); INSERT INTO t3 VALUES(13290, 13783, 'thirteen thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(13291, 37938, 'thirty-seven thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(13292, 52579, 'fifty-two thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(13293, 68753, 'sixty-eight thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(13294, 70174, 'seventy thousand one hundred seventy-four'); INSERT INTO t3 VALUES(13295, 13561, 'thirteen thousand five hundred sixty-one'); INSERT INTO t3 VALUES(13296, 51882, 'fifty-one thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(13297, 28939, 'twenty-eight thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(13298, 3693, 'three thousand six hundred ninety-three'); INSERT INTO t3 VALUES(13299, 31130, 'thirty-one thousand one hundred thirty'); INSERT INTO t3 VALUES(13300, 83831, 'eighty-three thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(13301, 77722, 'seventy-seven thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(13302, 65337, 'sixty-five thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(13303, 96037, 'ninety-six thousand thirty-seven'); INSERT INTO t3 VALUES(13304, 32773, 'thirty-two thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(13305, 2990, 'two thousand nine hundred ninety'); INSERT INTO t3 VALUES(13306, 49823, 'forty-nine thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(13307, 8124, 'eight thousand one hundred twenty-four'); INSERT INTO t3 VALUES(13308, 25198, 'twenty-five thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(13309, 49663, 'forty-nine thousand six hundred sixty-three'); INSERT INTO t3 VALUES(13310, 71537, 'seventy-one thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(13311, 69998, 'sixty-nine thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(13312, 41111, 'forty-one thousand one hundred eleven'); INSERT INTO t3 VALUES(13313, 78488, 'seventy-eight thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(13314, 17571, 'seventeen thousand five hundred seventy-one'); INSERT INTO t3 VALUES(13315, 69172, 'sixty-nine thousand one hundred seventy-two'); INSERT INTO t3 VALUES(13316, 75159, 'seventy-five thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(13317, 83883, 'eighty-three thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(13318, 36430, 'thirty-six thousand four hundred thirty'); INSERT INTO t3 VALUES(13319, 27033, 'twenty-seven thousand thirty-three'); INSERT INTO t3 VALUES(13320, 43834, 'forty-three thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(13321, 51292, 'fifty-one thousand two hundred ninety-two'); INSERT INTO t3 VALUES(13322, 25457, 'twenty-five thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(13323, 48910, 'forty-eight thousand nine hundred ten'); INSERT INTO t3 VALUES(13324, 80817, 'eighty thousand eight hundred seventeen'); INSERT INTO t3 VALUES(13325, 99773, 'ninety-nine thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(13326, 33940, 'thirty-three thousand nine hundred forty'); INSERT INTO t3 VALUES(13327, 90828, 'ninety thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(13328, 55948, 'fifty-five thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(13329, 1767, 'one thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(13330, 56542, 'fifty-six thousand five hundred forty-two'); INSERT INTO t3 VALUES(13331, 88543, 'eighty-eight thousand five hundred forty-three'); INSERT INTO t3 VALUES(13332, 32759, 'thirty-two thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(13333, 5327, 'five thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(13334, 76276, 'seventy-six thousand two hundred seventy-six'); INSERT INTO t3 VALUES(13335, 90742, 'ninety thousand seven hundred forty-two'); INSERT INTO t3 VALUES(13336, 30611, 'thirty thousand six hundred eleven'); INSERT INTO t3 VALUES(13337, 25649, 'twenty-five thousand six hundred forty-nine'); INSERT INTO t3 VALUES(13338, 96874, 'ninety-six thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(13339, 17912, 'seventeen thousand nine hundred twelve'); INSERT INTO t3 VALUES(13340, 79403, 'seventy-nine thousand four hundred three'); INSERT INTO t3 VALUES(13341, 91357, 'ninety-one thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(13342, 77050, 'seventy-seven thousand fifty'); INSERT INTO t3 VALUES(13343, 82053, 'eighty-two thousand fifty-three'); INSERT INTO t3 VALUES(13344, 64347, 'sixty-four thousand three hundred forty-seven'); INSERT INTO t3 VALUES(13345, 87792, 'eighty-seven thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(13346, 64101, 'sixty-four thousand one hundred one'); INSERT INTO t3 VALUES(13347, 63491, 'sixty-three thousand four hundred ninety-one'); INSERT INTO t3 VALUES(13348, 42040, 'forty-two thousand forty'); INSERT INTO t3 VALUES(13349, 40355, 'forty thousand three hundred fifty-five'); INSERT INTO t3 VALUES(13350, 6843, 'six thousand eight hundred forty-three'); INSERT INTO t3 VALUES(13351, 55892, 'fifty-five thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(13352, 14744, 'fourteen thousand seven hundred forty-four'); INSERT INTO t3 VALUES(13353, 88165, 'eighty-eight thousand one hundred sixty-five'); INSERT INTO t3 VALUES(13354, 10518, 'ten thousand five hundred eighteen'); INSERT INTO t3 VALUES(13355, 19050, 'nineteen thousand fifty'); INSERT INTO t3 VALUES(13356, 43738, 'forty-three thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(13357, 70895, 'seventy thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(13358, 54828, 'fifty-four thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(13359, 99368, 'ninety-nine thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(13360, 55406, 'fifty-five thousand four hundred six'); INSERT INTO t3 VALUES(13361, 28328, 'twenty-eight thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(13362, 62528, 'sixty-two thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(13363, 29122, 'twenty-nine thousand one hundred twenty-two'); INSERT INTO t3 VALUES(13364, 11852, 'eleven thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(13365, 85065, 'eighty-five thousand sixty-five'); INSERT INTO t3 VALUES(13366, 45208, 'forty-five thousand two hundred eight'); INSERT INTO t3 VALUES(13367, 55281, 'fifty-five thousand two hundred eighty-one'); INSERT INTO t3 VALUES(13368, 94404, 'ninety-four thousand four hundred four'); INSERT INTO t3 VALUES(13369, 43021, 'forty-three thousand twenty-one'); INSERT INTO t3 VALUES(13370, 10467, 'ten thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(13371, 4830, 'four thousand eight hundred thirty'); INSERT INTO t3 VALUES(13372, 59383, 'fifty-nine thousand three hundred eighty-three'); INSERT INTO t3 VALUES(13373, 36140, 'thirty-six thousand one hundred forty'); INSERT INTO t3 VALUES(13374, 603, 'six hundred three'); INSERT INTO t3 VALUES(13375, 53699, 'fifty-three thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(13376, 95404, 'ninety-five thousand four hundred four'); INSERT INTO t3 VALUES(13377, 90574, 'ninety thousand five hundred seventy-four'); INSERT INTO t3 VALUES(13378, 26510, 'twenty-six thousand five hundred ten'); INSERT INTO t3 VALUES(13379, 9397, 'nine thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(13380, 36162, 'thirty-six thousand one hundred sixty-two'); INSERT INTO t3 VALUES(13381, 31027, 'thirty-one thousand twenty-seven'); INSERT INTO t3 VALUES(13382, 97783, 'ninety-seven thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(13383, 56834, 'fifty-six thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(13384, 89437, 'eighty-nine thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(13385, 92233, 'ninety-two thousand two hundred thirty-three'); INSERT INTO t3 VALUES(13386, 44514, 'forty-four thousand five hundred fourteen'); INSERT INTO t3 VALUES(13387, 47258, 'forty-seven thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(13388, 15198, 'fifteen thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(13389, 42412, 'forty-two thousand four hundred twelve'); INSERT INTO t3 VALUES(13390, 91467, 'ninety-one thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(13391, 75997, 'seventy-five thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(13392, 58256, 'fifty-eight thousand two hundred fifty-six'); INSERT INTO t3 VALUES(13393, 12222, 'twelve thousand two hundred twenty-two'); INSERT INTO t3 VALUES(13394, 2419, 'two thousand four hundred nineteen'); INSERT INTO t3 VALUES(13395, 84900, 'eighty-four thousand nine hundred'); INSERT INTO t3 VALUES(13396, 98269, 'ninety-eight thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(13397, 17206, 'seventeen thousand two hundred six'); INSERT INTO t3 VALUES(13398, 51361, 'fifty-one thousand three hundred sixty-one'); INSERT INTO t3 VALUES(13399, 23467, 'twenty-three thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(13400, 8055, 'eight thousand fifty-five'); INSERT INTO t3 VALUES(13401, 87241, 'eighty-seven thousand two hundred forty-one'); INSERT INTO t3 VALUES(13402, 32080, 'thirty-two thousand eighty'); INSERT INTO t3 VALUES(13403, 83390, 'eighty-three thousand three hundred ninety'); INSERT INTO t3 VALUES(13404, 23000, 'twenty-three thousand'); INSERT INTO t3 VALUES(13405, 43354, 'forty-three thousand three hundred fifty-four'); INSERT INTO t3 VALUES(13406, 44491, 'forty-four thousand four hundred ninety-one'); INSERT INTO t3 VALUES(13407, 74782, 'seventy-four thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(13408, 90336, 'ninety thousand three hundred thirty-six'); INSERT INTO t3 VALUES(13409, 15523, 'fifteen thousand five hundred twenty-three'); INSERT INTO t3 VALUES(13410, 11877, 'eleven thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(13411, 67309, 'sixty-seven thousand three hundred nine'); INSERT INTO t3 VALUES(13412, 99542, 'ninety-nine thousand five hundred forty-two'); INSERT INTO t3 VALUES(13413, 19838, 'nineteen thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(13414, 22532, 'twenty-two thousand five hundred thirty-two'); INSERT INTO t3 VALUES(13415, 78981, 'seventy-eight thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(13416, 1052, 'one thousand fifty-two'); INSERT INTO t3 VALUES(13417, 57547, 'fifty-seven thousand five hundred forty-seven'); INSERT INTO t3 VALUES(13418, 56696, 'fifty-six thousand six hundred ninety-six'); INSERT INTO t3 VALUES(13419, 48605, 'forty-eight thousand six hundred five'); INSERT INTO t3 VALUES(13420, 94545, 'ninety-four thousand five hundred forty-five'); INSERT INTO t3 VALUES(13421, 55045, 'fifty-five thousand forty-five'); INSERT INTO t3 VALUES(13422, 74036, 'seventy-four thousand thirty-six'); INSERT INTO t3 VALUES(13423, 64263, 'sixty-four thousand two hundred sixty-three'); INSERT INTO t3 VALUES(13424, 28331, 'twenty-eight thousand three hundred thirty-one'); INSERT INTO t3 VALUES(13425, 35170, 'thirty-five thousand one hundred seventy'); INSERT INTO t3 VALUES(13426, 78992, 'seventy-eight thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(13427, 83426, 'eighty-three thousand four hundred twenty-six'); INSERT INTO t3 VALUES(13428, 8310, 'eight thousand three hundred ten'); INSERT INTO t3 VALUES(13429, 99895, 'ninety-nine thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(13430, 55767, 'fifty-five thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(13431, 44342, 'forty-four thousand three hundred forty-two'); INSERT INTO t3 VALUES(13432, 2243, 'two thousand two hundred forty-three'); INSERT INTO t3 VALUES(13433, 41475, 'forty-one thousand four hundred seventy-five'); INSERT INTO t3 VALUES(13434, 57794, 'fifty-seven thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(13435, 64889, 'sixty-four thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(13436, 86777, 'eighty-six thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(13437, 47762, 'forty-seven thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(13438, 8420, 'eight thousand four hundred twenty'); INSERT INTO t3 VALUES(13439, 26278, 'twenty-six thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(13440, 42886, 'forty-two thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(13441, 33345, 'thirty-three thousand three hundred forty-five'); INSERT INTO t3 VALUES(13442, 66540, 'sixty-six thousand five hundred forty'); INSERT INTO t3 VALUES(13443, 16851, 'sixteen thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(13444, 93006, 'ninety-three thousand six'); INSERT INTO t3 VALUES(13445, 82573, 'eighty-two thousand five hundred seventy-three'); INSERT INTO t3 VALUES(13446, 62178, 'sixty-two thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(13447, 95367, 'ninety-five thousand three hundred sixty-seven'); INSERT INTO t3 VALUES(13448, 31606, 'thirty-one thousand six hundred six'); INSERT INTO t3 VALUES(13449, 74497, 'seventy-four thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(13450, 83378, 'eighty-three thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(13451, 41392, 'forty-one thousand three hundred ninety-two'); INSERT INTO t3 VALUES(13452, 33072, 'thirty-three thousand seventy-two'); INSERT INTO t3 VALUES(13453, 1977, 'one thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(13454, 62995, 'sixty-two thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(13455, 61623, 'sixty-one thousand six hundred twenty-three'); INSERT INTO t3 VALUES(13456, 49220, 'forty-nine thousand two hundred twenty'); INSERT INTO t3 VALUES(13457, 60349, 'sixty thousand three hundred forty-nine'); INSERT INTO t3 VALUES(13458, 22280, 'twenty-two thousand two hundred eighty'); INSERT INTO t3 VALUES(13459, 48986, 'forty-eight thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(13460, 67323, 'sixty-seven thousand three hundred twenty-three'); INSERT INTO t3 VALUES(13461, 13842, 'thirteen thousand eight hundred forty-two'); INSERT INTO t3 VALUES(13462, 79808, 'seventy-nine thousand eight hundred eight'); INSERT INTO t3 VALUES(13463, 80092, 'eighty thousand ninety-two'); INSERT INTO t3 VALUES(13464, 90793, 'ninety thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(13465, 76587, 'seventy-six thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(13466, 29211, 'twenty-nine thousand two hundred eleven'); INSERT INTO t3 VALUES(13467, 11014, 'eleven thousand fourteen'); INSERT INTO t3 VALUES(13468, 59699, 'fifty-nine thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(13469, 86477, 'eighty-six thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(13470, 78971, 'seventy-eight thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(13471, 50759, 'fifty thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(13472, 95098, 'ninety-five thousand ninety-eight'); INSERT INTO t3 VALUES(13473, 2732, 'two thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(13474, 40096, 'forty thousand ninety-six'); INSERT INTO t3 VALUES(13475, 26418, 'twenty-six thousand four hundred eighteen'); INSERT INTO t3 VALUES(13476, 71511, 'seventy-one thousand five hundred eleven'); INSERT INTO t3 VALUES(13477, 61899, 'sixty-one thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(13478, 4927, 'four thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(13479, 52956, 'fifty-two thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(13480, 77986, 'seventy-seven thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(13481, 13187, 'thirteen thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(13482, 22526, 'twenty-two thousand five hundred twenty-six'); INSERT INTO t3 VALUES(13483, 1377, 'one thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(13484, 20634, 'twenty thousand six hundred thirty-four'); INSERT INTO t3 VALUES(13485, 81756, 'eighty-one thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(13486, 20205, 'twenty thousand two hundred five'); INSERT INTO t3 VALUES(13487, 25049, 'twenty-five thousand forty-nine'); INSERT INTO t3 VALUES(13488, 31776, 'thirty-one thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(13489, 64630, 'sixty-four thousand six hundred thirty'); INSERT INTO t3 VALUES(13490, 33492, 'thirty-three thousand four hundred ninety-two'); INSERT INTO t3 VALUES(13491, 12518, 'twelve thousand five hundred eighteen'); INSERT INTO t3 VALUES(13492, 29394, 'twenty-nine thousand three hundred ninety-four'); INSERT INTO t3 VALUES(13493, 92382, 'ninety-two thousand three hundred eighty-two'); INSERT INTO t3 VALUES(13494, 51703, 'fifty-one thousand seven hundred three'); INSERT INTO t3 VALUES(13495, 516, 'five hundred sixteen'); INSERT INTO t3 VALUES(13496, 95945, 'ninety-five thousand nine hundred forty-five'); INSERT INTO t3 VALUES(13497, 9909, 'nine thousand nine hundred nine'); INSERT INTO t3 VALUES(13498, 23810, 'twenty-three thousand eight hundred ten'); INSERT INTO t3 VALUES(13499, 14560, 'fourteen thousand five hundred sixty'); INSERT INTO t3 VALUES(13500, 34702, 'thirty-four thousand seven hundred two'); INSERT INTO t3 VALUES(13501, 60387, 'sixty thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(13502, 61499, 'sixty-one thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(13503, 19884, 'nineteen thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(13504, 57856, 'fifty-seven thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(13505, 41398, 'forty-one thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(13506, 57526, 'fifty-seven thousand five hundred twenty-six'); INSERT INTO t3 VALUES(13507, 35265, 'thirty-five thousand two hundred sixty-five'); INSERT INTO t3 VALUES(13508, 35691, 'thirty-five thousand six hundred ninety-one'); INSERT INTO t3 VALUES(13509, 818, 'eight hundred eighteen'); INSERT INTO t3 VALUES(13510, 22039, 'twenty-two thousand thirty-nine'); INSERT INTO t3 VALUES(13511, 55871, 'fifty-five thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(13512, 92931, 'ninety-two thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(13513, 63543, 'sixty-three thousand five hundred forty-three'); INSERT INTO t3 VALUES(13514, 84377, 'eighty-four thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(13515, 44593, 'forty-four thousand five hundred ninety-three'); INSERT INTO t3 VALUES(13516, 51739, 'fifty-one thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(13517, 6910, 'six thousand nine hundred ten'); INSERT INTO t3 VALUES(13518, 17557, 'seventeen thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(13519, 59217, 'fifty-nine thousand two hundred seventeen'); INSERT INTO t3 VALUES(13520, 94841, 'ninety-four thousand eight hundred forty-one'); INSERT INTO t3 VALUES(13521, 66358, 'sixty-six thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(13522, 19619, 'nineteen thousand six hundred nineteen'); INSERT INTO t3 VALUES(13523, 64737, 'sixty-four thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(13524, 73839, 'seventy-three thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(13525, 35628, 'thirty-five thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(13526, 58372, 'fifty-eight thousand three hundred seventy-two'); INSERT INTO t3 VALUES(13527, 99278, 'ninety-nine thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(13528, 763, 'seven hundred sixty-three'); INSERT INTO t3 VALUES(13529, 69991, 'sixty-nine thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(13530, 79568, 'seventy-nine thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(13531, 9667, 'nine thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(13532, 63436, 'sixty-three thousand four hundred thirty-six'); INSERT INTO t3 VALUES(13533, 991, 'nine hundred ninety-one'); INSERT INTO t3 VALUES(13534, 73161, 'seventy-three thousand one hundred sixty-one'); INSERT INTO t3 VALUES(13535, 32088, 'thirty-two thousand eighty-eight'); INSERT INTO t3 VALUES(13536, 49035, 'forty-nine thousand thirty-five'); INSERT INTO t3 VALUES(13537, 96727, 'ninety-six thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(13538, 72707, 'seventy-two thousand seven hundred seven'); INSERT INTO t3 VALUES(13539, 3444, 'three thousand four hundred forty-four'); INSERT INTO t3 VALUES(13540, 19145, 'nineteen thousand one hundred forty-five'); INSERT INTO t3 VALUES(13541, 76918, 'seventy-six thousand nine hundred eighteen'); INSERT INTO t3 VALUES(13542, 63463, 'sixty-three thousand four hundred sixty-three'); INSERT INTO t3 VALUES(13543, 14934, 'fourteen thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(13544, 68275, 'sixty-eight thousand two hundred seventy-five'); INSERT INTO t3 VALUES(13545, 88665, 'eighty-eight thousand six hundred sixty-five'); INSERT INTO t3 VALUES(13546, 8713, 'eight thousand seven hundred thirteen'); INSERT INTO t3 VALUES(13547, 25661, 'twenty-five thousand six hundred sixty-one'); INSERT INTO t3 VALUES(13548, 58355, 'fifty-eight thousand three hundred fifty-five'); INSERT INTO t3 VALUES(13549, 30055, 'thirty thousand fifty-five'); INSERT INTO t3 VALUES(13550, 67285, 'sixty-seven thousand two hundred eighty-five'); INSERT INTO t3 VALUES(13551, 23326, 'twenty-three thousand three hundred twenty-six'); INSERT INTO t3 VALUES(13552, 95446, 'ninety-five thousand four hundred forty-six'); INSERT INTO t3 VALUES(13553, 63153, 'sixty-three thousand one hundred fifty-three'); INSERT INTO t3 VALUES(13554, 8540, 'eight thousand five hundred forty'); INSERT INTO t3 VALUES(13555, 67361, 'sixty-seven thousand three hundred sixty-one'); INSERT INTO t3 VALUES(13556, 29414, 'twenty-nine thousand four hundred fourteen'); INSERT INTO t3 VALUES(13557, 44839, 'forty-four thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(13558, 95335, 'ninety-five thousand three hundred thirty-five'); INSERT INTO t3 VALUES(13559, 86735, 'eighty-six thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(13560, 84792, 'eighty-four thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(13561, 3618, 'three thousand six hundred eighteen'); INSERT INTO t3 VALUES(13562, 28983, 'twenty-eight thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(13563, 49829, 'forty-nine thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(13564, 53821, 'fifty-three thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(13565, 68650, 'sixty-eight thousand six hundred fifty'); INSERT INTO t3 VALUES(13566, 68622, 'sixty-eight thousand six hundred twenty-two'); INSERT INTO t3 VALUES(13567, 80151, 'eighty thousand one hundred fifty-one'); INSERT INTO t3 VALUES(13568, 64110, 'sixty-four thousand one hundred ten'); INSERT INTO t3 VALUES(13569, 96810, 'ninety-six thousand eight hundred ten'); INSERT INTO t3 VALUES(13570, 45608, 'forty-five thousand six hundred eight'); INSERT INTO t3 VALUES(13571, 56692, 'fifty-six thousand six hundred ninety-two'); INSERT INTO t3 VALUES(13572, 44602, 'forty-four thousand six hundred two'); INSERT INTO t3 VALUES(13573, 67918, 'sixty-seven thousand nine hundred eighteen'); INSERT INTO t3 VALUES(13574, 1803, 'one thousand eight hundred three'); INSERT INTO t3 VALUES(13575, 15145, 'fifteen thousand one hundred forty-five'); INSERT INTO t3 VALUES(13576, 36537, 'thirty-six thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(13577, 24109, 'twenty-four thousand one hundred nine'); INSERT INTO t3 VALUES(13578, 19876, 'nineteen thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(13579, 60207, 'sixty thousand two hundred seven'); INSERT INTO t3 VALUES(13580, 29207, 'twenty-nine thousand two hundred seven'); INSERT INTO t3 VALUES(13581, 56429, 'fifty-six thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(13582, 37535, 'thirty-seven thousand five hundred thirty-five'); INSERT INTO t3 VALUES(13583, 85934, 'eighty-five thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(13584, 41938, 'forty-one thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(13585, 46784, 'forty-six thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(13586, 78580, 'seventy-eight thousand five hundred eighty'); INSERT INTO t3 VALUES(13587, 45566, 'forty-five thousand five hundred sixty-six'); INSERT INTO t3 VALUES(13588, 10161, 'ten thousand one hundred sixty-one'); INSERT INTO t3 VALUES(13589, 6154, 'six thousand one hundred fifty-four'); INSERT INTO t3 VALUES(13590, 23301, 'twenty-three thousand three hundred one'); INSERT INTO t3 VALUES(13591, 57986, 'fifty-seven thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(13592, 44499, 'forty-four thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(13593, 99171, 'ninety-nine thousand one hundred seventy-one'); INSERT INTO t3 VALUES(13594, 29175, 'twenty-nine thousand one hundred seventy-five'); INSERT INTO t3 VALUES(13595, 92886, 'ninety-two thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(13596, 18921, 'eighteen thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(13597, 24201, 'twenty-four thousand two hundred one'); INSERT INTO t3 VALUES(13598, 73123, 'seventy-three thousand one hundred twenty-three'); INSERT INTO t3 VALUES(13599, 66328, 'sixty-six thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(13600, 55686, 'fifty-five thousand six hundred eighty-six'); INSERT INTO t3 VALUES(13601, 1943, 'one thousand nine hundred forty-three'); INSERT INTO t3 VALUES(13602, 81508, 'eighty-one thousand five hundred eight'); INSERT INTO t3 VALUES(13603, 21239, 'twenty-one thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(13604, 9414, 'nine thousand four hundred fourteen'); INSERT INTO t3 VALUES(13605, 29164, 'twenty-nine thousand one hundred sixty-four'); INSERT INTO t3 VALUES(13606, 41613, 'forty-one thousand six hundred thirteen'); INSERT INTO t3 VALUES(13607, 74457, 'seventy-four thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(13608, 8754, 'eight thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(13609, 10681, 'ten thousand six hundred eighty-one'); INSERT INTO t3 VALUES(13610, 24393, 'twenty-four thousand three hundred ninety-three'); INSERT INTO t3 VALUES(13611, 24211, 'twenty-four thousand two hundred eleven'); INSERT INTO t3 VALUES(13612, 30021, 'thirty thousand twenty-one'); INSERT INTO t3 VALUES(13613, 50349, 'fifty thousand three hundred forty-nine'); INSERT INTO t3 VALUES(13614, 66275, 'sixty-six thousand two hundred seventy-five'); INSERT INTO t3 VALUES(13615, 97350, 'ninety-seven thousand three hundred fifty'); INSERT INTO t3 VALUES(13616, 92377, 'ninety-two thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(13617, 41627, 'forty-one thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(13618, 41964, 'forty-one thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(13619, 82508, 'eighty-two thousand five hundred eight'); INSERT INTO t3 VALUES(13620, 48449, 'forty-eight thousand four hundred forty-nine'); INSERT INTO t3 VALUES(13621, 88595, 'eighty-eight thousand five hundred ninety-five'); INSERT INTO t3 VALUES(13622, 11994, 'eleven thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(13623, 39306, 'thirty-nine thousand three hundred six'); INSERT INTO t3 VALUES(13624, 6551, 'six thousand five hundred fifty-one'); INSERT INTO t3 VALUES(13625, 47896, 'forty-seven thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(13626, 37404, 'thirty-seven thousand four hundred four'); INSERT INTO t3 VALUES(13627, 93261, 'ninety-three thousand two hundred sixty-one'); INSERT INTO t3 VALUES(13628, 83021, 'eighty-three thousand twenty-one'); INSERT INTO t3 VALUES(13629, 56118, 'fifty-six thousand one hundred eighteen'); INSERT INTO t3 VALUES(13630, 52551, 'fifty-two thousand five hundred fifty-one'); INSERT INTO t3 VALUES(13631, 47110, 'forty-seven thousand one hundred ten'); INSERT INTO t3 VALUES(13632, 43167, 'forty-three thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(13633, 79542, 'seventy-nine thousand five hundred forty-two'); INSERT INTO t3 VALUES(13634, 46939, 'forty-six thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(13635, 71268, 'seventy-one thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(13636, 86534, 'eighty-six thousand five hundred thirty-four'); INSERT INTO t3 VALUES(13637, 38618, 'thirty-eight thousand six hundred eighteen'); INSERT INTO t3 VALUES(13638, 99131, 'ninety-nine thousand one hundred thirty-one'); INSERT INTO t3 VALUES(13639, 84472, 'eighty-four thousand four hundred seventy-two'); INSERT INTO t3 VALUES(13640, 89328, 'eighty-nine thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(13641, 29245, 'twenty-nine thousand two hundred forty-five'); INSERT INTO t3 VALUES(13642, 59709, 'fifty-nine thousand seven hundred nine'); INSERT INTO t3 VALUES(13643, 85723, 'eighty-five thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(13644, 30019, 'thirty thousand nineteen'); INSERT INTO t3 VALUES(13645, 16138, 'sixteen thousand one hundred thirty-eight'); INSERT INTO t3 VALUES(13646, 52688, 'fifty-two thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(13647, 62478, 'sixty-two thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(13648, 96156, 'ninety-six thousand one hundred fifty-six'); INSERT INTO t3 VALUES(13649, 88164, 'eighty-eight thousand one hundred sixty-four'); INSERT INTO t3 VALUES(13650, 71440, 'seventy-one thousand four hundred forty'); INSERT INTO t3 VALUES(13651, 74688, 'seventy-four thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(13652, 18531, 'eighteen thousand five hundred thirty-one'); INSERT INTO t3 VALUES(13653, 14557, 'fourteen thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(13654, 89227, 'eighty-nine thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(13655, 32160, 'thirty-two thousand one hundred sixty'); INSERT INTO t3 VALUES(13656, 42452, 'forty-two thousand four hundred fifty-two'); INSERT INTO t3 VALUES(13657, 65362, 'sixty-five thousand three hundred sixty-two'); INSERT INTO t3 VALUES(13658, 13918, 'thirteen thousand nine hundred eighteen'); INSERT INTO t3 VALUES(13659, 33572, 'thirty-three thousand five hundred seventy-two'); INSERT INTO t3 VALUES(13660, 82546, 'eighty-two thousand five hundred forty-six'); INSERT INTO t3 VALUES(13661, 51285, 'fifty-one thousand two hundred eighty-five'); INSERT INTO t3 VALUES(13662, 95766, 'ninety-five thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(13663, 33710, 'thirty-three thousand seven hundred ten'); INSERT INTO t3 VALUES(13664, 12569, 'twelve thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(13665, 75196, 'seventy-five thousand one hundred ninety-six'); INSERT INTO t3 VALUES(13666, 45772, 'forty-five thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(13667, 59020, 'fifty-nine thousand twenty'); INSERT INTO t3 VALUES(13668, 39879, 'thirty-nine thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(13669, 97366, 'ninety-seven thousand three hundred sixty-six'); INSERT INTO t3 VALUES(13670, 80589, 'eighty thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(13671, 11067, 'eleven thousand sixty-seven'); INSERT INTO t3 VALUES(13672, 12016, 'twelve thousand sixteen'); INSERT INTO t3 VALUES(13673, 92022, 'ninety-two thousand twenty-two'); INSERT INTO t3 VALUES(13674, 40134, 'forty thousand one hundred thirty-four'); INSERT INTO t3 VALUES(13675, 30202, 'thirty thousand two hundred two'); INSERT INTO t3 VALUES(13676, 75688, 'seventy-five thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(13677, 43070, 'forty-three thousand seventy'); INSERT INTO t3 VALUES(13678, 86228, 'eighty-six thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(13679, 59165, 'fifty-nine thousand one hundred sixty-five'); INSERT INTO t3 VALUES(13680, 18286, 'eighteen thousand two hundred eighty-six'); INSERT INTO t3 VALUES(13681, 46328, 'forty-six thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(13682, 86548, 'eighty-six thousand five hundred forty-eight'); INSERT INTO t3 VALUES(13683, 97667, 'ninety-seven thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(13684, 7244, 'seven thousand two hundred forty-four'); INSERT INTO t3 VALUES(13685, 31509, 'thirty-one thousand five hundred nine'); INSERT INTO t3 VALUES(13686, 41970, 'forty-one thousand nine hundred seventy'); INSERT INTO t3 VALUES(13687, 9049, 'nine thousand forty-nine'); INSERT INTO t3 VALUES(13688, 8910, 'eight thousand nine hundred ten'); INSERT INTO t3 VALUES(13689, 8756, 'eight thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(13690, 64988, 'sixty-four thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(13691, 1099, 'one thousand ninety-nine'); INSERT INTO t3 VALUES(13692, 15267, 'fifteen thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(13693, 95581, 'ninety-five thousand five hundred eighty-one'); INSERT INTO t3 VALUES(13694, 20672, 'twenty thousand six hundred seventy-two'); INSERT INTO t3 VALUES(13695, 99139, 'ninety-nine thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(13696, 64165, 'sixty-four thousand one hundred sixty-five'); INSERT INTO t3 VALUES(13697, 22449, 'twenty-two thousand four hundred forty-nine'); INSERT INTO t3 VALUES(13698, 28197, 'twenty-eight thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(13699, 37007, 'thirty-seven thousand seven'); INSERT INTO t3 VALUES(13700, 22127, 'twenty-two thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(13701, 40755, 'forty thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(13702, 38069, 'thirty-eight thousand sixty-nine'); INSERT INTO t3 VALUES(13703, 28323, 'twenty-eight thousand three hundred twenty-three'); INSERT INTO t3 VALUES(13704, 12626, 'twelve thousand six hundred twenty-six'); INSERT INTO t3 VALUES(13705, 28772, 'twenty-eight thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(13706, 86658, 'eighty-six thousand six hundred fifty-eight'); INSERT INTO t3 VALUES(13707, 73460, 'seventy-three thousand four hundred sixty'); INSERT INTO t3 VALUES(13708, 38173, 'thirty-eight thousand one hundred seventy-three'); INSERT INTO t3 VALUES(13709, 98015, 'ninety-eight thousand fifteen'); INSERT INTO t3 VALUES(13710, 72134, 'seventy-two thousand one hundred thirty-four'); INSERT INTO t3 VALUES(13711, 61051, 'sixty-one thousand fifty-one'); INSERT INTO t3 VALUES(13712, 93012, 'ninety-three thousand twelve'); INSERT INTO t3 VALUES(13713, 73181, 'seventy-three thousand one hundred eighty-one'); INSERT INTO t3 VALUES(13714, 29444, 'twenty-nine thousand four hundred forty-four'); INSERT INTO t3 VALUES(13715, 59951, 'fifty-nine thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(13716, 79914, 'seventy-nine thousand nine hundred fourteen'); INSERT INTO t3 VALUES(13717, 36786, 'thirty-six thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(13718, 55355, 'fifty-five thousand three hundred fifty-five'); INSERT INTO t3 VALUES(13719, 3937, 'three thousand nine hundred thirty-seven'); INSERT INTO t3 VALUES(13720, 27914, 'twenty-seven thousand nine hundred fourteen'); INSERT INTO t3 VALUES(13721, 89498, 'eighty-nine thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(13722, 68150, 'sixty-eight thousand one hundred fifty'); INSERT INTO t3 VALUES(13723, 2253, 'two thousand two hundred fifty-three'); INSERT INTO t3 VALUES(13724, 95501, 'ninety-five thousand five hundred one'); INSERT INTO t3 VALUES(13725, 97012, 'ninety-seven thousand twelve'); INSERT INTO t3 VALUES(13726, 99433, 'ninety-nine thousand four hundred thirty-three'); INSERT INTO t3 VALUES(13727, 45098, 'forty-five thousand ninety-eight'); INSERT INTO t3 VALUES(13728, 39812, 'thirty-nine thousand eight hundred twelve'); INSERT INTO t3 VALUES(13729, 50499, 'fifty thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(13730, 43791, 'forty-three thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(13731, 22768, 'twenty-two thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(13732, 91279, 'ninety-one thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(13733, 31694, 'thirty-one thousand six hundred ninety-four'); INSERT INTO t3 VALUES(13734, 47770, 'forty-seven thousand seven hundred seventy'); INSERT INTO t3 VALUES(13735, 21564, 'twenty-one thousand five hundred sixty-four'); INSERT INTO t3 VALUES(13736, 26072, 'twenty-six thousand seventy-two'); INSERT INTO t3 VALUES(13737, 83165, 'eighty-three thousand one hundred sixty-five'); INSERT INTO t3 VALUES(13738, 17221, 'seventeen thousand two hundred twenty-one'); INSERT INTO t3 VALUES(13739, 98498, 'ninety-eight thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(13740, 14842, 'fourteen thousand eight hundred forty-two'); INSERT INTO t3 VALUES(13741, 90554, 'ninety thousand five hundred fifty-four'); INSERT INTO t3 VALUES(13742, 62205, 'sixty-two thousand two hundred five'); INSERT INTO t3 VALUES(13743, 94700, 'ninety-four thousand seven hundred'); INSERT INTO t3 VALUES(13744, 78382, 'seventy-eight thousand three hundred eighty-two'); INSERT INTO t3 VALUES(13745, 51795, 'fifty-one thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(13746, 94887, 'ninety-four thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(13747, 79649, 'seventy-nine thousand six hundred forty-nine'); INSERT INTO t3 VALUES(13748, 92354, 'ninety-two thousand three hundred fifty-four'); INSERT INTO t3 VALUES(13749, 61632, 'sixty-one thousand six hundred thirty-two'); INSERT INTO t3 VALUES(13750, 21914, 'twenty-one thousand nine hundred fourteen'); INSERT INTO t3 VALUES(13751, 54854, 'fifty-four thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(13752, 50764, 'fifty thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(13753, 59233, 'fifty-nine thousand two hundred thirty-three'); INSERT INTO t3 VALUES(13754, 8977, 'eight thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(13755, 54352, 'fifty-four thousand three hundred fifty-two'); INSERT INTO t3 VALUES(13756, 92304, 'ninety-two thousand three hundred four'); INSERT INTO t3 VALUES(13757, 48804, 'forty-eight thousand eight hundred four'); INSERT INTO t3 VALUES(13758, 68205, 'sixty-eight thousand two hundred five'); INSERT INTO t3 VALUES(13759, 40565, 'forty thousand five hundred sixty-five'); INSERT INTO t3 VALUES(13760, 23726, 'twenty-three thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(13761, 68846, 'sixty-eight thousand eight hundred forty-six'); INSERT INTO t3 VALUES(13762, 50131, 'fifty thousand one hundred thirty-one'); INSERT INTO t3 VALUES(13763, 87075, 'eighty-seven thousand seventy-five'); INSERT INTO t3 VALUES(13764, 44491, 'forty-four thousand four hundred ninety-one'); INSERT INTO t3 VALUES(13765, 51590, 'fifty-one thousand five hundred ninety'); INSERT INTO t3 VALUES(13766, 82560, 'eighty-two thousand five hundred sixty'); INSERT INTO t3 VALUES(13767, 37576, 'thirty-seven thousand five hundred seventy-six'); INSERT INTO t3 VALUES(13768, 30956, 'thirty thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(13769, 18433, 'eighteen thousand four hundred thirty-three'); INSERT INTO t3 VALUES(13770, 49862, 'forty-nine thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(13771, 26441, 'twenty-six thousand four hundred forty-one'); INSERT INTO t3 VALUES(13772, 46839, 'forty-six thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(13773, 36345, 'thirty-six thousand three hundred forty-five'); INSERT INTO t3 VALUES(13774, 42273, 'forty-two thousand two hundred seventy-three'); INSERT INTO t3 VALUES(13775, 61839, 'sixty-one thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(13776, 23622, 'twenty-three thousand six hundred twenty-two'); INSERT INTO t3 VALUES(13777, 90466, 'ninety thousand four hundred sixty-six'); INSERT INTO t3 VALUES(13778, 72220, 'seventy-two thousand two hundred twenty'); INSERT INTO t3 VALUES(13779, 34782, 'thirty-four thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(13780, 76923, 'seventy-six thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(13781, 47080, 'forty-seven thousand eighty'); INSERT INTO t3 VALUES(13782, 86362, 'eighty-six thousand three hundred sixty-two'); INSERT INTO t3 VALUES(13783, 87536, 'eighty-seven thousand five hundred thirty-six'); INSERT INTO t3 VALUES(13784, 12350, 'twelve thousand three hundred fifty'); INSERT INTO t3 VALUES(13785, 53004, 'fifty-three thousand four'); INSERT INTO t3 VALUES(13786, 66595, 'sixty-six thousand five hundred ninety-five'); INSERT INTO t3 VALUES(13787, 15994, 'fifteen thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(13788, 7954, 'seven thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(13789, 28835, 'twenty-eight thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(13790, 26989, 'twenty-six thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(13791, 53616, 'fifty-three thousand six hundred sixteen'); INSERT INTO t3 VALUES(13792, 18222, 'eighteen thousand two hundred twenty-two'); INSERT INTO t3 VALUES(13793, 1916, 'one thousand nine hundred sixteen'); INSERT INTO t3 VALUES(13794, 53626, 'fifty-three thousand six hundred twenty-six'); INSERT INTO t3 VALUES(13795, 46533, 'forty-six thousand five hundred thirty-three'); INSERT INTO t3 VALUES(13796, 82218, 'eighty-two thousand two hundred eighteen'); INSERT INTO t3 VALUES(13797, 22862, 'twenty-two thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(13798, 42844, 'forty-two thousand eight hundred forty-four'); INSERT INTO t3 VALUES(13799, 51560, 'fifty-one thousand five hundred sixty'); INSERT INTO t3 VALUES(13800, 98578, 'ninety-eight thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(13801, 83245, 'eighty-three thousand two hundred forty-five'); INSERT INTO t3 VALUES(13802, 15231, 'fifteen thousand two hundred thirty-one'); INSERT INTO t3 VALUES(13803, 62861, 'sixty-two thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(13804, 42344, 'forty-two thousand three hundred forty-four'); INSERT INTO t3 VALUES(13805, 28132, 'twenty-eight thousand one hundred thirty-two'); INSERT INTO t3 VALUES(13806, 2983, 'two thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(13807, 10633, 'ten thousand six hundred thirty-three'); INSERT INTO t3 VALUES(13808, 71782, 'seventy-one thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(13809, 22697, 'twenty-two thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(13810, 26234, 'twenty-six thousand two hundred thirty-four'); INSERT INTO t3 VALUES(13811, 10511, 'ten thousand five hundred eleven'); INSERT INTO t3 VALUES(13812, 45386, 'forty-five thousand three hundred eighty-six'); INSERT INTO t3 VALUES(13813, 63246, 'sixty-three thousand two hundred forty-six'); INSERT INTO t3 VALUES(13814, 24842, 'twenty-four thousand eight hundred forty-two'); INSERT INTO t3 VALUES(13815, 56436, 'fifty-six thousand four hundred thirty-six'); INSERT INTO t3 VALUES(13816, 81131, 'eighty-one thousand one hundred thirty-one'); INSERT INTO t3 VALUES(13817, 93008, 'ninety-three thousand eight'); INSERT INTO t3 VALUES(13818, 47600, 'forty-seven thousand six hundred'); INSERT INTO t3 VALUES(13819, 12384, 'twelve thousand three hundred eighty-four'); INSERT INTO t3 VALUES(13820, 69453, 'sixty-nine thousand four hundred fifty-three'); INSERT INTO t3 VALUES(13821, 15467, 'fifteen thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(13822, 59634, 'fifty-nine thousand six hundred thirty-four'); INSERT INTO t3 VALUES(13823, 84148, 'eighty-four thousand one hundred forty-eight'); INSERT INTO t3 VALUES(13824, 70593, 'seventy thousand five hundred ninety-three'); INSERT INTO t3 VALUES(13825, 46990, 'forty-six thousand nine hundred ninety'); INSERT INTO t3 VALUES(13826, 12809, 'twelve thousand eight hundred nine'); INSERT INTO t3 VALUES(13827, 49764, 'forty-nine thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(13828, 14476, 'fourteen thousand four hundred seventy-six'); INSERT INTO t3 VALUES(13829, 25191, 'twenty-five thousand one hundred ninety-one'); INSERT INTO t3 VALUES(13830, 59687, 'fifty-nine thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(13831, 19781, 'nineteen thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(13832, 32597, 'thirty-two thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(13833, 35175, 'thirty-five thousand one hundred seventy-five'); INSERT INTO t3 VALUES(13834, 87914, 'eighty-seven thousand nine hundred fourteen'); INSERT INTO t3 VALUES(13835, 31894, 'thirty-one thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(13836, 70854, 'seventy thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(13837, 17345, 'seventeen thousand three hundred forty-five'); INSERT INTO t3 VALUES(13838, 86380, 'eighty-six thousand three hundred eighty'); INSERT INTO t3 VALUES(13839, 3198, 'three thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(13840, 24795, 'twenty-four thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(13841, 26975, 'twenty-six thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(13842, 79249, 'seventy-nine thousand two hundred forty-nine'); INSERT INTO t3 VALUES(13843, 32446, 'thirty-two thousand four hundred forty-six'); INSERT INTO t3 VALUES(13844, 67718, 'sixty-seven thousand seven hundred eighteen'); INSERT INTO t3 VALUES(13845, 50939, 'fifty thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(13846, 43242, 'forty-three thousand two hundred forty-two'); INSERT INTO t3 VALUES(13847, 19433, 'nineteen thousand four hundred thirty-three'); INSERT INTO t3 VALUES(13848, 11490, 'eleven thousand four hundred ninety'); INSERT INTO t3 VALUES(13849, 51334, 'fifty-one thousand three hundred thirty-four'); INSERT INTO t3 VALUES(13850, 87938, 'eighty-seven thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(13851, 39493, 'thirty-nine thousand four hundred ninety-three'); INSERT INTO t3 VALUES(13852, 27455, 'twenty-seven thousand four hundred fifty-five'); INSERT INTO t3 VALUES(13853, 50078, 'fifty thousand seventy-eight'); INSERT INTO t3 VALUES(13854, 83424, 'eighty-three thousand four hundred twenty-four'); INSERT INTO t3 VALUES(13855, 4286, 'four thousand two hundred eighty-six'); INSERT INTO t3 VALUES(13856, 35938, 'thirty-five thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(13857, 53375, 'fifty-three thousand three hundred seventy-five'); INSERT INTO t3 VALUES(13858, 96106, 'ninety-six thousand one hundred six'); INSERT INTO t3 VALUES(13859, 85902, 'eighty-five thousand nine hundred two'); INSERT INTO t3 VALUES(13860, 55837, 'fifty-five thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(13861, 9830, 'nine thousand eight hundred thirty'); INSERT INTO t3 VALUES(13862, 15241, 'fifteen thousand two hundred forty-one'); INSERT INTO t3 VALUES(13863, 16384, 'sixteen thousand three hundred eighty-four'); INSERT INTO t3 VALUES(13864, 41241, 'forty-one thousand two hundred forty-one'); INSERT INTO t3 VALUES(13865, 74496, 'seventy-four thousand four hundred ninety-six'); INSERT INTO t3 VALUES(13866, 56352, 'fifty-six thousand three hundred fifty-two'); INSERT INTO t3 VALUES(13867, 83762, 'eighty-three thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(13868, 69616, 'sixty-nine thousand six hundred sixteen'); INSERT INTO t3 VALUES(13869, 76765, 'seventy-six thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(13870, 94862, 'ninety-four thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(13871, 34444, 'thirty-four thousand four hundred forty-four'); INSERT INTO t3 VALUES(13872, 18245, 'eighteen thousand two hundred forty-five'); INSERT INTO t3 VALUES(13873, 506, 'five hundred six'); INSERT INTO t3 VALUES(13874, 2004, 'two thousand four'); INSERT INTO t3 VALUES(13875, 18450, 'eighteen thousand four hundred fifty'); INSERT INTO t3 VALUES(13876, 93173, 'ninety-three thousand one hundred seventy-three'); INSERT INTO t3 VALUES(13877, 78260, 'seventy-eight thousand two hundred sixty'); INSERT INTO t3 VALUES(13878, 53617, 'fifty-three thousand six hundred seventeen'); INSERT INTO t3 VALUES(13879, 67591, 'sixty-seven thousand five hundred ninety-one'); INSERT INTO t3 VALUES(13880, 50003, 'fifty thousand three'); INSERT INTO t3 VALUES(13881, 3881, 'three thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(13882, 24719, 'twenty-four thousand seven hundred nineteen'); INSERT INTO t3 VALUES(13883, 11308, 'eleven thousand three hundred eight'); INSERT INTO t3 VALUES(13884, 99283, 'ninety-nine thousand two hundred eighty-three'); INSERT INTO t3 VALUES(13885, 11004, 'eleven thousand four'); INSERT INTO t3 VALUES(13886, 72708, 'seventy-two thousand seven hundred eight'); INSERT INTO t3 VALUES(13887, 36791, 'thirty-six thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(13888, 17542, 'seventeen thousand five hundred forty-two'); INSERT INTO t3 VALUES(13889, 14809, 'fourteen thousand eight hundred nine'); INSERT INTO t3 VALUES(13890, 92123, 'ninety-two thousand one hundred twenty-three'); INSERT INTO t3 VALUES(13891, 17326, 'seventeen thousand three hundred twenty-six'); INSERT INTO t3 VALUES(13892, 74709, 'seventy-four thousand seven hundred nine'); INSERT INTO t3 VALUES(13893, 44197, 'forty-four thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(13894, 8078, 'eight thousand seventy-eight'); INSERT INTO t3 VALUES(13895, 46879, 'forty-six thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(13896, 58011, 'fifty-eight thousand eleven'); INSERT INTO t3 VALUES(13897, 54352, 'fifty-four thousand three hundred fifty-two'); INSERT INTO t3 VALUES(13898, 16235, 'sixteen thousand two hundred thirty-five'); INSERT INTO t3 VALUES(13899, 4278, 'four thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(13900, 85315, 'eighty-five thousand three hundred fifteen'); INSERT INTO t3 VALUES(13901, 8374, 'eight thousand three hundred seventy-four'); INSERT INTO t3 VALUES(13902, 17825, 'seventeen thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(13903, 10431, 'ten thousand four hundred thirty-one'); INSERT INTO t3 VALUES(13904, 74458, 'seventy-four thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(13905, 64768, 'sixty-four thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(13906, 53411, 'fifty-three thousand four hundred eleven'); INSERT INTO t3 VALUES(13907, 44856, 'forty-four thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(13908, 85283, 'eighty-five thousand two hundred eighty-three'); INSERT INTO t3 VALUES(13909, 50595, 'fifty thousand five hundred ninety-five'); INSERT INTO t3 VALUES(13910, 32334, 'thirty-two thousand three hundred thirty-four'); INSERT INTO t3 VALUES(13911, 72344, 'seventy-two thousand three hundred forty-four'); INSERT INTO t3 VALUES(13912, 71649, 'seventy-one thousand six hundred forty-nine'); INSERT INTO t3 VALUES(13913, 89150, 'eighty-nine thousand one hundred fifty'); INSERT INTO t3 VALUES(13914, 84303, 'eighty-four thousand three hundred three'); INSERT INTO t3 VALUES(13915, 30665, 'thirty thousand six hundred sixty-five'); INSERT INTO t3 VALUES(13916, 78780, 'seventy-eight thousand seven hundred eighty'); INSERT INTO t3 VALUES(13917, 89025, 'eighty-nine thousand twenty-five'); INSERT INTO t3 VALUES(13918, 41063, 'forty-one thousand sixty-three'); INSERT INTO t3 VALUES(13919, 33110, 'thirty-three thousand one hundred ten'); INSERT INTO t3 VALUES(13920, 65803, 'sixty-five thousand eight hundred three'); INSERT INTO t3 VALUES(13921, 49198, 'forty-nine thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(13922, 90327, 'ninety thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(13923, 68471, 'sixty-eight thousand four hundred seventy-one'); INSERT INTO t3 VALUES(13924, 7429, 'seven thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(13925, 8150, 'eight thousand one hundred fifty'); INSERT INTO t3 VALUES(13926, 89548, 'eighty-nine thousand five hundred forty-eight'); INSERT INTO t3 VALUES(13927, 7171, 'seven thousand one hundred seventy-one'); INSERT INTO t3 VALUES(13928, 90836, 'ninety thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(13929, 25283, 'twenty-five thousand two hundred eighty-three'); INSERT INTO t3 VALUES(13930, 88507, 'eighty-eight thousand five hundred seven'); INSERT INTO t3 VALUES(13931, 20224, 'twenty thousand two hundred twenty-four'); INSERT INTO t3 VALUES(13932, 73097, 'seventy-three thousand ninety-seven'); INSERT INTO t3 VALUES(13933, 4549, 'four thousand five hundred forty-nine'); INSERT INTO t3 VALUES(13934, 37916, 'thirty-seven thousand nine hundred sixteen'); INSERT INTO t3 VALUES(13935, 61924, 'sixty-one thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(13936, 67336, 'sixty-seven thousand three hundred thirty-six'); INSERT INTO t3 VALUES(13937, 95064, 'ninety-five thousand sixty-four'); INSERT INTO t3 VALUES(13938, 96587, 'ninety-six thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(13939, 29571, 'twenty-nine thousand five hundred seventy-one'); INSERT INTO t3 VALUES(13940, 28864, 'twenty-eight thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(13941, 23332, 'twenty-three thousand three hundred thirty-two'); INSERT INTO t3 VALUES(13942, 61389, 'sixty-one thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(13943, 71524, 'seventy-one thousand five hundred twenty-four'); INSERT INTO t3 VALUES(13944, 57931, 'fifty-seven thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(13945, 4443, 'four thousand four hundred forty-three'); INSERT INTO t3 VALUES(13946, 6783, 'six thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(13947, 58263, 'fifty-eight thousand two hundred sixty-three'); INSERT INTO t3 VALUES(13948, 94460, 'ninety-four thousand four hundred sixty'); INSERT INTO t3 VALUES(13949, 75297, 'seventy-five thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(13950, 61635, 'sixty-one thousand six hundred thirty-five'); INSERT INTO t3 VALUES(13951, 52074, 'fifty-two thousand seventy-four'); INSERT INTO t3 VALUES(13952, 53478, 'fifty-three thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(13953, 72076, 'seventy-two thousand seventy-six'); INSERT INTO t3 VALUES(13954, 17923, 'seventeen thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(13955, 77086, 'seventy-seven thousand eighty-six'); INSERT INTO t3 VALUES(13956, 10932, 'ten thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(13957, 57580, 'fifty-seven thousand five hundred eighty'); INSERT INTO t3 VALUES(13958, 31437, 'thirty-one thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(13959, 41326, 'forty-one thousand three hundred twenty-six'); INSERT INTO t3 VALUES(13960, 80597, 'eighty thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(13961, 46540, 'forty-six thousand five hundred forty'); INSERT INTO t3 VALUES(13962, 75245, 'seventy-five thousand two hundred forty-five'); INSERT INTO t3 VALUES(13963, 54585, 'fifty-four thousand five hundred eighty-five'); INSERT INTO t3 VALUES(13964, 1122, 'one thousand one hundred twenty-two'); INSERT INTO t3 VALUES(13965, 73413, 'seventy-three thousand four hundred thirteen'); INSERT INTO t3 VALUES(13966, 20334, 'twenty thousand three hundred thirty-four'); INSERT INTO t3 VALUES(13967, 95300, 'ninety-five thousand three hundred'); INSERT INTO t3 VALUES(13968, 7348, 'seven thousand three hundred forty-eight'); INSERT INTO t3 VALUES(13969, 74165, 'seventy-four thousand one hundred sixty-five'); INSERT INTO t3 VALUES(13970, 30473, 'thirty thousand four hundred seventy-three'); INSERT INTO t3 VALUES(13971, 15377, 'fifteen thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(13972, 43499, 'forty-three thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(13973, 22262, 'twenty-two thousand two hundred sixty-two'); INSERT INTO t3 VALUES(13974, 17978, 'seventeen thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(13975, 78716, 'seventy-eight thousand seven hundred sixteen'); INSERT INTO t3 VALUES(13976, 62759, 'sixty-two thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(13977, 65360, 'sixty-five thousand three hundred sixty'); INSERT INTO t3 VALUES(13978, 94651, 'ninety-four thousand six hundred fifty-one'); INSERT INTO t3 VALUES(13979, 69989, 'sixty-nine thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(13980, 65567, 'sixty-five thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(13981, 81075, 'eighty-one thousand seventy-five'); INSERT INTO t3 VALUES(13982, 57906, 'fifty-seven thousand nine hundred six'); INSERT INTO t3 VALUES(13983, 64171, 'sixty-four thousand one hundred seventy-one'); INSERT INTO t3 VALUES(13984, 41289, 'forty-one thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(13985, 28860, 'twenty-eight thousand eight hundred sixty'); INSERT INTO t3 VALUES(13986, 22556, 'twenty-two thousand five hundred fifty-six'); INSERT INTO t3 VALUES(13987, 16439, 'sixteen thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(13988, 95639, 'ninety-five thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(13989, 49010, 'forty-nine thousand ten'); INSERT INTO t3 VALUES(13990, 90766, 'ninety thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(13991, 84651, 'eighty-four thousand six hundred fifty-one'); INSERT INTO t3 VALUES(13992, 50935, 'fifty thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(13993, 88748, 'eighty-eight thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(13994, 84745, 'eighty-four thousand seven hundred forty-five'); INSERT INTO t3 VALUES(13995, 39283, 'thirty-nine thousand two hundred eighty-three'); INSERT INTO t3 VALUES(13996, 7382, 'seven thousand three hundred eighty-two'); INSERT INTO t3 VALUES(13997, 90804, 'ninety thousand eight hundred four'); INSERT INTO t3 VALUES(13998, 33033, 'thirty-three thousand thirty-three'); INSERT INTO t3 VALUES(13999, 55866, 'fifty-five thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(14000, 27443, 'twenty-seven thousand four hundred forty-three'); INSERT INTO t3 VALUES(14001, 6070, 'six thousand seventy'); INSERT INTO t3 VALUES(14002, 80920, 'eighty thousand nine hundred twenty'); INSERT INTO t3 VALUES(14003, 33757, 'thirty-three thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(14004, 97400, 'ninety-seven thousand four hundred'); INSERT INTO t3 VALUES(14005, 87218, 'eighty-seven thousand two hundred eighteen'); INSERT INTO t3 VALUES(14006, 80987, 'eighty thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(14007, 64071, 'sixty-four thousand seventy-one'); INSERT INTO t3 VALUES(14008, 660, 'six hundred sixty'); INSERT INTO t3 VALUES(14009, 90275, 'ninety thousand two hundred seventy-five'); INSERT INTO t3 VALUES(14010, 64638, 'sixty-four thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(14011, 1142, 'one thousand one hundred forty-two'); INSERT INTO t3 VALUES(14012, 3728, 'three thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(14013, 58292, 'fifty-eight thousand two hundred ninety-two'); INSERT INTO t3 VALUES(14014, 38028, 'thirty-eight thousand twenty-eight'); INSERT INTO t3 VALUES(14015, 53442, 'fifty-three thousand four hundred forty-two'); INSERT INTO t3 VALUES(14016, 24799, 'twenty-four thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(14017, 81197, 'eighty-one thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(14018, 73241, 'seventy-three thousand two hundred forty-one'); INSERT INTO t3 VALUES(14019, 55543, 'fifty-five thousand five hundred forty-three'); INSERT INTO t3 VALUES(14020, 94372, 'ninety-four thousand three hundred seventy-two'); INSERT INTO t3 VALUES(14021, 85179, 'eighty-five thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(14022, 98999, 'ninety-eight thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(14023, 16290, 'sixteen thousand two hundred ninety'); INSERT INTO t3 VALUES(14024, 47770, 'forty-seven thousand seven hundred seventy'); INSERT INTO t3 VALUES(14025, 47769, 'forty-seven thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(14026, 25395, 'twenty-five thousand three hundred ninety-five'); INSERT INTO t3 VALUES(14027, 63378, 'sixty-three thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(14028, 8868, 'eight thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(14029, 53151, 'fifty-three thousand one hundred fifty-one'); INSERT INTO t3 VALUES(14030, 21042, 'twenty-one thousand forty-two'); INSERT INTO t3 VALUES(14031, 41835, 'forty-one thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(14032, 16, 'sixteen'); INSERT INTO t3 VALUES(14033, 91849, 'ninety-one thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(14034, 98327, 'ninety-eight thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(14035, 30459, 'thirty thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(14036, 5717, 'five thousand seven hundred seventeen'); INSERT INTO t3 VALUES(14037, 46998, 'forty-six thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(14038, 75117, 'seventy-five thousand one hundred seventeen'); INSERT INTO t3 VALUES(14039, 85536, 'eighty-five thousand five hundred thirty-six'); INSERT INTO t3 VALUES(14040, 47560, 'forty-seven thousand five hundred sixty'); INSERT INTO t3 VALUES(14041, 16306, 'sixteen thousand three hundred six'); INSERT INTO t3 VALUES(14042, 81135, 'eighty-one thousand one hundred thirty-five'); INSERT INTO t3 VALUES(14043, 5391, 'five thousand three hundred ninety-one'); INSERT INTO t3 VALUES(14044, 44837, 'forty-four thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(14045, 57077, 'fifty-seven thousand seventy-seven'); INSERT INTO t3 VALUES(14046, 83177, 'eighty-three thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(14047, 9160, 'nine thousand one hundred sixty'); INSERT INTO t3 VALUES(14048, 35946, 'thirty-five thousand nine hundred forty-six'); INSERT INTO t3 VALUES(14049, 279, 'two hundred seventy-nine'); INSERT INTO t3 VALUES(14050, 64595, 'sixty-four thousand five hundred ninety-five'); INSERT INTO t3 VALUES(14051, 19603, 'nineteen thousand six hundred three'); INSERT INTO t3 VALUES(14052, 50428, 'fifty thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(14053, 71887, 'seventy-one thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(14054, 8099, 'eight thousand ninety-nine'); INSERT INTO t3 VALUES(14055, 98815, 'ninety-eight thousand eight hundred fifteen'); INSERT INTO t3 VALUES(14056, 34011, 'thirty-four thousand eleven'); INSERT INTO t3 VALUES(14057, 21291, 'twenty-one thousand two hundred ninety-one'); INSERT INTO t3 VALUES(14058, 54405, 'fifty-four thousand four hundred five'); INSERT INTO t3 VALUES(14059, 5340, 'five thousand three hundred forty'); INSERT INTO t3 VALUES(14060, 17683, 'seventeen thousand six hundred eighty-three'); INSERT INTO t3 VALUES(14061, 70167, 'seventy thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(14062, 50277, 'fifty thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(14063, 49889, 'forty-nine thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(14064, 74868, 'seventy-four thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(14065, 57759, 'fifty-seven thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(14066, 83959, 'eighty-three thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(14067, 21287, 'twenty-one thousand two hundred eighty-seven'); INSERT INTO t3 VALUES(14068, 7022, 'seven thousand twenty-two'); INSERT INTO t3 VALUES(14069, 79342, 'seventy-nine thousand three hundred forty-two'); INSERT INTO t3 VALUES(14070, 18522, 'eighteen thousand five hundred twenty-two'); INSERT INTO t3 VALUES(14071, 96548, 'ninety-six thousand five hundred forty-eight'); INSERT INTO t3 VALUES(14072, 70039, 'seventy thousand thirty-nine'); INSERT INTO t3 VALUES(14073, 67499, 'sixty-seven thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(14074, 44843, 'forty-four thousand eight hundred forty-three'); INSERT INTO t3 VALUES(14075, 60852, 'sixty thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(14076, 49005, 'forty-nine thousand five'); INSERT INTO t3 VALUES(14077, 42691, 'forty-two thousand six hundred ninety-one'); INSERT INTO t3 VALUES(14078, 76353, 'seventy-six thousand three hundred fifty-three'); INSERT INTO t3 VALUES(14079, 73231, 'seventy-three thousand two hundred thirty-one'); INSERT INTO t3 VALUES(14080, 51812, 'fifty-one thousand eight hundred twelve'); INSERT INTO t3 VALUES(14081, 4065, 'four thousand sixty-five'); INSERT INTO t3 VALUES(14082, 20048, 'twenty thousand forty-eight'); INSERT INTO t3 VALUES(14083, 29253, 'twenty-nine thousand two hundred fifty-three'); INSERT INTO t3 VALUES(14084, 7918, 'seven thousand nine hundred eighteen'); INSERT INTO t3 VALUES(14085, 46036, 'forty-six thousand thirty-six'); INSERT INTO t3 VALUES(14086, 80726, 'eighty thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(14087, 41651, 'forty-one thousand six hundred fifty-one'); INSERT INTO t3 VALUES(14088, 66489, 'sixty-six thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(14089, 90786, 'ninety thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(14090, 70711, 'seventy thousand seven hundred eleven'); INSERT INTO t3 VALUES(14091, 2226, 'two thousand two hundred twenty-six'); INSERT INTO t3 VALUES(14092, 34868, 'thirty-four thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(14093, 44909, 'forty-four thousand nine hundred nine'); INSERT INTO t3 VALUES(14094, 89998, 'eighty-nine thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(14095, 11780, 'eleven thousand seven hundred eighty'); INSERT INTO t3 VALUES(14096, 70448, 'seventy thousand four hundred forty-eight'); INSERT INTO t3 VALUES(14097, 32410, 'thirty-two thousand four hundred ten'); INSERT INTO t3 VALUES(14098, 52775, 'fifty-two thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(14099, 80734, 'eighty thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(14100, 64700, 'sixty-four thousand seven hundred'); INSERT INTO t3 VALUES(14101, 30, 'thirty'); INSERT INTO t3 VALUES(14102, 58756, 'fifty-eight thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(14103, 26156, 'twenty-six thousand one hundred fifty-six'); INSERT INTO t3 VALUES(14104, 29099, 'twenty-nine thousand ninety-nine'); INSERT INTO t3 VALUES(14105, 32031, 'thirty-two thousand thirty-one'); INSERT INTO t3 VALUES(14106, 78367, 'seventy-eight thousand three hundred sixty-seven'); INSERT INTO t3 VALUES(14107, 47451, 'forty-seven thousand four hundred fifty-one'); INSERT INTO t3 VALUES(14108, 25179, 'twenty-five thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(14109, 26956, 'twenty-six thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(14110, 71063, 'seventy-one thousand sixty-three'); INSERT INTO t3 VALUES(14111, 88631, 'eighty-eight thousand six hundred thirty-one'); INSERT INTO t3 VALUES(14112, 20676, 'twenty thousand six hundred seventy-six'); INSERT INTO t3 VALUES(14113, 38569, 'thirty-eight thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(14114, 45862, 'forty-five thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(14115, 97222, 'ninety-seven thousand two hundred twenty-two'); INSERT INTO t3 VALUES(14116, 23847, 'twenty-three thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(14117, 27914, 'twenty-seven thousand nine hundred fourteen'); INSERT INTO t3 VALUES(14118, 26343, 'twenty-six thousand three hundred forty-three'); INSERT INTO t3 VALUES(14119, 5566, 'five thousand five hundred sixty-six'); INSERT INTO t3 VALUES(14120, 91348, 'ninety-one thousand three hundred forty-eight'); INSERT INTO t3 VALUES(14121, 72169, 'seventy-two thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(14122, 35229, 'thirty-five thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(14123, 20626, 'twenty thousand six hundred twenty-six'); INSERT INTO t3 VALUES(14124, 84934, 'eighty-four thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(14125, 97143, 'ninety-seven thousand one hundred forty-three'); INSERT INTO t3 VALUES(14126, 57316, 'fifty-seven thousand three hundred sixteen'); INSERT INTO t3 VALUES(14127, 70205, 'seventy thousand two hundred five'); INSERT INTO t3 VALUES(14128, 55119, 'fifty-five thousand one hundred nineteen'); INSERT INTO t3 VALUES(14129, 14023, 'fourteen thousand twenty-three'); INSERT INTO t3 VALUES(14130, 69712, 'sixty-nine thousand seven hundred twelve'); INSERT INTO t3 VALUES(14131, 69034, 'sixty-nine thousand thirty-four'); INSERT INTO t3 VALUES(14132, 27592, 'twenty-seven thousand five hundred ninety-two'); INSERT INTO t3 VALUES(14133, 14323, 'fourteen thousand three hundred twenty-three'); INSERT INTO t3 VALUES(14134, 56164, 'fifty-six thousand one hundred sixty-four'); INSERT INTO t3 VALUES(14135, 67875, 'sixty-seven thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(14136, 7556, 'seven thousand five hundred fifty-six'); INSERT INTO t3 VALUES(14137, 47319, 'forty-seven thousand three hundred nineteen'); INSERT INTO t3 VALUES(14138, 39533, 'thirty-nine thousand five hundred thirty-three'); INSERT INTO t3 VALUES(14139, 37545, 'thirty-seven thousand five hundred forty-five'); INSERT INTO t3 VALUES(14140, 42119, 'forty-two thousand one hundred nineteen'); INSERT INTO t3 VALUES(14141, 39886, 'thirty-nine thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(14142, 83467, 'eighty-three thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(14143, 65379, 'sixty-five thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(14144, 74107, 'seventy-four thousand one hundred seven'); INSERT INTO t3 VALUES(14145, 92627, 'ninety-two thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(14146, 20984, 'twenty thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(14147, 72444, 'seventy-two thousand four hundred forty-four'); INSERT INTO t3 VALUES(14148, 36611, 'thirty-six thousand six hundred eleven'); INSERT INTO t3 VALUES(14149, 83169, 'eighty-three thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(14150, 22705, 'twenty-two thousand seven hundred five'); INSERT INTO t3 VALUES(14151, 34171, 'thirty-four thousand one hundred seventy-one'); INSERT INTO t3 VALUES(14152, 37130, 'thirty-seven thousand one hundred thirty'); INSERT INTO t3 VALUES(14153, 92769, 'ninety-two thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(14154, 70754, 'seventy thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(14155, 51656, 'fifty-one thousand six hundred fifty-six'); INSERT INTO t3 VALUES(14156, 50732, 'fifty thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(14157, 16488, 'sixteen thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(14158, 79570, 'seventy-nine thousand five hundred seventy'); INSERT INTO t3 VALUES(14159, 62083, 'sixty-two thousand eighty-three'); INSERT INTO t3 VALUES(14160, 4761, 'four thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(14161, 27727, 'twenty-seven thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(14162, 37092, 'thirty-seven thousand ninety-two'); INSERT INTO t3 VALUES(14163, 64288, 'sixty-four thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(14164, 97438, 'ninety-seven thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(14165, 31498, 'thirty-one thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(14166, 99157, 'ninety-nine thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(14167, 15456, 'fifteen thousand four hundred fifty-six'); INSERT INTO t3 VALUES(14168, 79114, 'seventy-nine thousand one hundred fourteen'); INSERT INTO t3 VALUES(14169, 28346, 'twenty-eight thousand three hundred forty-six'); INSERT INTO t3 VALUES(14170, 48753, 'forty-eight thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(14171, 14314, 'fourteen thousand three hundred fourteen'); INSERT INTO t3 VALUES(14172, 69211, 'sixty-nine thousand two hundred eleven'); INSERT INTO t3 VALUES(14173, 87614, 'eighty-seven thousand six hundred fourteen'); INSERT INTO t3 VALUES(14174, 21482, 'twenty-one thousand four hundred eighty-two'); INSERT INTO t3 VALUES(14175, 84555, 'eighty-four thousand five hundred fifty-five'); INSERT INTO t3 VALUES(14176, 92481, 'ninety-two thousand four hundred eighty-one'); INSERT INTO t3 VALUES(14177, 80601, 'eighty thousand six hundred one'); INSERT INTO t3 VALUES(14178, 86326, 'eighty-six thousand three hundred twenty-six'); INSERT INTO t3 VALUES(14179, 51725, 'fifty-one thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(14180, 25639, 'twenty-five thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(14181, 86604, 'eighty-six thousand six hundred four'); INSERT INTO t3 VALUES(14182, 9013, 'nine thousand thirteen'); INSERT INTO t3 VALUES(14183, 10834, 'ten thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(14184, 24644, 'twenty-four thousand six hundred forty-four'); INSERT INTO t3 VALUES(14185, 69444, 'sixty-nine thousand four hundred forty-four'); INSERT INTO t3 VALUES(14186, 13141, 'thirteen thousand one hundred forty-one'); INSERT INTO t3 VALUES(14187, 29103, 'twenty-nine thousand one hundred three'); INSERT INTO t3 VALUES(14188, 83682, 'eighty-three thousand six hundred eighty-two'); INSERT INTO t3 VALUES(14189, 43992, 'forty-three thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(14190, 74783, 'seventy-four thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(14191, 42437, 'forty-two thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(14192, 4381, 'four thousand three hundred eighty-one'); INSERT INTO t3 VALUES(14193, 61759, 'sixty-one thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(14194, 54951, 'fifty-four thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(14195, 19140, 'nineteen thousand one hundred forty'); INSERT INTO t3 VALUES(14196, 57927, 'fifty-seven thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(14197, 47775, 'forty-seven thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(14198, 52878, 'fifty-two thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(14199, 83869, 'eighty-three thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(14200, 41009, 'forty-one thousand nine'); INSERT INTO t3 VALUES(14201, 32065, 'thirty-two thousand sixty-five'); INSERT INTO t3 VALUES(14202, 75242, 'seventy-five thousand two hundred forty-two'); INSERT INTO t3 VALUES(14203, 88982, 'eighty-eight thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(14204, 84425, 'eighty-four thousand four hundred twenty-five'); INSERT INTO t3 VALUES(14205, 86469, 'eighty-six thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(14206, 4916, 'four thousand nine hundred sixteen'); INSERT INTO t3 VALUES(14207, 40930, 'forty thousand nine hundred thirty'); INSERT INTO t3 VALUES(14208, 43178, 'forty-three thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(14209, 16744, 'sixteen thousand seven hundred forty-four'); INSERT INTO t3 VALUES(14210, 7823, 'seven thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(14211, 88086, 'eighty-eight thousand eighty-six'); INSERT INTO t3 VALUES(14212, 19551, 'nineteen thousand five hundred fifty-one'); INSERT INTO t3 VALUES(14213, 25943, 'twenty-five thousand nine hundred forty-three'); INSERT INTO t3 VALUES(14214, 89127, 'eighty-nine thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(14215, 63497, 'sixty-three thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(14216, 82765, 'eighty-two thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(14217, 30305, 'thirty thousand three hundred five'); INSERT INTO t3 VALUES(14218, 58564, 'fifty-eight thousand five hundred sixty-four'); INSERT INTO t3 VALUES(14219, 28257, 'twenty-eight thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(14220, 77279, 'seventy-seven thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(14221, 51722, 'fifty-one thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(14222, 24282, 'twenty-four thousand two hundred eighty-two'); INSERT INTO t3 VALUES(14223, 62794, 'sixty-two thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(14224, 44363, 'forty-four thousand three hundred sixty-three'); INSERT INTO t3 VALUES(14225, 89297, 'eighty-nine thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(14226, 39420, 'thirty-nine thousand four hundred twenty'); INSERT INTO t3 VALUES(14227, 8990, 'eight thousand nine hundred ninety'); INSERT INTO t3 VALUES(14228, 92556, 'ninety-two thousand five hundred fifty-six'); INSERT INTO t3 VALUES(14229, 47958, 'forty-seven thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(14230, 94381, 'ninety-four thousand three hundred eighty-one'); INSERT INTO t3 VALUES(14231, 94323, 'ninety-four thousand three hundred twenty-three'); INSERT INTO t3 VALUES(14232, 43972, 'forty-three thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(14233, 2510, 'two thousand five hundred ten'); INSERT INTO t3 VALUES(14234, 21945, 'twenty-one thousand nine hundred forty-five'); INSERT INTO t3 VALUES(14235, 23777, 'twenty-three thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(14236, 64407, 'sixty-four thousand four hundred seven'); INSERT INTO t3 VALUES(14237, 30935, 'thirty thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(14238, 38018, 'thirty-eight thousand eighteen'); INSERT INTO t3 VALUES(14239, 96118, 'ninety-six thousand one hundred eighteen'); INSERT INTO t3 VALUES(14240, 45534, 'forty-five thousand five hundred thirty-four'); INSERT INTO t3 VALUES(14241, 85873, 'eighty-five thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(14242, 67184, 'sixty-seven thousand one hundred eighty-four'); INSERT INTO t3 VALUES(14243, 65712, 'sixty-five thousand seven hundred twelve'); INSERT INTO t3 VALUES(14244, 9435, 'nine thousand four hundred thirty-five'); INSERT INTO t3 VALUES(14245, 35322, 'thirty-five thousand three hundred twenty-two'); INSERT INTO t3 VALUES(14246, 91405, 'ninety-one thousand four hundred five'); INSERT INTO t3 VALUES(14247, 62911, 'sixty-two thousand nine hundred eleven'); INSERT INTO t3 VALUES(14248, 7842, 'seven thousand eight hundred forty-two'); INSERT INTO t3 VALUES(14249, 51414, 'fifty-one thousand four hundred fourteen'); INSERT INTO t3 VALUES(14250, 22465, 'twenty-two thousand four hundred sixty-five'); INSERT INTO t3 VALUES(14251, 32639, 'thirty-two thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(14252, 62212, 'sixty-two thousand two hundred twelve'); INSERT INTO t3 VALUES(14253, 20304, 'twenty thousand three hundred four'); INSERT INTO t3 VALUES(14254, 69574, 'sixty-nine thousand five hundred seventy-four'); INSERT INTO t3 VALUES(14255, 54688, 'fifty-four thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(14256, 59382, 'fifty-nine thousand three hundred eighty-two'); INSERT INTO t3 VALUES(14257, 63230, 'sixty-three thousand two hundred thirty'); INSERT INTO t3 VALUES(14258, 94295, 'ninety-four thousand two hundred ninety-five'); INSERT INTO t3 VALUES(14259, 97845, 'ninety-seven thousand eight hundred forty-five'); INSERT INTO t3 VALUES(14260, 90665, 'ninety thousand six hundred sixty-five'); INSERT INTO t3 VALUES(14261, 57241, 'fifty-seven thousand two hundred forty-one'); INSERT INTO t3 VALUES(14262, 31129, 'thirty-one thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(14263, 52584, 'fifty-two thousand five hundred eighty-four'); INSERT INTO t3 VALUES(14264, 64248, 'sixty-four thousand two hundred forty-eight'); INSERT INTO t3 VALUES(14265, 74634, 'seventy-four thousand six hundred thirty-four'); INSERT INTO t3 VALUES(14266, 76404, 'seventy-six thousand four hundred four'); INSERT INTO t3 VALUES(14267, 29486, 'twenty-nine thousand four hundred eighty-six'); INSERT INTO t3 VALUES(14268, 17786, 'seventeen thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(14269, 62839, 'sixty-two thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(14270, 36637, 'thirty-six thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(14271, 50990, 'fifty thousand nine hundred ninety'); INSERT INTO t3 VALUES(14272, 76728, 'seventy-six thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(14273, 52060, 'fifty-two thousand sixty'); INSERT INTO t3 VALUES(14274, 55154, 'fifty-five thousand one hundred fifty-four'); INSERT INTO t3 VALUES(14275, 60588, 'sixty thousand five hundred eighty-eight'); INSERT INTO t3 VALUES(14276, 5076, 'five thousand seventy-six'); INSERT INTO t3 VALUES(14277, 74857, 'seventy-four thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(14278, 46644, 'forty-six thousand six hundred forty-four'); INSERT INTO t3 VALUES(14279, 60609, 'sixty thousand six hundred nine'); INSERT INTO t3 VALUES(14280, 69598, 'sixty-nine thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(14281, 57260, 'fifty-seven thousand two hundred sixty'); INSERT INTO t3 VALUES(14282, 94989, 'ninety-four thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(14283, 58789, 'fifty-eight thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(14284, 73219, 'seventy-three thousand two hundred nineteen'); INSERT INTO t3 VALUES(14285, 29093, 'twenty-nine thousand ninety-three'); INSERT INTO t3 VALUES(14286, 21412, 'twenty-one thousand four hundred twelve'); INSERT INTO t3 VALUES(14287, 90352, 'ninety thousand three hundred fifty-two'); INSERT INTO t3 VALUES(14288, 7151, 'seven thousand one hundred fifty-one'); INSERT INTO t3 VALUES(14289, 9830, 'nine thousand eight hundred thirty'); INSERT INTO t3 VALUES(14290, 70265, 'seventy thousand two hundred sixty-five'); INSERT INTO t3 VALUES(14291, 7236, 'seven thousand two hundred thirty-six'); INSERT INTO t3 VALUES(14292, 24213, 'twenty-four thousand two hundred thirteen'); INSERT INTO t3 VALUES(14293, 34717, 'thirty-four thousand seven hundred seventeen'); INSERT INTO t3 VALUES(14294, 90624, 'ninety thousand six hundred twenty-four'); INSERT INTO t3 VALUES(14295, 36920, 'thirty-six thousand nine hundred twenty'); INSERT INTO t3 VALUES(14296, 5055, 'five thousand fifty-five'); INSERT INTO t3 VALUES(14297, 9154, 'nine thousand one hundred fifty-four'); INSERT INTO t3 VALUES(14298, 82441, 'eighty-two thousand four hundred forty-one'); INSERT INTO t3 VALUES(14299, 40498, 'forty thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(14300, 5931, 'five thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(14301, 81847, 'eighty-one thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(14302, 16365, 'sixteen thousand three hundred sixty-five'); INSERT INTO t3 VALUES(14303, 64044, 'sixty-four thousand forty-four'); INSERT INTO t3 VALUES(14304, 42828, 'forty-two thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(14305, 77245, 'seventy-seven thousand two hundred forty-five'); INSERT INTO t3 VALUES(14306, 68101, 'sixty-eight thousand one hundred one'); INSERT INTO t3 VALUES(14307, 22692, 'twenty-two thousand six hundred ninety-two'); INSERT INTO t3 VALUES(14308, 33884, 'thirty-three thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(14309, 59114, 'fifty-nine thousand one hundred fourteen'); INSERT INTO t3 VALUES(14310, 76416, 'seventy-six thousand four hundred sixteen'); INSERT INTO t3 VALUES(14311, 49710, 'forty-nine thousand seven hundred ten'); INSERT INTO t3 VALUES(14312, 51303, 'fifty-one thousand three hundred three'); INSERT INTO t3 VALUES(14313, 72241, 'seventy-two thousand two hundred forty-one'); INSERT INTO t3 VALUES(14314, 90059, 'ninety thousand fifty-nine'); INSERT INTO t3 VALUES(14315, 98357, 'ninety-eight thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(14316, 38819, 'thirty-eight thousand eight hundred nineteen'); INSERT INTO t3 VALUES(14317, 31864, 'thirty-one thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(14318, 60077, 'sixty thousand seventy-seven'); INSERT INTO t3 VALUES(14319, 76181, 'seventy-six thousand one hundred eighty-one'); INSERT INTO t3 VALUES(14320, 19692, 'nineteen thousand six hundred ninety-two'); INSERT INTO t3 VALUES(14321, 97806, 'ninety-seven thousand eight hundred six'); INSERT INTO t3 VALUES(14322, 61599, 'sixty-one thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(14323, 34611, 'thirty-four thousand six hundred eleven'); INSERT INTO t3 VALUES(14324, 84140, 'eighty-four thousand one hundred forty'); INSERT INTO t3 VALUES(14325, 12217, 'twelve thousand two hundred seventeen'); INSERT INTO t3 VALUES(14326, 82300, 'eighty-two thousand three hundred'); INSERT INTO t3 VALUES(14327, 74272, 'seventy-four thousand two hundred seventy-two'); INSERT INTO t3 VALUES(14328, 74265, 'seventy-four thousand two hundred sixty-five'); INSERT INTO t3 VALUES(14329, 60922, 'sixty thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(14330, 45274, 'forty-five thousand two hundred seventy-four'); INSERT INTO t3 VALUES(14331, 29864, 'twenty-nine thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(14332, 43869, 'forty-three thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(14333, 97801, 'ninety-seven thousand eight hundred one'); INSERT INTO t3 VALUES(14334, 44111, 'forty-four thousand one hundred eleven'); INSERT INTO t3 VALUES(14335, 31140, 'thirty-one thousand one hundred forty'); INSERT INTO t3 VALUES(14336, 26431, 'twenty-six thousand four hundred thirty-one'); INSERT INTO t3 VALUES(14337, 95892, 'ninety-five thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(14338, 23643, 'twenty-three thousand six hundred forty-three'); INSERT INTO t3 VALUES(14339, 9987, 'nine thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(14340, 38559, 'thirty-eight thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(14341, 12285, 'twelve thousand two hundred eighty-five'); INSERT INTO t3 VALUES(14342, 95915, 'ninety-five thousand nine hundred fifteen'); INSERT INTO t3 VALUES(14343, 83802, 'eighty-three thousand eight hundred two'); INSERT INTO t3 VALUES(14344, 27394, 'twenty-seven thousand three hundred ninety-four'); INSERT INTO t3 VALUES(14345, 2087, 'two thousand eighty-seven'); INSERT INTO t3 VALUES(14346, 95448, 'ninety-five thousand four hundred forty-eight'); INSERT INTO t3 VALUES(14347, 68544, 'sixty-eight thousand five hundred forty-four'); INSERT INTO t3 VALUES(14348, 96637, 'ninety-six thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(14349, 97022, 'ninety-seven thousand twenty-two'); INSERT INTO t3 VALUES(14350, 22948, 'twenty-two thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(14351, 60979, 'sixty thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(14352, 95824, 'ninety-five thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(14353, 57159, 'fifty-seven thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(14354, 54898, 'fifty-four thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(14355, 35741, 'thirty-five thousand seven hundred forty-one'); INSERT INTO t3 VALUES(14356, 14997, 'fourteen thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(14357, 79366, 'seventy-nine thousand three hundred sixty-six'); INSERT INTO t3 VALUES(14358, 99647, 'ninety-nine thousand six hundred forty-seven'); INSERT INTO t3 VALUES(14359, 65949, 'sixty-five thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(14360, 7391, 'seven thousand three hundred ninety-one'); INSERT INTO t3 VALUES(14361, 4665, 'four thousand six hundred sixty-five'); INSERT INTO t3 VALUES(14362, 54674, 'fifty-four thousand six hundred seventy-four'); INSERT INTO t3 VALUES(14363, 48491, 'forty-eight thousand four hundred ninety-one'); INSERT INTO t3 VALUES(14364, 64611, 'sixty-four thousand six hundred eleven'); INSERT INTO t3 VALUES(14365, 5079, 'five thousand seventy-nine'); INSERT INTO t3 VALUES(14366, 96510, 'ninety-six thousand five hundred ten'); INSERT INTO t3 VALUES(14367, 19930, 'nineteen thousand nine hundred thirty'); INSERT INTO t3 VALUES(14368, 14729, 'fourteen thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(14369, 54085, 'fifty-four thousand eighty-five'); INSERT INTO t3 VALUES(14370, 18388, 'eighteen thousand three hundred eighty-eight'); INSERT INTO t3 VALUES(14371, 47262, 'forty-seven thousand two hundred sixty-two'); INSERT INTO t3 VALUES(14372, 38350, 'thirty-eight thousand three hundred fifty'); INSERT INTO t3 VALUES(14373, 14133, 'fourteen thousand one hundred thirty-three'); INSERT INTO t3 VALUES(14374, 4247, 'four thousand two hundred forty-seven'); INSERT INTO t3 VALUES(14375, 15359, 'fifteen thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(14376, 10308, 'ten thousand three hundred eight'); INSERT INTO t3 VALUES(14377, 26455, 'twenty-six thousand four hundred fifty-five'); INSERT INTO t3 VALUES(14378, 71989, 'seventy-one thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(14379, 2371, 'two thousand three hundred seventy-one'); INSERT INTO t3 VALUES(14380, 44012, 'forty-four thousand twelve'); INSERT INTO t3 VALUES(14381, 3578, 'three thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(14382, 33913, 'thirty-three thousand nine hundred thirteen'); INSERT INTO t3 VALUES(14383, 87445, 'eighty-seven thousand four hundred forty-five'); INSERT INTO t3 VALUES(14384, 26229, 'twenty-six thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(14385, 1263, 'one thousand two hundred sixty-three'); INSERT INTO t3 VALUES(14386, 68279, 'sixty-eight thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(14387, 13226, 'thirteen thousand two hundred twenty-six'); INSERT INTO t3 VALUES(14388, 87733, 'eighty-seven thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(14389, 79940, 'seventy-nine thousand nine hundred forty'); INSERT INTO t3 VALUES(14390, 94181, 'ninety-four thousand one hundred eighty-one'); INSERT INTO t3 VALUES(14391, 98470, 'ninety-eight thousand four hundred seventy'); INSERT INTO t3 VALUES(14392, 29106, 'twenty-nine thousand one hundred six'); INSERT INTO t3 VALUES(14393, 325, 'three hundred twenty-five'); INSERT INTO t3 VALUES(14394, 57983, 'fifty-seven thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(14395, 7554, 'seven thousand five hundred fifty-four'); INSERT INTO t3 VALUES(14396, 94566, 'ninety-four thousand five hundred sixty-six'); INSERT INTO t3 VALUES(14397, 10174, 'ten thousand one hundred seventy-four'); INSERT INTO t3 VALUES(14398, 60058, 'sixty thousand fifty-eight'); INSERT INTO t3 VALUES(14399, 83177, 'eighty-three thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(14400, 84461, 'eighty-four thousand four hundred sixty-one'); INSERT INTO t3 VALUES(14401, 10453, 'ten thousand four hundred fifty-three'); INSERT INTO t3 VALUES(14402, 79568, 'seventy-nine thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(14403, 2432, 'two thousand four hundred thirty-two'); INSERT INTO t3 VALUES(14404, 22426, 'twenty-two thousand four hundred twenty-six'); INSERT INTO t3 VALUES(14405, 55022, 'fifty-five thousand twenty-two'); INSERT INTO t3 VALUES(14406, 54477, 'fifty-four thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(14407, 224, 'two hundred twenty-four'); INSERT INTO t3 VALUES(14408, 80170, 'eighty thousand one hundred seventy'); INSERT INTO t3 VALUES(14409, 74617, 'seventy-four thousand six hundred seventeen'); INSERT INTO t3 VALUES(14410, 37826, 'thirty-seven thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(14411, 13481, 'thirteen thousand four hundred eighty-one'); INSERT INTO t3 VALUES(14412, 55903, 'fifty-five thousand nine hundred three'); INSERT INTO t3 VALUES(14413, 98563, 'ninety-eight thousand five hundred sixty-three'); INSERT INTO t3 VALUES(14414, 56487, 'fifty-six thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(14415, 69806, 'sixty-nine thousand eight hundred six'); INSERT INTO t3 VALUES(14416, 78030, 'seventy-eight thousand thirty'); INSERT INTO t3 VALUES(14417, 90461, 'ninety thousand four hundred sixty-one'); INSERT INTO t3 VALUES(14418, 32670, 'thirty-two thousand six hundred seventy'); INSERT INTO t3 VALUES(14419, 90171, 'ninety thousand one hundred seventy-one'); INSERT INTO t3 VALUES(14420, 71633, 'seventy-one thousand six hundred thirty-three'); INSERT INTO t3 VALUES(14421, 34699, 'thirty-four thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(14422, 68435, 'sixty-eight thousand four hundred thirty-five'); INSERT INTO t3 VALUES(14423, 86962, 'eighty-six thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(14424, 7094, 'seven thousand ninety-four'); INSERT INTO t3 VALUES(14425, 9991, 'nine thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(14426, 17207, 'seventeen thousand two hundred seven'); INSERT INTO t3 VALUES(14427, 88226, 'eighty-eight thousand two hundred twenty-six'); INSERT INTO t3 VALUES(14428, 46157, 'forty-six thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(14429, 99262, 'ninety-nine thousand two hundred sixty-two'); INSERT INTO t3 VALUES(14430, 45542, 'forty-five thousand five hundred forty-two'); INSERT INTO t3 VALUES(14431, 85504, 'eighty-five thousand five hundred four'); INSERT INTO t3 VALUES(14432, 70406, 'seventy thousand four hundred six'); INSERT INTO t3 VALUES(14433, 12940, 'twelve thousand nine hundred forty'); INSERT INTO t3 VALUES(14434, 30821, 'thirty thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(14435, 36246, 'thirty-six thousand two hundred forty-six'); INSERT INTO t3 VALUES(14436, 89217, 'eighty-nine thousand two hundred seventeen'); INSERT INTO t3 VALUES(14437, 87303, 'eighty-seven thousand three hundred three'); INSERT INTO t3 VALUES(14438, 10572, 'ten thousand five hundred seventy-two'); INSERT INTO t3 VALUES(14439, 29156, 'twenty-nine thousand one hundred fifty-six'); INSERT INTO t3 VALUES(14440, 46980, 'forty-six thousand nine hundred eighty'); INSERT INTO t3 VALUES(14441, 43683, 'forty-three thousand six hundred eighty-three'); INSERT INTO t3 VALUES(14442, 95156, 'ninety-five thousand one hundred fifty-six'); INSERT INTO t3 VALUES(14443, 15716, 'fifteen thousand seven hundred sixteen'); INSERT INTO t3 VALUES(14444, 44693, 'forty-four thousand six hundred ninety-three'); INSERT INTO t3 VALUES(14445, 49162, 'forty-nine thousand one hundred sixty-two'); INSERT INTO t3 VALUES(14446, 48546, 'forty-eight thousand five hundred forty-six'); INSERT INTO t3 VALUES(14447, 36516, 'thirty-six thousand five hundred sixteen'); INSERT INTO t3 VALUES(14448, 48270, 'forty-eight thousand two hundred seventy'); INSERT INTO t3 VALUES(14449, 29979, 'twenty-nine thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(14450, 6000, 'six thousand'); INSERT INTO t3 VALUES(14451, 89570, 'eighty-nine thousand five hundred seventy'); INSERT INTO t3 VALUES(14452, 1531, 'one thousand five hundred thirty-one'); INSERT INTO t3 VALUES(14453, 52598, 'fifty-two thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(14454, 3987, 'three thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(14455, 80410, 'eighty thousand four hundred ten'); INSERT INTO t3 VALUES(14456, 66354, 'sixty-six thousand three hundred fifty-four'); INSERT INTO t3 VALUES(14457, 82652, 'eighty-two thousand six hundred fifty-two'); INSERT INTO t3 VALUES(14458, 16187, 'sixteen thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(14459, 90640, 'ninety thousand six hundred forty'); INSERT INTO t3 VALUES(14460, 23381, 'twenty-three thousand three hundred eighty-one'); INSERT INTO t3 VALUES(14461, 24338, 'twenty-four thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(14462, 92652, 'ninety-two thousand six hundred fifty-two'); INSERT INTO t3 VALUES(14463, 41077, 'forty-one thousand seventy-seven'); INSERT INTO t3 VALUES(14464, 36577, 'thirty-six thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(14465, 20299, 'twenty thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(14466, 62776, 'sixty-two thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(14467, 67506, 'sixty-seven thousand five hundred six'); INSERT INTO t3 VALUES(14468, 73012, 'seventy-three thousand twelve'); INSERT INTO t3 VALUES(14469, 81291, 'eighty-one thousand two hundred ninety-one'); INSERT INTO t3 VALUES(14470, 51806, 'fifty-one thousand eight hundred six'); INSERT INTO t3 VALUES(14471, 10356, 'ten thousand three hundred fifty-six'); INSERT INTO t3 VALUES(14472, 14935, 'fourteen thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(14473, 92150, 'ninety-two thousand one hundred fifty'); INSERT INTO t3 VALUES(14474, 85918, 'eighty-five thousand nine hundred eighteen'); INSERT INTO t3 VALUES(14475, 22235, 'twenty-two thousand two hundred thirty-five'); INSERT INTO t3 VALUES(14476, 22731, 'twenty-two thousand seven hundred thirty-one'); INSERT INTO t3 VALUES(14477, 34465, 'thirty-four thousand four hundred sixty-five'); INSERT INTO t3 VALUES(14478, 20592, 'twenty thousand five hundred ninety-two'); INSERT INTO t3 VALUES(14479, 42785, 'forty-two thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(14480, 48326, 'forty-eight thousand three hundred twenty-six'); INSERT INTO t3 VALUES(14481, 11939, 'eleven thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(14482, 35144, 'thirty-five thousand one hundred forty-four'); INSERT INTO t3 VALUES(14483, 92610, 'ninety-two thousand six hundred ten'); INSERT INTO t3 VALUES(14484, 33640, 'thirty-three thousand six hundred forty'); INSERT INTO t3 VALUES(14485, 69147, 'sixty-nine thousand one hundred forty-seven'); INSERT INTO t3 VALUES(14486, 59398, 'fifty-nine thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(14487, 72857, 'seventy-two thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(14488, 13955, 'thirteen thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(14489, 14269, 'fourteen thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(14490, 51046, 'fifty-one thousand forty-six'); INSERT INTO t3 VALUES(14491, 1683, 'one thousand six hundred eighty-three'); INSERT INTO t3 VALUES(14492, 34176, 'thirty-four thousand one hundred seventy-six'); INSERT INTO t3 VALUES(14493, 78035, 'seventy-eight thousand thirty-five'); INSERT INTO t3 VALUES(14494, 6010, 'six thousand ten'); INSERT INTO t3 VALUES(14495, 25220, 'twenty-five thousand two hundred twenty'); INSERT INTO t3 VALUES(14496, 10069, 'ten thousand sixty-nine'); INSERT INTO t3 VALUES(14497, 32014, 'thirty-two thousand fourteen'); INSERT INTO t3 VALUES(14498, 42905, 'forty-two thousand nine hundred five'); INSERT INTO t3 VALUES(14499, 38341, 'thirty-eight thousand three hundred forty-one'); INSERT INTO t3 VALUES(14500, 68819, 'sixty-eight thousand eight hundred nineteen'); INSERT INTO t3 VALUES(14501, 17996, 'seventeen thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(14502, 13424, 'thirteen thousand four hundred twenty-four'); INSERT INTO t3 VALUES(14503, 98015, 'ninety-eight thousand fifteen'); INSERT INTO t3 VALUES(14504, 60066, 'sixty thousand sixty-six'); INSERT INTO t3 VALUES(14505, 62737, 'sixty-two thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(14506, 43719, 'forty-three thousand seven hundred nineteen'); INSERT INTO t3 VALUES(14507, 72053, 'seventy-two thousand fifty-three'); INSERT INTO t3 VALUES(14508, 84111, 'eighty-four thousand one hundred eleven'); INSERT INTO t3 VALUES(14509, 14871, 'fourteen thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(14510, 51984, 'fifty-one thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(14511, 24022, 'twenty-four thousand twenty-two'); INSERT INTO t3 VALUES(14512, 82959, 'eighty-two thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(14513, 61332, 'sixty-one thousand three hundred thirty-two'); INSERT INTO t3 VALUES(14514, 91621, 'ninety-one thousand six hundred twenty-one'); INSERT INTO t3 VALUES(14515, 79851, 'seventy-nine thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(14516, 62831, 'sixty-two thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(14517, 23427, 'twenty-three thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(14518, 46295, 'forty-six thousand two hundred ninety-five'); INSERT INTO t3 VALUES(14519, 66657, 'sixty-six thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(14520, 6208, 'six thousand two hundred eight'); INSERT INTO t3 VALUES(14521, 66380, 'sixty-six thousand three hundred eighty'); INSERT INTO t3 VALUES(14522, 17450, 'seventeen thousand four hundred fifty'); INSERT INTO t3 VALUES(14523, 61566, 'sixty-one thousand five hundred sixty-six'); INSERT INTO t3 VALUES(14524, 89253, 'eighty-nine thousand two hundred fifty-three'); INSERT INTO t3 VALUES(14525, 59985, 'fifty-nine thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(14526, 97636, 'ninety-seven thousand six hundred thirty-six'); INSERT INTO t3 VALUES(14527, 9563, 'nine thousand five hundred sixty-three'); INSERT INTO t3 VALUES(14528, 13734, 'thirteen thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(14529, 5650, 'five thousand six hundred fifty'); INSERT INTO t3 VALUES(14530, 89709, 'eighty-nine thousand seven hundred nine'); INSERT INTO t3 VALUES(14531, 24506, 'twenty-four thousand five hundred six'); INSERT INTO t3 VALUES(14532, 18122, 'eighteen thousand one hundred twenty-two'); INSERT INTO t3 VALUES(14533, 11118, 'eleven thousand one hundred eighteen'); INSERT INTO t3 VALUES(14534, 19254, 'nineteen thousand two hundred fifty-four'); INSERT INTO t3 VALUES(14535, 48795, 'forty-eight thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(14536, 47002, 'forty-seven thousand two'); INSERT INTO t3 VALUES(14537, 93246, 'ninety-three thousand two hundred forty-six'); INSERT INTO t3 VALUES(14538, 93657, 'ninety-three thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(14539, 95971, 'ninety-five thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(14540, 19687, 'nineteen thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(14541, 7745, 'seven thousand seven hundred forty-five'); INSERT INTO t3 VALUES(14542, 95532, 'ninety-five thousand five hundred thirty-two'); INSERT INTO t3 VALUES(14543, 47374, 'forty-seven thousand three hundred seventy-four'); INSERT INTO t3 VALUES(14544, 66780, 'sixty-six thousand seven hundred eighty'); INSERT INTO t3 VALUES(14545, 6678, 'six thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(14546, 1601, 'one thousand six hundred one'); INSERT INTO t3 VALUES(14547, 56690, 'fifty-six thousand six hundred ninety'); INSERT INTO t3 VALUES(14548, 61801, 'sixty-one thousand eight hundred one'); INSERT INTO t3 VALUES(14549, 18009, 'eighteen thousand nine'); INSERT INTO t3 VALUES(14550, 28747, 'twenty-eight thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(14551, 96227, 'ninety-six thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(14552, 43763, 'forty-three thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(14553, 54158, 'fifty-four thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(14554, 1818, 'one thousand eight hundred eighteen'); INSERT INTO t3 VALUES(14555, 24612, 'twenty-four thousand six hundred twelve'); INSERT INTO t3 VALUES(14556, 46670, 'forty-six thousand six hundred seventy'); INSERT INTO t3 VALUES(14557, 91736, 'ninety-one thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(14558, 17262, 'seventeen thousand two hundred sixty-two'); INSERT INTO t3 VALUES(14559, 78245, 'seventy-eight thousand two hundred forty-five'); INSERT INTO t3 VALUES(14560, 97168, 'ninety-seven thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(14561, 80533, 'eighty thousand five hundred thirty-three'); INSERT INTO t3 VALUES(14562, 55311, 'fifty-five thousand three hundred eleven'); INSERT INTO t3 VALUES(14563, 54210, 'fifty-four thousand two hundred ten'); INSERT INTO t3 VALUES(14564, 48670, 'forty-eight thousand six hundred seventy'); INSERT INTO t3 VALUES(14565, 69117, 'sixty-nine thousand one hundred seventeen'); INSERT INTO t3 VALUES(14566, 45768, 'forty-five thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(14567, 15407, 'fifteen thousand four hundred seven'); INSERT INTO t3 VALUES(14568, 50050, 'fifty thousand fifty'); INSERT INTO t3 VALUES(14569, 94177, 'ninety-four thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(14570, 48762, 'forty-eight thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(14571, 8834, 'eight thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(14572, 21433, 'twenty-one thousand four hundred thirty-three'); INSERT INTO t3 VALUES(14573, 14194, 'fourteen thousand one hundred ninety-four'); INSERT INTO t3 VALUES(14574, 38715, 'thirty-eight thousand seven hundred fifteen'); INSERT INTO t3 VALUES(14575, 62721, 'sixty-two thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(14576, 2339, 'two thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(14577, 35936, 'thirty-five thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(14578, 62465, 'sixty-two thousand four hundred sixty-five'); INSERT INTO t3 VALUES(14579, 31586, 'thirty-one thousand five hundred eighty-six'); INSERT INTO t3 VALUES(14580, 95906, 'ninety-five thousand nine hundred six'); INSERT INTO t3 VALUES(14581, 71334, 'seventy-one thousand three hundred thirty-four'); INSERT INTO t3 VALUES(14582, 84597, 'eighty-four thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(14583, 43360, 'forty-three thousand three hundred sixty'); INSERT INTO t3 VALUES(14584, 38515, 'thirty-eight thousand five hundred fifteen'); INSERT INTO t3 VALUES(14585, 76042, 'seventy-six thousand forty-two'); INSERT INTO t3 VALUES(14586, 96336, 'ninety-six thousand three hundred thirty-six'); INSERT INTO t3 VALUES(14587, 42584, 'forty-two thousand five hundred eighty-four'); INSERT INTO t3 VALUES(14588, 13018, 'thirteen thousand eighteen'); INSERT INTO t3 VALUES(14589, 17527, 'seventeen thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(14590, 18176, 'eighteen thousand one hundred seventy-six'); INSERT INTO t3 VALUES(14591, 545, 'five hundred forty-five'); INSERT INTO t3 VALUES(14592, 33773, 'thirty-three thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(14593, 56040, 'fifty-six thousand forty'); INSERT INTO t3 VALUES(14594, 78879, 'seventy-eight thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(14595, 19897, 'nineteen thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(14596, 65648, 'sixty-five thousand six hundred forty-eight'); INSERT INTO t3 VALUES(14597, 76673, 'seventy-six thousand six hundred seventy-three'); INSERT INTO t3 VALUES(14598, 61800, 'sixty-one thousand eight hundred'); INSERT INTO t3 VALUES(14599, 84624, 'eighty-four thousand six hundred twenty-four'); INSERT INTO t3 VALUES(14600, 431, 'four hundred thirty-one'); INSERT INTO t3 VALUES(14601, 10560, 'ten thousand five hundred sixty'); INSERT INTO t3 VALUES(14602, 21302, 'twenty-one thousand three hundred two'); INSERT INTO t3 VALUES(14603, 39091, 'thirty-nine thousand ninety-one'); INSERT INTO t3 VALUES(14604, 65297, 'sixty-five thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(14605, 13528, 'thirteen thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(14606, 28883, 'twenty-eight thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(14607, 28028, 'twenty-eight thousand twenty-eight'); INSERT INTO t3 VALUES(14608, 81862, 'eighty-one thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(14609, 43381, 'forty-three thousand three hundred eighty-one'); INSERT INTO t3 VALUES(14610, 16975, 'sixteen thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(14611, 8729, 'eight thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(14612, 61607, 'sixty-one thousand six hundred seven'); INSERT INTO t3 VALUES(14613, 8924, 'eight thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(14614, 45396, 'forty-five thousand three hundred ninety-six'); INSERT INTO t3 VALUES(14615, 18785, 'eighteen thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(14616, 58059, 'fifty-eight thousand fifty-nine'); INSERT INTO t3 VALUES(14617, 7730, 'seven thousand seven hundred thirty'); INSERT INTO t3 VALUES(14618, 92665, 'ninety-two thousand six hundred sixty-five'); INSERT INTO t3 VALUES(14619, 11839, 'eleven thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(14620, 14363, 'fourteen thousand three hundred sixty-three'); INSERT INTO t3 VALUES(14621, 44468, 'forty-four thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(14622, 1261, 'one thousand two hundred sixty-one'); INSERT INTO t3 VALUES(14623, 70566, 'seventy thousand five hundred sixty-six'); INSERT INTO t3 VALUES(14624, 84631, 'eighty-four thousand six hundred thirty-one'); INSERT INTO t3 VALUES(14625, 29741, 'twenty-nine thousand seven hundred forty-one'); INSERT INTO t3 VALUES(14626, 23415, 'twenty-three thousand four hundred fifteen'); INSERT INTO t3 VALUES(14627, 16647, 'sixteen thousand six hundred forty-seven'); INSERT INTO t3 VALUES(14628, 96296, 'ninety-six thousand two hundred ninety-six'); INSERT INTO t3 VALUES(14629, 22149, 'twenty-two thousand one hundred forty-nine'); INSERT INTO t3 VALUES(14630, 96119, 'ninety-six thousand one hundred nineteen'); INSERT INTO t3 VALUES(14631, 84117, 'eighty-four thousand one hundred seventeen'); INSERT INTO t3 VALUES(14632, 74454, 'seventy-four thousand four hundred fifty-four'); INSERT INTO t3 VALUES(14633, 35335, 'thirty-five thousand three hundred thirty-five'); INSERT INTO t3 VALUES(14634, 17656, 'seventeen thousand six hundred fifty-six'); INSERT INTO t3 VALUES(14635, 48971, 'forty-eight thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(14636, 30253, 'thirty thousand two hundred fifty-three'); INSERT INTO t3 VALUES(14637, 69918, 'sixty-nine thousand nine hundred eighteen'); INSERT INTO t3 VALUES(14638, 15651, 'fifteen thousand six hundred fifty-one'); INSERT INTO t3 VALUES(14639, 23684, 'twenty-three thousand six hundred eighty-four'); INSERT INTO t3 VALUES(14640, 53382, 'fifty-three thousand three hundred eighty-two'); INSERT INTO t3 VALUES(14641, 60408, 'sixty thousand four hundred eight'); INSERT INTO t3 VALUES(14642, 92, 'ninety-two'); INSERT INTO t3 VALUES(14643, 96043, 'ninety-six thousand forty-three'); INSERT INTO t3 VALUES(14644, 32274, 'thirty-two thousand two hundred seventy-four'); INSERT INTO t3 VALUES(14645, 33194, 'thirty-three thousand one hundred ninety-four'); INSERT INTO t3 VALUES(14646, 27182, 'twenty-seven thousand one hundred eighty-two'); INSERT INTO t3 VALUES(14647, 25971, 'twenty-five thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(14648, 61471, 'sixty-one thousand four hundred seventy-one'); INSERT INTO t3 VALUES(14649, 76607, 'seventy-six thousand six hundred seven'); INSERT INTO t3 VALUES(14650, 66598, 'sixty-six thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(14651, 73046, 'seventy-three thousand forty-six'); INSERT INTO t3 VALUES(14652, 60290, 'sixty thousand two hundred ninety'); INSERT INTO t3 VALUES(14653, 49954, 'forty-nine thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(14654, 40613, 'forty thousand six hundred thirteen'); INSERT INTO t3 VALUES(14655, 18493, 'eighteen thousand four hundred ninety-three'); INSERT INTO t3 VALUES(14656, 47749, 'forty-seven thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(14657, 10241, 'ten thousand two hundred forty-one'); INSERT INTO t3 VALUES(14658, 41418, 'forty-one thousand four hundred eighteen'); INSERT INTO t3 VALUES(14659, 63347, 'sixty-three thousand three hundred forty-seven'); INSERT INTO t3 VALUES(14660, 96691, 'ninety-six thousand six hundred ninety-one'); INSERT INTO t3 VALUES(14661, 36200, 'thirty-six thousand two hundred'); INSERT INTO t3 VALUES(14662, 40970, 'forty thousand nine hundred seventy'); INSERT INTO t3 VALUES(14663, 50620, 'fifty thousand six hundred twenty'); INSERT INTO t3 VALUES(14664, 9166, 'nine thousand one hundred sixty-six'); INSERT INTO t3 VALUES(14665, 79757, 'seventy-nine thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(14666, 16569, 'sixteen thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(14667, 58815, 'fifty-eight thousand eight hundred fifteen'); INSERT INTO t3 VALUES(14668, 40528, 'forty thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(14669, 94154, 'ninety-four thousand one hundred fifty-four'); INSERT INTO t3 VALUES(14670, 26496, 'twenty-six thousand four hundred ninety-six'); INSERT INTO t3 VALUES(14671, 26876, 'twenty-six thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(14672, 37035, 'thirty-seven thousand thirty-five'); INSERT INTO t3 VALUES(14673, 9839, 'nine thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(14674, 86149, 'eighty-six thousand one hundred forty-nine'); INSERT INTO t3 VALUES(14675, 1814, 'one thousand eight hundred fourteen'); INSERT INTO t3 VALUES(14676, 52484, 'fifty-two thousand four hundred eighty-four'); INSERT INTO t3 VALUES(14677, 27971, 'twenty-seven thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(14678, 83691, 'eighty-three thousand six hundred ninety-one'); INSERT INTO t3 VALUES(14679, 90928, 'ninety thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(14680, 38663, 'thirty-eight thousand six hundred sixty-three'); INSERT INTO t3 VALUES(14681, 1772, 'one thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(14682, 61583, 'sixty-one thousand five hundred eighty-three'); INSERT INTO t3 VALUES(14683, 53255, 'fifty-three thousand two hundred fifty-five'); INSERT INTO t3 VALUES(14684, 99600, 'ninety-nine thousand six hundred'); INSERT INTO t3 VALUES(14685, 76202, 'seventy-six thousand two hundred two'); INSERT INTO t3 VALUES(14686, 44120, 'forty-four thousand one hundred twenty'); INSERT INTO t3 VALUES(14687, 24322, 'twenty-four thousand three hundred twenty-two'); INSERT INTO t3 VALUES(14688, 21637, 'twenty-one thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(14689, 67258, 'sixty-seven thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(14690, 68273, 'sixty-eight thousand two hundred seventy-three'); INSERT INTO t3 VALUES(14691, 80361, 'eighty thousand three hundred sixty-one'); INSERT INTO t3 VALUES(14692, 68710, 'sixty-eight thousand seven hundred ten'); INSERT INTO t3 VALUES(14693, 67598, 'sixty-seven thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(14694, 89210, 'eighty-nine thousand two hundred ten'); INSERT INTO t3 VALUES(14695, 7539, 'seven thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(14696, 97320, 'ninety-seven thousand three hundred twenty'); INSERT INTO t3 VALUES(14697, 25192, 'twenty-five thousand one hundred ninety-two'); INSERT INTO t3 VALUES(14698, 94338, 'ninety-four thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(14699, 35995, 'thirty-five thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(14700, 90606, 'ninety thousand six hundred six'); INSERT INTO t3 VALUES(14701, 10162, 'ten thousand one hundred sixty-two'); INSERT INTO t3 VALUES(14702, 96067, 'ninety-six thousand sixty-seven'); INSERT INTO t3 VALUES(14703, 47228, 'forty-seven thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(14704, 24641, 'twenty-four thousand six hundred forty-one'); INSERT INTO t3 VALUES(14705, 23059, 'twenty-three thousand fifty-nine'); INSERT INTO t3 VALUES(14706, 10987, 'ten thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(14707, 43983, 'forty-three thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(14708, 91510, 'ninety-one thousand five hundred ten'); INSERT INTO t3 VALUES(14709, 37927, 'thirty-seven thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(14710, 76941, 'seventy-six thousand nine hundred forty-one'); INSERT INTO t3 VALUES(14711, 79922, 'seventy-nine thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(14712, 49050, 'forty-nine thousand fifty'); INSERT INTO t3 VALUES(14713, 58439, 'fifty-eight thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(14714, 28349, 'twenty-eight thousand three hundred forty-nine'); INSERT INTO t3 VALUES(14715, 94768, 'ninety-four thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(14716, 46010, 'forty-six thousand ten'); INSERT INTO t3 VALUES(14717, 93285, 'ninety-three thousand two hundred eighty-five'); INSERT INTO t3 VALUES(14718, 76260, 'seventy-six thousand two hundred sixty'); INSERT INTO t3 VALUES(14719, 40291, 'forty thousand two hundred ninety-one'); INSERT INTO t3 VALUES(14720, 58924, 'fifty-eight thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(14721, 7485, 'seven thousand four hundred eighty-five'); INSERT INTO t3 VALUES(14722, 2979, 'two thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(14723, 96733, 'ninety-six thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(14724, 88617, 'eighty-eight thousand six hundred seventeen'); INSERT INTO t3 VALUES(14725, 46276, 'forty-six thousand two hundred seventy-six'); INSERT INTO t3 VALUES(14726, 93069, 'ninety-three thousand sixty-nine'); INSERT INTO t3 VALUES(14727, 28286, 'twenty-eight thousand two hundred eighty-six'); INSERT INTO t3 VALUES(14728, 54933, 'fifty-four thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(14729, 10434, 'ten thousand four hundred thirty-four'); INSERT INTO t3 VALUES(14730, 50818, 'fifty thousand eight hundred eighteen'); INSERT INTO t3 VALUES(14731, 64699, 'sixty-four thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(14732, 77213, 'seventy-seven thousand two hundred thirteen'); INSERT INTO t3 VALUES(14733, 31291, 'thirty-one thousand two hundred ninety-one'); INSERT INTO t3 VALUES(14734, 86987, 'eighty-six thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(14735, 12738, 'twelve thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(14736, 33222, 'thirty-three thousand two hundred twenty-two'); INSERT INTO t3 VALUES(14737, 64977, 'sixty-four thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(14738, 99141, 'ninety-nine thousand one hundred forty-one'); INSERT INTO t3 VALUES(14739, 89130, 'eighty-nine thousand one hundred thirty'); INSERT INTO t3 VALUES(14740, 65348, 'sixty-five thousand three hundred forty-eight'); INSERT INTO t3 VALUES(14741, 18826, 'eighteen thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(14742, 82411, 'eighty-two thousand four hundred eleven'); INSERT INTO t3 VALUES(14743, 83515, 'eighty-three thousand five hundred fifteen'); INSERT INTO t3 VALUES(14744, 16623, 'sixteen thousand six hundred twenty-three'); INSERT INTO t3 VALUES(14745, 29742, 'twenty-nine thousand seven hundred forty-two'); INSERT INTO t3 VALUES(14746, 97023, 'ninety-seven thousand twenty-three'); INSERT INTO t3 VALUES(14747, 21967, 'twenty-one thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(14748, 15804, 'fifteen thousand eight hundred four'); INSERT INTO t3 VALUES(14749, 84800, 'eighty-four thousand eight hundred'); INSERT INTO t3 VALUES(14750, 63397, 'sixty-three thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(14751, 49999, 'forty-nine thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(14752, 3108, 'three thousand one hundred eight'); INSERT INTO t3 VALUES(14753, 87015, 'eighty-seven thousand fifteen'); INSERT INTO t3 VALUES(14754, 42119, 'forty-two thousand one hundred nineteen'); INSERT INTO t3 VALUES(14755, 31636, 'thirty-one thousand six hundred thirty-six'); INSERT INTO t3 VALUES(14756, 33528, 'thirty-three thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(14757, 65330, 'sixty-five thousand three hundred thirty'); INSERT INTO t3 VALUES(14758, 69672, 'sixty-nine thousand six hundred seventy-two'); INSERT INTO t3 VALUES(14759, 81612, 'eighty-one thousand six hundred twelve'); INSERT INTO t3 VALUES(14760, 34074, 'thirty-four thousand seventy-four'); INSERT INTO t3 VALUES(14761, 7038, 'seven thousand thirty-eight'); INSERT INTO t3 VALUES(14762, 73759, 'seventy-three thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(14763, 26853, 'twenty-six thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(14764, 79302, 'seventy-nine thousand three hundred two'); INSERT INTO t3 VALUES(14765, 23506, 'twenty-three thousand five hundred six'); INSERT INTO t3 VALUES(14766, 69411, 'sixty-nine thousand four hundred eleven'); INSERT INTO t3 VALUES(14767, 11155, 'eleven thousand one hundred fifty-five'); INSERT INTO t3 VALUES(14768, 40620, 'forty thousand six hundred twenty'); INSERT INTO t3 VALUES(14769, 18344, 'eighteen thousand three hundred forty-four'); INSERT INTO t3 VALUES(14770, 22042, 'twenty-two thousand forty-two'); INSERT INTO t3 VALUES(14771, 22681, 'twenty-two thousand six hundred eighty-one'); INSERT INTO t3 VALUES(14772, 71667, 'seventy-one thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(14773, 51150, 'fifty-one thousand one hundred fifty'); INSERT INTO t3 VALUES(14774, 28543, 'twenty-eight thousand five hundred forty-three'); INSERT INTO t3 VALUES(14775, 14495, 'fourteen thousand four hundred ninety-five'); INSERT INTO t3 VALUES(14776, 52373, 'fifty-two thousand three hundred seventy-three'); INSERT INTO t3 VALUES(14777, 20145, 'twenty thousand one hundred forty-five'); INSERT INTO t3 VALUES(14778, 25804, 'twenty-five thousand eight hundred four'); INSERT INTO t3 VALUES(14779, 75745, 'seventy-five thousand seven hundred forty-five'); INSERT INTO t3 VALUES(14780, 2670, 'two thousand six hundred seventy'); INSERT INTO t3 VALUES(14781, 31554, 'thirty-one thousand five hundred fifty-four'); INSERT INTO t3 VALUES(14782, 60319, 'sixty thousand three hundred nineteen'); INSERT INTO t3 VALUES(14783, 94965, 'ninety-four thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(14784, 68317, 'sixty-eight thousand three hundred seventeen'); INSERT INTO t3 VALUES(14785, 65496, 'sixty-five thousand four hundred ninety-six'); INSERT INTO t3 VALUES(14786, 14829, 'fourteen thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(14787, 62039, 'sixty-two thousand thirty-nine'); INSERT INTO t3 VALUES(14788, 78255, 'seventy-eight thousand two hundred fifty-five'); INSERT INTO t3 VALUES(14789, 55623, 'fifty-five thousand six hundred twenty-three'); INSERT INTO t3 VALUES(14790, 89645, 'eighty-nine thousand six hundred forty-five'); INSERT INTO t3 VALUES(14791, 83493, 'eighty-three thousand four hundred ninety-three'); INSERT INTO t3 VALUES(14792, 29073, 'twenty-nine thousand seventy-three'); INSERT INTO t3 VALUES(14793, 58226, 'fifty-eight thousand two hundred twenty-six'); INSERT INTO t3 VALUES(14794, 18239, 'eighteen thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(14795, 24851, 'twenty-four thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(14796, 48202, 'forty-eight thousand two hundred two'); INSERT INTO t3 VALUES(14797, 96300, 'ninety-six thousand three hundred'); INSERT INTO t3 VALUES(14798, 44737, 'forty-four thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(14799, 26558, 'twenty-six thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(14800, 98718, 'ninety-eight thousand seven hundred eighteen'); INSERT INTO t3 VALUES(14801, 26845, 'twenty-six thousand eight hundred forty-five'); INSERT INTO t3 VALUES(14802, 64692, 'sixty-four thousand six hundred ninety-two'); INSERT INTO t3 VALUES(14803, 5671, 'five thousand six hundred seventy-one'); INSERT INTO t3 VALUES(14804, 19624, 'nineteen thousand six hundred twenty-four'); INSERT INTO t3 VALUES(14805, 14552, 'fourteen thousand five hundred fifty-two'); INSERT INTO t3 VALUES(14806, 50990, 'fifty thousand nine hundred ninety'); INSERT INTO t3 VALUES(14807, 13238, 'thirteen thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(14808, 93617, 'ninety-three thousand six hundred seventeen'); INSERT INTO t3 VALUES(14809, 40089, 'forty thousand eighty-nine'); INSERT INTO t3 VALUES(14810, 88897, 'eighty-eight thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(14811, 84395, 'eighty-four thousand three hundred ninety-five'); INSERT INTO t3 VALUES(14812, 8229, 'eight thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(14813, 45799, 'forty-five thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(14814, 41014, 'forty-one thousand fourteen'); INSERT INTO t3 VALUES(14815, 23969, 'twenty-three thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(14816, 90422, 'ninety thousand four hundred twenty-two'); INSERT INTO t3 VALUES(14817, 76993, 'seventy-six thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(14818, 4635, 'four thousand six hundred thirty-five'); INSERT INTO t3 VALUES(14819, 61719, 'sixty-one thousand seven hundred nineteen'); INSERT INTO t3 VALUES(14820, 63981, 'sixty-three thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(14821, 72436, 'seventy-two thousand four hundred thirty-six'); INSERT INTO t3 VALUES(14822, 76396, 'seventy-six thousand three hundred ninety-six'); INSERT INTO t3 VALUES(14823, 36606, 'thirty-six thousand six hundred six'); INSERT INTO t3 VALUES(14824, 25753, 'twenty-five thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(14825, 2595, 'two thousand five hundred ninety-five'); INSERT INTO t3 VALUES(14826, 26604, 'twenty-six thousand six hundred four'); INSERT INTO t3 VALUES(14827, 79310, 'seventy-nine thousand three hundred ten'); INSERT INTO t3 VALUES(14828, 14786, 'fourteen thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(14829, 63633, 'sixty-three thousand six hundred thirty-three'); INSERT INTO t3 VALUES(14830, 28430, 'twenty-eight thousand four hundred thirty'); INSERT INTO t3 VALUES(14831, 84113, 'eighty-four thousand one hundred thirteen'); INSERT INTO t3 VALUES(14832, 13312, 'thirteen thousand three hundred twelve'); INSERT INTO t3 VALUES(14833, 2072, 'two thousand seventy-two'); INSERT INTO t3 VALUES(14834, 95674, 'ninety-five thousand six hundred seventy-four'); INSERT INTO t3 VALUES(14835, 26157, 'twenty-six thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(14836, 36267, 'thirty-six thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(14837, 62430, 'sixty-two thousand four hundred thirty'); INSERT INTO t3 VALUES(14838, 37766, 'thirty-seven thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(14839, 76086, 'seventy-six thousand eighty-six'); INSERT INTO t3 VALUES(14840, 26475, 'twenty-six thousand four hundred seventy-five'); INSERT INTO t3 VALUES(14841, 43407, 'forty-three thousand four hundred seven'); INSERT INTO t3 VALUES(14842, 22528, 'twenty-two thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(14843, 44323, 'forty-four thousand three hundred twenty-three'); INSERT INTO t3 VALUES(14844, 41830, 'forty-one thousand eight hundred thirty'); INSERT INTO t3 VALUES(14845, 96621, 'ninety-six thousand six hundred twenty-one'); INSERT INTO t3 VALUES(14846, 33664, 'thirty-three thousand six hundred sixty-four'); INSERT INTO t3 VALUES(14847, 71976, 'seventy-one thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(14848, 4884, 'four thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(14849, 23942, 'twenty-three thousand nine hundred forty-two'); INSERT INTO t3 VALUES(14850, 82899, 'eighty-two thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(14851, 11813, 'eleven thousand eight hundred thirteen'); INSERT INTO t3 VALUES(14852, 71725, 'seventy-one thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(14853, 31297, 'thirty-one thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(14854, 29492, 'twenty-nine thousand four hundred ninety-two'); INSERT INTO t3 VALUES(14855, 48771, 'forty-eight thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(14856, 45991, 'forty-five thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(14857, 10437, 'ten thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(14858, 54922, 'fifty-four thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(14859, 19106, 'nineteen thousand one hundred six'); INSERT INTO t3 VALUES(14860, 48819, 'forty-eight thousand eight hundred nineteen'); INSERT INTO t3 VALUES(14861, 2515, 'two thousand five hundred fifteen'); INSERT INTO t3 VALUES(14862, 65063, 'sixty-five thousand sixty-three'); INSERT INTO t3 VALUES(14863, 33414, 'thirty-three thousand four hundred fourteen'); INSERT INTO t3 VALUES(14864, 66107, 'sixty-six thousand one hundred seven'); INSERT INTO t3 VALUES(14865, 5307, 'five thousand three hundred seven'); INSERT INTO t3 VALUES(14866, 979, 'nine hundred seventy-nine'); INSERT INTO t3 VALUES(14867, 49605, 'forty-nine thousand six hundred five'); INSERT INTO t3 VALUES(14868, 6170, 'six thousand one hundred seventy'); INSERT INTO t3 VALUES(14869, 28136, 'twenty-eight thousand one hundred thirty-six'); INSERT INTO t3 VALUES(14870, 95342, 'ninety-five thousand three hundred forty-two'); INSERT INTO t3 VALUES(14871, 20883, 'twenty thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(14872, 70619, 'seventy thousand six hundred nineteen'); INSERT INTO t3 VALUES(14873, 89998, 'eighty-nine thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(14874, 26091, 'twenty-six thousand ninety-one'); INSERT INTO t3 VALUES(14875, 10527, 'ten thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(14876, 81134, 'eighty-one thousand one hundred thirty-four'); INSERT INTO t3 VALUES(14877, 39098, 'thirty-nine thousand ninety-eight'); INSERT INTO t3 VALUES(14878, 70841, 'seventy thousand eight hundred forty-one'); INSERT INTO t3 VALUES(14879, 51836, 'fifty-one thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(14880, 4935, 'four thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(14881, 7788, 'seven thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(14882, 90595, 'ninety thousand five hundred ninety-five'); INSERT INTO t3 VALUES(14883, 4865, 'four thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(14884, 88060, 'eighty-eight thousand sixty'); INSERT INTO t3 VALUES(14885, 20560, 'twenty thousand five hundred sixty'); INSERT INTO t3 VALUES(14886, 93983, 'ninety-three thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(14887, 4848, 'four thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(14888, 41796, 'forty-one thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(14889, 4761, 'four thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(14890, 93682, 'ninety-three thousand six hundred eighty-two'); INSERT INTO t3 VALUES(14891, 54567, 'fifty-four thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(14892, 64420, 'sixty-four thousand four hundred twenty'); INSERT INTO t3 VALUES(14893, 97054, 'ninety-seven thousand fifty-four'); INSERT INTO t3 VALUES(14894, 53773, 'fifty-three thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(14895, 29994, 'twenty-nine thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(14896, 4332, 'four thousand three hundred thirty-two'); INSERT INTO t3 VALUES(14897, 88187, 'eighty-eight thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(14898, 38629, 'thirty-eight thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(14899, 91071, 'ninety-one thousand seventy-one'); INSERT INTO t3 VALUES(14900, 47748, 'forty-seven thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(14901, 65322, 'sixty-five thousand three hundred twenty-two'); INSERT INTO t3 VALUES(14902, 32041, 'thirty-two thousand forty-one'); INSERT INTO t3 VALUES(14903, 20425, 'twenty thousand four hundred twenty-five'); INSERT INTO t3 VALUES(14904, 29704, 'twenty-nine thousand seven hundred four'); INSERT INTO t3 VALUES(14905, 36747, 'thirty-six thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(14906, 72935, 'seventy-two thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(14907, 66552, 'sixty-six thousand five hundred fifty-two'); INSERT INTO t3 VALUES(14908, 71347, 'seventy-one thousand three hundred forty-seven'); INSERT INTO t3 VALUES(14909, 21914, 'twenty-one thousand nine hundred fourteen'); INSERT INTO t3 VALUES(14910, 75330, 'seventy-five thousand three hundred thirty'); INSERT INTO t3 VALUES(14911, 74040, 'seventy-four thousand forty'); INSERT INTO t3 VALUES(14912, 38239, 'thirty-eight thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(14913, 53106, 'fifty-three thousand one hundred six'); INSERT INTO t3 VALUES(14914, 54499, 'fifty-four thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(14915, 12373, 'twelve thousand three hundred seventy-three'); INSERT INTO t3 VALUES(14916, 85494, 'eighty-five thousand four hundred ninety-four'); INSERT INTO t3 VALUES(14917, 32666, 'thirty-two thousand six hundred sixty-six'); INSERT INTO t3 VALUES(14918, 55173, 'fifty-five thousand one hundred seventy-three'); INSERT INTO t3 VALUES(14919, 97205, 'ninety-seven thousand two hundred five'); INSERT INTO t3 VALUES(14920, 33136, 'thirty-three thousand one hundred thirty-six'); INSERT INTO t3 VALUES(14921, 97678, 'ninety-seven thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(14922, 21070, 'twenty-one thousand seventy'); INSERT INTO t3 VALUES(14923, 35605, 'thirty-five thousand six hundred five'); INSERT INTO t3 VALUES(14924, 29698, 'twenty-nine thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(14925, 76243, 'seventy-six thousand two hundred forty-three'); INSERT INTO t3 VALUES(14926, 19999, 'nineteen thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(14927, 79076, 'seventy-nine thousand seventy-six'); INSERT INTO t3 VALUES(14928, 65351, 'sixty-five thousand three hundred fifty-one'); INSERT INTO t3 VALUES(14929, 78249, 'seventy-eight thousand two hundred forty-nine'); INSERT INTO t3 VALUES(14930, 7308, 'seven thousand three hundred eight'); INSERT INTO t3 VALUES(14931, 98436, 'ninety-eight thousand four hundred thirty-six'); INSERT INTO t3 VALUES(14932, 49595, 'forty-nine thousand five hundred ninety-five'); INSERT INTO t3 VALUES(14933, 96764, 'ninety-six thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(14934, 6612, 'six thousand six hundred twelve'); INSERT INTO t3 VALUES(14935, 21010, 'twenty-one thousand ten'); INSERT INTO t3 VALUES(14936, 41545, 'forty-one thousand five hundred forty-five'); INSERT INTO t3 VALUES(14937, 5713, 'five thousand seven hundred thirteen'); INSERT INTO t3 VALUES(14938, 69238, 'sixty-nine thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(14939, 21864, 'twenty-one thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(14940, 93295, 'ninety-three thousand two hundred ninety-five'); INSERT INTO t3 VALUES(14941, 788, 'seven hundred eighty-eight'); INSERT INTO t3 VALUES(14942, 32785, 'thirty-two thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(14943, 68994, 'sixty-eight thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(14944, 97350, 'ninety-seven thousand three hundred fifty'); INSERT INTO t3 VALUES(14945, 78785, 'seventy-eight thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(14946, 93985, 'ninety-three thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(14947, 14195, 'fourteen thousand one hundred ninety-five'); INSERT INTO t3 VALUES(14948, 54921, 'fifty-four thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(14949, 68516, 'sixty-eight thousand five hundred sixteen'); INSERT INTO t3 VALUES(14950, 50487, 'fifty thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(14951, 20389, 'twenty thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(14952, 37214, 'thirty-seven thousand two hundred fourteen'); INSERT INTO t3 VALUES(14953, 29725, 'twenty-nine thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(14954, 99687, 'ninety-nine thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(14955, 89462, 'eighty-nine thousand four hundred sixty-two'); INSERT INTO t3 VALUES(14956, 66416, 'sixty-six thousand four hundred sixteen'); INSERT INTO t3 VALUES(14957, 64494, 'sixty-four thousand four hundred ninety-four'); INSERT INTO t3 VALUES(14958, 13542, 'thirteen thousand five hundred forty-two'); INSERT INTO t3 VALUES(14959, 57723, 'fifty-seven thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(14960, 63327, 'sixty-three thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(14961, 50067, 'fifty thousand sixty-seven'); INSERT INTO t3 VALUES(14962, 64840, 'sixty-four thousand eight hundred forty'); INSERT INTO t3 VALUES(14963, 25890, 'twenty-five thousand eight hundred ninety'); INSERT INTO t3 VALUES(14964, 8217, 'eight thousand two hundred seventeen'); INSERT INTO t3 VALUES(14965, 95393, 'ninety-five thousand three hundred ninety-three'); INSERT INTO t3 VALUES(14966, 34495, 'thirty-four thousand four hundred ninety-five'); INSERT INTO t3 VALUES(14967, 58041, 'fifty-eight thousand forty-one'); INSERT INTO t3 VALUES(14968, 20691, 'twenty thousand six hundred ninety-one'); INSERT INTO t3 VALUES(14969, 38165, 'thirty-eight thousand one hundred sixty-five'); INSERT INTO t3 VALUES(14970, 85633, 'eighty-five thousand six hundred thirty-three'); INSERT INTO t3 VALUES(14971, 82115, 'eighty-two thousand one hundred fifteen'); INSERT INTO t3 VALUES(14972, 6720, 'six thousand seven hundred twenty'); INSERT INTO t3 VALUES(14973, 21940, 'twenty-one thousand nine hundred forty'); INSERT INTO t3 VALUES(14974, 65468, 'sixty-five thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(14975, 37278, 'thirty-seven thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(14976, 26972, 'twenty-six thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(14977, 55929, 'fifty-five thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(14978, 94039, 'ninety-four thousand thirty-nine'); INSERT INTO t3 VALUES(14979, 15596, 'fifteen thousand five hundred ninety-six'); INSERT INTO t3 VALUES(14980, 68242, 'sixty-eight thousand two hundred forty-two'); INSERT INTO t3 VALUES(14981, 36690, 'thirty-six thousand six hundred ninety'); INSERT INTO t3 VALUES(14982, 20648, 'twenty thousand six hundred forty-eight'); INSERT INTO t3 VALUES(14983, 41652, 'forty-one thousand six hundred fifty-two'); INSERT INTO t3 VALUES(14984, 97396, 'ninety-seven thousand three hundred ninety-six'); INSERT INTO t3 VALUES(14985, 65387, 'sixty-five thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(14986, 98366, 'ninety-eight thousand three hundred sixty-six'); INSERT INTO t3 VALUES(14987, 302, 'three hundred two'); INSERT INTO t3 VALUES(14988, 91288, 'ninety-one thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(14989, 98564, 'ninety-eight thousand five hundred sixty-four'); INSERT INTO t3 VALUES(14990, 99750, 'ninety-nine thousand seven hundred fifty'); INSERT INTO t3 VALUES(14991, 19715, 'nineteen thousand seven hundred fifteen'); INSERT INTO t3 VALUES(14992, 26296, 'twenty-six thousand two hundred ninety-six'); INSERT INTO t3 VALUES(14993, 36436, 'thirty-six thousand four hundred thirty-six'); INSERT INTO t3 VALUES(14994, 13402, 'thirteen thousand four hundred two'); INSERT INTO t3 VALUES(14995, 89198, 'eighty-nine thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(14996, 2298, 'two thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(14997, 31320, 'thirty-one thousand three hundred twenty'); INSERT INTO t3 VALUES(14998, 42469, 'forty-two thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(14999, 98056, 'ninety-eight thousand fifty-six'); INSERT INTO t3 VALUES(15000, 24312, 'twenty-four thousand three hundred twelve'); INSERT INTO t3 VALUES(15001, 48459, 'forty-eight thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(15002, 78491, 'seventy-eight thousand four hundred ninety-one'); INSERT INTO t3 VALUES(15003, 57934, 'fifty-seven thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(15004, 60247, 'sixty thousand two hundred forty-seven'); INSERT INTO t3 VALUES(15005, 2389, 'two thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(15006, 11267, 'eleven thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(15007, 70173, 'seventy thousand one hundred seventy-three'); INSERT INTO t3 VALUES(15008, 47493, 'forty-seven thousand four hundred ninety-three'); INSERT INTO t3 VALUES(15009, 33183, 'thirty-three thousand one hundred eighty-three'); INSERT INTO t3 VALUES(15010, 83222, 'eighty-three thousand two hundred twenty-two'); INSERT INTO t3 VALUES(15011, 51238, 'fifty-one thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(15012, 69383, 'sixty-nine thousand three hundred eighty-three'); INSERT INTO t3 VALUES(15013, 29037, 'twenty-nine thousand thirty-seven'); INSERT INTO t3 VALUES(15014, 40275, 'forty thousand two hundred seventy-five'); INSERT INTO t3 VALUES(15015, 65086, 'sixty-five thousand eighty-six'); INSERT INTO t3 VALUES(15016, 28340, 'twenty-eight thousand three hundred forty'); INSERT INTO t3 VALUES(15017, 41656, 'forty-one thousand six hundred fifty-six'); INSERT INTO t3 VALUES(15018, 12641, 'twelve thousand six hundred forty-one'); INSERT INTO t3 VALUES(15019, 94465, 'ninety-four thousand four hundred sixty-five'); INSERT INTO t3 VALUES(15020, 32260, 'thirty-two thousand two hundred sixty'); INSERT INTO t3 VALUES(15021, 40288, 'forty thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(15022, 12452, 'twelve thousand four hundred fifty-two'); INSERT INTO t3 VALUES(15023, 919, 'nine hundred nineteen'); INSERT INTO t3 VALUES(15024, 64311, 'sixty-four thousand three hundred eleven'); INSERT INTO t3 VALUES(15025, 30233, 'thirty thousand two hundred thirty-three'); INSERT INTO t3 VALUES(15026, 61123, 'sixty-one thousand one hundred twenty-three'); INSERT INTO t3 VALUES(15027, 41643, 'forty-one thousand six hundred forty-three'); INSERT INTO t3 VALUES(15028, 47552, 'forty-seven thousand five hundred fifty-two'); INSERT INTO t3 VALUES(15029, 34309, 'thirty-four thousand three hundred nine'); INSERT INTO t3 VALUES(15030, 34812, 'thirty-four thousand eight hundred twelve'); INSERT INTO t3 VALUES(15031, 87831, 'eighty-seven thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(15032, 61005, 'sixty-one thousand five'); INSERT INTO t3 VALUES(15033, 30859, 'thirty thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(15034, 94069, 'ninety-four thousand sixty-nine'); INSERT INTO t3 VALUES(15035, 83479, 'eighty-three thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(15036, 5123, 'five thousand one hundred twenty-three'); INSERT INTO t3 VALUES(15037, 75540, 'seventy-five thousand five hundred forty'); INSERT INTO t3 VALUES(15038, 9790, 'nine thousand seven hundred ninety'); INSERT INTO t3 VALUES(15039, 90672, 'ninety thousand six hundred seventy-two'); INSERT INTO t3 VALUES(15040, 10709, 'ten thousand seven hundred nine'); INSERT INTO t3 VALUES(15041, 8592, 'eight thousand five hundred ninety-two'); INSERT INTO t3 VALUES(15042, 43725, 'forty-three thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(15043, 1227, 'one thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(15044, 32559, 'thirty-two thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(15045, 1544, 'one thousand five hundred forty-four'); INSERT INTO t3 VALUES(15046, 57811, 'fifty-seven thousand eight hundred eleven'); INSERT INTO t3 VALUES(15047, 78062, 'seventy-eight thousand sixty-two'); INSERT INTO t3 VALUES(15048, 37334, 'thirty-seven thousand three hundred thirty-four'); INSERT INTO t3 VALUES(15049, 41926, 'forty-one thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(15050, 95826, 'ninety-five thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(15051, 58909, 'fifty-eight thousand nine hundred nine'); INSERT INTO t3 VALUES(15052, 89262, 'eighty-nine thousand two hundred sixty-two'); INSERT INTO t3 VALUES(15053, 34054, 'thirty-four thousand fifty-four'); INSERT INTO t3 VALUES(15054, 40249, 'forty thousand two hundred forty-nine'); INSERT INTO t3 VALUES(15055, 35047, 'thirty-five thousand forty-seven'); INSERT INTO t3 VALUES(15056, 69988, 'sixty-nine thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(15057, 56210, 'fifty-six thousand two hundred ten'); INSERT INTO t3 VALUES(15058, 99075, 'ninety-nine thousand seventy-five'); INSERT INTO t3 VALUES(15059, 94545, 'ninety-four thousand five hundred forty-five'); INSERT INTO t3 VALUES(15060, 85451, 'eighty-five thousand four hundred fifty-one'); INSERT INTO t3 VALUES(15061, 33577, 'thirty-three thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(15062, 59678, 'fifty-nine thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(15063, 16810, 'sixteen thousand eight hundred ten'); INSERT INTO t3 VALUES(15064, 8853, 'eight thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(15065, 64193, 'sixty-four thousand one hundred ninety-three'); INSERT INTO t3 VALUES(15066, 48195, 'forty-eight thousand one hundred ninety-five'); INSERT INTO t3 VALUES(15067, 36665, 'thirty-six thousand six hundred sixty-five'); INSERT INTO t3 VALUES(15068, 31579, 'thirty-one thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(15069, 98313, 'ninety-eight thousand three hundred thirteen'); INSERT INTO t3 VALUES(15070, 88972, 'eighty-eight thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(15071, 90902, 'ninety thousand nine hundred two'); INSERT INTO t3 VALUES(15072, 10554, 'ten thousand five hundred fifty-four'); INSERT INTO t3 VALUES(15073, 39186, 'thirty-nine thousand one hundred eighty-six'); INSERT INTO t3 VALUES(15074, 50974, 'fifty thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(15075, 75245, 'seventy-five thousand two hundred forty-five'); INSERT INTO t3 VALUES(15076, 53080, 'fifty-three thousand eighty'); INSERT INTO t3 VALUES(15077, 15656, 'fifteen thousand six hundred fifty-six'); INSERT INTO t3 VALUES(15078, 62057, 'sixty-two thousand fifty-seven'); INSERT INTO t3 VALUES(15079, 58774, 'fifty-eight thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(15080, 97382, 'ninety-seven thousand three hundred eighty-two'); INSERT INTO t3 VALUES(15081, 43349, 'forty-three thousand three hundred forty-nine'); INSERT INTO t3 VALUES(15082, 6745, 'six thousand seven hundred forty-five'); INSERT INTO t3 VALUES(15083, 27013, 'twenty-seven thousand thirteen'); INSERT INTO t3 VALUES(15084, 9994, 'nine thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(15085, 31823, 'thirty-one thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(15086, 78388, 'seventy-eight thousand three hundred eighty-eight'); INSERT INTO t3 VALUES(15087, 77119, 'seventy-seven thousand one hundred nineteen'); INSERT INTO t3 VALUES(15088, 56016, 'fifty-six thousand sixteen'); INSERT INTO t3 VALUES(15089, 42894, 'forty-two thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(15090, 66096, 'sixty-six thousand ninety-six'); INSERT INTO t3 VALUES(15091, 85017, 'eighty-five thousand seventeen'); INSERT INTO t3 VALUES(15092, 79847, 'seventy-nine thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(15093, 16920, 'sixteen thousand nine hundred twenty'); INSERT INTO t3 VALUES(15094, 93099, 'ninety-three thousand ninety-nine'); INSERT INTO t3 VALUES(15095, 35251, 'thirty-five thousand two hundred fifty-one'); INSERT INTO t3 VALUES(15096, 53434, 'fifty-three thousand four hundred thirty-four'); INSERT INTO t3 VALUES(15097, 10204, 'ten thousand two hundred four'); INSERT INTO t3 VALUES(15098, 50288, 'fifty thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(15099, 1180, 'one thousand one hundred eighty'); INSERT INTO t3 VALUES(15100, 96251, 'ninety-six thousand two hundred fifty-one'); INSERT INTO t3 VALUES(15101, 45406, 'forty-five thousand four hundred six'); INSERT INTO t3 VALUES(15102, 53607, 'fifty-three thousand six hundred seven'); INSERT INTO t3 VALUES(15103, 84373, 'eighty-four thousand three hundred seventy-three'); INSERT INTO t3 VALUES(15104, 4189, 'four thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(15105, 29865, 'twenty-nine thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(15106, 65752, 'sixty-five thousand seven hundred fifty-two'); INSERT INTO t3 VALUES(15107, 52589, 'fifty-two thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(15108, 9791, 'nine thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(15109, 87316, 'eighty-seven thousand three hundred sixteen'); INSERT INTO t3 VALUES(15110, 58209, 'fifty-eight thousand two hundred nine'); INSERT INTO t3 VALUES(15111, 39764, 'thirty-nine thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(15112, 21925, 'twenty-one thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(15113, 61637, 'sixty-one thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(15114, 70146, 'seventy thousand one hundred forty-six'); INSERT INTO t3 VALUES(15115, 27943, 'twenty-seven thousand nine hundred forty-three'); INSERT INTO t3 VALUES(15116, 8717, 'eight thousand seven hundred seventeen'); INSERT INTO t3 VALUES(15117, 5985, 'five thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(15118, 3557, 'three thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(15119, 6136, 'six thousand one hundred thirty-six'); INSERT INTO t3 VALUES(15120, 53281, 'fifty-three thousand two hundred eighty-one'); INSERT INTO t3 VALUES(15121, 52900, 'fifty-two thousand nine hundred'); INSERT INTO t3 VALUES(15122, 16339, 'sixteen thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(15123, 2927, 'two thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(15124, 83020, 'eighty-three thousand twenty'); INSERT INTO t3 VALUES(15125, 94829, 'ninety-four thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(15126, 8211, 'eight thousand two hundred eleven'); INSERT INTO t3 VALUES(15127, 92871, 'ninety-two thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(15128, 81871, 'eighty-one thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(15129, 44724, 'forty-four thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(15130, 20938, 'twenty thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(15131, 76790, 'seventy-six thousand seven hundred ninety'); INSERT INTO t3 VALUES(15132, 31461, 'thirty-one thousand four hundred sixty-one'); INSERT INTO t3 VALUES(15133, 54190, 'fifty-four thousand one hundred ninety'); INSERT INTO t3 VALUES(15134, 83218, 'eighty-three thousand two hundred eighteen'); INSERT INTO t3 VALUES(15135, 9374, 'nine thousand three hundred seventy-four'); INSERT INTO t3 VALUES(15136, 44996, 'forty-four thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(15137, 25919, 'twenty-five thousand nine hundred nineteen'); INSERT INTO t3 VALUES(15138, 14401, 'fourteen thousand four hundred one'); INSERT INTO t3 VALUES(15139, 89091, 'eighty-nine thousand ninety-one'); INSERT INTO t3 VALUES(15140, 7094, 'seven thousand ninety-four'); INSERT INTO t3 VALUES(15141, 89779, 'eighty-nine thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(15142, 45544, 'forty-five thousand five hundred forty-four'); INSERT INTO t3 VALUES(15143, 61814, 'sixty-one thousand eight hundred fourteen'); INSERT INTO t3 VALUES(15144, 75992, 'seventy-five thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(15145, 44953, 'forty-four thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(15146, 87908, 'eighty-seven thousand nine hundred eight'); INSERT INTO t3 VALUES(15147, 17184, 'seventeen thousand one hundred eighty-four'); INSERT INTO t3 VALUES(15148, 7494, 'seven thousand four hundred ninety-four'); INSERT INTO t3 VALUES(15149, 87607, 'eighty-seven thousand six hundred seven'); INSERT INTO t3 VALUES(15150, 68389, 'sixty-eight thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(15151, 30805, 'thirty thousand eight hundred five'); INSERT INTO t3 VALUES(15152, 52612, 'fifty-two thousand six hundred twelve'); INSERT INTO t3 VALUES(15153, 32799, 'thirty-two thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(15154, 51205, 'fifty-one thousand two hundred five'); INSERT INTO t3 VALUES(15155, 91303, 'ninety-one thousand three hundred three'); INSERT INTO t3 VALUES(15156, 43134, 'forty-three thousand one hundred thirty-four'); INSERT INTO t3 VALUES(15157, 40954, 'forty thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(15158, 96839, 'ninety-six thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(15159, 26383, 'twenty-six thousand three hundred eighty-three'); INSERT INTO t3 VALUES(15160, 22684, 'twenty-two thousand six hundred eighty-four'); INSERT INTO t3 VALUES(15161, 70925, 'seventy thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(15162, 51971, 'fifty-one thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(15163, 93460, 'ninety-three thousand four hundred sixty'); INSERT INTO t3 VALUES(15164, 96282, 'ninety-six thousand two hundred eighty-two'); INSERT INTO t3 VALUES(15165, 49349, 'forty-nine thousand three hundred forty-nine'); INSERT INTO t3 VALUES(15166, 68247, 'sixty-eight thousand two hundred forty-seven'); INSERT INTO t3 VALUES(15167, 87528, 'eighty-seven thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(15168, 10749, 'ten thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(15169, 7130, 'seven thousand one hundred thirty'); INSERT INTO t3 VALUES(15170, 19408, 'nineteen thousand four hundred eight'); INSERT INTO t3 VALUES(15171, 34355, 'thirty-four thousand three hundred fifty-five'); INSERT INTO t3 VALUES(15172, 7459, 'seven thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(15173, 98695, 'ninety-eight thousand six hundred ninety-five'); INSERT INTO t3 VALUES(15174, 74727, 'seventy-four thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(15175, 32950, 'thirty-two thousand nine hundred fifty'); INSERT INTO t3 VALUES(15176, 73806, 'seventy-three thousand eight hundred six'); INSERT INTO t3 VALUES(15177, 72083, 'seventy-two thousand eighty-three'); INSERT INTO t3 VALUES(15178, 70027, 'seventy thousand twenty-seven'); INSERT INTO t3 VALUES(15179, 30314, 'thirty thousand three hundred fourteen'); INSERT INTO t3 VALUES(15180, 32293, 'thirty-two thousand two hundred ninety-three'); INSERT INTO t3 VALUES(15181, 82222, 'eighty-two thousand two hundred twenty-two'); INSERT INTO t3 VALUES(15182, 89715, 'eighty-nine thousand seven hundred fifteen'); INSERT INTO t3 VALUES(15183, 27840, 'twenty-seven thousand eight hundred forty'); INSERT INTO t3 VALUES(15184, 54016, 'fifty-four thousand sixteen'); INSERT INTO t3 VALUES(15185, 46942, 'forty-six thousand nine hundred forty-two'); INSERT INTO t3 VALUES(15186, 47854, 'forty-seven thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(15187, 29209, 'twenty-nine thousand two hundred nine'); INSERT INTO t3 VALUES(15188, 82926, 'eighty-two thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(15189, 89013, 'eighty-nine thousand thirteen'); INSERT INTO t3 VALUES(15190, 90638, 'ninety thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(15191, 44679, 'forty-four thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(15192, 17617, 'seventeen thousand six hundred seventeen'); INSERT INTO t3 VALUES(15193, 85687, 'eighty-five thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(15194, 75840, 'seventy-five thousand eight hundred forty'); INSERT INTO t3 VALUES(15195, 27339, 'twenty-seven thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(15196, 31892, 'thirty-one thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(15197, 14552, 'fourteen thousand five hundred fifty-two'); INSERT INTO t3 VALUES(15198, 98296, 'ninety-eight thousand two hundred ninety-six'); INSERT INTO t3 VALUES(15199, 14840, 'fourteen thousand eight hundred forty'); INSERT INTO t3 VALUES(15200, 3633, 'three thousand six hundred thirty-three'); INSERT INTO t3 VALUES(15201, 88171, 'eighty-eight thousand one hundred seventy-one'); INSERT INTO t3 VALUES(15202, 5315, 'five thousand three hundred fifteen'); INSERT INTO t3 VALUES(15203, 52524, 'fifty-two thousand five hundred twenty-four'); INSERT INTO t3 VALUES(15204, 48973, 'forty-eight thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(15205, 53065, 'fifty-three thousand sixty-five'); INSERT INTO t3 VALUES(15206, 20083, 'twenty thousand eighty-three'); INSERT INTO t3 VALUES(15207, 18069, 'eighteen thousand sixty-nine'); INSERT INTO t3 VALUES(15208, 46100, 'forty-six thousand one hundred'); INSERT INTO t3 VALUES(15209, 4467, 'four thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(15210, 39098, 'thirty-nine thousand ninety-eight'); INSERT INTO t3 VALUES(15211, 32186, 'thirty-two thousand one hundred eighty-six'); INSERT INTO t3 VALUES(15212, 73930, 'seventy-three thousand nine hundred thirty'); INSERT INTO t3 VALUES(15213, 89006, 'eighty-nine thousand six'); INSERT INTO t3 VALUES(15214, 21675, 'twenty-one thousand six hundred seventy-five'); INSERT INTO t3 VALUES(15215, 13837, 'thirteen thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(15216, 30740, 'thirty thousand seven hundred forty'); INSERT INTO t3 VALUES(15217, 53517, 'fifty-three thousand five hundred seventeen'); INSERT INTO t3 VALUES(15218, 10831, 'ten thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(15219, 85924, 'eighty-five thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(15220, 1226, 'one thousand two hundred twenty-six'); INSERT INTO t3 VALUES(15221, 75393, 'seventy-five thousand three hundred ninety-three'); INSERT INTO t3 VALUES(15222, 27748, 'twenty-seven thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(15223, 61966, 'sixty-one thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(15224, 27482, 'twenty-seven thousand four hundred eighty-two'); INSERT INTO t3 VALUES(15225, 34456, 'thirty-four thousand four hundred fifty-six'); INSERT INTO t3 VALUES(15226, 55243, 'fifty-five thousand two hundred forty-three'); INSERT INTO t3 VALUES(15227, 81705, 'eighty-one thousand seven hundred five'); INSERT INTO t3 VALUES(15228, 72449, 'seventy-two thousand four hundred forty-nine'); INSERT INTO t3 VALUES(15229, 25870, 'twenty-five thousand eight hundred seventy'); INSERT INTO t3 VALUES(15230, 56666, 'fifty-six thousand six hundred sixty-six'); INSERT INTO t3 VALUES(15231, 99702, 'ninety-nine thousand seven hundred two'); INSERT INTO t3 VALUES(15232, 38426, 'thirty-eight thousand four hundred twenty-six'); INSERT INTO t3 VALUES(15233, 3947, 'three thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(15234, 64428, 'sixty-four thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(15235, 75604, 'seventy-five thousand six hundred four'); INSERT INTO t3 VALUES(15236, 69304, 'sixty-nine thousand three hundred four'); INSERT INTO t3 VALUES(15237, 47275, 'forty-seven thousand two hundred seventy-five'); INSERT INTO t3 VALUES(15238, 189, 'one hundred eighty-nine'); INSERT INTO t3 VALUES(15239, 37105, 'thirty-seven thousand one hundred five'); INSERT INTO t3 VALUES(15240, 39332, 'thirty-nine thousand three hundred thirty-two'); INSERT INTO t3 VALUES(15241, 94420, 'ninety-four thousand four hundred twenty'); INSERT INTO t3 VALUES(15242, 88422, 'eighty-eight thousand four hundred twenty-two'); INSERT INTO t3 VALUES(15243, 32271, 'thirty-two thousand two hundred seventy-one'); INSERT INTO t3 VALUES(15244, 6911, 'six thousand nine hundred eleven'); INSERT INTO t3 VALUES(15245, 2246, 'two thousand two hundred forty-six'); INSERT INTO t3 VALUES(15246, 57039, 'fifty-seven thousand thirty-nine'); INSERT INTO t3 VALUES(15247, 83255, 'eighty-three thousand two hundred fifty-five'); INSERT INTO t3 VALUES(15248, 45845, 'forty-five thousand eight hundred forty-five'); INSERT INTO t3 VALUES(15249, 45221, 'forty-five thousand two hundred twenty-one'); INSERT INTO t3 VALUES(15250, 61423, 'sixty-one thousand four hundred twenty-three'); INSERT INTO t3 VALUES(15251, 32602, 'thirty-two thousand six hundred two'); INSERT INTO t3 VALUES(15252, 56957, 'fifty-six thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(15253, 60214, 'sixty thousand two hundred fourteen'); INSERT INTO t3 VALUES(15254, 41559, 'forty-one thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(15255, 13004, 'thirteen thousand four'); INSERT INTO t3 VALUES(15256, 21032, 'twenty-one thousand thirty-two'); INSERT INTO t3 VALUES(15257, 63630, 'sixty-three thousand six hundred thirty'); INSERT INTO t3 VALUES(15258, 54179, 'fifty-four thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(15259, 99707, 'ninety-nine thousand seven hundred seven'); INSERT INTO t3 VALUES(15260, 65951, 'sixty-five thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(15261, 76709, 'seventy-six thousand seven hundred nine'); INSERT INTO t3 VALUES(15262, 95585, 'ninety-five thousand five hundred eighty-five'); INSERT INTO t3 VALUES(15263, 85603, 'eighty-five thousand six hundred three'); INSERT INTO t3 VALUES(15264, 28235, 'twenty-eight thousand two hundred thirty-five'); INSERT INTO t3 VALUES(15265, 61653, 'sixty-one thousand six hundred fifty-three'); INSERT INTO t3 VALUES(15266, 95054, 'ninety-five thousand fifty-four'); INSERT INTO t3 VALUES(15267, 71257, 'seventy-one thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(15268, 56321, 'fifty-six thousand three hundred twenty-one'); INSERT INTO t3 VALUES(15269, 29625, 'twenty-nine thousand six hundred twenty-five'); INSERT INTO t3 VALUES(15270, 30291, 'thirty thousand two hundred ninety-one'); INSERT INTO t3 VALUES(15271, 33091, 'thirty-three thousand ninety-one'); INSERT INTO t3 VALUES(15272, 91296, 'ninety-one thousand two hundred ninety-six'); INSERT INTO t3 VALUES(15273, 52439, 'fifty-two thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(15274, 94504, 'ninety-four thousand five hundred four'); INSERT INTO t3 VALUES(15275, 56825, 'fifty-six thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(15276, 85384, 'eighty-five thousand three hundred eighty-four'); INSERT INTO t3 VALUES(15277, 831, 'eight hundred thirty-one'); INSERT INTO t3 VALUES(15278, 95252, 'ninety-five thousand two hundred fifty-two'); INSERT INTO t3 VALUES(15279, 38926, 'thirty-eight thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(15280, 86963, 'eighty-six thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(15281, 56364, 'fifty-six thousand three hundred sixty-four'); INSERT INTO t3 VALUES(15282, 62775, 'sixty-two thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(15283, 99223, 'ninety-nine thousand two hundred twenty-three'); INSERT INTO t3 VALUES(15284, 88778, 'eighty-eight thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(15285, 20115, 'twenty thousand one hundred fifteen'); INSERT INTO t3 VALUES(15286, 51919, 'fifty-one thousand nine hundred nineteen'); INSERT INTO t3 VALUES(15287, 98400, 'ninety-eight thousand four hundred'); INSERT INTO t3 VALUES(15288, 44049, 'forty-four thousand forty-nine'); INSERT INTO t3 VALUES(15289, 59049, 'fifty-nine thousand forty-nine'); INSERT INTO t3 VALUES(15290, 38583, 'thirty-eight thousand five hundred eighty-three'); INSERT INTO t3 VALUES(15291, 96495, 'ninety-six thousand four hundred ninety-five'); INSERT INTO t3 VALUES(15292, 83335, 'eighty-three thousand three hundred thirty-five'); INSERT INTO t3 VALUES(15293, 78994, 'seventy-eight thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(15294, 24197, 'twenty-four thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(15295, 56202, 'fifty-six thousand two hundred two'); INSERT INTO t3 VALUES(15296, 25225, 'twenty-five thousand two hundred twenty-five'); INSERT INTO t3 VALUES(15297, 29783, 'twenty-nine thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(15298, 41034, 'forty-one thousand thirty-four'); INSERT INTO t3 VALUES(15299, 97372, 'ninety-seven thousand three hundred seventy-two'); INSERT INTO t3 VALUES(15300, 95756, 'ninety-five thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(15301, 40816, 'forty thousand eight hundred sixteen'); INSERT INTO t3 VALUES(15302, 1667, 'one thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(15303, 40673, 'forty thousand six hundred seventy-three'); INSERT INTO t3 VALUES(15304, 73939, 'seventy-three thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(15305, 71785, 'seventy-one thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(15306, 64919, 'sixty-four thousand nine hundred nineteen'); INSERT INTO t3 VALUES(15307, 41301, 'forty-one thousand three hundred one'); INSERT INTO t3 VALUES(15308, 95111, 'ninety-five thousand one hundred eleven'); INSERT INTO t3 VALUES(15309, 6169, 'six thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(15310, 13050, 'thirteen thousand fifty'); INSERT INTO t3 VALUES(15311, 6444, 'six thousand four hundred forty-four'); INSERT INTO t3 VALUES(15312, 1395, 'one thousand three hundred ninety-five'); INSERT INTO t3 VALUES(15313, 31331, 'thirty-one thousand three hundred thirty-one'); INSERT INTO t3 VALUES(15314, 92688, 'ninety-two thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(15315, 95693, 'ninety-five thousand six hundred ninety-three'); INSERT INTO t3 VALUES(15316, 56211, 'fifty-six thousand two hundred eleven'); INSERT INTO t3 VALUES(15317, 34657, 'thirty-four thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(15318, 26844, 'twenty-six thousand eight hundred forty-four'); INSERT INTO t3 VALUES(15319, 66581, 'sixty-six thousand five hundred eighty-one'); INSERT INTO t3 VALUES(15320, 40256, 'forty thousand two hundred fifty-six'); INSERT INTO t3 VALUES(15321, 81516, 'eighty-one thousand five hundred sixteen'); INSERT INTO t3 VALUES(15322, 51781, 'fifty-one thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(15323, 16434, 'sixteen thousand four hundred thirty-four'); INSERT INTO t3 VALUES(15324, 10127, 'ten thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(15325, 41196, 'forty-one thousand one hundred ninety-six'); INSERT INTO t3 VALUES(15326, 64562, 'sixty-four thousand five hundred sixty-two'); INSERT INTO t3 VALUES(15327, 19383, 'nineteen thousand three hundred eighty-three'); INSERT INTO t3 VALUES(15328, 94087, 'ninety-four thousand eighty-seven'); INSERT INTO t3 VALUES(15329, 51878, 'fifty-one thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(15330, 48812, 'forty-eight thousand eight hundred twelve'); INSERT INTO t3 VALUES(15331, 94582, 'ninety-four thousand five hundred eighty-two'); INSERT INTO t3 VALUES(15332, 20214, 'twenty thousand two hundred fourteen'); INSERT INTO t3 VALUES(15333, 18830, 'eighteen thousand eight hundred thirty'); INSERT INTO t3 VALUES(15334, 64582, 'sixty-four thousand five hundred eighty-two'); INSERT INTO t3 VALUES(15335, 52008, 'fifty-two thousand eight'); INSERT INTO t3 VALUES(15336, 21911, 'twenty-one thousand nine hundred eleven'); INSERT INTO t3 VALUES(15337, 76122, 'seventy-six thousand one hundred twenty-two'); INSERT INTO t3 VALUES(15338, 97286, 'ninety-seven thousand two hundred eighty-six'); INSERT INTO t3 VALUES(15339, 74177, 'seventy-four thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(15340, 56231, 'fifty-six thousand two hundred thirty-one'); INSERT INTO t3 VALUES(15341, 51242, 'fifty-one thousand two hundred forty-two'); INSERT INTO t3 VALUES(15342, 64052, 'sixty-four thousand fifty-two'); INSERT INTO t3 VALUES(15343, 36548, 'thirty-six thousand five hundred forty-eight'); INSERT INTO t3 VALUES(15344, 12798, 'twelve thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(15345, 18539, 'eighteen thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(15346, 89895, 'eighty-nine thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(15347, 64855, 'sixty-four thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(15348, 66380, 'sixty-six thousand three hundred eighty'); INSERT INTO t3 VALUES(15349, 53006, 'fifty-three thousand six'); INSERT INTO t3 VALUES(15350, 5062, 'five thousand sixty-two'); INSERT INTO t3 VALUES(15351, 11178, 'eleven thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(15352, 72292, 'seventy-two thousand two hundred ninety-two'); INSERT INTO t3 VALUES(15353, 48624, 'forty-eight thousand six hundred twenty-four'); INSERT INTO t3 VALUES(15354, 48421, 'forty-eight thousand four hundred twenty-one'); INSERT INTO t3 VALUES(15355, 91356, 'ninety-one thousand three hundred fifty-six'); INSERT INTO t3 VALUES(15356, 5997, 'five thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(15357, 49684, 'forty-nine thousand six hundred eighty-four'); INSERT INTO t3 VALUES(15358, 8597, 'eight thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(15359, 87449, 'eighty-seven thousand four hundred forty-nine'); INSERT INTO t3 VALUES(15360, 63129, 'sixty-three thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(15361, 9320, 'nine thousand three hundred twenty'); INSERT INTO t3 VALUES(15362, 37962, 'thirty-seven thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(15363, 56329, 'fifty-six thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(15364, 99423, 'ninety-nine thousand four hundred twenty-three'); INSERT INTO t3 VALUES(15365, 94529, 'ninety-four thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(15366, 32555, 'thirty-two thousand five hundred fifty-five'); INSERT INTO t3 VALUES(15367, 61818, 'sixty-one thousand eight hundred eighteen'); INSERT INTO t3 VALUES(15368, 79419, 'seventy-nine thousand four hundred nineteen'); INSERT INTO t3 VALUES(15369, 48659, 'forty-eight thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(15370, 6360, 'six thousand three hundred sixty'); INSERT INTO t3 VALUES(15371, 13590, 'thirteen thousand five hundred ninety'); INSERT INTO t3 VALUES(15372, 65950, 'sixty-five thousand nine hundred fifty'); INSERT INTO t3 VALUES(15373, 7124, 'seven thousand one hundred twenty-four'); INSERT INTO t3 VALUES(15374, 30300, 'thirty thousand three hundred'); INSERT INTO t3 VALUES(15375, 44695, 'forty-four thousand six hundred ninety-five'); INSERT INTO t3 VALUES(15376, 51090, 'fifty-one thousand ninety'); INSERT INTO t3 VALUES(15377, 64297, 'sixty-four thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(15378, 75586, 'seventy-five thousand five hundred eighty-six'); INSERT INTO t3 VALUES(15379, 44763, 'forty-four thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(15380, 76894, 'seventy-six thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(15381, 58198, 'fifty-eight thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(15382, 66968, 'sixty-six thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(15383, 41683, 'forty-one thousand six hundred eighty-three'); INSERT INTO t3 VALUES(15384, 62876, 'sixty-two thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(15385, 88946, 'eighty-eight thousand nine hundred forty-six'); INSERT INTO t3 VALUES(15386, 94781, 'ninety-four thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(15387, 75499, 'seventy-five thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(15388, 9810, 'nine thousand eight hundred ten'); INSERT INTO t3 VALUES(15389, 76002, 'seventy-six thousand two'); INSERT INTO t3 VALUES(15390, 50520, 'fifty thousand five hundred twenty'); INSERT INTO t3 VALUES(15391, 73645, 'seventy-three thousand six hundred forty-five'); INSERT INTO t3 VALUES(15392, 47325, 'forty-seven thousand three hundred twenty-five'); INSERT INTO t3 VALUES(15393, 9843, 'nine thousand eight hundred forty-three'); INSERT INTO t3 VALUES(15394, 94023, 'ninety-four thousand twenty-three'); INSERT INTO t3 VALUES(15395, 67362, 'sixty-seven thousand three hundred sixty-two'); INSERT INTO t3 VALUES(15396, 24942, 'twenty-four thousand nine hundred forty-two'); INSERT INTO t3 VALUES(15397, 32226, 'thirty-two thousand two hundred twenty-six'); INSERT INTO t3 VALUES(15398, 33866, 'thirty-three thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(15399, 51620, 'fifty-one thousand six hundred twenty'); INSERT INTO t3 VALUES(15400, 38992, 'thirty-eight thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(15401, 36468, 'thirty-six thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(15402, 73214, 'seventy-three thousand two hundred fourteen'); INSERT INTO t3 VALUES(15403, 14517, 'fourteen thousand five hundred seventeen'); INSERT INTO t3 VALUES(15404, 59435, 'fifty-nine thousand four hundred thirty-five'); INSERT INTO t3 VALUES(15405, 12805, 'twelve thousand eight hundred five'); INSERT INTO t3 VALUES(15406, 9955, 'nine thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(15407, 82672, 'eighty-two thousand six hundred seventy-two'); INSERT INTO t3 VALUES(15408, 44340, 'forty-four thousand three hundred forty'); INSERT INTO t3 VALUES(15409, 57866, 'fifty-seven thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(15410, 19575, 'nineteen thousand five hundred seventy-five'); INSERT INTO t3 VALUES(15411, 47928, 'forty-seven thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(15412, 90723, 'ninety thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(15413, 99434, 'ninety-nine thousand four hundred thirty-four'); INSERT INTO t3 VALUES(15414, 1969, 'one thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(15415, 82788, 'eighty-two thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(15416, 5265, 'five thousand two hundred sixty-five'); INSERT INTO t3 VALUES(15417, 47184, 'forty-seven thousand one hundred eighty-four'); INSERT INTO t3 VALUES(15418, 14677, 'fourteen thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(15419, 76920, 'seventy-six thousand nine hundred twenty'); INSERT INTO t3 VALUES(15420, 22209, 'twenty-two thousand two hundred nine'); INSERT INTO t3 VALUES(15421, 58818, 'fifty-eight thousand eight hundred eighteen'); INSERT INTO t3 VALUES(15422, 70708, 'seventy thousand seven hundred eight'); INSERT INTO t3 VALUES(15423, 45378, 'forty-five thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(15424, 42092, 'forty-two thousand ninety-two'); INSERT INTO t3 VALUES(15425, 6883, 'six thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(15426, 20513, 'twenty thousand five hundred thirteen'); INSERT INTO t3 VALUES(15427, 65932, 'sixty-five thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(15428, 73963, 'seventy-three thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(15429, 18038, 'eighteen thousand thirty-eight'); INSERT INTO t3 VALUES(15430, 74803, 'seventy-four thousand eight hundred three'); INSERT INTO t3 VALUES(15431, 31482, 'thirty-one thousand four hundred eighty-two'); INSERT INTO t3 VALUES(15432, 81695, 'eighty-one thousand six hundred ninety-five'); INSERT INTO t3 VALUES(15433, 68728, 'sixty-eight thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(15434, 67661, 'sixty-seven thousand six hundred sixty-one'); INSERT INTO t3 VALUES(15435, 54724, 'fifty-four thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(15436, 5391, 'five thousand three hundred ninety-one'); INSERT INTO t3 VALUES(15437, 44146, 'forty-four thousand one hundred forty-six'); INSERT INTO t3 VALUES(15438, 90343, 'ninety thousand three hundred forty-three'); INSERT INTO t3 VALUES(15439, 95208, 'ninety-five thousand two hundred eight'); INSERT INTO t3 VALUES(15440, 64272, 'sixty-four thousand two hundred seventy-two'); INSERT INTO t3 VALUES(15441, 99068, 'ninety-nine thousand sixty-eight'); INSERT INTO t3 VALUES(15442, 31652, 'thirty-one thousand six hundred fifty-two'); INSERT INTO t3 VALUES(15443, 40310, 'forty thousand three hundred ten'); INSERT INTO t3 VALUES(15444, 96665, 'ninety-six thousand six hundred sixty-five'); INSERT INTO t3 VALUES(15445, 60894, 'sixty thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(15446, 54553, 'fifty-four thousand five hundred fifty-three'); INSERT INTO t3 VALUES(15447, 19617, 'nineteen thousand six hundred seventeen'); INSERT INTO t3 VALUES(15448, 27605, 'twenty-seven thousand six hundred five'); INSERT INTO t3 VALUES(15449, 57490, 'fifty-seven thousand four hundred ninety'); INSERT INTO t3 VALUES(15450, 81444, 'eighty-one thousand four hundred forty-four'); INSERT INTO t3 VALUES(15451, 30833, 'thirty thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(15452, 76711, 'seventy-six thousand seven hundred eleven'); INSERT INTO t3 VALUES(15453, 9248, 'nine thousand two hundred forty-eight'); INSERT INTO t3 VALUES(15454, 37547, 'thirty-seven thousand five hundred forty-seven'); INSERT INTO t3 VALUES(15455, 2020, 'two thousand twenty'); INSERT INTO t3 VALUES(15456, 43137, 'forty-three thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(15457, 45929, 'forty-five thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(15458, 67445, 'sixty-seven thousand four hundred forty-five'); INSERT INTO t3 VALUES(15459, 3117, 'three thousand one hundred seventeen'); INSERT INTO t3 VALUES(15460, 91073, 'ninety-one thousand seventy-three'); INSERT INTO t3 VALUES(15461, 93809, 'ninety-three thousand eight hundred nine'); INSERT INTO t3 VALUES(15462, 60740, 'sixty thousand seven hundred forty'); INSERT INTO t3 VALUES(15463, 84024, 'eighty-four thousand twenty-four'); INSERT INTO t3 VALUES(15464, 25320, 'twenty-five thousand three hundred twenty'); INSERT INTO t3 VALUES(15465, 7755, 'seven thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(15466, 55645, 'fifty-five thousand six hundred forty-five'); INSERT INTO t3 VALUES(15467, 12025, 'twelve thousand twenty-five'); INSERT INTO t3 VALUES(15468, 88285, 'eighty-eight thousand two hundred eighty-five'); INSERT INTO t3 VALUES(15469, 68818, 'sixty-eight thousand eight hundred eighteen'); INSERT INTO t3 VALUES(15470, 74935, 'seventy-four thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(15471, 18407, 'eighteen thousand four hundred seven'); INSERT INTO t3 VALUES(15472, 72695, 'seventy-two thousand six hundred ninety-five'); INSERT INTO t3 VALUES(15473, 95558, 'ninety-five thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(15474, 95336, 'ninety-five thousand three hundred thirty-six'); INSERT INTO t3 VALUES(15475, 81969, 'eighty-one thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(15476, 70686, 'seventy thousand six hundred eighty-six'); INSERT INTO t3 VALUES(15477, 71231, 'seventy-one thousand two hundred thirty-one'); INSERT INTO t3 VALUES(15478, 24524, 'twenty-four thousand five hundred twenty-four'); INSERT INTO t3 VALUES(15479, 94822, 'ninety-four thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(15480, 19421, 'nineteen thousand four hundred twenty-one'); INSERT INTO t3 VALUES(15481, 30813, 'thirty thousand eight hundred thirteen'); INSERT INTO t3 VALUES(15482, 93902, 'ninety-three thousand nine hundred two'); INSERT INTO t3 VALUES(15483, 94260, 'ninety-four thousand two hundred sixty'); INSERT INTO t3 VALUES(15484, 60975, 'sixty thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(15485, 72872, 'seventy-two thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(15486, 65741, 'sixty-five thousand seven hundred forty-one'); INSERT INTO t3 VALUES(15487, 82101, 'eighty-two thousand one hundred one'); INSERT INTO t3 VALUES(15488, 14434, 'fourteen thousand four hundred thirty-four'); INSERT INTO t3 VALUES(15489, 40356, 'forty thousand three hundred fifty-six'); INSERT INTO t3 VALUES(15490, 17390, 'seventeen thousand three hundred ninety'); INSERT INTO t3 VALUES(15491, 43054, 'forty-three thousand fifty-four'); INSERT INTO t3 VALUES(15492, 30814, 'thirty thousand eight hundred fourteen'); INSERT INTO t3 VALUES(15493, 78776, 'seventy-eight thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(15494, 3878, 'three thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(15495, 84175, 'eighty-four thousand one hundred seventy-five'); INSERT INTO t3 VALUES(15496, 2918, 'two thousand nine hundred eighteen'); INSERT INTO t3 VALUES(15497, 77896, 'seventy-seven thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(15498, 78047, 'seventy-eight thousand forty-seven'); INSERT INTO t3 VALUES(15499, 91207, 'ninety-one thousand two hundred seven'); INSERT INTO t3 VALUES(15500, 32139, 'thirty-two thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(15501, 350, 'three hundred fifty'); INSERT INTO t3 VALUES(15502, 9474, 'nine thousand four hundred seventy-four'); INSERT INTO t3 VALUES(15503, 26932, 'twenty-six thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(15504, 32224, 'thirty-two thousand two hundred twenty-four'); INSERT INTO t3 VALUES(15505, 27952, 'twenty-seven thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(15506, 56252, 'fifty-six thousand two hundred fifty-two'); INSERT INTO t3 VALUES(15507, 31413, 'thirty-one thousand four hundred thirteen'); INSERT INTO t3 VALUES(15508, 51205, 'fifty-one thousand two hundred five'); INSERT INTO t3 VALUES(15509, 44065, 'forty-four thousand sixty-five'); INSERT INTO t3 VALUES(15510, 1268, 'one thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(15511, 46053, 'forty-six thousand fifty-three'); INSERT INTO t3 VALUES(15512, 26724, 'twenty-six thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(15513, 3986, 'three thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(15514, 31623, 'thirty-one thousand six hundred twenty-three'); INSERT INTO t3 VALUES(15515, 47262, 'forty-seven thousand two hundred sixty-two'); INSERT INTO t3 VALUES(15516, 32036, 'thirty-two thousand thirty-six'); INSERT INTO t3 VALUES(15517, 84270, 'eighty-four thousand two hundred seventy'); INSERT INTO t3 VALUES(15518, 57826, 'fifty-seven thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(15519, 69694, 'sixty-nine thousand six hundred ninety-four'); INSERT INTO t3 VALUES(15520, 86780, 'eighty-six thousand seven hundred eighty'); INSERT INTO t3 VALUES(15521, 29766, 'twenty-nine thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(15522, 70457, 'seventy thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(15523, 12357, 'twelve thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(15524, 6569, 'six thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(15525, 57650, 'fifty-seven thousand six hundred fifty'); INSERT INTO t3 VALUES(15526, 42102, 'forty-two thousand one hundred two'); INSERT INTO t3 VALUES(15527, 491, 'four hundred ninety-one'); INSERT INTO t3 VALUES(15528, 8547, 'eight thousand five hundred forty-seven'); INSERT INTO t3 VALUES(15529, 3720, 'three thousand seven hundred twenty'); INSERT INTO t3 VALUES(15530, 20799, 'twenty thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(15531, 48268, 'forty-eight thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(15532, 72420, 'seventy-two thousand four hundred twenty'); INSERT INTO t3 VALUES(15533, 44593, 'forty-four thousand five hundred ninety-three'); INSERT INTO t3 VALUES(15534, 87184, 'eighty-seven thousand one hundred eighty-four'); INSERT INTO t3 VALUES(15535, 37084, 'thirty-seven thousand eighty-four'); INSERT INTO t3 VALUES(15536, 98810, 'ninety-eight thousand eight hundred ten'); INSERT INTO t3 VALUES(15537, 71066, 'seventy-one thousand sixty-six'); INSERT INTO t3 VALUES(15538, 92659, 'ninety-two thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(15539, 44022, 'forty-four thousand twenty-two'); INSERT INTO t3 VALUES(15540, 45634, 'forty-five thousand six hundred thirty-four'); INSERT INTO t3 VALUES(15541, 57085, 'fifty-seven thousand eighty-five'); INSERT INTO t3 VALUES(15542, 73174, 'seventy-three thousand one hundred seventy-four'); INSERT INTO t3 VALUES(15543, 1105, 'one thousand one hundred five'); INSERT INTO t3 VALUES(15544, 88577, 'eighty-eight thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(15545, 48066, 'forty-eight thousand sixty-six'); INSERT INTO t3 VALUES(15546, 4841, 'four thousand eight hundred forty-one'); INSERT INTO t3 VALUES(15547, 76625, 'seventy-six thousand six hundred twenty-five'); INSERT INTO t3 VALUES(15548, 40559, 'forty thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(15549, 21395, 'twenty-one thousand three hundred ninety-five'); INSERT INTO t3 VALUES(15550, 6657, 'six thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(15551, 27024, 'twenty-seven thousand twenty-four'); INSERT INTO t3 VALUES(15552, 15913, 'fifteen thousand nine hundred thirteen'); INSERT INTO t3 VALUES(15553, 63823, 'sixty-three thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(15554, 68258, 'sixty-eight thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(15555, 40155, 'forty thousand one hundred fifty-five'); INSERT INTO t3 VALUES(15556, 75624, 'seventy-five thousand six hundred twenty-four'); INSERT INTO t3 VALUES(15557, 74218, 'seventy-four thousand two hundred eighteen'); INSERT INTO t3 VALUES(15558, 57172, 'fifty-seven thousand one hundred seventy-two'); INSERT INTO t3 VALUES(15559, 35342, 'thirty-five thousand three hundred forty-two'); INSERT INTO t3 VALUES(15560, 95966, 'ninety-five thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(15561, 1465, 'one thousand four hundred sixty-five'); INSERT INTO t3 VALUES(15562, 71536, 'seventy-one thousand five hundred thirty-six'); INSERT INTO t3 VALUES(15563, 84352, 'eighty-four thousand three hundred fifty-two'); INSERT INTO t3 VALUES(15564, 31812, 'thirty-one thousand eight hundred twelve'); INSERT INTO t3 VALUES(15565, 23847, 'twenty-three thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(15566, 21254, 'twenty-one thousand two hundred fifty-four'); INSERT INTO t3 VALUES(15567, 85969, 'eighty-five thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(15568, 98266, 'ninety-eight thousand two hundred sixty-six'); INSERT INTO t3 VALUES(15569, 22063, 'twenty-two thousand sixty-three'); INSERT INTO t3 VALUES(15570, 35764, 'thirty-five thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(15571, 4904, 'four thousand nine hundred four'); INSERT INTO t3 VALUES(15572, 19127, 'nineteen thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(15573, 32867, 'thirty-two thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(15574, 88541, 'eighty-eight thousand five hundred forty-one'); INSERT INTO t3 VALUES(15575, 87898, 'eighty-seven thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(15576, 98948, 'ninety-eight thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(15577, 93534, 'ninety-three thousand five hundred thirty-four'); INSERT INTO t3 VALUES(15578, 92973, 'ninety-two thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(15579, 78496, 'seventy-eight thousand four hundred ninety-six'); INSERT INTO t3 VALUES(15580, 66900, 'sixty-six thousand nine hundred'); INSERT INTO t3 VALUES(15581, 97447, 'ninety-seven thousand four hundred forty-seven'); INSERT INTO t3 VALUES(15582, 89535, 'eighty-nine thousand five hundred thirty-five'); INSERT INTO t3 VALUES(15583, 70522, 'seventy thousand five hundred twenty-two'); INSERT INTO t3 VALUES(15584, 14458, 'fourteen thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(15585, 18063, 'eighteen thousand sixty-three'); INSERT INTO t3 VALUES(15586, 80696, 'eighty thousand six hundred ninety-six'); INSERT INTO t3 VALUES(15587, 95327, 'ninety-five thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(15588, 50265, 'fifty thousand two hundred sixty-five'); INSERT INTO t3 VALUES(15589, 73877, 'seventy-three thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(15590, 84161, 'eighty-four thousand one hundred sixty-one'); INSERT INTO t3 VALUES(15591, 44658, 'forty-four thousand six hundred fifty-eight'); INSERT INTO t3 VALUES(15592, 42609, 'forty-two thousand six hundred nine'); INSERT INTO t3 VALUES(15593, 84581, 'eighty-four thousand five hundred eighty-one'); INSERT INTO t3 VALUES(15594, 66835, 'sixty-six thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(15595, 61856, 'sixty-one thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(15596, 34083, 'thirty-four thousand eighty-three'); INSERT INTO t3 VALUES(15597, 69322, 'sixty-nine thousand three hundred twenty-two'); INSERT INTO t3 VALUES(15598, 66222, 'sixty-six thousand two hundred twenty-two'); INSERT INTO t3 VALUES(15599, 23245, 'twenty-three thousand two hundred forty-five'); INSERT INTO t3 VALUES(15600, 44352, 'forty-four thousand three hundred fifty-two'); INSERT INTO t3 VALUES(15601, 85721, 'eighty-five thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(15602, 21126, 'twenty-one thousand one hundred twenty-six'); INSERT INTO t3 VALUES(15603, 21775, 'twenty-one thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(15604, 69027, 'sixty-nine thousand twenty-seven'); INSERT INTO t3 VALUES(15605, 92896, 'ninety-two thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(15606, 6056, 'six thousand fifty-six'); INSERT INTO t3 VALUES(15607, 21216, 'twenty-one thousand two hundred sixteen'); INSERT INTO t3 VALUES(15608, 33335, 'thirty-three thousand three hundred thirty-five'); INSERT INTO t3 VALUES(15609, 46550, 'forty-six thousand five hundred fifty'); INSERT INTO t3 VALUES(15610, 33635, 'thirty-three thousand six hundred thirty-five'); INSERT INTO t3 VALUES(15611, 73447, 'seventy-three thousand four hundred forty-seven'); INSERT INTO t3 VALUES(15612, 42517, 'forty-two thousand five hundred seventeen'); INSERT INTO t3 VALUES(15613, 45154, 'forty-five thousand one hundred fifty-four'); INSERT INTO t3 VALUES(15614, 87054, 'eighty-seven thousand fifty-four'); INSERT INTO t3 VALUES(15615, 95552, 'ninety-five thousand five hundred fifty-two'); INSERT INTO t3 VALUES(15616, 42509, 'forty-two thousand five hundred nine'); INSERT INTO t3 VALUES(15617, 53218, 'fifty-three thousand two hundred eighteen'); INSERT INTO t3 VALUES(15618, 28067, 'twenty-eight thousand sixty-seven'); INSERT INTO t3 VALUES(15619, 4553, 'four thousand five hundred fifty-three'); INSERT INTO t3 VALUES(15620, 93782, 'ninety-three thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(15621, 11969, 'eleven thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(15622, 83594, 'eighty-three thousand five hundred ninety-four'); INSERT INTO t3 VALUES(15623, 59747, 'fifty-nine thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(15624, 53397, 'fifty-three thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(15625, 26971, 'twenty-six thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(15626, 11884, 'eleven thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(15627, 30798, 'thirty thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(15628, 20639, 'twenty thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(15629, 48773, 'forty-eight thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(15630, 36322, 'thirty-six thousand three hundred twenty-two'); INSERT INTO t3 VALUES(15631, 85659, 'eighty-five thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(15632, 60447, 'sixty thousand four hundred forty-seven'); INSERT INTO t3 VALUES(15633, 62408, 'sixty-two thousand four hundred eight'); INSERT INTO t3 VALUES(15634, 89423, 'eighty-nine thousand four hundred twenty-three'); INSERT INTO t3 VALUES(15635, 4500, 'four thousand five hundred'); INSERT INTO t3 VALUES(15636, 10906, 'ten thousand nine hundred six'); INSERT INTO t3 VALUES(15637, 43008, 'forty-three thousand eight'); INSERT INTO t3 VALUES(15638, 538, 'five hundred thirty-eight'); INSERT INTO t3 VALUES(15639, 74504, 'seventy-four thousand five hundred four'); INSERT INTO t3 VALUES(15640, 14763, 'fourteen thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(15641, 71382, 'seventy-one thousand three hundred eighty-two'); INSERT INTO t3 VALUES(15642, 3321, 'three thousand three hundred twenty-one'); INSERT INTO t3 VALUES(15643, 96983, 'ninety-six thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(15644, 6240, 'six thousand two hundred forty'); INSERT INTO t3 VALUES(15645, 44308, 'forty-four thousand three hundred eight'); INSERT INTO t3 VALUES(15646, 31682, 'thirty-one thousand six hundred eighty-two'); INSERT INTO t3 VALUES(15647, 49152, 'forty-nine thousand one hundred fifty-two'); INSERT INTO t3 VALUES(15648, 42366, 'forty-two thousand three hundred sixty-six'); INSERT INTO t3 VALUES(15649, 33822, 'thirty-three thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(15650, 16229, 'sixteen thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(15651, 16421, 'sixteen thousand four hundred twenty-one'); INSERT INTO t3 VALUES(15652, 64615, 'sixty-four thousand six hundred fifteen'); INSERT INTO t3 VALUES(15653, 79938, 'seventy-nine thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(15654, 83185, 'eighty-three thousand one hundred eighty-five'); INSERT INTO t3 VALUES(15655, 17177, 'seventeen thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(15656, 12554, 'twelve thousand five hundred fifty-four'); INSERT INTO t3 VALUES(15657, 59341, 'fifty-nine thousand three hundred forty-one'); INSERT INTO t3 VALUES(15658, 70773, 'seventy thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(15659, 89818, 'eighty-nine thousand eight hundred eighteen'); INSERT INTO t3 VALUES(15660, 84378, 'eighty-four thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(15661, 59971, 'fifty-nine thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(15662, 91733, 'ninety-one thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(15663, 75806, 'seventy-five thousand eight hundred six'); INSERT INTO t3 VALUES(15664, 43785, 'forty-three thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(15665, 43764, 'forty-three thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(15666, 57761, 'fifty-seven thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(15667, 85252, 'eighty-five thousand two hundred fifty-two'); INSERT INTO t3 VALUES(15668, 19643, 'nineteen thousand six hundred forty-three'); INSERT INTO t3 VALUES(15669, 81796, 'eighty-one thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(15670, 94310, 'ninety-four thousand three hundred ten'); INSERT INTO t3 VALUES(15671, 11687, 'eleven thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(15672, 78338, 'seventy-eight thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(15673, 97652, 'ninety-seven thousand six hundred fifty-two'); INSERT INTO t3 VALUES(15674, 75142, 'seventy-five thousand one hundred forty-two'); INSERT INTO t3 VALUES(15675, 54356, 'fifty-four thousand three hundred fifty-six'); INSERT INTO t3 VALUES(15676, 61108, 'sixty-one thousand one hundred eight'); INSERT INTO t3 VALUES(15677, 40225, 'forty thousand two hundred twenty-five'); INSERT INTO t3 VALUES(15678, 67635, 'sixty-seven thousand six hundred thirty-five'); INSERT INTO t3 VALUES(15679, 36218, 'thirty-six thousand two hundred eighteen'); INSERT INTO t3 VALUES(15680, 30738, 'thirty thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(15681, 41289, 'forty-one thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(15682, 72411, 'seventy-two thousand four hundred eleven'); INSERT INTO t3 VALUES(15683, 7192, 'seven thousand one hundred ninety-two'); INSERT INTO t3 VALUES(15684, 69013, 'sixty-nine thousand thirteen'); INSERT INTO t3 VALUES(15685, 80966, 'eighty thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(15686, 42431, 'forty-two thousand four hundred thirty-one'); INSERT INTO t3 VALUES(15687, 42877, 'forty-two thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(15688, 39315, 'thirty-nine thousand three hundred fifteen'); INSERT INTO t3 VALUES(15689, 34061, 'thirty-four thousand sixty-one'); INSERT INTO t3 VALUES(15690, 13457, 'thirteen thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(15691, 79104, 'seventy-nine thousand one hundred four'); INSERT INTO t3 VALUES(15692, 67954, 'sixty-seven thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(15693, 12001, 'twelve thousand one'); INSERT INTO t3 VALUES(15694, 54317, 'fifty-four thousand three hundred seventeen'); INSERT INTO t3 VALUES(15695, 15385, 'fifteen thousand three hundred eighty-five'); INSERT INTO t3 VALUES(15696, 60047, 'sixty thousand forty-seven'); INSERT INTO t3 VALUES(15697, 61315, 'sixty-one thousand three hundred fifteen'); INSERT INTO t3 VALUES(15698, 45573, 'forty-five thousand five hundred seventy-three'); INSERT INTO t3 VALUES(15699, 24967, 'twenty-four thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(15700, 67584, 'sixty-seven thousand five hundred eighty-four'); INSERT INTO t3 VALUES(15701, 10226, 'ten thousand two hundred twenty-six'); INSERT INTO t3 VALUES(15702, 95759, 'ninety-five thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(15703, 91262, 'ninety-one thousand two hundred sixty-two'); INSERT INTO t3 VALUES(15704, 50559, 'fifty thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(15705, 97383, 'ninety-seven thousand three hundred eighty-three'); INSERT INTO t3 VALUES(15706, 56746, 'fifty-six thousand seven hundred forty-six'); INSERT INTO t3 VALUES(15707, 20422, 'twenty thousand four hundred twenty-two'); INSERT INTO t3 VALUES(15708, 38250, 'thirty-eight thousand two hundred fifty'); INSERT INTO t3 VALUES(15709, 92201, 'ninety-two thousand two hundred one'); INSERT INTO t3 VALUES(15710, 68104, 'sixty-eight thousand one hundred four'); INSERT INTO t3 VALUES(15711, 28795, 'twenty-eight thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(15712, 87416, 'eighty-seven thousand four hundred sixteen'); INSERT INTO t3 VALUES(15713, 20602, 'twenty thousand six hundred two'); INSERT INTO t3 VALUES(15714, 13791, 'thirteen thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(15715, 79861, 'seventy-nine thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(15716, 20005, 'twenty thousand five'); INSERT INTO t3 VALUES(15717, 69614, 'sixty-nine thousand six hundred fourteen'); INSERT INTO t3 VALUES(15718, 25071, 'twenty-five thousand seventy-one'); INSERT INTO t3 VALUES(15719, 62503, 'sixty-two thousand five hundred three'); INSERT INTO t3 VALUES(15720, 69073, 'sixty-nine thousand seventy-three'); INSERT INTO t3 VALUES(15721, 78212, 'seventy-eight thousand two hundred twelve'); INSERT INTO t3 VALUES(15722, 97084, 'ninety-seven thousand eighty-four'); INSERT INTO t3 VALUES(15723, 21195, 'twenty-one thousand one hundred ninety-five'); INSERT INTO t3 VALUES(15724, 60542, 'sixty thousand five hundred forty-two'); INSERT INTO t3 VALUES(15725, 52533, 'fifty-two thousand five hundred thirty-three'); INSERT INTO t3 VALUES(15726, 82899, 'eighty-two thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(15727, 68450, 'sixty-eight thousand four hundred fifty'); INSERT INTO t3 VALUES(15728, 19189, 'nineteen thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(15729, 27181, 'twenty-seven thousand one hundred eighty-one'); INSERT INTO t3 VALUES(15730, 40376, 'forty thousand three hundred seventy-six'); INSERT INTO t3 VALUES(15731, 16341, 'sixteen thousand three hundred forty-one'); INSERT INTO t3 VALUES(15732, 92738, 'ninety-two thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(15733, 53368, 'fifty-three thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(15734, 55383, 'fifty-five thousand three hundred eighty-three'); INSERT INTO t3 VALUES(15735, 21569, 'twenty-one thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(15736, 11134, 'eleven thousand one hundred thirty-four'); INSERT INTO t3 VALUES(15737, 44808, 'forty-four thousand eight hundred eight'); INSERT INTO t3 VALUES(15738, 82905, 'eighty-two thousand nine hundred five'); INSERT INTO t3 VALUES(15739, 80952, 'eighty thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(15740, 1588, 'one thousand five hundred eighty-eight'); INSERT INTO t3 VALUES(15741, 14497, 'fourteen thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(15742, 4170, 'four thousand one hundred seventy'); INSERT INTO t3 VALUES(15743, 35543, 'thirty-five thousand five hundred forty-three'); INSERT INTO t3 VALUES(15744, 61346, 'sixty-one thousand three hundred forty-six'); INSERT INTO t3 VALUES(15745, 5614, 'five thousand six hundred fourteen'); INSERT INTO t3 VALUES(15746, 35975, 'thirty-five thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(15747, 48674, 'forty-eight thousand six hundred seventy-four'); INSERT INTO t3 VALUES(15748, 81427, 'eighty-one thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(15749, 71471, 'seventy-one thousand four hundred seventy-one'); INSERT INTO t3 VALUES(15750, 71200, 'seventy-one thousand two hundred'); INSERT INTO t3 VALUES(15751, 75890, 'seventy-five thousand eight hundred ninety'); INSERT INTO t3 VALUES(15752, 13088, 'thirteen thousand eighty-eight'); INSERT INTO t3 VALUES(15753, 19567, 'nineteen thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(15754, 88286, 'eighty-eight thousand two hundred eighty-six'); INSERT INTO t3 VALUES(15755, 10822, 'ten thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(15756, 73853, 'seventy-three thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(15757, 58448, 'fifty-eight thousand four hundred forty-eight'); INSERT INTO t3 VALUES(15758, 55431, 'fifty-five thousand four hundred thirty-one'); INSERT INTO t3 VALUES(15759, 898, 'eight hundred ninety-eight'); INSERT INTO t3 VALUES(15760, 54258, 'fifty-four thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(15761, 58699, 'fifty-eight thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(15762, 44903, 'forty-four thousand nine hundred three'); INSERT INTO t3 VALUES(15763, 40042, 'forty thousand forty-two'); INSERT INTO t3 VALUES(15764, 4641, 'four thousand six hundred forty-one'); INSERT INTO t3 VALUES(15765, 96301, 'ninety-six thousand three hundred one'); INSERT INTO t3 VALUES(15766, 73044, 'seventy-three thousand forty-four'); INSERT INTO t3 VALUES(15767, 72434, 'seventy-two thousand four hundred thirty-four'); INSERT INTO t3 VALUES(15768, 85941, 'eighty-five thousand nine hundred forty-one'); INSERT INTO t3 VALUES(15769, 14424, 'fourteen thousand four hundred twenty-four'); INSERT INTO t3 VALUES(15770, 81697, 'eighty-one thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(15771, 91811, 'ninety-one thousand eight hundred eleven'); INSERT INTO t3 VALUES(15772, 35268, 'thirty-five thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(15773, 70058, 'seventy thousand fifty-eight'); INSERT INTO t3 VALUES(15774, 36253, 'thirty-six thousand two hundred fifty-three'); INSERT INTO t3 VALUES(15775, 20459, 'twenty thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(15776, 80544, 'eighty thousand five hundred forty-four'); INSERT INTO t3 VALUES(15777, 67655, 'sixty-seven thousand six hundred fifty-five'); INSERT INTO t3 VALUES(15778, 27480, 'twenty-seven thousand four hundred eighty'); INSERT INTO t3 VALUES(15779, 16348, 'sixteen thousand three hundred forty-eight'); INSERT INTO t3 VALUES(15780, 75500, 'seventy-five thousand five hundred'); INSERT INTO t3 VALUES(15781, 21443, 'twenty-one thousand four hundred forty-three'); INSERT INTO t3 VALUES(15782, 40079, 'forty thousand seventy-nine'); INSERT INTO t3 VALUES(15783, 62601, 'sixty-two thousand six hundred one'); INSERT INTO t3 VALUES(15784, 49688, 'forty-nine thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(15785, 74956, 'seventy-four thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(15786, 6530, 'six thousand five hundred thirty'); INSERT INTO t3 VALUES(15787, 65597, 'sixty-five thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(15788, 24680, 'twenty-four thousand six hundred eighty'); INSERT INTO t3 VALUES(15789, 48273, 'forty-eight thousand two hundred seventy-three'); INSERT INTO t3 VALUES(15790, 78826, 'seventy-eight thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(15791, 91324, 'ninety-one thousand three hundred twenty-four'); INSERT INTO t3 VALUES(15792, 73637, 'seventy-three thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(15793, 53471, 'fifty-three thousand four hundred seventy-one'); INSERT INTO t3 VALUES(15794, 70629, 'seventy thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(15795, 9735, 'nine thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(15796, 6108, 'six thousand one hundred eight'); INSERT INTO t3 VALUES(15797, 38855, 'thirty-eight thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(15798, 73926, 'seventy-three thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(15799, 43288, 'forty-three thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(15800, 12859, 'twelve thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(15801, 27847, 'twenty-seven thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(15802, 2827, 'two thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(15803, 54025, 'fifty-four thousand twenty-five'); INSERT INTO t3 VALUES(15804, 76576, 'seventy-six thousand five hundred seventy-six'); INSERT INTO t3 VALUES(15805, 72236, 'seventy-two thousand two hundred thirty-six'); INSERT INTO t3 VALUES(15806, 96420, 'ninety-six thousand four hundred twenty'); INSERT INTO t3 VALUES(15807, 6322, 'six thousand three hundred twenty-two'); INSERT INTO t3 VALUES(15808, 73095, 'seventy-three thousand ninety-five'); INSERT INTO t3 VALUES(15809, 72603, 'seventy-two thousand six hundred three'); INSERT INTO t3 VALUES(15810, 20120, 'twenty thousand one hundred twenty'); INSERT INTO t3 VALUES(15811, 92849, 'ninety-two thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(15812, 90127, 'ninety thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(15813, 53449, 'fifty-three thousand four hundred forty-nine'); INSERT INTO t3 VALUES(15814, 57535, 'fifty-seven thousand five hundred thirty-five'); INSERT INTO t3 VALUES(15815, 38151, 'thirty-eight thousand one hundred fifty-one'); INSERT INTO t3 VALUES(15816, 84575, 'eighty-four thousand five hundred seventy-five'); INSERT INTO t3 VALUES(15817, 57975, 'fifty-seven thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(15818, 54378, 'fifty-four thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(15819, 80231, 'eighty thousand two hundred thirty-one'); INSERT INTO t3 VALUES(15820, 74490, 'seventy-four thousand four hundred ninety'); INSERT INTO t3 VALUES(15821, 93000, 'ninety-three thousand'); INSERT INTO t3 VALUES(15822, 53804, 'fifty-three thousand eight hundred four'); INSERT INTO t3 VALUES(15823, 72659, 'seventy-two thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(15824, 82196, 'eighty-two thousand one hundred ninety-six'); INSERT INTO t3 VALUES(15825, 74290, 'seventy-four thousand two hundred ninety'); INSERT INTO t3 VALUES(15826, 81337, 'eighty-one thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(15827, 65291, 'sixty-five thousand two hundred ninety-one'); INSERT INTO t3 VALUES(15828, 20270, 'twenty thousand two hundred seventy'); INSERT INTO t3 VALUES(15829, 50130, 'fifty thousand one hundred thirty'); INSERT INTO t3 VALUES(15830, 56392, 'fifty-six thousand three hundred ninety-two'); INSERT INTO t3 VALUES(15831, 75784, 'seventy-five thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(15832, 57274, 'fifty-seven thousand two hundred seventy-four'); INSERT INTO t3 VALUES(15833, 46715, 'forty-six thousand seven hundred fifteen'); INSERT INTO t3 VALUES(15834, 74839, 'seventy-four thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(15835, 97753, 'ninety-seven thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(15836, 27198, 'twenty-seven thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(15837, 29151, 'twenty-nine thousand one hundred fifty-one'); INSERT INTO t3 VALUES(15838, 13052, 'thirteen thousand fifty-two'); INSERT INTO t3 VALUES(15839, 54863, 'fifty-four thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(15840, 94909, 'ninety-four thousand nine hundred nine'); INSERT INTO t3 VALUES(15841, 43745, 'forty-three thousand seven hundred forty-five'); INSERT INTO t3 VALUES(15842, 64386, 'sixty-four thousand three hundred eighty-six'); INSERT INTO t3 VALUES(15843, 3084, 'three thousand eighty-four'); INSERT INTO t3 VALUES(15844, 92479, 'ninety-two thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(15845, 35910, 'thirty-five thousand nine hundred ten'); INSERT INTO t3 VALUES(15846, 65149, 'sixty-five thousand one hundred forty-nine'); INSERT INTO t3 VALUES(15847, 24507, 'twenty-four thousand five hundred seven'); INSERT INTO t3 VALUES(15848, 75000, 'seventy-five thousand'); INSERT INTO t3 VALUES(15849, 82539, 'eighty-two thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(15850, 51689, 'fifty-one thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(15851, 89567, 'eighty-nine thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(15852, 73056, 'seventy-three thousand fifty-six'); INSERT INTO t3 VALUES(15853, 71067, 'seventy-one thousand sixty-seven'); INSERT INTO t3 VALUES(15854, 12457, 'twelve thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(15855, 26706, 'twenty-six thousand seven hundred six'); INSERT INTO t3 VALUES(15856, 2912, 'two thousand nine hundred twelve'); INSERT INTO t3 VALUES(15857, 55005, 'fifty-five thousand five'); INSERT INTO t3 VALUES(15858, 37894, 'thirty-seven thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(15859, 39584, 'thirty-nine thousand five hundred eighty-four'); INSERT INTO t3 VALUES(15860, 51846, 'fifty-one thousand eight hundred forty-six'); INSERT INTO t3 VALUES(15861, 81164, 'eighty-one thousand one hundred sixty-four'); INSERT INTO t3 VALUES(15862, 20254, 'twenty thousand two hundred fifty-four'); INSERT INTO t3 VALUES(15863, 1529, 'one thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(15864, 30952, 'thirty thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(15865, 18580, 'eighteen thousand five hundred eighty'); INSERT INTO t3 VALUES(15866, 27203, 'twenty-seven thousand two hundred three'); INSERT INTO t3 VALUES(15867, 29178, 'twenty-nine thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(15868, 2871, 'two thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(15869, 20110, 'twenty thousand one hundred ten'); INSERT INTO t3 VALUES(15870, 59595, 'fifty-nine thousand five hundred ninety-five'); INSERT INTO t3 VALUES(15871, 90346, 'ninety thousand three hundred forty-six'); INSERT INTO t3 VALUES(15872, 49951, 'forty-nine thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(15873, 89218, 'eighty-nine thousand two hundred eighteen'); INSERT INTO t3 VALUES(15874, 46432, 'forty-six thousand four hundred thirty-two'); INSERT INTO t3 VALUES(15875, 83179, 'eighty-three thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(15876, 39442, 'thirty-nine thousand four hundred forty-two'); INSERT INTO t3 VALUES(15877, 56640, 'fifty-six thousand six hundred forty'); INSERT INTO t3 VALUES(15878, 62928, 'sixty-two thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(15879, 19757, 'nineteen thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(15880, 21134, 'twenty-one thousand one hundred thirty-four'); INSERT INTO t3 VALUES(15881, 10120, 'ten thousand one hundred twenty'); INSERT INTO t3 VALUES(15882, 86006, 'eighty-six thousand six'); INSERT INTO t3 VALUES(15883, 25262, 'twenty-five thousand two hundred sixty-two'); INSERT INTO t3 VALUES(15884, 99733, 'ninety-nine thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(15885, 42110, 'forty-two thousand one hundred ten'); INSERT INTO t3 VALUES(15886, 33981, 'thirty-three thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(15887, 88952, 'eighty-eight thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(15888, 43788, 'forty-three thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(15889, 32857, 'thirty-two thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(15890, 30809, 'thirty thousand eight hundred nine'); INSERT INTO t3 VALUES(15891, 74873, 'seventy-four thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(15892, 39109, 'thirty-nine thousand one hundred nine'); INSERT INTO t3 VALUES(15893, 90617, 'ninety thousand six hundred seventeen'); INSERT INTO t3 VALUES(15894, 22633, 'twenty-two thousand six hundred thirty-three'); INSERT INTO t3 VALUES(15895, 18549, 'eighteen thousand five hundred forty-nine'); INSERT INTO t3 VALUES(15896, 82776, 'eighty-two thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(15897, 4576, 'four thousand five hundred seventy-six'); INSERT INTO t3 VALUES(15898, 31219, 'thirty-one thousand two hundred nineteen'); INSERT INTO t3 VALUES(15899, 9301, 'nine thousand three hundred one'); INSERT INTO t3 VALUES(15900, 28554, 'twenty-eight thousand five hundred fifty-four'); INSERT INTO t3 VALUES(15901, 481, 'four hundred eighty-one'); INSERT INTO t3 VALUES(15902, 29167, 'twenty-nine thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(15903, 11440, 'eleven thousand four hundred forty'); INSERT INTO t3 VALUES(15904, 16451, 'sixteen thousand four hundred fifty-one'); INSERT INTO t3 VALUES(15905, 13885, 'thirteen thousand eight hundred eighty-five'); INSERT INTO t3 VALUES(15906, 91841, 'ninety-one thousand eight hundred forty-one'); INSERT INTO t3 VALUES(15907, 97112, 'ninety-seven thousand one hundred twelve'); INSERT INTO t3 VALUES(15908, 39319, 'thirty-nine thousand three hundred nineteen'); INSERT INTO t3 VALUES(15909, 29294, 'twenty-nine thousand two hundred ninety-four'); INSERT INTO t3 VALUES(15910, 5086, 'five thousand eighty-six'); INSERT INTO t3 VALUES(15911, 9715, 'nine thousand seven hundred fifteen'); INSERT INTO t3 VALUES(15912, 29295, 'twenty-nine thousand two hundred ninety-five'); INSERT INTO t3 VALUES(15913, 29313, 'twenty-nine thousand three hundred thirteen'); INSERT INTO t3 VALUES(15914, 85821, 'eighty-five thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(15915, 9970, 'nine thousand nine hundred seventy'); INSERT INTO t3 VALUES(15916, 94835, 'ninety-four thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(15917, 48286, 'forty-eight thousand two hundred eighty-six'); INSERT INTO t3 VALUES(15918, 47916, 'forty-seven thousand nine hundred sixteen'); INSERT INTO t3 VALUES(15919, 86919, 'eighty-six thousand nine hundred nineteen'); INSERT INTO t3 VALUES(15920, 52691, 'fifty-two thousand six hundred ninety-one'); INSERT INTO t3 VALUES(15921, 18178, 'eighteen thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(15922, 22089, 'twenty-two thousand eighty-nine'); INSERT INTO t3 VALUES(15923, 23263, 'twenty-three thousand two hundred sixty-three'); INSERT INTO t3 VALUES(15924, 76782, 'seventy-six thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(15925, 37280, 'thirty-seven thousand two hundred eighty'); INSERT INTO t3 VALUES(15926, 66211, 'sixty-six thousand two hundred eleven'); INSERT INTO t3 VALUES(15927, 18769, 'eighteen thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(15928, 52527, 'fifty-two thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(15929, 13964, 'thirteen thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(15930, 77013, 'seventy-seven thousand thirteen'); INSERT INTO t3 VALUES(15931, 87217, 'eighty-seven thousand two hundred seventeen'); INSERT INTO t3 VALUES(15932, 58723, 'fifty-eight thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(15933, 45694, 'forty-five thousand six hundred ninety-four'); INSERT INTO t3 VALUES(15934, 73566, 'seventy-three thousand five hundred sixty-six'); INSERT INTO t3 VALUES(15935, 4799, 'four thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(15936, 44725, 'forty-four thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(15937, 81732, 'eighty-one thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(15938, 25916, 'twenty-five thousand nine hundred sixteen'); INSERT INTO t3 VALUES(15939, 17399, 'seventeen thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(15940, 10941, 'ten thousand nine hundred forty-one'); INSERT INTO t3 VALUES(15941, 84526, 'eighty-four thousand five hundred twenty-six'); INSERT INTO t3 VALUES(15942, 29237, 'twenty-nine thousand two hundred thirty-seven'); INSERT INTO t3 VALUES(15943, 16483, 'sixteen thousand four hundred eighty-three'); INSERT INTO t3 VALUES(15944, 16545, 'sixteen thousand five hundred forty-five'); INSERT INTO t3 VALUES(15945, 85472, 'eighty-five thousand four hundred seventy-two'); INSERT INTO t3 VALUES(15946, 90402, 'ninety thousand four hundred two'); INSERT INTO t3 VALUES(15947, 69356, 'sixty-nine thousand three hundred fifty-six'); INSERT INTO t3 VALUES(15948, 98401, 'ninety-eight thousand four hundred one'); INSERT INTO t3 VALUES(15949, 36109, 'thirty-six thousand one hundred nine'); INSERT INTO t3 VALUES(15950, 85041, 'eighty-five thousand forty-one'); INSERT INTO t3 VALUES(15951, 22035, 'twenty-two thousand thirty-five'); INSERT INTO t3 VALUES(15952, 54581, 'fifty-four thousand five hundred eighty-one'); INSERT INTO t3 VALUES(15953, 19057, 'nineteen thousand fifty-seven'); INSERT INTO t3 VALUES(15954, 56795, 'fifty-six thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(15955, 95939, 'ninety-five thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(15956, 2417, 'two thousand four hundred seventeen'); INSERT INTO t3 VALUES(15957, 91270, 'ninety-one thousand two hundred seventy'); INSERT INTO t3 VALUES(15958, 40899, 'forty thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(15959, 87942, 'eighty-seven thousand nine hundred forty-two'); INSERT INTO t3 VALUES(15960, 75647, 'seventy-five thousand six hundred forty-seven'); INSERT INTO t3 VALUES(15961, 24984, 'twenty-four thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(15962, 85564, 'eighty-five thousand five hundred sixty-four'); INSERT INTO t3 VALUES(15963, 78694, 'seventy-eight thousand six hundred ninety-four'); INSERT INTO t3 VALUES(15964, 21360, 'twenty-one thousand three hundred sixty'); INSERT INTO t3 VALUES(15965, 85288, 'eighty-five thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(15966, 13749, 'thirteen thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(15967, 68260, 'sixty-eight thousand two hundred sixty'); INSERT INTO t3 VALUES(15968, 16359, 'sixteen thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(15969, 36265, 'thirty-six thousand two hundred sixty-five'); INSERT INTO t3 VALUES(15970, 52948, 'fifty-two thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(15971, 50751, 'fifty thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(15972, 48659, 'forty-eight thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(15973, 76413, 'seventy-six thousand four hundred thirteen'); INSERT INTO t3 VALUES(15974, 43925, 'forty-three thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(15975, 35488, 'thirty-five thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(15976, 47650, 'forty-seven thousand six hundred fifty'); INSERT INTO t3 VALUES(15977, 64588, 'sixty-four thousand five hundred eighty-eight'); INSERT INTO t3 VALUES(15978, 37111, 'thirty-seven thousand one hundred eleven'); INSERT INTO t3 VALUES(15979, 1296, 'one thousand two hundred ninety-six'); INSERT INTO t3 VALUES(15980, 71106, 'seventy-one thousand one hundred six'); INSERT INTO t3 VALUES(15981, 1978, 'one thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(15982, 7573, 'seven thousand five hundred seventy-three'); INSERT INTO t3 VALUES(15983, 48238, 'forty-eight thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(15984, 96048, 'ninety-six thousand forty-eight'); INSERT INTO t3 VALUES(15985, 34429, 'thirty-four thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(15986, 86902, 'eighty-six thousand nine hundred two'); INSERT INTO t3 VALUES(15987, 71973, 'seventy-one thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(15988, 27220, 'twenty-seven thousand two hundred twenty'); INSERT INTO t3 VALUES(15989, 97652, 'ninety-seven thousand six hundred fifty-two'); INSERT INTO t3 VALUES(15990, 40297, 'forty thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(15991, 70229, 'seventy thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(15992, 23440, 'twenty-three thousand four hundred forty'); INSERT INTO t3 VALUES(15993, 74759, 'seventy-four thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(15994, 77050, 'seventy-seven thousand fifty'); INSERT INTO t3 VALUES(15995, 99274, 'ninety-nine thousand two hundred seventy-four'); INSERT INTO t3 VALUES(15996, 98047, 'ninety-eight thousand forty-seven'); INSERT INTO t3 VALUES(15997, 29133, 'twenty-nine thousand one hundred thirty-three'); INSERT INTO t3 VALUES(15998, 82205, 'eighty-two thousand two hundred five'); INSERT INTO t3 VALUES(15999, 70141, 'seventy thousand one hundred forty-one'); INSERT INTO t3 VALUES(16000, 76251, 'seventy-six thousand two hundred fifty-one'); INSERT INTO t3 VALUES(16001, 84170, 'eighty-four thousand one hundred seventy'); INSERT INTO t3 VALUES(16002, 91043, 'ninety-one thousand forty-three'); INSERT INTO t3 VALUES(16003, 87672, 'eighty-seven thousand six hundred seventy-two'); INSERT INTO t3 VALUES(16004, 74782, 'seventy-four thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(16005, 58608, 'fifty-eight thousand six hundred eight'); INSERT INTO t3 VALUES(16006, 96816, 'ninety-six thousand eight hundred sixteen'); INSERT INTO t3 VALUES(16007, 28584, 'twenty-eight thousand five hundred eighty-four'); INSERT INTO t3 VALUES(16008, 56670, 'fifty-six thousand six hundred seventy'); INSERT INTO t3 VALUES(16009, 7630, 'seven thousand six hundred thirty'); INSERT INTO t3 VALUES(16010, 94290, 'ninety-four thousand two hundred ninety'); INSERT INTO t3 VALUES(16011, 12913, 'twelve thousand nine hundred thirteen'); INSERT INTO t3 VALUES(16012, 94587, 'ninety-four thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(16013, 18624, 'eighteen thousand six hundred twenty-four'); INSERT INTO t3 VALUES(16014, 87441, 'eighty-seven thousand four hundred forty-one'); INSERT INTO t3 VALUES(16015, 58243, 'fifty-eight thousand two hundred forty-three'); INSERT INTO t3 VALUES(16016, 71871, 'seventy-one thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(16017, 82033, 'eighty-two thousand thirty-three'); INSERT INTO t3 VALUES(16018, 14443, 'fourteen thousand four hundred forty-three'); INSERT INTO t3 VALUES(16019, 42290, 'forty-two thousand two hundred ninety'); INSERT INTO t3 VALUES(16020, 47334, 'forty-seven thousand three hundred thirty-four'); INSERT INTO t3 VALUES(16021, 84039, 'eighty-four thousand thirty-nine'); INSERT INTO t3 VALUES(16022, 31982, 'thirty-one thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(16023, 21716, 'twenty-one thousand seven hundred sixteen'); INSERT INTO t3 VALUES(16024, 79688, 'seventy-nine thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(16025, 10315, 'ten thousand three hundred fifteen'); INSERT INTO t3 VALUES(16026, 49694, 'forty-nine thousand six hundred ninety-four'); INSERT INTO t3 VALUES(16027, 21387, 'twenty-one thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(16028, 5082, 'five thousand eighty-two'); INSERT INTO t3 VALUES(16029, 63886, 'sixty-three thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(16030, 34656, 'thirty-four thousand six hundred fifty-six'); INSERT INTO t3 VALUES(16031, 49531, 'forty-nine thousand five hundred thirty-one'); INSERT INTO t3 VALUES(16032, 95666, 'ninety-five thousand six hundred sixty-six'); INSERT INTO t3 VALUES(16033, 85709, 'eighty-five thousand seven hundred nine'); INSERT INTO t3 VALUES(16034, 2086, 'two thousand eighty-six'); INSERT INTO t3 VALUES(16035, 72110, 'seventy-two thousand one hundred ten'); INSERT INTO t3 VALUES(16036, 21688, 'twenty-one thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(16037, 46976, 'forty-six thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(16038, 60339, 'sixty thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(16039, 18327, 'eighteen thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(16040, 80395, 'eighty thousand three hundred ninety-five'); INSERT INTO t3 VALUES(16041, 98302, 'ninety-eight thousand three hundred two'); INSERT INTO t3 VALUES(16042, 5387, 'five thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(16043, 6078, 'six thousand seventy-eight'); INSERT INTO t3 VALUES(16044, 9051, 'nine thousand fifty-one'); INSERT INTO t3 VALUES(16045, 12295, 'twelve thousand two hundred ninety-five'); INSERT INTO t3 VALUES(16046, 85567, 'eighty-five thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(16047, 61870, 'sixty-one thousand eight hundred seventy'); INSERT INTO t3 VALUES(16048, 73569, 'seventy-three thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(16049, 30847, 'thirty thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(16050, 57768, 'fifty-seven thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(16051, 87632, 'eighty-seven thousand six hundred thirty-two'); INSERT INTO t3 VALUES(16052, 10860, 'ten thousand eight hundred sixty'); INSERT INTO t3 VALUES(16053, 95099, 'ninety-five thousand ninety-nine'); INSERT INTO t3 VALUES(16054, 16308, 'sixteen thousand three hundred eight'); INSERT INTO t3 VALUES(16055, 19403, 'nineteen thousand four hundred three'); INSERT INTO t3 VALUES(16056, 25261, 'twenty-five thousand two hundred sixty-one'); INSERT INTO t3 VALUES(16057, 25641, 'twenty-five thousand six hundred forty-one'); INSERT INTO t3 VALUES(16058, 2087, 'two thousand eighty-seven'); INSERT INTO t3 VALUES(16059, 92824, 'ninety-two thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(16060, 60191, 'sixty thousand one hundred ninety-one'); INSERT INTO t3 VALUES(16061, 94860, 'ninety-four thousand eight hundred sixty'); INSERT INTO t3 VALUES(16062, 62525, 'sixty-two thousand five hundred twenty-five'); INSERT INTO t3 VALUES(16063, 29113, 'twenty-nine thousand one hundred thirteen'); INSERT INTO t3 VALUES(16064, 44740, 'forty-four thousand seven hundred forty'); INSERT INTO t3 VALUES(16065, 27831, 'twenty-seven thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(16066, 54713, 'fifty-four thousand seven hundred thirteen'); INSERT INTO t3 VALUES(16067, 2363, 'two thousand three hundred sixty-three'); INSERT INTO t3 VALUES(16068, 49810, 'forty-nine thousand eight hundred ten'); INSERT INTO t3 VALUES(16069, 10021, 'ten thousand twenty-one'); INSERT INTO t3 VALUES(16070, 63987, 'sixty-three thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(16071, 22812, 'twenty-two thousand eight hundred twelve'); INSERT INTO t3 VALUES(16072, 48094, 'forty-eight thousand ninety-four'); INSERT INTO t3 VALUES(16073, 62218, 'sixty-two thousand two hundred eighteen'); INSERT INTO t3 VALUES(16074, 27155, 'twenty-seven thousand one hundred fifty-five'); INSERT INTO t3 VALUES(16075, 99053, 'ninety-nine thousand fifty-three'); INSERT INTO t3 VALUES(16076, 16807, 'sixteen thousand eight hundred seven'); INSERT INTO t3 VALUES(16077, 23527, 'twenty-three thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(16078, 85282, 'eighty-five thousand two hundred eighty-two'); INSERT INTO t3 VALUES(16079, 97038, 'ninety-seven thousand thirty-eight'); INSERT INTO t3 VALUES(16080, 77910, 'seventy-seven thousand nine hundred ten'); INSERT INTO t3 VALUES(16081, 20870, 'twenty thousand eight hundred seventy'); INSERT INTO t3 VALUES(16082, 59185, 'fifty-nine thousand one hundred eighty-five'); INSERT INTO t3 VALUES(16083, 77996, 'seventy-seven thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(16084, 18470, 'eighteen thousand four hundred seventy'); INSERT INTO t3 VALUES(16085, 81078, 'eighty-one thousand seventy-eight'); INSERT INTO t3 VALUES(16086, 9262, 'nine thousand two hundred sixty-two'); INSERT INTO t3 VALUES(16087, 35307, 'thirty-five thousand three hundred seven'); INSERT INTO t3 VALUES(16088, 39244, 'thirty-nine thousand two hundred forty-four'); INSERT INTO t3 VALUES(16089, 8882, 'eight thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(16090, 21110, 'twenty-one thousand one hundred ten'); INSERT INTO t3 VALUES(16091, 37331, 'thirty-seven thousand three hundred thirty-one'); INSERT INTO t3 VALUES(16092, 70242, 'seventy thousand two hundred forty-two'); INSERT INTO t3 VALUES(16093, 61850, 'sixty-one thousand eight hundred fifty'); INSERT INTO t3 VALUES(16094, 75197, 'seventy-five thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(16095, 66512, 'sixty-six thousand five hundred twelve'); INSERT INTO t3 VALUES(16096, 42722, 'forty-two thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(16097, 99254, 'ninety-nine thousand two hundred fifty-four'); INSERT INTO t3 VALUES(16098, 61338, 'sixty-one thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(16099, 96694, 'ninety-six thousand six hundred ninety-four'); INSERT INTO t3 VALUES(16100, 46680, 'forty-six thousand six hundred eighty'); INSERT INTO t3 VALUES(16101, 7371, 'seven thousand three hundred seventy-one'); INSERT INTO t3 VALUES(16102, 41255, 'forty-one thousand two hundred fifty-five'); INSERT INTO t3 VALUES(16103, 56563, 'fifty-six thousand five hundred sixty-three'); INSERT INTO t3 VALUES(16104, 45600, 'forty-five thousand six hundred'); INSERT INTO t3 VALUES(16105, 98904, 'ninety-eight thousand nine hundred four'); INSERT INTO t3 VALUES(16106, 78223, 'seventy-eight thousand two hundred twenty-three'); INSERT INTO t3 VALUES(16107, 57420, 'fifty-seven thousand four hundred twenty'); INSERT INTO t3 VALUES(16108, 35945, 'thirty-five thousand nine hundred forty-five'); INSERT INTO t3 VALUES(16109, 57187, 'fifty-seven thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(16110, 77349, 'seventy-seven thousand three hundred forty-nine'); INSERT INTO t3 VALUES(16111, 42789, 'forty-two thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(16112, 35906, 'thirty-five thousand nine hundred six'); INSERT INTO t3 VALUES(16113, 51085, 'fifty-one thousand eighty-five'); INSERT INTO t3 VALUES(16114, 86768, 'eighty-six thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(16115, 51828, 'fifty-one thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(16116, 19442, 'nineteen thousand four hundred forty-two'); INSERT INTO t3 VALUES(16117, 27486, 'twenty-seven thousand four hundred eighty-six'); INSERT INTO t3 VALUES(16118, 15511, 'fifteen thousand five hundred eleven'); INSERT INTO t3 VALUES(16119, 10224, 'ten thousand two hundred twenty-four'); INSERT INTO t3 VALUES(16120, 1887, 'one thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(16121, 94072, 'ninety-four thousand seventy-two'); INSERT INTO t3 VALUES(16122, 38517, 'thirty-eight thousand five hundred seventeen'); INSERT INTO t3 VALUES(16123, 81149, 'eighty-one thousand one hundred forty-nine'); INSERT INTO t3 VALUES(16124, 6642, 'six thousand six hundred forty-two'); INSERT INTO t3 VALUES(16125, 93889, 'ninety-three thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(16126, 13319, 'thirteen thousand three hundred nineteen'); INSERT INTO t3 VALUES(16127, 47727, 'forty-seven thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(16128, 39412, 'thirty-nine thousand four hundred twelve'); INSERT INTO t3 VALUES(16129, 63979, 'sixty-three thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(16130, 982, 'nine hundred eighty-two'); INSERT INTO t3 VALUES(16131, 76188, 'seventy-six thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(16132, 53246, 'fifty-three thousand two hundred forty-six'); INSERT INTO t3 VALUES(16133, 37034, 'thirty-seven thousand thirty-four'); INSERT INTO t3 VALUES(16134, 25812, 'twenty-five thousand eight hundred twelve'); INSERT INTO t3 VALUES(16135, 63184, 'sixty-three thousand one hundred eighty-four'); INSERT INTO t3 VALUES(16136, 19783, 'nineteen thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(16137, 57997, 'fifty-seven thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(16138, 76135, 'seventy-six thousand one hundred thirty-five'); INSERT INTO t3 VALUES(16139, 16756, 'sixteen thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(16140, 70935, 'seventy thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(16141, 59119, 'fifty-nine thousand one hundred nineteen'); INSERT INTO t3 VALUES(16142, 18065, 'eighteen thousand sixty-five'); INSERT INTO t3 VALUES(16143, 15408, 'fifteen thousand four hundred eight'); INSERT INTO t3 VALUES(16144, 41387, 'forty-one thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(16145, 33319, 'thirty-three thousand three hundred nineteen'); INSERT INTO t3 VALUES(16146, 62577, 'sixty-two thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(16147, 46805, 'forty-six thousand eight hundred five'); INSERT INTO t3 VALUES(16148, 49174, 'forty-nine thousand one hundred seventy-four'); INSERT INTO t3 VALUES(16149, 89647, 'eighty-nine thousand six hundred forty-seven'); INSERT INTO t3 VALUES(16150, 1934, 'one thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(16151, 9996, 'nine thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(16152, 45686, 'forty-five thousand six hundred eighty-six'); INSERT INTO t3 VALUES(16153, 86495, 'eighty-six thousand four hundred ninety-five'); INSERT INTO t3 VALUES(16154, 46939, 'forty-six thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(16155, 84358, 'eighty-four thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(16156, 85226, 'eighty-five thousand two hundred twenty-six'); INSERT INTO t3 VALUES(16157, 3259, 'three thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(16158, 31960, 'thirty-one thousand nine hundred sixty'); INSERT INTO t3 VALUES(16159, 19489, 'nineteen thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(16160, 13754, 'thirteen thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(16161, 8984, 'eight thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(16162, 32860, 'thirty-two thousand eight hundred sixty'); INSERT INTO t3 VALUES(16163, 98639, 'ninety-eight thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(16164, 8832, 'eight thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(16165, 25823, 'twenty-five thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(16166, 42372, 'forty-two thousand three hundred seventy-two'); INSERT INTO t3 VALUES(16167, 20932, 'twenty thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(16168, 646, 'six hundred forty-six'); INSERT INTO t3 VALUES(16169, 48906, 'forty-eight thousand nine hundred six'); INSERT INTO t3 VALUES(16170, 48227, 'forty-eight thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(16171, 19963, 'nineteen thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(16172, 49439, 'forty-nine thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(16173, 48081, 'forty-eight thousand eighty-one'); INSERT INTO t3 VALUES(16174, 38632, 'thirty-eight thousand six hundred thirty-two'); INSERT INTO t3 VALUES(16175, 17196, 'seventeen thousand one hundred ninety-six'); INSERT INTO t3 VALUES(16176, 72207, 'seventy-two thousand two hundred seven'); INSERT INTO t3 VALUES(16177, 8430, 'eight thousand four hundred thirty'); INSERT INTO t3 VALUES(16178, 28319, 'twenty-eight thousand three hundred nineteen'); INSERT INTO t3 VALUES(16179, 85779, 'eighty-five thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(16180, 88955, 'eighty-eight thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(16181, 62648, 'sixty-two thousand six hundred forty-eight'); INSERT INTO t3 VALUES(16182, 255, 'two hundred fifty-five'); INSERT INTO t3 VALUES(16183, 6398, 'six thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(16184, 56235, 'fifty-six thousand two hundred thirty-five'); INSERT INTO t3 VALUES(16185, 82051, 'eighty-two thousand fifty-one'); INSERT INTO t3 VALUES(16186, 8568, 'eight thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(16187, 77839, 'seventy-seven thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(16188, 82034, 'eighty-two thousand thirty-four'); INSERT INTO t3 VALUES(16189, 23832, 'twenty-three thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(16190, 36042, 'thirty-six thousand forty-two'); INSERT INTO t3 VALUES(16191, 21665, 'twenty-one thousand six hundred sixty-five'); INSERT INTO t3 VALUES(16192, 196, 'one hundred ninety-six'); INSERT INTO t3 VALUES(16193, 80706, 'eighty thousand seven hundred six'); INSERT INTO t3 VALUES(16194, 95914, 'ninety-five thousand nine hundred fourteen'); INSERT INTO t3 VALUES(16195, 42866, 'forty-two thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(16196, 36279, 'thirty-six thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(16197, 54542, 'fifty-four thousand five hundred forty-two'); INSERT INTO t3 VALUES(16198, 87180, 'eighty-seven thousand one hundred eighty'); INSERT INTO t3 VALUES(16199, 67856, 'sixty-seven thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(16200, 9116, 'nine thousand one hundred sixteen'); INSERT INTO t3 VALUES(16201, 64021, 'sixty-four thousand twenty-one'); INSERT INTO t3 VALUES(16202, 20565, 'twenty thousand five hundred sixty-five'); INSERT INTO t3 VALUES(16203, 99625, 'ninety-nine thousand six hundred twenty-five'); INSERT INTO t3 VALUES(16204, 13416, 'thirteen thousand four hundred sixteen'); INSERT INTO t3 VALUES(16205, 60633, 'sixty thousand six hundred thirty-three'); INSERT INTO t3 VALUES(16206, 30002, 'thirty thousand two'); INSERT INTO t3 VALUES(16207, 60622, 'sixty thousand six hundred twenty-two'); INSERT INTO t3 VALUES(16208, 26307, 'twenty-six thousand three hundred seven'); INSERT INTO t3 VALUES(16209, 97563, 'ninety-seven thousand five hundred sixty-three'); INSERT INTO t3 VALUES(16210, 55807, 'fifty-five thousand eight hundred seven'); INSERT INTO t3 VALUES(16211, 22106, 'twenty-two thousand one hundred six'); INSERT INTO t3 VALUES(16212, 4490, 'four thousand four hundred ninety'); INSERT INTO t3 VALUES(16213, 91635, 'ninety-one thousand six hundred thirty-five'); INSERT INTO t3 VALUES(16214, 31135, 'thirty-one thousand one hundred thirty-five'); INSERT INTO t3 VALUES(16215, 49872, 'forty-nine thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(16216, 65808, 'sixty-five thousand eight hundred eight'); INSERT INTO t3 VALUES(16217, 36010, 'thirty-six thousand ten'); INSERT INTO t3 VALUES(16218, 33265, 'thirty-three thousand two hundred sixty-five'); INSERT INTO t3 VALUES(16219, 84849, 'eighty-four thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(16220, 11340, 'eleven thousand three hundred forty'); INSERT INTO t3 VALUES(16221, 85480, 'eighty-five thousand four hundred eighty'); INSERT INTO t3 VALUES(16222, 7234, 'seven thousand two hundred thirty-four'); INSERT INTO t3 VALUES(16223, 28974, 'twenty-eight thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(16224, 46542, 'forty-six thousand five hundred forty-two'); INSERT INTO t3 VALUES(16225, 41413, 'forty-one thousand four hundred thirteen'); INSERT INTO t3 VALUES(16226, 56244, 'fifty-six thousand two hundred forty-four'); INSERT INTO t3 VALUES(16227, 18165, 'eighteen thousand one hundred sixty-five'); INSERT INTO t3 VALUES(16228, 48462, 'forty-eight thousand four hundred sixty-two'); INSERT INTO t3 VALUES(16229, 96480, 'ninety-six thousand four hundred eighty'); INSERT INTO t3 VALUES(16230, 29633, 'twenty-nine thousand six hundred thirty-three'); INSERT INTO t3 VALUES(16231, 44582, 'forty-four thousand five hundred eighty-two'); INSERT INTO t3 VALUES(16232, 80132, 'eighty thousand one hundred thirty-two'); INSERT INTO t3 VALUES(16233, 71522, 'seventy-one thousand five hundred twenty-two'); INSERT INTO t3 VALUES(16234, 62916, 'sixty-two thousand nine hundred sixteen'); INSERT INTO t3 VALUES(16235, 61373, 'sixty-one thousand three hundred seventy-three'); INSERT INTO t3 VALUES(16236, 54532, 'fifty-four thousand five hundred thirty-two'); INSERT INTO t3 VALUES(16237, 71995, 'seventy-one thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(16238, 35558, 'thirty-five thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(16239, 91537, 'ninety-one thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(16240, 22038, 'twenty-two thousand thirty-eight'); INSERT INTO t3 VALUES(16241, 25339, 'twenty-five thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(16242, 9899, 'nine thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(16243, 75618, 'seventy-five thousand six hundred eighteen'); INSERT INTO t3 VALUES(16244, 4967, 'four thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(16245, 76204, 'seventy-six thousand two hundred four'); INSERT INTO t3 VALUES(16246, 46582, 'forty-six thousand five hundred eighty-two'); INSERT INTO t3 VALUES(16247, 2728, 'two thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(16248, 42985, 'forty-two thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(16249, 31809, 'thirty-one thousand eight hundred nine'); INSERT INTO t3 VALUES(16250, 93601, 'ninety-three thousand six hundred one'); INSERT INTO t3 VALUES(16251, 39570, 'thirty-nine thousand five hundred seventy'); INSERT INTO t3 VALUES(16252, 74782, 'seventy-four thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(16253, 17383, 'seventeen thousand three hundred eighty-three'); INSERT INTO t3 VALUES(16254, 90613, 'ninety thousand six hundred thirteen'); INSERT INTO t3 VALUES(16255, 83804, 'eighty-three thousand eight hundred four'); INSERT INTO t3 VALUES(16256, 72251, 'seventy-two thousand two hundred fifty-one'); INSERT INTO t3 VALUES(16257, 94840, 'ninety-four thousand eight hundred forty'); INSERT INTO t3 VALUES(16258, 52977, 'fifty-two thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(16259, 95811, 'ninety-five thousand eight hundred eleven'); INSERT INTO t3 VALUES(16260, 78113, 'seventy-eight thousand one hundred thirteen'); INSERT INTO t3 VALUES(16261, 45720, 'forty-five thousand seven hundred twenty'); INSERT INTO t3 VALUES(16262, 9158, 'nine thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(16263, 64131, 'sixty-four thousand one hundred thirty-one'); INSERT INTO t3 VALUES(16264, 44225, 'forty-four thousand two hundred twenty-five'); INSERT INTO t3 VALUES(16265, 46856, 'forty-six thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(16266, 77173, 'seventy-seven thousand one hundred seventy-three'); INSERT INTO t3 VALUES(16267, 22839, 'twenty-two thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(16268, 57339, 'fifty-seven thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(16269, 29735, 'twenty-nine thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(16270, 4850, 'four thousand eight hundred fifty'); INSERT INTO t3 VALUES(16271, 99310, 'ninety-nine thousand three hundred ten'); INSERT INTO t3 VALUES(16272, 83699, 'eighty-three thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(16273, 74231, 'seventy-four thousand two hundred thirty-one'); INSERT INTO t3 VALUES(16274, 98971, 'ninety-eight thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(16275, 91330, 'ninety-one thousand three hundred thirty'); INSERT INTO t3 VALUES(16276, 55128, 'fifty-five thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(16277, 36250, 'thirty-six thousand two hundred fifty'); INSERT INTO t3 VALUES(16278, 89901, 'eighty-nine thousand nine hundred one'); INSERT INTO t3 VALUES(16279, 67826, 'sixty-seven thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(16280, 64001, 'sixty-four thousand one'); INSERT INTO t3 VALUES(16281, 70308, 'seventy thousand three hundred eight'); INSERT INTO t3 VALUES(16282, 67318, 'sixty-seven thousand three hundred eighteen'); INSERT INTO t3 VALUES(16283, 56771, 'fifty-six thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(16284, 1677, 'one thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(16285, 5888, 'five thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(16286, 94270, 'ninety-four thousand two hundred seventy'); INSERT INTO t3 VALUES(16287, 10332, 'ten thousand three hundred thirty-two'); INSERT INTO t3 VALUES(16288, 14107, 'fourteen thousand one hundred seven'); INSERT INTO t3 VALUES(16289, 948, 'nine hundred forty-eight'); INSERT INTO t3 VALUES(16290, 202, 'two hundred two'); INSERT INTO t3 VALUES(16291, 75169, 'seventy-five thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(16292, 79522, 'seventy-nine thousand five hundred twenty-two'); INSERT INTO t3 VALUES(16293, 71927, 'seventy-one thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(16294, 1138, 'one thousand one hundred thirty-eight'); INSERT INTO t3 VALUES(16295, 98919, 'ninety-eight thousand nine hundred nineteen'); INSERT INTO t3 VALUES(16296, 58024, 'fifty-eight thousand twenty-four'); INSERT INTO t3 VALUES(16297, 30489, 'thirty thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(16298, 50409, 'fifty thousand four hundred nine'); INSERT INTO t3 VALUES(16299, 6894, 'six thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(16300, 53285, 'fifty-three thousand two hundred eighty-five'); INSERT INTO t3 VALUES(16301, 36270, 'thirty-six thousand two hundred seventy'); INSERT INTO t3 VALUES(16302, 42252, 'forty-two thousand two hundred fifty-two'); INSERT INTO t3 VALUES(16303, 30362, 'thirty thousand three hundred sixty-two'); INSERT INTO t3 VALUES(16304, 52895, 'fifty-two thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(16305, 64909, 'sixty-four thousand nine hundred nine'); INSERT INTO t3 VALUES(16306, 60806, 'sixty thousand eight hundred six'); INSERT INTO t3 VALUES(16307, 11936, 'eleven thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(16308, 36296, 'thirty-six thousand two hundred ninety-six'); INSERT INTO t3 VALUES(16309, 99074, 'ninety-nine thousand seventy-four'); INSERT INTO t3 VALUES(16310, 5695, 'five thousand six hundred ninety-five'); INSERT INTO t3 VALUES(16311, 91351, 'ninety-one thousand three hundred fifty-one'); INSERT INTO t3 VALUES(16312, 46110, 'forty-six thousand one hundred ten'); INSERT INTO t3 VALUES(16313, 59810, 'fifty-nine thousand eight hundred ten'); INSERT INTO t3 VALUES(16314, 69024, 'sixty-nine thousand twenty-four'); INSERT INTO t3 VALUES(16315, 46756, 'forty-six thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(16316, 17170, 'seventeen thousand one hundred seventy'); INSERT INTO t3 VALUES(16317, 71402, 'seventy-one thousand four hundred two'); INSERT INTO t3 VALUES(16318, 81600, 'eighty-one thousand six hundred'); INSERT INTO t3 VALUES(16319, 3407, 'three thousand four hundred seven'); INSERT INTO t3 VALUES(16320, 32188, 'thirty-two thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(16321, 16842, 'sixteen thousand eight hundred forty-two'); INSERT INTO t3 VALUES(16322, 6375, 'six thousand three hundred seventy-five'); INSERT INTO t3 VALUES(16323, 62878, 'sixty-two thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(16324, 53426, 'fifty-three thousand four hundred twenty-six'); INSERT INTO t3 VALUES(16325, 93337, 'ninety-three thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(16326, 55886, 'fifty-five thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(16327, 49437, 'forty-nine thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(16328, 39960, 'thirty-nine thousand nine hundred sixty'); INSERT INTO t3 VALUES(16329, 30953, 'thirty thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(16330, 23339, 'twenty-three thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(16331, 40207, 'forty thousand two hundred seven'); INSERT INTO t3 VALUES(16332, 71581, 'seventy-one thousand five hundred eighty-one'); INSERT INTO t3 VALUES(16333, 62429, 'sixty-two thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(16334, 30739, 'thirty thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(16335, 36016, 'thirty-six thousand sixteen'); INSERT INTO t3 VALUES(16336, 70272, 'seventy thousand two hundred seventy-two'); INSERT INTO t3 VALUES(16337, 68870, 'sixty-eight thousand eight hundred seventy'); INSERT INTO t3 VALUES(16338, 16131, 'sixteen thousand one hundred thirty-one'); INSERT INTO t3 VALUES(16339, 16757, 'sixteen thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(16340, 61245, 'sixty-one thousand two hundred forty-five'); INSERT INTO t3 VALUES(16341, 85830, 'eighty-five thousand eight hundred thirty'); INSERT INTO t3 VALUES(16342, 19743, 'nineteen thousand seven hundred forty-three'); INSERT INTO t3 VALUES(16343, 15977, 'fifteen thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(16344, 29168, 'twenty-nine thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(16345, 67100, 'sixty-seven thousand one hundred'); INSERT INTO t3 VALUES(16346, 80098, 'eighty thousand ninety-eight'); INSERT INTO t3 VALUES(16347, 93153, 'ninety-three thousand one hundred fifty-three'); INSERT INTO t3 VALUES(16348, 65069, 'sixty-five thousand sixty-nine'); INSERT INTO t3 VALUES(16349, 45760, 'forty-five thousand seven hundred sixty'); INSERT INTO t3 VALUES(16350, 57927, 'fifty-seven thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(16351, 94757, 'ninety-four thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(16352, 29768, 'twenty-nine thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(16353, 38222, 'thirty-eight thousand two hundred twenty-two'); INSERT INTO t3 VALUES(16354, 30870, 'thirty thousand eight hundred seventy'); INSERT INTO t3 VALUES(16355, 85694, 'eighty-five thousand six hundred ninety-four'); INSERT INTO t3 VALUES(16356, 71346, 'seventy-one thousand three hundred forty-six'); INSERT INTO t3 VALUES(16357, 31036, 'thirty-one thousand thirty-six'); INSERT INTO t3 VALUES(16358, 96987, 'ninety-six thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(16359, 26137, 'twenty-six thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(16360, 86739, 'eighty-six thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(16361, 73896, 'seventy-three thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(16362, 33026, 'thirty-three thousand twenty-six'); INSERT INTO t3 VALUES(16363, 84924, 'eighty-four thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(16364, 61463, 'sixty-one thousand four hundred sixty-three'); INSERT INTO t3 VALUES(16365, 19377, 'nineteen thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(16366, 72052, 'seventy-two thousand fifty-two'); INSERT INTO t3 VALUES(16367, 87059, 'eighty-seven thousand fifty-nine'); INSERT INTO t3 VALUES(16368, 91232, 'ninety-one thousand two hundred thirty-two'); INSERT INTO t3 VALUES(16369, 3943, 'three thousand nine hundred forty-three'); INSERT INTO t3 VALUES(16370, 98321, 'ninety-eight thousand three hundred twenty-one'); INSERT INTO t3 VALUES(16371, 19363, 'nineteen thousand three hundred sixty-three'); INSERT INTO t3 VALUES(16372, 31774, 'thirty-one thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(16373, 14384, 'fourteen thousand three hundred eighty-four'); INSERT INTO t3 VALUES(16374, 61879, 'sixty-one thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(16375, 16085, 'sixteen thousand eighty-five'); INSERT INTO t3 VALUES(16376, 1008, 'one thousand eight'); INSERT INTO t3 VALUES(16377, 76827, 'seventy-six thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(16378, 96159, 'ninety-six thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(16379, 44128, 'forty-four thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(16380, 80042, 'eighty thousand forty-two'); INSERT INTO t3 VALUES(16381, 89518, 'eighty-nine thousand five hundred eighteen'); INSERT INTO t3 VALUES(16382, 86365, 'eighty-six thousand three hundred sixty-five'); INSERT INTO t3 VALUES(16383, 91358, 'ninety-one thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(16384, 38116, 'thirty-eight thousand one hundred sixteen'); INSERT INTO t3 VALUES(16385, 25, 'twenty-five'); INSERT INTO t3 VALUES(16386, 53486, 'fifty-three thousand four hundred eighty-six'); INSERT INTO t3 VALUES(16387, 34164, 'thirty-four thousand one hundred sixty-four'); INSERT INTO t3 VALUES(16388, 91577, 'ninety-one thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(16389, 63052, 'sixty-three thousand fifty-two'); INSERT INTO t3 VALUES(16390, 73188, 'seventy-three thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(16391, 79627, 'seventy-nine thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(16392, 18066, 'eighteen thousand sixty-six'); INSERT INTO t3 VALUES(16393, 31726, 'thirty-one thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(16394, 95102, 'ninety-five thousand one hundred two'); INSERT INTO t3 VALUES(16395, 9848, 'nine thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(16396, 11797, 'eleven thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(16397, 12525, 'twelve thousand five hundred twenty-five'); INSERT INTO t3 VALUES(16398, 69709, 'sixty-nine thousand seven hundred nine'); INSERT INTO t3 VALUES(16399, 21914, 'twenty-one thousand nine hundred fourteen'); INSERT INTO t3 VALUES(16400, 15578, 'fifteen thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(16401, 2941, 'two thousand nine hundred forty-one'); INSERT INTO t3 VALUES(16402, 44751, 'forty-four thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(16403, 5166, 'five thousand one hundred sixty-six'); INSERT INTO t3 VALUES(16404, 31610, 'thirty-one thousand six hundred ten'); INSERT INTO t3 VALUES(16405, 9989, 'nine thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(16406, 38502, 'thirty-eight thousand five hundred two'); INSERT INTO t3 VALUES(16407, 77586, 'seventy-seven thousand five hundred eighty-six'); INSERT INTO t3 VALUES(16408, 5357, 'five thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(16409, 60596, 'sixty thousand five hundred ninety-six'); INSERT INTO t3 VALUES(16410, 43738, 'forty-three thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(16411, 54102, 'fifty-four thousand one hundred two'); INSERT INTO t3 VALUES(16412, 25696, 'twenty-five thousand six hundred ninety-six'); INSERT INTO t3 VALUES(16413, 56156, 'fifty-six thousand one hundred fifty-six'); INSERT INTO t3 VALUES(16414, 52572, 'fifty-two thousand five hundred seventy-two'); INSERT INTO t3 VALUES(16415, 5467, 'five thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(16416, 25563, 'twenty-five thousand five hundred sixty-three'); INSERT INTO t3 VALUES(16417, 22000, 'twenty-two thousand'); INSERT INTO t3 VALUES(16418, 29063, 'twenty-nine thousand sixty-three'); INSERT INTO t3 VALUES(16419, 87619, 'eighty-seven thousand six hundred nineteen'); INSERT INTO t3 VALUES(16420, 9880, 'nine thousand eight hundred eighty'); INSERT INTO t3 VALUES(16421, 84634, 'eighty-four thousand six hundred thirty-four'); INSERT INTO t3 VALUES(16422, 58183, 'fifty-eight thousand one hundred eighty-three'); INSERT INTO t3 VALUES(16423, 17798, 'seventeen thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(16424, 28489, 'twenty-eight thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(16425, 72350, 'seventy-two thousand three hundred fifty'); INSERT INTO t3 VALUES(16426, 70677, 'seventy thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(16427, 97117, 'ninety-seven thousand one hundred seventeen'); INSERT INTO t3 VALUES(16428, 50980, 'fifty thousand nine hundred eighty'); INSERT INTO t3 VALUES(16429, 6242, 'six thousand two hundred forty-two'); INSERT INTO t3 VALUES(16430, 96689, 'ninety-six thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(16431, 90942, 'ninety thousand nine hundred forty-two'); INSERT INTO t3 VALUES(16432, 65985, 'sixty-five thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(16433, 28628, 'twenty-eight thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(16434, 1894, 'one thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(16435, 50375, 'fifty thousand three hundred seventy-five'); INSERT INTO t3 VALUES(16436, 56479, 'fifty-six thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(16437, 26548, 'twenty-six thousand five hundred forty-eight'); INSERT INTO t3 VALUES(16438, 48816, 'forty-eight thousand eight hundred sixteen'); INSERT INTO t3 VALUES(16439, 26452, 'twenty-six thousand four hundred fifty-two'); INSERT INTO t3 VALUES(16440, 70126, 'seventy thousand one hundred twenty-six'); INSERT INTO t3 VALUES(16441, 14081, 'fourteen thousand eighty-one'); INSERT INTO t3 VALUES(16442, 6910, 'six thousand nine hundred ten'); INSERT INTO t3 VALUES(16443, 99267, 'ninety-nine thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(16444, 1959, 'one thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(16445, 7385, 'seven thousand three hundred eighty-five'); INSERT INTO t3 VALUES(16446, 53227, 'fifty-three thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(16447, 3823, 'three thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(16448, 70798, 'seventy thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(16449, 45192, 'forty-five thousand one hundred ninety-two'); INSERT INTO t3 VALUES(16450, 12664, 'twelve thousand six hundred sixty-four'); INSERT INTO t3 VALUES(16451, 22962, 'twenty-two thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(16452, 46753, 'forty-six thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(16453, 24233, 'twenty-four thousand two hundred thirty-three'); INSERT INTO t3 VALUES(16454, 41168, 'forty-one thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(16455, 98612, 'ninety-eight thousand six hundred twelve'); INSERT INTO t3 VALUES(16456, 46050, 'forty-six thousand fifty'); INSERT INTO t3 VALUES(16457, 80354, 'eighty thousand three hundred fifty-four'); INSERT INTO t3 VALUES(16458, 11067, 'eleven thousand sixty-seven'); INSERT INTO t3 VALUES(16459, 98333, 'ninety-eight thousand three hundred thirty-three'); INSERT INTO t3 VALUES(16460, 43830, 'forty-three thousand eight hundred thirty'); INSERT INTO t3 VALUES(16461, 95140, 'ninety-five thousand one hundred forty'); INSERT INTO t3 VALUES(16462, 34244, 'thirty-four thousand two hundred forty-four'); INSERT INTO t3 VALUES(16463, 7730, 'seven thousand seven hundred thirty'); INSERT INTO t3 VALUES(16464, 84998, 'eighty-four thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(16465, 38262, 'thirty-eight thousand two hundred sixty-two'); INSERT INTO t3 VALUES(16466, 27851, 'twenty-seven thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(16467, 74183, 'seventy-four thousand one hundred eighty-three'); INSERT INTO t3 VALUES(16468, 71961, 'seventy-one thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(16469, 20150, 'twenty thousand one hundred fifty'); INSERT INTO t3 VALUES(16470, 97161, 'ninety-seven thousand one hundred sixty-one'); INSERT INTO t3 VALUES(16471, 37515, 'thirty-seven thousand five hundred fifteen'); INSERT INTO t3 VALUES(16472, 44636, 'forty-four thousand six hundred thirty-six'); INSERT INTO t3 VALUES(16473, 54391, 'fifty-four thousand three hundred ninety-one'); INSERT INTO t3 VALUES(16474, 40704, 'forty thousand seven hundred four'); INSERT INTO t3 VALUES(16475, 92388, 'ninety-two thousand three hundred eighty-eight'); INSERT INTO t3 VALUES(16476, 23913, 'twenty-three thousand nine hundred thirteen'); INSERT INTO t3 VALUES(16477, 5553, 'five thousand five hundred fifty-three'); INSERT INTO t3 VALUES(16478, 2111, 'two thousand one hundred eleven'); INSERT INTO t3 VALUES(16479, 10017, 'ten thousand seventeen'); INSERT INTO t3 VALUES(16480, 59341, 'fifty-nine thousand three hundred forty-one'); INSERT INTO t3 VALUES(16481, 6943, 'six thousand nine hundred forty-three'); INSERT INTO t3 VALUES(16482, 27474, 'twenty-seven thousand four hundred seventy-four'); INSERT INTO t3 VALUES(16483, 21919, 'twenty-one thousand nine hundred nineteen'); INSERT INTO t3 VALUES(16484, 75523, 'seventy-five thousand five hundred twenty-three'); INSERT INTO t3 VALUES(16485, 11804, 'eleven thousand eight hundred four'); INSERT INTO t3 VALUES(16486, 77689, 'seventy-seven thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(16487, 93631, 'ninety-three thousand six hundred thirty-one'); INSERT INTO t3 VALUES(16488, 24989, 'twenty-four thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(16489, 43707, 'forty-three thousand seven hundred seven'); INSERT INTO t3 VALUES(16490, 84187, 'eighty-four thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(16491, 37401, 'thirty-seven thousand four hundred one'); INSERT INTO t3 VALUES(16492, 92105, 'ninety-two thousand one hundred five'); INSERT INTO t3 VALUES(16493, 5740, 'five thousand seven hundred forty'); INSERT INTO t3 VALUES(16494, 46408, 'forty-six thousand four hundred eight'); INSERT INTO t3 VALUES(16495, 20796, 'twenty thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(16496, 54911, 'fifty-four thousand nine hundred eleven'); INSERT INTO t3 VALUES(16497, 57730, 'fifty-seven thousand seven hundred thirty'); INSERT INTO t3 VALUES(16498, 28369, 'twenty-eight thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(16499, 50018, 'fifty thousand eighteen'); INSERT INTO t3 VALUES(16500, 5554, 'five thousand five hundred fifty-four'); INSERT INTO t3 VALUES(16501, 64164, 'sixty-four thousand one hundred sixty-four'); INSERT INTO t3 VALUES(16502, 22750, 'twenty-two thousand seven hundred fifty'); INSERT INTO t3 VALUES(16503, 4604, 'four thousand six hundred four'); INSERT INTO t3 VALUES(16504, 43792, 'forty-three thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(16505, 78767, 'seventy-eight thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(16506, 16689, 'sixteen thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(16507, 73463, 'seventy-three thousand four hundred sixty-three'); INSERT INTO t3 VALUES(16508, 71135, 'seventy-one thousand one hundred thirty-five'); INSERT INTO t3 VALUES(16509, 93149, 'ninety-three thousand one hundred forty-nine'); INSERT INTO t3 VALUES(16510, 3504, 'three thousand five hundred four'); INSERT INTO t3 VALUES(16511, 98538, 'ninety-eight thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(16512, 89108, 'eighty-nine thousand one hundred eight'); INSERT INTO t3 VALUES(16513, 97708, 'ninety-seven thousand seven hundred eight'); INSERT INTO t3 VALUES(16514, 57353, 'fifty-seven thousand three hundred fifty-three'); INSERT INTO t3 VALUES(16515, 21626, 'twenty-one thousand six hundred twenty-six'); INSERT INTO t3 VALUES(16516, 89719, 'eighty-nine thousand seven hundred nineteen'); INSERT INTO t3 VALUES(16517, 94085, 'ninety-four thousand eighty-five'); INSERT INTO t3 VALUES(16518, 85095, 'eighty-five thousand ninety-five'); INSERT INTO t3 VALUES(16519, 49252, 'forty-nine thousand two hundred fifty-two'); INSERT INTO t3 VALUES(16520, 48114, 'forty-eight thousand one hundred fourteen'); INSERT INTO t3 VALUES(16521, 78855, 'seventy-eight thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(16522, 15596, 'fifteen thousand five hundred ninety-six'); INSERT INTO t3 VALUES(16523, 94790, 'ninety-four thousand seven hundred ninety'); INSERT INTO t3 VALUES(16524, 74232, 'seventy-four thousand two hundred thirty-two'); INSERT INTO t3 VALUES(16525, 37928, 'thirty-seven thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(16526, 4075, 'four thousand seventy-five'); INSERT INTO t3 VALUES(16527, 81990, 'eighty-one thousand nine hundred ninety'); INSERT INTO t3 VALUES(16528, 42126, 'forty-two thousand one hundred twenty-six'); INSERT INTO t3 VALUES(16529, 13943, 'thirteen thousand nine hundred forty-three'); INSERT INTO t3 VALUES(16530, 94325, 'ninety-four thousand three hundred twenty-five'); INSERT INTO t3 VALUES(16531, 7122, 'seven thousand one hundred twenty-two'); INSERT INTO t3 VALUES(16532, 67562, 'sixty-seven thousand five hundred sixty-two'); INSERT INTO t3 VALUES(16533, 40253, 'forty thousand two hundred fifty-three'); INSERT INTO t3 VALUES(16534, 70042, 'seventy thousand forty-two'); INSERT INTO t3 VALUES(16535, 69253, 'sixty-nine thousand two hundred fifty-three'); INSERT INTO t3 VALUES(16536, 66007, 'sixty-six thousand seven'); INSERT INTO t3 VALUES(16537, 83630, 'eighty-three thousand six hundred thirty'); INSERT INTO t3 VALUES(16538, 33589, 'thirty-three thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(16539, 70993, 'seventy thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(16540, 24581, 'twenty-four thousand five hundred eighty-one'); INSERT INTO t3 VALUES(16541, 12489, 'twelve thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(16542, 37807, 'thirty-seven thousand eight hundred seven'); INSERT INTO t3 VALUES(16543, 31594, 'thirty-one thousand five hundred ninety-four'); INSERT INTO t3 VALUES(16544, 6248, 'six thousand two hundred forty-eight'); INSERT INTO t3 VALUES(16545, 91117, 'ninety-one thousand one hundred seventeen'); INSERT INTO t3 VALUES(16546, 16096, 'sixteen thousand ninety-six'); INSERT INTO t3 VALUES(16547, 83898, 'eighty-three thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(16548, 94402, 'ninety-four thousand four hundred two'); INSERT INTO t3 VALUES(16549, 5180, 'five thousand one hundred eighty'); INSERT INTO t3 VALUES(16550, 65020, 'sixty-five thousand twenty'); INSERT INTO t3 VALUES(16551, 82203, 'eighty-two thousand two hundred three'); INSERT INTO t3 VALUES(16552, 89424, 'eighty-nine thousand four hundred twenty-four'); INSERT INTO t3 VALUES(16553, 82060, 'eighty-two thousand sixty'); INSERT INTO t3 VALUES(16554, 34425, 'thirty-four thousand four hundred twenty-five'); INSERT INTO t3 VALUES(16555, 29211, 'twenty-nine thousand two hundred eleven'); INSERT INTO t3 VALUES(16556, 94496, 'ninety-four thousand four hundred ninety-six'); INSERT INTO t3 VALUES(16557, 26701, 'twenty-six thousand seven hundred one'); INSERT INTO t3 VALUES(16558, 60958, 'sixty thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(16559, 81826, 'eighty-one thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(16560, 42157, 'forty-two thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(16561, 35660, 'thirty-five thousand six hundred sixty'); INSERT INTO t3 VALUES(16562, 78893, 'seventy-eight thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(16563, 99288, 'ninety-nine thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(16564, 84784, 'eighty-four thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(16565, 55252, 'fifty-five thousand two hundred fifty-two'); INSERT INTO t3 VALUES(16566, 7686, 'seven thousand six hundred eighty-six'); INSERT INTO t3 VALUES(16567, 49280, 'forty-nine thousand two hundred eighty'); INSERT INTO t3 VALUES(16568, 29623, 'twenty-nine thousand six hundred twenty-three'); INSERT INTO t3 VALUES(16569, 14298, 'fourteen thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(16570, 50356, 'fifty thousand three hundred fifty-six'); INSERT INTO t3 VALUES(16571, 26867, 'twenty-six thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(16572, 67817, 'sixty-seven thousand eight hundred seventeen'); INSERT INTO t3 VALUES(16573, 25310, 'twenty-five thousand three hundred ten'); INSERT INTO t3 VALUES(16574, 24928, 'twenty-four thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(16575, 72510, 'seventy-two thousand five hundred ten'); INSERT INTO t3 VALUES(16576, 44975, 'forty-four thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(16577, 23957, 'twenty-three thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(16578, 88426, 'eighty-eight thousand four hundred twenty-six'); INSERT INTO t3 VALUES(16579, 76158, 'seventy-six thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(16580, 16503, 'sixteen thousand five hundred three'); INSERT INTO t3 VALUES(16581, 97127, 'ninety-seven thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(16582, 93858, 'ninety-three thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(16583, 68715, 'sixty-eight thousand seven hundred fifteen'); INSERT INTO t3 VALUES(16584, 55142, 'fifty-five thousand one hundred forty-two'); INSERT INTO t3 VALUES(16585, 56164, 'fifty-six thousand one hundred sixty-four'); INSERT INTO t3 VALUES(16586, 90967, 'ninety thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(16587, 90260, 'ninety thousand two hundred sixty'); INSERT INTO t3 VALUES(16588, 5762, 'five thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(16589, 6257, 'six thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(16590, 81436, 'eighty-one thousand four hundred thirty-six'); INSERT INTO t3 VALUES(16591, 6830, 'six thousand eight hundred thirty'); INSERT INTO t3 VALUES(16592, 15419, 'fifteen thousand four hundred nineteen'); INSERT INTO t3 VALUES(16593, 57242, 'fifty-seven thousand two hundred forty-two'); INSERT INTO t3 VALUES(16594, 45880, 'forty-five thousand eight hundred eighty'); INSERT INTO t3 VALUES(16595, 95943, 'ninety-five thousand nine hundred forty-three'); INSERT INTO t3 VALUES(16596, 58916, 'fifty-eight thousand nine hundred sixteen'); INSERT INTO t3 VALUES(16597, 39368, 'thirty-nine thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(16598, 49719, 'forty-nine thousand seven hundred nineteen'); INSERT INTO t3 VALUES(16599, 71253, 'seventy-one thousand two hundred fifty-three'); INSERT INTO t3 VALUES(16600, 78996, 'seventy-eight thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(16601, 85298, 'eighty-five thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(16602, 29028, 'twenty-nine thousand twenty-eight'); INSERT INTO t3 VALUES(16603, 9968, 'nine thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(16604, 19528, 'nineteen thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(16605, 97740, 'ninety-seven thousand seven hundred forty'); INSERT INTO t3 VALUES(16606, 82269, 'eighty-two thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(16607, 31525, 'thirty-one thousand five hundred twenty-five'); INSERT INTO t3 VALUES(16608, 84320, 'eighty-four thousand three hundred twenty'); INSERT INTO t3 VALUES(16609, 32254, 'thirty-two thousand two hundred fifty-four'); INSERT INTO t3 VALUES(16610, 82210, 'eighty-two thousand two hundred ten'); INSERT INTO t3 VALUES(16611, 4707, 'four thousand seven hundred seven'); INSERT INTO t3 VALUES(16612, 88726, 'eighty-eight thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(16613, 59890, 'fifty-nine thousand eight hundred ninety'); INSERT INTO t3 VALUES(16614, 48064, 'forty-eight thousand sixty-four'); INSERT INTO t3 VALUES(16615, 79186, 'seventy-nine thousand one hundred eighty-six'); INSERT INTO t3 VALUES(16616, 96873, 'ninety-six thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(16617, 67112, 'sixty-seven thousand one hundred twelve'); INSERT INTO t3 VALUES(16618, 64281, 'sixty-four thousand two hundred eighty-one'); INSERT INTO t3 VALUES(16619, 51857, 'fifty-one thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(16620, 86019, 'eighty-six thousand nineteen'); INSERT INTO t3 VALUES(16621, 1557, 'one thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(16622, 70741, 'seventy thousand seven hundred forty-one'); INSERT INTO t3 VALUES(16623, 71783, 'seventy-one thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(16624, 25620, 'twenty-five thousand six hundred twenty'); INSERT INTO t3 VALUES(16625, 40113, 'forty thousand one hundred thirteen'); INSERT INTO t3 VALUES(16626, 97310, 'ninety-seven thousand three hundred ten'); INSERT INTO t3 VALUES(16627, 19707, 'nineteen thousand seven hundred seven'); INSERT INTO t3 VALUES(16628, 80869, 'eighty thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(16629, 73997, 'seventy-three thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(16630, 95063, 'ninety-five thousand sixty-three'); INSERT INTO t3 VALUES(16631, 40131, 'forty thousand one hundred thirty-one'); INSERT INTO t3 VALUES(16632, 83385, 'eighty-three thousand three hundred eighty-five'); INSERT INTO t3 VALUES(16633, 17344, 'seventeen thousand three hundred forty-four'); INSERT INTO t3 VALUES(16634, 81701, 'eighty-one thousand seven hundred one'); INSERT INTO t3 VALUES(16635, 40864, 'forty thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(16636, 73484, 'seventy-three thousand four hundred eighty-four'); INSERT INTO t3 VALUES(16637, 47371, 'forty-seven thousand three hundred seventy-one'); INSERT INTO t3 VALUES(16638, 13680, 'thirteen thousand six hundred eighty'); INSERT INTO t3 VALUES(16639, 58944, 'fifty-eight thousand nine hundred forty-four'); INSERT INTO t3 VALUES(16640, 48766, 'forty-eight thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(16641, 56983, 'fifty-six thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(16642, 49063, 'forty-nine thousand sixty-three'); INSERT INTO t3 VALUES(16643, 35055, 'thirty-five thousand fifty-five'); INSERT INTO t3 VALUES(16644, 16333, 'sixteen thousand three hundred thirty-three'); INSERT INTO t3 VALUES(16645, 2595, 'two thousand five hundred ninety-five'); INSERT INTO t3 VALUES(16646, 74693, 'seventy-four thousand six hundred ninety-three'); INSERT INTO t3 VALUES(16647, 23070, 'twenty-three thousand seventy'); INSERT INTO t3 VALUES(16648, 94879, 'ninety-four thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(16649, 78876, 'seventy-eight thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(16650, 40040, 'forty thousand forty'); INSERT INTO t3 VALUES(16651, 40327, 'forty thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(16652, 94773, 'ninety-four thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(16653, 97894, 'ninety-seven thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(16654, 28232, 'twenty-eight thousand two hundred thirty-two'); INSERT INTO t3 VALUES(16655, 41606, 'forty-one thousand six hundred six'); INSERT INTO t3 VALUES(16656, 58347, 'fifty-eight thousand three hundred forty-seven'); INSERT INTO t3 VALUES(16657, 70372, 'seventy thousand three hundred seventy-two'); INSERT INTO t3 VALUES(16658, 2307, 'two thousand three hundred seven'); INSERT INTO t3 VALUES(16659, 10443, 'ten thousand four hundred forty-three'); INSERT INTO t3 VALUES(16660, 98569, 'ninety-eight thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(16661, 64822, 'sixty-four thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(16662, 4020, 'four thousand twenty'); INSERT INTO t3 VALUES(16663, 61330, 'sixty-one thousand three hundred thirty'); INSERT INTO t3 VALUES(16664, 25805, 'twenty-five thousand eight hundred five'); INSERT INTO t3 VALUES(16665, 85760, 'eighty-five thousand seven hundred sixty'); INSERT INTO t3 VALUES(16666, 49823, 'forty-nine thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(16667, 13946, 'thirteen thousand nine hundred forty-six'); INSERT INTO t3 VALUES(16668, 10774, 'ten thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(16669, 70412, 'seventy thousand four hundred twelve'); INSERT INTO t3 VALUES(16670, 75357, 'seventy-five thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(16671, 40273, 'forty thousand two hundred seventy-three'); INSERT INTO t3 VALUES(16672, 41325, 'forty-one thousand three hundred twenty-five'); INSERT INTO t3 VALUES(16673, 80069, 'eighty thousand sixty-nine'); INSERT INTO t3 VALUES(16674, 79826, 'seventy-nine thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(16675, 40063, 'forty thousand sixty-three'); INSERT INTO t3 VALUES(16676, 4729, 'four thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(16677, 33520, 'thirty-three thousand five hundred twenty'); INSERT INTO t3 VALUES(16678, 10896, 'ten thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(16679, 39604, 'thirty-nine thousand six hundred four'); INSERT INTO t3 VALUES(16680, 91270, 'ninety-one thousand two hundred seventy'); INSERT INTO t3 VALUES(16681, 31440, 'thirty-one thousand four hundred forty'); INSERT INTO t3 VALUES(16682, 67528, 'sixty-seven thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(16683, 47873, 'forty-seven thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(16684, 71769, 'seventy-one thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(16685, 41492, 'forty-one thousand four hundred ninety-two'); INSERT INTO t3 VALUES(16686, 23302, 'twenty-three thousand three hundred two'); INSERT INTO t3 VALUES(16687, 36299, 'thirty-six thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(16688, 32092, 'thirty-two thousand ninety-two'); INSERT INTO t3 VALUES(16689, 74985, 'seventy-four thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(16690, 92065, 'ninety-two thousand sixty-five'); INSERT INTO t3 VALUES(16691, 18205, 'eighteen thousand two hundred five'); INSERT INTO t3 VALUES(16692, 94840, 'ninety-four thousand eight hundred forty'); INSERT INTO t3 VALUES(16693, 41416, 'forty-one thousand four hundred sixteen'); INSERT INTO t3 VALUES(16694, 88002, 'eighty-eight thousand two'); INSERT INTO t3 VALUES(16695, 94338, 'ninety-four thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(16696, 95261, 'ninety-five thousand two hundred sixty-one'); INSERT INTO t3 VALUES(16697, 50277, 'fifty thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(16698, 17066, 'seventeen thousand sixty-six'); INSERT INTO t3 VALUES(16699, 38162, 'thirty-eight thousand one hundred sixty-two'); INSERT INTO t3 VALUES(16700, 44807, 'forty-four thousand eight hundred seven'); INSERT INTO t3 VALUES(16701, 10727, 'ten thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(16702, 14542, 'fourteen thousand five hundred forty-two'); INSERT INTO t3 VALUES(16703, 95518, 'ninety-five thousand five hundred eighteen'); INSERT INTO t3 VALUES(16704, 83077, 'eighty-three thousand seventy-seven'); INSERT INTO t3 VALUES(16705, 55666, 'fifty-five thousand six hundred sixty-six'); INSERT INTO t3 VALUES(16706, 25202, 'twenty-five thousand two hundred two'); INSERT INTO t3 VALUES(16707, 73677, 'seventy-three thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(16708, 73768, 'seventy-three thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(16709, 84851, 'eighty-four thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(16710, 37636, 'thirty-seven thousand six hundred thirty-six'); INSERT INTO t3 VALUES(16711, 18429, 'eighteen thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(16712, 71339, 'seventy-one thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(16713, 55770, 'fifty-five thousand seven hundred seventy'); INSERT INTO t3 VALUES(16714, 9861, 'nine thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(16715, 17973, 'seventeen thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(16716, 38438, 'thirty-eight thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(16717, 67855, 'sixty-seven thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(16718, 40450, 'forty thousand four hundred fifty'); INSERT INTO t3 VALUES(16719, 40228, 'forty thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(16720, 75986, 'seventy-five thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(16721, 4348, 'four thousand three hundred forty-eight'); INSERT INTO t3 VALUES(16722, 80956, 'eighty thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(16723, 72242, 'seventy-two thousand two hundred forty-two'); INSERT INTO t3 VALUES(16724, 50975, 'fifty thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(16725, 66261, 'sixty-six thousand two hundred sixty-one'); INSERT INTO t3 VALUES(16726, 74527, 'seventy-four thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(16727, 73247, 'seventy-three thousand two hundred forty-seven'); INSERT INTO t3 VALUES(16728, 39306, 'thirty-nine thousand three hundred six'); INSERT INTO t3 VALUES(16729, 77488, 'seventy-seven thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(16730, 46180, 'forty-six thousand one hundred eighty'); INSERT INTO t3 VALUES(16731, 41076, 'forty-one thousand seventy-six'); INSERT INTO t3 VALUES(16732, 20270, 'twenty thousand two hundred seventy'); INSERT INTO t3 VALUES(16733, 81210, 'eighty-one thousand two hundred ten'); INSERT INTO t3 VALUES(16734, 8430, 'eight thousand four hundred thirty'); INSERT INTO t3 VALUES(16735, 43882, 'forty-three thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(16736, 88178, 'eighty-eight thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(16737, 1745, 'one thousand seven hundred forty-five'); INSERT INTO t3 VALUES(16738, 50680, 'fifty thousand six hundred eighty'); INSERT INTO t3 VALUES(16739, 30272, 'thirty thousand two hundred seventy-two'); INSERT INTO t3 VALUES(16740, 42171, 'forty-two thousand one hundred seventy-one'); INSERT INTO t3 VALUES(16741, 15460, 'fifteen thousand four hundred sixty'); INSERT INTO t3 VALUES(16742, 15161, 'fifteen thousand one hundred sixty-one'); INSERT INTO t3 VALUES(16743, 20855, 'twenty thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(16744, 38718, 'thirty-eight thousand seven hundred eighteen'); INSERT INTO t3 VALUES(16745, 4495, 'four thousand four hundred ninety-five'); INSERT INTO t3 VALUES(16746, 25727, 'twenty-five thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(16747, 77573, 'seventy-seven thousand five hundred seventy-three'); INSERT INTO t3 VALUES(16748, 161, 'one hundred sixty-one'); INSERT INTO t3 VALUES(16749, 91763, 'ninety-one thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(16750, 96121, 'ninety-six thousand one hundred twenty-one'); INSERT INTO t3 VALUES(16751, 94514, 'ninety-four thousand five hundred fourteen'); INSERT INTO t3 VALUES(16752, 84448, 'eighty-four thousand four hundred forty-eight'); INSERT INTO t3 VALUES(16753, 54246, 'fifty-four thousand two hundred forty-six'); INSERT INTO t3 VALUES(16754, 70057, 'seventy thousand fifty-seven'); INSERT INTO t3 VALUES(16755, 1893, 'one thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(16756, 65360, 'sixty-five thousand three hundred sixty'); INSERT INTO t3 VALUES(16757, 68082, 'sixty-eight thousand eighty-two'); INSERT INTO t3 VALUES(16758, 94486, 'ninety-four thousand four hundred eighty-six'); INSERT INTO t3 VALUES(16759, 16424, 'sixteen thousand four hundred twenty-four'); INSERT INTO t3 VALUES(16760, 8171, 'eight thousand one hundred seventy-one'); INSERT INTO t3 VALUES(16761, 66650, 'sixty-six thousand six hundred fifty'); INSERT INTO t3 VALUES(16762, 57761, 'fifty-seven thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(16763, 81716, 'eighty-one thousand seven hundred sixteen'); INSERT INTO t3 VALUES(16764, 20959, 'twenty thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(16765, 64886, 'sixty-four thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(16766, 11942, 'eleven thousand nine hundred forty-two'); INSERT INTO t3 VALUES(16767, 43713, 'forty-three thousand seven hundred thirteen'); INSERT INTO t3 VALUES(16768, 27009, 'twenty-seven thousand nine'); INSERT INTO t3 VALUES(16769, 65097, 'sixty-five thousand ninety-seven'); INSERT INTO t3 VALUES(16770, 224, 'two hundred twenty-four'); INSERT INTO t3 VALUES(16771, 68279, 'sixty-eight thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(16772, 75585, 'seventy-five thousand five hundred eighty-five'); INSERT INTO t3 VALUES(16773, 25412, 'twenty-five thousand four hundred twelve'); INSERT INTO t3 VALUES(16774, 8120, 'eight thousand one hundred twenty'); INSERT INTO t3 VALUES(16775, 77387, 'seventy-seven thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(16776, 55274, 'fifty-five thousand two hundred seventy-four'); INSERT INTO t3 VALUES(16777, 98376, 'ninety-eight thousand three hundred seventy-six'); INSERT INTO t3 VALUES(16778, 32920, 'thirty-two thousand nine hundred twenty'); INSERT INTO t3 VALUES(16779, 9442, 'nine thousand four hundred forty-two'); INSERT INTO t3 VALUES(16780, 47345, 'forty-seven thousand three hundred forty-five'); INSERT INTO t3 VALUES(16781, 80701, 'eighty thousand seven hundred one'); INSERT INTO t3 VALUES(16782, 81536, 'eighty-one thousand five hundred thirty-six'); INSERT INTO t3 VALUES(16783, 24773, 'twenty-four thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(16784, 43372, 'forty-three thousand three hundred seventy-two'); INSERT INTO t3 VALUES(16785, 98513, 'ninety-eight thousand five hundred thirteen'); INSERT INTO t3 VALUES(16786, 75910, 'seventy-five thousand nine hundred ten'); INSERT INTO t3 VALUES(16787, 43921, 'forty-three thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(16788, 67223, 'sixty-seven thousand two hundred twenty-three'); INSERT INTO t3 VALUES(16789, 16180, 'sixteen thousand one hundred eighty'); INSERT INTO t3 VALUES(16790, 5120, 'five thousand one hundred twenty'); INSERT INTO t3 VALUES(16791, 33007, 'thirty-three thousand seven'); INSERT INTO t3 VALUES(16792, 16289, 'sixteen thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(16793, 9307, 'nine thousand three hundred seven'); INSERT INTO t3 VALUES(16794, 99746, 'ninety-nine thousand seven hundred forty-six'); INSERT INTO t3 VALUES(16795, 4384, 'four thousand three hundred eighty-four'); INSERT INTO t3 VALUES(16796, 34029, 'thirty-four thousand twenty-nine'); INSERT INTO t3 VALUES(16797, 52498, 'fifty-two thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(16798, 25558, 'twenty-five thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(16799, 45698, 'forty-five thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(16800, 46660, 'forty-six thousand six hundred sixty'); INSERT INTO t3 VALUES(16801, 62847, 'sixty-two thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(16802, 87048, 'eighty-seven thousand forty-eight'); INSERT INTO t3 VALUES(16803, 36782, 'thirty-six thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(16804, 29840, 'twenty-nine thousand eight hundred forty'); INSERT INTO t3 VALUES(16805, 87985, 'eighty-seven thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(16806, 49742, 'forty-nine thousand seven hundred forty-two'); INSERT INTO t3 VALUES(16807, 45591, 'forty-five thousand five hundred ninety-one'); INSERT INTO t3 VALUES(16808, 88951, 'eighty-eight thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(16809, 91650, 'ninety-one thousand six hundred fifty'); INSERT INTO t3 VALUES(16810, 5211, 'five thousand two hundred eleven'); INSERT INTO t3 VALUES(16811, 72990, 'seventy-two thousand nine hundred ninety'); INSERT INTO t3 VALUES(16812, 11207, 'eleven thousand two hundred seven'); INSERT INTO t3 VALUES(16813, 75821, 'seventy-five thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(16814, 80781, 'eighty thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(16815, 81383, 'eighty-one thousand three hundred eighty-three'); INSERT INTO t3 VALUES(16816, 54858, 'fifty-four thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(16817, 23954, 'twenty-three thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(16818, 16825, 'sixteen thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(16819, 20043, 'twenty thousand forty-three'); INSERT INTO t3 VALUES(16820, 25323, 'twenty-five thousand three hundred twenty-three'); INSERT INTO t3 VALUES(16821, 88853, 'eighty-eight thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(16822, 66251, 'sixty-six thousand two hundred fifty-one'); INSERT INTO t3 VALUES(16823, 53299, 'fifty-three thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(16824, 73133, 'seventy-three thousand one hundred thirty-three'); INSERT INTO t3 VALUES(16825, 54252, 'fifty-four thousand two hundred fifty-two'); INSERT INTO t3 VALUES(16826, 42210, 'forty-two thousand two hundred ten'); INSERT INTO t3 VALUES(16827, 1008, 'one thousand eight'); INSERT INTO t3 VALUES(16828, 88511, 'eighty-eight thousand five hundred eleven'); INSERT INTO t3 VALUES(16829, 94909, 'ninety-four thousand nine hundred nine'); INSERT INTO t3 VALUES(16830, 90538, 'ninety thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(16831, 5984, 'five thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(16832, 64051, 'sixty-four thousand fifty-one'); INSERT INTO t3 VALUES(16833, 93119, 'ninety-three thousand one hundred nineteen'); INSERT INTO t3 VALUES(16834, 2658, 'two thousand six hundred fifty-eight'); INSERT INTO t3 VALUES(16835, 5181, 'five thousand one hundred eighty-one'); INSERT INTO t3 VALUES(16836, 6647, 'six thousand six hundred forty-seven'); INSERT INTO t3 VALUES(16837, 13864, 'thirteen thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(16838, 21195, 'twenty-one thousand one hundred ninety-five'); INSERT INTO t3 VALUES(16839, 31379, 'thirty-one thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(16840, 20884, 'twenty thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(16841, 31841, 'thirty-one thousand eight hundred forty-one'); INSERT INTO t3 VALUES(16842, 17804, 'seventeen thousand eight hundred four'); INSERT INTO t3 VALUES(16843, 34418, 'thirty-four thousand four hundred eighteen'); INSERT INTO t3 VALUES(16844, 81012, 'eighty-one thousand twelve'); INSERT INTO t3 VALUES(16845, 34202, 'thirty-four thousand two hundred two'); INSERT INTO t3 VALUES(16846, 41365, 'forty-one thousand three hundred sixty-five'); INSERT INTO t3 VALUES(16847, 57005, 'fifty-seven thousand five'); INSERT INTO t3 VALUES(16848, 13783, 'thirteen thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(16849, 26317, 'twenty-six thousand three hundred seventeen'); INSERT INTO t3 VALUES(16850, 15735, 'fifteen thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(16851, 52702, 'fifty-two thousand seven hundred two'); INSERT INTO t3 VALUES(16852, 46999, 'forty-six thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(16853, 17673, 'seventeen thousand six hundred seventy-three'); INSERT INTO t3 VALUES(16854, 34843, 'thirty-four thousand eight hundred forty-three'); INSERT INTO t3 VALUES(16855, 91000, 'ninety-one thousand'); INSERT INTO t3 VALUES(16856, 23654, 'twenty-three thousand six hundred fifty-four'); INSERT INTO t3 VALUES(16857, 39864, 'thirty-nine thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(16858, 36335, 'thirty-six thousand three hundred thirty-five'); INSERT INTO t3 VALUES(16859, 62564, 'sixty-two thousand five hundred sixty-four'); INSERT INTO t3 VALUES(16860, 10970, 'ten thousand nine hundred seventy'); INSERT INTO t3 VALUES(16861, 54194, 'fifty-four thousand one hundred ninety-four'); INSERT INTO t3 VALUES(16862, 7003, 'seven thousand three'); INSERT INTO t3 VALUES(16863, 42238, 'forty-two thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(16864, 86694, 'eighty-six thousand six hundred ninety-four'); INSERT INTO t3 VALUES(16865, 76589, 'seventy-six thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(16866, 2153, 'two thousand one hundred fifty-three'); INSERT INTO t3 VALUES(16867, 5233, 'five thousand two hundred thirty-three'); INSERT INTO t3 VALUES(16868, 51793, 'fifty-one thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(16869, 88978, 'eighty-eight thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(16870, 21437, 'twenty-one thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(16871, 49746, 'forty-nine thousand seven hundred forty-six'); INSERT INTO t3 VALUES(16872, 75343, 'seventy-five thousand three hundred forty-three'); INSERT INTO t3 VALUES(16873, 84019, 'eighty-four thousand nineteen'); INSERT INTO t3 VALUES(16874, 5524, 'five thousand five hundred twenty-four'); INSERT INTO t3 VALUES(16875, 92466, 'ninety-two thousand four hundred sixty-six'); INSERT INTO t3 VALUES(16876, 94043, 'ninety-four thousand forty-three'); INSERT INTO t3 VALUES(16877, 41692, 'forty-one thousand six hundred ninety-two'); INSERT INTO t3 VALUES(16878, 60075, 'sixty thousand seventy-five'); INSERT INTO t3 VALUES(16879, 57777, 'fifty-seven thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(16880, 63361, 'sixty-three thousand three hundred sixty-one'); INSERT INTO t3 VALUES(16881, 12691, 'twelve thousand six hundred ninety-one'); INSERT INTO t3 VALUES(16882, 35852, 'thirty-five thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(16883, 89924, 'eighty-nine thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(16884, 37922, 'thirty-seven thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(16885, 19978, 'nineteen thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(16886, 69874, 'sixty-nine thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(16887, 37673, 'thirty-seven thousand six hundred seventy-three'); INSERT INTO t3 VALUES(16888, 47718, 'forty-seven thousand seven hundred eighteen'); INSERT INTO t3 VALUES(16889, 81335, 'eighty-one thousand three hundred thirty-five'); INSERT INTO t3 VALUES(16890, 20094, 'twenty thousand ninety-four'); INSERT INTO t3 VALUES(16891, 39051, 'thirty-nine thousand fifty-one'); INSERT INTO t3 VALUES(16892, 87785, 'eighty-seven thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(16893, 3777, 'three thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(16894, 48554, 'forty-eight thousand five hundred fifty-four'); INSERT INTO t3 VALUES(16895, 55848, 'fifty-five thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(16896, 65128, 'sixty-five thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(16897, 866, 'eight hundred sixty-six'); INSERT INTO t3 VALUES(16898, 91552, 'ninety-one thousand five hundred fifty-two'); INSERT INTO t3 VALUES(16899, 42745, 'forty-two thousand seven hundred forty-five'); INSERT INTO t3 VALUES(16900, 44360, 'forty-four thousand three hundred sixty'); INSERT INTO t3 VALUES(16901, 76329, 'seventy-six thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(16902, 39101, 'thirty-nine thousand one hundred one'); INSERT INTO t3 VALUES(16903, 87458, 'eighty-seven thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(16904, 11345, 'eleven thousand three hundred forty-five'); INSERT INTO t3 VALUES(16905, 60509, 'sixty thousand five hundred nine'); INSERT INTO t3 VALUES(16906, 65765, 'sixty-five thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(16907, 1938, 'one thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(16908, 51533, 'fifty-one thousand five hundred thirty-three'); INSERT INTO t3 VALUES(16909, 51167, 'fifty-one thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(16910, 32618, 'thirty-two thousand six hundred eighteen'); INSERT INTO t3 VALUES(16911, 2213, 'two thousand two hundred thirteen'); INSERT INTO t3 VALUES(16912, 90188, 'ninety thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(16913, 33544, 'thirty-three thousand five hundred forty-four'); INSERT INTO t3 VALUES(16914, 36602, 'thirty-six thousand six hundred two'); INSERT INTO t3 VALUES(16915, 59814, 'fifty-nine thousand eight hundred fourteen'); INSERT INTO t3 VALUES(16916, 58502, 'fifty-eight thousand five hundred two'); INSERT INTO t3 VALUES(16917, 14464, 'fourteen thousand four hundred sixty-four'); INSERT INTO t3 VALUES(16918, 60101, 'sixty thousand one hundred one'); INSERT INTO t3 VALUES(16919, 54040, 'fifty-four thousand forty'); INSERT INTO t3 VALUES(16920, 90217, 'ninety thousand two hundred seventeen'); INSERT INTO t3 VALUES(16921, 29392, 'twenty-nine thousand three hundred ninety-two'); INSERT INTO t3 VALUES(16922, 91626, 'ninety-one thousand six hundred twenty-six'); INSERT INTO t3 VALUES(16923, 75991, 'seventy-five thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(16924, 15585, 'fifteen thousand five hundred eighty-five'); INSERT INTO t3 VALUES(16925, 64082, 'sixty-four thousand eighty-two'); INSERT INTO t3 VALUES(16926, 38232, 'thirty-eight thousand two hundred thirty-two'); INSERT INTO t3 VALUES(16927, 11196, 'eleven thousand one hundred ninety-six'); INSERT INTO t3 VALUES(16928, 30689, 'thirty thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(16929, 28855, 'twenty-eight thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(16930, 32059, 'thirty-two thousand fifty-nine'); INSERT INTO t3 VALUES(16931, 91177, 'ninety-one thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(16932, 53387, 'fifty-three thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(16933, 42930, 'forty-two thousand nine hundred thirty'); INSERT INTO t3 VALUES(16934, 27797, 'twenty-seven thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(16935, 41899, 'forty-one thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(16936, 77488, 'seventy-seven thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(16937, 79068, 'seventy-nine thousand sixty-eight'); INSERT INTO t3 VALUES(16938, 47908, 'forty-seven thousand nine hundred eight'); INSERT INTO t3 VALUES(16939, 19993, 'nineteen thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(16940, 58154, 'fifty-eight thousand one hundred fifty-four'); INSERT INTO t3 VALUES(16941, 4725, 'four thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(16942, 36570, 'thirty-six thousand five hundred seventy'); INSERT INTO t3 VALUES(16943, 6516, 'six thousand five hundred sixteen'); INSERT INTO t3 VALUES(16944, 7855, 'seven thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(16945, 47358, 'forty-seven thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(16946, 99510, 'ninety-nine thousand five hundred ten'); INSERT INTO t3 VALUES(16947, 81640, 'eighty-one thousand six hundred forty'); INSERT INTO t3 VALUES(16948, 76124, 'seventy-six thousand one hundred twenty-four'); INSERT INTO t3 VALUES(16949, 21127, 'twenty-one thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(16950, 23642, 'twenty-three thousand six hundred forty-two'); INSERT INTO t3 VALUES(16951, 34613, 'thirty-four thousand six hundred thirteen'); INSERT INTO t3 VALUES(16952, 12952, 'twelve thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(16953, 30383, 'thirty thousand three hundred eighty-three'); INSERT INTO t3 VALUES(16954, 76084, 'seventy-six thousand eighty-four'); INSERT INTO t3 VALUES(16955, 32886, 'thirty-two thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(16956, 82780, 'eighty-two thousand seven hundred eighty'); INSERT INTO t3 VALUES(16957, 23413, 'twenty-three thousand four hundred thirteen'); INSERT INTO t3 VALUES(16958, 70806, 'seventy thousand eight hundred six'); INSERT INTO t3 VALUES(16959, 10306, 'ten thousand three hundred six'); INSERT INTO t3 VALUES(16960, 96443, 'ninety-six thousand four hundred forty-three'); INSERT INTO t3 VALUES(16961, 26933, 'twenty-six thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(16962, 34535, 'thirty-four thousand five hundred thirty-five'); INSERT INTO t3 VALUES(16963, 60531, 'sixty thousand five hundred thirty-one'); INSERT INTO t3 VALUES(16964, 67857, 'sixty-seven thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(16965, 25588, 'twenty-five thousand five hundred eighty-eight'); INSERT INTO t3 VALUES(16966, 93291, 'ninety-three thousand two hundred ninety-one'); INSERT INTO t3 VALUES(16967, 75840, 'seventy-five thousand eight hundred forty'); INSERT INTO t3 VALUES(16968, 54350, 'fifty-four thousand three hundred fifty'); INSERT INTO t3 VALUES(16969, 9060, 'nine thousand sixty'); INSERT INTO t3 VALUES(16970, 21383, 'twenty-one thousand three hundred eighty-three'); INSERT INTO t3 VALUES(16971, 77407, 'seventy-seven thousand four hundred seven'); INSERT INTO t3 VALUES(16972, 70534, 'seventy thousand five hundred thirty-four'); INSERT INTO t3 VALUES(16973, 6166, 'six thousand one hundred sixty-six'); INSERT INTO t3 VALUES(16974, 27907, 'twenty-seven thousand nine hundred seven'); INSERT INTO t3 VALUES(16975, 14888, 'fourteen thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(16976, 91496, 'ninety-one thousand four hundred ninety-six'); INSERT INTO t3 VALUES(16977, 74124, 'seventy-four thousand one hundred twenty-four'); INSERT INTO t3 VALUES(16978, 38036, 'thirty-eight thousand thirty-six'); INSERT INTO t3 VALUES(16979, 31916, 'thirty-one thousand nine hundred sixteen'); INSERT INTO t3 VALUES(16980, 81656, 'eighty-one thousand six hundred fifty-six'); INSERT INTO t3 VALUES(16981, 33247, 'thirty-three thousand two hundred forty-seven'); INSERT INTO t3 VALUES(16982, 10253, 'ten thousand two hundred fifty-three'); INSERT INTO t3 VALUES(16983, 66230, 'sixty-six thousand two hundred thirty'); INSERT INTO t3 VALUES(16984, 9165, 'nine thousand one hundred sixty-five'); INSERT INTO t3 VALUES(16985, 2763, 'two thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(16986, 63257, 'sixty-three thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(16987, 51111, 'fifty-one thousand one hundred eleven'); INSERT INTO t3 VALUES(16988, 93673, 'ninety-three thousand six hundred seventy-three'); INSERT INTO t3 VALUES(16989, 65158, 'sixty-five thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(16990, 25098, 'twenty-five thousand ninety-eight'); INSERT INTO t3 VALUES(16991, 41649, 'forty-one thousand six hundred forty-nine'); INSERT INTO t3 VALUES(16992, 92139, 'ninety-two thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(16993, 68270, 'sixty-eight thousand two hundred seventy'); INSERT INTO t3 VALUES(16994, 89759, 'eighty-nine thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(16995, 58740, 'fifty-eight thousand seven hundred forty'); INSERT INTO t3 VALUES(16996, 28522, 'twenty-eight thousand five hundred twenty-two'); INSERT INTO t3 VALUES(16997, 65057, 'sixty-five thousand fifty-seven'); INSERT INTO t3 VALUES(16998, 75102, 'seventy-five thousand one hundred two'); INSERT INTO t3 VALUES(16999, 95953, 'ninety-five thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(17000, 2106, 'two thousand one hundred six'); INSERT INTO t3 VALUES(17001, 63494, 'sixty-three thousand four hundred ninety-four'); INSERT INTO t3 VALUES(17002, 35242, 'thirty-five thousand two hundred forty-two'); INSERT INTO t3 VALUES(17003, 97552, 'ninety-seven thousand five hundred fifty-two'); INSERT INTO t3 VALUES(17004, 56337, 'fifty-six thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(17005, 82048, 'eighty-two thousand forty-eight'); INSERT INTO t3 VALUES(17006, 62080, 'sixty-two thousand eighty'); INSERT INTO t3 VALUES(17007, 60988, 'sixty thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(17008, 97047, 'ninety-seven thousand forty-seven'); INSERT INTO t3 VALUES(17009, 81550, 'eighty-one thousand five hundred fifty'); INSERT INTO t3 VALUES(17010, 46611, 'forty-six thousand six hundred eleven'); INSERT INTO t3 VALUES(17011, 53479, 'fifty-three thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(17012, 60548, 'sixty thousand five hundred forty-eight'); INSERT INTO t3 VALUES(17013, 92466, 'ninety-two thousand four hundred sixty-six'); INSERT INTO t3 VALUES(17014, 21052, 'twenty-one thousand fifty-two'); INSERT INTO t3 VALUES(17015, 49849, 'forty-nine thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(17016, 34225, 'thirty-four thousand two hundred twenty-five'); INSERT INTO t3 VALUES(17017, 39376, 'thirty-nine thousand three hundred seventy-six'); INSERT INTO t3 VALUES(17018, 4686, 'four thousand six hundred eighty-six'); INSERT INTO t3 VALUES(17019, 81570, 'eighty-one thousand five hundred seventy'); INSERT INTO t3 VALUES(17020, 46477, 'forty-six thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(17021, 77972, 'seventy-seven thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(17022, 39055, 'thirty-nine thousand fifty-five'); INSERT INTO t3 VALUES(17023, 95375, 'ninety-five thousand three hundred seventy-five'); INSERT INTO t3 VALUES(17024, 91815, 'ninety-one thousand eight hundred fifteen'); INSERT INTO t3 VALUES(17025, 735, 'seven hundred thirty-five'); INSERT INTO t3 VALUES(17026, 43397, 'forty-three thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(17027, 45161, 'forty-five thousand one hundred sixty-one'); INSERT INTO t3 VALUES(17028, 39624, 'thirty-nine thousand six hundred twenty-four'); INSERT INTO t3 VALUES(17029, 16783, 'sixteen thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(17030, 19972, 'nineteen thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(17031, 52155, 'fifty-two thousand one hundred fifty-five'); INSERT INTO t3 VALUES(17032, 4652, 'four thousand six hundred fifty-two'); INSERT INTO t3 VALUES(17033, 39468, 'thirty-nine thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(17034, 68683, 'sixty-eight thousand six hundred eighty-three'); INSERT INTO t3 VALUES(17035, 81991, 'eighty-one thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(17036, 15181, 'fifteen thousand one hundred eighty-one'); INSERT INTO t3 VALUES(17037, 27494, 'twenty-seven thousand four hundred ninety-four'); INSERT INTO t3 VALUES(17038, 71154, 'seventy-one thousand one hundred fifty-four'); INSERT INTO t3 VALUES(17039, 11199, 'eleven thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(17040, 62844, 'sixty-two thousand eight hundred forty-four'); INSERT INTO t3 VALUES(17041, 15174, 'fifteen thousand one hundred seventy-four'); INSERT INTO t3 VALUES(17042, 32416, 'thirty-two thousand four hundred sixteen'); INSERT INTO t3 VALUES(17043, 70650, 'seventy thousand six hundred fifty'); INSERT INTO t3 VALUES(17044, 18574, 'eighteen thousand five hundred seventy-four'); INSERT INTO t3 VALUES(17045, 22158, 'twenty-two thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(17046, 49011, 'forty-nine thousand eleven'); INSERT INTO t3 VALUES(17047, 30590, 'thirty thousand five hundred ninety'); INSERT INTO t3 VALUES(17048, 24304, 'twenty-four thousand three hundred four'); INSERT INTO t3 VALUES(17049, 81443, 'eighty-one thousand four hundred forty-three'); INSERT INTO t3 VALUES(17050, 2895, 'two thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(17051, 85918, 'eighty-five thousand nine hundred eighteen'); INSERT INTO t3 VALUES(17052, 38673, 'thirty-eight thousand six hundred seventy-three'); INSERT INTO t3 VALUES(17053, 19919, 'nineteen thousand nine hundred nineteen'); INSERT INTO t3 VALUES(17054, 31687, 'thirty-one thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(17055, 78710, 'seventy-eight thousand seven hundred ten'); INSERT INTO t3 VALUES(17056, 58359, 'fifty-eight thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(17057, 16313, 'sixteen thousand three hundred thirteen'); INSERT INTO t3 VALUES(17058, 51524, 'fifty-one thousand five hundred twenty-four'); INSERT INTO t3 VALUES(17059, 94909, 'ninety-four thousand nine hundred nine'); INSERT INTO t3 VALUES(17060, 97295, 'ninety-seven thousand two hundred ninety-five'); INSERT INTO t3 VALUES(17061, 22096, 'twenty-two thousand ninety-six'); INSERT INTO t3 VALUES(17062, 54751, 'fifty-four thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(17063, 42063, 'forty-two thousand sixty-three'); INSERT INTO t3 VALUES(17064, 91707, 'ninety-one thousand seven hundred seven'); INSERT INTO t3 VALUES(17065, 28529, 'twenty-eight thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(17066, 98122, 'ninety-eight thousand one hundred twenty-two'); INSERT INTO t3 VALUES(17067, 29868, 'twenty-nine thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(17068, 35526, 'thirty-five thousand five hundred twenty-six'); INSERT INTO t3 VALUES(17069, 59778, 'fifty-nine thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(17070, 22656, 'twenty-two thousand six hundred fifty-six'); INSERT INTO t3 VALUES(17071, 93149, 'ninety-three thousand one hundred forty-nine'); INSERT INTO t3 VALUES(17072, 63377, 'sixty-three thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(17073, 93865, 'ninety-three thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(17074, 14180, 'fourteen thousand one hundred eighty'); INSERT INTO t3 VALUES(17075, 34188, 'thirty-four thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(17076, 89235, 'eighty-nine thousand two hundred thirty-five'); INSERT INTO t3 VALUES(17077, 93828, 'ninety-three thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(17078, 7899, 'seven thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(17079, 98138, 'ninety-eight thousand one hundred thirty-eight'); INSERT INTO t3 VALUES(17080, 80323, 'eighty thousand three hundred twenty-three'); INSERT INTO t3 VALUES(17081, 53807, 'fifty-three thousand eight hundred seven'); INSERT INTO t3 VALUES(17082, 20562, 'twenty thousand five hundred sixty-two'); INSERT INTO t3 VALUES(17083, 58572, 'fifty-eight thousand five hundred seventy-two'); INSERT INTO t3 VALUES(17084, 46951, 'forty-six thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(17085, 90458, 'ninety thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(17086, 59746, 'fifty-nine thousand seven hundred forty-six'); INSERT INTO t3 VALUES(17087, 98561, 'ninety-eight thousand five hundred sixty-one'); INSERT INTO t3 VALUES(17088, 36478, 'thirty-six thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(17089, 45280, 'forty-five thousand two hundred eighty'); INSERT INTO t3 VALUES(17090, 12372, 'twelve thousand three hundred seventy-two'); INSERT INTO t3 VALUES(17091, 60392, 'sixty thousand three hundred ninety-two'); INSERT INTO t3 VALUES(17092, 62, 'sixty-two'); INSERT INTO t3 VALUES(17093, 99396, 'ninety-nine thousand three hundred ninety-six'); INSERT INTO t3 VALUES(17094, 67809, 'sixty-seven thousand eight hundred nine'); INSERT INTO t3 VALUES(17095, 48807, 'forty-eight thousand eight hundred seven'); INSERT INTO t3 VALUES(17096, 72405, 'seventy-two thousand four hundred five'); INSERT INTO t3 VALUES(17097, 57368, 'fifty-seven thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(17098, 69057, 'sixty-nine thousand fifty-seven'); INSERT INTO t3 VALUES(17099, 15945, 'fifteen thousand nine hundred forty-five'); INSERT INTO t3 VALUES(17100, 43936, 'forty-three thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(17101, 89880, 'eighty-nine thousand eight hundred eighty'); INSERT INTO t3 VALUES(17102, 21105, 'twenty-one thousand one hundred five'); INSERT INTO t3 VALUES(17103, 87808, 'eighty-seven thousand eight hundred eight'); INSERT INTO t3 VALUES(17104, 55528, 'fifty-five thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(17105, 89706, 'eighty-nine thousand seven hundred six'); INSERT INTO t3 VALUES(17106, 81463, 'eighty-one thousand four hundred sixty-three'); INSERT INTO t3 VALUES(17107, 78574, 'seventy-eight thousand five hundred seventy-four'); INSERT INTO t3 VALUES(17108, 52927, 'fifty-two thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(17109, 93016, 'ninety-three thousand sixteen'); INSERT INTO t3 VALUES(17110, 3222, 'three thousand two hundred twenty-two'); INSERT INTO t3 VALUES(17111, 18419, 'eighteen thousand four hundred nineteen'); INSERT INTO t3 VALUES(17112, 95128, 'ninety-five thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(17113, 64838, 'sixty-four thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(17114, 69028, 'sixty-nine thousand twenty-eight'); INSERT INTO t3 VALUES(17115, 78468, 'seventy-eight thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(17116, 6485, 'six thousand four hundred eighty-five'); INSERT INTO t3 VALUES(17117, 55154, 'fifty-five thousand one hundred fifty-four'); INSERT INTO t3 VALUES(17118, 73539, 'seventy-three thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(17119, 33698, 'thirty-three thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(17120, 83939, 'eighty-three thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(17121, 14141, 'fourteen thousand one hundred forty-one'); INSERT INTO t3 VALUES(17122, 86954, 'eighty-six thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(17123, 8303, 'eight thousand three hundred three'); INSERT INTO t3 VALUES(17124, 55917, 'fifty-five thousand nine hundred seventeen'); INSERT INTO t3 VALUES(17125, 9175, 'nine thousand one hundred seventy-five'); INSERT INTO t3 VALUES(17126, 96897, 'ninety-six thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(17127, 68871, 'sixty-eight thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(17128, 10538, 'ten thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(17129, 73302, 'seventy-three thousand three hundred two'); INSERT INTO t3 VALUES(17130, 34807, 'thirty-four thousand eight hundred seven'); INSERT INTO t3 VALUES(17131, 17621, 'seventeen thousand six hundred twenty-one'); INSERT INTO t3 VALUES(17132, 4673, 'four thousand six hundred seventy-three'); INSERT INTO t3 VALUES(17133, 90590, 'ninety thousand five hundred ninety'); INSERT INTO t3 VALUES(17134, 25996, 'twenty-five thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(17135, 33932, 'thirty-three thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(17136, 40592, 'forty thousand five hundred ninety-two'); INSERT INTO t3 VALUES(17137, 95991, 'ninety-five thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(17138, 91788, 'ninety-one thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(17139, 41981, 'forty-one thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(17140, 65715, 'sixty-five thousand seven hundred fifteen'); INSERT INTO t3 VALUES(17141, 22104, 'twenty-two thousand one hundred four'); INSERT INTO t3 VALUES(17142, 53630, 'fifty-three thousand six hundred thirty'); INSERT INTO t3 VALUES(17143, 54650, 'fifty-four thousand six hundred fifty'); INSERT INTO t3 VALUES(17144, 36936, 'thirty-six thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(17145, 93432, 'ninety-three thousand four hundred thirty-two'); INSERT INTO t3 VALUES(17146, 24318, 'twenty-four thousand three hundred eighteen'); INSERT INTO t3 VALUES(17147, 92624, 'ninety-two thousand six hundred twenty-four'); INSERT INTO t3 VALUES(17148, 10678, 'ten thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(17149, 79128, 'seventy-nine thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(17150, 59929, 'fifty-nine thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(17151, 9996, 'nine thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(17152, 50132, 'fifty thousand one hundred thirty-two'); INSERT INTO t3 VALUES(17153, 4093, 'four thousand ninety-three'); INSERT INTO t3 VALUES(17154, 76092, 'seventy-six thousand ninety-two'); INSERT INTO t3 VALUES(17155, 34664, 'thirty-four thousand six hundred sixty-four'); INSERT INTO t3 VALUES(17156, 21112, 'twenty-one thousand one hundred twelve'); INSERT INTO t3 VALUES(17157, 55122, 'fifty-five thousand one hundred twenty-two'); INSERT INTO t3 VALUES(17158, 59103, 'fifty-nine thousand one hundred three'); INSERT INTO t3 VALUES(17159, 87026, 'eighty-seven thousand twenty-six'); INSERT INTO t3 VALUES(17160, 65022, 'sixty-five thousand twenty-two'); INSERT INTO t3 VALUES(17161, 27318, 'twenty-seven thousand three hundred eighteen'); INSERT INTO t3 VALUES(17162, 17662, 'seventeen thousand six hundred sixty-two'); INSERT INTO t3 VALUES(17163, 46278, 'forty-six thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(17164, 77712, 'seventy-seven thousand seven hundred twelve'); INSERT INTO t3 VALUES(17165, 53207, 'fifty-three thousand two hundred seven'); INSERT INTO t3 VALUES(17166, 23658, 'twenty-three thousand six hundred fifty-eight'); INSERT INTO t3 VALUES(17167, 26472, 'twenty-six thousand four hundred seventy-two'); INSERT INTO t3 VALUES(17168, 67377, 'sixty-seven thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(17169, 888, 'eight hundred eighty-eight'); INSERT INTO t3 VALUES(17170, 8775, 'eight thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(17171, 58278, 'fifty-eight thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(17172, 48347, 'forty-eight thousand three hundred forty-seven'); INSERT INTO t3 VALUES(17173, 76870, 'seventy-six thousand eight hundred seventy'); INSERT INTO t3 VALUES(17174, 65663, 'sixty-five thousand six hundred sixty-three'); INSERT INTO t3 VALUES(17175, 90062, 'ninety thousand sixty-two'); INSERT INTO t3 VALUES(17176, 8813, 'eight thousand eight hundred thirteen'); INSERT INTO t3 VALUES(17177, 37052, 'thirty-seven thousand fifty-two'); INSERT INTO t3 VALUES(17178, 72063, 'seventy-two thousand sixty-three'); INSERT INTO t3 VALUES(17179, 10988, 'ten thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(17180, 3149, 'three thousand one hundred forty-nine'); INSERT INTO t3 VALUES(17181, 33735, 'thirty-three thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(17182, 87434, 'eighty-seven thousand four hundred thirty-four'); INSERT INTO t3 VALUES(17183, 8757, 'eight thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(17184, 95461, 'ninety-five thousand four hundred sixty-one'); INSERT INTO t3 VALUES(17185, 56422, 'fifty-six thousand four hundred twenty-two'); INSERT INTO t3 VALUES(17186, 91783, 'ninety-one thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(17187, 10699, 'ten thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(17188, 21675, 'twenty-one thousand six hundred seventy-five'); INSERT INTO t3 VALUES(17189, 53553, 'fifty-three thousand five hundred fifty-three'); INSERT INTO t3 VALUES(17190, 88533, 'eighty-eight thousand five hundred thirty-three'); INSERT INTO t3 VALUES(17191, 2480, 'two thousand four hundred eighty'); INSERT INTO t3 VALUES(17192, 38926, 'thirty-eight thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(17193, 65269, 'sixty-five thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(17194, 26628, 'twenty-six thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(17195, 32774, 'thirty-two thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(17196, 46194, 'forty-six thousand one hundred ninety-four'); INSERT INTO t3 VALUES(17197, 96839, 'ninety-six thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(17198, 91090, 'ninety-one thousand ninety'); INSERT INTO t3 VALUES(17199, 8269, 'eight thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(17200, 63390, 'sixty-three thousand three hundred ninety'); INSERT INTO t3 VALUES(17201, 83483, 'eighty-three thousand four hundred eighty-three'); INSERT INTO t3 VALUES(17202, 47181, 'forty-seven thousand one hundred eighty-one'); INSERT INTO t3 VALUES(17203, 13357, 'thirteen thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(17204, 98189, 'ninety-eight thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(17205, 78812, 'seventy-eight thousand eight hundred twelve'); INSERT INTO t3 VALUES(17206, 14344, 'fourteen thousand three hundred forty-four'); INSERT INTO t3 VALUES(17207, 84390, 'eighty-four thousand three hundred ninety'); INSERT INTO t3 VALUES(17208, 14158, 'fourteen thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(17209, 93841, 'ninety-three thousand eight hundred forty-one'); INSERT INTO t3 VALUES(17210, 21158, 'twenty-one thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(17211, 50851, 'fifty thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(17212, 70584, 'seventy thousand five hundred eighty-four'); INSERT INTO t3 VALUES(17213, 85215, 'eighty-five thousand two hundred fifteen'); INSERT INTO t3 VALUES(17214, 82167, 'eighty-two thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(17215, 41063, 'forty-one thousand sixty-three'); INSERT INTO t3 VALUES(17216, 93141, 'ninety-three thousand one hundred forty-one'); INSERT INTO t3 VALUES(17217, 84600, 'eighty-four thousand six hundred'); INSERT INTO t3 VALUES(17218, 49293, 'forty-nine thousand two hundred ninety-three'); INSERT INTO t3 VALUES(17219, 33538, 'thirty-three thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(17220, 30856, 'thirty thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(17221, 48479, 'forty-eight thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(17222, 13694, 'thirteen thousand six hundred ninety-four'); INSERT INTO t3 VALUES(17223, 76600, 'seventy-six thousand six hundred'); INSERT INTO t3 VALUES(17224, 59023, 'fifty-nine thousand twenty-three'); INSERT INTO t3 VALUES(17225, 54963, 'fifty-four thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(17226, 39854, 'thirty-nine thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(17227, 40256, 'forty thousand two hundred fifty-six'); INSERT INTO t3 VALUES(17228, 28092, 'twenty-eight thousand ninety-two'); INSERT INTO t3 VALUES(17229, 27349, 'twenty-seven thousand three hundred forty-nine'); INSERT INTO t3 VALUES(17230, 47690, 'forty-seven thousand six hundred ninety'); INSERT INTO t3 VALUES(17231, 46433, 'forty-six thousand four hundred thirty-three'); INSERT INTO t3 VALUES(17232, 41026, 'forty-one thousand twenty-six'); INSERT INTO t3 VALUES(17233, 53599, 'fifty-three thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(17234, 30550, 'thirty thousand five hundred fifty'); INSERT INTO t3 VALUES(17235, 61934, 'sixty-one thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(17236, 53803, 'fifty-three thousand eight hundred three'); INSERT INTO t3 VALUES(17237, 91617, 'ninety-one thousand six hundred seventeen'); INSERT INTO t3 VALUES(17238, 53567, 'fifty-three thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(17239, 64500, 'sixty-four thousand five hundred'); INSERT INTO t3 VALUES(17240, 98670, 'ninety-eight thousand six hundred seventy'); INSERT INTO t3 VALUES(17241, 17892, 'seventeen thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(17242, 27127, 'twenty-seven thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(17243, 96444, 'ninety-six thousand four hundred forty-four'); INSERT INTO t3 VALUES(17244, 60476, 'sixty thousand four hundred seventy-six'); INSERT INTO t3 VALUES(17245, 67161, 'sixty-seven thousand one hundred sixty-one'); INSERT INTO t3 VALUES(17246, 63900, 'sixty-three thousand nine hundred'); INSERT INTO t3 VALUES(17247, 2094, 'two thousand ninety-four'); INSERT INTO t3 VALUES(17248, 52811, 'fifty-two thousand eight hundred eleven'); INSERT INTO t3 VALUES(17249, 74228, 'seventy-four thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(17250, 37440, 'thirty-seven thousand four hundred forty'); INSERT INTO t3 VALUES(17251, 89085, 'eighty-nine thousand eighty-five'); INSERT INTO t3 VALUES(17252, 59547, 'fifty-nine thousand five hundred forty-seven'); INSERT INTO t3 VALUES(17253, 60700, 'sixty thousand seven hundred'); INSERT INTO t3 VALUES(17254, 53466, 'fifty-three thousand four hundred sixty-six'); INSERT INTO t3 VALUES(17255, 66011, 'sixty-six thousand eleven'); INSERT INTO t3 VALUES(17256, 34632, 'thirty-four thousand six hundred thirty-two'); INSERT INTO t3 VALUES(17257, 41468, 'forty-one thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(17258, 94596, 'ninety-four thousand five hundred ninety-six'); INSERT INTO t3 VALUES(17259, 55601, 'fifty-five thousand six hundred one'); INSERT INTO t3 VALUES(17260, 5446, 'five thousand four hundred forty-six'); INSERT INTO t3 VALUES(17261, 88094, 'eighty-eight thousand ninety-four'); INSERT INTO t3 VALUES(17262, 72755, 'seventy-two thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(17263, 66707, 'sixty-six thousand seven hundred seven'); INSERT INTO t3 VALUES(17264, 8056, 'eight thousand fifty-six'); INSERT INTO t3 VALUES(17265, 30860, 'thirty thousand eight hundred sixty'); INSERT INTO t3 VALUES(17266, 19647, 'nineteen thousand six hundred forty-seven'); INSERT INTO t3 VALUES(17267, 77559, 'seventy-seven thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(17268, 35563, 'thirty-five thousand five hundred sixty-three'); INSERT INTO t3 VALUES(17269, 46642, 'forty-six thousand six hundred forty-two'); INSERT INTO t3 VALUES(17270, 99099, 'ninety-nine thousand ninety-nine'); INSERT INTO t3 VALUES(17271, 9219, 'nine thousand two hundred nineteen'); INSERT INTO t3 VALUES(17272, 79523, 'seventy-nine thousand five hundred twenty-three'); INSERT INTO t3 VALUES(17273, 91917, 'ninety-one thousand nine hundred seventeen'); INSERT INTO t3 VALUES(17274, 60014, 'sixty thousand fourteen'); INSERT INTO t3 VALUES(17275, 71364, 'seventy-one thousand three hundred sixty-four'); INSERT INTO t3 VALUES(17276, 557, 'five hundred fifty-seven'); INSERT INTO t3 VALUES(17277, 28117, 'twenty-eight thousand one hundred seventeen'); INSERT INTO t3 VALUES(17278, 87812, 'eighty-seven thousand eight hundred twelve'); INSERT INTO t3 VALUES(17279, 93135, 'ninety-three thousand one hundred thirty-five'); INSERT INTO t3 VALUES(17280, 18468, 'eighteen thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(17281, 56091, 'fifty-six thousand ninety-one'); INSERT INTO t3 VALUES(17282, 72680, 'seventy-two thousand six hundred eighty'); INSERT INTO t3 VALUES(17283, 75736, 'seventy-five thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(17284, 83168, 'eighty-three thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(17285, 86728, 'eighty-six thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(17286, 97068, 'ninety-seven thousand sixty-eight'); INSERT INTO t3 VALUES(17287, 32244, 'thirty-two thousand two hundred forty-four'); INSERT INTO t3 VALUES(17288, 81858, 'eighty-one thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(17289, 23694, 'twenty-three thousand six hundred ninety-four'); INSERT INTO t3 VALUES(17290, 56352, 'fifty-six thousand three hundred fifty-two'); INSERT INTO t3 VALUES(17291, 20224, 'twenty thousand two hundred twenty-four'); INSERT INTO t3 VALUES(17292, 1067, 'one thousand sixty-seven'); INSERT INTO t3 VALUES(17293, 46648, 'forty-six thousand six hundred forty-eight'); INSERT INTO t3 VALUES(17294, 56363, 'fifty-six thousand three hundred sixty-three'); INSERT INTO t3 VALUES(17295, 88953, 'eighty-eight thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(17296, 43058, 'forty-three thousand fifty-eight'); INSERT INTO t3 VALUES(17297, 83410, 'eighty-three thousand four hundred ten'); INSERT INTO t3 VALUES(17298, 97488, 'ninety-seven thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(17299, 39155, 'thirty-nine thousand one hundred fifty-five'); INSERT INTO t3 VALUES(17300, 42067, 'forty-two thousand sixty-seven'); INSERT INTO t3 VALUES(17301, 99319, 'ninety-nine thousand three hundred nineteen'); INSERT INTO t3 VALUES(17302, 13988, 'thirteen thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(17303, 76283, 'seventy-six thousand two hundred eighty-three'); INSERT INTO t3 VALUES(17304, 19680, 'nineteen thousand six hundred eighty'); INSERT INTO t3 VALUES(17305, 25786, 'twenty-five thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(17306, 88533, 'eighty-eight thousand five hundred thirty-three'); INSERT INTO t3 VALUES(17307, 93832, 'ninety-three thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(17308, 84794, 'eighty-four thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(17309, 71713, 'seventy-one thousand seven hundred thirteen'); INSERT INTO t3 VALUES(17310, 76074, 'seventy-six thousand seventy-four'); INSERT INTO t3 VALUES(17311, 17658, 'seventeen thousand six hundred fifty-eight'); INSERT INTO t3 VALUES(17312, 67593, 'sixty-seven thousand five hundred ninety-three'); INSERT INTO t3 VALUES(17313, 13007, 'thirteen thousand seven'); INSERT INTO t3 VALUES(17314, 63949, 'sixty-three thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(17315, 82744, 'eighty-two thousand seven hundred forty-four'); INSERT INTO t3 VALUES(17316, 65270, 'sixty-five thousand two hundred seventy'); INSERT INTO t3 VALUES(17317, 43890, 'forty-three thousand eight hundred ninety'); INSERT INTO t3 VALUES(17318, 49784, 'forty-nine thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(17319, 18125, 'eighteen thousand one hundred twenty-five'); INSERT INTO t3 VALUES(17320, 75522, 'seventy-five thousand five hundred twenty-two'); INSERT INTO t3 VALUES(17321, 18754, 'eighteen thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(17322, 88535, 'eighty-eight thousand five hundred thirty-five'); INSERT INTO t3 VALUES(17323, 12107, 'twelve thousand one hundred seven'); INSERT INTO t3 VALUES(17324, 75921, 'seventy-five thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(17325, 24134, 'twenty-four thousand one hundred thirty-four'); INSERT INTO t3 VALUES(17326, 95164, 'ninety-five thousand one hundred sixty-four'); INSERT INTO t3 VALUES(17327, 61678, 'sixty-one thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(17328, 66420, 'sixty-six thousand four hundred twenty'); INSERT INTO t3 VALUES(17329, 33320, 'thirty-three thousand three hundred twenty'); INSERT INTO t3 VALUES(17330, 76596, 'seventy-six thousand five hundred ninety-six'); INSERT INTO t3 VALUES(17331, 99900, 'ninety-nine thousand nine hundred'); INSERT INTO t3 VALUES(17332, 31240, 'thirty-one thousand two hundred forty'); INSERT INTO t3 VALUES(17333, 22729, 'twenty-two thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(17334, 1535, 'one thousand five hundred thirty-five'); INSERT INTO t3 VALUES(17335, 77161, 'seventy-seven thousand one hundred sixty-one'); INSERT INTO t3 VALUES(17336, 14523, 'fourteen thousand five hundred twenty-three'); INSERT INTO t3 VALUES(17337, 18582, 'eighteen thousand five hundred eighty-two'); INSERT INTO t3 VALUES(17338, 60282, 'sixty thousand two hundred eighty-two'); INSERT INTO t3 VALUES(17339, 87311, 'eighty-seven thousand three hundred eleven'); INSERT INTO t3 VALUES(17340, 67938, 'sixty-seven thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(17341, 57163, 'fifty-seven thousand one hundred sixty-three'); INSERT INTO t3 VALUES(17342, 22950, 'twenty-two thousand nine hundred fifty'); INSERT INTO t3 VALUES(17343, 15736, 'fifteen thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(17344, 24865, 'twenty-four thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(17345, 27625, 'twenty-seven thousand six hundred twenty-five'); INSERT INTO t3 VALUES(17346, 70419, 'seventy thousand four hundred nineteen'); INSERT INTO t3 VALUES(17347, 33160, 'thirty-three thousand one hundred sixty'); INSERT INTO t3 VALUES(17348, 37, 'thirty-seven'); INSERT INTO t3 VALUES(17349, 59209, 'fifty-nine thousand two hundred nine'); INSERT INTO t3 VALUES(17350, 82707, 'eighty-two thousand seven hundred seven'); INSERT INTO t3 VALUES(17351, 41629, 'forty-one thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(17352, 14169, 'fourteen thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(17353, 88522, 'eighty-eight thousand five hundred twenty-two'); INSERT INTO t3 VALUES(17354, 34182, 'thirty-four thousand one hundred eighty-two'); INSERT INTO t3 VALUES(17355, 78215, 'seventy-eight thousand two hundred fifteen'); INSERT INTO t3 VALUES(17356, 46537, 'forty-six thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(17357, 9696, 'nine thousand six hundred ninety-six'); INSERT INTO t3 VALUES(17358, 42283, 'forty-two thousand two hundred eighty-three'); INSERT INTO t3 VALUES(17359, 80535, 'eighty thousand five hundred thirty-five'); INSERT INTO t3 VALUES(17360, 78685, 'seventy-eight thousand six hundred eighty-five'); INSERT INTO t3 VALUES(17361, 37087, 'thirty-seven thousand eighty-seven'); INSERT INTO t3 VALUES(17362, 37816, 'thirty-seven thousand eight hundred sixteen'); INSERT INTO t3 VALUES(17363, 60918, 'sixty thousand nine hundred eighteen'); INSERT INTO t3 VALUES(17364, 18999, 'eighteen thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(17365, 33862, 'thirty-three thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(17366, 24617, 'twenty-four thousand six hundred seventeen'); INSERT INTO t3 VALUES(17367, 10363, 'ten thousand three hundred sixty-three'); INSERT INTO t3 VALUES(17368, 42079, 'forty-two thousand seventy-nine'); INSERT INTO t3 VALUES(17369, 67730, 'sixty-seven thousand seven hundred thirty'); INSERT INTO t3 VALUES(17370, 80735, 'eighty thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(17371, 32515, 'thirty-two thousand five hundred fifteen'); INSERT INTO t3 VALUES(17372, 74332, 'seventy-four thousand three hundred thirty-two'); INSERT INTO t3 VALUES(17373, 30849, 'thirty thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(17374, 96863, 'ninety-six thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(17375, 93536, 'ninety-three thousand five hundred thirty-six'); INSERT INTO t3 VALUES(17376, 91972, 'ninety-one thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(17377, 13228, 'thirteen thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(17378, 91561, 'ninety-one thousand five hundred sixty-one'); INSERT INTO t3 VALUES(17379, 76561, 'seventy-six thousand five hundred sixty-one'); INSERT INTO t3 VALUES(17380, 4676, 'four thousand six hundred seventy-six'); INSERT INTO t3 VALUES(17381, 195, 'one hundred ninety-five'); INSERT INTO t3 VALUES(17382, 1109, 'one thousand one hundred nine'); INSERT INTO t3 VALUES(17383, 14509, 'fourteen thousand five hundred nine'); INSERT INTO t3 VALUES(17384, 26918, 'twenty-six thousand nine hundred eighteen'); INSERT INTO t3 VALUES(17385, 79922, 'seventy-nine thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(17386, 41019, 'forty-one thousand nineteen'); INSERT INTO t3 VALUES(17387, 35935, 'thirty-five thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(17388, 89528, 'eighty-nine thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(17389, 47490, 'forty-seven thousand four hundred ninety'); INSERT INTO t3 VALUES(17390, 25468, 'twenty-five thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(17391, 31467, 'thirty-one thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(17392, 58023, 'fifty-eight thousand twenty-three'); INSERT INTO t3 VALUES(17393, 4147, 'four thousand one hundred forty-seven'); INSERT INTO t3 VALUES(17394, 30051, 'thirty thousand fifty-one'); INSERT INTO t3 VALUES(17395, 90608, 'ninety thousand six hundred eight'); INSERT INTO t3 VALUES(17396, 25770, 'twenty-five thousand seven hundred seventy'); INSERT INTO t3 VALUES(17397, 85241, 'eighty-five thousand two hundred forty-one'); INSERT INTO t3 VALUES(17398, 29384, 'twenty-nine thousand three hundred eighty-four'); INSERT INTO t3 VALUES(17399, 25326, 'twenty-five thousand three hundred twenty-six'); INSERT INTO t3 VALUES(17400, 35119, 'thirty-five thousand one hundred nineteen'); INSERT INTO t3 VALUES(17401, 60678, 'sixty thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(17402, 77889, 'seventy-seven thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(17403, 67076, 'sixty-seven thousand seventy-six'); INSERT INTO t3 VALUES(17404, 43069, 'forty-three thousand sixty-nine'); INSERT INTO t3 VALUES(17405, 95869, 'ninety-five thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(17406, 2903, 'two thousand nine hundred three'); INSERT INTO t3 VALUES(17407, 96462, 'ninety-six thousand four hundred sixty-two'); INSERT INTO t3 VALUES(17408, 53568, 'fifty-three thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(17409, 85191, 'eighty-five thousand one hundred ninety-one'); INSERT INTO t3 VALUES(17410, 54962, 'fifty-four thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(17411, 98593, 'ninety-eight thousand five hundred ninety-three'); INSERT INTO t3 VALUES(17412, 57265, 'fifty-seven thousand two hundred sixty-five'); INSERT INTO t3 VALUES(17413, 3813, 'three thousand eight hundred thirteen'); INSERT INTO t3 VALUES(17414, 1201, 'one thousand two hundred one'); INSERT INTO t3 VALUES(17415, 87004, 'eighty-seven thousand four'); INSERT INTO t3 VALUES(17416, 44213, 'forty-four thousand two hundred thirteen'); INSERT INTO t3 VALUES(17417, 23674, 'twenty-three thousand six hundred seventy-four'); INSERT INTO t3 VALUES(17418, 57964, 'fifty-seven thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(17419, 89736, 'eighty-nine thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(17420, 4479, 'four thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(17421, 16580, 'sixteen thousand five hundred eighty'); INSERT INTO t3 VALUES(17422, 16003, 'sixteen thousand three'); INSERT INTO t3 VALUES(17423, 83659, 'eighty-three thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(17424, 33902, 'thirty-three thousand nine hundred two'); INSERT INTO t3 VALUES(17425, 73288, 'seventy-three thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(17426, 48838, 'forty-eight thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(17427, 91513, 'ninety-one thousand five hundred thirteen'); INSERT INTO t3 VALUES(17428, 45571, 'forty-five thousand five hundred seventy-one'); INSERT INTO t3 VALUES(17429, 94675, 'ninety-four thousand six hundred seventy-five'); INSERT INTO t3 VALUES(17430, 68769, 'sixty-eight thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(17431, 42647, 'forty-two thousand six hundred forty-seven'); INSERT INTO t3 VALUES(17432, 72533, 'seventy-two thousand five hundred thirty-three'); INSERT INTO t3 VALUES(17433, 57278, 'fifty-seven thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(17434, 12087, 'twelve thousand eighty-seven'); INSERT INTO t3 VALUES(17435, 5075, 'five thousand seventy-five'); INSERT INTO t3 VALUES(17436, 36197, 'thirty-six thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(17437, 19769, 'nineteen thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(17438, 47337, 'forty-seven thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(17439, 56534, 'fifty-six thousand five hundred thirty-four'); INSERT INTO t3 VALUES(17440, 58181, 'fifty-eight thousand one hundred eighty-one'); INSERT INTO t3 VALUES(17441, 92020, 'ninety-two thousand twenty'); INSERT INTO t3 VALUES(17442, 10268, 'ten thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(17443, 5868, 'five thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(17444, 13103, 'thirteen thousand one hundred three'); INSERT INTO t3 VALUES(17445, 52922, 'fifty-two thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(17446, 51880, 'fifty-one thousand eight hundred eighty'); INSERT INTO t3 VALUES(17447, 41381, 'forty-one thousand three hundred eighty-one'); INSERT INTO t3 VALUES(17448, 2827, 'two thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(17449, 55685, 'fifty-five thousand six hundred eighty-five'); INSERT INTO t3 VALUES(17450, 25345, 'twenty-five thousand three hundred forty-five'); INSERT INTO t3 VALUES(17451, 24964, 'twenty-four thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(17452, 8355, 'eight thousand three hundred fifty-five'); INSERT INTO t3 VALUES(17453, 74437, 'seventy-four thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(17454, 74994, 'seventy-four thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(17455, 89371, 'eighty-nine thousand three hundred seventy-one'); INSERT INTO t3 VALUES(17456, 39282, 'thirty-nine thousand two hundred eighty-two'); INSERT INTO t3 VALUES(17457, 46014, 'forty-six thousand fourteen'); INSERT INTO t3 VALUES(17458, 51057, 'fifty-one thousand fifty-seven'); INSERT INTO t3 VALUES(17459, 91001, 'ninety-one thousand one'); INSERT INTO t3 VALUES(17460, 33003, 'thirty-three thousand three'); INSERT INTO t3 VALUES(17461, 56644, 'fifty-six thousand six hundred forty-four'); INSERT INTO t3 VALUES(17462, 6452, 'six thousand four hundred fifty-two'); INSERT INTO t3 VALUES(17463, 74031, 'seventy-four thousand thirty-one'); INSERT INTO t3 VALUES(17464, 56371, 'fifty-six thousand three hundred seventy-one'); INSERT INTO t3 VALUES(17465, 33284, 'thirty-three thousand two hundred eighty-four'); INSERT INTO t3 VALUES(17466, 79683, 'seventy-nine thousand six hundred eighty-three'); INSERT INTO t3 VALUES(17467, 13263, 'thirteen thousand two hundred sixty-three'); INSERT INTO t3 VALUES(17468, 90917, 'ninety thousand nine hundred seventeen'); INSERT INTO t3 VALUES(17469, 72584, 'seventy-two thousand five hundred eighty-four'); INSERT INTO t3 VALUES(17470, 86612, 'eighty-six thousand six hundred twelve'); INSERT INTO t3 VALUES(17471, 98649, 'ninety-eight thousand six hundred forty-nine'); INSERT INTO t3 VALUES(17472, 43030, 'forty-three thousand thirty'); INSERT INTO t3 VALUES(17473, 26670, 'twenty-six thousand six hundred seventy'); INSERT INTO t3 VALUES(17474, 26883, 'twenty-six thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(17475, 79136, 'seventy-nine thousand one hundred thirty-six'); INSERT INTO t3 VALUES(17476, 84623, 'eighty-four thousand six hundred twenty-three'); INSERT INTO t3 VALUES(17477, 93465, 'ninety-three thousand four hundred sixty-five'); INSERT INTO t3 VALUES(17478, 53845, 'fifty-three thousand eight hundred forty-five'); INSERT INTO t3 VALUES(17479, 93261, 'ninety-three thousand two hundred sixty-one'); INSERT INTO t3 VALUES(17480, 3051, 'three thousand fifty-one'); INSERT INTO t3 VALUES(17481, 24643, 'twenty-four thousand six hundred forty-three'); INSERT INTO t3 VALUES(17482, 99914, 'ninety-nine thousand nine hundred fourteen'); INSERT INTO t3 VALUES(17483, 14836, 'fourteen thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(17484, 10282, 'ten thousand two hundred eighty-two'); INSERT INTO t3 VALUES(17485, 24457, 'twenty-four thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(17486, 35734, 'thirty-five thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(17487, 15776, 'fifteen thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(17488, 77932, 'seventy-seven thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(17489, 97120, 'ninety-seven thousand one hundred twenty'); INSERT INTO t3 VALUES(17490, 63723, 'sixty-three thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(17491, 67452, 'sixty-seven thousand four hundred fifty-two'); INSERT INTO t3 VALUES(17492, 88195, 'eighty-eight thousand one hundred ninety-five'); INSERT INTO t3 VALUES(17493, 37465, 'thirty-seven thousand four hundred sixty-five'); INSERT INTO t3 VALUES(17494, 75229, 'seventy-five thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(17495, 43176, 'forty-three thousand one hundred seventy-six'); INSERT INTO t3 VALUES(17496, 41789, 'forty-one thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(17497, 26937, 'twenty-six thousand nine hundred thirty-seven'); INSERT INTO t3 VALUES(17498, 74888, 'seventy-four thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(17499, 11412, 'eleven thousand four hundred twelve'); INSERT INTO t3 VALUES(17500, 31516, 'thirty-one thousand five hundred sixteen'); INSERT INTO t3 VALUES(17501, 57568, 'fifty-seven thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(17502, 15612, 'fifteen thousand six hundred twelve'); INSERT INTO t3 VALUES(17503, 91895, 'ninety-one thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(17504, 17165, 'seventeen thousand one hundred sixty-five'); INSERT INTO t3 VALUES(17505, 41926, 'forty-one thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(17506, 96692, 'ninety-six thousand six hundred ninety-two'); INSERT INTO t3 VALUES(17507, 14031, 'fourteen thousand thirty-one'); INSERT INTO t3 VALUES(17508, 25832, 'twenty-five thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(17509, 67804, 'sixty-seven thousand eight hundred four'); INSERT INTO t3 VALUES(17510, 93924, 'ninety-three thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(17511, 42288, 'forty-two thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(17512, 95876, 'ninety-five thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(17513, 69269, 'sixty-nine thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(17514, 12747, 'twelve thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(17515, 41387, 'forty-one thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(17516, 10493, 'ten thousand four hundred ninety-three'); INSERT INTO t3 VALUES(17517, 45226, 'forty-five thousand two hundred twenty-six'); INSERT INTO t3 VALUES(17518, 66508, 'sixty-six thousand five hundred eight'); INSERT INTO t3 VALUES(17519, 37969, 'thirty-seven thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(17520, 75665, 'seventy-five thousand six hundred sixty-five'); INSERT INTO t3 VALUES(17521, 78876, 'seventy-eight thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(17522, 88242, 'eighty-eight thousand two hundred forty-two'); INSERT INTO t3 VALUES(17523, 73739, 'seventy-three thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(17524, 22731, 'twenty-two thousand seven hundred thirty-one'); INSERT INTO t3 VALUES(17525, 37589, 'thirty-seven thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(17526, 51762, 'fifty-one thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(17527, 61697, 'sixty-one thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(17528, 89318, 'eighty-nine thousand three hundred eighteen'); INSERT INTO t3 VALUES(17529, 11369, 'eleven thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(17530, 87247, 'eighty-seven thousand two hundred forty-seven'); INSERT INTO t3 VALUES(17531, 22926, 'twenty-two thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(17532, 94472, 'ninety-four thousand four hundred seventy-two'); INSERT INTO t3 VALUES(17533, 99708, 'ninety-nine thousand seven hundred eight'); INSERT INTO t3 VALUES(17534, 12875, 'twelve thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(17535, 88, 'eighty-eight'); INSERT INTO t3 VALUES(17536, 10150, 'ten thousand one hundred fifty'); INSERT INTO t3 VALUES(17537, 24199, 'twenty-four thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(17538, 18188, 'eighteen thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(17539, 20030, 'twenty thousand thirty'); INSERT INTO t3 VALUES(17540, 52891, 'fifty-two thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(17541, 93155, 'ninety-three thousand one hundred fifty-five'); INSERT INTO t3 VALUES(17542, 93154, 'ninety-three thousand one hundred fifty-four'); INSERT INTO t3 VALUES(17543, 86312, 'eighty-six thousand three hundred twelve'); INSERT INTO t3 VALUES(17544, 41385, 'forty-one thousand three hundred eighty-five'); INSERT INTO t3 VALUES(17545, 75473, 'seventy-five thousand four hundred seventy-three'); INSERT INTO t3 VALUES(17546, 12444, 'twelve thousand four hundred forty-four'); INSERT INTO t3 VALUES(17547, 32865, 'thirty-two thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(17548, 20502, 'twenty thousand five hundred two'); INSERT INTO t3 VALUES(17549, 56523, 'fifty-six thousand five hundred twenty-three'); INSERT INTO t3 VALUES(17550, 98949, 'ninety-eight thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(17551, 69419, 'sixty-nine thousand four hundred nineteen'); INSERT INTO t3 VALUES(17552, 10870, 'ten thousand eight hundred seventy'); INSERT INTO t3 VALUES(17553, 39468, 'thirty-nine thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(17554, 39858, 'thirty-nine thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(17555, 49087, 'forty-nine thousand eighty-seven'); INSERT INTO t3 VALUES(17556, 77726, 'seventy-seven thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(17557, 7803, 'seven thousand eight hundred three'); INSERT INTO t3 VALUES(17558, 37196, 'thirty-seven thousand one hundred ninety-six'); INSERT INTO t3 VALUES(17559, 56807, 'fifty-six thousand eight hundred seven'); INSERT INTO t3 VALUES(17560, 50037, 'fifty thousand thirty-seven'); INSERT INTO t3 VALUES(17561, 95382, 'ninety-five thousand three hundred eighty-two'); INSERT INTO t3 VALUES(17562, 12584, 'twelve thousand five hundred eighty-four'); INSERT INTO t3 VALUES(17563, 52870, 'fifty-two thousand eight hundred seventy'); INSERT INTO t3 VALUES(17564, 17676, 'seventeen thousand six hundred seventy-six'); INSERT INTO t3 VALUES(17565, 65768, 'sixty-five thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(17566, 50764, 'fifty thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(17567, 9737, 'nine thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(17568, 74778, 'seventy-four thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(17569, 60936, 'sixty thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(17570, 62682, 'sixty-two thousand six hundred eighty-two'); INSERT INTO t3 VALUES(17571, 35256, 'thirty-five thousand two hundred fifty-six'); INSERT INTO t3 VALUES(17572, 41055, 'forty-one thousand fifty-five'); INSERT INTO t3 VALUES(17573, 51172, 'fifty-one thousand one hundred seventy-two'); INSERT INTO t3 VALUES(17574, 95407, 'ninety-five thousand four hundred seven'); INSERT INTO t3 VALUES(17575, 90030, 'ninety thousand thirty'); INSERT INTO t3 VALUES(17576, 26852, 'twenty-six thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(17577, 51152, 'fifty-one thousand one hundred fifty-two'); INSERT INTO t3 VALUES(17578, 67455, 'sixty-seven thousand four hundred fifty-five'); INSERT INTO t3 VALUES(17579, 21796, 'twenty-one thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(17580, 56047, 'fifty-six thousand forty-seven'); INSERT INTO t3 VALUES(17581, 65081, 'sixty-five thousand eighty-one'); INSERT INTO t3 VALUES(17582, 31077, 'thirty-one thousand seventy-seven'); INSERT INTO t3 VALUES(17583, 74918, 'seventy-four thousand nine hundred eighteen'); INSERT INTO t3 VALUES(17584, 62546, 'sixty-two thousand five hundred forty-six'); INSERT INTO t3 VALUES(17585, 90853, 'ninety thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(17586, 55438, 'fifty-five thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(17587, 90330, 'ninety thousand three hundred thirty'); INSERT INTO t3 VALUES(17588, 77923, 'seventy-seven thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(17589, 80184, 'eighty thousand one hundred eighty-four'); INSERT INTO t3 VALUES(17590, 35732, 'thirty-five thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(17591, 39709, 'thirty-nine thousand seven hundred nine'); INSERT INTO t3 VALUES(17592, 17693, 'seventeen thousand six hundred ninety-three'); INSERT INTO t3 VALUES(17593, 85741, 'eighty-five thousand seven hundred forty-one'); INSERT INTO t3 VALUES(17594, 51620, 'fifty-one thousand six hundred twenty'); INSERT INTO t3 VALUES(17595, 30830, 'thirty thousand eight hundred thirty'); INSERT INTO t3 VALUES(17596, 31848, 'thirty-one thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(17597, 59390, 'fifty-nine thousand three hundred ninety'); INSERT INTO t3 VALUES(17598, 24918, 'twenty-four thousand nine hundred eighteen'); INSERT INTO t3 VALUES(17599, 62418, 'sixty-two thousand four hundred eighteen'); INSERT INTO t3 VALUES(17600, 21171, 'twenty-one thousand one hundred seventy-one'); INSERT INTO t3 VALUES(17601, 34830, 'thirty-four thousand eight hundred thirty'); INSERT INTO t3 VALUES(17602, 43768, 'forty-three thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(17603, 59847, 'fifty-nine thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(17604, 89342, 'eighty-nine thousand three hundred forty-two'); INSERT INTO t3 VALUES(17605, 70383, 'seventy thousand three hundred eighty-three'); INSERT INTO t3 VALUES(17606, 11726, 'eleven thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(17607, 56860, 'fifty-six thousand eight hundred sixty'); INSERT INTO t3 VALUES(17608, 41407, 'forty-one thousand four hundred seven'); INSERT INTO t3 VALUES(17609, 43786, 'forty-three thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(17610, 86377, 'eighty-six thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(17611, 55855, 'fifty-five thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(17612, 7715, 'seven thousand seven hundred fifteen'); INSERT INTO t3 VALUES(17613, 11419, 'eleven thousand four hundred nineteen'); INSERT INTO t3 VALUES(17614, 23784, 'twenty-three thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(17615, 17653, 'seventeen thousand six hundred fifty-three'); INSERT INTO t3 VALUES(17616, 91732, 'ninety-one thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(17617, 7860, 'seven thousand eight hundred sixty'); INSERT INTO t3 VALUES(17618, 72271, 'seventy-two thousand two hundred seventy-one'); INSERT INTO t3 VALUES(17619, 83737, 'eighty-three thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(17620, 75751, 'seventy-five thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(17621, 77700, 'seventy-seven thousand seven hundred'); INSERT INTO t3 VALUES(17622, 79743, 'seventy-nine thousand seven hundred forty-three'); INSERT INTO t3 VALUES(17623, 56795, 'fifty-six thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(17624, 39975, 'thirty-nine thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(17625, 21684, 'twenty-one thousand six hundred eighty-four'); INSERT INTO t3 VALUES(17626, 29248, 'twenty-nine thousand two hundred forty-eight'); INSERT INTO t3 VALUES(17627, 89903, 'eighty-nine thousand nine hundred three'); INSERT INTO t3 VALUES(17628, 16404, 'sixteen thousand four hundred four'); INSERT INTO t3 VALUES(17629, 60768, 'sixty thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(17630, 24833, 'twenty-four thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(17631, 52624, 'fifty-two thousand six hundred twenty-four'); INSERT INTO t3 VALUES(17632, 69077, 'sixty-nine thousand seventy-seven'); INSERT INTO t3 VALUES(17633, 36519, 'thirty-six thousand five hundred nineteen'); INSERT INTO t3 VALUES(17634, 96660, 'ninety-six thousand six hundred sixty'); INSERT INTO t3 VALUES(17635, 74495, 'seventy-four thousand four hundred ninety-five'); INSERT INTO t3 VALUES(17636, 25592, 'twenty-five thousand five hundred ninety-two'); INSERT INTO t3 VALUES(17637, 46957, 'forty-six thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(17638, 52685, 'fifty-two thousand six hundred eighty-five'); INSERT INTO t3 VALUES(17639, 35020, 'thirty-five thousand twenty'); INSERT INTO t3 VALUES(17640, 15625, 'fifteen thousand six hundred twenty-five'); INSERT INTO t3 VALUES(17641, 35781, 'thirty-five thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(17642, 99379, 'ninety-nine thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(17643, 98631, 'ninety-eight thousand six hundred thirty-one'); INSERT INTO t3 VALUES(17644, 80614, 'eighty thousand six hundred fourteen'); INSERT INTO t3 VALUES(17645, 1920, 'one thousand nine hundred twenty'); INSERT INTO t3 VALUES(17646, 98111, 'ninety-eight thousand one hundred eleven'); INSERT INTO t3 VALUES(17647, 14585, 'fourteen thousand five hundred eighty-five'); INSERT INTO t3 VALUES(17648, 87757, 'eighty-seven thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(17649, 57772, 'fifty-seven thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(17650, 47167, 'forty-seven thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(17651, 17867, 'seventeen thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(17652, 6589, 'six thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(17653, 51462, 'fifty-one thousand four hundred sixty-two'); INSERT INTO t3 VALUES(17654, 98288, 'ninety-eight thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(17655, 7811, 'seven thousand eight hundred eleven'); INSERT INTO t3 VALUES(17656, 78378, 'seventy-eight thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(17657, 26411, 'twenty-six thousand four hundred eleven'); INSERT INTO t3 VALUES(17658, 28167, 'twenty-eight thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(17659, 3454, 'three thousand four hundred fifty-four'); INSERT INTO t3 VALUES(17660, 39847, 'thirty-nine thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(17661, 82093, 'eighty-two thousand ninety-three'); INSERT INTO t3 VALUES(17662, 86634, 'eighty-six thousand six hundred thirty-four'); INSERT INTO t3 VALUES(17663, 37862, 'thirty-seven thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(17664, 63171, 'sixty-three thousand one hundred seventy-one'); INSERT INTO t3 VALUES(17665, 76944, 'seventy-six thousand nine hundred forty-four'); INSERT INTO t3 VALUES(17666, 82239, 'eighty-two thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(17667, 54575, 'fifty-four thousand five hundred seventy-five'); INSERT INTO t3 VALUES(17668, 37685, 'thirty-seven thousand six hundred eighty-five'); INSERT INTO t3 VALUES(17669, 77488, 'seventy-seven thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(17670, 21665, 'twenty-one thousand six hundred sixty-five'); INSERT INTO t3 VALUES(17671, 63199, 'sixty-three thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(17672, 21983, 'twenty-one thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(17673, 94443, 'ninety-four thousand four hundred forty-three'); INSERT INTO t3 VALUES(17674, 91733, 'ninety-one thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(17675, 95647, 'ninety-five thousand six hundred forty-seven'); INSERT INTO t3 VALUES(17676, 92221, 'ninety-two thousand two hundred twenty-one'); INSERT INTO t3 VALUES(17677, 87880, 'eighty-seven thousand eight hundred eighty'); INSERT INTO t3 VALUES(17678, 53685, 'fifty-three thousand six hundred eighty-five'); INSERT INTO t3 VALUES(17679, 8883, 'eight thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(17680, 31725, 'thirty-one thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(17681, 91081, 'ninety-one thousand eighty-one'); INSERT INTO t3 VALUES(17682, 82949, 'eighty-two thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(17683, 90581, 'ninety thousand five hundred eighty-one'); INSERT INTO t3 VALUES(17684, 63938, 'sixty-three thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(17685, 48851, 'forty-eight thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(17686, 19564, 'nineteen thousand five hundred sixty-four'); INSERT INTO t3 VALUES(17687, 52663, 'fifty-two thousand six hundred sixty-three'); INSERT INTO t3 VALUES(17688, 75487, 'seventy-five thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(17689, 72695, 'seventy-two thousand six hundred ninety-five'); INSERT INTO t3 VALUES(17690, 46730, 'forty-six thousand seven hundred thirty'); INSERT INTO t3 VALUES(17691, 67831, 'sixty-seven thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(17692, 46946, 'forty-six thousand nine hundred forty-six'); INSERT INTO t3 VALUES(17693, 53113, 'fifty-three thousand one hundred thirteen'); INSERT INTO t3 VALUES(17694, 13244, 'thirteen thousand two hundred forty-four'); INSERT INTO t3 VALUES(17695, 87, 'eighty-seven'); INSERT INTO t3 VALUES(17696, 19494, 'nineteen thousand four hundred ninety-four'); INSERT INTO t3 VALUES(17697, 99792, 'ninety-nine thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(17698, 73340, 'seventy-three thousand three hundred forty'); INSERT INTO t3 VALUES(17699, 81613, 'eighty-one thousand six hundred thirteen'); INSERT INTO t3 VALUES(17700, 93920, 'ninety-three thousand nine hundred twenty'); INSERT INTO t3 VALUES(17701, 73732, 'seventy-three thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(17702, 80410, 'eighty thousand four hundred ten'); INSERT INTO t3 VALUES(17703, 51994, 'fifty-one thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(17704, 42307, 'forty-two thousand three hundred seven'); INSERT INTO t3 VALUES(17705, 36248, 'thirty-six thousand two hundred forty-eight'); INSERT INTO t3 VALUES(17706, 36489, 'thirty-six thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(17707, 19005, 'nineteen thousand five'); INSERT INTO t3 VALUES(17708, 37548, 'thirty-seven thousand five hundred forty-eight'); INSERT INTO t3 VALUES(17709, 69366, 'sixty-nine thousand three hundred sixty-six'); INSERT INTO t3 VALUES(17710, 14395, 'fourteen thousand three hundred ninety-five'); INSERT INTO t3 VALUES(17711, 35288, 'thirty-five thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(17712, 29790, 'twenty-nine thousand seven hundred ninety'); INSERT INTO t3 VALUES(17713, 13633, 'thirteen thousand six hundred thirty-three'); INSERT INTO t3 VALUES(17714, 83464, 'eighty-three thousand four hundred sixty-four'); INSERT INTO t3 VALUES(17715, 22097, 'twenty-two thousand ninety-seven'); INSERT INTO t3 VALUES(17716, 5682, 'five thousand six hundred eighty-two'); INSERT INTO t3 VALUES(17717, 73064, 'seventy-three thousand sixty-four'); INSERT INTO t3 VALUES(17718, 7691, 'seven thousand six hundred ninety-one'); INSERT INTO t3 VALUES(17719, 13390, 'thirteen thousand three hundred ninety'); INSERT INTO t3 VALUES(17720, 6306, 'six thousand three hundred six'); INSERT INTO t3 VALUES(17721, 99715, 'ninety-nine thousand seven hundred fifteen'); INSERT INTO t3 VALUES(17722, 84750, 'eighty-four thousand seven hundred fifty'); INSERT INTO t3 VALUES(17723, 12202, 'twelve thousand two hundred two'); INSERT INTO t3 VALUES(17724, 49268, 'forty-nine thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(17725, 87166, 'eighty-seven thousand one hundred sixty-six'); INSERT INTO t3 VALUES(17726, 25358, 'twenty-five thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(17727, 54847, 'fifty-four thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(17728, 69387, 'sixty-nine thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(17729, 55417, 'fifty-five thousand four hundred seventeen'); INSERT INTO t3 VALUES(17730, 9609, 'nine thousand six hundred nine'); INSERT INTO t3 VALUES(17731, 76930, 'seventy-six thousand nine hundred thirty'); INSERT INTO t3 VALUES(17732, 91924, 'ninety-one thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(17733, 8422, 'eight thousand four hundred twenty-two'); INSERT INTO t3 VALUES(17734, 17809, 'seventeen thousand eight hundred nine'); INSERT INTO t3 VALUES(17735, 46685, 'forty-six thousand six hundred eighty-five'); INSERT INTO t3 VALUES(17736, 53399, 'fifty-three thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(17737, 29952, 'twenty-nine thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(17738, 90447, 'ninety thousand four hundred forty-seven'); INSERT INTO t3 VALUES(17739, 16263, 'sixteen thousand two hundred sixty-three'); INSERT INTO t3 VALUES(17740, 76348, 'seventy-six thousand three hundred forty-eight'); INSERT INTO t3 VALUES(17741, 8173, 'eight thousand one hundred seventy-three'); INSERT INTO t3 VALUES(17742, 16328, 'sixteen thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(17743, 58642, 'fifty-eight thousand six hundred forty-two'); INSERT INTO t3 VALUES(17744, 31944, 'thirty-one thousand nine hundred forty-four'); INSERT INTO t3 VALUES(17745, 67730, 'sixty-seven thousand seven hundred thirty'); INSERT INTO t3 VALUES(17746, 59165, 'fifty-nine thousand one hundred sixty-five'); INSERT INTO t3 VALUES(17747, 8866, 'eight thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(17748, 20806, 'twenty thousand eight hundred six'); INSERT INTO t3 VALUES(17749, 86418, 'eighty-six thousand four hundred eighteen'); INSERT INTO t3 VALUES(17750, 82864, 'eighty-two thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(17751, 58171, 'fifty-eight thousand one hundred seventy-one'); INSERT INTO t3 VALUES(17752, 76204, 'seventy-six thousand two hundred four'); INSERT INTO t3 VALUES(17753, 89838, 'eighty-nine thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(17754, 52827, 'fifty-two thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(17755, 16458, 'sixteen thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(17756, 14893, 'fourteen thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(17757, 53896, 'fifty-three thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(17758, 8478, 'eight thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(17759, 68662, 'sixty-eight thousand six hundred sixty-two'); INSERT INTO t3 VALUES(17760, 46437, 'forty-six thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(17761, 63750, 'sixty-three thousand seven hundred fifty'); INSERT INTO t3 VALUES(17762, 35093, 'thirty-five thousand ninety-three'); INSERT INTO t3 VALUES(17763, 772, 'seven hundred seventy-two'); INSERT INTO t3 VALUES(17764, 98314, 'ninety-eight thousand three hundred fourteen'); INSERT INTO t3 VALUES(17765, 60801, 'sixty thousand eight hundred one'); INSERT INTO t3 VALUES(17766, 89526, 'eighty-nine thousand five hundred twenty-six'); INSERT INTO t3 VALUES(17767, 36376, 'thirty-six thousand three hundred seventy-six'); INSERT INTO t3 VALUES(17768, 94593, 'ninety-four thousand five hundred ninety-three'); INSERT INTO t3 VALUES(17769, 78598, 'seventy-eight thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(17770, 21062, 'twenty-one thousand sixty-two'); INSERT INTO t3 VALUES(17771, 27746, 'twenty-seven thousand seven hundred forty-six'); INSERT INTO t3 VALUES(17772, 76638, 'seventy-six thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(17773, 62875, 'sixty-two thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(17774, 26599, 'twenty-six thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(17775, 5629, 'five thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(17776, 82263, 'eighty-two thousand two hundred sixty-three'); INSERT INTO t3 VALUES(17777, 61294, 'sixty-one thousand two hundred ninety-four'); INSERT INTO t3 VALUES(17778, 33953, 'thirty-three thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(17779, 53874, 'fifty-three thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(17780, 14011, 'fourteen thousand eleven'); INSERT INTO t3 VALUES(17781, 50811, 'fifty thousand eight hundred eleven'); INSERT INTO t3 VALUES(17782, 53219, 'fifty-three thousand two hundred nineteen'); INSERT INTO t3 VALUES(17783, 25681, 'twenty-five thousand six hundred eighty-one'); INSERT INTO t3 VALUES(17784, 1809, 'one thousand eight hundred nine'); INSERT INTO t3 VALUES(17785, 82258, 'eighty-two thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(17786, 94045, 'ninety-four thousand forty-five'); INSERT INTO t3 VALUES(17787, 29348, 'twenty-nine thousand three hundred forty-eight'); INSERT INTO t3 VALUES(17788, 30412, 'thirty thousand four hundred twelve'); INSERT INTO t3 VALUES(17789, 87681, 'eighty-seven thousand six hundred eighty-one'); INSERT INTO t3 VALUES(17790, 60273, 'sixty thousand two hundred seventy-three'); INSERT INTO t3 VALUES(17791, 40092, 'forty thousand ninety-two'); INSERT INTO t3 VALUES(17792, 81275, 'eighty-one thousand two hundred seventy-five'); INSERT INTO t3 VALUES(17793, 20076, 'twenty thousand seventy-six'); INSERT INTO t3 VALUES(17794, 61402, 'sixty-one thousand four hundred two'); INSERT INTO t3 VALUES(17795, 26374, 'twenty-six thousand three hundred seventy-four'); INSERT INTO t3 VALUES(17796, 33432, 'thirty-three thousand four hundred thirty-two'); INSERT INTO t3 VALUES(17797, 61706, 'sixty-one thousand seven hundred six'); INSERT INTO t3 VALUES(17798, 82056, 'eighty-two thousand fifty-six'); INSERT INTO t3 VALUES(17799, 68873, 'sixty-eight thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(17800, 6825, 'six thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(17801, 37695, 'thirty-seven thousand six hundred ninety-five'); INSERT INTO t3 VALUES(17802, 70432, 'seventy thousand four hundred thirty-two'); INSERT INTO t3 VALUES(17803, 62135, 'sixty-two thousand one hundred thirty-five'); INSERT INTO t3 VALUES(17804, 28082, 'twenty-eight thousand eighty-two'); INSERT INTO t3 VALUES(17805, 63759, 'sixty-three thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(17806, 88376, 'eighty-eight thousand three hundred seventy-six'); INSERT INTO t3 VALUES(17807, 74151, 'seventy-four thousand one hundred fifty-one'); INSERT INTO t3 VALUES(17808, 29346, 'twenty-nine thousand three hundred forty-six'); INSERT INTO t3 VALUES(17809, 12150, 'twelve thousand one hundred fifty'); INSERT INTO t3 VALUES(17810, 85825, 'eighty-five thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(17811, 62769, 'sixty-two thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(17812, 43568, 'forty-three thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(17813, 71883, 'seventy-one thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(17814, 69112, 'sixty-nine thousand one hundred twelve'); INSERT INTO t3 VALUES(17815, 32911, 'thirty-two thousand nine hundred eleven'); INSERT INTO t3 VALUES(17816, 12044, 'twelve thousand forty-four'); INSERT INTO t3 VALUES(17817, 56352, 'fifty-six thousand three hundred fifty-two'); INSERT INTO t3 VALUES(17818, 45003, 'forty-five thousand three'); INSERT INTO t3 VALUES(17819, 35502, 'thirty-five thousand five hundred two'); INSERT INTO t3 VALUES(17820, 22350, 'twenty-two thousand three hundred fifty'); INSERT INTO t3 VALUES(17821, 56070, 'fifty-six thousand seventy'); INSERT INTO t3 VALUES(17822, 56816, 'fifty-six thousand eight hundred sixteen'); INSERT INTO t3 VALUES(17823, 83065, 'eighty-three thousand sixty-five'); INSERT INTO t3 VALUES(17824, 22631, 'twenty-two thousand six hundred thirty-one'); INSERT INTO t3 VALUES(17825, 88120, 'eighty-eight thousand one hundred twenty'); INSERT INTO t3 VALUES(17826, 74633, 'seventy-four thousand six hundred thirty-three'); INSERT INTO t3 VALUES(17827, 8139, 'eight thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(17828, 79216, 'seventy-nine thousand two hundred sixteen'); INSERT INTO t3 VALUES(17829, 85046, 'eighty-five thousand forty-six'); INSERT INTO t3 VALUES(17830, 5617, 'five thousand six hundred seventeen'); INSERT INTO t3 VALUES(17831, 32949, 'thirty-two thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(17832, 26317, 'twenty-six thousand three hundred seventeen'); INSERT INTO t3 VALUES(17833, 79722, 'seventy-nine thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(17834, 86904, 'eighty-six thousand nine hundred four'); INSERT INTO t3 VALUES(17835, 39538, 'thirty-nine thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(17836, 19647, 'nineteen thousand six hundred forty-seven'); INSERT INTO t3 VALUES(17837, 44283, 'forty-four thousand two hundred eighty-three'); INSERT INTO t3 VALUES(17838, 39081, 'thirty-nine thousand eighty-one'); INSERT INTO t3 VALUES(17839, 34624, 'thirty-four thousand six hundred twenty-four'); INSERT INTO t3 VALUES(17840, 42048, 'forty-two thousand forty-eight'); INSERT INTO t3 VALUES(17841, 74551, 'seventy-four thousand five hundred fifty-one'); INSERT INTO t3 VALUES(17842, 59597, 'fifty-nine thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(17843, 8040, 'eight thousand forty'); INSERT INTO t3 VALUES(17844, 19093, 'nineteen thousand ninety-three'); INSERT INTO t3 VALUES(17845, 19410, 'nineteen thousand four hundred ten'); INSERT INTO t3 VALUES(17846, 31251, 'thirty-one thousand two hundred fifty-one'); INSERT INTO t3 VALUES(17847, 14022, 'fourteen thousand twenty-two'); INSERT INTO t3 VALUES(17848, 29958, 'twenty-nine thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(17849, 79087, 'seventy-nine thousand eighty-seven'); INSERT INTO t3 VALUES(17850, 52688, 'fifty-two thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(17851, 15659, 'fifteen thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(17852, 66253, 'sixty-six thousand two hundred fifty-three'); INSERT INTO t3 VALUES(17853, 83549, 'eighty-three thousand five hundred forty-nine'); INSERT INTO t3 VALUES(17854, 89996, 'eighty-nine thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(17855, 65554, 'sixty-five thousand five hundred fifty-four'); INSERT INTO t3 VALUES(17856, 14523, 'fourteen thousand five hundred twenty-three'); INSERT INTO t3 VALUES(17857, 82825, 'eighty-two thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(17858, 13218, 'thirteen thousand two hundred eighteen'); INSERT INTO t3 VALUES(17859, 77149, 'seventy-seven thousand one hundred forty-nine'); INSERT INTO t3 VALUES(17860, 64741, 'sixty-four thousand seven hundred forty-one'); INSERT INTO t3 VALUES(17861, 15653, 'fifteen thousand six hundred fifty-three'); INSERT INTO t3 VALUES(17862, 85936, 'eighty-five thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(17863, 65480, 'sixty-five thousand four hundred eighty'); INSERT INTO t3 VALUES(17864, 47998, 'forty-seven thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(17865, 2382, 'two thousand three hundred eighty-two'); INSERT INTO t3 VALUES(17866, 93477, 'ninety-three thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(17867, 73813, 'seventy-three thousand eight hundred thirteen'); INSERT INTO t3 VALUES(17868, 71602, 'seventy-one thousand six hundred two'); INSERT INTO t3 VALUES(17869, 91069, 'ninety-one thousand sixty-nine'); INSERT INTO t3 VALUES(17870, 51829, 'fifty-one thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(17871, 75886, 'seventy-five thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(17872, 96103, 'ninety-six thousand one hundred three'); INSERT INTO t3 VALUES(17873, 23981, 'twenty-three thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(17874, 76315, 'seventy-six thousand three hundred fifteen'); INSERT INTO t3 VALUES(17875, 16276, 'sixteen thousand two hundred seventy-six'); INSERT INTO t3 VALUES(17876, 94634, 'ninety-four thousand six hundred thirty-four'); INSERT INTO t3 VALUES(17877, 3216, 'three thousand two hundred sixteen'); INSERT INTO t3 VALUES(17878, 89150, 'eighty-nine thousand one hundred fifty'); INSERT INTO t3 VALUES(17879, 16375, 'sixteen thousand three hundred seventy-five'); INSERT INTO t3 VALUES(17880, 12629, 'twelve thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(17881, 95663, 'ninety-five thousand six hundred sixty-three'); INSERT INTO t3 VALUES(17882, 91220, 'ninety-one thousand two hundred twenty'); INSERT INTO t3 VALUES(17883, 56519, 'fifty-six thousand five hundred nineteen'); INSERT INTO t3 VALUES(17884, 13454, 'thirteen thousand four hundred fifty-four'); INSERT INTO t3 VALUES(17885, 89501, 'eighty-nine thousand five hundred one'); INSERT INTO t3 VALUES(17886, 92338, 'ninety-two thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(17887, 98119, 'ninety-eight thousand one hundred nineteen'); INSERT INTO t3 VALUES(17888, 72505, 'seventy-two thousand five hundred five'); INSERT INTO t3 VALUES(17889, 4299, 'four thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(17890, 64775, 'sixty-four thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(17891, 83595, 'eighty-three thousand five hundred ninety-five'); INSERT INTO t3 VALUES(17892, 98721, 'ninety-eight thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(17893, 9219, 'nine thousand two hundred nineteen'); INSERT INTO t3 VALUES(17894, 8209, 'eight thousand two hundred nine'); INSERT INTO t3 VALUES(17895, 55911, 'fifty-five thousand nine hundred eleven'); INSERT INTO t3 VALUES(17896, 94223, 'ninety-four thousand two hundred twenty-three'); INSERT INTO t3 VALUES(17897, 63077, 'sixty-three thousand seventy-seven'); INSERT INTO t3 VALUES(17898, 5698, 'five thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(17899, 16246, 'sixteen thousand two hundred forty-six'); INSERT INTO t3 VALUES(17900, 25465, 'twenty-five thousand four hundred sixty-five'); INSERT INTO t3 VALUES(17901, 67774, 'sixty-seven thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(17902, 49246, 'forty-nine thousand two hundred forty-six'); INSERT INTO t3 VALUES(17903, 91288, 'ninety-one thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(17904, 72734, 'seventy-two thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(17905, 1354, 'one thousand three hundred fifty-four'); INSERT INTO t3 VALUES(17906, 84056, 'eighty-four thousand fifty-six'); INSERT INTO t3 VALUES(17907, 95351, 'ninety-five thousand three hundred fifty-one'); INSERT INTO t3 VALUES(17908, 15392, 'fifteen thousand three hundred ninety-two'); INSERT INTO t3 VALUES(17909, 47084, 'forty-seven thousand eighty-four'); INSERT INTO t3 VALUES(17910, 96227, 'ninety-six thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(17911, 23022, 'twenty-three thousand twenty-two'); INSERT INTO t3 VALUES(17912, 42752, 'forty-two thousand seven hundred fifty-two'); INSERT INTO t3 VALUES(17913, 63080, 'sixty-three thousand eighty'); INSERT INTO t3 VALUES(17914, 27426, 'twenty-seven thousand four hundred twenty-six'); INSERT INTO t3 VALUES(17915, 23584, 'twenty-three thousand five hundred eighty-four'); INSERT INTO t3 VALUES(17916, 36291, 'thirty-six thousand two hundred ninety-one'); INSERT INTO t3 VALUES(17917, 13101, 'thirteen thousand one hundred one'); INSERT INTO t3 VALUES(17918, 48775, 'forty-eight thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(17919, 82615, 'eighty-two thousand six hundred fifteen'); INSERT INTO t3 VALUES(17920, 55879, 'fifty-five thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(17921, 57494, 'fifty-seven thousand four hundred ninety-four'); INSERT INTO t3 VALUES(17922, 76448, 'seventy-six thousand four hundred forty-eight'); INSERT INTO t3 VALUES(17923, 28283, 'twenty-eight thousand two hundred eighty-three'); INSERT INTO t3 VALUES(17924, 75078, 'seventy-five thousand seventy-eight'); INSERT INTO t3 VALUES(17925, 88310, 'eighty-eight thousand three hundred ten'); INSERT INTO t3 VALUES(17926, 95161, 'ninety-five thousand one hundred sixty-one'); INSERT INTO t3 VALUES(17927, 51378, 'fifty-one thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(17928, 58869, 'fifty-eight thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(17929, 40507, 'forty thousand five hundred seven'); INSERT INTO t3 VALUES(17930, 24474, 'twenty-four thousand four hundred seventy-four'); INSERT INTO t3 VALUES(17931, 47542, 'forty-seven thousand five hundred forty-two'); INSERT INTO t3 VALUES(17932, 52732, 'fifty-two thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(17933, 56947, 'fifty-six thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(17934, 29519, 'twenty-nine thousand five hundred nineteen'); INSERT INTO t3 VALUES(17935, 99309, 'ninety-nine thousand three hundred nine'); INSERT INTO t3 VALUES(17936, 70286, 'seventy thousand two hundred eighty-six'); INSERT INTO t3 VALUES(17937, 9444, 'nine thousand four hundred forty-four'); INSERT INTO t3 VALUES(17938, 32244, 'thirty-two thousand two hundred forty-four'); INSERT INTO t3 VALUES(17939, 90349, 'ninety thousand three hundred forty-nine'); INSERT INTO t3 VALUES(17940, 47663, 'forty-seven thousand six hundred sixty-three'); INSERT INTO t3 VALUES(17941, 68129, 'sixty-eight thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(17942, 42894, 'forty-two thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(17943, 22371, 'twenty-two thousand three hundred seventy-one'); INSERT INTO t3 VALUES(17944, 2050, 'two thousand fifty'); INSERT INTO t3 VALUES(17945, 54080, 'fifty-four thousand eighty'); INSERT INTO t3 VALUES(17946, 32418, 'thirty-two thousand four hundred eighteen'); INSERT INTO t3 VALUES(17947, 10752, 'ten thousand seven hundred fifty-two'); INSERT INTO t3 VALUES(17948, 30485, 'thirty thousand four hundred eighty-five'); INSERT INTO t3 VALUES(17949, 53889, 'fifty-three thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(17950, 20835, 'twenty thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(17951, 96020, 'ninety-six thousand twenty'); INSERT INTO t3 VALUES(17952, 57995, 'fifty-seven thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(17953, 29325, 'twenty-nine thousand three hundred twenty-five'); INSERT INTO t3 VALUES(17954, 96345, 'ninety-six thousand three hundred forty-five'); INSERT INTO t3 VALUES(17955, 68578, 'sixty-eight thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(17956, 17093, 'seventeen thousand ninety-three'); INSERT INTO t3 VALUES(17957, 62325, 'sixty-two thousand three hundred twenty-five'); INSERT INTO t3 VALUES(17958, 68485, 'sixty-eight thousand four hundred eighty-five'); INSERT INTO t3 VALUES(17959, 21071, 'twenty-one thousand seventy-one'); INSERT INTO t3 VALUES(17960, 52918, 'fifty-two thousand nine hundred eighteen'); INSERT INTO t3 VALUES(17961, 80859, 'eighty thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(17962, 72353, 'seventy-two thousand three hundred fifty-three'); INSERT INTO t3 VALUES(17963, 71133, 'seventy-one thousand one hundred thirty-three'); INSERT INTO t3 VALUES(17964, 73061, 'seventy-three thousand sixty-one'); INSERT INTO t3 VALUES(17965, 37682, 'thirty-seven thousand six hundred eighty-two'); INSERT INTO t3 VALUES(17966, 82745, 'eighty-two thousand seven hundred forty-five'); INSERT INTO t3 VALUES(17967, 40224, 'forty thousand two hundred twenty-four'); INSERT INTO t3 VALUES(17968, 99229, 'ninety-nine thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(17969, 42472, 'forty-two thousand four hundred seventy-two'); INSERT INTO t3 VALUES(17970, 93964, 'ninety-three thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(17971, 7893, 'seven thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(17972, 84563, 'eighty-four thousand five hundred sixty-three'); INSERT INTO t3 VALUES(17973, 57563, 'fifty-seven thousand five hundred sixty-three'); INSERT INTO t3 VALUES(17974, 42823, 'forty-two thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(17975, 1971, 'one thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(17976, 96182, 'ninety-six thousand one hundred eighty-two'); INSERT INTO t3 VALUES(17977, 52709, 'fifty-two thousand seven hundred nine'); INSERT INTO t3 VALUES(17978, 43323, 'forty-three thousand three hundred twenty-three'); INSERT INTO t3 VALUES(17979, 16690, 'sixteen thousand six hundred ninety'); INSERT INTO t3 VALUES(17980, 6635, 'six thousand six hundred thirty-five'); INSERT INTO t3 VALUES(17981, 64219, 'sixty-four thousand two hundred nineteen'); INSERT INTO t3 VALUES(17982, 45442, 'forty-five thousand four hundred forty-two'); INSERT INTO t3 VALUES(17983, 46858, 'forty-six thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(17984, 3606, 'three thousand six hundred six'); INSERT INTO t3 VALUES(17985, 80516, 'eighty thousand five hundred sixteen'); INSERT INTO t3 VALUES(17986, 33192, 'thirty-three thousand one hundred ninety-two'); INSERT INTO t3 VALUES(17987, 64247, 'sixty-four thousand two hundred forty-seven'); INSERT INTO t3 VALUES(17988, 92874, 'ninety-two thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(17989, 11726, 'eleven thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(17990, 49012, 'forty-nine thousand twelve'); INSERT INTO t3 VALUES(17991, 38807, 'thirty-eight thousand eight hundred seven'); INSERT INTO t3 VALUES(17992, 16052, 'sixteen thousand fifty-two'); INSERT INTO t3 VALUES(17993, 97764, 'ninety-seven thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(17994, 71190, 'seventy-one thousand one hundred ninety'); INSERT INTO t3 VALUES(17995, 6621, 'six thousand six hundred twenty-one'); INSERT INTO t3 VALUES(17996, 19299, 'nineteen thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(17997, 43855, 'forty-three thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(17998, 9654, 'nine thousand six hundred fifty-four'); INSERT INTO t3 VALUES(17999, 1262, 'one thousand two hundred sixty-two'); INSERT INTO t3 VALUES(18000, 46607, 'forty-six thousand six hundred seven'); INSERT INTO t3 VALUES(18001, 80357, 'eighty thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(18002, 40502, 'forty thousand five hundred two'); INSERT INTO t3 VALUES(18003, 7463, 'seven thousand four hundred sixty-three'); INSERT INTO t3 VALUES(18004, 44920, 'forty-four thousand nine hundred twenty'); INSERT INTO t3 VALUES(18005, 69025, 'sixty-nine thousand twenty-five'); INSERT INTO t3 VALUES(18006, 53259, 'fifty-three thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(18007, 95385, 'ninety-five thousand three hundred eighty-five'); INSERT INTO t3 VALUES(18008, 28584, 'twenty-eight thousand five hundred eighty-four'); INSERT INTO t3 VALUES(18009, 64394, 'sixty-four thousand three hundred ninety-four'); INSERT INTO t3 VALUES(18010, 97418, 'ninety-seven thousand four hundred eighteen'); INSERT INTO t3 VALUES(18011, 60303, 'sixty thousand three hundred three'); INSERT INTO t3 VALUES(18012, 59579, 'fifty-nine thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(18013, 70024, 'seventy thousand twenty-four'); INSERT INTO t3 VALUES(18014, 30126, 'thirty thousand one hundred twenty-six'); INSERT INTO t3 VALUES(18015, 81077, 'eighty-one thousand seventy-seven'); INSERT INTO t3 VALUES(18016, 56914, 'fifty-six thousand nine hundred fourteen'); INSERT INTO t3 VALUES(18017, 53828, 'fifty-three thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(18018, 27228, 'twenty-seven thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(18019, 9993, 'nine thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(18020, 3068, 'three thousand sixty-eight'); INSERT INTO t3 VALUES(18021, 37906, 'thirty-seven thousand nine hundred six'); INSERT INTO t3 VALUES(18022, 74579, 'seventy-four thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(18023, 65759, 'sixty-five thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(18024, 85183, 'eighty-five thousand one hundred eighty-three'); INSERT INTO t3 VALUES(18025, 58336, 'fifty-eight thousand three hundred thirty-six'); INSERT INTO t3 VALUES(18026, 34942, 'thirty-four thousand nine hundred forty-two'); INSERT INTO t3 VALUES(18027, 47704, 'forty-seven thousand seven hundred four'); INSERT INTO t3 VALUES(18028, 29699, 'twenty-nine thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(18029, 48239, 'forty-eight thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(18030, 95087, 'ninety-five thousand eighty-seven'); INSERT INTO t3 VALUES(18031, 4932, 'four thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(18032, 46522, 'forty-six thousand five hundred twenty-two'); INSERT INTO t3 VALUES(18033, 27530, 'twenty-seven thousand five hundred thirty'); INSERT INTO t3 VALUES(18034, 30769, 'thirty thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(18035, 36540, 'thirty-six thousand five hundred forty'); INSERT INTO t3 VALUES(18036, 50683, 'fifty thousand six hundred eighty-three'); INSERT INTO t3 VALUES(18037, 2368, 'two thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(18038, 94257, 'ninety-four thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(18039, 9613, 'nine thousand six hundred thirteen'); INSERT INTO t3 VALUES(18040, 55861, 'fifty-five thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(18041, 88442, 'eighty-eight thousand four hundred forty-two'); INSERT INTO t3 VALUES(18042, 16143, 'sixteen thousand one hundred forty-three'); INSERT INTO t3 VALUES(18043, 84943, 'eighty-four thousand nine hundred forty-three'); INSERT INTO t3 VALUES(18044, 68504, 'sixty-eight thousand five hundred four'); INSERT INTO t3 VALUES(18045, 93843, 'ninety-three thousand eight hundred forty-three'); INSERT INTO t3 VALUES(18046, 13186, 'thirteen thousand one hundred eighty-six'); INSERT INTO t3 VALUES(18047, 23238, 'twenty-three thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(18048, 98507, 'ninety-eight thousand five hundred seven'); INSERT INTO t3 VALUES(18049, 5925, 'five thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(18050, 85957, 'eighty-five thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(18051, 31111, 'thirty-one thousand one hundred eleven'); INSERT INTO t3 VALUES(18052, 59965, 'fifty-nine thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(18053, 92816, 'ninety-two thousand eight hundred sixteen'); INSERT INTO t3 VALUES(18054, 52710, 'fifty-two thousand seven hundred ten'); INSERT INTO t3 VALUES(18055, 10541, 'ten thousand five hundred forty-one'); INSERT INTO t3 VALUES(18056, 12322, 'twelve thousand three hundred twenty-two'); INSERT INTO t3 VALUES(18057, 43736, 'forty-three thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(18058, 68988, 'sixty-eight thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(18059, 59005, 'fifty-nine thousand five'); INSERT INTO t3 VALUES(18060, 51783, 'fifty-one thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(18061, 75873, 'seventy-five thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(18062, 56628, 'fifty-six thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(18063, 65081, 'sixty-five thousand eighty-one'); INSERT INTO t3 VALUES(18064, 33059, 'thirty-three thousand fifty-nine'); INSERT INTO t3 VALUES(18065, 34342, 'thirty-four thousand three hundred forty-two'); INSERT INTO t3 VALUES(18066, 92252, 'ninety-two thousand two hundred fifty-two'); INSERT INTO t3 VALUES(18067, 88614, 'eighty-eight thousand six hundred fourteen'); INSERT INTO t3 VALUES(18068, 71734, 'seventy-one thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(18069, 13511, 'thirteen thousand five hundred eleven'); INSERT INTO t3 VALUES(18070, 1641, 'one thousand six hundred forty-one'); INSERT INTO t3 VALUES(18071, 60353, 'sixty thousand three hundred fifty-three'); INSERT INTO t3 VALUES(18072, 55540, 'fifty-five thousand five hundred forty'); INSERT INTO t3 VALUES(18073, 81987, 'eighty-one thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(18074, 81009, 'eighty-one thousand nine'); INSERT INTO t3 VALUES(18075, 42246, 'forty-two thousand two hundred forty-six'); INSERT INTO t3 VALUES(18076, 5935, 'five thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(18077, 62205, 'sixty-two thousand two hundred five'); INSERT INTO t3 VALUES(18078, 65614, 'sixty-five thousand six hundred fourteen'); INSERT INTO t3 VALUES(18079, 95842, 'ninety-five thousand eight hundred forty-two'); INSERT INTO t3 VALUES(18080, 39588, 'thirty-nine thousand five hundred eighty-eight'); INSERT INTO t3 VALUES(18081, 84271, 'eighty-four thousand two hundred seventy-one'); INSERT INTO t3 VALUES(18082, 50839, 'fifty thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(18083, 53520, 'fifty-three thousand five hundred twenty'); INSERT INTO t3 VALUES(18084, 46391, 'forty-six thousand three hundred ninety-one'); INSERT INTO t3 VALUES(18085, 96597, 'ninety-six thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(18086, 50655, 'fifty thousand six hundred fifty-five'); INSERT INTO t3 VALUES(18087, 70757, 'seventy thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(18088, 14714, 'fourteen thousand seven hundred fourteen'); INSERT INTO t3 VALUES(18089, 97339, 'ninety-seven thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(18090, 31265, 'thirty-one thousand two hundred sixty-five'); INSERT INTO t3 VALUES(18091, 27668, 'twenty-seven thousand six hundred sixty-eight'); INSERT INTO t3 VALUES(18092, 43832, 'forty-three thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(18093, 97418, 'ninety-seven thousand four hundred eighteen'); INSERT INTO t3 VALUES(18094, 65042, 'sixty-five thousand forty-two'); INSERT INTO t3 VALUES(18095, 90074, 'ninety thousand seventy-four'); INSERT INTO t3 VALUES(18096, 87805, 'eighty-seven thousand eight hundred five'); INSERT INTO t3 VALUES(18097, 12612, 'twelve thousand six hundred twelve'); INSERT INTO t3 VALUES(18098, 86175, 'eighty-six thousand one hundred seventy-five'); INSERT INTO t3 VALUES(18099, 83403, 'eighty-three thousand four hundred three'); INSERT INTO t3 VALUES(18100, 97528, 'ninety-seven thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(18101, 18517, 'eighteen thousand five hundred seventeen'); INSERT INTO t3 VALUES(18102, 51258, 'fifty-one thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(18103, 90469, 'ninety thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(18104, 34809, 'thirty-four thousand eight hundred nine'); INSERT INTO t3 VALUES(18105, 44780, 'forty-four thousand seven hundred eighty'); INSERT INTO t3 VALUES(18106, 17402, 'seventeen thousand four hundred two'); INSERT INTO t3 VALUES(18107, 65102, 'sixty-five thousand one hundred two'); INSERT INTO t3 VALUES(18108, 36667, 'thirty-six thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(18109, 60010, 'sixty thousand ten'); INSERT INTO t3 VALUES(18110, 11518, 'eleven thousand five hundred eighteen'); INSERT INTO t3 VALUES(18111, 20867, 'twenty thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(18112, 23135, 'twenty-three thousand one hundred thirty-five'); INSERT INTO t3 VALUES(18113, 97125, 'ninety-seven thousand one hundred twenty-five'); INSERT INTO t3 VALUES(18114, 90884, 'ninety thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(18115, 3753, 'three thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(18116, 84093, 'eighty-four thousand ninety-three'); INSERT INTO t3 VALUES(18117, 15786, 'fifteen thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(18118, 23000, 'twenty-three thousand'); INSERT INTO t3 VALUES(18119, 33087, 'thirty-three thousand eighty-seven'); INSERT INTO t3 VALUES(18120, 64898, 'sixty-four thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(18121, 16200, 'sixteen thousand two hundred'); INSERT INTO t3 VALUES(18122, 74484, 'seventy-four thousand four hundred eighty-four'); INSERT INTO t3 VALUES(18123, 33502, 'thirty-three thousand five hundred two'); INSERT INTO t3 VALUES(18124, 47339, 'forty-seven thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(18125, 96785, 'ninety-six thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(18126, 54734, 'fifty-four thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(18127, 24230, 'twenty-four thousand two hundred thirty'); INSERT INTO t3 VALUES(18128, 63860, 'sixty-three thousand eight hundred sixty'); INSERT INTO t3 VALUES(18129, 48822, 'forty-eight thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(18130, 82896, 'eighty-two thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(18131, 10112, 'ten thousand one hundred twelve'); INSERT INTO t3 VALUES(18132, 9075, 'nine thousand seventy-five'); INSERT INTO t3 VALUES(18133, 14780, 'fourteen thousand seven hundred eighty'); INSERT INTO t3 VALUES(18134, 49475, 'forty-nine thousand four hundred seventy-five'); INSERT INTO t3 VALUES(18135, 24714, 'twenty-four thousand seven hundred fourteen'); INSERT INTO t3 VALUES(18136, 14943, 'fourteen thousand nine hundred forty-three'); INSERT INTO t3 VALUES(18137, 24686, 'twenty-four thousand six hundred eighty-six'); INSERT INTO t3 VALUES(18138, 36880, 'thirty-six thousand eight hundred eighty'); INSERT INTO t3 VALUES(18139, 79326, 'seventy-nine thousand three hundred twenty-six'); INSERT INTO t3 VALUES(18140, 30601, 'thirty thousand six hundred one'); INSERT INTO t3 VALUES(18141, 81379, 'eighty-one thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(18142, 35694, 'thirty-five thousand six hundred ninety-four'); INSERT INTO t3 VALUES(18143, 5153, 'five thousand one hundred fifty-three'); INSERT INTO t3 VALUES(18144, 35016, 'thirty-five thousand sixteen'); INSERT INTO t3 VALUES(18145, 36034, 'thirty-six thousand thirty-four'); INSERT INTO t3 VALUES(18146, 6296, 'six thousand two hundred ninety-six'); INSERT INTO t3 VALUES(18147, 24982, 'twenty-four thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(18148, 56176, 'fifty-six thousand one hundred seventy-six'); INSERT INTO t3 VALUES(18149, 3253, 'three thousand two hundred fifty-three'); INSERT INTO t3 VALUES(18150, 55845, 'fifty-five thousand eight hundred forty-five'); INSERT INTO t3 VALUES(18151, 81684, 'eighty-one thousand six hundred eighty-four'); INSERT INTO t3 VALUES(18152, 86517, 'eighty-six thousand five hundred seventeen'); INSERT INTO t3 VALUES(18153, 99051, 'ninety-nine thousand fifty-one'); INSERT INTO t3 VALUES(18154, 48695, 'forty-eight thousand six hundred ninety-five'); INSERT INTO t3 VALUES(18155, 69661, 'sixty-nine thousand six hundred sixty-one'); INSERT INTO t3 VALUES(18156, 76037, 'seventy-six thousand thirty-seven'); INSERT INTO t3 VALUES(18157, 41687, 'forty-one thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(18158, 44266, 'forty-four thousand two hundred sixty-six'); INSERT INTO t3 VALUES(18159, 48769, 'forty-eight thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(18160, 5780, 'five thousand seven hundred eighty'); INSERT INTO t3 VALUES(18161, 53399, 'fifty-three thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(18162, 2897, 'two thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(18163, 76323, 'seventy-six thousand three hundred twenty-three'); INSERT INTO t3 VALUES(18164, 49273, 'forty-nine thousand two hundred seventy-three'); INSERT INTO t3 VALUES(18165, 9685, 'nine thousand six hundred eighty-five'); INSERT INTO t3 VALUES(18166, 27050, 'twenty-seven thousand fifty'); INSERT INTO t3 VALUES(18167, 25116, 'twenty-five thousand one hundred sixteen'); INSERT INTO t3 VALUES(18168, 8942, 'eight thousand nine hundred forty-two'); INSERT INTO t3 VALUES(18169, 74359, 'seventy-four thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(18170, 16774, 'sixteen thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(18171, 17060, 'seventeen thousand sixty'); INSERT INTO t3 VALUES(18172, 84211, 'eighty-four thousand two hundred eleven'); INSERT INTO t3 VALUES(18173, 82852, 'eighty-two thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(18174, 35496, 'thirty-five thousand four hundred ninety-six'); INSERT INTO t3 VALUES(18175, 59457, 'fifty-nine thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(18176, 47516, 'forty-seven thousand five hundred sixteen'); INSERT INTO t3 VALUES(18177, 43854, 'forty-three thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(18178, 92712, 'ninety-two thousand seven hundred twelve'); INSERT INTO t3 VALUES(18179, 79098, 'seventy-nine thousand ninety-eight'); INSERT INTO t3 VALUES(18180, 21502, 'twenty-one thousand five hundred two'); INSERT INTO t3 VALUES(18181, 59637, 'fifty-nine thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(18182, 64537, 'sixty-four thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(18183, 84158, 'eighty-four thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(18184, 50642, 'fifty thousand six hundred forty-two'); INSERT INTO t3 VALUES(18185, 52862, 'fifty-two thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(18186, 53577, 'fifty-three thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(18187, 1878, 'one thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(18188, 22071, 'twenty-two thousand seventy-one'); INSERT INTO t3 VALUES(18189, 27161, 'twenty-seven thousand one hundred sixty-one'); INSERT INTO t3 VALUES(18190, 64374, 'sixty-four thousand three hundred seventy-four'); INSERT INTO t3 VALUES(18191, 20246, 'twenty thousand two hundred forty-six'); INSERT INTO t3 VALUES(18192, 79039, 'seventy-nine thousand thirty-nine'); INSERT INTO t3 VALUES(18193, 84932, 'eighty-four thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(18194, 23998, 'twenty-three thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(18195, 11418, 'eleven thousand four hundred eighteen'); INSERT INTO t3 VALUES(18196, 60607, 'sixty thousand six hundred seven'); INSERT INTO t3 VALUES(18197, 59348, 'fifty-nine thousand three hundred forty-eight'); INSERT INTO t3 VALUES(18198, 30387, 'thirty thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(18199, 61315, 'sixty-one thousand three hundred fifteen'); INSERT INTO t3 VALUES(18200, 81309, 'eighty-one thousand three hundred nine'); INSERT INTO t3 VALUES(18201, 24516, 'twenty-four thousand five hundred sixteen'); INSERT INTO t3 VALUES(18202, 50635, 'fifty thousand six hundred thirty-five'); INSERT INTO t3 VALUES(18203, 51920, 'fifty-one thousand nine hundred twenty'); INSERT INTO t3 VALUES(18204, 93460, 'ninety-three thousand four hundred sixty'); INSERT INTO t3 VALUES(18205, 19742, 'nineteen thousand seven hundred forty-two'); INSERT INTO t3 VALUES(18206, 18636, 'eighteen thousand six hundred thirty-six'); INSERT INTO t3 VALUES(18207, 46930, 'forty-six thousand nine hundred thirty'); INSERT INTO t3 VALUES(18208, 9529, 'nine thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(18209, 51897, 'fifty-one thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(18210, 68078, 'sixty-eight thousand seventy-eight'); INSERT INTO t3 VALUES(18211, 2627, 'two thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(18212, 76397, 'seventy-six thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(18213, 3804, 'three thousand eight hundred four'); INSERT INTO t3 VALUES(18214, 69943, 'sixty-nine thousand nine hundred forty-three'); INSERT INTO t3 VALUES(18215, 78204, 'seventy-eight thousand two hundred four'); INSERT INTO t3 VALUES(18216, 21311, 'twenty-one thousand three hundred eleven'); INSERT INTO t3 VALUES(18217, 8966, 'eight thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(18218, 52972, 'fifty-two thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(18219, 43969, 'forty-three thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(18220, 11308, 'eleven thousand three hundred eight'); INSERT INTO t3 VALUES(18221, 7718, 'seven thousand seven hundred eighteen'); INSERT INTO t3 VALUES(18222, 77721, 'seventy-seven thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(18223, 28942, 'twenty-eight thousand nine hundred forty-two'); INSERT INTO t3 VALUES(18224, 49210, 'forty-nine thousand two hundred ten'); INSERT INTO t3 VALUES(18225, 16401, 'sixteen thousand four hundred one'); INSERT INTO t3 VALUES(18226, 86843, 'eighty-six thousand eight hundred forty-three'); INSERT INTO t3 VALUES(18227, 30902, 'thirty thousand nine hundred two'); INSERT INTO t3 VALUES(18228, 56063, 'fifty-six thousand sixty-three'); INSERT INTO t3 VALUES(18229, 6257, 'six thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(18230, 76737, 'seventy-six thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(18231, 34825, 'thirty-four thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(18232, 16194, 'sixteen thousand one hundred ninety-four'); INSERT INTO t3 VALUES(18233, 26122, 'twenty-six thousand one hundred twenty-two'); INSERT INTO t3 VALUES(18234, 70025, 'seventy thousand twenty-five'); INSERT INTO t3 VALUES(18235, 48124, 'forty-eight thousand one hundred twenty-four'); INSERT INTO t3 VALUES(18236, 78417, 'seventy-eight thousand four hundred seventeen'); INSERT INTO t3 VALUES(18237, 86395, 'eighty-six thousand three hundred ninety-five'); INSERT INTO t3 VALUES(18238, 87713, 'eighty-seven thousand seven hundred thirteen'); INSERT INTO t3 VALUES(18239, 51009, 'fifty-one thousand nine'); INSERT INTO t3 VALUES(18240, 73813, 'seventy-three thousand eight hundred thirteen'); INSERT INTO t3 VALUES(18241, 31835, 'thirty-one thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(18242, 19299, 'nineteen thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(18243, 47732, 'forty-seven thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(18244, 996, 'nine hundred ninety-six'); INSERT INTO t3 VALUES(18245, 8223, 'eight thousand two hundred twenty-three'); INSERT INTO t3 VALUES(18246, 10792, 'ten thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(18247, 5085, 'five thousand eighty-five'); INSERT INTO t3 VALUES(18248, 64617, 'sixty-four thousand six hundred seventeen'); INSERT INTO t3 VALUES(18249, 2321, 'two thousand three hundred twenty-one'); INSERT INTO t3 VALUES(18250, 38299, 'thirty-eight thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(18251, 80401, 'eighty thousand four hundred one'); INSERT INTO t3 VALUES(18252, 53315, 'fifty-three thousand three hundred fifteen'); INSERT INTO t3 VALUES(18253, 58755, 'fifty-eight thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(18254, 64247, 'sixty-four thousand two hundred forty-seven'); INSERT INTO t3 VALUES(18255, 86587, 'eighty-six thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(18256, 77288, 'seventy-seven thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(18257, 30358, 'thirty thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(18258, 74818, 'seventy-four thousand eight hundred eighteen'); INSERT INTO t3 VALUES(18259, 77945, 'seventy-seven thousand nine hundred forty-five'); INSERT INTO t3 VALUES(18260, 7023, 'seven thousand twenty-three'); INSERT INTO t3 VALUES(18261, 87292, 'eighty-seven thousand two hundred ninety-two'); INSERT INTO t3 VALUES(18262, 97220, 'ninety-seven thousand two hundred twenty'); INSERT INTO t3 VALUES(18263, 25983, 'twenty-five thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(18264, 56976, 'fifty-six thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(18265, 84091, 'eighty-four thousand ninety-one'); INSERT INTO t3 VALUES(18266, 88097, 'eighty-eight thousand ninety-seven'); INSERT INTO t3 VALUES(18267, 52424, 'fifty-two thousand four hundred twenty-four'); INSERT INTO t3 VALUES(18268, 19355, 'nineteen thousand three hundred fifty-five'); INSERT INTO t3 VALUES(18269, 31643, 'thirty-one thousand six hundred forty-three'); INSERT INTO t3 VALUES(18270, 54584, 'fifty-four thousand five hundred eighty-four'); INSERT INTO t3 VALUES(18271, 51599, 'fifty-one thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(18272, 60062, 'sixty thousand sixty-two'); INSERT INTO t3 VALUES(18273, 54742, 'fifty-four thousand seven hundred forty-two'); INSERT INTO t3 VALUES(18274, 57724, 'fifty-seven thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(18275, 45933, 'forty-five thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(18276, 29680, 'twenty-nine thousand six hundred eighty'); INSERT INTO t3 VALUES(18277, 97832, 'ninety-seven thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(18278, 64374, 'sixty-four thousand three hundred seventy-four'); INSERT INTO t3 VALUES(18279, 42366, 'forty-two thousand three hundred sixty-six'); INSERT INTO t3 VALUES(18280, 30522, 'thirty thousand five hundred twenty-two'); INSERT INTO t3 VALUES(18281, 19807, 'nineteen thousand eight hundred seven'); INSERT INTO t3 VALUES(18282, 59948, 'fifty-nine thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(18283, 6594, 'six thousand five hundred ninety-four'); INSERT INTO t3 VALUES(18284, 41687, 'forty-one thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(18285, 976, 'nine hundred seventy-six'); INSERT INTO t3 VALUES(18286, 24438, 'twenty-four thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(18287, 91114, 'ninety-one thousand one hundred fourteen'); INSERT INTO t3 VALUES(18288, 20747, 'twenty thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(18289, 71132, 'seventy-one thousand one hundred thirty-two'); INSERT INTO t3 VALUES(18290, 65628, 'sixty-five thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(18291, 68844, 'sixty-eight thousand eight hundred forty-four'); INSERT INTO t3 VALUES(18292, 78142, 'seventy-eight thousand one hundred forty-two'); INSERT INTO t3 VALUES(18293, 73195, 'seventy-three thousand one hundred ninety-five'); INSERT INTO t3 VALUES(18294, 44241, 'forty-four thousand two hundred forty-one'); INSERT INTO t3 VALUES(18295, 61208, 'sixty-one thousand two hundred eight'); INSERT INTO t3 VALUES(18296, 38710, 'thirty-eight thousand seven hundred ten'); INSERT INTO t3 VALUES(18297, 15264, 'fifteen thousand two hundred sixty-four'); INSERT INTO t3 VALUES(18298, 16725, 'sixteen thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(18299, 44131, 'forty-four thousand one hundred thirty-one'); INSERT INTO t3 VALUES(18300, 55692, 'fifty-five thousand six hundred ninety-two'); INSERT INTO t3 VALUES(18301, 65051, 'sixty-five thousand fifty-one'); INSERT INTO t3 VALUES(18302, 46725, 'forty-six thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(18303, 45137, 'forty-five thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(18304, 88708, 'eighty-eight thousand seven hundred eight'); INSERT INTO t3 VALUES(18305, 22612, 'twenty-two thousand six hundred twelve'); INSERT INTO t3 VALUES(18306, 51228, 'fifty-one thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(18307, 68304, 'sixty-eight thousand three hundred four'); INSERT INTO t3 VALUES(18308, 33177, 'thirty-three thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(18309, 57633, 'fifty-seven thousand six hundred thirty-three'); INSERT INTO t3 VALUES(18310, 25377, 'twenty-five thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(18311, 69279, 'sixty-nine thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(18312, 86015, 'eighty-six thousand fifteen'); INSERT INTO t3 VALUES(18313, 76678, 'seventy-six thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(18314, 24319, 'twenty-four thousand three hundred nineteen'); INSERT INTO t3 VALUES(18315, 35107, 'thirty-five thousand one hundred seven'); INSERT INTO t3 VALUES(18316, 38478, 'thirty-eight thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(18317, 53921, 'fifty-three thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(18318, 81705, 'eighty-one thousand seven hundred five'); INSERT INTO t3 VALUES(18319, 74888, 'seventy-four thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(18320, 49500, 'forty-nine thousand five hundred'); INSERT INTO t3 VALUES(18321, 19384, 'nineteen thousand three hundred eighty-four'); INSERT INTO t3 VALUES(18322, 18388, 'eighteen thousand three hundred eighty-eight'); INSERT INTO t3 VALUES(18323, 61515, 'sixty-one thousand five hundred fifteen'); INSERT INTO t3 VALUES(18324, 41419, 'forty-one thousand four hundred nineteen'); INSERT INTO t3 VALUES(18325, 82468, 'eighty-two thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(18326, 99380, 'ninety-nine thousand three hundred eighty'); INSERT INTO t3 VALUES(18327, 45167, 'forty-five thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(18328, 85160, 'eighty-five thousand one hundred sixty'); INSERT INTO t3 VALUES(18329, 72739, 'seventy-two thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(18330, 903, 'nine hundred three'); INSERT INTO t3 VALUES(18331, 3952, 'three thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(18332, 80286, 'eighty thousand two hundred eighty-six'); INSERT INTO t3 VALUES(18333, 37632, 'thirty-seven thousand six hundred thirty-two'); INSERT INTO t3 VALUES(18334, 67183, 'sixty-seven thousand one hundred eighty-three'); INSERT INTO t3 VALUES(18335, 74772, 'seventy-four thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(18336, 45775, 'forty-five thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(18337, 6140, 'six thousand one hundred forty'); INSERT INTO t3 VALUES(18338, 66729, 'sixty-six thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(18339, 63314, 'sixty-three thousand three hundred fourteen'); INSERT INTO t3 VALUES(18340, 55524, 'fifty-five thousand five hundred twenty-four'); INSERT INTO t3 VALUES(18341, 27110, 'twenty-seven thousand one hundred ten'); INSERT INTO t3 VALUES(18342, 64228, 'sixty-four thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(18343, 94382, 'ninety-four thousand three hundred eighty-two'); INSERT INTO t3 VALUES(18344, 83692, 'eighty-three thousand six hundred ninety-two'); INSERT INTO t3 VALUES(18345, 66141, 'sixty-six thousand one hundred forty-one'); INSERT INTO t3 VALUES(18346, 47972, 'forty-seven thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(18347, 50844, 'fifty thousand eight hundred forty-four'); INSERT INTO t3 VALUES(18348, 89925, 'eighty-nine thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(18349, 27064, 'twenty-seven thousand sixty-four'); INSERT INTO t3 VALUES(18350, 28613, 'twenty-eight thousand six hundred thirteen'); INSERT INTO t3 VALUES(18351, 26202, 'twenty-six thousand two hundred two'); INSERT INTO t3 VALUES(18352, 77549, 'seventy-seven thousand five hundred forty-nine'); INSERT INTO t3 VALUES(18353, 63689, 'sixty-three thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(18354, 50428, 'fifty thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(18355, 74060, 'seventy-four thousand sixty'); INSERT INTO t3 VALUES(18356, 74889, 'seventy-four thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(18357, 1489, 'one thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(18358, 93198, 'ninety-three thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(18359, 64793, 'sixty-four thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(18360, 87947, 'eighty-seven thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(18361, 87510, 'eighty-seven thousand five hundred ten'); INSERT INTO t3 VALUES(18362, 39211, 'thirty-nine thousand two hundred eleven'); INSERT INTO t3 VALUES(18363, 23641, 'twenty-three thousand six hundred forty-one'); INSERT INTO t3 VALUES(18364, 70192, 'seventy thousand one hundred ninety-two'); INSERT INTO t3 VALUES(18365, 90185, 'ninety thousand one hundred eighty-five'); INSERT INTO t3 VALUES(18366, 60627, 'sixty thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(18367, 90277, 'ninety thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(18368, 22697, 'twenty-two thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(18369, 25456, 'twenty-five thousand four hundred fifty-six'); INSERT INTO t3 VALUES(18370, 27193, 'twenty-seven thousand one hundred ninety-three'); INSERT INTO t3 VALUES(18371, 83459, 'eighty-three thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(18372, 58361, 'fifty-eight thousand three hundred sixty-one'); INSERT INTO t3 VALUES(18373, 94507, 'ninety-four thousand five hundred seven'); INSERT INTO t3 VALUES(18374, 42456, 'forty-two thousand four hundred fifty-six'); INSERT INTO t3 VALUES(18375, 45775, 'forty-five thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(18376, 78177, 'seventy-eight thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(18377, 99884, 'ninety-nine thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(18378, 89989, 'eighty-nine thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(18379, 3411, 'three thousand four hundred eleven'); INSERT INTO t3 VALUES(18380, 39445, 'thirty-nine thousand four hundred forty-five'); INSERT INTO t3 VALUES(18381, 80567, 'eighty thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(18382, 75406, 'seventy-five thousand four hundred six'); INSERT INTO t3 VALUES(18383, 69302, 'sixty-nine thousand three hundred two'); INSERT INTO t3 VALUES(18384, 17856, 'seventeen thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(18385, 69150, 'sixty-nine thousand one hundred fifty'); INSERT INTO t3 VALUES(18386, 91985, 'ninety-one thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(18387, 50213, 'fifty thousand two hundred thirteen'); INSERT INTO t3 VALUES(18388, 50372, 'fifty thousand three hundred seventy-two'); INSERT INTO t3 VALUES(18389, 79670, 'seventy-nine thousand six hundred seventy'); INSERT INTO t3 VALUES(18390, 36403, 'thirty-six thousand four hundred three'); INSERT INTO t3 VALUES(18391, 67890, 'sixty-seven thousand eight hundred ninety'); INSERT INTO t3 VALUES(18392, 85477, 'eighty-five thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(18393, 83491, 'eighty-three thousand four hundred ninety-one'); INSERT INTO t3 VALUES(18394, 62623, 'sixty-two thousand six hundred twenty-three'); INSERT INTO t3 VALUES(18395, 55489, 'fifty-five thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(18396, 96528, 'ninety-six thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(18397, 92954, 'ninety-two thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(18398, 1654, 'one thousand six hundred fifty-four'); INSERT INTO t3 VALUES(18399, 30687, 'thirty thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(18400, 43342, 'forty-three thousand three hundred forty-two'); INSERT INTO t3 VALUES(18401, 11341, 'eleven thousand three hundred forty-one'); INSERT INTO t3 VALUES(18402, 14932, 'fourteen thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(18403, 61091, 'sixty-one thousand ninety-one'); INSERT INTO t3 VALUES(18404, 51662, 'fifty-one thousand six hundred sixty-two'); INSERT INTO t3 VALUES(18405, 94771, 'ninety-four thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(18406, 1972, 'one thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(18407, 58946, 'fifty-eight thousand nine hundred forty-six'); INSERT INTO t3 VALUES(18408, 92849, 'ninety-two thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(18409, 71729, 'seventy-one thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(18410, 99638, 'ninety-nine thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(18411, 13245, 'thirteen thousand two hundred forty-five'); INSERT INTO t3 VALUES(18412, 8477, 'eight thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(18413, 17911, 'seventeen thousand nine hundred eleven'); INSERT INTO t3 VALUES(18414, 53383, 'fifty-three thousand three hundred eighty-three'); INSERT INTO t3 VALUES(18415, 89717, 'eighty-nine thousand seven hundred seventeen'); INSERT INTO t3 VALUES(18416, 59461, 'fifty-nine thousand four hundred sixty-one'); INSERT INTO t3 VALUES(18417, 97991, 'ninety-seven thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(18418, 97374, 'ninety-seven thousand three hundred seventy-four'); INSERT INTO t3 VALUES(18419, 24503, 'twenty-four thousand five hundred three'); INSERT INTO t3 VALUES(18420, 42542, 'forty-two thousand five hundred forty-two'); INSERT INTO t3 VALUES(18421, 75529, 'seventy-five thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(18422, 75777, 'seventy-five thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(18423, 66107, 'sixty-six thousand one hundred seven'); INSERT INTO t3 VALUES(18424, 35511, 'thirty-five thousand five hundred eleven'); INSERT INTO t3 VALUES(18425, 32886, 'thirty-two thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(18426, 46627, 'forty-six thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(18427, 39785, 'thirty-nine thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(18428, 95150, 'ninety-five thousand one hundred fifty'); INSERT INTO t3 VALUES(18429, 16706, 'sixteen thousand seven hundred six'); INSERT INTO t3 VALUES(18430, 25967, 'twenty-five thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(18431, 43901, 'forty-three thousand nine hundred one'); INSERT INTO t3 VALUES(18432, 388, 'three hundred eighty-eight'); INSERT INTO t3 VALUES(18433, 93434, 'ninety-three thousand four hundred thirty-four'); INSERT INTO t3 VALUES(18434, 63865, 'sixty-three thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(18435, 55652, 'fifty-five thousand six hundred fifty-two'); INSERT INTO t3 VALUES(18436, 92549, 'ninety-two thousand five hundred forty-nine'); INSERT INTO t3 VALUES(18437, 93456, 'ninety-three thousand four hundred fifty-six'); INSERT INTO t3 VALUES(18438, 46926, 'forty-six thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(18439, 72986, 'seventy-two thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(18440, 87309, 'eighty-seven thousand three hundred nine'); INSERT INTO t3 VALUES(18441, 14182, 'fourteen thousand one hundred eighty-two'); INSERT INTO t3 VALUES(18442, 75379, 'seventy-five thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(18443, 17174, 'seventeen thousand one hundred seventy-four'); INSERT INTO t3 VALUES(18444, 42335, 'forty-two thousand three hundred thirty-five'); INSERT INTO t3 VALUES(18445, 33390, 'thirty-three thousand three hundred ninety'); INSERT INTO t3 VALUES(18446, 3238, 'three thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(18447, 41810, 'forty-one thousand eight hundred ten'); INSERT INTO t3 VALUES(18448, 72465, 'seventy-two thousand four hundred sixty-five'); INSERT INTO t3 VALUES(18449, 35974, 'thirty-five thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(18450, 52491, 'fifty-two thousand four hundred ninety-one'); INSERT INTO t3 VALUES(18451, 76467, 'seventy-six thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(18452, 81814, 'eighty-one thousand eight hundred fourteen'); INSERT INTO t3 VALUES(18453, 93487, 'ninety-three thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(18454, 33693, 'thirty-three thousand six hundred ninety-three'); INSERT INTO t3 VALUES(18455, 50781, 'fifty thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(18456, 29834, 'twenty-nine thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(18457, 37711, 'thirty-seven thousand seven hundred eleven'); INSERT INTO t3 VALUES(18458, 33883, 'thirty-three thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(18459, 32302, 'thirty-two thousand three hundred two'); INSERT INTO t3 VALUES(18460, 67171, 'sixty-seven thousand one hundred seventy-one'); INSERT INTO t3 VALUES(18461, 17351, 'seventeen thousand three hundred fifty-one'); INSERT INTO t3 VALUES(18462, 36245, 'thirty-six thousand two hundred forty-five'); INSERT INTO t3 VALUES(18463, 55781, 'fifty-five thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(18464, 89311, 'eighty-nine thousand three hundred eleven'); INSERT INTO t3 VALUES(18465, 2192, 'two thousand one hundred ninety-two'); INSERT INTO t3 VALUES(18466, 76841, 'seventy-six thousand eight hundred forty-one'); INSERT INTO t3 VALUES(18467, 8533, 'eight thousand five hundred thirty-three'); INSERT INTO t3 VALUES(18468, 2852, 'two thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(18469, 55734, 'fifty-five thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(18470, 96069, 'ninety-six thousand sixty-nine'); INSERT INTO t3 VALUES(18471, 89693, 'eighty-nine thousand six hundred ninety-three'); INSERT INTO t3 VALUES(18472, 49818, 'forty-nine thousand eight hundred eighteen'); INSERT INTO t3 VALUES(18473, 84487, 'eighty-four thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(18474, 88751, 'eighty-eight thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(18475, 12503, 'twelve thousand five hundred three'); INSERT INTO t3 VALUES(18476, 91114, 'ninety-one thousand one hundred fourteen'); INSERT INTO t3 VALUES(18477, 57500, 'fifty-seven thousand five hundred'); INSERT INTO t3 VALUES(18478, 7997, 'seven thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(18479, 62648, 'sixty-two thousand six hundred forty-eight'); INSERT INTO t3 VALUES(18480, 45973, 'forty-five thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(18481, 10878, 'ten thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(18482, 75158, 'seventy-five thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(18483, 75392, 'seventy-five thousand three hundred ninety-two'); INSERT INTO t3 VALUES(18484, 95091, 'ninety-five thousand ninety-one'); INSERT INTO t3 VALUES(18485, 67895, 'sixty-seven thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(18486, 45044, 'forty-five thousand forty-four'); INSERT INTO t3 VALUES(18487, 98820, 'ninety-eight thousand eight hundred twenty'); INSERT INTO t3 VALUES(18488, 85904, 'eighty-five thousand nine hundred four'); INSERT INTO t3 VALUES(18489, 26344, 'twenty-six thousand three hundred forty-four'); INSERT INTO t3 VALUES(18490, 63503, 'sixty-three thousand five hundred three'); INSERT INTO t3 VALUES(18491, 59648, 'fifty-nine thousand six hundred forty-eight'); INSERT INTO t3 VALUES(18492, 90336, 'ninety thousand three hundred thirty-six'); INSERT INTO t3 VALUES(18493, 34940, 'thirty-four thousand nine hundred forty'); INSERT INTO t3 VALUES(18494, 57506, 'fifty-seven thousand five hundred six'); INSERT INTO t3 VALUES(18495, 46592, 'forty-six thousand five hundred ninety-two'); INSERT INTO t3 VALUES(18496, 42923, 'forty-two thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(18497, 9972, 'nine thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(18498, 26883, 'twenty-six thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(18499, 35845, 'thirty-five thousand eight hundred forty-five'); INSERT INTO t3 VALUES(18500, 27429, 'twenty-seven thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(18501, 66395, 'sixty-six thousand three hundred ninety-five'); INSERT INTO t3 VALUES(18502, 38444, 'thirty-eight thousand four hundred forty-four'); INSERT INTO t3 VALUES(18503, 20797, 'twenty thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(18504, 13173, 'thirteen thousand one hundred seventy-three'); INSERT INTO t3 VALUES(18505, 27531, 'twenty-seven thousand five hundred thirty-one'); INSERT INTO t3 VALUES(18506, 28425, 'twenty-eight thousand four hundred twenty-five'); INSERT INTO t3 VALUES(18507, 65182, 'sixty-five thousand one hundred eighty-two'); INSERT INTO t3 VALUES(18508, 53616, 'fifty-three thousand six hundred sixteen'); INSERT INTO t3 VALUES(18509, 88065, 'eighty-eight thousand sixty-five'); INSERT INTO t3 VALUES(18510, 93708, 'ninety-three thousand seven hundred eight'); INSERT INTO t3 VALUES(18511, 11671, 'eleven thousand six hundred seventy-one'); INSERT INTO t3 VALUES(18512, 65037, 'sixty-five thousand thirty-seven'); INSERT INTO t3 VALUES(18513, 32758, 'thirty-two thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(18514, 67010, 'sixty-seven thousand ten'); INSERT INTO t3 VALUES(18515, 26448, 'twenty-six thousand four hundred forty-eight'); INSERT INTO t3 VALUES(18516, 73537, 'seventy-three thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(18517, 64700, 'sixty-four thousand seven hundred'); INSERT INTO t3 VALUES(18518, 45543, 'forty-five thousand five hundred forty-three'); INSERT INTO t3 VALUES(18519, 59593, 'fifty-nine thousand five hundred ninety-three'); INSERT INTO t3 VALUES(18520, 95337, 'ninety-five thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(18521, 54809, 'fifty-four thousand eight hundred nine'); INSERT INTO t3 VALUES(18522, 29661, 'twenty-nine thousand six hundred sixty-one'); INSERT INTO t3 VALUES(18523, 14182, 'fourteen thousand one hundred eighty-two'); INSERT INTO t3 VALUES(18524, 35101, 'thirty-five thousand one hundred one'); INSERT INTO t3 VALUES(18525, 1288, 'one thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(18526, 60433, 'sixty thousand four hundred thirty-three'); INSERT INTO t3 VALUES(18527, 5988, 'five thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(18528, 80143, 'eighty thousand one hundred forty-three'); INSERT INTO t3 VALUES(18529, 89770, 'eighty-nine thousand seven hundred seventy'); INSERT INTO t3 VALUES(18530, 66060, 'sixty-six thousand sixty'); INSERT INTO t3 VALUES(18531, 35544, 'thirty-five thousand five hundred forty-four'); INSERT INTO t3 VALUES(18532, 16239, 'sixteen thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(18533, 87566, 'eighty-seven thousand five hundred sixty-six'); INSERT INTO t3 VALUES(18534, 87869, 'eighty-seven thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(18535, 36552, 'thirty-six thousand five hundred fifty-two'); INSERT INTO t3 VALUES(18536, 20681, 'twenty thousand six hundred eighty-one'); INSERT INTO t3 VALUES(18537, 32961, 'thirty-two thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(18538, 61273, 'sixty-one thousand two hundred seventy-three'); INSERT INTO t3 VALUES(18539, 28139, 'twenty-eight thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(18540, 62584, 'sixty-two thousand five hundred eighty-four'); INSERT INTO t3 VALUES(18541, 61020, 'sixty-one thousand twenty'); INSERT INTO t3 VALUES(18542, 88856, 'eighty-eight thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(18543, 25926, 'twenty-five thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(18544, 86626, 'eighty-six thousand six hundred twenty-six'); INSERT INTO t3 VALUES(18545, 32770, 'thirty-two thousand seven hundred seventy'); INSERT INTO t3 VALUES(18546, 67162, 'sixty-seven thousand one hundred sixty-two'); INSERT INTO t3 VALUES(18547, 77954, 'seventy-seven thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(18548, 95855, 'ninety-five thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(18549, 92285, 'ninety-two thousand two hundred eighty-five'); INSERT INTO t3 VALUES(18550, 24628, 'twenty-four thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(18551, 76317, 'seventy-six thousand three hundred seventeen'); INSERT INTO t3 VALUES(18552, 42831, 'forty-two thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(18553, 43663, 'forty-three thousand six hundred sixty-three'); INSERT INTO t3 VALUES(18554, 79880, 'seventy-nine thousand eight hundred eighty'); INSERT INTO t3 VALUES(18555, 42843, 'forty-two thousand eight hundred forty-three'); INSERT INTO t3 VALUES(18556, 29024, 'twenty-nine thousand twenty-four'); INSERT INTO t3 VALUES(18557, 49405, 'forty-nine thousand four hundred five'); INSERT INTO t3 VALUES(18558, 56569, 'fifty-six thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(18559, 51993, 'fifty-one thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(18560, 38950, 'thirty-eight thousand nine hundred fifty'); INSERT INTO t3 VALUES(18561, 38611, 'thirty-eight thousand six hundred eleven'); INSERT INTO t3 VALUES(18562, 51912, 'fifty-one thousand nine hundred twelve'); INSERT INTO t3 VALUES(18563, 95065, 'ninety-five thousand sixty-five'); INSERT INTO t3 VALUES(18564, 4978, 'four thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(18565, 53049, 'fifty-three thousand forty-nine'); INSERT INTO t3 VALUES(18566, 50983, 'fifty thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(18567, 61528, 'sixty-one thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(18568, 11574, 'eleven thousand five hundred seventy-four'); INSERT INTO t3 VALUES(18569, 89229, 'eighty-nine thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(18570, 81508, 'eighty-one thousand five hundred eight'); INSERT INTO t3 VALUES(18571, 2888, 'two thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(18572, 45677, 'forty-five thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(18573, 35397, 'thirty-five thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(18574, 27297, 'twenty-seven thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(18575, 49487, 'forty-nine thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(18576, 7079, 'seven thousand seventy-nine'); INSERT INTO t3 VALUES(18577, 1439, 'one thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(18578, 91577, 'ninety-one thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(18579, 52222, 'fifty-two thousand two hundred twenty-two'); INSERT INTO t3 VALUES(18580, 98450, 'ninety-eight thousand four hundred fifty'); INSERT INTO t3 VALUES(18581, 96404, 'ninety-six thousand four hundred four'); INSERT INTO t3 VALUES(18582, 16749, 'sixteen thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(18583, 77369, 'seventy-seven thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(18584, 94287, 'ninety-four thousand two hundred eighty-seven'); INSERT INTO t3 VALUES(18585, 50644, 'fifty thousand six hundred forty-four'); INSERT INTO t3 VALUES(18586, 16600, 'sixteen thousand six hundred'); INSERT INTO t3 VALUES(18587, 5604, 'five thousand six hundred four'); INSERT INTO t3 VALUES(18588, 95991, 'ninety-five thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(18589, 12146, 'twelve thousand one hundred forty-six'); INSERT INTO t3 VALUES(18590, 94594, 'ninety-four thousand five hundred ninety-four'); INSERT INTO t3 VALUES(18591, 68674, 'sixty-eight thousand six hundred seventy-four'); INSERT INTO t3 VALUES(18592, 7973, 'seven thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(18593, 548, 'five hundred forty-eight'); INSERT INTO t3 VALUES(18594, 15923, 'fifteen thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(18595, 9617, 'nine thousand six hundred seventeen'); INSERT INTO t3 VALUES(18596, 46310, 'forty-six thousand three hundred ten'); INSERT INTO t3 VALUES(18597, 38998, 'thirty-eight thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(18598, 57096, 'fifty-seven thousand ninety-six'); INSERT INTO t3 VALUES(18599, 41587, 'forty-one thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(18600, 42024, 'forty-two thousand twenty-four'); INSERT INTO t3 VALUES(18601, 83167, 'eighty-three thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(18602, 9964, 'nine thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(18603, 92292, 'ninety-two thousand two hundred ninety-two'); INSERT INTO t3 VALUES(18604, 46817, 'forty-six thousand eight hundred seventeen'); INSERT INTO t3 VALUES(18605, 25176, 'twenty-five thousand one hundred seventy-six'); INSERT INTO t3 VALUES(18606, 17832, 'seventeen thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(18607, 77585, 'seventy-seven thousand five hundred eighty-five'); INSERT INTO t3 VALUES(18608, 63098, 'sixty-three thousand ninety-eight'); INSERT INTO t3 VALUES(18609, 84170, 'eighty-four thousand one hundred seventy'); INSERT INTO t3 VALUES(18610, 14254, 'fourteen thousand two hundred fifty-four'); INSERT INTO t3 VALUES(18611, 4597, 'four thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(18612, 91313, 'ninety-one thousand three hundred thirteen'); INSERT INTO t3 VALUES(18613, 25550, 'twenty-five thousand five hundred fifty'); INSERT INTO t3 VALUES(18614, 33302, 'thirty-three thousand three hundred two'); INSERT INTO t3 VALUES(18615, 35703, 'thirty-five thousand seven hundred three'); INSERT INTO t3 VALUES(18616, 82237, 'eighty-two thousand two hundred thirty-seven'); INSERT INTO t3 VALUES(18617, 34118, 'thirty-four thousand one hundred eighteen'); INSERT INTO t3 VALUES(18618, 46597, 'forty-six thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(18619, 30992, 'thirty thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(18620, 62118, 'sixty-two thousand one hundred eighteen'); INSERT INTO t3 VALUES(18621, 79099, 'seventy-nine thousand ninety-nine'); INSERT INTO t3 VALUES(18622, 9459, 'nine thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(18623, 62395, 'sixty-two thousand three hundred ninety-five'); INSERT INTO t3 VALUES(18624, 72918, 'seventy-two thousand nine hundred eighteen'); INSERT INTO t3 VALUES(18625, 26053, 'twenty-six thousand fifty-three'); INSERT INTO t3 VALUES(18626, 37779, 'thirty-seven thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(18627, 15200, 'fifteen thousand two hundred'); INSERT INTO t3 VALUES(18628, 1543, 'one thousand five hundred forty-three'); INSERT INTO t3 VALUES(18629, 59638, 'fifty-nine thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(18630, 44749, 'forty-four thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(18631, 11191, 'eleven thousand one hundred ninety-one'); INSERT INTO t3 VALUES(18632, 95989, 'ninety-five thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(18633, 49339, 'forty-nine thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(18634, 41797, 'forty-one thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(18635, 23431, 'twenty-three thousand four hundred thirty-one'); INSERT INTO t3 VALUES(18636, 43870, 'forty-three thousand eight hundred seventy'); INSERT INTO t3 VALUES(18637, 84647, 'eighty-four thousand six hundred forty-seven'); INSERT INTO t3 VALUES(18638, 27268, 'twenty-seven thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(18639, 40935, 'forty thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(18640, 60727, 'sixty thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(18641, 96167, 'ninety-six thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(18642, 51546, 'fifty-one thousand five hundred forty-six'); INSERT INTO t3 VALUES(18643, 25410, 'twenty-five thousand four hundred ten'); INSERT INTO t3 VALUES(18644, 13248, 'thirteen thousand two hundred forty-eight'); INSERT INTO t3 VALUES(18645, 97665, 'ninety-seven thousand six hundred sixty-five'); INSERT INTO t3 VALUES(18646, 4181, 'four thousand one hundred eighty-one'); INSERT INTO t3 VALUES(18647, 39132, 'thirty-nine thousand one hundred thirty-two'); INSERT INTO t3 VALUES(18648, 30539, 'thirty thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(18649, 55099, 'fifty-five thousand ninety-nine'); INSERT INTO t3 VALUES(18650, 48603, 'forty-eight thousand six hundred three'); INSERT INTO t3 VALUES(18651, 42679, 'forty-two thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(18652, 28675, 'twenty-eight thousand six hundred seventy-five'); INSERT INTO t3 VALUES(18653, 60301, 'sixty thousand three hundred one'); INSERT INTO t3 VALUES(18654, 85341, 'eighty-five thousand three hundred forty-one'); INSERT INTO t3 VALUES(18655, 35306, 'thirty-five thousand three hundred six'); INSERT INTO t3 VALUES(18656, 49343, 'forty-nine thousand three hundred forty-three'); INSERT INTO t3 VALUES(18657, 52614, 'fifty-two thousand six hundred fourteen'); INSERT INTO t3 VALUES(18658, 31677, 'thirty-one thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(18659, 11346, 'eleven thousand three hundred forty-six'); INSERT INTO t3 VALUES(18660, 53411, 'fifty-three thousand four hundred eleven'); INSERT INTO t3 VALUES(18661, 99199, 'ninety-nine thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(18662, 32163, 'thirty-two thousand one hundred sixty-three'); INSERT INTO t3 VALUES(18663, 68289, 'sixty-eight thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(18664, 90230, 'ninety thousand two hundred thirty'); INSERT INTO t3 VALUES(18665, 75919, 'seventy-five thousand nine hundred nineteen'); INSERT INTO t3 VALUES(18666, 34044, 'thirty-four thousand forty-four'); INSERT INTO t3 VALUES(18667, 49904, 'forty-nine thousand nine hundred four'); INSERT INTO t3 VALUES(18668, 85650, 'eighty-five thousand six hundred fifty'); INSERT INTO t3 VALUES(18669, 18062, 'eighteen thousand sixty-two'); INSERT INTO t3 VALUES(18670, 22579, 'twenty-two thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(18671, 11010, 'eleven thousand ten'); INSERT INTO t3 VALUES(18672, 11271, 'eleven thousand two hundred seventy-one'); INSERT INTO t3 VALUES(18673, 7284, 'seven thousand two hundred eighty-four'); INSERT INTO t3 VALUES(18674, 18480, 'eighteen thousand four hundred eighty'); INSERT INTO t3 VALUES(18675, 9578, 'nine thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(18676, 43174, 'forty-three thousand one hundred seventy-four'); INSERT INTO t3 VALUES(18677, 75965, 'seventy-five thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(18678, 98446, 'ninety-eight thousand four hundred forty-six'); INSERT INTO t3 VALUES(18679, 11444, 'eleven thousand four hundred forty-four'); INSERT INTO t3 VALUES(18680, 98202, 'ninety-eight thousand two hundred two'); INSERT INTO t3 VALUES(18681, 8258, 'eight thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(18682, 32675, 'thirty-two thousand six hundred seventy-five'); INSERT INTO t3 VALUES(18683, 78554, 'seventy-eight thousand five hundred fifty-four'); INSERT INTO t3 VALUES(18684, 16884, 'sixteen thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(18685, 15310, 'fifteen thousand three hundred ten'); INSERT INTO t3 VALUES(18686, 35758, 'thirty-five thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(18687, 36913, 'thirty-six thousand nine hundred thirteen'); INSERT INTO t3 VALUES(18688, 92009, 'ninety-two thousand nine'); INSERT INTO t3 VALUES(18689, 68205, 'sixty-eight thousand two hundred five'); INSERT INTO t3 VALUES(18690, 84239, 'eighty-four thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(18691, 88664, 'eighty-eight thousand six hundred sixty-four'); INSERT INTO t3 VALUES(18692, 97755, 'ninety-seven thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(18693, 7560, 'seven thousand five hundred sixty'); INSERT INTO t3 VALUES(18694, 55386, 'fifty-five thousand three hundred eighty-six'); INSERT INTO t3 VALUES(18695, 44610, 'forty-four thousand six hundred ten'); INSERT INTO t3 VALUES(18696, 27478, 'twenty-seven thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(18697, 47371, 'forty-seven thousand three hundred seventy-one'); INSERT INTO t3 VALUES(18698, 11486, 'eleven thousand four hundred eighty-six'); INSERT INTO t3 VALUES(18699, 51099, 'fifty-one thousand ninety-nine'); INSERT INTO t3 VALUES(18700, 78602, 'seventy-eight thousand six hundred two'); INSERT INTO t3 VALUES(18701, 63112, 'sixty-three thousand one hundred twelve'); INSERT INTO t3 VALUES(18702, 27265, 'twenty-seven thousand two hundred sixty-five'); INSERT INTO t3 VALUES(18703, 70689, 'seventy thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(18704, 90717, 'ninety thousand seven hundred seventeen'); INSERT INTO t3 VALUES(18705, 25091, 'twenty-five thousand ninety-one'); INSERT INTO t3 VALUES(18706, 18528, 'eighteen thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(18707, 33035, 'thirty-three thousand thirty-five'); INSERT INTO t3 VALUES(18708, 69001, 'sixty-nine thousand one'); INSERT INTO t3 VALUES(18709, 78426, 'seventy-eight thousand four hundred twenty-six'); INSERT INTO t3 VALUES(18710, 13304, 'thirteen thousand three hundred four'); INSERT INTO t3 VALUES(18711, 89892, 'eighty-nine thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(18712, 84291, 'eighty-four thousand two hundred ninety-one'); INSERT INTO t3 VALUES(18713, 87791, 'eighty-seven thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(18714, 90040, 'ninety thousand forty'); INSERT INTO t3 VALUES(18715, 5994, 'five thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(18716, 50395, 'fifty thousand three hundred ninety-five'); INSERT INTO t3 VALUES(18717, 6911, 'six thousand nine hundred eleven'); INSERT INTO t3 VALUES(18718, 95743, 'ninety-five thousand seven hundred forty-three'); INSERT INTO t3 VALUES(18719, 64628, 'sixty-four thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(18720, 22269, 'twenty-two thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(18721, 16314, 'sixteen thousand three hundred fourteen'); INSERT INTO t3 VALUES(18722, 14946, 'fourteen thousand nine hundred forty-six'); INSERT INTO t3 VALUES(18723, 52244, 'fifty-two thousand two hundred forty-four'); INSERT INTO t3 VALUES(18724, 58671, 'fifty-eight thousand six hundred seventy-one'); INSERT INTO t3 VALUES(18725, 61846, 'sixty-one thousand eight hundred forty-six'); INSERT INTO t3 VALUES(18726, 74758, 'seventy-four thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(18727, 81530, 'eighty-one thousand five hundred thirty'); INSERT INTO t3 VALUES(18728, 42428, 'forty-two thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(18729, 24627, 'twenty-four thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(18730, 106, 'one hundred six'); INSERT INTO t3 VALUES(18731, 42431, 'forty-two thousand four hundred thirty-one'); INSERT INTO t3 VALUES(18732, 2282, 'two thousand two hundred eighty-two'); INSERT INTO t3 VALUES(18733, 79844, 'seventy-nine thousand eight hundred forty-four'); INSERT INTO t3 VALUES(18734, 48786, 'forty-eight thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(18735, 85320, 'eighty-five thousand three hundred twenty'); INSERT INTO t3 VALUES(18736, 11154, 'eleven thousand one hundred fifty-four'); INSERT INTO t3 VALUES(18737, 97251, 'ninety-seven thousand two hundred fifty-one'); INSERT INTO t3 VALUES(18738, 92147, 'ninety-two thousand one hundred forty-seven'); INSERT INTO t3 VALUES(18739, 87396, 'eighty-seven thousand three hundred ninety-six'); INSERT INTO t3 VALUES(18740, 66999, 'sixty-six thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(18741, 13294, 'thirteen thousand two hundred ninety-four'); INSERT INTO t3 VALUES(18742, 61125, 'sixty-one thousand one hundred twenty-five'); INSERT INTO t3 VALUES(18743, 60732, 'sixty thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(18744, 48337, 'forty-eight thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(18745, 6341, 'six thousand three hundred forty-one'); INSERT INTO t3 VALUES(18746, 74634, 'seventy-four thousand six hundred thirty-four'); INSERT INTO t3 VALUES(18747, 86994, 'eighty-six thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(18748, 42118, 'forty-two thousand one hundred eighteen'); INSERT INTO t3 VALUES(18749, 31398, 'thirty-one thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(18750, 44913, 'forty-four thousand nine hundred thirteen'); INSERT INTO t3 VALUES(18751, 34848, 'thirty-four thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(18752, 39400, 'thirty-nine thousand four hundred'); INSERT INTO t3 VALUES(18753, 56601, 'fifty-six thousand six hundred one'); INSERT INTO t3 VALUES(18754, 16294, 'sixteen thousand two hundred ninety-four'); INSERT INTO t3 VALUES(18755, 63656, 'sixty-three thousand six hundred fifty-six'); INSERT INTO t3 VALUES(18756, 98194, 'ninety-eight thousand one hundred ninety-four'); INSERT INTO t3 VALUES(18757, 92858, 'ninety-two thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(18758, 65206, 'sixty-five thousand two hundred six'); INSERT INTO t3 VALUES(18759, 85648, 'eighty-five thousand six hundred forty-eight'); INSERT INTO t3 VALUES(18760, 96686, 'ninety-six thousand six hundred eighty-six'); INSERT INTO t3 VALUES(18761, 74897, 'seventy-four thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(18762, 59926, 'fifty-nine thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(18763, 64164, 'sixty-four thousand one hundred sixty-four'); INSERT INTO t3 VALUES(18764, 33597, 'thirty-three thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(18765, 81268, 'eighty-one thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(18766, 28863, 'twenty-eight thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(18767, 43485, 'forty-three thousand four hundred eighty-five'); INSERT INTO t3 VALUES(18768, 84159, 'eighty-four thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(18769, 45494, 'forty-five thousand four hundred ninety-four'); INSERT INTO t3 VALUES(18770, 77193, 'seventy-seven thousand one hundred ninety-three'); INSERT INTO t3 VALUES(18771, 90676, 'ninety thousand six hundred seventy-six'); INSERT INTO t3 VALUES(18772, 36719, 'thirty-six thousand seven hundred nineteen'); INSERT INTO t3 VALUES(18773, 4193, 'four thousand one hundred ninety-three'); INSERT INTO t3 VALUES(18774, 56371, 'fifty-six thousand three hundred seventy-one'); INSERT INTO t3 VALUES(18775, 75903, 'seventy-five thousand nine hundred three'); INSERT INTO t3 VALUES(18776, 42276, 'forty-two thousand two hundred seventy-six'); INSERT INTO t3 VALUES(18777, 67061, 'sixty-seven thousand sixty-one'); INSERT INTO t3 VALUES(18778, 19155, 'nineteen thousand one hundred fifty-five'); INSERT INTO t3 VALUES(18779, 87725, 'eighty-seven thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(18780, 76126, 'seventy-six thousand one hundred twenty-six'); INSERT INTO t3 VALUES(18781, 17401, 'seventeen thousand four hundred one'); INSERT INTO t3 VALUES(18782, 6778, 'six thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(18783, 11369, 'eleven thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(18784, 46896, 'forty-six thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(18785, 52100, 'fifty-two thousand one hundred'); INSERT INTO t3 VALUES(18786, 78444, 'seventy-eight thousand four hundred forty-four'); INSERT INTO t3 VALUES(18787, 95937, 'ninety-five thousand nine hundred thirty-seven'); INSERT INTO t3 VALUES(18788, 59928, 'fifty-nine thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(18789, 66090, 'sixty-six thousand ninety'); INSERT INTO t3 VALUES(18790, 32284, 'thirty-two thousand two hundred eighty-four'); INSERT INTO t3 VALUES(18791, 62217, 'sixty-two thousand two hundred seventeen'); INSERT INTO t3 VALUES(18792, 60527, 'sixty thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(18793, 59742, 'fifty-nine thousand seven hundred forty-two'); INSERT INTO t3 VALUES(18794, 26273, 'twenty-six thousand two hundred seventy-three'); INSERT INTO t3 VALUES(18795, 70231, 'seventy thousand two hundred thirty-one'); INSERT INTO t3 VALUES(18796, 96756, 'ninety-six thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(18797, 79571, 'seventy-nine thousand five hundred seventy-one'); INSERT INTO t3 VALUES(18798, 53384, 'fifty-three thousand three hundred eighty-four'); INSERT INTO t3 VALUES(18799, 65062, 'sixty-five thousand sixty-two'); INSERT INTO t3 VALUES(18800, 72008, 'seventy-two thousand eight'); INSERT INTO t3 VALUES(18801, 94847, 'ninety-four thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(18802, 3457, 'three thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(18803, 47953, 'forty-seven thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(18804, 44271, 'forty-four thousand two hundred seventy-one'); INSERT INTO t3 VALUES(18805, 83249, 'eighty-three thousand two hundred forty-nine'); INSERT INTO t3 VALUES(18806, 70124, 'seventy thousand one hundred twenty-four'); INSERT INTO t3 VALUES(18807, 76273, 'seventy-six thousand two hundred seventy-three'); INSERT INTO t3 VALUES(18808, 72531, 'seventy-two thousand five hundred thirty-one'); INSERT INTO t3 VALUES(18809, 76750, 'seventy-six thousand seven hundred fifty'); INSERT INTO t3 VALUES(18810, 19297, 'nineteen thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(18811, 98994, 'ninety-eight thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(18812, 59393, 'fifty-nine thousand three hundred ninety-three'); INSERT INTO t3 VALUES(18813, 36450, 'thirty-six thousand four hundred fifty'); INSERT INTO t3 VALUES(18814, 29968, 'twenty-nine thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(18815, 97467, 'ninety-seven thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(18816, 72920, 'seventy-two thousand nine hundred twenty'); INSERT INTO t3 VALUES(18817, 19864, 'nineteen thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(18818, 65690, 'sixty-five thousand six hundred ninety'); INSERT INTO t3 VALUES(18819, 44368, 'forty-four thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(18820, 59460, 'fifty-nine thousand four hundred sixty'); INSERT INTO t3 VALUES(18821, 1117, 'one thousand one hundred seventeen'); INSERT INTO t3 VALUES(18822, 42064, 'forty-two thousand sixty-four'); INSERT INTO t3 VALUES(18823, 51994, 'fifty-one thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(18824, 21207, 'twenty-one thousand two hundred seven'); INSERT INTO t3 VALUES(18825, 70781, 'seventy thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(18826, 71788, 'seventy-one thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(18827, 8187, 'eight thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(18828, 52185, 'fifty-two thousand one hundred eighty-five'); INSERT INTO t3 VALUES(18829, 43560, 'forty-three thousand five hundred sixty'); INSERT INTO t3 VALUES(18830, 4447, 'four thousand four hundred forty-seven'); INSERT INTO t3 VALUES(18831, 57691, 'fifty-seven thousand six hundred ninety-one'); INSERT INTO t3 VALUES(18832, 73173, 'seventy-three thousand one hundred seventy-three'); INSERT INTO t3 VALUES(18833, 97262, 'ninety-seven thousand two hundred sixty-two'); INSERT INTO t3 VALUES(18834, 53716, 'fifty-three thousand seven hundred sixteen'); INSERT INTO t3 VALUES(18835, 27801, 'twenty-seven thousand eight hundred one'); INSERT INTO t3 VALUES(18836, 24232, 'twenty-four thousand two hundred thirty-two'); INSERT INTO t3 VALUES(18837, 65524, 'sixty-five thousand five hundred twenty-four'); INSERT INTO t3 VALUES(18838, 4322, 'four thousand three hundred twenty-two'); INSERT INTO t3 VALUES(18839, 34317, 'thirty-four thousand three hundred seventeen'); INSERT INTO t3 VALUES(18840, 91648, 'ninety-one thousand six hundred forty-eight'); INSERT INTO t3 VALUES(18841, 75457, 'seventy-five thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(18842, 65874, 'sixty-five thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(18843, 24299, 'twenty-four thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(18844, 18617, 'eighteen thousand six hundred seventeen'); INSERT INTO t3 VALUES(18845, 47054, 'forty-seven thousand fifty-four'); INSERT INTO t3 VALUES(18846, 76445, 'seventy-six thousand four hundred forty-five'); INSERT INTO t3 VALUES(18847, 44521, 'forty-four thousand five hundred twenty-one'); INSERT INTO t3 VALUES(18848, 11903, 'eleven thousand nine hundred three'); INSERT INTO t3 VALUES(18849, 58548, 'fifty-eight thousand five hundred forty-eight'); INSERT INTO t3 VALUES(18850, 63366, 'sixty-three thousand three hundred sixty-six'); INSERT INTO t3 VALUES(18851, 50522, 'fifty thousand five hundred twenty-two'); INSERT INTO t3 VALUES(18852, 60409, 'sixty thousand four hundred nine'); INSERT INTO t3 VALUES(18853, 94726, 'ninety-four thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(18854, 8362, 'eight thousand three hundred sixty-two'); INSERT INTO t3 VALUES(18855, 58704, 'fifty-eight thousand seven hundred four'); INSERT INTO t3 VALUES(18856, 34083, 'thirty-four thousand eighty-three'); INSERT INTO t3 VALUES(18857, 32163, 'thirty-two thousand one hundred sixty-three'); INSERT INTO t3 VALUES(18858, 76585, 'seventy-six thousand five hundred eighty-five'); INSERT INTO t3 VALUES(18859, 58877, 'fifty-eight thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(18860, 885, 'eight hundred eighty-five'); INSERT INTO t3 VALUES(18861, 77870, 'seventy-seven thousand eight hundred seventy'); INSERT INTO t3 VALUES(18862, 7294, 'seven thousand two hundred ninety-four'); INSERT INTO t3 VALUES(18863, 88072, 'eighty-eight thousand seventy-two'); INSERT INTO t3 VALUES(18864, 54439, 'fifty-four thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(18865, 85053, 'eighty-five thousand fifty-three'); INSERT INTO t3 VALUES(18866, 29349, 'twenty-nine thousand three hundred forty-nine'); INSERT INTO t3 VALUES(18867, 88188, 'eighty-eight thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(18868, 46796, 'forty-six thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(18869, 68455, 'sixty-eight thousand four hundred fifty-five'); INSERT INTO t3 VALUES(18870, 44864, 'forty-four thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(18871, 89739, 'eighty-nine thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(18872, 74125, 'seventy-four thousand one hundred twenty-five'); INSERT INTO t3 VALUES(18873, 1383, 'one thousand three hundred eighty-three'); INSERT INTO t3 VALUES(18874, 26463, 'twenty-six thousand four hundred sixty-three'); INSERT INTO t3 VALUES(18875, 50189, 'fifty thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(18876, 89975, 'eighty-nine thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(18877, 16997, 'sixteen thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(18878, 98227, 'ninety-eight thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(18879, 7065, 'seven thousand sixty-five'); INSERT INTO t3 VALUES(18880, 91772, 'ninety-one thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(18881, 72483, 'seventy-two thousand four hundred eighty-three'); INSERT INTO t3 VALUES(18882, 37213, 'thirty-seven thousand two hundred thirteen'); INSERT INTO t3 VALUES(18883, 55182, 'fifty-five thousand one hundred eighty-two'); INSERT INTO t3 VALUES(18884, 65889, 'sixty-five thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(18885, 46315, 'forty-six thousand three hundred fifteen'); INSERT INTO t3 VALUES(18886, 47201, 'forty-seven thousand two hundred one'); INSERT INTO t3 VALUES(18887, 92058, 'ninety-two thousand fifty-eight'); INSERT INTO t3 VALUES(18888, 55764, 'fifty-five thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(18889, 61412, 'sixty-one thousand four hundred twelve'); INSERT INTO t3 VALUES(18890, 70546, 'seventy thousand five hundred forty-six'); INSERT INTO t3 VALUES(18891, 46174, 'forty-six thousand one hundred seventy-four'); INSERT INTO t3 VALUES(18892, 32242, 'thirty-two thousand two hundred forty-two'); INSERT INTO t3 VALUES(18893, 62182, 'sixty-two thousand one hundred eighty-two'); INSERT INTO t3 VALUES(18894, 62651, 'sixty-two thousand six hundred fifty-one'); INSERT INTO t3 VALUES(18895, 5214, 'five thousand two hundred fourteen'); INSERT INTO t3 VALUES(18896, 18847, 'eighteen thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(18897, 69003, 'sixty-nine thousand three'); INSERT INTO t3 VALUES(18898, 57563, 'fifty-seven thousand five hundred sixty-three'); INSERT INTO t3 VALUES(18899, 78251, 'seventy-eight thousand two hundred fifty-one'); INSERT INTO t3 VALUES(18900, 34366, 'thirty-four thousand three hundred sixty-six'); INSERT INTO t3 VALUES(18901, 84677, 'eighty-four thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(18902, 34614, 'thirty-four thousand six hundred fourteen'); INSERT INTO t3 VALUES(18903, 75476, 'seventy-five thousand four hundred seventy-six'); INSERT INTO t3 VALUES(18904, 76851, 'seventy-six thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(18905, 84055, 'eighty-four thousand fifty-five'); INSERT INTO t3 VALUES(18906, 32503, 'thirty-two thousand five hundred three'); INSERT INTO t3 VALUES(18907, 9465, 'nine thousand four hundred sixty-five'); INSERT INTO t3 VALUES(18908, 18852, 'eighteen thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(18909, 87675, 'eighty-seven thousand six hundred seventy-five'); INSERT INTO t3 VALUES(18910, 55541, 'fifty-five thousand five hundred forty-one'); INSERT INTO t3 VALUES(18911, 1378, 'one thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(18912, 97259, 'ninety-seven thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(18913, 82405, 'eighty-two thousand four hundred five'); INSERT INTO t3 VALUES(18914, 60871, 'sixty thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(18915, 80236, 'eighty thousand two hundred thirty-six'); INSERT INTO t3 VALUES(18916, 41450, 'forty-one thousand four hundred fifty'); INSERT INTO t3 VALUES(18917, 71297, 'seventy-one thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(18918, 92569, 'ninety-two thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(18919, 20765, 'twenty thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(18920, 19735, 'nineteen thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(18921, 84972, 'eighty-four thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(18922, 62076, 'sixty-two thousand seventy-six'); INSERT INTO t3 VALUES(18923, 94141, 'ninety-four thousand one hundred forty-one'); INSERT INTO t3 VALUES(18924, 59902, 'fifty-nine thousand nine hundred two'); INSERT INTO t3 VALUES(18925, 97838, 'ninety-seven thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(18926, 85728, 'eighty-five thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(18927, 63132, 'sixty-three thousand one hundred thirty-two'); INSERT INTO t3 VALUES(18928, 68867, 'sixty-eight thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(18929, 40247, 'forty thousand two hundred forty-seven'); INSERT INTO t3 VALUES(18930, 77917, 'seventy-seven thousand nine hundred seventeen'); INSERT INTO t3 VALUES(18931, 81676, 'eighty-one thousand six hundred seventy-six'); INSERT INTO t3 VALUES(18932, 56925, 'fifty-six thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(18933, 3544, 'three thousand five hundred forty-four'); INSERT INTO t3 VALUES(18934, 67215, 'sixty-seven thousand two hundred fifteen'); INSERT INTO t3 VALUES(18935, 45788, 'forty-five thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(18936, 39372, 'thirty-nine thousand three hundred seventy-two'); INSERT INTO t3 VALUES(18937, 87080, 'eighty-seven thousand eighty'); INSERT INTO t3 VALUES(18938, 74440, 'seventy-four thousand four hundred forty'); INSERT INTO t3 VALUES(18939, 70762, 'seventy thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(18940, 13355, 'thirteen thousand three hundred fifty-five'); INSERT INTO t3 VALUES(18941, 73977, 'seventy-three thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(18942, 55475, 'fifty-five thousand four hundred seventy-five'); INSERT INTO t3 VALUES(18943, 66975, 'sixty-six thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(18944, 73274, 'seventy-three thousand two hundred seventy-four'); INSERT INTO t3 VALUES(18945, 60413, 'sixty thousand four hundred thirteen'); INSERT INTO t3 VALUES(18946, 80572, 'eighty thousand five hundred seventy-two'); INSERT INTO t3 VALUES(18947, 42795, 'forty-two thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(18948, 18583, 'eighteen thousand five hundred eighty-three'); INSERT INTO t3 VALUES(18949, 95420, 'ninety-five thousand four hundred twenty'); INSERT INTO t3 VALUES(18950, 25248, 'twenty-five thousand two hundred forty-eight'); INSERT INTO t3 VALUES(18951, 85879, 'eighty-five thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(18952, 51771, 'fifty-one thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(18953, 44598, 'forty-four thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(18954, 30002, 'thirty thousand two'); INSERT INTO t3 VALUES(18955, 84066, 'eighty-four thousand sixty-six'); INSERT INTO t3 VALUES(18956, 8118, 'eight thousand one hundred eighteen'); INSERT INTO t3 VALUES(18957, 74216, 'seventy-four thousand two hundred sixteen'); INSERT INTO t3 VALUES(18958, 74502, 'seventy-four thousand five hundred two'); INSERT INTO t3 VALUES(18959, 45132, 'forty-five thousand one hundred thirty-two'); INSERT INTO t3 VALUES(18960, 66694, 'sixty-six thousand six hundred ninety-four'); INSERT INTO t3 VALUES(18961, 6417, 'six thousand four hundred seventeen'); INSERT INTO t3 VALUES(18962, 73161, 'seventy-three thousand one hundred sixty-one'); INSERT INTO t3 VALUES(18963, 72779, 'seventy-two thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(18964, 53925, 'fifty-three thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(18965, 12992, 'twelve thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(18966, 56070, 'fifty-six thousand seventy'); INSERT INTO t3 VALUES(18967, 58621, 'fifty-eight thousand six hundred twenty-one'); INSERT INTO t3 VALUES(18968, 30892, 'thirty thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(18969, 93924, 'ninety-three thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(18970, 11515, 'eleven thousand five hundred fifteen'); INSERT INTO t3 VALUES(18971, 33578, 'thirty-three thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(18972, 50926, 'fifty thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(18973, 59551, 'fifty-nine thousand five hundred fifty-one'); INSERT INTO t3 VALUES(18974, 32804, 'thirty-two thousand eight hundred four'); INSERT INTO t3 VALUES(18975, 74070, 'seventy-four thousand seventy'); INSERT INTO t3 VALUES(18976, 15476, 'fifteen thousand four hundred seventy-six'); INSERT INTO t3 VALUES(18977, 82143, 'eighty-two thousand one hundred forty-three'); INSERT INTO t3 VALUES(18978, 60288, 'sixty thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(18979, 34265, 'thirty-four thousand two hundred sixty-five'); INSERT INTO t3 VALUES(18980, 98020, 'ninety-eight thousand twenty'); INSERT INTO t3 VALUES(18981, 36902, 'thirty-six thousand nine hundred two'); INSERT INTO t3 VALUES(18982, 94328, 'ninety-four thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(18983, 96352, 'ninety-six thousand three hundred fifty-two'); INSERT INTO t3 VALUES(18984, 36689, 'thirty-six thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(18985, 27598, 'twenty-seven thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(18986, 38840, 'thirty-eight thousand eight hundred forty'); INSERT INTO t3 VALUES(18987, 44259, 'forty-four thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(18988, 18362, 'eighteen thousand three hundred sixty-two'); INSERT INTO t3 VALUES(18989, 37280, 'thirty-seven thousand two hundred eighty'); INSERT INTO t3 VALUES(18990, 83787, 'eighty-three thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(18991, 75121, 'seventy-five thousand one hundred twenty-one'); INSERT INTO t3 VALUES(18992, 10175, 'ten thousand one hundred seventy-five'); INSERT INTO t3 VALUES(18993, 33943, 'thirty-three thousand nine hundred forty-three'); INSERT INTO t3 VALUES(18994, 6876, 'six thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(18995, 97034, 'ninety-seven thousand thirty-four'); INSERT INTO t3 VALUES(18996, 49544, 'forty-nine thousand five hundred forty-four'); INSERT INTO t3 VALUES(18997, 30537, 'thirty thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(18998, 48124, 'forty-eight thousand one hundred twenty-four'); INSERT INTO t3 VALUES(18999, 35328, 'thirty-five thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(19000, 30960, 'thirty thousand nine hundred sixty'); INSERT INTO t3 VALUES(19001, 26399, 'twenty-six thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(19002, 38409, 'thirty-eight thousand four hundred nine'); INSERT INTO t3 VALUES(19003, 24082, 'twenty-four thousand eighty-two'); INSERT INTO t3 VALUES(19004, 62351, 'sixty-two thousand three hundred fifty-one'); INSERT INTO t3 VALUES(19005, 70781, 'seventy thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(19006, 85776, 'eighty-five thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(19007, 3070, 'three thousand seventy'); INSERT INTO t3 VALUES(19008, 44907, 'forty-four thousand nine hundred seven'); INSERT INTO t3 VALUES(19009, 20046, 'twenty thousand forty-six'); INSERT INTO t3 VALUES(19010, 24002, 'twenty-four thousand two'); INSERT INTO t3 VALUES(19011, 84822, 'eighty-four thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(19012, 92772, 'ninety-two thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(19013, 27401, 'twenty-seven thousand four hundred one'); INSERT INTO t3 VALUES(19014, 81771, 'eighty-one thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(19015, 27904, 'twenty-seven thousand nine hundred four'); INSERT INTO t3 VALUES(19016, 82691, 'eighty-two thousand six hundred ninety-one'); INSERT INTO t3 VALUES(19017, 96336, 'ninety-six thousand three hundred thirty-six'); INSERT INTO t3 VALUES(19018, 45300, 'forty-five thousand three hundred'); INSERT INTO t3 VALUES(19019, 85509, 'eighty-five thousand five hundred nine'); INSERT INTO t3 VALUES(19020, 69922, 'sixty-nine thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(19021, 57586, 'fifty-seven thousand five hundred eighty-six'); INSERT INTO t3 VALUES(19022, 70111, 'seventy thousand one hundred eleven'); INSERT INTO t3 VALUES(19023, 22784, 'twenty-two thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(19024, 92222, 'ninety-two thousand two hundred twenty-two'); INSERT INTO t3 VALUES(19025, 86158, 'eighty-six thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(19026, 35704, 'thirty-five thousand seven hundred four'); INSERT INTO t3 VALUES(19027, 21669, 'twenty-one thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(19028, 61658, 'sixty-one thousand six hundred fifty-eight'); INSERT INTO t3 VALUES(19029, 5937, 'five thousand nine hundred thirty-seven'); INSERT INTO t3 VALUES(19030, 2332, 'two thousand three hundred thirty-two'); INSERT INTO t3 VALUES(19031, 3516, 'three thousand five hundred sixteen'); INSERT INTO t3 VALUES(19032, 79192, 'seventy-nine thousand one hundred ninety-two'); INSERT INTO t3 VALUES(19033, 55569, 'fifty-five thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(19034, 48449, 'forty-eight thousand four hundred forty-nine'); INSERT INTO t3 VALUES(19035, 27747, 'twenty-seven thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(19036, 13815, 'thirteen thousand eight hundred fifteen'); INSERT INTO t3 VALUES(19037, 12806, 'twelve thousand eight hundred six'); INSERT INTO t3 VALUES(19038, 3871, 'three thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(19039, 92915, 'ninety-two thousand nine hundred fifteen'); INSERT INTO t3 VALUES(19040, 47689, 'forty-seven thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(19041, 30862, 'thirty thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(19042, 2879, 'two thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(19043, 98883, 'ninety-eight thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(19044, 79072, 'seventy-nine thousand seventy-two'); INSERT INTO t3 VALUES(19045, 98286, 'ninety-eight thousand two hundred eighty-six'); INSERT INTO t3 VALUES(19046, 59325, 'fifty-nine thousand three hundred twenty-five'); INSERT INTO t3 VALUES(19047, 82941, 'eighty-two thousand nine hundred forty-one'); INSERT INTO t3 VALUES(19048, 52351, 'fifty-two thousand three hundred fifty-one'); INSERT INTO t3 VALUES(19049, 38304, 'thirty-eight thousand three hundred four'); INSERT INTO t3 VALUES(19050, 45242, 'forty-five thousand two hundred forty-two'); INSERT INTO t3 VALUES(19051, 53761, 'fifty-three thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(19052, 78370, 'seventy-eight thousand three hundred seventy'); INSERT INTO t3 VALUES(19053, 45632, 'forty-five thousand six hundred thirty-two'); INSERT INTO t3 VALUES(19054, 91602, 'ninety-one thousand six hundred two'); INSERT INTO t3 VALUES(19055, 73271, 'seventy-three thousand two hundred seventy-one'); INSERT INTO t3 VALUES(19056, 10216, 'ten thousand two hundred sixteen'); INSERT INTO t3 VALUES(19057, 99867, 'ninety-nine thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(19058, 98142, 'ninety-eight thousand one hundred forty-two'); INSERT INTO t3 VALUES(19059, 14549, 'fourteen thousand five hundred forty-nine'); INSERT INTO t3 VALUES(19060, 14907, 'fourteen thousand nine hundred seven'); INSERT INTO t3 VALUES(19061, 71373, 'seventy-one thousand three hundred seventy-three'); INSERT INTO t3 VALUES(19062, 63785, 'sixty-three thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(19063, 5362, 'five thousand three hundred sixty-two'); INSERT INTO t3 VALUES(19064, 30362, 'thirty thousand three hundred sixty-two'); INSERT INTO t3 VALUES(19065, 54061, 'fifty-four thousand sixty-one'); INSERT INTO t3 VALUES(19066, 12468, 'twelve thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(19067, 85315, 'eighty-five thousand three hundred fifteen'); INSERT INTO t3 VALUES(19068, 82368, 'eighty-two thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(19069, 11763, 'eleven thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(19070, 55905, 'fifty-five thousand nine hundred five'); INSERT INTO t3 VALUES(19071, 12865, 'twelve thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(19072, 65471, 'sixty-five thousand four hundred seventy-one'); INSERT INTO t3 VALUES(19073, 82453, 'eighty-two thousand four hundred fifty-three'); INSERT INTO t3 VALUES(19074, 96920, 'ninety-six thousand nine hundred twenty'); INSERT INTO t3 VALUES(19075, 23505, 'twenty-three thousand five hundred five'); INSERT INTO t3 VALUES(19076, 57822, 'fifty-seven thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(19077, 75785, 'seventy-five thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(19078, 33855, 'thirty-three thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(19079, 52546, 'fifty-two thousand five hundred forty-six'); INSERT INTO t3 VALUES(19080, 16080, 'sixteen thousand eighty'); INSERT INTO t3 VALUES(19081, 48402, 'forty-eight thousand four hundred two'); INSERT INTO t3 VALUES(19082, 45543, 'forty-five thousand five hundred forty-three'); INSERT INTO t3 VALUES(19083, 81897, 'eighty-one thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(19084, 64036, 'sixty-four thousand thirty-six'); INSERT INTO t3 VALUES(19085, 71160, 'seventy-one thousand one hundred sixty'); INSERT INTO t3 VALUES(19086, 42053, 'forty-two thousand fifty-three'); INSERT INTO t3 VALUES(19087, 51602, 'fifty-one thousand six hundred two'); INSERT INTO t3 VALUES(19088, 8241, 'eight thousand two hundred forty-one'); INSERT INTO t3 VALUES(19089, 69556, 'sixty-nine thousand five hundred fifty-six'); INSERT INTO t3 VALUES(19090, 1356, 'one thousand three hundred fifty-six'); INSERT INTO t3 VALUES(19091, 27155, 'twenty-seven thousand one hundred fifty-five'); INSERT INTO t3 VALUES(19092, 16002, 'sixteen thousand two'); INSERT INTO t3 VALUES(19093, 12649, 'twelve thousand six hundred forty-nine'); INSERT INTO t3 VALUES(19094, 8934, 'eight thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(19095, 26227, 'twenty-six thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(19096, 50221, 'fifty thousand two hundred twenty-one'); INSERT INTO t3 VALUES(19097, 67833, 'sixty-seven thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(19098, 92708, 'ninety-two thousand seven hundred eight'); INSERT INTO t3 VALUES(19099, 98898, 'ninety-eight thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(19100, 16873, 'sixteen thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(19101, 88274, 'eighty-eight thousand two hundred seventy-four'); INSERT INTO t3 VALUES(19102, 13946, 'thirteen thousand nine hundred forty-six'); INSERT INTO t3 VALUES(19103, 68794, 'sixty-eight thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(19104, 53188, 'fifty-three thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(19105, 82426, 'eighty-two thousand four hundred twenty-six'); INSERT INTO t3 VALUES(19106, 88988, 'eighty-eight thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(19107, 51507, 'fifty-one thousand five hundred seven'); INSERT INTO t3 VALUES(19108, 23007, 'twenty-three thousand seven'); INSERT INTO t3 VALUES(19109, 55150, 'fifty-five thousand one hundred fifty'); INSERT INTO t3 VALUES(19110, 40871, 'forty thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(19111, 12719, 'twelve thousand seven hundred nineteen'); INSERT INTO t3 VALUES(19112, 25784, 'twenty-five thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(19113, 96995, 'ninety-six thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(19114, 86974, 'eighty-six thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(19115, 68066, 'sixty-eight thousand sixty-six'); INSERT INTO t3 VALUES(19116, 77620, 'seventy-seven thousand six hundred twenty'); INSERT INTO t3 VALUES(19117, 75970, 'seventy-five thousand nine hundred seventy'); INSERT INTO t3 VALUES(19118, 3491, 'three thousand four hundred ninety-one'); INSERT INTO t3 VALUES(19119, 6774, 'six thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(19120, 56688, 'fifty-six thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(19121, 55841, 'fifty-five thousand eight hundred forty-one'); INSERT INTO t3 VALUES(19122, 32028, 'thirty-two thousand twenty-eight'); INSERT INTO t3 VALUES(19123, 1938, 'one thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(19124, 6840, 'six thousand eight hundred forty'); INSERT INTO t3 VALUES(19125, 81500, 'eighty-one thousand five hundred'); INSERT INTO t3 VALUES(19126, 77506, 'seventy-seven thousand five hundred six'); INSERT INTO t3 VALUES(19127, 74941, 'seventy-four thousand nine hundred forty-one'); INSERT INTO t3 VALUES(19128, 84442, 'eighty-four thousand four hundred forty-two'); INSERT INTO t3 VALUES(19129, 19488, 'nineteen thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(19130, 72826, 'seventy-two thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(19131, 51902, 'fifty-one thousand nine hundred two'); INSERT INTO t3 VALUES(19132, 50409, 'fifty thousand four hundred nine'); INSERT INTO t3 VALUES(19133, 89130, 'eighty-nine thousand one hundred thirty'); INSERT INTO t3 VALUES(19134, 25031, 'twenty-five thousand thirty-one'); INSERT INTO t3 VALUES(19135, 29878, 'twenty-nine thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(19136, 94723, 'ninety-four thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(19137, 44705, 'forty-four thousand seven hundred five'); INSERT INTO t3 VALUES(19138, 7336, 'seven thousand three hundred thirty-six'); INSERT INTO t3 VALUES(19139, 71163, 'seventy-one thousand one hundred sixty-three'); INSERT INTO t3 VALUES(19140, 37845, 'thirty-seven thousand eight hundred forty-five'); INSERT INTO t3 VALUES(19141, 83676, 'eighty-three thousand six hundred seventy-six'); INSERT INTO t3 VALUES(19142, 78520, 'seventy-eight thousand five hundred twenty'); INSERT INTO t3 VALUES(19143, 43294, 'forty-three thousand two hundred ninety-four'); INSERT INTO t3 VALUES(19144, 15680, 'fifteen thousand six hundred eighty'); INSERT INTO t3 VALUES(19145, 649, 'six hundred forty-nine'); INSERT INTO t3 VALUES(19146, 38942, 'thirty-eight thousand nine hundred forty-two'); INSERT INTO t3 VALUES(19147, 54722, 'fifty-four thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(19148, 32631, 'thirty-two thousand six hundred thirty-one'); INSERT INTO t3 VALUES(19149, 32537, 'thirty-two thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(19150, 12435, 'twelve thousand four hundred thirty-five'); INSERT INTO t3 VALUES(19151, 57531, 'fifty-seven thousand five hundred thirty-one'); INSERT INTO t3 VALUES(19152, 18768, 'eighteen thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(19153, 7575, 'seven thousand five hundred seventy-five'); INSERT INTO t3 VALUES(19154, 57788, 'fifty-seven thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(19155, 99296, 'ninety-nine thousand two hundred ninety-six'); INSERT INTO t3 VALUES(19156, 99079, 'ninety-nine thousand seventy-nine'); INSERT INTO t3 VALUES(19157, 51450, 'fifty-one thousand four hundred fifty'); INSERT INTO t3 VALUES(19158, 76474, 'seventy-six thousand four hundred seventy-four'); INSERT INTO t3 VALUES(19159, 25216, 'twenty-five thousand two hundred sixteen'); INSERT INTO t3 VALUES(19160, 87368, 'eighty-seven thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(19161, 38802, 'thirty-eight thousand eight hundred two'); INSERT INTO t3 VALUES(19162, 90680, 'ninety thousand six hundred eighty'); INSERT INTO t3 VALUES(19163, 27929, 'twenty-seven thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(19164, 11041, 'eleven thousand forty-one'); INSERT INTO t3 VALUES(19165, 29294, 'twenty-nine thousand two hundred ninety-four'); INSERT INTO t3 VALUES(19166, 40817, 'forty thousand eight hundred seventeen'); INSERT INTO t3 VALUES(19167, 94846, 'ninety-four thousand eight hundred forty-six'); INSERT INTO t3 VALUES(19168, 43202, 'forty-three thousand two hundred two'); INSERT INTO t3 VALUES(19169, 4176, 'four thousand one hundred seventy-six'); INSERT INTO t3 VALUES(19170, 52655, 'fifty-two thousand six hundred fifty-five'); INSERT INTO t3 VALUES(19171, 30971, 'thirty thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(19172, 36164, 'thirty-six thousand one hundred sixty-four'); INSERT INTO t3 VALUES(19173, 21434, 'twenty-one thousand four hundred thirty-four'); INSERT INTO t3 VALUES(19174, 7540, 'seven thousand five hundred forty'); INSERT INTO t3 VALUES(19175, 21745, 'twenty-one thousand seven hundred forty-five'); INSERT INTO t3 VALUES(19176, 74374, 'seventy-four thousand three hundred seventy-four'); INSERT INTO t3 VALUES(19177, 10027, 'ten thousand twenty-seven'); INSERT INTO t3 VALUES(19178, 69286, 'sixty-nine thousand two hundred eighty-six'); INSERT INTO t3 VALUES(19179, 39631, 'thirty-nine thousand six hundred thirty-one'); INSERT INTO t3 VALUES(19180, 1756, 'one thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(19181, 40258, 'forty thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(19182, 79403, 'seventy-nine thousand four hundred three'); INSERT INTO t3 VALUES(19183, 63237, 'sixty-three thousand two hundred thirty-seven'); INSERT INTO t3 VALUES(19184, 45039, 'forty-five thousand thirty-nine'); INSERT INTO t3 VALUES(19185, 3482, 'three thousand four hundred eighty-two'); INSERT INTO t3 VALUES(19186, 9956, 'nine thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(19187, 84470, 'eighty-four thousand four hundred seventy'); INSERT INTO t3 VALUES(19188, 42458, 'forty-two thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(19189, 68936, 'sixty-eight thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(19190, 16164, 'sixteen thousand one hundred sixty-four'); INSERT INTO t3 VALUES(19191, 2558, 'two thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(19192, 8798, 'eight thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(19193, 20677, 'twenty thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(19194, 74619, 'seventy-four thousand six hundred nineteen'); INSERT INTO t3 VALUES(19195, 8139, 'eight thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(19196, 52851, 'fifty-two thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(19197, 23480, 'twenty-three thousand four hundred eighty'); INSERT INTO t3 VALUES(19198, 50974, 'fifty thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(19199, 83924, 'eighty-three thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(19200, 48805, 'forty-eight thousand eight hundred five'); INSERT INTO t3 VALUES(19201, 74834, 'seventy-four thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(19202, 38775, 'thirty-eight thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(19203, 73541, 'seventy-three thousand five hundred forty-one'); INSERT INTO t3 VALUES(19204, 5628, 'five thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(19205, 34459, 'thirty-four thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(19206, 99156, 'ninety-nine thousand one hundred fifty-six'); INSERT INTO t3 VALUES(19207, 14020, 'fourteen thousand twenty'); INSERT INTO t3 VALUES(19208, 25878, 'twenty-five thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(19209, 3654, 'three thousand six hundred fifty-four'); INSERT INTO t3 VALUES(19210, 37485, 'thirty-seven thousand four hundred eighty-five'); INSERT INTO t3 VALUES(19211, 60960, 'sixty thousand nine hundred sixty'); INSERT INTO t3 VALUES(19212, 42698, 'forty-two thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(19213, 37372, 'thirty-seven thousand three hundred seventy-two'); INSERT INTO t3 VALUES(19214, 35289, 'thirty-five thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(19215, 63126, 'sixty-three thousand one hundred twenty-six'); INSERT INTO t3 VALUES(19216, 4885, 'four thousand eight hundred eighty-five'); INSERT INTO t3 VALUES(19217, 82297, 'eighty-two thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(19218, 14835, 'fourteen thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(19219, 89944, 'eighty-nine thousand nine hundred forty-four'); INSERT INTO t3 VALUES(19220, 29919, 'twenty-nine thousand nine hundred nineteen'); INSERT INTO t3 VALUES(19221, 76797, 'seventy-six thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(19222, 49302, 'forty-nine thousand three hundred two'); INSERT INTO t3 VALUES(19223, 26299, 'twenty-six thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(19224, 77060, 'seventy-seven thousand sixty'); INSERT INTO t3 VALUES(19225, 54919, 'fifty-four thousand nine hundred nineteen'); INSERT INTO t3 VALUES(19226, 84837, 'eighty-four thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(19227, 14129, 'fourteen thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(19228, 86156, 'eighty-six thousand one hundred fifty-six'); INSERT INTO t3 VALUES(19229, 38468, 'thirty-eight thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(19230, 3762, 'three thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(19231, 27960, 'twenty-seven thousand nine hundred sixty'); INSERT INTO t3 VALUES(19232, 10536, 'ten thousand five hundred thirty-six'); INSERT INTO t3 VALUES(19233, 33587, 'thirty-three thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(19234, 54041, 'fifty-four thousand forty-one'); INSERT INTO t3 VALUES(19235, 72170, 'seventy-two thousand one hundred seventy'); INSERT INTO t3 VALUES(19236, 22027, 'twenty-two thousand twenty-seven'); INSERT INTO t3 VALUES(19237, 86352, 'eighty-six thousand three hundred fifty-two'); INSERT INTO t3 VALUES(19238, 11058, 'eleven thousand fifty-eight'); INSERT INTO t3 VALUES(19239, 81770, 'eighty-one thousand seven hundred seventy'); INSERT INTO t3 VALUES(19240, 66570, 'sixty-six thousand five hundred seventy'); INSERT INTO t3 VALUES(19241, 58845, 'fifty-eight thousand eight hundred forty-five'); INSERT INTO t3 VALUES(19242, 47560, 'forty-seven thousand five hundred sixty'); INSERT INTO t3 VALUES(19243, 24883, 'twenty-four thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(19244, 84170, 'eighty-four thousand one hundred seventy'); INSERT INTO t3 VALUES(19245, 80654, 'eighty thousand six hundred fifty-four'); INSERT INTO t3 VALUES(19246, 59459, 'fifty-nine thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(19247, 66891, 'sixty-six thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(19248, 82190, 'eighty-two thousand one hundred ninety'); INSERT INTO t3 VALUES(19249, 4497, 'four thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(19250, 69744, 'sixty-nine thousand seven hundred forty-four'); INSERT INTO t3 VALUES(19251, 93005, 'ninety-three thousand five'); INSERT INTO t3 VALUES(19252, 24295, 'twenty-four thousand two hundred ninety-five'); INSERT INTO t3 VALUES(19253, 40096, 'forty thousand ninety-six'); INSERT INTO t3 VALUES(19254, 11787, 'eleven thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(19255, 29662, 'twenty-nine thousand six hundred sixty-two'); INSERT INTO t3 VALUES(19256, 25747, 'twenty-five thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(19257, 53060, 'fifty-three thousand sixty'); INSERT INTO t3 VALUES(19258, 42716, 'forty-two thousand seven hundred sixteen'); INSERT INTO t3 VALUES(19259, 13387, 'thirteen thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(19260, 57184, 'fifty-seven thousand one hundred eighty-four'); INSERT INTO t3 VALUES(19261, 8762, 'eight thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(19262, 91502, 'ninety-one thousand five hundred two'); INSERT INTO t3 VALUES(19263, 90584, 'ninety thousand five hundred eighty-four'); INSERT INTO t3 VALUES(19264, 20696, 'twenty thousand six hundred ninety-six'); INSERT INTO t3 VALUES(19265, 28461, 'twenty-eight thousand four hundred sixty-one'); INSERT INTO t3 VALUES(19266, 56947, 'fifty-six thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(19267, 62628, 'sixty-two thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(19268, 36006, 'thirty-six thousand six'); INSERT INTO t3 VALUES(19269, 62814, 'sixty-two thousand eight hundred fourteen'); INSERT INTO t3 VALUES(19270, 19012, 'nineteen thousand twelve'); INSERT INTO t3 VALUES(19271, 5111, 'five thousand one hundred eleven'); INSERT INTO t3 VALUES(19272, 17350, 'seventeen thousand three hundred fifty'); INSERT INTO t3 VALUES(19273, 31091, 'thirty-one thousand ninety-one'); INSERT INTO t3 VALUES(19274, 19263, 'nineteen thousand two hundred sixty-three'); INSERT INTO t3 VALUES(19275, 15340, 'fifteen thousand three hundred forty'); INSERT INTO t3 VALUES(19276, 43789, 'forty-three thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(19277, 13304, 'thirteen thousand three hundred four'); INSERT INTO t3 VALUES(19278, 84999, 'eighty-four thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(19279, 98484, 'ninety-eight thousand four hundred eighty-four'); INSERT INTO t3 VALUES(19280, 3135, 'three thousand one hundred thirty-five'); INSERT INTO t3 VALUES(19281, 13038, 'thirteen thousand thirty-eight'); INSERT INTO t3 VALUES(19282, 27710, 'twenty-seven thousand seven hundred ten'); INSERT INTO t3 VALUES(19283, 98051, 'ninety-eight thousand fifty-one'); INSERT INTO t3 VALUES(19284, 72987, 'seventy-two thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(19285, 36497, 'thirty-six thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(19286, 9566, 'nine thousand five hundred sixty-six'); INSERT INTO t3 VALUES(19287, 22220, 'twenty-two thousand two hundred twenty'); INSERT INTO t3 VALUES(19288, 55902, 'fifty-five thousand nine hundred two'); INSERT INTO t3 VALUES(19289, 68522, 'sixty-eight thousand five hundred twenty-two'); INSERT INTO t3 VALUES(19290, 22980, 'twenty-two thousand nine hundred eighty'); INSERT INTO t3 VALUES(19291, 21642, 'twenty-one thousand six hundred forty-two'); INSERT INTO t3 VALUES(19292, 74886, 'seventy-four thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(19293, 78815, 'seventy-eight thousand eight hundred fifteen'); INSERT INTO t3 VALUES(19294, 41243, 'forty-one thousand two hundred forty-three'); INSERT INTO t3 VALUES(19295, 62219, 'sixty-two thousand two hundred nineteen'); INSERT INTO t3 VALUES(19296, 8671, 'eight thousand six hundred seventy-one'); INSERT INTO t3 VALUES(19297, 68166, 'sixty-eight thousand one hundred sixty-six'); INSERT INTO t3 VALUES(19298, 13329, 'thirteen thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(19299, 62502, 'sixty-two thousand five hundred two'); INSERT INTO t3 VALUES(19300, 57816, 'fifty-seven thousand eight hundred sixteen'); INSERT INTO t3 VALUES(19301, 43200, 'forty-three thousand two hundred'); INSERT INTO t3 VALUES(19302, 73233, 'seventy-three thousand two hundred thirty-three'); INSERT INTO t3 VALUES(19303, 87550, 'eighty-seven thousand five hundred fifty'); INSERT INTO t3 VALUES(19304, 48825, 'forty-eight thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(19305, 52004, 'fifty-two thousand four'); INSERT INTO t3 VALUES(19306, 66329, 'sixty-six thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(19307, 50483, 'fifty thousand four hundred eighty-three'); INSERT INTO t3 VALUES(19308, 81052, 'eighty-one thousand fifty-two'); INSERT INTO t3 VALUES(19309, 42063, 'forty-two thousand sixty-three'); INSERT INTO t3 VALUES(19310, 63746, 'sixty-three thousand seven hundred forty-six'); INSERT INTO t3 VALUES(19311, 38013, 'thirty-eight thousand thirteen'); INSERT INTO t3 VALUES(19312, 83479, 'eighty-three thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(19313, 48264, 'forty-eight thousand two hundred sixty-four'); INSERT INTO t3 VALUES(19314, 77479, 'seventy-seven thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(19315, 34929, 'thirty-four thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(19316, 93940, 'ninety-three thousand nine hundred forty'); INSERT INTO t3 VALUES(19317, 74500, 'seventy-four thousand five hundred'); INSERT INTO t3 VALUES(19318, 32088, 'thirty-two thousand eighty-eight'); INSERT INTO t3 VALUES(19319, 6824, 'six thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(19320, 29822, 'twenty-nine thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(19321, 35919, 'thirty-five thousand nine hundred nineteen'); INSERT INTO t3 VALUES(19322, 36168, 'thirty-six thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(19323, 50482, 'fifty thousand four hundred eighty-two'); INSERT INTO t3 VALUES(19324, 54143, 'fifty-four thousand one hundred forty-three'); INSERT INTO t3 VALUES(19325, 54764, 'fifty-four thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(19326, 38564, 'thirty-eight thousand five hundred sixty-four'); INSERT INTO t3 VALUES(19327, 52634, 'fifty-two thousand six hundred thirty-four'); INSERT INTO t3 VALUES(19328, 21695, 'twenty-one thousand six hundred ninety-five'); INSERT INTO t3 VALUES(19329, 40688, 'forty thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(19330, 73201, 'seventy-three thousand two hundred one'); INSERT INTO t3 VALUES(19331, 8022, 'eight thousand twenty-two'); INSERT INTO t3 VALUES(19332, 45075, 'forty-five thousand seventy-five'); INSERT INTO t3 VALUES(19333, 24083, 'twenty-four thousand eighty-three'); INSERT INTO t3 VALUES(19334, 29778, 'twenty-nine thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(19335, 78567, 'seventy-eight thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(19336, 12268, 'twelve thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(19337, 71123, 'seventy-one thousand one hundred twenty-three'); INSERT INTO t3 VALUES(19338, 61497, 'sixty-one thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(19339, 68928, 'sixty-eight thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(19340, 73731, 'seventy-three thousand seven hundred thirty-one'); INSERT INTO t3 VALUES(19341, 57916, 'fifty-seven thousand nine hundred sixteen'); INSERT INTO t3 VALUES(19342, 38249, 'thirty-eight thousand two hundred forty-nine'); INSERT INTO t3 VALUES(19343, 66808, 'sixty-six thousand eight hundred eight'); INSERT INTO t3 VALUES(19344, 50991, 'fifty thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(19345, 97340, 'ninety-seven thousand three hundred forty'); INSERT INTO t3 VALUES(19346, 24648, 'twenty-four thousand six hundred forty-eight'); INSERT INTO t3 VALUES(19347, 61487, 'sixty-one thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(19348, 20005, 'twenty thousand five'); INSERT INTO t3 VALUES(19349, 10661, 'ten thousand six hundred sixty-one'); INSERT INTO t3 VALUES(19350, 24221, 'twenty-four thousand two hundred twenty-one'); INSERT INTO t3 VALUES(19351, 70621, 'seventy thousand six hundred twenty-one'); INSERT INTO t3 VALUES(19352, 95002, 'ninety-five thousand two'); INSERT INTO t3 VALUES(19353, 20369, 'twenty thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(19354, 81437, 'eighty-one thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(19355, 38349, 'thirty-eight thousand three hundred forty-nine'); INSERT INTO t3 VALUES(19356, 95879, 'ninety-five thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(19357, 47986, 'forty-seven thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(19358, 24843, 'twenty-four thousand eight hundred forty-three'); INSERT INTO t3 VALUES(19359, 62771, 'sixty-two thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(19360, 55203, 'fifty-five thousand two hundred three'); INSERT INTO t3 VALUES(19361, 20827, 'twenty thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(19362, 75422, 'seventy-five thousand four hundred twenty-two'); INSERT INTO t3 VALUES(19363, 23511, 'twenty-three thousand five hundred eleven'); INSERT INTO t3 VALUES(19364, 44941, 'forty-four thousand nine hundred forty-one'); INSERT INTO t3 VALUES(19365, 76031, 'seventy-six thousand thirty-one'); INSERT INTO t3 VALUES(19366, 47483, 'forty-seven thousand four hundred eighty-three'); INSERT INTO t3 VALUES(19367, 22838, 'twenty-two thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(19368, 40943, 'forty thousand nine hundred forty-three'); INSERT INTO t3 VALUES(19369, 39962, 'thirty-nine thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(19370, 44467, 'forty-four thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(19371, 40881, 'forty thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(19372, 40948, 'forty thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(19373, 15781, 'fifteen thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(19374, 42097, 'forty-two thousand ninety-seven'); INSERT INTO t3 VALUES(19375, 50040, 'fifty thousand forty'); INSERT INTO t3 VALUES(19376, 23848, 'twenty-three thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(19377, 34824, 'thirty-four thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(19378, 63401, 'sixty-three thousand four hundred one'); INSERT INTO t3 VALUES(19379, 4028, 'four thousand twenty-eight'); INSERT INTO t3 VALUES(19380, 11031, 'eleven thousand thirty-one'); INSERT INTO t3 VALUES(19381, 20010, 'twenty thousand ten'); INSERT INTO t3 VALUES(19382, 79127, 'seventy-nine thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(19383, 91267, 'ninety-one thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(19384, 37367, 'thirty-seven thousand three hundred sixty-seven'); INSERT INTO t3 VALUES(19385, 24251, 'twenty-four thousand two hundred fifty-one'); INSERT INTO t3 VALUES(19386, 4007, 'four thousand seven'); INSERT INTO t3 VALUES(19387, 93082, 'ninety-three thousand eighty-two'); INSERT INTO t3 VALUES(19388, 92026, 'ninety-two thousand twenty-six'); INSERT INTO t3 VALUES(19389, 79191, 'seventy-nine thousand one hundred ninety-one'); INSERT INTO t3 VALUES(19390, 54203, 'fifty-four thousand two hundred three'); INSERT INTO t3 VALUES(19391, 23416, 'twenty-three thousand four hundred sixteen'); INSERT INTO t3 VALUES(19392, 1644, 'one thousand six hundred forty-four'); INSERT INTO t3 VALUES(19393, 37158, 'thirty-seven thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(19394, 3649, 'three thousand six hundred forty-nine'); INSERT INTO t3 VALUES(19395, 23719, 'twenty-three thousand seven hundred nineteen'); INSERT INTO t3 VALUES(19396, 13818, 'thirteen thousand eight hundred eighteen'); INSERT INTO t3 VALUES(19397, 14942, 'fourteen thousand nine hundred forty-two'); INSERT INTO t3 VALUES(19398, 47030, 'forty-seven thousand thirty'); INSERT INTO t3 VALUES(19399, 75713, 'seventy-five thousand seven hundred thirteen'); INSERT INTO t3 VALUES(19400, 4984, 'four thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(19401, 59030, 'fifty-nine thousand thirty'); INSERT INTO t3 VALUES(19402, 85772, 'eighty-five thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(19403, 58356, 'fifty-eight thousand three hundred fifty-six'); INSERT INTO t3 VALUES(19404, 27157, 'twenty-seven thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(19405, 81669, 'eighty-one thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(19406, 12946, 'twelve thousand nine hundred forty-six'); INSERT INTO t3 VALUES(19407, 10503, 'ten thousand five hundred three'); INSERT INTO t3 VALUES(19408, 90744, 'ninety thousand seven hundred forty-four'); INSERT INTO t3 VALUES(19409, 17218, 'seventeen thousand two hundred eighteen'); INSERT INTO t3 VALUES(19410, 75769, 'seventy-five thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(19411, 20569, 'twenty thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(19412, 4762, 'four thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(19413, 52701, 'fifty-two thousand seven hundred one'); INSERT INTO t3 VALUES(19414, 58258, 'fifty-eight thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(19415, 10573, 'ten thousand five hundred seventy-three'); INSERT INTO t3 VALUES(19416, 66853, 'sixty-six thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(19417, 30150, 'thirty thousand one hundred fifty'); INSERT INTO t3 VALUES(19418, 29555, 'twenty-nine thousand five hundred fifty-five'); INSERT INTO t3 VALUES(19419, 40950, 'forty thousand nine hundred fifty'); INSERT INTO t3 VALUES(19420, 17094, 'seventeen thousand ninety-four'); INSERT INTO t3 VALUES(19421, 16641, 'sixteen thousand six hundred forty-one'); INSERT INTO t3 VALUES(19422, 27514, 'twenty-seven thousand five hundred fourteen'); INSERT INTO t3 VALUES(19423, 74113, 'seventy-four thousand one hundred thirteen'); INSERT INTO t3 VALUES(19424, 19084, 'nineteen thousand eighty-four'); INSERT INTO t3 VALUES(19425, 67528, 'sixty-seven thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(19426, 94108, 'ninety-four thousand one hundred eight'); INSERT INTO t3 VALUES(19427, 7342, 'seven thousand three hundred forty-two'); INSERT INTO t3 VALUES(19428, 87382, 'eighty-seven thousand three hundred eighty-two'); INSERT INTO t3 VALUES(19429, 6274, 'six thousand two hundred seventy-four'); INSERT INTO t3 VALUES(19430, 8839, 'eight thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(19431, 82365, 'eighty-two thousand three hundred sixty-five'); INSERT INTO t3 VALUES(19432, 8566, 'eight thousand five hundred sixty-six'); INSERT INTO t3 VALUES(19433, 81837, 'eighty-one thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(19434, 69217, 'sixty-nine thousand two hundred seventeen'); INSERT INTO t3 VALUES(19435, 72010, 'seventy-two thousand ten'); INSERT INTO t3 VALUES(19436, 65223, 'sixty-five thousand two hundred twenty-three'); INSERT INTO t3 VALUES(19437, 27739, 'twenty-seven thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(19438, 74026, 'seventy-four thousand twenty-six'); INSERT INTO t3 VALUES(19439, 50419, 'fifty thousand four hundred nineteen'); INSERT INTO t3 VALUES(19440, 55579, 'fifty-five thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(19441, 34087, 'thirty-four thousand eighty-seven'); INSERT INTO t3 VALUES(19442, 41468, 'forty-one thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(19443, 60871, 'sixty thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(19444, 76019, 'seventy-six thousand nineteen'); INSERT INTO t3 VALUES(19445, 46668, 'forty-six thousand six hundred sixty-eight'); INSERT INTO t3 VALUES(19446, 42665, 'forty-two thousand six hundred sixty-five'); INSERT INTO t3 VALUES(19447, 90446, 'ninety thousand four hundred forty-six'); INSERT INTO t3 VALUES(19448, 38321, 'thirty-eight thousand three hundred twenty-one'); INSERT INTO t3 VALUES(19449, 80086, 'eighty thousand eighty-six'); INSERT INTO t3 VALUES(19450, 39787, 'thirty-nine thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(19451, 19767, 'nineteen thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(19452, 34380, 'thirty-four thousand three hundred eighty'); INSERT INTO t3 VALUES(19453, 28171, 'twenty-eight thousand one hundred seventy-one'); INSERT INTO t3 VALUES(19454, 90990, 'ninety thousand nine hundred ninety'); INSERT INTO t3 VALUES(19455, 79448, 'seventy-nine thousand four hundred forty-eight'); INSERT INTO t3 VALUES(19456, 76235, 'seventy-six thousand two hundred thirty-five'); INSERT INTO t3 VALUES(19457, 23829, 'twenty-three thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(19458, 49486, 'forty-nine thousand four hundred eighty-six'); INSERT INTO t3 VALUES(19459, 34634, 'thirty-four thousand six hundred thirty-four'); INSERT INTO t3 VALUES(19460, 52118, 'fifty-two thousand one hundred eighteen'); INSERT INTO t3 VALUES(19461, 50940, 'fifty thousand nine hundred forty'); INSERT INTO t3 VALUES(19462, 71601, 'seventy-one thousand six hundred one'); INSERT INTO t3 VALUES(19463, 1992, 'one thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(19464, 24335, 'twenty-four thousand three hundred thirty-five'); INSERT INTO t3 VALUES(19465, 20424, 'twenty thousand four hundred twenty-four'); INSERT INTO t3 VALUES(19466, 93259, 'ninety-three thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(19467, 26351, 'twenty-six thousand three hundred fifty-one'); INSERT INTO t3 VALUES(19468, 75270, 'seventy-five thousand two hundred seventy'); INSERT INTO t3 VALUES(19469, 88988, 'eighty-eight thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(19470, 39984, 'thirty-nine thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(19471, 96634, 'ninety-six thousand six hundred thirty-four'); INSERT INTO t3 VALUES(19472, 1772, 'one thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(19473, 71056, 'seventy-one thousand fifty-six'); INSERT INTO t3 VALUES(19474, 62891, 'sixty-two thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(19475, 69856, 'sixty-nine thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(19476, 81369, 'eighty-one thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(19477, 8940, 'eight thousand nine hundred forty'); INSERT INTO t3 VALUES(19478, 66439, 'sixty-six thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(19479, 66313, 'sixty-six thousand three hundred thirteen'); INSERT INTO t3 VALUES(19480, 16695, 'sixteen thousand six hundred ninety-five'); INSERT INTO t3 VALUES(19481, 70150, 'seventy thousand one hundred fifty'); INSERT INTO t3 VALUES(19482, 79462, 'seventy-nine thousand four hundred sixty-two'); INSERT INTO t3 VALUES(19483, 21151, 'twenty-one thousand one hundred fifty-one'); INSERT INTO t3 VALUES(19484, 1070, 'one thousand seventy'); INSERT INTO t3 VALUES(19485, 34701, 'thirty-four thousand seven hundred one'); INSERT INTO t3 VALUES(19486, 58249, 'fifty-eight thousand two hundred forty-nine'); INSERT INTO t3 VALUES(19487, 23890, 'twenty-three thousand eight hundred ninety'); INSERT INTO t3 VALUES(19488, 48438, 'forty-eight thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(19489, 33987, 'thirty-three thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(19490, 6411, 'six thousand four hundred eleven'); INSERT INTO t3 VALUES(19491, 24962, 'twenty-four thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(19492, 90714, 'ninety thousand seven hundred fourteen'); INSERT INTO t3 VALUES(19493, 65087, 'sixty-five thousand eighty-seven'); INSERT INTO t3 VALUES(19494, 93866, 'ninety-three thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(19495, 25135, 'twenty-five thousand one hundred thirty-five'); INSERT INTO t3 VALUES(19496, 48147, 'forty-eight thousand one hundred forty-seven'); INSERT INTO t3 VALUES(19497, 42033, 'forty-two thousand thirty-three'); INSERT INTO t3 VALUES(19498, 71644, 'seventy-one thousand six hundred forty-four'); INSERT INTO t3 VALUES(19499, 49267, 'forty-nine thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(19500, 90474, 'ninety thousand four hundred seventy-four'); INSERT INTO t3 VALUES(19501, 24721, 'twenty-four thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(19502, 66812, 'sixty-six thousand eight hundred twelve'); INSERT INTO t3 VALUES(19503, 85934, 'eighty-five thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(19504, 29788, 'twenty-nine thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(19505, 4555, 'four thousand five hundred fifty-five'); INSERT INTO t3 VALUES(19506, 78210, 'seventy-eight thousand two hundred ten'); INSERT INTO t3 VALUES(19507, 29423, 'twenty-nine thousand four hundred twenty-three'); INSERT INTO t3 VALUES(19508, 99737, 'ninety-nine thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(19509, 65009, 'sixty-five thousand nine'); INSERT INTO t3 VALUES(19510, 82090, 'eighty-two thousand ninety'); INSERT INTO t3 VALUES(19511, 12260, 'twelve thousand two hundred sixty'); INSERT INTO t3 VALUES(19512, 62869, 'sixty-two thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(19513, 29318, 'twenty-nine thousand three hundred eighteen'); INSERT INTO t3 VALUES(19514, 56175, 'fifty-six thousand one hundred seventy-five'); INSERT INTO t3 VALUES(19515, 3130, 'three thousand one hundred thirty'); INSERT INTO t3 VALUES(19516, 51537, 'fifty-one thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(19517, 76463, 'seventy-six thousand four hundred sixty-three'); INSERT INTO t3 VALUES(19518, 2425, 'two thousand four hundred twenty-five'); INSERT INTO t3 VALUES(19519, 93173, 'ninety-three thousand one hundred seventy-three'); INSERT INTO t3 VALUES(19520, 66383, 'sixty-six thousand three hundred eighty-three'); INSERT INTO t3 VALUES(19521, 99310, 'ninety-nine thousand three hundred ten'); INSERT INTO t3 VALUES(19522, 32574, 'thirty-two thousand five hundred seventy-four'); INSERT INTO t3 VALUES(19523, 99192, 'ninety-nine thousand one hundred ninety-two'); INSERT INTO t3 VALUES(19524, 84320, 'eighty-four thousand three hundred twenty'); INSERT INTO t3 VALUES(19525, 69763, 'sixty-nine thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(19526, 80323, 'eighty thousand three hundred twenty-three'); INSERT INTO t3 VALUES(19527, 94322, 'ninety-four thousand three hundred twenty-two'); INSERT INTO t3 VALUES(19528, 49608, 'forty-nine thousand six hundred eight'); INSERT INTO t3 VALUES(19529, 1716, 'one thousand seven hundred sixteen'); INSERT INTO t3 VALUES(19530, 14239, 'fourteen thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(19531, 69469, 'sixty-nine thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(19532, 38129, 'thirty-eight thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(19533, 57751, 'fifty-seven thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(19534, 83980, 'eighty-three thousand nine hundred eighty'); INSERT INTO t3 VALUES(19535, 3741, 'three thousand seven hundred forty-one'); INSERT INTO t3 VALUES(19536, 43682, 'forty-three thousand six hundred eighty-two'); INSERT INTO t3 VALUES(19537, 19228, 'nineteen thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(19538, 27463, 'twenty-seven thousand four hundred sixty-three'); INSERT INTO t3 VALUES(19539, 66551, 'sixty-six thousand five hundred fifty-one'); INSERT INTO t3 VALUES(19540, 96082, 'ninety-six thousand eighty-two'); INSERT INTO t3 VALUES(19541, 56533, 'fifty-six thousand five hundred thirty-three'); INSERT INTO t3 VALUES(19542, 73140, 'seventy-three thousand one hundred forty'); INSERT INTO t3 VALUES(19543, 17485, 'seventeen thousand four hundred eighty-five'); INSERT INTO t3 VALUES(19544, 96640, 'ninety-six thousand six hundred forty'); INSERT INTO t3 VALUES(19545, 74765, 'seventy-four thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(19546, 42865, 'forty-two thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(19547, 99163, 'ninety-nine thousand one hundred sixty-three'); INSERT INTO t3 VALUES(19548, 75413, 'seventy-five thousand four hundred thirteen'); INSERT INTO t3 VALUES(19549, 7084, 'seven thousand eighty-four'); INSERT INTO t3 VALUES(19550, 17387, 'seventeen thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(19551, 47377, 'forty-seven thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(19552, 5600, 'five thousand six hundred'); INSERT INTO t3 VALUES(19553, 47422, 'forty-seven thousand four hundred twenty-two'); INSERT INTO t3 VALUES(19554, 71011, 'seventy-one thousand eleven'); INSERT INTO t3 VALUES(19555, 13051, 'thirteen thousand fifty-one'); INSERT INTO t3 VALUES(19556, 49894, 'forty-nine thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(19557, 9139, 'nine thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(19558, 65841, 'sixty-five thousand eight hundred forty-one'); INSERT INTO t3 VALUES(19559, 47289, 'forty-seven thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(19560, 32328, 'thirty-two thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(19561, 25482, 'twenty-five thousand four hundred eighty-two'); INSERT INTO t3 VALUES(19562, 67366, 'sixty-seven thousand three hundred sixty-six'); INSERT INTO t3 VALUES(19563, 54187, 'fifty-four thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(19564, 60024, 'sixty thousand twenty-four'); INSERT INTO t3 VALUES(19565, 81200, 'eighty-one thousand two hundred'); INSERT INTO t3 VALUES(19566, 92367, 'ninety-two thousand three hundred sixty-seven'); INSERT INTO t3 VALUES(19567, 65367, 'sixty-five thousand three hundred sixty-seven'); INSERT INTO t3 VALUES(19568, 40393, 'forty thousand three hundred ninety-three'); INSERT INTO t3 VALUES(19569, 43767, 'forty-three thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(19570, 69296, 'sixty-nine thousand two hundred ninety-six'); INSERT INTO t3 VALUES(19571, 6751, 'six thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(19572, 79303, 'seventy-nine thousand three hundred three'); INSERT INTO t3 VALUES(19573, 10762, 'ten thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(19574, 56400, 'fifty-six thousand four hundred'); INSERT INTO t3 VALUES(19575, 28473, 'twenty-eight thousand four hundred seventy-three'); INSERT INTO t3 VALUES(19576, 70473, 'seventy thousand four hundred seventy-three'); INSERT INTO t3 VALUES(19577, 79981, 'seventy-nine thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(19578, 53920, 'fifty-three thousand nine hundred twenty'); INSERT INTO t3 VALUES(19579, 62161, 'sixty-two thousand one hundred sixty-one'); INSERT INTO t3 VALUES(19580, 22223, 'twenty-two thousand two hundred twenty-three'); INSERT INTO t3 VALUES(19581, 46901, 'forty-six thousand nine hundred one'); INSERT INTO t3 VALUES(19582, 1420, 'one thousand four hundred twenty'); INSERT INTO t3 VALUES(19583, 2379, 'two thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(19584, 56826, 'fifty-six thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(19585, 71097, 'seventy-one thousand ninety-seven'); INSERT INTO t3 VALUES(19586, 83243, 'eighty-three thousand two hundred forty-three'); INSERT INTO t3 VALUES(19587, 62366, 'sixty-two thousand three hundred sixty-six'); INSERT INTO t3 VALUES(19588, 72168, 'seventy-two thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(19589, 34441, 'thirty-four thousand four hundred forty-one'); INSERT INTO t3 VALUES(19590, 35373, 'thirty-five thousand three hundred seventy-three'); INSERT INTO t3 VALUES(19591, 66907, 'sixty-six thousand nine hundred seven'); INSERT INTO t3 VALUES(19592, 51812, 'fifty-one thousand eight hundred twelve'); INSERT INTO t3 VALUES(19593, 50333, 'fifty thousand three hundred thirty-three'); INSERT INTO t3 VALUES(19594, 94849, 'ninety-four thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(19595, 68171, 'sixty-eight thousand one hundred seventy-one'); INSERT INTO t3 VALUES(19596, 56179, 'fifty-six thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(19597, 60905, 'sixty thousand nine hundred five'); INSERT INTO t3 VALUES(19598, 51465, 'fifty-one thousand four hundred sixty-five'); INSERT INTO t3 VALUES(19599, 71288, 'seventy-one thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(19600, 10479, 'ten thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(19601, 54583, 'fifty-four thousand five hundred eighty-three'); INSERT INTO t3 VALUES(19602, 19665, 'nineteen thousand six hundred sixty-five'); INSERT INTO t3 VALUES(19603, 74329, 'seventy-four thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(19604, 99730, 'ninety-nine thousand seven hundred thirty'); INSERT INTO t3 VALUES(19605, 27510, 'twenty-seven thousand five hundred ten'); INSERT INTO t3 VALUES(19606, 61606, 'sixty-one thousand six hundred six'); INSERT INTO t3 VALUES(19607, 50992, 'fifty thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(19608, 59499, 'fifty-nine thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(19609, 19786, 'nineteen thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(19610, 96247, 'ninety-six thousand two hundred forty-seven'); INSERT INTO t3 VALUES(19611, 84024, 'eighty-four thousand twenty-four'); INSERT INTO t3 VALUES(19612, 5501, 'five thousand five hundred one'); INSERT INTO t3 VALUES(19613, 77281, 'seventy-seven thousand two hundred eighty-one'); INSERT INTO t3 VALUES(19614, 31446, 'thirty-one thousand four hundred forty-six'); INSERT INTO t3 VALUES(19615, 13030, 'thirteen thousand thirty'); INSERT INTO t3 VALUES(19616, 99772, 'ninety-nine thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(19617, 74603, 'seventy-four thousand six hundred three'); INSERT INTO t3 VALUES(19618, 79584, 'seventy-nine thousand five hundred eighty-four'); INSERT INTO t3 VALUES(19619, 70165, 'seventy thousand one hundred sixty-five'); INSERT INTO t3 VALUES(19620, 19582, 'nineteen thousand five hundred eighty-two'); INSERT INTO t3 VALUES(19621, 84299, 'eighty-four thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(19622, 39072, 'thirty-nine thousand seventy-two'); INSERT INTO t3 VALUES(19623, 90871, 'ninety thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(19624, 10223, 'ten thousand two hundred twenty-three'); INSERT INTO t3 VALUES(19625, 13913, 'thirteen thousand nine hundred thirteen'); INSERT INTO t3 VALUES(19626, 66601, 'sixty-six thousand six hundred one'); INSERT INTO t3 VALUES(19627, 71461, 'seventy-one thousand four hundred sixty-one'); INSERT INTO t3 VALUES(19628, 63563, 'sixty-three thousand five hundred sixty-three'); INSERT INTO t3 VALUES(19629, 18564, 'eighteen thousand five hundred sixty-four'); INSERT INTO t3 VALUES(19630, 49072, 'forty-nine thousand seventy-two'); INSERT INTO t3 VALUES(19631, 18366, 'eighteen thousand three hundred sixty-six'); INSERT INTO t3 VALUES(19632, 20203, 'twenty thousand two hundred three'); INSERT INTO t3 VALUES(19633, 85191, 'eighty-five thousand one hundred ninety-one'); INSERT INTO t3 VALUES(19634, 1383, 'one thousand three hundred eighty-three'); INSERT INTO t3 VALUES(19635, 38597, 'thirty-eight thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(19636, 47337, 'forty-seven thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(19637, 55480, 'fifty-five thousand four hundred eighty'); INSERT INTO t3 VALUES(19638, 32288, 'thirty-two thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(19639, 37063, 'thirty-seven thousand sixty-three'); INSERT INTO t3 VALUES(19640, 10462, 'ten thousand four hundred sixty-two'); INSERT INTO t3 VALUES(19641, 8688, 'eight thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(19642, 39222, 'thirty-nine thousand two hundred twenty-two'); INSERT INTO t3 VALUES(19643, 54962, 'fifty-four thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(19644, 77710, 'seventy-seven thousand seven hundred ten'); INSERT INTO t3 VALUES(19645, 43534, 'forty-three thousand five hundred thirty-four'); INSERT INTO t3 VALUES(19646, 24987, 'twenty-four thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(19647, 85361, 'eighty-five thousand three hundred sixty-one'); INSERT INTO t3 VALUES(19648, 30092, 'thirty thousand ninety-two'); INSERT INTO t3 VALUES(19649, 43636, 'forty-three thousand six hundred thirty-six'); INSERT INTO t3 VALUES(19650, 26230, 'twenty-six thousand two hundred thirty'); INSERT INTO t3 VALUES(19651, 84234, 'eighty-four thousand two hundred thirty-four'); INSERT INTO t3 VALUES(19652, 32251, 'thirty-two thousand two hundred fifty-one'); INSERT INTO t3 VALUES(19653, 882, 'eight hundred eighty-two'); INSERT INTO t3 VALUES(19654, 92107, 'ninety-two thousand one hundred seven'); INSERT INTO t3 VALUES(19655, 99716, 'ninety-nine thousand seven hundred sixteen'); INSERT INTO t3 VALUES(19656, 50542, 'fifty thousand five hundred forty-two'); INSERT INTO t3 VALUES(19657, 45478, 'forty-five thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(19658, 38320, 'thirty-eight thousand three hundred twenty'); INSERT INTO t3 VALUES(19659, 15275, 'fifteen thousand two hundred seventy-five'); INSERT INTO t3 VALUES(19660, 23080, 'twenty-three thousand eighty'); INSERT INTO t3 VALUES(19661, 68580, 'sixty-eight thousand five hundred eighty'); INSERT INTO t3 VALUES(19662, 79123, 'seventy-nine thousand one hundred twenty-three'); INSERT INTO t3 VALUES(19663, 97516, 'ninety-seven thousand five hundred sixteen'); INSERT INTO t3 VALUES(19664, 59696, 'fifty-nine thousand six hundred ninety-six'); INSERT INTO t3 VALUES(19665, 25986, 'twenty-five thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(19666, 36244, 'thirty-six thousand two hundred forty-four'); INSERT INTO t3 VALUES(19667, 48938, 'forty-eight thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(19668, 61749, 'sixty-one thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(19669, 85629, 'eighty-five thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(19670, 27798, 'twenty-seven thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(19671, 60826, 'sixty thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(19672, 19402, 'nineteen thousand four hundred two'); INSERT INTO t3 VALUES(19673, 40330, 'forty thousand three hundred thirty'); INSERT INTO t3 VALUES(19674, 88833, 'eighty-eight thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(19675, 77860, 'seventy-seven thousand eight hundred sixty'); INSERT INTO t3 VALUES(19676, 66794, 'sixty-six thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(19677, 36817, 'thirty-six thousand eight hundred seventeen'); INSERT INTO t3 VALUES(19678, 67337, 'sixty-seven thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(19679, 8582, 'eight thousand five hundred eighty-two'); INSERT INTO t3 VALUES(19680, 88205, 'eighty-eight thousand two hundred five'); INSERT INTO t3 VALUES(19681, 42375, 'forty-two thousand three hundred seventy-five'); INSERT INTO t3 VALUES(19682, 52953, 'fifty-two thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(19683, 98214, 'ninety-eight thousand two hundred fourteen'); INSERT INTO t3 VALUES(19684, 44401, 'forty-four thousand four hundred one'); INSERT INTO t3 VALUES(19685, 39133, 'thirty-nine thousand one hundred thirty-three'); INSERT INTO t3 VALUES(19686, 39340, 'thirty-nine thousand three hundred forty'); INSERT INTO t3 VALUES(19687, 21943, 'twenty-one thousand nine hundred forty-three'); INSERT INTO t3 VALUES(19688, 33226, 'thirty-three thousand two hundred twenty-six'); INSERT INTO t3 VALUES(19689, 94784, 'ninety-four thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(19690, 50677, 'fifty thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(19691, 60817, 'sixty thousand eight hundred seventeen'); INSERT INTO t3 VALUES(19692, 2026, 'two thousand twenty-six'); INSERT INTO t3 VALUES(19693, 90895, 'ninety thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(19694, 86422, 'eighty-six thousand four hundred twenty-two'); INSERT INTO t3 VALUES(19695, 83445, 'eighty-three thousand four hundred forty-five'); INSERT INTO t3 VALUES(19696, 65549, 'sixty-five thousand five hundred forty-nine'); INSERT INTO t3 VALUES(19697, 28657, 'twenty-eight thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(19698, 98125, 'ninety-eight thousand one hundred twenty-five'); INSERT INTO t3 VALUES(19699, 67725, 'sixty-seven thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(19700, 12133, 'twelve thousand one hundred thirty-three'); INSERT INTO t3 VALUES(19701, 9044, 'nine thousand forty-four'); INSERT INTO t3 VALUES(19702, 67802, 'sixty-seven thousand eight hundred two'); INSERT INTO t3 VALUES(19703, 71589, 'seventy-one thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(19704, 79185, 'seventy-nine thousand one hundred eighty-five'); INSERT INTO t3 VALUES(19705, 63241, 'sixty-three thousand two hundred forty-one'); INSERT INTO t3 VALUES(19706, 85620, 'eighty-five thousand six hundred twenty'); INSERT INTO t3 VALUES(19707, 17780, 'seventeen thousand seven hundred eighty'); INSERT INTO t3 VALUES(19708, 89943, 'eighty-nine thousand nine hundred forty-three'); INSERT INTO t3 VALUES(19709, 14640, 'fourteen thousand six hundred forty'); INSERT INTO t3 VALUES(19710, 45665, 'forty-five thousand six hundred sixty-five'); INSERT INTO t3 VALUES(19711, 85205, 'eighty-five thousand two hundred five'); INSERT INTO t3 VALUES(19712, 10290, 'ten thousand two hundred ninety'); INSERT INTO t3 VALUES(19713, 45735, 'forty-five thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(19714, 80588, 'eighty thousand five hundred eighty-eight'); INSERT INTO t3 VALUES(19715, 15032, 'fifteen thousand thirty-two'); INSERT INTO t3 VALUES(19716, 33082, 'thirty-three thousand eighty-two'); INSERT INTO t3 VALUES(19717, 55344, 'fifty-five thousand three hundred forty-four'); INSERT INTO t3 VALUES(19718, 17423, 'seventeen thousand four hundred twenty-three'); INSERT INTO t3 VALUES(19719, 75379, 'seventy-five thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(19720, 2893, 'two thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(19721, 66038, 'sixty-six thousand thirty-eight'); INSERT INTO t3 VALUES(19722, 82191, 'eighty-two thousand one hundred ninety-one'); INSERT INTO t3 VALUES(19723, 48842, 'forty-eight thousand eight hundred forty-two'); INSERT INTO t3 VALUES(19724, 31711, 'thirty-one thousand seven hundred eleven'); INSERT INTO t3 VALUES(19725, 93787, 'ninety-three thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(19726, 25164, 'twenty-five thousand one hundred sixty-four'); INSERT INTO t3 VALUES(19727, 96793, 'ninety-six thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(19728, 28407, 'twenty-eight thousand four hundred seven'); INSERT INTO t3 VALUES(19729, 52847, 'fifty-two thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(19730, 49130, 'forty-nine thousand one hundred thirty'); INSERT INTO t3 VALUES(19731, 46686, 'forty-six thousand six hundred eighty-six'); INSERT INTO t3 VALUES(19732, 96039, 'ninety-six thousand thirty-nine'); INSERT INTO t3 VALUES(19733, 61381, 'sixty-one thousand three hundred eighty-one'); INSERT INTO t3 VALUES(19734, 53597, 'fifty-three thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(19735, 23959, 'twenty-three thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(19736, 61829, 'sixty-one thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(19737, 81176, 'eighty-one thousand one hundred seventy-six'); INSERT INTO t3 VALUES(19738, 43831, 'forty-three thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(19739, 7036, 'seven thousand thirty-six'); INSERT INTO t3 VALUES(19740, 32322, 'thirty-two thousand three hundred twenty-two'); INSERT INTO t3 VALUES(19741, 37934, 'thirty-seven thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(19742, 66758, 'sixty-six thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(19743, 45174, 'forty-five thousand one hundred seventy-four'); INSERT INTO t3 VALUES(19744, 83864, 'eighty-three thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(19745, 75121, 'seventy-five thousand one hundred twenty-one'); INSERT INTO t3 VALUES(19746, 15547, 'fifteen thousand five hundred forty-seven'); INSERT INTO t3 VALUES(19747, 42879, 'forty-two thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(19748, 59338, 'fifty-nine thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(19749, 83235, 'eighty-three thousand two hundred thirty-five'); INSERT INTO t3 VALUES(19750, 81696, 'eighty-one thousand six hundred ninety-six'); INSERT INTO t3 VALUES(19751, 81932, 'eighty-one thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(19752, 82448, 'eighty-two thousand four hundred forty-eight'); INSERT INTO t3 VALUES(19753, 18173, 'eighteen thousand one hundred seventy-three'); INSERT INTO t3 VALUES(19754, 39948, 'thirty-nine thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(19755, 9960, 'nine thousand nine hundred sixty'); INSERT INTO t3 VALUES(19756, 13506, 'thirteen thousand five hundred six'); INSERT INTO t3 VALUES(19757, 69330, 'sixty-nine thousand three hundred thirty'); INSERT INTO t3 VALUES(19758, 41610, 'forty-one thousand six hundred ten'); INSERT INTO t3 VALUES(19759, 10375, 'ten thousand three hundred seventy-five'); INSERT INTO t3 VALUES(19760, 12254, 'twelve thousand two hundred fifty-four'); INSERT INTO t3 VALUES(19761, 27022, 'twenty-seven thousand twenty-two'); INSERT INTO t3 VALUES(19762, 21672, 'twenty-one thousand six hundred seventy-two'); INSERT INTO t3 VALUES(19763, 97924, 'ninety-seven thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(19764, 21275, 'twenty-one thousand two hundred seventy-five'); INSERT INTO t3 VALUES(19765, 41434, 'forty-one thousand four hundred thirty-four'); INSERT INTO t3 VALUES(19766, 67561, 'sixty-seven thousand five hundred sixty-one'); INSERT INTO t3 VALUES(19767, 29913, 'twenty-nine thousand nine hundred thirteen'); INSERT INTO t3 VALUES(19768, 2251, 'two thousand two hundred fifty-one'); INSERT INTO t3 VALUES(19769, 86272, 'eighty-six thousand two hundred seventy-two'); INSERT INTO t3 VALUES(19770, 27018, 'twenty-seven thousand eighteen'); INSERT INTO t3 VALUES(19771, 60262, 'sixty thousand two hundred sixty-two'); INSERT INTO t3 VALUES(19772, 88037, 'eighty-eight thousand thirty-seven'); INSERT INTO t3 VALUES(19773, 94890, 'ninety-four thousand eight hundred ninety'); INSERT INTO t3 VALUES(19774, 58644, 'fifty-eight thousand six hundred forty-four'); INSERT INTO t3 VALUES(19775, 31719, 'thirty-one thousand seven hundred nineteen'); INSERT INTO t3 VALUES(19776, 23190, 'twenty-three thousand one hundred ninety'); INSERT INTO t3 VALUES(19777, 82442, 'eighty-two thousand four hundred forty-two'); INSERT INTO t3 VALUES(19778, 20141, 'twenty thousand one hundred forty-one'); INSERT INTO t3 VALUES(19779, 70728, 'seventy thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(19780, 83587, 'eighty-three thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(19781, 60129, 'sixty thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(19782, 70021, 'seventy thousand twenty-one'); INSERT INTO t3 VALUES(19783, 62802, 'sixty-two thousand eight hundred two'); INSERT INTO t3 VALUES(19784, 78640, 'seventy-eight thousand six hundred forty'); INSERT INTO t3 VALUES(19785, 90621, 'ninety thousand six hundred twenty-one'); INSERT INTO t3 VALUES(19786, 31976, 'thirty-one thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(19787, 37063, 'thirty-seven thousand sixty-three'); INSERT INTO t3 VALUES(19788, 62699, 'sixty-two thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(19789, 6977, 'six thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(19790, 51912, 'fifty-one thousand nine hundred twelve'); INSERT INTO t3 VALUES(19791, 90446, 'ninety thousand four hundred forty-six'); INSERT INTO t3 VALUES(19792, 1478, 'one thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(19793, 72252, 'seventy-two thousand two hundred fifty-two'); INSERT INTO t3 VALUES(19794, 47687, 'forty-seven thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(19795, 65765, 'sixty-five thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(19796, 61418, 'sixty-one thousand four hundred eighteen'); INSERT INTO t3 VALUES(19797, 72313, 'seventy-two thousand three hundred thirteen'); INSERT INTO t3 VALUES(19798, 90370, 'ninety thousand three hundred seventy'); INSERT INTO t3 VALUES(19799, 1015, 'one thousand fifteen'); INSERT INTO t3 VALUES(19800, 18947, 'eighteen thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(19801, 17851, 'seventeen thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(19802, 1129, 'one thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(19803, 15667, 'fifteen thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(19804, 50535, 'fifty thousand five hundred thirty-five'); INSERT INTO t3 VALUES(19805, 70946, 'seventy thousand nine hundred forty-six'); INSERT INTO t3 VALUES(19806, 70067, 'seventy thousand sixty-seven'); INSERT INTO t3 VALUES(19807, 2556, 'two thousand five hundred fifty-six'); INSERT INTO t3 VALUES(19808, 39882, 'thirty-nine thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(19809, 14889, 'fourteen thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(19810, 44477, 'forty-four thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(19811, 86763, 'eighty-six thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(19812, 5665, 'five thousand six hundred sixty-five'); INSERT INTO t3 VALUES(19813, 94413, 'ninety-four thousand four hundred thirteen'); INSERT INTO t3 VALUES(19814, 84967, 'eighty-four thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(19815, 72708, 'seventy-two thousand seven hundred eight'); INSERT INTO t3 VALUES(19816, 59377, 'fifty-nine thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(19817, 25755, 'twenty-five thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(19818, 85276, 'eighty-five thousand two hundred seventy-six'); INSERT INTO t3 VALUES(19819, 37133, 'thirty-seven thousand one hundred thirty-three'); INSERT INTO t3 VALUES(19820, 32899, 'thirty-two thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(19821, 46888, 'forty-six thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(19822, 37400, 'thirty-seven thousand four hundred'); INSERT INTO t3 VALUES(19823, 31553, 'thirty-one thousand five hundred fifty-three'); INSERT INTO t3 VALUES(19824, 3975, 'three thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(19825, 60602, 'sixty thousand six hundred two'); INSERT INTO t3 VALUES(19826, 34809, 'thirty-four thousand eight hundred nine'); INSERT INTO t3 VALUES(19827, 93913, 'ninety-three thousand nine hundred thirteen'); INSERT INTO t3 VALUES(19828, 60955, 'sixty thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(19829, 38244, 'thirty-eight thousand two hundred forty-four'); INSERT INTO t3 VALUES(19830, 41871, 'forty-one thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(19831, 63818, 'sixty-three thousand eight hundred eighteen'); INSERT INTO t3 VALUES(19832, 71926, 'seventy-one thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(19833, 16497, 'sixteen thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(19834, 43479, 'forty-three thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(19835, 81730, 'eighty-one thousand seven hundred thirty'); INSERT INTO t3 VALUES(19836, 99727, 'ninety-nine thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(19837, 91659, 'ninety-one thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(19838, 28872, 'twenty-eight thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(19839, 89897, 'eighty-nine thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(19840, 30178, 'thirty thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(19841, 51585, 'fifty-one thousand five hundred eighty-five'); INSERT INTO t3 VALUES(19842, 69564, 'sixty-nine thousand five hundred sixty-four'); INSERT INTO t3 VALUES(19843, 63977, 'sixty-three thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(19844, 92869, 'ninety-two thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(19845, 94104, 'ninety-four thousand one hundred four'); INSERT INTO t3 VALUES(19846, 62170, 'sixty-two thousand one hundred seventy'); INSERT INTO t3 VALUES(19847, 21038, 'twenty-one thousand thirty-eight'); INSERT INTO t3 VALUES(19848, 40153, 'forty thousand one hundred fifty-three'); INSERT INTO t3 VALUES(19849, 58743, 'fifty-eight thousand seven hundred forty-three'); INSERT INTO t3 VALUES(19850, 87508, 'eighty-seven thousand five hundred eight'); INSERT INTO t3 VALUES(19851, 47657, 'forty-seven thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(19852, 8778, 'eight thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(19853, 19032, 'nineteen thousand thirty-two'); INSERT INTO t3 VALUES(19854, 97097, 'ninety-seven thousand ninety-seven'); INSERT INTO t3 VALUES(19855, 46159, 'forty-six thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(19856, 63827, 'sixty-three thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(19857, 26517, 'twenty-six thousand five hundred seventeen'); INSERT INTO t3 VALUES(19858, 36600, 'thirty-six thousand six hundred'); INSERT INTO t3 VALUES(19859, 84267, 'eighty-four thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(19860, 37159, 'thirty-seven thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(19861, 59740, 'fifty-nine thousand seven hundred forty'); INSERT INTO t3 VALUES(19862, 73271, 'seventy-three thousand two hundred seventy-one'); INSERT INTO t3 VALUES(19863, 28873, 'twenty-eight thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(19864, 91438, 'ninety-one thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(19865, 20923, 'twenty thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(19866, 27148, 'twenty-seven thousand one hundred forty-eight'); INSERT INTO t3 VALUES(19867, 64999, 'sixty-four thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(19868, 34313, 'thirty-four thousand three hundred thirteen'); INSERT INTO t3 VALUES(19869, 12471, 'twelve thousand four hundred seventy-one'); INSERT INTO t3 VALUES(19870, 73301, 'seventy-three thousand three hundred one'); INSERT INTO t3 VALUES(19871, 34869, 'thirty-four thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(19872, 61468, 'sixty-one thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(19873, 15136, 'fifteen thousand one hundred thirty-six'); INSERT INTO t3 VALUES(19874, 15382, 'fifteen thousand three hundred eighty-two'); INSERT INTO t3 VALUES(19875, 46431, 'forty-six thousand four hundred thirty-one'); INSERT INTO t3 VALUES(19876, 52555, 'fifty-two thousand five hundred fifty-five'); INSERT INTO t3 VALUES(19877, 92447, 'ninety-two thousand four hundred forty-seven'); INSERT INTO t3 VALUES(19878, 92426, 'ninety-two thousand four hundred twenty-six'); INSERT INTO t3 VALUES(19879, 2934, 'two thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(19880, 35780, 'thirty-five thousand seven hundred eighty'); INSERT INTO t3 VALUES(19881, 65149, 'sixty-five thousand one hundred forty-nine'); INSERT INTO t3 VALUES(19882, 99341, 'ninety-nine thousand three hundred forty-one'); INSERT INTO t3 VALUES(19883, 34445, 'thirty-four thousand four hundred forty-five'); INSERT INTO t3 VALUES(19884, 6659, 'six thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(19885, 49294, 'forty-nine thousand two hundred ninety-four'); INSERT INTO t3 VALUES(19886, 70129, 'seventy thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(19887, 52160, 'fifty-two thousand one hundred sixty'); INSERT INTO t3 VALUES(19888, 9256, 'nine thousand two hundred fifty-six'); INSERT INTO t3 VALUES(19889, 27420, 'twenty-seven thousand four hundred twenty'); INSERT INTO t3 VALUES(19890, 85105, 'eighty-five thousand one hundred five'); INSERT INTO t3 VALUES(19891, 88313, 'eighty-eight thousand three hundred thirteen'); INSERT INTO t3 VALUES(19892, 94589, 'ninety-four thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(19893, 50596, 'fifty thousand five hundred ninety-six'); INSERT INTO t3 VALUES(19894, 1419, 'one thousand four hundred nineteen'); INSERT INTO t3 VALUES(19895, 98933, 'ninety-eight thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(19896, 23016, 'twenty-three thousand sixteen'); INSERT INTO t3 VALUES(19897, 33872, 'thirty-three thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(19898, 8746, 'eight thousand seven hundred forty-six'); INSERT INTO t3 VALUES(19899, 60781, 'sixty thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(19900, 57197, 'fifty-seven thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(19901, 48381, 'forty-eight thousand three hundred eighty-one'); INSERT INTO t3 VALUES(19902, 36376, 'thirty-six thousand three hundred seventy-six'); INSERT INTO t3 VALUES(19903, 40747, 'forty thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(19904, 93661, 'ninety-three thousand six hundred sixty-one'); INSERT INTO t3 VALUES(19905, 39503, 'thirty-nine thousand five hundred three'); INSERT INTO t3 VALUES(19906, 75834, 'seventy-five thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(19907, 39896, 'thirty-nine thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(19908, 21524, 'twenty-one thousand five hundred twenty-four'); INSERT INTO t3 VALUES(19909, 28841, 'twenty-eight thousand eight hundred forty-one'); INSERT INTO t3 VALUES(19910, 84599, 'eighty-four thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(19911, 67626, 'sixty-seven thousand six hundred twenty-six'); INSERT INTO t3 VALUES(19912, 14462, 'fourteen thousand four hundred sixty-two'); INSERT INTO t3 VALUES(19913, 34477, 'thirty-four thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(19914, 73679, 'seventy-three thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(19915, 58623, 'fifty-eight thousand six hundred twenty-three'); INSERT INTO t3 VALUES(19916, 44535, 'forty-four thousand five hundred thirty-five'); INSERT INTO t3 VALUES(19917, 42057, 'forty-two thousand fifty-seven'); INSERT INTO t3 VALUES(19918, 50415, 'fifty thousand four hundred fifteen'); INSERT INTO t3 VALUES(19919, 56208, 'fifty-six thousand two hundred eight'); INSERT INTO t3 VALUES(19920, 60080, 'sixty thousand eighty'); INSERT INTO t3 VALUES(19921, 61892, 'sixty-one thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(19922, 2953, 'two thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(19923, 56019, 'fifty-six thousand nineteen'); INSERT INTO t3 VALUES(19924, 3443, 'three thousand four hundred forty-three'); INSERT INTO t3 VALUES(19925, 15304, 'fifteen thousand three hundred four'); INSERT INTO t3 VALUES(19926, 11900, 'eleven thousand nine hundred'); INSERT INTO t3 VALUES(19927, 82593, 'eighty-two thousand five hundred ninety-three'); INSERT INTO t3 VALUES(19928, 65750, 'sixty-five thousand seven hundred fifty'); INSERT INTO t3 VALUES(19929, 57487, 'fifty-seven thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(19930, 49996, 'forty-nine thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(19931, 25910, 'twenty-five thousand nine hundred ten'); INSERT INTO t3 VALUES(19932, 37419, 'thirty-seven thousand four hundred nineteen'); INSERT INTO t3 VALUES(19933, 51058, 'fifty-one thousand fifty-eight'); INSERT INTO t3 VALUES(19934, 47063, 'forty-seven thousand sixty-three'); INSERT INTO t3 VALUES(19935, 65359, 'sixty-five thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(19936, 21441, 'twenty-one thousand four hundred forty-one'); INSERT INTO t3 VALUES(19937, 10523, 'ten thousand five hundred twenty-three'); INSERT INTO t3 VALUES(19938, 93248, 'ninety-three thousand two hundred forty-eight'); INSERT INTO t3 VALUES(19939, 40118, 'forty thousand one hundred eighteen'); INSERT INTO t3 VALUES(19940, 13415, 'thirteen thousand four hundred fifteen'); INSERT INTO t3 VALUES(19941, 71686, 'seventy-one thousand six hundred eighty-six'); INSERT INTO t3 VALUES(19942, 23126, 'twenty-three thousand one hundred twenty-six'); INSERT INTO t3 VALUES(19943, 20988, 'twenty thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(19944, 96562, 'ninety-six thousand five hundred sixty-two'); INSERT INTO t3 VALUES(19945, 46135, 'forty-six thousand one hundred thirty-five'); INSERT INTO t3 VALUES(19946, 87688, 'eighty-seven thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(19947, 20017, 'twenty thousand seventeen'); INSERT INTO t3 VALUES(19948, 64558, 'sixty-four thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(19949, 29409, 'twenty-nine thousand four hundred nine'); INSERT INTO t3 VALUES(19950, 81852, 'eighty-one thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(19951, 50508, 'fifty thousand five hundred eight'); INSERT INTO t3 VALUES(19952, 70948, 'seventy thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(19953, 49295, 'forty-nine thousand two hundred ninety-five'); INSERT INTO t3 VALUES(19954, 14605, 'fourteen thousand six hundred five'); INSERT INTO t3 VALUES(19955, 58637, 'fifty-eight thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(19956, 67154, 'sixty-seven thousand one hundred fifty-four'); INSERT INTO t3 VALUES(19957, 29958, 'twenty-nine thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(19958, 43635, 'forty-three thousand six hundred thirty-five'); INSERT INTO t3 VALUES(19959, 45428, 'forty-five thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(19960, 77933, 'seventy-seven thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(19961, 39866, 'thirty-nine thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(19962, 1300, 'one thousand three hundred'); INSERT INTO t3 VALUES(19963, 71768, 'seventy-one thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(19964, 9086, 'nine thousand eighty-six'); INSERT INTO t3 VALUES(19965, 81277, 'eighty-one thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(19966, 79415, 'seventy-nine thousand four hundred fifteen'); INSERT INTO t3 VALUES(19967, 31317, 'thirty-one thousand three hundred seventeen'); INSERT INTO t3 VALUES(19968, 34975, 'thirty-four thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(19969, 72187, 'seventy-two thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(19970, 59586, 'fifty-nine thousand five hundred eighty-six'); INSERT INTO t3 VALUES(19971, 61657, 'sixty-one thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(19972, 50029, 'fifty thousand twenty-nine'); INSERT INTO t3 VALUES(19973, 33323, 'thirty-three thousand three hundred twenty-three'); INSERT INTO t3 VALUES(19974, 30487, 'thirty thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(19975, 92473, 'ninety-two thousand four hundred seventy-three'); INSERT INTO t3 VALUES(19976, 39835, 'thirty-nine thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(19977, 93597, 'ninety-three thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(19978, 97398, 'ninety-seven thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(19979, 52199, 'fifty-two thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(19980, 89086, 'eighty-nine thousand eighty-six'); INSERT INTO t3 VALUES(19981, 88142, 'eighty-eight thousand one hundred forty-two'); INSERT INTO t3 VALUES(19982, 8792, 'eight thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(19983, 27822, 'twenty-seven thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(19984, 47446, 'forty-seven thousand four hundred forty-six'); INSERT INTO t3 VALUES(19985, 56479, 'fifty-six thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(19986, 11341, 'eleven thousand three hundred forty-one'); INSERT INTO t3 VALUES(19987, 69157, 'sixty-nine thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(19988, 96921, 'ninety-six thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(19989, 68806, 'sixty-eight thousand eight hundred six'); INSERT INTO t3 VALUES(19990, 59805, 'fifty-nine thousand eight hundred five'); INSERT INTO t3 VALUES(19991, 46439, 'forty-six thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(19992, 9872, 'nine thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(19993, 10598, 'ten thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(19994, 22692, 'twenty-two thousand six hundred ninety-two'); INSERT INTO t3 VALUES(19995, 72003, 'seventy-two thousand three'); INSERT INTO t3 VALUES(19996, 31972, 'thirty-one thousand nine hundred seventy-two'); INSERT INTO t3 VALUES(19997, 9513, 'nine thousand five hundred thirteen'); INSERT INTO t3 VALUES(19998, 85249, 'eighty-five thousand two hundred forty-nine'); INSERT INTO t3 VALUES(19999, 87644, 'eighty-seven thousand six hundred forty-four'); INSERT INTO t3 VALUES(20000, 18342, 'eighteen thousand three hundred forty-two'); INSERT INTO t3 VALUES(20001, 72862, 'seventy-two thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(20002, 27783, 'twenty-seven thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(20003, 49347, 'forty-nine thousand three hundred forty-seven'); INSERT INTO t3 VALUES(20004, 95687, 'ninety-five thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(20005, 87797, 'eighty-seven thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(20006, 14516, 'fourteen thousand five hundred sixteen'); INSERT INTO t3 VALUES(20007, 29523, 'twenty-nine thousand five hundred twenty-three'); INSERT INTO t3 VALUES(20008, 84355, 'eighty-four thousand three hundred fifty-five'); INSERT INTO t3 VALUES(20009, 22001, 'twenty-two thousand one'); INSERT INTO t3 VALUES(20010, 21492, 'twenty-one thousand four hundred ninety-two'); INSERT INTO t3 VALUES(20011, 27886, 'twenty-seven thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(20012, 39281, 'thirty-nine thousand two hundred eighty-one'); INSERT INTO t3 VALUES(20013, 78223, 'seventy-eight thousand two hundred twenty-three'); INSERT INTO t3 VALUES(20014, 84396, 'eighty-four thousand three hundred ninety-six'); INSERT INTO t3 VALUES(20015, 46422, 'forty-six thousand four hundred twenty-two'); INSERT INTO t3 VALUES(20016, 77705, 'seventy-seven thousand seven hundred five'); INSERT INTO t3 VALUES(20017, 79657, 'seventy-nine thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(20018, 29826, 'twenty-nine thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(20019, 64606, 'sixty-four thousand six hundred six'); INSERT INTO t3 VALUES(20020, 11440, 'eleven thousand four hundred forty'); INSERT INTO t3 VALUES(20021, 71914, 'seventy-one thousand nine hundred fourteen'); INSERT INTO t3 VALUES(20022, 7272, 'seven thousand two hundred seventy-two'); INSERT INTO t3 VALUES(20023, 35100, 'thirty-five thousand one hundred'); INSERT INTO t3 VALUES(20024, 80122, 'eighty thousand one hundred twenty-two'); INSERT INTO t3 VALUES(20025, 32695, 'thirty-two thousand six hundred ninety-five'); INSERT INTO t3 VALUES(20026, 42114, 'forty-two thousand one hundred fourteen'); INSERT INTO t3 VALUES(20027, 61052, 'sixty-one thousand fifty-two'); INSERT INTO t3 VALUES(20028, 67891, 'sixty-seven thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(20029, 72012, 'seventy-two thousand twelve'); INSERT INTO t3 VALUES(20030, 31745, 'thirty-one thousand seven hundred forty-five'); INSERT INTO t3 VALUES(20031, 24360, 'twenty-four thousand three hundred sixty'); INSERT INTO t3 VALUES(20032, 63286, 'sixty-three thousand two hundred eighty-six'); INSERT INTO t3 VALUES(20033, 1827, 'one thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(20034, 350, 'three hundred fifty'); INSERT INTO t3 VALUES(20035, 80110, 'eighty thousand one hundred ten'); INSERT INTO t3 VALUES(20036, 92311, 'ninety-two thousand three hundred eleven'); INSERT INTO t3 VALUES(20037, 19998, 'nineteen thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(20038, 20848, 'twenty thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(20039, 1933, 'one thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(20040, 37059, 'thirty-seven thousand fifty-nine'); INSERT INTO t3 VALUES(20041, 99283, 'ninety-nine thousand two hundred eighty-three'); INSERT INTO t3 VALUES(20042, 4257, 'four thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(20043, 55905, 'fifty-five thousand nine hundred five'); INSERT INTO t3 VALUES(20044, 22092, 'twenty-two thousand ninety-two'); INSERT INTO t3 VALUES(20045, 26126, 'twenty-six thousand one hundred twenty-six'); INSERT INTO t3 VALUES(20046, 59006, 'fifty-nine thousand six'); INSERT INTO t3 VALUES(20047, 89616, 'eighty-nine thousand six hundred sixteen'); INSERT INTO t3 VALUES(20048, 37275, 'thirty-seven thousand two hundred seventy-five'); INSERT INTO t3 VALUES(20049, 63717, 'sixty-three thousand seven hundred seventeen'); INSERT INTO t3 VALUES(20050, 43823, 'forty-three thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(20051, 23976, 'twenty-three thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(20052, 16387, 'sixteen thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(20053, 12225, 'twelve thousand two hundred twenty-five'); INSERT INTO t3 VALUES(20054, 12405, 'twelve thousand four hundred five'); INSERT INTO t3 VALUES(20055, 49729, 'forty-nine thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(20056, 74226, 'seventy-four thousand two hundred twenty-six'); INSERT INTO t3 VALUES(20057, 60049, 'sixty thousand forty-nine'); INSERT INTO t3 VALUES(20058, 81561, 'eighty-one thousand five hundred sixty-one'); INSERT INTO t3 VALUES(20059, 44020, 'forty-four thousand twenty'); INSERT INTO t3 VALUES(20060, 86626, 'eighty-six thousand six hundred twenty-six'); INSERT INTO t3 VALUES(20061, 16821, 'sixteen thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(20062, 25113, 'twenty-five thousand one hundred thirteen'); INSERT INTO t3 VALUES(20063, 12880, 'twelve thousand eight hundred eighty'); INSERT INTO t3 VALUES(20064, 74147, 'seventy-four thousand one hundred forty-seven'); INSERT INTO t3 VALUES(20065, 97826, 'ninety-seven thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(20066, 45166, 'forty-five thousand one hundred sixty-six'); INSERT INTO t3 VALUES(20067, 91066, 'ninety-one thousand sixty-six'); INSERT INTO t3 VALUES(20068, 89402, 'eighty-nine thousand four hundred two'); INSERT INTO t3 VALUES(20069, 89113, 'eighty-nine thousand one hundred thirteen'); INSERT INTO t3 VALUES(20070, 8, 'eight'); INSERT INTO t3 VALUES(20071, 39403, 'thirty-nine thousand four hundred three'); INSERT INTO t3 VALUES(20072, 7215, 'seven thousand two hundred fifteen'); INSERT INTO t3 VALUES(20073, 47610, 'forty-seven thousand six hundred ten'); INSERT INTO t3 VALUES(20074, 88159, 'eighty-eight thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(20075, 40010, 'forty thousand ten'); INSERT INTO t3 VALUES(20076, 11713, 'eleven thousand seven hundred thirteen'); INSERT INTO t3 VALUES(20077, 58482, 'fifty-eight thousand four hundred eighty-two'); INSERT INTO t3 VALUES(20078, 23014, 'twenty-three thousand fourteen'); INSERT INTO t3 VALUES(20079, 89282, 'eighty-nine thousand two hundred eighty-two'); INSERT INTO t3 VALUES(20080, 20917, 'twenty thousand nine hundred seventeen'); INSERT INTO t3 VALUES(20081, 58392, 'fifty-eight thousand three hundred ninety-two'); INSERT INTO t3 VALUES(20082, 14355, 'fourteen thousand three hundred fifty-five'); INSERT INTO t3 VALUES(20083, 29034, 'twenty-nine thousand thirty-four'); INSERT INTO t3 VALUES(20084, 81063, 'eighty-one thousand sixty-three'); INSERT INTO t3 VALUES(20085, 49923, 'forty-nine thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(20086, 48645, 'forty-eight thousand six hundred forty-five'); INSERT INTO t3 VALUES(20087, 59887, 'fifty-nine thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(20088, 48516, 'forty-eight thousand five hundred sixteen'); INSERT INTO t3 VALUES(20089, 75736, 'seventy-five thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(20090, 9612, 'nine thousand six hundred twelve'); INSERT INTO t3 VALUES(20091, 97975, 'ninety-seven thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(20092, 88628, 'eighty-eight thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(20093, 29287, 'twenty-nine thousand two hundred eighty-seven'); INSERT INTO t3 VALUES(20094, 3449, 'three thousand four hundred forty-nine'); INSERT INTO t3 VALUES(20095, 31607, 'thirty-one thousand six hundred seven'); INSERT INTO t3 VALUES(20096, 73131, 'seventy-three thousand one hundred thirty-one'); INSERT INTO t3 VALUES(20097, 4960, 'four thousand nine hundred sixty'); INSERT INTO t3 VALUES(20098, 14549, 'fourteen thousand five hundred forty-nine'); INSERT INTO t3 VALUES(20099, 40715, 'forty thousand seven hundred fifteen'); INSERT INTO t3 VALUES(20100, 48079, 'forty-eight thousand seventy-nine'); INSERT INTO t3 VALUES(20101, 16078, 'sixteen thousand seventy-eight'); INSERT INTO t3 VALUES(20102, 34676, 'thirty-four thousand six hundred seventy-six'); INSERT INTO t3 VALUES(20103, 63067, 'sixty-three thousand sixty-seven'); INSERT INTO t3 VALUES(20104, 96366, 'ninety-six thousand three hundred sixty-six'); INSERT INTO t3 VALUES(20105, 52984, 'fifty-two thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(20106, 72429, 'seventy-two thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(20107, 48630, 'forty-eight thousand six hundred thirty'); INSERT INTO t3 VALUES(20108, 72547, 'seventy-two thousand five hundred forty-seven'); INSERT INTO t3 VALUES(20109, 48978, 'forty-eight thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(20110, 99021, 'ninety-nine thousand twenty-one'); INSERT INTO t3 VALUES(20111, 10349, 'ten thousand three hundred forty-nine'); INSERT INTO t3 VALUES(20112, 61108, 'sixty-one thousand one hundred eight'); INSERT INTO t3 VALUES(20113, 19567, 'nineteen thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(20114, 98076, 'ninety-eight thousand seventy-six'); INSERT INTO t3 VALUES(20115, 32649, 'thirty-two thousand six hundred forty-nine'); INSERT INTO t3 VALUES(20116, 89376, 'eighty-nine thousand three hundred seventy-six'); INSERT INTO t3 VALUES(20117, 80259, 'eighty thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(20118, 16508, 'sixteen thousand five hundred eight'); INSERT INTO t3 VALUES(20119, 40664, 'forty thousand six hundred sixty-four'); INSERT INTO t3 VALUES(20120, 64867, 'sixty-four thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(20121, 29464, 'twenty-nine thousand four hundred sixty-four'); INSERT INTO t3 VALUES(20122, 84123, 'eighty-four thousand one hundred twenty-three'); INSERT INTO t3 VALUES(20123, 10426, 'ten thousand four hundred twenty-six'); INSERT INTO t3 VALUES(20124, 97138, 'ninety-seven thousand one hundred thirty-eight'); INSERT INTO t3 VALUES(20125, 57609, 'fifty-seven thousand six hundred nine'); INSERT INTO t3 VALUES(20126, 68905, 'sixty-eight thousand nine hundred five'); INSERT INTO t3 VALUES(20127, 88566, 'eighty-eight thousand five hundred sixty-six'); INSERT INTO t3 VALUES(20128, 73735, 'seventy-three thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(20129, 84373, 'eighty-four thousand three hundred seventy-three'); INSERT INTO t3 VALUES(20130, 23240, 'twenty-three thousand two hundred forty'); INSERT INTO t3 VALUES(20131, 39150, 'thirty-nine thousand one hundred fifty'); INSERT INTO t3 VALUES(20132, 28464, 'twenty-eight thousand four hundred sixty-four'); INSERT INTO t3 VALUES(20133, 84955, 'eighty-four thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(20134, 32704, 'thirty-two thousand seven hundred four'); INSERT INTO t3 VALUES(20135, 22677, 'twenty-two thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(20136, 65463, 'sixty-five thousand four hundred sixty-three'); INSERT INTO t3 VALUES(20137, 9486, 'nine thousand four hundred eighty-six'); INSERT INTO t3 VALUES(20138, 13158, 'thirteen thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(20139, 91570, 'ninety-one thousand five hundred seventy'); INSERT INTO t3 VALUES(20140, 43322, 'forty-three thousand three hundred twenty-two'); INSERT INTO t3 VALUES(20141, 88949, 'eighty-eight thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(20142, 78149, 'seventy-eight thousand one hundred forty-nine'); INSERT INTO t3 VALUES(20143, 72529, 'seventy-two thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(20144, 3711, 'three thousand seven hundred eleven'); INSERT INTO t3 VALUES(20145, 8649, 'eight thousand six hundred forty-nine'); INSERT INTO t3 VALUES(20146, 23426, 'twenty-three thousand four hundred twenty-six'); INSERT INTO t3 VALUES(20147, 34679, 'thirty-four thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(20148, 81451, 'eighty-one thousand four hundred fifty-one'); INSERT INTO t3 VALUES(20149, 98709, 'ninety-eight thousand seven hundred nine'); INSERT INTO t3 VALUES(20150, 90607, 'ninety thousand six hundred seven'); INSERT INTO t3 VALUES(20151, 22375, 'twenty-two thousand three hundred seventy-five'); INSERT INTO t3 VALUES(20152, 8602, 'eight thousand six hundred two'); INSERT INTO t3 VALUES(20153, 42276, 'forty-two thousand two hundred seventy-six'); INSERT INTO t3 VALUES(20154, 52226, 'fifty-two thousand two hundred twenty-six'); INSERT INTO t3 VALUES(20155, 34057, 'thirty-four thousand fifty-seven'); INSERT INTO t3 VALUES(20156, 20944, 'twenty thousand nine hundred forty-four'); INSERT INTO t3 VALUES(20157, 29028, 'twenty-nine thousand twenty-eight'); INSERT INTO t3 VALUES(20158, 4897, 'four thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(20159, 81555, 'eighty-one thousand five hundred fifty-five'); INSERT INTO t3 VALUES(20160, 6222, 'six thousand two hundred twenty-two'); INSERT INTO t3 VALUES(20161, 34985, 'thirty-four thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(20162, 26548, 'twenty-six thousand five hundred forty-eight'); INSERT INTO t3 VALUES(20163, 74916, 'seventy-four thousand nine hundred sixteen'); INSERT INTO t3 VALUES(20164, 97934, 'ninety-seven thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(20165, 27026, 'twenty-seven thousand twenty-six'); INSERT INTO t3 VALUES(20166, 11742, 'eleven thousand seven hundred forty-two'); INSERT INTO t3 VALUES(20167, 1714, 'one thousand seven hundred fourteen'); INSERT INTO t3 VALUES(20168, 49035, 'forty-nine thousand thirty-five'); INSERT INTO t3 VALUES(20169, 51243, 'fifty-one thousand two hundred forty-three'); INSERT INTO t3 VALUES(20170, 66148, 'sixty-six thousand one hundred forty-eight'); INSERT INTO t3 VALUES(20171, 89710, 'eighty-nine thousand seven hundred ten'); INSERT INTO t3 VALUES(20172, 54029, 'fifty-four thousand twenty-nine'); INSERT INTO t3 VALUES(20173, 29283, 'twenty-nine thousand two hundred eighty-three'); INSERT INTO t3 VALUES(20174, 48651, 'forty-eight thousand six hundred fifty-one'); INSERT INTO t3 VALUES(20175, 15919, 'fifteen thousand nine hundred nineteen'); INSERT INTO t3 VALUES(20176, 87723, 'eighty-seven thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(20177, 68795, 'sixty-eight thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(20178, 67533, 'sixty-seven thousand five hundred thirty-three'); INSERT INTO t3 VALUES(20179, 80581, 'eighty thousand five hundred eighty-one'); INSERT INTO t3 VALUES(20180, 30384, 'thirty thousand three hundred eighty-four'); INSERT INTO t3 VALUES(20181, 45186, 'forty-five thousand one hundred eighty-six'); INSERT INTO t3 VALUES(20182, 67694, 'sixty-seven thousand six hundred ninety-four'); INSERT INTO t3 VALUES(20183, 29585, 'twenty-nine thousand five hundred eighty-five'); INSERT INTO t3 VALUES(20184, 34755, 'thirty-four thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(20185, 72418, 'seventy-two thousand four hundred eighteen'); INSERT INTO t3 VALUES(20186, 87034, 'eighty-seven thousand thirty-four'); INSERT INTO t3 VALUES(20187, 84495, 'eighty-four thousand four hundred ninety-five'); INSERT INTO t3 VALUES(20188, 97624, 'ninety-seven thousand six hundred twenty-four'); INSERT INTO t3 VALUES(20189, 869, 'eight hundred sixty-nine'); INSERT INTO t3 VALUES(20190, 90134, 'ninety thousand one hundred thirty-four'); INSERT INTO t3 VALUES(20191, 47882, 'forty-seven thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(20192, 14472, 'fourteen thousand four hundred seventy-two'); INSERT INTO t3 VALUES(20193, 39259, 'thirty-nine thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(20194, 73963, 'seventy-three thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(20195, 67132, 'sixty-seven thousand one hundred thirty-two'); INSERT INTO t3 VALUES(20196, 49969, 'forty-nine thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(20197, 77803, 'seventy-seven thousand eight hundred three'); INSERT INTO t3 VALUES(20198, 45476, 'forty-five thousand four hundred seventy-six'); INSERT INTO t3 VALUES(20199, 8426, 'eight thousand four hundred twenty-six'); INSERT INTO t3 VALUES(20200, 21633, 'twenty-one thousand six hundred thirty-three'); INSERT INTO t3 VALUES(20201, 69279, 'sixty-nine thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(20202, 27395, 'twenty-seven thousand three hundred ninety-five'); INSERT INTO t3 VALUES(20203, 97795, 'ninety-seven thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(20204, 30638, 'thirty thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(20205, 49290, 'forty-nine thousand two hundred ninety'); INSERT INTO t3 VALUES(20206, 56915, 'fifty-six thousand nine hundred fifteen'); INSERT INTO t3 VALUES(20207, 44696, 'forty-four thousand six hundred ninety-six'); INSERT INTO t3 VALUES(20208, 14745, 'fourteen thousand seven hundred forty-five'); INSERT INTO t3 VALUES(20209, 92913, 'ninety-two thousand nine hundred thirteen'); INSERT INTO t3 VALUES(20210, 37422, 'thirty-seven thousand four hundred twenty-two'); INSERT INTO t3 VALUES(20211, 65899, 'sixty-five thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(20212, 71968, 'seventy-one thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(20213, 89164, 'eighty-nine thousand one hundred sixty-four'); INSERT INTO t3 VALUES(20214, 66721, 'sixty-six thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(20215, 62756, 'sixty-two thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(20216, 83207, 'eighty-three thousand two hundred seven'); INSERT INTO t3 VALUES(20217, 4913, 'four thousand nine hundred thirteen'); INSERT INTO t3 VALUES(20218, 49123, 'forty-nine thousand one hundred twenty-three'); INSERT INTO t3 VALUES(20219, 69819, 'sixty-nine thousand eight hundred nineteen'); INSERT INTO t3 VALUES(20220, 70861, 'seventy thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(20221, 14788, 'fourteen thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(20222, 27661, 'twenty-seven thousand six hundred sixty-one'); INSERT INTO t3 VALUES(20223, 31164, 'thirty-one thousand one hundred sixty-four'); INSERT INTO t3 VALUES(20224, 85828, 'eighty-five thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(20225, 54919, 'fifty-four thousand nine hundred nineteen'); INSERT INTO t3 VALUES(20226, 98642, 'ninety-eight thousand six hundred forty-two'); INSERT INTO t3 VALUES(20227, 63960, 'sixty-three thousand nine hundred sixty'); INSERT INTO t3 VALUES(20228, 69879, 'sixty-nine thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(20229, 88180, 'eighty-eight thousand one hundred eighty'); INSERT INTO t3 VALUES(20230, 10061, 'ten thousand sixty-one'); INSERT INTO t3 VALUES(20231, 44878, 'forty-four thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(20232, 5789, 'five thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(20233, 10630, 'ten thousand six hundred thirty'); INSERT INTO t3 VALUES(20234, 92864, 'ninety-two thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(20235, 71520, 'seventy-one thousand five hundred twenty'); INSERT INTO t3 VALUES(20236, 59113, 'fifty-nine thousand one hundred thirteen'); INSERT INTO t3 VALUES(20237, 55590, 'fifty-five thousand five hundred ninety'); INSERT INTO t3 VALUES(20238, 41222, 'forty-one thousand two hundred twenty-two'); INSERT INTO t3 VALUES(20239, 27480, 'twenty-seven thousand four hundred eighty'); INSERT INTO t3 VALUES(20240, 50519, 'fifty thousand five hundred nineteen'); INSERT INTO t3 VALUES(20241, 94614, 'ninety-four thousand six hundred fourteen'); INSERT INTO t3 VALUES(20242, 57474, 'fifty-seven thousand four hundred seventy-four'); INSERT INTO t3 VALUES(20243, 67847, 'sixty-seven thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(20244, 31556, 'thirty-one thousand five hundred fifty-six'); INSERT INTO t3 VALUES(20245, 90532, 'ninety thousand five hundred thirty-two'); INSERT INTO t3 VALUES(20246, 69260, 'sixty-nine thousand two hundred sixty'); INSERT INTO t3 VALUES(20247, 48035, 'forty-eight thousand thirty-five'); INSERT INTO t3 VALUES(20248, 73504, 'seventy-three thousand five hundred four'); INSERT INTO t3 VALUES(20249, 78185, 'seventy-eight thousand one hundred eighty-five'); INSERT INTO t3 VALUES(20250, 40349, 'forty thousand three hundred forty-nine'); INSERT INTO t3 VALUES(20251, 74600, 'seventy-four thousand six hundred'); INSERT INTO t3 VALUES(20252, 47483, 'forty-seven thousand four hundred eighty-three'); INSERT INTO t3 VALUES(20253, 87093, 'eighty-seven thousand ninety-three'); INSERT INTO t3 VALUES(20254, 99883, 'ninety-nine thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(20255, 8908, 'eight thousand nine hundred eight'); INSERT INTO t3 VALUES(20256, 18853, 'eighteen thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(20257, 19762, 'nineteen thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(20258, 7302, 'seven thousand three hundred two'); INSERT INTO t3 VALUES(20259, 59806, 'fifty-nine thousand eight hundred six'); INSERT INTO t3 VALUES(20260, 59271, 'fifty-nine thousand two hundred seventy-one'); INSERT INTO t3 VALUES(20261, 45947, 'forty-five thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(20262, 1535, 'one thousand five hundred thirty-five'); INSERT INTO t3 VALUES(20263, 17297, 'seventeen thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(20264, 71649, 'seventy-one thousand six hundred forty-nine'); INSERT INTO t3 VALUES(20265, 30445, 'thirty thousand four hundred forty-five'); INSERT INTO t3 VALUES(20266, 18312, 'eighteen thousand three hundred twelve'); INSERT INTO t3 VALUES(20267, 12690, 'twelve thousand six hundred ninety'); INSERT INTO t3 VALUES(20268, 24478, 'twenty-four thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(20269, 66395, 'sixty-six thousand three hundred ninety-five'); INSERT INTO t3 VALUES(20270, 78133, 'seventy-eight thousand one hundred thirty-three'); INSERT INTO t3 VALUES(20271, 93571, 'ninety-three thousand five hundred seventy-one'); INSERT INTO t3 VALUES(20272, 31625, 'thirty-one thousand six hundred twenty-five'); INSERT INTO t3 VALUES(20273, 90725, 'ninety thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(20274, 62907, 'sixty-two thousand nine hundred seven'); INSERT INTO t3 VALUES(20275, 58476, 'fifty-eight thousand four hundred seventy-six'); INSERT INTO t3 VALUES(20276, 67476, 'sixty-seven thousand four hundred seventy-six'); INSERT INTO t3 VALUES(20277, 33733, 'thirty-three thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(20278, 87036, 'eighty-seven thousand thirty-six'); INSERT INTO t3 VALUES(20279, 58642, 'fifty-eight thousand six hundred forty-two'); INSERT INTO t3 VALUES(20280, 32142, 'thirty-two thousand one hundred forty-two'); INSERT INTO t3 VALUES(20281, 20472, 'twenty thousand four hundred seventy-two'); INSERT INTO t3 VALUES(20282, 76455, 'seventy-six thousand four hundred fifty-five'); INSERT INTO t3 VALUES(20283, 66648, 'sixty-six thousand six hundred forty-eight'); INSERT INTO t3 VALUES(20284, 19122, 'nineteen thousand one hundred twenty-two'); INSERT INTO t3 VALUES(20285, 49942, 'forty-nine thousand nine hundred forty-two'); INSERT INTO t3 VALUES(20286, 54128, 'fifty-four thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(20287, 76092, 'seventy-six thousand ninety-two'); INSERT INTO t3 VALUES(20288, 51461, 'fifty-one thousand four hundred sixty-one'); INSERT INTO t3 VALUES(20289, 92708, 'ninety-two thousand seven hundred eight'); INSERT INTO t3 VALUES(20290, 41224, 'forty-one thousand two hundred twenty-four'); INSERT INTO t3 VALUES(20291, 50772, 'fifty thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(20292, 25478, 'twenty-five thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(20293, 11329, 'eleven thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(20294, 68580, 'sixty-eight thousand five hundred eighty'); INSERT INTO t3 VALUES(20295, 58527, 'fifty-eight thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(20296, 307, 'three hundred seven'); INSERT INTO t3 VALUES(20297, 95577, 'ninety-five thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(20298, 99602, 'ninety-nine thousand six hundred two'); INSERT INTO t3 VALUES(20299, 74371, 'seventy-four thousand three hundred seventy-one'); INSERT INTO t3 VALUES(20300, 77802, 'seventy-seven thousand eight hundred two'); INSERT INTO t3 VALUES(20301, 14037, 'fourteen thousand thirty-seven'); INSERT INTO t3 VALUES(20302, 65270, 'sixty-five thousand two hundred seventy'); INSERT INTO t3 VALUES(20303, 83992, 'eighty-three thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(20304, 88705, 'eighty-eight thousand seven hundred five'); INSERT INTO t3 VALUES(20305, 65671, 'sixty-five thousand six hundred seventy-one'); INSERT INTO t3 VALUES(20306, 13563, 'thirteen thousand five hundred sixty-three'); INSERT INTO t3 VALUES(20307, 75158, 'seventy-five thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(20308, 32068, 'thirty-two thousand sixty-eight'); INSERT INTO t3 VALUES(20309, 64761, 'sixty-four thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(20310, 30331, 'thirty thousand three hundred thirty-one'); INSERT INTO t3 VALUES(20311, 40, 'forty'); INSERT INTO t3 VALUES(20312, 44317, 'forty-four thousand three hundred seventeen'); INSERT INTO t3 VALUES(20313, 17848, 'seventeen thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(20314, 51395, 'fifty-one thousand three hundred ninety-five'); INSERT INTO t3 VALUES(20315, 87078, 'eighty-seven thousand seventy-eight'); INSERT INTO t3 VALUES(20316, 73363, 'seventy-three thousand three hundred sixty-three'); INSERT INTO t3 VALUES(20317, 97750, 'ninety-seven thousand seven hundred fifty'); INSERT INTO t3 VALUES(20318, 64435, 'sixty-four thousand four hundred thirty-five'); INSERT INTO t3 VALUES(20319, 90450, 'ninety thousand four hundred fifty'); INSERT INTO t3 VALUES(20320, 75574, 'seventy-five thousand five hundred seventy-four'); INSERT INTO t3 VALUES(20321, 19960, 'nineteen thousand nine hundred sixty'); INSERT INTO t3 VALUES(20322, 74593, 'seventy-four thousand five hundred ninety-three'); INSERT INTO t3 VALUES(20323, 49745, 'forty-nine thousand seven hundred forty-five'); INSERT INTO t3 VALUES(20324, 44849, 'forty-four thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(20325, 30015, 'thirty thousand fifteen'); INSERT INTO t3 VALUES(20326, 78545, 'seventy-eight thousand five hundred forty-five'); INSERT INTO t3 VALUES(20327, 78699, 'seventy-eight thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(20328, 70392, 'seventy thousand three hundred ninety-two'); INSERT INTO t3 VALUES(20329, 21027, 'twenty-one thousand twenty-seven'); INSERT INTO t3 VALUES(20330, 77562, 'seventy-seven thousand five hundred sixty-two'); INSERT INTO t3 VALUES(20331, 11036, 'eleven thousand thirty-six'); INSERT INTO t3 VALUES(20332, 68284, 'sixty-eight thousand two hundred eighty-four'); INSERT INTO t3 VALUES(20333, 49430, 'forty-nine thousand four hundred thirty'); INSERT INTO t3 VALUES(20334, 96756, 'ninety-six thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(20335, 10476, 'ten thousand four hundred seventy-six'); INSERT INTO t3 VALUES(20336, 3721, 'three thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(20337, 87464, 'eighty-seven thousand four hundred sixty-four'); INSERT INTO t3 VALUES(20338, 86393, 'eighty-six thousand three hundred ninety-three'); INSERT INTO t3 VALUES(20339, 12371, 'twelve thousand three hundred seventy-one'); INSERT INTO t3 VALUES(20340, 31432, 'thirty-one thousand four hundred thirty-two'); INSERT INTO t3 VALUES(20341, 18890, 'eighteen thousand eight hundred ninety'); INSERT INTO t3 VALUES(20342, 25999, 'twenty-five thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(20343, 30466, 'thirty thousand four hundred sixty-six'); INSERT INTO t3 VALUES(20344, 23117, 'twenty-three thousand one hundred seventeen'); INSERT INTO t3 VALUES(20345, 54760, 'fifty-four thousand seven hundred sixty'); INSERT INTO t3 VALUES(20346, 50415, 'fifty thousand four hundred fifteen'); INSERT INTO t3 VALUES(20347, 41057, 'forty-one thousand fifty-seven'); INSERT INTO t3 VALUES(20348, 71802, 'seventy-one thousand eight hundred two'); INSERT INTO t3 VALUES(20349, 51995, 'fifty-one thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(20350, 16583, 'sixteen thousand five hundred eighty-three'); INSERT INTO t3 VALUES(20351, 89543, 'eighty-nine thousand five hundred forty-three'); INSERT INTO t3 VALUES(20352, 13374, 'thirteen thousand three hundred seventy-four'); INSERT INTO t3 VALUES(20353, 66932, 'sixty-six thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(20354, 99473, 'ninety-nine thousand four hundred seventy-three'); INSERT INTO t3 VALUES(20355, 48022, 'forty-eight thousand twenty-two'); INSERT INTO t3 VALUES(20356, 75867, 'seventy-five thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(20357, 61328, 'sixty-one thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(20358, 79963, 'seventy-nine thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(20359, 19830, 'nineteen thousand eight hundred thirty'); INSERT INTO t3 VALUES(20360, 19382, 'nineteen thousand three hundred eighty-two'); INSERT INTO t3 VALUES(20361, 93361, 'ninety-three thousand three hundred sixty-one'); INSERT INTO t3 VALUES(20362, 3755, 'three thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(20363, 62155, 'sixty-two thousand one hundred fifty-five'); INSERT INTO t3 VALUES(20364, 23116, 'twenty-three thousand one hundred sixteen'); INSERT INTO t3 VALUES(20365, 37229, 'thirty-seven thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(20366, 33044, 'thirty-three thousand forty-four'); INSERT INTO t3 VALUES(20367, 90842, 'ninety thousand eight hundred forty-two'); INSERT INTO t3 VALUES(20368, 41054, 'forty-one thousand fifty-four'); INSERT INTO t3 VALUES(20369, 1813, 'one thousand eight hundred thirteen'); INSERT INTO t3 VALUES(20370, 73985, 'seventy-three thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(20371, 43705, 'forty-three thousand seven hundred five'); INSERT INTO t3 VALUES(20372, 71838, 'seventy-one thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(20373, 84602, 'eighty-four thousand six hundred two'); INSERT INTO t3 VALUES(20374, 29630, 'twenty-nine thousand six hundred thirty'); INSERT INTO t3 VALUES(20375, 52846, 'fifty-two thousand eight hundred forty-six'); INSERT INTO t3 VALUES(20376, 92741, 'ninety-two thousand seven hundred forty-one'); INSERT INTO t3 VALUES(20377, 33094, 'thirty-three thousand ninety-four'); INSERT INTO t3 VALUES(20378, 76200, 'seventy-six thousand two hundred'); INSERT INTO t3 VALUES(20379, 65338, 'sixty-five thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(20380, 92689, 'ninety-two thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(20381, 85493, 'eighty-five thousand four hundred ninety-three'); INSERT INTO t3 VALUES(20382, 91242, 'ninety-one thousand two hundred forty-two'); INSERT INTO t3 VALUES(20383, 37067, 'thirty-seven thousand sixty-seven'); INSERT INTO t3 VALUES(20384, 24548, 'twenty-four thousand five hundred forty-eight'); INSERT INTO t3 VALUES(20385, 20168, 'twenty thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(20386, 89279, 'eighty-nine thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(20387, 44857, 'forty-four thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(20388, 84475, 'eighty-four thousand four hundred seventy-five'); INSERT INTO t3 VALUES(20389, 48457, 'forty-eight thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(20390, 15727, 'fifteen thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(20391, 89829, 'eighty-nine thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(20392, 97082, 'ninety-seven thousand eighty-two'); INSERT INTO t3 VALUES(20393, 4575, 'four thousand five hundred seventy-five'); INSERT INTO t3 VALUES(20394, 76311, 'seventy-six thousand three hundred eleven'); INSERT INTO t3 VALUES(20395, 13414, 'thirteen thousand four hundred fourteen'); INSERT INTO t3 VALUES(20396, 44200, 'forty-four thousand two hundred'); INSERT INTO t3 VALUES(20397, 18718, 'eighteen thousand seven hundred eighteen'); INSERT INTO t3 VALUES(20398, 14587, 'fourteen thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(20399, 99840, 'ninety-nine thousand eight hundred forty'); INSERT INTO t3 VALUES(20400, 14243, 'fourteen thousand two hundred forty-three'); INSERT INTO t3 VALUES(20401, 84287, 'eighty-four thousand two hundred eighty-seven'); INSERT INTO t3 VALUES(20402, 9289, 'nine thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(20403, 10957, 'ten thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(20404, 85839, 'eighty-five thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(20405, 44002, 'forty-four thousand two'); INSERT INTO t3 VALUES(20406, 54719, 'fifty-four thousand seven hundred nineteen'); INSERT INTO t3 VALUES(20407, 16367, 'sixteen thousand three hundred sixty-seven'); INSERT INTO t3 VALUES(20408, 20067, 'twenty thousand sixty-seven'); INSERT INTO t3 VALUES(20409, 11614, 'eleven thousand six hundred fourteen'); INSERT INTO t3 VALUES(20410, 71523, 'seventy-one thousand five hundred twenty-three'); INSERT INTO t3 VALUES(20411, 2749, 'two thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(20412, 13229, 'thirteen thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(20413, 98086, 'ninety-eight thousand eighty-six'); INSERT INTO t3 VALUES(20414, 46089, 'forty-six thousand eighty-nine'); INSERT INTO t3 VALUES(20415, 10941, 'ten thousand nine hundred forty-one'); INSERT INTO t3 VALUES(20416, 93739, 'ninety-three thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(20417, 35974, 'thirty-five thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(20418, 4226, 'four thousand two hundred twenty-six'); INSERT INTO t3 VALUES(20419, 37640, 'thirty-seven thousand six hundred forty'); INSERT INTO t3 VALUES(20420, 29326, 'twenty-nine thousand three hundred twenty-six'); INSERT INTO t3 VALUES(20421, 99948, 'ninety-nine thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(20422, 51704, 'fifty-one thousand seven hundred four'); INSERT INTO t3 VALUES(20423, 32392, 'thirty-two thousand three hundred ninety-two'); INSERT INTO t3 VALUES(20424, 33479, 'thirty-three thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(20425, 46703, 'forty-six thousand seven hundred three'); INSERT INTO t3 VALUES(20426, 35829, 'thirty-five thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(20427, 88969, 'eighty-eight thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(20428, 9725, 'nine thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(20429, 29151, 'twenty-nine thousand one hundred fifty-one'); INSERT INTO t3 VALUES(20430, 3867, 'three thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(20431, 6469, 'six thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(20432, 32910, 'thirty-two thousand nine hundred ten'); INSERT INTO t3 VALUES(20433, 61884, 'sixty-one thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(20434, 5513, 'five thousand five hundred thirteen'); INSERT INTO t3 VALUES(20435, 19049, 'nineteen thousand forty-nine'); INSERT INTO t3 VALUES(20436, 26063, 'twenty-six thousand sixty-three'); INSERT INTO t3 VALUES(20437, 48597, 'forty-eight thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(20438, 51750, 'fifty-one thousand seven hundred fifty'); INSERT INTO t3 VALUES(20439, 12557, 'twelve thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(20440, 13770, 'thirteen thousand seven hundred seventy'); INSERT INTO t3 VALUES(20441, 46516, 'forty-six thousand five hundred sixteen'); INSERT INTO t3 VALUES(20442, 51217, 'fifty-one thousand two hundred seventeen'); INSERT INTO t3 VALUES(20443, 17935, 'seventeen thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(20444, 8078, 'eight thousand seventy-eight'); INSERT INTO t3 VALUES(20445, 43565, 'forty-three thousand five hundred sixty-five'); INSERT INTO t3 VALUES(20446, 72524, 'seventy-two thousand five hundred twenty-four'); INSERT INTO t3 VALUES(20447, 59901, 'fifty-nine thousand nine hundred one'); INSERT INTO t3 VALUES(20448, 59402, 'fifty-nine thousand four hundred two'); INSERT INTO t3 VALUES(20449, 78458, 'seventy-eight thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(20450, 64109, 'sixty-four thousand one hundred nine'); INSERT INTO t3 VALUES(20451, 79973, 'seventy-nine thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(20452, 62417, 'sixty-two thousand four hundred seventeen'); INSERT INTO t3 VALUES(20453, 78484, 'seventy-eight thousand four hundred eighty-four'); INSERT INTO t3 VALUES(20454, 9569, 'nine thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(20455, 15794, 'fifteen thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(20456, 16175, 'sixteen thousand one hundred seventy-five'); INSERT INTO t3 VALUES(20457, 15906, 'fifteen thousand nine hundred six'); INSERT INTO t3 VALUES(20458, 79140, 'seventy-nine thousand one hundred forty'); INSERT INTO t3 VALUES(20459, 96082, 'ninety-six thousand eighty-two'); INSERT INTO t3 VALUES(20460, 44463, 'forty-four thousand four hundred sixty-three'); INSERT INTO t3 VALUES(20461, 50305, 'fifty thousand three hundred five'); INSERT INTO t3 VALUES(20462, 79389, 'seventy-nine thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(20463, 41931, 'forty-one thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(20464, 76179, 'seventy-six thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(20465, 713, 'seven hundred thirteen'); INSERT INTO t3 VALUES(20466, 61012, 'sixty-one thousand twelve'); INSERT INTO t3 VALUES(20467, 25827, 'twenty-five thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(20468, 549, 'five hundred forty-nine'); INSERT INTO t3 VALUES(20469, 41269, 'forty-one thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(20470, 72172, 'seventy-two thousand one hundred seventy-two'); INSERT INTO t3 VALUES(20471, 89382, 'eighty-nine thousand three hundred eighty-two'); INSERT INTO t3 VALUES(20472, 37601, 'thirty-seven thousand six hundred one'); INSERT INTO t3 VALUES(20473, 16979, 'sixteen thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(20474, 76345, 'seventy-six thousand three hundred forty-five'); INSERT INTO t3 VALUES(20475, 37696, 'thirty-seven thousand six hundred ninety-six'); INSERT INTO t3 VALUES(20476, 74669, 'seventy-four thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(20477, 696, 'six hundred ninety-six'); INSERT INTO t3 VALUES(20478, 19249, 'nineteen thousand two hundred forty-nine'); INSERT INTO t3 VALUES(20479, 9849, 'nine thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(20480, 31551, 'thirty-one thousand five hundred fifty-one'); INSERT INTO t3 VALUES(20481, 74125, 'seventy-four thousand one hundred twenty-five'); INSERT INTO t3 VALUES(20482, 16960, 'sixteen thousand nine hundred sixty'); INSERT INTO t3 VALUES(20483, 30364, 'thirty thousand three hundred sixty-four'); INSERT INTO t3 VALUES(20484, 72335, 'seventy-two thousand three hundred thirty-five'); INSERT INTO t3 VALUES(20485, 94878, 'ninety-four thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(20486, 92301, 'ninety-two thousand three hundred one'); INSERT INTO t3 VALUES(20487, 60978, 'sixty thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(20488, 69767, 'sixty-nine thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(20489, 13933, 'thirteen thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(20490, 33212, 'thirty-three thousand two hundred twelve'); INSERT INTO t3 VALUES(20491, 90390, 'ninety thousand three hundred ninety'); INSERT INTO t3 VALUES(20492, 30667, 'thirty thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(20493, 87652, 'eighty-seven thousand six hundred fifty-two'); INSERT INTO t3 VALUES(20494, 31049, 'thirty-one thousand forty-nine'); INSERT INTO t3 VALUES(20495, 59932, 'fifty-nine thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(20496, 68922, 'sixty-eight thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(20497, 12761, 'twelve thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(20498, 81110, 'eighty-one thousand one hundred ten'); INSERT INTO t3 VALUES(20499, 22859, 'twenty-two thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(20500, 67753, 'sixty-seven thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(20501, 61919, 'sixty-one thousand nine hundred nineteen'); INSERT INTO t3 VALUES(20502, 97152, 'ninety-seven thousand one hundred fifty-two'); INSERT INTO t3 VALUES(20503, 41109, 'forty-one thousand one hundred nine'); INSERT INTO t3 VALUES(20504, 83430, 'eighty-three thousand four hundred thirty'); INSERT INTO t3 VALUES(20505, 9429, 'nine thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(20506, 8447, 'eight thousand four hundred forty-seven'); INSERT INTO t3 VALUES(20507, 91117, 'ninety-one thousand one hundred seventeen'); INSERT INTO t3 VALUES(20508, 99719, 'ninety-nine thousand seven hundred nineteen'); INSERT INTO t3 VALUES(20509, 11446, 'eleven thousand four hundred forty-six'); INSERT INTO t3 VALUES(20510, 16205, 'sixteen thousand two hundred five'); INSERT INTO t3 VALUES(20511, 63051, 'sixty-three thousand fifty-one'); INSERT INTO t3 VALUES(20512, 58773, 'fifty-eight thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(20513, 81836, 'eighty-one thousand eight hundred thirty-six'); INSERT INTO t3 VALUES(20514, 17045, 'seventeen thousand forty-five'); INSERT INTO t3 VALUES(20515, 91505, 'ninety-one thousand five hundred five'); INSERT INTO t3 VALUES(20516, 48991, 'forty-eight thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(20517, 44459, 'forty-four thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(20518, 58453, 'fifty-eight thousand four hundred fifty-three'); INSERT INTO t3 VALUES(20519, 70909, 'seventy thousand nine hundred nine'); INSERT INTO t3 VALUES(20520, 60103, 'sixty thousand one hundred three'); INSERT INTO t3 VALUES(20521, 54991, 'fifty-four thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(20522, 16708, 'sixteen thousand seven hundred eight'); INSERT INTO t3 VALUES(20523, 17403, 'seventeen thousand four hundred three'); INSERT INTO t3 VALUES(20524, 9083, 'nine thousand eighty-three'); INSERT INTO t3 VALUES(20525, 20340, 'twenty thousand three hundred forty'); INSERT INTO t3 VALUES(20526, 93037, 'ninety-three thousand thirty-seven'); INSERT INTO t3 VALUES(20527, 7600, 'seven thousand six hundred'); INSERT INTO t3 VALUES(20528, 86450, 'eighty-six thousand four hundred fifty'); INSERT INTO t3 VALUES(20529, 84867, 'eighty-four thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(20530, 61092, 'sixty-one thousand ninety-two'); INSERT INTO t3 VALUES(20531, 24401, 'twenty-four thousand four hundred one'); INSERT INTO t3 VALUES(20532, 96588, 'ninety-six thousand five hundred eighty-eight'); INSERT INTO t3 VALUES(20533, 97549, 'ninety-seven thousand five hundred forty-nine'); INSERT INTO t3 VALUES(20534, 32355, 'thirty-two thousand three hundred fifty-five'); INSERT INTO t3 VALUES(20535, 71714, 'seventy-one thousand seven hundred fourteen'); INSERT INTO t3 VALUES(20536, 72398, 'seventy-two thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(20537, 18156, 'eighteen thousand one hundred fifty-six'); INSERT INTO t3 VALUES(20538, 98605, 'ninety-eight thousand six hundred five'); INSERT INTO t3 VALUES(20539, 61579, 'sixty-one thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(20540, 32126, 'thirty-two thousand one hundred twenty-six'); INSERT INTO t3 VALUES(20541, 31859, 'thirty-one thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(20542, 17709, 'seventeen thousand seven hundred nine'); INSERT INTO t3 VALUES(20543, 21756, 'twenty-one thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(20544, 94866, 'ninety-four thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(20545, 43968, 'forty-three thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(20546, 43551, 'forty-three thousand five hundred fifty-one'); INSERT INTO t3 VALUES(20547, 19538, 'nineteen thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(20548, 49633, 'forty-nine thousand six hundred thirty-three'); INSERT INTO t3 VALUES(20549, 62508, 'sixty-two thousand five hundred eight'); INSERT INTO t3 VALUES(20550, 80371, 'eighty thousand three hundred seventy-one'); INSERT INTO t3 VALUES(20551, 22064, 'twenty-two thousand sixty-four'); INSERT INTO t3 VALUES(20552, 25577, 'twenty-five thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(20553, 93125, 'ninety-three thousand one hundred twenty-five'); INSERT INTO t3 VALUES(20554, 44459, 'forty-four thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(20555, 81909, 'eighty-one thousand nine hundred nine'); INSERT INTO t3 VALUES(20556, 44403, 'forty-four thousand four hundred three'); INSERT INTO t3 VALUES(20557, 16111, 'sixteen thousand one hundred eleven'); INSERT INTO t3 VALUES(20558, 66724, 'sixty-six thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(20559, 29464, 'twenty-nine thousand four hundred sixty-four'); INSERT INTO t3 VALUES(20560, 82143, 'eighty-two thousand one hundred forty-three'); INSERT INTO t3 VALUES(20561, 32352, 'thirty-two thousand three hundred fifty-two'); INSERT INTO t3 VALUES(20562, 26542, 'twenty-six thousand five hundred forty-two'); INSERT INTO t3 VALUES(20563, 19247, 'nineteen thousand two hundred forty-seven'); INSERT INTO t3 VALUES(20564, 85640, 'eighty-five thousand six hundred forty'); INSERT INTO t3 VALUES(20565, 43306, 'forty-three thousand three hundred six'); INSERT INTO t3 VALUES(20566, 3101, 'three thousand one hundred one'); INSERT INTO t3 VALUES(20567, 93085, 'ninety-three thousand eighty-five'); INSERT INTO t3 VALUES(20568, 53939, 'fifty-three thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(20569, 90044, 'ninety thousand forty-four'); INSERT INTO t3 VALUES(20570, 89458, 'eighty-nine thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(20571, 81200, 'eighty-one thousand two hundred'); INSERT INTO t3 VALUES(20572, 83993, 'eighty-three thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(20573, 21213, 'twenty-one thousand two hundred thirteen'); INSERT INTO t3 VALUES(20574, 92381, 'ninety-two thousand three hundred eighty-one'); INSERT INTO t3 VALUES(20575, 27559, 'twenty-seven thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(20576, 25835, 'twenty-five thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(20577, 90657, 'ninety thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(20578, 55662, 'fifty-five thousand six hundred sixty-two'); INSERT INTO t3 VALUES(20579, 77858, 'seventy-seven thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(20580, 98751, 'ninety-eight thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(20581, 34780, 'thirty-four thousand seven hundred eighty'); INSERT INTO t3 VALUES(20582, 12787, 'twelve thousand seven hundred eighty-seven'); INSERT INTO t3 VALUES(20583, 11822, 'eleven thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(20584, 48995, 'forty-eight thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(20585, 47788, 'forty-seven thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(20586, 93536, 'ninety-three thousand five hundred thirty-six'); INSERT INTO t3 VALUES(20587, 12965, 'twelve thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(20588, 26793, 'twenty-six thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(20589, 52086, 'fifty-two thousand eighty-six'); INSERT INTO t3 VALUES(20590, 68691, 'sixty-eight thousand six hundred ninety-one'); INSERT INTO t3 VALUES(20591, 38386, 'thirty-eight thousand three hundred eighty-six'); INSERT INTO t3 VALUES(20592, 45715, 'forty-five thousand seven hundred fifteen'); INSERT INTO t3 VALUES(20593, 60670, 'sixty thousand six hundred seventy'); INSERT INTO t3 VALUES(20594, 42106, 'forty-two thousand one hundred six'); INSERT INTO t3 VALUES(20595, 67586, 'sixty-seven thousand five hundred eighty-six'); INSERT INTO t3 VALUES(20596, 78811, 'seventy-eight thousand eight hundred eleven'); INSERT INTO t3 VALUES(20597, 4821, 'four thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(20598, 82827, 'eighty-two thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(20599, 30627, 'thirty thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(20600, 68266, 'sixty-eight thousand two hundred sixty-six'); INSERT INTO t3 VALUES(20601, 10003, 'ten thousand three'); INSERT INTO t3 VALUES(20602, 34100, 'thirty-four thousand one hundred'); INSERT INTO t3 VALUES(20603, 51631, 'fifty-one thousand six hundred thirty-one'); INSERT INTO t3 VALUES(20604, 33292, 'thirty-three thousand two hundred ninety-two'); INSERT INTO t3 VALUES(20605, 20293, 'twenty thousand two hundred ninety-three'); INSERT INTO t3 VALUES(20606, 65053, 'sixty-five thousand fifty-three'); INSERT INTO t3 VALUES(20607, 52574, 'fifty-two thousand five hundred seventy-four'); INSERT INTO t3 VALUES(20608, 22853, 'twenty-two thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(20609, 85257, 'eighty-five thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(20610, 9757, 'nine thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(20611, 19062, 'nineteen thousand sixty-two'); INSERT INTO t3 VALUES(20612, 76393, 'seventy-six thousand three hundred ninety-three'); INSERT INTO t3 VALUES(20613, 1638, 'one thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(20614, 73224, 'seventy-three thousand two hundred twenty-four'); INSERT INTO t3 VALUES(20615, 11868, 'eleven thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(20616, 37770, 'thirty-seven thousand seven hundred seventy'); INSERT INTO t3 VALUES(20617, 43848, 'forty-three thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(20618, 46578, 'forty-six thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(20619, 55498, 'fifty-five thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(20620, 67263, 'sixty-seven thousand two hundred sixty-three'); INSERT INTO t3 VALUES(20621, 39353, 'thirty-nine thousand three hundred fifty-three'); INSERT INTO t3 VALUES(20622, 68732, 'sixty-eight thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(20623, 95702, 'ninety-five thousand seven hundred two'); INSERT INTO t3 VALUES(20624, 10960, 'ten thousand nine hundred sixty'); INSERT INTO t3 VALUES(20625, 54874, 'fifty-four thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(20626, 44253, 'forty-four thousand two hundred fifty-three'); INSERT INTO t3 VALUES(20627, 60069, 'sixty thousand sixty-nine'); INSERT INTO t3 VALUES(20628, 55331, 'fifty-five thousand three hundred thirty-one'); INSERT INTO t3 VALUES(20629, 59255, 'fifty-nine thousand two hundred fifty-five'); INSERT INTO t3 VALUES(20630, 77786, 'seventy-seven thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(20631, 18752, 'eighteen thousand seven hundred fifty-two'); INSERT INTO t3 VALUES(20632, 71980, 'seventy-one thousand nine hundred eighty'); INSERT INTO t3 VALUES(20633, 18353, 'eighteen thousand three hundred fifty-three'); INSERT INTO t3 VALUES(20634, 86345, 'eighty-six thousand three hundred forty-five'); INSERT INTO t3 VALUES(20635, 6872, 'six thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(20636, 96741, 'ninety-six thousand seven hundred forty-one'); INSERT INTO t3 VALUES(20637, 18832, 'eighteen thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(20638, 60925, 'sixty thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(20639, 14442, 'fourteen thousand four hundred forty-two'); INSERT INTO t3 VALUES(20640, 40773, 'forty thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(20641, 32332, 'thirty-two thousand three hundred thirty-two'); INSERT INTO t3 VALUES(20642, 14262, 'fourteen thousand two hundred sixty-two'); INSERT INTO t3 VALUES(20643, 23154, 'twenty-three thousand one hundred fifty-four'); INSERT INTO t3 VALUES(20644, 77453, 'seventy-seven thousand four hundred fifty-three'); INSERT INTO t3 VALUES(20645, 50006, 'fifty thousand six'); INSERT INTO t3 VALUES(20646, 48892, 'forty-eight thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(20647, 27647, 'twenty-seven thousand six hundred forty-seven'); INSERT INTO t3 VALUES(20648, 97154, 'ninety-seven thousand one hundred fifty-four'); INSERT INTO t3 VALUES(20649, 86498, 'eighty-six thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(20650, 45331, 'forty-five thousand three hundred thirty-one'); INSERT INTO t3 VALUES(20651, 77855, 'seventy-seven thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(20652, 25185, 'twenty-five thousand one hundred eighty-five'); INSERT INTO t3 VALUES(20653, 87726, 'eighty-seven thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(20654, 95122, 'ninety-five thousand one hundred twenty-two'); INSERT INTO t3 VALUES(20655, 31884, 'thirty-one thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(20656, 50322, 'fifty thousand three hundred twenty-two'); INSERT INTO t3 VALUES(20657, 50565, 'fifty thousand five hundred sixty-five'); INSERT INTO t3 VALUES(20658, 72873, 'seventy-two thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(20659, 97283, 'ninety-seven thousand two hundred eighty-three'); INSERT INTO t3 VALUES(20660, 54358, 'fifty-four thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(20661, 13863, 'thirteen thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(20662, 23776, 'twenty-three thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(20663, 78957, 'seventy-eight thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(20664, 84058, 'eighty-four thousand fifty-eight'); INSERT INTO t3 VALUES(20665, 87005, 'eighty-seven thousand five'); INSERT INTO t3 VALUES(20666, 431, 'four hundred thirty-one'); INSERT INTO t3 VALUES(20667, 17823, 'seventeen thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(20668, 66985, 'sixty-six thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(20669, 49520, 'forty-nine thousand five hundred twenty'); INSERT INTO t3 VALUES(20670, 43160, 'forty-three thousand one hundred sixty'); INSERT INTO t3 VALUES(20671, 4300, 'four thousand three hundred'); INSERT INTO t3 VALUES(20672, 69912, 'sixty-nine thousand nine hundred twelve'); INSERT INTO t3 VALUES(20673, 37963, 'thirty-seven thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(20674, 92299, 'ninety-two thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(20675, 89267, 'eighty-nine thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(20676, 45422, 'forty-five thousand four hundred twenty-two'); INSERT INTO t3 VALUES(20677, 65500, 'sixty-five thousand five hundred'); INSERT INTO t3 VALUES(20678, 29400, 'twenty-nine thousand four hundred'); INSERT INTO t3 VALUES(20679, 8494, 'eight thousand four hundred ninety-four'); INSERT INTO t3 VALUES(20680, 89396, 'eighty-nine thousand three hundred ninety-six'); INSERT INTO t3 VALUES(20681, 11908, 'eleven thousand nine hundred eight'); INSERT INTO t3 VALUES(20682, 55665, 'fifty-five thousand six hundred sixty-five'); INSERT INTO t3 VALUES(20683, 7747, 'seven thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(20684, 74265, 'seventy-four thousand two hundred sixty-five'); INSERT INTO t3 VALUES(20685, 1858, 'one thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(20686, 50175, 'fifty thousand one hundred seventy-five'); INSERT INTO t3 VALUES(20687, 24678, 'twenty-four thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(20688, 69402, 'sixty-nine thousand four hundred two'); INSERT INTO t3 VALUES(20689, 83445, 'eighty-three thousand four hundred forty-five'); INSERT INTO t3 VALUES(20690, 67624, 'sixty-seven thousand six hundred twenty-four'); INSERT INTO t3 VALUES(20691, 7340, 'seven thousand three hundred forty'); INSERT INTO t3 VALUES(20692, 31104, 'thirty-one thousand one hundred four'); INSERT INTO t3 VALUES(20693, 56268, 'fifty-six thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(20694, 43581, 'forty-three thousand five hundred eighty-one'); INSERT INTO t3 VALUES(20695, 73953, 'seventy-three thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(20696, 64906, 'sixty-four thousand nine hundred six'); INSERT INTO t3 VALUES(20697, 80239, 'eighty thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(20698, 21376, 'twenty-one thousand three hundred seventy-six'); INSERT INTO t3 VALUES(20699, 72485, 'seventy-two thousand four hundred eighty-five'); INSERT INTO t3 VALUES(20700, 32057, 'thirty-two thousand fifty-seven'); INSERT INTO t3 VALUES(20701, 10269, 'ten thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(20702, 29113, 'twenty-nine thousand one hundred thirteen'); INSERT INTO t3 VALUES(20703, 91615, 'ninety-one thousand six hundred fifteen'); INSERT INTO t3 VALUES(20704, 10517, 'ten thousand five hundred seventeen'); INSERT INTO t3 VALUES(20705, 41237, 'forty-one thousand two hundred thirty-seven'); INSERT INTO t3 VALUES(20706, 22845, 'twenty-two thousand eight hundred forty-five'); INSERT INTO t3 VALUES(20707, 5240, 'five thousand two hundred forty'); INSERT INTO t3 VALUES(20708, 20548, 'twenty thousand five hundred forty-eight'); INSERT INTO t3 VALUES(20709, 71854, 'seventy-one thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(20710, 82289, 'eighty-two thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(20711, 10179, 'ten thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(20712, 78783, 'seventy-eight thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(20713, 77833, 'seventy-seven thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(20714, 57407, 'fifty-seven thousand four hundred seven'); INSERT INTO t3 VALUES(20715, 42436, 'forty-two thousand four hundred thirty-six'); INSERT INTO t3 VALUES(20716, 23594, 'twenty-three thousand five hundred ninety-four'); INSERT INTO t3 VALUES(20717, 75767, 'seventy-five thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(20718, 4036, 'four thousand thirty-six'); INSERT INTO t3 VALUES(20719, 3028, 'three thousand twenty-eight'); INSERT INTO t3 VALUES(20720, 58126, 'fifty-eight thousand one hundred twenty-six'); INSERT INTO t3 VALUES(20721, 26808, 'twenty-six thousand eight hundred eight'); INSERT INTO t3 VALUES(20722, 34599, 'thirty-four thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(20723, 72030, 'seventy-two thousand thirty'); INSERT INTO t3 VALUES(20724, 80484, 'eighty thousand four hundred eighty-four'); INSERT INTO t3 VALUES(20725, 50928, 'fifty thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(20726, 62459, 'sixty-two thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(20727, 42085, 'forty-two thousand eighty-five'); INSERT INTO t3 VALUES(20728, 94841, 'ninety-four thousand eight hundred forty-one'); INSERT INTO t3 VALUES(20729, 13342, 'thirteen thousand three hundred forty-two'); INSERT INTO t3 VALUES(20730, 18736, 'eighteen thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(20731, 28673, 'twenty-eight thousand six hundred seventy-three'); INSERT INTO t3 VALUES(20732, 12408, 'twelve thousand four hundred eight'); INSERT INTO t3 VALUES(20733, 68696, 'sixty-eight thousand six hundred ninety-six'); INSERT INTO t3 VALUES(20734, 49738, 'forty-nine thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(20735, 18335, 'eighteen thousand three hundred thirty-five'); INSERT INTO t3 VALUES(20736, 33631, 'thirty-three thousand six hundred thirty-one'); INSERT INTO t3 VALUES(20737, 81244, 'eighty-one thousand two hundred forty-four'); INSERT INTO t3 VALUES(20738, 65037, 'sixty-five thousand thirty-seven'); INSERT INTO t3 VALUES(20739, 40534, 'forty thousand five hundred thirty-four'); INSERT INTO t3 VALUES(20740, 60564, 'sixty thousand five hundred sixty-four'); INSERT INTO t3 VALUES(20741, 91139, 'ninety-one thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(20742, 95676, 'ninety-five thousand six hundred seventy-six'); INSERT INTO t3 VALUES(20743, 69153, 'sixty-nine thousand one hundred fifty-three'); INSERT INTO t3 VALUES(20744, 47813, 'forty-seven thousand eight hundred thirteen'); INSERT INTO t3 VALUES(20745, 9933, 'nine thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(20746, 60633, 'sixty thousand six hundred thirty-three'); INSERT INTO t3 VALUES(20747, 46093, 'forty-six thousand ninety-three'); INSERT INTO t3 VALUES(20748, 33493, 'thirty-three thousand four hundred ninety-three'); INSERT INTO t3 VALUES(20749, 29406, 'twenty-nine thousand four hundred six'); INSERT INTO t3 VALUES(20750, 14327, 'fourteen thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(20751, 18242, 'eighteen thousand two hundred forty-two'); INSERT INTO t3 VALUES(20752, 56308, 'fifty-six thousand three hundred eight'); INSERT INTO t3 VALUES(20753, 17229, 'seventeen thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(20754, 91534, 'ninety-one thousand five hundred thirty-four'); INSERT INTO t3 VALUES(20755, 49420, 'forty-nine thousand four hundred twenty'); INSERT INTO t3 VALUES(20756, 67885, 'sixty-seven thousand eight hundred eighty-five'); INSERT INTO t3 VALUES(20757, 14332, 'fourteen thousand three hundred thirty-two'); INSERT INTO t3 VALUES(20758, 59544, 'fifty-nine thousand five hundred forty-four'); INSERT INTO t3 VALUES(20759, 92431, 'ninety-two thousand four hundred thirty-one'); INSERT INTO t3 VALUES(20760, 69142, 'sixty-nine thousand one hundred forty-two'); INSERT INTO t3 VALUES(20761, 97357, 'ninety-seven thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(20762, 25729, 'twenty-five thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(20763, 38656, 'thirty-eight thousand six hundred fifty-six'); INSERT INTO t3 VALUES(20764, 87577, 'eighty-seven thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(20765, 55181, 'fifty-five thousand one hundred eighty-one'); INSERT INTO t3 VALUES(20766, 9439, 'nine thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(20767, 45984, 'forty-five thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(20768, 95565, 'ninety-five thousand five hundred sixty-five'); INSERT INTO t3 VALUES(20769, 15160, 'fifteen thousand one hundred sixty'); INSERT INTO t3 VALUES(20770, 20833, 'twenty thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(20771, 74562, 'seventy-four thousand five hundred sixty-two'); INSERT INTO t3 VALUES(20772, 18534, 'eighteen thousand five hundred thirty-four'); INSERT INTO t3 VALUES(20773, 71951, 'seventy-one thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(20774, 12861, 'twelve thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(20775, 56609, 'fifty-six thousand six hundred nine'); INSERT INTO t3 VALUES(20776, 65268, 'sixty-five thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(20777, 56988, 'fifty-six thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(20778, 57434, 'fifty-seven thousand four hundred thirty-four'); INSERT INTO t3 VALUES(20779, 86747, 'eighty-six thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(20780, 58210, 'fifty-eight thousand two hundred ten'); INSERT INTO t3 VALUES(20781, 38729, 'thirty-eight thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(20782, 74131, 'seventy-four thousand one hundred thirty-one'); INSERT INTO t3 VALUES(20783, 45052, 'forty-five thousand fifty-two'); INSERT INTO t3 VALUES(20784, 64970, 'sixty-four thousand nine hundred seventy'); INSERT INTO t3 VALUES(20785, 4662, 'four thousand six hundred sixty-two'); INSERT INTO t3 VALUES(20786, 66009, 'sixty-six thousand nine'); INSERT INTO t3 VALUES(20787, 36744, 'thirty-six thousand seven hundred forty-four'); INSERT INTO t3 VALUES(20788, 97665, 'ninety-seven thousand six hundred sixty-five'); INSERT INTO t3 VALUES(20789, 5712, 'five thousand seven hundred twelve'); INSERT INTO t3 VALUES(20790, 60735, 'sixty thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(20791, 98961, 'ninety-eight thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(20792, 64648, 'sixty-four thousand six hundred forty-eight'); INSERT INTO t3 VALUES(20793, 76449, 'seventy-six thousand four hundred forty-nine'); INSERT INTO t3 VALUES(20794, 57372, 'fifty-seven thousand three hundred seventy-two'); INSERT INTO t3 VALUES(20795, 17349, 'seventeen thousand three hundred forty-nine'); INSERT INTO t3 VALUES(20796, 57011, 'fifty-seven thousand eleven'); INSERT INTO t3 VALUES(20797, 51736, 'fifty-one thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(20798, 97584, 'ninety-seven thousand five hundred eighty-four'); INSERT INTO t3 VALUES(20799, 22595, 'twenty-two thousand five hundred ninety-five'); INSERT INTO t3 VALUES(20800, 71976, 'seventy-one thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(20801, 51515, 'fifty-one thousand five hundred fifteen'); INSERT INTO t3 VALUES(20802, 76089, 'seventy-six thousand eighty-nine'); INSERT INTO t3 VALUES(20803, 77060, 'seventy-seven thousand sixty'); INSERT INTO t3 VALUES(20804, 79446, 'seventy-nine thousand four hundred forty-six'); INSERT INTO t3 VALUES(20805, 33286, 'thirty-three thousand two hundred eighty-six'); INSERT INTO t3 VALUES(20806, 38066, 'thirty-eight thousand sixty-six'); INSERT INTO t3 VALUES(20807, 33525, 'thirty-three thousand five hundred twenty-five'); INSERT INTO t3 VALUES(20808, 91750, 'ninety-one thousand seven hundred fifty'); INSERT INTO t3 VALUES(20809, 71977, 'seventy-one thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(20810, 87678, 'eighty-seven thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(20811, 98988, 'ninety-eight thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(20812, 25993, 'twenty-five thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(20813, 67531, 'sixty-seven thousand five hundred thirty-one'); INSERT INTO t3 VALUES(20814, 52159, 'fifty-two thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(20815, 94970, 'ninety-four thousand nine hundred seventy'); INSERT INTO t3 VALUES(20816, 90655, 'ninety thousand six hundred fifty-five'); INSERT INTO t3 VALUES(20817, 93054, 'ninety-three thousand fifty-four'); INSERT INTO t3 VALUES(20818, 47093, 'forty-seven thousand ninety-three'); INSERT INTO t3 VALUES(20819, 30159, 'thirty thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(20820, 9763, 'nine thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(20821, 54900, 'fifty-four thousand nine hundred'); INSERT INTO t3 VALUES(20822, 83891, 'eighty-three thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(20823, 5898, 'five thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(20824, 64287, 'sixty-four thousand two hundred eighty-seven'); INSERT INTO t3 VALUES(20825, 78880, 'seventy-eight thousand eight hundred eighty'); INSERT INTO t3 VALUES(20826, 27520, 'twenty-seven thousand five hundred twenty'); INSERT INTO t3 VALUES(20827, 72341, 'seventy-two thousand three hundred forty-one'); INSERT INTO t3 VALUES(20828, 39326, 'thirty-nine thousand three hundred twenty-six'); INSERT INTO t3 VALUES(20829, 72734, 'seventy-two thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(20830, 75519, 'seventy-five thousand five hundred nineteen'); INSERT INTO t3 VALUES(20831, 59511, 'fifty-nine thousand five hundred eleven'); INSERT INTO t3 VALUES(20832, 38423, 'thirty-eight thousand four hundred twenty-three'); INSERT INTO t3 VALUES(20833, 31019, 'thirty-one thousand nineteen'); INSERT INTO t3 VALUES(20834, 5794, 'five thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(20835, 95783, 'ninety-five thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(20836, 68949, 'sixty-eight thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(20837, 5955, 'five thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(20838, 46310, 'forty-six thousand three hundred ten'); INSERT INTO t3 VALUES(20839, 73, 'seventy-three'); INSERT INTO t3 VALUES(20840, 31497, 'thirty-one thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(20841, 28050, 'twenty-eight thousand fifty'); INSERT INTO t3 VALUES(20842, 16080, 'sixteen thousand eighty'); INSERT INTO t3 VALUES(20843, 76546, 'seventy-six thousand five hundred forty-six'); INSERT INTO t3 VALUES(20844, 35140, 'thirty-five thousand one hundred forty'); INSERT INTO t3 VALUES(20845, 39018, 'thirty-nine thousand eighteen'); INSERT INTO t3 VALUES(20846, 35038, 'thirty-five thousand thirty-eight'); INSERT INTO t3 VALUES(20847, 713, 'seven hundred thirteen'); INSERT INTO t3 VALUES(20848, 49986, 'forty-nine thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(20849, 12599, 'twelve thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(20850, 44985, 'forty-four thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(20851, 63869, 'sixty-three thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(20852, 55184, 'fifty-five thousand one hundred eighty-four'); INSERT INTO t3 VALUES(20853, 18393, 'eighteen thousand three hundred ninety-three'); INSERT INTO t3 VALUES(20854, 79607, 'seventy-nine thousand six hundred seven'); INSERT INTO t3 VALUES(20855, 70721, 'seventy thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(20856, 23704, 'twenty-three thousand seven hundred four'); INSERT INTO t3 VALUES(20857, 94840, 'ninety-four thousand eight hundred forty'); INSERT INTO t3 VALUES(20858, 18866, 'eighteen thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(20859, 12650, 'twelve thousand six hundred fifty'); INSERT INTO t3 VALUES(20860, 54339, 'fifty-four thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(20861, 90994, 'ninety thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(20862, 11553, 'eleven thousand five hundred fifty-three'); INSERT INTO t3 VALUES(20863, 21094, 'twenty-one thousand ninety-four'); INSERT INTO t3 VALUES(20864, 17314, 'seventeen thousand three hundred fourteen'); INSERT INTO t3 VALUES(20865, 53828, 'fifty-three thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(20866, 69873, 'sixty-nine thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(20867, 41647, 'forty-one thousand six hundred forty-seven'); INSERT INTO t3 VALUES(20868, 87110, 'eighty-seven thousand one hundred ten'); INSERT INTO t3 VALUES(20869, 65001, 'sixty-five thousand one'); INSERT INTO t3 VALUES(20870, 38710, 'thirty-eight thousand seven hundred ten'); INSERT INTO t3 VALUES(20871, 11303, 'eleven thousand three hundred three'); INSERT INTO t3 VALUES(20872, 66116, 'sixty-six thousand one hundred sixteen'); INSERT INTO t3 VALUES(20873, 31910, 'thirty-one thousand nine hundred ten'); INSERT INTO t3 VALUES(20874, 70287, 'seventy thousand two hundred eighty-seven'); INSERT INTO t3 VALUES(20875, 67464, 'sixty-seven thousand four hundred sixty-four'); INSERT INTO t3 VALUES(20876, 16312, 'sixteen thousand three hundred twelve'); INSERT INTO t3 VALUES(20877, 45563, 'forty-five thousand five hundred sixty-three'); INSERT INTO t3 VALUES(20878, 50869, 'fifty thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(20879, 12900, 'twelve thousand nine hundred'); INSERT INTO t3 VALUES(20880, 73595, 'seventy-three thousand five hundred ninety-five'); INSERT INTO t3 VALUES(20881, 3009, 'three thousand nine'); INSERT INTO t3 VALUES(20882, 83706, 'eighty-three thousand seven hundred six'); INSERT INTO t3 VALUES(20883, 72886, 'seventy-two thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(20884, 97365, 'ninety-seven thousand three hundred sixty-five'); INSERT INTO t3 VALUES(20885, 29661, 'twenty-nine thousand six hundred sixty-one'); INSERT INTO t3 VALUES(20886, 64571, 'sixty-four thousand five hundred seventy-one'); INSERT INTO t3 VALUES(20887, 34161, 'thirty-four thousand one hundred sixty-one'); INSERT INTO t3 VALUES(20888, 7808, 'seven thousand eight hundred eight'); INSERT INTO t3 VALUES(20889, 58029, 'fifty-eight thousand twenty-nine'); INSERT INTO t3 VALUES(20890, 58286, 'fifty-eight thousand two hundred eighty-six'); INSERT INTO t3 VALUES(20891, 45915, 'forty-five thousand nine hundred fifteen'); INSERT INTO t3 VALUES(20892, 86274, 'eighty-six thousand two hundred seventy-four'); INSERT INTO t3 VALUES(20893, 19091, 'nineteen thousand ninety-one'); INSERT INTO t3 VALUES(20894, 92017, 'ninety-two thousand seventeen'); INSERT INTO t3 VALUES(20895, 10011, 'ten thousand eleven'); INSERT INTO t3 VALUES(20896, 99703, 'ninety-nine thousand seven hundred three'); INSERT INTO t3 VALUES(20897, 89702, 'eighty-nine thousand seven hundred two'); INSERT INTO t3 VALUES(20898, 56605, 'fifty-six thousand six hundred five'); INSERT INTO t3 VALUES(20899, 89958, 'eighty-nine thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(20900, 84558, 'eighty-four thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(20901, 46970, 'forty-six thousand nine hundred seventy'); INSERT INTO t3 VALUES(20902, 90213, 'ninety thousand two hundred thirteen'); INSERT INTO t3 VALUES(20903, 86754, 'eighty-six thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(20904, 94557, 'ninety-four thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(20905, 90431, 'ninety thousand four hundred thirty-one'); INSERT INTO t3 VALUES(20906, 99255, 'ninety-nine thousand two hundred fifty-five'); INSERT INTO t3 VALUES(20907, 3510, 'three thousand five hundred ten'); INSERT INTO t3 VALUES(20908, 92988, 'ninety-two thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(20909, 34617, 'thirty-four thousand six hundred seventeen'); INSERT INTO t3 VALUES(20910, 73710, 'seventy-three thousand seven hundred ten'); INSERT INTO t3 VALUES(20911, 54479, 'fifty-four thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(20912, 80877, 'eighty thousand eight hundred seventy-seven'); INSERT INTO t3 VALUES(20913, 34343, 'thirty-four thousand three hundred forty-three'); INSERT INTO t3 VALUES(20914, 34552, 'thirty-four thousand five hundred fifty-two'); INSERT INTO t3 VALUES(20915, 49156, 'forty-nine thousand one hundred fifty-six'); INSERT INTO t3 VALUES(20916, 59708, 'fifty-nine thousand seven hundred eight'); INSERT INTO t3 VALUES(20917, 50559, 'fifty thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(20918, 45551, 'forty-five thousand five hundred fifty-one'); INSERT INTO t3 VALUES(20919, 89426, 'eighty-nine thousand four hundred twenty-six'); INSERT INTO t3 VALUES(20920, 41571, 'forty-one thousand five hundred seventy-one'); INSERT INTO t3 VALUES(20921, 28131, 'twenty-eight thousand one hundred thirty-one'); INSERT INTO t3 VALUES(20922, 81271, 'eighty-one thousand two hundred seventy-one'); INSERT INTO t3 VALUES(20923, 7342, 'seven thousand three hundred forty-two'); INSERT INTO t3 VALUES(20924, 84478, 'eighty-four thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(20925, 13500, 'thirteen thousand five hundred'); INSERT INTO t3 VALUES(20926, 65245, 'sixty-five thousand two hundred forty-five'); INSERT INTO t3 VALUES(20927, 46142, 'forty-six thousand one hundred forty-two'); INSERT INTO t3 VALUES(20928, 6124, 'six thousand one hundred twenty-four'); INSERT INTO t3 VALUES(20929, 81955, 'eighty-one thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(20930, 51579, 'fifty-one thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(20931, 34983, 'thirty-four thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(20932, 31440, 'thirty-one thousand four hundred forty'); INSERT INTO t3 VALUES(20933, 68096, 'sixty-eight thousand ninety-six'); INSERT INTO t3 VALUES(20934, 82045, 'eighty-two thousand forty-five'); INSERT INTO t3 VALUES(20935, 43707, 'forty-three thousand seven hundred seven'); INSERT INTO t3 VALUES(20936, 69697, 'sixty-nine thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(20937, 93179, 'ninety-three thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(20938, 77302, 'seventy-seven thousand three hundred two'); INSERT INTO t3 VALUES(20939, 9321, 'nine thousand three hundred twenty-one'); INSERT INTO t3 VALUES(20940, 37961, 'thirty-seven thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(20941, 40125, 'forty thousand one hundred twenty-five'); INSERT INTO t3 VALUES(20942, 94848, 'ninety-four thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(20943, 11962, 'eleven thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(20944, 62133, 'sixty-two thousand one hundred thirty-three'); INSERT INTO t3 VALUES(20945, 35225, 'thirty-five thousand two hundred twenty-five'); INSERT INTO t3 VALUES(20946, 62811, 'sixty-two thousand eight hundred eleven'); INSERT INTO t3 VALUES(20947, 25119, 'twenty-five thousand one hundred nineteen'); INSERT INTO t3 VALUES(20948, 6006, 'six thousand six'); INSERT INTO t3 VALUES(20949, 32466, 'thirty-two thousand four hundred sixty-six'); INSERT INTO t3 VALUES(20950, 45101, 'forty-five thousand one hundred one'); INSERT INTO t3 VALUES(20951, 35736, 'thirty-five thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(20952, 66224, 'sixty-six thousand two hundred twenty-four'); INSERT INTO t3 VALUES(20953, 46437, 'forty-six thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(20954, 47185, 'forty-seven thousand one hundred eighty-five'); INSERT INTO t3 VALUES(20955, 57869, 'fifty-seven thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(20956, 41204, 'forty-one thousand two hundred four'); INSERT INTO t3 VALUES(20957, 64622, 'sixty-four thousand six hundred twenty-two'); INSERT INTO t3 VALUES(20958, 53458, 'fifty-three thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(20959, 99293, 'ninety-nine thousand two hundred ninety-three'); INSERT INTO t3 VALUES(20960, 28997, 'twenty-eight thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(20961, 12820, 'twelve thousand eight hundred twenty'); INSERT INTO t3 VALUES(20962, 21644, 'twenty-one thousand six hundred forty-four'); INSERT INTO t3 VALUES(20963, 10764, 'ten thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(20964, 90596, 'ninety thousand five hundred ninety-six'); INSERT INTO t3 VALUES(20965, 68661, 'sixty-eight thousand six hundred sixty-one'); INSERT INTO t3 VALUES(20966, 41532, 'forty-one thousand five hundred thirty-two'); INSERT INTO t3 VALUES(20967, 48499, 'forty-eight thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(20968, 36253, 'thirty-six thousand two hundred fifty-three'); INSERT INTO t3 VALUES(20969, 45061, 'forty-five thousand sixty-one'); INSERT INTO t3 VALUES(20970, 84611, 'eighty-four thousand six hundred eleven'); INSERT INTO t3 VALUES(20971, 77452, 'seventy-seven thousand four hundred fifty-two'); INSERT INTO t3 VALUES(20972, 57511, 'fifty-seven thousand five hundred eleven'); INSERT INTO t3 VALUES(20973, 30688, 'thirty thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(20974, 78086, 'seventy-eight thousand eighty-six'); INSERT INTO t3 VALUES(20975, 70241, 'seventy thousand two hundred forty-one'); INSERT INTO t3 VALUES(20976, 52250, 'fifty-two thousand two hundred fifty'); INSERT INTO t3 VALUES(20977, 94213, 'ninety-four thousand two hundred thirteen'); INSERT INTO t3 VALUES(20978, 45993, 'forty-five thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(20979, 9415, 'nine thousand four hundred fifteen'); INSERT INTO t3 VALUES(20980, 22496, 'twenty-two thousand four hundred ninety-six'); INSERT INTO t3 VALUES(20981, 94760, 'ninety-four thousand seven hundred sixty'); INSERT INTO t3 VALUES(20982, 32736, 'thirty-two thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(20983, 20919, 'twenty thousand nine hundred nineteen'); INSERT INTO t3 VALUES(20984, 63891, 'sixty-three thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(20985, 5606, 'five thousand six hundred six'); INSERT INTO t3 VALUES(20986, 86559, 'eighty-six thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(20987, 77443, 'seventy-seven thousand four hundred forty-three'); INSERT INTO t3 VALUES(20988, 82235, 'eighty-two thousand two hundred thirty-five'); INSERT INTO t3 VALUES(20989, 92187, 'ninety-two thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(20990, 98638, 'ninety-eight thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(20991, 12531, 'twelve thousand five hundred thirty-one'); INSERT INTO t3 VALUES(20992, 39949, 'thirty-nine thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(20993, 64361, 'sixty-four thousand three hundred sixty-one'); INSERT INTO t3 VALUES(20994, 31996, 'thirty-one thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(20995, 12644, 'twelve thousand six hundred forty-four'); INSERT INTO t3 VALUES(20996, 13802, 'thirteen thousand eight hundred two'); INSERT INTO t3 VALUES(20997, 81663, 'eighty-one thousand six hundred sixty-three'); INSERT INTO t3 VALUES(20998, 27831, 'twenty-seven thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(20999, 10136, 'ten thousand one hundred thirty-six'); INSERT INTO t3 VALUES(21000, 76524, 'seventy-six thousand five hundred twenty-four'); INSERT INTO t3 VALUES(21001, 37425, 'thirty-seven thousand four hundred twenty-five'); INSERT INTO t3 VALUES(21002, 84150, 'eighty-four thousand one hundred fifty'); INSERT INTO t3 VALUES(21003, 85297, 'eighty-five thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(21004, 98034, 'ninety-eight thousand thirty-four'); INSERT INTO t3 VALUES(21005, 11826, 'eleven thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(21006, 48202, 'forty-eight thousand two hundred two'); INSERT INTO t3 VALUES(21007, 73272, 'seventy-three thousand two hundred seventy-two'); INSERT INTO t3 VALUES(21008, 16035, 'sixteen thousand thirty-five'); INSERT INTO t3 VALUES(21009, 4649, 'four thousand six hundred forty-nine'); INSERT INTO t3 VALUES(21010, 66088, 'sixty-six thousand eighty-eight'); INSERT INTO t3 VALUES(21011, 99506, 'ninety-nine thousand five hundred six'); INSERT INTO t3 VALUES(21012, 61038, 'sixty-one thousand thirty-eight'); INSERT INTO t3 VALUES(21013, 88196, 'eighty-eight thousand one hundred ninety-six'); INSERT INTO t3 VALUES(21014, 96517, 'ninety-six thousand five hundred seventeen'); INSERT INTO t3 VALUES(21015, 26177, 'twenty-six thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(21016, 602, 'six hundred two'); INSERT INTO t3 VALUES(21017, 21717, 'twenty-one thousand seven hundred seventeen'); INSERT INTO t3 VALUES(21018, 21469, 'twenty-one thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(21019, 64240, 'sixty-four thousand two hundred forty'); INSERT INTO t3 VALUES(21020, 65443, 'sixty-five thousand four hundred forty-three'); INSERT INTO t3 VALUES(21021, 87430, 'eighty-seven thousand four hundred thirty'); INSERT INTO t3 VALUES(21022, 75716, 'seventy-five thousand seven hundred sixteen'); INSERT INTO t3 VALUES(21023, 83743, 'eighty-three thousand seven hundred forty-three'); INSERT INTO t3 VALUES(21024, 70976, 'seventy thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(21025, 54193, 'fifty-four thousand one hundred ninety-three'); INSERT INTO t3 VALUES(21026, 2466, 'two thousand four hundred sixty-six'); INSERT INTO t3 VALUES(21027, 23794, 'twenty-three thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(21028, 77808, 'seventy-seven thousand eight hundred eight'); INSERT INTO t3 VALUES(21029, 82905, 'eighty-two thousand nine hundred five'); INSERT INTO t3 VALUES(21030, 96527, 'ninety-six thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(21031, 93562, 'ninety-three thousand five hundred sixty-two'); INSERT INTO t3 VALUES(21032, 83259, 'eighty-three thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(21033, 31672, 'thirty-one thousand six hundred seventy-two'); INSERT INTO t3 VALUES(21034, 12597, 'twelve thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(21035, 27922, 'twenty-seven thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(21036, 60856, 'sixty thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(21037, 53038, 'fifty-three thousand thirty-eight'); INSERT INTO t3 VALUES(21038, 39941, 'thirty-nine thousand nine hundred forty-one'); INSERT INTO t3 VALUES(21039, 91535, 'ninety-one thousand five hundred thirty-five'); INSERT INTO t3 VALUES(21040, 43868, 'forty-three thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(21041, 22105, 'twenty-two thousand one hundred five'); INSERT INTO t3 VALUES(21042, 21722, 'twenty-one thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(21043, 5833, 'five thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(21044, 18864, 'eighteen thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(21045, 6383, 'six thousand three hundred eighty-three'); INSERT INTO t3 VALUES(21046, 53190, 'fifty-three thousand one hundred ninety'); INSERT INTO t3 VALUES(21047, 15280, 'fifteen thousand two hundred eighty'); INSERT INTO t3 VALUES(21048, 35362, 'thirty-five thousand three hundred sixty-two'); INSERT INTO t3 VALUES(21049, 30900, 'thirty thousand nine hundred'); INSERT INTO t3 VALUES(21050, 18104, 'eighteen thousand one hundred four'); INSERT INTO t3 VALUES(21051, 62309, 'sixty-two thousand three hundred nine'); INSERT INTO t3 VALUES(21052, 51843, 'fifty-one thousand eight hundred forty-three'); INSERT INTO t3 VALUES(21053, 10002, 'ten thousand two'); INSERT INTO t3 VALUES(21054, 18605, 'eighteen thousand six hundred five'); INSERT INTO t3 VALUES(21055, 46024, 'forty-six thousand twenty-four'); INSERT INTO t3 VALUES(21056, 77012, 'seventy-seven thousand twelve'); INSERT INTO t3 VALUES(21057, 57620, 'fifty-seven thousand six hundred twenty'); INSERT INTO t3 VALUES(21058, 6770, 'six thousand seven hundred seventy'); INSERT INTO t3 VALUES(21059, 40298, 'forty thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(21060, 48970, 'forty-eight thousand nine hundred seventy'); INSERT INTO t3 VALUES(21061, 10779, 'ten thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(21062, 50657, 'fifty thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(21063, 13479, 'thirteen thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(21064, 29909, 'twenty-nine thousand nine hundred nine'); INSERT INTO t3 VALUES(21065, 75081, 'seventy-five thousand eighty-one'); INSERT INTO t3 VALUES(21066, 16799, 'sixteen thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(21067, 13987, 'thirteen thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(21068, 78631, 'seventy-eight thousand six hundred thirty-one'); INSERT INTO t3 VALUES(21069, 32003, 'thirty-two thousand three'); INSERT INTO t3 VALUES(21070, 71218, 'seventy-one thousand two hundred eighteen'); INSERT INTO t3 VALUES(21071, 37771, 'thirty-seven thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(21072, 59579, 'fifty-nine thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(21073, 26602, 'twenty-six thousand six hundred two'); INSERT INTO t3 VALUES(21074, 5604, 'five thousand six hundred four'); INSERT INTO t3 VALUES(21075, 84568, 'eighty-four thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(21076, 59106, 'fifty-nine thousand one hundred six'); INSERT INTO t3 VALUES(21077, 45690, 'forty-five thousand six hundred ninety'); INSERT INTO t3 VALUES(21078, 93610, 'ninety-three thousand six hundred ten'); INSERT INTO t3 VALUES(21079, 58583, 'fifty-eight thousand five hundred eighty-three'); INSERT INTO t3 VALUES(21080, 52384, 'fifty-two thousand three hundred eighty-four'); INSERT INTO t3 VALUES(21081, 65824, 'sixty-five thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(21082, 6716, 'six thousand seven hundred sixteen'); INSERT INTO t3 VALUES(21083, 84130, 'eighty-four thousand one hundred thirty'); INSERT INTO t3 VALUES(21084, 62103, 'sixty-two thousand one hundred three'); INSERT INTO t3 VALUES(21085, 21557, 'twenty-one thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(21086, 4655, 'four thousand six hundred fifty-five'); INSERT INTO t3 VALUES(21087, 76820, 'seventy-six thousand eight hundred twenty'); INSERT INTO t3 VALUES(21088, 53337, 'fifty-three thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(21089, 6606, 'six thousand six hundred six'); INSERT INTO t3 VALUES(21090, 1724, 'one thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(21091, 50844, 'fifty thousand eight hundred forty-four'); INSERT INTO t3 VALUES(21092, 60610, 'sixty thousand six hundred ten'); INSERT INTO t3 VALUES(21093, 37681, 'thirty-seven thousand six hundred eighty-one'); INSERT INTO t3 VALUES(21094, 54741, 'fifty-four thousand seven hundred forty-one'); INSERT INTO t3 VALUES(21095, 36154, 'thirty-six thousand one hundred fifty-four'); INSERT INTO t3 VALUES(21096, 54755, 'fifty-four thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(21097, 10418, 'ten thousand four hundred eighteen'); INSERT INTO t3 VALUES(21098, 41761, 'forty-one thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(21099, 18534, 'eighteen thousand five hundred thirty-four'); INSERT INTO t3 VALUES(21100, 98917, 'ninety-eight thousand nine hundred seventeen'); INSERT INTO t3 VALUES(21101, 32256, 'thirty-two thousand two hundred fifty-six'); INSERT INTO t3 VALUES(21102, 5103, 'five thousand one hundred three'); INSERT INTO t3 VALUES(21103, 23475, 'twenty-three thousand four hundred seventy-five'); INSERT INTO t3 VALUES(21104, 7396, 'seven thousand three hundred ninety-six'); INSERT INTO t3 VALUES(21105, 39952, 'thirty-nine thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(21106, 46510, 'forty-six thousand five hundred ten'); INSERT INTO t3 VALUES(21107, 90204, 'ninety thousand two hundred four'); INSERT INTO t3 VALUES(21108, 25762, 'twenty-five thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(21109, 52464, 'fifty-two thousand four hundred sixty-four'); INSERT INTO t3 VALUES(21110, 49024, 'forty-nine thousand twenty-four'); INSERT INTO t3 VALUES(21111, 11161, 'eleven thousand one hundred sixty-one'); INSERT INTO t3 VALUES(21112, 21274, 'twenty-one thousand two hundred seventy-four'); INSERT INTO t3 VALUES(21113, 78610, 'seventy-eight thousand six hundred ten'); INSERT INTO t3 VALUES(21114, 35671, 'thirty-five thousand six hundred seventy-one'); INSERT INTO t3 VALUES(21115, 24578, 'twenty-four thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(21116, 79384, 'seventy-nine thousand three hundred eighty-four'); INSERT INTO t3 VALUES(21117, 1248, 'one thousand two hundred forty-eight'); INSERT INTO t3 VALUES(21118, 65359, 'sixty-five thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(21119, 87627, 'eighty-seven thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(21120, 49099, 'forty-nine thousand ninety-nine'); INSERT INTO t3 VALUES(21121, 77170, 'seventy-seven thousand one hundred seventy'); INSERT INTO t3 VALUES(21122, 98679, 'ninety-eight thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(21123, 18101, 'eighteen thousand one hundred one'); INSERT INTO t3 VALUES(21124, 22036, 'twenty-two thousand thirty-six'); INSERT INTO t3 VALUES(21125, 54864, 'fifty-four thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(21126, 2843, 'two thousand eight hundred forty-three'); INSERT INTO t3 VALUES(21127, 51339, 'fifty-one thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(21128, 72226, 'seventy-two thousand two hundred twenty-six'); INSERT INTO t3 VALUES(21129, 27815, 'twenty-seven thousand eight hundred fifteen'); INSERT INTO t3 VALUES(21130, 58312, 'fifty-eight thousand three hundred twelve'); INSERT INTO t3 VALUES(21131, 55616, 'fifty-five thousand six hundred sixteen'); INSERT INTO t3 VALUES(21132, 76763, 'seventy-six thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(21133, 38193, 'thirty-eight thousand one hundred ninety-three'); INSERT INTO t3 VALUES(21134, 31399, 'thirty-one thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(21135, 94983, 'ninety-four thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(21136, 93605, 'ninety-three thousand six hundred five'); INSERT INTO t3 VALUES(21137, 59464, 'fifty-nine thousand four hundred sixty-four'); INSERT INTO t3 VALUES(21138, 56463, 'fifty-six thousand four hundred sixty-three'); INSERT INTO t3 VALUES(21139, 50245, 'fifty thousand two hundred forty-five'); INSERT INTO t3 VALUES(21140, 84319, 'eighty-four thousand three hundred nineteen'); INSERT INTO t3 VALUES(21141, 8338, 'eight thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(21142, 74698, 'seventy-four thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(21143, 56701, 'fifty-six thousand seven hundred one'); INSERT INTO t3 VALUES(21144, 14385, 'fourteen thousand three hundred eighty-five'); INSERT INTO t3 VALUES(21145, 56034, 'fifty-six thousand thirty-four'); INSERT INTO t3 VALUES(21146, 70383, 'seventy thousand three hundred eighty-three'); INSERT INTO t3 VALUES(21147, 72584, 'seventy-two thousand five hundred eighty-four'); INSERT INTO t3 VALUES(21148, 55092, 'fifty-five thousand ninety-two'); INSERT INTO t3 VALUES(21149, 79780, 'seventy-nine thousand seven hundred eighty'); INSERT INTO t3 VALUES(21150, 46694, 'forty-six thousand six hundred ninety-four'); INSERT INTO t3 VALUES(21151, 57961, 'fifty-seven thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(21152, 58173, 'fifty-eight thousand one hundred seventy-three'); INSERT INTO t3 VALUES(21153, 51989, 'fifty-one thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(21154, 91963, 'ninety-one thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(21155, 47380, 'forty-seven thousand three hundred eighty'); INSERT INTO t3 VALUES(21156, 44128, 'forty-four thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(21157, 72012, 'seventy-two thousand twelve'); INSERT INTO t3 VALUES(21158, 53635, 'fifty-three thousand six hundred thirty-five'); INSERT INTO t3 VALUES(21159, 34624, 'thirty-four thousand six hundred twenty-four'); INSERT INTO t3 VALUES(21160, 77428, 'seventy-seven thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(21161, 47049, 'forty-seven thousand forty-nine'); INSERT INTO t3 VALUES(21162, 45050, 'forty-five thousand fifty'); INSERT INTO t3 VALUES(21163, 74721, 'seventy-four thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(21164, 22718, 'twenty-two thousand seven hundred eighteen'); INSERT INTO t3 VALUES(21165, 60983, 'sixty thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(21166, 69130, 'sixty-nine thousand one hundred thirty'); INSERT INTO t3 VALUES(21167, 57466, 'fifty-seven thousand four hundred sixty-six'); INSERT INTO t3 VALUES(21168, 9803, 'nine thousand eight hundred three'); INSERT INTO t3 VALUES(21169, 79807, 'seventy-nine thousand eight hundred seven'); INSERT INTO t3 VALUES(21170, 67194, 'sixty-seven thousand one hundred ninety-four'); INSERT INTO t3 VALUES(21171, 37746, 'thirty-seven thousand seven hundred forty-six'); INSERT INTO t3 VALUES(21172, 80860, 'eighty thousand eight hundred sixty'); INSERT INTO t3 VALUES(21173, 9850, 'nine thousand eight hundred fifty'); INSERT INTO t3 VALUES(21174, 45383, 'forty-five thousand three hundred eighty-three'); INSERT INTO t3 VALUES(21175, 65997, 'sixty-five thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(21176, 95738, 'ninety-five thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(21177, 58828, 'fifty-eight thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(21178, 81971, 'eighty-one thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(21179, 7641, 'seven thousand six hundred forty-one'); INSERT INTO t3 VALUES(21180, 7723, 'seven thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(21181, 3820, 'three thousand eight hundred twenty'); INSERT INTO t3 VALUES(21182, 73511, 'seventy-three thousand five hundred eleven'); INSERT INTO t3 VALUES(21183, 60887, 'sixty thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(21184, 33349, 'thirty-three thousand three hundred forty-nine'); INSERT INTO t3 VALUES(21185, 41303, 'forty-one thousand three hundred three'); INSERT INTO t3 VALUES(21186, 99307, 'ninety-nine thousand three hundred seven'); INSERT INTO t3 VALUES(21187, 19969, 'nineteen thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(21188, 78923, 'seventy-eight thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(21189, 92739, 'ninety-two thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(21190, 64022, 'sixty-four thousand twenty-two'); INSERT INTO t3 VALUES(21191, 13342, 'thirteen thousand three hundred forty-two'); INSERT INTO t3 VALUES(21192, 66510, 'sixty-six thousand five hundred ten'); INSERT INTO t3 VALUES(21193, 89912, 'eighty-nine thousand nine hundred twelve'); INSERT INTO t3 VALUES(21194, 38205, 'thirty-eight thousand two hundred five'); INSERT INTO t3 VALUES(21195, 11257, 'eleven thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(21196, 88842, 'eighty-eight thousand eight hundred forty-two'); INSERT INTO t3 VALUES(21197, 21514, 'twenty-one thousand five hundred fourteen'); INSERT INTO t3 VALUES(21198, 81451, 'eighty-one thousand four hundred fifty-one'); INSERT INTO t3 VALUES(21199, 37321, 'thirty-seven thousand three hundred twenty-one'); INSERT INTO t3 VALUES(21200, 12376, 'twelve thousand three hundred seventy-six'); INSERT INTO t3 VALUES(21201, 94493, 'ninety-four thousand four hundred ninety-three'); INSERT INTO t3 VALUES(21202, 84579, 'eighty-four thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(21203, 64859, 'sixty-four thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(21204, 70935, 'seventy thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(21205, 64375, 'sixty-four thousand three hundred seventy-five'); INSERT INTO t3 VALUES(21206, 1923, 'one thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(21207, 11065, 'eleven thousand sixty-five'); INSERT INTO t3 VALUES(21208, 69769, 'sixty-nine thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(21209, 79690, 'seventy-nine thousand six hundred ninety'); INSERT INTO t3 VALUES(21210, 27326, 'twenty-seven thousand three hundred twenty-six'); INSERT INTO t3 VALUES(21211, 46426, 'forty-six thousand four hundred twenty-six'); INSERT INTO t3 VALUES(21212, 39032, 'thirty-nine thousand thirty-two'); INSERT INTO t3 VALUES(21213, 16516, 'sixteen thousand five hundred sixteen'); INSERT INTO t3 VALUES(21214, 56359, 'fifty-six thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(21215, 65516, 'sixty-five thousand five hundred sixteen'); INSERT INTO t3 VALUES(21216, 96327, 'ninety-six thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(21217, 28013, 'twenty-eight thousand thirteen'); INSERT INTO t3 VALUES(21218, 19666, 'nineteen thousand six hundred sixty-six'); INSERT INTO t3 VALUES(21219, 52926, 'fifty-two thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(21220, 18147, 'eighteen thousand one hundred forty-seven'); INSERT INTO t3 VALUES(21221, 5065, 'five thousand sixty-five'); INSERT INTO t3 VALUES(21222, 24529, 'twenty-four thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(21223, 69597, 'sixty-nine thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(21224, 99325, 'ninety-nine thousand three hundred twenty-five'); INSERT INTO t3 VALUES(21225, 68459, 'sixty-eight thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(21226, 10431, 'ten thousand four hundred thirty-one'); INSERT INTO t3 VALUES(21227, 49123, 'forty-nine thousand one hundred twenty-three'); INSERT INTO t3 VALUES(21228, 65687, 'sixty-five thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(21229, 93170, 'ninety-three thousand one hundred seventy'); INSERT INTO t3 VALUES(21230, 38223, 'thirty-eight thousand two hundred twenty-three'); INSERT INTO t3 VALUES(21231, 43111, 'forty-three thousand one hundred eleven'); INSERT INTO t3 VALUES(21232, 77938, 'seventy-seven thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(21233, 72641, 'seventy-two thousand six hundred forty-one'); INSERT INTO t3 VALUES(21234, 25133, 'twenty-five thousand one hundred thirty-three'); INSERT INTO t3 VALUES(21235, 16906, 'sixteen thousand nine hundred six'); INSERT INTO t3 VALUES(21236, 6633, 'six thousand six hundred thirty-three'); INSERT INTO t3 VALUES(21237, 58631, 'fifty-eight thousand six hundred thirty-one'); INSERT INTO t3 VALUES(21238, 35253, 'thirty-five thousand two hundred fifty-three'); INSERT INTO t3 VALUES(21239, 67550, 'sixty-seven thousand five hundred fifty'); INSERT INTO t3 VALUES(21240, 79461, 'seventy-nine thousand four hundred sixty-one'); INSERT INTO t3 VALUES(21241, 30295, 'thirty thousand two hundred ninety-five'); INSERT INTO t3 VALUES(21242, 43785, 'forty-three thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(21243, 89336, 'eighty-nine thousand three hundred thirty-six'); INSERT INTO t3 VALUES(21244, 73351, 'seventy-three thousand three hundred fifty-one'); INSERT INTO t3 VALUES(21245, 37262, 'thirty-seven thousand two hundred sixty-two'); INSERT INTO t3 VALUES(21246, 35129, 'thirty-five thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(21247, 10119, 'ten thousand one hundred nineteen'); INSERT INTO t3 VALUES(21248, 56112, 'fifty-six thousand one hundred twelve'); INSERT INTO t3 VALUES(21249, 28548, 'twenty-eight thousand five hundred forty-eight'); INSERT INTO t3 VALUES(21250, 13115, 'thirteen thousand one hundred fifteen'); INSERT INTO t3 VALUES(21251, 80286, 'eighty thousand two hundred eighty-six'); INSERT INTO t3 VALUES(21252, 69147, 'sixty-nine thousand one hundred forty-seven'); INSERT INTO t3 VALUES(21253, 65728, 'sixty-five thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(21254, 3719, 'three thousand seven hundred nineteen'); INSERT INTO t3 VALUES(21255, 25014, 'twenty-five thousand fourteen'); INSERT INTO t3 VALUES(21256, 14991, 'fourteen thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(21257, 70268, 'seventy thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(21258, 54924, 'fifty-four thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(21259, 31017, 'thirty-one thousand seventeen'); INSERT INTO t3 VALUES(21260, 90810, 'ninety thousand eight hundred ten'); INSERT INTO t3 VALUES(21261, 26717, 'twenty-six thousand seven hundred seventeen'); INSERT INTO t3 VALUES(21262, 22031, 'twenty-two thousand thirty-one'); INSERT INTO t3 VALUES(21263, 61116, 'sixty-one thousand one hundred sixteen'); INSERT INTO t3 VALUES(21264, 51453, 'fifty-one thousand four hundred fifty-three'); INSERT INTO t3 VALUES(21265, 11482, 'eleven thousand four hundred eighty-two'); INSERT INTO t3 VALUES(21266, 56454, 'fifty-six thousand four hundred fifty-four'); INSERT INTO t3 VALUES(21267, 97193, 'ninety-seven thousand one hundred ninety-three'); INSERT INTO t3 VALUES(21268, 28472, 'twenty-eight thousand four hundred seventy-two'); INSERT INTO t3 VALUES(21269, 68957, 'sixty-eight thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(21270, 91060, 'ninety-one thousand sixty'); INSERT INTO t3 VALUES(21271, 95292, 'ninety-five thousand two hundred ninety-two'); INSERT INTO t3 VALUES(21272, 8577, 'eight thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(21273, 38635, 'thirty-eight thousand six hundred thirty-five'); INSERT INTO t3 VALUES(21274, 17952, 'seventeen thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(21275, 49788, 'forty-nine thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(21276, 56854, 'fifty-six thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(21277, 16567, 'sixteen thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(21278, 54793, 'fifty-four thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(21279, 95460, 'ninety-five thousand four hundred sixty'); INSERT INTO t3 VALUES(21280, 37602, 'thirty-seven thousand six hundred two'); INSERT INTO t3 VALUES(21281, 38717, 'thirty-eight thousand seven hundred seventeen'); INSERT INTO t3 VALUES(21282, 23758, 'twenty-three thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(21283, 3027, 'three thousand twenty-seven'); INSERT INTO t3 VALUES(21284, 699, 'six hundred ninety-nine'); INSERT INTO t3 VALUES(21285, 50325, 'fifty thousand three hundred twenty-five'); INSERT INTO t3 VALUES(21286, 46260, 'forty-six thousand two hundred sixty'); INSERT INTO t3 VALUES(21287, 24424, 'twenty-four thousand four hundred twenty-four'); INSERT INTO t3 VALUES(21288, 43256, 'forty-three thousand two hundred fifty-six'); INSERT INTO t3 VALUES(21289, 54408, 'fifty-four thousand four hundred eight'); INSERT INTO t3 VALUES(21290, 83235, 'eighty-three thousand two hundred thirty-five'); INSERT INTO t3 VALUES(21291, 88866, 'eighty-eight thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(21292, 93809, 'ninety-three thousand eight hundred nine'); INSERT INTO t3 VALUES(21293, 76333, 'seventy-six thousand three hundred thirty-three'); INSERT INTO t3 VALUES(21294, 19405, 'nineteen thousand four hundred five'); INSERT INTO t3 VALUES(21295, 38694, 'thirty-eight thousand six hundred ninety-four'); INSERT INTO t3 VALUES(21296, 71078, 'seventy-one thousand seventy-eight'); INSERT INTO t3 VALUES(21297, 43986, 'forty-three thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(21298, 14483, 'fourteen thousand four hundred eighty-three'); INSERT INTO t3 VALUES(21299, 67360, 'sixty-seven thousand three hundred sixty'); INSERT INTO t3 VALUES(21300, 51192, 'fifty-one thousand one hundred ninety-two'); INSERT INTO t3 VALUES(21301, 76933, 'seventy-six thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(21302, 85569, 'eighty-five thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(21303, 68577, 'sixty-eight thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(21304, 2701, 'two thousand seven hundred one'); INSERT INTO t3 VALUES(21305, 46845, 'forty-six thousand eight hundred forty-five'); INSERT INTO t3 VALUES(21306, 53627, 'fifty-three thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(21307, 36701, 'thirty-six thousand seven hundred one'); INSERT INTO t3 VALUES(21308, 8267, 'eight thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(21309, 81965, 'eighty-one thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(21310, 76699, 'seventy-six thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(21311, 87802, 'eighty-seven thousand eight hundred two'); INSERT INTO t3 VALUES(21312, 22902, 'twenty-two thousand nine hundred two'); INSERT INTO t3 VALUES(21313, 57170, 'fifty-seven thousand one hundred seventy'); INSERT INTO t3 VALUES(21314, 15532, 'fifteen thousand five hundred thirty-two'); INSERT INTO t3 VALUES(21315, 61255, 'sixty-one thousand two hundred fifty-five'); INSERT INTO t3 VALUES(21316, 45677, 'forty-five thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(21317, 49736, 'forty-nine thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(21318, 22784, 'twenty-two thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(21319, 67308, 'sixty-seven thousand three hundred eight'); INSERT INTO t3 VALUES(21320, 77073, 'seventy-seven thousand seventy-three'); INSERT INTO t3 VALUES(21321, 58, 'fifty-eight'); INSERT INTO t3 VALUES(21322, 91089, 'ninety-one thousand eighty-nine'); INSERT INTO t3 VALUES(21323, 31013, 'thirty-one thousand thirteen'); INSERT INTO t3 VALUES(21324, 60989, 'sixty thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(21325, 45384, 'forty-five thousand three hundred eighty-four'); INSERT INTO t3 VALUES(21326, 91252, 'ninety-one thousand two hundred fifty-two'); INSERT INTO t3 VALUES(21327, 92086, 'ninety-two thousand eighty-six'); INSERT INTO t3 VALUES(21328, 54231, 'fifty-four thousand two hundred thirty-one'); INSERT INTO t3 VALUES(21329, 56193, 'fifty-six thousand one hundred ninety-three'); INSERT INTO t3 VALUES(21330, 16542, 'sixteen thousand five hundred forty-two'); INSERT INTO t3 VALUES(21331, 90770, 'ninety thousand seven hundred seventy'); INSERT INTO t3 VALUES(21332, 21326, 'twenty-one thousand three hundred twenty-six'); INSERT INTO t3 VALUES(21333, 7154, 'seven thousand one hundred fifty-four'); INSERT INTO t3 VALUES(21334, 64555, 'sixty-four thousand five hundred fifty-five'); INSERT INTO t3 VALUES(21335, 15486, 'fifteen thousand four hundred eighty-six'); INSERT INTO t3 VALUES(21336, 28218, 'twenty-eight thousand two hundred eighteen'); INSERT INTO t3 VALUES(21337, 19153, 'nineteen thousand one hundred fifty-three'); INSERT INTO t3 VALUES(21338, 64241, 'sixty-four thousand two hundred forty-one'); INSERT INTO t3 VALUES(21339, 284, 'two hundred eighty-four'); INSERT INTO t3 VALUES(21340, 5998, 'five thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(21341, 40075, 'forty thousand seventy-five'); INSERT INTO t3 VALUES(21342, 1898, 'one thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(21343, 18262, 'eighteen thousand two hundred sixty-two'); INSERT INTO t3 VALUES(21344, 47969, 'forty-seven thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(21345, 72196, 'seventy-two thousand one hundred ninety-six'); INSERT INTO t3 VALUES(21346, 88168, 'eighty-eight thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(21347, 59900, 'fifty-nine thousand nine hundred'); INSERT INTO t3 VALUES(21348, 68024, 'sixty-eight thousand twenty-four'); INSERT INTO t3 VALUES(21349, 18366, 'eighteen thousand three hundred sixty-six'); INSERT INTO t3 VALUES(21350, 28768, 'twenty-eight thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(21351, 64026, 'sixty-four thousand twenty-six'); INSERT INTO t3 VALUES(21352, 9538, 'nine thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(21353, 9580, 'nine thousand five hundred eighty'); INSERT INTO t3 VALUES(21354, 14044, 'fourteen thousand forty-four'); INSERT INTO t3 VALUES(21355, 66235, 'sixty-six thousand two hundred thirty-five'); INSERT INTO t3 VALUES(21356, 20381, 'twenty thousand three hundred eighty-one'); INSERT INTO t3 VALUES(21357, 52306, 'fifty-two thousand three hundred six'); INSERT INTO t3 VALUES(21358, 44789, 'forty-four thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(21359, 90283, 'ninety thousand two hundred eighty-three'); INSERT INTO t3 VALUES(21360, 43261, 'forty-three thousand two hundred sixty-one'); INSERT INTO t3 VALUES(21361, 66986, 'sixty-six thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(21362, 75009, 'seventy-five thousand nine'); INSERT INTO t3 VALUES(21363, 69385, 'sixty-nine thousand three hundred eighty-five'); INSERT INTO t3 VALUES(21364, 29806, 'twenty-nine thousand eight hundred six'); INSERT INTO t3 VALUES(21365, 68438, 'sixty-eight thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(21366, 53306, 'fifty-three thousand three hundred six'); INSERT INTO t3 VALUES(21367, 166, 'one hundred sixty-six'); INSERT INTO t3 VALUES(21368, 75263, 'seventy-five thousand two hundred sixty-three'); INSERT INTO t3 VALUES(21369, 18116, 'eighteen thousand one hundred sixteen'); INSERT INTO t3 VALUES(21370, 23360, 'twenty-three thousand three hundred sixty'); INSERT INTO t3 VALUES(21371, 70223, 'seventy thousand two hundred twenty-three'); INSERT INTO t3 VALUES(21372, 14270, 'fourteen thousand two hundred seventy'); INSERT INTO t3 VALUES(21373, 62807, 'sixty-two thousand eight hundred seven'); INSERT INTO t3 VALUES(21374, 1479, 'one thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(21375, 25868, 'twenty-five thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(21376, 45842, 'forty-five thousand eight hundred forty-two'); INSERT INTO t3 VALUES(21377, 38531, 'thirty-eight thousand five hundred thirty-one'); INSERT INTO t3 VALUES(21378, 28633, 'twenty-eight thousand six hundred thirty-three'); INSERT INTO t3 VALUES(21379, 89657, 'eighty-nine thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(21380, 50729, 'fifty thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(21381, 6515, 'six thousand five hundred fifteen'); INSERT INTO t3 VALUES(21382, 25163, 'twenty-five thousand one hundred sixty-three'); INSERT INTO t3 VALUES(21383, 13325, 'thirteen thousand three hundred twenty-five'); INSERT INTO t3 VALUES(21384, 33822, 'thirty-three thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(21385, 56555, 'fifty-six thousand five hundred fifty-five'); INSERT INTO t3 VALUES(21386, 86213, 'eighty-six thousand two hundred thirteen'); INSERT INTO t3 VALUES(21387, 20050, 'twenty thousand fifty'); INSERT INTO t3 VALUES(21388, 20905, 'twenty thousand nine hundred five'); INSERT INTO t3 VALUES(21389, 73578, 'seventy-three thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(21390, 65196, 'sixty-five thousand one hundred ninety-six'); INSERT INTO t3 VALUES(21391, 98731, 'ninety-eight thousand seven hundred thirty-one'); INSERT INTO t3 VALUES(21392, 49755, 'forty-nine thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(21393, 74855, 'seventy-four thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(21394, 43913, 'forty-three thousand nine hundred thirteen'); INSERT INTO t3 VALUES(21395, 72070, 'seventy-two thousand seventy'); INSERT INTO t3 VALUES(21396, 16311, 'sixteen thousand three hundred eleven'); INSERT INTO t3 VALUES(21397, 79274, 'seventy-nine thousand two hundred seventy-four'); INSERT INTO t3 VALUES(21398, 42906, 'forty-two thousand nine hundred six'); INSERT INTO t3 VALUES(21399, 53052, 'fifty-three thousand fifty-two'); INSERT INTO t3 VALUES(21400, 87970, 'eighty-seven thousand nine hundred seventy'); INSERT INTO t3 VALUES(21401, 71868, 'seventy-one thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(21402, 23882, 'twenty-three thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(21403, 59125, 'fifty-nine thousand one hundred twenty-five'); INSERT INTO t3 VALUES(21404, 90598, 'ninety thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(21405, 55700, 'fifty-five thousand seven hundred'); INSERT INTO t3 VALUES(21406, 98865, 'ninety-eight thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(21407, 99734, 'ninety-nine thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(21408, 35660, 'thirty-five thousand six hundred sixty'); INSERT INTO t3 VALUES(21409, 96579, 'ninety-six thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(21410, 97555, 'ninety-seven thousand five hundred fifty-five'); INSERT INTO t3 VALUES(21411, 10380, 'ten thousand three hundred eighty'); INSERT INTO t3 VALUES(21412, 57470, 'fifty-seven thousand four hundred seventy'); INSERT INTO t3 VALUES(21413, 37730, 'thirty-seven thousand seven hundred thirty'); INSERT INTO t3 VALUES(21414, 49065, 'forty-nine thousand sixty-five'); INSERT INTO t3 VALUES(21415, 87986, 'eighty-seven thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(21416, 11150, 'eleven thousand one hundred fifty'); INSERT INTO t3 VALUES(21417, 34808, 'thirty-four thousand eight hundred eight'); INSERT INTO t3 VALUES(21418, 74280, 'seventy-four thousand two hundred eighty'); INSERT INTO t3 VALUES(21419, 51963, 'fifty-one thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(21420, 42638, 'forty-two thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(21421, 83882, 'eighty-three thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(21422, 55078, 'fifty-five thousand seventy-eight'); INSERT INTO t3 VALUES(21423, 22566, 'twenty-two thousand five hundred sixty-six'); INSERT INTO t3 VALUES(21424, 18029, 'eighteen thousand twenty-nine'); INSERT INTO t3 VALUES(21425, 32124, 'thirty-two thousand one hundred twenty-four'); INSERT INTO t3 VALUES(21426, 94122, 'ninety-four thousand one hundred twenty-two'); INSERT INTO t3 VALUES(21427, 57186, 'fifty-seven thousand one hundred eighty-six'); INSERT INTO t3 VALUES(21428, 93900, 'ninety-three thousand nine hundred'); INSERT INTO t3 VALUES(21429, 58253, 'fifty-eight thousand two hundred fifty-three'); INSERT INTO t3 VALUES(21430, 90206, 'ninety thousand two hundred six'); INSERT INTO t3 VALUES(21431, 71120, 'seventy-one thousand one hundred twenty'); INSERT INTO t3 VALUES(21432, 61687, 'sixty-one thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(21433, 57180, 'fifty-seven thousand one hundred eighty'); INSERT INTO t3 VALUES(21434, 59545, 'fifty-nine thousand five hundred forty-five'); INSERT INTO t3 VALUES(21435, 85553, 'eighty-five thousand five hundred fifty-three'); INSERT INTO t3 VALUES(21436, 31645, 'thirty-one thousand six hundred forty-five'); INSERT INTO t3 VALUES(21437, 97301, 'ninety-seven thousand three hundred one'); INSERT INTO t3 VALUES(21438, 39198, 'thirty-nine thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(21439, 50337, 'fifty thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(21440, 51918, 'fifty-one thousand nine hundred eighteen'); INSERT INTO t3 VALUES(21441, 2819, 'two thousand eight hundred nineteen'); INSERT INTO t3 VALUES(21442, 44434, 'forty-four thousand four hundred thirty-four'); INSERT INTO t3 VALUES(21443, 45954, 'forty-five thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(21444, 73117, 'seventy-three thousand one hundred seventeen'); INSERT INTO t3 VALUES(21445, 86892, 'eighty-six thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(21446, 1546, 'one thousand five hundred forty-six'); INSERT INTO t3 VALUES(21447, 85983, 'eighty-five thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(21448, 45096, 'forty-five thousand ninety-six'); INSERT INTO t3 VALUES(21449, 38385, 'thirty-eight thousand three hundred eighty-five'); INSERT INTO t3 VALUES(21450, 89218, 'eighty-nine thousand two hundred eighteen'); INSERT INTO t3 VALUES(21451, 77057, 'seventy-seven thousand fifty-seven'); INSERT INTO t3 VALUES(21452, 97983, 'ninety-seven thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(21453, 67145, 'sixty-seven thousand one hundred forty-five'); INSERT INTO t3 VALUES(21454, 80510, 'eighty thousand five hundred ten'); INSERT INTO t3 VALUES(21455, 86018, 'eighty-six thousand eighteen'); INSERT INTO t3 VALUES(21456, 81518, 'eighty-one thousand five hundred eighteen'); INSERT INTO t3 VALUES(21457, 54371, 'fifty-four thousand three hundred seventy-one'); INSERT INTO t3 VALUES(21458, 93231, 'ninety-three thousand two hundred thirty-one'); INSERT INTO t3 VALUES(21459, 63953, 'sixty-three thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(21460, 17209, 'seventeen thousand two hundred nine'); INSERT INTO t3 VALUES(21461, 90362, 'ninety thousand three hundred sixty-two'); INSERT INTO t3 VALUES(21462, 47282, 'forty-seven thousand two hundred eighty-two'); INSERT INTO t3 VALUES(21463, 83240, 'eighty-three thousand two hundred forty'); INSERT INTO t3 VALUES(21464, 30838, 'thirty thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(21465, 14411, 'fourteen thousand four hundred eleven'); INSERT INTO t3 VALUES(21466, 7401, 'seven thousand four hundred one'); INSERT INTO t3 VALUES(21467, 59627, 'fifty-nine thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(21468, 51807, 'fifty-one thousand eight hundred seven'); INSERT INTO t3 VALUES(21469, 81946, 'eighty-one thousand nine hundred forty-six'); INSERT INTO t3 VALUES(21470, 67830, 'sixty-seven thousand eight hundred thirty'); INSERT INTO t3 VALUES(21471, 63413, 'sixty-three thousand four hundred thirteen'); INSERT INTO t3 VALUES(21472, 47127, 'forty-seven thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(21473, 83482, 'eighty-three thousand four hundred eighty-two'); INSERT INTO t3 VALUES(21474, 94895, 'ninety-four thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(21475, 303, 'three hundred three'); INSERT INTO t3 VALUES(21476, 9602, 'nine thousand six hundred two'); INSERT INTO t3 VALUES(21477, 3700, 'three thousand seven hundred'); INSERT INTO t3 VALUES(21478, 70204, 'seventy thousand two hundred four'); INSERT INTO t3 VALUES(21479, 30340, 'thirty thousand three hundred forty'); INSERT INTO t3 VALUES(21480, 58741, 'fifty-eight thousand seven hundred forty-one'); INSERT INTO t3 VALUES(21481, 9414, 'nine thousand four hundred fourteen'); INSERT INTO t3 VALUES(21482, 20273, 'twenty thousand two hundred seventy-three'); INSERT INTO t3 VALUES(21483, 34814, 'thirty-four thousand eight hundred fourteen'); INSERT INTO t3 VALUES(21484, 18909, 'eighteen thousand nine hundred nine'); INSERT INTO t3 VALUES(21485, 7279, 'seven thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(21486, 11667, 'eleven thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(21487, 54898, 'fifty-four thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(21488, 74597, 'seventy-four thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(21489, 60445, 'sixty thousand four hundred forty-five'); INSERT INTO t3 VALUES(21490, 53461, 'fifty-three thousand four hundred sixty-one'); INSERT INTO t3 VALUES(21491, 63266, 'sixty-three thousand two hundred sixty-six'); INSERT INTO t3 VALUES(21492, 52471, 'fifty-two thousand four hundred seventy-one'); INSERT INTO t3 VALUES(21493, 97454, 'ninety-seven thousand four hundred fifty-four'); INSERT INTO t3 VALUES(21494, 40920, 'forty thousand nine hundred twenty'); INSERT INTO t3 VALUES(21495, 83251, 'eighty-three thousand two hundred fifty-one'); INSERT INTO t3 VALUES(21496, 295, 'two hundred ninety-five'); INSERT INTO t3 VALUES(21497, 40824, 'forty thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(21498, 94697, 'ninety-four thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(21499, 8574, 'eight thousand five hundred seventy-four'); INSERT INTO t3 VALUES(21500, 49587, 'forty-nine thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(21501, 38914, 'thirty-eight thousand nine hundred fourteen'); INSERT INTO t3 VALUES(21502, 98344, 'ninety-eight thousand three hundred forty-four'); INSERT INTO t3 VALUES(21503, 63146, 'sixty-three thousand one hundred forty-six'); INSERT INTO t3 VALUES(21504, 74695, 'seventy-four thousand six hundred ninety-five'); INSERT INTO t3 VALUES(21505, 80843, 'eighty thousand eight hundred forty-three'); INSERT INTO t3 VALUES(21506, 32987, 'thirty-two thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(21507, 15762, 'fifteen thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(21508, 45077, 'forty-five thousand seventy-seven'); INSERT INTO t3 VALUES(21509, 59624, 'fifty-nine thousand six hundred twenty-four'); INSERT INTO t3 VALUES(21510, 18342, 'eighteen thousand three hundred forty-two'); INSERT INTO t3 VALUES(21511, 95890, 'ninety-five thousand eight hundred ninety'); INSERT INTO t3 VALUES(21512, 89234, 'eighty-nine thousand two hundred thirty-four'); INSERT INTO t3 VALUES(21513, 44716, 'forty-four thousand seven hundred sixteen'); INSERT INTO t3 VALUES(21514, 4542, 'four thousand five hundred forty-two'); INSERT INTO t3 VALUES(21515, 82616, 'eighty-two thousand six hundred sixteen'); INSERT INTO t3 VALUES(21516, 57197, 'fifty-seven thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(21517, 17675, 'seventeen thousand six hundred seventy-five'); INSERT INTO t3 VALUES(21518, 70653, 'seventy thousand six hundred fifty-three'); INSERT INTO t3 VALUES(21519, 96781, 'ninety-six thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(21520, 51478, 'fifty-one thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(21521, 20295, 'twenty thousand two hundred ninety-five'); INSERT INTO t3 VALUES(21522, 97421, 'ninety-seven thousand four hundred twenty-one'); INSERT INTO t3 VALUES(21523, 52905, 'fifty-two thousand nine hundred five'); INSERT INTO t3 VALUES(21524, 30670, 'thirty thousand six hundred seventy'); INSERT INTO t3 VALUES(21525, 6862, 'six thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(21526, 37099, 'thirty-seven thousand ninety-nine'); INSERT INTO t3 VALUES(21527, 5196, 'five thousand one hundred ninety-six'); INSERT INTO t3 VALUES(21528, 13272, 'thirteen thousand two hundred seventy-two'); INSERT INTO t3 VALUES(21529, 15139, 'fifteen thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(21530, 49514, 'forty-nine thousand five hundred fourteen'); INSERT INTO t3 VALUES(21531, 37737, 'thirty-seven thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(21532, 23749, 'twenty-three thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(21533, 97539, 'ninety-seven thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(21534, 91772, 'ninety-one thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(21535, 73126, 'seventy-three thousand one hundred twenty-six'); INSERT INTO t3 VALUES(21536, 86589, 'eighty-six thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(21537, 96126, 'ninety-six thousand one hundred twenty-six'); INSERT INTO t3 VALUES(21538, 84447, 'eighty-four thousand four hundred forty-seven'); INSERT INTO t3 VALUES(21539, 72310, 'seventy-two thousand three hundred ten'); INSERT INTO t3 VALUES(21540, 18829, 'eighteen thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(21541, 19148, 'nineteen thousand one hundred forty-eight'); INSERT INTO t3 VALUES(21542, 97257, 'ninety-seven thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(21543, 98677, 'ninety-eight thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(21544, 29769, 'twenty-nine thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(21545, 54671, 'fifty-four thousand six hundred seventy-one'); INSERT INTO t3 VALUES(21546, 18598, 'eighteen thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(21547, 53259, 'fifty-three thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(21548, 26847, 'twenty-six thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(21549, 8886, 'eight thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(21550, 99129, 'ninety-nine thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(21551, 74547, 'seventy-four thousand five hundred forty-seven'); INSERT INTO t3 VALUES(21552, 48185, 'forty-eight thousand one hundred eighty-five'); INSERT INTO t3 VALUES(21553, 73522, 'seventy-three thousand five hundred twenty-two'); INSERT INTO t3 VALUES(21554, 88478, 'eighty-eight thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(21555, 61341, 'sixty-one thousand three hundred forty-one'); INSERT INTO t3 VALUES(21556, 76056, 'seventy-six thousand fifty-six'); INSERT INTO t3 VALUES(21557, 82915, 'eighty-two thousand nine hundred fifteen'); INSERT INTO t3 VALUES(21558, 89760, 'eighty-nine thousand seven hundred sixty'); INSERT INTO t3 VALUES(21559, 86237, 'eighty-six thousand two hundred thirty-seven'); INSERT INTO t3 VALUES(21560, 42146, 'forty-two thousand one hundred forty-six'); INSERT INTO t3 VALUES(21561, 56689, 'fifty-six thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(21562, 13458, 'thirteen thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(21563, 66809, 'sixty-six thousand eight hundred nine'); INSERT INTO t3 VALUES(21564, 59628, 'fifty-nine thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(21565, 4091, 'four thousand ninety-one'); INSERT INTO t3 VALUES(21566, 6728, 'six thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(21567, 56263, 'fifty-six thousand two hundred sixty-three'); INSERT INTO t3 VALUES(21568, 64969, 'sixty-four thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(21569, 59894, 'fifty-nine thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(21570, 34055, 'thirty-four thousand fifty-five'); INSERT INTO t3 VALUES(21571, 60244, 'sixty thousand two hundred forty-four'); INSERT INTO t3 VALUES(21572, 39364, 'thirty-nine thousand three hundred sixty-four'); INSERT INTO t3 VALUES(21573, 10139, 'ten thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(21574, 87016, 'eighty-seven thousand sixteen'); INSERT INTO t3 VALUES(21575, 86302, 'eighty-six thousand three hundred two'); INSERT INTO t3 VALUES(21576, 71826, 'seventy-one thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(21577, 72801, 'seventy-two thousand eight hundred one'); INSERT INTO t3 VALUES(21578, 88955, 'eighty-eight thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(21579, 47171, 'forty-seven thousand one hundred seventy-one'); INSERT INTO t3 VALUES(21580, 16583, 'sixteen thousand five hundred eighty-three'); INSERT INTO t3 VALUES(21581, 12476, 'twelve thousand four hundred seventy-six'); INSERT INTO t3 VALUES(21582, 73586, 'seventy-three thousand five hundred eighty-six'); INSERT INTO t3 VALUES(21583, 69546, 'sixty-nine thousand five hundred forty-six'); INSERT INTO t3 VALUES(21584, 67841, 'sixty-seven thousand eight hundred forty-one'); INSERT INTO t3 VALUES(21585, 71758, 'seventy-one thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(21586, 96169, 'ninety-six thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(21587, 25453, 'twenty-five thousand four hundred fifty-three'); INSERT INTO t3 VALUES(21588, 19691, 'nineteen thousand six hundred ninety-one'); INSERT INTO t3 VALUES(21589, 66236, 'sixty-six thousand two hundred thirty-six'); INSERT INTO t3 VALUES(21590, 48160, 'forty-eight thousand one hundred sixty'); INSERT INTO t3 VALUES(21591, 88173, 'eighty-eight thousand one hundred seventy-three'); INSERT INTO t3 VALUES(21592, 64755, 'sixty-four thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(21593, 81286, 'eighty-one thousand two hundred eighty-six'); INSERT INTO t3 VALUES(21594, 68945, 'sixty-eight thousand nine hundred forty-five'); INSERT INTO t3 VALUES(21595, 27970, 'twenty-seven thousand nine hundred seventy'); INSERT INTO t3 VALUES(21596, 18679, 'eighteen thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(21597, 35565, 'thirty-five thousand five hundred sixty-five'); INSERT INTO t3 VALUES(21598, 30835, 'thirty thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(21599, 35010, 'thirty-five thousand ten'); INSERT INTO t3 VALUES(21600, 85539, 'eighty-five thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(21601, 70412, 'seventy thousand four hundred twelve'); INSERT INTO t3 VALUES(21602, 21032, 'twenty-one thousand thirty-two'); INSERT INTO t3 VALUES(21603, 57223, 'fifty-seven thousand two hundred twenty-three'); INSERT INTO t3 VALUES(21604, 60443, 'sixty thousand four hundred forty-three'); INSERT INTO t3 VALUES(21605, 85621, 'eighty-five thousand six hundred twenty-one'); INSERT INTO t3 VALUES(21606, 19692, 'nineteen thousand six hundred ninety-two'); INSERT INTO t3 VALUES(21607, 54266, 'fifty-four thousand two hundred sixty-six'); INSERT INTO t3 VALUES(21608, 97028, 'ninety-seven thousand twenty-eight'); INSERT INTO t3 VALUES(21609, 4670, 'four thousand six hundred seventy'); INSERT INTO t3 VALUES(21610, 98178, 'ninety-eight thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(21611, 98359, 'ninety-eight thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(21612, 61961, 'sixty-one thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(21613, 9739, 'nine thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(21614, 29973, 'twenty-nine thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(21615, 35991, 'thirty-five thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(21616, 28889, 'twenty-eight thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(21617, 55720, 'fifty-five thousand seven hundred twenty'); INSERT INTO t3 VALUES(21618, 33435, 'thirty-three thousand four hundred thirty-five'); INSERT INTO t3 VALUES(21619, 37358, 'thirty-seven thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(21620, 54114, 'fifty-four thousand one hundred fourteen'); INSERT INTO t3 VALUES(21621, 43990, 'forty-three thousand nine hundred ninety'); INSERT INTO t3 VALUES(21622, 66541, 'sixty-six thousand five hundred forty-one'); INSERT INTO t3 VALUES(21623, 87493, 'eighty-seven thousand four hundred ninety-three'); INSERT INTO t3 VALUES(21624, 55828, 'fifty-five thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(21625, 77336, 'seventy-seven thousand three hundred thirty-six'); INSERT INTO t3 VALUES(21626, 76885, 'seventy-six thousand eight hundred eighty-five'); INSERT INTO t3 VALUES(21627, 94799, 'ninety-four thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(21628, 73560, 'seventy-three thousand five hundred sixty'); INSERT INTO t3 VALUES(21629, 24910, 'twenty-four thousand nine hundred ten'); INSERT INTO t3 VALUES(21630, 51904, 'fifty-one thousand nine hundred four'); INSERT INTO t3 VALUES(21631, 78312, 'seventy-eight thousand three hundred twelve'); INSERT INTO t3 VALUES(21632, 80111, 'eighty thousand one hundred eleven'); INSERT INTO t3 VALUES(21633, 47097, 'forty-seven thousand ninety-seven'); INSERT INTO t3 VALUES(21634, 58822, 'fifty-eight thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(21635, 94797, 'ninety-four thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(21636, 41647, 'forty-one thousand six hundred forty-seven'); INSERT INTO t3 VALUES(21637, 67488, 'sixty-seven thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(21638, 73991, 'seventy-three thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(21639, 19018, 'nineteen thousand eighteen'); INSERT INTO t3 VALUES(21640, 46130, 'forty-six thousand one hundred thirty'); INSERT INTO t3 VALUES(21641, 49619, 'forty-nine thousand six hundred nineteen'); INSERT INTO t3 VALUES(21642, 86410, 'eighty-six thousand four hundred ten'); INSERT INTO t3 VALUES(21643, 98746, 'ninety-eight thousand seven hundred forty-six'); INSERT INTO t3 VALUES(21644, 80081, 'eighty thousand eighty-one'); INSERT INTO t3 VALUES(21645, 23602, 'twenty-three thousand six hundred two'); INSERT INTO t3 VALUES(21646, 53738, 'fifty-three thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(21647, 57507, 'fifty-seven thousand five hundred seven'); INSERT INTO t3 VALUES(21648, 91098, 'ninety-one thousand ninety-eight'); INSERT INTO t3 VALUES(21649, 22548, 'twenty-two thousand five hundred forty-eight'); INSERT INTO t3 VALUES(21650, 52949, 'fifty-two thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(21651, 48397, 'forty-eight thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(21652, 68520, 'sixty-eight thousand five hundred twenty'); INSERT INTO t3 VALUES(21653, 45764, 'forty-five thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(21654, 89042, 'eighty-nine thousand forty-two'); INSERT INTO t3 VALUES(21655, 81841, 'eighty-one thousand eight hundred forty-one'); INSERT INTO t3 VALUES(21656, 61921, 'sixty-one thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(21657, 33447, 'thirty-three thousand four hundred forty-seven'); INSERT INTO t3 VALUES(21658, 23029, 'twenty-three thousand twenty-nine'); INSERT INTO t3 VALUES(21659, 20860, 'twenty thousand eight hundred sixty'); INSERT INTO t3 VALUES(21660, 52724, 'fifty-two thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(21661, 27520, 'twenty-seven thousand five hundred twenty'); INSERT INTO t3 VALUES(21662, 12842, 'twelve thousand eight hundred forty-two'); INSERT INTO t3 VALUES(21663, 58656, 'fifty-eight thousand six hundred fifty-six'); INSERT INTO t3 VALUES(21664, 99320, 'ninety-nine thousand three hundred twenty'); INSERT INTO t3 VALUES(21665, 80694, 'eighty thousand six hundred ninety-four'); INSERT INTO t3 VALUES(21666, 4065, 'four thousand sixty-five'); INSERT INTO t3 VALUES(21667, 68726, 'sixty-eight thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(21668, 5703, 'five thousand seven hundred three'); INSERT INTO t3 VALUES(21669, 42800, 'forty-two thousand eight hundred'); INSERT INTO t3 VALUES(21670, 36919, 'thirty-six thousand nine hundred nineteen'); INSERT INTO t3 VALUES(21671, 17720, 'seventeen thousand seven hundred twenty'); INSERT INTO t3 VALUES(21672, 70908, 'seventy thousand nine hundred eight'); INSERT INTO t3 VALUES(21673, 64337, 'sixty-four thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(21674, 27963, 'twenty-seven thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(21675, 74404, 'seventy-four thousand four hundred four'); INSERT INTO t3 VALUES(21676, 62765, 'sixty-two thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(21677, 86854, 'eighty-six thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(21678, 20013, 'twenty thousand thirteen'); INSERT INTO t3 VALUES(21679, 89292, 'eighty-nine thousand two hundred ninety-two'); INSERT INTO t3 VALUES(21680, 17617, 'seventeen thousand six hundred seventeen'); INSERT INTO t3 VALUES(21681, 17373, 'seventeen thousand three hundred seventy-three'); INSERT INTO t3 VALUES(21682, 1565, 'one thousand five hundred sixty-five'); INSERT INTO t3 VALUES(21683, 66398, 'sixty-six thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(21684, 90905, 'ninety thousand nine hundred five'); INSERT INTO t3 VALUES(21685, 82850, 'eighty-two thousand eight hundred fifty'); INSERT INTO t3 VALUES(21686, 39995, 'thirty-nine thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(21687, 67839, 'sixty-seven thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(21688, 33093, 'thirty-three thousand ninety-three'); INSERT INTO t3 VALUES(21689, 93729, 'ninety-three thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(21690, 31005, 'thirty-one thousand five'); INSERT INTO t3 VALUES(21691, 37862, 'thirty-seven thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(21692, 68511, 'sixty-eight thousand five hundred eleven'); INSERT INTO t3 VALUES(21693, 4341, 'four thousand three hundred forty-one'); INSERT INTO t3 VALUES(21694, 97807, 'ninety-seven thousand eight hundred seven'); INSERT INTO t3 VALUES(21695, 23951, 'twenty-three thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(21696, 96296, 'ninety-six thousand two hundred ninety-six'); INSERT INTO t3 VALUES(21697, 5501, 'five thousand five hundred one'); INSERT INTO t3 VALUES(21698, 97834, 'ninety-seven thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(21699, 45237, 'forty-five thousand two hundred thirty-seven'); INSERT INTO t3 VALUES(21700, 40405, 'forty thousand four hundred five'); INSERT INTO t3 VALUES(21701, 88857, 'eighty-eight thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(21702, 78751, 'seventy-eight thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(21703, 89831, 'eighty-nine thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(21704, 6171, 'six thousand one hundred seventy-one'); INSERT INTO t3 VALUES(21705, 90377, 'ninety thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(21706, 43306, 'forty-three thousand three hundred six'); INSERT INTO t3 VALUES(21707, 56331, 'fifty-six thousand three hundred thirty-one'); INSERT INTO t3 VALUES(21708, 98964, 'ninety-eight thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(21709, 21825, 'twenty-one thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(21710, 69346, 'sixty-nine thousand three hundred forty-six'); INSERT INTO t3 VALUES(21711, 53177, 'fifty-three thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(21712, 83594, 'eighty-three thousand five hundred ninety-four'); INSERT INTO t3 VALUES(21713, 60761, 'sixty thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(21714, 42793, 'forty-two thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(21715, 29174, 'twenty-nine thousand one hundred seventy-four'); INSERT INTO t3 VALUES(21716, 56968, 'fifty-six thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(21717, 37084, 'thirty-seven thousand eighty-four'); INSERT INTO t3 VALUES(21718, 61554, 'sixty-one thousand five hundred fifty-four'); INSERT INTO t3 VALUES(21719, 64985, 'sixty-four thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(21720, 68130, 'sixty-eight thousand one hundred thirty'); INSERT INTO t3 VALUES(21721, 30015, 'thirty thousand fifteen'); INSERT INTO t3 VALUES(21722, 71322, 'seventy-one thousand three hundred twenty-two'); INSERT INTO t3 VALUES(21723, 15126, 'fifteen thousand one hundred twenty-six'); INSERT INTO t3 VALUES(21724, 34535, 'thirty-four thousand five hundred thirty-five'); INSERT INTO t3 VALUES(21725, 65715, 'sixty-five thousand seven hundred fifteen'); INSERT INTO t3 VALUES(21726, 79774, 'seventy-nine thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(21727, 81942, 'eighty-one thousand nine hundred forty-two'); INSERT INTO t3 VALUES(21728, 94781, 'ninety-four thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(21729, 83743, 'eighty-three thousand seven hundred forty-three'); INSERT INTO t3 VALUES(21730, 63858, 'sixty-three thousand eight hundred fifty-eight'); INSERT INTO t3 VALUES(21731, 94141, 'ninety-four thousand one hundred forty-one'); INSERT INTO t3 VALUES(21732, 21591, 'twenty-one thousand five hundred ninety-one'); INSERT INTO t3 VALUES(21733, 57667, 'fifty-seven thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(21734, 4716, 'four thousand seven hundred sixteen'); INSERT INTO t3 VALUES(21735, 46004, 'forty-six thousand four'); INSERT INTO t3 VALUES(21736, 86420, 'eighty-six thousand four hundred twenty'); INSERT INTO t3 VALUES(21737, 90992, 'ninety thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(21738, 19485, 'nineteen thousand four hundred eighty-five'); INSERT INTO t3 VALUES(21739, 6993, 'six thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(21740, 25064, 'twenty-five thousand sixty-four'); INSERT INTO t3 VALUES(21741, 69267, 'sixty-nine thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(21742, 28914, 'twenty-eight thousand nine hundred fourteen'); INSERT INTO t3 VALUES(21743, 3114, 'three thousand one hundred fourteen'); INSERT INTO t3 VALUES(21744, 95079, 'ninety-five thousand seventy-nine'); INSERT INTO t3 VALUES(21745, 27567, 'twenty-seven thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(21746, 60035, 'sixty thousand thirty-five'); INSERT INTO t3 VALUES(21747, 84652, 'eighty-four thousand six hundred fifty-two'); INSERT INTO t3 VALUES(21748, 40368, 'forty thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(21749, 51076, 'fifty-one thousand seventy-six'); INSERT INTO t3 VALUES(21750, 9999, 'nine thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(21751, 54720, 'fifty-four thousand seven hundred twenty'); INSERT INTO t3 VALUES(21752, 75631, 'seventy-five thousand six hundred thirty-one'); INSERT INTO t3 VALUES(21753, 15827, 'fifteen thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(21754, 81618, 'eighty-one thousand six hundred eighteen'); INSERT INTO t3 VALUES(21755, 58561, 'fifty-eight thousand five hundred sixty-one'); INSERT INTO t3 VALUES(21756, 97117, 'ninety-seven thousand one hundred seventeen'); INSERT INTO t3 VALUES(21757, 39525, 'thirty-nine thousand five hundred twenty-five'); INSERT INTO t3 VALUES(21758, 43578, 'forty-three thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(21759, 94515, 'ninety-four thousand five hundred fifteen'); INSERT INTO t3 VALUES(21760, 72718, 'seventy-two thousand seven hundred eighteen'); INSERT INTO t3 VALUES(21761, 21522, 'twenty-one thousand five hundred twenty-two'); INSERT INTO t3 VALUES(21762, 50014, 'fifty thousand fourteen'); INSERT INTO t3 VALUES(21763, 51048, 'fifty-one thousand forty-eight'); INSERT INTO t3 VALUES(21764, 67155, 'sixty-seven thousand one hundred fifty-five'); INSERT INTO t3 VALUES(21765, 25380, 'twenty-five thousand three hundred eighty'); INSERT INTO t3 VALUES(21766, 80252, 'eighty thousand two hundred fifty-two'); INSERT INTO t3 VALUES(21767, 68528, 'sixty-eight thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(21768, 73870, 'seventy-three thousand eight hundred seventy'); INSERT INTO t3 VALUES(21769, 51953, 'fifty-one thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(21770, 39891, 'thirty-nine thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(21771, 16758, 'sixteen thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(21772, 13352, 'thirteen thousand three hundred fifty-two'); INSERT INTO t3 VALUES(21773, 88431, 'eighty-eight thousand four hundred thirty-one'); INSERT INTO t3 VALUES(21774, 4485, 'four thousand four hundred eighty-five'); INSERT INTO t3 VALUES(21775, 53749, 'fifty-three thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(21776, 14934, 'fourteen thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(21777, 70610, 'seventy thousand six hundred ten'); INSERT INTO t3 VALUES(21778, 23436, 'twenty-three thousand four hundred thirty-six'); INSERT INTO t3 VALUES(21779, 91687, 'ninety-one thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(21780, 82018, 'eighty-two thousand eighteen'); INSERT INTO t3 VALUES(21781, 98497, 'ninety-eight thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(21782, 17450, 'seventeen thousand four hundred fifty'); INSERT INTO t3 VALUES(21783, 93562, 'ninety-three thousand five hundred sixty-two'); INSERT INTO t3 VALUES(21784, 38979, 'thirty-eight thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(21785, 91797, 'ninety-one thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(21786, 75183, 'seventy-five thousand one hundred eighty-three'); INSERT INTO t3 VALUES(21787, 94341, 'ninety-four thousand three hundred forty-one'); INSERT INTO t3 VALUES(21788, 75405, 'seventy-five thousand four hundred five'); INSERT INTO t3 VALUES(21789, 66537, 'sixty-six thousand five hundred thirty-seven'); INSERT INTO t3 VALUES(21790, 52209, 'fifty-two thousand two hundred nine'); INSERT INTO t3 VALUES(21791, 99338, 'ninety-nine thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(21792, 20662, 'twenty thousand six hundred sixty-two'); INSERT INTO t3 VALUES(21793, 10920, 'ten thousand nine hundred twenty'); INSERT INTO t3 VALUES(21794, 2709, 'two thousand seven hundred nine'); INSERT INTO t3 VALUES(21795, 72310, 'seventy-two thousand three hundred ten'); INSERT INTO t3 VALUES(21796, 6286, 'six thousand two hundred eighty-six'); INSERT INTO t3 VALUES(21797, 87500, 'eighty-seven thousand five hundred'); INSERT INTO t3 VALUES(21798, 72328, 'seventy-two thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(21799, 76075, 'seventy-six thousand seventy-five'); INSERT INTO t3 VALUES(21800, 8544, 'eight thousand five hundred forty-four'); INSERT INTO t3 VALUES(21801, 74734, 'seventy-four thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(21802, 67474, 'sixty-seven thousand four hundred seventy-four'); INSERT INTO t3 VALUES(21803, 87012, 'eighty-seven thousand twelve'); INSERT INTO t3 VALUES(21804, 99064, 'ninety-nine thousand sixty-four'); INSERT INTO t3 VALUES(21805, 29634, 'twenty-nine thousand six hundred thirty-four'); INSERT INTO t3 VALUES(21806, 47705, 'forty-seven thousand seven hundred five'); INSERT INTO t3 VALUES(21807, 33764, 'thirty-three thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(21808, 39170, 'thirty-nine thousand one hundred seventy'); INSERT INTO t3 VALUES(21809, 41108, 'forty-one thousand one hundred eight'); INSERT INTO t3 VALUES(21810, 57917, 'fifty-seven thousand nine hundred seventeen'); INSERT INTO t3 VALUES(21811, 8329, 'eight thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(21812, 67604, 'sixty-seven thousand six hundred four'); INSERT INTO t3 VALUES(21813, 59359, 'fifty-nine thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(21814, 17918, 'seventeen thousand nine hundred eighteen'); INSERT INTO t3 VALUES(21815, 87327, 'eighty-seven thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(21816, 31095, 'thirty-one thousand ninety-five'); INSERT INTO t3 VALUES(21817, 27969, 'twenty-seven thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(21818, 69506, 'sixty-nine thousand five hundred six'); INSERT INTO t3 VALUES(21819, 70904, 'seventy thousand nine hundred four'); INSERT INTO t3 VALUES(21820, 92884, 'ninety-two thousand eight hundred eighty-four'); INSERT INTO t3 VALUES(21821, 32971, 'thirty-two thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(21822, 65546, 'sixty-five thousand five hundred forty-six'); INSERT INTO t3 VALUES(21823, 50857, 'fifty thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(21824, 35789, 'thirty-five thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(21825, 4288, 'four thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(21826, 90398, 'ninety thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(21827, 42854, 'forty-two thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(21828, 32745, 'thirty-two thousand seven hundred forty-five'); INSERT INTO t3 VALUES(21829, 48947, 'forty-eight thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(21830, 92941, 'ninety-two thousand nine hundred forty-one'); INSERT INTO t3 VALUES(21831, 23727, 'twenty-three thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(21832, 68653, 'sixty-eight thousand six hundred fifty-three'); INSERT INTO t3 VALUES(21833, 30849, 'thirty thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(21834, 22341, 'twenty-two thousand three hundred forty-one'); INSERT INTO t3 VALUES(21835, 75943, 'seventy-five thousand nine hundred forty-three'); INSERT INTO t3 VALUES(21836, 60832, 'sixty thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(21837, 15379, 'fifteen thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(21838, 9633, 'nine thousand six hundred thirty-three'); INSERT INTO t3 VALUES(21839, 16192, 'sixteen thousand one hundred ninety-two'); INSERT INTO t3 VALUES(21840, 7455, 'seven thousand four hundred fifty-five'); INSERT INTO t3 VALUES(21841, 93093, 'ninety-three thousand ninety-three'); INSERT INTO t3 VALUES(21842, 16607, 'sixteen thousand six hundred seven'); INSERT INTO t3 VALUES(21843, 44581, 'forty-four thousand five hundred eighty-one'); INSERT INTO t3 VALUES(21844, 44141, 'forty-four thousand one hundred forty-one'); INSERT INTO t3 VALUES(21845, 99823, 'ninety-nine thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(21846, 79086, 'seventy-nine thousand eighty-six'); INSERT INTO t3 VALUES(21847, 53969, 'fifty-three thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(21848, 30312, 'thirty thousand three hundred twelve'); INSERT INTO t3 VALUES(21849, 65113, 'sixty-five thousand one hundred thirteen'); INSERT INTO t3 VALUES(21850, 10777, 'ten thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(21851, 47268, 'forty-seven thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(21852, 84667, 'eighty-four thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(21853, 39774, 'thirty-nine thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(21854, 52091, 'fifty-two thousand ninety-one'); INSERT INTO t3 VALUES(21855, 92660, 'ninety-two thousand six hundred sixty'); INSERT INTO t3 VALUES(21856, 47736, 'forty-seven thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(21857, 97166, 'ninety-seven thousand one hundred sixty-six'); INSERT INTO t3 VALUES(21858, 96227, 'ninety-six thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(21859, 33203, 'thirty-three thousand two hundred three'); INSERT INTO t3 VALUES(21860, 33046, 'thirty-three thousand forty-six'); INSERT INTO t3 VALUES(21861, 30118, 'thirty thousand one hundred eighteen'); INSERT INTO t3 VALUES(21862, 56096, 'fifty-six thousand ninety-six'); INSERT INTO t3 VALUES(21863, 35752, 'thirty-five thousand seven hundred fifty-two'); INSERT INTO t3 VALUES(21864, 33698, 'thirty-three thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(21865, 78295, 'seventy-eight thousand two hundred ninety-five'); INSERT INTO t3 VALUES(21866, 10199, 'ten thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(21867, 39004, 'thirty-nine thousand four'); INSERT INTO t3 VALUES(21868, 90378, 'ninety thousand three hundred seventy-eight'); INSERT INTO t3 VALUES(21869, 76915, 'seventy-six thousand nine hundred fifteen'); INSERT INTO t3 VALUES(21870, 55631, 'fifty-five thousand six hundred thirty-one'); INSERT INTO t3 VALUES(21871, 74979, 'seventy-four thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(21872, 97225, 'ninety-seven thousand two hundred twenty-five'); INSERT INTO t3 VALUES(21873, 94842, 'ninety-four thousand eight hundred forty-two'); INSERT INTO t3 VALUES(21874, 21478, 'twenty-one thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(21875, 4652, 'four thousand six hundred fifty-two'); INSERT INTO t3 VALUES(21876, 82748, 'eighty-two thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(21877, 47630, 'forty-seven thousand six hundred thirty'); INSERT INTO t3 VALUES(21878, 43209, 'forty-three thousand two hundred nine'); INSERT INTO t3 VALUES(21879, 37997, 'thirty-seven thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(21880, 68641, 'sixty-eight thousand six hundred forty-one'); INSERT INTO t3 VALUES(21881, 56459, 'fifty-six thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(21882, 39403, 'thirty-nine thousand four hundred three'); INSERT INTO t3 VALUES(21883, 57796, 'fifty-seven thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(21884, 8415, 'eight thousand four hundred fifteen'); INSERT INTO t3 VALUES(21885, 47413, 'forty-seven thousand four hundred thirteen'); INSERT INTO t3 VALUES(21886, 38099, 'thirty-eight thousand ninety-nine'); INSERT INTO t3 VALUES(21887, 5485, 'five thousand four hundred eighty-five'); INSERT INTO t3 VALUES(21888, 91519, 'ninety-one thousand five hundred nineteen'); INSERT INTO t3 VALUES(21889, 55128, 'fifty-five thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(21890, 28634, 'twenty-eight thousand six hundred thirty-four'); INSERT INTO t3 VALUES(21891, 76248, 'seventy-six thousand two hundred forty-eight'); INSERT INTO t3 VALUES(21892, 89658, 'eighty-nine thousand six hundred fifty-eight'); INSERT INTO t3 VALUES(21893, 91945, 'ninety-one thousand nine hundred forty-five'); INSERT INTO t3 VALUES(21894, 64582, 'sixty-four thousand five hundred eighty-two'); INSERT INTO t3 VALUES(21895, 86153, 'eighty-six thousand one hundred fifty-three'); INSERT INTO t3 VALUES(21896, 78557, 'seventy-eight thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(21897, 67688, 'sixty-seven thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(21898, 66032, 'sixty-six thousand thirty-two'); INSERT INTO t3 VALUES(21899, 88081, 'eighty-eight thousand eighty-one'); INSERT INTO t3 VALUES(21900, 36291, 'thirty-six thousand two hundred ninety-one'); INSERT INTO t3 VALUES(21901, 44679, 'forty-four thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(21902, 31126, 'thirty-one thousand one hundred twenty-six'); INSERT INTO t3 VALUES(21903, 46538, 'forty-six thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(21904, 77708, 'seventy-seven thousand seven hundred eight'); INSERT INTO t3 VALUES(21905, 54121, 'fifty-four thousand one hundred twenty-one'); INSERT INTO t3 VALUES(21906, 76197, 'seventy-six thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(21907, 25453, 'twenty-five thousand four hundred fifty-three'); INSERT INTO t3 VALUES(21908, 22099, 'twenty-two thousand ninety-nine'); INSERT INTO t3 VALUES(21909, 8369, 'eight thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(21910, 83817, 'eighty-three thousand eight hundred seventeen'); INSERT INTO t3 VALUES(21911, 94769, 'ninety-four thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(21912, 47835, 'forty-seven thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(21913, 62419, 'sixty-two thousand four hundred nineteen'); INSERT INTO t3 VALUES(21914, 44499, 'forty-four thousand four hundred ninety-nine'); INSERT INTO t3 VALUES(21915, 86687, 'eighty-six thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(21916, 21177, 'twenty-one thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(21917, 40121, 'forty thousand one hundred twenty-one'); INSERT INTO t3 VALUES(21918, 2924, 'two thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(21919, 77515, 'seventy-seven thousand five hundred fifteen'); INSERT INTO t3 VALUES(21920, 23061, 'twenty-three thousand sixty-one'); INSERT INTO t3 VALUES(21921, 84221, 'eighty-four thousand two hundred twenty-one'); INSERT INTO t3 VALUES(21922, 60092, 'sixty thousand ninety-two'); INSERT INTO t3 VALUES(21923, 69903, 'sixty-nine thousand nine hundred three'); INSERT INTO t3 VALUES(21924, 45916, 'forty-five thousand nine hundred sixteen'); INSERT INTO t3 VALUES(21925, 98372, 'ninety-eight thousand three hundred seventy-two'); INSERT INTO t3 VALUES(21926, 29329, 'twenty-nine thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(21927, 25083, 'twenty-five thousand eighty-three'); INSERT INTO t3 VALUES(21928, 52504, 'fifty-two thousand five hundred four'); INSERT INTO t3 VALUES(21929, 65295, 'sixty-five thousand two hundred ninety-five'); INSERT INTO t3 VALUES(21930, 15269, 'fifteen thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(21931, 87628, 'eighty-seven thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(21932, 77470, 'seventy-seven thousand four hundred seventy'); INSERT INTO t3 VALUES(21933, 13420, 'thirteen thousand four hundred twenty'); INSERT INTO t3 VALUES(21934, 83703, 'eighty-three thousand seven hundred three'); INSERT INTO t3 VALUES(21935, 94774, 'ninety-four thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(21936, 33634, 'thirty-three thousand six hundred thirty-four'); INSERT INTO t3 VALUES(21937, 25273, 'twenty-five thousand two hundred seventy-three'); INSERT INTO t3 VALUES(21938, 95282, 'ninety-five thousand two hundred eighty-two'); INSERT INTO t3 VALUES(21939, 99845, 'ninety-nine thousand eight hundred forty-five'); INSERT INTO t3 VALUES(21940, 17647, 'seventeen thousand six hundred forty-seven'); INSERT INTO t3 VALUES(21941, 44078, 'forty-four thousand seventy-eight'); INSERT INTO t3 VALUES(21942, 75405, 'seventy-five thousand four hundred five'); INSERT INTO t3 VALUES(21943, 36585, 'thirty-six thousand five hundred eighty-five'); INSERT INTO t3 VALUES(21944, 6473, 'six thousand four hundred seventy-three'); INSERT INTO t3 VALUES(21945, 76932, 'seventy-six thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(21946, 14319, 'fourteen thousand three hundred nineteen'); INSERT INTO t3 VALUES(21947, 63996, 'sixty-three thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(21948, 56276, 'fifty-six thousand two hundred seventy-six'); INSERT INTO t3 VALUES(21949, 22356, 'twenty-two thousand three hundred fifty-six'); INSERT INTO t3 VALUES(21950, 40348, 'forty thousand three hundred forty-eight'); INSERT INTO t3 VALUES(21951, 42079, 'forty-two thousand seventy-nine'); INSERT INTO t3 VALUES(21952, 80634, 'eighty thousand six hundred thirty-four'); INSERT INTO t3 VALUES(21953, 70610, 'seventy thousand six hundred ten'); INSERT INTO t3 VALUES(21954, 66029, 'sixty-six thousand twenty-nine'); INSERT INTO t3 VALUES(21955, 90633, 'ninety thousand six hundred thirty-three'); INSERT INTO t3 VALUES(21956, 65380, 'sixty-five thousand three hundred eighty'); INSERT INTO t3 VALUES(21957, 94403, 'ninety-four thousand four hundred three'); INSERT INTO t3 VALUES(21958, 46758, 'forty-six thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(21959, 26535, 'twenty-six thousand five hundred thirty-five'); INSERT INTO t3 VALUES(21960, 48445, 'forty-eight thousand four hundred forty-five'); INSERT INTO t3 VALUES(21961, 8762, 'eight thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(21962, 79914, 'seventy-nine thousand nine hundred fourteen'); INSERT INTO t3 VALUES(21963, 56382, 'fifty-six thousand three hundred eighty-two'); INSERT INTO t3 VALUES(21964, 30100, 'thirty thousand one hundred'); INSERT INTO t3 VALUES(21965, 17523, 'seventeen thousand five hundred twenty-three'); INSERT INTO t3 VALUES(21966, 49851, 'forty-nine thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(21967, 74393, 'seventy-four thousand three hundred ninety-three'); INSERT INTO t3 VALUES(21968, 68835, 'sixty-eight thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(21969, 18575, 'eighteen thousand five hundred seventy-five'); INSERT INTO t3 VALUES(21970, 30917, 'thirty thousand nine hundred seventeen'); INSERT INTO t3 VALUES(21971, 44203, 'forty-four thousand two hundred three'); INSERT INTO t3 VALUES(21972, 11347, 'eleven thousand three hundred forty-seven'); INSERT INTO t3 VALUES(21973, 92433, 'ninety-two thousand four hundred thirty-three'); INSERT INTO t3 VALUES(21974, 60395, 'sixty thousand three hundred ninety-five'); INSERT INTO t3 VALUES(21975, 90768, 'ninety thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(21976, 82429, 'eighty-two thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(21977, 96538, 'ninety-six thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(21978, 5518, 'five thousand five hundred eighteen'); INSERT INTO t3 VALUES(21979, 26303, 'twenty-six thousand three hundred three'); INSERT INTO t3 VALUES(21980, 24734, 'twenty-four thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(21981, 35227, 'thirty-five thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(21982, 50495, 'fifty thousand four hundred ninety-five'); INSERT INTO t3 VALUES(21983, 93473, 'ninety-three thousand four hundred seventy-three'); INSERT INTO t3 VALUES(21984, 38333, 'thirty-eight thousand three hundred thirty-three'); INSERT INTO t3 VALUES(21985, 1973, 'one thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(21986, 72879, 'seventy-two thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(21987, 28969, 'twenty-eight thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(21988, 55017, 'fifty-five thousand seventeen'); INSERT INTO t3 VALUES(21989, 78751, 'seventy-eight thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(21990, 27198, 'twenty-seven thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(21991, 24835, 'twenty-four thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(21992, 98192, 'ninety-eight thousand one hundred ninety-two'); INSERT INTO t3 VALUES(21993, 19795, 'nineteen thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(21994, 39801, 'thirty-nine thousand eight hundred one'); INSERT INTO t3 VALUES(21995, 20349, 'twenty thousand three hundred forty-nine'); INSERT INTO t3 VALUES(21996, 99510, 'ninety-nine thousand five hundred ten'); INSERT INTO t3 VALUES(21997, 48628, 'forty-eight thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(21998, 25333, 'twenty-five thousand three hundred thirty-three'); INSERT INTO t3 VALUES(21999, 36647, 'thirty-six thousand six hundred forty-seven'); INSERT INTO t3 VALUES(22000, 66560, 'sixty-six thousand five hundred sixty'); INSERT INTO t3 VALUES(22001, 92593, 'ninety-two thousand five hundred ninety-three'); INSERT INTO t3 VALUES(22002, 60865, 'sixty thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(22003, 26079, 'twenty-six thousand seventy-nine'); INSERT INTO t3 VALUES(22004, 42325, 'forty-two thousand three hundred twenty-five'); INSERT INTO t3 VALUES(22005, 46686, 'forty-six thousand six hundred eighty-six'); INSERT INTO t3 VALUES(22006, 95396, 'ninety-five thousand three hundred ninety-six'); INSERT INTO t3 VALUES(22007, 19469, 'nineteen thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(22008, 31944, 'thirty-one thousand nine hundred forty-four'); INSERT INTO t3 VALUES(22009, 50232, 'fifty thousand two hundred thirty-two'); INSERT INTO t3 VALUES(22010, 87423, 'eighty-seven thousand four hundred twenty-three'); INSERT INTO t3 VALUES(22011, 70904, 'seventy thousand nine hundred four'); INSERT INTO t3 VALUES(22012, 11860, 'eleven thousand eight hundred sixty'); INSERT INTO t3 VALUES(22013, 24315, 'twenty-four thousand three hundred fifteen'); INSERT INTO t3 VALUES(22014, 21198, 'twenty-one thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(22015, 70848, 'seventy thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(22016, 61107, 'sixty-one thousand one hundred seven'); INSERT INTO t3 VALUES(22017, 76396, 'seventy-six thousand three hundred ninety-six'); INSERT INTO t3 VALUES(22018, 16940, 'sixteen thousand nine hundred forty'); INSERT INTO t3 VALUES(22019, 16966, 'sixteen thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(22020, 63684, 'sixty-three thousand six hundred eighty-four'); INSERT INTO t3 VALUES(22021, 80970, 'eighty thousand nine hundred seventy'); INSERT INTO t3 VALUES(22022, 67388, 'sixty-seven thousand three hundred eighty-eight'); INSERT INTO t3 VALUES(22023, 52517, 'fifty-two thousand five hundred seventeen'); INSERT INTO t3 VALUES(22024, 70927, 'seventy thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(22025, 9211, 'nine thousand two hundred eleven'); INSERT INTO t3 VALUES(22026, 48190, 'forty-eight thousand one hundred ninety'); INSERT INTO t3 VALUES(22027, 85062, 'eighty-five thousand sixty-two'); INSERT INTO t3 VALUES(22028, 63665, 'sixty-three thousand six hundred sixty-five'); INSERT INTO t3 VALUES(22029, 31791, 'thirty-one thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(22030, 83974, 'eighty-three thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(22031, 38592, 'thirty-eight thousand five hundred ninety-two'); INSERT INTO t3 VALUES(22032, 60492, 'sixty thousand four hundred ninety-two'); INSERT INTO t3 VALUES(22033, 67278, 'sixty-seven thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(22034, 40641, 'forty thousand six hundred forty-one'); INSERT INTO t3 VALUES(22035, 88920, 'eighty-eight thousand nine hundred twenty'); INSERT INTO t3 VALUES(22036, 98712, 'ninety-eight thousand seven hundred twelve'); INSERT INTO t3 VALUES(22037, 57458, 'fifty-seven thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(22038, 6475, 'six thousand four hundred seventy-five'); INSERT INTO t3 VALUES(22039, 85301, 'eighty-five thousand three hundred one'); INSERT INTO t3 VALUES(22040, 70311, 'seventy thousand three hundred eleven'); INSERT INTO t3 VALUES(22041, 50789, 'fifty thousand seven hundred eighty-nine'); INSERT INTO t3 VALUES(22042, 1718, 'one thousand seven hundred eighteen'); INSERT INTO t3 VALUES(22043, 40565, 'forty thousand five hundred sixty-five'); INSERT INTO t3 VALUES(22044, 171, 'one hundred seventy-one'); INSERT INTO t3 VALUES(22045, 57255, 'fifty-seven thousand two hundred fifty-five'); INSERT INTO t3 VALUES(22046, 20144, 'twenty thousand one hundred forty-four'); INSERT INTO t3 VALUES(22047, 75646, 'seventy-five thousand six hundred forty-six'); INSERT INTO t3 VALUES(22048, 80232, 'eighty thousand two hundred thirty-two'); INSERT INTO t3 VALUES(22049, 20449, 'twenty thousand four hundred forty-nine'); INSERT INTO t3 VALUES(22050, 66904, 'sixty-six thousand nine hundred four'); INSERT INTO t3 VALUES(22051, 4763, 'four thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(22052, 86920, 'eighty-six thousand nine hundred twenty'); INSERT INTO t3 VALUES(22053, 21218, 'twenty-one thousand two hundred eighteen'); INSERT INTO t3 VALUES(22054, 5994, 'five thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(22055, 66771, 'sixty-six thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(22056, 82911, 'eighty-two thousand nine hundred eleven'); INSERT INTO t3 VALUES(22057, 12842, 'twelve thousand eight hundred forty-two'); INSERT INTO t3 VALUES(22058, 33261, 'thirty-three thousand two hundred sixty-one'); INSERT INTO t3 VALUES(22059, 82572, 'eighty-two thousand five hundred seventy-two'); INSERT INTO t3 VALUES(22060, 12893, 'twelve thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(22061, 4185, 'four thousand one hundred eighty-five'); INSERT INTO t3 VALUES(22062, 21705, 'twenty-one thousand seven hundred five'); INSERT INTO t3 VALUES(22063, 86817, 'eighty-six thousand eight hundred seventeen'); INSERT INTO t3 VALUES(22064, 76944, 'seventy-six thousand nine hundred forty-four'); INSERT INTO t3 VALUES(22065, 92861, 'ninety-two thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(22066, 40617, 'forty thousand six hundred seventeen'); INSERT INTO t3 VALUES(22067, 78125, 'seventy-eight thousand one hundred twenty-five'); INSERT INTO t3 VALUES(22068, 84567, 'eighty-four thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(22069, 54283, 'fifty-four thousand two hundred eighty-three'); INSERT INTO t3 VALUES(22070, 41122, 'forty-one thousand one hundred twenty-two'); INSERT INTO t3 VALUES(22071, 64794, 'sixty-four thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(22072, 57904, 'fifty-seven thousand nine hundred four'); INSERT INTO t3 VALUES(22073, 70334, 'seventy thousand three hundred thirty-four'); INSERT INTO t3 VALUES(22074, 76547, 'seventy-six thousand five hundred forty-seven'); INSERT INTO t3 VALUES(22075, 41099, 'forty-one thousand ninety-nine'); INSERT INTO t3 VALUES(22076, 41852, 'forty-one thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(22077, 95399, 'ninety-five thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(22078, 33041, 'thirty-three thousand forty-one'); INSERT INTO t3 VALUES(22079, 90452, 'ninety thousand four hundred fifty-two'); INSERT INTO t3 VALUES(22080, 7987, 'seven thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(22081, 24217, 'twenty-four thousand two hundred seventeen'); INSERT INTO t3 VALUES(22082, 33572, 'thirty-three thousand five hundred seventy-two'); INSERT INTO t3 VALUES(22083, 85749, 'eighty-five thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(22084, 86845, 'eighty-six thousand eight hundred forty-five'); INSERT INTO t3 VALUES(22085, 67807, 'sixty-seven thousand eight hundred seven'); INSERT INTO t3 VALUES(22086, 80578, 'eighty thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(22087, 23327, 'twenty-three thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(22088, 39754, 'thirty-nine thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(22089, 63761, 'sixty-three thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(22090, 2636, 'two thousand six hundred thirty-six'); INSERT INTO t3 VALUES(22091, 75310, 'seventy-five thousand three hundred ten'); INSERT INTO t3 VALUES(22092, 73297, 'seventy-three thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(22093, 14881, 'fourteen thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(22094, 83964, 'eighty-three thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(22095, 51004, 'fifty-one thousand four'); INSERT INTO t3 VALUES(22096, 1125, 'one thousand one hundred twenty-five'); INSERT INTO t3 VALUES(22097, 63339, 'sixty-three thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(22098, 32238, 'thirty-two thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(22099, 3737, 'three thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(22100, 10713, 'ten thousand seven hundred thirteen'); INSERT INTO t3 VALUES(22101, 58180, 'fifty-eight thousand one hundred eighty'); INSERT INTO t3 VALUES(22102, 35979, 'thirty-five thousand nine hundred seventy-nine'); INSERT INTO t3 VALUES(22103, 85736, 'eighty-five thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(22104, 33023, 'thirty-three thousand twenty-three'); INSERT INTO t3 VALUES(22105, 97869, 'ninety-seven thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(22106, 40387, 'forty thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(22107, 61887, 'sixty-one thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(22108, 94088, 'ninety-four thousand eighty-eight'); INSERT INTO t3 VALUES(22109, 25966, 'twenty-five thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(22110, 93545, 'ninety-three thousand five hundred forty-five'); INSERT INTO t3 VALUES(22111, 82846, 'eighty-two thousand eight hundred forty-six'); INSERT INTO t3 VALUES(22112, 20382, 'twenty thousand three hundred eighty-two'); INSERT INTO t3 VALUES(22113, 45079, 'forty-five thousand seventy-nine'); INSERT INTO t3 VALUES(22114, 73263, 'seventy-three thousand two hundred sixty-three'); INSERT INTO t3 VALUES(22115, 54981, 'fifty-four thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(22116, 80869, 'eighty thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(22117, 29987, 'twenty-nine thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(22118, 18504, 'eighteen thousand five hundred four'); INSERT INTO t3 VALUES(22119, 75998, 'seventy-five thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(22120, 48009, 'forty-eight thousand nine'); INSERT INTO t3 VALUES(22121, 48218, 'forty-eight thousand two hundred eighteen'); INSERT INTO t3 VALUES(22122, 34127, 'thirty-four thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(22123, 87784, 'eighty-seven thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(22124, 14684, 'fourteen thousand six hundred eighty-four'); INSERT INTO t3 VALUES(22125, 74809, 'seventy-four thousand eight hundred nine'); INSERT INTO t3 VALUES(22126, 77260, 'seventy-seven thousand two hundred sixty'); INSERT INTO t3 VALUES(22127, 30377, 'thirty thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(22128, 94871, 'ninety-four thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(22129, 52853, 'fifty-two thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(22130, 53170, 'fifty-three thousand one hundred seventy'); INSERT INTO t3 VALUES(22131, 79606, 'seventy-nine thousand six hundred six'); INSERT INTO t3 VALUES(22132, 72761, 'seventy-two thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(22133, 82911, 'eighty-two thousand nine hundred eleven'); INSERT INTO t3 VALUES(22134, 70998, 'seventy thousand nine hundred ninety-eight'); INSERT INTO t3 VALUES(22135, 72642, 'seventy-two thousand six hundred forty-two'); INSERT INTO t3 VALUES(22136, 28308, 'twenty-eight thousand three hundred eight'); INSERT INTO t3 VALUES(22137, 74693, 'seventy-four thousand six hundred ninety-three'); INSERT INTO t3 VALUES(22138, 63906, 'sixty-three thousand nine hundred six'); INSERT INTO t3 VALUES(22139, 10514, 'ten thousand five hundred fourteen'); INSERT INTO t3 VALUES(22140, 91274, 'ninety-one thousand two hundred seventy-four'); INSERT INTO t3 VALUES(22141, 76512, 'seventy-six thousand five hundred twelve'); INSERT INTO t3 VALUES(22142, 11170, 'eleven thousand one hundred seventy'); INSERT INTO t3 VALUES(22143, 82167, 'eighty-two thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(22144, 54032, 'fifty-four thousand thirty-two'); INSERT INTO t3 VALUES(22145, 42032, 'forty-two thousand thirty-two'); INSERT INTO t3 VALUES(22146, 89546, 'eighty-nine thousand five hundred forty-six'); INSERT INTO t3 VALUES(22147, 14355, 'fourteen thousand three hundred fifty-five'); INSERT INTO t3 VALUES(22148, 57704, 'fifty-seven thousand seven hundred four'); INSERT INTO t3 VALUES(22149, 75763, 'seventy-five thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(22150, 11673, 'eleven thousand six hundred seventy-three'); INSERT INTO t3 VALUES(22151, 51496, 'fifty-one thousand four hundred ninety-six'); INSERT INTO t3 VALUES(22152, 87000, 'eighty-seven thousand'); INSERT INTO t3 VALUES(22153, 52696, 'fifty-two thousand six hundred ninety-six'); INSERT INTO t3 VALUES(22154, 3053, 'three thousand fifty-three'); INSERT INTO t3 VALUES(22155, 49341, 'forty-nine thousand three hundred forty-one'); INSERT INTO t3 VALUES(22156, 74935, 'seventy-four thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(22157, 14683, 'fourteen thousand six hundred eighty-three'); INSERT INTO t3 VALUES(22158, 89605, 'eighty-nine thousand six hundred five'); INSERT INTO t3 VALUES(22159, 2163, 'two thousand one hundred sixty-three'); INSERT INTO t3 VALUES(22160, 17040, 'seventeen thousand forty'); INSERT INTO t3 VALUES(22161, 21273, 'twenty-one thousand two hundred seventy-three'); INSERT INTO t3 VALUES(22162, 22030, 'twenty-two thousand thirty'); INSERT INTO t3 VALUES(22163, 67304, 'sixty-seven thousand three hundred four'); INSERT INTO t3 VALUES(22164, 60825, 'sixty thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(22165, 36470, 'thirty-six thousand four hundred seventy'); INSERT INTO t3 VALUES(22166, 24639, 'twenty-four thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(22167, 73691, 'seventy-three thousand six hundred ninety-one'); INSERT INTO t3 VALUES(22168, 78480, 'seventy-eight thousand four hundred eighty'); INSERT INTO t3 VALUES(22169, 55117, 'fifty-five thousand one hundred seventeen'); INSERT INTO t3 VALUES(22170, 81330, 'eighty-one thousand three hundred thirty'); INSERT INTO t3 VALUES(22171, 59072, 'fifty-nine thousand seventy-two'); INSERT INTO t3 VALUES(22172, 84281, 'eighty-four thousand two hundred eighty-one'); INSERT INTO t3 VALUES(22173, 99234, 'ninety-nine thousand two hundred thirty-four'); INSERT INTO t3 VALUES(22174, 43945, 'forty-three thousand nine hundred forty-five'); INSERT INTO t3 VALUES(22175, 64726, 'sixty-four thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(22176, 62291, 'sixty-two thousand two hundred ninety-one'); INSERT INTO t3 VALUES(22177, 85230, 'eighty-five thousand two hundred thirty'); INSERT INTO t3 VALUES(22178, 73236, 'seventy-three thousand two hundred thirty-six'); INSERT INTO t3 VALUES(22179, 45742, 'forty-five thousand seven hundred forty-two'); INSERT INTO t3 VALUES(22180, 66694, 'sixty-six thousand six hundred ninety-four'); INSERT INTO t3 VALUES(22181, 41176, 'forty-one thousand one hundred seventy-six'); INSERT INTO t3 VALUES(22182, 3667, 'three thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(22183, 1534, 'one thousand five hundred thirty-four'); INSERT INTO t3 VALUES(22184, 47968, 'forty-seven thousand nine hundred sixty-eight'); INSERT INTO t3 VALUES(22185, 42396, 'forty-two thousand three hundred ninety-six'); INSERT INTO t3 VALUES(22186, 5384, 'five thousand three hundred eighty-four'); INSERT INTO t3 VALUES(22187, 84542, 'eighty-four thousand five hundred forty-two'); INSERT INTO t3 VALUES(22188, 17584, 'seventeen thousand five hundred eighty-four'); INSERT INTO t3 VALUES(22189, 41676, 'forty-one thousand six hundred seventy-six'); INSERT INTO t3 VALUES(22190, 63638, 'sixty-three thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(22191, 32257, 'thirty-two thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(22192, 27905, 'twenty-seven thousand nine hundred five'); INSERT INTO t3 VALUES(22193, 42782, 'forty-two thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(22194, 46624, 'forty-six thousand six hundred twenty-four'); INSERT INTO t3 VALUES(22195, 36917, 'thirty-six thousand nine hundred seventeen'); INSERT INTO t3 VALUES(22196, 12763, 'twelve thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(22197, 61144, 'sixty-one thousand one hundred forty-four'); INSERT INTO t3 VALUES(22198, 62532, 'sixty-two thousand five hundred thirty-two'); INSERT INTO t3 VALUES(22199, 81763, 'eighty-one thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(22200, 49107, 'forty-nine thousand one hundred seven'); INSERT INTO t3 VALUES(22201, 28109, 'twenty-eight thousand one hundred nine'); INSERT INTO t3 VALUES(22202, 64467, 'sixty-four thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(22203, 1124, 'one thousand one hundred twenty-four'); INSERT INTO t3 VALUES(22204, 26410, 'twenty-six thousand four hundred ten'); INSERT INTO t3 VALUES(22205, 43587, 'forty-three thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(22206, 34727, 'thirty-four thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(22207, 95716, 'ninety-five thousand seven hundred sixteen'); INSERT INTO t3 VALUES(22208, 92279, 'ninety-two thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(22209, 35788, 'thirty-five thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(22210, 81985, 'eighty-one thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(22211, 7868, 'seven thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(22212, 71330, 'seventy-one thousand three hundred thirty'); INSERT INTO t3 VALUES(22213, 58023, 'fifty-eight thousand twenty-three'); INSERT INTO t3 VALUES(22214, 88477, 'eighty-eight thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(22215, 64213, 'sixty-four thousand two hundred thirteen'); INSERT INTO t3 VALUES(22216, 80826, 'eighty thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(22217, 16682, 'sixteen thousand six hundred eighty-two'); INSERT INTO t3 VALUES(22218, 80776, 'eighty thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(22219, 53842, 'fifty-three thousand eight hundred forty-two'); INSERT INTO t3 VALUES(22220, 7046, 'seven thousand forty-six'); INSERT INTO t3 VALUES(22221, 60079, 'sixty thousand seventy-nine'); INSERT INTO t3 VALUES(22222, 87325, 'eighty-seven thousand three hundred twenty-five'); INSERT INTO t3 VALUES(22223, 44786, 'forty-four thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(22224, 23913, 'twenty-three thousand nine hundred thirteen'); INSERT INTO t3 VALUES(22225, 54119, 'fifty-four thousand one hundred nineteen'); INSERT INTO t3 VALUES(22226, 23761, 'twenty-three thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(22227, 12017, 'twelve thousand seventeen'); INSERT INTO t3 VALUES(22228, 8419, 'eight thousand four hundred nineteen'); INSERT INTO t3 VALUES(22229, 43363, 'forty-three thousand three hundred sixty-three'); INSERT INTO t3 VALUES(22230, 21331, 'twenty-one thousand three hundred thirty-one'); INSERT INTO t3 VALUES(22231, 79039, 'seventy-nine thousand thirty-nine'); INSERT INTO t3 VALUES(22232, 99062, 'ninety-nine thousand sixty-two'); INSERT INTO t3 VALUES(22233, 40008, 'forty thousand eight'); INSERT INTO t3 VALUES(22234, 51089, 'fifty-one thousand eighty-nine'); INSERT INTO t3 VALUES(22235, 67742, 'sixty-seven thousand seven hundred forty-two'); INSERT INTO t3 VALUES(22236, 62695, 'sixty-two thousand six hundred ninety-five'); INSERT INTO t3 VALUES(22237, 28883, 'twenty-eight thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(22238, 85403, 'eighty-five thousand four hundred three'); INSERT INTO t3 VALUES(22239, 11587, 'eleven thousand five hundred eighty-seven'); INSERT INTO t3 VALUES(22240, 55658, 'fifty-five thousand six hundred fifty-eight'); INSERT INTO t3 VALUES(22241, 93458, 'ninety-three thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(22242, 90818, 'ninety thousand eight hundred eighteen'); INSERT INTO t3 VALUES(22243, 30392, 'thirty thousand three hundred ninety-two'); INSERT INTO t3 VALUES(22244, 49103, 'forty-nine thousand one hundred three'); INSERT INTO t3 VALUES(22245, 63938, 'sixty-three thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(22246, 82730, 'eighty-two thousand seven hundred thirty'); INSERT INTO t3 VALUES(22247, 74486, 'seventy-four thousand four hundred eighty-six'); INSERT INTO t3 VALUES(22248, 48080, 'forty-eight thousand eighty'); INSERT INTO t3 VALUES(22249, 91120, 'ninety-one thousand one hundred twenty'); INSERT INTO t3 VALUES(22250, 99009, 'ninety-nine thousand nine'); INSERT INTO t3 VALUES(22251, 31387, 'thirty-one thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(22252, 9844, 'nine thousand eight hundred forty-four'); INSERT INTO t3 VALUES(22253, 7762, 'seven thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(22254, 76669, 'seventy-six thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(22255, 99610, 'ninety-nine thousand six hundred ten'); INSERT INTO t3 VALUES(22256, 95934, 'ninety-five thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(22257, 92261, 'ninety-two thousand two hundred sixty-one'); INSERT INTO t3 VALUES(22258, 2922, 'two thousand nine hundred twenty-two'); INSERT INTO t3 VALUES(22259, 31718, 'thirty-one thousand seven hundred eighteen'); INSERT INTO t3 VALUES(22260, 16480, 'sixteen thousand four hundred eighty'); INSERT INTO t3 VALUES(22261, 45693, 'forty-five thousand six hundred ninety-three'); INSERT INTO t3 VALUES(22262, 74182, 'seventy-four thousand one hundred eighty-two'); INSERT INTO t3 VALUES(22263, 77439, 'seventy-seven thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(22264, 1307, 'one thousand three hundred seven'); INSERT INTO t3 VALUES(22265, 98301, 'ninety-eight thousand three hundred one'); INSERT INTO t3 VALUES(22266, 52033, 'fifty-two thousand thirty-three'); INSERT INTO t3 VALUES(22267, 50061, 'fifty thousand sixty-one'); INSERT INTO t3 VALUES(22268, 42286, 'forty-two thousand two hundred eighty-six'); INSERT INTO t3 VALUES(22269, 12585, 'twelve thousand five hundred eighty-five'); INSERT INTO t3 VALUES(22270, 95924, 'ninety-five thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(22271, 11159, 'eleven thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(22272, 98641, 'ninety-eight thousand six hundred forty-one'); INSERT INTO t3 VALUES(22273, 67024, 'sixty-seven thousand twenty-four'); INSERT INTO t3 VALUES(22274, 3976, 'three thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(22275, 86312, 'eighty-six thousand three hundred twelve'); INSERT INTO t3 VALUES(22276, 97764, 'ninety-seven thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(22277, 9204, 'nine thousand two hundred four'); INSERT INTO t3 VALUES(22278, 66999, 'sixty-six thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(22279, 77110, 'seventy-seven thousand one hundred ten'); INSERT INTO t3 VALUES(22280, 68710, 'sixty-eight thousand seven hundred ten'); INSERT INTO t3 VALUES(22281, 21654, 'twenty-one thousand six hundred fifty-four'); INSERT INTO t3 VALUES(22282, 32178, 'thirty-two thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(22283, 50938, 'fifty thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(22284, 60472, 'sixty thousand four hundred seventy-two'); INSERT INTO t3 VALUES(22285, 57332, 'fifty-seven thousand three hundred thirty-two'); INSERT INTO t3 VALUES(22286, 81781, 'eighty-one thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(22287, 46591, 'forty-six thousand five hundred ninety-one'); INSERT INTO t3 VALUES(22288, 61060, 'sixty-one thousand sixty'); INSERT INTO t3 VALUES(22289, 40000, 'forty thousand'); INSERT INTO t3 VALUES(22290, 17242, 'seventeen thousand two hundred forty-two'); INSERT INTO t3 VALUES(22291, 47359, 'forty-seven thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(22292, 53394, 'fifty-three thousand three hundred ninety-four'); INSERT INTO t3 VALUES(22293, 73258, 'seventy-three thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(22294, 37930, 'thirty-seven thousand nine hundred thirty'); INSERT INTO t3 VALUES(22295, 88902, 'eighty-eight thousand nine hundred two'); INSERT INTO t3 VALUES(22296, 23865, 'twenty-three thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(22297, 52522, 'fifty-two thousand five hundred twenty-two'); INSERT INTO t3 VALUES(22298, 10986, 'ten thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(22299, 67658, 'sixty-seven thousand six hundred fifty-eight'); INSERT INTO t3 VALUES(22300, 80184, 'eighty thousand one hundred eighty-four'); INSERT INTO t3 VALUES(22301, 59131, 'fifty-nine thousand one hundred thirty-one'); INSERT INTO t3 VALUES(22302, 12625, 'twelve thousand six hundred twenty-five'); INSERT INTO t3 VALUES(22303, 8368, 'eight thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(22304, 10908, 'ten thousand nine hundred eight'); INSERT INTO t3 VALUES(22305, 20317, 'twenty thousand three hundred seventeen'); INSERT INTO t3 VALUES(22306, 44456, 'forty-four thousand four hundred fifty-six'); INSERT INTO t3 VALUES(22307, 52754, 'fifty-two thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(22308, 51128, 'fifty-one thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(22309, 3730, 'three thousand seven hundred thirty'); INSERT INTO t3 VALUES(22310, 84201, 'eighty-four thousand two hundred one'); INSERT INTO t3 VALUES(22311, 25468, 'twenty-five thousand four hundred sixty-eight'); INSERT INTO t3 VALUES(22312, 773, 'seven hundred seventy-three'); INSERT INTO t3 VALUES(22313, 52296, 'fifty-two thousand two hundred ninety-six'); INSERT INTO t3 VALUES(22314, 63724, 'sixty-three thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(22315, 27149, 'twenty-seven thousand one hundred forty-nine'); INSERT INTO t3 VALUES(22316, 97401, 'ninety-seven thousand four hundred one'); INSERT INTO t3 VALUES(22317, 56210, 'fifty-six thousand two hundred ten'); INSERT INTO t3 VALUES(22318, 2715, 'two thousand seven hundred fifteen'); INSERT INTO t3 VALUES(22319, 35745, 'thirty-five thousand seven hundred forty-five'); INSERT INTO t3 VALUES(22320, 36475, 'thirty-six thousand four hundred seventy-five'); INSERT INTO t3 VALUES(22321, 25178, 'twenty-five thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(22322, 82726, 'eighty-two thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(22323, 17715, 'seventeen thousand seven hundred fifteen'); INSERT INTO t3 VALUES(22324, 90969, 'ninety thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(22325, 35633, 'thirty-five thousand six hundred thirty-three'); INSERT INTO t3 VALUES(22326, 70702, 'seventy thousand seven hundred two'); INSERT INTO t3 VALUES(22327, 83992, 'eighty-three thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(22328, 29490, 'twenty-nine thousand four hundred ninety'); INSERT INTO t3 VALUES(22329, 35399, 'thirty-five thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(22330, 85766, 'eighty-five thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(22331, 2271, 'two thousand two hundred seventy-one'); INSERT INTO t3 VALUES(22332, 16685, 'sixteen thousand six hundred eighty-five'); INSERT INTO t3 VALUES(22333, 20762, 'twenty thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(22334, 94064, 'ninety-four thousand sixty-four'); INSERT INTO t3 VALUES(22335, 84347, 'eighty-four thousand three hundred forty-seven'); INSERT INTO t3 VALUES(22336, 86339, 'eighty-six thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(22337, 19130, 'nineteen thousand one hundred thirty'); INSERT INTO t3 VALUES(22338, 85596, 'eighty-five thousand five hundred ninety-six'); INSERT INTO t3 VALUES(22339, 50706, 'fifty thousand seven hundred six'); INSERT INTO t3 VALUES(22340, 56772, 'fifty-six thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(22341, 52976, 'fifty-two thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(22342, 22760, 'twenty-two thousand seven hundred sixty'); INSERT INTO t3 VALUES(22343, 24765, 'twenty-four thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(22344, 97206, 'ninety-seven thousand two hundred six'); INSERT INTO t3 VALUES(22345, 63438, 'sixty-three thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(22346, 72553, 'seventy-two thousand five hundred fifty-three'); INSERT INTO t3 VALUES(22347, 55990, 'fifty-five thousand nine hundred ninety'); INSERT INTO t3 VALUES(22348, 51665, 'fifty-one thousand six hundred sixty-five'); INSERT INTO t3 VALUES(22349, 7379, 'seven thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(22350, 90234, 'ninety thousand two hundred thirty-four'); INSERT INTO t3 VALUES(22351, 69009, 'sixty-nine thousand nine'); INSERT INTO t3 VALUES(22352, 69078, 'sixty-nine thousand seventy-eight'); INSERT INTO t3 VALUES(22353, 18873, 'eighteen thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(22354, 20351, 'twenty thousand three hundred fifty-one'); INSERT INTO t3 VALUES(22355, 23257, 'twenty-three thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(22356, 47683, 'forty-seven thousand six hundred eighty-three'); INSERT INTO t3 VALUES(22357, 25129, 'twenty-five thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(22358, 42392, 'forty-two thousand three hundred ninety-two'); INSERT INTO t3 VALUES(22359, 61533, 'sixty-one thousand five hundred thirty-three'); INSERT INTO t3 VALUES(22360, 74504, 'seventy-four thousand five hundred four'); INSERT INTO t3 VALUES(22361, 21283, 'twenty-one thousand two hundred eighty-three'); INSERT INTO t3 VALUES(22362, 34181, 'thirty-four thousand one hundred eighty-one'); INSERT INTO t3 VALUES(22363, 90907, 'ninety thousand nine hundred seven'); INSERT INTO t3 VALUES(22364, 20857, 'twenty thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(22365, 81696, 'eighty-one thousand six hundred ninety-six'); INSERT INTO t3 VALUES(22366, 40214, 'forty thousand two hundred fourteen'); INSERT INTO t3 VALUES(22367, 63976, 'sixty-three thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(22368, 50398, 'fifty thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(22369, 13364, 'thirteen thousand three hundred sixty-four'); INSERT INTO t3 VALUES(22370, 97470, 'ninety-seven thousand four hundred seventy'); INSERT INTO t3 VALUES(22371, 27065, 'twenty-seven thousand sixty-five'); INSERT INTO t3 VALUES(22372, 73598, 'seventy-three thousand five hundred ninety-eight'); INSERT INTO t3 VALUES(22373, 89848, 'eighty-nine thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(22374, 42272, 'forty-two thousand two hundred seventy-two'); INSERT INTO t3 VALUES(22375, 60287, 'sixty thousand two hundred eighty-seven'); INSERT INTO t3 VALUES(22376, 3178, 'three thousand one hundred seventy-eight'); INSERT INTO t3 VALUES(22377, 57321, 'fifty-seven thousand three hundred twenty-one'); INSERT INTO t3 VALUES(22378, 78679, 'seventy-eight thousand six hundred seventy-nine'); INSERT INTO t3 VALUES(22379, 86227, 'eighty-six thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(22380, 85683, 'eighty-five thousand six hundred eighty-three'); INSERT INTO t3 VALUES(22381, 47749, 'forty-seven thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(22382, 1655, 'one thousand six hundred fifty-five'); INSERT INTO t3 VALUES(22383, 98561, 'ninety-eight thousand five hundred sixty-one'); INSERT INTO t3 VALUES(22384, 66277, 'sixty-six thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(22385, 27619, 'twenty-seven thousand six hundred nineteen'); INSERT INTO t3 VALUES(22386, 33063, 'thirty-three thousand sixty-three'); INSERT INTO t3 VALUES(22387, 51934, 'fifty-one thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(22388, 51697, 'fifty-one thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(22389, 94067, 'ninety-four thousand sixty-seven'); INSERT INTO t3 VALUES(22390, 9406, 'nine thousand four hundred six'); INSERT INTO t3 VALUES(22391, 77419, 'seventy-seven thousand four hundred nineteen'); INSERT INTO t3 VALUES(22392, 51600, 'fifty-one thousand six hundred'); INSERT INTO t3 VALUES(22393, 68734, 'sixty-eight thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(22394, 94698, 'ninety-four thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(22395, 26845, 'twenty-six thousand eight hundred forty-five'); INSERT INTO t3 VALUES(22396, 33145, 'thirty-three thousand one hundred forty-five'); INSERT INTO t3 VALUES(22397, 46414, 'forty-six thousand four hundred fourteen'); INSERT INTO t3 VALUES(22398, 94506, 'ninety-four thousand five hundred six'); INSERT INTO t3 VALUES(22399, 95090, 'ninety-five thousand ninety'); INSERT INTO t3 VALUES(22400, 6585, 'six thousand five hundred eighty-five'); INSERT INTO t3 VALUES(22401, 40779, 'forty thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(22402, 96607, 'ninety-six thousand six hundred seven'); INSERT INTO t3 VALUES(22403, 64492, 'sixty-four thousand four hundred ninety-two'); INSERT INTO t3 VALUES(22404, 84078, 'eighty-four thousand seventy-eight'); INSERT INTO t3 VALUES(22405, 36908, 'thirty-six thousand nine hundred eight'); INSERT INTO t3 VALUES(22406, 40657, 'forty thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(22407, 20646, 'twenty thousand six hundred forty-six'); INSERT INTO t3 VALUES(22408, 60510, 'sixty thousand five hundred ten'); INSERT INTO t3 VALUES(22409, 73961, 'seventy-three thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(22410, 13169, 'thirteen thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(22411, 21915, 'twenty-one thousand nine hundred fifteen'); INSERT INTO t3 VALUES(22412, 11303, 'eleven thousand three hundred three'); INSERT INTO t3 VALUES(22413, 39326, 'thirty-nine thousand three hundred twenty-six'); INSERT INTO t3 VALUES(22414, 5671, 'five thousand six hundred seventy-one'); INSERT INTO t3 VALUES(22415, 52919, 'fifty-two thousand nine hundred nineteen'); INSERT INTO t3 VALUES(22416, 75336, 'seventy-five thousand three hundred thirty-six'); INSERT INTO t3 VALUES(22417, 99578, 'ninety-nine thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(22418, 32711, 'thirty-two thousand seven hundred eleven'); INSERT INTO t3 VALUES(22419, 36038, 'thirty-six thousand thirty-eight'); INSERT INTO t3 VALUES(22420, 6707, 'six thousand seven hundred seven'); INSERT INTO t3 VALUES(22421, 3678, 'three thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(22422, 30427, 'thirty thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(22423, 25681, 'twenty-five thousand six hundred eighty-one'); INSERT INTO t3 VALUES(22424, 86599, 'eighty-six thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(22425, 80271, 'eighty thousand two hundred seventy-one'); INSERT INTO t3 VALUES(22426, 43175, 'forty-three thousand one hundred seventy-five'); INSERT INTO t3 VALUES(22427, 81706, 'eighty-one thousand seven hundred six'); INSERT INTO t3 VALUES(22428, 83982, 'eighty-three thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(22429, 54881, 'fifty-four thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(22430, 31451, 'thirty-one thousand four hundred fifty-one'); INSERT INTO t3 VALUES(22431, 4086, 'four thousand eighty-six'); INSERT INTO t3 VALUES(22432, 69995, 'sixty-nine thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(22433, 49166, 'forty-nine thousand one hundred sixty-six'); INSERT INTO t3 VALUES(22434, 89482, 'eighty-nine thousand four hundred eighty-two'); INSERT INTO t3 VALUES(22435, 82005, 'eighty-two thousand five'); INSERT INTO t3 VALUES(22436, 49004, 'forty-nine thousand four'); INSERT INTO t3 VALUES(22437, 63147, 'sixty-three thousand one hundred forty-seven'); INSERT INTO t3 VALUES(22438, 80267, 'eighty thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(22439, 50796, 'fifty thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(22440, 75097, 'seventy-five thousand ninety-seven'); INSERT INTO t3 VALUES(22441, 13363, 'thirteen thousand three hundred sixty-three'); INSERT INTO t3 VALUES(22442, 8339, 'eight thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(22443, 34388, 'thirty-four thousand three hundred eighty-eight'); INSERT INTO t3 VALUES(22444, 3952, 'three thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(22445, 13186, 'thirteen thousand one hundred eighty-six'); INSERT INTO t3 VALUES(22446, 30296, 'thirty thousand two hundred ninety-six'); INSERT INTO t3 VALUES(22447, 31017, 'thirty-one thousand seventeen'); INSERT INTO t3 VALUES(22448, 17804, 'seventeen thousand eight hundred four'); INSERT INTO t3 VALUES(22449, 34962, 'thirty-four thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(22450, 55189, 'fifty-five thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(22451, 91833, 'ninety-one thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(22452, 49688, 'forty-nine thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(22453, 66182, 'sixty-six thousand one hundred eighty-two'); INSERT INTO t3 VALUES(22454, 99582, 'ninety-nine thousand five hundred eighty-two'); INSERT INTO t3 VALUES(22455, 86313, 'eighty-six thousand three hundred thirteen'); INSERT INTO t3 VALUES(22456, 35188, 'thirty-five thousand one hundred eighty-eight'); INSERT INTO t3 VALUES(22457, 96210, 'ninety-six thousand two hundred ten'); INSERT INTO t3 VALUES(22458, 95687, 'ninety-five thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(22459, 91745, 'ninety-one thousand seven hundred forty-five'); INSERT INTO t3 VALUES(22460, 82713, 'eighty-two thousand seven hundred thirteen'); INSERT INTO t3 VALUES(22461, 46026, 'forty-six thousand twenty-six'); INSERT INTO t3 VALUES(22462, 96590, 'ninety-six thousand five hundred ninety'); INSERT INTO t3 VALUES(22463, 26335, 'twenty-six thousand three hundred thirty-five'); INSERT INTO t3 VALUES(22464, 73744, 'seventy-three thousand seven hundred forty-four'); INSERT INTO t3 VALUES(22465, 4912, 'four thousand nine hundred twelve'); INSERT INTO t3 VALUES(22466, 74079, 'seventy-four thousand seventy-nine'); INSERT INTO t3 VALUES(22467, 71283, 'seventy-one thousand two hundred eighty-three'); INSERT INTO t3 VALUES(22468, 82510, 'eighty-two thousand five hundred ten'); INSERT INTO t3 VALUES(22469, 36400, 'thirty-six thousand four hundred'); INSERT INTO t3 VALUES(22470, 24584, 'twenty-four thousand five hundred eighty-four'); INSERT INTO t3 VALUES(22471, 62690, 'sixty-two thousand six hundred ninety'); INSERT INTO t3 VALUES(22472, 74182, 'seventy-four thousand one hundred eighty-two'); INSERT INTO t3 VALUES(22473, 59501, 'fifty-nine thousand five hundred one'); INSERT INTO t3 VALUES(22474, 73906, 'seventy-three thousand nine hundred six'); INSERT INTO t3 VALUES(22475, 84201, 'eighty-four thousand two hundred one'); INSERT INTO t3 VALUES(22476, 19013, 'nineteen thousand thirteen'); INSERT INTO t3 VALUES(22477, 21821, 'twenty-one thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(22478, 47711, 'forty-seven thousand seven hundred eleven'); INSERT INTO t3 VALUES(22479, 10009, 'ten thousand nine'); INSERT INTO t3 VALUES(22480, 23909, 'twenty-three thousand nine hundred nine'); INSERT INTO t3 VALUES(22481, 39934, 'thirty-nine thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(22482, 76259, 'seventy-six thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(22483, 26065, 'twenty-six thousand sixty-five'); INSERT INTO t3 VALUES(22484, 39543, 'thirty-nine thousand five hundred forty-three'); INSERT INTO t3 VALUES(22485, 49427, 'forty-nine thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(22486, 91481, 'ninety-one thousand four hundred eighty-one'); INSERT INTO t3 VALUES(22487, 51955, 'fifty-one thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(22488, 73018, 'seventy-three thousand eighteen'); INSERT INTO t3 VALUES(22489, 42658, 'forty-two thousand six hundred fifty-eight'); INSERT INTO t3 VALUES(22490, 1012, 'one thousand twelve'); INSERT INTO t3 VALUES(22491, 66699, 'sixty-six thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(22492, 99683, 'ninety-nine thousand six hundred eighty-three'); INSERT INTO t3 VALUES(22493, 26364, 'twenty-six thousand three hundred sixty-four'); INSERT INTO t3 VALUES(22494, 14630, 'fourteen thousand six hundred thirty'); INSERT INTO t3 VALUES(22495, 97375, 'ninety-seven thousand three hundred seventy-five'); INSERT INTO t3 VALUES(22496, 97080, 'ninety-seven thousand eighty'); INSERT INTO t3 VALUES(22497, 2373, 'two thousand three hundred seventy-three'); INSERT INTO t3 VALUES(22498, 41211, 'forty-one thousand two hundred eleven'); INSERT INTO t3 VALUES(22499, 29659, 'twenty-nine thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(22500, 6419, 'six thousand four hundred nineteen'); INSERT INTO t3 VALUES(22501, 17338, 'seventeen thousand three hundred thirty-eight'); INSERT INTO t3 VALUES(22502, 76924, 'seventy-six thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(22503, 19371, 'nineteen thousand three hundred seventy-one'); INSERT INTO t3 VALUES(22504, 20685, 'twenty thousand six hundred eighty-five'); INSERT INTO t3 VALUES(22505, 36069, 'thirty-six thousand sixty-nine'); INSERT INTO t3 VALUES(22506, 73981, 'seventy-three thousand nine hundred eighty-one'); INSERT INTO t3 VALUES(22507, 13129, 'thirteen thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(22508, 88970, 'eighty-eight thousand nine hundred seventy'); INSERT INTO t3 VALUES(22509, 82916, 'eighty-two thousand nine hundred sixteen'); INSERT INTO t3 VALUES(22510, 38938, 'thirty-eight thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(22511, 94741, 'ninety-four thousand seven hundred forty-one'); INSERT INTO t3 VALUES(22512, 38227, 'thirty-eight thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(22513, 68239, 'sixty-eight thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(22514, 81326, 'eighty-one thousand three hundred twenty-six'); INSERT INTO t3 VALUES(22515, 94805, 'ninety-four thousand eight hundred five'); INSERT INTO t3 VALUES(22516, 6101, 'six thousand one hundred one'); INSERT INTO t3 VALUES(22517, 14592, 'fourteen thousand five hundred ninety-two'); INSERT INTO t3 VALUES(22518, 99163, 'ninety-nine thousand one hundred sixty-three'); INSERT INTO t3 VALUES(22519, 18708, 'eighteen thousand seven hundred eight'); INSERT INTO t3 VALUES(22520, 51549, 'fifty-one thousand five hundred forty-nine'); INSERT INTO t3 VALUES(22521, 56196, 'fifty-six thousand one hundred ninety-six'); INSERT INTO t3 VALUES(22522, 13361, 'thirteen thousand three hundred sixty-one'); INSERT INTO t3 VALUES(22523, 821, 'eight hundred twenty-one'); INSERT INTO t3 VALUES(22524, 67528, 'sixty-seven thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(22525, 44933, 'forty-four thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(22526, 54841, 'fifty-four thousand eight hundred forty-one'); INSERT INTO t3 VALUES(22527, 77904, 'seventy-seven thousand nine hundred four'); INSERT INTO t3 VALUES(22528, 12606, 'twelve thousand six hundred six'); INSERT INTO t3 VALUES(22529, 14951, 'fourteen thousand nine hundred fifty-one'); INSERT INTO t3 VALUES(22530, 62014, 'sixty-two thousand fourteen'); INSERT INTO t3 VALUES(22531, 14627, 'fourteen thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(22532, 99277, 'ninety-nine thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(22533, 69933, 'sixty-nine thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(22534, 58272, 'fifty-eight thousand two hundred seventy-two'); INSERT INTO t3 VALUES(22535, 47217, 'forty-seven thousand two hundred seventeen'); INSERT INTO t3 VALUES(22536, 78599, 'seventy-eight thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(22537, 10699, 'ten thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(22538, 60801, 'sixty thousand eight hundred one'); INSERT INTO t3 VALUES(22539, 23594, 'twenty-three thousand five hundred ninety-four'); INSERT INTO t3 VALUES(22540, 91715, 'ninety-one thousand seven hundred fifteen'); INSERT INTO t3 VALUES(22541, 10879, 'ten thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(22542, 53661, 'fifty-three thousand six hundred sixty-one'); INSERT INTO t3 VALUES(22543, 8007, 'eight thousand seven'); INSERT INTO t3 VALUES(22544, 54731, 'fifty-four thousand seven hundred thirty-one'); INSERT INTO t3 VALUES(22545, 38540, 'thirty-eight thousand five hundred forty'); INSERT INTO t3 VALUES(22546, 1512, 'one thousand five hundred twelve'); INSERT INTO t3 VALUES(22547, 5898, 'five thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(22548, 79462, 'seventy-nine thousand four hundred sixty-two'); INSERT INTO t3 VALUES(22549, 68885, 'sixty-eight thousand eight hundred eighty-five'); INSERT INTO t3 VALUES(22550, 9204, 'nine thousand two hundred four'); INSERT INTO t3 VALUES(22551, 40727, 'forty thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(22552, 63189, 'sixty-three thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(22553, 8225, 'eight thousand two hundred twenty-five'); INSERT INTO t3 VALUES(22554, 10054, 'ten thousand fifty-four'); INSERT INTO t3 VALUES(22555, 91146, 'ninety-one thousand one hundred forty-six'); INSERT INTO t3 VALUES(22556, 15561, 'fifteen thousand five hundred sixty-one'); INSERT INTO t3 VALUES(22557, 99349, 'ninety-nine thousand three hundred forty-nine'); INSERT INTO t3 VALUES(22558, 13638, 'thirteen thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(22559, 77478, 'seventy-seven thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(22560, 70421, 'seventy thousand four hundred twenty-one'); INSERT INTO t3 VALUES(22561, 63773, 'sixty-three thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(22562, 21984, 'twenty-one thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(22563, 26207, 'twenty-six thousand two hundred seven'); INSERT INTO t3 VALUES(22564, 57262, 'fifty-seven thousand two hundred sixty-two'); INSERT INTO t3 VALUES(22565, 14062, 'fourteen thousand sixty-two'); INSERT INTO t3 VALUES(22566, 54079, 'fifty-four thousand seventy-nine'); INSERT INTO t3 VALUES(22567, 67119, 'sixty-seven thousand one hundred nineteen'); INSERT INTO t3 VALUES(22568, 52911, 'fifty-two thousand nine hundred eleven'); INSERT INTO t3 VALUES(22569, 68926, 'sixty-eight thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(22570, 20437, 'twenty thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(22571, 10588, 'ten thousand five hundred eighty-eight'); INSERT INTO t3 VALUES(22572, 60399, 'sixty thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(22573, 45134, 'forty-five thousand one hundred thirty-four'); INSERT INTO t3 VALUES(22574, 38698, 'thirty-eight thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(22575, 89621, 'eighty-nine thousand six hundred twenty-one'); INSERT INTO t3 VALUES(22576, 13891, 'thirteen thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(22577, 42727, 'forty-two thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(22578, 17700, 'seventeen thousand seven hundred'); INSERT INTO t3 VALUES(22579, 78109, 'seventy-eight thousand one hundred nine'); INSERT INTO t3 VALUES(22580, 13448, 'thirteen thousand four hundred forty-eight'); INSERT INTO t3 VALUES(22581, 80599, 'eighty thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(22582, 85955, 'eighty-five thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(22583, 47326, 'forty-seven thousand three hundred twenty-six'); INSERT INTO t3 VALUES(22584, 95948, 'ninety-five thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(22585, 80920, 'eighty thousand nine hundred twenty'); INSERT INTO t3 VALUES(22586, 71642, 'seventy-one thousand six hundred forty-two'); INSERT INTO t3 VALUES(22587, 35628, 'thirty-five thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(22588, 63218, 'sixty-three thousand two hundred eighteen'); INSERT INTO t3 VALUES(22589, 88825, 'eighty-eight thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(22590, 62320, 'sixty-two thousand three hundred twenty'); INSERT INTO t3 VALUES(22591, 46363, 'forty-six thousand three hundred sixty-three'); INSERT INTO t3 VALUES(22592, 14135, 'fourteen thousand one hundred thirty-five'); INSERT INTO t3 VALUES(22593, 34076, 'thirty-four thousand seventy-six'); INSERT INTO t3 VALUES(22594, 53105, 'fifty-three thousand one hundred five'); INSERT INTO t3 VALUES(22595, 31265, 'thirty-one thousand two hundred sixty-five'); INSERT INTO t3 VALUES(22596, 86163, 'eighty-six thousand one hundred sixty-three'); INSERT INTO t3 VALUES(22597, 68260, 'sixty-eight thousand two hundred sixty'); INSERT INTO t3 VALUES(22598, 59241, 'fifty-nine thousand two hundred forty-one'); INSERT INTO t3 VALUES(22599, 68074, 'sixty-eight thousand seventy-four'); INSERT INTO t3 VALUES(22600, 96699, 'ninety-six thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(22601, 29323, 'twenty-nine thousand three hundred twenty-three'); INSERT INTO t3 VALUES(22602, 69624, 'sixty-nine thousand six hundred twenty-four'); INSERT INTO t3 VALUES(22603, 68641, 'sixty-eight thousand six hundred forty-one'); INSERT INTO t3 VALUES(22604, 10943, 'ten thousand nine hundred forty-three'); INSERT INTO t3 VALUES(22605, 86206, 'eighty-six thousand two hundred six'); INSERT INTO t3 VALUES(22606, 17687, 'seventeen thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(22607, 69124, 'sixty-nine thousand one hundred twenty-four'); INSERT INTO t3 VALUES(22608, 37262, 'thirty-seven thousand two hundred sixty-two'); INSERT INTO t3 VALUES(22609, 76436, 'seventy-six thousand four hundred thirty-six'); INSERT INTO t3 VALUES(22610, 8463, 'eight thousand four hundred sixty-three'); INSERT INTO t3 VALUES(22611, 77467, 'seventy-seven thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(22612, 8572, 'eight thousand five hundred seventy-two'); INSERT INTO t3 VALUES(22613, 68056, 'sixty-eight thousand fifty-six'); INSERT INTO t3 VALUES(22614, 93635, 'ninety-three thousand six hundred thirty-five'); INSERT INTO t3 VALUES(22615, 54697, 'fifty-four thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(22616, 21655, 'twenty-one thousand six hundred fifty-five'); INSERT INTO t3 VALUES(22617, 99454, 'ninety-nine thousand four hundred fifty-four'); INSERT INTO t3 VALUES(22618, 48855, 'forty-eight thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(22619, 86744, 'eighty-six thousand seven hundred forty-four'); INSERT INTO t3 VALUES(22620, 10357, 'ten thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(22621, 37591, 'thirty-seven thousand five hundred ninety-one'); INSERT INTO t3 VALUES(22622, 44149, 'forty-four thousand one hundred forty-nine'); INSERT INTO t3 VALUES(22623, 13913, 'thirteen thousand nine hundred thirteen'); INSERT INTO t3 VALUES(22624, 38012, 'thirty-eight thousand twelve'); INSERT INTO t3 VALUES(22625, 77186, 'seventy-seven thousand one hundred eighty-six'); INSERT INTO t3 VALUES(22626, 38275, 'thirty-eight thousand two hundred seventy-five'); INSERT INTO t3 VALUES(22627, 82596, 'eighty-two thousand five hundred ninety-six'); INSERT INTO t3 VALUES(22628, 31863, 'thirty-one thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(22629, 59071, 'fifty-nine thousand seventy-one'); INSERT INTO t3 VALUES(22630, 17881, 'seventeen thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(22631, 67570, 'sixty-seven thousand five hundred seventy'); INSERT INTO t3 VALUES(22632, 43826, 'forty-three thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(22633, 83633, 'eighty-three thousand six hundred thirty-three'); INSERT INTO t3 VALUES(22634, 31002, 'thirty-one thousand two'); INSERT INTO t3 VALUES(22635, 60684, 'sixty thousand six hundred eighty-four'); INSERT INTO t3 VALUES(22636, 28923, 'twenty-eight thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(22637, 22175, 'twenty-two thousand one hundred seventy-five'); INSERT INTO t3 VALUES(22638, 89221, 'eighty-nine thousand two hundred twenty-one'); INSERT INTO t3 VALUES(22639, 63361, 'sixty-three thousand three hundred sixty-one'); INSERT INTO t3 VALUES(22640, 58237, 'fifty-eight thousand two hundred thirty-seven'); INSERT INTO t3 VALUES(22641, 35054, 'thirty-five thousand fifty-four'); INSERT INTO t3 VALUES(22642, 1424, 'one thousand four hundred twenty-four'); INSERT INTO t3 VALUES(22643, 43666, 'forty-three thousand six hundred sixty-six'); INSERT INTO t3 VALUES(22644, 40409, 'forty thousand four hundred nine'); INSERT INTO t3 VALUES(22645, 33682, 'thirty-three thousand six hundred eighty-two'); INSERT INTO t3 VALUES(22646, 65654, 'sixty-five thousand six hundred fifty-four'); INSERT INTO t3 VALUES(22647, 38851, 'thirty-eight thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(22648, 90697, 'ninety thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(22649, 55186, 'fifty-five thousand one hundred eighty-six'); INSERT INTO t3 VALUES(22650, 47660, 'forty-seven thousand six hundred sixty'); INSERT INTO t3 VALUES(22651, 73333, 'seventy-three thousand three hundred thirty-three'); INSERT INTO t3 VALUES(22652, 80656, 'eighty thousand six hundred fifty-six'); INSERT INTO t3 VALUES(22653, 90456, 'ninety thousand four hundred fifty-six'); INSERT INTO t3 VALUES(22654, 80206, 'eighty thousand two hundred six'); INSERT INTO t3 VALUES(22655, 13317, 'thirteen thousand three hundred seventeen'); INSERT INTO t3 VALUES(22656, 92130, 'ninety-two thousand one hundred thirty'); INSERT INTO t3 VALUES(22657, 69691, 'sixty-nine thousand six hundred ninety-one'); INSERT INTO t3 VALUES(22658, 49643, 'forty-nine thousand six hundred forty-three'); INSERT INTO t3 VALUES(22659, 72908, 'seventy-two thousand nine hundred eight'); INSERT INTO t3 VALUES(22660, 17863, 'seventeen thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(22661, 56125, 'fifty-six thousand one hundred twenty-five'); INSERT INTO t3 VALUES(22662, 56476, 'fifty-six thousand four hundred seventy-six'); INSERT INTO t3 VALUES(22663, 47629, 'forty-seven thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(22664, 95842, 'ninety-five thousand eight hundred forty-two'); INSERT INTO t3 VALUES(22665, 30306, 'thirty thousand three hundred six'); INSERT INTO t3 VALUES(22666, 73791, 'seventy-three thousand seven hundred ninety-one'); INSERT INTO t3 VALUES(22667, 93124, 'ninety-three thousand one hundred twenty-four'); INSERT INTO t3 VALUES(22668, 72960, 'seventy-two thousand nine hundred sixty'); INSERT INTO t3 VALUES(22669, 39190, 'thirty-nine thousand one hundred ninety'); INSERT INTO t3 VALUES(22670, 31214, 'thirty-one thousand two hundred fourteen'); INSERT INTO t3 VALUES(22671, 24897, 'twenty-four thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(22672, 36517, 'thirty-six thousand five hundred seventeen'); INSERT INTO t3 VALUES(22673, 1381, 'one thousand three hundred eighty-one'); INSERT INTO t3 VALUES(22674, 81193, 'eighty-one thousand one hundred ninety-three'); INSERT INTO t3 VALUES(22675, 49723, 'forty-nine thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(22676, 58089, 'fifty-eight thousand eighty-nine'); INSERT INTO t3 VALUES(22677, 42656, 'forty-two thousand six hundred fifty-six'); INSERT INTO t3 VALUES(22678, 53931, 'fifty-three thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(22679, 98745, 'ninety-eight thousand seven hundred forty-five'); INSERT INTO t3 VALUES(22680, 70780, 'seventy thousand seven hundred eighty'); INSERT INTO t3 VALUES(22681, 42708, 'forty-two thousand seven hundred eight'); INSERT INTO t3 VALUES(22682, 94266, 'ninety-four thousand two hundred sixty-six'); INSERT INTO t3 VALUES(22683, 35797, 'thirty-five thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(22684, 94661, 'ninety-four thousand six hundred sixty-one'); INSERT INTO t3 VALUES(22685, 725, 'seven hundred twenty-five'); INSERT INTO t3 VALUES(22686, 66150, 'sixty-six thousand one hundred fifty'); INSERT INTO t3 VALUES(22687, 47855, 'forty-seven thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(22688, 51487, 'fifty-one thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(22689, 85336, 'eighty-five thousand three hundred thirty-six'); INSERT INTO t3 VALUES(22690, 58295, 'fifty-eight thousand two hundred ninety-five'); INSERT INTO t3 VALUES(22691, 79736, 'seventy-nine thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(22692, 62021, 'sixty-two thousand twenty-one'); INSERT INTO t3 VALUES(22693, 47243, 'forty-seven thousand two hundred forty-three'); INSERT INTO t3 VALUES(22694, 71839, 'seventy-one thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(22695, 80541, 'eighty thousand five hundred forty-one'); INSERT INTO t3 VALUES(22696, 55725, 'fifty-five thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(22697, 12857, 'twelve thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(22698, 80649, 'eighty thousand six hundred forty-nine'); INSERT INTO t3 VALUES(22699, 24997, 'twenty-four thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(22700, 56304, 'fifty-six thousand three hundred four'); INSERT INTO t3 VALUES(22701, 5252, 'five thousand two hundred fifty-two'); INSERT INTO t3 VALUES(22702, 43552, 'forty-three thousand five hundred fifty-two'); INSERT INTO t3 VALUES(22703, 5, 'five'); INSERT INTO t3 VALUES(22704, 13340, 'thirteen thousand three hundred forty'); INSERT INTO t3 VALUES(22705, 2375, 'two thousand three hundred seventy-five'); INSERT INTO t3 VALUES(22706, 44108, 'forty-four thousand one hundred eight'); INSERT INTO t3 VALUES(22707, 95838, 'ninety-five thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(22708, 8189, 'eight thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(22709, 84953, 'eighty-four thousand nine hundred fifty-three'); INSERT INTO t3 VALUES(22710, 24689, 'twenty-four thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(22711, 84885, 'eighty-four thousand eight hundred eighty-five'); INSERT INTO t3 VALUES(22712, 1806, 'one thousand eight hundred six'); INSERT INTO t3 VALUES(22713, 49348, 'forty-nine thousand three hundred forty-eight'); INSERT INTO t3 VALUES(22714, 67161, 'sixty-seven thousand one hundred sixty-one'); INSERT INTO t3 VALUES(22715, 94487, 'ninety-four thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(22716, 38308, 'thirty-eight thousand three hundred eight'); INSERT INTO t3 VALUES(22717, 17704, 'seventeen thousand seven hundred four'); INSERT INTO t3 VALUES(22718, 22828, 'twenty-two thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(22719, 48924, 'forty-eight thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(22720, 49914, 'forty-nine thousand nine hundred fourteen'); INSERT INTO t3 VALUES(22721, 97594, 'ninety-seven thousand five hundred ninety-four'); INSERT INTO t3 VALUES(22722, 74533, 'seventy-four thousand five hundred thirty-three'); INSERT INTO t3 VALUES(22723, 35492, 'thirty-five thousand four hundred ninety-two'); INSERT INTO t3 VALUES(22724, 22402, 'twenty-two thousand four hundred two'); INSERT INTO t3 VALUES(22725, 19780, 'nineteen thousand seven hundred eighty'); INSERT INTO t3 VALUES(22726, 33038, 'thirty-three thousand thirty-eight'); INSERT INTO t3 VALUES(22727, 66726, 'sixty-six thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(22728, 30253, 'thirty thousand two hundred fifty-three'); INSERT INTO t3 VALUES(22729, 76364, 'seventy-six thousand three hundred sixty-four'); INSERT INTO t3 VALUES(22730, 9212, 'nine thousand two hundred twelve'); INSERT INTO t3 VALUES(22731, 11843, 'eleven thousand eight hundred forty-three'); INSERT INTO t3 VALUES(22732, 58408, 'fifty-eight thousand four hundred eight'); INSERT INTO t3 VALUES(22733, 33650, 'thirty-three thousand six hundred fifty'); INSERT INTO t3 VALUES(22734, 9744, 'nine thousand seven hundred forty-four'); INSERT INTO t3 VALUES(22735, 82056, 'eighty-two thousand fifty-six'); INSERT INTO t3 VALUES(22736, 94458, 'ninety-four thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(22737, 26991, 'twenty-six thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(22738, 42960, 'forty-two thousand nine hundred sixty'); INSERT INTO t3 VALUES(22739, 13422, 'thirteen thousand four hundred twenty-two'); INSERT INTO t3 VALUES(22740, 9496, 'nine thousand four hundred ninety-six'); INSERT INTO t3 VALUES(22741, 30449, 'thirty thousand four hundred forty-nine'); INSERT INTO t3 VALUES(22742, 57562, 'fifty-seven thousand five hundred sixty-two'); INSERT INTO t3 VALUES(22743, 54016, 'fifty-four thousand sixteen'); INSERT INTO t3 VALUES(22744, 97907, 'ninety-seven thousand nine hundred seven'); INSERT INTO t3 VALUES(22745, 81128, 'eighty-one thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(22746, 27930, 'twenty-seven thousand nine hundred thirty'); INSERT INTO t3 VALUES(22747, 85207, 'eighty-five thousand two hundred seven'); INSERT INTO t3 VALUES(22748, 39185, 'thirty-nine thousand one hundred eighty-five'); INSERT INTO t3 VALUES(22749, 77846, 'seventy-seven thousand eight hundred forty-six'); INSERT INTO t3 VALUES(22750, 51781, 'fifty-one thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(22751, 79854, 'seventy-nine thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(22752, 9606, 'nine thousand six hundred six'); INSERT INTO t3 VALUES(22753, 50958, 'fifty thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(22754, 16512, 'sixteen thousand five hundred twelve'); INSERT INTO t3 VALUES(22755, 61013, 'sixty-one thousand thirteen'); INSERT INTO t3 VALUES(22756, 18658, 'eighteen thousand six hundred fifty-eight'); INSERT INTO t3 VALUES(22757, 58300, 'fifty-eight thousand three hundred'); INSERT INTO t3 VALUES(22758, 98007, 'ninety-eight thousand seven'); INSERT INTO t3 VALUES(22759, 71426, 'seventy-one thousand four hundred twenty-six'); INSERT INTO t3 VALUES(22760, 75233, 'seventy-five thousand two hundred thirty-three'); INSERT INTO t3 VALUES(22761, 47294, 'forty-seven thousand two hundred ninety-four'); INSERT INTO t3 VALUES(22762, 15051, 'fifteen thousand fifty-one'); INSERT INTO t3 VALUES(22763, 70283, 'seventy thousand two hundred eighty-three'); INSERT INTO t3 VALUES(22764, 31152, 'thirty-one thousand one hundred fifty-two'); INSERT INTO t3 VALUES(22765, 3590, 'three thousand five hundred ninety'); INSERT INTO t3 VALUES(22766, 65487, 'sixty-five thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(22767, 24637, 'twenty-four thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(22768, 70476, 'seventy thousand four hundred seventy-six'); INSERT INTO t3 VALUES(22769, 22345, 'twenty-two thousand three hundred forty-five'); INSERT INTO t3 VALUES(22770, 53565, 'fifty-three thousand five hundred sixty-five'); INSERT INTO t3 VALUES(22771, 69842, 'sixty-nine thousand eight hundred forty-two'); INSERT INTO t3 VALUES(22772, 57504, 'fifty-seven thousand five hundred four'); INSERT INTO t3 VALUES(22773, 13734, 'thirteen thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(22774, 64786, 'sixty-four thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(22775, 71061, 'seventy-one thousand sixty-one'); INSERT INTO t3 VALUES(22776, 76605, 'seventy-six thousand six hundred five'); INSERT INTO t3 VALUES(22777, 40969, 'forty thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(22778, 7010, 'seven thousand ten'); INSERT INTO t3 VALUES(22779, 14256, 'fourteen thousand two hundred fifty-six'); INSERT INTO t3 VALUES(22780, 80568, 'eighty thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(22781, 86164, 'eighty-six thousand one hundred sixty-four'); INSERT INTO t3 VALUES(22782, 30268, 'thirty thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(22783, 45155, 'forty-five thousand one hundred fifty-five'); INSERT INTO t3 VALUES(22784, 89211, 'eighty-nine thousand two hundred eleven'); INSERT INTO t3 VALUES(22785, 32628, 'thirty-two thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(22786, 63124, 'sixty-three thousand one hundred twenty-four'); INSERT INTO t3 VALUES(22787, 34098, 'thirty-four thousand ninety-eight'); INSERT INTO t3 VALUES(22788, 81545, 'eighty-one thousand five hundred forty-five'); INSERT INTO t3 VALUES(22789, 18780, 'eighteen thousand seven hundred eighty'); INSERT INTO t3 VALUES(22790, 94641, 'ninety-four thousand six hundred forty-one'); INSERT INTO t3 VALUES(22791, 11975, 'eleven thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(22792, 18230, 'eighteen thousand two hundred thirty'); INSERT INTO t3 VALUES(22793, 97006, 'ninety-seven thousand six'); INSERT INTO t3 VALUES(22794, 44021, 'forty-four thousand twenty-one'); INSERT INTO t3 VALUES(22795, 90412, 'ninety thousand four hundred twelve'); INSERT INTO t3 VALUES(22796, 58337, 'fifty-eight thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(22797, 64127, 'sixty-four thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(22798, 18269, 'eighteen thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(22799, 4267, 'four thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(22800, 68632, 'sixty-eight thousand six hundred thirty-two'); INSERT INTO t3 VALUES(22801, 53660, 'fifty-three thousand six hundred sixty'); INSERT INTO t3 VALUES(22802, 59516, 'fifty-nine thousand five hundred sixteen'); INSERT INTO t3 VALUES(22803, 84911, 'eighty-four thousand nine hundred eleven'); INSERT INTO t3 VALUES(22804, 68153, 'sixty-eight thousand one hundred fifty-three'); INSERT INTO t3 VALUES(22805, 20918, 'twenty thousand nine hundred eighteen'); INSERT INTO t3 VALUES(22806, 51369, 'fifty-one thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(22807, 98827, 'ninety-eight thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(22808, 31139, 'thirty-one thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(22809, 30834, 'thirty thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(22810, 47328, 'forty-seven thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(22811, 12819, 'twelve thousand eight hundred nineteen'); INSERT INTO t3 VALUES(22812, 95853, 'ninety-five thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(22813, 56234, 'fifty-six thousand two hundred thirty-four'); INSERT INTO t3 VALUES(22814, 63364, 'sixty-three thousand three hundred sixty-four'); INSERT INTO t3 VALUES(22815, 50632, 'fifty thousand six hundred thirty-two'); INSERT INTO t3 VALUES(22816, 96322, 'ninety-six thousand three hundred twenty-two'); INSERT INTO t3 VALUES(22817, 31209, 'thirty-one thousand two hundred nine'); INSERT INTO t3 VALUES(22818, 79984, 'seventy-nine thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(22819, 14699, 'fourteen thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(22820, 46747, 'forty-six thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(22821, 67471, 'sixty-seven thousand four hundred seventy-one'); INSERT INTO t3 VALUES(22822, 58140, 'fifty-eight thousand one hundred forty'); INSERT INTO t3 VALUES(22823, 66496, 'sixty-six thousand four hundred ninety-six'); INSERT INTO t3 VALUES(22824, 1201, 'one thousand two hundred one'); INSERT INTO t3 VALUES(22825, 73674, 'seventy-three thousand six hundred seventy-four'); INSERT INTO t3 VALUES(22826, 54786, 'fifty-four thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(22827, 17528, 'seventeen thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(22828, 97169, 'ninety-seven thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(22829, 29489, 'twenty-nine thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(22830, 53143, 'fifty-three thousand one hundred forty-three'); INSERT INTO t3 VALUES(22831, 60344, 'sixty thousand three hundred forty-four'); INSERT INTO t3 VALUES(22832, 40566, 'forty thousand five hundred sixty-six'); INSERT INTO t3 VALUES(22833, 53504, 'fifty-three thousand five hundred four'); INSERT INTO t3 VALUES(22834, 68612, 'sixty-eight thousand six hundred twelve'); INSERT INTO t3 VALUES(22835, 47093, 'forty-seven thousand ninety-three'); INSERT INTO t3 VALUES(22836, 10012, 'ten thousand twelve'); INSERT INTO t3 VALUES(22837, 38837, 'thirty-eight thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(22838, 32262, 'thirty-two thousand two hundred sixty-two'); INSERT INTO t3 VALUES(22839, 92035, 'ninety-two thousand thirty-five'); INSERT INTO t3 VALUES(22840, 45549, 'forty-five thousand five hundred forty-nine'); INSERT INTO t3 VALUES(22841, 59702, 'fifty-nine thousand seven hundred two'); INSERT INTO t3 VALUES(22842, 86555, 'eighty-six thousand five hundred fifty-five'); INSERT INTO t3 VALUES(22843, 29582, 'twenty-nine thousand five hundred eighty-two'); INSERT INTO t3 VALUES(22844, 55207, 'fifty-five thousand two hundred seven'); INSERT INTO t3 VALUES(22845, 61230, 'sixty-one thousand two hundred thirty'); INSERT INTO t3 VALUES(22846, 42412, 'forty-two thousand four hundred twelve'); INSERT INTO t3 VALUES(22847, 58210, 'fifty-eight thousand two hundred ten'); INSERT INTO t3 VALUES(22848, 44653, 'forty-four thousand six hundred fifty-three'); INSERT INTO t3 VALUES(22849, 12389, 'twelve thousand three hundred eighty-nine'); INSERT INTO t3 VALUES(22850, 35040, 'thirty-five thousand forty'); INSERT INTO t3 VALUES(22851, 28941, 'twenty-eight thousand nine hundred forty-one'); INSERT INTO t3 VALUES(22852, 93101, 'ninety-three thousand one hundred one'); INSERT INTO t3 VALUES(22853, 10222, 'ten thousand two hundred twenty-two'); INSERT INTO t3 VALUES(22854, 82013, 'eighty-two thousand thirteen'); INSERT INTO t3 VALUES(22855, 275, 'two hundred seventy-five'); INSERT INTO t3 VALUES(22856, 4327, 'four thousand three hundred twenty-seven'); INSERT INTO t3 VALUES(22857, 49325, 'forty-nine thousand three hundred twenty-five'); INSERT INTO t3 VALUES(22858, 2367, 'two thousand three hundred sixty-seven'); INSERT INTO t3 VALUES(22859, 63900, 'sixty-three thousand nine hundred'); INSERT INTO t3 VALUES(22860, 97488, 'ninety-seven thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(22861, 49314, 'forty-nine thousand three hundred fourteen'); INSERT INTO t3 VALUES(22862, 80974, 'eighty thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(22863, 16594, 'sixteen thousand five hundred ninety-four'); INSERT INTO t3 VALUES(22864, 41280, 'forty-one thousand two hundred eighty'); INSERT INTO t3 VALUES(22865, 61373, 'sixty-one thousand three hundred seventy-three'); INSERT INTO t3 VALUES(22866, 19224, 'nineteen thousand two hundred twenty-four'); INSERT INTO t3 VALUES(22867, 43507, 'forty-three thousand five hundred seven'); INSERT INTO t3 VALUES(22868, 31376, 'thirty-one thousand three hundred seventy-six'); INSERT INTO t3 VALUES(22869, 39992, 'thirty-nine thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(22870, 31748, 'thirty-one thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(22871, 99487, 'ninety-nine thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(22872, 35881, 'thirty-five thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(22873, 33317, 'thirty-three thousand three hundred seventeen'); INSERT INTO t3 VALUES(22874, 13641, 'thirteen thousand six hundred forty-one'); INSERT INTO t3 VALUES(22875, 3369, 'three thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(22876, 68216, 'sixty-eight thousand two hundred sixteen'); INSERT INTO t3 VALUES(22877, 48698, 'forty-eight thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(22878, 45380, 'forty-five thousand three hundred eighty'); INSERT INTO t3 VALUES(22879, 54102, 'fifty-four thousand one hundred two'); INSERT INTO t3 VALUES(22880, 92108, 'ninety-two thousand one hundred eight'); INSERT INTO t3 VALUES(22881, 46749, 'forty-six thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(22882, 69667, 'sixty-nine thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(22883, 3973, 'three thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(22884, 62945, 'sixty-two thousand nine hundred forty-five'); INSERT INTO t3 VALUES(22885, 49955, 'forty-nine thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(22886, 86100, 'eighty-six thousand one hundred'); INSERT INTO t3 VALUES(22887, 85299, 'eighty-five thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(22888, 65291, 'sixty-five thousand two hundred ninety-one'); INSERT INTO t3 VALUES(22889, 11694, 'eleven thousand six hundred ninety-four'); INSERT INTO t3 VALUES(22890, 90309, 'ninety thousand three hundred nine'); INSERT INTO t3 VALUES(22891, 16983, 'sixteen thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(22892, 12167, 'twelve thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(22893, 24894, 'twenty-four thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(22894, 39342, 'thirty-nine thousand three hundred forty-two'); INSERT INTO t3 VALUES(22895, 660, 'six hundred sixty'); INSERT INTO t3 VALUES(22896, 15285, 'fifteen thousand two hundred eighty-five'); INSERT INTO t3 VALUES(22897, 61519, 'sixty-one thousand five hundred nineteen'); INSERT INTO t3 VALUES(22898, 40291, 'forty thousand two hundred ninety-one'); INSERT INTO t3 VALUES(22899, 36560, 'thirty-six thousand five hundred sixty'); INSERT INTO t3 VALUES(22900, 84379, 'eighty-four thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(22901, 76362, 'seventy-six thousand three hundred sixty-two'); INSERT INTO t3 VALUES(22902, 89723, 'eighty-nine thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(22903, 58355, 'fifty-eight thousand three hundred fifty-five'); INSERT INTO t3 VALUES(22904, 45419, 'forty-five thousand four hundred nineteen'); INSERT INTO t3 VALUES(22905, 32225, 'thirty-two thousand two hundred twenty-five'); INSERT INTO t3 VALUES(22906, 97406, 'ninety-seven thousand four hundred six'); INSERT INTO t3 VALUES(22907, 56868, 'fifty-six thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(22908, 93462, 'ninety-three thousand four hundred sixty-two'); INSERT INTO t3 VALUES(22909, 63205, 'sixty-three thousand two hundred five'); INSERT INTO t3 VALUES(22910, 27987, 'twenty-seven thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(22911, 59525, 'fifty-nine thousand five hundred twenty-five'); INSERT INTO t3 VALUES(22912, 70262, 'seventy thousand two hundred sixty-two'); INSERT INTO t3 VALUES(22913, 39374, 'thirty-nine thousand three hundred seventy-four'); INSERT INTO t3 VALUES(22914, 40047, 'forty thousand forty-seven'); INSERT INTO t3 VALUES(22915, 22047, 'twenty-two thousand forty-seven'); INSERT INTO t3 VALUES(22916, 81424, 'eighty-one thousand four hundred twenty-four'); INSERT INTO t3 VALUES(22917, 20440, 'twenty thousand four hundred forty'); INSERT INTO t3 VALUES(22918, 75087, 'seventy-five thousand eighty-seven'); INSERT INTO t3 VALUES(22919, 81908, 'eighty-one thousand nine hundred eight'); INSERT INTO t3 VALUES(22920, 21473, 'twenty-one thousand four hundred seventy-three'); INSERT INTO t3 VALUES(22921, 35063, 'thirty-five thousand sixty-three'); INSERT INTO t3 VALUES(22922, 62545, 'sixty-two thousand five hundred forty-five'); INSERT INTO t3 VALUES(22923, 59027, 'fifty-nine thousand twenty-seven'); INSERT INTO t3 VALUES(22924, 23539, 'twenty-three thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(22925, 67118, 'sixty-seven thousand one hundred eighteen'); INSERT INTO t3 VALUES(22926, 32933, 'thirty-two thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(22927, 18681, 'eighteen thousand six hundred eighty-one'); INSERT INTO t3 VALUES(22928, 58604, 'fifty-eight thousand six hundred four'); INSERT INTO t3 VALUES(22929, 40455, 'forty thousand four hundred fifty-five'); INSERT INTO t3 VALUES(22930, 88400, 'eighty-eight thousand four hundred'); INSERT INTO t3 VALUES(22931, 28814, 'twenty-eight thousand eight hundred fourteen'); INSERT INTO t3 VALUES(22932, 63577, 'sixty-three thousand five hundred seventy-seven'); INSERT INTO t3 VALUES(22933, 4947, 'four thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(22934, 6039, 'six thousand thirty-nine'); INSERT INTO t3 VALUES(22935, 8664, 'eight thousand six hundred sixty-four'); INSERT INTO t3 VALUES(22936, 15823, 'fifteen thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(22937, 64187, 'sixty-four thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(22938, 24621, 'twenty-four thousand six hundred twenty-one'); INSERT INTO t3 VALUES(22939, 83123, 'eighty-three thousand one hundred twenty-three'); INSERT INTO t3 VALUES(22940, 67581, 'sixty-seven thousand five hundred eighty-one'); INSERT INTO t3 VALUES(22941, 74700, 'seventy-four thousand seven hundred'); INSERT INTO t3 VALUES(22942, 16105, 'sixteen thousand one hundred five'); INSERT INTO t3 VALUES(22943, 80916, 'eighty thousand nine hundred sixteen'); INSERT INTO t3 VALUES(22944, 34414, 'thirty-four thousand four hundred fourteen'); INSERT INTO t3 VALUES(22945, 47875, 'forty-seven thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(22946, 90804, 'ninety thousand eight hundred four'); INSERT INTO t3 VALUES(22947, 2445, 'two thousand four hundred forty-five'); INSERT INTO t3 VALUES(22948, 95420, 'ninety-five thousand four hundred twenty'); INSERT INTO t3 VALUES(22949, 25641, 'twenty-five thousand six hundred forty-one'); INSERT INTO t3 VALUES(22950, 42960, 'forty-two thousand nine hundred sixty'); INSERT INTO t3 VALUES(22951, 79147, 'seventy-nine thousand one hundred forty-seven'); INSERT INTO t3 VALUES(22952, 44372, 'forty-four thousand three hundred seventy-two'); INSERT INTO t3 VALUES(22953, 97313, 'ninety-seven thousand three hundred thirteen'); INSERT INTO t3 VALUES(22954, 14157, 'fourteen thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(22955, 52264, 'fifty-two thousand two hundred sixty-four'); INSERT INTO t3 VALUES(22956, 35769, 'thirty-five thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(22957, 1400, 'one thousand four hundred'); INSERT INTO t3 VALUES(22958, 8281, 'eight thousand two hundred eighty-one'); INSERT INTO t3 VALUES(22959, 18991, 'eighteen thousand nine hundred ninety-one'); INSERT INTO t3 VALUES(22960, 38254, 'thirty-eight thousand two hundred fifty-four'); INSERT INTO t3 VALUES(22961, 26838, 'twenty-six thousand eight hundred thirty-eight'); INSERT INTO t3 VALUES(22962, 76795, 'seventy-six thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(22963, 62194, 'sixty-two thousand one hundred ninety-four'); INSERT INTO t3 VALUES(22964, 16614, 'sixteen thousand six hundred fourteen'); INSERT INTO t3 VALUES(22965, 94025, 'ninety-four thousand twenty-five'); INSERT INTO t3 VALUES(22966, 70055, 'seventy thousand fifty-five'); INSERT INTO t3 VALUES(22967, 37001, 'thirty-seven thousand one'); INSERT INTO t3 VALUES(22968, 1595, 'one thousand five hundred ninety-five'); INSERT INTO t3 VALUES(22969, 41386, 'forty-one thousand three hundred eighty-six'); INSERT INTO t3 VALUES(22970, 80505, 'eighty thousand five hundred five'); INSERT INTO t3 VALUES(22971, 19489, 'nineteen thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(22972, 3409, 'three thousand four hundred nine'); INSERT INTO t3 VALUES(22973, 72882, 'seventy-two thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(22974, 48677, 'forty-eight thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(22975, 23885, 'twenty-three thousand eight hundred eighty-five'); INSERT INTO t3 VALUES(22976, 14376, 'fourteen thousand three hundred seventy-six'); INSERT INTO t3 VALUES(22977, 53459, 'fifty-three thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(22978, 64701, 'sixty-four thousand seven hundred one'); INSERT INTO t3 VALUES(22979, 34054, 'thirty-four thousand fifty-four'); INSERT INTO t3 VALUES(22980, 46734, 'forty-six thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(22981, 91189, 'ninety-one thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(22982, 14075, 'fourteen thousand seventy-five'); INSERT INTO t3 VALUES(22983, 39615, 'thirty-nine thousand six hundred fifteen'); INSERT INTO t3 VALUES(22984, 85059, 'eighty-five thousand fifty-nine'); INSERT INTO t3 VALUES(22985, 59457, 'fifty-nine thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(22986, 10143, 'ten thousand one hundred forty-three'); INSERT INTO t3 VALUES(22987, 75054, 'seventy-five thousand fifty-four'); INSERT INTO t3 VALUES(22988, 61469, 'sixty-one thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(22989, 12803, 'twelve thousand eight hundred three'); INSERT INTO t3 VALUES(22990, 15617, 'fifteen thousand six hundred seventeen'); INSERT INTO t3 VALUES(22991, 23181, 'twenty-three thousand one hundred eighty-one'); INSERT INTO t3 VALUES(22992, 65662, 'sixty-five thousand six hundred sixty-two'); INSERT INTO t3 VALUES(22993, 23783, 'twenty-three thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(22994, 12011, 'twelve thousand eleven'); INSERT INTO t3 VALUES(22995, 40657, 'forty thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(22996, 18837, 'eighteen thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(22997, 68983, 'sixty-eight thousand nine hundred eighty-three'); INSERT INTO t3 VALUES(22998, 78511, 'seventy-eight thousand five hundred eleven'); INSERT INTO t3 VALUES(22999, 10581, 'ten thousand five hundred eighty-one'); INSERT INTO t3 VALUES(23000, 11350, 'eleven thousand three hundred fifty'); INSERT INTO t3 VALUES(23001, 66567, 'sixty-six thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(23002, 48073, 'forty-eight thousand seventy-three'); INSERT INTO t3 VALUES(23003, 76384, 'seventy-six thousand three hundred eighty-four'); INSERT INTO t3 VALUES(23004, 25536, 'twenty-five thousand five hundred thirty-six'); INSERT INTO t3 VALUES(23005, 6861, 'six thousand eight hundred sixty-one'); INSERT INTO t3 VALUES(23006, 99209, 'ninety-nine thousand two hundred nine'); INSERT INTO t3 VALUES(23007, 66833, 'sixty-six thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(23008, 14114, 'fourteen thousand one hundred fourteen'); INSERT INTO t3 VALUES(23009, 24192, 'twenty-four thousand one hundred ninety-two'); INSERT INTO t3 VALUES(23010, 9552, 'nine thousand five hundred fifty-two'); INSERT INTO t3 VALUES(23011, 36135, 'thirty-six thousand one hundred thirty-five'); INSERT INTO t3 VALUES(23012, 91087, 'ninety-one thousand eighty-seven'); INSERT INTO t3 VALUES(23013, 61946, 'sixty-one thousand nine hundred forty-six'); INSERT INTO t3 VALUES(23014, 16485, 'sixteen thousand four hundred eighty-five'); INSERT INTO t3 VALUES(23015, 98493, 'ninety-eight thousand four hundred ninety-three'); INSERT INTO t3 VALUES(23016, 67539, 'sixty-seven thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(23017, 78278, 'seventy-eight thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(23018, 41429, 'forty-one thousand four hundred twenty-nine'); INSERT INTO t3 VALUES(23019, 19827, 'nineteen thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(23020, 79489, 'seventy-nine thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(23021, 91287, 'ninety-one thousand two hundred eighty-seven'); INSERT INTO t3 VALUES(23022, 91843, 'ninety-one thousand eight hundred forty-three'); INSERT INTO t3 VALUES(23023, 76153, 'seventy-six thousand one hundred fifty-three'); INSERT INTO t3 VALUES(23024, 50683, 'fifty thousand six hundred eighty-three'); INSERT INTO t3 VALUES(23025, 28875, 'twenty-eight thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(23026, 81191, 'eighty-one thousand one hundred ninety-one'); INSERT INTO t3 VALUES(23027, 58883, 'fifty-eight thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(23028, 25628, 'twenty-five thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(23029, 30816, 'thirty thousand eight hundred sixteen'); INSERT INTO t3 VALUES(23030, 63716, 'sixty-three thousand seven hundred sixteen'); INSERT INTO t3 VALUES(23031, 41084, 'forty-one thousand eighty-four'); INSERT INTO t3 VALUES(23032, 20720, 'twenty thousand seven hundred twenty'); INSERT INTO t3 VALUES(23033, 42353, 'forty-two thousand three hundred fifty-three'); INSERT INTO t3 VALUES(23034, 56594, 'fifty-six thousand five hundred ninety-four'); INSERT INTO t3 VALUES(23035, 87754, 'eighty-seven thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(23036, 5313, 'five thousand three hundred thirteen'); INSERT INTO t3 VALUES(23037, 72281, 'seventy-two thousand two hundred eighty-one'); INSERT INTO t3 VALUES(23038, 85904, 'eighty-five thousand nine hundred four'); INSERT INTO t3 VALUES(23039, 34449, 'thirty-four thousand four hundred forty-nine'); INSERT INTO t3 VALUES(23040, 1053, 'one thousand fifty-three'); INSERT INTO t3 VALUES(23041, 71285, 'seventy-one thousand two hundred eighty-five'); INSERT INTO t3 VALUES(23042, 43866, 'forty-three thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(23043, 51646, 'fifty-one thousand six hundred forty-six'); INSERT INTO t3 VALUES(23044, 53961, 'fifty-three thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(23045, 52878, 'fifty-two thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(23046, 4008, 'four thousand eight'); INSERT INTO t3 VALUES(23047, 34585, 'thirty-four thousand five hundred eighty-five'); INSERT INTO t3 VALUES(23048, 35507, 'thirty-five thousand five hundred seven'); INSERT INTO t3 VALUES(23049, 21406, 'twenty-one thousand four hundred six'); INSERT INTO t3 VALUES(23050, 48613, 'forty-eight thousand six hundred thirteen'); INSERT INTO t3 VALUES(23051, 95326, 'ninety-five thousand three hundred twenty-six'); INSERT INTO t3 VALUES(23052, 66962, 'sixty-six thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(23053, 5894, 'five thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(23054, 70930, 'seventy thousand nine hundred thirty'); INSERT INTO t3 VALUES(23055, 99180, 'ninety-nine thousand one hundred eighty'); INSERT INTO t3 VALUES(23056, 54294, 'fifty-four thousand two hundred ninety-four'); INSERT INTO t3 VALUES(23057, 72453, 'seventy-two thousand four hundred fifty-three'); INSERT INTO t3 VALUES(23058, 27943, 'twenty-seven thousand nine hundred forty-three'); INSERT INTO t3 VALUES(23059, 6644, 'six thousand six hundred forty-four'); INSERT INTO t3 VALUES(23060, 23131, 'twenty-three thousand one hundred thirty-one'); INSERT INTO t3 VALUES(23061, 52234, 'fifty-two thousand two hundred thirty-four'); INSERT INTO t3 VALUES(23062, 34433, 'thirty-four thousand four hundred thirty-three'); INSERT INTO t3 VALUES(23063, 11985, 'eleven thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(23064, 83619, 'eighty-three thousand six hundred nineteen'); INSERT INTO t3 VALUES(23065, 7549, 'seven thousand five hundred forty-nine'); INSERT INTO t3 VALUES(23066, 61214, 'sixty-one thousand two hundred fourteen'); INSERT INTO t3 VALUES(23067, 83855, 'eighty-three thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(23068, 46128, 'forty-six thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(23069, 86560, 'eighty-six thousand five hundred sixty'); INSERT INTO t3 VALUES(23070, 96219, 'ninety-six thousand two hundred nineteen'); INSERT INTO t3 VALUES(23071, 73016, 'seventy-three thousand sixteen'); INSERT INTO t3 VALUES(23072, 10887, 'ten thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(23073, 75265, 'seventy-five thousand two hundred sixty-five'); INSERT INTO t3 VALUES(23074, 98835, 'ninety-eight thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(23075, 91250, 'ninety-one thousand two hundred fifty'); INSERT INTO t3 VALUES(23076, 27001, 'twenty-seven thousand one'); INSERT INTO t3 VALUES(23077, 18930, 'eighteen thousand nine hundred thirty'); INSERT INTO t3 VALUES(23078, 76974, 'seventy-six thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(23079, 19006, 'nineteen thousand six'); INSERT INTO t3 VALUES(23080, 95770, 'ninety-five thousand seven hundred seventy'); INSERT INTO t3 VALUES(23081, 40934, 'forty thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(23082, 39149, 'thirty-nine thousand one hundred forty-nine'); INSERT INTO t3 VALUES(23083, 76963, 'seventy-six thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(23084, 46497, 'forty-six thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(23085, 92177, 'ninety-two thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(23086, 62186, 'sixty-two thousand one hundred eighty-six'); INSERT INTO t3 VALUES(23087, 481, 'four hundred eighty-one'); INSERT INTO t3 VALUES(23088, 82975, 'eighty-two thousand nine hundred seventy-five'); INSERT INTO t3 VALUES(23089, 96149, 'ninety-six thousand one hundred forty-nine'); INSERT INTO t3 VALUES(23090, 94670, 'ninety-four thousand six hundred seventy'); INSERT INTO t3 VALUES(23091, 94696, 'ninety-four thousand six hundred ninety-six'); INSERT INTO t3 VALUES(23092, 39892, 'thirty-nine thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(23093, 68058, 'sixty-eight thousand fifty-eight'); INSERT INTO t3 VALUES(23094, 37851, 'thirty-seven thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(23095, 67218, 'sixty-seven thousand two hundred eighteen'); INSERT INTO t3 VALUES(23096, 52925, 'fifty-two thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(23097, 64368, 'sixty-four thousand three hundred sixty-eight'); INSERT INTO t3 VALUES(23098, 29304, 'twenty-nine thousand three hundred four'); INSERT INTO t3 VALUES(23099, 20209, 'twenty thousand two hundred nine'); INSERT INTO t3 VALUES(23100, 5995, 'five thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(23101, 12562, 'twelve thousand five hundred sixty-two'); INSERT INTO t3 VALUES(23102, 18938, 'eighteen thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(23103, 10478, 'ten thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(23104, 61098, 'sixty-one thousand ninety-eight'); INSERT INTO t3 VALUES(23105, 99284, 'ninety-nine thousand two hundred eighty-four'); INSERT INTO t3 VALUES(23106, 17911, 'seventeen thousand nine hundred eleven'); INSERT INTO t3 VALUES(23107, 18150, 'eighteen thousand one hundred fifty'); INSERT INTO t3 VALUES(23108, 6214, 'six thousand two hundred fourteen'); INSERT INTO t3 VALUES(23109, 47205, 'forty-seven thousand two hundred five'); INSERT INTO t3 VALUES(23110, 9065, 'nine thousand sixty-five'); INSERT INTO t3 VALUES(23111, 46042, 'forty-six thousand forty-two'); INSERT INTO t3 VALUES(23112, 55490, 'fifty-five thousand four hundred ninety'); INSERT INTO t3 VALUES(23113, 68322, 'sixty-eight thousand three hundred twenty-two'); INSERT INTO t3 VALUES(23114, 60574, 'sixty thousand five hundred seventy-four'); INSERT INTO t3 VALUES(23115, 73601, 'seventy-three thousand six hundred one'); INSERT INTO t3 VALUES(23116, 32783, 'thirty-two thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(23117, 98620, 'ninety-eight thousand six hundred twenty'); INSERT INTO t3 VALUES(23118, 31790, 'thirty-one thousand seven hundred ninety'); INSERT INTO t3 VALUES(23119, 1375, 'one thousand three hundred seventy-five'); INSERT INTO t3 VALUES(23120, 10330, 'ten thousand three hundred thirty'); INSERT INTO t3 VALUES(23121, 30552, 'thirty thousand five hundred fifty-two'); INSERT INTO t3 VALUES(23122, 60630, 'sixty thousand six hundred thirty'); INSERT INTO t3 VALUES(23123, 71198, 'seventy-one thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(23124, 86487, 'eighty-six thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(23125, 19938, 'nineteen thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(23126, 79990, 'seventy-nine thousand nine hundred ninety'); INSERT INTO t3 VALUES(23127, 27717, 'twenty-seven thousand seven hundred seventeen'); INSERT INTO t3 VALUES(23128, 96471, 'ninety-six thousand four hundred seventy-one'); INSERT INTO t3 VALUES(23129, 51872, 'fifty-one thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(23130, 80786, 'eighty thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(23131, 54547, 'fifty-four thousand five hundred forty-seven'); INSERT INTO t3 VALUES(23132, 82645, 'eighty-two thousand six hundred forty-five'); INSERT INTO t3 VALUES(23133, 85876, 'eighty-five thousand eight hundred seventy-six'); INSERT INTO t3 VALUES(23134, 41386, 'forty-one thousand three hundred eighty-six'); INSERT INTO t3 VALUES(23135, 20498, 'twenty thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(23136, 26093, 'twenty-six thousand ninety-three'); INSERT INTO t3 VALUES(23137, 19592, 'nineteen thousand five hundred ninety-two'); INSERT INTO t3 VALUES(23138, 79794, 'seventy-nine thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(23139, 52073, 'fifty-two thousand seventy-three'); INSERT INTO t3 VALUES(23140, 19289, 'nineteen thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(23141, 66033, 'sixty-six thousand thirty-three'); INSERT INTO t3 VALUES(23142, 81274, 'eighty-one thousand two hundred seventy-four'); INSERT INTO t3 VALUES(23143, 73729, 'seventy-three thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(23144, 96530, 'ninety-six thousand five hundred thirty'); INSERT INTO t3 VALUES(23145, 99634, 'ninety-nine thousand six hundred thirty-four'); INSERT INTO t3 VALUES(23146, 68224, 'sixty-eight thousand two hundred twenty-four'); INSERT INTO t3 VALUES(23147, 15392, 'fifteen thousand three hundred ninety-two'); INSERT INTO t3 VALUES(23148, 16454, 'sixteen thousand four hundred fifty-four'); INSERT INTO t3 VALUES(23149, 9850, 'nine thousand eight hundred fifty'); INSERT INTO t3 VALUES(23150, 87416, 'eighty-seven thousand four hundred sixteen'); INSERT INTO t3 VALUES(23151, 44719, 'forty-four thousand seven hundred nineteen'); INSERT INTO t3 VALUES(23152, 24418, 'twenty-four thousand four hundred eighteen'); INSERT INTO t3 VALUES(23153, 45169, 'forty-five thousand one hundred sixty-nine'); INSERT INTO t3 VALUES(23154, 84136, 'eighty-four thousand one hundred thirty-six'); INSERT INTO t3 VALUES(23155, 11471, 'eleven thousand four hundred seventy-one'); INSERT INTO t3 VALUES(23156, 97232, 'ninety-seven thousand two hundred thirty-two'); INSERT INTO t3 VALUES(23157, 95879, 'ninety-five thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(23158, 39264, 'thirty-nine thousand two hundred sixty-four'); INSERT INTO t3 VALUES(23159, 54919, 'fifty-four thousand nine hundred nineteen'); INSERT INTO t3 VALUES(23160, 59821, 'fifty-nine thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(23161, 85477, 'eighty-five thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(23162, 56209, 'fifty-six thousand two hundred nine'); INSERT INTO t3 VALUES(23163, 91301, 'ninety-one thousand three hundred one'); INSERT INTO t3 VALUES(23164, 48433, 'forty-eight thousand four hundred thirty-three'); INSERT INTO t3 VALUES(23165, 46090, 'forty-six thousand ninety'); INSERT INTO t3 VALUES(23166, 84253, 'eighty-four thousand two hundred fifty-three'); INSERT INTO t3 VALUES(23167, 45992, 'forty-five thousand nine hundred ninety-two'); INSERT INTO t3 VALUES(23168, 72540, 'seventy-two thousand five hundred forty'); INSERT INTO t3 VALUES(23169, 68022, 'sixty-eight thousand twenty-two'); INSERT INTO t3 VALUES(23170, 93401, 'ninety-three thousand four hundred one'); INSERT INTO t3 VALUES(23171, 58412, 'fifty-eight thousand four hundred twelve'); INSERT INTO t3 VALUES(23172, 56328, 'fifty-six thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(23173, 98224, 'ninety-eight thousand two hundred twenty-four'); INSERT INTO t3 VALUES(23174, 99950, 'ninety-nine thousand nine hundred fifty'); INSERT INTO t3 VALUES(23175, 25006, 'twenty-five thousand six'); INSERT INTO t3 VALUES(23176, 85041, 'eighty-five thousand forty-one'); INSERT INTO t3 VALUES(23177, 29170, 'twenty-nine thousand one hundred seventy'); INSERT INTO t3 VALUES(23178, 59211, 'fifty-nine thousand two hundred eleven'); INSERT INTO t3 VALUES(23179, 42934, 'forty-two thousand nine hundred thirty-four'); INSERT INTO t3 VALUES(23180, 8273, 'eight thousand two hundred seventy-three'); INSERT INTO t3 VALUES(23181, 2480, 'two thousand four hundred eighty'); INSERT INTO t3 VALUES(23182, 21749, 'twenty-one thousand seven hundred forty-nine'); INSERT INTO t3 VALUES(23183, 50524, 'fifty thousand five hundred twenty-four'); INSERT INTO t3 VALUES(23184, 34177, 'thirty-four thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(23185, 32279, 'thirty-two thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(23186, 24393, 'twenty-four thousand three hundred ninety-three'); INSERT INTO t3 VALUES(23187, 40406, 'forty thousand four hundred six'); INSERT INTO t3 VALUES(23188, 12174, 'twelve thousand one hundred seventy-four'); INSERT INTO t3 VALUES(23189, 89902, 'eighty-nine thousand nine hundred two'); INSERT INTO t3 VALUES(23190, 7553, 'seven thousand five hundred fifty-three'); INSERT INTO t3 VALUES(23191, 32574, 'thirty-two thousand five hundred seventy-four'); INSERT INTO t3 VALUES(23192, 12878, 'twelve thousand eight hundred seventy-eight'); INSERT INTO t3 VALUES(23193, 58930, 'fifty-eight thousand nine hundred thirty'); INSERT INTO t3 VALUES(23194, 15381, 'fifteen thousand three hundred eighty-one'); INSERT INTO t3 VALUES(23195, 52001, 'fifty-two thousand one'); INSERT INTO t3 VALUES(23196, 52185, 'fifty-two thousand one hundred eighty-five'); INSERT INTO t3 VALUES(23197, 77302, 'seventy-seven thousand three hundred two'); INSERT INTO t3 VALUES(23198, 71116, 'seventy-one thousand one hundred sixteen'); INSERT INTO t3 VALUES(23199, 6608, 'six thousand six hundred eight'); INSERT INTO t3 VALUES(23200, 18785, 'eighteen thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(23201, 22015, 'twenty-two thousand fifteen'); INSERT INTO t3 VALUES(23202, 52050, 'fifty-two thousand fifty'); INSERT INTO t3 VALUES(23203, 46707, 'forty-six thousand seven hundred seven'); INSERT INTO t3 VALUES(23204, 57026, 'fifty-seven thousand twenty-six'); INSERT INTO t3 VALUES(23205, 5542, 'five thousand five hundred forty-two'); INSERT INTO t3 VALUES(23206, 59209, 'fifty-nine thousand two hundred nine'); INSERT INTO t3 VALUES(23207, 73010, 'seventy-three thousand ten'); INSERT INTO t3 VALUES(23208, 4497, 'four thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(23209, 21277, 'twenty-one thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(23210, 21827, 'twenty-one thousand eight hundred twenty-seven'); INSERT INTO t3 VALUES(23211, 20842, 'twenty thousand eight hundred forty-two'); INSERT INTO t3 VALUES(23212, 61158, 'sixty-one thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(23213, 64285, 'sixty-four thousand two hundred eighty-five'); INSERT INTO t3 VALUES(23214, 38411, 'thirty-eight thousand four hundred eleven'); INSERT INTO t3 VALUES(23215, 35084, 'thirty-five thousand eighty-four'); INSERT INTO t3 VALUES(23216, 56475, 'fifty-six thousand four hundred seventy-five'); INSERT INTO t3 VALUES(23217, 36618, 'thirty-six thousand six hundred eighteen'); INSERT INTO t3 VALUES(23218, 69348, 'sixty-nine thousand three hundred forty-eight'); INSERT INTO t3 VALUES(23219, 95593, 'ninety-five thousand five hundred ninety-three'); INSERT INTO t3 VALUES(23220, 45175, 'forty-five thousand one hundred seventy-five'); INSERT INTO t3 VALUES(23221, 23965, 'twenty-three thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(23222, 10674, 'ten thousand six hundred seventy-four'); INSERT INTO t3 VALUES(23223, 40173, 'forty thousand one hundred seventy-three'); INSERT INTO t3 VALUES(23224, 43460, 'forty-three thousand four hundred sixty'); INSERT INTO t3 VALUES(23225, 69230, 'sixty-nine thousand two hundred thirty'); INSERT INTO t3 VALUES(23226, 12050, 'twelve thousand fifty'); INSERT INTO t3 VALUES(23227, 82804, 'eighty-two thousand eight hundred four'); INSERT INTO t3 VALUES(23228, 81191, 'eighty-one thousand one hundred ninety-one'); INSERT INTO t3 VALUES(23229, 16192, 'sixteen thousand one hundred ninety-two'); INSERT INTO t3 VALUES(23230, 21229, 'twenty-one thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(23231, 54057, 'fifty-four thousand fifty-seven'); INSERT INTO t3 VALUES(23232, 89477, 'eighty-nine thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(23233, 45420, 'forty-five thousand four hundred twenty'); INSERT INTO t3 VALUES(23234, 42627, 'forty-two thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(23235, 41618, 'forty-one thousand six hundred eighteen'); INSERT INTO t3 VALUES(23236, 51029, 'fifty-one thousand twenty-nine'); INSERT INTO t3 VALUES(23237, 30136, 'thirty thousand one hundred thirty-six'); INSERT INTO t3 VALUES(23238, 94738, 'ninety-four thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(23239, 36657, 'thirty-six thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(23240, 1490, 'one thousand four hundred ninety'); INSERT INTO t3 VALUES(23241, 45710, 'forty-five thousand seven hundred ten'); INSERT INTO t3 VALUES(23242, 53264, 'fifty-three thousand two hundred sixty-four'); INSERT INTO t3 VALUES(23243, 42754, 'forty-two thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(23244, 6321, 'six thousand three hundred twenty-one'); INSERT INTO t3 VALUES(23245, 78860, 'seventy-eight thousand eight hundred sixty'); INSERT INTO t3 VALUES(23246, 3726, 'three thousand seven hundred twenty-six'); INSERT INTO t3 VALUES(23247, 65819, 'sixty-five thousand eight hundred nineteen'); INSERT INTO t3 VALUES(23248, 98692, 'ninety-eight thousand six hundred ninety-two'); INSERT INTO t3 VALUES(23249, 9544, 'nine thousand five hundred forty-four'); INSERT INTO t3 VALUES(23250, 83446, 'eighty-three thousand four hundred forty-six'); INSERT INTO t3 VALUES(23251, 13012, 'thirteen thousand twelve'); INSERT INTO t3 VALUES(23252, 744, 'seven hundred forty-four'); INSERT INTO t3 VALUES(23253, 43721, 'forty-three thousand seven hundred twenty-one'); INSERT INTO t3 VALUES(23254, 2573, 'two thousand five hundred seventy-three'); INSERT INTO t3 VALUES(23255, 28905, 'twenty-eight thousand nine hundred five'); INSERT INTO t3 VALUES(23256, 88956, 'eighty-eight thousand nine hundred fifty-six'); INSERT INTO t3 VALUES(23257, 4478, 'four thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(23258, 3243, 'three thousand two hundred forty-three'); INSERT INTO t3 VALUES(23259, 80055, 'eighty thousand fifty-five'); INSERT INTO t3 VALUES(23260, 14059, 'fourteen thousand fifty-nine'); INSERT INTO t3 VALUES(23261, 69373, 'sixty-nine thousand three hundred seventy-three'); INSERT INTO t3 VALUES(23262, 67952, 'sixty-seven thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(23263, 47982, 'forty-seven thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(23264, 19665, 'nineteen thousand six hundred sixty-five'); INSERT INTO t3 VALUES(23265, 51533, 'fifty-one thousand five hundred thirty-three'); INSERT INTO t3 VALUES(23266, 37268, 'thirty-seven thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(23267, 34734, 'thirty-four thousand seven hundred thirty-four'); INSERT INTO t3 VALUES(23268, 18763, 'eighteen thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(23269, 57121, 'fifty-seven thousand one hundred twenty-one'); INSERT INTO t3 VALUES(23270, 21212, 'twenty-one thousand two hundred twelve'); INSERT INTO t3 VALUES(23271, 569, 'five hundred sixty-nine'); INSERT INTO t3 VALUES(23272, 10095, 'ten thousand ninety-five'); INSERT INTO t3 VALUES(23273, 20709, 'twenty thousand seven hundred nine'); INSERT INTO t3 VALUES(23274, 64638, 'sixty-four thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(23275, 73673, 'seventy-three thousand six hundred seventy-three'); INSERT INTO t3 VALUES(23276, 65355, 'sixty-five thousand three hundred fifty-five'); INSERT INTO t3 VALUES(23277, 35863, 'thirty-five thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(23278, 58863, 'fifty-eight thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(23279, 28257, 'twenty-eight thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(23280, 68402, 'sixty-eight thousand four hundred two'); INSERT INTO t3 VALUES(23281, 56490, 'fifty-six thousand four hundred ninety'); INSERT INTO t3 VALUES(23282, 27938, 'twenty-seven thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(23283, 35348, 'thirty-five thousand three hundred forty-eight'); INSERT INTO t3 VALUES(23284, 78663, 'seventy-eight thousand six hundred sixty-three'); INSERT INTO t3 VALUES(23285, 33958, 'thirty-three thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(23286, 5746, 'five thousand seven hundred forty-six'); INSERT INTO t3 VALUES(23287, 19777, 'nineteen thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(23288, 399, 'three hundred ninety-nine'); INSERT INTO t3 VALUES(23289, 23170, 'twenty-three thousand one hundred seventy'); INSERT INTO t3 VALUES(23290, 51670, 'fifty-one thousand six hundred seventy'); INSERT INTO t3 VALUES(23291, 74796, 'seventy-four thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(23292, 8410, 'eight thousand four hundred ten'); INSERT INTO t3 VALUES(23293, 21286, 'twenty-one thousand two hundred eighty-six'); INSERT INTO t3 VALUES(23294, 23409, 'twenty-three thousand four hundred nine'); INSERT INTO t3 VALUES(23295, 46798, 'forty-six thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(23296, 76767, 'seventy-six thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(23297, 42024, 'forty-two thousand twenty-four'); INSERT INTO t3 VALUES(23298, 20189, 'twenty thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(23299, 2198, 'two thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(23300, 95112, 'ninety-five thousand one hundred twelve'); INSERT INTO t3 VALUES(23301, 82485, 'eighty-two thousand four hundred eighty-five'); INSERT INTO t3 VALUES(23302, 52747, 'fifty-two thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(23303, 52766, 'fifty-two thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(23304, 55894, 'fifty-five thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(23305, 22554, 'twenty-two thousand five hundred fifty-four'); INSERT INTO t3 VALUES(23306, 93021, 'ninety-three thousand twenty-one'); INSERT INTO t3 VALUES(23307, 44701, 'forty-four thousand seven hundred one'); INSERT INTO t3 VALUES(23308, 38275, 'thirty-eight thousand two hundred seventy-five'); INSERT INTO t3 VALUES(23309, 7581, 'seven thousand five hundred eighty-one'); INSERT INTO t3 VALUES(23310, 29117, 'twenty-nine thousand one hundred seventeen'); INSERT INTO t3 VALUES(23311, 4578, 'four thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(23312, 69371, 'sixty-nine thousand three hundred seventy-one'); INSERT INTO t3 VALUES(23313, 48153, 'forty-eight thousand one hundred fifty-three'); INSERT INTO t3 VALUES(23314, 94113, 'ninety-four thousand one hundred thirteen'); INSERT INTO t3 VALUES(23315, 60997, 'sixty thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(23316, 80722, 'eighty thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(23317, 2000, 'two thousand'); INSERT INTO t3 VALUES(23318, 32432, 'thirty-two thousand four hundred thirty-two'); INSERT INTO t3 VALUES(23319, 57304, 'fifty-seven thousand three hundred four'); INSERT INTO t3 VALUES(23320, 58126, 'fifty-eight thousand one hundred twenty-six'); INSERT INTO t3 VALUES(23321, 53084, 'fifty-three thousand eighty-four'); INSERT INTO t3 VALUES(23322, 25830, 'twenty-five thousand eight hundred thirty'); INSERT INTO t3 VALUES(23323, 90572, 'ninety thousand five hundred seventy-two'); INSERT INTO t3 VALUES(23324, 16442, 'sixteen thousand four hundred forty-two'); INSERT INTO t3 VALUES(23325, 86995, 'eighty-six thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(23326, 94924, 'ninety-four thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(23327, 65952, 'sixty-five thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(23328, 15351, 'fifteen thousand three hundred fifty-one'); INSERT INTO t3 VALUES(23329, 61859, 'sixty-one thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(23330, 88223, 'eighty-eight thousand two hundred twenty-three'); INSERT INTO t3 VALUES(23331, 77162, 'seventy-seven thousand one hundred sixty-two'); INSERT INTO t3 VALUES(23332, 9451, 'nine thousand four hundred fifty-one'); INSERT INTO t3 VALUES(23333, 40002, 'forty thousand two'); INSERT INTO t3 VALUES(23334, 44649, 'forty-four thousand six hundred forty-nine'); INSERT INTO t3 VALUES(23335, 43516, 'forty-three thousand five hundred sixteen'); INSERT INTO t3 VALUES(23336, 44651, 'forty-four thousand six hundred fifty-one'); INSERT INTO t3 VALUES(23337, 94737, 'ninety-four thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(23338, 79897, 'seventy-nine thousand eight hundred ninety-seven'); INSERT INTO t3 VALUES(23339, 25784, 'twenty-five thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(23340, 63329, 'sixty-three thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(23341, 8716, 'eight thousand seven hundred sixteen'); INSERT INTO t3 VALUES(23342, 48804, 'forty-eight thousand eight hundred four'); INSERT INTO t3 VALUES(23343, 25234, 'twenty-five thousand two hundred thirty-four'); INSERT INTO t3 VALUES(23344, 64381, 'sixty-four thousand three hundred eighty-one'); INSERT INTO t3 VALUES(23345, 21241, 'twenty-one thousand two hundred forty-one'); INSERT INTO t3 VALUES(23346, 20190, 'twenty thousand one hundred ninety'); INSERT INTO t3 VALUES(23347, 50515, 'fifty thousand five hundred fifteen'); INSERT INTO t3 VALUES(23348, 85348, 'eighty-five thousand three hundred forty-eight'); INSERT INTO t3 VALUES(23349, 74973, 'seventy-four thousand nine hundred seventy-three'); INSERT INTO t3 VALUES(23350, 24942, 'twenty-four thousand nine hundred forty-two'); INSERT INTO t3 VALUES(23351, 59084, 'fifty-nine thousand eighty-four'); INSERT INTO t3 VALUES(23352, 99109, 'ninety-nine thousand one hundred nine'); INSERT INTO t3 VALUES(23353, 90129, 'ninety thousand one hundred twenty-nine'); INSERT INTO t3 VALUES(23354, 48853, 'forty-eight thousand eight hundred fifty-three'); INSERT INTO t3 VALUES(23355, 81315, 'eighty-one thousand three hundred fifteen'); INSERT INTO t3 VALUES(23356, 72127, 'seventy-two thousand one hundred twenty-seven'); INSERT INTO t3 VALUES(23357, 83360, 'eighty-three thousand three hundred sixty'); INSERT INTO t3 VALUES(23358, 70460, 'seventy thousand four hundred sixty'); INSERT INTO t3 VALUES(23359, 44305, 'forty-four thousand three hundred five'); INSERT INTO t3 VALUES(23360, 70984, 'seventy thousand nine hundred eighty-four'); INSERT INTO t3 VALUES(23361, 75792, 'seventy-five thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(23362, 72626, 'seventy-two thousand six hundred twenty-six'); INSERT INTO t3 VALUES(23363, 12300, 'twelve thousand three hundred'); INSERT INTO t3 VALUES(23364, 97133, 'ninety-seven thousand one hundred thirty-three'); INSERT INTO t3 VALUES(23365, 64205, 'sixty-four thousand two hundred five'); INSERT INTO t3 VALUES(23366, 76703, 'seventy-six thousand seven hundred three'); INSERT INTO t3 VALUES(23367, 22185, 'twenty-two thousand one hundred eighty-five'); INSERT INTO t3 VALUES(23368, 29390, 'twenty-nine thousand three hundred ninety'); INSERT INTO t3 VALUES(23369, 81470, 'eighty-one thousand four hundred seventy'); INSERT INTO t3 VALUES(23370, 80574, 'eighty thousand five hundred seventy-four'); INSERT INTO t3 VALUES(23371, 90910, 'ninety thousand nine hundred ten'); INSERT INTO t3 VALUES(23372, 40383, 'forty thousand three hundred eighty-three'); INSERT INTO t3 VALUES(23373, 53280, 'fifty-three thousand two hundred eighty'); INSERT INTO t3 VALUES(23374, 86649, 'eighty-six thousand six hundred forty-nine'); INSERT INTO t3 VALUES(23375, 82652, 'eighty-two thousand six hundred fifty-two'); INSERT INTO t3 VALUES(23376, 83720, 'eighty-three thousand seven hundred twenty'); INSERT INTO t3 VALUES(23377, 3875, 'three thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(23378, 3651, 'three thousand six hundred fifty-one'); INSERT INTO t3 VALUES(23379, 30530, 'thirty thousand five hundred thirty'); INSERT INTO t3 VALUES(23380, 27788, 'twenty-seven thousand seven hundred eighty-eight'); INSERT INTO t3 VALUES(23381, 53028, 'fifty-three thousand twenty-eight'); INSERT INTO t3 VALUES(23382, 36076, 'thirty-six thousand seventy-six'); INSERT INTO t3 VALUES(23383, 24208, 'twenty-four thousand two hundred eight'); INSERT INTO t3 VALUES(23384, 92257, 'ninety-two thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(23385, 80550, 'eighty thousand five hundred fifty'); INSERT INTO t3 VALUES(23386, 8594, 'eight thousand five hundred ninety-four'); INSERT INTO t3 VALUES(23387, 65989, 'sixty-five thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(23388, 51032, 'fifty-one thousand thirty-two'); INSERT INTO t3 VALUES(23389, 9293, 'nine thousand two hundred ninety-three'); INSERT INTO t3 VALUES(23390, 25268, 'twenty-five thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(23391, 32198, 'thirty-two thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(23392, 98849, 'ninety-eight thousand eight hundred forty-nine'); INSERT INTO t3 VALUES(23393, 46353, 'forty-six thousand three hundred fifty-three'); INSERT INTO t3 VALUES(23394, 98513, 'ninety-eight thousand five hundred thirteen'); INSERT INTO t3 VALUES(23395, 16495, 'sixteen thousand four hundred ninety-five'); INSERT INTO t3 VALUES(23396, 39765, 'thirty-nine thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(23397, 19160, 'nineteen thousand one hundred sixty'); INSERT INTO t3 VALUES(23398, 97219, 'ninety-seven thousand two hundred nineteen'); INSERT INTO t3 VALUES(23399, 66678, 'sixty-six thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(23400, 78864, 'seventy-eight thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(23401, 23579, 'twenty-three thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(23402, 50445, 'fifty thousand four hundred forty-five'); INSERT INTO t3 VALUES(23403, 49582, 'forty-nine thousand five hundred eighty-two'); INSERT INTO t3 VALUES(23404, 49279, 'forty-nine thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(23405, 32229, 'thirty-two thousand two hundred twenty-nine'); INSERT INTO t3 VALUES(23406, 31784, 'thirty-one thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(23407, 12278, 'twelve thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(23408, 15041, 'fifteen thousand forty-one'); INSERT INTO t3 VALUES(23409, 97946, 'ninety-seven thousand nine hundred forty-six'); INSERT INTO t3 VALUES(23410, 34219, 'thirty-four thousand two hundred nineteen'); INSERT INTO t3 VALUES(23411, 69063, 'sixty-nine thousand sixty-three'); INSERT INTO t3 VALUES(23412, 67278, 'sixty-seven thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(23413, 93825, 'ninety-three thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(23414, 86096, 'eighty-six thousand ninety-six'); INSERT INTO t3 VALUES(23415, 69699, 'sixty-nine thousand six hundred ninety-nine'); INSERT INTO t3 VALUES(23416, 67540, 'sixty-seven thousand five hundred forty'); INSERT INTO t3 VALUES(23417, 36108, 'thirty-six thousand one hundred eight'); INSERT INTO t3 VALUES(23418, 14792, 'fourteen thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(23419, 28293, 'twenty-eight thousand two hundred ninety-three'); INSERT INTO t3 VALUES(23420, 24306, 'twenty-four thousand three hundred six'); INSERT INTO t3 VALUES(23421, 65701, 'sixty-five thousand seven hundred one'); INSERT INTO t3 VALUES(23422, 43083, 'forty-three thousand eighty-three'); INSERT INTO t3 VALUES(23423, 5437, 'five thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(23424, 75594, 'seventy-five thousand five hundred ninety-four'); INSERT INTO t3 VALUES(23425, 32724, 'thirty-two thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(23426, 26494, 'twenty-six thousand four hundred ninety-four'); INSERT INTO t3 VALUES(23427, 51796, 'fifty-one thousand seven hundred ninety-six'); INSERT INTO t3 VALUES(23428, 22504, 'twenty-two thousand five hundred four'); INSERT INTO t3 VALUES(23429, 5493, 'five thousand four hundred ninety-three'); INSERT INTO t3 VALUES(23430, 28605, 'twenty-eight thousand six hundred five'); INSERT INTO t3 VALUES(23431, 75751, 'seventy-five thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(23432, 14295, 'fourteen thousand two hundred ninety-five'); INSERT INTO t3 VALUES(23433, 95044, 'ninety-five thousand forty-four'); INSERT INTO t3 VALUES(23434, 22419, 'twenty-two thousand four hundred nineteen'); INSERT INTO t3 VALUES(23435, 92444, 'ninety-two thousand four hundred forty-four'); INSERT INTO t3 VALUES(23436, 18709, 'eighteen thousand seven hundred nine'); INSERT INTO t3 VALUES(23437, 8409, 'eight thousand four hundred nine'); INSERT INTO t3 VALUES(23438, 55631, 'fifty-five thousand six hundred thirty-one'); INSERT INTO t3 VALUES(23439, 43624, 'forty-three thousand six hundred twenty-four'); INSERT INTO t3 VALUES(23440, 64917, 'sixty-four thousand nine hundred seventeen'); INSERT INTO t3 VALUES(23441, 2672, 'two thousand six hundred seventy-two'); INSERT INTO t3 VALUES(23442, 94243, 'ninety-four thousand two hundred forty-three'); INSERT INTO t3 VALUES(23443, 3445, 'three thousand four hundred forty-five'); INSERT INTO t3 VALUES(23444, 93716, 'ninety-three thousand seven hundred sixteen'); INSERT INTO t3 VALUES(23445, 33007, 'thirty-three thousand seven'); INSERT INTO t3 VALUES(23446, 1623, 'one thousand six hundred twenty-three'); INSERT INTO t3 VALUES(23447, 63865, 'sixty-three thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(23448, 99659, 'ninety-nine thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(23449, 2847, 'two thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(23450, 91135, 'ninety-one thousand one hundred thirty-five'); INSERT INTO t3 VALUES(23451, 68236, 'sixty-eight thousand two hundred thirty-six'); INSERT INTO t3 VALUES(23452, 564, 'five hundred sixty-four'); INSERT INTO t3 VALUES(23453, 74617, 'seventy-four thousand six hundred seventeen'); INSERT INTO t3 VALUES(23454, 24814, 'twenty-four thousand eight hundred fourteen'); INSERT INTO t3 VALUES(23455, 96192, 'ninety-six thousand one hundred ninety-two'); INSERT INTO t3 VALUES(23456, 59102, 'fifty-nine thousand one hundred two'); INSERT INTO t3 VALUES(23457, 76018, 'seventy-six thousand eighteen'); INSERT INTO t3 VALUES(23458, 8029, 'eight thousand twenty-nine'); INSERT INTO t3 VALUES(23459, 57431, 'fifty-seven thousand four hundred thirty-one'); INSERT INTO t3 VALUES(23460, 1815, 'one thousand eight hundred fifteen'); INSERT INTO t3 VALUES(23461, 17772, 'seventeen thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(23462, 65183, 'sixty-five thousand one hundred eighty-three'); INSERT INTO t3 VALUES(23463, 72540, 'seventy-two thousand five hundred forty'); INSERT INTO t3 VALUES(23464, 24482, 'twenty-four thousand four hundred eighty-two'); INSERT INTO t3 VALUES(23465, 8490, 'eight thousand four hundred ninety'); INSERT INTO t3 VALUES(23466, 18404, 'eighteen thousand four hundred four'); INSERT INTO t3 VALUES(23467, 37344, 'thirty-seven thousand three hundred forty-four'); INSERT INTO t3 VALUES(23468, 48478, 'forty-eight thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(23469, 98727, 'ninety-eight thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(23470, 52604, 'fifty-two thousand six hundred four'); INSERT INTO t3 VALUES(23471, 97024, 'ninety-seven thousand twenty-four'); INSERT INTO t3 VALUES(23472, 86328, 'eighty-six thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(23473, 21559, 'twenty-one thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(23474, 21147, 'twenty-one thousand one hundred forty-seven'); INSERT INTO t3 VALUES(23475, 15058, 'fifteen thousand fifty-eight'); INSERT INTO t3 VALUES(23476, 54076, 'fifty-four thousand seventy-six'); INSERT INTO t3 VALUES(23477, 22547, 'twenty-two thousand five hundred forty-seven'); INSERT INTO t3 VALUES(23478, 77433, 'seventy-seven thousand four hundred thirty-three'); INSERT INTO t3 VALUES(23479, 26859, 'twenty-six thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(23480, 21962, 'twenty-one thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(23481, 76856, 'seventy-six thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(23482, 27754, 'twenty-seven thousand seven hundred fifty-four'); INSERT INTO t3 VALUES(23483, 28591, 'twenty-eight thousand five hundred ninety-one'); INSERT INTO t3 VALUES(23484, 17376, 'seventeen thousand three hundred seventy-six'); INSERT INTO t3 VALUES(23485, 18813, 'eighteen thousand eight hundred thirteen'); INSERT INTO t3 VALUES(23486, 5282, 'five thousand two hundred eighty-two'); INSERT INTO t3 VALUES(23487, 52488, 'fifty-two thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(23488, 10655, 'ten thousand six hundred fifty-five'); INSERT INTO t3 VALUES(23489, 16162, 'sixteen thousand one hundred sixty-two'); INSERT INTO t3 VALUES(23490, 43793, 'forty-three thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(23491, 10226, 'ten thousand two hundred twenty-six'); INSERT INTO t3 VALUES(23492, 11628, 'eleven thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(23493, 18775, 'eighteen thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(23494, 50433, 'fifty thousand four hundred thirty-three'); INSERT INTO t3 VALUES(23495, 13932, 'thirteen thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(23496, 82111, 'eighty-two thousand one hundred eleven'); INSERT INTO t3 VALUES(23497, 96458, 'ninety-six thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(23498, 10118, 'ten thousand one hundred eighteen'); INSERT INTO t3 VALUES(23499, 95958, 'ninety-five thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(23500, 67526, 'sixty-seven thousand five hundred twenty-six'); INSERT INTO t3 VALUES(23501, 70795, 'seventy thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(23502, 17859, 'seventeen thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(23503, 14355, 'fourteen thousand three hundred fifty-five'); INSERT INTO t3 VALUES(23504, 22810, 'twenty-two thousand eight hundred ten'); INSERT INTO t3 VALUES(23505, 90886, 'ninety thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(23506, 8603, 'eight thousand six hundred three'); INSERT INTO t3 VALUES(23507, 84909, 'eighty-four thousand nine hundred nine'); INSERT INTO t3 VALUES(23508, 83846, 'eighty-three thousand eight hundred forty-six'); INSERT INTO t3 VALUES(23509, 71714, 'seventy-one thousand seven hundred fourteen'); INSERT INTO t3 VALUES(23510, 48247, 'forty-eight thousand two hundred forty-seven'); INSERT INTO t3 VALUES(23511, 86614, 'eighty-six thousand six hundred fourteen'); INSERT INTO t3 VALUES(23512, 26186, 'twenty-six thousand one hundred eighty-six'); INSERT INTO t3 VALUES(23513, 16558, 'sixteen thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(23514, 30360, 'thirty thousand three hundred sixty'); INSERT INTO t3 VALUES(23515, 38691, 'thirty-eight thousand six hundred ninety-one'); INSERT INTO t3 VALUES(23516, 71548, 'seventy-one thousand five hundred forty-eight'); INSERT INTO t3 VALUES(23517, 54678, 'fifty-four thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(23518, 47737, 'forty-seven thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(23519, 18355, 'eighteen thousand three hundred fifty-five'); INSERT INTO t3 VALUES(23520, 74423, 'seventy-four thousand four hundred twenty-three'); INSERT INTO t3 VALUES(23521, 95437, 'ninety-five thousand four hundred thirty-seven'); INSERT INTO t3 VALUES(23522, 9469, 'nine thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(23523, 92722, 'ninety-two thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(23524, 26722, 'twenty-six thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(23525, 26761, 'twenty-six thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(23526, 3402, 'three thousand four hundred two'); INSERT INTO t3 VALUES(23527, 74672, 'seventy-four thousand six hundred seventy-two'); INSERT INTO t3 VALUES(23528, 71706, 'seventy-one thousand seven hundred six'); INSERT INTO t3 VALUES(23529, 2883, 'two thousand eight hundred eighty-three'); INSERT INTO t3 VALUES(23530, 31197, 'thirty-one thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(23531, 17244, 'seventeen thousand two hundred forty-four'); INSERT INTO t3 VALUES(23532, 37093, 'thirty-seven thousand ninety-three'); INSERT INTO t3 VALUES(23533, 38294, 'thirty-eight thousand two hundred ninety-four'); INSERT INTO t3 VALUES(23534, 61466, 'sixty-one thousand four hundred sixty-six'); INSERT INTO t3 VALUES(23535, 54430, 'fifty-four thousand four hundred thirty'); INSERT INTO t3 VALUES(23536, 87720, 'eighty-seven thousand seven hundred twenty'); INSERT INTO t3 VALUES(23537, 51579, 'fifty-one thousand five hundred seventy-nine'); INSERT INTO t3 VALUES(23538, 61482, 'sixty-one thousand four hundred eighty-two'); INSERT INTO t3 VALUES(23539, 93483, 'ninety-three thousand four hundred eighty-three'); INSERT INTO t3 VALUES(23540, 1278, 'one thousand two hundred seventy-eight'); INSERT INTO t3 VALUES(23541, 39606, 'thirty-nine thousand six hundred six'); INSERT INTO t3 VALUES(23542, 38473, 'thirty-eight thousand four hundred seventy-three'); INSERT INTO t3 VALUES(23543, 55195, 'fifty-five thousand one hundred ninety-five'); INSERT INTO t3 VALUES(23544, 64507, 'sixty-four thousand five hundred seven'); INSERT INTO t3 VALUES(23545, 3334, 'three thousand three hundred thirty-four'); INSERT INTO t3 VALUES(23546, 53799, 'fifty-three thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(23547, 92707, 'ninety-two thousand seven hundred seven'); INSERT INTO t3 VALUES(23548, 18125, 'eighteen thousand one hundred twenty-five'); INSERT INTO t3 VALUES(23549, 62649, 'sixty-two thousand six hundred forty-nine'); INSERT INTO t3 VALUES(23550, 69419, 'sixty-nine thousand four hundred nineteen'); INSERT INTO t3 VALUES(23551, 2370, 'two thousand three hundred seventy'); INSERT INTO t3 VALUES(23552, 16396, 'sixteen thousand three hundred ninety-six'); INSERT INTO t3 VALUES(23553, 61512, 'sixty-one thousand five hundred twelve'); INSERT INTO t3 VALUES(23554, 30759, 'thirty thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(23555, 40746, 'forty thousand seven hundred forty-six'); INSERT INTO t3 VALUES(23556, 10091, 'ten thousand ninety-one'); INSERT INTO t3 VALUES(23557, 36710, 'thirty-six thousand seven hundred ten'); INSERT INTO t3 VALUES(23558, 83900, 'eighty-three thousand nine hundred'); INSERT INTO t3 VALUES(23559, 30959, 'thirty thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(23560, 60182, 'sixty thousand one hundred eighty-two'); INSERT INTO t3 VALUES(23561, 59887, 'fifty-nine thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(23562, 42941, 'forty-two thousand nine hundred forty-one'); INSERT INTO t3 VALUES(23563, 94187, 'ninety-four thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(23564, 5987, 'five thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(23565, 39046, 'thirty-nine thousand forty-six'); INSERT INTO t3 VALUES(23566, 7399, 'seven thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(23567, 69957, 'sixty-nine thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(23568, 86820, 'eighty-six thousand eight hundred twenty'); INSERT INTO t3 VALUES(23569, 23573, 'twenty-three thousand five hundred seventy-three'); INSERT INTO t3 VALUES(23570, 54932, 'fifty-four thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(23571, 2182, 'two thousand one hundred eighty-two'); INSERT INTO t3 VALUES(23572, 81298, 'eighty-one thousand two hundred ninety-eight'); INSERT INTO t3 VALUES(23573, 2196, 'two thousand one hundred ninety-six'); INSERT INTO t3 VALUES(23574, 27319, 'twenty-seven thousand three hundred nineteen'); INSERT INTO t3 VALUES(23575, 13215, 'thirteen thousand two hundred fifteen'); INSERT INTO t3 VALUES(23576, 80871, 'eighty thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(23577, 30735, 'thirty thousand seven hundred thirty-five'); INSERT INTO t3 VALUES(23578, 64550, 'sixty-four thousand five hundred fifty'); INSERT INTO t3 VALUES(23579, 42344, 'forty-two thousand three hundred forty-four'); INSERT INTO t3 VALUES(23580, 4413, 'four thousand four hundred thirteen'); INSERT INTO t3 VALUES(23581, 26455, 'twenty-six thousand four hundred fifty-five'); INSERT INTO t3 VALUES(23582, 62610, 'sixty-two thousand six hundred ten'); INSERT INTO t3 VALUES(23583, 8899, 'eight thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(23584, 50846, 'fifty thousand eight hundred forty-six'); INSERT INTO t3 VALUES(23585, 49248, 'forty-nine thousand two hundred forty-eight'); INSERT INTO t3 VALUES(23586, 52575, 'fifty-two thousand five hundred seventy-five'); INSERT INTO t3 VALUES(23587, 57411, 'fifty-seven thousand four hundred eleven'); INSERT INTO t3 VALUES(23588, 25151, 'twenty-five thousand one hundred fifty-one'); INSERT INTO t3 VALUES(23589, 57624, 'fifty-seven thousand six hundred twenty-four'); INSERT INTO t3 VALUES(23590, 49571, 'forty-nine thousand five hundred seventy-one'); INSERT INTO t3 VALUES(23591, 67799, 'sixty-seven thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(23592, 40059, 'forty thousand fifty-nine'); INSERT INTO t3 VALUES(23593, 62167, 'sixty-two thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(23594, 20583, 'twenty thousand five hundred eighty-three'); INSERT INTO t3 VALUES(23595, 24724, 'twenty-four thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(23596, 40703, 'forty thousand seven hundred three'); INSERT INTO t3 VALUES(23597, 85707, 'eighty-five thousand seven hundred seven'); INSERT INTO t3 VALUES(23598, 38209, 'thirty-eight thousand two hundred nine'); INSERT INTO t3 VALUES(23599, 58826, 'fifty-eight thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(23600, 99341, 'ninety-nine thousand three hundred forty-one'); INSERT INTO t3 VALUES(23601, 23133, 'twenty-three thousand one hundred thirty-three'); INSERT INTO t3 VALUES(23602, 73103, 'seventy-three thousand one hundred three'); INSERT INTO t3 VALUES(23603, 97851, 'ninety-seven thousand eight hundred fifty-one'); INSERT INTO t3 VALUES(23604, 79555, 'seventy-nine thousand five hundred fifty-five'); INSERT INTO t3 VALUES(23605, 95111, 'ninety-five thousand one hundred eleven'); INSERT INTO t3 VALUES(23606, 73440, 'seventy-three thousand four hundred forty'); INSERT INTO t3 VALUES(23607, 90824, 'ninety thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(23608, 53358, 'fifty-three thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(23609, 65004, 'sixty-five thousand four'); INSERT INTO t3 VALUES(23610, 82717, 'eighty-two thousand seven hundred seventeen'); INSERT INTO t3 VALUES(23611, 16867, 'sixteen thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(23612, 60442, 'sixty thousand four hundred forty-two'); INSERT INTO t3 VALUES(23613, 77593, 'seventy-seven thousand five hundred ninety-three'); INSERT INTO t3 VALUES(23614, 73115, 'seventy-three thousand one hundred fifteen'); INSERT INTO t3 VALUES(23615, 16073, 'sixteen thousand seventy-three'); INSERT INTO t3 VALUES(23616, 34014, 'thirty-four thousand fourteen'); INSERT INTO t3 VALUES(23617, 17573, 'seventeen thousand five hundred seventy-three'); INSERT INTO t3 VALUES(23618, 35465, 'thirty-five thousand four hundred sixty-five'); INSERT INTO t3 VALUES(23619, 82501, 'eighty-two thousand five hundred one'); INSERT INTO t3 VALUES(23620, 96795, 'ninety-six thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(23621, 30923, 'thirty thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(23622, 86696, 'eighty-six thousand six hundred ninety-six'); INSERT INTO t3 VALUES(23623, 66602, 'sixty-six thousand six hundred two'); INSERT INTO t3 VALUES(23624, 64764, 'sixty-four thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(23625, 40955, 'forty thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(23626, 17818, 'seventeen thousand eight hundred eighteen'); INSERT INTO t3 VALUES(23627, 14627, 'fourteen thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(23628, 50966, 'fifty thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(23629, 28307, 'twenty-eight thousand three hundred seven'); INSERT INTO t3 VALUES(23630, 5343, 'five thousand three hundred forty-three'); INSERT INTO t3 VALUES(23631, 75438, 'seventy-five thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(23632, 18477, 'eighteen thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(23633, 70317, 'seventy thousand three hundred seventeen'); INSERT INTO t3 VALUES(23634, 24792, 'twenty-four thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(23635, 14079, 'fourteen thousand seventy-nine'); INSERT INTO t3 VALUES(23636, 71084, 'seventy-one thousand eighty-four'); INSERT INTO t3 VALUES(23637, 12620, 'twelve thousand six hundred twenty'); INSERT INTO t3 VALUES(23638, 17480, 'seventeen thousand four hundred eighty'); INSERT INTO t3 VALUES(23639, 24724, 'twenty-four thousand seven hundred twenty-four'); INSERT INTO t3 VALUES(23640, 16185, 'sixteen thousand one hundred eighty-five'); INSERT INTO t3 VALUES(23641, 74936, 'seventy-four thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(23642, 86982, 'eighty-six thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(23643, 64673, 'sixty-four thousand six hundred seventy-three'); INSERT INTO t3 VALUES(23644, 27413, 'twenty-seven thousand four hundred thirteen'); INSERT INTO t3 VALUES(23645, 76881, 'seventy-six thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(23646, 96176, 'ninety-six thousand one hundred seventy-six'); INSERT INTO t3 VALUES(23647, 4524, 'four thousand five hundred twenty-four'); INSERT INTO t3 VALUES(23648, 38103, 'thirty-eight thousand one hundred three'); INSERT INTO t3 VALUES(23649, 44713, 'forty-four thousand seven hundred thirteen'); INSERT INTO t3 VALUES(23650, 51531, 'fifty-one thousand five hundred thirty-one'); INSERT INTO t3 VALUES(23651, 17723, 'seventeen thousand seven hundred twenty-three'); INSERT INTO t3 VALUES(23652, 33190, 'thirty-three thousand one hundred ninety'); INSERT INTO t3 VALUES(23653, 92518, 'ninety-two thousand five hundred eighteen'); INSERT INTO t3 VALUES(23654, 90485, 'ninety thousand four hundred eighty-five'); INSERT INTO t3 VALUES(23655, 86879, 'eighty-six thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(23656, 48126, 'forty-eight thousand one hundred twenty-six'); INSERT INTO t3 VALUES(23657, 86738, 'eighty-six thousand seven hundred thirty-eight'); INSERT INTO t3 VALUES(23658, 99642, 'ninety-nine thousand six hundred forty-two'); INSERT INTO t3 VALUES(23659, 76021, 'seventy-six thousand twenty-one'); INSERT INTO t3 VALUES(23660, 81664, 'eighty-one thousand six hundred sixty-four'); INSERT INTO t3 VALUES(23661, 50538, 'fifty thousand five hundred thirty-eight'); INSERT INTO t3 VALUES(23662, 51732, 'fifty-one thousand seven hundred thirty-two'); INSERT INTO t3 VALUES(23663, 37218, 'thirty-seven thousand two hundred eighteen'); INSERT INTO t3 VALUES(23664, 87061, 'eighty-seven thousand sixty-one'); INSERT INTO t3 VALUES(23665, 26895, 'twenty-six thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(23666, 8686, 'eight thousand six hundred eighty-six'); INSERT INTO t3 VALUES(23667, 81487, 'eighty-one thousand four hundred eighty-seven'); INSERT INTO t3 VALUES(23668, 28329, 'twenty-eight thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(23669, 88527, 'eighty-eight thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(23670, 28915, 'twenty-eight thousand nine hundred fifteen'); INSERT INTO t3 VALUES(23671, 25845, 'twenty-five thousand eight hundred forty-five'); INSERT INTO t3 VALUES(23672, 42529, 'forty-two thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(23673, 13321, 'thirteen thousand three hundred twenty-one'); INSERT INTO t3 VALUES(23674, 4907, 'four thousand nine hundred seven'); INSERT INTO t3 VALUES(23675, 28057, 'twenty-eight thousand fifty-seven'); INSERT INTO t3 VALUES(23676, 4316, 'four thousand three hundred sixteen'); INSERT INTO t3 VALUES(23677, 88438, 'eighty-eight thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(23678, 46994, 'forty-six thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(23679, 57761, 'fifty-seven thousand seven hundred sixty-one'); INSERT INTO t3 VALUES(23680, 25477, 'twenty-five thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(23681, 56481, 'fifty-six thousand four hundred eighty-one'); INSERT INTO t3 VALUES(23682, 35285, 'thirty-five thousand two hundred eighty-five'); INSERT INTO t3 VALUES(23683, 40414, 'forty thousand four hundred fourteen'); INSERT INTO t3 VALUES(23684, 33727, 'thirty-three thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(23685, 42403, 'forty-two thousand four hundred three'); INSERT INTO t3 VALUES(23686, 10077, 'ten thousand seventy-seven'); INSERT INTO t3 VALUES(23687, 82837, 'eighty-two thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(23688, 89782, 'eighty-nine thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(23689, 50995, 'fifty thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(23690, 49859, 'forty-nine thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(23691, 4843, 'four thousand eight hundred forty-three'); INSERT INTO t3 VALUES(23692, 60366, 'sixty thousand three hundred sixty-six'); INSERT INTO t3 VALUES(23693, 85857, 'eighty-five thousand eight hundred fifty-seven'); INSERT INTO t3 VALUES(23694, 92262, 'ninety-two thousand two hundred sixty-two'); INSERT INTO t3 VALUES(23695, 51111, 'fifty-one thousand one hundred eleven'); INSERT INTO t3 VALUES(23696, 54124, 'fifty-four thousand one hundred twenty-four'); INSERT INTO t3 VALUES(23697, 68038, 'sixty-eight thousand thirty-eight'); INSERT INTO t3 VALUES(23698, 4959, 'four thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(23699, 78719, 'seventy-eight thousand seven hundred nineteen'); INSERT INTO t3 VALUES(23700, 71954, 'seventy-one thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(23701, 50224, 'fifty thousand two hundred twenty-four'); INSERT INTO t3 VALUES(23702, 48630, 'forty-eight thousand six hundred thirty'); INSERT INTO t3 VALUES(23703, 6606, 'six thousand six hundred six'); INSERT INTO t3 VALUES(23704, 12784, 'twelve thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(23705, 48375, 'forty-eight thousand three hundred seventy-five'); INSERT INTO t3 VALUES(23706, 59890, 'fifty-nine thousand eight hundred ninety'); INSERT INTO t3 VALUES(23707, 1834, 'one thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(23708, 16932, 'sixteen thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(23709, 93071, 'ninety-three thousand seventy-one'); INSERT INTO t3 VALUES(23710, 25041, 'twenty-five thousand forty-one'); INSERT INTO t3 VALUES(23711, 18141, 'eighteen thousand one hundred forty-one'); INSERT INTO t3 VALUES(23712, 66856, 'sixty-six thousand eight hundred fifty-six'); INSERT INTO t3 VALUES(23713, 73727, 'seventy-three thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(23714, 73236, 'seventy-three thousand two hundred thirty-six'); INSERT INTO t3 VALUES(23715, 39925, 'thirty-nine thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(23716, 14269, 'fourteen thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(23717, 87148, 'eighty-seven thousand one hundred forty-eight'); INSERT INTO t3 VALUES(23718, 45589, 'forty-five thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(23719, 70828, 'seventy thousand eight hundred twenty-eight'); INSERT INTO t3 VALUES(23720, 47337, 'forty-seven thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(23721, 57009, 'fifty-seven thousand nine'); INSERT INTO t3 VALUES(23722, 13121, 'thirteen thousand one hundred twenty-one'); INSERT INTO t3 VALUES(23723, 97971, 'ninety-seven thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(23724, 54488, 'fifty-four thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(23725, 76314, 'seventy-six thousand three hundred fourteen'); INSERT INTO t3 VALUES(23726, 37727, 'thirty-seven thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(23727, 45799, 'forty-five thousand seven hundred ninety-nine'); INSERT INTO t3 VALUES(23728, 13502, 'thirteen thousand five hundred two'); INSERT INTO t3 VALUES(23729, 27634, 'twenty-seven thousand six hundred thirty-four'); INSERT INTO t3 VALUES(23730, 42985, 'forty-two thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(23731, 86995, 'eighty-six thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(23732, 9107, 'nine thousand one hundred seven'); INSERT INTO t3 VALUES(23733, 98628, 'ninety-eight thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(23734, 49058, 'forty-nine thousand fifty-eight'); INSERT INTO t3 VALUES(23735, 80684, 'eighty thousand six hundred eighty-four'); INSERT INTO t3 VALUES(23736, 13313, 'thirteen thousand three hundred thirteen'); INSERT INTO t3 VALUES(23737, 68137, 'sixty-eight thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(23738, 13307, 'thirteen thousand three hundred seven'); INSERT INTO t3 VALUES(23739, 6261, 'six thousand two hundred sixty-one'); INSERT INTO t3 VALUES(23740, 84216, 'eighty-four thousand two hundred sixteen'); INSERT INTO t3 VALUES(23741, 21375, 'twenty-one thousand three hundred seventy-five'); INSERT INTO t3 VALUES(23742, 56627, 'fifty-six thousand six hundred twenty-seven'); INSERT INTO t3 VALUES(23743, 97402, 'ninety-seven thousand four hundred two'); INSERT INTO t3 VALUES(23744, 32714, 'thirty-two thousand seven hundred fourteen'); INSERT INTO t3 VALUES(23745, 72907, 'seventy-two thousand nine hundred seven'); INSERT INTO t3 VALUES(23746, 25554, 'twenty-five thousand five hundred fifty-four'); INSERT INTO t3 VALUES(23747, 90319, 'ninety thousand three hundred nineteen'); INSERT INTO t3 VALUES(23748, 75026, 'seventy-five thousand twenty-six'); INSERT INTO t3 VALUES(23749, 14558, 'fourteen thousand five hundred fifty-eight'); INSERT INTO t3 VALUES(23750, 39151, 'thirty-nine thousand one hundred fifty-one'); INSERT INTO t3 VALUES(23751, 67247, 'sixty-seven thousand two hundred forty-seven'); INSERT INTO t3 VALUES(23752, 34646, 'thirty-four thousand six hundred forty-six'); INSERT INTO t3 VALUES(23753, 8971, 'eight thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(23754, 53488, 'fifty-three thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(23755, 54866, 'fifty-four thousand eight hundred sixty-six'); INSERT INTO t3 VALUES(23756, 87762, 'eighty-seven thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(23757, 57999, 'fifty-seven thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(23758, 14097, 'fourteen thousand ninety-seven'); INSERT INTO t3 VALUES(23759, 11700, 'eleven thousand seven hundred'); INSERT INTO t3 VALUES(23760, 56779, 'fifty-six thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(23761, 97944, 'ninety-seven thousand nine hundred forty-four'); INSERT INTO t3 VALUES(23762, 52631, 'fifty-two thousand six hundred thirty-one'); INSERT INTO t3 VALUES(23763, 26939, 'twenty-six thousand nine hundred thirty-nine'); INSERT INTO t3 VALUES(23764, 30676, 'thirty thousand six hundred seventy-six'); INSERT INTO t3 VALUES(23765, 23913, 'twenty-three thousand nine hundred thirteen'); INSERT INTO t3 VALUES(23766, 85419, 'eighty-five thousand four hundred nineteen'); INSERT INTO t3 VALUES(23767, 23862, 'twenty-three thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(23768, 76562, 'seventy-six thousand five hundred sixty-two'); INSERT INTO t3 VALUES(23769, 47077, 'forty-seven thousand seventy-seven'); INSERT INTO t3 VALUES(23770, 27829, 'twenty-seven thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(23771, 72686, 'seventy-two thousand six hundred eighty-six'); INSERT INTO t3 VALUES(23772, 47292, 'forty-seven thousand two hundred ninety-two'); INSERT INTO t3 VALUES(23773, 20328, 'twenty thousand three hundred twenty-eight'); INSERT INTO t3 VALUES(23774, 5901, 'five thousand nine hundred one'); INSERT INTO t3 VALUES(23775, 39359, 'thirty-nine thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(23776, 84815, 'eighty-four thousand eight hundred fifteen'); INSERT INTO t3 VALUES(23777, 84465, 'eighty-four thousand four hundred sixty-five'); INSERT INTO t3 VALUES(23778, 50404, 'fifty thousand four hundred four'); INSERT INTO t3 VALUES(23779, 7769, 'seven thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(23780, 17334, 'seventeen thousand three hundred thirty-four'); INSERT INTO t3 VALUES(23781, 54708, 'fifty-four thousand seven hundred eight'); INSERT INTO t3 VALUES(23782, 168, 'one hundred sixty-eight'); INSERT INTO t3 VALUES(23783, 27381, 'twenty-seven thousand three hundred eighty-one'); INSERT INTO t3 VALUES(23784, 4711, 'four thousand seven hundred eleven'); INSERT INTO t3 VALUES(23785, 79371, 'seventy-nine thousand three hundred seventy-one'); INSERT INTO t3 VALUES(23786, 28455, 'twenty-eight thousand four hundred fifty-five'); INSERT INTO t3 VALUES(23787, 80271, 'eighty thousand two hundred seventy-one'); INSERT INTO t3 VALUES(23788, 42986, 'forty-two thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(23789, 65728, 'sixty-five thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(23790, 40154, 'forty thousand one hundred fifty-four'); INSERT INTO t3 VALUES(23791, 34146, 'thirty-four thousand one hundred forty-six'); INSERT INTO t3 VALUES(23792, 45928, 'forty-five thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(23793, 22438, 'twenty-two thousand four hundred thirty-eight'); INSERT INTO t3 VALUES(23794, 95764, 'ninety-five thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(23795, 98693, 'ninety-eight thousand six hundred ninety-three'); INSERT INTO t3 VALUES(23796, 88040, 'eighty-eight thousand forty'); INSERT INTO t3 VALUES(23797, 57179, 'fifty-seven thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(23798, 44329, 'forty-four thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(23799, 47526, 'forty-seven thousand five hundred twenty-six'); INSERT INTO t3 VALUES(23800, 74130, 'seventy-four thousand one hundred thirty'); INSERT INTO t3 VALUES(23801, 59210, 'fifty-nine thousand two hundred ten'); INSERT INTO t3 VALUES(23802, 76351, 'seventy-six thousand three hundred fifty-one'); INSERT INTO t3 VALUES(23803, 74751, 'seventy-four thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(23804, 5642, 'five thousand six hundred forty-two'); INSERT INTO t3 VALUES(23805, 81823, 'eighty-one thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(23806, 44736, 'forty-four thousand seven hundred thirty-six'); INSERT INTO t3 VALUES(23807, 29374, 'twenty-nine thousand three hundred seventy-four'); INSERT INTO t3 VALUES(23808, 85145, 'eighty-five thousand one hundred forty-five'); INSERT INTO t3 VALUES(23809, 6764, 'six thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(23810, 96775, 'ninety-six thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(23811, 18354, 'eighteen thousand three hundred fifty-four'); INSERT INTO t3 VALUES(23812, 20977, 'twenty thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(23813, 43564, 'forty-three thousand five hundred sixty-four'); INSERT INTO t3 VALUES(23814, 3869, 'three thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(23815, 18821, 'eighteen thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(23816, 46133, 'forty-six thousand one hundred thirty-three'); INSERT INTO t3 VALUES(23817, 1495, 'one thousand four hundred ninety-five'); INSERT INTO t3 VALUES(23818, 57541, 'fifty-seven thousand five hundred forty-one'); INSERT INTO t3 VALUES(23819, 72573, 'seventy-two thousand five hundred seventy-three'); INSERT INTO t3 VALUES(23820, 33494, 'thirty-three thousand four hundred ninety-four'); INSERT INTO t3 VALUES(23821, 51918, 'fifty-one thousand nine hundred eighteen'); INSERT INTO t3 VALUES(23822, 93391, 'ninety-three thousand three hundred ninety-one'); INSERT INTO t3 VALUES(23823, 58255, 'fifty-eight thousand two hundred fifty-five'); INSERT INTO t3 VALUES(23824, 1356, 'one thousand three hundred fifty-six'); INSERT INTO t3 VALUES(23825, 68965, 'sixty-eight thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(23826, 33007, 'thirty-three thousand seven'); INSERT INTO t3 VALUES(23827, 3477, 'three thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(23828, 83162, 'eighty-three thousand one hundred sixty-two'); INSERT INTO t3 VALUES(23829, 54242, 'fifty-four thousand two hundred forty-two'); INSERT INTO t3 VALUES(23830, 74037, 'seventy-four thousand thirty-seven'); INSERT INTO t3 VALUES(23831, 36860, 'thirty-six thousand eight hundred sixty'); INSERT INTO t3 VALUES(23832, 28096, 'twenty-eight thousand ninety-six'); INSERT INTO t3 VALUES(23833, 12737, 'twelve thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(23834, 79159, 'seventy-nine thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(23835, 57547, 'fifty-seven thousand five hundred forty-seven'); INSERT INTO t3 VALUES(23836, 51154, 'fifty-one thousand one hundred fifty-four'); INSERT INTO t3 VALUES(23837, 77439, 'seventy-seven thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(23838, 93124, 'ninety-three thousand one hundred twenty-four'); INSERT INTO t3 VALUES(23839, 67347, 'sixty-seven thousand three hundred forty-seven'); INSERT INTO t3 VALUES(23840, 39833, 'thirty-nine thousand eight hundred thirty-three'); INSERT INTO t3 VALUES(23841, 5447, 'five thousand four hundred forty-seven'); INSERT INTO t3 VALUES(23842, 12911, 'twelve thousand nine hundred eleven'); INSERT INTO t3 VALUES(23843, 12916, 'twelve thousand nine hundred sixteen'); INSERT INTO t3 VALUES(23844, 92452, 'ninety-two thousand four hundred fifty-two'); INSERT INTO t3 VALUES(23845, 50515, 'fifty thousand five hundred fifteen'); INSERT INTO t3 VALUES(23846, 15898, 'fifteen thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(23847, 68416, 'sixty-eight thousand four hundred sixteen'); INSERT INTO t3 VALUES(23848, 72179, 'seventy-two thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(23849, 37175, 'thirty-seven thousand one hundred seventy-five'); INSERT INTO t3 VALUES(23850, 50495, 'fifty thousand four hundred ninety-five'); INSERT INTO t3 VALUES(23851, 56026, 'fifty-six thousand twenty-six'); INSERT INTO t3 VALUES(23852, 60961, 'sixty thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(23853, 76351, 'seventy-six thousand three hundred fifty-one'); INSERT INTO t3 VALUES(23854, 73053, 'seventy-three thousand fifty-three'); INSERT INTO t3 VALUES(23855, 19211, 'nineteen thousand two hundred eleven'); INSERT INTO t3 VALUES(23856, 73516, 'seventy-three thousand five hundred sixteen'); INSERT INTO t3 VALUES(23857, 26319, 'twenty-six thousand three hundred nineteen'); INSERT INTO t3 VALUES(23858, 41276, 'forty-one thousand two hundred seventy-six'); INSERT INTO t3 VALUES(23859, 45926, 'forty-five thousand nine hundred twenty-six'); INSERT INTO t3 VALUES(23860, 5171, 'five thousand one hundred seventy-one'); INSERT INTO t3 VALUES(23861, 78829, 'seventy-eight thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(23862, 66865, 'sixty-six thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(23863, 34401, 'thirty-four thousand four hundred one'); INSERT INTO t3 VALUES(23864, 55621, 'fifty-five thousand six hundred twenty-one'); INSERT INTO t3 VALUES(23865, 51118, 'fifty-one thousand one hundred eighteen'); INSERT INTO t3 VALUES(23866, 27574, 'twenty-seven thousand five hundred seventy-four'); INSERT INTO t3 VALUES(23867, 98813, 'ninety-eight thousand eight hundred thirteen'); INSERT INTO t3 VALUES(23868, 68913, 'sixty-eight thousand nine hundred thirteen'); INSERT INTO t3 VALUES(23869, 36079, 'thirty-six thousand seventy-nine'); INSERT INTO t3 VALUES(23870, 19794, 'nineteen thousand seven hundred ninety-four'); INSERT INTO t3 VALUES(23871, 59294, 'fifty-nine thousand two hundred ninety-four'); INSERT INTO t3 VALUES(23872, 82700, 'eighty-two thousand seven hundred'); INSERT INTO t3 VALUES(23873, 51582, 'fifty-one thousand five hundred eighty-two'); INSERT INTO t3 VALUES(23874, 71711, 'seventy-one thousand seven hundred eleven'); INSERT INTO t3 VALUES(23875, 20373, 'twenty thousand three hundred seventy-three'); INSERT INTO t3 VALUES(23876, 99834, 'ninety-nine thousand eight hundred thirty-four'); INSERT INTO t3 VALUES(23877, 18089, 'eighteen thousand eighty-nine'); INSERT INTO t3 VALUES(23878, 46778, 'forty-six thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(23879, 61674, 'sixty-one thousand six hundred seventy-four'); INSERT INTO t3 VALUES(23880, 35359, 'thirty-five thousand three hundred fifty-nine'); INSERT INTO t3 VALUES(23881, 3556, 'three thousand five hundred fifty-six'); INSERT INTO t3 VALUES(23882, 44793, 'forty-four thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(23883, 46168, 'forty-six thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(23884, 3762, 'three thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(23885, 49049, 'forty-nine thousand forty-nine'); INSERT INTO t3 VALUES(23886, 47010, 'forty-seven thousand ten'); INSERT INTO t3 VALUES(23887, 31400, 'thirty-one thousand four hundred'); INSERT INTO t3 VALUES(23888, 66239, 'sixty-six thousand two hundred thirty-nine'); INSERT INTO t3 VALUES(23889, 2061, 'two thousand sixty-one'); INSERT INTO t3 VALUES(23890, 19073, 'nineteen thousand seventy-three'); INSERT INTO t3 VALUES(23891, 57056, 'fifty-seven thousand fifty-six'); INSERT INTO t3 VALUES(23892, 48949, 'forty-eight thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(23893, 78308, 'seventy-eight thousand three hundred eight'); INSERT INTO t3 VALUES(23894, 40673, 'forty thousand six hundred seventy-three'); INSERT INTO t3 VALUES(23895, 48027, 'forty-eight thousand twenty-seven'); INSERT INTO t3 VALUES(23896, 91316, 'ninety-one thousand three hundred sixteen'); INSERT INTO t3 VALUES(23897, 64895, 'sixty-four thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(23898, 82672, 'eighty-two thousand six hundred seventy-two'); INSERT INTO t3 VALUES(23899, 61551, 'sixty-one thousand five hundred fifty-one'); INSERT INTO t3 VALUES(23900, 26406, 'twenty-six thousand four hundred six'); INSERT INTO t3 VALUES(23901, 88116, 'eighty-eight thousand one hundred sixteen'); INSERT INTO t3 VALUES(23902, 47210, 'forty-seven thousand two hundred ten'); INSERT INTO t3 VALUES(23903, 67816, 'sixty-seven thousand eight hundred sixteen'); INSERT INTO t3 VALUES(23904, 6575, 'six thousand five hundred seventy-five'); INSERT INTO t3 VALUES(23905, 54459, 'fifty-four thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(23906, 41446, 'forty-one thousand four hundred forty-six'); INSERT INTO t3 VALUES(23907, 84563, 'eighty-four thousand five hundred sixty-three'); INSERT INTO t3 VALUES(23908, 6719, 'six thousand seven hundred nineteen'); INSERT INTO t3 VALUES(23909, 15279, 'fifteen thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(23910, 35365, 'thirty-five thousand three hundred sixty-five'); INSERT INTO t3 VALUES(23911, 33572, 'thirty-three thousand five hundred seventy-two'); INSERT INTO t3 VALUES(23912, 60664, 'sixty thousand six hundred sixty-four'); INSERT INTO t3 VALUES(23913, 780, 'seven hundred eighty'); INSERT INTO t3 VALUES(23914, 65557, 'sixty-five thousand five hundred fifty-seven'); INSERT INTO t3 VALUES(23915, 99238, 'ninety-nine thousand two hundred thirty-eight'); INSERT INTO t3 VALUES(23916, 31940, 'thirty-one thousand nine hundred forty'); INSERT INTO t3 VALUES(23917, 59345, 'fifty-nine thousand three hundred forty-five'); INSERT INTO t3 VALUES(23918, 30947, 'thirty thousand nine hundred forty-seven'); INSERT INTO t3 VALUES(23919, 8137, 'eight thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(23920, 66843, 'sixty-six thousand eight hundred forty-three'); INSERT INTO t3 VALUES(23921, 52685, 'fifty-two thousand six hundred eighty-five'); INSERT INTO t3 VALUES(23922, 65848, 'sixty-five thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(23923, 24628, 'twenty-four thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(23924, 98908, 'ninety-eight thousand nine hundred eight'); INSERT INTO t3 VALUES(23925, 14938, 'fourteen thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(23926, 93863, 'ninety-three thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(23927, 64580, 'sixty-four thousand five hundred eighty'); INSERT INTO t3 VALUES(23928, 50642, 'fifty thousand six hundred forty-two'); INSERT INTO t3 VALUES(23929, 94055, 'ninety-four thousand fifty-five'); INSERT INTO t3 VALUES(23930, 87291, 'eighty-seven thousand two hundred ninety-one'); INSERT INTO t3 VALUES(23931, 77405, 'seventy-seven thousand four hundred five'); INSERT INTO t3 VALUES(23932, 62586, 'sixty-two thousand five hundred eighty-six'); INSERT INTO t3 VALUES(23933, 58411, 'fifty-eight thousand four hundred eleven'); INSERT INTO t3 VALUES(23934, 30530, 'thirty thousand five hundred thirty'); INSERT INTO t3 VALUES(23935, 72649, 'seventy-two thousand six hundred forty-nine'); INSERT INTO t3 VALUES(23936, 51197, 'fifty-one thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(23937, 52636, 'fifty-two thousand six hundred thirty-six'); INSERT INTO t3 VALUES(23938, 78415, 'seventy-eight thousand four hundred fifteen'); INSERT INTO t3 VALUES(23939, 67547, 'sixty-seven thousand five hundred forty-seven'); INSERT INTO t3 VALUES(23940, 12626, 'twelve thousand six hundred twenty-six'); INSERT INTO t3 VALUES(23941, 86230, 'eighty-six thousand two hundred thirty'); INSERT INTO t3 VALUES(23942, 72504, 'seventy-two thousand five hundred four'); INSERT INTO t3 VALUES(23943, 43234, 'forty-three thousand two hundred thirty-four'); INSERT INTO t3 VALUES(23944, 18554, 'eighteen thousand five hundred fifty-four'); INSERT INTO t3 VALUES(23945, 59763, 'fifty-nine thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(23946, 36924, 'thirty-six thousand nine hundred twenty-four'); INSERT INTO t3 VALUES(23947, 75737, 'seventy-five thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(23948, 21297, 'twenty-one thousand two hundred ninety-seven'); INSERT INTO t3 VALUES(23949, 74578, 'seventy-four thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(23950, 65189, 'sixty-five thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(23951, 16955, 'sixteen thousand nine hundred fifty-five'); INSERT INTO t3 VALUES(23952, 13351, 'thirteen thousand three hundred fifty-one'); INSERT INTO t3 VALUES(23953, 74175, 'seventy-four thousand one hundred seventy-five'); INSERT INTO t3 VALUES(23954, 75675, 'seventy-five thousand six hundred seventy-five'); INSERT INTO t3 VALUES(23955, 31054, 'thirty-one thousand fifty-four'); INSERT INTO t3 VALUES(23956, 32687, 'thirty-two thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(23957, 26821, 'twenty-six thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(23958, 47698, 'forty-seven thousand six hundred ninety-eight'); INSERT INTO t3 VALUES(23959, 27589, 'twenty-seven thousand five hundred eighty-nine'); INSERT INTO t3 VALUES(23960, 14029, 'fourteen thousand twenty-nine'); INSERT INTO t3 VALUES(23961, 58632, 'fifty-eight thousand six hundred thirty-two'); INSERT INTO t3 VALUES(23962, 39282, 'thirty-nine thousand two hundred eighty-two'); INSERT INTO t3 VALUES(23963, 80040, 'eighty thousand forty'); INSERT INTO t3 VALUES(23964, 20882, 'twenty thousand eight hundred eighty-two'); INSERT INTO t3 VALUES(23965, 94832, 'ninety-four thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(23966, 21360, 'twenty-one thousand three hundred sixty'); INSERT INTO t3 VALUES(23967, 87114, 'eighty-seven thousand one hundred fourteen'); INSERT INTO t3 VALUES(23968, 39850, 'thirty-nine thousand eight hundred fifty'); INSERT INTO t3 VALUES(23969, 80942, 'eighty thousand nine hundred forty-two'); INSERT INTO t3 VALUES(23970, 64624, 'sixty-four thousand six hundred twenty-four'); INSERT INTO t3 VALUES(23971, 50071, 'fifty thousand seventy-one'); INSERT INTO t3 VALUES(23972, 7611, 'seven thousand six hundred eleven'); INSERT INTO t3 VALUES(23973, 26896, 'twenty-six thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(23974, 25091, 'twenty-five thousand ninety-one'); INSERT INTO t3 VALUES(23975, 55911, 'fifty-five thousand nine hundred eleven'); INSERT INTO t3 VALUES(23976, 78769, 'seventy-eight thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(23977, 61944, 'sixty-one thousand nine hundred forty-four'); INSERT INTO t3 VALUES(23978, 98430, 'ninety-eight thousand four hundred thirty'); INSERT INTO t3 VALUES(23979, 68960, 'sixty-eight thousand nine hundred sixty'); INSERT INTO t3 VALUES(23980, 87121, 'eighty-seven thousand one hundred twenty-one'); INSERT INTO t3 VALUES(23981, 98309, 'ninety-eight thousand three hundred nine'); INSERT INTO t3 VALUES(23982, 88462, 'eighty-eight thousand four hundred sixty-two'); INSERT INTO t3 VALUES(23983, 55234, 'fifty-five thousand two hundred thirty-four'); INSERT INTO t3 VALUES(23984, 21077, 'twenty-one thousand seventy-seven'); INSERT INTO t3 VALUES(23985, 90825, 'ninety thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(23986, 25076, 'twenty-five thousand seventy-six'); INSERT INTO t3 VALUES(23987, 17326, 'seventeen thousand three hundred twenty-six'); INSERT INTO t3 VALUES(23988, 87564, 'eighty-seven thousand five hundred sixty-four'); INSERT INTO t3 VALUES(23989, 52365, 'fifty-two thousand three hundred sixty-five'); INSERT INTO t3 VALUES(23990, 14533, 'fourteen thousand five hundred thirty-three'); INSERT INTO t3 VALUES(23991, 28964, 'twenty-eight thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(23992, 35622, 'thirty-five thousand six hundred twenty-two'); INSERT INTO t3 VALUES(23993, 86396, 'eighty-six thousand three hundred ninety-six'); INSERT INTO t3 VALUES(23994, 86612, 'eighty-six thousand six hundred twelve'); INSERT INTO t3 VALUES(23995, 49887, 'forty-nine thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(23996, 21185, 'twenty-one thousand one hundred eighty-five'); INSERT INTO t3 VALUES(23997, 19313, 'nineteen thousand three hundred thirteen'); INSERT INTO t3 VALUES(23998, 78892, 'seventy-eight thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(23999, 54790, 'fifty-four thousand seven hundred ninety'); INSERT INTO t3 VALUES(24000, 90071, 'ninety thousand seventy-one'); INSERT INTO t3 VALUES(24001, 94931, 'ninety-four thousand nine hundred thirty-one'); INSERT INTO t3 VALUES(24002, 99001, 'ninety-nine thousand one'); INSERT INTO t3 VALUES(24003, 8140, 'eight thousand one hundred forty'); INSERT INTO t3 VALUES(24004, 23335, 'twenty-three thousand three hundred thirty-five'); INSERT INTO t3 VALUES(24005, 55695, 'fifty-five thousand six hundred ninety-five'); INSERT INTO t3 VALUES(24006, 52109, 'fifty-two thousand one hundred nine'); INSERT INTO t3 VALUES(24007, 33912, 'thirty-three thousand nine hundred twelve'); INSERT INTO t3 VALUES(24008, 55636, 'fifty-five thousand six hundred thirty-six'); INSERT INTO t3 VALUES(24009, 27909, 'twenty-seven thousand nine hundred nine'); INSERT INTO t3 VALUES(24010, 55259, 'fifty-five thousand two hundred fifty-nine'); INSERT INTO t3 VALUES(24011, 49855, 'forty-nine thousand eight hundred fifty-five'); INSERT INTO t3 VALUES(24012, 20303, 'twenty thousand three hundred three'); INSERT INTO t3 VALUES(24013, 4110, 'four thousand one hundred ten'); INSERT INTO t3 VALUES(24014, 8022, 'eight thousand twenty-two'); INSERT INTO t3 VALUES(24015, 93612, 'ninety-three thousand six hundred twelve'); INSERT INTO t3 VALUES(24016, 65783, 'sixty-five thousand seven hundred eighty-three'); INSERT INTO t3 VALUES(24017, 95618, 'ninety-five thousand six hundred eighteen'); INSERT INTO t3 VALUES(24018, 12357, 'twelve thousand three hundred fifty-seven'); INSERT INTO t3 VALUES(24019, 23889, 'twenty-three thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(24020, 53220, 'fifty-three thousand two hundred twenty'); INSERT INTO t3 VALUES(24021, 43163, 'forty-three thousand one hundred sixty-three'); INSERT INTO t3 VALUES(24022, 1629, 'one thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(24023, 36, 'thirty-six'); INSERT INTO t3 VALUES(24024, 31719, 'thirty-one thousand seven hundred nineteen'); INSERT INTO t3 VALUES(24025, 59172, 'fifty-nine thousand one hundred seventy-two'); INSERT INTO t3 VALUES(24026, 76172, 'seventy-six thousand one hundred seventy-two'); INSERT INTO t3 VALUES(24027, 21949, 'twenty-one thousand nine hundred forty-nine'); INSERT INTO t3 VALUES(24028, 54965, 'fifty-four thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(24029, 21240, 'twenty-one thousand two hundred forty'); INSERT INTO t3 VALUES(24030, 26377, 'twenty-six thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(24031, 45731, 'forty-five thousand seven hundred thirty-one'); INSERT INTO t3 VALUES(24032, 7966, 'seven thousand nine hundred sixty-six'); INSERT INTO t3 VALUES(24033, 39163, 'thirty-nine thousand one hundred sixty-three'); INSERT INTO t3 VALUES(24034, 47215, 'forty-seven thousand two hundred fifteen'); INSERT INTO t3 VALUES(24035, 83299, 'eighty-three thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(24036, 15845, 'fifteen thousand eight hundred forty-five'); INSERT INTO t3 VALUES(24037, 87940, 'eighty-seven thousand nine hundred forty'); INSERT INTO t3 VALUES(24038, 15816, 'fifteen thousand eight hundred sixteen'); INSERT INTO t3 VALUES(24039, 29868, 'twenty-nine thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(24040, 37258, 'thirty-seven thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(24041, 40164, 'forty thousand one hundred sixty-four'); INSERT INTO t3 VALUES(24042, 3427, 'three thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(24043, 88676, 'eighty-eight thousand six hundred seventy-six'); INSERT INTO t3 VALUES(24044, 19320, 'nineteen thousand three hundred twenty'); INSERT INTO t3 VALUES(24045, 54068, 'fifty-four thousand sixty-eight'); INSERT INTO t3 VALUES(24046, 87190, 'eighty-seven thousand one hundred ninety'); INSERT INTO t3 VALUES(24047, 66933, 'sixty-six thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(24048, 23351, 'twenty-three thousand three hundred fifty-one'); INSERT INTO t3 VALUES(24049, 21806, 'twenty-one thousand eight hundred six'); INSERT INTO t3 VALUES(24050, 62236, 'sixty-two thousand two hundred thirty-six'); INSERT INTO t3 VALUES(24051, 54484, 'fifty-four thousand four hundred eighty-four'); INSERT INTO t3 VALUES(24052, 29894, 'twenty-nine thousand eight hundred ninety-four'); INSERT INTO t3 VALUES(24053, 97769, 'ninety-seven thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(24054, 95203, 'ninety-five thousand two hundred three'); INSERT INTO t3 VALUES(24055, 75525, 'seventy-five thousand five hundred twenty-five'); INSERT INTO t3 VALUES(24056, 30261, 'thirty thousand two hundred sixty-one'); INSERT INTO t3 VALUES(24057, 44374, 'forty-four thousand three hundred seventy-four'); INSERT INTO t3 VALUES(24058, 49104, 'forty-nine thousand one hundred four'); INSERT INTO t3 VALUES(24059, 92160, 'ninety-two thousand one hundred sixty'); INSERT INTO t3 VALUES(24060, 36988, 'thirty-six thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(24061, 46423, 'forty-six thousand four hundred twenty-three'); INSERT INTO t3 VALUES(24062, 74489, 'seventy-four thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(24063, 16584, 'sixteen thousand five hundred eighty-four'); INSERT INTO t3 VALUES(24064, 5688, 'five thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(24065, 92117, 'ninety-two thousand one hundred seventeen'); INSERT INTO t3 VALUES(24066, 90923, 'ninety thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(24067, 21477, 'twenty-one thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(24068, 70451, 'seventy thousand four hundred fifty-one'); INSERT INTO t3 VALUES(24069, 14295, 'fourteen thousand two hundred ninety-five'); INSERT INTO t3 VALUES(24070, 81918, 'eighty-one thousand nine hundred eighteen'); INSERT INTO t3 VALUES(24071, 26764, 'twenty-six thousand seven hundred sixty-four'); INSERT INTO t3 VALUES(24072, 60454, 'sixty thousand four hundred fifty-four'); INSERT INTO t3 VALUES(24073, 16923, 'sixteen thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(24074, 22959, 'twenty-two thousand nine hundred fifty-nine'); INSERT INTO t3 VALUES(24075, 2292, 'two thousand two hundred ninety-two'); INSERT INTO t3 VALUES(24076, 71398, 'seventy-one thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(24077, 56500, 'fifty-six thousand five hundred'); INSERT INTO t3 VALUES(24078, 35466, 'thirty-five thousand four hundred sixty-six'); INSERT INTO t3 VALUES(24079, 60552, 'sixty thousand five hundred fifty-two'); INSERT INTO t3 VALUES(24080, 39432, 'thirty-nine thousand four hundred thirty-two'); INSERT INTO t3 VALUES(24081, 22183, 'twenty-two thousand one hundred eighty-three'); INSERT INTO t3 VALUES(24082, 20019, 'twenty thousand nineteen'); INSERT INTO t3 VALUES(24083, 84798, 'eighty-four thousand seven hundred ninety-eight'); INSERT INTO t3 VALUES(24084, 35652, 'thirty-five thousand six hundred fifty-two'); INSERT INTO t3 VALUES(24085, 43387, 'forty-three thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(24086, 41270, 'forty-one thousand two hundred seventy'); INSERT INTO t3 VALUES(24087, 57567, 'fifty-seven thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(24088, 56276, 'fifty-six thousand two hundred seventy-six'); INSERT INTO t3 VALUES(24089, 49037, 'forty-nine thousand thirty-seven'); INSERT INTO t3 VALUES(24090, 96718, 'ninety-six thousand seven hundred eighteen'); INSERT INTO t3 VALUES(24091, 83590, 'eighty-three thousand five hundred ninety'); INSERT INTO t3 VALUES(24092, 52886, 'fifty-two thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(24093, 59046, 'fifty-nine thousand forty-six'); INSERT INTO t3 VALUES(24094, 50641, 'fifty thousand six hundred forty-one'); INSERT INTO t3 VALUES(24095, 41908, 'forty-one thousand nine hundred eight'); INSERT INTO t3 VALUES(24096, 56235, 'fifty-six thousand two hundred thirty-five'); INSERT INTO t3 VALUES(24097, 68318, 'sixty-eight thousand three hundred eighteen'); INSERT INTO t3 VALUES(24098, 20710, 'twenty thousand seven hundred ten'); INSERT INTO t3 VALUES(24099, 74069, 'seventy-four thousand sixty-nine'); INSERT INTO t3 VALUES(24100, 99157, 'ninety-nine thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(24101, 34599, 'thirty-four thousand five hundred ninety-nine'); INSERT INTO t3 VALUES(24102, 55257, 'fifty-five thousand two hundred fifty-seven'); INSERT INTO t3 VALUES(24103, 75281, 'seventy-five thousand two hundred eighty-one'); INSERT INTO t3 VALUES(24104, 54087, 'fifty-four thousand eighty-seven'); INSERT INTO t3 VALUES(24105, 71767, 'seventy-one thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(24106, 6888, 'six thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(24107, 84461, 'eighty-four thousand four hundred sixty-one'); INSERT INTO t3 VALUES(24108, 51451, 'fifty-one thousand four hundred fifty-one'); INSERT INTO t3 VALUES(24109, 85769, 'eighty-five thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(24110, 16592, 'sixteen thousand five hundred ninety-two'); INSERT INTO t3 VALUES(24111, 1479, 'one thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(24112, 58823, 'fifty-eight thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(24113, 70422, 'seventy thousand four hundred twenty-two'); INSERT INTO t3 VALUES(24114, 87284, 'eighty-seven thousand two hundred eighty-four'); INSERT INTO t3 VALUES(24115, 1718, 'one thousand seven hundred eighteen'); INSERT INTO t3 VALUES(24116, 87246, 'eighty-seven thousand two hundred forty-six'); INSERT INTO t3 VALUES(24117, 16900, 'sixteen thousand nine hundred'); INSERT INTO t3 VALUES(24118, 7435, 'seven thousand four hundred thirty-five'); INSERT INTO t3 VALUES(24119, 45711, 'forty-five thousand seven hundred eleven'); INSERT INTO t3 VALUES(24120, 40317, 'forty thousand three hundred seventeen'); INSERT INTO t3 VALUES(24121, 79996, 'seventy-nine thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(24122, 2859, 'two thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(24123, 6234, 'six thousand two hundred thirty-four'); INSERT INTO t3 VALUES(24124, 77863, 'seventy-seven thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(24125, 73021, 'seventy-three thousand twenty-one'); INSERT INTO t3 VALUES(24126, 45377, 'forty-five thousand three hundred seventy-seven'); INSERT INTO t3 VALUES(24127, 17756, 'seventeen thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(24128, 744, 'seven hundred forty-four'); INSERT INTO t3 VALUES(24129, 37629, 'thirty-seven thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(24130, 75416, 'seventy-five thousand four hundred sixteen'); INSERT INTO t3 VALUES(24131, 88361, 'eighty-eight thousand three hundred sixty-one'); INSERT INTO t3 VALUES(24132, 86522, 'eighty-six thousand five hundred twenty-two'); INSERT INTO t3 VALUES(24133, 55572, 'fifty-five thousand five hundred seventy-two'); INSERT INTO t3 VALUES(24134, 94502, 'ninety-four thousand five hundred two'); INSERT INTO t3 VALUES(24135, 66135, 'sixty-six thousand one hundred thirty-five'); INSERT INTO t3 VALUES(24136, 19773, 'nineteen thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(24137, 5160, 'five thousand one hundred sixty'); INSERT INTO t3 VALUES(24138, 57793, 'fifty-seven thousand seven hundred ninety-three'); INSERT INTO t3 VALUES(24139, 96035, 'ninety-six thousand thirty-five'); INSERT INTO t3 VALUES(24140, 90243, 'ninety thousand two hundred forty-three'); INSERT INTO t3 VALUES(24141, 96147, 'ninety-six thousand one hundred forty-seven'); INSERT INTO t3 VALUES(24142, 50901, 'fifty thousand nine hundred one'); INSERT INTO t3 VALUES(24143, 61566, 'sixty-one thousand five hundred sixty-six'); INSERT INTO t3 VALUES(24144, 26813, 'twenty-six thousand eight hundred thirteen'); INSERT INTO t3 VALUES(24145, 36899, 'thirty-six thousand eight hundred ninety-nine'); INSERT INTO t3 VALUES(24146, 63756, 'sixty-three thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(24147, 86063, 'eighty-six thousand sixty-three'); INSERT INTO t3 VALUES(24148, 18273, 'eighteen thousand two hundred seventy-three'); INSERT INTO t3 VALUES(24149, 32548, 'thirty-two thousand five hundred forty-eight'); INSERT INTO t3 VALUES(24150, 49109, 'forty-nine thousand one hundred nine'); INSERT INTO t3 VALUES(24151, 26996, 'twenty-six thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(24152, 80234, 'eighty thousand two hundred thirty-four'); INSERT INTO t3 VALUES(24153, 91248, 'ninety-one thousand two hundred forty-eight'); INSERT INTO t3 VALUES(24154, 84814, 'eighty-four thousand eight hundred fourteen'); INSERT INTO t3 VALUES(24155, 45555, 'forty-five thousand five hundred fifty-five'); INSERT INTO t3 VALUES(24156, 20686, 'twenty thousand six hundred eighty-six'); INSERT INTO t3 VALUES(24157, 1059, 'one thousand fifty-nine'); INSERT INTO t3 VALUES(24158, 70472, 'seventy thousand four hundred seventy-two'); INSERT INTO t3 VALUES(24159, 9753, 'nine thousand seven hundred fifty-three'); INSERT INTO t3 VALUES(24160, 74767, 'seventy-four thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(24161, 42393, 'forty-two thousand three hundred ninety-three'); INSERT INTO t3 VALUES(24162, 6867, 'six thousand eight hundred sixty-seven'); INSERT INTO t3 VALUES(24163, 36977, 'thirty-six thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(24164, 82076, 'eighty-two thousand seventy-six'); INSERT INTO t3 VALUES(24165, 57751, 'fifty-seven thousand seven hundred fifty-one'); INSERT INTO t3 VALUES(24166, 62165, 'sixty-two thousand one hundred sixty-five'); INSERT INTO t3 VALUES(24167, 76151, 'seventy-six thousand one hundred fifty-one'); INSERT INTO t3 VALUES(24168, 27540, 'twenty-seven thousand five hundred forty'); INSERT INTO t3 VALUES(24169, 5612, 'five thousand six hundred twelve'); INSERT INTO t3 VALUES(24170, 46837, 'forty-six thousand eight hundred thirty-seven'); INSERT INTO t3 VALUES(24171, 86651, 'eighty-six thousand six hundred fifty-one'); INSERT INTO t3 VALUES(24172, 1344, 'one thousand three hundred forty-four'); INSERT INTO t3 VALUES(24173, 27004, 'twenty-seven thousand four'); INSERT INTO t3 VALUES(24174, 32518, 'thirty-two thousand five hundred eighteen'); INSERT INTO t3 VALUES(24175, 35958, 'thirty-five thousand nine hundred fifty-eight'); INSERT INTO t3 VALUES(24176, 73739, 'seventy-three thousand seven hundred thirty-nine'); INSERT INTO t3 VALUES(24177, 99477, 'ninety-nine thousand four hundred seventy-seven'); INSERT INTO t3 VALUES(24178, 42384, 'forty-two thousand three hundred eighty-four'); INSERT INTO t3 VALUES(24179, 57017, 'fifty-seven thousand seventeen'); INSERT INTO t3 VALUES(24180, 30865, 'thirty thousand eight hundred sixty-five'); INSERT INTO t3 VALUES(24181, 6790, 'six thousand seven hundred ninety'); INSERT INTO t3 VALUES(24182, 46218, 'forty-six thousand two hundred eighteen'); INSERT INTO t3 VALUES(24183, 63425, 'sixty-three thousand four hundred twenty-five'); INSERT INTO t3 VALUES(24184, 1656, 'one thousand six hundred fifty-six'); INSERT INTO t3 VALUES(24185, 60484, 'sixty thousand four hundred eighty-four'); INSERT INTO t3 VALUES(24186, 57439, 'fifty-seven thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(24187, 26347, 'twenty-six thousand three hundred forty-seven'); INSERT INTO t3 VALUES(24188, 99269, 'ninety-nine thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(24189, 85963, 'eighty-five thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(24190, 60815, 'sixty thousand eight hundred fifteen'); INSERT INTO t3 VALUES(24191, 61964, 'sixty-one thousand nine hundred sixty-four'); INSERT INTO t3 VALUES(24192, 70323, 'seventy thousand three hundred twenty-three'); INSERT INTO t3 VALUES(24193, 43133, 'forty-three thousand one hundred thirty-three'); INSERT INTO t3 VALUES(24194, 54654, 'fifty-four thousand six hundred fifty-four'); INSERT INTO t3 VALUES(24195, 65737, 'sixty-five thousand seven hundred thirty-seven'); INSERT INTO t3 VALUES(24196, 19142, 'nineteen thousand one hundred forty-two'); INSERT INTO t3 VALUES(24197, 82550, 'eighty-two thousand five hundred fifty'); INSERT INTO t3 VALUES(24198, 30351, 'thirty thousand three hundred fifty-one'); INSERT INTO t3 VALUES(24199, 90266, 'ninety thousand two hundred sixty-six'); INSERT INTO t3 VALUES(24200, 20746, 'twenty thousand seven hundred forty-six'); INSERT INTO t3 VALUES(24201, 87818, 'eighty-seven thousand eight hundred eighteen'); INSERT INTO t3 VALUES(24202, 6139, 'six thousand one hundred thirty-nine'); INSERT INTO t3 VALUES(24203, 53332, 'fifty-three thousand three hundred thirty-two'); INSERT INTO t3 VALUES(24204, 23784, 'twenty-three thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(24205, 34886, 'thirty-four thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(24206, 76745, 'seventy-six thousand seven hundred forty-five'); INSERT INTO t3 VALUES(24207, 88544, 'eighty-eight thousand five hundred forty-four'); INSERT INTO t3 VALUES(24208, 39137, 'thirty-nine thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(24209, 32481, 'thirty-two thousand four hundred eighty-one'); INSERT INTO t3 VALUES(24210, 30267, 'thirty thousand two hundred sixty-seven'); INSERT INTO t3 VALUES(24211, 83100, 'eighty-three thousand one hundred'); INSERT INTO t3 VALUES(24212, 18315, 'eighteen thousand three hundred fifteen'); INSERT INTO t3 VALUES(24213, 30801, 'thirty thousand eight hundred one'); INSERT INTO t3 VALUES(24214, 71607, 'seventy-one thousand six hundred seven'); INSERT INTO t3 VALUES(24215, 88756, 'eighty-eight thousand seven hundred fifty-six'); INSERT INTO t3 VALUES(24216, 85504, 'eighty-five thousand five hundred four'); INSERT INTO t3 VALUES(24217, 32305, 'thirty-two thousand three hundred five'); INSERT INTO t3 VALUES(24218, 10714, 'ten thousand seven hundred fourteen'); INSERT INTO t3 VALUES(24219, 90610, 'ninety thousand six hundred ten'); INSERT INTO t3 VALUES(24220, 75072, 'seventy-five thousand seventy-two'); INSERT INTO t3 VALUES(24221, 99570, 'ninety-nine thousand five hundred seventy'); INSERT INTO t3 VALUES(24222, 9757, 'nine thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(24223, 49580, 'forty-nine thousand five hundred eighty'); INSERT INTO t3 VALUES(24224, 55609, 'fifty-five thousand six hundred nine'); INSERT INTO t3 VALUES(24225, 17004, 'seventeen thousand four'); INSERT INTO t3 VALUES(24226, 20095, 'twenty thousand ninety-five'); INSERT INTO t3 VALUES(24227, 85427, 'eighty-five thousand four hundred twenty-seven'); INSERT INTO t3 VALUES(24228, 90566, 'ninety thousand five hundred sixty-six'); INSERT INTO t3 VALUES(24229, 70564, 'seventy thousand five hundred sixty-four'); INSERT INTO t3 VALUES(24230, 54460, 'fifty-four thousand four hundred sixty'); INSERT INTO t3 VALUES(24231, 18412, 'eighteen thousand four hundred twelve'); INSERT INTO t3 VALUES(24232, 21185, 'twenty-one thousand one hundred eighty-five'); INSERT INTO t3 VALUES(24233, 60896, 'sixty thousand eight hundred ninety-six'); INSERT INTO t3 VALUES(24234, 30189, 'thirty thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(24235, 3247, 'three thousand two hundred forty-seven'); INSERT INTO t3 VALUES(24236, 75625, 'seventy-five thousand six hundred twenty-five'); INSERT INTO t3 VALUES(24237, 14206, 'fourteen thousand two hundred six'); INSERT INTO t3 VALUES(24238, 61125, 'sixty-one thousand one hundred twenty-five'); INSERT INTO t3 VALUES(24239, 60035, 'sixty thousand thirty-five'); INSERT INTO t3 VALUES(24240, 46132, 'forty-six thousand one hundred thirty-two'); INSERT INTO t3 VALUES(24241, 4114, 'four thousand one hundred fourteen'); INSERT INTO t3 VALUES(24242, 67192, 'sixty-seven thousand one hundred ninety-two'); INSERT INTO t3 VALUES(24243, 34113, 'thirty-four thousand one hundred thirteen'); INSERT INTO t3 VALUES(24244, 89568, 'eighty-nine thousand five hundred sixty-eight'); INSERT INTO t3 VALUES(24245, 67747, 'sixty-seven thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(24246, 90778, 'ninety thousand seven hundred seventy-eight'); INSERT INTO t3 VALUES(24247, 55695, 'fifty-five thousand six hundred ninety-five'); INSERT INTO t3 VALUES(24248, 4052, 'four thousand fifty-two'); INSERT INTO t3 VALUES(24249, 9363, 'nine thousand three hundred sixty-three'); INSERT INTO t3 VALUES(24250, 47164, 'forty-seven thousand one hundred sixty-four'); INSERT INTO t3 VALUES(24251, 89184, 'eighty-nine thousand one hundred eighty-four'); INSERT INTO t3 VALUES(24252, 45096, 'forty-five thousand ninety-six'); INSERT INTO t3 VALUES(24253, 92163, 'ninety-two thousand one hundred sixty-three'); INSERT INTO t3 VALUES(24254, 29439, 'twenty-nine thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(24255, 70999, 'seventy thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(24256, 7325, 'seven thousand three hundred twenty-five'); INSERT INTO t3 VALUES(24257, 81525, 'eighty-one thousand five hundred twenty-five'); INSERT INTO t3 VALUES(24258, 34198, 'thirty-four thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(24259, 87047, 'eighty-seven thousand forty-seven'); INSERT INTO t3 VALUES(24260, 95417, 'ninety-five thousand four hundred seventeen'); INSERT INTO t3 VALUES(24261, 12295, 'twelve thousand two hundred ninety-five'); INSERT INTO t3 VALUES(24262, 53309, 'fifty-three thousand three hundred nine'); INSERT INTO t3 VALUES(24263, 94748, 'ninety-four thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(24264, 51279, 'fifty-one thousand two hundred seventy-nine'); INSERT INTO t3 VALUES(24265, 9246, 'nine thousand two hundred forty-six'); INSERT INTO t3 VALUES(24266, 26322, 'twenty-six thousand three hundred twenty-two'); INSERT INTO t3 VALUES(24267, 99822, 'ninety-nine thousand eight hundred twenty-two'); INSERT INTO t3 VALUES(24268, 22495, 'twenty-two thousand four hundred ninety-five'); INSERT INTO t3 VALUES(24269, 86576, 'eighty-six thousand five hundred seventy-six'); INSERT INTO t3 VALUES(24270, 6341, 'six thousand three hundred forty-one'); INSERT INTO t3 VALUES(24271, 19839, 'nineteen thousand eight hundred thirty-nine'); INSERT INTO t3 VALUES(24272, 14212, 'fourteen thousand two hundred twelve'); INSERT INTO t3 VALUES(24273, 7512, 'seven thousand five hundred twelve'); INSERT INTO t3 VALUES(24274, 3569, 'three thousand five hundred sixty-nine'); INSERT INTO t3 VALUES(24275, 30740, 'thirty thousand seven hundred forty'); INSERT INTO t3 VALUES(24276, 22887, 'twenty-two thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(24277, 90008, 'ninety thousand eight'); INSERT INTO t3 VALUES(24278, 11432, 'eleven thousand four hundred thirty-two'); INSERT INTO t3 VALUES(24279, 9524, 'nine thousand five hundred twenty-four'); INSERT INTO t3 VALUES(24280, 8545, 'eight thousand five hundred forty-five'); INSERT INTO t3 VALUES(24281, 24301, 'twenty-four thousand three hundred one'); INSERT INTO t3 VALUES(24282, 27592, 'twenty-seven thousand five hundred ninety-two'); INSERT INTO t3 VALUES(24283, 46187, 'forty-six thousand one hundred eighty-seven'); INSERT INTO t3 VALUES(24284, 87906, 'eighty-seven thousand nine hundred six'); INSERT INTO t3 VALUES(24285, 82874, 'eighty-two thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(24286, 14103, 'fourteen thousand one hundred three'); INSERT INTO t3 VALUES(24287, 36336, 'thirty-six thousand three hundred thirty-six'); INSERT INTO t3 VALUES(24288, 413, 'four hundred thirteen'); INSERT INTO t3 VALUES(24289, 80380, 'eighty thousand three hundred eighty'); INSERT INTO t3 VALUES(24290, 12130, 'twelve thousand one hundred thirty'); INSERT INTO t3 VALUES(24291, 33388, 'thirty-three thousand three hundred eighty-eight'); INSERT INTO t3 VALUES(24292, 27234, 'twenty-seven thousand two hundred thirty-four'); INSERT INTO t3 VALUES(24293, 23303, 'twenty-three thousand three hundred three'); INSERT INTO t3 VALUES(24294, 23785, 'twenty-three thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(24295, 58047, 'fifty-eight thousand forty-seven'); INSERT INTO t3 VALUES(24296, 86222, 'eighty-six thousand two hundred twenty-two'); INSERT INTO t3 VALUES(24297, 72942, 'seventy-two thousand nine hundred forty-two'); INSERT INTO t3 VALUES(24298, 34234, 'thirty-four thousand two hundred thirty-four'); INSERT INTO t3 VALUES(24299, 95952, 'ninety-five thousand nine hundred fifty-two'); INSERT INTO t3 VALUES(24300, 67529, 'sixty-seven thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(24301, 20170, 'twenty thousand one hundred seventy'); INSERT INTO t3 VALUES(24302, 16044, 'sixteen thousand forty-four'); INSERT INTO t3 VALUES(24303, 13010, 'thirteen thousand ten'); INSERT INTO t3 VALUES(24304, 61784, 'sixty-one thousand seven hundred eighty-four'); INSERT INTO t3 VALUES(24305, 67607, 'sixty-seven thousand six hundred seven'); INSERT INTO t3 VALUES(24306, 66520, 'sixty-six thousand five hundred twenty'); INSERT INTO t3 VALUES(24307, 24561, 'twenty-four thousand five hundred sixty-one'); INSERT INTO t3 VALUES(24308, 21322, 'twenty-one thousand three hundred twenty-two'); INSERT INTO t3 VALUES(24309, 91048, 'ninety-one thousand forty-eight'); INSERT INTO t3 VALUES(24310, 62144, 'sixty-two thousand one hundred forty-four'); INSERT INTO t3 VALUES(24311, 82240, 'eighty-two thousand two hundred forty'); INSERT INTO t3 VALUES(24312, 37167, 'thirty-seven thousand one hundred sixty-seven'); INSERT INTO t3 VALUES(24313, 64451, 'sixty-four thousand four hundred fifty-one'); INSERT INTO t3 VALUES(24314, 77498, 'seventy-seven thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(24315, 92266, 'ninety-two thousand two hundred sixty-six'); INSERT INTO t3 VALUES(24316, 98716, 'ninety-eight thousand seven hundred sixteen'); INSERT INTO t3 VALUES(24317, 86872, 'eighty-six thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(24318, 23925, 'twenty-three thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(24319, 99540, 'ninety-nine thousand five hundred forty'); INSERT INTO t3 VALUES(24320, 17365, 'seventeen thousand three hundred sixty-five'); INSERT INTO t3 VALUES(24321, 37740, 'thirty-seven thousand seven hundred forty'); INSERT INTO t3 VALUES(24322, 4820, 'four thousand eight hundred twenty'); INSERT INTO t3 VALUES(24323, 42174, 'forty-two thousand one hundred seventy-four'); INSERT INTO t3 VALUES(24324, 70809, 'seventy thousand eight hundred nine'); INSERT INTO t3 VALUES(24325, 40942, 'forty thousand nine hundred forty-two'); INSERT INTO t3 VALUES(24326, 16925, 'sixteen thousand nine hundred twenty-five'); INSERT INTO t3 VALUES(24327, 33847, 'thirty-three thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(24328, 16270, 'sixteen thousand two hundred seventy'); INSERT INTO t3 VALUES(24329, 49039, 'forty-nine thousand thirty-nine'); INSERT INTO t3 VALUES(24330, 97879, 'ninety-seven thousand eight hundred seventy-nine'); INSERT INTO t3 VALUES(24331, 38094, 'thirty-eight thousand ninety-four'); INSERT INTO t3 VALUES(24332, 10820, 'ten thousand eight hundred twenty'); INSERT INTO t3 VALUES(24333, 42248, 'forty-two thousand two hundred forty-eight'); INSERT INTO t3 VALUES(24334, 4932, 'four thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(24335, 94550, 'ninety-four thousand five hundred fifty'); INSERT INTO t3 VALUES(24336, 44146, 'forty-four thousand one hundred forty-six'); INSERT INTO t3 VALUES(24337, 68447, 'sixty-eight thousand four hundred forty-seven'); INSERT INTO t3 VALUES(24338, 4194, 'four thousand one hundred ninety-four'); INSERT INTO t3 VALUES(24339, 35231, 'thirty-five thousand two hundred thirty-one'); INSERT INTO t3 VALUES(24340, 14755, 'fourteen thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(24341, 44146, 'forty-four thousand one hundred forty-six'); INSERT INTO t3 VALUES(24342, 38066, 'thirty-eight thousand sixty-six'); INSERT INTO t3 VALUES(24343, 22902, 'twenty-two thousand nine hundred two'); INSERT INTO t3 VALUES(24344, 93823, 'ninety-three thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(24345, 86633, 'eighty-six thousand six hundred thirty-three'); INSERT INTO t3 VALUES(24346, 72782, 'seventy-two thousand seven hundred eighty-two'); INSERT INTO t3 VALUES(24347, 27207, 'twenty-seven thousand two hundred seven'); INSERT INTO t3 VALUES(24348, 68015, 'sixty-eight thousand fifteen'); INSERT INTO t3 VALUES(24349, 30868, 'thirty thousand eight hundred sixty-eight'); INSERT INTO t3 VALUES(24350, 70852, 'seventy thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(24351, 56358, 'fifty-six thousand three hundred fifty-eight'); INSERT INTO t3 VALUES(24352, 57722, 'fifty-seven thousand seven hundred twenty-two'); INSERT INTO t3 VALUES(24353, 67819, 'sixty-seven thousand eight hundred nineteen'); INSERT INTO t3 VALUES(24354, 869, 'eight hundred sixty-nine'); INSERT INTO t3 VALUES(24355, 23457, 'twenty-three thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(24356, 72507, 'seventy-two thousand five hundred seven'); INSERT INTO t3 VALUES(24357, 90593, 'ninety thousand five hundred ninety-three'); INSERT INTO t3 VALUES(24358, 29056, 'twenty-nine thousand fifty-six'); INSERT INTO t3 VALUES(24359, 73383, 'seventy-three thousand three hundred eighty-three'); INSERT INTO t3 VALUES(24360, 81575, 'eighty-one thousand five hundred seventy-five'); INSERT INTO t3 VALUES(24361, 52289, 'fifty-two thousand two hundred eighty-nine'); INSERT INTO t3 VALUES(24362, 48070, 'forty-eight thousand seventy'); INSERT INTO t3 VALUES(24363, 2194, 'two thousand one hundred ninety-four'); INSERT INTO t3 VALUES(24364, 88547, 'eighty-eight thousand five hundred forty-seven'); INSERT INTO t3 VALUES(24365, 37819, 'thirty-seven thousand eight hundred nineteen'); INSERT INTO t3 VALUES(24366, 50800, 'fifty thousand eight hundred'); INSERT INTO t3 VALUES(24367, 47428, 'forty-seven thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(24368, 75210, 'seventy-five thousand two hundred ten'); INSERT INTO t3 VALUES(24369, 82060, 'eighty-two thousand sixty'); INSERT INTO t3 VALUES(24370, 70475, 'seventy thousand four hundred seventy-five'); INSERT INTO t3 VALUES(24371, 90114, 'ninety thousand one hundred fourteen'); INSERT INTO t3 VALUES(24372, 2140, 'two thousand one hundred forty'); INSERT INTO t3 VALUES(24373, 38748, 'thirty-eight thousand seven hundred forty-eight'); INSERT INTO t3 VALUES(24374, 38895, 'thirty-eight thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(24375, 56230, 'fifty-six thousand two hundred thirty'); INSERT INTO t3 VALUES(24376, 89212, 'eighty-nine thousand two hundred twelve'); INSERT INTO t3 VALUES(24377, 50995, 'fifty thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(24378, 8667, 'eight thousand six hundred sixty-seven'); INSERT INTO t3 VALUES(24379, 76985, 'seventy-six thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(24380, 19323, 'nineteen thousand three hundred twenty-three'); INSERT INTO t3 VALUES(24381, 28715, 'twenty-eight thousand seven hundred fifteen'); INSERT INTO t3 VALUES(24382, 95333, 'ninety-five thousand three hundred thirty-three'); INSERT INTO t3 VALUES(24383, 87775, 'eighty-seven thousand seven hundred seventy-five'); INSERT INTO t3 VALUES(24384, 79217, 'seventy-nine thousand two hundred seventeen'); INSERT INTO t3 VALUES(24385, 17528, 'seventeen thousand five hundred twenty-eight'); INSERT INTO t3 VALUES(24386, 19807, 'nineteen thousand eight hundred seven'); INSERT INTO t3 VALUES(24387, 50780, 'fifty thousand seven hundred eighty'); INSERT INTO t3 VALUES(24388, 1177, 'one thousand one hundred seventy-seven'); INSERT INTO t3 VALUES(24389, 2770, 'two thousand seven hundred seventy'); INSERT INTO t3 VALUES(24390, 23640, 'twenty-three thousand six hundred forty'); INSERT INTO t3 VALUES(24391, 3431, 'three thousand four hundred thirty-one'); INSERT INTO t3 VALUES(24392, 38215, 'thirty-eight thousand two hundred fifteen'); INSERT INTO t3 VALUES(24393, 54120, 'fifty-four thousand one hundred twenty'); INSERT INTO t3 VALUES(24394, 27689, 'twenty-seven thousand six hundred eighty-nine'); INSERT INTO t3 VALUES(24395, 76466, 'seventy-six thousand four hundred sixty-six'); INSERT INTO t3 VALUES(24396, 11482, 'eleven thousand four hundred eighty-two'); INSERT INTO t3 VALUES(24397, 34690, 'thirty-four thousand six hundred ninety'); INSERT INTO t3 VALUES(24398, 16757, 'sixteen thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(24399, 2875, 'two thousand eight hundred seventy-five'); INSERT INTO t3 VALUES(24400, 68747, 'sixty-eight thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(24401, 67288, 'sixty-seven thousand two hundred eighty-eight'); INSERT INTO t3 VALUES(24402, 93617, 'ninety-three thousand six hundred seventeen'); INSERT INTO t3 VALUES(24403, 35251, 'thirty-five thousand two hundred fifty-one'); INSERT INTO t3 VALUES(24404, 9498, 'nine thousand four hundred ninety-eight'); INSERT INTO t3 VALUES(24405, 96559, 'ninety-six thousand five hundred fifty-nine'); INSERT INTO t3 VALUES(24406, 91503, 'ninety-one thousand five hundred three'); INSERT INTO t3 VALUES(24407, 66708, 'sixty-six thousand seven hundred eight'); INSERT INTO t3 VALUES(24408, 61119, 'sixty-one thousand one hundred nineteen'); INSERT INTO t3 VALUES(24409, 48100, 'forty-eight thousand one hundred'); INSERT INTO t3 VALUES(24410, 40588, 'forty thousand five hundred eighty-eight'); INSERT INTO t3 VALUES(24411, 16282, 'sixteen thousand two hundred eighty-two'); INSERT INTO t3 VALUES(24412, 19994, 'nineteen thousand nine hundred ninety-four'); INSERT INTO t3 VALUES(24413, 93293, 'ninety-three thousand two hundred ninety-three'); INSERT INTO t3 VALUES(24414, 75901, 'seventy-five thousand nine hundred one'); INSERT INTO t3 VALUES(24415, 62213, 'sixty-two thousand two hundred thirteen'); INSERT INTO t3 VALUES(24416, 45938, 'forty-five thousand nine hundred thirty-eight'); INSERT INTO t3 VALUES(24417, 23092, 'twenty-three thousand ninety-two'); INSERT INTO t3 VALUES(24418, 10660, 'ten thousand six hundred sixty'); INSERT INTO t3 VALUES(24419, 90159, 'ninety thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(24420, 35123, 'thirty-five thousand one hundred twenty-three'); INSERT INTO t3 VALUES(24421, 77560, 'seventy-seven thousand five hundred sixty'); INSERT INTO t3 VALUES(24422, 34337, 'thirty-four thousand three hundred thirty-seven'); INSERT INTO t3 VALUES(24423, 90351, 'ninety thousand three hundred fifty-one'); INSERT INTO t3 VALUES(24424, 37659, 'thirty-seven thousand six hundred fifty-nine'); INSERT INTO t3 VALUES(24425, 35335, 'thirty-five thousand three hundred thirty-five'); INSERT INTO t3 VALUES(24426, 93515, 'ninety-three thousand five hundred fifteen'); INSERT INTO t3 VALUES(24427, 19652, 'nineteen thousand six hundred fifty-two'); INSERT INTO t3 VALUES(24428, 86115, 'eighty-six thousand one hundred fifteen'); INSERT INTO t3 VALUES(24429, 27073, 'twenty-seven thousand seventy-three'); INSERT INTO t3 VALUES(24430, 14415, 'fourteen thousand four hundred fifteen'); INSERT INTO t3 VALUES(24431, 47214, 'forty-seven thousand two hundred fourteen'); INSERT INTO t3 VALUES(24432, 48815, 'forty-eight thousand eight hundred fifteen'); INSERT INTO t3 VALUES(24433, 24870, 'twenty-four thousand eight hundred seventy'); INSERT INTO t3 VALUES(24434, 58889, 'fifty-eight thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(24435, 71158, 'seventy-one thousand one hundred fifty-eight'); INSERT INTO t3 VALUES(24436, 39961, 'thirty-nine thousand nine hundred sixty-one'); INSERT INTO t3 VALUES(24437, 98540, 'ninety-eight thousand five hundred forty'); INSERT INTO t3 VALUES(24438, 37466, 'thirty-seven thousand four hundred sixty-six'); INSERT INTO t3 VALUES(24439, 56040, 'fifty-six thousand forty'); INSERT INTO t3 VALUES(24440, 70629, 'seventy thousand six hundred twenty-nine'); INSERT INTO t3 VALUES(24441, 37860, 'thirty-seven thousand eight hundred sixty'); INSERT INTO t3 VALUES(24442, 15740, 'fifteen thousand seven hundred forty'); INSERT INTO t3 VALUES(24443, 93234, 'ninety-three thousand two hundred thirty-four'); INSERT INTO t3 VALUES(24444, 89390, 'eighty-nine thousand three hundred ninety'); INSERT INTO t3 VALUES(24445, 14526, 'fourteen thousand five hundred twenty-six'); INSERT INTO t3 VALUES(24446, 97962, 'ninety-seven thousand nine hundred sixty-two'); INSERT INTO t3 VALUES(24447, 42909, 'forty-two thousand nine hundred nine'); INSERT INTO t3 VALUES(24448, 74360, 'seventy-four thousand three hundred sixty'); INSERT INTO t3 VALUES(24449, 60817, 'sixty thousand eight hundred seventeen'); INSERT INTO t3 VALUES(24450, 25841, 'twenty-five thousand eight hundred forty-one'); INSERT INTO t3 VALUES(24451, 9101, 'nine thousand one hundred one'); INSERT INTO t3 VALUES(24452, 18890, 'eighteen thousand eight hundred ninety'); INSERT INTO t3 VALUES(24453, 81233, 'eighty-one thousand two hundred thirty-three'); INSERT INTO t3 VALUES(24454, 92974, 'ninety-two thousand nine hundred seventy-four'); INSERT INTO t3 VALUES(24455, 89356, 'eighty-nine thousand three hundred fifty-six'); INSERT INTO t3 VALUES(24456, 18243, 'eighteen thousand two hundred forty-three'); INSERT INTO t3 VALUES(24457, 98125, 'ninety-eight thousand one hundred twenty-five'); INSERT INTO t3 VALUES(24458, 52567, 'fifty-two thousand five hundred sixty-seven'); INSERT INTO t3 VALUES(24459, 3050, 'three thousand fifty'); INSERT INTO t3 VALUES(24460, 98478, 'ninety-eight thousand four hundred seventy-eight'); INSERT INTO t3 VALUES(24461, 55677, 'fifty-five thousand six hundred seventy-seven'); INSERT INTO t3 VALUES(24462, 90817, 'ninety thousand eight hundred seventeen'); INSERT INTO t3 VALUES(24463, 15455, 'fifteen thousand four hundred fifty-five'); INSERT INTO t3 VALUES(24464, 84762, 'eighty-four thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(24465, 73081, 'seventy-three thousand eighty-one'); INSERT INTO t3 VALUES(24466, 15422, 'fifteen thousand four hundred twenty-two'); INSERT INTO t3 VALUES(24467, 24890, 'twenty-four thousand eight hundred ninety'); INSERT INTO t3 VALUES(24468, 90029, 'ninety thousand twenty-nine'); INSERT INTO t3 VALUES(24469, 61562, 'sixty-one thousand five hundred sixty-two'); INSERT INTO t3 VALUES(24470, 29744, 'twenty-nine thousand seven hundred forty-four'); INSERT INTO t3 VALUES(24471, 58936, 'fifty-eight thousand nine hundred thirty-six'); INSERT INTO t3 VALUES(24472, 71971, 'seventy-one thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(24473, 70982, 'seventy thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(24474, 41725, 'forty-one thousand seven hundred twenty-five'); INSERT INTO t3 VALUES(24475, 92927, 'ninety-two thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(24476, 33862, 'thirty-three thousand eight hundred sixty-two'); INSERT INTO t3 VALUES(24477, 93382, 'ninety-three thousand three hundred eighty-two'); INSERT INTO t3 VALUES(24478, 77954, 'seventy-seven thousand nine hundred fifty-four'); INSERT INTO t3 VALUES(24479, 15383, 'fifteen thousand three hundred eighty-three'); INSERT INTO t3 VALUES(24480, 28813, 'twenty-eight thousand eight hundred thirteen'); INSERT INTO t3 VALUES(24481, 5512, 'five thousand five hundred twelve'); INSERT INTO t3 VALUES(24482, 51480, 'fifty-one thousand four hundred eighty'); INSERT INTO t3 VALUES(24483, 6514, 'six thousand five hundred fourteen'); INSERT INTO t3 VALUES(24484, 30236, 'thirty thousand two hundred thirty-six'); INSERT INTO t3 VALUES(24485, 11104, 'eleven thousand one hundred four'); INSERT INTO t3 VALUES(24486, 86824, 'eighty-six thousand eight hundred twenty-four'); INSERT INTO t3 VALUES(24487, 78228, 'seventy-eight thousand two hundred twenty-eight'); INSERT INTO t3 VALUES(24488, 41145, 'forty-one thousand one hundred forty-five'); INSERT INTO t3 VALUES(24489, 29657, 'twenty-nine thousand six hundred fifty-seven'); INSERT INTO t3 VALUES(24490, 85757, 'eighty-five thousand seven hundred fifty-seven'); INSERT INTO t3 VALUES(24491, 69398, 'sixty-nine thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(24492, 79563, 'seventy-nine thousand five hundred sixty-three'); INSERT INTO t3 VALUES(24493, 92682, 'ninety-two thousand six hundred eighty-two'); INSERT INTO t3 VALUES(24494, 2935, 'two thousand nine hundred thirty-five'); INSERT INTO t3 VALUES(24495, 35906, 'thirty-five thousand nine hundred six'); INSERT INTO t3 VALUES(24496, 75457, 'seventy-five thousand four hundred fifty-seven'); INSERT INTO t3 VALUES(24497, 26969, 'twenty-six thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(24498, 92773, 'ninety-two thousand seven hundred seventy-three'); INSERT INTO t3 VALUES(24499, 31957, 'thirty-one thousand nine hundred fifty-seven'); INSERT INTO t3 VALUES(24500, 70185, 'seventy thousand one hundred eighty-five'); INSERT INTO t3 VALUES(24501, 29928, 'twenty-nine thousand nine hundred twenty-eight'); INSERT INTO t3 VALUES(24502, 32432, 'thirty-two thousand four hundred thirty-two'); INSERT INTO t3 VALUES(24503, 25115, 'twenty-five thousand one hundred fifteen'); INSERT INTO t3 VALUES(24504, 50198, 'fifty thousand one hundred ninety-eight'); INSERT INTO t3 VALUES(24505, 79471, 'seventy-nine thousand four hundred seventy-one'); INSERT INTO t3 VALUES(24506, 42183, 'forty-two thousand one hundred eighty-three'); INSERT INTO t3 VALUES(24507, 84705, 'eighty-four thousand seven hundred five'); INSERT INTO t3 VALUES(24508, 46781, 'forty-six thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(24509, 3406, 'three thousand four hundred six'); INSERT INTO t3 VALUES(24510, 82340, 'eighty-two thousand three hundred forty'); INSERT INTO t3 VALUES(24511, 72548, 'seventy-two thousand five hundred forty-eight'); INSERT INTO t3 VALUES(24512, 69097, 'sixty-nine thousand ninety-seven'); INSERT INTO t3 VALUES(24513, 78159, 'seventy-eight thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(24514, 7241, 'seven thousand two hundred forty-one'); INSERT INTO t3 VALUES(24515, 11154, 'eleven thousand one hundred fifty-four'); INSERT INTO t3 VALUES(24516, 72759, 'seventy-two thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(24517, 37411, 'thirty-seven thousand four hundred eleven'); INSERT INTO t3 VALUES(24518, 90691, 'ninety thousand six hundred ninety-one'); INSERT INTO t3 VALUES(24519, 17329, 'seventeen thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(24520, 21136, 'twenty-one thousand one hundred thirty-six'); INSERT INTO t3 VALUES(24521, 73397, 'seventy-three thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(24522, 58848, 'fifty-eight thousand eight hundred forty-eight'); INSERT INTO t3 VALUES(24523, 29869, 'twenty-nine thousand eight hundred sixty-nine'); INSERT INTO t3 VALUES(24524, 74504, 'seventy-four thousand five hundred four'); INSERT INTO t3 VALUES(24525, 29171, 'twenty-nine thousand one hundred seventy-one'); INSERT INTO t3 VALUES(24526, 67023, 'sixty-seven thousand twenty-three'); INSERT INTO t3 VALUES(24527, 16021, 'sixteen thousand twenty-one'); INSERT INTO t3 VALUES(24528, 76889, 'seventy-six thousand eight hundred eighty-nine'); INSERT INTO t3 VALUES(24529, 13227, 'thirteen thousand two hundred twenty-seven'); INSERT INTO t3 VALUES(24530, 60563, 'sixty thousand five hundred sixty-three'); INSERT INTO t3 VALUES(24531, 9637, 'nine thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(24532, 70863, 'seventy thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(24533, 36076, 'thirty-six thousand seventy-six'); INSERT INTO t3 VALUES(24534, 98410, 'ninety-eight thousand four hundred ten'); INSERT INTO t3 VALUES(24535, 12095, 'twelve thousand ninety-five'); INSERT INTO t3 VALUES(24536, 24406, 'twenty-four thousand four hundred six'); INSERT INTO t3 VALUES(24537, 73409, 'seventy-three thousand four hundred nine'); INSERT INTO t3 VALUES(24538, 29768, 'twenty-nine thousand seven hundred sixty-eight'); INSERT INTO t3 VALUES(24539, 84265, 'eighty-four thousand two hundred sixty-five'); INSERT INTO t3 VALUES(24540, 26609, 'twenty-six thousand six hundred nine'); INSERT INTO t3 VALUES(24541, 35668, 'thirty-five thousand six hundred sixty-eight'); INSERT INTO t3 VALUES(24542, 85458, 'eighty-five thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(24543, 12571, 'twelve thousand five hundred seventy-one'); INSERT INTO t3 VALUES(24544, 30268, 'thirty thousand two hundred sixty-eight'); INSERT INTO t3 VALUES(24545, 66940, 'sixty-six thousand nine hundred forty'); INSERT INTO t3 VALUES(24546, 89088, 'eighty-nine thousand eighty-eight'); INSERT INTO t3 VALUES(24547, 52116, 'fifty-two thousand one hundred sixteen'); INSERT INTO t3 VALUES(24548, 52044, 'fifty-two thousand forty-four'); INSERT INTO t3 VALUES(24549, 43022, 'forty-three thousand twenty-two'); INSERT INTO t3 VALUES(24550, 82921, 'eighty-two thousand nine hundred twenty-one'); INSERT INTO t3 VALUES(24551, 74469, 'seventy-four thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(24552, 32766, 'thirty-two thousand seven hundred sixty-six'); INSERT INTO t3 VALUES(24553, 36163, 'thirty-six thousand one hundred sixty-three'); INSERT INTO t3 VALUES(24554, 42630, 'forty-two thousand six hundred thirty'); INSERT INTO t3 VALUES(24555, 40683, 'forty thousand six hundred eighty-three'); INSERT INTO t3 VALUES(24556, 19842, 'nineteen thousand eight hundred forty-two'); INSERT INTO t3 VALUES(24557, 33550, 'thirty-three thousand five hundred fifty'); INSERT INTO t3 VALUES(24558, 7122, 'seven thousand one hundred twenty-two'); INSERT INTO t3 VALUES(24559, 68362, 'sixty-eight thousand three hundred sixty-two'); INSERT INTO t3 VALUES(24560, 60637, 'sixty thousand six hundred thirty-seven'); INSERT INTO t3 VALUES(24561, 21302, 'twenty-one thousand three hundred two'); INSERT INTO t3 VALUES(24562, 77989, 'seventy-seven thousand nine hundred eighty-nine'); INSERT INTO t3 VALUES(24563, 73376, 'seventy-three thousand three hundred seventy-six'); INSERT INTO t3 VALUES(24564, 43376, 'forty-three thousand three hundred seventy-six'); INSERT INTO t3 VALUES(24565, 87694, 'eighty-seven thousand six hundred ninety-four'); INSERT INTO t3 VALUES(24566, 90797, 'ninety thousand seven hundred ninety-seven'); INSERT INTO t3 VALUES(24567, 46321, 'forty-six thousand three hundred twenty-one'); INSERT INTO t3 VALUES(24568, 19654, 'nineteen thousand six hundred fifty-four'); INSERT INTO t3 VALUES(24569, 28489, 'twenty-eight thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(24570, 83580, 'eighty-three thousand five hundred eighty'); INSERT INTO t3 VALUES(24571, 24168, 'twenty-four thousand one hundred sixty-eight'); INSERT INTO t3 VALUES(24572, 35300, 'thirty-five thousand three hundred'); INSERT INTO t3 VALUES(24573, 86199, 'eighty-six thousand one hundred ninety-nine'); INSERT INTO t3 VALUES(24574, 39534, 'thirty-nine thousand five hundred thirty-four'); INSERT INTO t3 VALUES(24575, 53386, 'fifty-three thousand three hundred eighty-six'); INSERT INTO t3 VALUES(24576, 96527, 'ninety-six thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(24577, 70262, 'seventy thousand two hundred sixty-two'); INSERT INTO t3 VALUES(24578, 56369, 'fifty-six thousand three hundred sixty-nine'); INSERT INTO t3 VALUES(24579, 71474, 'seventy-one thousand four hundred seventy-four'); INSERT INTO t3 VALUES(24580, 24093, 'twenty-four thousand ninety-three'); INSERT INTO t3 VALUES(24581, 48149, 'forty-eight thousand one hundred forty-nine'); INSERT INTO t3 VALUES(24582, 9717, 'nine thousand seven hundred seventeen'); INSERT INTO t3 VALUES(24583, 20205, 'twenty thousand two hundred five'); INSERT INTO t3 VALUES(24584, 15770, 'fifteen thousand seven hundred seventy'); INSERT INTO t3 VALUES(24585, 8601, 'eight thousand six hundred one'); INSERT INTO t3 VALUES(24586, 33272, 'thirty-three thousand two hundred seventy-two'); INSERT INTO t3 VALUES(24587, 9620, 'nine thousand six hundred twenty'); INSERT INTO t3 VALUES(24588, 19035, 'nineteen thousand thirty-five'); INSERT INTO t3 VALUES(24589, 77898, 'seventy-seven thousand eight hundred ninety-eight'); INSERT INTO t3 VALUES(24590, 43891, 'forty-three thousand eight hundred ninety-one'); INSERT INTO t3 VALUES(24591, 7341, 'seven thousand three hundred forty-one'); INSERT INTO t3 VALUES(24592, 21012, 'twenty-one thousand twelve'); INSERT INTO t3 VALUES(24593, 47304, 'forty-seven thousand three hundred four'); INSERT INTO t3 VALUES(24594, 13771, 'thirteen thousand seven hundred seventy-one'); INSERT INTO t3 VALUES(24595, 56852, 'fifty-six thousand eight hundred fifty-two'); INSERT INTO t3 VALUES(24596, 1092, 'one thousand ninety-two'); INSERT INTO t3 VALUES(24597, 10527, 'ten thousand five hundred twenty-seven'); INSERT INTO t3 VALUES(24598, 24351, 'twenty-four thousand three hundred fifty-one'); INSERT INTO t3 VALUES(24599, 3185, 'three thousand one hundred eighty-five'); INSERT INTO t3 VALUES(24600, 20932, 'twenty thousand nine hundred thirty-two'); INSERT INTO t3 VALUES(24601, 2044, 'two thousand forty-four'); INSERT INTO t3 VALUES(24602, 79491, 'seventy-nine thousand four hundred ninety-one'); INSERT INTO t3 VALUES(24603, 63479, 'sixty-three thousand four hundred seventy-nine'); INSERT INTO t3 VALUES(24604, 64144, 'sixty-four thousand one hundred forty-four'); INSERT INTO t3 VALUES(24605, 11553, 'eleven thousand five hundred fifty-three'); INSERT INTO t3 VALUES(24606, 80080, 'eighty thousand eighty'); INSERT INTO t3 VALUES(24607, 42841, 'forty-two thousand eight hundred forty-one'); INSERT INTO t3 VALUES(24608, 26094, 'twenty-six thousand ninety-four'); INSERT INTO t3 VALUES(24609, 38439, 'thirty-eight thousand four hundred thirty-nine'); INSERT INTO t3 VALUES(24610, 28474, 'twenty-eight thousand four hundred seventy-four'); INSERT INTO t3 VALUES(24611, 58847, 'fifty-eight thousand eight hundred forty-seven'); INSERT INTO t3 VALUES(24612, 8319, 'eight thousand three hundred nineteen'); INSERT INTO t3 VALUES(24613, 85074, 'eighty-five thousand seventy-four'); INSERT INTO t3 VALUES(24614, 26116, 'twenty-six thousand one hundred sixteen'); INSERT INTO t3 VALUES(24615, 32315, 'thirty-two thousand three hundred fifteen'); INSERT INTO t3 VALUES(24616, 23304, 'twenty-three thousand three hundred four'); INSERT INTO t3 VALUES(24617, 69448, 'sixty-nine thousand four hundred forty-eight'); INSERT INTO t3 VALUES(24618, 79351, 'seventy-nine thousand three hundred fifty-one'); INSERT INTO t3 VALUES(24619, 80548, 'eighty thousand five hundred forty-eight'); INSERT INTO t3 VALUES(24620, 74037, 'seventy-four thousand thirty-seven'); INSERT INTO t3 VALUES(24621, 11683, 'eleven thousand six hundred eighty-three'); INSERT INTO t3 VALUES(24622, 32115, 'thirty-two thousand one hundred fifteen'); INSERT INTO t3 VALUES(24623, 90383, 'ninety thousand three hundred eighty-three'); INSERT INTO t3 VALUES(24624, 95459, 'ninety-five thousand four hundred fifty-nine'); INSERT INTO t3 VALUES(24625, 6463, 'six thousand four hundred sixty-three'); INSERT INTO t3 VALUES(24626, 72425, 'seventy-two thousand four hundred twenty-five'); INSERT INTO t3 VALUES(24627, 96118, 'ninety-six thousand one hundred eighteen'); INSERT INTO t3 VALUES(24628, 99948, 'ninety-nine thousand nine hundred forty-eight'); INSERT INTO t3 VALUES(24629, 40496, 'forty thousand four hundred ninety-six'); INSERT INTO t3 VALUES(24630, 57027, 'fifty-seven thousand twenty-seven'); INSERT INTO t3 VALUES(24631, 54806, 'fifty-four thousand eight hundred six'); INSERT INTO t3 VALUES(24632, 74192, 'seventy-four thousand one hundred ninety-two'); INSERT INTO t3 VALUES(24633, 1458, 'one thousand four hundred fifty-eight'); INSERT INTO t3 VALUES(24634, 60022, 'sixty thousand twenty-two'); INSERT INTO t3 VALUES(24635, 13015, 'thirteen thousand fifteen'); INSERT INTO t3 VALUES(24636, 4182, 'four thousand one hundred eighty-two'); INSERT INTO t3 VALUES(24637, 47728, 'forty-seven thousand seven hundred twenty-eight'); INSERT INTO t3 VALUES(24638, 48780, 'forty-eight thousand seven hundred eighty'); INSERT INTO t3 VALUES(24639, 35252, 'thirty-five thousand two hundred fifty-two'); INSERT INTO t3 VALUES(24640, 5917, 'five thousand nine hundred seventeen'); INSERT INTO t3 VALUES(24641, 80663, 'eighty thousand six hundred sixty-three'); INSERT INTO t3 VALUES(24642, 16943, 'sixteen thousand nine hundred forty-three'); INSERT INTO t3 VALUES(24643, 14529, 'fourteen thousand five hundred twenty-nine'); INSERT INTO t3 VALUES(24644, 13366, 'thirteen thousand three hundred sixty-six'); INSERT INTO t3 VALUES(24645, 94467, 'ninety-four thousand four hundred sixty-seven'); INSERT INTO t3 VALUES(24646, 26831, 'twenty-six thousand eight hundred thirty-one'); INSERT INTO t3 VALUES(24647, 64859, 'sixty-four thousand eight hundred fifty-nine'); INSERT INTO t3 VALUES(24648, 79940, 'seventy-nine thousand nine hundred forty'); INSERT INTO t3 VALUES(24649, 56200, 'fifty-six thousand two hundred'); INSERT INTO t3 VALUES(24650, 48830, 'forty-eight thousand eight hundred thirty'); INSERT INTO t3 VALUES(24651, 90965, 'ninety thousand nine hundred sixty-five'); INSERT INTO t3 VALUES(24652, 67810, 'sixty-seven thousand eight hundred ten'); INSERT INTO t3 VALUES(24653, 77419, 'seventy-seven thousand four hundred nineteen'); INSERT INTO t3 VALUES(24654, 16345, 'sixteen thousand three hundred forty-five'); INSERT INTO t3 VALUES(24655, 28572, 'twenty-eight thousand five hundred seventy-two'); INSERT INTO t3 VALUES(24656, 24503, 'twenty-four thousand five hundred three'); INSERT INTO t3 VALUES(24657, 52829, 'fifty-two thousand eight hundred twenty-nine'); INSERT INTO t3 VALUES(24658, 9201, 'nine thousand two hundred one'); INSERT INTO t3 VALUES(24659, 60184, 'sixty thousand one hundred eighty-four'); INSERT INTO t3 VALUES(24660, 65258, 'sixty-five thousand two hundred fifty-eight'); INSERT INTO t3 VALUES(24661, 68277, 'sixty-eight thousand two hundred seventy-seven'); INSERT INTO t3 VALUES(24662, 12632, 'twelve thousand six hundred thirty-two'); INSERT INTO t3 VALUES(24663, 88871, 'eighty-eight thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(24664, 88888, 'eighty-eight thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(24665, 94189, 'ninety-four thousand one hundred eighty-nine'); INSERT INTO t3 VALUES(24666, 17742, 'seventeen thousand seven hundred forty-two'); INSERT INTO t3 VALUES(24667, 46197, 'forty-six thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(24668, 28493, 'twenty-eight thousand four hundred ninety-three'); INSERT INTO t3 VALUES(24669, 21476, 'twenty-one thousand four hundred seventy-six'); INSERT INTO t3 VALUES(24670, 59660, 'fifty-nine thousand six hundred sixty'); INSERT INTO t3 VALUES(24671, 33157, 'thirty-three thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(24672, 70806, 'seventy thousand eight hundred six'); INSERT INTO t3 VALUES(24673, 10282, 'ten thousand two hundred eighty-two'); INSERT INTO t3 VALUES(24674, 46608, 'forty-six thousand six hundred eight'); INSERT INTO t3 VALUES(24675, 93057, 'ninety-three thousand fifty-seven'); INSERT INTO t3 VALUES(24676, 87137, 'eighty-seven thousand one hundred thirty-seven'); INSERT INTO t3 VALUES(24677, 59914, 'fifty-nine thousand nine hundred fourteen'); INSERT INTO t3 VALUES(24678, 15138, 'fifteen thousand one hundred thirty-eight'); INSERT INTO t3 VALUES(24679, 66081, 'sixty-six thousand eighty-one'); INSERT INTO t3 VALUES(24680, 2872, 'two thousand eight hundred seventy-two'); INSERT INTO t3 VALUES(24681, 58182, 'fifty-eight thousand one hundred eighty-two'); INSERT INTO t3 VALUES(24682, 98693, 'ninety-eight thousand six hundred ninety-three'); INSERT INTO t3 VALUES(24683, 6402, 'six thousand four hundred two'); INSERT INTO t3 VALUES(24684, 81893, 'eighty-one thousand eight hundred ninety-three'); INSERT INTO t3 VALUES(24685, 82769, 'eighty-two thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(24686, 28132, 'twenty-eight thousand one hundred thirty-two'); INSERT INTO t3 VALUES(24687, 23087, 'twenty-three thousand eighty-seven'); INSERT INTO t3 VALUES(24688, 39363, 'thirty-nine thousand three hundred sixty-three'); INSERT INTO t3 VALUES(24689, 33263, 'thirty-three thousand two hundred sixty-three'); INSERT INTO t3 VALUES(24690, 8211, 'eight thousand two hundred eleven'); INSERT INTO t3 VALUES(24691, 41329, 'forty-one thousand three hundred twenty-nine'); INSERT INTO t3 VALUES(24692, 95183, 'ninety-five thousand one hundred eighty-three'); INSERT INTO t3 VALUES(24693, 47040, 'forty-seven thousand forty'); INSERT INTO t3 VALUES(24694, 59347, 'fifty-nine thousand three hundred forty-seven'); INSERT INTO t3 VALUES(24695, 19887, 'nineteen thousand eight hundred eighty-seven'); INSERT INTO t3 VALUES(24696, 10700, 'ten thousand seven hundred'); INSERT INTO t3 VALUES(24697, 44206, 'forty-four thousand two hundred six'); INSERT INTO t3 VALUES(24698, 66580, 'sixty-six thousand five hundred eighty'); INSERT INTO t3 VALUES(24699, 47669, 'forty-seven thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(24700, 80892, 'eighty thousand eight hundred ninety-two'); INSERT INTO t3 VALUES(24701, 75755, 'seventy-five thousand seven hundred fifty-five'); INSERT INTO t3 VALUES(24702, 70814, 'seventy thousand eight hundred fourteen'); INSERT INTO t3 VALUES(24703, 84205, 'eighty-four thousand two hundred five'); INSERT INTO t3 VALUES(24704, 49501, 'forty-nine thousand five hundred one'); INSERT INTO t3 VALUES(24705, 61490, 'sixty-one thousand four hundred ninety'); INSERT INTO t3 VALUES(24706, 95982, 'ninety-five thousand nine hundred eighty-two'); INSERT INTO t3 VALUES(24707, 15473, 'fifteen thousand four hundred seventy-three'); INSERT INTO t3 VALUES(24708, 59440, 'fifty-nine thousand four hundred forty'); INSERT INTO t3 VALUES(24709, 2995, 'two thousand nine hundred ninety-five'); INSERT INTO t3 VALUES(24710, 38547, 'thirty-eight thousand five hundred forty-seven'); INSERT INTO t3 VALUES(24711, 85352, 'eighty-five thousand three hundred fifty-two'); INSERT INTO t3 VALUES(24712, 10539, 'ten thousand five hundred thirty-nine'); INSERT INTO t3 VALUES(24713, 78665, 'seventy-eight thousand six hundred sixty-five'); INSERT INTO t3 VALUES(24714, 46340, 'forty-six thousand three hundred forty'); INSERT INTO t3 VALUES(24715, 52171, 'fifty-two thousand one hundred seventy-one'); INSERT INTO t3 VALUES(24716, 79592, 'seventy-nine thousand five hundred ninety-two'); INSERT INTO t3 VALUES(24717, 80347, 'eighty thousand three hundred forty-seven'); INSERT INTO t3 VALUES(24718, 36969, 'thirty-six thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(24719, 58825, 'fifty-eight thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(24720, 50497, 'fifty thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(24721, 52942, 'fifty-two thousand nine hundred forty-two'); INSERT INTO t3 VALUES(24722, 53225, 'fifty-three thousand two hundred twenty-five'); INSERT INTO t3 VALUES(24723, 35595, 'thirty-five thousand five hundred ninety-five'); INSERT INTO t3 VALUES(24724, 70411, 'seventy thousand four hundred eleven'); INSERT INTO t3 VALUES(24725, 23175, 'twenty-three thousand one hundred seventy-five'); INSERT INTO t3 VALUES(24726, 20256, 'twenty thousand two hundred fifty-six'); INSERT INTO t3 VALUES(24727, 75444, 'seventy-five thousand four hundred forty-four'); INSERT INTO t3 VALUES(24728, 29472, 'twenty-nine thousand four hundred seventy-two'); INSERT INTO t3 VALUES(24729, 74873, 'seventy-four thousand eight hundred seventy-three'); INSERT INTO t3 VALUES(24730, 96570, 'ninety-six thousand five hundred seventy'); INSERT INTO t3 VALUES(24731, 34886, 'thirty-four thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(24732, 5332, 'five thousand three hundred thirty-two'); INSERT INTO t3 VALUES(24733, 2099, 'two thousand ninety-nine'); INSERT INTO t3 VALUES(24734, 54409, 'fifty-four thousand four hundred nine'); INSERT INTO t3 VALUES(24735, 3586, 'three thousand five hundred eighty-six'); INSERT INTO t3 VALUES(24736, 70081, 'seventy thousand eighty-one'); INSERT INTO t3 VALUES(24737, 44769, 'forty-four thousand seven hundred sixty-nine'); INSERT INTO t3 VALUES(24738, 9967, 'nine thousand nine hundred sixty-seven'); INSERT INTO t3 VALUES(24739, 86997, 'eighty-six thousand nine hundred ninety-seven'); INSERT INTO t3 VALUES(24740, 22978, 'twenty-two thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(24741, 41041, 'forty-one thousand forty-one'); INSERT INTO t3 VALUES(24742, 12900, 'twelve thousand nine hundred'); INSERT INTO t3 VALUES(24743, 16669, 'sixteen thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(24744, 97688, 'ninety-seven thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(24745, 33963, 'thirty-three thousand nine hundred sixty-three'); INSERT INTO t3 VALUES(24746, 13508, 'thirteen thousand five hundred eight'); INSERT INTO t3 VALUES(24747, 39008, 'thirty-nine thousand eight'); INSERT INTO t3 VALUES(24748, 53052, 'fifty-three thousand fifty-two'); INSERT INTO t3 VALUES(24749, 92622, 'ninety-two thousand six hundred twenty-two'); INSERT INTO t3 VALUES(24750, 95918, 'ninety-five thousand nine hundred eighteen'); INSERT INTO t3 VALUES(24751, 67927, 'sixty-seven thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(24752, 8489, 'eight thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(24753, 38917, 'thirty-eight thousand nine hundred seventeen'); INSERT INTO t3 VALUES(24754, 13065, 'thirteen thousand sixty-five'); INSERT INTO t3 VALUES(24755, 15772, 'fifteen thousand seven hundred seventy-two'); INSERT INTO t3 VALUES(24756, 71996, 'seventy-one thousand nine hundred ninety-six'); INSERT INTO t3 VALUES(24757, 93804, 'ninety-three thousand eight hundred four'); INSERT INTO t3 VALUES(24758, 62376, 'sixty-two thousand three hundred seventy-six'); INSERT INTO t3 VALUES(24759, 19210, 'nineteen thousand two hundred ten'); INSERT INTO t3 VALUES(24760, 55669, 'fifty-five thousand six hundred sixty-nine'); INSERT INTO t3 VALUES(24761, 60397, 'sixty thousand three hundred ninety-seven'); INSERT INTO t3 VALUES(24762, 15157, 'fifteen thousand one hundred fifty-seven'); INSERT INTO t3 VALUES(24763, 17765, 'seventeen thousand seven hundred sixty-five'); INSERT INTO t3 VALUES(24764, 24303, 'twenty-four thousand three hundred three'); INSERT INTO t3 VALUES(24765, 74762, 'seventy-four thousand seven hundred sixty-two'); INSERT INTO t3 VALUES(24766, 12660, 'twelve thousand six hundred sixty'); INSERT INTO t3 VALUES(24767, 71115, 'seventy-one thousand one hundred fifteen'); INSERT INTO t3 VALUES(24768, 75727, 'seventy-five thousand seven hundred twenty-seven'); INSERT INTO t3 VALUES(24769, 81886, 'eighty-one thousand eight hundred eighty-six'); INSERT INTO t3 VALUES(24770, 93418, 'ninety-three thousand four hundred eighteen'); INSERT INTO t3 VALUES(24771, 55993, 'fifty-five thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(24772, 98380, 'ninety-eight thousand three hundred eighty'); INSERT INTO t3 VALUES(24773, 58971, 'fifty-eight thousand nine hundred seventy-one'); INSERT INTO t3 VALUES(24774, 16900, 'sixteen thousand nine hundred'); INSERT INTO t3 VALUES(24775, 93345, 'ninety-three thousand three hundred forty-five'); INSERT INTO t3 VALUES(24776, 60673, 'sixty thousand six hundred seventy-three'); INSERT INTO t3 VALUES(24777, 50247, 'fifty thousand two hundred forty-seven'); INSERT INTO t3 VALUES(24778, 78763, 'seventy-eight thousand seven hundred sixty-three'); INSERT INTO t3 VALUES(24779, 2916, 'two thousand nine hundred sixteen'); INSERT INTO t3 VALUES(24780, 38779, 'thirty-eight thousand seven hundred seventy-nine'); INSERT INTO t3 VALUES(24781, 9671, 'nine thousand six hundred seventy-one'); INSERT INTO t3 VALUES(24782, 75048, 'seventy-five thousand forty-eight'); INSERT INTO t3 VALUES(24783, 71339, 'seventy-one thousand three hundred thirty-nine'); INSERT INTO t3 VALUES(24784, 99363, 'ninety-nine thousand three hundred sixty-three'); INSERT INTO t3 VALUES(24785, 43445, 'forty-three thousand four hundred forty-five'); INSERT INTO t3 VALUES(24786, 15216, 'fifteen thousand two hundred sixteen'); INSERT INTO t3 VALUES(24787, 86770, 'eighty-six thousand seven hundred seventy'); INSERT INTO t3 VALUES(24788, 94108, 'ninety-four thousand one hundred eight'); INSERT INTO t3 VALUES(24789, 53313, 'fifty-three thousand three hundred thirteen'); INSERT INTO t3 VALUES(24790, 62927, 'sixty-two thousand nine hundred twenty-seven'); INSERT INTO t3 VALUES(24791, 2633, 'two thousand six hundred thirty-three'); INSERT INTO t3 VALUES(24792, 71987, 'seventy-one thousand nine hundred eighty-seven'); INSERT INTO t3 VALUES(24793, 31816, 'thirty-one thousand eight hundred sixteen'); INSERT INTO t3 VALUES(24794, 44145, 'forty-four thousand one hundred forty-five'); INSERT INTO t3 VALUES(24795, 44670, 'forty-four thousand six hundred seventy'); INSERT INTO t3 VALUES(24796, 32652, 'thirty-two thousand six hundred fifty-two'); INSERT INTO t3 VALUES(24797, 86370, 'eighty-six thousand three hundred seventy'); INSERT INTO t3 VALUES(24798, 77806, 'seventy-seven thousand eight hundred six'); INSERT INTO t3 VALUES(24799, 49010, 'forty-nine thousand ten'); INSERT INTO t3 VALUES(24800, 41469, 'forty-one thousand four hundred sixty-nine'); INSERT INTO t3 VALUES(24801, 86497, 'eighty-six thousand four hundred ninety-seven'); INSERT INTO t3 VALUES(24802, 89416, 'eighty-nine thousand four hundred sixteen'); INSERT INTO t3 VALUES(24803, 22795, 'twenty-two thousand seven hundred ninety-five'); INSERT INTO t3 VALUES(24804, 16486, 'sixteen thousand four hundred eighty-six'); INSERT INTO t3 VALUES(24805, 83767, 'eighty-three thousand seven hundred sixty-seven'); INSERT INTO t3 VALUES(24806, 69813, 'sixty-nine thousand eight hundred thirteen'); INSERT INTO t3 VALUES(24807, 24398, 'twenty-four thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(24808, 4641, 'four thousand six hundred forty-one'); INSERT INTO t3 VALUES(24809, 19155, 'nineteen thousand one hundred fifty-five'); INSERT INTO t3 VALUES(24810, 10874, 'ten thousand eight hundred seventy-four'); INSERT INTO t3 VALUES(24811, 35546, 'thirty-five thousand five hundred forty-six'); INSERT INTO t3 VALUES(24812, 13792, 'thirteen thousand seven hundred ninety-two'); INSERT INTO t3 VALUES(24813, 47786, 'forty-seven thousand seven hundred eighty-six'); INSERT INTO t3 VALUES(24814, 43075, 'forty-three thousand seventy-five'); INSERT INTO t3 VALUES(24815, 63969, 'sixty-three thousand nine hundred sixty-nine'); INSERT INTO t3 VALUES(24816, 42942, 'forty-two thousand nine hundred forty-two'); INSERT INTO t3 VALUES(24817, 46118, 'forty-six thousand one hundred eighteen'); INSERT INTO t3 VALUES(24818, 58231, 'fifty-eight thousand two hundred thirty-one'); INSERT INTO t3 VALUES(24819, 10334, 'ten thousand three hundred thirty-four'); INSERT INTO t3 VALUES(24820, 34774, 'thirty-four thousand seven hundred seventy-four'); INSERT INTO t3 VALUES(24821, 10146, 'ten thousand one hundred forty-six'); INSERT INTO t3 VALUES(24822, 99742, 'ninety-nine thousand seven hundred forty-two'); INSERT INTO t3 VALUES(24823, 11418, 'eleven thousand four hundred eighteen'); INSERT INTO t3 VALUES(24824, 69613, 'sixty-nine thousand six hundred thirteen'); INSERT INTO t3 VALUES(24825, 66806, 'sixty-six thousand eight hundred six'); INSERT INTO t3 VALUES(24826, 34060, 'thirty-four thousand sixty'); INSERT INTO t3 VALUES(24827, 40116, 'forty thousand one hundred sixteen'); INSERT INTO t3 VALUES(24828, 25042, 'twenty-five thousand forty-two'); INSERT INTO t3 VALUES(24829, 77863, 'seventy-seven thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(24830, 97334, 'ninety-seven thousand three hundred thirty-four'); INSERT INTO t3 VALUES(24831, 84687, 'eighty-four thousand six hundred eighty-seven'); INSERT INTO t3 VALUES(24832, 44197, 'forty-four thousand one hundred ninety-seven'); INSERT INTO t3 VALUES(24833, 94141, 'ninety-four thousand one hundred forty-one'); INSERT INTO t3 VALUES(24834, 87283, 'eighty-seven thousand two hundred eighty-three'); INSERT INTO t3 VALUES(24835, 80045, 'eighty thousand forty-five'); INSERT INTO t3 VALUES(24836, 57110, 'fifty-seven thousand one hundred ten'); INSERT INTO t3 VALUES(24837, 98823, 'ninety-eight thousand eight hundred twenty-three'); INSERT INTO t3 VALUES(24838, 10560, 'ten thousand five hundred sixty'); INSERT INTO t3 VALUES(24839, 48709, 'forty-eight thousand seven hundred nine'); INSERT INTO t3 VALUES(24840, 84826, 'eighty-four thousand eight hundred twenty-six'); INSERT INTO t3 VALUES(24841, 8743, 'eight thousand seven hundred forty-three'); INSERT INTO t3 VALUES(24842, 5747, 'five thousand seven hundred forty-seven'); INSERT INTO t3 VALUES(24843, 96079, 'ninety-six thousand seventy-nine'); INSERT INTO t3 VALUES(24844, 29287, 'twenty-nine thousand two hundred eighty-seven'); INSERT INTO t3 VALUES(24845, 10503, 'ten thousand five hundred three'); INSERT INTO t3 VALUES(24846, 42835, 'forty-two thousand eight hundred thirty-five'); INSERT INTO t3 VALUES(24847, 39803, 'thirty-nine thousand eight hundred three'); INSERT INTO t3 VALUES(24848, 47531, 'forty-seven thousand five hundred thirty-one'); INSERT INTO t3 VALUES(24849, 12240, 'twelve thousand two hundred forty'); INSERT INTO t3 VALUES(24850, 41777, 'forty-one thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(24851, 21596, 'twenty-one thousand five hundred ninety-six'); INSERT INTO t3 VALUES(24852, 24048, 'twenty-four thousand forty-eight'); INSERT INTO t3 VALUES(24853, 36560, 'thirty-six thousand five hundred sixty'); INSERT INTO t3 VALUES(24854, 13578, 'thirteen thousand five hundred seventy-eight'); INSERT INTO t3 VALUES(24855, 49976, 'forty-nine thousand nine hundred seventy-six'); INSERT INTO t3 VALUES(24856, 54781, 'fifty-four thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(24857, 94365, 'ninety-four thousand three hundred sixty-five'); INSERT INTO t3 VALUES(24858, 67888, 'sixty-seven thousand eight hundred eighty-eight'); INSERT INTO t3 VALUES(24859, 60940, 'sixty thousand nine hundred forty'); INSERT INTO t3 VALUES(24860, 45712, 'forty-five thousand seven hundred twelve'); INSERT INTO t3 VALUES(24861, 74303, 'seventy-four thousand three hundred three'); INSERT INTO t3 VALUES(24862, 21345, 'twenty-one thousand three hundred forty-five'); INSERT INTO t3 VALUES(24863, 22554, 'twenty-two thousand five hundred fifty-four'); INSERT INTO t3 VALUES(24864, 54730, 'fifty-four thousand seven hundred thirty'); INSERT INTO t3 VALUES(24865, 79057, 'seventy-nine thousand fifty-seven'); INSERT INTO t3 VALUES(24866, 13523, 'thirteen thousand five hundred twenty-three'); INSERT INTO t3 VALUES(24867, 43990, 'forty-three thousand nine hundred ninety'); INSERT INTO t3 VALUES(24868, 25902, 'twenty-five thousand nine hundred two'); INSERT INTO t3 VALUES(24869, 51825, 'fifty-one thousand eight hundred twenty-five'); INSERT INTO t3 VALUES(24870, 50909, 'fifty thousand nine hundred nine'); INSERT INTO t3 VALUES(24871, 18586, 'eighteen thousand five hundred eighty-six'); INSERT INTO t3 VALUES(24872, 6607, 'six thousand six hundred seven'); INSERT INTO t3 VALUES(24873, 3890, 'three thousand eight hundred ninety'); INSERT INTO t3 VALUES(24874, 46905, 'forty-six thousand nine hundred five'); INSERT INTO t3 VALUES(24875, 13209, 'thirteen thousand two hundred nine'); INSERT INTO t3 VALUES(24876, 63392, 'sixty-three thousand three hundred ninety-two'); INSERT INTO t3 VALUES(24877, 91399, 'ninety-one thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(24878, 31171, 'thirty-one thousand one hundred seventy-one'); INSERT INTO t3 VALUES(24879, 35561, 'thirty-five thousand five hundred sixty-one'); INSERT INTO t3 VALUES(24880, 1318, 'one thousand three hundred eighteen'); INSERT INTO t3 VALUES(24881, 32933, 'thirty-two thousand nine hundred thirty-three'); INSERT INTO t3 VALUES(24882, 41733, 'forty-one thousand seven hundred thirty-three'); INSERT INTO t3 VALUES(24883, 65985, 'sixty-five thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(24884, 57242, 'fifty-seven thousand two hundred forty-two'); INSERT INTO t3 VALUES(24885, 10678, 'ten thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(24886, 12854, 'twelve thousand eight hundred fifty-four'); INSERT INTO t3 VALUES(24887, 14436, 'fourteen thousand four hundred thirty-six'); INSERT INTO t3 VALUES(24888, 23988, 'twenty-three thousand nine hundred eighty-eight'); INSERT INTO t3 VALUES(24889, 32428, 'thirty-two thousand four hundred twenty-eight'); INSERT INTO t3 VALUES(24890, 31980, 'thirty-one thousand nine hundred eighty'); INSERT INTO t3 VALUES(24891, 42592, 'forty-two thousand five hundred ninety-two'); INSERT INTO t3 VALUES(24892, 10777, 'ten thousand seven hundred seventy-seven'); INSERT INTO t3 VALUES(24893, 90039, 'ninety thousand thirty-nine'); INSERT INTO t3 VALUES(24894, 98488, 'ninety-eight thousand four hundred eighty-eight'); INSERT INTO t3 VALUES(24895, 66119, 'sixty-six thousand one hundred nineteen'); INSERT INTO t3 VALUES(24896, 90906, 'ninety thousand nine hundred six'); INSERT INTO t3 VALUES(24897, 43273, 'forty-three thousand two hundred seventy-three'); INSERT INTO t3 VALUES(24898, 86923, 'eighty-six thousand nine hundred twenty-three'); INSERT INTO t3 VALUES(24899, 24398, 'twenty-four thousand three hundred ninety-eight'); INSERT INTO t3 VALUES(24900, 70697, 'seventy thousand six hundred ninety-seven'); INSERT INTO t3 VALUES(24901, 67776, 'sixty-seven thousand seven hundred seventy-six'); INSERT INTO t3 VALUES(24902, 72999, 'seventy-two thousand nine hundred ninety-nine'); INSERT INTO t3 VALUES(24903, 64202, 'sixty-four thousand two hundred two'); INSERT INTO t3 VALUES(24904, 246, 'two hundred forty-six'); INSERT INTO t3 VALUES(24905, 8602, 'eight thousand six hundred two'); INSERT INTO t3 VALUES(24906, 2864, 'two thousand eight hundred sixty-four'); INSERT INTO t3 VALUES(24907, 7330, 'seven thousand three hundred thirty'); INSERT INTO t3 VALUES(24908, 21614, 'twenty-one thousand six hundred fourteen'); INSERT INTO t3 VALUES(24909, 98092, 'ninety-eight thousand ninety-two'); INSERT INTO t3 VALUES(24910, 53159, 'fifty-three thousand one hundred fifty-nine'); INSERT INTO t3 VALUES(24911, 24758, 'twenty-four thousand seven hundred fifty-eight'); INSERT INTO t3 VALUES(24912, 83464, 'eighty-three thousand four hundred sixty-four'); INSERT INTO t3 VALUES(24913, 79332, 'seventy-nine thousand three hundred thirty-two'); INSERT INTO t3 VALUES(24914, 73379, 'seventy-three thousand three hundred seventy-nine'); INSERT INTO t3 VALUES(24915, 78436, 'seventy-eight thousand four hundred thirty-six'); INSERT INTO t3 VALUES(24916, 55314, 'fifty-five thousand three hundred fourteen'); INSERT INTO t3 VALUES(24917, 49986, 'forty-nine thousand nine hundred eighty-six'); INSERT INTO t3 VALUES(24918, 20172, 'twenty thousand one hundred seventy-two'); INSERT INTO t3 VALUES(24919, 46094, 'forty-six thousand ninety-four'); INSERT INTO t3 VALUES(24920, 52678, 'fifty-two thousand six hundred seventy-eight'); INSERT INTO t3 VALUES(24921, 20785, 'twenty thousand seven hundred eighty-five'); INSERT INTO t3 VALUES(24922, 19531, 'nineteen thousand five hundred thirty-one'); INSERT INTO t3 VALUES(24923, 70323, 'seventy thousand three hundred twenty-three'); INSERT INTO t3 VALUES(24924, 29816, 'twenty-nine thousand eight hundred sixteen'); INSERT INTO t3 VALUES(24925, 95128, 'ninety-five thousand one hundred twenty-eight'); INSERT INTO t3 VALUES(24926, 95759, 'ninety-five thousand seven hundred fifty-nine'); INSERT INTO t3 VALUES(24927, 5910, 'five thousand nine hundred ten'); INSERT INTO t3 VALUES(24928, 72781, 'seventy-two thousand seven hundred eighty-one'); INSERT INTO t3 VALUES(24929, 71098, 'seventy-one thousand ninety-eight'); INSERT INTO t3 VALUES(24930, 52832, 'fifty-two thousand eight hundred thirty-two'); INSERT INTO t3 VALUES(24931, 96014, 'ninety-six thousand fourteen'); INSERT INTO t3 VALUES(24932, 70544, 'seventy thousand five hundred forty-four'); INSERT INTO t3 VALUES(24933, 161, 'one hundred sixty-one'); INSERT INTO t3 VALUES(24934, 623, 'six hundred twenty-three'); INSERT INTO t3 VALUES(24935, 72399, 'seventy-two thousand three hundred ninety-nine'); INSERT INTO t3 VALUES(24936, 83929, 'eighty-three thousand nine hundred twenty-nine'); INSERT INTO t3 VALUES(24937, 97985, 'ninety-seven thousand nine hundred eighty-five'); INSERT INTO t3 VALUES(24938, 25597, 'twenty-five thousand five hundred ninety-seven'); INSERT INTO t3 VALUES(24939, 78421, 'seventy-eight thousand four hundred twenty-one'); INSERT INTO t3 VALUES(24940, 60639, 'sixty thousand six hundred thirty-nine'); INSERT INTO t3 VALUES(24941, 50903, 'fifty thousand nine hundred three'); INSERT INTO t3 VALUES(24942, 934, 'nine hundred thirty-four'); INSERT INTO t3 VALUES(24943, 53684, 'fifty-three thousand six hundred eighty-four'); INSERT INTO t3 VALUES(24944, 12930, 'twelve thousand nine hundred thirty'); INSERT INTO t3 VALUES(24945, 38638, 'thirty-eight thousand six hundred thirty-eight'); INSERT INTO t3 VALUES(24946, 1269, 'one thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(24947, 36603, 'thirty-six thousand six hundred three'); INSERT INTO t3 VALUES(24948, 43295, 'forty-three thousand two hundred ninety-five'); INSERT INTO t3 VALUES(24949, 58480, 'fifty-eight thousand four hundred eighty'); INSERT INTO t3 VALUES(24950, 74075, 'seventy-four thousand seventy-five'); INSERT INTO t3 VALUES(24951, 24688, 'twenty-four thousand six hundred eighty-eight'); INSERT INTO t3 VALUES(24952, 83209, 'eighty-three thousand two hundred nine'); INSERT INTO t3 VALUES(24953, 59084, 'fifty-nine thousand eighty-four'); INSERT INTO t3 VALUES(24954, 20663, 'twenty thousand six hundred sixty-three'); INSERT INTO t3 VALUES(24955, 79179, 'seventy-nine thousand one hundred seventy-nine'); INSERT INTO t3 VALUES(24956, 1978, 'one thousand nine hundred seventy-eight'); INSERT INTO t3 VALUES(24957, 66295, 'sixty-six thousand two hundred ninety-five'); INSERT INTO t3 VALUES(24958, 22993, 'twenty-two thousand nine hundred ninety-three'); INSERT INTO t3 VALUES(24959, 90318, 'ninety thousand three hundred eighteen'); INSERT INTO t3 VALUES(24960, 30818, 'thirty thousand eight hundred eighteen'); INSERT INTO t3 VALUES(24961, 83489, 'eighty-three thousand four hundred eighty-nine'); INSERT INTO t3 VALUES(24962, 50881, 'fifty thousand eight hundred eighty-one'); INSERT INTO t3 VALUES(24963, 91104, 'ninety-one thousand one hundred four'); INSERT INTO t3 VALUES(24964, 83683, 'eighty-three thousand six hundred eighty-three'); INSERT INTO t3 VALUES(24965, 27051, 'twenty-seven thousand fifty-one'); INSERT INTO t3 VALUES(24966, 84694, 'eighty-four thousand six hundred ninety-four'); INSERT INTO t3 VALUES(24967, 16269, 'sixteen thousand two hundred sixty-nine'); INSERT INTO t3 VALUES(24968, 21299, 'twenty-one thousand two hundred ninety-nine'); INSERT INTO t3 VALUES(24969, 21036, 'twenty-one thousand thirty-six'); INSERT INTO t3 VALUES(24970, 85042, 'eighty-five thousand forty-two'); INSERT INTO t3 VALUES(24971, 5100, 'five thousand one hundred'); INSERT INTO t3 VALUES(24972, 73645, 'seventy-three thousand six hundred forty-five'); INSERT INTO t3 VALUES(24973, 45681, 'forty-five thousand six hundred eighty-one'); INSERT INTO t3 VALUES(24974, 43656, 'forty-three thousand six hundred fifty-six'); INSERT INTO t3 VALUES(24975, 71105, 'seventy-one thousand one hundred five'); INSERT INTO t3 VALUES(24976, 7628, 'seven thousand six hundred twenty-eight'); INSERT INTO t3 VALUES(24977, 23163, 'twenty-three thousand one hundred sixty-three'); INSERT INTO t3 VALUES(24978, 146, 'one hundred forty-six'); INSERT INTO t3 VALUES(24979, 12055, 'twelve thousand fifty-five'); INSERT INTO t3 VALUES(24980, 36730, 'thirty-six thousand seven hundred thirty'); INSERT INTO t3 VALUES(24981, 96387, 'ninety-six thousand three hundred eighty-seven'); INSERT INTO t3 VALUES(24982, 30707, 'thirty thousand seven hundred seven'); INSERT INTO t3 VALUES(24983, 85821, 'eighty-five thousand eight hundred twenty-one'); INSERT INTO t3 VALUES(24984, 72713, 'seventy-two thousand seven hundred thirteen'); INSERT INTO t3 VALUES(24985, 89071, 'eighty-nine thousand seventy-one'); INSERT INTO t3 VALUES(24986, 95729, 'ninety-five thousand seven hundred twenty-nine'); INSERT INTO t3 VALUES(24987, 19944, 'nineteen thousand nine hundred forty-four'); INSERT INTO t3 VALUES(24988, 63977, 'sixty-three thousand nine hundred seventy-seven'); INSERT INTO t3 VALUES(24989, 80696, 'eighty thousand six hundred ninety-six'); INSERT INTO t3 VALUES(24990, 80543, 'eighty thousand five hundred forty-three'); INSERT INTO t3 VALUES(24991, 93012, 'ninety-three thousand twelve'); INSERT INTO t3 VALUES(24992, 53561, 'fifty-three thousand five hundred sixty-one'); INSERT INTO t3 VALUES(24993, 96345, 'ninety-six thousand three hundred forty-five'); INSERT INTO t3 VALUES(24994, 45500, 'forty-five thousand five hundred'); INSERT INTO t3 VALUES(24995, 71895, 'seventy-one thousand eight hundred ninety-five'); INSERT INTO t3 VALUES(24996, 88950, 'eighty-eight thousand nine hundred fifty'); INSERT INTO t3 VALUES(24997, 10863, 'ten thousand eight hundred sixty-three'); INSERT INTO t3 VALUES(24998, 94124, 'ninety-four thousand one hundred twenty-four'); INSERT INTO t3 VALUES(24999, 44871, 'forty-four thousand eight hundred seventy-one'); INSERT INTO t3 VALUES(25000, 35764, 'thirty-five thousand seven hundred sixty-four'); COMMIT; ================================================ FILE: packages/benchmark/src/benchmark4.sql ================================================ BEGIN; SELECT count(*), avg(b) FROM t2 WHERE b>=0 AND b<1000; SELECT count(*), avg(b) FROM t2 WHERE b>=100 AND b<1100; SELECT count(*), avg(b) FROM t2 WHERE b>=200 AND b<1200; SELECT count(*), avg(b) FROM t2 WHERE b>=300 AND b<1300; SELECT count(*), avg(b) FROM t2 WHERE b>=400 AND b<1400; SELECT count(*), avg(b) FROM t2 WHERE b>=500 AND b<1500; SELECT count(*), avg(b) FROM t2 WHERE b>=600 AND b<1600; SELECT count(*), avg(b) FROM t2 WHERE b>=700 AND b<1700; SELECT count(*), avg(b) FROM t2 WHERE b>=800 AND b<1800; SELECT count(*), avg(b) FROM t2 WHERE b>=900 AND b<1900; SELECT count(*), avg(b) FROM t2 WHERE b>=1000 AND b<2000; SELECT count(*), avg(b) FROM t2 WHERE b>=1100 AND b<2100; SELECT count(*), avg(b) FROM t2 WHERE b>=1200 AND b<2200; SELECT count(*), avg(b) FROM t2 WHERE b>=1300 AND b<2300; SELECT count(*), avg(b) FROM t2 WHERE b>=1400 AND b<2400; SELECT count(*), avg(b) FROM t2 WHERE b>=1500 AND b<2500; SELECT count(*), avg(b) FROM t2 WHERE b>=1600 AND b<2600; SELECT count(*), avg(b) FROM t2 WHERE b>=1700 AND b<2700; SELECT count(*), avg(b) FROM t2 WHERE b>=1800 AND b<2800; SELECT count(*), avg(b) FROM t2 WHERE b>=1900 AND b<2900; SELECT count(*), avg(b) FROM t2 WHERE b>=2000 AND b<3000; SELECT count(*), avg(b) FROM t2 WHERE b>=2100 AND b<3100; SELECT count(*), avg(b) FROM t2 WHERE b>=2200 AND b<3200; SELECT count(*), avg(b) FROM t2 WHERE b>=2300 AND b<3300; SELECT count(*), avg(b) FROM t2 WHERE b>=2400 AND b<3400; SELECT count(*), avg(b) FROM t2 WHERE b>=2500 AND b<3500; SELECT count(*), avg(b) FROM t2 WHERE b>=2600 AND b<3600; SELECT count(*), avg(b) FROM t2 WHERE b>=2700 AND b<3700; SELECT count(*), avg(b) FROM t2 WHERE b>=2800 AND b<3800; SELECT count(*), avg(b) FROM t2 WHERE b>=2900 AND b<3900; SELECT count(*), avg(b) FROM t2 WHERE b>=3000 AND b<4000; SELECT count(*), avg(b) FROM t2 WHERE b>=3100 AND b<4100; SELECT count(*), avg(b) FROM t2 WHERE b>=3200 AND b<4200; SELECT count(*), avg(b) FROM t2 WHERE b>=3300 AND b<4300; SELECT count(*), avg(b) FROM t2 WHERE b>=3400 AND b<4400; SELECT count(*), avg(b) FROM t2 WHERE b>=3500 AND b<4500; SELECT count(*), avg(b) FROM t2 WHERE b>=3600 AND b<4600; SELECT count(*), avg(b) FROM t2 WHERE b>=3700 AND b<4700; SELECT count(*), avg(b) FROM t2 WHERE b>=3800 AND b<4800; SELECT count(*), avg(b) FROM t2 WHERE b>=3900 AND b<4900; SELECT count(*), avg(b) FROM t2 WHERE b>=4000 AND b<5000; SELECT count(*), avg(b) FROM t2 WHERE b>=4100 AND b<5100; SELECT count(*), avg(b) FROM t2 WHERE b>=4200 AND b<5200; SELECT count(*), avg(b) FROM t2 WHERE b>=4300 AND b<5300; SELECT count(*), avg(b) FROM t2 WHERE b>=4400 AND b<5400; SELECT count(*), avg(b) FROM t2 WHERE b>=4500 AND b<5500; SELECT count(*), avg(b) FROM t2 WHERE b>=4600 AND b<5600; SELECT count(*), avg(b) FROM t2 WHERE b>=4700 AND b<5700; SELECT count(*), avg(b) FROM t2 WHERE b>=4800 AND b<5800; SELECT count(*), avg(b) FROM t2 WHERE b>=4900 AND b<5900; SELECT count(*), avg(b) FROM t2 WHERE b>=5000 AND b<6000; SELECT count(*), avg(b) FROM t2 WHERE b>=5100 AND b<6100; SELECT count(*), avg(b) FROM t2 WHERE b>=5200 AND b<6200; SELECT count(*), avg(b) FROM t2 WHERE b>=5300 AND b<6300; SELECT count(*), avg(b) FROM t2 WHERE b>=5400 AND b<6400; SELECT count(*), avg(b) FROM t2 WHERE b>=5500 AND b<6500; SELECT count(*), avg(b) FROM t2 WHERE b>=5600 AND b<6600; SELECT count(*), avg(b) FROM t2 WHERE b>=5700 AND b<6700; SELECT count(*), avg(b) FROM t2 WHERE b>=5800 AND b<6800; SELECT count(*), avg(b) FROM t2 WHERE b>=5900 AND b<6900; SELECT count(*), avg(b) FROM t2 WHERE b>=6000 AND b<7000; SELECT count(*), avg(b) FROM t2 WHERE b>=6100 AND b<7100; SELECT count(*), avg(b) FROM t2 WHERE b>=6200 AND b<7200; SELECT count(*), avg(b) FROM t2 WHERE b>=6300 AND b<7300; SELECT count(*), avg(b) FROM t2 WHERE b>=6400 AND b<7400; SELECT count(*), avg(b) FROM t2 WHERE b>=6500 AND b<7500; SELECT count(*), avg(b) FROM t2 WHERE b>=6600 AND b<7600; SELECT count(*), avg(b) FROM t2 WHERE b>=6700 AND b<7700; SELECT count(*), avg(b) FROM t2 WHERE b>=6800 AND b<7800; SELECT count(*), avg(b) FROM t2 WHERE b>=6900 AND b<7900; SELECT count(*), avg(b) FROM t2 WHERE b>=7000 AND b<8000; SELECT count(*), avg(b) FROM t2 WHERE b>=7100 AND b<8100; SELECT count(*), avg(b) FROM t2 WHERE b>=7200 AND b<8200; SELECT count(*), avg(b) FROM t2 WHERE b>=7300 AND b<8300; SELECT count(*), avg(b) FROM t2 WHERE b>=7400 AND b<8400; SELECT count(*), avg(b) FROM t2 WHERE b>=7500 AND b<8500; SELECT count(*), avg(b) FROM t2 WHERE b>=7600 AND b<8600; SELECT count(*), avg(b) FROM t2 WHERE b>=7700 AND b<8700; SELECT count(*), avg(b) FROM t2 WHERE b>=7800 AND b<8800; SELECT count(*), avg(b) FROM t2 WHERE b>=7900 AND b<8900; SELECT count(*), avg(b) FROM t2 WHERE b>=8000 AND b<9000; SELECT count(*), avg(b) FROM t2 WHERE b>=8100 AND b<9100; SELECT count(*), avg(b) FROM t2 WHERE b>=8200 AND b<9200; SELECT count(*), avg(b) FROM t2 WHERE b>=8300 AND b<9300; SELECT count(*), avg(b) FROM t2 WHERE b>=8400 AND b<9400; SELECT count(*), avg(b) FROM t2 WHERE b>=8500 AND b<9500; SELECT count(*), avg(b) FROM t2 WHERE b>=8600 AND b<9600; SELECT count(*), avg(b) FROM t2 WHERE b>=8700 AND b<9700; SELECT count(*), avg(b) FROM t2 WHERE b>=8800 AND b<9800; SELECT count(*), avg(b) FROM t2 WHERE b>=8900 AND b<9900; SELECT count(*), avg(b) FROM t2 WHERE b>=9000 AND b<10000; SELECT count(*), avg(b) FROM t2 WHERE b>=9100 AND b<10100; SELECT count(*), avg(b) FROM t2 WHERE b>=9200 AND b<10200; SELECT count(*), avg(b) FROM t2 WHERE b>=9300 AND b<10300; SELECT count(*), avg(b) FROM t2 WHERE b>=9400 AND b<10400; SELECT count(*), avg(b) FROM t2 WHERE b>=9500 AND b<10500; SELECT count(*), avg(b) FROM t2 WHERE b>=9600 AND b<10600; SELECT count(*), avg(b) FROM t2 WHERE b>=9700 AND b<10700; SELECT count(*), avg(b) FROM t2 WHERE b>=9800 AND b<10800; SELECT count(*), avg(b) FROM t2 WHERE b>=9900 AND b<10900; COMMIT; ================================================ FILE: packages/benchmark/src/benchmark5.sql ================================================ BEGIN; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%one%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%two%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%three%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%four%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%five%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%six%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seven%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eight%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%nine%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ten%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eleven%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twelve%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirteen%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fourteen%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifteen%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixteen%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventeen%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighteen%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%nineteen%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-one%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-two%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-three%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-four%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-five%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-six%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-seven%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-eight%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-nine%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-one%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-two%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-three%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-four%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-five%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-six%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-seven%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-eight%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-nine%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-one%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-two%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-three%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-four%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-five%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-six%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-seven%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-eight%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-nine%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-one%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-two%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-three%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-four%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-five%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-six%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-seven%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-eight%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-nine%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-one%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-two%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-three%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-four%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-five%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-six%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-seven%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-eight%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-nine%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-one%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-two%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-three%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-four%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-five%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-six%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-seven%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-eight%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-nine%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-one%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-two%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-three%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-four%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-five%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-six%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-seven%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-eight%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-nine%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-one%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-two%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-three%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-four%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-five%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-six%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-seven%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-eight%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-nine%'; SELECT count(*), avg(b) FROM t2 WHERE c LIKE '%one hundred%'; COMMIT; ================================================ FILE: packages/benchmark/src/benchmark6.sql ================================================ CREATE INDEX i2a ON t2(a); CREATE INDEX i2b ON t2(b); ================================================ FILE: packages/benchmark/src/benchmark7.sql ================================================ BEGIN; SELECT count(*), avg(b) FROM t2 WHERE b>=0 AND b<100; SELECT count(*), avg(b) FROM t2 WHERE b>=100 AND b<200; SELECT count(*), avg(b) FROM t2 WHERE b>=200 AND b<300; SELECT count(*), avg(b) FROM t2 WHERE b>=300 AND b<400; SELECT count(*), avg(b) FROM t2 WHERE b>=400 AND b<500; SELECT count(*), avg(b) FROM t2 WHERE b>=500 AND b<600; SELECT count(*), avg(b) FROM t2 WHERE b>=600 AND b<700; SELECT count(*), avg(b) FROM t2 WHERE b>=700 AND b<800; SELECT count(*), avg(b) FROM t2 WHERE b>=800 AND b<900; SELECT count(*), avg(b) FROM t2 WHERE b>=900 AND b<1000; SELECT count(*), avg(b) FROM t2 WHERE b>=1000 AND b<1100; SELECT count(*), avg(b) FROM t2 WHERE b>=1100 AND b<1200; SELECT count(*), avg(b) FROM t2 WHERE b>=1200 AND b<1300; SELECT count(*), avg(b) FROM t2 WHERE b>=1300 AND b<1400; SELECT count(*), avg(b) FROM t2 WHERE b>=1400 AND b<1500; SELECT count(*), avg(b) FROM t2 WHERE b>=1500 AND b<1600; SELECT count(*), avg(b) FROM t2 WHERE b>=1600 AND b<1700; SELECT count(*), avg(b) FROM t2 WHERE b>=1700 AND b<1800; SELECT count(*), avg(b) FROM t2 WHERE b>=1800 AND b<1900; SELECT count(*), avg(b) FROM t2 WHERE b>=1900 AND b<2000; SELECT count(*), avg(b) FROM t2 WHERE b>=2000 AND b<2100; SELECT count(*), avg(b) FROM t2 WHERE b>=2100 AND b<2200; SELECT count(*), avg(b) FROM t2 WHERE b>=2200 AND b<2300; SELECT count(*), avg(b) FROM t2 WHERE b>=2300 AND b<2400; SELECT count(*), avg(b) FROM t2 WHERE b>=2400 AND b<2500; SELECT count(*), avg(b) FROM t2 WHERE b>=2500 AND b<2600; SELECT count(*), avg(b) FROM t2 WHERE b>=2600 AND b<2700; SELECT count(*), avg(b) FROM t2 WHERE b>=2700 AND b<2800; SELECT count(*), avg(b) FROM t2 WHERE b>=2800 AND b<2900; SELECT count(*), avg(b) FROM t2 WHERE b>=2900 AND b<3000; SELECT count(*), avg(b) FROM t2 WHERE b>=3000 AND b<3100; SELECT count(*), avg(b) FROM t2 WHERE b>=3100 AND b<3200; SELECT count(*), avg(b) FROM t2 WHERE b>=3200 AND b<3300; SELECT count(*), avg(b) FROM t2 WHERE b>=3300 AND b<3400; SELECT count(*), avg(b) FROM t2 WHERE b>=3400 AND b<3500; SELECT count(*), avg(b) FROM t2 WHERE b>=3500 AND b<3600; SELECT count(*), avg(b) FROM t2 WHERE b>=3600 AND b<3700; SELECT count(*), avg(b) FROM t2 WHERE b>=3700 AND b<3800; SELECT count(*), avg(b) FROM t2 WHERE b>=3800 AND b<3900; SELECT count(*), avg(b) FROM t2 WHERE b>=3900 AND b<4000; SELECT count(*), avg(b) FROM t2 WHERE b>=4000 AND b<4100; SELECT count(*), avg(b) FROM t2 WHERE b>=4100 AND b<4200; SELECT count(*), avg(b) FROM t2 WHERE b>=4200 AND b<4300; SELECT count(*), avg(b) FROM t2 WHERE b>=4300 AND b<4400; SELECT count(*), avg(b) FROM t2 WHERE b>=4400 AND b<4500; SELECT count(*), avg(b) FROM t2 WHERE b>=4500 AND b<4600; SELECT count(*), avg(b) FROM t2 WHERE b>=4600 AND b<4700; SELECT count(*), avg(b) FROM t2 WHERE b>=4700 AND b<4800; SELECT count(*), avg(b) FROM t2 WHERE b>=4800 AND b<4900; SELECT count(*), avg(b) FROM t2 WHERE b>=4900 AND b<5000; SELECT count(*), avg(b) FROM t2 WHERE b>=5000 AND b<5100; SELECT count(*), avg(b) FROM t2 WHERE b>=5100 AND b<5200; SELECT count(*), avg(b) FROM t2 WHERE b>=5200 AND b<5300; SELECT count(*), avg(b) FROM t2 WHERE b>=5300 AND b<5400; SELECT count(*), avg(b) FROM t2 WHERE b>=5400 AND b<5500; SELECT count(*), avg(b) FROM t2 WHERE b>=5500 AND b<5600; SELECT count(*), avg(b) FROM t2 WHERE b>=5600 AND b<5700; SELECT count(*), avg(b) FROM t2 WHERE b>=5700 AND b<5800; SELECT count(*), avg(b) FROM t2 WHERE b>=5800 AND b<5900; SELECT count(*), avg(b) FROM t2 WHERE b>=5900 AND b<6000; SELECT count(*), avg(b) FROM t2 WHERE b>=6000 AND b<6100; SELECT count(*), avg(b) FROM t2 WHERE b>=6100 AND b<6200; SELECT count(*), avg(b) FROM t2 WHERE b>=6200 AND b<6300; SELECT count(*), avg(b) FROM t2 WHERE b>=6300 AND b<6400; SELECT count(*), avg(b) FROM t2 WHERE b>=6400 AND b<6500; SELECT count(*), avg(b) FROM t2 WHERE b>=6500 AND b<6600; SELECT count(*), avg(b) FROM t2 WHERE b>=6600 AND b<6700; SELECT count(*), avg(b) FROM t2 WHERE b>=6700 AND b<6800; SELECT count(*), avg(b) FROM t2 WHERE b>=6800 AND b<6900; SELECT count(*), avg(b) FROM t2 WHERE b>=6900 AND b<7000; SELECT count(*), avg(b) FROM t2 WHERE b>=7000 AND b<7100; SELECT count(*), avg(b) FROM t2 WHERE b>=7100 AND b<7200; SELECT count(*), avg(b) FROM t2 WHERE b>=7200 AND b<7300; SELECT count(*), avg(b) FROM t2 WHERE b>=7300 AND b<7400; SELECT count(*), avg(b) FROM t2 WHERE b>=7400 AND b<7500; SELECT count(*), avg(b) FROM t2 WHERE b>=7500 AND b<7600; SELECT count(*), avg(b) FROM t2 WHERE b>=7600 AND b<7700; SELECT count(*), avg(b) FROM t2 WHERE b>=7700 AND b<7800; SELECT count(*), avg(b) FROM t2 WHERE b>=7800 AND b<7900; SELECT count(*), avg(b) FROM t2 WHERE b>=7900 AND b<8000; SELECT count(*), avg(b) FROM t2 WHERE b>=8000 AND b<8100; SELECT count(*), avg(b) FROM t2 WHERE b>=8100 AND b<8200; SELECT count(*), avg(b) FROM t2 WHERE b>=8200 AND b<8300; SELECT count(*), avg(b) FROM t2 WHERE b>=8300 AND b<8400; SELECT count(*), avg(b) FROM t2 WHERE b>=8400 AND b<8500; SELECT count(*), avg(b) FROM t2 WHERE b>=8500 AND b<8600; SELECT count(*), avg(b) FROM t2 WHERE b>=8600 AND b<8700; SELECT count(*), avg(b) FROM t2 WHERE b>=8700 AND b<8800; SELECT count(*), avg(b) FROM t2 WHERE b>=8800 AND b<8900; SELECT count(*), avg(b) FROM t2 WHERE b>=8900 AND b<9000; SELECT count(*), avg(b) FROM t2 WHERE b>=9000 AND b<9100; SELECT count(*), avg(b) FROM t2 WHERE b>=9100 AND b<9200; SELECT count(*), avg(b) FROM t2 WHERE b>=9200 AND b<9300; SELECT count(*), avg(b) FROM t2 WHERE b>=9300 AND b<9400; SELECT count(*), avg(b) FROM t2 WHERE b>=9400 AND b<9500; SELECT count(*), avg(b) FROM t2 WHERE b>=9500 AND b<9600; SELECT count(*), avg(b) FROM t2 WHERE b>=9600 AND b<9700; SELECT count(*), avg(b) FROM t2 WHERE b>=9700 AND b<9800; SELECT count(*), avg(b) FROM t2 WHERE b>=9800 AND b<9900; SELECT count(*), avg(b) FROM t2 WHERE b>=9900 AND b<10000; SELECT count(*), avg(b) FROM t2 WHERE b>=10000 AND b<10100; SELECT count(*), avg(b) FROM t2 WHERE b>=10100 AND b<10200; SELECT count(*), avg(b) FROM t2 WHERE b>=10200 AND b<10300; SELECT count(*), avg(b) FROM t2 WHERE b>=10300 AND b<10400; SELECT count(*), avg(b) FROM t2 WHERE b>=10400 AND b<10500; SELECT count(*), avg(b) FROM t2 WHERE b>=10500 AND b<10600; SELECT count(*), avg(b) FROM t2 WHERE b>=10600 AND b<10700; SELECT count(*), avg(b) FROM t2 WHERE b>=10700 AND b<10800; SELECT count(*), avg(b) FROM t2 WHERE b>=10800 AND b<10900; SELECT count(*), avg(b) FROM t2 WHERE b>=10900 AND b<11000; SELECT count(*), avg(b) FROM t2 WHERE b>=11000 AND b<11100; SELECT count(*), avg(b) FROM t2 WHERE b>=11100 AND b<11200; SELECT count(*), avg(b) FROM t2 WHERE b>=11200 AND b<11300; SELECT count(*), avg(b) FROM t2 WHERE b>=11300 AND b<11400; SELECT count(*), avg(b) FROM t2 WHERE b>=11400 AND b<11500; SELECT count(*), avg(b) FROM t2 WHERE b>=11500 AND b<11600; SELECT count(*), avg(b) FROM t2 WHERE b>=11600 AND b<11700; SELECT count(*), avg(b) FROM t2 WHERE b>=11700 AND b<11800; SELECT count(*), avg(b) FROM t2 WHERE b>=11800 AND b<11900; SELECT count(*), avg(b) FROM t2 WHERE b>=11900 AND b<12000; SELECT count(*), avg(b) FROM t2 WHERE b>=12000 AND b<12100; SELECT count(*), avg(b) FROM t2 WHERE b>=12100 AND b<12200; SELECT count(*), avg(b) FROM t2 WHERE b>=12200 AND b<12300; SELECT count(*), avg(b) FROM t2 WHERE b>=12300 AND b<12400; SELECT count(*), avg(b) FROM t2 WHERE b>=12400 AND b<12500; SELECT count(*), avg(b) FROM t2 WHERE b>=12500 AND b<12600; SELECT count(*), avg(b) FROM t2 WHERE b>=12600 AND b<12700; SELECT count(*), avg(b) FROM t2 WHERE b>=12700 AND b<12800; SELECT count(*), avg(b) FROM t2 WHERE b>=12800 AND b<12900; SELECT count(*), avg(b) FROM t2 WHERE b>=12900 AND b<13000; SELECT count(*), avg(b) FROM t2 WHERE b>=13000 AND b<13100; SELECT count(*), avg(b) FROM t2 WHERE b>=13100 AND b<13200; SELECT count(*), avg(b) FROM t2 WHERE b>=13200 AND b<13300; SELECT count(*), avg(b) FROM t2 WHERE b>=13300 AND b<13400; SELECT count(*), avg(b) FROM t2 WHERE b>=13400 AND b<13500; SELECT count(*), avg(b) FROM t2 WHERE b>=13500 AND b<13600; SELECT count(*), avg(b) FROM t2 WHERE b>=13600 AND b<13700; SELECT count(*), avg(b) FROM t2 WHERE b>=13700 AND b<13800; SELECT count(*), avg(b) FROM t2 WHERE b>=13800 AND b<13900; SELECT count(*), avg(b) FROM t2 WHERE b>=13900 AND b<14000; SELECT count(*), avg(b) FROM t2 WHERE b>=14000 AND b<14100; SELECT count(*), avg(b) FROM t2 WHERE b>=14100 AND b<14200; SELECT count(*), avg(b) FROM t2 WHERE b>=14200 AND b<14300; SELECT count(*), avg(b) FROM t2 WHERE b>=14300 AND b<14400; SELECT count(*), avg(b) FROM t2 WHERE b>=14400 AND b<14500; SELECT count(*), avg(b) FROM t2 WHERE b>=14500 AND b<14600; SELECT count(*), avg(b) FROM t2 WHERE b>=14600 AND b<14700; SELECT count(*), avg(b) FROM t2 WHERE b>=14700 AND b<14800; SELECT count(*), avg(b) FROM t2 WHERE b>=14800 AND b<14900; SELECT count(*), avg(b) FROM t2 WHERE b>=14900 AND b<15000; SELECT count(*), avg(b) FROM t2 WHERE b>=15000 AND b<15100; SELECT count(*), avg(b) FROM t2 WHERE b>=15100 AND b<15200; SELECT count(*), avg(b) FROM t2 WHERE b>=15200 AND b<15300; SELECT count(*), avg(b) FROM t2 WHERE b>=15300 AND b<15400; SELECT count(*), avg(b) FROM t2 WHERE b>=15400 AND b<15500; SELECT count(*), avg(b) FROM t2 WHERE b>=15500 AND b<15600; SELECT count(*), avg(b) FROM t2 WHERE b>=15600 AND b<15700; SELECT count(*), avg(b) FROM t2 WHERE b>=15700 AND b<15800; SELECT count(*), avg(b) FROM t2 WHERE b>=15800 AND b<15900; SELECT count(*), avg(b) FROM t2 WHERE b>=15900 AND b<16000; SELECT count(*), avg(b) FROM t2 WHERE b>=16000 AND b<16100; SELECT count(*), avg(b) FROM t2 WHERE b>=16100 AND b<16200; SELECT count(*), avg(b) FROM t2 WHERE b>=16200 AND b<16300; SELECT count(*), avg(b) FROM t2 WHERE b>=16300 AND b<16400; SELECT count(*), avg(b) FROM t2 WHERE b>=16400 AND b<16500; SELECT count(*), avg(b) FROM t2 WHERE b>=16500 AND b<16600; SELECT count(*), avg(b) FROM t2 WHERE b>=16600 AND b<16700; SELECT count(*), avg(b) FROM t2 WHERE b>=16700 AND b<16800; SELECT count(*), avg(b) FROM t2 WHERE b>=16800 AND b<16900; SELECT count(*), avg(b) FROM t2 WHERE b>=16900 AND b<17000; SELECT count(*), avg(b) FROM t2 WHERE b>=17000 AND b<17100; SELECT count(*), avg(b) FROM t2 WHERE b>=17100 AND b<17200; SELECT count(*), avg(b) FROM t2 WHERE b>=17200 AND b<17300; SELECT count(*), avg(b) FROM t2 WHERE b>=17300 AND b<17400; SELECT count(*), avg(b) FROM t2 WHERE b>=17400 AND b<17500; SELECT count(*), avg(b) FROM t2 WHERE b>=17500 AND b<17600; SELECT count(*), avg(b) FROM t2 WHERE b>=17600 AND b<17700; SELECT count(*), avg(b) FROM t2 WHERE b>=17700 AND b<17800; SELECT count(*), avg(b) FROM t2 WHERE b>=17800 AND b<17900; SELECT count(*), avg(b) FROM t2 WHERE b>=17900 AND b<18000; SELECT count(*), avg(b) FROM t2 WHERE b>=18000 AND b<18100; SELECT count(*), avg(b) FROM t2 WHERE b>=18100 AND b<18200; SELECT count(*), avg(b) FROM t2 WHERE b>=18200 AND b<18300; SELECT count(*), avg(b) FROM t2 WHERE b>=18300 AND b<18400; SELECT count(*), avg(b) FROM t2 WHERE b>=18400 AND b<18500; SELECT count(*), avg(b) FROM t2 WHERE b>=18500 AND b<18600; SELECT count(*), avg(b) FROM t2 WHERE b>=18600 AND b<18700; SELECT count(*), avg(b) FROM t2 WHERE b>=18700 AND b<18800; SELECT count(*), avg(b) FROM t2 WHERE b>=18800 AND b<18900; SELECT count(*), avg(b) FROM t2 WHERE b>=18900 AND b<19000; SELECT count(*), avg(b) FROM t2 WHERE b>=19000 AND b<19100; SELECT count(*), avg(b) FROM t2 WHERE b>=19100 AND b<19200; SELECT count(*), avg(b) FROM t2 WHERE b>=19200 AND b<19300; SELECT count(*), avg(b) FROM t2 WHERE b>=19300 AND b<19400; SELECT count(*), avg(b) FROM t2 WHERE b>=19400 AND b<19500; SELECT count(*), avg(b) FROM t2 WHERE b>=19500 AND b<19600; SELECT count(*), avg(b) FROM t2 WHERE b>=19600 AND b<19700; SELECT count(*), avg(b) FROM t2 WHERE b>=19700 AND b<19800; SELECT count(*), avg(b) FROM t2 WHERE b>=19800 AND b<19900; SELECT count(*), avg(b) FROM t2 WHERE b>=19900 AND b<20000; SELECT count(*), avg(b) FROM t2 WHERE b>=20000 AND b<20100; SELECT count(*), avg(b) FROM t2 WHERE b>=20100 AND b<20200; SELECT count(*), avg(b) FROM t2 WHERE b>=20200 AND b<20300; SELECT count(*), avg(b) FROM t2 WHERE b>=20300 AND b<20400; SELECT count(*), avg(b) FROM t2 WHERE b>=20400 AND b<20500; SELECT count(*), avg(b) FROM t2 WHERE b>=20500 AND b<20600; SELECT count(*), avg(b) FROM t2 WHERE b>=20600 AND b<20700; SELECT count(*), avg(b) FROM t2 WHERE b>=20700 AND b<20800; SELECT count(*), avg(b) FROM t2 WHERE b>=20800 AND b<20900; SELECT count(*), avg(b) FROM t2 WHERE b>=20900 AND b<21000; SELECT count(*), avg(b) FROM t2 WHERE b>=21000 AND b<21100; SELECT count(*), avg(b) FROM t2 WHERE b>=21100 AND b<21200; SELECT count(*), avg(b) FROM t2 WHERE b>=21200 AND b<21300; SELECT count(*), avg(b) FROM t2 WHERE b>=21300 AND b<21400; SELECT count(*), avg(b) FROM t2 WHERE b>=21400 AND b<21500; SELECT count(*), avg(b) FROM t2 WHERE b>=21500 AND b<21600; SELECT count(*), avg(b) FROM t2 WHERE b>=21600 AND b<21700; SELECT count(*), avg(b) FROM t2 WHERE b>=21700 AND b<21800; SELECT count(*), avg(b) FROM t2 WHERE b>=21800 AND b<21900; SELECT count(*), avg(b) FROM t2 WHERE b>=21900 AND b<22000; SELECT count(*), avg(b) FROM t2 WHERE b>=22000 AND b<22100; SELECT count(*), avg(b) FROM t2 WHERE b>=22100 AND b<22200; SELECT count(*), avg(b) FROM t2 WHERE b>=22200 AND b<22300; SELECT count(*), avg(b) FROM t2 WHERE b>=22300 AND b<22400; SELECT count(*), avg(b) FROM t2 WHERE b>=22400 AND b<22500; SELECT count(*), avg(b) FROM t2 WHERE b>=22500 AND b<22600; SELECT count(*), avg(b) FROM t2 WHERE b>=22600 AND b<22700; SELECT count(*), avg(b) FROM t2 WHERE b>=22700 AND b<22800; SELECT count(*), avg(b) FROM t2 WHERE b>=22800 AND b<22900; SELECT count(*), avg(b) FROM t2 WHERE b>=22900 AND b<23000; SELECT count(*), avg(b) FROM t2 WHERE b>=23000 AND b<23100; SELECT count(*), avg(b) FROM t2 WHERE b>=23100 AND b<23200; SELECT count(*), avg(b) FROM t2 WHERE b>=23200 AND b<23300; SELECT count(*), avg(b) FROM t2 WHERE b>=23300 AND b<23400; SELECT count(*), avg(b) FROM t2 WHERE b>=23400 AND b<23500; SELECT count(*), avg(b) FROM t2 WHERE b>=23500 AND b<23600; SELECT count(*), avg(b) FROM t2 WHERE b>=23600 AND b<23700; SELECT count(*), avg(b) FROM t2 WHERE b>=23700 AND b<23800; SELECT count(*), avg(b) FROM t2 WHERE b>=23800 AND b<23900; SELECT count(*), avg(b) FROM t2 WHERE b>=23900 AND b<24000; SELECT count(*), avg(b) FROM t2 WHERE b>=24000 AND b<24100; SELECT count(*), avg(b) FROM t2 WHERE b>=24100 AND b<24200; SELECT count(*), avg(b) FROM t2 WHERE b>=24200 AND b<24300; SELECT count(*), avg(b) FROM t2 WHERE b>=24300 AND b<24400; SELECT count(*), avg(b) FROM t2 WHERE b>=24400 AND b<24500; SELECT count(*), avg(b) FROM t2 WHERE b>=24500 AND b<24600; SELECT count(*), avg(b) FROM t2 WHERE b>=24600 AND b<24700; SELECT count(*), avg(b) FROM t2 WHERE b>=24700 AND b<24800; SELECT count(*), avg(b) FROM t2 WHERE b>=24800 AND b<24900; SELECT count(*), avg(b) FROM t2 WHERE b>=24900 AND b<25000; SELECT count(*), avg(b) FROM t2 WHERE b>=25000 AND b<25100; SELECT count(*), avg(b) FROM t2 WHERE b>=25100 AND b<25200; SELECT count(*), avg(b) FROM t2 WHERE b>=25200 AND b<25300; SELECT count(*), avg(b) FROM t2 WHERE b>=25300 AND b<25400; SELECT count(*), avg(b) FROM t2 WHERE b>=25400 AND b<25500; SELECT count(*), avg(b) FROM t2 WHERE b>=25500 AND b<25600; SELECT count(*), avg(b) FROM t2 WHERE b>=25600 AND b<25700; SELECT count(*), avg(b) FROM t2 WHERE b>=25700 AND b<25800; SELECT count(*), avg(b) FROM t2 WHERE b>=25800 AND b<25900; SELECT count(*), avg(b) FROM t2 WHERE b>=25900 AND b<26000; SELECT count(*), avg(b) FROM t2 WHERE b>=26000 AND b<26100; SELECT count(*), avg(b) FROM t2 WHERE b>=26100 AND b<26200; SELECT count(*), avg(b) FROM t2 WHERE b>=26200 AND b<26300; SELECT count(*), avg(b) FROM t2 WHERE b>=26300 AND b<26400; SELECT count(*), avg(b) FROM t2 WHERE b>=26400 AND b<26500; SELECT count(*), avg(b) FROM t2 WHERE b>=26500 AND b<26600; SELECT count(*), avg(b) FROM t2 WHERE b>=26600 AND b<26700; SELECT count(*), avg(b) FROM t2 WHERE b>=26700 AND b<26800; SELECT count(*), avg(b) FROM t2 WHERE b>=26800 AND b<26900; SELECT count(*), avg(b) FROM t2 WHERE b>=26900 AND b<27000; SELECT count(*), avg(b) FROM t2 WHERE b>=27000 AND b<27100; SELECT count(*), avg(b) FROM t2 WHERE b>=27100 AND b<27200; SELECT count(*), avg(b) FROM t2 WHERE b>=27200 AND b<27300; SELECT count(*), avg(b) FROM t2 WHERE b>=27300 AND b<27400; SELECT count(*), avg(b) FROM t2 WHERE b>=27400 AND b<27500; SELECT count(*), avg(b) FROM t2 WHERE b>=27500 AND b<27600; SELECT count(*), avg(b) FROM t2 WHERE b>=27600 AND b<27700; SELECT count(*), avg(b) FROM t2 WHERE b>=27700 AND b<27800; SELECT count(*), avg(b) FROM t2 WHERE b>=27800 AND b<27900; SELECT count(*), avg(b) FROM t2 WHERE b>=27900 AND b<28000; SELECT count(*), avg(b) FROM t2 WHERE b>=28000 AND b<28100; SELECT count(*), avg(b) FROM t2 WHERE b>=28100 AND b<28200; SELECT count(*), avg(b) FROM t2 WHERE b>=28200 AND b<28300; SELECT count(*), avg(b) FROM t2 WHERE b>=28300 AND b<28400; SELECT count(*), avg(b) FROM t2 WHERE b>=28400 AND b<28500; SELECT count(*), avg(b) FROM t2 WHERE b>=28500 AND b<28600; SELECT count(*), avg(b) FROM t2 WHERE b>=28600 AND b<28700; SELECT count(*), avg(b) FROM t2 WHERE b>=28700 AND b<28800; SELECT count(*), avg(b) FROM t2 WHERE b>=28800 AND b<28900; SELECT count(*), avg(b) FROM t2 WHERE b>=28900 AND b<29000; SELECT count(*), avg(b) FROM t2 WHERE b>=29000 AND b<29100; SELECT count(*), avg(b) FROM t2 WHERE b>=29100 AND b<29200; SELECT count(*), avg(b) FROM t2 WHERE b>=29200 AND b<29300; SELECT count(*), avg(b) FROM t2 WHERE b>=29300 AND b<29400; SELECT count(*), avg(b) FROM t2 WHERE b>=29400 AND b<29500; SELECT count(*), avg(b) FROM t2 WHERE b>=29500 AND b<29600; SELECT count(*), avg(b) FROM t2 WHERE b>=29600 AND b<29700; SELECT count(*), avg(b) FROM t2 WHERE b>=29700 AND b<29800; SELECT count(*), avg(b) FROM t2 WHERE b>=29800 AND b<29900; SELECT count(*), avg(b) FROM t2 WHERE b>=29900 AND b<30000; SELECT count(*), avg(b) FROM t2 WHERE b>=30000 AND b<30100; SELECT count(*), avg(b) FROM t2 WHERE b>=30100 AND b<30200; SELECT count(*), avg(b) FROM t2 WHERE b>=30200 AND b<30300; SELECT count(*), avg(b) FROM t2 WHERE b>=30300 AND b<30400; SELECT count(*), avg(b) FROM t2 WHERE b>=30400 AND b<30500; SELECT count(*), avg(b) FROM t2 WHERE b>=30500 AND b<30600; SELECT count(*), avg(b) FROM t2 WHERE b>=30600 AND b<30700; SELECT count(*), avg(b) FROM t2 WHERE b>=30700 AND b<30800; SELECT count(*), avg(b) FROM t2 WHERE b>=30800 AND b<30900; SELECT count(*), avg(b) FROM t2 WHERE b>=30900 AND b<31000; SELECT count(*), avg(b) FROM t2 WHERE b>=31000 AND b<31100; SELECT count(*), avg(b) FROM t2 WHERE b>=31100 AND b<31200; SELECT count(*), avg(b) FROM t2 WHERE b>=31200 AND b<31300; SELECT count(*), avg(b) FROM t2 WHERE b>=31300 AND b<31400; SELECT count(*), avg(b) FROM t2 WHERE b>=31400 AND b<31500; SELECT count(*), avg(b) FROM t2 WHERE b>=31500 AND b<31600; SELECT count(*), avg(b) FROM t2 WHERE b>=31600 AND b<31700; SELECT count(*), avg(b) FROM t2 WHERE b>=31700 AND b<31800; SELECT count(*), avg(b) FROM t2 WHERE b>=31800 AND b<31900; SELECT count(*), avg(b) FROM t2 WHERE b>=31900 AND b<32000; SELECT count(*), avg(b) FROM t2 WHERE b>=32000 AND b<32100; SELECT count(*), avg(b) FROM t2 WHERE b>=32100 AND b<32200; SELECT count(*), avg(b) FROM t2 WHERE b>=32200 AND b<32300; SELECT count(*), avg(b) FROM t2 WHERE b>=32300 AND b<32400; SELECT count(*), avg(b) FROM t2 WHERE b>=32400 AND b<32500; SELECT count(*), avg(b) FROM t2 WHERE b>=32500 AND b<32600; SELECT count(*), avg(b) FROM t2 WHERE b>=32600 AND b<32700; SELECT count(*), avg(b) FROM t2 WHERE b>=32700 AND b<32800; SELECT count(*), avg(b) FROM t2 WHERE b>=32800 AND b<32900; SELECT count(*), avg(b) FROM t2 WHERE b>=32900 AND b<33000; SELECT count(*), avg(b) FROM t2 WHERE b>=33000 AND b<33100; SELECT count(*), avg(b) FROM t2 WHERE b>=33100 AND b<33200; SELECT count(*), avg(b) FROM t2 WHERE b>=33200 AND b<33300; SELECT count(*), avg(b) FROM t2 WHERE b>=33300 AND b<33400; SELECT count(*), avg(b) FROM t2 WHERE b>=33400 AND b<33500; SELECT count(*), avg(b) FROM t2 WHERE b>=33500 AND b<33600; SELECT count(*), avg(b) FROM t2 WHERE b>=33600 AND b<33700; SELECT count(*), avg(b) FROM t2 WHERE b>=33700 AND b<33800; SELECT count(*), avg(b) FROM t2 WHERE b>=33800 AND b<33900; SELECT count(*), avg(b) FROM t2 WHERE b>=33900 AND b<34000; SELECT count(*), avg(b) FROM t2 WHERE b>=34000 AND b<34100; SELECT count(*), avg(b) FROM t2 WHERE b>=34100 AND b<34200; SELECT count(*), avg(b) FROM t2 WHERE b>=34200 AND b<34300; SELECT count(*), avg(b) FROM t2 WHERE b>=34300 AND b<34400; SELECT count(*), avg(b) FROM t2 WHERE b>=34400 AND b<34500; SELECT count(*), avg(b) FROM t2 WHERE b>=34500 AND b<34600; SELECT count(*), avg(b) FROM t2 WHERE b>=34600 AND b<34700; SELECT count(*), avg(b) FROM t2 WHERE b>=34700 AND b<34800; SELECT count(*), avg(b) FROM t2 WHERE b>=34800 AND b<34900; SELECT count(*), avg(b) FROM t2 WHERE b>=34900 AND b<35000; SELECT count(*), avg(b) FROM t2 WHERE b>=35000 AND b<35100; SELECT count(*), avg(b) FROM t2 WHERE b>=35100 AND b<35200; SELECT count(*), avg(b) FROM t2 WHERE b>=35200 AND b<35300; SELECT count(*), avg(b) FROM t2 WHERE b>=35300 AND b<35400; SELECT count(*), avg(b) FROM t2 WHERE b>=35400 AND b<35500; SELECT count(*), avg(b) FROM t2 WHERE b>=35500 AND b<35600; SELECT count(*), avg(b) FROM t2 WHERE b>=35600 AND b<35700; SELECT count(*), avg(b) FROM t2 WHERE b>=35700 AND b<35800; SELECT count(*), avg(b) FROM t2 WHERE b>=35800 AND b<35900; SELECT count(*), avg(b) FROM t2 WHERE b>=35900 AND b<36000; SELECT count(*), avg(b) FROM t2 WHERE b>=36000 AND b<36100; SELECT count(*), avg(b) FROM t2 WHERE b>=36100 AND b<36200; SELECT count(*), avg(b) FROM t2 WHERE b>=36200 AND b<36300; SELECT count(*), avg(b) FROM t2 WHERE b>=36300 AND b<36400; SELECT count(*), avg(b) FROM t2 WHERE b>=36400 AND b<36500; SELECT count(*), avg(b) FROM t2 WHERE b>=36500 AND b<36600; SELECT count(*), avg(b) FROM t2 WHERE b>=36600 AND b<36700; SELECT count(*), avg(b) FROM t2 WHERE b>=36700 AND b<36800; SELECT count(*), avg(b) FROM t2 WHERE b>=36800 AND b<36900; SELECT count(*), avg(b) FROM t2 WHERE b>=36900 AND b<37000; SELECT count(*), avg(b) FROM t2 WHERE b>=37000 AND b<37100; SELECT count(*), avg(b) FROM t2 WHERE b>=37100 AND b<37200; SELECT count(*), avg(b) FROM t2 WHERE b>=37200 AND b<37300; SELECT count(*), avg(b) FROM t2 WHERE b>=37300 AND b<37400; SELECT count(*), avg(b) FROM t2 WHERE b>=37400 AND b<37500; SELECT count(*), avg(b) FROM t2 WHERE b>=37500 AND b<37600; SELECT count(*), avg(b) FROM t2 WHERE b>=37600 AND b<37700; SELECT count(*), avg(b) FROM t2 WHERE b>=37700 AND b<37800; SELECT count(*), avg(b) FROM t2 WHERE b>=37800 AND b<37900; SELECT count(*), avg(b) FROM t2 WHERE b>=37900 AND b<38000; SELECT count(*), avg(b) FROM t2 WHERE b>=38000 AND b<38100; SELECT count(*), avg(b) FROM t2 WHERE b>=38100 AND b<38200; SELECT count(*), avg(b) FROM t2 WHERE b>=38200 AND b<38300; SELECT count(*), avg(b) FROM t2 WHERE b>=38300 AND b<38400; SELECT count(*), avg(b) FROM t2 WHERE b>=38400 AND b<38500; SELECT count(*), avg(b) FROM t2 WHERE b>=38500 AND b<38600; SELECT count(*), avg(b) FROM t2 WHERE b>=38600 AND b<38700; SELECT count(*), avg(b) FROM t2 WHERE b>=38700 AND b<38800; SELECT count(*), avg(b) FROM t2 WHERE b>=38800 AND b<38900; SELECT count(*), avg(b) FROM t2 WHERE b>=38900 AND b<39000; SELECT count(*), avg(b) FROM t2 WHERE b>=39000 AND b<39100; SELECT count(*), avg(b) FROM t2 WHERE b>=39100 AND b<39200; SELECT count(*), avg(b) FROM t2 WHERE b>=39200 AND b<39300; SELECT count(*), avg(b) FROM t2 WHERE b>=39300 AND b<39400; SELECT count(*), avg(b) FROM t2 WHERE b>=39400 AND b<39500; SELECT count(*), avg(b) FROM t2 WHERE b>=39500 AND b<39600; SELECT count(*), avg(b) FROM t2 WHERE b>=39600 AND b<39700; SELECT count(*), avg(b) FROM t2 WHERE b>=39700 AND b<39800; SELECT count(*), avg(b) FROM t2 WHERE b>=39800 AND b<39900; SELECT count(*), avg(b) FROM t2 WHERE b>=39900 AND b<40000; SELECT count(*), avg(b) FROM t2 WHERE b>=40000 AND b<40100; SELECT count(*), avg(b) FROM t2 WHERE b>=40100 AND b<40200; SELECT count(*), avg(b) FROM t2 WHERE b>=40200 AND b<40300; SELECT count(*), avg(b) FROM t2 WHERE b>=40300 AND b<40400; SELECT count(*), avg(b) FROM t2 WHERE b>=40400 AND b<40500; SELECT count(*), avg(b) FROM t2 WHERE b>=40500 AND b<40600; SELECT count(*), avg(b) FROM t2 WHERE b>=40600 AND b<40700; SELECT count(*), avg(b) FROM t2 WHERE b>=40700 AND b<40800; SELECT count(*), avg(b) FROM t2 WHERE b>=40800 AND b<40900; SELECT count(*), avg(b) FROM t2 WHERE b>=40900 AND b<41000; SELECT count(*), avg(b) FROM t2 WHERE b>=41000 AND b<41100; SELECT count(*), avg(b) FROM t2 WHERE b>=41100 AND b<41200; SELECT count(*), avg(b) FROM t2 WHERE b>=41200 AND b<41300; SELECT count(*), avg(b) FROM t2 WHERE b>=41300 AND b<41400; SELECT count(*), avg(b) FROM t2 WHERE b>=41400 AND b<41500; SELECT count(*), avg(b) FROM t2 WHERE b>=41500 AND b<41600; SELECT count(*), avg(b) FROM t2 WHERE b>=41600 AND b<41700; SELECT count(*), avg(b) FROM t2 WHERE b>=41700 AND b<41800; SELECT count(*), avg(b) FROM t2 WHERE b>=41800 AND b<41900; SELECT count(*), avg(b) FROM t2 WHERE b>=41900 AND b<42000; SELECT count(*), avg(b) FROM t2 WHERE b>=42000 AND b<42100; SELECT count(*), avg(b) FROM t2 WHERE b>=42100 AND b<42200; SELECT count(*), avg(b) FROM t2 WHERE b>=42200 AND b<42300; SELECT count(*), avg(b) FROM t2 WHERE b>=42300 AND b<42400; SELECT count(*), avg(b) FROM t2 WHERE b>=42400 AND b<42500; SELECT count(*), avg(b) FROM t2 WHERE b>=42500 AND b<42600; SELECT count(*), avg(b) FROM t2 WHERE b>=42600 AND b<42700; SELECT count(*), avg(b) FROM t2 WHERE b>=42700 AND b<42800; SELECT count(*), avg(b) FROM t2 WHERE b>=42800 AND b<42900; SELECT count(*), avg(b) FROM t2 WHERE b>=42900 AND b<43000; SELECT count(*), avg(b) FROM t2 WHERE b>=43000 AND b<43100; SELECT count(*), avg(b) FROM t2 WHERE b>=43100 AND b<43200; SELECT count(*), avg(b) FROM t2 WHERE b>=43200 AND b<43300; SELECT count(*), avg(b) FROM t2 WHERE b>=43300 AND b<43400; SELECT count(*), avg(b) FROM t2 WHERE b>=43400 AND b<43500; SELECT count(*), avg(b) FROM t2 WHERE b>=43500 AND b<43600; SELECT count(*), avg(b) FROM t2 WHERE b>=43600 AND b<43700; SELECT count(*), avg(b) FROM t2 WHERE b>=43700 AND b<43800; SELECT count(*), avg(b) FROM t2 WHERE b>=43800 AND b<43900; SELECT count(*), avg(b) FROM t2 WHERE b>=43900 AND b<44000; SELECT count(*), avg(b) FROM t2 WHERE b>=44000 AND b<44100; SELECT count(*), avg(b) FROM t2 WHERE b>=44100 AND b<44200; SELECT count(*), avg(b) FROM t2 WHERE b>=44200 AND b<44300; SELECT count(*), avg(b) FROM t2 WHERE b>=44300 AND b<44400; SELECT count(*), avg(b) FROM t2 WHERE b>=44400 AND b<44500; SELECT count(*), avg(b) FROM t2 WHERE b>=44500 AND b<44600; SELECT count(*), avg(b) FROM t2 WHERE b>=44600 AND b<44700; SELECT count(*), avg(b) FROM t2 WHERE b>=44700 AND b<44800; SELECT count(*), avg(b) FROM t2 WHERE b>=44800 AND b<44900; SELECT count(*), avg(b) FROM t2 WHERE b>=44900 AND b<45000; SELECT count(*), avg(b) FROM t2 WHERE b>=45000 AND b<45100; SELECT count(*), avg(b) FROM t2 WHERE b>=45100 AND b<45200; SELECT count(*), avg(b) FROM t2 WHERE b>=45200 AND b<45300; SELECT count(*), avg(b) FROM t2 WHERE b>=45300 AND b<45400; SELECT count(*), avg(b) FROM t2 WHERE b>=45400 AND b<45500; SELECT count(*), avg(b) FROM t2 WHERE b>=45500 AND b<45600; SELECT count(*), avg(b) FROM t2 WHERE b>=45600 AND b<45700; SELECT count(*), avg(b) FROM t2 WHERE b>=45700 AND b<45800; SELECT count(*), avg(b) FROM t2 WHERE b>=45800 AND b<45900; SELECT count(*), avg(b) FROM t2 WHERE b>=45900 AND b<46000; SELECT count(*), avg(b) FROM t2 WHERE b>=46000 AND b<46100; SELECT count(*), avg(b) FROM t2 WHERE b>=46100 AND b<46200; SELECT count(*), avg(b) FROM t2 WHERE b>=46200 AND b<46300; SELECT count(*), avg(b) FROM t2 WHERE b>=46300 AND b<46400; SELECT count(*), avg(b) FROM t2 WHERE b>=46400 AND b<46500; SELECT count(*), avg(b) FROM t2 WHERE b>=46500 AND b<46600; SELECT count(*), avg(b) FROM t2 WHERE b>=46600 AND b<46700; SELECT count(*), avg(b) FROM t2 WHERE b>=46700 AND b<46800; SELECT count(*), avg(b) FROM t2 WHERE b>=46800 AND b<46900; SELECT count(*), avg(b) FROM t2 WHERE b>=46900 AND b<47000; SELECT count(*), avg(b) FROM t2 WHERE b>=47000 AND b<47100; SELECT count(*), avg(b) FROM t2 WHERE b>=47100 AND b<47200; SELECT count(*), avg(b) FROM t2 WHERE b>=47200 AND b<47300; SELECT count(*), avg(b) FROM t2 WHERE b>=47300 AND b<47400; SELECT count(*), avg(b) FROM t2 WHERE b>=47400 AND b<47500; SELECT count(*), avg(b) FROM t2 WHERE b>=47500 AND b<47600; SELECT count(*), avg(b) FROM t2 WHERE b>=47600 AND b<47700; SELECT count(*), avg(b) FROM t2 WHERE b>=47700 AND b<47800; SELECT count(*), avg(b) FROM t2 WHERE b>=47800 AND b<47900; SELECT count(*), avg(b) FROM t2 WHERE b>=47900 AND b<48000; SELECT count(*), avg(b) FROM t2 WHERE b>=48000 AND b<48100; SELECT count(*), avg(b) FROM t2 WHERE b>=48100 AND b<48200; SELECT count(*), avg(b) FROM t2 WHERE b>=48200 AND b<48300; SELECT count(*), avg(b) FROM t2 WHERE b>=48300 AND b<48400; SELECT count(*), avg(b) FROM t2 WHERE b>=48400 AND b<48500; SELECT count(*), avg(b) FROM t2 WHERE b>=48500 AND b<48600; SELECT count(*), avg(b) FROM t2 WHERE b>=48600 AND b<48700; SELECT count(*), avg(b) FROM t2 WHERE b>=48700 AND b<48800; SELECT count(*), avg(b) FROM t2 WHERE b>=48800 AND b<48900; SELECT count(*), avg(b) FROM t2 WHERE b>=48900 AND b<49000; SELECT count(*), avg(b) FROM t2 WHERE b>=49000 AND b<49100; SELECT count(*), avg(b) FROM t2 WHERE b>=49100 AND b<49200; SELECT count(*), avg(b) FROM t2 WHERE b>=49200 AND b<49300; SELECT count(*), avg(b) FROM t2 WHERE b>=49300 AND b<49400; SELECT count(*), avg(b) FROM t2 WHERE b>=49400 AND b<49500; SELECT count(*), avg(b) FROM t2 WHERE b>=49500 AND b<49600; SELECT count(*), avg(b) FROM t2 WHERE b>=49600 AND b<49700; SELECT count(*), avg(b) FROM t2 WHERE b>=49700 AND b<49800; SELECT count(*), avg(b) FROM t2 WHERE b>=49800 AND b<49900; SELECT count(*), avg(b) FROM t2 WHERE b>=49900 AND b<50000; SELECT count(*), avg(b) FROM t2 WHERE b>=50000 AND b<50100; SELECT count(*), avg(b) FROM t2 WHERE b>=50100 AND b<50200; SELECT count(*), avg(b) FROM t2 WHERE b>=50200 AND b<50300; SELECT count(*), avg(b) FROM t2 WHERE b>=50300 AND b<50400; SELECT count(*), avg(b) FROM t2 WHERE b>=50400 AND b<50500; SELECT count(*), avg(b) FROM t2 WHERE b>=50500 AND b<50600; SELECT count(*), avg(b) FROM t2 WHERE b>=50600 AND b<50700; SELECT count(*), avg(b) FROM t2 WHERE b>=50700 AND b<50800; SELECT count(*), avg(b) FROM t2 WHERE b>=50800 AND b<50900; SELECT count(*), avg(b) FROM t2 WHERE b>=50900 AND b<51000; SELECT count(*), avg(b) FROM t2 WHERE b>=51000 AND b<51100; SELECT count(*), avg(b) FROM t2 WHERE b>=51100 AND b<51200; SELECT count(*), avg(b) FROM t2 WHERE b>=51200 AND b<51300; SELECT count(*), avg(b) FROM t2 WHERE b>=51300 AND b<51400; SELECT count(*), avg(b) FROM t2 WHERE b>=51400 AND b<51500; SELECT count(*), avg(b) FROM t2 WHERE b>=51500 AND b<51600; SELECT count(*), avg(b) FROM t2 WHERE b>=51600 AND b<51700; SELECT count(*), avg(b) FROM t2 WHERE b>=51700 AND b<51800; SELECT count(*), avg(b) FROM t2 WHERE b>=51800 AND b<51900; SELECT count(*), avg(b) FROM t2 WHERE b>=51900 AND b<52000; SELECT count(*), avg(b) FROM t2 WHERE b>=52000 AND b<52100; SELECT count(*), avg(b) FROM t2 WHERE b>=52100 AND b<52200; SELECT count(*), avg(b) FROM t2 WHERE b>=52200 AND b<52300; SELECT count(*), avg(b) FROM t2 WHERE b>=52300 AND b<52400; SELECT count(*), avg(b) FROM t2 WHERE b>=52400 AND b<52500; SELECT count(*), avg(b) FROM t2 WHERE b>=52500 AND b<52600; SELECT count(*), avg(b) FROM t2 WHERE b>=52600 AND b<52700; SELECT count(*), avg(b) FROM t2 WHERE b>=52700 AND b<52800; SELECT count(*), avg(b) FROM t2 WHERE b>=52800 AND b<52900; SELECT count(*), avg(b) FROM t2 WHERE b>=52900 AND b<53000; SELECT count(*), avg(b) FROM t2 WHERE b>=53000 AND b<53100; SELECT count(*), avg(b) FROM t2 WHERE b>=53100 AND b<53200; SELECT count(*), avg(b) FROM t2 WHERE b>=53200 AND b<53300; SELECT count(*), avg(b) FROM t2 WHERE b>=53300 AND b<53400; SELECT count(*), avg(b) FROM t2 WHERE b>=53400 AND b<53500; SELECT count(*), avg(b) FROM t2 WHERE b>=53500 AND b<53600; SELECT count(*), avg(b) FROM t2 WHERE b>=53600 AND b<53700; SELECT count(*), avg(b) FROM t2 WHERE b>=53700 AND b<53800; SELECT count(*), avg(b) FROM t2 WHERE b>=53800 AND b<53900; SELECT count(*), avg(b) FROM t2 WHERE b>=53900 AND b<54000; SELECT count(*), avg(b) FROM t2 WHERE b>=54000 AND b<54100; SELECT count(*), avg(b) FROM t2 WHERE b>=54100 AND b<54200; SELECT count(*), avg(b) FROM t2 WHERE b>=54200 AND b<54300; SELECT count(*), avg(b) FROM t2 WHERE b>=54300 AND b<54400; SELECT count(*), avg(b) FROM t2 WHERE b>=54400 AND b<54500; SELECT count(*), avg(b) FROM t2 WHERE b>=54500 AND b<54600; SELECT count(*), avg(b) FROM t2 WHERE b>=54600 AND b<54700; SELECT count(*), avg(b) FROM t2 WHERE b>=54700 AND b<54800; SELECT count(*), avg(b) FROM t2 WHERE b>=54800 AND b<54900; SELECT count(*), avg(b) FROM t2 WHERE b>=54900 AND b<55000; SELECT count(*), avg(b) FROM t2 WHERE b>=55000 AND b<55100; SELECT count(*), avg(b) FROM t2 WHERE b>=55100 AND b<55200; SELECT count(*), avg(b) FROM t2 WHERE b>=55200 AND b<55300; SELECT count(*), avg(b) FROM t2 WHERE b>=55300 AND b<55400; SELECT count(*), avg(b) FROM t2 WHERE b>=55400 AND b<55500; SELECT count(*), avg(b) FROM t2 WHERE b>=55500 AND b<55600; SELECT count(*), avg(b) FROM t2 WHERE b>=55600 AND b<55700; SELECT count(*), avg(b) FROM t2 WHERE b>=55700 AND b<55800; SELECT count(*), avg(b) FROM t2 WHERE b>=55800 AND b<55900; SELECT count(*), avg(b) FROM t2 WHERE b>=55900 AND b<56000; SELECT count(*), avg(b) FROM t2 WHERE b>=56000 AND b<56100; SELECT count(*), avg(b) FROM t2 WHERE b>=56100 AND b<56200; SELECT count(*), avg(b) FROM t2 WHERE b>=56200 AND b<56300; SELECT count(*), avg(b) FROM t2 WHERE b>=56300 AND b<56400; SELECT count(*), avg(b) FROM t2 WHERE b>=56400 AND b<56500; SELECT count(*), avg(b) FROM t2 WHERE b>=56500 AND b<56600; SELECT count(*), avg(b) FROM t2 WHERE b>=56600 AND b<56700; SELECT count(*), avg(b) FROM t2 WHERE b>=56700 AND b<56800; SELECT count(*), avg(b) FROM t2 WHERE b>=56800 AND b<56900; SELECT count(*), avg(b) FROM t2 WHERE b>=56900 AND b<57000; SELECT count(*), avg(b) FROM t2 WHERE b>=57000 AND b<57100; SELECT count(*), avg(b) FROM t2 WHERE b>=57100 AND b<57200; SELECT count(*), avg(b) FROM t2 WHERE b>=57200 AND b<57300; SELECT count(*), avg(b) FROM t2 WHERE b>=57300 AND b<57400; SELECT count(*), avg(b) FROM t2 WHERE b>=57400 AND b<57500; SELECT count(*), avg(b) FROM t2 WHERE b>=57500 AND b<57600; SELECT count(*), avg(b) FROM t2 WHERE b>=57600 AND b<57700; SELECT count(*), avg(b) FROM t2 WHERE b>=57700 AND b<57800; SELECT count(*), avg(b) FROM t2 WHERE b>=57800 AND b<57900; SELECT count(*), avg(b) FROM t2 WHERE b>=57900 AND b<58000; SELECT count(*), avg(b) FROM t2 WHERE b>=58000 AND b<58100; SELECT count(*), avg(b) FROM t2 WHERE b>=58100 AND b<58200; SELECT count(*), avg(b) FROM t2 WHERE b>=58200 AND b<58300; SELECT count(*), avg(b) FROM t2 WHERE b>=58300 AND b<58400; SELECT count(*), avg(b) FROM t2 WHERE b>=58400 AND b<58500; SELECT count(*), avg(b) FROM t2 WHERE b>=58500 AND b<58600; SELECT count(*), avg(b) FROM t2 WHERE b>=58600 AND b<58700; SELECT count(*), avg(b) FROM t2 WHERE b>=58700 AND b<58800; SELECT count(*), avg(b) FROM t2 WHERE b>=58800 AND b<58900; SELECT count(*), avg(b) FROM t2 WHERE b>=58900 AND b<59000; SELECT count(*), avg(b) FROM t2 WHERE b>=59000 AND b<59100; SELECT count(*), avg(b) FROM t2 WHERE b>=59100 AND b<59200; SELECT count(*), avg(b) FROM t2 WHERE b>=59200 AND b<59300; SELECT count(*), avg(b) FROM t2 WHERE b>=59300 AND b<59400; SELECT count(*), avg(b) FROM t2 WHERE b>=59400 AND b<59500; SELECT count(*), avg(b) FROM t2 WHERE b>=59500 AND b<59600; SELECT count(*), avg(b) FROM t2 WHERE b>=59600 AND b<59700; SELECT count(*), avg(b) FROM t2 WHERE b>=59700 AND b<59800; SELECT count(*), avg(b) FROM t2 WHERE b>=59800 AND b<59900; SELECT count(*), avg(b) FROM t2 WHERE b>=59900 AND b<60000; SELECT count(*), avg(b) FROM t2 WHERE b>=60000 AND b<60100; SELECT count(*), avg(b) FROM t2 WHERE b>=60100 AND b<60200; SELECT count(*), avg(b) FROM t2 WHERE b>=60200 AND b<60300; SELECT count(*), avg(b) FROM t2 WHERE b>=60300 AND b<60400; SELECT count(*), avg(b) FROM t2 WHERE b>=60400 AND b<60500; SELECT count(*), avg(b) FROM t2 WHERE b>=60500 AND b<60600; SELECT count(*), avg(b) FROM t2 WHERE b>=60600 AND b<60700; SELECT count(*), avg(b) FROM t2 WHERE b>=60700 AND b<60800; SELECT count(*), avg(b) FROM t2 WHERE b>=60800 AND b<60900; SELECT count(*), avg(b) FROM t2 WHERE b>=60900 AND b<61000; SELECT count(*), avg(b) FROM t2 WHERE b>=61000 AND b<61100; SELECT count(*), avg(b) FROM t2 WHERE b>=61100 AND b<61200; SELECT count(*), avg(b) FROM t2 WHERE b>=61200 AND b<61300; SELECT count(*), avg(b) FROM t2 WHERE b>=61300 AND b<61400; SELECT count(*), avg(b) FROM t2 WHERE b>=61400 AND b<61500; SELECT count(*), avg(b) FROM t2 WHERE b>=61500 AND b<61600; SELECT count(*), avg(b) FROM t2 WHERE b>=61600 AND b<61700; SELECT count(*), avg(b) FROM t2 WHERE b>=61700 AND b<61800; SELECT count(*), avg(b) FROM t2 WHERE b>=61800 AND b<61900; SELECT count(*), avg(b) FROM t2 WHERE b>=61900 AND b<62000; SELECT count(*), avg(b) FROM t2 WHERE b>=62000 AND b<62100; SELECT count(*), avg(b) FROM t2 WHERE b>=62100 AND b<62200; SELECT count(*), avg(b) FROM t2 WHERE b>=62200 AND b<62300; SELECT count(*), avg(b) FROM t2 WHERE b>=62300 AND b<62400; SELECT count(*), avg(b) FROM t2 WHERE b>=62400 AND b<62500; SELECT count(*), avg(b) FROM t2 WHERE b>=62500 AND b<62600; SELECT count(*), avg(b) FROM t2 WHERE b>=62600 AND b<62700; SELECT count(*), avg(b) FROM t2 WHERE b>=62700 AND b<62800; SELECT count(*), avg(b) FROM t2 WHERE b>=62800 AND b<62900; SELECT count(*), avg(b) FROM t2 WHERE b>=62900 AND b<63000; SELECT count(*), avg(b) FROM t2 WHERE b>=63000 AND b<63100; SELECT count(*), avg(b) FROM t2 WHERE b>=63100 AND b<63200; SELECT count(*), avg(b) FROM t2 WHERE b>=63200 AND b<63300; SELECT count(*), avg(b) FROM t2 WHERE b>=63300 AND b<63400; SELECT count(*), avg(b) FROM t2 WHERE b>=63400 AND b<63500; SELECT count(*), avg(b) FROM t2 WHERE b>=63500 AND b<63600; SELECT count(*), avg(b) FROM t2 WHERE b>=63600 AND b<63700; SELECT count(*), avg(b) FROM t2 WHERE b>=63700 AND b<63800; SELECT count(*), avg(b) FROM t2 WHERE b>=63800 AND b<63900; SELECT count(*), avg(b) FROM t2 WHERE b>=63900 AND b<64000; SELECT count(*), avg(b) FROM t2 WHERE b>=64000 AND b<64100; SELECT count(*), avg(b) FROM t2 WHERE b>=64100 AND b<64200; SELECT count(*), avg(b) FROM t2 WHERE b>=64200 AND b<64300; SELECT count(*), avg(b) FROM t2 WHERE b>=64300 AND b<64400; SELECT count(*), avg(b) FROM t2 WHERE b>=64400 AND b<64500; SELECT count(*), avg(b) FROM t2 WHERE b>=64500 AND b<64600; SELECT count(*), avg(b) FROM t2 WHERE b>=64600 AND b<64700; SELECT count(*), avg(b) FROM t2 WHERE b>=64700 AND b<64800; SELECT count(*), avg(b) FROM t2 WHERE b>=64800 AND b<64900; SELECT count(*), avg(b) FROM t2 WHERE b>=64900 AND b<65000; SELECT count(*), avg(b) FROM t2 WHERE b>=65000 AND b<65100; SELECT count(*), avg(b) FROM t2 WHERE b>=65100 AND b<65200; SELECT count(*), avg(b) FROM t2 WHERE b>=65200 AND b<65300; SELECT count(*), avg(b) FROM t2 WHERE b>=65300 AND b<65400; SELECT count(*), avg(b) FROM t2 WHERE b>=65400 AND b<65500; SELECT count(*), avg(b) FROM t2 WHERE b>=65500 AND b<65600; SELECT count(*), avg(b) FROM t2 WHERE b>=65600 AND b<65700; SELECT count(*), avg(b) FROM t2 WHERE b>=65700 AND b<65800; SELECT count(*), avg(b) FROM t2 WHERE b>=65800 AND b<65900; SELECT count(*), avg(b) FROM t2 WHERE b>=65900 AND b<66000; SELECT count(*), avg(b) FROM t2 WHERE b>=66000 AND b<66100; SELECT count(*), avg(b) FROM t2 WHERE b>=66100 AND b<66200; SELECT count(*), avg(b) FROM t2 WHERE b>=66200 AND b<66300; SELECT count(*), avg(b) FROM t2 WHERE b>=66300 AND b<66400; SELECT count(*), avg(b) FROM t2 WHERE b>=66400 AND b<66500; SELECT count(*), avg(b) FROM t2 WHERE b>=66500 AND b<66600; SELECT count(*), avg(b) FROM t2 WHERE b>=66600 AND b<66700; SELECT count(*), avg(b) FROM t2 WHERE b>=66700 AND b<66800; SELECT count(*), avg(b) FROM t2 WHERE b>=66800 AND b<66900; SELECT count(*), avg(b) FROM t2 WHERE b>=66900 AND b<67000; SELECT count(*), avg(b) FROM t2 WHERE b>=67000 AND b<67100; SELECT count(*), avg(b) FROM t2 WHERE b>=67100 AND b<67200; SELECT count(*), avg(b) FROM t2 WHERE b>=67200 AND b<67300; SELECT count(*), avg(b) FROM t2 WHERE b>=67300 AND b<67400; SELECT count(*), avg(b) FROM t2 WHERE b>=67400 AND b<67500; SELECT count(*), avg(b) FROM t2 WHERE b>=67500 AND b<67600; SELECT count(*), avg(b) FROM t2 WHERE b>=67600 AND b<67700; SELECT count(*), avg(b) FROM t2 WHERE b>=67700 AND b<67800; SELECT count(*), avg(b) FROM t2 WHERE b>=67800 AND b<67900; SELECT count(*), avg(b) FROM t2 WHERE b>=67900 AND b<68000; SELECT count(*), avg(b) FROM t2 WHERE b>=68000 AND b<68100; SELECT count(*), avg(b) FROM t2 WHERE b>=68100 AND b<68200; SELECT count(*), avg(b) FROM t2 WHERE b>=68200 AND b<68300; SELECT count(*), avg(b) FROM t2 WHERE b>=68300 AND b<68400; SELECT count(*), avg(b) FROM t2 WHERE b>=68400 AND b<68500; SELECT count(*), avg(b) FROM t2 WHERE b>=68500 AND b<68600; SELECT count(*), avg(b) FROM t2 WHERE b>=68600 AND b<68700; SELECT count(*), avg(b) FROM t2 WHERE b>=68700 AND b<68800; SELECT count(*), avg(b) FROM t2 WHERE b>=68800 AND b<68900; SELECT count(*), avg(b) FROM t2 WHERE b>=68900 AND b<69000; SELECT count(*), avg(b) FROM t2 WHERE b>=69000 AND b<69100; SELECT count(*), avg(b) FROM t2 WHERE b>=69100 AND b<69200; SELECT count(*), avg(b) FROM t2 WHERE b>=69200 AND b<69300; SELECT count(*), avg(b) FROM t2 WHERE b>=69300 AND b<69400; SELECT count(*), avg(b) FROM t2 WHERE b>=69400 AND b<69500; SELECT count(*), avg(b) FROM t2 WHERE b>=69500 AND b<69600; SELECT count(*), avg(b) FROM t2 WHERE b>=69600 AND b<69700; SELECT count(*), avg(b) FROM t2 WHERE b>=69700 AND b<69800; SELECT count(*), avg(b) FROM t2 WHERE b>=69800 AND b<69900; SELECT count(*), avg(b) FROM t2 WHERE b>=69900 AND b<70000; SELECT count(*), avg(b) FROM t2 WHERE b>=70000 AND b<70100; SELECT count(*), avg(b) FROM t2 WHERE b>=70100 AND b<70200; SELECT count(*), avg(b) FROM t2 WHERE b>=70200 AND b<70300; SELECT count(*), avg(b) FROM t2 WHERE b>=70300 AND b<70400; SELECT count(*), avg(b) FROM t2 WHERE b>=70400 AND b<70500; SELECT count(*), avg(b) FROM t2 WHERE b>=70500 AND b<70600; SELECT count(*), avg(b) FROM t2 WHERE b>=70600 AND b<70700; SELECT count(*), avg(b) FROM t2 WHERE b>=70700 AND b<70800; SELECT count(*), avg(b) FROM t2 WHERE b>=70800 AND b<70900; SELECT count(*), avg(b) FROM t2 WHERE b>=70900 AND b<71000; SELECT count(*), avg(b) FROM t2 WHERE b>=71000 AND b<71100; SELECT count(*), avg(b) FROM t2 WHERE b>=71100 AND b<71200; SELECT count(*), avg(b) FROM t2 WHERE b>=71200 AND b<71300; SELECT count(*), avg(b) FROM t2 WHERE b>=71300 AND b<71400; SELECT count(*), avg(b) FROM t2 WHERE b>=71400 AND b<71500; SELECT count(*), avg(b) FROM t2 WHERE b>=71500 AND b<71600; SELECT count(*), avg(b) FROM t2 WHERE b>=71600 AND b<71700; SELECT count(*), avg(b) FROM t2 WHERE b>=71700 AND b<71800; SELECT count(*), avg(b) FROM t2 WHERE b>=71800 AND b<71900; SELECT count(*), avg(b) FROM t2 WHERE b>=71900 AND b<72000; SELECT count(*), avg(b) FROM t2 WHERE b>=72000 AND b<72100; SELECT count(*), avg(b) FROM t2 WHERE b>=72100 AND b<72200; SELECT count(*), avg(b) FROM t2 WHERE b>=72200 AND b<72300; SELECT count(*), avg(b) FROM t2 WHERE b>=72300 AND b<72400; SELECT count(*), avg(b) FROM t2 WHERE b>=72400 AND b<72500; SELECT count(*), avg(b) FROM t2 WHERE b>=72500 AND b<72600; SELECT count(*), avg(b) FROM t2 WHERE b>=72600 AND b<72700; SELECT count(*), avg(b) FROM t2 WHERE b>=72700 AND b<72800; SELECT count(*), avg(b) FROM t2 WHERE b>=72800 AND b<72900; SELECT count(*), avg(b) FROM t2 WHERE b>=72900 AND b<73000; SELECT count(*), avg(b) FROM t2 WHERE b>=73000 AND b<73100; SELECT count(*), avg(b) FROM t2 WHERE b>=73100 AND b<73200; SELECT count(*), avg(b) FROM t2 WHERE b>=73200 AND b<73300; SELECT count(*), avg(b) FROM t2 WHERE b>=73300 AND b<73400; SELECT count(*), avg(b) FROM t2 WHERE b>=73400 AND b<73500; SELECT count(*), avg(b) FROM t2 WHERE b>=73500 AND b<73600; SELECT count(*), avg(b) FROM t2 WHERE b>=73600 AND b<73700; SELECT count(*), avg(b) FROM t2 WHERE b>=73700 AND b<73800; SELECT count(*), avg(b) FROM t2 WHERE b>=73800 AND b<73900; SELECT count(*), avg(b) FROM t2 WHERE b>=73900 AND b<74000; SELECT count(*), avg(b) FROM t2 WHERE b>=74000 AND b<74100; SELECT count(*), avg(b) FROM t2 WHERE b>=74100 AND b<74200; SELECT count(*), avg(b) FROM t2 WHERE b>=74200 AND b<74300; SELECT count(*), avg(b) FROM t2 WHERE b>=74300 AND b<74400; SELECT count(*), avg(b) FROM t2 WHERE b>=74400 AND b<74500; SELECT count(*), avg(b) FROM t2 WHERE b>=74500 AND b<74600; SELECT count(*), avg(b) FROM t2 WHERE b>=74600 AND b<74700; SELECT count(*), avg(b) FROM t2 WHERE b>=74700 AND b<74800; SELECT count(*), avg(b) FROM t2 WHERE b>=74800 AND b<74900; SELECT count(*), avg(b) FROM t2 WHERE b>=74900 AND b<75000; SELECT count(*), avg(b) FROM t2 WHERE b>=75000 AND b<75100; SELECT count(*), avg(b) FROM t2 WHERE b>=75100 AND b<75200; SELECT count(*), avg(b) FROM t2 WHERE b>=75200 AND b<75300; SELECT count(*), avg(b) FROM t2 WHERE b>=75300 AND b<75400; SELECT count(*), avg(b) FROM t2 WHERE b>=75400 AND b<75500; SELECT count(*), avg(b) FROM t2 WHERE b>=75500 AND b<75600; SELECT count(*), avg(b) FROM t2 WHERE b>=75600 AND b<75700; SELECT count(*), avg(b) FROM t2 WHERE b>=75700 AND b<75800; SELECT count(*), avg(b) FROM t2 WHERE b>=75800 AND b<75900; SELECT count(*), avg(b) FROM t2 WHERE b>=75900 AND b<76000; SELECT count(*), avg(b) FROM t2 WHERE b>=76000 AND b<76100; SELECT count(*), avg(b) FROM t2 WHERE b>=76100 AND b<76200; SELECT count(*), avg(b) FROM t2 WHERE b>=76200 AND b<76300; SELECT count(*), avg(b) FROM t2 WHERE b>=76300 AND b<76400; SELECT count(*), avg(b) FROM t2 WHERE b>=76400 AND b<76500; SELECT count(*), avg(b) FROM t2 WHERE b>=76500 AND b<76600; SELECT count(*), avg(b) FROM t2 WHERE b>=76600 AND b<76700; SELECT count(*), avg(b) FROM t2 WHERE b>=76700 AND b<76800; SELECT count(*), avg(b) FROM t2 WHERE b>=76800 AND b<76900; SELECT count(*), avg(b) FROM t2 WHERE b>=76900 AND b<77000; SELECT count(*), avg(b) FROM t2 WHERE b>=77000 AND b<77100; SELECT count(*), avg(b) FROM t2 WHERE b>=77100 AND b<77200; SELECT count(*), avg(b) FROM t2 WHERE b>=77200 AND b<77300; SELECT count(*), avg(b) FROM t2 WHERE b>=77300 AND b<77400; SELECT count(*), avg(b) FROM t2 WHERE b>=77400 AND b<77500; SELECT count(*), avg(b) FROM t2 WHERE b>=77500 AND b<77600; SELECT count(*), avg(b) FROM t2 WHERE b>=77600 AND b<77700; SELECT count(*), avg(b) FROM t2 WHERE b>=77700 AND b<77800; SELECT count(*), avg(b) FROM t2 WHERE b>=77800 AND b<77900; SELECT count(*), avg(b) FROM t2 WHERE b>=77900 AND b<78000; SELECT count(*), avg(b) FROM t2 WHERE b>=78000 AND b<78100; SELECT count(*), avg(b) FROM t2 WHERE b>=78100 AND b<78200; SELECT count(*), avg(b) FROM t2 WHERE b>=78200 AND b<78300; SELECT count(*), avg(b) FROM t2 WHERE b>=78300 AND b<78400; SELECT count(*), avg(b) FROM t2 WHERE b>=78400 AND b<78500; SELECT count(*), avg(b) FROM t2 WHERE b>=78500 AND b<78600; SELECT count(*), avg(b) FROM t2 WHERE b>=78600 AND b<78700; SELECT count(*), avg(b) FROM t2 WHERE b>=78700 AND b<78800; SELECT count(*), avg(b) FROM t2 WHERE b>=78800 AND b<78900; SELECT count(*), avg(b) FROM t2 WHERE b>=78900 AND b<79000; SELECT count(*), avg(b) FROM t2 WHERE b>=79000 AND b<79100; SELECT count(*), avg(b) FROM t2 WHERE b>=79100 AND b<79200; SELECT count(*), avg(b) FROM t2 WHERE b>=79200 AND b<79300; SELECT count(*), avg(b) FROM t2 WHERE b>=79300 AND b<79400; SELECT count(*), avg(b) FROM t2 WHERE b>=79400 AND b<79500; SELECT count(*), avg(b) FROM t2 WHERE b>=79500 AND b<79600; SELECT count(*), avg(b) FROM t2 WHERE b>=79600 AND b<79700; SELECT count(*), avg(b) FROM t2 WHERE b>=79700 AND b<79800; SELECT count(*), avg(b) FROM t2 WHERE b>=79800 AND b<79900; SELECT count(*), avg(b) FROM t2 WHERE b>=79900 AND b<80000; SELECT count(*), avg(b) FROM t2 WHERE b>=80000 AND b<80100; SELECT count(*), avg(b) FROM t2 WHERE b>=80100 AND b<80200; SELECT count(*), avg(b) FROM t2 WHERE b>=80200 AND b<80300; SELECT count(*), avg(b) FROM t2 WHERE b>=80300 AND b<80400; SELECT count(*), avg(b) FROM t2 WHERE b>=80400 AND b<80500; SELECT count(*), avg(b) FROM t2 WHERE b>=80500 AND b<80600; SELECT count(*), avg(b) FROM t2 WHERE b>=80600 AND b<80700; SELECT count(*), avg(b) FROM t2 WHERE b>=80700 AND b<80800; SELECT count(*), avg(b) FROM t2 WHERE b>=80800 AND b<80900; SELECT count(*), avg(b) FROM t2 WHERE b>=80900 AND b<81000; SELECT count(*), avg(b) FROM t2 WHERE b>=81000 AND b<81100; SELECT count(*), avg(b) FROM t2 WHERE b>=81100 AND b<81200; SELECT count(*), avg(b) FROM t2 WHERE b>=81200 AND b<81300; SELECT count(*), avg(b) FROM t2 WHERE b>=81300 AND b<81400; SELECT count(*), avg(b) FROM t2 WHERE b>=81400 AND b<81500; SELECT count(*), avg(b) FROM t2 WHERE b>=81500 AND b<81600; SELECT count(*), avg(b) FROM t2 WHERE b>=81600 AND b<81700; SELECT count(*), avg(b) FROM t2 WHERE b>=81700 AND b<81800; SELECT count(*), avg(b) FROM t2 WHERE b>=81800 AND b<81900; SELECT count(*), avg(b) FROM t2 WHERE b>=81900 AND b<82000; SELECT count(*), avg(b) FROM t2 WHERE b>=82000 AND b<82100; SELECT count(*), avg(b) FROM t2 WHERE b>=82100 AND b<82200; SELECT count(*), avg(b) FROM t2 WHERE b>=82200 AND b<82300; SELECT count(*), avg(b) FROM t2 WHERE b>=82300 AND b<82400; SELECT count(*), avg(b) FROM t2 WHERE b>=82400 AND b<82500; SELECT count(*), avg(b) FROM t2 WHERE b>=82500 AND b<82600; SELECT count(*), avg(b) FROM t2 WHERE b>=82600 AND b<82700; SELECT count(*), avg(b) FROM t2 WHERE b>=82700 AND b<82800; SELECT count(*), avg(b) FROM t2 WHERE b>=82800 AND b<82900; SELECT count(*), avg(b) FROM t2 WHERE b>=82900 AND b<83000; SELECT count(*), avg(b) FROM t2 WHERE b>=83000 AND b<83100; SELECT count(*), avg(b) FROM t2 WHERE b>=83100 AND b<83200; SELECT count(*), avg(b) FROM t2 WHERE b>=83200 AND b<83300; SELECT count(*), avg(b) FROM t2 WHERE b>=83300 AND b<83400; SELECT count(*), avg(b) FROM t2 WHERE b>=83400 AND b<83500; SELECT count(*), avg(b) FROM t2 WHERE b>=83500 AND b<83600; SELECT count(*), avg(b) FROM t2 WHERE b>=83600 AND b<83700; SELECT count(*), avg(b) FROM t2 WHERE b>=83700 AND b<83800; SELECT count(*), avg(b) FROM t2 WHERE b>=83800 AND b<83900; SELECT count(*), avg(b) FROM t2 WHERE b>=83900 AND b<84000; SELECT count(*), avg(b) FROM t2 WHERE b>=84000 AND b<84100; SELECT count(*), avg(b) FROM t2 WHERE b>=84100 AND b<84200; SELECT count(*), avg(b) FROM t2 WHERE b>=84200 AND b<84300; SELECT count(*), avg(b) FROM t2 WHERE b>=84300 AND b<84400; SELECT count(*), avg(b) FROM t2 WHERE b>=84400 AND b<84500; SELECT count(*), avg(b) FROM t2 WHERE b>=84500 AND b<84600; SELECT count(*), avg(b) FROM t2 WHERE b>=84600 AND b<84700; SELECT count(*), avg(b) FROM t2 WHERE b>=84700 AND b<84800; SELECT count(*), avg(b) FROM t2 WHERE b>=84800 AND b<84900; SELECT count(*), avg(b) FROM t2 WHERE b>=84900 AND b<85000; SELECT count(*), avg(b) FROM t2 WHERE b>=85000 AND b<85100; SELECT count(*), avg(b) FROM t2 WHERE b>=85100 AND b<85200; SELECT count(*), avg(b) FROM t2 WHERE b>=85200 AND b<85300; SELECT count(*), avg(b) FROM t2 WHERE b>=85300 AND b<85400; SELECT count(*), avg(b) FROM t2 WHERE b>=85400 AND b<85500; SELECT count(*), avg(b) FROM t2 WHERE b>=85500 AND b<85600; SELECT count(*), avg(b) FROM t2 WHERE b>=85600 AND b<85700; SELECT count(*), avg(b) FROM t2 WHERE b>=85700 AND b<85800; SELECT count(*), avg(b) FROM t2 WHERE b>=85800 AND b<85900; SELECT count(*), avg(b) FROM t2 WHERE b>=85900 AND b<86000; SELECT count(*), avg(b) FROM t2 WHERE b>=86000 AND b<86100; SELECT count(*), avg(b) FROM t2 WHERE b>=86100 AND b<86200; SELECT count(*), avg(b) FROM t2 WHERE b>=86200 AND b<86300; SELECT count(*), avg(b) FROM t2 WHERE b>=86300 AND b<86400; SELECT count(*), avg(b) FROM t2 WHERE b>=86400 AND b<86500; SELECT count(*), avg(b) FROM t2 WHERE b>=86500 AND b<86600; SELECT count(*), avg(b) FROM t2 WHERE b>=86600 AND b<86700; SELECT count(*), avg(b) FROM t2 WHERE b>=86700 AND b<86800; SELECT count(*), avg(b) FROM t2 WHERE b>=86800 AND b<86900; SELECT count(*), avg(b) FROM t2 WHERE b>=86900 AND b<87000; SELECT count(*), avg(b) FROM t2 WHERE b>=87000 AND b<87100; SELECT count(*), avg(b) FROM t2 WHERE b>=87100 AND b<87200; SELECT count(*), avg(b) FROM t2 WHERE b>=87200 AND b<87300; SELECT count(*), avg(b) FROM t2 WHERE b>=87300 AND b<87400; SELECT count(*), avg(b) FROM t2 WHERE b>=87400 AND b<87500; SELECT count(*), avg(b) FROM t2 WHERE b>=87500 AND b<87600; SELECT count(*), avg(b) FROM t2 WHERE b>=87600 AND b<87700; SELECT count(*), avg(b) FROM t2 WHERE b>=87700 AND b<87800; SELECT count(*), avg(b) FROM t2 WHERE b>=87800 AND b<87900; SELECT count(*), avg(b) FROM t2 WHERE b>=87900 AND b<88000; SELECT count(*), avg(b) FROM t2 WHERE b>=88000 AND b<88100; SELECT count(*), avg(b) FROM t2 WHERE b>=88100 AND b<88200; SELECT count(*), avg(b) FROM t2 WHERE b>=88200 AND b<88300; SELECT count(*), avg(b) FROM t2 WHERE b>=88300 AND b<88400; SELECT count(*), avg(b) FROM t2 WHERE b>=88400 AND b<88500; SELECT count(*), avg(b) FROM t2 WHERE b>=88500 AND b<88600; SELECT count(*), avg(b) FROM t2 WHERE b>=88600 AND b<88700; SELECT count(*), avg(b) FROM t2 WHERE b>=88700 AND b<88800; SELECT count(*), avg(b) FROM t2 WHERE b>=88800 AND b<88900; SELECT count(*), avg(b) FROM t2 WHERE b>=88900 AND b<89000; SELECT count(*), avg(b) FROM t2 WHERE b>=89000 AND b<89100; SELECT count(*), avg(b) FROM t2 WHERE b>=89100 AND b<89200; SELECT count(*), avg(b) FROM t2 WHERE b>=89200 AND b<89300; SELECT count(*), avg(b) FROM t2 WHERE b>=89300 AND b<89400; SELECT count(*), avg(b) FROM t2 WHERE b>=89400 AND b<89500; SELECT count(*), avg(b) FROM t2 WHERE b>=89500 AND b<89600; SELECT count(*), avg(b) FROM t2 WHERE b>=89600 AND b<89700; SELECT count(*), avg(b) FROM t2 WHERE b>=89700 AND b<89800; SELECT count(*), avg(b) FROM t2 WHERE b>=89800 AND b<89900; SELECT count(*), avg(b) FROM t2 WHERE b>=89900 AND b<90000; SELECT count(*), avg(b) FROM t2 WHERE b>=90000 AND b<90100; SELECT count(*), avg(b) FROM t2 WHERE b>=90100 AND b<90200; SELECT count(*), avg(b) FROM t2 WHERE b>=90200 AND b<90300; SELECT count(*), avg(b) FROM t2 WHERE b>=90300 AND b<90400; SELECT count(*), avg(b) FROM t2 WHERE b>=90400 AND b<90500; SELECT count(*), avg(b) FROM t2 WHERE b>=90500 AND b<90600; SELECT count(*), avg(b) FROM t2 WHERE b>=90600 AND b<90700; SELECT count(*), avg(b) FROM t2 WHERE b>=90700 AND b<90800; SELECT count(*), avg(b) FROM t2 WHERE b>=90800 AND b<90900; SELECT count(*), avg(b) FROM t2 WHERE b>=90900 AND b<91000; SELECT count(*), avg(b) FROM t2 WHERE b>=91000 AND b<91100; SELECT count(*), avg(b) FROM t2 WHERE b>=91100 AND b<91200; SELECT count(*), avg(b) FROM t2 WHERE b>=91200 AND b<91300; SELECT count(*), avg(b) FROM t2 WHERE b>=91300 AND b<91400; SELECT count(*), avg(b) FROM t2 WHERE b>=91400 AND b<91500; SELECT count(*), avg(b) FROM t2 WHERE b>=91500 AND b<91600; SELECT count(*), avg(b) FROM t2 WHERE b>=91600 AND b<91700; SELECT count(*), avg(b) FROM t2 WHERE b>=91700 AND b<91800; SELECT count(*), avg(b) FROM t2 WHERE b>=91800 AND b<91900; SELECT count(*), avg(b) FROM t2 WHERE b>=91900 AND b<92000; SELECT count(*), avg(b) FROM t2 WHERE b>=92000 AND b<92100; SELECT count(*), avg(b) FROM t2 WHERE b>=92100 AND b<92200; SELECT count(*), avg(b) FROM t2 WHERE b>=92200 AND b<92300; SELECT count(*), avg(b) FROM t2 WHERE b>=92300 AND b<92400; SELECT count(*), avg(b) FROM t2 WHERE b>=92400 AND b<92500; SELECT count(*), avg(b) FROM t2 WHERE b>=92500 AND b<92600; SELECT count(*), avg(b) FROM t2 WHERE b>=92600 AND b<92700; SELECT count(*), avg(b) FROM t2 WHERE b>=92700 AND b<92800; SELECT count(*), avg(b) FROM t2 WHERE b>=92800 AND b<92900; SELECT count(*), avg(b) FROM t2 WHERE b>=92900 AND b<93000; SELECT count(*), avg(b) FROM t2 WHERE b>=93000 AND b<93100; SELECT count(*), avg(b) FROM t2 WHERE b>=93100 AND b<93200; SELECT count(*), avg(b) FROM t2 WHERE b>=93200 AND b<93300; SELECT count(*), avg(b) FROM t2 WHERE b>=93300 AND b<93400; SELECT count(*), avg(b) FROM t2 WHERE b>=93400 AND b<93500; SELECT count(*), avg(b) FROM t2 WHERE b>=93500 AND b<93600; SELECT count(*), avg(b) FROM t2 WHERE b>=93600 AND b<93700; SELECT count(*), avg(b) FROM t2 WHERE b>=93700 AND b<93800; SELECT count(*), avg(b) FROM t2 WHERE b>=93800 AND b<93900; SELECT count(*), avg(b) FROM t2 WHERE b>=93900 AND b<94000; SELECT count(*), avg(b) FROM t2 WHERE b>=94000 AND b<94100; SELECT count(*), avg(b) FROM t2 WHERE b>=94100 AND b<94200; SELECT count(*), avg(b) FROM t2 WHERE b>=94200 AND b<94300; SELECT count(*), avg(b) FROM t2 WHERE b>=94300 AND b<94400; SELECT count(*), avg(b) FROM t2 WHERE b>=94400 AND b<94500; SELECT count(*), avg(b) FROM t2 WHERE b>=94500 AND b<94600; SELECT count(*), avg(b) FROM t2 WHERE b>=94600 AND b<94700; SELECT count(*), avg(b) FROM t2 WHERE b>=94700 AND b<94800; SELECT count(*), avg(b) FROM t2 WHERE b>=94800 AND b<94900; SELECT count(*), avg(b) FROM t2 WHERE b>=94900 AND b<95000; SELECT count(*), avg(b) FROM t2 WHERE b>=95000 AND b<95100; SELECT count(*), avg(b) FROM t2 WHERE b>=95100 AND b<95200; SELECT count(*), avg(b) FROM t2 WHERE b>=95200 AND b<95300; SELECT count(*), avg(b) FROM t2 WHERE b>=95300 AND b<95400; SELECT count(*), avg(b) FROM t2 WHERE b>=95400 AND b<95500; SELECT count(*), avg(b) FROM t2 WHERE b>=95500 AND b<95600; SELECT count(*), avg(b) FROM t2 WHERE b>=95600 AND b<95700; SELECT count(*), avg(b) FROM t2 WHERE b>=95700 AND b<95800; SELECT count(*), avg(b) FROM t2 WHERE b>=95800 AND b<95900; SELECT count(*), avg(b) FROM t2 WHERE b>=95900 AND b<96000; SELECT count(*), avg(b) FROM t2 WHERE b>=96000 AND b<96100; SELECT count(*), avg(b) FROM t2 WHERE b>=96100 AND b<96200; SELECT count(*), avg(b) FROM t2 WHERE b>=96200 AND b<96300; SELECT count(*), avg(b) FROM t2 WHERE b>=96300 AND b<96400; SELECT count(*), avg(b) FROM t2 WHERE b>=96400 AND b<96500; SELECT count(*), avg(b) FROM t2 WHERE b>=96500 AND b<96600; SELECT count(*), avg(b) FROM t2 WHERE b>=96600 AND b<96700; SELECT count(*), avg(b) FROM t2 WHERE b>=96700 AND b<96800; SELECT count(*), avg(b) FROM t2 WHERE b>=96800 AND b<96900; SELECT count(*), avg(b) FROM t2 WHERE b>=96900 AND b<97000; SELECT count(*), avg(b) FROM t2 WHERE b>=97000 AND b<97100; SELECT count(*), avg(b) FROM t2 WHERE b>=97100 AND b<97200; SELECT count(*), avg(b) FROM t2 WHERE b>=97200 AND b<97300; SELECT count(*), avg(b) FROM t2 WHERE b>=97300 AND b<97400; SELECT count(*), avg(b) FROM t2 WHERE b>=97400 AND b<97500; SELECT count(*), avg(b) FROM t2 WHERE b>=97500 AND b<97600; SELECT count(*), avg(b) FROM t2 WHERE b>=97600 AND b<97700; SELECT count(*), avg(b) FROM t2 WHERE b>=97700 AND b<97800; SELECT count(*), avg(b) FROM t2 WHERE b>=97800 AND b<97900; SELECT count(*), avg(b) FROM t2 WHERE b>=97900 AND b<98000; SELECT count(*), avg(b) FROM t2 WHERE b>=98000 AND b<98100; SELECT count(*), avg(b) FROM t2 WHERE b>=98100 AND b<98200; SELECT count(*), avg(b) FROM t2 WHERE b>=98200 AND b<98300; SELECT count(*), avg(b) FROM t2 WHERE b>=98300 AND b<98400; SELECT count(*), avg(b) FROM t2 WHERE b>=98400 AND b<98500; SELECT count(*), avg(b) FROM t2 WHERE b>=98500 AND b<98600; SELECT count(*), avg(b) FROM t2 WHERE b>=98600 AND b<98700; SELECT count(*), avg(b) FROM t2 WHERE b>=98700 AND b<98800; SELECT count(*), avg(b) FROM t2 WHERE b>=98800 AND b<98900; SELECT count(*), avg(b) FROM t2 WHERE b>=98900 AND b<99000; SELECT count(*), avg(b) FROM t2 WHERE b>=99000 AND b<99100; SELECT count(*), avg(b) FROM t2 WHERE b>=99100 AND b<99200; SELECT count(*), avg(b) FROM t2 WHERE b>=99200 AND b<99300; SELECT count(*), avg(b) FROM t2 WHERE b>=99300 AND b<99400; SELECT count(*), avg(b) FROM t2 WHERE b>=99400 AND b<99500; SELECT count(*), avg(b) FROM t2 WHERE b>=99500 AND b<99600; SELECT count(*), avg(b) FROM t2 WHERE b>=99600 AND b<99700; SELECT count(*), avg(b) FROM t2 WHERE b>=99700 AND b<99800; SELECT count(*), avg(b) FROM t2 WHERE b>=99800 AND b<99900; SELECT count(*), avg(b) FROM t2 WHERE b>=99900 AND b<100000; SELECT count(*), avg(b) FROM t2 WHERE b>=100000 AND b<100100; SELECT count(*), avg(b) FROM t2 WHERE b>=100100 AND b<100200; SELECT count(*), avg(b) FROM t2 WHERE b>=100200 AND b<100300; SELECT count(*), avg(b) FROM t2 WHERE b>=100300 AND b<100400; SELECT count(*), avg(b) FROM t2 WHERE b>=100400 AND b<100500; SELECT count(*), avg(b) FROM t2 WHERE b>=100500 AND b<100600; SELECT count(*), avg(b) FROM t2 WHERE b>=100600 AND b<100700; SELECT count(*), avg(b) FROM t2 WHERE b>=100700 AND b<100800; SELECT count(*), avg(b) FROM t2 WHERE b>=100800 AND b<100900; SELECT count(*), avg(b) FROM t2 WHERE b>=100900 AND b<101000; SELECT count(*), avg(b) FROM t2 WHERE b>=101000 AND b<101100; SELECT count(*), avg(b) FROM t2 WHERE b>=101100 AND b<101200; SELECT count(*), avg(b) FROM t2 WHERE b>=101200 AND b<101300; SELECT count(*), avg(b) FROM t2 WHERE b>=101300 AND b<101400; SELECT count(*), avg(b) FROM t2 WHERE b>=101400 AND b<101500; SELECT count(*), avg(b) FROM t2 WHERE b>=101500 AND b<101600; SELECT count(*), avg(b) FROM t2 WHERE b>=101600 AND b<101700; SELECT count(*), avg(b) FROM t2 WHERE b>=101700 AND b<101800; SELECT count(*), avg(b) FROM t2 WHERE b>=101800 AND b<101900; SELECT count(*), avg(b) FROM t2 WHERE b>=101900 AND b<102000; SELECT count(*), avg(b) FROM t2 WHERE b>=102000 AND b<102100; SELECT count(*), avg(b) FROM t2 WHERE b>=102100 AND b<102200; SELECT count(*), avg(b) FROM t2 WHERE b>=102200 AND b<102300; SELECT count(*), avg(b) FROM t2 WHERE b>=102300 AND b<102400; SELECT count(*), avg(b) FROM t2 WHERE b>=102400 AND b<102500; SELECT count(*), avg(b) FROM t2 WHERE b>=102500 AND b<102600; SELECT count(*), avg(b) FROM t2 WHERE b>=102600 AND b<102700; SELECT count(*), avg(b) FROM t2 WHERE b>=102700 AND b<102800; SELECT count(*), avg(b) FROM t2 WHERE b>=102800 AND b<102900; SELECT count(*), avg(b) FROM t2 WHERE b>=102900 AND b<103000; SELECT count(*), avg(b) FROM t2 WHERE b>=103000 AND b<103100; SELECT count(*), avg(b) FROM t2 WHERE b>=103100 AND b<103200; SELECT count(*), avg(b) FROM t2 WHERE b>=103200 AND b<103300; SELECT count(*), avg(b) FROM t2 WHERE b>=103300 AND b<103400; SELECT count(*), avg(b) FROM t2 WHERE b>=103400 AND b<103500; SELECT count(*), avg(b) FROM t2 WHERE b>=103500 AND b<103600; SELECT count(*), avg(b) FROM t2 WHERE b>=103600 AND b<103700; SELECT count(*), avg(b) FROM t2 WHERE b>=103700 AND b<103800; SELECT count(*), avg(b) FROM t2 WHERE b>=103800 AND b<103900; SELECT count(*), avg(b) FROM t2 WHERE b>=103900 AND b<104000; SELECT count(*), avg(b) FROM t2 WHERE b>=104000 AND b<104100; SELECT count(*), avg(b) FROM t2 WHERE b>=104100 AND b<104200; SELECT count(*), avg(b) FROM t2 WHERE b>=104200 AND b<104300; SELECT count(*), avg(b) FROM t2 WHERE b>=104300 AND b<104400; SELECT count(*), avg(b) FROM t2 WHERE b>=104400 AND b<104500; SELECT count(*), avg(b) FROM t2 WHERE b>=104500 AND b<104600; SELECT count(*), avg(b) FROM t2 WHERE b>=104600 AND b<104700; SELECT count(*), avg(b) FROM t2 WHERE b>=104700 AND b<104800; SELECT count(*), avg(b) FROM t2 WHERE b>=104800 AND b<104900; SELECT count(*), avg(b) FROM t2 WHERE b>=104900 AND b<105000; SELECT count(*), avg(b) FROM t2 WHERE b>=105000 AND b<105100; SELECT count(*), avg(b) FROM t2 WHERE b>=105100 AND b<105200; SELECT count(*), avg(b) FROM t2 WHERE b>=105200 AND b<105300; SELECT count(*), avg(b) FROM t2 WHERE b>=105300 AND b<105400; SELECT count(*), avg(b) FROM t2 WHERE b>=105400 AND b<105500; SELECT count(*), avg(b) FROM t2 WHERE b>=105500 AND b<105600; SELECT count(*), avg(b) FROM t2 WHERE b>=105600 AND b<105700; SELECT count(*), avg(b) FROM t2 WHERE b>=105700 AND b<105800; SELECT count(*), avg(b) FROM t2 WHERE b>=105800 AND b<105900; SELECT count(*), avg(b) FROM t2 WHERE b>=105900 AND b<106000; SELECT count(*), avg(b) FROM t2 WHERE b>=106000 AND b<106100; SELECT count(*), avg(b) FROM t2 WHERE b>=106100 AND b<106200; SELECT count(*), avg(b) FROM t2 WHERE b>=106200 AND b<106300; SELECT count(*), avg(b) FROM t2 WHERE b>=106300 AND b<106400; SELECT count(*), avg(b) FROM t2 WHERE b>=106400 AND b<106500; SELECT count(*), avg(b) FROM t2 WHERE b>=106500 AND b<106600; SELECT count(*), avg(b) FROM t2 WHERE b>=106600 AND b<106700; SELECT count(*), avg(b) FROM t2 WHERE b>=106700 AND b<106800; SELECT count(*), avg(b) FROM t2 WHERE b>=106800 AND b<106900; SELECT count(*), avg(b) FROM t2 WHERE b>=106900 AND b<107000; SELECT count(*), avg(b) FROM t2 WHERE b>=107000 AND b<107100; SELECT count(*), avg(b) FROM t2 WHERE b>=107100 AND b<107200; SELECT count(*), avg(b) FROM t2 WHERE b>=107200 AND b<107300; SELECT count(*), avg(b) FROM t2 WHERE b>=107300 AND b<107400; SELECT count(*), avg(b) FROM t2 WHERE b>=107400 AND b<107500; SELECT count(*), avg(b) FROM t2 WHERE b>=107500 AND b<107600; SELECT count(*), avg(b) FROM t2 WHERE b>=107600 AND b<107700; SELECT count(*), avg(b) FROM t2 WHERE b>=107700 AND b<107800; SELECT count(*), avg(b) FROM t2 WHERE b>=107800 AND b<107900; SELECT count(*), avg(b) FROM t2 WHERE b>=107900 AND b<108000; SELECT count(*), avg(b) FROM t2 WHERE b>=108000 AND b<108100; SELECT count(*), avg(b) FROM t2 WHERE b>=108100 AND b<108200; SELECT count(*), avg(b) FROM t2 WHERE b>=108200 AND b<108300; SELECT count(*), avg(b) FROM t2 WHERE b>=108300 AND b<108400; SELECT count(*), avg(b) FROM t2 WHERE b>=108400 AND b<108500; SELECT count(*), avg(b) FROM t2 WHERE b>=108500 AND b<108600; SELECT count(*), avg(b) FROM t2 WHERE b>=108600 AND b<108700; SELECT count(*), avg(b) FROM t2 WHERE b>=108700 AND b<108800; SELECT count(*), avg(b) FROM t2 WHERE b>=108800 AND b<108900; SELECT count(*), avg(b) FROM t2 WHERE b>=108900 AND b<109000; SELECT count(*), avg(b) FROM t2 WHERE b>=109000 AND b<109100; SELECT count(*), avg(b) FROM t2 WHERE b>=109100 AND b<109200; SELECT count(*), avg(b) FROM t2 WHERE b>=109200 AND b<109300; SELECT count(*), avg(b) FROM t2 WHERE b>=109300 AND b<109400; SELECT count(*), avg(b) FROM t2 WHERE b>=109400 AND b<109500; SELECT count(*), avg(b) FROM t2 WHERE b>=109500 AND b<109600; SELECT count(*), avg(b) FROM t2 WHERE b>=109600 AND b<109700; SELECT count(*), avg(b) FROM t2 WHERE b>=109700 AND b<109800; SELECT count(*), avg(b) FROM t2 WHERE b>=109800 AND b<109900; SELECT count(*), avg(b) FROM t2 WHERE b>=109900 AND b<110000; SELECT count(*), avg(b) FROM t2 WHERE b>=110000 AND b<110100; SELECT count(*), avg(b) FROM t2 WHERE b>=110100 AND b<110200; SELECT count(*), avg(b) FROM t2 WHERE b>=110200 AND b<110300; SELECT count(*), avg(b) FROM t2 WHERE b>=110300 AND b<110400; SELECT count(*), avg(b) FROM t2 WHERE b>=110400 AND b<110500; SELECT count(*), avg(b) FROM t2 WHERE b>=110500 AND b<110600; SELECT count(*), avg(b) FROM t2 WHERE b>=110600 AND b<110700; SELECT count(*), avg(b) FROM t2 WHERE b>=110700 AND b<110800; SELECT count(*), avg(b) FROM t2 WHERE b>=110800 AND b<110900; SELECT count(*), avg(b) FROM t2 WHERE b>=110900 AND b<111000; SELECT count(*), avg(b) FROM t2 WHERE b>=111000 AND b<111100; SELECT count(*), avg(b) FROM t2 WHERE b>=111100 AND b<111200; SELECT count(*), avg(b) FROM t2 WHERE b>=111200 AND b<111300; SELECT count(*), avg(b) FROM t2 WHERE b>=111300 AND b<111400; SELECT count(*), avg(b) FROM t2 WHERE b>=111400 AND b<111500; SELECT count(*), avg(b) FROM t2 WHERE b>=111500 AND b<111600; SELECT count(*), avg(b) FROM t2 WHERE b>=111600 AND b<111700; SELECT count(*), avg(b) FROM t2 WHERE b>=111700 AND b<111800; SELECT count(*), avg(b) FROM t2 WHERE b>=111800 AND b<111900; SELECT count(*), avg(b) FROM t2 WHERE b>=111900 AND b<112000; SELECT count(*), avg(b) FROM t2 WHERE b>=112000 AND b<112100; SELECT count(*), avg(b) FROM t2 WHERE b>=112100 AND b<112200; SELECT count(*), avg(b) FROM t2 WHERE b>=112200 AND b<112300; SELECT count(*), avg(b) FROM t2 WHERE b>=112300 AND b<112400; SELECT count(*), avg(b) FROM t2 WHERE b>=112400 AND b<112500; SELECT count(*), avg(b) FROM t2 WHERE b>=112500 AND b<112600; SELECT count(*), avg(b) FROM t2 WHERE b>=112600 AND b<112700; SELECT count(*), avg(b) FROM t2 WHERE b>=112700 AND b<112800; SELECT count(*), avg(b) FROM t2 WHERE b>=112800 AND b<112900; SELECT count(*), avg(b) FROM t2 WHERE b>=112900 AND b<113000; SELECT count(*), avg(b) FROM t2 WHERE b>=113000 AND b<113100; SELECT count(*), avg(b) FROM t2 WHERE b>=113100 AND b<113200; SELECT count(*), avg(b) FROM t2 WHERE b>=113200 AND b<113300; SELECT count(*), avg(b) FROM t2 WHERE b>=113300 AND b<113400; SELECT count(*), avg(b) FROM t2 WHERE b>=113400 AND b<113500; SELECT count(*), avg(b) FROM t2 WHERE b>=113500 AND b<113600; SELECT count(*), avg(b) FROM t2 WHERE b>=113600 AND b<113700; SELECT count(*), avg(b) FROM t2 WHERE b>=113700 AND b<113800; SELECT count(*), avg(b) FROM t2 WHERE b>=113800 AND b<113900; SELECT count(*), avg(b) FROM t2 WHERE b>=113900 AND b<114000; SELECT count(*), avg(b) FROM t2 WHERE b>=114000 AND b<114100; SELECT count(*), avg(b) FROM t2 WHERE b>=114100 AND b<114200; SELECT count(*), avg(b) FROM t2 WHERE b>=114200 AND b<114300; SELECT count(*), avg(b) FROM t2 WHERE b>=114300 AND b<114400; SELECT count(*), avg(b) FROM t2 WHERE b>=114400 AND b<114500; SELECT count(*), avg(b) FROM t2 WHERE b>=114500 AND b<114600; SELECT count(*), avg(b) FROM t2 WHERE b>=114600 AND b<114700; SELECT count(*), avg(b) FROM t2 WHERE b>=114700 AND b<114800; SELECT count(*), avg(b) FROM t2 WHERE b>=114800 AND b<114900; SELECT count(*), avg(b) FROM t2 WHERE b>=114900 AND b<115000; SELECT count(*), avg(b) FROM t2 WHERE b>=115000 AND b<115100; SELECT count(*), avg(b) FROM t2 WHERE b>=115100 AND b<115200; SELECT count(*), avg(b) FROM t2 WHERE b>=115200 AND b<115300; SELECT count(*), avg(b) FROM t2 WHERE b>=115300 AND b<115400; SELECT count(*), avg(b) FROM t2 WHERE b>=115400 AND b<115500; SELECT count(*), avg(b) FROM t2 WHERE b>=115500 AND b<115600; SELECT count(*), avg(b) FROM t2 WHERE b>=115600 AND b<115700; SELECT count(*), avg(b) FROM t2 WHERE b>=115700 AND b<115800; SELECT count(*), avg(b) FROM t2 WHERE b>=115800 AND b<115900; SELECT count(*), avg(b) FROM t2 WHERE b>=115900 AND b<116000; SELECT count(*), avg(b) FROM t2 WHERE b>=116000 AND b<116100; SELECT count(*), avg(b) FROM t2 WHERE b>=116100 AND b<116200; SELECT count(*), avg(b) FROM t2 WHERE b>=116200 AND b<116300; SELECT count(*), avg(b) FROM t2 WHERE b>=116300 AND b<116400; SELECT count(*), avg(b) FROM t2 WHERE b>=116400 AND b<116500; SELECT count(*), avg(b) FROM t2 WHERE b>=116500 AND b<116600; SELECT count(*), avg(b) FROM t2 WHERE b>=116600 AND b<116700; SELECT count(*), avg(b) FROM t2 WHERE b>=116700 AND b<116800; SELECT count(*), avg(b) FROM t2 WHERE b>=116800 AND b<116900; SELECT count(*), avg(b) FROM t2 WHERE b>=116900 AND b<117000; SELECT count(*), avg(b) FROM t2 WHERE b>=117000 AND b<117100; SELECT count(*), avg(b) FROM t2 WHERE b>=117100 AND b<117200; SELECT count(*), avg(b) FROM t2 WHERE b>=117200 AND b<117300; SELECT count(*), avg(b) FROM t2 WHERE b>=117300 AND b<117400; SELECT count(*), avg(b) FROM t2 WHERE b>=117400 AND b<117500; SELECT count(*), avg(b) FROM t2 WHERE b>=117500 AND b<117600; SELECT count(*), avg(b) FROM t2 WHERE b>=117600 AND b<117700; SELECT count(*), avg(b) FROM t2 WHERE b>=117700 AND b<117800; SELECT count(*), avg(b) FROM t2 WHERE b>=117800 AND b<117900; SELECT count(*), avg(b) FROM t2 WHERE b>=117900 AND b<118000; SELECT count(*), avg(b) FROM t2 WHERE b>=118000 AND b<118100; SELECT count(*), avg(b) FROM t2 WHERE b>=118100 AND b<118200; SELECT count(*), avg(b) FROM t2 WHERE b>=118200 AND b<118300; SELECT count(*), avg(b) FROM t2 WHERE b>=118300 AND b<118400; SELECT count(*), avg(b) FROM t2 WHERE b>=118400 AND b<118500; SELECT count(*), avg(b) FROM t2 WHERE b>=118500 AND b<118600; SELECT count(*), avg(b) FROM t2 WHERE b>=118600 AND b<118700; SELECT count(*), avg(b) FROM t2 WHERE b>=118700 AND b<118800; SELECT count(*), avg(b) FROM t2 WHERE b>=118800 AND b<118900; SELECT count(*), avg(b) FROM t2 WHERE b>=118900 AND b<119000; SELECT count(*), avg(b) FROM t2 WHERE b>=119000 AND b<119100; SELECT count(*), avg(b) FROM t2 WHERE b>=119100 AND b<119200; SELECT count(*), avg(b) FROM t2 WHERE b>=119200 AND b<119300; SELECT count(*), avg(b) FROM t2 WHERE b>=119300 AND b<119400; SELECT count(*), avg(b) FROM t2 WHERE b>=119400 AND b<119500; SELECT count(*), avg(b) FROM t2 WHERE b>=119500 AND b<119600; SELECT count(*), avg(b) FROM t2 WHERE b>=119600 AND b<119700; SELECT count(*), avg(b) FROM t2 WHERE b>=119700 AND b<119800; SELECT count(*), avg(b) FROM t2 WHERE b>=119800 AND b<119900; SELECT count(*), avg(b) FROM t2 WHERE b>=119900 AND b<120000; SELECT count(*), avg(b) FROM t2 WHERE b>=120000 AND b<120100; SELECT count(*), avg(b) FROM t2 WHERE b>=120100 AND b<120200; SELECT count(*), avg(b) FROM t2 WHERE b>=120200 AND b<120300; SELECT count(*), avg(b) FROM t2 WHERE b>=120300 AND b<120400; SELECT count(*), avg(b) FROM t2 WHERE b>=120400 AND b<120500; SELECT count(*), avg(b) FROM t2 WHERE b>=120500 AND b<120600; SELECT count(*), avg(b) FROM t2 WHERE b>=120600 AND b<120700; SELECT count(*), avg(b) FROM t2 WHERE b>=120700 AND b<120800; SELECT count(*), avg(b) FROM t2 WHERE b>=120800 AND b<120900; SELECT count(*), avg(b) FROM t2 WHERE b>=120900 AND b<121000; SELECT count(*), avg(b) FROM t2 WHERE b>=121000 AND b<121100; SELECT count(*), avg(b) FROM t2 WHERE b>=121100 AND b<121200; SELECT count(*), avg(b) FROM t2 WHERE b>=121200 AND b<121300; SELECT count(*), avg(b) FROM t2 WHERE b>=121300 AND b<121400; SELECT count(*), avg(b) FROM t2 WHERE b>=121400 AND b<121500; SELECT count(*), avg(b) FROM t2 WHERE b>=121500 AND b<121600; SELECT count(*), avg(b) FROM t2 WHERE b>=121600 AND b<121700; SELECT count(*), avg(b) FROM t2 WHERE b>=121700 AND b<121800; SELECT count(*), avg(b) FROM t2 WHERE b>=121800 AND b<121900; SELECT count(*), avg(b) FROM t2 WHERE b>=121900 AND b<122000; SELECT count(*), avg(b) FROM t2 WHERE b>=122000 AND b<122100; SELECT count(*), avg(b) FROM t2 WHERE b>=122100 AND b<122200; SELECT count(*), avg(b) FROM t2 WHERE b>=122200 AND b<122300; SELECT count(*), avg(b) FROM t2 WHERE b>=122300 AND b<122400; SELECT count(*), avg(b) FROM t2 WHERE b>=122400 AND b<122500; SELECT count(*), avg(b) FROM t2 WHERE b>=122500 AND b<122600; SELECT count(*), avg(b) FROM t2 WHERE b>=122600 AND b<122700; SELECT count(*), avg(b) FROM t2 WHERE b>=122700 AND b<122800; SELECT count(*), avg(b) FROM t2 WHERE b>=122800 AND b<122900; SELECT count(*), avg(b) FROM t2 WHERE b>=122900 AND b<123000; SELECT count(*), avg(b) FROM t2 WHERE b>=123000 AND b<123100; SELECT count(*), avg(b) FROM t2 WHERE b>=123100 AND b<123200; SELECT count(*), avg(b) FROM t2 WHERE b>=123200 AND b<123300; SELECT count(*), avg(b) FROM t2 WHERE b>=123300 AND b<123400; SELECT count(*), avg(b) FROM t2 WHERE b>=123400 AND b<123500; SELECT count(*), avg(b) FROM t2 WHERE b>=123500 AND b<123600; SELECT count(*), avg(b) FROM t2 WHERE b>=123600 AND b<123700; SELECT count(*), avg(b) FROM t2 WHERE b>=123700 AND b<123800; SELECT count(*), avg(b) FROM t2 WHERE b>=123800 AND b<123900; SELECT count(*), avg(b) FROM t2 WHERE b>=123900 AND b<124000; SELECT count(*), avg(b) FROM t2 WHERE b>=124000 AND b<124100; SELECT count(*), avg(b) FROM t2 WHERE b>=124100 AND b<124200; SELECT count(*), avg(b) FROM t2 WHERE b>=124200 AND b<124300; SELECT count(*), avg(b) FROM t2 WHERE b>=124300 AND b<124400; SELECT count(*), avg(b) FROM t2 WHERE b>=124400 AND b<124500; SELECT count(*), avg(b) FROM t2 WHERE b>=124500 AND b<124600; SELECT count(*), avg(b) FROM t2 WHERE b>=124600 AND b<124700; SELECT count(*), avg(b) FROM t2 WHERE b>=124700 AND b<124800; SELECT count(*), avg(b) FROM t2 WHERE b>=124800 AND b<124900; SELECT count(*), avg(b) FROM t2 WHERE b>=124900 AND b<125000; SELECT count(*), avg(b) FROM t2 WHERE b>=125000 AND b<125100; SELECT count(*), avg(b) FROM t2 WHERE b>=125100 AND b<125200; SELECT count(*), avg(b) FROM t2 WHERE b>=125200 AND b<125300; SELECT count(*), avg(b) FROM t2 WHERE b>=125300 AND b<125400; SELECT count(*), avg(b) FROM t2 WHERE b>=125400 AND b<125500; SELECT count(*), avg(b) FROM t2 WHERE b>=125500 AND b<125600; SELECT count(*), avg(b) FROM t2 WHERE b>=125600 AND b<125700; SELECT count(*), avg(b) FROM t2 WHERE b>=125700 AND b<125800; SELECT count(*), avg(b) FROM t2 WHERE b>=125800 AND b<125900; SELECT count(*), avg(b) FROM t2 WHERE b>=125900 AND b<126000; SELECT count(*), avg(b) FROM t2 WHERE b>=126000 AND b<126100; SELECT count(*), avg(b) FROM t2 WHERE b>=126100 AND b<126200; SELECT count(*), avg(b) FROM t2 WHERE b>=126200 AND b<126300; SELECT count(*), avg(b) FROM t2 WHERE b>=126300 AND b<126400; SELECT count(*), avg(b) FROM t2 WHERE b>=126400 AND b<126500; SELECT count(*), avg(b) FROM t2 WHERE b>=126500 AND b<126600; SELECT count(*), avg(b) FROM t2 WHERE b>=126600 AND b<126700; SELECT count(*), avg(b) FROM t2 WHERE b>=126700 AND b<126800; SELECT count(*), avg(b) FROM t2 WHERE b>=126800 AND b<126900; SELECT count(*), avg(b) FROM t2 WHERE b>=126900 AND b<127000; SELECT count(*), avg(b) FROM t2 WHERE b>=127000 AND b<127100; SELECT count(*), avg(b) FROM t2 WHERE b>=127100 AND b<127200; SELECT count(*), avg(b) FROM t2 WHERE b>=127200 AND b<127300; SELECT count(*), avg(b) FROM t2 WHERE b>=127300 AND b<127400; SELECT count(*), avg(b) FROM t2 WHERE b>=127400 AND b<127500; SELECT count(*), avg(b) FROM t2 WHERE b>=127500 AND b<127600; SELECT count(*), avg(b) FROM t2 WHERE b>=127600 AND b<127700; SELECT count(*), avg(b) FROM t2 WHERE b>=127700 AND b<127800; SELECT count(*), avg(b) FROM t2 WHERE b>=127800 AND b<127900; SELECT count(*), avg(b) FROM t2 WHERE b>=127900 AND b<128000; SELECT count(*), avg(b) FROM t2 WHERE b>=128000 AND b<128100; SELECT count(*), avg(b) FROM t2 WHERE b>=128100 AND b<128200; SELECT count(*), avg(b) FROM t2 WHERE b>=128200 AND b<128300; SELECT count(*), avg(b) FROM t2 WHERE b>=128300 AND b<128400; SELECT count(*), avg(b) FROM t2 WHERE b>=128400 AND b<128500; SELECT count(*), avg(b) FROM t2 WHERE b>=128500 AND b<128600; SELECT count(*), avg(b) FROM t2 WHERE b>=128600 AND b<128700; SELECT count(*), avg(b) FROM t2 WHERE b>=128700 AND b<128800; SELECT count(*), avg(b) FROM t2 WHERE b>=128800 AND b<128900; SELECT count(*), avg(b) FROM t2 WHERE b>=128900 AND b<129000; SELECT count(*), avg(b) FROM t2 WHERE b>=129000 AND b<129100; SELECT count(*), avg(b) FROM t2 WHERE b>=129100 AND b<129200; SELECT count(*), avg(b) FROM t2 WHERE b>=129200 AND b<129300; SELECT count(*), avg(b) FROM t2 WHERE b>=129300 AND b<129400; SELECT count(*), avg(b) FROM t2 WHERE b>=129400 AND b<129500; SELECT count(*), avg(b) FROM t2 WHERE b>=129500 AND b<129600; SELECT count(*), avg(b) FROM t2 WHERE b>=129600 AND b<129700; SELECT count(*), avg(b) FROM t2 WHERE b>=129700 AND b<129800; SELECT count(*), avg(b) FROM t2 WHERE b>=129800 AND b<129900; SELECT count(*), avg(b) FROM t2 WHERE b>=129900 AND b<130000; SELECT count(*), avg(b) FROM t2 WHERE b>=130000 AND b<130100; SELECT count(*), avg(b) FROM t2 WHERE b>=130100 AND b<130200; SELECT count(*), avg(b) FROM t2 WHERE b>=130200 AND b<130300; SELECT count(*), avg(b) FROM t2 WHERE b>=130300 AND b<130400; SELECT count(*), avg(b) FROM t2 WHERE b>=130400 AND b<130500; SELECT count(*), avg(b) FROM t2 WHERE b>=130500 AND b<130600; SELECT count(*), avg(b) FROM t2 WHERE b>=130600 AND b<130700; SELECT count(*), avg(b) FROM t2 WHERE b>=130700 AND b<130800; SELECT count(*), avg(b) FROM t2 WHERE b>=130800 AND b<130900; SELECT count(*), avg(b) FROM t2 WHERE b>=130900 AND b<131000; SELECT count(*), avg(b) FROM t2 WHERE b>=131000 AND b<131100; SELECT count(*), avg(b) FROM t2 WHERE b>=131100 AND b<131200; SELECT count(*), avg(b) FROM t2 WHERE b>=131200 AND b<131300; SELECT count(*), avg(b) FROM t2 WHERE b>=131300 AND b<131400; SELECT count(*), avg(b) FROM t2 WHERE b>=131400 AND b<131500; SELECT count(*), avg(b) FROM t2 WHERE b>=131500 AND b<131600; SELECT count(*), avg(b) FROM t2 WHERE b>=131600 AND b<131700; SELECT count(*), avg(b) FROM t2 WHERE b>=131700 AND b<131800; SELECT count(*), avg(b) FROM t2 WHERE b>=131800 AND b<131900; SELECT count(*), avg(b) FROM t2 WHERE b>=131900 AND b<132000; SELECT count(*), avg(b) FROM t2 WHERE b>=132000 AND b<132100; SELECT count(*), avg(b) FROM t2 WHERE b>=132100 AND b<132200; SELECT count(*), avg(b) FROM t2 WHERE b>=132200 AND b<132300; SELECT count(*), avg(b) FROM t2 WHERE b>=132300 AND b<132400; SELECT count(*), avg(b) FROM t2 WHERE b>=132400 AND b<132500; SELECT count(*), avg(b) FROM t2 WHERE b>=132500 AND b<132600; SELECT count(*), avg(b) FROM t2 WHERE b>=132600 AND b<132700; SELECT count(*), avg(b) FROM t2 WHERE b>=132700 AND b<132800; SELECT count(*), avg(b) FROM t2 WHERE b>=132800 AND b<132900; SELECT count(*), avg(b) FROM t2 WHERE b>=132900 AND b<133000; SELECT count(*), avg(b) FROM t2 WHERE b>=133000 AND b<133100; SELECT count(*), avg(b) FROM t2 WHERE b>=133100 AND b<133200; SELECT count(*), avg(b) FROM t2 WHERE b>=133200 AND b<133300; SELECT count(*), avg(b) FROM t2 WHERE b>=133300 AND b<133400; SELECT count(*), avg(b) FROM t2 WHERE b>=133400 AND b<133500; SELECT count(*), avg(b) FROM t2 WHERE b>=133500 AND b<133600; SELECT count(*), avg(b) FROM t2 WHERE b>=133600 AND b<133700; SELECT count(*), avg(b) FROM t2 WHERE b>=133700 AND b<133800; SELECT count(*), avg(b) FROM t2 WHERE b>=133800 AND b<133900; SELECT count(*), avg(b) FROM t2 WHERE b>=133900 AND b<134000; SELECT count(*), avg(b) FROM t2 WHERE b>=134000 AND b<134100; SELECT count(*), avg(b) FROM t2 WHERE b>=134100 AND b<134200; SELECT count(*), avg(b) FROM t2 WHERE b>=134200 AND b<134300; SELECT count(*), avg(b) FROM t2 WHERE b>=134300 AND b<134400; SELECT count(*), avg(b) FROM t2 WHERE b>=134400 AND b<134500; SELECT count(*), avg(b) FROM t2 WHERE b>=134500 AND b<134600; SELECT count(*), avg(b) FROM t2 WHERE b>=134600 AND b<134700; SELECT count(*), avg(b) FROM t2 WHERE b>=134700 AND b<134800; SELECT count(*), avg(b) FROM t2 WHERE b>=134800 AND b<134900; SELECT count(*), avg(b) FROM t2 WHERE b>=134900 AND b<135000; SELECT count(*), avg(b) FROM t2 WHERE b>=135000 AND b<135100; SELECT count(*), avg(b) FROM t2 WHERE b>=135100 AND b<135200; SELECT count(*), avg(b) FROM t2 WHERE b>=135200 AND b<135300; SELECT count(*), avg(b) FROM t2 WHERE b>=135300 AND b<135400; SELECT count(*), avg(b) FROM t2 WHERE b>=135400 AND b<135500; SELECT count(*), avg(b) FROM t2 WHERE b>=135500 AND b<135600; SELECT count(*), avg(b) FROM t2 WHERE b>=135600 AND b<135700; SELECT count(*), avg(b) FROM t2 WHERE b>=135700 AND b<135800; SELECT count(*), avg(b) FROM t2 WHERE b>=135800 AND b<135900; SELECT count(*), avg(b) FROM t2 WHERE b>=135900 AND b<136000; SELECT count(*), avg(b) FROM t2 WHERE b>=136000 AND b<136100; SELECT count(*), avg(b) FROM t2 WHERE b>=136100 AND b<136200; SELECT count(*), avg(b) FROM t2 WHERE b>=136200 AND b<136300; SELECT count(*), avg(b) FROM t2 WHERE b>=136300 AND b<136400; SELECT count(*), avg(b) FROM t2 WHERE b>=136400 AND b<136500; SELECT count(*), avg(b) FROM t2 WHERE b>=136500 AND b<136600; SELECT count(*), avg(b) FROM t2 WHERE b>=136600 AND b<136700; SELECT count(*), avg(b) FROM t2 WHERE b>=136700 AND b<136800; SELECT count(*), avg(b) FROM t2 WHERE b>=136800 AND b<136900; SELECT count(*), avg(b) FROM t2 WHERE b>=136900 AND b<137000; SELECT count(*), avg(b) FROM t2 WHERE b>=137000 AND b<137100; SELECT count(*), avg(b) FROM t2 WHERE b>=137100 AND b<137200; SELECT count(*), avg(b) FROM t2 WHERE b>=137200 AND b<137300; SELECT count(*), avg(b) FROM t2 WHERE b>=137300 AND b<137400; SELECT count(*), avg(b) FROM t2 WHERE b>=137400 AND b<137500; SELECT count(*), avg(b) FROM t2 WHERE b>=137500 AND b<137600; SELECT count(*), avg(b) FROM t2 WHERE b>=137600 AND b<137700; SELECT count(*), avg(b) FROM t2 WHERE b>=137700 AND b<137800; SELECT count(*), avg(b) FROM t2 WHERE b>=137800 AND b<137900; SELECT count(*), avg(b) FROM t2 WHERE b>=137900 AND b<138000; SELECT count(*), avg(b) FROM t2 WHERE b>=138000 AND b<138100; SELECT count(*), avg(b) FROM t2 WHERE b>=138100 AND b<138200; SELECT count(*), avg(b) FROM t2 WHERE b>=138200 AND b<138300; SELECT count(*), avg(b) FROM t2 WHERE b>=138300 AND b<138400; SELECT count(*), avg(b) FROM t2 WHERE b>=138400 AND b<138500; SELECT count(*), avg(b) FROM t2 WHERE b>=138500 AND b<138600; SELECT count(*), avg(b) FROM t2 WHERE b>=138600 AND b<138700; SELECT count(*), avg(b) FROM t2 WHERE b>=138700 AND b<138800; SELECT count(*), avg(b) FROM t2 WHERE b>=138800 AND b<138900; SELECT count(*), avg(b) FROM t2 WHERE b>=138900 AND b<139000; SELECT count(*), avg(b) FROM t2 WHERE b>=139000 AND b<139100; SELECT count(*), avg(b) FROM t2 WHERE b>=139100 AND b<139200; SELECT count(*), avg(b) FROM t2 WHERE b>=139200 AND b<139300; SELECT count(*), avg(b) FROM t2 WHERE b>=139300 AND b<139400; SELECT count(*), avg(b) FROM t2 WHERE b>=139400 AND b<139500; SELECT count(*), avg(b) FROM t2 WHERE b>=139500 AND b<139600; SELECT count(*), avg(b) FROM t2 WHERE b>=139600 AND b<139700; SELECT count(*), avg(b) FROM t2 WHERE b>=139700 AND b<139800; SELECT count(*), avg(b) FROM t2 WHERE b>=139800 AND b<139900; SELECT count(*), avg(b) FROM t2 WHERE b>=139900 AND b<140000; SELECT count(*), avg(b) FROM t2 WHERE b>=140000 AND b<140100; SELECT count(*), avg(b) FROM t2 WHERE b>=140100 AND b<140200; SELECT count(*), avg(b) FROM t2 WHERE b>=140200 AND b<140300; SELECT count(*), avg(b) FROM t2 WHERE b>=140300 AND b<140400; SELECT count(*), avg(b) FROM t2 WHERE b>=140400 AND b<140500; SELECT count(*), avg(b) FROM t2 WHERE b>=140500 AND b<140600; SELECT count(*), avg(b) FROM t2 WHERE b>=140600 AND b<140700; SELECT count(*), avg(b) FROM t2 WHERE b>=140700 AND b<140800; SELECT count(*), avg(b) FROM t2 WHERE b>=140800 AND b<140900; SELECT count(*), avg(b) FROM t2 WHERE b>=140900 AND b<141000; SELECT count(*), avg(b) FROM t2 WHERE b>=141000 AND b<141100; SELECT count(*), avg(b) FROM t2 WHERE b>=141100 AND b<141200; SELECT count(*), avg(b) FROM t2 WHERE b>=141200 AND b<141300; SELECT count(*), avg(b) FROM t2 WHERE b>=141300 AND b<141400; SELECT count(*), avg(b) FROM t2 WHERE b>=141400 AND b<141500; SELECT count(*), avg(b) FROM t2 WHERE b>=141500 AND b<141600; SELECT count(*), avg(b) FROM t2 WHERE b>=141600 AND b<141700; SELECT count(*), avg(b) FROM t2 WHERE b>=141700 AND b<141800; SELECT count(*), avg(b) FROM t2 WHERE b>=141800 AND b<141900; SELECT count(*), avg(b) FROM t2 WHERE b>=141900 AND b<142000; SELECT count(*), avg(b) FROM t2 WHERE b>=142000 AND b<142100; SELECT count(*), avg(b) FROM t2 WHERE b>=142100 AND b<142200; SELECT count(*), avg(b) FROM t2 WHERE b>=142200 AND b<142300; SELECT count(*), avg(b) FROM t2 WHERE b>=142300 AND b<142400; SELECT count(*), avg(b) FROM t2 WHERE b>=142400 AND b<142500; SELECT count(*), avg(b) FROM t2 WHERE b>=142500 AND b<142600; SELECT count(*), avg(b) FROM t2 WHERE b>=142600 AND b<142700; SELECT count(*), avg(b) FROM t2 WHERE b>=142700 AND b<142800; SELECT count(*), avg(b) FROM t2 WHERE b>=142800 AND b<142900; SELECT count(*), avg(b) FROM t2 WHERE b>=142900 AND b<143000; SELECT count(*), avg(b) FROM t2 WHERE b>=143000 AND b<143100; SELECT count(*), avg(b) FROM t2 WHERE b>=143100 AND b<143200; SELECT count(*), avg(b) FROM t2 WHERE b>=143200 AND b<143300; SELECT count(*), avg(b) FROM t2 WHERE b>=143300 AND b<143400; SELECT count(*), avg(b) FROM t2 WHERE b>=143400 AND b<143500; SELECT count(*), avg(b) FROM t2 WHERE b>=143500 AND b<143600; SELECT count(*), avg(b) FROM t2 WHERE b>=143600 AND b<143700; SELECT count(*), avg(b) FROM t2 WHERE b>=143700 AND b<143800; SELECT count(*), avg(b) FROM t2 WHERE b>=143800 AND b<143900; SELECT count(*), avg(b) FROM t2 WHERE b>=143900 AND b<144000; SELECT count(*), avg(b) FROM t2 WHERE b>=144000 AND b<144100; SELECT count(*), avg(b) FROM t2 WHERE b>=144100 AND b<144200; SELECT count(*), avg(b) FROM t2 WHERE b>=144200 AND b<144300; SELECT count(*), avg(b) FROM t2 WHERE b>=144300 AND b<144400; SELECT count(*), avg(b) FROM t2 WHERE b>=144400 AND b<144500; SELECT count(*), avg(b) FROM t2 WHERE b>=144500 AND b<144600; SELECT count(*), avg(b) FROM t2 WHERE b>=144600 AND b<144700; SELECT count(*), avg(b) FROM t2 WHERE b>=144700 AND b<144800; SELECT count(*), avg(b) FROM t2 WHERE b>=144800 AND b<144900; SELECT count(*), avg(b) FROM t2 WHERE b>=144900 AND b<145000; SELECT count(*), avg(b) FROM t2 WHERE b>=145000 AND b<145100; SELECT count(*), avg(b) FROM t2 WHERE b>=145100 AND b<145200; SELECT count(*), avg(b) FROM t2 WHERE b>=145200 AND b<145300; SELECT count(*), avg(b) FROM t2 WHERE b>=145300 AND b<145400; SELECT count(*), avg(b) FROM t2 WHERE b>=145400 AND b<145500; SELECT count(*), avg(b) FROM t2 WHERE b>=145500 AND b<145600; SELECT count(*), avg(b) FROM t2 WHERE b>=145600 AND b<145700; SELECT count(*), avg(b) FROM t2 WHERE b>=145700 AND b<145800; SELECT count(*), avg(b) FROM t2 WHERE b>=145800 AND b<145900; SELECT count(*), avg(b) FROM t2 WHERE b>=145900 AND b<146000; SELECT count(*), avg(b) FROM t2 WHERE b>=146000 AND b<146100; SELECT count(*), avg(b) FROM t2 WHERE b>=146100 AND b<146200; SELECT count(*), avg(b) FROM t2 WHERE b>=146200 AND b<146300; SELECT count(*), avg(b) FROM t2 WHERE b>=146300 AND b<146400; SELECT count(*), avg(b) FROM t2 WHERE b>=146400 AND b<146500; SELECT count(*), avg(b) FROM t2 WHERE b>=146500 AND b<146600; SELECT count(*), avg(b) FROM t2 WHERE b>=146600 AND b<146700; SELECT count(*), avg(b) FROM t2 WHERE b>=146700 AND b<146800; SELECT count(*), avg(b) FROM t2 WHERE b>=146800 AND b<146900; SELECT count(*), avg(b) FROM t2 WHERE b>=146900 AND b<147000; SELECT count(*), avg(b) FROM t2 WHERE b>=147000 AND b<147100; SELECT count(*), avg(b) FROM t2 WHERE b>=147100 AND b<147200; SELECT count(*), avg(b) FROM t2 WHERE b>=147200 AND b<147300; SELECT count(*), avg(b) FROM t2 WHERE b>=147300 AND b<147400; SELECT count(*), avg(b) FROM t2 WHERE b>=147400 AND b<147500; SELECT count(*), avg(b) FROM t2 WHERE b>=147500 AND b<147600; SELECT count(*), avg(b) FROM t2 WHERE b>=147600 AND b<147700; SELECT count(*), avg(b) FROM t2 WHERE b>=147700 AND b<147800; SELECT count(*), avg(b) FROM t2 WHERE b>=147800 AND b<147900; SELECT count(*), avg(b) FROM t2 WHERE b>=147900 AND b<148000; SELECT count(*), avg(b) FROM t2 WHERE b>=148000 AND b<148100; SELECT count(*), avg(b) FROM t2 WHERE b>=148100 AND b<148200; SELECT count(*), avg(b) FROM t2 WHERE b>=148200 AND b<148300; SELECT count(*), avg(b) FROM t2 WHERE b>=148300 AND b<148400; SELECT count(*), avg(b) FROM t2 WHERE b>=148400 AND b<148500; SELECT count(*), avg(b) FROM t2 WHERE b>=148500 AND b<148600; SELECT count(*), avg(b) FROM t2 WHERE b>=148600 AND b<148700; SELECT count(*), avg(b) FROM t2 WHERE b>=148700 AND b<148800; SELECT count(*), avg(b) FROM t2 WHERE b>=148800 AND b<148900; SELECT count(*), avg(b) FROM t2 WHERE b>=148900 AND b<149000; SELECT count(*), avg(b) FROM t2 WHERE b>=149000 AND b<149100; SELECT count(*), avg(b) FROM t2 WHERE b>=149100 AND b<149200; SELECT count(*), avg(b) FROM t2 WHERE b>=149200 AND b<149300; SELECT count(*), avg(b) FROM t2 WHERE b>=149300 AND b<149400; SELECT count(*), avg(b) FROM t2 WHERE b>=149400 AND b<149500; SELECT count(*), avg(b) FROM t2 WHERE b>=149500 AND b<149600; SELECT count(*), avg(b) FROM t2 WHERE b>=149600 AND b<149700; SELECT count(*), avg(b) FROM t2 WHERE b>=149700 AND b<149800; SELECT count(*), avg(b) FROM t2 WHERE b>=149800 AND b<149900; SELECT count(*), avg(b) FROM t2 WHERE b>=149900 AND b<150000; SELECT count(*), avg(b) FROM t2 WHERE b>=150000 AND b<150100; SELECT count(*), avg(b) FROM t2 WHERE b>=150100 AND b<150200; SELECT count(*), avg(b) FROM t2 WHERE b>=150200 AND b<150300; SELECT count(*), avg(b) FROM t2 WHERE b>=150300 AND b<150400; SELECT count(*), avg(b) FROM t2 WHERE b>=150400 AND b<150500; SELECT count(*), avg(b) FROM t2 WHERE b>=150500 AND b<150600; SELECT count(*), avg(b) FROM t2 WHERE b>=150600 AND b<150700; SELECT count(*), avg(b) FROM t2 WHERE b>=150700 AND b<150800; SELECT count(*), avg(b) FROM t2 WHERE b>=150800 AND b<150900; SELECT count(*), avg(b) FROM t2 WHERE b>=150900 AND b<151000; SELECT count(*), avg(b) FROM t2 WHERE b>=151000 AND b<151100; SELECT count(*), avg(b) FROM t2 WHERE b>=151100 AND b<151200; SELECT count(*), avg(b) FROM t2 WHERE b>=151200 AND b<151300; SELECT count(*), avg(b) FROM t2 WHERE b>=151300 AND b<151400; SELECT count(*), avg(b) FROM t2 WHERE b>=151400 AND b<151500; SELECT count(*), avg(b) FROM t2 WHERE b>=151500 AND b<151600; SELECT count(*), avg(b) FROM t2 WHERE b>=151600 AND b<151700; SELECT count(*), avg(b) FROM t2 WHERE b>=151700 AND b<151800; SELECT count(*), avg(b) FROM t2 WHERE b>=151800 AND b<151900; SELECT count(*), avg(b) FROM t2 WHERE b>=151900 AND b<152000; SELECT count(*), avg(b) FROM t2 WHERE b>=152000 AND b<152100; SELECT count(*), avg(b) FROM t2 WHERE b>=152100 AND b<152200; SELECT count(*), avg(b) FROM t2 WHERE b>=152200 AND b<152300; SELECT count(*), avg(b) FROM t2 WHERE b>=152300 AND b<152400; SELECT count(*), avg(b) FROM t2 WHERE b>=152400 AND b<152500; SELECT count(*), avg(b) FROM t2 WHERE b>=152500 AND b<152600; SELECT count(*), avg(b) FROM t2 WHERE b>=152600 AND b<152700; SELECT count(*), avg(b) FROM t2 WHERE b>=152700 AND b<152800; SELECT count(*), avg(b) FROM t2 WHERE b>=152800 AND b<152900; SELECT count(*), avg(b) FROM t2 WHERE b>=152900 AND b<153000; SELECT count(*), avg(b) FROM t2 WHERE b>=153000 AND b<153100; SELECT count(*), avg(b) FROM t2 WHERE b>=153100 AND b<153200; SELECT count(*), avg(b) FROM t2 WHERE b>=153200 AND b<153300; SELECT count(*), avg(b) FROM t2 WHERE b>=153300 AND b<153400; SELECT count(*), avg(b) FROM t2 WHERE b>=153400 AND b<153500; SELECT count(*), avg(b) FROM t2 WHERE b>=153500 AND b<153600; SELECT count(*), avg(b) FROM t2 WHERE b>=153600 AND b<153700; SELECT count(*), avg(b) FROM t2 WHERE b>=153700 AND b<153800; SELECT count(*), avg(b) FROM t2 WHERE b>=153800 AND b<153900; SELECT count(*), avg(b) FROM t2 WHERE b>=153900 AND b<154000; SELECT count(*), avg(b) FROM t2 WHERE b>=154000 AND b<154100; SELECT count(*), avg(b) FROM t2 WHERE b>=154100 AND b<154200; SELECT count(*), avg(b) FROM t2 WHERE b>=154200 AND b<154300; SELECT count(*), avg(b) FROM t2 WHERE b>=154300 AND b<154400; SELECT count(*), avg(b) FROM t2 WHERE b>=154400 AND b<154500; SELECT count(*), avg(b) FROM t2 WHERE b>=154500 AND b<154600; SELECT count(*), avg(b) FROM t2 WHERE b>=154600 AND b<154700; SELECT count(*), avg(b) FROM t2 WHERE b>=154700 AND b<154800; SELECT count(*), avg(b) FROM t2 WHERE b>=154800 AND b<154900; SELECT count(*), avg(b) FROM t2 WHERE b>=154900 AND b<155000; SELECT count(*), avg(b) FROM t2 WHERE b>=155000 AND b<155100; SELECT count(*), avg(b) FROM t2 WHERE b>=155100 AND b<155200; SELECT count(*), avg(b) FROM t2 WHERE b>=155200 AND b<155300; SELECT count(*), avg(b) FROM t2 WHERE b>=155300 AND b<155400; SELECT count(*), avg(b) FROM t2 WHERE b>=155400 AND b<155500; SELECT count(*), avg(b) FROM t2 WHERE b>=155500 AND b<155600; SELECT count(*), avg(b) FROM t2 WHERE b>=155600 AND b<155700; SELECT count(*), avg(b) FROM t2 WHERE b>=155700 AND b<155800; SELECT count(*), avg(b) FROM t2 WHERE b>=155800 AND b<155900; SELECT count(*), avg(b) FROM t2 WHERE b>=155900 AND b<156000; SELECT count(*), avg(b) FROM t2 WHERE b>=156000 AND b<156100; SELECT count(*), avg(b) FROM t2 WHERE b>=156100 AND b<156200; SELECT count(*), avg(b) FROM t2 WHERE b>=156200 AND b<156300; SELECT count(*), avg(b) FROM t2 WHERE b>=156300 AND b<156400; SELECT count(*), avg(b) FROM t2 WHERE b>=156400 AND b<156500; SELECT count(*), avg(b) FROM t2 WHERE b>=156500 AND b<156600; SELECT count(*), avg(b) FROM t2 WHERE b>=156600 AND b<156700; SELECT count(*), avg(b) FROM t2 WHERE b>=156700 AND b<156800; SELECT count(*), avg(b) FROM t2 WHERE b>=156800 AND b<156900; SELECT count(*), avg(b) FROM t2 WHERE b>=156900 AND b<157000; SELECT count(*), avg(b) FROM t2 WHERE b>=157000 AND b<157100; SELECT count(*), avg(b) FROM t2 WHERE b>=157100 AND b<157200; SELECT count(*), avg(b) FROM t2 WHERE b>=157200 AND b<157300; SELECT count(*), avg(b) FROM t2 WHERE b>=157300 AND b<157400; SELECT count(*), avg(b) FROM t2 WHERE b>=157400 AND b<157500; SELECT count(*), avg(b) FROM t2 WHERE b>=157500 AND b<157600; SELECT count(*), avg(b) FROM t2 WHERE b>=157600 AND b<157700; SELECT count(*), avg(b) FROM t2 WHERE b>=157700 AND b<157800; SELECT count(*), avg(b) FROM t2 WHERE b>=157800 AND b<157900; SELECT count(*), avg(b) FROM t2 WHERE b>=157900 AND b<158000; SELECT count(*), avg(b) FROM t2 WHERE b>=158000 AND b<158100; SELECT count(*), avg(b) FROM t2 WHERE b>=158100 AND b<158200; SELECT count(*), avg(b) FROM t2 WHERE b>=158200 AND b<158300; SELECT count(*), avg(b) FROM t2 WHERE b>=158300 AND b<158400; SELECT count(*), avg(b) FROM t2 WHERE b>=158400 AND b<158500; SELECT count(*), avg(b) FROM t2 WHERE b>=158500 AND b<158600; SELECT count(*), avg(b) FROM t2 WHERE b>=158600 AND b<158700; SELECT count(*), avg(b) FROM t2 WHERE b>=158700 AND b<158800; SELECT count(*), avg(b) FROM t2 WHERE b>=158800 AND b<158900; SELECT count(*), avg(b) FROM t2 WHERE b>=158900 AND b<159000; SELECT count(*), avg(b) FROM t2 WHERE b>=159000 AND b<159100; SELECT count(*), avg(b) FROM t2 WHERE b>=159100 AND b<159200; SELECT count(*), avg(b) FROM t2 WHERE b>=159200 AND b<159300; SELECT count(*), avg(b) FROM t2 WHERE b>=159300 AND b<159400; SELECT count(*), avg(b) FROM t2 WHERE b>=159400 AND b<159500; SELECT count(*), avg(b) FROM t2 WHERE b>=159500 AND b<159600; SELECT count(*), avg(b) FROM t2 WHERE b>=159600 AND b<159700; SELECT count(*), avg(b) FROM t2 WHERE b>=159700 AND b<159800; SELECT count(*), avg(b) FROM t2 WHERE b>=159800 AND b<159900; SELECT count(*), avg(b) FROM t2 WHERE b>=159900 AND b<160000; SELECT count(*), avg(b) FROM t2 WHERE b>=160000 AND b<160100; SELECT count(*), avg(b) FROM t2 WHERE b>=160100 AND b<160200; SELECT count(*), avg(b) FROM t2 WHERE b>=160200 AND b<160300; SELECT count(*), avg(b) FROM t2 WHERE b>=160300 AND b<160400; SELECT count(*), avg(b) FROM t2 WHERE b>=160400 AND b<160500; SELECT count(*), avg(b) FROM t2 WHERE b>=160500 AND b<160600; SELECT count(*), avg(b) FROM t2 WHERE b>=160600 AND b<160700; SELECT count(*), avg(b) FROM t2 WHERE b>=160700 AND b<160800; SELECT count(*), avg(b) FROM t2 WHERE b>=160800 AND b<160900; SELECT count(*), avg(b) FROM t2 WHERE b>=160900 AND b<161000; SELECT count(*), avg(b) FROM t2 WHERE b>=161000 AND b<161100; SELECT count(*), avg(b) FROM t2 WHERE b>=161100 AND b<161200; SELECT count(*), avg(b) FROM t2 WHERE b>=161200 AND b<161300; SELECT count(*), avg(b) FROM t2 WHERE b>=161300 AND b<161400; SELECT count(*), avg(b) FROM t2 WHERE b>=161400 AND b<161500; SELECT count(*), avg(b) FROM t2 WHERE b>=161500 AND b<161600; SELECT count(*), avg(b) FROM t2 WHERE b>=161600 AND b<161700; SELECT count(*), avg(b) FROM t2 WHERE b>=161700 AND b<161800; SELECT count(*), avg(b) FROM t2 WHERE b>=161800 AND b<161900; SELECT count(*), avg(b) FROM t2 WHERE b>=161900 AND b<162000; SELECT count(*), avg(b) FROM t2 WHERE b>=162000 AND b<162100; SELECT count(*), avg(b) FROM t2 WHERE b>=162100 AND b<162200; SELECT count(*), avg(b) FROM t2 WHERE b>=162200 AND b<162300; SELECT count(*), avg(b) FROM t2 WHERE b>=162300 AND b<162400; SELECT count(*), avg(b) FROM t2 WHERE b>=162400 AND b<162500; SELECT count(*), avg(b) FROM t2 WHERE b>=162500 AND b<162600; SELECT count(*), avg(b) FROM t2 WHERE b>=162600 AND b<162700; SELECT count(*), avg(b) FROM t2 WHERE b>=162700 AND b<162800; SELECT count(*), avg(b) FROM t2 WHERE b>=162800 AND b<162900; SELECT count(*), avg(b) FROM t2 WHERE b>=162900 AND b<163000; SELECT count(*), avg(b) FROM t2 WHERE b>=163000 AND b<163100; SELECT count(*), avg(b) FROM t2 WHERE b>=163100 AND b<163200; SELECT count(*), avg(b) FROM t2 WHERE b>=163200 AND b<163300; SELECT count(*), avg(b) FROM t2 WHERE b>=163300 AND b<163400; SELECT count(*), avg(b) FROM t2 WHERE b>=163400 AND b<163500; SELECT count(*), avg(b) FROM t2 WHERE b>=163500 AND b<163600; SELECT count(*), avg(b) FROM t2 WHERE b>=163600 AND b<163700; SELECT count(*), avg(b) FROM t2 WHERE b>=163700 AND b<163800; SELECT count(*), avg(b) FROM t2 WHERE b>=163800 AND b<163900; SELECT count(*), avg(b) FROM t2 WHERE b>=163900 AND b<164000; SELECT count(*), avg(b) FROM t2 WHERE b>=164000 AND b<164100; SELECT count(*), avg(b) FROM t2 WHERE b>=164100 AND b<164200; SELECT count(*), avg(b) FROM t2 WHERE b>=164200 AND b<164300; SELECT count(*), avg(b) FROM t2 WHERE b>=164300 AND b<164400; SELECT count(*), avg(b) FROM t2 WHERE b>=164400 AND b<164500; SELECT count(*), avg(b) FROM t2 WHERE b>=164500 AND b<164600; SELECT count(*), avg(b) FROM t2 WHERE b>=164600 AND b<164700; SELECT count(*), avg(b) FROM t2 WHERE b>=164700 AND b<164800; SELECT count(*), avg(b) FROM t2 WHERE b>=164800 AND b<164900; SELECT count(*), avg(b) FROM t2 WHERE b>=164900 AND b<165000; SELECT count(*), avg(b) FROM t2 WHERE b>=165000 AND b<165100; SELECT count(*), avg(b) FROM t2 WHERE b>=165100 AND b<165200; SELECT count(*), avg(b) FROM t2 WHERE b>=165200 AND b<165300; SELECT count(*), avg(b) FROM t2 WHERE b>=165300 AND b<165400; SELECT count(*), avg(b) FROM t2 WHERE b>=165400 AND b<165500; SELECT count(*), avg(b) FROM t2 WHERE b>=165500 AND b<165600; SELECT count(*), avg(b) FROM t2 WHERE b>=165600 AND b<165700; SELECT count(*), avg(b) FROM t2 WHERE b>=165700 AND b<165800; SELECT count(*), avg(b) FROM t2 WHERE b>=165800 AND b<165900; SELECT count(*), avg(b) FROM t2 WHERE b>=165900 AND b<166000; SELECT count(*), avg(b) FROM t2 WHERE b>=166000 AND b<166100; SELECT count(*), avg(b) FROM t2 WHERE b>=166100 AND b<166200; SELECT count(*), avg(b) FROM t2 WHERE b>=166200 AND b<166300; SELECT count(*), avg(b) FROM t2 WHERE b>=166300 AND b<166400; SELECT count(*), avg(b) FROM t2 WHERE b>=166400 AND b<166500; SELECT count(*), avg(b) FROM t2 WHERE b>=166500 AND b<166600; SELECT count(*), avg(b) FROM t2 WHERE b>=166600 AND b<166700; SELECT count(*), avg(b) FROM t2 WHERE b>=166700 AND b<166800; SELECT count(*), avg(b) FROM t2 WHERE b>=166800 AND b<166900; SELECT count(*), avg(b) FROM t2 WHERE b>=166900 AND b<167000; SELECT count(*), avg(b) FROM t2 WHERE b>=167000 AND b<167100; SELECT count(*), avg(b) FROM t2 WHERE b>=167100 AND b<167200; SELECT count(*), avg(b) FROM t2 WHERE b>=167200 AND b<167300; SELECT count(*), avg(b) FROM t2 WHERE b>=167300 AND b<167400; SELECT count(*), avg(b) FROM t2 WHERE b>=167400 AND b<167500; SELECT count(*), avg(b) FROM t2 WHERE b>=167500 AND b<167600; SELECT count(*), avg(b) FROM t2 WHERE b>=167600 AND b<167700; SELECT count(*), avg(b) FROM t2 WHERE b>=167700 AND b<167800; SELECT count(*), avg(b) FROM t2 WHERE b>=167800 AND b<167900; SELECT count(*), avg(b) FROM t2 WHERE b>=167900 AND b<168000; SELECT count(*), avg(b) FROM t2 WHERE b>=168000 AND b<168100; SELECT count(*), avg(b) FROM t2 WHERE b>=168100 AND b<168200; SELECT count(*), avg(b) FROM t2 WHERE b>=168200 AND b<168300; SELECT count(*), avg(b) FROM t2 WHERE b>=168300 AND b<168400; SELECT count(*), avg(b) FROM t2 WHERE b>=168400 AND b<168500; SELECT count(*), avg(b) FROM t2 WHERE b>=168500 AND b<168600; SELECT count(*), avg(b) FROM t2 WHERE b>=168600 AND b<168700; SELECT count(*), avg(b) FROM t2 WHERE b>=168700 AND b<168800; SELECT count(*), avg(b) FROM t2 WHERE b>=168800 AND b<168900; SELECT count(*), avg(b) FROM t2 WHERE b>=168900 AND b<169000; SELECT count(*), avg(b) FROM t2 WHERE b>=169000 AND b<169100; SELECT count(*), avg(b) FROM t2 WHERE b>=169100 AND b<169200; SELECT count(*), avg(b) FROM t2 WHERE b>=169200 AND b<169300; SELECT count(*), avg(b) FROM t2 WHERE b>=169300 AND b<169400; SELECT count(*), avg(b) FROM t2 WHERE b>=169400 AND b<169500; SELECT count(*), avg(b) FROM t2 WHERE b>=169500 AND b<169600; SELECT count(*), avg(b) FROM t2 WHERE b>=169600 AND b<169700; SELECT count(*), avg(b) FROM t2 WHERE b>=169700 AND b<169800; SELECT count(*), avg(b) FROM t2 WHERE b>=169800 AND b<169900; SELECT count(*), avg(b) FROM t2 WHERE b>=169900 AND b<170000; SELECT count(*), avg(b) FROM t2 WHERE b>=170000 AND b<170100; SELECT count(*), avg(b) FROM t2 WHERE b>=170100 AND b<170200; SELECT count(*), avg(b) FROM t2 WHERE b>=170200 AND b<170300; SELECT count(*), avg(b) FROM t2 WHERE b>=170300 AND b<170400; SELECT count(*), avg(b) FROM t2 WHERE b>=170400 AND b<170500; SELECT count(*), avg(b) FROM t2 WHERE b>=170500 AND b<170600; SELECT count(*), avg(b) FROM t2 WHERE b>=170600 AND b<170700; SELECT count(*), avg(b) FROM t2 WHERE b>=170700 AND b<170800; SELECT count(*), avg(b) FROM t2 WHERE b>=170800 AND b<170900; SELECT count(*), avg(b) FROM t2 WHERE b>=170900 AND b<171000; SELECT count(*), avg(b) FROM t2 WHERE b>=171000 AND b<171100; SELECT count(*), avg(b) FROM t2 WHERE b>=171100 AND b<171200; SELECT count(*), avg(b) FROM t2 WHERE b>=171200 AND b<171300; SELECT count(*), avg(b) FROM t2 WHERE b>=171300 AND b<171400; SELECT count(*), avg(b) FROM t2 WHERE b>=171400 AND b<171500; SELECT count(*), avg(b) FROM t2 WHERE b>=171500 AND b<171600; SELECT count(*), avg(b) FROM t2 WHERE b>=171600 AND b<171700; SELECT count(*), avg(b) FROM t2 WHERE b>=171700 AND b<171800; SELECT count(*), avg(b) FROM t2 WHERE b>=171800 AND b<171900; SELECT count(*), avg(b) FROM t2 WHERE b>=171900 AND b<172000; SELECT count(*), avg(b) FROM t2 WHERE b>=172000 AND b<172100; SELECT count(*), avg(b) FROM t2 WHERE b>=172100 AND b<172200; SELECT count(*), avg(b) FROM t2 WHERE b>=172200 AND b<172300; SELECT count(*), avg(b) FROM t2 WHERE b>=172300 AND b<172400; SELECT count(*), avg(b) FROM t2 WHERE b>=172400 AND b<172500; SELECT count(*), avg(b) FROM t2 WHERE b>=172500 AND b<172600; SELECT count(*), avg(b) FROM t2 WHERE b>=172600 AND b<172700; SELECT count(*), avg(b) FROM t2 WHERE b>=172700 AND b<172800; SELECT count(*), avg(b) FROM t2 WHERE b>=172800 AND b<172900; SELECT count(*), avg(b) FROM t2 WHERE b>=172900 AND b<173000; SELECT count(*), avg(b) FROM t2 WHERE b>=173000 AND b<173100; SELECT count(*), avg(b) FROM t2 WHERE b>=173100 AND b<173200; SELECT count(*), avg(b) FROM t2 WHERE b>=173200 AND b<173300; SELECT count(*), avg(b) FROM t2 WHERE b>=173300 AND b<173400; SELECT count(*), avg(b) FROM t2 WHERE b>=173400 AND b<173500; SELECT count(*), avg(b) FROM t2 WHERE b>=173500 AND b<173600; SELECT count(*), avg(b) FROM t2 WHERE b>=173600 AND b<173700; SELECT count(*), avg(b) FROM t2 WHERE b>=173700 AND b<173800; SELECT count(*), avg(b) FROM t2 WHERE b>=173800 AND b<173900; SELECT count(*), avg(b) FROM t2 WHERE b>=173900 AND b<174000; SELECT count(*), avg(b) FROM t2 WHERE b>=174000 AND b<174100; SELECT count(*), avg(b) FROM t2 WHERE b>=174100 AND b<174200; SELECT count(*), avg(b) FROM t2 WHERE b>=174200 AND b<174300; SELECT count(*), avg(b) FROM t2 WHERE b>=174300 AND b<174400; SELECT count(*), avg(b) FROM t2 WHERE b>=174400 AND b<174500; SELECT count(*), avg(b) FROM t2 WHERE b>=174500 AND b<174600; SELECT count(*), avg(b) FROM t2 WHERE b>=174600 AND b<174700; SELECT count(*), avg(b) FROM t2 WHERE b>=174700 AND b<174800; SELECT count(*), avg(b) FROM t2 WHERE b>=174800 AND b<174900; SELECT count(*), avg(b) FROM t2 WHERE b>=174900 AND b<175000; SELECT count(*), avg(b) FROM t2 WHERE b>=175000 AND b<175100; SELECT count(*), avg(b) FROM t2 WHERE b>=175100 AND b<175200; SELECT count(*), avg(b) FROM t2 WHERE b>=175200 AND b<175300; SELECT count(*), avg(b) FROM t2 WHERE b>=175300 AND b<175400; SELECT count(*), avg(b) FROM t2 WHERE b>=175400 AND b<175500; SELECT count(*), avg(b) FROM t2 WHERE b>=175500 AND b<175600; SELECT count(*), avg(b) FROM t2 WHERE b>=175600 AND b<175700; SELECT count(*), avg(b) FROM t2 WHERE b>=175700 AND b<175800; SELECT count(*), avg(b) FROM t2 WHERE b>=175800 AND b<175900; SELECT count(*), avg(b) FROM t2 WHERE b>=175900 AND b<176000; SELECT count(*), avg(b) FROM t2 WHERE b>=176000 AND b<176100; SELECT count(*), avg(b) FROM t2 WHERE b>=176100 AND b<176200; SELECT count(*), avg(b) FROM t2 WHERE b>=176200 AND b<176300; SELECT count(*), avg(b) FROM t2 WHERE b>=176300 AND b<176400; SELECT count(*), avg(b) FROM t2 WHERE b>=176400 AND b<176500; SELECT count(*), avg(b) FROM t2 WHERE b>=176500 AND b<176600; SELECT count(*), avg(b) FROM t2 WHERE b>=176600 AND b<176700; SELECT count(*), avg(b) FROM t2 WHERE b>=176700 AND b<176800; SELECT count(*), avg(b) FROM t2 WHERE b>=176800 AND b<176900; SELECT count(*), avg(b) FROM t2 WHERE b>=176900 AND b<177000; SELECT count(*), avg(b) FROM t2 WHERE b>=177000 AND b<177100; SELECT count(*), avg(b) FROM t2 WHERE b>=177100 AND b<177200; SELECT count(*), avg(b) FROM t2 WHERE b>=177200 AND b<177300; SELECT count(*), avg(b) FROM t2 WHERE b>=177300 AND b<177400; SELECT count(*), avg(b) FROM t2 WHERE b>=177400 AND b<177500; SELECT count(*), avg(b) FROM t2 WHERE b>=177500 AND b<177600; SELECT count(*), avg(b) FROM t2 WHERE b>=177600 AND b<177700; SELECT count(*), avg(b) FROM t2 WHERE b>=177700 AND b<177800; SELECT count(*), avg(b) FROM t2 WHERE b>=177800 AND b<177900; SELECT count(*), avg(b) FROM t2 WHERE b>=177900 AND b<178000; SELECT count(*), avg(b) FROM t2 WHERE b>=178000 AND b<178100; SELECT count(*), avg(b) FROM t2 WHERE b>=178100 AND b<178200; SELECT count(*), avg(b) FROM t2 WHERE b>=178200 AND b<178300; SELECT count(*), avg(b) FROM t2 WHERE b>=178300 AND b<178400; SELECT count(*), avg(b) FROM t2 WHERE b>=178400 AND b<178500; SELECT count(*), avg(b) FROM t2 WHERE b>=178500 AND b<178600; SELECT count(*), avg(b) FROM t2 WHERE b>=178600 AND b<178700; SELECT count(*), avg(b) FROM t2 WHERE b>=178700 AND b<178800; SELECT count(*), avg(b) FROM t2 WHERE b>=178800 AND b<178900; SELECT count(*), avg(b) FROM t2 WHERE b>=178900 AND b<179000; SELECT count(*), avg(b) FROM t2 WHERE b>=179000 AND b<179100; SELECT count(*), avg(b) FROM t2 WHERE b>=179100 AND b<179200; SELECT count(*), avg(b) FROM t2 WHERE b>=179200 AND b<179300; SELECT count(*), avg(b) FROM t2 WHERE b>=179300 AND b<179400; SELECT count(*), avg(b) FROM t2 WHERE b>=179400 AND b<179500; SELECT count(*), avg(b) FROM t2 WHERE b>=179500 AND b<179600; SELECT count(*), avg(b) FROM t2 WHERE b>=179600 AND b<179700; SELECT count(*), avg(b) FROM t2 WHERE b>=179700 AND b<179800; SELECT count(*), avg(b) FROM t2 WHERE b>=179800 AND b<179900; SELECT count(*), avg(b) FROM t2 WHERE b>=179900 AND b<180000; SELECT count(*), avg(b) FROM t2 WHERE b>=180000 AND b<180100; SELECT count(*), avg(b) FROM t2 WHERE b>=180100 AND b<180200; SELECT count(*), avg(b) FROM t2 WHERE b>=180200 AND b<180300; SELECT count(*), avg(b) FROM t2 WHERE b>=180300 AND b<180400; SELECT count(*), avg(b) FROM t2 WHERE b>=180400 AND b<180500; SELECT count(*), avg(b) FROM t2 WHERE b>=180500 AND b<180600; SELECT count(*), avg(b) FROM t2 WHERE b>=180600 AND b<180700; SELECT count(*), avg(b) FROM t2 WHERE b>=180700 AND b<180800; SELECT count(*), avg(b) FROM t2 WHERE b>=180800 AND b<180900; SELECT count(*), avg(b) FROM t2 WHERE b>=180900 AND b<181000; SELECT count(*), avg(b) FROM t2 WHERE b>=181000 AND b<181100; SELECT count(*), avg(b) FROM t2 WHERE b>=181100 AND b<181200; SELECT count(*), avg(b) FROM t2 WHERE b>=181200 AND b<181300; SELECT count(*), avg(b) FROM t2 WHERE b>=181300 AND b<181400; SELECT count(*), avg(b) FROM t2 WHERE b>=181400 AND b<181500; SELECT count(*), avg(b) FROM t2 WHERE b>=181500 AND b<181600; SELECT count(*), avg(b) FROM t2 WHERE b>=181600 AND b<181700; SELECT count(*), avg(b) FROM t2 WHERE b>=181700 AND b<181800; SELECT count(*), avg(b) FROM t2 WHERE b>=181800 AND b<181900; SELECT count(*), avg(b) FROM t2 WHERE b>=181900 AND b<182000; SELECT count(*), avg(b) FROM t2 WHERE b>=182000 AND b<182100; SELECT count(*), avg(b) FROM t2 WHERE b>=182100 AND b<182200; SELECT count(*), avg(b) FROM t2 WHERE b>=182200 AND b<182300; SELECT count(*), avg(b) FROM t2 WHERE b>=182300 AND b<182400; SELECT count(*), avg(b) FROM t2 WHERE b>=182400 AND b<182500; SELECT count(*), avg(b) FROM t2 WHERE b>=182500 AND b<182600; SELECT count(*), avg(b) FROM t2 WHERE b>=182600 AND b<182700; SELECT count(*), avg(b) FROM t2 WHERE b>=182700 AND b<182800; SELECT count(*), avg(b) FROM t2 WHERE b>=182800 AND b<182900; SELECT count(*), avg(b) FROM t2 WHERE b>=182900 AND b<183000; SELECT count(*), avg(b) FROM t2 WHERE b>=183000 AND b<183100; SELECT count(*), avg(b) FROM t2 WHERE b>=183100 AND b<183200; SELECT count(*), avg(b) FROM t2 WHERE b>=183200 AND b<183300; SELECT count(*), avg(b) FROM t2 WHERE b>=183300 AND b<183400; SELECT count(*), avg(b) FROM t2 WHERE b>=183400 AND b<183500; SELECT count(*), avg(b) FROM t2 WHERE b>=183500 AND b<183600; SELECT count(*), avg(b) FROM t2 WHERE b>=183600 AND b<183700; SELECT count(*), avg(b) FROM t2 WHERE b>=183700 AND b<183800; SELECT count(*), avg(b) FROM t2 WHERE b>=183800 AND b<183900; SELECT count(*), avg(b) FROM t2 WHERE b>=183900 AND b<184000; SELECT count(*), avg(b) FROM t2 WHERE b>=184000 AND b<184100; SELECT count(*), avg(b) FROM t2 WHERE b>=184100 AND b<184200; SELECT count(*), avg(b) FROM t2 WHERE b>=184200 AND b<184300; SELECT count(*), avg(b) FROM t2 WHERE b>=184300 AND b<184400; SELECT count(*), avg(b) FROM t2 WHERE b>=184400 AND b<184500; SELECT count(*), avg(b) FROM t2 WHERE b>=184500 AND b<184600; SELECT count(*), avg(b) FROM t2 WHERE b>=184600 AND b<184700; SELECT count(*), avg(b) FROM t2 WHERE b>=184700 AND b<184800; SELECT count(*), avg(b) FROM t2 WHERE b>=184800 AND b<184900; SELECT count(*), avg(b) FROM t2 WHERE b>=184900 AND b<185000; SELECT count(*), avg(b) FROM t2 WHERE b>=185000 AND b<185100; SELECT count(*), avg(b) FROM t2 WHERE b>=185100 AND b<185200; SELECT count(*), avg(b) FROM t2 WHERE b>=185200 AND b<185300; SELECT count(*), avg(b) FROM t2 WHERE b>=185300 AND b<185400; SELECT count(*), avg(b) FROM t2 WHERE b>=185400 AND b<185500; SELECT count(*), avg(b) FROM t2 WHERE b>=185500 AND b<185600; SELECT count(*), avg(b) FROM t2 WHERE b>=185600 AND b<185700; SELECT count(*), avg(b) FROM t2 WHERE b>=185700 AND b<185800; SELECT count(*), avg(b) FROM t2 WHERE b>=185800 AND b<185900; SELECT count(*), avg(b) FROM t2 WHERE b>=185900 AND b<186000; SELECT count(*), avg(b) FROM t2 WHERE b>=186000 AND b<186100; SELECT count(*), avg(b) FROM t2 WHERE b>=186100 AND b<186200; SELECT count(*), avg(b) FROM t2 WHERE b>=186200 AND b<186300; SELECT count(*), avg(b) FROM t2 WHERE b>=186300 AND b<186400; SELECT count(*), avg(b) FROM t2 WHERE b>=186400 AND b<186500; SELECT count(*), avg(b) FROM t2 WHERE b>=186500 AND b<186600; SELECT count(*), avg(b) FROM t2 WHERE b>=186600 AND b<186700; SELECT count(*), avg(b) FROM t2 WHERE b>=186700 AND b<186800; SELECT count(*), avg(b) FROM t2 WHERE b>=186800 AND b<186900; SELECT count(*), avg(b) FROM t2 WHERE b>=186900 AND b<187000; SELECT count(*), avg(b) FROM t2 WHERE b>=187000 AND b<187100; SELECT count(*), avg(b) FROM t2 WHERE b>=187100 AND b<187200; SELECT count(*), avg(b) FROM t2 WHERE b>=187200 AND b<187300; SELECT count(*), avg(b) FROM t2 WHERE b>=187300 AND b<187400; SELECT count(*), avg(b) FROM t2 WHERE b>=187400 AND b<187500; SELECT count(*), avg(b) FROM t2 WHERE b>=187500 AND b<187600; SELECT count(*), avg(b) FROM t2 WHERE b>=187600 AND b<187700; SELECT count(*), avg(b) FROM t2 WHERE b>=187700 AND b<187800; SELECT count(*), avg(b) FROM t2 WHERE b>=187800 AND b<187900; SELECT count(*), avg(b) FROM t2 WHERE b>=187900 AND b<188000; SELECT count(*), avg(b) FROM t2 WHERE b>=188000 AND b<188100; SELECT count(*), avg(b) FROM t2 WHERE b>=188100 AND b<188200; SELECT count(*), avg(b) FROM t2 WHERE b>=188200 AND b<188300; SELECT count(*), avg(b) FROM t2 WHERE b>=188300 AND b<188400; SELECT count(*), avg(b) FROM t2 WHERE b>=188400 AND b<188500; SELECT count(*), avg(b) FROM t2 WHERE b>=188500 AND b<188600; SELECT count(*), avg(b) FROM t2 WHERE b>=188600 AND b<188700; SELECT count(*), avg(b) FROM t2 WHERE b>=188700 AND b<188800; SELECT count(*), avg(b) FROM t2 WHERE b>=188800 AND b<188900; SELECT count(*), avg(b) FROM t2 WHERE b>=188900 AND b<189000; SELECT count(*), avg(b) FROM t2 WHERE b>=189000 AND b<189100; SELECT count(*), avg(b) FROM t2 WHERE b>=189100 AND b<189200; SELECT count(*), avg(b) FROM t2 WHERE b>=189200 AND b<189300; SELECT count(*), avg(b) FROM t2 WHERE b>=189300 AND b<189400; SELECT count(*), avg(b) FROM t2 WHERE b>=189400 AND b<189500; SELECT count(*), avg(b) FROM t2 WHERE b>=189500 AND b<189600; SELECT count(*), avg(b) FROM t2 WHERE b>=189600 AND b<189700; SELECT count(*), avg(b) FROM t2 WHERE b>=189700 AND b<189800; SELECT count(*), avg(b) FROM t2 WHERE b>=189800 AND b<189900; SELECT count(*), avg(b) FROM t2 WHERE b>=189900 AND b<190000; SELECT count(*), avg(b) FROM t2 WHERE b>=190000 AND b<190100; SELECT count(*), avg(b) FROM t2 WHERE b>=190100 AND b<190200; SELECT count(*), avg(b) FROM t2 WHERE b>=190200 AND b<190300; SELECT count(*), avg(b) FROM t2 WHERE b>=190300 AND b<190400; SELECT count(*), avg(b) FROM t2 WHERE b>=190400 AND b<190500; SELECT count(*), avg(b) FROM t2 WHERE b>=190500 AND b<190600; SELECT count(*), avg(b) FROM t2 WHERE b>=190600 AND b<190700; SELECT count(*), avg(b) FROM t2 WHERE b>=190700 AND b<190800; SELECT count(*), avg(b) FROM t2 WHERE b>=190800 AND b<190900; SELECT count(*), avg(b) FROM t2 WHERE b>=190900 AND b<191000; SELECT count(*), avg(b) FROM t2 WHERE b>=191000 AND b<191100; SELECT count(*), avg(b) FROM t2 WHERE b>=191100 AND b<191200; SELECT count(*), avg(b) FROM t2 WHERE b>=191200 AND b<191300; SELECT count(*), avg(b) FROM t2 WHERE b>=191300 AND b<191400; SELECT count(*), avg(b) FROM t2 WHERE b>=191400 AND b<191500; SELECT count(*), avg(b) FROM t2 WHERE b>=191500 AND b<191600; SELECT count(*), avg(b) FROM t2 WHERE b>=191600 AND b<191700; SELECT count(*), avg(b) FROM t2 WHERE b>=191700 AND b<191800; SELECT count(*), avg(b) FROM t2 WHERE b>=191800 AND b<191900; SELECT count(*), avg(b) FROM t2 WHERE b>=191900 AND b<192000; SELECT count(*), avg(b) FROM t2 WHERE b>=192000 AND b<192100; SELECT count(*), avg(b) FROM t2 WHERE b>=192100 AND b<192200; SELECT count(*), avg(b) FROM t2 WHERE b>=192200 AND b<192300; SELECT count(*), avg(b) FROM t2 WHERE b>=192300 AND b<192400; SELECT count(*), avg(b) FROM t2 WHERE b>=192400 AND b<192500; SELECT count(*), avg(b) FROM t2 WHERE b>=192500 AND b<192600; SELECT count(*), avg(b) FROM t2 WHERE b>=192600 AND b<192700; SELECT count(*), avg(b) FROM t2 WHERE b>=192700 AND b<192800; SELECT count(*), avg(b) FROM t2 WHERE b>=192800 AND b<192900; SELECT count(*), avg(b) FROM t2 WHERE b>=192900 AND b<193000; SELECT count(*), avg(b) FROM t2 WHERE b>=193000 AND b<193100; SELECT count(*), avg(b) FROM t2 WHERE b>=193100 AND b<193200; SELECT count(*), avg(b) FROM t2 WHERE b>=193200 AND b<193300; SELECT count(*), avg(b) FROM t2 WHERE b>=193300 AND b<193400; SELECT count(*), avg(b) FROM t2 WHERE b>=193400 AND b<193500; SELECT count(*), avg(b) FROM t2 WHERE b>=193500 AND b<193600; SELECT count(*), avg(b) FROM t2 WHERE b>=193600 AND b<193700; SELECT count(*), avg(b) FROM t2 WHERE b>=193700 AND b<193800; SELECT count(*), avg(b) FROM t2 WHERE b>=193800 AND b<193900; SELECT count(*), avg(b) FROM t2 WHERE b>=193900 AND b<194000; SELECT count(*), avg(b) FROM t2 WHERE b>=194000 AND b<194100; SELECT count(*), avg(b) FROM t2 WHERE b>=194100 AND b<194200; SELECT count(*), avg(b) FROM t2 WHERE b>=194200 AND b<194300; SELECT count(*), avg(b) FROM t2 WHERE b>=194300 AND b<194400; SELECT count(*), avg(b) FROM t2 WHERE b>=194400 AND b<194500; SELECT count(*), avg(b) FROM t2 WHERE b>=194500 AND b<194600; SELECT count(*), avg(b) FROM t2 WHERE b>=194600 AND b<194700; SELECT count(*), avg(b) FROM t2 WHERE b>=194700 AND b<194800; SELECT count(*), avg(b) FROM t2 WHERE b>=194800 AND b<194900; SELECT count(*), avg(b) FROM t2 WHERE b>=194900 AND b<195000; SELECT count(*), avg(b) FROM t2 WHERE b>=195000 AND b<195100; SELECT count(*), avg(b) FROM t2 WHERE b>=195100 AND b<195200; SELECT count(*), avg(b) FROM t2 WHERE b>=195200 AND b<195300; SELECT count(*), avg(b) FROM t2 WHERE b>=195300 AND b<195400; SELECT count(*), avg(b) FROM t2 WHERE b>=195400 AND b<195500; SELECT count(*), avg(b) FROM t2 WHERE b>=195500 AND b<195600; SELECT count(*), avg(b) FROM t2 WHERE b>=195600 AND b<195700; SELECT count(*), avg(b) FROM t2 WHERE b>=195700 AND b<195800; SELECT count(*), avg(b) FROM t2 WHERE b>=195800 AND b<195900; SELECT count(*), avg(b) FROM t2 WHERE b>=195900 AND b<196000; SELECT count(*), avg(b) FROM t2 WHERE b>=196000 AND b<196100; SELECT count(*), avg(b) FROM t2 WHERE b>=196100 AND b<196200; SELECT count(*), avg(b) FROM t2 WHERE b>=196200 AND b<196300; SELECT count(*), avg(b) FROM t2 WHERE b>=196300 AND b<196400; SELECT count(*), avg(b) FROM t2 WHERE b>=196400 AND b<196500; SELECT count(*), avg(b) FROM t2 WHERE b>=196500 AND b<196600; SELECT count(*), avg(b) FROM t2 WHERE b>=196600 AND b<196700; SELECT count(*), avg(b) FROM t2 WHERE b>=196700 AND b<196800; SELECT count(*), avg(b) FROM t2 WHERE b>=196800 AND b<196900; SELECT count(*), avg(b) FROM t2 WHERE b>=196900 AND b<197000; SELECT count(*), avg(b) FROM t2 WHERE b>=197000 AND b<197100; SELECT count(*), avg(b) FROM t2 WHERE b>=197100 AND b<197200; SELECT count(*), avg(b) FROM t2 WHERE b>=197200 AND b<197300; SELECT count(*), avg(b) FROM t2 WHERE b>=197300 AND b<197400; SELECT count(*), avg(b) FROM t2 WHERE b>=197400 AND b<197500; SELECT count(*), avg(b) FROM t2 WHERE b>=197500 AND b<197600; SELECT count(*), avg(b) FROM t2 WHERE b>=197600 AND b<197700; SELECT count(*), avg(b) FROM t2 WHERE b>=197700 AND b<197800; SELECT count(*), avg(b) FROM t2 WHERE b>=197800 AND b<197900; SELECT count(*), avg(b) FROM t2 WHERE b>=197900 AND b<198000; SELECT count(*), avg(b) FROM t2 WHERE b>=198000 AND b<198100; SELECT count(*), avg(b) FROM t2 WHERE b>=198100 AND b<198200; SELECT count(*), avg(b) FROM t2 WHERE b>=198200 AND b<198300; SELECT count(*), avg(b) FROM t2 WHERE b>=198300 AND b<198400; SELECT count(*), avg(b) FROM t2 WHERE b>=198400 AND b<198500; SELECT count(*), avg(b) FROM t2 WHERE b>=198500 AND b<198600; SELECT count(*), avg(b) FROM t2 WHERE b>=198600 AND b<198700; SELECT count(*), avg(b) FROM t2 WHERE b>=198700 AND b<198800; SELECT count(*), avg(b) FROM t2 WHERE b>=198800 AND b<198900; SELECT count(*), avg(b) FROM t2 WHERE b>=198900 AND b<199000; SELECT count(*), avg(b) FROM t2 WHERE b>=199000 AND b<199100; SELECT count(*), avg(b) FROM t2 WHERE b>=199100 AND b<199200; SELECT count(*), avg(b) FROM t2 WHERE b>=199200 AND b<199300; SELECT count(*), avg(b) FROM t2 WHERE b>=199300 AND b<199400; SELECT count(*), avg(b) FROM t2 WHERE b>=199400 AND b<199500; SELECT count(*), avg(b) FROM t2 WHERE b>=199500 AND b<199600; SELECT count(*), avg(b) FROM t2 WHERE b>=199600 AND b<199700; SELECT count(*), avg(b) FROM t2 WHERE b>=199700 AND b<199800; SELECT count(*), avg(b) FROM t2 WHERE b>=199800 AND b<199900; SELECT count(*), avg(b) FROM t2 WHERE b>=199900 AND b<200000; SELECT count(*), avg(b) FROM t2 WHERE b>=200000 AND b<200100; SELECT count(*), avg(b) FROM t2 WHERE b>=200100 AND b<200200; SELECT count(*), avg(b) FROM t2 WHERE b>=200200 AND b<200300; SELECT count(*), avg(b) FROM t2 WHERE b>=200300 AND b<200400; SELECT count(*), avg(b) FROM t2 WHERE b>=200400 AND b<200500; SELECT count(*), avg(b) FROM t2 WHERE b>=200500 AND b<200600; SELECT count(*), avg(b) FROM t2 WHERE b>=200600 AND b<200700; SELECT count(*), avg(b) FROM t2 WHERE b>=200700 AND b<200800; SELECT count(*), avg(b) FROM t2 WHERE b>=200800 AND b<200900; SELECT count(*), avg(b) FROM t2 WHERE b>=200900 AND b<201000; SELECT count(*), avg(b) FROM t2 WHERE b>=201000 AND b<201100; SELECT count(*), avg(b) FROM t2 WHERE b>=201100 AND b<201200; SELECT count(*), avg(b) FROM t2 WHERE b>=201200 AND b<201300; SELECT count(*), avg(b) FROM t2 WHERE b>=201300 AND b<201400; SELECT count(*), avg(b) FROM t2 WHERE b>=201400 AND b<201500; SELECT count(*), avg(b) FROM t2 WHERE b>=201500 AND b<201600; SELECT count(*), avg(b) FROM t2 WHERE b>=201600 AND b<201700; SELECT count(*), avg(b) FROM t2 WHERE b>=201700 AND b<201800; SELECT count(*), avg(b) FROM t2 WHERE b>=201800 AND b<201900; SELECT count(*), avg(b) FROM t2 WHERE b>=201900 AND b<202000; SELECT count(*), avg(b) FROM t2 WHERE b>=202000 AND b<202100; SELECT count(*), avg(b) FROM t2 WHERE b>=202100 AND b<202200; SELECT count(*), avg(b) FROM t2 WHERE b>=202200 AND b<202300; SELECT count(*), avg(b) FROM t2 WHERE b>=202300 AND b<202400; SELECT count(*), avg(b) FROM t2 WHERE b>=202400 AND b<202500; SELECT count(*), avg(b) FROM t2 WHERE b>=202500 AND b<202600; SELECT count(*), avg(b) FROM t2 WHERE b>=202600 AND b<202700; SELECT count(*), avg(b) FROM t2 WHERE b>=202700 AND b<202800; SELECT count(*), avg(b) FROM t2 WHERE b>=202800 AND b<202900; SELECT count(*), avg(b) FROM t2 WHERE b>=202900 AND b<203000; SELECT count(*), avg(b) FROM t2 WHERE b>=203000 AND b<203100; SELECT count(*), avg(b) FROM t2 WHERE b>=203100 AND b<203200; SELECT count(*), avg(b) FROM t2 WHERE b>=203200 AND b<203300; SELECT count(*), avg(b) FROM t2 WHERE b>=203300 AND b<203400; SELECT count(*), avg(b) FROM t2 WHERE b>=203400 AND b<203500; SELECT count(*), avg(b) FROM t2 WHERE b>=203500 AND b<203600; SELECT count(*), avg(b) FROM t2 WHERE b>=203600 AND b<203700; SELECT count(*), avg(b) FROM t2 WHERE b>=203700 AND b<203800; SELECT count(*), avg(b) FROM t2 WHERE b>=203800 AND b<203900; SELECT count(*), avg(b) FROM t2 WHERE b>=203900 AND b<204000; SELECT count(*), avg(b) FROM t2 WHERE b>=204000 AND b<204100; SELECT count(*), avg(b) FROM t2 WHERE b>=204100 AND b<204200; SELECT count(*), avg(b) FROM t2 WHERE b>=204200 AND b<204300; SELECT count(*), avg(b) FROM t2 WHERE b>=204300 AND b<204400; SELECT count(*), avg(b) FROM t2 WHERE b>=204400 AND b<204500; SELECT count(*), avg(b) FROM t2 WHERE b>=204500 AND b<204600; SELECT count(*), avg(b) FROM t2 WHERE b>=204600 AND b<204700; SELECT count(*), avg(b) FROM t2 WHERE b>=204700 AND b<204800; SELECT count(*), avg(b) FROM t2 WHERE b>=204800 AND b<204900; SELECT count(*), avg(b) FROM t2 WHERE b>=204900 AND b<205000; SELECT count(*), avg(b) FROM t2 WHERE b>=205000 AND b<205100; SELECT count(*), avg(b) FROM t2 WHERE b>=205100 AND b<205200; SELECT count(*), avg(b) FROM t2 WHERE b>=205200 AND b<205300; SELECT count(*), avg(b) FROM t2 WHERE b>=205300 AND b<205400; SELECT count(*), avg(b) FROM t2 WHERE b>=205400 AND b<205500; SELECT count(*), avg(b) FROM t2 WHERE b>=205500 AND b<205600; SELECT count(*), avg(b) FROM t2 WHERE b>=205600 AND b<205700; SELECT count(*), avg(b) FROM t2 WHERE b>=205700 AND b<205800; SELECT count(*), avg(b) FROM t2 WHERE b>=205800 AND b<205900; SELECT count(*), avg(b) FROM t2 WHERE b>=205900 AND b<206000; SELECT count(*), avg(b) FROM t2 WHERE b>=206000 AND b<206100; SELECT count(*), avg(b) FROM t2 WHERE b>=206100 AND b<206200; SELECT count(*), avg(b) FROM t2 WHERE b>=206200 AND b<206300; SELECT count(*), avg(b) FROM t2 WHERE b>=206300 AND b<206400; SELECT count(*), avg(b) FROM t2 WHERE b>=206400 AND b<206500; SELECT count(*), avg(b) FROM t2 WHERE b>=206500 AND b<206600; SELECT count(*), avg(b) FROM t2 WHERE b>=206600 AND b<206700; SELECT count(*), avg(b) FROM t2 WHERE b>=206700 AND b<206800; SELECT count(*), avg(b) FROM t2 WHERE b>=206800 AND b<206900; SELECT count(*), avg(b) FROM t2 WHERE b>=206900 AND b<207000; SELECT count(*), avg(b) FROM t2 WHERE b>=207000 AND b<207100; SELECT count(*), avg(b) FROM t2 WHERE b>=207100 AND b<207200; SELECT count(*), avg(b) FROM t2 WHERE b>=207200 AND b<207300; SELECT count(*), avg(b) FROM t2 WHERE b>=207300 AND b<207400; SELECT count(*), avg(b) FROM t2 WHERE b>=207400 AND b<207500; SELECT count(*), avg(b) FROM t2 WHERE b>=207500 AND b<207600; SELECT count(*), avg(b) FROM t2 WHERE b>=207600 AND b<207700; SELECT count(*), avg(b) FROM t2 WHERE b>=207700 AND b<207800; SELECT count(*), avg(b) FROM t2 WHERE b>=207800 AND b<207900; SELECT count(*), avg(b) FROM t2 WHERE b>=207900 AND b<208000; SELECT count(*), avg(b) FROM t2 WHERE b>=208000 AND b<208100; SELECT count(*), avg(b) FROM t2 WHERE b>=208100 AND b<208200; SELECT count(*), avg(b) FROM t2 WHERE b>=208200 AND b<208300; SELECT count(*), avg(b) FROM t2 WHERE b>=208300 AND b<208400; SELECT count(*), avg(b) FROM t2 WHERE b>=208400 AND b<208500; SELECT count(*), avg(b) FROM t2 WHERE b>=208500 AND b<208600; SELECT count(*), avg(b) FROM t2 WHERE b>=208600 AND b<208700; SELECT count(*), avg(b) FROM t2 WHERE b>=208700 AND b<208800; SELECT count(*), avg(b) FROM t2 WHERE b>=208800 AND b<208900; SELECT count(*), avg(b) FROM t2 WHERE b>=208900 AND b<209000; SELECT count(*), avg(b) FROM t2 WHERE b>=209000 AND b<209100; SELECT count(*), avg(b) FROM t2 WHERE b>=209100 AND b<209200; SELECT count(*), avg(b) FROM t2 WHERE b>=209200 AND b<209300; SELECT count(*), avg(b) FROM t2 WHERE b>=209300 AND b<209400; SELECT count(*), avg(b) FROM t2 WHERE b>=209400 AND b<209500; SELECT count(*), avg(b) FROM t2 WHERE b>=209500 AND b<209600; SELECT count(*), avg(b) FROM t2 WHERE b>=209600 AND b<209700; SELECT count(*), avg(b) FROM t2 WHERE b>=209700 AND b<209800; SELECT count(*), avg(b) FROM t2 WHERE b>=209800 AND b<209900; SELECT count(*), avg(b) FROM t2 WHERE b>=209900 AND b<210000; SELECT count(*), avg(b) FROM t2 WHERE b>=210000 AND b<210100; SELECT count(*), avg(b) FROM t2 WHERE b>=210100 AND b<210200; SELECT count(*), avg(b) FROM t2 WHERE b>=210200 AND b<210300; SELECT count(*), avg(b) FROM t2 WHERE b>=210300 AND b<210400; SELECT count(*), avg(b) FROM t2 WHERE b>=210400 AND b<210500; SELECT count(*), avg(b) FROM t2 WHERE b>=210500 AND b<210600; SELECT count(*), avg(b) FROM t2 WHERE b>=210600 AND b<210700; SELECT count(*), avg(b) FROM t2 WHERE b>=210700 AND b<210800; SELECT count(*), avg(b) FROM t2 WHERE b>=210800 AND b<210900; SELECT count(*), avg(b) FROM t2 WHERE b>=210900 AND b<211000; SELECT count(*), avg(b) FROM t2 WHERE b>=211000 AND b<211100; SELECT count(*), avg(b) FROM t2 WHERE b>=211100 AND b<211200; SELECT count(*), avg(b) FROM t2 WHERE b>=211200 AND b<211300; SELECT count(*), avg(b) FROM t2 WHERE b>=211300 AND b<211400; SELECT count(*), avg(b) FROM t2 WHERE b>=211400 AND b<211500; SELECT count(*), avg(b) FROM t2 WHERE b>=211500 AND b<211600; SELECT count(*), avg(b) FROM t2 WHERE b>=211600 AND b<211700; SELECT count(*), avg(b) FROM t2 WHERE b>=211700 AND b<211800; SELECT count(*), avg(b) FROM t2 WHERE b>=211800 AND b<211900; SELECT count(*), avg(b) FROM t2 WHERE b>=211900 AND b<212000; SELECT count(*), avg(b) FROM t2 WHERE b>=212000 AND b<212100; SELECT count(*), avg(b) FROM t2 WHERE b>=212100 AND b<212200; SELECT count(*), avg(b) FROM t2 WHERE b>=212200 AND b<212300; SELECT count(*), avg(b) FROM t2 WHERE b>=212300 AND b<212400; SELECT count(*), avg(b) FROM t2 WHERE b>=212400 AND b<212500; SELECT count(*), avg(b) FROM t2 WHERE b>=212500 AND b<212600; SELECT count(*), avg(b) FROM t2 WHERE b>=212600 AND b<212700; SELECT count(*), avg(b) FROM t2 WHERE b>=212700 AND b<212800; SELECT count(*), avg(b) FROM t2 WHERE b>=212800 AND b<212900; SELECT count(*), avg(b) FROM t2 WHERE b>=212900 AND b<213000; SELECT count(*), avg(b) FROM t2 WHERE b>=213000 AND b<213100; SELECT count(*), avg(b) FROM t2 WHERE b>=213100 AND b<213200; SELECT count(*), avg(b) FROM t2 WHERE b>=213200 AND b<213300; SELECT count(*), avg(b) FROM t2 WHERE b>=213300 AND b<213400; SELECT count(*), avg(b) FROM t2 WHERE b>=213400 AND b<213500; SELECT count(*), avg(b) FROM t2 WHERE b>=213500 AND b<213600; SELECT count(*), avg(b) FROM t2 WHERE b>=213600 AND b<213700; SELECT count(*), avg(b) FROM t2 WHERE b>=213700 AND b<213800; SELECT count(*), avg(b) FROM t2 WHERE b>=213800 AND b<213900; SELECT count(*), avg(b) FROM t2 WHERE b>=213900 AND b<214000; SELECT count(*), avg(b) FROM t2 WHERE b>=214000 AND b<214100; SELECT count(*), avg(b) FROM t2 WHERE b>=214100 AND b<214200; SELECT count(*), avg(b) FROM t2 WHERE b>=214200 AND b<214300; SELECT count(*), avg(b) FROM t2 WHERE b>=214300 AND b<214400; SELECT count(*), avg(b) FROM t2 WHERE b>=214400 AND b<214500; SELECT count(*), avg(b) FROM t2 WHERE b>=214500 AND b<214600; SELECT count(*), avg(b) FROM t2 WHERE b>=214600 AND b<214700; SELECT count(*), avg(b) FROM t2 WHERE b>=214700 AND b<214800; SELECT count(*), avg(b) FROM t2 WHERE b>=214800 AND b<214900; SELECT count(*), avg(b) FROM t2 WHERE b>=214900 AND b<215000; SELECT count(*), avg(b) FROM t2 WHERE b>=215000 AND b<215100; SELECT count(*), avg(b) FROM t2 WHERE b>=215100 AND b<215200; SELECT count(*), avg(b) FROM t2 WHERE b>=215200 AND b<215300; SELECT count(*), avg(b) FROM t2 WHERE b>=215300 AND b<215400; SELECT count(*), avg(b) FROM t2 WHERE b>=215400 AND b<215500; SELECT count(*), avg(b) FROM t2 WHERE b>=215500 AND b<215600; SELECT count(*), avg(b) FROM t2 WHERE b>=215600 AND b<215700; SELECT count(*), avg(b) FROM t2 WHERE b>=215700 AND b<215800; SELECT count(*), avg(b) FROM t2 WHERE b>=215800 AND b<215900; SELECT count(*), avg(b) FROM t2 WHERE b>=215900 AND b<216000; SELECT count(*), avg(b) FROM t2 WHERE b>=216000 AND b<216100; SELECT count(*), avg(b) FROM t2 WHERE b>=216100 AND b<216200; SELECT count(*), avg(b) FROM t2 WHERE b>=216200 AND b<216300; SELECT count(*), avg(b) FROM t2 WHERE b>=216300 AND b<216400; SELECT count(*), avg(b) FROM t2 WHERE b>=216400 AND b<216500; SELECT count(*), avg(b) FROM t2 WHERE b>=216500 AND b<216600; SELECT count(*), avg(b) FROM t2 WHERE b>=216600 AND b<216700; SELECT count(*), avg(b) FROM t2 WHERE b>=216700 AND b<216800; SELECT count(*), avg(b) FROM t2 WHERE b>=216800 AND b<216900; SELECT count(*), avg(b) FROM t2 WHERE b>=216900 AND b<217000; SELECT count(*), avg(b) FROM t2 WHERE b>=217000 AND b<217100; SELECT count(*), avg(b) FROM t2 WHERE b>=217100 AND b<217200; SELECT count(*), avg(b) FROM t2 WHERE b>=217200 AND b<217300; SELECT count(*), avg(b) FROM t2 WHERE b>=217300 AND b<217400; SELECT count(*), avg(b) FROM t2 WHERE b>=217400 AND b<217500; SELECT count(*), avg(b) FROM t2 WHERE b>=217500 AND b<217600; SELECT count(*), avg(b) FROM t2 WHERE b>=217600 AND b<217700; SELECT count(*), avg(b) FROM t2 WHERE b>=217700 AND b<217800; SELECT count(*), avg(b) FROM t2 WHERE b>=217800 AND b<217900; SELECT count(*), avg(b) FROM t2 WHERE b>=217900 AND b<218000; SELECT count(*), avg(b) FROM t2 WHERE b>=218000 AND b<218100; SELECT count(*), avg(b) FROM t2 WHERE b>=218100 AND b<218200; SELECT count(*), avg(b) FROM t2 WHERE b>=218200 AND b<218300; SELECT count(*), avg(b) FROM t2 WHERE b>=218300 AND b<218400; SELECT count(*), avg(b) FROM t2 WHERE b>=218400 AND b<218500; SELECT count(*), avg(b) FROM t2 WHERE b>=218500 AND b<218600; SELECT count(*), avg(b) FROM t2 WHERE b>=218600 AND b<218700; SELECT count(*), avg(b) FROM t2 WHERE b>=218700 AND b<218800; SELECT count(*), avg(b) FROM t2 WHERE b>=218800 AND b<218900; SELECT count(*), avg(b) FROM t2 WHERE b>=218900 AND b<219000; SELECT count(*), avg(b) FROM t2 WHERE b>=219000 AND b<219100; SELECT count(*), avg(b) FROM t2 WHERE b>=219100 AND b<219200; SELECT count(*), avg(b) FROM t2 WHERE b>=219200 AND b<219300; SELECT count(*), avg(b) FROM t2 WHERE b>=219300 AND b<219400; SELECT count(*), avg(b) FROM t2 WHERE b>=219400 AND b<219500; SELECT count(*), avg(b) FROM t2 WHERE b>=219500 AND b<219600; SELECT count(*), avg(b) FROM t2 WHERE b>=219600 AND b<219700; SELECT count(*), avg(b) FROM t2 WHERE b>=219700 AND b<219800; SELECT count(*), avg(b) FROM t2 WHERE b>=219800 AND b<219900; SELECT count(*), avg(b) FROM t2 WHERE b>=219900 AND b<220000; SELECT count(*), avg(b) FROM t2 WHERE b>=220000 AND b<220100; SELECT count(*), avg(b) FROM t2 WHERE b>=220100 AND b<220200; SELECT count(*), avg(b) FROM t2 WHERE b>=220200 AND b<220300; SELECT count(*), avg(b) FROM t2 WHERE b>=220300 AND b<220400; SELECT count(*), avg(b) FROM t2 WHERE b>=220400 AND b<220500; SELECT count(*), avg(b) FROM t2 WHERE b>=220500 AND b<220600; SELECT count(*), avg(b) FROM t2 WHERE b>=220600 AND b<220700; SELECT count(*), avg(b) FROM t2 WHERE b>=220700 AND b<220800; SELECT count(*), avg(b) FROM t2 WHERE b>=220800 AND b<220900; SELECT count(*), avg(b) FROM t2 WHERE b>=220900 AND b<221000; SELECT count(*), avg(b) FROM t2 WHERE b>=221000 AND b<221100; SELECT count(*), avg(b) FROM t2 WHERE b>=221100 AND b<221200; SELECT count(*), avg(b) FROM t2 WHERE b>=221200 AND b<221300; SELECT count(*), avg(b) FROM t2 WHERE b>=221300 AND b<221400; SELECT count(*), avg(b) FROM t2 WHERE b>=221400 AND b<221500; SELECT count(*), avg(b) FROM t2 WHERE b>=221500 AND b<221600; SELECT count(*), avg(b) FROM t2 WHERE b>=221600 AND b<221700; SELECT count(*), avg(b) FROM t2 WHERE b>=221700 AND b<221800; SELECT count(*), avg(b) FROM t2 WHERE b>=221800 AND b<221900; SELECT count(*), avg(b) FROM t2 WHERE b>=221900 AND b<222000; SELECT count(*), avg(b) FROM t2 WHERE b>=222000 AND b<222100; SELECT count(*), avg(b) FROM t2 WHERE b>=222100 AND b<222200; SELECT count(*), avg(b) FROM t2 WHERE b>=222200 AND b<222300; SELECT count(*), avg(b) FROM t2 WHERE b>=222300 AND b<222400; SELECT count(*), avg(b) FROM t2 WHERE b>=222400 AND b<222500; SELECT count(*), avg(b) FROM t2 WHERE b>=222500 AND b<222600; SELECT count(*), avg(b) FROM t2 WHERE b>=222600 AND b<222700; SELECT count(*), avg(b) FROM t2 WHERE b>=222700 AND b<222800; SELECT count(*), avg(b) FROM t2 WHERE b>=222800 AND b<222900; SELECT count(*), avg(b) FROM t2 WHERE b>=222900 AND b<223000; SELECT count(*), avg(b) FROM t2 WHERE b>=223000 AND b<223100; SELECT count(*), avg(b) FROM t2 WHERE b>=223100 AND b<223200; SELECT count(*), avg(b) FROM t2 WHERE b>=223200 AND b<223300; SELECT count(*), avg(b) FROM t2 WHERE b>=223300 AND b<223400; SELECT count(*), avg(b) FROM t2 WHERE b>=223400 AND b<223500; SELECT count(*), avg(b) FROM t2 WHERE b>=223500 AND b<223600; SELECT count(*), avg(b) FROM t2 WHERE b>=223600 AND b<223700; SELECT count(*), avg(b) FROM t2 WHERE b>=223700 AND b<223800; SELECT count(*), avg(b) FROM t2 WHERE b>=223800 AND b<223900; SELECT count(*), avg(b) FROM t2 WHERE b>=223900 AND b<224000; SELECT count(*), avg(b) FROM t2 WHERE b>=224000 AND b<224100; SELECT count(*), avg(b) FROM t2 WHERE b>=224100 AND b<224200; SELECT count(*), avg(b) FROM t2 WHERE b>=224200 AND b<224300; SELECT count(*), avg(b) FROM t2 WHERE b>=224300 AND b<224400; SELECT count(*), avg(b) FROM t2 WHERE b>=224400 AND b<224500; SELECT count(*), avg(b) FROM t2 WHERE b>=224500 AND b<224600; SELECT count(*), avg(b) FROM t2 WHERE b>=224600 AND b<224700; SELECT count(*), avg(b) FROM t2 WHERE b>=224700 AND b<224800; SELECT count(*), avg(b) FROM t2 WHERE b>=224800 AND b<224900; SELECT count(*), avg(b) FROM t2 WHERE b>=224900 AND b<225000; SELECT count(*), avg(b) FROM t2 WHERE b>=225000 AND b<225100; SELECT count(*), avg(b) FROM t2 WHERE b>=225100 AND b<225200; SELECT count(*), avg(b) FROM t2 WHERE b>=225200 AND b<225300; SELECT count(*), avg(b) FROM t2 WHERE b>=225300 AND b<225400; SELECT count(*), avg(b) FROM t2 WHERE b>=225400 AND b<225500; SELECT count(*), avg(b) FROM t2 WHERE b>=225500 AND b<225600; SELECT count(*), avg(b) FROM t2 WHERE b>=225600 AND b<225700; SELECT count(*), avg(b) FROM t2 WHERE b>=225700 AND b<225800; SELECT count(*), avg(b) FROM t2 WHERE b>=225800 AND b<225900; SELECT count(*), avg(b) FROM t2 WHERE b>=225900 AND b<226000; SELECT count(*), avg(b) FROM t2 WHERE b>=226000 AND b<226100; SELECT count(*), avg(b) FROM t2 WHERE b>=226100 AND b<226200; SELECT count(*), avg(b) FROM t2 WHERE b>=226200 AND b<226300; SELECT count(*), avg(b) FROM t2 WHERE b>=226300 AND b<226400; SELECT count(*), avg(b) FROM t2 WHERE b>=226400 AND b<226500; SELECT count(*), avg(b) FROM t2 WHERE b>=226500 AND b<226600; SELECT count(*), avg(b) FROM t2 WHERE b>=226600 AND b<226700; SELECT count(*), avg(b) FROM t2 WHERE b>=226700 AND b<226800; SELECT count(*), avg(b) FROM t2 WHERE b>=226800 AND b<226900; SELECT count(*), avg(b) FROM t2 WHERE b>=226900 AND b<227000; SELECT count(*), avg(b) FROM t2 WHERE b>=227000 AND b<227100; SELECT count(*), avg(b) FROM t2 WHERE b>=227100 AND b<227200; SELECT count(*), avg(b) FROM t2 WHERE b>=227200 AND b<227300; SELECT count(*), avg(b) FROM t2 WHERE b>=227300 AND b<227400; SELECT count(*), avg(b) FROM t2 WHERE b>=227400 AND b<227500; SELECT count(*), avg(b) FROM t2 WHERE b>=227500 AND b<227600; SELECT count(*), avg(b) FROM t2 WHERE b>=227600 AND b<227700; SELECT count(*), avg(b) FROM t2 WHERE b>=227700 AND b<227800; SELECT count(*), avg(b) FROM t2 WHERE b>=227800 AND b<227900; SELECT count(*), avg(b) FROM t2 WHERE b>=227900 AND b<228000; SELECT count(*), avg(b) FROM t2 WHERE b>=228000 AND b<228100; SELECT count(*), avg(b) FROM t2 WHERE b>=228100 AND b<228200; SELECT count(*), avg(b) FROM t2 WHERE b>=228200 AND b<228300; SELECT count(*), avg(b) FROM t2 WHERE b>=228300 AND b<228400; SELECT count(*), avg(b) FROM t2 WHERE b>=228400 AND b<228500; SELECT count(*), avg(b) FROM t2 WHERE b>=228500 AND b<228600; SELECT count(*), avg(b) FROM t2 WHERE b>=228600 AND b<228700; SELECT count(*), avg(b) FROM t2 WHERE b>=228700 AND b<228800; SELECT count(*), avg(b) FROM t2 WHERE b>=228800 AND b<228900; SELECT count(*), avg(b) FROM t2 WHERE b>=228900 AND b<229000; SELECT count(*), avg(b) FROM t2 WHERE b>=229000 AND b<229100; SELECT count(*), avg(b) FROM t2 WHERE b>=229100 AND b<229200; SELECT count(*), avg(b) FROM t2 WHERE b>=229200 AND b<229300; SELECT count(*), avg(b) FROM t2 WHERE b>=229300 AND b<229400; SELECT count(*), avg(b) FROM t2 WHERE b>=229400 AND b<229500; SELECT count(*), avg(b) FROM t2 WHERE b>=229500 AND b<229600; SELECT count(*), avg(b) FROM t2 WHERE b>=229600 AND b<229700; SELECT count(*), avg(b) FROM t2 WHERE b>=229700 AND b<229800; SELECT count(*), avg(b) FROM t2 WHERE b>=229800 AND b<229900; SELECT count(*), avg(b) FROM t2 WHERE b>=229900 AND b<230000; SELECT count(*), avg(b) FROM t2 WHERE b>=230000 AND b<230100; SELECT count(*), avg(b) FROM t2 WHERE b>=230100 AND b<230200; SELECT count(*), avg(b) FROM t2 WHERE b>=230200 AND b<230300; SELECT count(*), avg(b) FROM t2 WHERE b>=230300 AND b<230400; SELECT count(*), avg(b) FROM t2 WHERE b>=230400 AND b<230500; SELECT count(*), avg(b) FROM t2 WHERE b>=230500 AND b<230600; SELECT count(*), avg(b) FROM t2 WHERE b>=230600 AND b<230700; SELECT count(*), avg(b) FROM t2 WHERE b>=230700 AND b<230800; SELECT count(*), avg(b) FROM t2 WHERE b>=230800 AND b<230900; SELECT count(*), avg(b) FROM t2 WHERE b>=230900 AND b<231000; SELECT count(*), avg(b) FROM t2 WHERE b>=231000 AND b<231100; SELECT count(*), avg(b) FROM t2 WHERE b>=231100 AND b<231200; SELECT count(*), avg(b) FROM t2 WHERE b>=231200 AND b<231300; SELECT count(*), avg(b) FROM t2 WHERE b>=231300 AND b<231400; SELECT count(*), avg(b) FROM t2 WHERE b>=231400 AND b<231500; SELECT count(*), avg(b) FROM t2 WHERE b>=231500 AND b<231600; SELECT count(*), avg(b) FROM t2 WHERE b>=231600 AND b<231700; SELECT count(*), avg(b) FROM t2 WHERE b>=231700 AND b<231800; SELECT count(*), avg(b) FROM t2 WHERE b>=231800 AND b<231900; SELECT count(*), avg(b) FROM t2 WHERE b>=231900 AND b<232000; SELECT count(*), avg(b) FROM t2 WHERE b>=232000 AND b<232100; SELECT count(*), avg(b) FROM t2 WHERE b>=232100 AND b<232200; SELECT count(*), avg(b) FROM t2 WHERE b>=232200 AND b<232300; SELECT count(*), avg(b) FROM t2 WHERE b>=232300 AND b<232400; SELECT count(*), avg(b) FROM t2 WHERE b>=232400 AND b<232500; SELECT count(*), avg(b) FROM t2 WHERE b>=232500 AND b<232600; SELECT count(*), avg(b) FROM t2 WHERE b>=232600 AND b<232700; SELECT count(*), avg(b) FROM t2 WHERE b>=232700 AND b<232800; SELECT count(*), avg(b) FROM t2 WHERE b>=232800 AND b<232900; SELECT count(*), avg(b) FROM t2 WHERE b>=232900 AND b<233000; SELECT count(*), avg(b) FROM t2 WHERE b>=233000 AND b<233100; SELECT count(*), avg(b) FROM t2 WHERE b>=233100 AND b<233200; SELECT count(*), avg(b) FROM t2 WHERE b>=233200 AND b<233300; SELECT count(*), avg(b) FROM t2 WHERE b>=233300 AND b<233400; SELECT count(*), avg(b) FROM t2 WHERE b>=233400 AND b<233500; SELECT count(*), avg(b) FROM t2 WHERE b>=233500 AND b<233600; SELECT count(*), avg(b) FROM t2 WHERE b>=233600 AND b<233700; SELECT count(*), avg(b) FROM t2 WHERE b>=233700 AND b<233800; SELECT count(*), avg(b) FROM t2 WHERE b>=233800 AND b<233900; SELECT count(*), avg(b) FROM t2 WHERE b>=233900 AND b<234000; SELECT count(*), avg(b) FROM t2 WHERE b>=234000 AND b<234100; SELECT count(*), avg(b) FROM t2 WHERE b>=234100 AND b<234200; SELECT count(*), avg(b) FROM t2 WHERE b>=234200 AND b<234300; SELECT count(*), avg(b) FROM t2 WHERE b>=234300 AND b<234400; SELECT count(*), avg(b) FROM t2 WHERE b>=234400 AND b<234500; SELECT count(*), avg(b) FROM t2 WHERE b>=234500 AND b<234600; SELECT count(*), avg(b) FROM t2 WHERE b>=234600 AND b<234700; SELECT count(*), avg(b) FROM t2 WHERE b>=234700 AND b<234800; SELECT count(*), avg(b) FROM t2 WHERE b>=234800 AND b<234900; SELECT count(*), avg(b) FROM t2 WHERE b>=234900 AND b<235000; SELECT count(*), avg(b) FROM t2 WHERE b>=235000 AND b<235100; SELECT count(*), avg(b) FROM t2 WHERE b>=235100 AND b<235200; SELECT count(*), avg(b) FROM t2 WHERE b>=235200 AND b<235300; SELECT count(*), avg(b) FROM t2 WHERE b>=235300 AND b<235400; SELECT count(*), avg(b) FROM t2 WHERE b>=235400 AND b<235500; SELECT count(*), avg(b) FROM t2 WHERE b>=235500 AND b<235600; SELECT count(*), avg(b) FROM t2 WHERE b>=235600 AND b<235700; SELECT count(*), avg(b) FROM t2 WHERE b>=235700 AND b<235800; SELECT count(*), avg(b) FROM t2 WHERE b>=235800 AND b<235900; SELECT count(*), avg(b) FROM t2 WHERE b>=235900 AND b<236000; SELECT count(*), avg(b) FROM t2 WHERE b>=236000 AND b<236100; SELECT count(*), avg(b) FROM t2 WHERE b>=236100 AND b<236200; SELECT count(*), avg(b) FROM t2 WHERE b>=236200 AND b<236300; SELECT count(*), avg(b) FROM t2 WHERE b>=236300 AND b<236400; SELECT count(*), avg(b) FROM t2 WHERE b>=236400 AND b<236500; SELECT count(*), avg(b) FROM t2 WHERE b>=236500 AND b<236600; SELECT count(*), avg(b) FROM t2 WHERE b>=236600 AND b<236700; SELECT count(*), avg(b) FROM t2 WHERE b>=236700 AND b<236800; SELECT count(*), avg(b) FROM t2 WHERE b>=236800 AND b<236900; SELECT count(*), avg(b) FROM t2 WHERE b>=236900 AND b<237000; SELECT count(*), avg(b) FROM t2 WHERE b>=237000 AND b<237100; SELECT count(*), avg(b) FROM t2 WHERE b>=237100 AND b<237200; SELECT count(*), avg(b) FROM t2 WHERE b>=237200 AND b<237300; SELECT count(*), avg(b) FROM t2 WHERE b>=237300 AND b<237400; SELECT count(*), avg(b) FROM t2 WHERE b>=237400 AND b<237500; SELECT count(*), avg(b) FROM t2 WHERE b>=237500 AND b<237600; SELECT count(*), avg(b) FROM t2 WHERE b>=237600 AND b<237700; SELECT count(*), avg(b) FROM t2 WHERE b>=237700 AND b<237800; SELECT count(*), avg(b) FROM t2 WHERE b>=237800 AND b<237900; SELECT count(*), avg(b) FROM t2 WHERE b>=237900 AND b<238000; SELECT count(*), avg(b) FROM t2 WHERE b>=238000 AND b<238100; SELECT count(*), avg(b) FROM t2 WHERE b>=238100 AND b<238200; SELECT count(*), avg(b) FROM t2 WHERE b>=238200 AND b<238300; SELECT count(*), avg(b) FROM t2 WHERE b>=238300 AND b<238400; SELECT count(*), avg(b) FROM t2 WHERE b>=238400 AND b<238500; SELECT count(*), avg(b) FROM t2 WHERE b>=238500 AND b<238600; SELECT count(*), avg(b) FROM t2 WHERE b>=238600 AND b<238700; SELECT count(*), avg(b) FROM t2 WHERE b>=238700 AND b<238800; SELECT count(*), avg(b) FROM t2 WHERE b>=238800 AND b<238900; SELECT count(*), avg(b) FROM t2 WHERE b>=238900 AND b<239000; SELECT count(*), avg(b) FROM t2 WHERE b>=239000 AND b<239100; SELECT count(*), avg(b) FROM t2 WHERE b>=239100 AND b<239200; SELECT count(*), avg(b) FROM t2 WHERE b>=239200 AND b<239300; SELECT count(*), avg(b) FROM t2 WHERE b>=239300 AND b<239400; SELECT count(*), avg(b) FROM t2 WHERE b>=239400 AND b<239500; SELECT count(*), avg(b) FROM t2 WHERE b>=239500 AND b<239600; SELECT count(*), avg(b) FROM t2 WHERE b>=239600 AND b<239700; SELECT count(*), avg(b) FROM t2 WHERE b>=239700 AND b<239800; SELECT count(*), avg(b) FROM t2 WHERE b>=239800 AND b<239900; SELECT count(*), avg(b) FROM t2 WHERE b>=239900 AND b<240000; SELECT count(*), avg(b) FROM t2 WHERE b>=240000 AND b<240100; SELECT count(*), avg(b) FROM t2 WHERE b>=240100 AND b<240200; SELECT count(*), avg(b) FROM t2 WHERE b>=240200 AND b<240300; SELECT count(*), avg(b) FROM t2 WHERE b>=240300 AND b<240400; SELECT count(*), avg(b) FROM t2 WHERE b>=240400 AND b<240500; SELECT count(*), avg(b) FROM t2 WHERE b>=240500 AND b<240600; SELECT count(*), avg(b) FROM t2 WHERE b>=240600 AND b<240700; SELECT count(*), avg(b) FROM t2 WHERE b>=240700 AND b<240800; SELECT count(*), avg(b) FROM t2 WHERE b>=240800 AND b<240900; SELECT count(*), avg(b) FROM t2 WHERE b>=240900 AND b<241000; SELECT count(*), avg(b) FROM t2 WHERE b>=241000 AND b<241100; SELECT count(*), avg(b) FROM t2 WHERE b>=241100 AND b<241200; SELECT count(*), avg(b) FROM t2 WHERE b>=241200 AND b<241300; SELECT count(*), avg(b) FROM t2 WHERE b>=241300 AND b<241400; SELECT count(*), avg(b) FROM t2 WHERE b>=241400 AND b<241500; SELECT count(*), avg(b) FROM t2 WHERE b>=241500 AND b<241600; SELECT count(*), avg(b) FROM t2 WHERE b>=241600 AND b<241700; SELECT count(*), avg(b) FROM t2 WHERE b>=241700 AND b<241800; SELECT count(*), avg(b) FROM t2 WHERE b>=241800 AND b<241900; SELECT count(*), avg(b) FROM t2 WHERE b>=241900 AND b<242000; SELECT count(*), avg(b) FROM t2 WHERE b>=242000 AND b<242100; SELECT count(*), avg(b) FROM t2 WHERE b>=242100 AND b<242200; SELECT count(*), avg(b) FROM t2 WHERE b>=242200 AND b<242300; SELECT count(*), avg(b) FROM t2 WHERE b>=242300 AND b<242400; SELECT count(*), avg(b) FROM t2 WHERE b>=242400 AND b<242500; SELECT count(*), avg(b) FROM t2 WHERE b>=242500 AND b<242600; SELECT count(*), avg(b) FROM t2 WHERE b>=242600 AND b<242700; SELECT count(*), avg(b) FROM t2 WHERE b>=242700 AND b<242800; SELECT count(*), avg(b) FROM t2 WHERE b>=242800 AND b<242900; SELECT count(*), avg(b) FROM t2 WHERE b>=242900 AND b<243000; SELECT count(*), avg(b) FROM t2 WHERE b>=243000 AND b<243100; SELECT count(*), avg(b) FROM t2 WHERE b>=243100 AND b<243200; SELECT count(*), avg(b) FROM t2 WHERE b>=243200 AND b<243300; SELECT count(*), avg(b) FROM t2 WHERE b>=243300 AND b<243400; SELECT count(*), avg(b) FROM t2 WHERE b>=243400 AND b<243500; SELECT count(*), avg(b) FROM t2 WHERE b>=243500 AND b<243600; SELECT count(*), avg(b) FROM t2 WHERE b>=243600 AND b<243700; SELECT count(*), avg(b) FROM t2 WHERE b>=243700 AND b<243800; SELECT count(*), avg(b) FROM t2 WHERE b>=243800 AND b<243900; SELECT count(*), avg(b) FROM t2 WHERE b>=243900 AND b<244000; SELECT count(*), avg(b) FROM t2 WHERE b>=244000 AND b<244100; SELECT count(*), avg(b) FROM t2 WHERE b>=244100 AND b<244200; SELECT count(*), avg(b) FROM t2 WHERE b>=244200 AND b<244300; SELECT count(*), avg(b) FROM t2 WHERE b>=244300 AND b<244400; SELECT count(*), avg(b) FROM t2 WHERE b>=244400 AND b<244500; SELECT count(*), avg(b) FROM t2 WHERE b>=244500 AND b<244600; SELECT count(*), avg(b) FROM t2 WHERE b>=244600 AND b<244700; SELECT count(*), avg(b) FROM t2 WHERE b>=244700 AND b<244800; SELECT count(*), avg(b) FROM t2 WHERE b>=244800 AND b<244900; SELECT count(*), avg(b) FROM t2 WHERE b>=244900 AND b<245000; SELECT count(*), avg(b) FROM t2 WHERE b>=245000 AND b<245100; SELECT count(*), avg(b) FROM t2 WHERE b>=245100 AND b<245200; SELECT count(*), avg(b) FROM t2 WHERE b>=245200 AND b<245300; SELECT count(*), avg(b) FROM t2 WHERE b>=245300 AND b<245400; SELECT count(*), avg(b) FROM t2 WHERE b>=245400 AND b<245500; SELECT count(*), avg(b) FROM t2 WHERE b>=245500 AND b<245600; SELECT count(*), avg(b) FROM t2 WHERE b>=245600 AND b<245700; SELECT count(*), avg(b) FROM t2 WHERE b>=245700 AND b<245800; SELECT count(*), avg(b) FROM t2 WHERE b>=245800 AND b<245900; SELECT count(*), avg(b) FROM t2 WHERE b>=245900 AND b<246000; SELECT count(*), avg(b) FROM t2 WHERE b>=246000 AND b<246100; SELECT count(*), avg(b) FROM t2 WHERE b>=246100 AND b<246200; SELECT count(*), avg(b) FROM t2 WHERE b>=246200 AND b<246300; SELECT count(*), avg(b) FROM t2 WHERE b>=246300 AND b<246400; SELECT count(*), avg(b) FROM t2 WHERE b>=246400 AND b<246500; SELECT count(*), avg(b) FROM t2 WHERE b>=246500 AND b<246600; SELECT count(*), avg(b) FROM t2 WHERE b>=246600 AND b<246700; SELECT count(*), avg(b) FROM t2 WHERE b>=246700 AND b<246800; SELECT count(*), avg(b) FROM t2 WHERE b>=246800 AND b<246900; SELECT count(*), avg(b) FROM t2 WHERE b>=246900 AND b<247000; SELECT count(*), avg(b) FROM t2 WHERE b>=247000 AND b<247100; SELECT count(*), avg(b) FROM t2 WHERE b>=247100 AND b<247200; SELECT count(*), avg(b) FROM t2 WHERE b>=247200 AND b<247300; SELECT count(*), avg(b) FROM t2 WHERE b>=247300 AND b<247400; SELECT count(*), avg(b) FROM t2 WHERE b>=247400 AND b<247500; SELECT count(*), avg(b) FROM t2 WHERE b>=247500 AND b<247600; SELECT count(*), avg(b) FROM t2 WHERE b>=247600 AND b<247700; SELECT count(*), avg(b) FROM t2 WHERE b>=247700 AND b<247800; SELECT count(*), avg(b) FROM t2 WHERE b>=247800 AND b<247900; SELECT count(*), avg(b) FROM t2 WHERE b>=247900 AND b<248000; SELECT count(*), avg(b) FROM t2 WHERE b>=248000 AND b<248100; SELECT count(*), avg(b) FROM t2 WHERE b>=248100 AND b<248200; SELECT count(*), avg(b) FROM t2 WHERE b>=248200 AND b<248300; SELECT count(*), avg(b) FROM t2 WHERE b>=248300 AND b<248400; SELECT count(*), avg(b) FROM t2 WHERE b>=248400 AND b<248500; SELECT count(*), avg(b) FROM t2 WHERE b>=248500 AND b<248600; SELECT count(*), avg(b) FROM t2 WHERE b>=248600 AND b<248700; SELECT count(*), avg(b) FROM t2 WHERE b>=248700 AND b<248800; SELECT count(*), avg(b) FROM t2 WHERE b>=248800 AND b<248900; SELECT count(*), avg(b) FROM t2 WHERE b>=248900 AND b<249000; SELECT count(*), avg(b) FROM t2 WHERE b>=249000 AND b<249100; SELECT count(*), avg(b) FROM t2 WHERE b>=249100 AND b<249200; SELECT count(*), avg(b) FROM t2 WHERE b>=249200 AND b<249300; SELECT count(*), avg(b) FROM t2 WHERE b>=249300 AND b<249400; SELECT count(*), avg(b) FROM t2 WHERE b>=249400 AND b<249500; SELECT count(*), avg(b) FROM t2 WHERE b>=249500 AND b<249600; SELECT count(*), avg(b) FROM t2 WHERE b>=249600 AND b<249700; SELECT count(*), avg(b) FROM t2 WHERE b>=249700 AND b<249800; SELECT count(*), avg(b) FROM t2 WHERE b>=249800 AND b<249900; SELECT count(*), avg(b) FROM t2 WHERE b>=249900 AND b<250000; SELECT count(*), avg(b) FROM t2 WHERE b>=250000 AND b<250100; SELECT count(*), avg(b) FROM t2 WHERE b>=250100 AND b<250200; SELECT count(*), avg(b) FROM t2 WHERE b>=250200 AND b<250300; SELECT count(*), avg(b) FROM t2 WHERE b>=250300 AND b<250400; SELECT count(*), avg(b) FROM t2 WHERE b>=250400 AND b<250500; SELECT count(*), avg(b) FROM t2 WHERE b>=250500 AND b<250600; SELECT count(*), avg(b) FROM t2 WHERE b>=250600 AND b<250700; SELECT count(*), avg(b) FROM t2 WHERE b>=250700 AND b<250800; SELECT count(*), avg(b) FROM t2 WHERE b>=250800 AND b<250900; SELECT count(*), avg(b) FROM t2 WHERE b>=250900 AND b<251000; SELECT count(*), avg(b) FROM t2 WHERE b>=251000 AND b<251100; SELECT count(*), avg(b) FROM t2 WHERE b>=251100 AND b<251200; SELECT count(*), avg(b) FROM t2 WHERE b>=251200 AND b<251300; SELECT count(*), avg(b) FROM t2 WHERE b>=251300 AND b<251400; SELECT count(*), avg(b) FROM t2 WHERE b>=251400 AND b<251500; SELECT count(*), avg(b) FROM t2 WHERE b>=251500 AND b<251600; SELECT count(*), avg(b) FROM t2 WHERE b>=251600 AND b<251700; SELECT count(*), avg(b) FROM t2 WHERE b>=251700 AND b<251800; SELECT count(*), avg(b) FROM t2 WHERE b>=251800 AND b<251900; SELECT count(*), avg(b) FROM t2 WHERE b>=251900 AND b<252000; SELECT count(*), avg(b) FROM t2 WHERE b>=252000 AND b<252100; SELECT count(*), avg(b) FROM t2 WHERE b>=252100 AND b<252200; SELECT count(*), avg(b) FROM t2 WHERE b>=252200 AND b<252300; SELECT count(*), avg(b) FROM t2 WHERE b>=252300 AND b<252400; SELECT count(*), avg(b) FROM t2 WHERE b>=252400 AND b<252500; SELECT count(*), avg(b) FROM t2 WHERE b>=252500 AND b<252600; SELECT count(*), avg(b) FROM t2 WHERE b>=252600 AND b<252700; SELECT count(*), avg(b) FROM t2 WHERE b>=252700 AND b<252800; SELECT count(*), avg(b) FROM t2 WHERE b>=252800 AND b<252900; SELECT count(*), avg(b) FROM t2 WHERE b>=252900 AND b<253000; SELECT count(*), avg(b) FROM t2 WHERE b>=253000 AND b<253100; SELECT count(*), avg(b) FROM t2 WHERE b>=253100 AND b<253200; SELECT count(*), avg(b) FROM t2 WHERE b>=253200 AND b<253300; SELECT count(*), avg(b) FROM t2 WHERE b>=253300 AND b<253400; SELECT count(*), avg(b) FROM t2 WHERE b>=253400 AND b<253500; SELECT count(*), avg(b) FROM t2 WHERE b>=253500 AND b<253600; SELECT count(*), avg(b) FROM t2 WHERE b>=253600 AND b<253700; SELECT count(*), avg(b) FROM t2 WHERE b>=253700 AND b<253800; SELECT count(*), avg(b) FROM t2 WHERE b>=253800 AND b<253900; SELECT count(*), avg(b) FROM t2 WHERE b>=253900 AND b<254000; SELECT count(*), avg(b) FROM t2 WHERE b>=254000 AND b<254100; SELECT count(*), avg(b) FROM t2 WHERE b>=254100 AND b<254200; SELECT count(*), avg(b) FROM t2 WHERE b>=254200 AND b<254300; SELECT count(*), avg(b) FROM t2 WHERE b>=254300 AND b<254400; SELECT count(*), avg(b) FROM t2 WHERE b>=254400 AND b<254500; SELECT count(*), avg(b) FROM t2 WHERE b>=254500 AND b<254600; SELECT count(*), avg(b) FROM t2 WHERE b>=254600 AND b<254700; SELECT count(*), avg(b) FROM t2 WHERE b>=254700 AND b<254800; SELECT count(*), avg(b) FROM t2 WHERE b>=254800 AND b<254900; SELECT count(*), avg(b) FROM t2 WHERE b>=254900 AND b<255000; SELECT count(*), avg(b) FROM t2 WHERE b>=255000 AND b<255100; SELECT count(*), avg(b) FROM t2 WHERE b>=255100 AND b<255200; SELECT count(*), avg(b) FROM t2 WHERE b>=255200 AND b<255300; SELECT count(*), avg(b) FROM t2 WHERE b>=255300 AND b<255400; SELECT count(*), avg(b) FROM t2 WHERE b>=255400 AND b<255500; SELECT count(*), avg(b) FROM t2 WHERE b>=255500 AND b<255600; SELECT count(*), avg(b) FROM t2 WHERE b>=255600 AND b<255700; SELECT count(*), avg(b) FROM t2 WHERE b>=255700 AND b<255800; SELECT count(*), avg(b) FROM t2 WHERE b>=255800 AND b<255900; SELECT count(*), avg(b) FROM t2 WHERE b>=255900 AND b<256000; SELECT count(*), avg(b) FROM t2 WHERE b>=256000 AND b<256100; SELECT count(*), avg(b) FROM t2 WHERE b>=256100 AND b<256200; SELECT count(*), avg(b) FROM t2 WHERE b>=256200 AND b<256300; SELECT count(*), avg(b) FROM t2 WHERE b>=256300 AND b<256400; SELECT count(*), avg(b) FROM t2 WHERE b>=256400 AND b<256500; SELECT count(*), avg(b) FROM t2 WHERE b>=256500 AND b<256600; SELECT count(*), avg(b) FROM t2 WHERE b>=256600 AND b<256700; SELECT count(*), avg(b) FROM t2 WHERE b>=256700 AND b<256800; SELECT count(*), avg(b) FROM t2 WHERE b>=256800 AND b<256900; SELECT count(*), avg(b) FROM t2 WHERE b>=256900 AND b<257000; SELECT count(*), avg(b) FROM t2 WHERE b>=257000 AND b<257100; SELECT count(*), avg(b) FROM t2 WHERE b>=257100 AND b<257200; SELECT count(*), avg(b) FROM t2 WHERE b>=257200 AND b<257300; SELECT count(*), avg(b) FROM t2 WHERE b>=257300 AND b<257400; SELECT count(*), avg(b) FROM t2 WHERE b>=257400 AND b<257500; SELECT count(*), avg(b) FROM t2 WHERE b>=257500 AND b<257600; SELECT count(*), avg(b) FROM t2 WHERE b>=257600 AND b<257700; SELECT count(*), avg(b) FROM t2 WHERE b>=257700 AND b<257800; SELECT count(*), avg(b) FROM t2 WHERE b>=257800 AND b<257900; SELECT count(*), avg(b) FROM t2 WHERE b>=257900 AND b<258000; SELECT count(*), avg(b) FROM t2 WHERE b>=258000 AND b<258100; SELECT count(*), avg(b) FROM t2 WHERE b>=258100 AND b<258200; SELECT count(*), avg(b) FROM t2 WHERE b>=258200 AND b<258300; SELECT count(*), avg(b) FROM t2 WHERE b>=258300 AND b<258400; SELECT count(*), avg(b) FROM t2 WHERE b>=258400 AND b<258500; SELECT count(*), avg(b) FROM t2 WHERE b>=258500 AND b<258600; SELECT count(*), avg(b) FROM t2 WHERE b>=258600 AND b<258700; SELECT count(*), avg(b) FROM t2 WHERE b>=258700 AND b<258800; SELECT count(*), avg(b) FROM t2 WHERE b>=258800 AND b<258900; SELECT count(*), avg(b) FROM t2 WHERE b>=258900 AND b<259000; SELECT count(*), avg(b) FROM t2 WHERE b>=259000 AND b<259100; SELECT count(*), avg(b) FROM t2 WHERE b>=259100 AND b<259200; SELECT count(*), avg(b) FROM t2 WHERE b>=259200 AND b<259300; SELECT count(*), avg(b) FROM t2 WHERE b>=259300 AND b<259400; SELECT count(*), avg(b) FROM t2 WHERE b>=259400 AND b<259500; SELECT count(*), avg(b) FROM t2 WHERE b>=259500 AND b<259600; SELECT count(*), avg(b) FROM t2 WHERE b>=259600 AND b<259700; SELECT count(*), avg(b) FROM t2 WHERE b>=259700 AND b<259800; SELECT count(*), avg(b) FROM t2 WHERE b>=259800 AND b<259900; SELECT count(*), avg(b) FROM t2 WHERE b>=259900 AND b<260000; SELECT count(*), avg(b) FROM t2 WHERE b>=260000 AND b<260100; SELECT count(*), avg(b) FROM t2 WHERE b>=260100 AND b<260200; SELECT count(*), avg(b) FROM t2 WHERE b>=260200 AND b<260300; SELECT count(*), avg(b) FROM t2 WHERE b>=260300 AND b<260400; SELECT count(*), avg(b) FROM t2 WHERE b>=260400 AND b<260500; SELECT count(*), avg(b) FROM t2 WHERE b>=260500 AND b<260600; SELECT count(*), avg(b) FROM t2 WHERE b>=260600 AND b<260700; SELECT count(*), avg(b) FROM t2 WHERE b>=260700 AND b<260800; SELECT count(*), avg(b) FROM t2 WHERE b>=260800 AND b<260900; SELECT count(*), avg(b) FROM t2 WHERE b>=260900 AND b<261000; SELECT count(*), avg(b) FROM t2 WHERE b>=261000 AND b<261100; SELECT count(*), avg(b) FROM t2 WHERE b>=261100 AND b<261200; SELECT count(*), avg(b) FROM t2 WHERE b>=261200 AND b<261300; SELECT count(*), avg(b) FROM t2 WHERE b>=261300 AND b<261400; SELECT count(*), avg(b) FROM t2 WHERE b>=261400 AND b<261500; SELECT count(*), avg(b) FROM t2 WHERE b>=261500 AND b<261600; SELECT count(*), avg(b) FROM t2 WHERE b>=261600 AND b<261700; SELECT count(*), avg(b) FROM t2 WHERE b>=261700 AND b<261800; SELECT count(*), avg(b) FROM t2 WHERE b>=261800 AND b<261900; SELECT count(*), avg(b) FROM t2 WHERE b>=261900 AND b<262000; SELECT count(*), avg(b) FROM t2 WHERE b>=262000 AND b<262100; SELECT count(*), avg(b) FROM t2 WHERE b>=262100 AND b<262200; SELECT count(*), avg(b) FROM t2 WHERE b>=262200 AND b<262300; SELECT count(*), avg(b) FROM t2 WHERE b>=262300 AND b<262400; SELECT count(*), avg(b) FROM t2 WHERE b>=262400 AND b<262500; SELECT count(*), avg(b) FROM t2 WHERE b>=262500 AND b<262600; SELECT count(*), avg(b) FROM t2 WHERE b>=262600 AND b<262700; SELECT count(*), avg(b) FROM t2 WHERE b>=262700 AND b<262800; SELECT count(*), avg(b) FROM t2 WHERE b>=262800 AND b<262900; SELECT count(*), avg(b) FROM t2 WHERE b>=262900 AND b<263000; SELECT count(*), avg(b) FROM t2 WHERE b>=263000 AND b<263100; SELECT count(*), avg(b) FROM t2 WHERE b>=263100 AND b<263200; SELECT count(*), avg(b) FROM t2 WHERE b>=263200 AND b<263300; SELECT count(*), avg(b) FROM t2 WHERE b>=263300 AND b<263400; SELECT count(*), avg(b) FROM t2 WHERE b>=263400 AND b<263500; SELECT count(*), avg(b) FROM t2 WHERE b>=263500 AND b<263600; SELECT count(*), avg(b) FROM t2 WHERE b>=263600 AND b<263700; SELECT count(*), avg(b) FROM t2 WHERE b>=263700 AND b<263800; SELECT count(*), avg(b) FROM t2 WHERE b>=263800 AND b<263900; SELECT count(*), avg(b) FROM t2 WHERE b>=263900 AND b<264000; SELECT count(*), avg(b) FROM t2 WHERE b>=264000 AND b<264100; SELECT count(*), avg(b) FROM t2 WHERE b>=264100 AND b<264200; SELECT count(*), avg(b) FROM t2 WHERE b>=264200 AND b<264300; SELECT count(*), avg(b) FROM t2 WHERE b>=264300 AND b<264400; SELECT count(*), avg(b) FROM t2 WHERE b>=264400 AND b<264500; SELECT count(*), avg(b) FROM t2 WHERE b>=264500 AND b<264600; SELECT count(*), avg(b) FROM t2 WHERE b>=264600 AND b<264700; SELECT count(*), avg(b) FROM t2 WHERE b>=264700 AND b<264800; SELECT count(*), avg(b) FROM t2 WHERE b>=264800 AND b<264900; SELECT count(*), avg(b) FROM t2 WHERE b>=264900 AND b<265000; SELECT count(*), avg(b) FROM t2 WHERE b>=265000 AND b<265100; SELECT count(*), avg(b) FROM t2 WHERE b>=265100 AND b<265200; SELECT count(*), avg(b) FROM t2 WHERE b>=265200 AND b<265300; SELECT count(*), avg(b) FROM t2 WHERE b>=265300 AND b<265400; SELECT count(*), avg(b) FROM t2 WHERE b>=265400 AND b<265500; SELECT count(*), avg(b) FROM t2 WHERE b>=265500 AND b<265600; SELECT count(*), avg(b) FROM t2 WHERE b>=265600 AND b<265700; SELECT count(*), avg(b) FROM t2 WHERE b>=265700 AND b<265800; SELECT count(*), avg(b) FROM t2 WHERE b>=265800 AND b<265900; SELECT count(*), avg(b) FROM t2 WHERE b>=265900 AND b<266000; SELECT count(*), avg(b) FROM t2 WHERE b>=266000 AND b<266100; SELECT count(*), avg(b) FROM t2 WHERE b>=266100 AND b<266200; SELECT count(*), avg(b) FROM t2 WHERE b>=266200 AND b<266300; SELECT count(*), avg(b) FROM t2 WHERE b>=266300 AND b<266400; SELECT count(*), avg(b) FROM t2 WHERE b>=266400 AND b<266500; SELECT count(*), avg(b) FROM t2 WHERE b>=266500 AND b<266600; SELECT count(*), avg(b) FROM t2 WHERE b>=266600 AND b<266700; SELECT count(*), avg(b) FROM t2 WHERE b>=266700 AND b<266800; SELECT count(*), avg(b) FROM t2 WHERE b>=266800 AND b<266900; SELECT count(*), avg(b) FROM t2 WHERE b>=266900 AND b<267000; SELECT count(*), avg(b) FROM t2 WHERE b>=267000 AND b<267100; SELECT count(*), avg(b) FROM t2 WHERE b>=267100 AND b<267200; SELECT count(*), avg(b) FROM t2 WHERE b>=267200 AND b<267300; SELECT count(*), avg(b) FROM t2 WHERE b>=267300 AND b<267400; SELECT count(*), avg(b) FROM t2 WHERE b>=267400 AND b<267500; SELECT count(*), avg(b) FROM t2 WHERE b>=267500 AND b<267600; SELECT count(*), avg(b) FROM t2 WHERE b>=267600 AND b<267700; SELECT count(*), avg(b) FROM t2 WHERE b>=267700 AND b<267800; SELECT count(*), avg(b) FROM t2 WHERE b>=267800 AND b<267900; SELECT count(*), avg(b) FROM t2 WHERE b>=267900 AND b<268000; SELECT count(*), avg(b) FROM t2 WHERE b>=268000 AND b<268100; SELECT count(*), avg(b) FROM t2 WHERE b>=268100 AND b<268200; SELECT count(*), avg(b) FROM t2 WHERE b>=268200 AND b<268300; SELECT count(*), avg(b) FROM t2 WHERE b>=268300 AND b<268400; SELECT count(*), avg(b) FROM t2 WHERE b>=268400 AND b<268500; SELECT count(*), avg(b) FROM t2 WHERE b>=268500 AND b<268600; SELECT count(*), avg(b) FROM t2 WHERE b>=268600 AND b<268700; SELECT count(*), avg(b) FROM t2 WHERE b>=268700 AND b<268800; SELECT count(*), avg(b) FROM t2 WHERE b>=268800 AND b<268900; SELECT count(*), avg(b) FROM t2 WHERE b>=268900 AND b<269000; SELECT count(*), avg(b) FROM t2 WHERE b>=269000 AND b<269100; SELECT count(*), avg(b) FROM t2 WHERE b>=269100 AND b<269200; SELECT count(*), avg(b) FROM t2 WHERE b>=269200 AND b<269300; SELECT count(*), avg(b) FROM t2 WHERE b>=269300 AND b<269400; SELECT count(*), avg(b) FROM t2 WHERE b>=269400 AND b<269500; SELECT count(*), avg(b) FROM t2 WHERE b>=269500 AND b<269600; SELECT count(*), avg(b) FROM t2 WHERE b>=269600 AND b<269700; SELECT count(*), avg(b) FROM t2 WHERE b>=269700 AND b<269800; SELECT count(*), avg(b) FROM t2 WHERE b>=269800 AND b<269900; SELECT count(*), avg(b) FROM t2 WHERE b>=269900 AND b<270000; SELECT count(*), avg(b) FROM t2 WHERE b>=270000 AND b<270100; SELECT count(*), avg(b) FROM t2 WHERE b>=270100 AND b<270200; SELECT count(*), avg(b) FROM t2 WHERE b>=270200 AND b<270300; SELECT count(*), avg(b) FROM t2 WHERE b>=270300 AND b<270400; SELECT count(*), avg(b) FROM t2 WHERE b>=270400 AND b<270500; SELECT count(*), avg(b) FROM t2 WHERE b>=270500 AND b<270600; SELECT count(*), avg(b) FROM t2 WHERE b>=270600 AND b<270700; SELECT count(*), avg(b) FROM t2 WHERE b>=270700 AND b<270800; SELECT count(*), avg(b) FROM t2 WHERE b>=270800 AND b<270900; SELECT count(*), avg(b) FROM t2 WHERE b>=270900 AND b<271000; SELECT count(*), avg(b) FROM t2 WHERE b>=271000 AND b<271100; SELECT count(*), avg(b) FROM t2 WHERE b>=271100 AND b<271200; SELECT count(*), avg(b) FROM t2 WHERE b>=271200 AND b<271300; SELECT count(*), avg(b) FROM t2 WHERE b>=271300 AND b<271400; SELECT count(*), avg(b) FROM t2 WHERE b>=271400 AND b<271500; SELECT count(*), avg(b) FROM t2 WHERE b>=271500 AND b<271600; SELECT count(*), avg(b) FROM t2 WHERE b>=271600 AND b<271700; SELECT count(*), avg(b) FROM t2 WHERE b>=271700 AND b<271800; SELECT count(*), avg(b) FROM t2 WHERE b>=271800 AND b<271900; SELECT count(*), avg(b) FROM t2 WHERE b>=271900 AND b<272000; SELECT count(*), avg(b) FROM t2 WHERE b>=272000 AND b<272100; SELECT count(*), avg(b) FROM t2 WHERE b>=272100 AND b<272200; SELECT count(*), avg(b) FROM t2 WHERE b>=272200 AND b<272300; SELECT count(*), avg(b) FROM t2 WHERE b>=272300 AND b<272400; SELECT count(*), avg(b) FROM t2 WHERE b>=272400 AND b<272500; SELECT count(*), avg(b) FROM t2 WHERE b>=272500 AND b<272600; SELECT count(*), avg(b) FROM t2 WHERE b>=272600 AND b<272700; SELECT count(*), avg(b) FROM t2 WHERE b>=272700 AND b<272800; SELECT count(*), avg(b) FROM t2 WHERE b>=272800 AND b<272900; SELECT count(*), avg(b) FROM t2 WHERE b>=272900 AND b<273000; SELECT count(*), avg(b) FROM t2 WHERE b>=273000 AND b<273100; SELECT count(*), avg(b) FROM t2 WHERE b>=273100 AND b<273200; SELECT count(*), avg(b) FROM t2 WHERE b>=273200 AND b<273300; SELECT count(*), avg(b) FROM t2 WHERE b>=273300 AND b<273400; SELECT count(*), avg(b) FROM t2 WHERE b>=273400 AND b<273500; SELECT count(*), avg(b) FROM t2 WHERE b>=273500 AND b<273600; SELECT count(*), avg(b) FROM t2 WHERE b>=273600 AND b<273700; SELECT count(*), avg(b) FROM t2 WHERE b>=273700 AND b<273800; SELECT count(*), avg(b) FROM t2 WHERE b>=273800 AND b<273900; SELECT count(*), avg(b) FROM t2 WHERE b>=273900 AND b<274000; SELECT count(*), avg(b) FROM t2 WHERE b>=274000 AND b<274100; SELECT count(*), avg(b) FROM t2 WHERE b>=274100 AND b<274200; SELECT count(*), avg(b) FROM t2 WHERE b>=274200 AND b<274300; SELECT count(*), avg(b) FROM t2 WHERE b>=274300 AND b<274400; SELECT count(*), avg(b) FROM t2 WHERE b>=274400 AND b<274500; SELECT count(*), avg(b) FROM t2 WHERE b>=274500 AND b<274600; SELECT count(*), avg(b) FROM t2 WHERE b>=274600 AND b<274700; SELECT count(*), avg(b) FROM t2 WHERE b>=274700 AND b<274800; SELECT count(*), avg(b) FROM t2 WHERE b>=274800 AND b<274900; SELECT count(*), avg(b) FROM t2 WHERE b>=274900 AND b<275000; SELECT count(*), avg(b) FROM t2 WHERE b>=275000 AND b<275100; SELECT count(*), avg(b) FROM t2 WHERE b>=275100 AND b<275200; SELECT count(*), avg(b) FROM t2 WHERE b>=275200 AND b<275300; SELECT count(*), avg(b) FROM t2 WHERE b>=275300 AND b<275400; SELECT count(*), avg(b) FROM t2 WHERE b>=275400 AND b<275500; SELECT count(*), avg(b) FROM t2 WHERE b>=275500 AND b<275600; SELECT count(*), avg(b) FROM t2 WHERE b>=275600 AND b<275700; SELECT count(*), avg(b) FROM t2 WHERE b>=275700 AND b<275800; SELECT count(*), avg(b) FROM t2 WHERE b>=275800 AND b<275900; SELECT count(*), avg(b) FROM t2 WHERE b>=275900 AND b<276000; SELECT count(*), avg(b) FROM t2 WHERE b>=276000 AND b<276100; SELECT count(*), avg(b) FROM t2 WHERE b>=276100 AND b<276200; SELECT count(*), avg(b) FROM t2 WHERE b>=276200 AND b<276300; SELECT count(*), avg(b) FROM t2 WHERE b>=276300 AND b<276400; SELECT count(*), avg(b) FROM t2 WHERE b>=276400 AND b<276500; SELECT count(*), avg(b) FROM t2 WHERE b>=276500 AND b<276600; SELECT count(*), avg(b) FROM t2 WHERE b>=276600 AND b<276700; SELECT count(*), avg(b) FROM t2 WHERE b>=276700 AND b<276800; SELECT count(*), avg(b) FROM t2 WHERE b>=276800 AND b<276900; SELECT count(*), avg(b) FROM t2 WHERE b>=276900 AND b<277000; SELECT count(*), avg(b) FROM t2 WHERE b>=277000 AND b<277100; SELECT count(*), avg(b) FROM t2 WHERE b>=277100 AND b<277200; SELECT count(*), avg(b) FROM t2 WHERE b>=277200 AND b<277300; SELECT count(*), avg(b) FROM t2 WHERE b>=277300 AND b<277400; SELECT count(*), avg(b) FROM t2 WHERE b>=277400 AND b<277500; SELECT count(*), avg(b) FROM t2 WHERE b>=277500 AND b<277600; SELECT count(*), avg(b) FROM t2 WHERE b>=277600 AND b<277700; SELECT count(*), avg(b) FROM t2 WHERE b>=277700 AND b<277800; SELECT count(*), avg(b) FROM t2 WHERE b>=277800 AND b<277900; SELECT count(*), avg(b) FROM t2 WHERE b>=277900 AND b<278000; SELECT count(*), avg(b) FROM t2 WHERE b>=278000 AND b<278100; SELECT count(*), avg(b) FROM t2 WHERE b>=278100 AND b<278200; SELECT count(*), avg(b) FROM t2 WHERE b>=278200 AND b<278300; SELECT count(*), avg(b) FROM t2 WHERE b>=278300 AND b<278400; SELECT count(*), avg(b) FROM t2 WHERE b>=278400 AND b<278500; SELECT count(*), avg(b) FROM t2 WHERE b>=278500 AND b<278600; SELECT count(*), avg(b) FROM t2 WHERE b>=278600 AND b<278700; SELECT count(*), avg(b) FROM t2 WHERE b>=278700 AND b<278800; SELECT count(*), avg(b) FROM t2 WHERE b>=278800 AND b<278900; SELECT count(*), avg(b) FROM t2 WHERE b>=278900 AND b<279000; SELECT count(*), avg(b) FROM t2 WHERE b>=279000 AND b<279100; SELECT count(*), avg(b) FROM t2 WHERE b>=279100 AND b<279200; SELECT count(*), avg(b) FROM t2 WHERE b>=279200 AND b<279300; SELECT count(*), avg(b) FROM t2 WHERE b>=279300 AND b<279400; SELECT count(*), avg(b) FROM t2 WHERE b>=279400 AND b<279500; SELECT count(*), avg(b) FROM t2 WHERE b>=279500 AND b<279600; SELECT count(*), avg(b) FROM t2 WHERE b>=279600 AND b<279700; SELECT count(*), avg(b) FROM t2 WHERE b>=279700 AND b<279800; SELECT count(*), avg(b) FROM t2 WHERE b>=279800 AND b<279900; SELECT count(*), avg(b) FROM t2 WHERE b>=279900 AND b<280000; SELECT count(*), avg(b) FROM t2 WHERE b>=280000 AND b<280100; SELECT count(*), avg(b) FROM t2 WHERE b>=280100 AND b<280200; SELECT count(*), avg(b) FROM t2 WHERE b>=280200 AND b<280300; SELECT count(*), avg(b) FROM t2 WHERE b>=280300 AND b<280400; SELECT count(*), avg(b) FROM t2 WHERE b>=280400 AND b<280500; SELECT count(*), avg(b) FROM t2 WHERE b>=280500 AND b<280600; SELECT count(*), avg(b) FROM t2 WHERE b>=280600 AND b<280700; SELECT count(*), avg(b) FROM t2 WHERE b>=280700 AND b<280800; SELECT count(*), avg(b) FROM t2 WHERE b>=280800 AND b<280900; SELECT count(*), avg(b) FROM t2 WHERE b>=280900 AND b<281000; SELECT count(*), avg(b) FROM t2 WHERE b>=281000 AND b<281100; SELECT count(*), avg(b) FROM t2 WHERE b>=281100 AND b<281200; SELECT count(*), avg(b) FROM t2 WHERE b>=281200 AND b<281300; SELECT count(*), avg(b) FROM t2 WHERE b>=281300 AND b<281400; SELECT count(*), avg(b) FROM t2 WHERE b>=281400 AND b<281500; SELECT count(*), avg(b) FROM t2 WHERE b>=281500 AND b<281600; SELECT count(*), avg(b) FROM t2 WHERE b>=281600 AND b<281700; SELECT count(*), avg(b) FROM t2 WHERE b>=281700 AND b<281800; SELECT count(*), avg(b) FROM t2 WHERE b>=281800 AND b<281900; SELECT count(*), avg(b) FROM t2 WHERE b>=281900 AND b<282000; SELECT count(*), avg(b) FROM t2 WHERE b>=282000 AND b<282100; SELECT count(*), avg(b) FROM t2 WHERE b>=282100 AND b<282200; SELECT count(*), avg(b) FROM t2 WHERE b>=282200 AND b<282300; SELECT count(*), avg(b) FROM t2 WHERE b>=282300 AND b<282400; SELECT count(*), avg(b) FROM t2 WHERE b>=282400 AND b<282500; SELECT count(*), avg(b) FROM t2 WHERE b>=282500 AND b<282600; SELECT count(*), avg(b) FROM t2 WHERE b>=282600 AND b<282700; SELECT count(*), avg(b) FROM t2 WHERE b>=282700 AND b<282800; SELECT count(*), avg(b) FROM t2 WHERE b>=282800 AND b<282900; SELECT count(*), avg(b) FROM t2 WHERE b>=282900 AND b<283000; SELECT count(*), avg(b) FROM t2 WHERE b>=283000 AND b<283100; SELECT count(*), avg(b) FROM t2 WHERE b>=283100 AND b<283200; SELECT count(*), avg(b) FROM t2 WHERE b>=283200 AND b<283300; SELECT count(*), avg(b) FROM t2 WHERE b>=283300 AND b<283400; SELECT count(*), avg(b) FROM t2 WHERE b>=283400 AND b<283500; SELECT count(*), avg(b) FROM t2 WHERE b>=283500 AND b<283600; SELECT count(*), avg(b) FROM t2 WHERE b>=283600 AND b<283700; SELECT count(*), avg(b) FROM t2 WHERE b>=283700 AND b<283800; SELECT count(*), avg(b) FROM t2 WHERE b>=283800 AND b<283900; SELECT count(*), avg(b) FROM t2 WHERE b>=283900 AND b<284000; SELECT count(*), avg(b) FROM t2 WHERE b>=284000 AND b<284100; SELECT count(*), avg(b) FROM t2 WHERE b>=284100 AND b<284200; SELECT count(*), avg(b) FROM t2 WHERE b>=284200 AND b<284300; SELECT count(*), avg(b) FROM t2 WHERE b>=284300 AND b<284400; SELECT count(*), avg(b) FROM t2 WHERE b>=284400 AND b<284500; SELECT count(*), avg(b) FROM t2 WHERE b>=284500 AND b<284600; SELECT count(*), avg(b) FROM t2 WHERE b>=284600 AND b<284700; SELECT count(*), avg(b) FROM t2 WHERE b>=284700 AND b<284800; SELECT count(*), avg(b) FROM t2 WHERE b>=284800 AND b<284900; SELECT count(*), avg(b) FROM t2 WHERE b>=284900 AND b<285000; SELECT count(*), avg(b) FROM t2 WHERE b>=285000 AND b<285100; SELECT count(*), avg(b) FROM t2 WHERE b>=285100 AND b<285200; SELECT count(*), avg(b) FROM t2 WHERE b>=285200 AND b<285300; SELECT count(*), avg(b) FROM t2 WHERE b>=285300 AND b<285400; SELECT count(*), avg(b) FROM t2 WHERE b>=285400 AND b<285500; SELECT count(*), avg(b) FROM t2 WHERE b>=285500 AND b<285600; SELECT count(*), avg(b) FROM t2 WHERE b>=285600 AND b<285700; SELECT count(*), avg(b) FROM t2 WHERE b>=285700 AND b<285800; SELECT count(*), avg(b) FROM t2 WHERE b>=285800 AND b<285900; SELECT count(*), avg(b) FROM t2 WHERE b>=285900 AND b<286000; SELECT count(*), avg(b) FROM t2 WHERE b>=286000 AND b<286100; SELECT count(*), avg(b) FROM t2 WHERE b>=286100 AND b<286200; SELECT count(*), avg(b) FROM t2 WHERE b>=286200 AND b<286300; SELECT count(*), avg(b) FROM t2 WHERE b>=286300 AND b<286400; SELECT count(*), avg(b) FROM t2 WHERE b>=286400 AND b<286500; SELECT count(*), avg(b) FROM t2 WHERE b>=286500 AND b<286600; SELECT count(*), avg(b) FROM t2 WHERE b>=286600 AND b<286700; SELECT count(*), avg(b) FROM t2 WHERE b>=286700 AND b<286800; SELECT count(*), avg(b) FROM t2 WHERE b>=286800 AND b<286900; SELECT count(*), avg(b) FROM t2 WHERE b>=286900 AND b<287000; SELECT count(*), avg(b) FROM t2 WHERE b>=287000 AND b<287100; SELECT count(*), avg(b) FROM t2 WHERE b>=287100 AND b<287200; SELECT count(*), avg(b) FROM t2 WHERE b>=287200 AND b<287300; SELECT count(*), avg(b) FROM t2 WHERE b>=287300 AND b<287400; SELECT count(*), avg(b) FROM t2 WHERE b>=287400 AND b<287500; SELECT count(*), avg(b) FROM t2 WHERE b>=287500 AND b<287600; SELECT count(*), avg(b) FROM t2 WHERE b>=287600 AND b<287700; SELECT count(*), avg(b) FROM t2 WHERE b>=287700 AND b<287800; SELECT count(*), avg(b) FROM t2 WHERE b>=287800 AND b<287900; SELECT count(*), avg(b) FROM t2 WHERE b>=287900 AND b<288000; SELECT count(*), avg(b) FROM t2 WHERE b>=288000 AND b<288100; SELECT count(*), avg(b) FROM t2 WHERE b>=288100 AND b<288200; SELECT count(*), avg(b) FROM t2 WHERE b>=288200 AND b<288300; SELECT count(*), avg(b) FROM t2 WHERE b>=288300 AND b<288400; SELECT count(*), avg(b) FROM t2 WHERE b>=288400 AND b<288500; SELECT count(*), avg(b) FROM t2 WHERE b>=288500 AND b<288600; SELECT count(*), avg(b) FROM t2 WHERE b>=288600 AND b<288700; SELECT count(*), avg(b) FROM t2 WHERE b>=288700 AND b<288800; SELECT count(*), avg(b) FROM t2 WHERE b>=288800 AND b<288900; SELECT count(*), avg(b) FROM t2 WHERE b>=288900 AND b<289000; SELECT count(*), avg(b) FROM t2 WHERE b>=289000 AND b<289100; SELECT count(*), avg(b) FROM t2 WHERE b>=289100 AND b<289200; SELECT count(*), avg(b) FROM t2 WHERE b>=289200 AND b<289300; SELECT count(*), avg(b) FROM t2 WHERE b>=289300 AND b<289400; SELECT count(*), avg(b) FROM t2 WHERE b>=289400 AND b<289500; SELECT count(*), avg(b) FROM t2 WHERE b>=289500 AND b<289600; SELECT count(*), avg(b) FROM t2 WHERE b>=289600 AND b<289700; SELECT count(*), avg(b) FROM t2 WHERE b>=289700 AND b<289800; SELECT count(*), avg(b) FROM t2 WHERE b>=289800 AND b<289900; SELECT count(*), avg(b) FROM t2 WHERE b>=289900 AND b<290000; SELECT count(*), avg(b) FROM t2 WHERE b>=290000 AND b<290100; SELECT count(*), avg(b) FROM t2 WHERE b>=290100 AND b<290200; SELECT count(*), avg(b) FROM t2 WHERE b>=290200 AND b<290300; SELECT count(*), avg(b) FROM t2 WHERE b>=290300 AND b<290400; SELECT count(*), avg(b) FROM t2 WHERE b>=290400 AND b<290500; SELECT count(*), avg(b) FROM t2 WHERE b>=290500 AND b<290600; SELECT count(*), avg(b) FROM t2 WHERE b>=290600 AND b<290700; SELECT count(*), avg(b) FROM t2 WHERE b>=290700 AND b<290800; SELECT count(*), avg(b) FROM t2 WHERE b>=290800 AND b<290900; SELECT count(*), avg(b) FROM t2 WHERE b>=290900 AND b<291000; SELECT count(*), avg(b) FROM t2 WHERE b>=291000 AND b<291100; SELECT count(*), avg(b) FROM t2 WHERE b>=291100 AND b<291200; SELECT count(*), avg(b) FROM t2 WHERE b>=291200 AND b<291300; SELECT count(*), avg(b) FROM t2 WHERE b>=291300 AND b<291400; SELECT count(*), avg(b) FROM t2 WHERE b>=291400 AND b<291500; SELECT count(*), avg(b) FROM t2 WHERE b>=291500 AND b<291600; SELECT count(*), avg(b) FROM t2 WHERE b>=291600 AND b<291700; SELECT count(*), avg(b) FROM t2 WHERE b>=291700 AND b<291800; SELECT count(*), avg(b) FROM t2 WHERE b>=291800 AND b<291900; SELECT count(*), avg(b) FROM t2 WHERE b>=291900 AND b<292000; SELECT count(*), avg(b) FROM t2 WHERE b>=292000 AND b<292100; SELECT count(*), avg(b) FROM t2 WHERE b>=292100 AND b<292200; SELECT count(*), avg(b) FROM t2 WHERE b>=292200 AND b<292300; SELECT count(*), avg(b) FROM t2 WHERE b>=292300 AND b<292400; SELECT count(*), avg(b) FROM t2 WHERE b>=292400 AND b<292500; SELECT count(*), avg(b) FROM t2 WHERE b>=292500 AND b<292600; SELECT count(*), avg(b) FROM t2 WHERE b>=292600 AND b<292700; SELECT count(*), avg(b) FROM t2 WHERE b>=292700 AND b<292800; SELECT count(*), avg(b) FROM t2 WHERE b>=292800 AND b<292900; SELECT count(*), avg(b) FROM t2 WHERE b>=292900 AND b<293000; SELECT count(*), avg(b) FROM t2 WHERE b>=293000 AND b<293100; SELECT count(*), avg(b) FROM t2 WHERE b>=293100 AND b<293200; SELECT count(*), avg(b) FROM t2 WHERE b>=293200 AND b<293300; SELECT count(*), avg(b) FROM t2 WHERE b>=293300 AND b<293400; SELECT count(*), avg(b) FROM t2 WHERE b>=293400 AND b<293500; SELECT count(*), avg(b) FROM t2 WHERE b>=293500 AND b<293600; SELECT count(*), avg(b) FROM t2 WHERE b>=293600 AND b<293700; SELECT count(*), avg(b) FROM t2 WHERE b>=293700 AND b<293800; SELECT count(*), avg(b) FROM t2 WHERE b>=293800 AND b<293900; SELECT count(*), avg(b) FROM t2 WHERE b>=293900 AND b<294000; SELECT count(*), avg(b) FROM t2 WHERE b>=294000 AND b<294100; SELECT count(*), avg(b) FROM t2 WHERE b>=294100 AND b<294200; SELECT count(*), avg(b) FROM t2 WHERE b>=294200 AND b<294300; SELECT count(*), avg(b) FROM t2 WHERE b>=294300 AND b<294400; SELECT count(*), avg(b) FROM t2 WHERE b>=294400 AND b<294500; SELECT count(*), avg(b) FROM t2 WHERE b>=294500 AND b<294600; SELECT count(*), avg(b) FROM t2 WHERE b>=294600 AND b<294700; SELECT count(*), avg(b) FROM t2 WHERE b>=294700 AND b<294800; SELECT count(*), avg(b) FROM t2 WHERE b>=294800 AND b<294900; SELECT count(*), avg(b) FROM t2 WHERE b>=294900 AND b<295000; SELECT count(*), avg(b) FROM t2 WHERE b>=295000 AND b<295100; SELECT count(*), avg(b) FROM t2 WHERE b>=295100 AND b<295200; SELECT count(*), avg(b) FROM t2 WHERE b>=295200 AND b<295300; SELECT count(*), avg(b) FROM t2 WHERE b>=295300 AND b<295400; SELECT count(*), avg(b) FROM t2 WHERE b>=295400 AND b<295500; SELECT count(*), avg(b) FROM t2 WHERE b>=295500 AND b<295600; SELECT count(*), avg(b) FROM t2 WHERE b>=295600 AND b<295700; SELECT count(*), avg(b) FROM t2 WHERE b>=295700 AND b<295800; SELECT count(*), avg(b) FROM t2 WHERE b>=295800 AND b<295900; SELECT count(*), avg(b) FROM t2 WHERE b>=295900 AND b<296000; SELECT count(*), avg(b) FROM t2 WHERE b>=296000 AND b<296100; SELECT count(*), avg(b) FROM t2 WHERE b>=296100 AND b<296200; SELECT count(*), avg(b) FROM t2 WHERE b>=296200 AND b<296300; SELECT count(*), avg(b) FROM t2 WHERE b>=296300 AND b<296400; SELECT count(*), avg(b) FROM t2 WHERE b>=296400 AND b<296500; SELECT count(*), avg(b) FROM t2 WHERE b>=296500 AND b<296600; SELECT count(*), avg(b) FROM t2 WHERE b>=296600 AND b<296700; SELECT count(*), avg(b) FROM t2 WHERE b>=296700 AND b<296800; SELECT count(*), avg(b) FROM t2 WHERE b>=296800 AND b<296900; SELECT count(*), avg(b) FROM t2 WHERE b>=296900 AND b<297000; SELECT count(*), avg(b) FROM t2 WHERE b>=297000 AND b<297100; SELECT count(*), avg(b) FROM t2 WHERE b>=297100 AND b<297200; SELECT count(*), avg(b) FROM t2 WHERE b>=297200 AND b<297300; SELECT count(*), avg(b) FROM t2 WHERE b>=297300 AND b<297400; SELECT count(*), avg(b) FROM t2 WHERE b>=297400 AND b<297500; SELECT count(*), avg(b) FROM t2 WHERE b>=297500 AND b<297600; SELECT count(*), avg(b) FROM t2 WHERE b>=297600 AND b<297700; SELECT count(*), avg(b) FROM t2 WHERE b>=297700 AND b<297800; SELECT count(*), avg(b) FROM t2 WHERE b>=297800 AND b<297900; SELECT count(*), avg(b) FROM t2 WHERE b>=297900 AND b<298000; SELECT count(*), avg(b) FROM t2 WHERE b>=298000 AND b<298100; SELECT count(*), avg(b) FROM t2 WHERE b>=298100 AND b<298200; SELECT count(*), avg(b) FROM t2 WHERE b>=298200 AND b<298300; SELECT count(*), avg(b) FROM t2 WHERE b>=298300 AND b<298400; SELECT count(*), avg(b) FROM t2 WHERE b>=298400 AND b<298500; SELECT count(*), avg(b) FROM t2 WHERE b>=298500 AND b<298600; SELECT count(*), avg(b) FROM t2 WHERE b>=298600 AND b<298700; SELECT count(*), avg(b) FROM t2 WHERE b>=298700 AND b<298800; SELECT count(*), avg(b) FROM t2 WHERE b>=298800 AND b<298900; SELECT count(*), avg(b) FROM t2 WHERE b>=298900 AND b<299000; SELECT count(*), avg(b) FROM t2 WHERE b>=299000 AND b<299100; SELECT count(*), avg(b) FROM t2 WHERE b>=299100 AND b<299200; SELECT count(*), avg(b) FROM t2 WHERE b>=299200 AND b<299300; SELECT count(*), avg(b) FROM t2 WHERE b>=299300 AND b<299400; SELECT count(*), avg(b) FROM t2 WHERE b>=299400 AND b<299500; SELECT count(*), avg(b) FROM t2 WHERE b>=299500 AND b<299600; SELECT count(*), avg(b) FROM t2 WHERE b>=299600 AND b<299700; SELECT count(*), avg(b) FROM t2 WHERE b>=299700 AND b<299800; SELECT count(*), avg(b) FROM t2 WHERE b>=299800 AND b<299900; SELECT count(*), avg(b) FROM t2 WHERE b>=299900 AND b<300000; SELECT count(*), avg(b) FROM t2 WHERE b>=300000 AND b<300100; SELECT count(*), avg(b) FROM t2 WHERE b>=300100 AND b<300200; SELECT count(*), avg(b) FROM t2 WHERE b>=300200 AND b<300300; SELECT count(*), avg(b) FROM t2 WHERE b>=300300 AND b<300400; SELECT count(*), avg(b) FROM t2 WHERE b>=300400 AND b<300500; SELECT count(*), avg(b) FROM t2 WHERE b>=300500 AND b<300600; SELECT count(*), avg(b) FROM t2 WHERE b>=300600 AND b<300700; SELECT count(*), avg(b) FROM t2 WHERE b>=300700 AND b<300800; SELECT count(*), avg(b) FROM t2 WHERE b>=300800 AND b<300900; SELECT count(*), avg(b) FROM t2 WHERE b>=300900 AND b<301000; SELECT count(*), avg(b) FROM t2 WHERE b>=301000 AND b<301100; SELECT count(*), avg(b) FROM t2 WHERE b>=301100 AND b<301200; SELECT count(*), avg(b) FROM t2 WHERE b>=301200 AND b<301300; SELECT count(*), avg(b) FROM t2 WHERE b>=301300 AND b<301400; SELECT count(*), avg(b) FROM t2 WHERE b>=301400 AND b<301500; SELECT count(*), avg(b) FROM t2 WHERE b>=301500 AND b<301600; SELECT count(*), avg(b) FROM t2 WHERE b>=301600 AND b<301700; SELECT count(*), avg(b) FROM t2 WHERE b>=301700 AND b<301800; SELECT count(*), avg(b) FROM t2 WHERE b>=301800 AND b<301900; SELECT count(*), avg(b) FROM t2 WHERE b>=301900 AND b<302000; SELECT count(*), avg(b) FROM t2 WHERE b>=302000 AND b<302100; SELECT count(*), avg(b) FROM t2 WHERE b>=302100 AND b<302200; SELECT count(*), avg(b) FROM t2 WHERE b>=302200 AND b<302300; SELECT count(*), avg(b) FROM t2 WHERE b>=302300 AND b<302400; SELECT count(*), avg(b) FROM t2 WHERE b>=302400 AND b<302500; SELECT count(*), avg(b) FROM t2 WHERE b>=302500 AND b<302600; SELECT count(*), avg(b) FROM t2 WHERE b>=302600 AND b<302700; SELECT count(*), avg(b) FROM t2 WHERE b>=302700 AND b<302800; SELECT count(*), avg(b) FROM t2 WHERE b>=302800 AND b<302900; SELECT count(*), avg(b) FROM t2 WHERE b>=302900 AND b<303000; SELECT count(*), avg(b) FROM t2 WHERE b>=303000 AND b<303100; SELECT count(*), avg(b) FROM t2 WHERE b>=303100 AND b<303200; SELECT count(*), avg(b) FROM t2 WHERE b>=303200 AND b<303300; SELECT count(*), avg(b) FROM t2 WHERE b>=303300 AND b<303400; SELECT count(*), avg(b) FROM t2 WHERE b>=303400 AND b<303500; SELECT count(*), avg(b) FROM t2 WHERE b>=303500 AND b<303600; SELECT count(*), avg(b) FROM t2 WHERE b>=303600 AND b<303700; SELECT count(*), avg(b) FROM t2 WHERE b>=303700 AND b<303800; SELECT count(*), avg(b) FROM t2 WHERE b>=303800 AND b<303900; SELECT count(*), avg(b) FROM t2 WHERE b>=303900 AND b<304000; SELECT count(*), avg(b) FROM t2 WHERE b>=304000 AND b<304100; SELECT count(*), avg(b) FROM t2 WHERE b>=304100 AND b<304200; SELECT count(*), avg(b) FROM t2 WHERE b>=304200 AND b<304300; SELECT count(*), avg(b) FROM t2 WHERE b>=304300 AND b<304400; SELECT count(*), avg(b) FROM t2 WHERE b>=304400 AND b<304500; SELECT count(*), avg(b) FROM t2 WHERE b>=304500 AND b<304600; SELECT count(*), avg(b) FROM t2 WHERE b>=304600 AND b<304700; SELECT count(*), avg(b) FROM t2 WHERE b>=304700 AND b<304800; SELECT count(*), avg(b) FROM t2 WHERE b>=304800 AND b<304900; SELECT count(*), avg(b) FROM t2 WHERE b>=304900 AND b<305000; SELECT count(*), avg(b) FROM t2 WHERE b>=305000 AND b<305100; SELECT count(*), avg(b) FROM t2 WHERE b>=305100 AND b<305200; SELECT count(*), avg(b) FROM t2 WHERE b>=305200 AND b<305300; SELECT count(*), avg(b) FROM t2 WHERE b>=305300 AND b<305400; SELECT count(*), avg(b) FROM t2 WHERE b>=305400 AND b<305500; SELECT count(*), avg(b) FROM t2 WHERE b>=305500 AND b<305600; SELECT count(*), avg(b) FROM t2 WHERE b>=305600 AND b<305700; SELECT count(*), avg(b) FROM t2 WHERE b>=305700 AND b<305800; SELECT count(*), avg(b) FROM t2 WHERE b>=305800 AND b<305900; SELECT count(*), avg(b) FROM t2 WHERE b>=305900 AND b<306000; SELECT count(*), avg(b) FROM t2 WHERE b>=306000 AND b<306100; SELECT count(*), avg(b) FROM t2 WHERE b>=306100 AND b<306200; SELECT count(*), avg(b) FROM t2 WHERE b>=306200 AND b<306300; SELECT count(*), avg(b) FROM t2 WHERE b>=306300 AND b<306400; SELECT count(*), avg(b) FROM t2 WHERE b>=306400 AND b<306500; SELECT count(*), avg(b) FROM t2 WHERE b>=306500 AND b<306600; SELECT count(*), avg(b) FROM t2 WHERE b>=306600 AND b<306700; SELECT count(*), avg(b) FROM t2 WHERE b>=306700 AND b<306800; SELECT count(*), avg(b) FROM t2 WHERE b>=306800 AND b<306900; SELECT count(*), avg(b) FROM t2 WHERE b>=306900 AND b<307000; SELECT count(*), avg(b) FROM t2 WHERE b>=307000 AND b<307100; SELECT count(*), avg(b) FROM t2 WHERE b>=307100 AND b<307200; SELECT count(*), avg(b) FROM t2 WHERE b>=307200 AND b<307300; SELECT count(*), avg(b) FROM t2 WHERE b>=307300 AND b<307400; SELECT count(*), avg(b) FROM t2 WHERE b>=307400 AND b<307500; SELECT count(*), avg(b) FROM t2 WHERE b>=307500 AND b<307600; SELECT count(*), avg(b) FROM t2 WHERE b>=307600 AND b<307700; SELECT count(*), avg(b) FROM t2 WHERE b>=307700 AND b<307800; SELECT count(*), avg(b) FROM t2 WHERE b>=307800 AND b<307900; SELECT count(*), avg(b) FROM t2 WHERE b>=307900 AND b<308000; SELECT count(*), avg(b) FROM t2 WHERE b>=308000 AND b<308100; SELECT count(*), avg(b) FROM t2 WHERE b>=308100 AND b<308200; SELECT count(*), avg(b) FROM t2 WHERE b>=308200 AND b<308300; SELECT count(*), avg(b) FROM t2 WHERE b>=308300 AND b<308400; SELECT count(*), avg(b) FROM t2 WHERE b>=308400 AND b<308500; SELECT count(*), avg(b) FROM t2 WHERE b>=308500 AND b<308600; SELECT count(*), avg(b) FROM t2 WHERE b>=308600 AND b<308700; SELECT count(*), avg(b) FROM t2 WHERE b>=308700 AND b<308800; SELECT count(*), avg(b) FROM t2 WHERE b>=308800 AND b<308900; SELECT count(*), avg(b) FROM t2 WHERE b>=308900 AND b<309000; SELECT count(*), avg(b) FROM t2 WHERE b>=309000 AND b<309100; SELECT count(*), avg(b) FROM t2 WHERE b>=309100 AND b<309200; SELECT count(*), avg(b) FROM t2 WHERE b>=309200 AND b<309300; SELECT count(*), avg(b) FROM t2 WHERE b>=309300 AND b<309400; SELECT count(*), avg(b) FROM t2 WHERE b>=309400 AND b<309500; SELECT count(*), avg(b) FROM t2 WHERE b>=309500 AND b<309600; SELECT count(*), avg(b) FROM t2 WHERE b>=309600 AND b<309700; SELECT count(*), avg(b) FROM t2 WHERE b>=309700 AND b<309800; SELECT count(*), avg(b) FROM t2 WHERE b>=309800 AND b<309900; SELECT count(*), avg(b) FROM t2 WHERE b>=309900 AND b<310000; SELECT count(*), avg(b) FROM t2 WHERE b>=310000 AND b<310100; SELECT count(*), avg(b) FROM t2 WHERE b>=310100 AND b<310200; SELECT count(*), avg(b) FROM t2 WHERE b>=310200 AND b<310300; SELECT count(*), avg(b) FROM t2 WHERE b>=310300 AND b<310400; SELECT count(*), avg(b) FROM t2 WHERE b>=310400 AND b<310500; SELECT count(*), avg(b) FROM t2 WHERE b>=310500 AND b<310600; SELECT count(*), avg(b) FROM t2 WHERE b>=310600 AND b<310700; SELECT count(*), avg(b) FROM t2 WHERE b>=310700 AND b<310800; SELECT count(*), avg(b) FROM t2 WHERE b>=310800 AND b<310900; SELECT count(*), avg(b) FROM t2 WHERE b>=310900 AND b<311000; SELECT count(*), avg(b) FROM t2 WHERE b>=311000 AND b<311100; SELECT count(*), avg(b) FROM t2 WHERE b>=311100 AND b<311200; SELECT count(*), avg(b) FROM t2 WHERE b>=311200 AND b<311300; SELECT count(*), avg(b) FROM t2 WHERE b>=311300 AND b<311400; SELECT count(*), avg(b) FROM t2 WHERE b>=311400 AND b<311500; SELECT count(*), avg(b) FROM t2 WHERE b>=311500 AND b<311600; SELECT count(*), avg(b) FROM t2 WHERE b>=311600 AND b<311700; SELECT count(*), avg(b) FROM t2 WHERE b>=311700 AND b<311800; SELECT count(*), avg(b) FROM t2 WHERE b>=311800 AND b<311900; SELECT count(*), avg(b) FROM t2 WHERE b>=311900 AND b<312000; SELECT count(*), avg(b) FROM t2 WHERE b>=312000 AND b<312100; SELECT count(*), avg(b) FROM t2 WHERE b>=312100 AND b<312200; SELECT count(*), avg(b) FROM t2 WHERE b>=312200 AND b<312300; SELECT count(*), avg(b) FROM t2 WHERE b>=312300 AND b<312400; SELECT count(*), avg(b) FROM t2 WHERE b>=312400 AND b<312500; SELECT count(*), avg(b) FROM t2 WHERE b>=312500 AND b<312600; SELECT count(*), avg(b) FROM t2 WHERE b>=312600 AND b<312700; SELECT count(*), avg(b) FROM t2 WHERE b>=312700 AND b<312800; SELECT count(*), avg(b) FROM t2 WHERE b>=312800 AND b<312900; SELECT count(*), avg(b) FROM t2 WHERE b>=312900 AND b<313000; SELECT count(*), avg(b) FROM t2 WHERE b>=313000 AND b<313100; SELECT count(*), avg(b) FROM t2 WHERE b>=313100 AND b<313200; SELECT count(*), avg(b) FROM t2 WHERE b>=313200 AND b<313300; SELECT count(*), avg(b) FROM t2 WHERE b>=313300 AND b<313400; SELECT count(*), avg(b) FROM t2 WHERE b>=313400 AND b<313500; SELECT count(*), avg(b) FROM t2 WHERE b>=313500 AND b<313600; SELECT count(*), avg(b) FROM t2 WHERE b>=313600 AND b<313700; SELECT count(*), avg(b) FROM t2 WHERE b>=313700 AND b<313800; SELECT count(*), avg(b) FROM t2 WHERE b>=313800 AND b<313900; SELECT count(*), avg(b) FROM t2 WHERE b>=313900 AND b<314000; SELECT count(*), avg(b) FROM t2 WHERE b>=314000 AND b<314100; SELECT count(*), avg(b) FROM t2 WHERE b>=314100 AND b<314200; SELECT count(*), avg(b) FROM t2 WHERE b>=314200 AND b<314300; SELECT count(*), avg(b) FROM t2 WHERE b>=314300 AND b<314400; SELECT count(*), avg(b) FROM t2 WHERE b>=314400 AND b<314500; SELECT count(*), avg(b) FROM t2 WHERE b>=314500 AND b<314600; SELECT count(*), avg(b) FROM t2 WHERE b>=314600 AND b<314700; SELECT count(*), avg(b) FROM t2 WHERE b>=314700 AND b<314800; SELECT count(*), avg(b) FROM t2 WHERE b>=314800 AND b<314900; SELECT count(*), avg(b) FROM t2 WHERE b>=314900 AND b<315000; SELECT count(*), avg(b) FROM t2 WHERE b>=315000 AND b<315100; SELECT count(*), avg(b) FROM t2 WHERE b>=315100 AND b<315200; SELECT count(*), avg(b) FROM t2 WHERE b>=315200 AND b<315300; SELECT count(*), avg(b) FROM t2 WHERE b>=315300 AND b<315400; SELECT count(*), avg(b) FROM t2 WHERE b>=315400 AND b<315500; SELECT count(*), avg(b) FROM t2 WHERE b>=315500 AND b<315600; SELECT count(*), avg(b) FROM t2 WHERE b>=315600 AND b<315700; SELECT count(*), avg(b) FROM t2 WHERE b>=315700 AND b<315800; SELECT count(*), avg(b) FROM t2 WHERE b>=315800 AND b<315900; SELECT count(*), avg(b) FROM t2 WHERE b>=315900 AND b<316000; SELECT count(*), avg(b) FROM t2 WHERE b>=316000 AND b<316100; SELECT count(*), avg(b) FROM t2 WHERE b>=316100 AND b<316200; SELECT count(*), avg(b) FROM t2 WHERE b>=316200 AND b<316300; SELECT count(*), avg(b) FROM t2 WHERE b>=316300 AND b<316400; SELECT count(*), avg(b) FROM t2 WHERE b>=316400 AND b<316500; SELECT count(*), avg(b) FROM t2 WHERE b>=316500 AND b<316600; SELECT count(*), avg(b) FROM t2 WHERE b>=316600 AND b<316700; SELECT count(*), avg(b) FROM t2 WHERE b>=316700 AND b<316800; SELECT count(*), avg(b) FROM t2 WHERE b>=316800 AND b<316900; SELECT count(*), avg(b) FROM t2 WHERE b>=316900 AND b<317000; SELECT count(*), avg(b) FROM t2 WHERE b>=317000 AND b<317100; SELECT count(*), avg(b) FROM t2 WHERE b>=317100 AND b<317200; SELECT count(*), avg(b) FROM t2 WHERE b>=317200 AND b<317300; SELECT count(*), avg(b) FROM t2 WHERE b>=317300 AND b<317400; SELECT count(*), avg(b) FROM t2 WHERE b>=317400 AND b<317500; SELECT count(*), avg(b) FROM t2 WHERE b>=317500 AND b<317600; SELECT count(*), avg(b) FROM t2 WHERE b>=317600 AND b<317700; SELECT count(*), avg(b) FROM t2 WHERE b>=317700 AND b<317800; SELECT count(*), avg(b) FROM t2 WHERE b>=317800 AND b<317900; SELECT count(*), avg(b) FROM t2 WHERE b>=317900 AND b<318000; SELECT count(*), avg(b) FROM t2 WHERE b>=318000 AND b<318100; SELECT count(*), avg(b) FROM t2 WHERE b>=318100 AND b<318200; SELECT count(*), avg(b) FROM t2 WHERE b>=318200 AND b<318300; SELECT count(*), avg(b) FROM t2 WHERE b>=318300 AND b<318400; SELECT count(*), avg(b) FROM t2 WHERE b>=318400 AND b<318500; SELECT count(*), avg(b) FROM t2 WHERE b>=318500 AND b<318600; SELECT count(*), avg(b) FROM t2 WHERE b>=318600 AND b<318700; SELECT count(*), avg(b) FROM t2 WHERE b>=318700 AND b<318800; SELECT count(*), avg(b) FROM t2 WHERE b>=318800 AND b<318900; SELECT count(*), avg(b) FROM t2 WHERE b>=318900 AND b<319000; SELECT count(*), avg(b) FROM t2 WHERE b>=319000 AND b<319100; SELECT count(*), avg(b) FROM t2 WHERE b>=319100 AND b<319200; SELECT count(*), avg(b) FROM t2 WHERE b>=319200 AND b<319300; SELECT count(*), avg(b) FROM t2 WHERE b>=319300 AND b<319400; SELECT count(*), avg(b) FROM t2 WHERE b>=319400 AND b<319500; SELECT count(*), avg(b) FROM t2 WHERE b>=319500 AND b<319600; SELECT count(*), avg(b) FROM t2 WHERE b>=319600 AND b<319700; SELECT count(*), avg(b) FROM t2 WHERE b>=319700 AND b<319800; SELECT count(*), avg(b) FROM t2 WHERE b>=319800 AND b<319900; SELECT count(*), avg(b) FROM t2 WHERE b>=319900 AND b<320000; SELECT count(*), avg(b) FROM t2 WHERE b>=320000 AND b<320100; SELECT count(*), avg(b) FROM t2 WHERE b>=320100 AND b<320200; SELECT count(*), avg(b) FROM t2 WHERE b>=320200 AND b<320300; SELECT count(*), avg(b) FROM t2 WHERE b>=320300 AND b<320400; SELECT count(*), avg(b) FROM t2 WHERE b>=320400 AND b<320500; SELECT count(*), avg(b) FROM t2 WHERE b>=320500 AND b<320600; SELECT count(*), avg(b) FROM t2 WHERE b>=320600 AND b<320700; SELECT count(*), avg(b) FROM t2 WHERE b>=320700 AND b<320800; SELECT count(*), avg(b) FROM t2 WHERE b>=320800 AND b<320900; SELECT count(*), avg(b) FROM t2 WHERE b>=320900 AND b<321000; SELECT count(*), avg(b) FROM t2 WHERE b>=321000 AND b<321100; SELECT count(*), avg(b) FROM t2 WHERE b>=321100 AND b<321200; SELECT count(*), avg(b) FROM t2 WHERE b>=321200 AND b<321300; SELECT count(*), avg(b) FROM t2 WHERE b>=321300 AND b<321400; SELECT count(*), avg(b) FROM t2 WHERE b>=321400 AND b<321500; SELECT count(*), avg(b) FROM t2 WHERE b>=321500 AND b<321600; SELECT count(*), avg(b) FROM t2 WHERE b>=321600 AND b<321700; SELECT count(*), avg(b) FROM t2 WHERE b>=321700 AND b<321800; SELECT count(*), avg(b) FROM t2 WHERE b>=321800 AND b<321900; SELECT count(*), avg(b) FROM t2 WHERE b>=321900 AND b<322000; SELECT count(*), avg(b) FROM t2 WHERE b>=322000 AND b<322100; SELECT count(*), avg(b) FROM t2 WHERE b>=322100 AND b<322200; SELECT count(*), avg(b) FROM t2 WHERE b>=322200 AND b<322300; SELECT count(*), avg(b) FROM t2 WHERE b>=322300 AND b<322400; SELECT count(*), avg(b) FROM t2 WHERE b>=322400 AND b<322500; SELECT count(*), avg(b) FROM t2 WHERE b>=322500 AND b<322600; SELECT count(*), avg(b) FROM t2 WHERE b>=322600 AND b<322700; SELECT count(*), avg(b) FROM t2 WHERE b>=322700 AND b<322800; SELECT count(*), avg(b) FROM t2 WHERE b>=322800 AND b<322900; SELECT count(*), avg(b) FROM t2 WHERE b>=322900 AND b<323000; SELECT count(*), avg(b) FROM t2 WHERE b>=323000 AND b<323100; SELECT count(*), avg(b) FROM t2 WHERE b>=323100 AND b<323200; SELECT count(*), avg(b) FROM t2 WHERE b>=323200 AND b<323300; SELECT count(*), avg(b) FROM t2 WHERE b>=323300 AND b<323400; SELECT count(*), avg(b) FROM t2 WHERE b>=323400 AND b<323500; SELECT count(*), avg(b) FROM t2 WHERE b>=323500 AND b<323600; SELECT count(*), avg(b) FROM t2 WHERE b>=323600 AND b<323700; SELECT count(*), avg(b) FROM t2 WHERE b>=323700 AND b<323800; SELECT count(*), avg(b) FROM t2 WHERE b>=323800 AND b<323900; SELECT count(*), avg(b) FROM t2 WHERE b>=323900 AND b<324000; SELECT count(*), avg(b) FROM t2 WHERE b>=324000 AND b<324100; SELECT count(*), avg(b) FROM t2 WHERE b>=324100 AND b<324200; SELECT count(*), avg(b) FROM t2 WHERE b>=324200 AND b<324300; SELECT count(*), avg(b) FROM t2 WHERE b>=324300 AND b<324400; SELECT count(*), avg(b) FROM t2 WHERE b>=324400 AND b<324500; SELECT count(*), avg(b) FROM t2 WHERE b>=324500 AND b<324600; SELECT count(*), avg(b) FROM t2 WHERE b>=324600 AND b<324700; SELECT count(*), avg(b) FROM t2 WHERE b>=324700 AND b<324800; SELECT count(*), avg(b) FROM t2 WHERE b>=324800 AND b<324900; SELECT count(*), avg(b) FROM t2 WHERE b>=324900 AND b<325000; SELECT count(*), avg(b) FROM t2 WHERE b>=325000 AND b<325100; SELECT count(*), avg(b) FROM t2 WHERE b>=325100 AND b<325200; SELECT count(*), avg(b) FROM t2 WHERE b>=325200 AND b<325300; SELECT count(*), avg(b) FROM t2 WHERE b>=325300 AND b<325400; SELECT count(*), avg(b) FROM t2 WHERE b>=325400 AND b<325500; SELECT count(*), avg(b) FROM t2 WHERE b>=325500 AND b<325600; SELECT count(*), avg(b) FROM t2 WHERE b>=325600 AND b<325700; SELECT count(*), avg(b) FROM t2 WHERE b>=325700 AND b<325800; SELECT count(*), avg(b) FROM t2 WHERE b>=325800 AND b<325900; SELECT count(*), avg(b) FROM t2 WHERE b>=325900 AND b<326000; SELECT count(*), avg(b) FROM t2 WHERE b>=326000 AND b<326100; SELECT count(*), avg(b) FROM t2 WHERE b>=326100 AND b<326200; SELECT count(*), avg(b) FROM t2 WHERE b>=326200 AND b<326300; SELECT count(*), avg(b) FROM t2 WHERE b>=326300 AND b<326400; SELECT count(*), avg(b) FROM t2 WHERE b>=326400 AND b<326500; SELECT count(*), avg(b) FROM t2 WHERE b>=326500 AND b<326600; SELECT count(*), avg(b) FROM t2 WHERE b>=326600 AND b<326700; SELECT count(*), avg(b) FROM t2 WHERE b>=326700 AND b<326800; SELECT count(*), avg(b) FROM t2 WHERE b>=326800 AND b<326900; SELECT count(*), avg(b) FROM t2 WHERE b>=326900 AND b<327000; SELECT count(*), avg(b) FROM t2 WHERE b>=327000 AND b<327100; SELECT count(*), avg(b) FROM t2 WHERE b>=327100 AND b<327200; SELECT count(*), avg(b) FROM t2 WHERE b>=327200 AND b<327300; SELECT count(*), avg(b) FROM t2 WHERE b>=327300 AND b<327400; SELECT count(*), avg(b) FROM t2 WHERE b>=327400 AND b<327500; SELECT count(*), avg(b) FROM t2 WHERE b>=327500 AND b<327600; SELECT count(*), avg(b) FROM t2 WHERE b>=327600 AND b<327700; SELECT count(*), avg(b) FROM t2 WHERE b>=327700 AND b<327800; SELECT count(*), avg(b) FROM t2 WHERE b>=327800 AND b<327900; SELECT count(*), avg(b) FROM t2 WHERE b>=327900 AND b<328000; SELECT count(*), avg(b) FROM t2 WHERE b>=328000 AND b<328100; SELECT count(*), avg(b) FROM t2 WHERE b>=328100 AND b<328200; SELECT count(*), avg(b) FROM t2 WHERE b>=328200 AND b<328300; SELECT count(*), avg(b) FROM t2 WHERE b>=328300 AND b<328400; SELECT count(*), avg(b) FROM t2 WHERE b>=328400 AND b<328500; SELECT count(*), avg(b) FROM t2 WHERE b>=328500 AND b<328600; SELECT count(*), avg(b) FROM t2 WHERE b>=328600 AND b<328700; SELECT count(*), avg(b) FROM t2 WHERE b>=328700 AND b<328800; SELECT count(*), avg(b) FROM t2 WHERE b>=328800 AND b<328900; SELECT count(*), avg(b) FROM t2 WHERE b>=328900 AND b<329000; SELECT count(*), avg(b) FROM t2 WHERE b>=329000 AND b<329100; SELECT count(*), avg(b) FROM t2 WHERE b>=329100 AND b<329200; SELECT count(*), avg(b) FROM t2 WHERE b>=329200 AND b<329300; SELECT count(*), avg(b) FROM t2 WHERE b>=329300 AND b<329400; SELECT count(*), avg(b) FROM t2 WHERE b>=329400 AND b<329500; SELECT count(*), avg(b) FROM t2 WHERE b>=329500 AND b<329600; SELECT count(*), avg(b) FROM t2 WHERE b>=329600 AND b<329700; SELECT count(*), avg(b) FROM t2 WHERE b>=329700 AND b<329800; SELECT count(*), avg(b) FROM t2 WHERE b>=329800 AND b<329900; SELECT count(*), avg(b) FROM t2 WHERE b>=329900 AND b<330000; SELECT count(*), avg(b) FROM t2 WHERE b>=330000 AND b<330100; SELECT count(*), avg(b) FROM t2 WHERE b>=330100 AND b<330200; SELECT count(*), avg(b) FROM t2 WHERE b>=330200 AND b<330300; SELECT count(*), avg(b) FROM t2 WHERE b>=330300 AND b<330400; SELECT count(*), avg(b) FROM t2 WHERE b>=330400 AND b<330500; SELECT count(*), avg(b) FROM t2 WHERE b>=330500 AND b<330600; SELECT count(*), avg(b) FROM t2 WHERE b>=330600 AND b<330700; SELECT count(*), avg(b) FROM t2 WHERE b>=330700 AND b<330800; SELECT count(*), avg(b) FROM t2 WHERE b>=330800 AND b<330900; SELECT count(*), avg(b) FROM t2 WHERE b>=330900 AND b<331000; SELECT count(*), avg(b) FROM t2 WHERE b>=331000 AND b<331100; SELECT count(*), avg(b) FROM t2 WHERE b>=331100 AND b<331200; SELECT count(*), avg(b) FROM t2 WHERE b>=331200 AND b<331300; SELECT count(*), avg(b) FROM t2 WHERE b>=331300 AND b<331400; SELECT count(*), avg(b) FROM t2 WHERE b>=331400 AND b<331500; SELECT count(*), avg(b) FROM t2 WHERE b>=331500 AND b<331600; SELECT count(*), avg(b) FROM t2 WHERE b>=331600 AND b<331700; SELECT count(*), avg(b) FROM t2 WHERE b>=331700 AND b<331800; SELECT count(*), avg(b) FROM t2 WHERE b>=331800 AND b<331900; SELECT count(*), avg(b) FROM t2 WHERE b>=331900 AND b<332000; SELECT count(*), avg(b) FROM t2 WHERE b>=332000 AND b<332100; SELECT count(*), avg(b) FROM t2 WHERE b>=332100 AND b<332200; SELECT count(*), avg(b) FROM t2 WHERE b>=332200 AND b<332300; SELECT count(*), avg(b) FROM t2 WHERE b>=332300 AND b<332400; SELECT count(*), avg(b) FROM t2 WHERE b>=332400 AND b<332500; SELECT count(*), avg(b) FROM t2 WHERE b>=332500 AND b<332600; SELECT count(*), avg(b) FROM t2 WHERE b>=332600 AND b<332700; SELECT count(*), avg(b) FROM t2 WHERE b>=332700 AND b<332800; SELECT count(*), avg(b) FROM t2 WHERE b>=332800 AND b<332900; SELECT count(*), avg(b) FROM t2 WHERE b>=332900 AND b<333000; SELECT count(*), avg(b) FROM t2 WHERE b>=333000 AND b<333100; SELECT count(*), avg(b) FROM t2 WHERE b>=333100 AND b<333200; SELECT count(*), avg(b) FROM t2 WHERE b>=333200 AND b<333300; SELECT count(*), avg(b) FROM t2 WHERE b>=333300 AND b<333400; SELECT count(*), avg(b) FROM t2 WHERE b>=333400 AND b<333500; SELECT count(*), avg(b) FROM t2 WHERE b>=333500 AND b<333600; SELECT count(*), avg(b) FROM t2 WHERE b>=333600 AND b<333700; SELECT count(*), avg(b) FROM t2 WHERE b>=333700 AND b<333800; SELECT count(*), avg(b) FROM t2 WHERE b>=333800 AND b<333900; SELECT count(*), avg(b) FROM t2 WHERE b>=333900 AND b<334000; SELECT count(*), avg(b) FROM t2 WHERE b>=334000 AND b<334100; SELECT count(*), avg(b) FROM t2 WHERE b>=334100 AND b<334200; SELECT count(*), avg(b) FROM t2 WHERE b>=334200 AND b<334300; SELECT count(*), avg(b) FROM t2 WHERE b>=334300 AND b<334400; SELECT count(*), avg(b) FROM t2 WHERE b>=334400 AND b<334500; SELECT count(*), avg(b) FROM t2 WHERE b>=334500 AND b<334600; SELECT count(*), avg(b) FROM t2 WHERE b>=334600 AND b<334700; SELECT count(*), avg(b) FROM t2 WHERE b>=334700 AND b<334800; SELECT count(*), avg(b) FROM t2 WHERE b>=334800 AND b<334900; SELECT count(*), avg(b) FROM t2 WHERE b>=334900 AND b<335000; SELECT count(*), avg(b) FROM t2 WHERE b>=335000 AND b<335100; SELECT count(*), avg(b) FROM t2 WHERE b>=335100 AND b<335200; SELECT count(*), avg(b) FROM t2 WHERE b>=335200 AND b<335300; SELECT count(*), avg(b) FROM t2 WHERE b>=335300 AND b<335400; SELECT count(*), avg(b) FROM t2 WHERE b>=335400 AND b<335500; SELECT count(*), avg(b) FROM t2 WHERE b>=335500 AND b<335600; SELECT count(*), avg(b) FROM t2 WHERE b>=335600 AND b<335700; SELECT count(*), avg(b) FROM t2 WHERE b>=335700 AND b<335800; SELECT count(*), avg(b) FROM t2 WHERE b>=335800 AND b<335900; SELECT count(*), avg(b) FROM t2 WHERE b>=335900 AND b<336000; SELECT count(*), avg(b) FROM t2 WHERE b>=336000 AND b<336100; SELECT count(*), avg(b) FROM t2 WHERE b>=336100 AND b<336200; SELECT count(*), avg(b) FROM t2 WHERE b>=336200 AND b<336300; SELECT count(*), avg(b) FROM t2 WHERE b>=336300 AND b<336400; SELECT count(*), avg(b) FROM t2 WHERE b>=336400 AND b<336500; SELECT count(*), avg(b) FROM t2 WHERE b>=336500 AND b<336600; SELECT count(*), avg(b) FROM t2 WHERE b>=336600 AND b<336700; SELECT count(*), avg(b) FROM t2 WHERE b>=336700 AND b<336800; SELECT count(*), avg(b) FROM t2 WHERE b>=336800 AND b<336900; SELECT count(*), avg(b) FROM t2 WHERE b>=336900 AND b<337000; SELECT count(*), avg(b) FROM t2 WHERE b>=337000 AND b<337100; SELECT count(*), avg(b) FROM t2 WHERE b>=337100 AND b<337200; SELECT count(*), avg(b) FROM t2 WHERE b>=337200 AND b<337300; SELECT count(*), avg(b) FROM t2 WHERE b>=337300 AND b<337400; SELECT count(*), avg(b) FROM t2 WHERE b>=337400 AND b<337500; SELECT count(*), avg(b) FROM t2 WHERE b>=337500 AND b<337600; SELECT count(*), avg(b) FROM t2 WHERE b>=337600 AND b<337700; SELECT count(*), avg(b) FROM t2 WHERE b>=337700 AND b<337800; SELECT count(*), avg(b) FROM t2 WHERE b>=337800 AND b<337900; SELECT count(*), avg(b) FROM t2 WHERE b>=337900 AND b<338000; SELECT count(*), avg(b) FROM t2 WHERE b>=338000 AND b<338100; SELECT count(*), avg(b) FROM t2 WHERE b>=338100 AND b<338200; SELECT count(*), avg(b) FROM t2 WHERE b>=338200 AND b<338300; SELECT count(*), avg(b) FROM t2 WHERE b>=338300 AND b<338400; SELECT count(*), avg(b) FROM t2 WHERE b>=338400 AND b<338500; SELECT count(*), avg(b) FROM t2 WHERE b>=338500 AND b<338600; SELECT count(*), avg(b) FROM t2 WHERE b>=338600 AND b<338700; SELECT count(*), avg(b) FROM t2 WHERE b>=338700 AND b<338800; SELECT count(*), avg(b) FROM t2 WHERE b>=338800 AND b<338900; SELECT count(*), avg(b) FROM t2 WHERE b>=338900 AND b<339000; SELECT count(*), avg(b) FROM t2 WHERE b>=339000 AND b<339100; SELECT count(*), avg(b) FROM t2 WHERE b>=339100 AND b<339200; SELECT count(*), avg(b) FROM t2 WHERE b>=339200 AND b<339300; SELECT count(*), avg(b) FROM t2 WHERE b>=339300 AND b<339400; SELECT count(*), avg(b) FROM t2 WHERE b>=339400 AND b<339500; SELECT count(*), avg(b) FROM t2 WHERE b>=339500 AND b<339600; SELECT count(*), avg(b) FROM t2 WHERE b>=339600 AND b<339700; SELECT count(*), avg(b) FROM t2 WHERE b>=339700 AND b<339800; SELECT count(*), avg(b) FROM t2 WHERE b>=339800 AND b<339900; SELECT count(*), avg(b) FROM t2 WHERE b>=339900 AND b<340000; SELECT count(*), avg(b) FROM t2 WHERE b>=340000 AND b<340100; SELECT count(*), avg(b) FROM t2 WHERE b>=340100 AND b<340200; SELECT count(*), avg(b) FROM t2 WHERE b>=340200 AND b<340300; SELECT count(*), avg(b) FROM t2 WHERE b>=340300 AND b<340400; SELECT count(*), avg(b) FROM t2 WHERE b>=340400 AND b<340500; SELECT count(*), avg(b) FROM t2 WHERE b>=340500 AND b<340600; SELECT count(*), avg(b) FROM t2 WHERE b>=340600 AND b<340700; SELECT count(*), avg(b) FROM t2 WHERE b>=340700 AND b<340800; SELECT count(*), avg(b) FROM t2 WHERE b>=340800 AND b<340900; SELECT count(*), avg(b) FROM t2 WHERE b>=340900 AND b<341000; SELECT count(*), avg(b) FROM t2 WHERE b>=341000 AND b<341100; SELECT count(*), avg(b) FROM t2 WHERE b>=341100 AND b<341200; SELECT count(*), avg(b) FROM t2 WHERE b>=341200 AND b<341300; SELECT count(*), avg(b) FROM t2 WHERE b>=341300 AND b<341400; SELECT count(*), avg(b) FROM t2 WHERE b>=341400 AND b<341500; SELECT count(*), avg(b) FROM t2 WHERE b>=341500 AND b<341600; SELECT count(*), avg(b) FROM t2 WHERE b>=341600 AND b<341700; SELECT count(*), avg(b) FROM t2 WHERE b>=341700 AND b<341800; SELECT count(*), avg(b) FROM t2 WHERE b>=341800 AND b<341900; SELECT count(*), avg(b) FROM t2 WHERE b>=341900 AND b<342000; SELECT count(*), avg(b) FROM t2 WHERE b>=342000 AND b<342100; SELECT count(*), avg(b) FROM t2 WHERE b>=342100 AND b<342200; SELECT count(*), avg(b) FROM t2 WHERE b>=342200 AND b<342300; SELECT count(*), avg(b) FROM t2 WHERE b>=342300 AND b<342400; SELECT count(*), avg(b) FROM t2 WHERE b>=342400 AND b<342500; SELECT count(*), avg(b) FROM t2 WHERE b>=342500 AND b<342600; SELECT count(*), avg(b) FROM t2 WHERE b>=342600 AND b<342700; SELECT count(*), avg(b) FROM t2 WHERE b>=342700 AND b<342800; SELECT count(*), avg(b) FROM t2 WHERE b>=342800 AND b<342900; SELECT count(*), avg(b) FROM t2 WHERE b>=342900 AND b<343000; SELECT count(*), avg(b) FROM t2 WHERE b>=343000 AND b<343100; SELECT count(*), avg(b) FROM t2 WHERE b>=343100 AND b<343200; SELECT count(*), avg(b) FROM t2 WHERE b>=343200 AND b<343300; SELECT count(*), avg(b) FROM t2 WHERE b>=343300 AND b<343400; SELECT count(*), avg(b) FROM t2 WHERE b>=343400 AND b<343500; SELECT count(*), avg(b) FROM t2 WHERE b>=343500 AND b<343600; SELECT count(*), avg(b) FROM t2 WHERE b>=343600 AND b<343700; SELECT count(*), avg(b) FROM t2 WHERE b>=343700 AND b<343800; SELECT count(*), avg(b) FROM t2 WHERE b>=343800 AND b<343900; SELECT count(*), avg(b) FROM t2 WHERE b>=343900 AND b<344000; SELECT count(*), avg(b) FROM t2 WHERE b>=344000 AND b<344100; SELECT count(*), avg(b) FROM t2 WHERE b>=344100 AND b<344200; SELECT count(*), avg(b) FROM t2 WHERE b>=344200 AND b<344300; SELECT count(*), avg(b) FROM t2 WHERE b>=344300 AND b<344400; SELECT count(*), avg(b) FROM t2 WHERE b>=344400 AND b<344500; SELECT count(*), avg(b) FROM t2 WHERE b>=344500 AND b<344600; SELECT count(*), avg(b) FROM t2 WHERE b>=344600 AND b<344700; SELECT count(*), avg(b) FROM t2 WHERE b>=344700 AND b<344800; SELECT count(*), avg(b) FROM t2 WHERE b>=344800 AND b<344900; SELECT count(*), avg(b) FROM t2 WHERE b>=344900 AND b<345000; SELECT count(*), avg(b) FROM t2 WHERE b>=345000 AND b<345100; SELECT count(*), avg(b) FROM t2 WHERE b>=345100 AND b<345200; SELECT count(*), avg(b) FROM t2 WHERE b>=345200 AND b<345300; SELECT count(*), avg(b) FROM t2 WHERE b>=345300 AND b<345400; SELECT count(*), avg(b) FROM t2 WHERE b>=345400 AND b<345500; SELECT count(*), avg(b) FROM t2 WHERE b>=345500 AND b<345600; SELECT count(*), avg(b) FROM t2 WHERE b>=345600 AND b<345700; SELECT count(*), avg(b) FROM t2 WHERE b>=345700 AND b<345800; SELECT count(*), avg(b) FROM t2 WHERE b>=345800 AND b<345900; SELECT count(*), avg(b) FROM t2 WHERE b>=345900 AND b<346000; SELECT count(*), avg(b) FROM t2 WHERE b>=346000 AND b<346100; SELECT count(*), avg(b) FROM t2 WHERE b>=346100 AND b<346200; SELECT count(*), avg(b) FROM t2 WHERE b>=346200 AND b<346300; SELECT count(*), avg(b) FROM t2 WHERE b>=346300 AND b<346400; SELECT count(*), avg(b) FROM t2 WHERE b>=346400 AND b<346500; SELECT count(*), avg(b) FROM t2 WHERE b>=346500 AND b<346600; SELECT count(*), avg(b) FROM t2 WHERE b>=346600 AND b<346700; SELECT count(*), avg(b) FROM t2 WHERE b>=346700 AND b<346800; SELECT count(*), avg(b) FROM t2 WHERE b>=346800 AND b<346900; SELECT count(*), avg(b) FROM t2 WHERE b>=346900 AND b<347000; SELECT count(*), avg(b) FROM t2 WHERE b>=347000 AND b<347100; SELECT count(*), avg(b) FROM t2 WHERE b>=347100 AND b<347200; SELECT count(*), avg(b) FROM t2 WHERE b>=347200 AND b<347300; SELECT count(*), avg(b) FROM t2 WHERE b>=347300 AND b<347400; SELECT count(*), avg(b) FROM t2 WHERE b>=347400 AND b<347500; SELECT count(*), avg(b) FROM t2 WHERE b>=347500 AND b<347600; SELECT count(*), avg(b) FROM t2 WHERE b>=347600 AND b<347700; SELECT count(*), avg(b) FROM t2 WHERE b>=347700 AND b<347800; SELECT count(*), avg(b) FROM t2 WHERE b>=347800 AND b<347900; SELECT count(*), avg(b) FROM t2 WHERE b>=347900 AND b<348000; SELECT count(*), avg(b) FROM t2 WHERE b>=348000 AND b<348100; SELECT count(*), avg(b) FROM t2 WHERE b>=348100 AND b<348200; SELECT count(*), avg(b) FROM t2 WHERE b>=348200 AND b<348300; SELECT count(*), avg(b) FROM t2 WHERE b>=348300 AND b<348400; SELECT count(*), avg(b) FROM t2 WHERE b>=348400 AND b<348500; SELECT count(*), avg(b) FROM t2 WHERE b>=348500 AND b<348600; SELECT count(*), avg(b) FROM t2 WHERE b>=348600 AND b<348700; SELECT count(*), avg(b) FROM t2 WHERE b>=348700 AND b<348800; SELECT count(*), avg(b) FROM t2 WHERE b>=348800 AND b<348900; SELECT count(*), avg(b) FROM t2 WHERE b>=348900 AND b<349000; SELECT count(*), avg(b) FROM t2 WHERE b>=349000 AND b<349100; SELECT count(*), avg(b) FROM t2 WHERE b>=349100 AND b<349200; SELECT count(*), avg(b) FROM t2 WHERE b>=349200 AND b<349300; SELECT count(*), avg(b) FROM t2 WHERE b>=349300 AND b<349400; SELECT count(*), avg(b) FROM t2 WHERE b>=349400 AND b<349500; SELECT count(*), avg(b) FROM t2 WHERE b>=349500 AND b<349600; SELECT count(*), avg(b) FROM t2 WHERE b>=349600 AND b<349700; SELECT count(*), avg(b) FROM t2 WHERE b>=349700 AND b<349800; SELECT count(*), avg(b) FROM t2 WHERE b>=349800 AND b<349900; SELECT count(*), avg(b) FROM t2 WHERE b>=349900 AND b<350000; SELECT count(*), avg(b) FROM t2 WHERE b>=350000 AND b<350100; SELECT count(*), avg(b) FROM t2 WHERE b>=350100 AND b<350200; SELECT count(*), avg(b) FROM t2 WHERE b>=350200 AND b<350300; SELECT count(*), avg(b) FROM t2 WHERE b>=350300 AND b<350400; SELECT count(*), avg(b) FROM t2 WHERE b>=350400 AND b<350500; SELECT count(*), avg(b) FROM t2 WHERE b>=350500 AND b<350600; SELECT count(*), avg(b) FROM t2 WHERE b>=350600 AND b<350700; SELECT count(*), avg(b) FROM t2 WHERE b>=350700 AND b<350800; SELECT count(*), avg(b) FROM t2 WHERE b>=350800 AND b<350900; SELECT count(*), avg(b) FROM t2 WHERE b>=350900 AND b<351000; SELECT count(*), avg(b) FROM t2 WHERE b>=351000 AND b<351100; SELECT count(*), avg(b) FROM t2 WHERE b>=351100 AND b<351200; SELECT count(*), avg(b) FROM t2 WHERE b>=351200 AND b<351300; SELECT count(*), avg(b) FROM t2 WHERE b>=351300 AND b<351400; SELECT count(*), avg(b) FROM t2 WHERE b>=351400 AND b<351500; SELECT count(*), avg(b) FROM t2 WHERE b>=351500 AND b<351600; SELECT count(*), avg(b) FROM t2 WHERE b>=351600 AND b<351700; SELECT count(*), avg(b) FROM t2 WHERE b>=351700 AND b<351800; SELECT count(*), avg(b) FROM t2 WHERE b>=351800 AND b<351900; SELECT count(*), avg(b) FROM t2 WHERE b>=351900 AND b<352000; SELECT count(*), avg(b) FROM t2 WHERE b>=352000 AND b<352100; SELECT count(*), avg(b) FROM t2 WHERE b>=352100 AND b<352200; SELECT count(*), avg(b) FROM t2 WHERE b>=352200 AND b<352300; SELECT count(*), avg(b) FROM t2 WHERE b>=352300 AND b<352400; SELECT count(*), avg(b) FROM t2 WHERE b>=352400 AND b<352500; SELECT count(*), avg(b) FROM t2 WHERE b>=352500 AND b<352600; SELECT count(*), avg(b) FROM t2 WHERE b>=352600 AND b<352700; SELECT count(*), avg(b) FROM t2 WHERE b>=352700 AND b<352800; SELECT count(*), avg(b) FROM t2 WHERE b>=352800 AND b<352900; SELECT count(*), avg(b) FROM t2 WHERE b>=352900 AND b<353000; SELECT count(*), avg(b) FROM t2 WHERE b>=353000 AND b<353100; SELECT count(*), avg(b) FROM t2 WHERE b>=353100 AND b<353200; SELECT count(*), avg(b) FROM t2 WHERE b>=353200 AND b<353300; SELECT count(*), avg(b) FROM t2 WHERE b>=353300 AND b<353400; SELECT count(*), avg(b) FROM t2 WHERE b>=353400 AND b<353500; SELECT count(*), avg(b) FROM t2 WHERE b>=353500 AND b<353600; SELECT count(*), avg(b) FROM t2 WHERE b>=353600 AND b<353700; SELECT count(*), avg(b) FROM t2 WHERE b>=353700 AND b<353800; SELECT count(*), avg(b) FROM t2 WHERE b>=353800 AND b<353900; SELECT count(*), avg(b) FROM t2 WHERE b>=353900 AND b<354000; SELECT count(*), avg(b) FROM t2 WHERE b>=354000 AND b<354100; SELECT count(*), avg(b) FROM t2 WHERE b>=354100 AND b<354200; SELECT count(*), avg(b) FROM t2 WHERE b>=354200 AND b<354300; SELECT count(*), avg(b) FROM t2 WHERE b>=354300 AND b<354400; SELECT count(*), avg(b) FROM t2 WHERE b>=354400 AND b<354500; SELECT count(*), avg(b) FROM t2 WHERE b>=354500 AND b<354600; SELECT count(*), avg(b) FROM t2 WHERE b>=354600 AND b<354700; SELECT count(*), avg(b) FROM t2 WHERE b>=354700 AND b<354800; SELECT count(*), avg(b) FROM t2 WHERE b>=354800 AND b<354900; SELECT count(*), avg(b) FROM t2 WHERE b>=354900 AND b<355000; SELECT count(*), avg(b) FROM t2 WHERE b>=355000 AND b<355100; SELECT count(*), avg(b) FROM t2 WHERE b>=355100 AND b<355200; SELECT count(*), avg(b) FROM t2 WHERE b>=355200 AND b<355300; SELECT count(*), avg(b) FROM t2 WHERE b>=355300 AND b<355400; SELECT count(*), avg(b) FROM t2 WHERE b>=355400 AND b<355500; SELECT count(*), avg(b) FROM t2 WHERE b>=355500 AND b<355600; SELECT count(*), avg(b) FROM t2 WHERE b>=355600 AND b<355700; SELECT count(*), avg(b) FROM t2 WHERE b>=355700 AND b<355800; SELECT count(*), avg(b) FROM t2 WHERE b>=355800 AND b<355900; SELECT count(*), avg(b) FROM t2 WHERE b>=355900 AND b<356000; SELECT count(*), avg(b) FROM t2 WHERE b>=356000 AND b<356100; SELECT count(*), avg(b) FROM t2 WHERE b>=356100 AND b<356200; SELECT count(*), avg(b) FROM t2 WHERE b>=356200 AND b<356300; SELECT count(*), avg(b) FROM t2 WHERE b>=356300 AND b<356400; SELECT count(*), avg(b) FROM t2 WHERE b>=356400 AND b<356500; SELECT count(*), avg(b) FROM t2 WHERE b>=356500 AND b<356600; SELECT count(*), avg(b) FROM t2 WHERE b>=356600 AND b<356700; SELECT count(*), avg(b) FROM t2 WHERE b>=356700 AND b<356800; SELECT count(*), avg(b) FROM t2 WHERE b>=356800 AND b<356900; SELECT count(*), avg(b) FROM t2 WHERE b>=356900 AND b<357000; SELECT count(*), avg(b) FROM t2 WHERE b>=357000 AND b<357100; SELECT count(*), avg(b) FROM t2 WHERE b>=357100 AND b<357200; SELECT count(*), avg(b) FROM t2 WHERE b>=357200 AND b<357300; SELECT count(*), avg(b) FROM t2 WHERE b>=357300 AND b<357400; SELECT count(*), avg(b) FROM t2 WHERE b>=357400 AND b<357500; SELECT count(*), avg(b) FROM t2 WHERE b>=357500 AND b<357600; SELECT count(*), avg(b) FROM t2 WHERE b>=357600 AND b<357700; SELECT count(*), avg(b) FROM t2 WHERE b>=357700 AND b<357800; SELECT count(*), avg(b) FROM t2 WHERE b>=357800 AND b<357900; SELECT count(*), avg(b) FROM t2 WHERE b>=357900 AND b<358000; SELECT count(*), avg(b) FROM t2 WHERE b>=358000 AND b<358100; SELECT count(*), avg(b) FROM t2 WHERE b>=358100 AND b<358200; SELECT count(*), avg(b) FROM t2 WHERE b>=358200 AND b<358300; SELECT count(*), avg(b) FROM t2 WHERE b>=358300 AND b<358400; SELECT count(*), avg(b) FROM t2 WHERE b>=358400 AND b<358500; SELECT count(*), avg(b) FROM t2 WHERE b>=358500 AND b<358600; SELECT count(*), avg(b) FROM t2 WHERE b>=358600 AND b<358700; SELECT count(*), avg(b) FROM t2 WHERE b>=358700 AND b<358800; SELECT count(*), avg(b) FROM t2 WHERE b>=358800 AND b<358900; SELECT count(*), avg(b) FROM t2 WHERE b>=358900 AND b<359000; SELECT count(*), avg(b) FROM t2 WHERE b>=359000 AND b<359100; SELECT count(*), avg(b) FROM t2 WHERE b>=359100 AND b<359200; SELECT count(*), avg(b) FROM t2 WHERE b>=359200 AND b<359300; SELECT count(*), avg(b) FROM t2 WHERE b>=359300 AND b<359400; SELECT count(*), avg(b) FROM t2 WHERE b>=359400 AND b<359500; SELECT count(*), avg(b) FROM t2 WHERE b>=359500 AND b<359600; SELECT count(*), avg(b) FROM t2 WHERE b>=359600 AND b<359700; SELECT count(*), avg(b) FROM t2 WHERE b>=359700 AND b<359800; SELECT count(*), avg(b) FROM t2 WHERE b>=359800 AND b<359900; SELECT count(*), avg(b) FROM t2 WHERE b>=359900 AND b<360000; SELECT count(*), avg(b) FROM t2 WHERE b>=360000 AND b<360100; SELECT count(*), avg(b) FROM t2 WHERE b>=360100 AND b<360200; SELECT count(*), avg(b) FROM t2 WHERE b>=360200 AND b<360300; SELECT count(*), avg(b) FROM t2 WHERE b>=360300 AND b<360400; SELECT count(*), avg(b) FROM t2 WHERE b>=360400 AND b<360500; SELECT count(*), avg(b) FROM t2 WHERE b>=360500 AND b<360600; SELECT count(*), avg(b) FROM t2 WHERE b>=360600 AND b<360700; SELECT count(*), avg(b) FROM t2 WHERE b>=360700 AND b<360800; SELECT count(*), avg(b) FROM t2 WHERE b>=360800 AND b<360900; SELECT count(*), avg(b) FROM t2 WHERE b>=360900 AND b<361000; SELECT count(*), avg(b) FROM t2 WHERE b>=361000 AND b<361100; SELECT count(*), avg(b) FROM t2 WHERE b>=361100 AND b<361200; SELECT count(*), avg(b) FROM t2 WHERE b>=361200 AND b<361300; SELECT count(*), avg(b) FROM t2 WHERE b>=361300 AND b<361400; SELECT count(*), avg(b) FROM t2 WHERE b>=361400 AND b<361500; SELECT count(*), avg(b) FROM t2 WHERE b>=361500 AND b<361600; SELECT count(*), avg(b) FROM t2 WHERE b>=361600 AND b<361700; SELECT count(*), avg(b) FROM t2 WHERE b>=361700 AND b<361800; SELECT count(*), avg(b) FROM t2 WHERE b>=361800 AND b<361900; SELECT count(*), avg(b) FROM t2 WHERE b>=361900 AND b<362000; SELECT count(*), avg(b) FROM t2 WHERE b>=362000 AND b<362100; SELECT count(*), avg(b) FROM t2 WHERE b>=362100 AND b<362200; SELECT count(*), avg(b) FROM t2 WHERE b>=362200 AND b<362300; SELECT count(*), avg(b) FROM t2 WHERE b>=362300 AND b<362400; SELECT count(*), avg(b) FROM t2 WHERE b>=362400 AND b<362500; SELECT count(*), avg(b) FROM t2 WHERE b>=362500 AND b<362600; SELECT count(*), avg(b) FROM t2 WHERE b>=362600 AND b<362700; SELECT count(*), avg(b) FROM t2 WHERE b>=362700 AND b<362800; SELECT count(*), avg(b) FROM t2 WHERE b>=362800 AND b<362900; SELECT count(*), avg(b) FROM t2 WHERE b>=362900 AND b<363000; SELECT count(*), avg(b) FROM t2 WHERE b>=363000 AND b<363100; SELECT count(*), avg(b) FROM t2 WHERE b>=363100 AND b<363200; SELECT count(*), avg(b) FROM t2 WHERE b>=363200 AND b<363300; SELECT count(*), avg(b) FROM t2 WHERE b>=363300 AND b<363400; SELECT count(*), avg(b) FROM t2 WHERE b>=363400 AND b<363500; SELECT count(*), avg(b) FROM t2 WHERE b>=363500 AND b<363600; SELECT count(*), avg(b) FROM t2 WHERE b>=363600 AND b<363700; SELECT count(*), avg(b) FROM t2 WHERE b>=363700 AND b<363800; SELECT count(*), avg(b) FROM t2 WHERE b>=363800 AND b<363900; SELECT count(*), avg(b) FROM t2 WHERE b>=363900 AND b<364000; SELECT count(*), avg(b) FROM t2 WHERE b>=364000 AND b<364100; SELECT count(*), avg(b) FROM t2 WHERE b>=364100 AND b<364200; SELECT count(*), avg(b) FROM t2 WHERE b>=364200 AND b<364300; SELECT count(*), avg(b) FROM t2 WHERE b>=364300 AND b<364400; SELECT count(*), avg(b) FROM t2 WHERE b>=364400 AND b<364500; SELECT count(*), avg(b) FROM t2 WHERE b>=364500 AND b<364600; SELECT count(*), avg(b) FROM t2 WHERE b>=364600 AND b<364700; SELECT count(*), avg(b) FROM t2 WHERE b>=364700 AND b<364800; SELECT count(*), avg(b) FROM t2 WHERE b>=364800 AND b<364900; SELECT count(*), avg(b) FROM t2 WHERE b>=364900 AND b<365000; SELECT count(*), avg(b) FROM t2 WHERE b>=365000 AND b<365100; SELECT count(*), avg(b) FROM t2 WHERE b>=365100 AND b<365200; SELECT count(*), avg(b) FROM t2 WHERE b>=365200 AND b<365300; SELECT count(*), avg(b) FROM t2 WHERE b>=365300 AND b<365400; SELECT count(*), avg(b) FROM t2 WHERE b>=365400 AND b<365500; SELECT count(*), avg(b) FROM t2 WHERE b>=365500 AND b<365600; SELECT count(*), avg(b) FROM t2 WHERE b>=365600 AND b<365700; SELECT count(*), avg(b) FROM t2 WHERE b>=365700 AND b<365800; SELECT count(*), avg(b) FROM t2 WHERE b>=365800 AND b<365900; SELECT count(*), avg(b) FROM t2 WHERE b>=365900 AND b<366000; SELECT count(*), avg(b) FROM t2 WHERE b>=366000 AND b<366100; SELECT count(*), avg(b) FROM t2 WHERE b>=366100 AND b<366200; SELECT count(*), avg(b) FROM t2 WHERE b>=366200 AND b<366300; SELECT count(*), avg(b) FROM t2 WHERE b>=366300 AND b<366400; SELECT count(*), avg(b) FROM t2 WHERE b>=366400 AND b<366500; SELECT count(*), avg(b) FROM t2 WHERE b>=366500 AND b<366600; SELECT count(*), avg(b) FROM t2 WHERE b>=366600 AND b<366700; SELECT count(*), avg(b) FROM t2 WHERE b>=366700 AND b<366800; SELECT count(*), avg(b) FROM t2 WHERE b>=366800 AND b<366900; SELECT count(*), avg(b) FROM t2 WHERE b>=366900 AND b<367000; SELECT count(*), avg(b) FROM t2 WHERE b>=367000 AND b<367100; SELECT count(*), avg(b) FROM t2 WHERE b>=367100 AND b<367200; SELECT count(*), avg(b) FROM t2 WHERE b>=367200 AND b<367300; SELECT count(*), avg(b) FROM t2 WHERE b>=367300 AND b<367400; SELECT count(*), avg(b) FROM t2 WHERE b>=367400 AND b<367500; SELECT count(*), avg(b) FROM t2 WHERE b>=367500 AND b<367600; SELECT count(*), avg(b) FROM t2 WHERE b>=367600 AND b<367700; SELECT count(*), avg(b) FROM t2 WHERE b>=367700 AND b<367800; SELECT count(*), avg(b) FROM t2 WHERE b>=367800 AND b<367900; SELECT count(*), avg(b) FROM t2 WHERE b>=367900 AND b<368000; SELECT count(*), avg(b) FROM t2 WHERE b>=368000 AND b<368100; SELECT count(*), avg(b) FROM t2 WHERE b>=368100 AND b<368200; SELECT count(*), avg(b) FROM t2 WHERE b>=368200 AND b<368300; SELECT count(*), avg(b) FROM t2 WHERE b>=368300 AND b<368400; SELECT count(*), avg(b) FROM t2 WHERE b>=368400 AND b<368500; SELECT count(*), avg(b) FROM t2 WHERE b>=368500 AND b<368600; SELECT count(*), avg(b) FROM t2 WHERE b>=368600 AND b<368700; SELECT count(*), avg(b) FROM t2 WHERE b>=368700 AND b<368800; SELECT count(*), avg(b) FROM t2 WHERE b>=368800 AND b<368900; SELECT count(*), avg(b) FROM t2 WHERE b>=368900 AND b<369000; SELECT count(*), avg(b) FROM t2 WHERE b>=369000 AND b<369100; SELECT count(*), avg(b) FROM t2 WHERE b>=369100 AND b<369200; SELECT count(*), avg(b) FROM t2 WHERE b>=369200 AND b<369300; SELECT count(*), avg(b) FROM t2 WHERE b>=369300 AND b<369400; SELECT count(*), avg(b) FROM t2 WHERE b>=369400 AND b<369500; SELECT count(*), avg(b) FROM t2 WHERE b>=369500 AND b<369600; SELECT count(*), avg(b) FROM t2 WHERE b>=369600 AND b<369700; SELECT count(*), avg(b) FROM t2 WHERE b>=369700 AND b<369800; SELECT count(*), avg(b) FROM t2 WHERE b>=369800 AND b<369900; SELECT count(*), avg(b) FROM t2 WHERE b>=369900 AND b<370000; SELECT count(*), avg(b) FROM t2 WHERE b>=370000 AND b<370100; SELECT count(*), avg(b) FROM t2 WHERE b>=370100 AND b<370200; SELECT count(*), avg(b) FROM t2 WHERE b>=370200 AND b<370300; SELECT count(*), avg(b) FROM t2 WHERE b>=370300 AND b<370400; SELECT count(*), avg(b) FROM t2 WHERE b>=370400 AND b<370500; SELECT count(*), avg(b) FROM t2 WHERE b>=370500 AND b<370600; SELECT count(*), avg(b) FROM t2 WHERE b>=370600 AND b<370700; SELECT count(*), avg(b) FROM t2 WHERE b>=370700 AND b<370800; SELECT count(*), avg(b) FROM t2 WHERE b>=370800 AND b<370900; SELECT count(*), avg(b) FROM t2 WHERE b>=370900 AND b<371000; SELECT count(*), avg(b) FROM t2 WHERE b>=371000 AND b<371100; SELECT count(*), avg(b) FROM t2 WHERE b>=371100 AND b<371200; SELECT count(*), avg(b) FROM t2 WHERE b>=371200 AND b<371300; SELECT count(*), avg(b) FROM t2 WHERE b>=371300 AND b<371400; SELECT count(*), avg(b) FROM t2 WHERE b>=371400 AND b<371500; SELECT count(*), avg(b) FROM t2 WHERE b>=371500 AND b<371600; SELECT count(*), avg(b) FROM t2 WHERE b>=371600 AND b<371700; SELECT count(*), avg(b) FROM t2 WHERE b>=371700 AND b<371800; SELECT count(*), avg(b) FROM t2 WHERE b>=371800 AND b<371900; SELECT count(*), avg(b) FROM t2 WHERE b>=371900 AND b<372000; SELECT count(*), avg(b) FROM t2 WHERE b>=372000 AND b<372100; SELECT count(*), avg(b) FROM t2 WHERE b>=372100 AND b<372200; SELECT count(*), avg(b) FROM t2 WHERE b>=372200 AND b<372300; SELECT count(*), avg(b) FROM t2 WHERE b>=372300 AND b<372400; SELECT count(*), avg(b) FROM t2 WHERE b>=372400 AND b<372500; SELECT count(*), avg(b) FROM t2 WHERE b>=372500 AND b<372600; SELECT count(*), avg(b) FROM t2 WHERE b>=372600 AND b<372700; SELECT count(*), avg(b) FROM t2 WHERE b>=372700 AND b<372800; SELECT count(*), avg(b) FROM t2 WHERE b>=372800 AND b<372900; SELECT count(*), avg(b) FROM t2 WHERE b>=372900 AND b<373000; SELECT count(*), avg(b) FROM t2 WHERE b>=373000 AND b<373100; SELECT count(*), avg(b) FROM t2 WHERE b>=373100 AND b<373200; SELECT count(*), avg(b) FROM t2 WHERE b>=373200 AND b<373300; SELECT count(*), avg(b) FROM t2 WHERE b>=373300 AND b<373400; SELECT count(*), avg(b) FROM t2 WHERE b>=373400 AND b<373500; SELECT count(*), avg(b) FROM t2 WHERE b>=373500 AND b<373600; SELECT count(*), avg(b) FROM t2 WHERE b>=373600 AND b<373700; SELECT count(*), avg(b) FROM t2 WHERE b>=373700 AND b<373800; SELECT count(*), avg(b) FROM t2 WHERE b>=373800 AND b<373900; SELECT count(*), avg(b) FROM t2 WHERE b>=373900 AND b<374000; SELECT count(*), avg(b) FROM t2 WHERE b>=374000 AND b<374100; SELECT count(*), avg(b) FROM t2 WHERE b>=374100 AND b<374200; SELECT count(*), avg(b) FROM t2 WHERE b>=374200 AND b<374300; SELECT count(*), avg(b) FROM t2 WHERE b>=374300 AND b<374400; SELECT count(*), avg(b) FROM t2 WHERE b>=374400 AND b<374500; SELECT count(*), avg(b) FROM t2 WHERE b>=374500 AND b<374600; SELECT count(*), avg(b) FROM t2 WHERE b>=374600 AND b<374700; SELECT count(*), avg(b) FROM t2 WHERE b>=374700 AND b<374800; SELECT count(*), avg(b) FROM t2 WHERE b>=374800 AND b<374900; SELECT count(*), avg(b) FROM t2 WHERE b>=374900 AND b<375000; SELECT count(*), avg(b) FROM t2 WHERE b>=375000 AND b<375100; SELECT count(*), avg(b) FROM t2 WHERE b>=375100 AND b<375200; SELECT count(*), avg(b) FROM t2 WHERE b>=375200 AND b<375300; SELECT count(*), avg(b) FROM t2 WHERE b>=375300 AND b<375400; SELECT count(*), avg(b) FROM t2 WHERE b>=375400 AND b<375500; SELECT count(*), avg(b) FROM t2 WHERE b>=375500 AND b<375600; SELECT count(*), avg(b) FROM t2 WHERE b>=375600 AND b<375700; SELECT count(*), avg(b) FROM t2 WHERE b>=375700 AND b<375800; SELECT count(*), avg(b) FROM t2 WHERE b>=375800 AND b<375900; SELECT count(*), avg(b) FROM t2 WHERE b>=375900 AND b<376000; SELECT count(*), avg(b) FROM t2 WHERE b>=376000 AND b<376100; SELECT count(*), avg(b) FROM t2 WHERE b>=376100 AND b<376200; SELECT count(*), avg(b) FROM t2 WHERE b>=376200 AND b<376300; SELECT count(*), avg(b) FROM t2 WHERE b>=376300 AND b<376400; SELECT count(*), avg(b) FROM t2 WHERE b>=376400 AND b<376500; SELECT count(*), avg(b) FROM t2 WHERE b>=376500 AND b<376600; SELECT count(*), avg(b) FROM t2 WHERE b>=376600 AND b<376700; SELECT count(*), avg(b) FROM t2 WHERE b>=376700 AND b<376800; SELECT count(*), avg(b) FROM t2 WHERE b>=376800 AND b<376900; SELECT count(*), avg(b) FROM t2 WHERE b>=376900 AND b<377000; SELECT count(*), avg(b) FROM t2 WHERE b>=377000 AND b<377100; SELECT count(*), avg(b) FROM t2 WHERE b>=377100 AND b<377200; SELECT count(*), avg(b) FROM t2 WHERE b>=377200 AND b<377300; SELECT count(*), avg(b) FROM t2 WHERE b>=377300 AND b<377400; SELECT count(*), avg(b) FROM t2 WHERE b>=377400 AND b<377500; SELECT count(*), avg(b) FROM t2 WHERE b>=377500 AND b<377600; SELECT count(*), avg(b) FROM t2 WHERE b>=377600 AND b<377700; SELECT count(*), avg(b) FROM t2 WHERE b>=377700 AND b<377800; SELECT count(*), avg(b) FROM t2 WHERE b>=377800 AND b<377900; SELECT count(*), avg(b) FROM t2 WHERE b>=377900 AND b<378000; SELECT count(*), avg(b) FROM t2 WHERE b>=378000 AND b<378100; SELECT count(*), avg(b) FROM t2 WHERE b>=378100 AND b<378200; SELECT count(*), avg(b) FROM t2 WHERE b>=378200 AND b<378300; SELECT count(*), avg(b) FROM t2 WHERE b>=378300 AND b<378400; SELECT count(*), avg(b) FROM t2 WHERE b>=378400 AND b<378500; SELECT count(*), avg(b) FROM t2 WHERE b>=378500 AND b<378600; SELECT count(*), avg(b) FROM t2 WHERE b>=378600 AND b<378700; SELECT count(*), avg(b) FROM t2 WHERE b>=378700 AND b<378800; SELECT count(*), avg(b) FROM t2 WHERE b>=378800 AND b<378900; SELECT count(*), avg(b) FROM t2 WHERE b>=378900 AND b<379000; SELECT count(*), avg(b) FROM t2 WHERE b>=379000 AND b<379100; SELECT count(*), avg(b) FROM t2 WHERE b>=379100 AND b<379200; SELECT count(*), avg(b) FROM t2 WHERE b>=379200 AND b<379300; SELECT count(*), avg(b) FROM t2 WHERE b>=379300 AND b<379400; SELECT count(*), avg(b) FROM t2 WHERE b>=379400 AND b<379500; SELECT count(*), avg(b) FROM t2 WHERE b>=379500 AND b<379600; SELECT count(*), avg(b) FROM t2 WHERE b>=379600 AND b<379700; SELECT count(*), avg(b) FROM t2 WHERE b>=379700 AND b<379800; SELECT count(*), avg(b) FROM t2 WHERE b>=379800 AND b<379900; SELECT count(*), avg(b) FROM t2 WHERE b>=379900 AND b<380000; SELECT count(*), avg(b) FROM t2 WHERE b>=380000 AND b<380100; SELECT count(*), avg(b) FROM t2 WHERE b>=380100 AND b<380200; SELECT count(*), avg(b) FROM t2 WHERE b>=380200 AND b<380300; SELECT count(*), avg(b) FROM t2 WHERE b>=380300 AND b<380400; SELECT count(*), avg(b) FROM t2 WHERE b>=380400 AND b<380500; SELECT count(*), avg(b) FROM t2 WHERE b>=380500 AND b<380600; SELECT count(*), avg(b) FROM t2 WHERE b>=380600 AND b<380700; SELECT count(*), avg(b) FROM t2 WHERE b>=380700 AND b<380800; SELECT count(*), avg(b) FROM t2 WHERE b>=380800 AND b<380900; SELECT count(*), avg(b) FROM t2 WHERE b>=380900 AND b<381000; SELECT count(*), avg(b) FROM t2 WHERE b>=381000 AND b<381100; SELECT count(*), avg(b) FROM t2 WHERE b>=381100 AND b<381200; SELECT count(*), avg(b) FROM t2 WHERE b>=381200 AND b<381300; SELECT count(*), avg(b) FROM t2 WHERE b>=381300 AND b<381400; SELECT count(*), avg(b) FROM t2 WHERE b>=381400 AND b<381500; SELECT count(*), avg(b) FROM t2 WHERE b>=381500 AND b<381600; SELECT count(*), avg(b) FROM t2 WHERE b>=381600 AND b<381700; SELECT count(*), avg(b) FROM t2 WHERE b>=381700 AND b<381800; SELECT count(*), avg(b) FROM t2 WHERE b>=381800 AND b<381900; SELECT count(*), avg(b) FROM t2 WHERE b>=381900 AND b<382000; SELECT count(*), avg(b) FROM t2 WHERE b>=382000 AND b<382100; SELECT count(*), avg(b) FROM t2 WHERE b>=382100 AND b<382200; SELECT count(*), avg(b) FROM t2 WHERE b>=382200 AND b<382300; SELECT count(*), avg(b) FROM t2 WHERE b>=382300 AND b<382400; SELECT count(*), avg(b) FROM t2 WHERE b>=382400 AND b<382500; SELECT count(*), avg(b) FROM t2 WHERE b>=382500 AND b<382600; SELECT count(*), avg(b) FROM t2 WHERE b>=382600 AND b<382700; SELECT count(*), avg(b) FROM t2 WHERE b>=382700 AND b<382800; SELECT count(*), avg(b) FROM t2 WHERE b>=382800 AND b<382900; SELECT count(*), avg(b) FROM t2 WHERE b>=382900 AND b<383000; SELECT count(*), avg(b) FROM t2 WHERE b>=383000 AND b<383100; SELECT count(*), avg(b) FROM t2 WHERE b>=383100 AND b<383200; SELECT count(*), avg(b) FROM t2 WHERE b>=383200 AND b<383300; SELECT count(*), avg(b) FROM t2 WHERE b>=383300 AND b<383400; SELECT count(*), avg(b) FROM t2 WHERE b>=383400 AND b<383500; SELECT count(*), avg(b) FROM t2 WHERE b>=383500 AND b<383600; SELECT count(*), avg(b) FROM t2 WHERE b>=383600 AND b<383700; SELECT count(*), avg(b) FROM t2 WHERE b>=383700 AND b<383800; SELECT count(*), avg(b) FROM t2 WHERE b>=383800 AND b<383900; SELECT count(*), avg(b) FROM t2 WHERE b>=383900 AND b<384000; SELECT count(*), avg(b) FROM t2 WHERE b>=384000 AND b<384100; SELECT count(*), avg(b) FROM t2 WHERE b>=384100 AND b<384200; SELECT count(*), avg(b) FROM t2 WHERE b>=384200 AND b<384300; SELECT count(*), avg(b) FROM t2 WHERE b>=384300 AND b<384400; SELECT count(*), avg(b) FROM t2 WHERE b>=384400 AND b<384500; SELECT count(*), avg(b) FROM t2 WHERE b>=384500 AND b<384600; SELECT count(*), avg(b) FROM t2 WHERE b>=384600 AND b<384700; SELECT count(*), avg(b) FROM t2 WHERE b>=384700 AND b<384800; SELECT count(*), avg(b) FROM t2 WHERE b>=384800 AND b<384900; SELECT count(*), avg(b) FROM t2 WHERE b>=384900 AND b<385000; SELECT count(*), avg(b) FROM t2 WHERE b>=385000 AND b<385100; SELECT count(*), avg(b) FROM t2 WHERE b>=385100 AND b<385200; SELECT count(*), avg(b) FROM t2 WHERE b>=385200 AND b<385300; SELECT count(*), avg(b) FROM t2 WHERE b>=385300 AND b<385400; SELECT count(*), avg(b) FROM t2 WHERE b>=385400 AND b<385500; SELECT count(*), avg(b) FROM t2 WHERE b>=385500 AND b<385600; SELECT count(*), avg(b) FROM t2 WHERE b>=385600 AND b<385700; SELECT count(*), avg(b) FROM t2 WHERE b>=385700 AND b<385800; SELECT count(*), avg(b) FROM t2 WHERE b>=385800 AND b<385900; SELECT count(*), avg(b) FROM t2 WHERE b>=385900 AND b<386000; SELECT count(*), avg(b) FROM t2 WHERE b>=386000 AND b<386100; SELECT count(*), avg(b) FROM t2 WHERE b>=386100 AND b<386200; SELECT count(*), avg(b) FROM t2 WHERE b>=386200 AND b<386300; SELECT count(*), avg(b) FROM t2 WHERE b>=386300 AND b<386400; SELECT count(*), avg(b) FROM t2 WHERE b>=386400 AND b<386500; SELECT count(*), avg(b) FROM t2 WHERE b>=386500 AND b<386600; SELECT count(*), avg(b) FROM t2 WHERE b>=386600 AND b<386700; SELECT count(*), avg(b) FROM t2 WHERE b>=386700 AND b<386800; SELECT count(*), avg(b) FROM t2 WHERE b>=386800 AND b<386900; SELECT count(*), avg(b) FROM t2 WHERE b>=386900 AND b<387000; SELECT count(*), avg(b) FROM t2 WHERE b>=387000 AND b<387100; SELECT count(*), avg(b) FROM t2 WHERE b>=387100 AND b<387200; SELECT count(*), avg(b) FROM t2 WHERE b>=387200 AND b<387300; SELECT count(*), avg(b) FROM t2 WHERE b>=387300 AND b<387400; SELECT count(*), avg(b) FROM t2 WHERE b>=387400 AND b<387500; SELECT count(*), avg(b) FROM t2 WHERE b>=387500 AND b<387600; SELECT count(*), avg(b) FROM t2 WHERE b>=387600 AND b<387700; SELECT count(*), avg(b) FROM t2 WHERE b>=387700 AND b<387800; SELECT count(*), avg(b) FROM t2 WHERE b>=387800 AND b<387900; SELECT count(*), avg(b) FROM t2 WHERE b>=387900 AND b<388000; SELECT count(*), avg(b) FROM t2 WHERE b>=388000 AND b<388100; SELECT count(*), avg(b) FROM t2 WHERE b>=388100 AND b<388200; SELECT count(*), avg(b) FROM t2 WHERE b>=388200 AND b<388300; SELECT count(*), avg(b) FROM t2 WHERE b>=388300 AND b<388400; SELECT count(*), avg(b) FROM t2 WHERE b>=388400 AND b<388500; SELECT count(*), avg(b) FROM t2 WHERE b>=388500 AND b<388600; SELECT count(*), avg(b) FROM t2 WHERE b>=388600 AND b<388700; SELECT count(*), avg(b) FROM t2 WHERE b>=388700 AND b<388800; SELECT count(*), avg(b) FROM t2 WHERE b>=388800 AND b<388900; SELECT count(*), avg(b) FROM t2 WHERE b>=388900 AND b<389000; SELECT count(*), avg(b) FROM t2 WHERE b>=389000 AND b<389100; SELECT count(*), avg(b) FROM t2 WHERE b>=389100 AND b<389200; SELECT count(*), avg(b) FROM t2 WHERE b>=389200 AND b<389300; SELECT count(*), avg(b) FROM t2 WHERE b>=389300 AND b<389400; SELECT count(*), avg(b) FROM t2 WHERE b>=389400 AND b<389500; SELECT count(*), avg(b) FROM t2 WHERE b>=389500 AND b<389600; SELECT count(*), avg(b) FROM t2 WHERE b>=389600 AND b<389700; SELECT count(*), avg(b) FROM t2 WHERE b>=389700 AND b<389800; SELECT count(*), avg(b) FROM t2 WHERE b>=389800 AND b<389900; SELECT count(*), avg(b) FROM t2 WHERE b>=389900 AND b<390000; SELECT count(*), avg(b) FROM t2 WHERE b>=390000 AND b<390100; SELECT count(*), avg(b) FROM t2 WHERE b>=390100 AND b<390200; SELECT count(*), avg(b) FROM t2 WHERE b>=390200 AND b<390300; SELECT count(*), avg(b) FROM t2 WHERE b>=390300 AND b<390400; SELECT count(*), avg(b) FROM t2 WHERE b>=390400 AND b<390500; SELECT count(*), avg(b) FROM t2 WHERE b>=390500 AND b<390600; SELECT count(*), avg(b) FROM t2 WHERE b>=390600 AND b<390700; SELECT count(*), avg(b) FROM t2 WHERE b>=390700 AND b<390800; SELECT count(*), avg(b) FROM t2 WHERE b>=390800 AND b<390900; SELECT count(*), avg(b) FROM t2 WHERE b>=390900 AND b<391000; SELECT count(*), avg(b) FROM t2 WHERE b>=391000 AND b<391100; SELECT count(*), avg(b) FROM t2 WHERE b>=391100 AND b<391200; SELECT count(*), avg(b) FROM t2 WHERE b>=391200 AND b<391300; SELECT count(*), avg(b) FROM t2 WHERE b>=391300 AND b<391400; SELECT count(*), avg(b) FROM t2 WHERE b>=391400 AND b<391500; SELECT count(*), avg(b) FROM t2 WHERE b>=391500 AND b<391600; SELECT count(*), avg(b) FROM t2 WHERE b>=391600 AND b<391700; SELECT count(*), avg(b) FROM t2 WHERE b>=391700 AND b<391800; SELECT count(*), avg(b) FROM t2 WHERE b>=391800 AND b<391900; SELECT count(*), avg(b) FROM t2 WHERE b>=391900 AND b<392000; SELECT count(*), avg(b) FROM t2 WHERE b>=392000 AND b<392100; SELECT count(*), avg(b) FROM t2 WHERE b>=392100 AND b<392200; SELECT count(*), avg(b) FROM t2 WHERE b>=392200 AND b<392300; SELECT count(*), avg(b) FROM t2 WHERE b>=392300 AND b<392400; SELECT count(*), avg(b) FROM t2 WHERE b>=392400 AND b<392500; SELECT count(*), avg(b) FROM t2 WHERE b>=392500 AND b<392600; SELECT count(*), avg(b) FROM t2 WHERE b>=392600 AND b<392700; SELECT count(*), avg(b) FROM t2 WHERE b>=392700 AND b<392800; SELECT count(*), avg(b) FROM t2 WHERE b>=392800 AND b<392900; SELECT count(*), avg(b) FROM t2 WHERE b>=392900 AND b<393000; SELECT count(*), avg(b) FROM t2 WHERE b>=393000 AND b<393100; SELECT count(*), avg(b) FROM t2 WHERE b>=393100 AND b<393200; SELECT count(*), avg(b) FROM t2 WHERE b>=393200 AND b<393300; SELECT count(*), avg(b) FROM t2 WHERE b>=393300 AND b<393400; SELECT count(*), avg(b) FROM t2 WHERE b>=393400 AND b<393500; SELECT count(*), avg(b) FROM t2 WHERE b>=393500 AND b<393600; SELECT count(*), avg(b) FROM t2 WHERE b>=393600 AND b<393700; SELECT count(*), avg(b) FROM t2 WHERE b>=393700 AND b<393800; SELECT count(*), avg(b) FROM t2 WHERE b>=393800 AND b<393900; SELECT count(*), avg(b) FROM t2 WHERE b>=393900 AND b<394000; SELECT count(*), avg(b) FROM t2 WHERE b>=394000 AND b<394100; SELECT count(*), avg(b) FROM t2 WHERE b>=394100 AND b<394200; SELECT count(*), avg(b) FROM t2 WHERE b>=394200 AND b<394300; SELECT count(*), avg(b) FROM t2 WHERE b>=394300 AND b<394400; SELECT count(*), avg(b) FROM t2 WHERE b>=394400 AND b<394500; SELECT count(*), avg(b) FROM t2 WHERE b>=394500 AND b<394600; SELECT count(*), avg(b) FROM t2 WHERE b>=394600 AND b<394700; SELECT count(*), avg(b) FROM t2 WHERE b>=394700 AND b<394800; SELECT count(*), avg(b) FROM t2 WHERE b>=394800 AND b<394900; SELECT count(*), avg(b) FROM t2 WHERE b>=394900 AND b<395000; SELECT count(*), avg(b) FROM t2 WHERE b>=395000 AND b<395100; SELECT count(*), avg(b) FROM t2 WHERE b>=395100 AND b<395200; SELECT count(*), avg(b) FROM t2 WHERE b>=395200 AND b<395300; SELECT count(*), avg(b) FROM t2 WHERE b>=395300 AND b<395400; SELECT count(*), avg(b) FROM t2 WHERE b>=395400 AND b<395500; SELECT count(*), avg(b) FROM t2 WHERE b>=395500 AND b<395600; SELECT count(*), avg(b) FROM t2 WHERE b>=395600 AND b<395700; SELECT count(*), avg(b) FROM t2 WHERE b>=395700 AND b<395800; SELECT count(*), avg(b) FROM t2 WHERE b>=395800 AND b<395900; SELECT count(*), avg(b) FROM t2 WHERE b>=395900 AND b<396000; SELECT count(*), avg(b) FROM t2 WHERE b>=396000 AND b<396100; SELECT count(*), avg(b) FROM t2 WHERE b>=396100 AND b<396200; SELECT count(*), avg(b) FROM t2 WHERE b>=396200 AND b<396300; SELECT count(*), avg(b) FROM t2 WHERE b>=396300 AND b<396400; SELECT count(*), avg(b) FROM t2 WHERE b>=396400 AND b<396500; SELECT count(*), avg(b) FROM t2 WHERE b>=396500 AND b<396600; SELECT count(*), avg(b) FROM t2 WHERE b>=396600 AND b<396700; SELECT count(*), avg(b) FROM t2 WHERE b>=396700 AND b<396800; SELECT count(*), avg(b) FROM t2 WHERE b>=396800 AND b<396900; SELECT count(*), avg(b) FROM t2 WHERE b>=396900 AND b<397000; SELECT count(*), avg(b) FROM t2 WHERE b>=397000 AND b<397100; SELECT count(*), avg(b) FROM t2 WHERE b>=397100 AND b<397200; SELECT count(*), avg(b) FROM t2 WHERE b>=397200 AND b<397300; SELECT count(*), avg(b) FROM t2 WHERE b>=397300 AND b<397400; SELECT count(*), avg(b) FROM t2 WHERE b>=397400 AND b<397500; SELECT count(*), avg(b) FROM t2 WHERE b>=397500 AND b<397600; SELECT count(*), avg(b) FROM t2 WHERE b>=397600 AND b<397700; SELECT count(*), avg(b) FROM t2 WHERE b>=397700 AND b<397800; SELECT count(*), avg(b) FROM t2 WHERE b>=397800 AND b<397900; SELECT count(*), avg(b) FROM t2 WHERE b>=397900 AND b<398000; SELECT count(*), avg(b) FROM t2 WHERE b>=398000 AND b<398100; SELECT count(*), avg(b) FROM t2 WHERE b>=398100 AND b<398200; SELECT count(*), avg(b) FROM t2 WHERE b>=398200 AND b<398300; SELECT count(*), avg(b) FROM t2 WHERE b>=398300 AND b<398400; SELECT count(*), avg(b) FROM t2 WHERE b>=398400 AND b<398500; SELECT count(*), avg(b) FROM t2 WHERE b>=398500 AND b<398600; SELECT count(*), avg(b) FROM t2 WHERE b>=398600 AND b<398700; SELECT count(*), avg(b) FROM t2 WHERE b>=398700 AND b<398800; SELECT count(*), avg(b) FROM t2 WHERE b>=398800 AND b<398900; SELECT count(*), avg(b) FROM t2 WHERE b>=398900 AND b<399000; SELECT count(*), avg(b) FROM t2 WHERE b>=399000 AND b<399100; SELECT count(*), avg(b) FROM t2 WHERE b>=399100 AND b<399200; SELECT count(*), avg(b) FROM t2 WHERE b>=399200 AND b<399300; SELECT count(*), avg(b) FROM t2 WHERE b>=399300 AND b<399400; SELECT count(*), avg(b) FROM t2 WHERE b>=399400 AND b<399500; SELECT count(*), avg(b) FROM t2 WHERE b>=399500 AND b<399600; SELECT count(*), avg(b) FROM t2 WHERE b>=399600 AND b<399700; SELECT count(*), avg(b) FROM t2 WHERE b>=399700 AND b<399800; SELECT count(*), avg(b) FROM t2 WHERE b>=399800 AND b<399900; SELECT count(*), avg(b) FROM t2 WHERE b>=399900 AND b<400000; SELECT count(*), avg(b) FROM t2 WHERE b>=400000 AND b<400100; SELECT count(*), avg(b) FROM t2 WHERE b>=400100 AND b<400200; SELECT count(*), avg(b) FROM t2 WHERE b>=400200 AND b<400300; SELECT count(*), avg(b) FROM t2 WHERE b>=400300 AND b<400400; SELECT count(*), avg(b) FROM t2 WHERE b>=400400 AND b<400500; SELECT count(*), avg(b) FROM t2 WHERE b>=400500 AND b<400600; SELECT count(*), avg(b) FROM t2 WHERE b>=400600 AND b<400700; SELECT count(*), avg(b) FROM t2 WHERE b>=400700 AND b<400800; SELECT count(*), avg(b) FROM t2 WHERE b>=400800 AND b<400900; SELECT count(*), avg(b) FROM t2 WHERE b>=400900 AND b<401000; SELECT count(*), avg(b) FROM t2 WHERE b>=401000 AND b<401100; SELECT count(*), avg(b) FROM t2 WHERE b>=401100 AND b<401200; SELECT count(*), avg(b) FROM t2 WHERE b>=401200 AND b<401300; SELECT count(*), avg(b) FROM t2 WHERE b>=401300 AND b<401400; SELECT count(*), avg(b) FROM t2 WHERE b>=401400 AND b<401500; SELECT count(*), avg(b) FROM t2 WHERE b>=401500 AND b<401600; SELECT count(*), avg(b) FROM t2 WHERE b>=401600 AND b<401700; SELECT count(*), avg(b) FROM t2 WHERE b>=401700 AND b<401800; SELECT count(*), avg(b) FROM t2 WHERE b>=401800 AND b<401900; SELECT count(*), avg(b) FROM t2 WHERE b>=401900 AND b<402000; SELECT count(*), avg(b) FROM t2 WHERE b>=402000 AND b<402100; SELECT count(*), avg(b) FROM t2 WHERE b>=402100 AND b<402200; SELECT count(*), avg(b) FROM t2 WHERE b>=402200 AND b<402300; SELECT count(*), avg(b) FROM t2 WHERE b>=402300 AND b<402400; SELECT count(*), avg(b) FROM t2 WHERE b>=402400 AND b<402500; SELECT count(*), avg(b) FROM t2 WHERE b>=402500 AND b<402600; SELECT count(*), avg(b) FROM t2 WHERE b>=402600 AND b<402700; SELECT count(*), avg(b) FROM t2 WHERE b>=402700 AND b<402800; SELECT count(*), avg(b) FROM t2 WHERE b>=402800 AND b<402900; SELECT count(*), avg(b) FROM t2 WHERE b>=402900 AND b<403000; SELECT count(*), avg(b) FROM t2 WHERE b>=403000 AND b<403100; SELECT count(*), avg(b) FROM t2 WHERE b>=403100 AND b<403200; SELECT count(*), avg(b) FROM t2 WHERE b>=403200 AND b<403300; SELECT count(*), avg(b) FROM t2 WHERE b>=403300 AND b<403400; SELECT count(*), avg(b) FROM t2 WHERE b>=403400 AND b<403500; SELECT count(*), avg(b) FROM t2 WHERE b>=403500 AND b<403600; SELECT count(*), avg(b) FROM t2 WHERE b>=403600 AND b<403700; SELECT count(*), avg(b) FROM t2 WHERE b>=403700 AND b<403800; SELECT count(*), avg(b) FROM t2 WHERE b>=403800 AND b<403900; SELECT count(*), avg(b) FROM t2 WHERE b>=403900 AND b<404000; SELECT count(*), avg(b) FROM t2 WHERE b>=404000 AND b<404100; SELECT count(*), avg(b) FROM t2 WHERE b>=404100 AND b<404200; SELECT count(*), avg(b) FROM t2 WHERE b>=404200 AND b<404300; SELECT count(*), avg(b) FROM t2 WHERE b>=404300 AND b<404400; SELECT count(*), avg(b) FROM t2 WHERE b>=404400 AND b<404500; SELECT count(*), avg(b) FROM t2 WHERE b>=404500 AND b<404600; SELECT count(*), avg(b) FROM t2 WHERE b>=404600 AND b<404700; SELECT count(*), avg(b) FROM t2 WHERE b>=404700 AND b<404800; SELECT count(*), avg(b) FROM t2 WHERE b>=404800 AND b<404900; SELECT count(*), avg(b) FROM t2 WHERE b>=404900 AND b<405000; SELECT count(*), avg(b) FROM t2 WHERE b>=405000 AND b<405100; SELECT count(*), avg(b) FROM t2 WHERE b>=405100 AND b<405200; SELECT count(*), avg(b) FROM t2 WHERE b>=405200 AND b<405300; SELECT count(*), avg(b) FROM t2 WHERE b>=405300 AND b<405400; SELECT count(*), avg(b) FROM t2 WHERE b>=405400 AND b<405500; SELECT count(*), avg(b) FROM t2 WHERE b>=405500 AND b<405600; SELECT count(*), avg(b) FROM t2 WHERE b>=405600 AND b<405700; SELECT count(*), avg(b) FROM t2 WHERE b>=405700 AND b<405800; SELECT count(*), avg(b) FROM t2 WHERE b>=405800 AND b<405900; SELECT count(*), avg(b) FROM t2 WHERE b>=405900 AND b<406000; SELECT count(*), avg(b) FROM t2 WHERE b>=406000 AND b<406100; SELECT count(*), avg(b) FROM t2 WHERE b>=406100 AND b<406200; SELECT count(*), avg(b) FROM t2 WHERE b>=406200 AND b<406300; SELECT count(*), avg(b) FROM t2 WHERE b>=406300 AND b<406400; SELECT count(*), avg(b) FROM t2 WHERE b>=406400 AND b<406500; SELECT count(*), avg(b) FROM t2 WHERE b>=406500 AND b<406600; SELECT count(*), avg(b) FROM t2 WHERE b>=406600 AND b<406700; SELECT count(*), avg(b) FROM t2 WHERE b>=406700 AND b<406800; SELECT count(*), avg(b) FROM t2 WHERE b>=406800 AND b<406900; SELECT count(*), avg(b) FROM t2 WHERE b>=406900 AND b<407000; SELECT count(*), avg(b) FROM t2 WHERE b>=407000 AND b<407100; SELECT count(*), avg(b) FROM t2 WHERE b>=407100 AND b<407200; SELECT count(*), avg(b) FROM t2 WHERE b>=407200 AND b<407300; SELECT count(*), avg(b) FROM t2 WHERE b>=407300 AND b<407400; SELECT count(*), avg(b) FROM t2 WHERE b>=407400 AND b<407500; SELECT count(*), avg(b) FROM t2 WHERE b>=407500 AND b<407600; SELECT count(*), avg(b) FROM t2 WHERE b>=407600 AND b<407700; SELECT count(*), avg(b) FROM t2 WHERE b>=407700 AND b<407800; SELECT count(*), avg(b) FROM t2 WHERE b>=407800 AND b<407900; SELECT count(*), avg(b) FROM t2 WHERE b>=407900 AND b<408000; SELECT count(*), avg(b) FROM t2 WHERE b>=408000 AND b<408100; SELECT count(*), avg(b) FROM t2 WHERE b>=408100 AND b<408200; SELECT count(*), avg(b) FROM t2 WHERE b>=408200 AND b<408300; SELECT count(*), avg(b) FROM t2 WHERE b>=408300 AND b<408400; SELECT count(*), avg(b) FROM t2 WHERE b>=408400 AND b<408500; SELECT count(*), avg(b) FROM t2 WHERE b>=408500 AND b<408600; SELECT count(*), avg(b) FROM t2 WHERE b>=408600 AND b<408700; SELECT count(*), avg(b) FROM t2 WHERE b>=408700 AND b<408800; SELECT count(*), avg(b) FROM t2 WHERE b>=408800 AND b<408900; SELECT count(*), avg(b) FROM t2 WHERE b>=408900 AND b<409000; SELECT count(*), avg(b) FROM t2 WHERE b>=409000 AND b<409100; SELECT count(*), avg(b) FROM t2 WHERE b>=409100 AND b<409200; SELECT count(*), avg(b) FROM t2 WHERE b>=409200 AND b<409300; SELECT count(*), avg(b) FROM t2 WHERE b>=409300 AND b<409400; SELECT count(*), avg(b) FROM t2 WHERE b>=409400 AND b<409500; SELECT count(*), avg(b) FROM t2 WHERE b>=409500 AND b<409600; SELECT count(*), avg(b) FROM t2 WHERE b>=409600 AND b<409700; SELECT count(*), avg(b) FROM t2 WHERE b>=409700 AND b<409800; SELECT count(*), avg(b) FROM t2 WHERE b>=409800 AND b<409900; SELECT count(*), avg(b) FROM t2 WHERE b>=409900 AND b<410000; SELECT count(*), avg(b) FROM t2 WHERE b>=410000 AND b<410100; SELECT count(*), avg(b) FROM t2 WHERE b>=410100 AND b<410200; SELECT count(*), avg(b) FROM t2 WHERE b>=410200 AND b<410300; SELECT count(*), avg(b) FROM t2 WHERE b>=410300 AND b<410400; SELECT count(*), avg(b) FROM t2 WHERE b>=410400 AND b<410500; SELECT count(*), avg(b) FROM t2 WHERE b>=410500 AND b<410600; SELECT count(*), avg(b) FROM t2 WHERE b>=410600 AND b<410700; SELECT count(*), avg(b) FROM t2 WHERE b>=410700 AND b<410800; SELECT count(*), avg(b) FROM t2 WHERE b>=410800 AND b<410900; SELECT count(*), avg(b) FROM t2 WHERE b>=410900 AND b<411000; SELECT count(*), avg(b) FROM t2 WHERE b>=411000 AND b<411100; SELECT count(*), avg(b) FROM t2 WHERE b>=411100 AND b<411200; SELECT count(*), avg(b) FROM t2 WHERE b>=411200 AND b<411300; SELECT count(*), avg(b) FROM t2 WHERE b>=411300 AND b<411400; SELECT count(*), avg(b) FROM t2 WHERE b>=411400 AND b<411500; SELECT count(*), avg(b) FROM t2 WHERE b>=411500 AND b<411600; SELECT count(*), avg(b) FROM t2 WHERE b>=411600 AND b<411700; SELECT count(*), avg(b) FROM t2 WHERE b>=411700 AND b<411800; SELECT count(*), avg(b) FROM t2 WHERE b>=411800 AND b<411900; SELECT count(*), avg(b) FROM t2 WHERE b>=411900 AND b<412000; SELECT count(*), avg(b) FROM t2 WHERE b>=412000 AND b<412100; SELECT count(*), avg(b) FROM t2 WHERE b>=412100 AND b<412200; SELECT count(*), avg(b) FROM t2 WHERE b>=412200 AND b<412300; SELECT count(*), avg(b) FROM t2 WHERE b>=412300 AND b<412400; SELECT count(*), avg(b) FROM t2 WHERE b>=412400 AND b<412500; SELECT count(*), avg(b) FROM t2 WHERE b>=412500 AND b<412600; SELECT count(*), avg(b) FROM t2 WHERE b>=412600 AND b<412700; SELECT count(*), avg(b) FROM t2 WHERE b>=412700 AND b<412800; SELECT count(*), avg(b) FROM t2 WHERE b>=412800 AND b<412900; SELECT count(*), avg(b) FROM t2 WHERE b>=412900 AND b<413000; SELECT count(*), avg(b) FROM t2 WHERE b>=413000 AND b<413100; SELECT count(*), avg(b) FROM t2 WHERE b>=413100 AND b<413200; SELECT count(*), avg(b) FROM t2 WHERE b>=413200 AND b<413300; SELECT count(*), avg(b) FROM t2 WHERE b>=413300 AND b<413400; SELECT count(*), avg(b) FROM t2 WHERE b>=413400 AND b<413500; SELECT count(*), avg(b) FROM t2 WHERE b>=413500 AND b<413600; SELECT count(*), avg(b) FROM t2 WHERE b>=413600 AND b<413700; SELECT count(*), avg(b) FROM t2 WHERE b>=413700 AND b<413800; SELECT count(*), avg(b) FROM t2 WHERE b>=413800 AND b<413900; SELECT count(*), avg(b) FROM t2 WHERE b>=413900 AND b<414000; SELECT count(*), avg(b) FROM t2 WHERE b>=414000 AND b<414100; SELECT count(*), avg(b) FROM t2 WHERE b>=414100 AND b<414200; SELECT count(*), avg(b) FROM t2 WHERE b>=414200 AND b<414300; SELECT count(*), avg(b) FROM t2 WHERE b>=414300 AND b<414400; SELECT count(*), avg(b) FROM t2 WHERE b>=414400 AND b<414500; SELECT count(*), avg(b) FROM t2 WHERE b>=414500 AND b<414600; SELECT count(*), avg(b) FROM t2 WHERE b>=414600 AND b<414700; SELECT count(*), avg(b) FROM t2 WHERE b>=414700 AND b<414800; SELECT count(*), avg(b) FROM t2 WHERE b>=414800 AND b<414900; SELECT count(*), avg(b) FROM t2 WHERE b>=414900 AND b<415000; SELECT count(*), avg(b) FROM t2 WHERE b>=415000 AND b<415100; SELECT count(*), avg(b) FROM t2 WHERE b>=415100 AND b<415200; SELECT count(*), avg(b) FROM t2 WHERE b>=415200 AND b<415300; SELECT count(*), avg(b) FROM t2 WHERE b>=415300 AND b<415400; SELECT count(*), avg(b) FROM t2 WHERE b>=415400 AND b<415500; SELECT count(*), avg(b) FROM t2 WHERE b>=415500 AND b<415600; SELECT count(*), avg(b) FROM t2 WHERE b>=415600 AND b<415700; SELECT count(*), avg(b) FROM t2 WHERE b>=415700 AND b<415800; SELECT count(*), avg(b) FROM t2 WHERE b>=415800 AND b<415900; SELECT count(*), avg(b) FROM t2 WHERE b>=415900 AND b<416000; SELECT count(*), avg(b) FROM t2 WHERE b>=416000 AND b<416100; SELECT count(*), avg(b) FROM t2 WHERE b>=416100 AND b<416200; SELECT count(*), avg(b) FROM t2 WHERE b>=416200 AND b<416300; SELECT count(*), avg(b) FROM t2 WHERE b>=416300 AND b<416400; SELECT count(*), avg(b) FROM t2 WHERE b>=416400 AND b<416500; SELECT count(*), avg(b) FROM t2 WHERE b>=416500 AND b<416600; SELECT count(*), avg(b) FROM t2 WHERE b>=416600 AND b<416700; SELECT count(*), avg(b) FROM t2 WHERE b>=416700 AND b<416800; SELECT count(*), avg(b) FROM t2 WHERE b>=416800 AND b<416900; SELECT count(*), avg(b) FROM t2 WHERE b>=416900 AND b<417000; SELECT count(*), avg(b) FROM t2 WHERE b>=417000 AND b<417100; SELECT count(*), avg(b) FROM t2 WHERE b>=417100 AND b<417200; SELECT count(*), avg(b) FROM t2 WHERE b>=417200 AND b<417300; SELECT count(*), avg(b) FROM t2 WHERE b>=417300 AND b<417400; SELECT count(*), avg(b) FROM t2 WHERE b>=417400 AND b<417500; SELECT count(*), avg(b) FROM t2 WHERE b>=417500 AND b<417600; SELECT count(*), avg(b) FROM t2 WHERE b>=417600 AND b<417700; SELECT count(*), avg(b) FROM t2 WHERE b>=417700 AND b<417800; SELECT count(*), avg(b) FROM t2 WHERE b>=417800 AND b<417900; SELECT count(*), avg(b) FROM t2 WHERE b>=417900 AND b<418000; SELECT count(*), avg(b) FROM t2 WHERE b>=418000 AND b<418100; SELECT count(*), avg(b) FROM t2 WHERE b>=418100 AND b<418200; SELECT count(*), avg(b) FROM t2 WHERE b>=418200 AND b<418300; SELECT count(*), avg(b) FROM t2 WHERE b>=418300 AND b<418400; SELECT count(*), avg(b) FROM t2 WHERE b>=418400 AND b<418500; SELECT count(*), avg(b) FROM t2 WHERE b>=418500 AND b<418600; SELECT count(*), avg(b) FROM t2 WHERE b>=418600 AND b<418700; SELECT count(*), avg(b) FROM t2 WHERE b>=418700 AND b<418800; SELECT count(*), avg(b) FROM t2 WHERE b>=418800 AND b<418900; SELECT count(*), avg(b) FROM t2 WHERE b>=418900 AND b<419000; SELECT count(*), avg(b) FROM t2 WHERE b>=419000 AND b<419100; SELECT count(*), avg(b) FROM t2 WHERE b>=419100 AND b<419200; SELECT count(*), avg(b) FROM t2 WHERE b>=419200 AND b<419300; SELECT count(*), avg(b) FROM t2 WHERE b>=419300 AND b<419400; SELECT count(*), avg(b) FROM t2 WHERE b>=419400 AND b<419500; SELECT count(*), avg(b) FROM t2 WHERE b>=419500 AND b<419600; SELECT count(*), avg(b) FROM t2 WHERE b>=419600 AND b<419700; SELECT count(*), avg(b) FROM t2 WHERE b>=419700 AND b<419800; SELECT count(*), avg(b) FROM t2 WHERE b>=419800 AND b<419900; SELECT count(*), avg(b) FROM t2 WHERE b>=419900 AND b<420000; SELECT count(*), avg(b) FROM t2 WHERE b>=420000 AND b<420100; SELECT count(*), avg(b) FROM t2 WHERE b>=420100 AND b<420200; SELECT count(*), avg(b) FROM t2 WHERE b>=420200 AND b<420300; SELECT count(*), avg(b) FROM t2 WHERE b>=420300 AND b<420400; SELECT count(*), avg(b) FROM t2 WHERE b>=420400 AND b<420500; SELECT count(*), avg(b) FROM t2 WHERE b>=420500 AND b<420600; SELECT count(*), avg(b) FROM t2 WHERE b>=420600 AND b<420700; SELECT count(*), avg(b) FROM t2 WHERE b>=420700 AND b<420800; SELECT count(*), avg(b) FROM t2 WHERE b>=420800 AND b<420900; SELECT count(*), avg(b) FROM t2 WHERE b>=420900 AND b<421000; SELECT count(*), avg(b) FROM t2 WHERE b>=421000 AND b<421100; SELECT count(*), avg(b) FROM t2 WHERE b>=421100 AND b<421200; SELECT count(*), avg(b) FROM t2 WHERE b>=421200 AND b<421300; SELECT count(*), avg(b) FROM t2 WHERE b>=421300 AND b<421400; SELECT count(*), avg(b) FROM t2 WHERE b>=421400 AND b<421500; SELECT count(*), avg(b) FROM t2 WHERE b>=421500 AND b<421600; SELECT count(*), avg(b) FROM t2 WHERE b>=421600 AND b<421700; SELECT count(*), avg(b) FROM t2 WHERE b>=421700 AND b<421800; SELECT count(*), avg(b) FROM t2 WHERE b>=421800 AND b<421900; SELECT count(*), avg(b) FROM t2 WHERE b>=421900 AND b<422000; SELECT count(*), avg(b) FROM t2 WHERE b>=422000 AND b<422100; SELECT count(*), avg(b) FROM t2 WHERE b>=422100 AND b<422200; SELECT count(*), avg(b) FROM t2 WHERE b>=422200 AND b<422300; SELECT count(*), avg(b) FROM t2 WHERE b>=422300 AND b<422400; SELECT count(*), avg(b) FROM t2 WHERE b>=422400 AND b<422500; SELECT count(*), avg(b) FROM t2 WHERE b>=422500 AND b<422600; SELECT count(*), avg(b) FROM t2 WHERE b>=422600 AND b<422700; SELECT count(*), avg(b) FROM t2 WHERE b>=422700 AND b<422800; SELECT count(*), avg(b) FROM t2 WHERE b>=422800 AND b<422900; SELECT count(*), avg(b) FROM t2 WHERE b>=422900 AND b<423000; SELECT count(*), avg(b) FROM t2 WHERE b>=423000 AND b<423100; SELECT count(*), avg(b) FROM t2 WHERE b>=423100 AND b<423200; SELECT count(*), avg(b) FROM t2 WHERE b>=423200 AND b<423300; SELECT count(*), avg(b) FROM t2 WHERE b>=423300 AND b<423400; SELECT count(*), avg(b) FROM t2 WHERE b>=423400 AND b<423500; SELECT count(*), avg(b) FROM t2 WHERE b>=423500 AND b<423600; SELECT count(*), avg(b) FROM t2 WHERE b>=423600 AND b<423700; SELECT count(*), avg(b) FROM t2 WHERE b>=423700 AND b<423800; SELECT count(*), avg(b) FROM t2 WHERE b>=423800 AND b<423900; SELECT count(*), avg(b) FROM t2 WHERE b>=423900 AND b<424000; SELECT count(*), avg(b) FROM t2 WHERE b>=424000 AND b<424100; SELECT count(*), avg(b) FROM t2 WHERE b>=424100 AND b<424200; SELECT count(*), avg(b) FROM t2 WHERE b>=424200 AND b<424300; SELECT count(*), avg(b) FROM t2 WHERE b>=424300 AND b<424400; SELECT count(*), avg(b) FROM t2 WHERE b>=424400 AND b<424500; SELECT count(*), avg(b) FROM t2 WHERE b>=424500 AND b<424600; SELECT count(*), avg(b) FROM t2 WHERE b>=424600 AND b<424700; SELECT count(*), avg(b) FROM t2 WHERE b>=424700 AND b<424800; SELECT count(*), avg(b) FROM t2 WHERE b>=424800 AND b<424900; SELECT count(*), avg(b) FROM t2 WHERE b>=424900 AND b<425000; SELECT count(*), avg(b) FROM t2 WHERE b>=425000 AND b<425100; SELECT count(*), avg(b) FROM t2 WHERE b>=425100 AND b<425200; SELECT count(*), avg(b) FROM t2 WHERE b>=425200 AND b<425300; SELECT count(*), avg(b) FROM t2 WHERE b>=425300 AND b<425400; SELECT count(*), avg(b) FROM t2 WHERE b>=425400 AND b<425500; SELECT count(*), avg(b) FROM t2 WHERE b>=425500 AND b<425600; SELECT count(*), avg(b) FROM t2 WHERE b>=425600 AND b<425700; SELECT count(*), avg(b) FROM t2 WHERE b>=425700 AND b<425800; SELECT count(*), avg(b) FROM t2 WHERE b>=425800 AND b<425900; SELECT count(*), avg(b) FROM t2 WHERE b>=425900 AND b<426000; SELECT count(*), avg(b) FROM t2 WHERE b>=426000 AND b<426100; SELECT count(*), avg(b) FROM t2 WHERE b>=426100 AND b<426200; SELECT count(*), avg(b) FROM t2 WHERE b>=426200 AND b<426300; SELECT count(*), avg(b) FROM t2 WHERE b>=426300 AND b<426400; SELECT count(*), avg(b) FROM t2 WHERE b>=426400 AND b<426500; SELECT count(*), avg(b) FROM t2 WHERE b>=426500 AND b<426600; SELECT count(*), avg(b) FROM t2 WHERE b>=426600 AND b<426700; SELECT count(*), avg(b) FROM t2 WHERE b>=426700 AND b<426800; SELECT count(*), avg(b) FROM t2 WHERE b>=426800 AND b<426900; SELECT count(*), avg(b) FROM t2 WHERE b>=426900 AND b<427000; SELECT count(*), avg(b) FROM t2 WHERE b>=427000 AND b<427100; SELECT count(*), avg(b) FROM t2 WHERE b>=427100 AND b<427200; SELECT count(*), avg(b) FROM t2 WHERE b>=427200 AND b<427300; SELECT count(*), avg(b) FROM t2 WHERE b>=427300 AND b<427400; SELECT count(*), avg(b) FROM t2 WHERE b>=427400 AND b<427500; SELECT count(*), avg(b) FROM t2 WHERE b>=427500 AND b<427600; SELECT count(*), avg(b) FROM t2 WHERE b>=427600 AND b<427700; SELECT count(*), avg(b) FROM t2 WHERE b>=427700 AND b<427800; SELECT count(*), avg(b) FROM t2 WHERE b>=427800 AND b<427900; SELECT count(*), avg(b) FROM t2 WHERE b>=427900 AND b<428000; SELECT count(*), avg(b) FROM t2 WHERE b>=428000 AND b<428100; SELECT count(*), avg(b) FROM t2 WHERE b>=428100 AND b<428200; SELECT count(*), avg(b) FROM t2 WHERE b>=428200 AND b<428300; SELECT count(*), avg(b) FROM t2 WHERE b>=428300 AND b<428400; SELECT count(*), avg(b) FROM t2 WHERE b>=428400 AND b<428500; SELECT count(*), avg(b) FROM t2 WHERE b>=428500 AND b<428600; SELECT count(*), avg(b) FROM t2 WHERE b>=428600 AND b<428700; SELECT count(*), avg(b) FROM t2 WHERE b>=428700 AND b<428800; SELECT count(*), avg(b) FROM t2 WHERE b>=428800 AND b<428900; SELECT count(*), avg(b) FROM t2 WHERE b>=428900 AND b<429000; SELECT count(*), avg(b) FROM t2 WHERE b>=429000 AND b<429100; SELECT count(*), avg(b) FROM t2 WHERE b>=429100 AND b<429200; SELECT count(*), avg(b) FROM t2 WHERE b>=429200 AND b<429300; SELECT count(*), avg(b) FROM t2 WHERE b>=429300 AND b<429400; SELECT count(*), avg(b) FROM t2 WHERE b>=429400 AND b<429500; SELECT count(*), avg(b) FROM t2 WHERE b>=429500 AND b<429600; SELECT count(*), avg(b) FROM t2 WHERE b>=429600 AND b<429700; SELECT count(*), avg(b) FROM t2 WHERE b>=429700 AND b<429800; SELECT count(*), avg(b) FROM t2 WHERE b>=429800 AND b<429900; SELECT count(*), avg(b) FROM t2 WHERE b>=429900 AND b<430000; SELECT count(*), avg(b) FROM t2 WHERE b>=430000 AND b<430100; SELECT count(*), avg(b) FROM t2 WHERE b>=430100 AND b<430200; SELECT count(*), avg(b) FROM t2 WHERE b>=430200 AND b<430300; SELECT count(*), avg(b) FROM t2 WHERE b>=430300 AND b<430400; SELECT count(*), avg(b) FROM t2 WHERE b>=430400 AND b<430500; SELECT count(*), avg(b) FROM t2 WHERE b>=430500 AND b<430600; SELECT count(*), avg(b) FROM t2 WHERE b>=430600 AND b<430700; SELECT count(*), avg(b) FROM t2 WHERE b>=430700 AND b<430800; SELECT count(*), avg(b) FROM t2 WHERE b>=430800 AND b<430900; SELECT count(*), avg(b) FROM t2 WHERE b>=430900 AND b<431000; SELECT count(*), avg(b) FROM t2 WHERE b>=431000 AND b<431100; SELECT count(*), avg(b) FROM t2 WHERE b>=431100 AND b<431200; SELECT count(*), avg(b) FROM t2 WHERE b>=431200 AND b<431300; SELECT count(*), avg(b) FROM t2 WHERE b>=431300 AND b<431400; SELECT count(*), avg(b) FROM t2 WHERE b>=431400 AND b<431500; SELECT count(*), avg(b) FROM t2 WHERE b>=431500 AND b<431600; SELECT count(*), avg(b) FROM t2 WHERE b>=431600 AND b<431700; SELECT count(*), avg(b) FROM t2 WHERE b>=431700 AND b<431800; SELECT count(*), avg(b) FROM t2 WHERE b>=431800 AND b<431900; SELECT count(*), avg(b) FROM t2 WHERE b>=431900 AND b<432000; SELECT count(*), avg(b) FROM t2 WHERE b>=432000 AND b<432100; SELECT count(*), avg(b) FROM t2 WHERE b>=432100 AND b<432200; SELECT count(*), avg(b) FROM t2 WHERE b>=432200 AND b<432300; SELECT count(*), avg(b) FROM t2 WHERE b>=432300 AND b<432400; SELECT count(*), avg(b) FROM t2 WHERE b>=432400 AND b<432500; SELECT count(*), avg(b) FROM t2 WHERE b>=432500 AND b<432600; SELECT count(*), avg(b) FROM t2 WHERE b>=432600 AND b<432700; SELECT count(*), avg(b) FROM t2 WHERE b>=432700 AND b<432800; SELECT count(*), avg(b) FROM t2 WHERE b>=432800 AND b<432900; SELECT count(*), avg(b) FROM t2 WHERE b>=432900 AND b<433000; SELECT count(*), avg(b) FROM t2 WHERE b>=433000 AND b<433100; SELECT count(*), avg(b) FROM t2 WHERE b>=433100 AND b<433200; SELECT count(*), avg(b) FROM t2 WHERE b>=433200 AND b<433300; SELECT count(*), avg(b) FROM t2 WHERE b>=433300 AND b<433400; SELECT count(*), avg(b) FROM t2 WHERE b>=433400 AND b<433500; SELECT count(*), avg(b) FROM t2 WHERE b>=433500 AND b<433600; SELECT count(*), avg(b) FROM t2 WHERE b>=433600 AND b<433700; SELECT count(*), avg(b) FROM t2 WHERE b>=433700 AND b<433800; SELECT count(*), avg(b) FROM t2 WHERE b>=433800 AND b<433900; SELECT count(*), avg(b) FROM t2 WHERE b>=433900 AND b<434000; SELECT count(*), avg(b) FROM t2 WHERE b>=434000 AND b<434100; SELECT count(*), avg(b) FROM t2 WHERE b>=434100 AND b<434200; SELECT count(*), avg(b) FROM t2 WHERE b>=434200 AND b<434300; SELECT count(*), avg(b) FROM t2 WHERE b>=434300 AND b<434400; SELECT count(*), avg(b) FROM t2 WHERE b>=434400 AND b<434500; SELECT count(*), avg(b) FROM t2 WHERE b>=434500 AND b<434600; SELECT count(*), avg(b) FROM t2 WHERE b>=434600 AND b<434700; SELECT count(*), avg(b) FROM t2 WHERE b>=434700 AND b<434800; SELECT count(*), avg(b) FROM t2 WHERE b>=434800 AND b<434900; SELECT count(*), avg(b) FROM t2 WHERE b>=434900 AND b<435000; SELECT count(*), avg(b) FROM t2 WHERE b>=435000 AND b<435100; SELECT count(*), avg(b) FROM t2 WHERE b>=435100 AND b<435200; SELECT count(*), avg(b) FROM t2 WHERE b>=435200 AND b<435300; SELECT count(*), avg(b) FROM t2 WHERE b>=435300 AND b<435400; SELECT count(*), avg(b) FROM t2 WHERE b>=435400 AND b<435500; SELECT count(*), avg(b) FROM t2 WHERE b>=435500 AND b<435600; SELECT count(*), avg(b) FROM t2 WHERE b>=435600 AND b<435700; SELECT count(*), avg(b) FROM t2 WHERE b>=435700 AND b<435800; SELECT count(*), avg(b) FROM t2 WHERE b>=435800 AND b<435900; SELECT count(*), avg(b) FROM t2 WHERE b>=435900 AND b<436000; SELECT count(*), avg(b) FROM t2 WHERE b>=436000 AND b<436100; SELECT count(*), avg(b) FROM t2 WHERE b>=436100 AND b<436200; SELECT count(*), avg(b) FROM t2 WHERE b>=436200 AND b<436300; SELECT count(*), avg(b) FROM t2 WHERE b>=436300 AND b<436400; SELECT count(*), avg(b) FROM t2 WHERE b>=436400 AND b<436500; SELECT count(*), avg(b) FROM t2 WHERE b>=436500 AND b<436600; SELECT count(*), avg(b) FROM t2 WHERE b>=436600 AND b<436700; SELECT count(*), avg(b) FROM t2 WHERE b>=436700 AND b<436800; SELECT count(*), avg(b) FROM t2 WHERE b>=436800 AND b<436900; SELECT count(*), avg(b) FROM t2 WHERE b>=436900 AND b<437000; SELECT count(*), avg(b) FROM t2 WHERE b>=437000 AND b<437100; SELECT count(*), avg(b) FROM t2 WHERE b>=437100 AND b<437200; SELECT count(*), avg(b) FROM t2 WHERE b>=437200 AND b<437300; SELECT count(*), avg(b) FROM t2 WHERE b>=437300 AND b<437400; SELECT count(*), avg(b) FROM t2 WHERE b>=437400 AND b<437500; SELECT count(*), avg(b) FROM t2 WHERE b>=437500 AND b<437600; SELECT count(*), avg(b) FROM t2 WHERE b>=437600 AND b<437700; SELECT count(*), avg(b) FROM t2 WHERE b>=437700 AND b<437800; SELECT count(*), avg(b) FROM t2 WHERE b>=437800 AND b<437900; SELECT count(*), avg(b) FROM t2 WHERE b>=437900 AND b<438000; SELECT count(*), avg(b) FROM t2 WHERE b>=438000 AND b<438100; SELECT count(*), avg(b) FROM t2 WHERE b>=438100 AND b<438200; SELECT count(*), avg(b) FROM t2 WHERE b>=438200 AND b<438300; SELECT count(*), avg(b) FROM t2 WHERE b>=438300 AND b<438400; SELECT count(*), avg(b) FROM t2 WHERE b>=438400 AND b<438500; SELECT count(*), avg(b) FROM t2 WHERE b>=438500 AND b<438600; SELECT count(*), avg(b) FROM t2 WHERE b>=438600 AND b<438700; SELECT count(*), avg(b) FROM t2 WHERE b>=438700 AND b<438800; SELECT count(*), avg(b) FROM t2 WHERE b>=438800 AND b<438900; SELECT count(*), avg(b) FROM t2 WHERE b>=438900 AND b<439000; SELECT count(*), avg(b) FROM t2 WHERE b>=439000 AND b<439100; SELECT count(*), avg(b) FROM t2 WHERE b>=439100 AND b<439200; SELECT count(*), avg(b) FROM t2 WHERE b>=439200 AND b<439300; SELECT count(*), avg(b) FROM t2 WHERE b>=439300 AND b<439400; SELECT count(*), avg(b) FROM t2 WHERE b>=439400 AND b<439500; SELECT count(*), avg(b) FROM t2 WHERE b>=439500 AND b<439600; SELECT count(*), avg(b) FROM t2 WHERE b>=439600 AND b<439700; SELECT count(*), avg(b) FROM t2 WHERE b>=439700 AND b<439800; SELECT count(*), avg(b) FROM t2 WHERE b>=439800 AND b<439900; SELECT count(*), avg(b) FROM t2 WHERE b>=439900 AND b<440000; SELECT count(*), avg(b) FROM t2 WHERE b>=440000 AND b<440100; SELECT count(*), avg(b) FROM t2 WHERE b>=440100 AND b<440200; SELECT count(*), avg(b) FROM t2 WHERE b>=440200 AND b<440300; SELECT count(*), avg(b) FROM t2 WHERE b>=440300 AND b<440400; SELECT count(*), avg(b) FROM t2 WHERE b>=440400 AND b<440500; SELECT count(*), avg(b) FROM t2 WHERE b>=440500 AND b<440600; SELECT count(*), avg(b) FROM t2 WHERE b>=440600 AND b<440700; SELECT count(*), avg(b) FROM t2 WHERE b>=440700 AND b<440800; SELECT count(*), avg(b) FROM t2 WHERE b>=440800 AND b<440900; SELECT count(*), avg(b) FROM t2 WHERE b>=440900 AND b<441000; SELECT count(*), avg(b) FROM t2 WHERE b>=441000 AND b<441100; SELECT count(*), avg(b) FROM t2 WHERE b>=441100 AND b<441200; SELECT count(*), avg(b) FROM t2 WHERE b>=441200 AND b<441300; SELECT count(*), avg(b) FROM t2 WHERE b>=441300 AND b<441400; SELECT count(*), avg(b) FROM t2 WHERE b>=441400 AND b<441500; SELECT count(*), avg(b) FROM t2 WHERE b>=441500 AND b<441600; SELECT count(*), avg(b) FROM t2 WHERE b>=441600 AND b<441700; SELECT count(*), avg(b) FROM t2 WHERE b>=441700 AND b<441800; SELECT count(*), avg(b) FROM t2 WHERE b>=441800 AND b<441900; SELECT count(*), avg(b) FROM t2 WHERE b>=441900 AND b<442000; SELECT count(*), avg(b) FROM t2 WHERE b>=442000 AND b<442100; SELECT count(*), avg(b) FROM t2 WHERE b>=442100 AND b<442200; SELECT count(*), avg(b) FROM t2 WHERE b>=442200 AND b<442300; SELECT count(*), avg(b) FROM t2 WHERE b>=442300 AND b<442400; SELECT count(*), avg(b) FROM t2 WHERE b>=442400 AND b<442500; SELECT count(*), avg(b) FROM t2 WHERE b>=442500 AND b<442600; SELECT count(*), avg(b) FROM t2 WHERE b>=442600 AND b<442700; SELECT count(*), avg(b) FROM t2 WHERE b>=442700 AND b<442800; SELECT count(*), avg(b) FROM t2 WHERE b>=442800 AND b<442900; SELECT count(*), avg(b) FROM t2 WHERE b>=442900 AND b<443000; SELECT count(*), avg(b) FROM t2 WHERE b>=443000 AND b<443100; SELECT count(*), avg(b) FROM t2 WHERE b>=443100 AND b<443200; SELECT count(*), avg(b) FROM t2 WHERE b>=443200 AND b<443300; SELECT count(*), avg(b) FROM t2 WHERE b>=443300 AND b<443400; SELECT count(*), avg(b) FROM t2 WHERE b>=443400 AND b<443500; SELECT count(*), avg(b) FROM t2 WHERE b>=443500 AND b<443600; SELECT count(*), avg(b) FROM t2 WHERE b>=443600 AND b<443700; SELECT count(*), avg(b) FROM t2 WHERE b>=443700 AND b<443800; SELECT count(*), avg(b) FROM t2 WHERE b>=443800 AND b<443900; SELECT count(*), avg(b) FROM t2 WHERE b>=443900 AND b<444000; SELECT count(*), avg(b) FROM t2 WHERE b>=444000 AND b<444100; SELECT count(*), avg(b) FROM t2 WHERE b>=444100 AND b<444200; SELECT count(*), avg(b) FROM t2 WHERE b>=444200 AND b<444300; SELECT count(*), avg(b) FROM t2 WHERE b>=444300 AND b<444400; SELECT count(*), avg(b) FROM t2 WHERE b>=444400 AND b<444500; SELECT count(*), avg(b) FROM t2 WHERE b>=444500 AND b<444600; SELECT count(*), avg(b) FROM t2 WHERE b>=444600 AND b<444700; SELECT count(*), avg(b) FROM t2 WHERE b>=444700 AND b<444800; SELECT count(*), avg(b) FROM t2 WHERE b>=444800 AND b<444900; SELECT count(*), avg(b) FROM t2 WHERE b>=444900 AND b<445000; SELECT count(*), avg(b) FROM t2 WHERE b>=445000 AND b<445100; SELECT count(*), avg(b) FROM t2 WHERE b>=445100 AND b<445200; SELECT count(*), avg(b) FROM t2 WHERE b>=445200 AND b<445300; SELECT count(*), avg(b) FROM t2 WHERE b>=445300 AND b<445400; SELECT count(*), avg(b) FROM t2 WHERE b>=445400 AND b<445500; SELECT count(*), avg(b) FROM t2 WHERE b>=445500 AND b<445600; SELECT count(*), avg(b) FROM t2 WHERE b>=445600 AND b<445700; SELECT count(*), avg(b) FROM t2 WHERE b>=445700 AND b<445800; SELECT count(*), avg(b) FROM t2 WHERE b>=445800 AND b<445900; SELECT count(*), avg(b) FROM t2 WHERE b>=445900 AND b<446000; SELECT count(*), avg(b) FROM t2 WHERE b>=446000 AND b<446100; SELECT count(*), avg(b) FROM t2 WHERE b>=446100 AND b<446200; SELECT count(*), avg(b) FROM t2 WHERE b>=446200 AND b<446300; SELECT count(*), avg(b) FROM t2 WHERE b>=446300 AND b<446400; SELECT count(*), avg(b) FROM t2 WHERE b>=446400 AND b<446500; SELECT count(*), avg(b) FROM t2 WHERE b>=446500 AND b<446600; SELECT count(*), avg(b) FROM t2 WHERE b>=446600 AND b<446700; SELECT count(*), avg(b) FROM t2 WHERE b>=446700 AND b<446800; SELECT count(*), avg(b) FROM t2 WHERE b>=446800 AND b<446900; SELECT count(*), avg(b) FROM t2 WHERE b>=446900 AND b<447000; SELECT count(*), avg(b) FROM t2 WHERE b>=447000 AND b<447100; SELECT count(*), avg(b) FROM t2 WHERE b>=447100 AND b<447200; SELECT count(*), avg(b) FROM t2 WHERE b>=447200 AND b<447300; SELECT count(*), avg(b) FROM t2 WHERE b>=447300 AND b<447400; SELECT count(*), avg(b) FROM t2 WHERE b>=447400 AND b<447500; SELECT count(*), avg(b) FROM t2 WHERE b>=447500 AND b<447600; SELECT count(*), avg(b) FROM t2 WHERE b>=447600 AND b<447700; SELECT count(*), avg(b) FROM t2 WHERE b>=447700 AND b<447800; SELECT count(*), avg(b) FROM t2 WHERE b>=447800 AND b<447900; SELECT count(*), avg(b) FROM t2 WHERE b>=447900 AND b<448000; SELECT count(*), avg(b) FROM t2 WHERE b>=448000 AND b<448100; SELECT count(*), avg(b) FROM t2 WHERE b>=448100 AND b<448200; SELECT count(*), avg(b) FROM t2 WHERE b>=448200 AND b<448300; SELECT count(*), avg(b) FROM t2 WHERE b>=448300 AND b<448400; SELECT count(*), avg(b) FROM t2 WHERE b>=448400 AND b<448500; SELECT count(*), avg(b) FROM t2 WHERE b>=448500 AND b<448600; SELECT count(*), avg(b) FROM t2 WHERE b>=448600 AND b<448700; SELECT count(*), avg(b) FROM t2 WHERE b>=448700 AND b<448800; SELECT count(*), avg(b) FROM t2 WHERE b>=448800 AND b<448900; SELECT count(*), avg(b) FROM t2 WHERE b>=448900 AND b<449000; SELECT count(*), avg(b) FROM t2 WHERE b>=449000 AND b<449100; SELECT count(*), avg(b) FROM t2 WHERE b>=449100 AND b<449200; SELECT count(*), avg(b) FROM t2 WHERE b>=449200 AND b<449300; SELECT count(*), avg(b) FROM t2 WHERE b>=449300 AND b<449400; SELECT count(*), avg(b) FROM t2 WHERE b>=449400 AND b<449500; SELECT count(*), avg(b) FROM t2 WHERE b>=449500 AND b<449600; SELECT count(*), avg(b) FROM t2 WHERE b>=449600 AND b<449700; SELECT count(*), avg(b) FROM t2 WHERE b>=449700 AND b<449800; SELECT count(*), avg(b) FROM t2 WHERE b>=449800 AND b<449900; SELECT count(*), avg(b) FROM t2 WHERE b>=449900 AND b<450000; SELECT count(*), avg(b) FROM t2 WHERE b>=450000 AND b<450100; SELECT count(*), avg(b) FROM t2 WHERE b>=450100 AND b<450200; SELECT count(*), avg(b) FROM t2 WHERE b>=450200 AND b<450300; SELECT count(*), avg(b) FROM t2 WHERE b>=450300 AND b<450400; SELECT count(*), avg(b) FROM t2 WHERE b>=450400 AND b<450500; SELECT count(*), avg(b) FROM t2 WHERE b>=450500 AND b<450600; SELECT count(*), avg(b) FROM t2 WHERE b>=450600 AND b<450700; SELECT count(*), avg(b) FROM t2 WHERE b>=450700 AND b<450800; SELECT count(*), avg(b) FROM t2 WHERE b>=450800 AND b<450900; SELECT count(*), avg(b) FROM t2 WHERE b>=450900 AND b<451000; SELECT count(*), avg(b) FROM t2 WHERE b>=451000 AND b<451100; SELECT count(*), avg(b) FROM t2 WHERE b>=451100 AND b<451200; SELECT count(*), avg(b) FROM t2 WHERE b>=451200 AND b<451300; SELECT count(*), avg(b) FROM t2 WHERE b>=451300 AND b<451400; SELECT count(*), avg(b) FROM t2 WHERE b>=451400 AND b<451500; SELECT count(*), avg(b) FROM t2 WHERE b>=451500 AND b<451600; SELECT count(*), avg(b) FROM t2 WHERE b>=451600 AND b<451700; SELECT count(*), avg(b) FROM t2 WHERE b>=451700 AND b<451800; SELECT count(*), avg(b) FROM t2 WHERE b>=451800 AND b<451900; SELECT count(*), avg(b) FROM t2 WHERE b>=451900 AND b<452000; SELECT count(*), avg(b) FROM t2 WHERE b>=452000 AND b<452100; SELECT count(*), avg(b) FROM t2 WHERE b>=452100 AND b<452200; SELECT count(*), avg(b) FROM t2 WHERE b>=452200 AND b<452300; SELECT count(*), avg(b) FROM t2 WHERE b>=452300 AND b<452400; SELECT count(*), avg(b) FROM t2 WHERE b>=452400 AND b<452500; SELECT count(*), avg(b) FROM t2 WHERE b>=452500 AND b<452600; SELECT count(*), avg(b) FROM t2 WHERE b>=452600 AND b<452700; SELECT count(*), avg(b) FROM t2 WHERE b>=452700 AND b<452800; SELECT count(*), avg(b) FROM t2 WHERE b>=452800 AND b<452900; SELECT count(*), avg(b) FROM t2 WHERE b>=452900 AND b<453000; SELECT count(*), avg(b) FROM t2 WHERE b>=453000 AND b<453100; SELECT count(*), avg(b) FROM t2 WHERE b>=453100 AND b<453200; SELECT count(*), avg(b) FROM t2 WHERE b>=453200 AND b<453300; SELECT count(*), avg(b) FROM t2 WHERE b>=453300 AND b<453400; SELECT count(*), avg(b) FROM t2 WHERE b>=453400 AND b<453500; SELECT count(*), avg(b) FROM t2 WHERE b>=453500 AND b<453600; SELECT count(*), avg(b) FROM t2 WHERE b>=453600 AND b<453700; SELECT count(*), avg(b) FROM t2 WHERE b>=453700 AND b<453800; SELECT count(*), avg(b) FROM t2 WHERE b>=453800 AND b<453900; SELECT count(*), avg(b) FROM t2 WHERE b>=453900 AND b<454000; SELECT count(*), avg(b) FROM t2 WHERE b>=454000 AND b<454100; SELECT count(*), avg(b) FROM t2 WHERE b>=454100 AND b<454200; SELECT count(*), avg(b) FROM t2 WHERE b>=454200 AND b<454300; SELECT count(*), avg(b) FROM t2 WHERE b>=454300 AND b<454400; SELECT count(*), avg(b) FROM t2 WHERE b>=454400 AND b<454500; SELECT count(*), avg(b) FROM t2 WHERE b>=454500 AND b<454600; SELECT count(*), avg(b) FROM t2 WHERE b>=454600 AND b<454700; SELECT count(*), avg(b) FROM t2 WHERE b>=454700 AND b<454800; SELECT count(*), avg(b) FROM t2 WHERE b>=454800 AND b<454900; SELECT count(*), avg(b) FROM t2 WHERE b>=454900 AND b<455000; SELECT count(*), avg(b) FROM t2 WHERE b>=455000 AND b<455100; SELECT count(*), avg(b) FROM t2 WHERE b>=455100 AND b<455200; SELECT count(*), avg(b) FROM t2 WHERE b>=455200 AND b<455300; SELECT count(*), avg(b) FROM t2 WHERE b>=455300 AND b<455400; SELECT count(*), avg(b) FROM t2 WHERE b>=455400 AND b<455500; SELECT count(*), avg(b) FROM t2 WHERE b>=455500 AND b<455600; SELECT count(*), avg(b) FROM t2 WHERE b>=455600 AND b<455700; SELECT count(*), avg(b) FROM t2 WHERE b>=455700 AND b<455800; SELECT count(*), avg(b) FROM t2 WHERE b>=455800 AND b<455900; SELECT count(*), avg(b) FROM t2 WHERE b>=455900 AND b<456000; SELECT count(*), avg(b) FROM t2 WHERE b>=456000 AND b<456100; SELECT count(*), avg(b) FROM t2 WHERE b>=456100 AND b<456200; SELECT count(*), avg(b) FROM t2 WHERE b>=456200 AND b<456300; SELECT count(*), avg(b) FROM t2 WHERE b>=456300 AND b<456400; SELECT count(*), avg(b) FROM t2 WHERE b>=456400 AND b<456500; SELECT count(*), avg(b) FROM t2 WHERE b>=456500 AND b<456600; SELECT count(*), avg(b) FROM t2 WHERE b>=456600 AND b<456700; SELECT count(*), avg(b) FROM t2 WHERE b>=456700 AND b<456800; SELECT count(*), avg(b) FROM t2 WHERE b>=456800 AND b<456900; SELECT count(*), avg(b) FROM t2 WHERE b>=456900 AND b<457000; SELECT count(*), avg(b) FROM t2 WHERE b>=457000 AND b<457100; SELECT count(*), avg(b) FROM t2 WHERE b>=457100 AND b<457200; SELECT count(*), avg(b) FROM t2 WHERE b>=457200 AND b<457300; SELECT count(*), avg(b) FROM t2 WHERE b>=457300 AND b<457400; SELECT count(*), avg(b) FROM t2 WHERE b>=457400 AND b<457500; SELECT count(*), avg(b) FROM t2 WHERE b>=457500 AND b<457600; SELECT count(*), avg(b) FROM t2 WHERE b>=457600 AND b<457700; SELECT count(*), avg(b) FROM t2 WHERE b>=457700 AND b<457800; SELECT count(*), avg(b) FROM t2 WHERE b>=457800 AND b<457900; SELECT count(*), avg(b) FROM t2 WHERE b>=457900 AND b<458000; SELECT count(*), avg(b) FROM t2 WHERE b>=458000 AND b<458100; SELECT count(*), avg(b) FROM t2 WHERE b>=458100 AND b<458200; SELECT count(*), avg(b) FROM t2 WHERE b>=458200 AND b<458300; SELECT count(*), avg(b) FROM t2 WHERE b>=458300 AND b<458400; SELECT count(*), avg(b) FROM t2 WHERE b>=458400 AND b<458500; SELECT count(*), avg(b) FROM t2 WHERE b>=458500 AND b<458600; SELECT count(*), avg(b) FROM t2 WHERE b>=458600 AND b<458700; SELECT count(*), avg(b) FROM t2 WHERE b>=458700 AND b<458800; SELECT count(*), avg(b) FROM t2 WHERE b>=458800 AND b<458900; SELECT count(*), avg(b) FROM t2 WHERE b>=458900 AND b<459000; SELECT count(*), avg(b) FROM t2 WHERE b>=459000 AND b<459100; SELECT count(*), avg(b) FROM t2 WHERE b>=459100 AND b<459200; SELECT count(*), avg(b) FROM t2 WHERE b>=459200 AND b<459300; SELECT count(*), avg(b) FROM t2 WHERE b>=459300 AND b<459400; SELECT count(*), avg(b) FROM t2 WHERE b>=459400 AND b<459500; SELECT count(*), avg(b) FROM t2 WHERE b>=459500 AND b<459600; SELECT count(*), avg(b) FROM t2 WHERE b>=459600 AND b<459700; SELECT count(*), avg(b) FROM t2 WHERE b>=459700 AND b<459800; SELECT count(*), avg(b) FROM t2 WHERE b>=459800 AND b<459900; SELECT count(*), avg(b) FROM t2 WHERE b>=459900 AND b<460000; SELECT count(*), avg(b) FROM t2 WHERE b>=460000 AND b<460100; SELECT count(*), avg(b) FROM t2 WHERE b>=460100 AND b<460200; SELECT count(*), avg(b) FROM t2 WHERE b>=460200 AND b<460300; SELECT count(*), avg(b) FROM t2 WHERE b>=460300 AND b<460400; SELECT count(*), avg(b) FROM t2 WHERE b>=460400 AND b<460500; SELECT count(*), avg(b) FROM t2 WHERE b>=460500 AND b<460600; SELECT count(*), avg(b) FROM t2 WHERE b>=460600 AND b<460700; SELECT count(*), avg(b) FROM t2 WHERE b>=460700 AND b<460800; SELECT count(*), avg(b) FROM t2 WHERE b>=460800 AND b<460900; SELECT count(*), avg(b) FROM t2 WHERE b>=460900 AND b<461000; SELECT count(*), avg(b) FROM t2 WHERE b>=461000 AND b<461100; SELECT count(*), avg(b) FROM t2 WHERE b>=461100 AND b<461200; SELECT count(*), avg(b) FROM t2 WHERE b>=461200 AND b<461300; SELECT count(*), avg(b) FROM t2 WHERE b>=461300 AND b<461400; SELECT count(*), avg(b) FROM t2 WHERE b>=461400 AND b<461500; SELECT count(*), avg(b) FROM t2 WHERE b>=461500 AND b<461600; SELECT count(*), avg(b) FROM t2 WHERE b>=461600 AND b<461700; SELECT count(*), avg(b) FROM t2 WHERE b>=461700 AND b<461800; SELECT count(*), avg(b) FROM t2 WHERE b>=461800 AND b<461900; SELECT count(*), avg(b) FROM t2 WHERE b>=461900 AND b<462000; SELECT count(*), avg(b) FROM t2 WHERE b>=462000 AND b<462100; SELECT count(*), avg(b) FROM t2 WHERE b>=462100 AND b<462200; SELECT count(*), avg(b) FROM t2 WHERE b>=462200 AND b<462300; SELECT count(*), avg(b) FROM t2 WHERE b>=462300 AND b<462400; SELECT count(*), avg(b) FROM t2 WHERE b>=462400 AND b<462500; SELECT count(*), avg(b) FROM t2 WHERE b>=462500 AND b<462600; SELECT count(*), avg(b) FROM t2 WHERE b>=462600 AND b<462700; SELECT count(*), avg(b) FROM t2 WHERE b>=462700 AND b<462800; SELECT count(*), avg(b) FROM t2 WHERE b>=462800 AND b<462900; SELECT count(*), avg(b) FROM t2 WHERE b>=462900 AND b<463000; SELECT count(*), avg(b) FROM t2 WHERE b>=463000 AND b<463100; SELECT count(*), avg(b) FROM t2 WHERE b>=463100 AND b<463200; SELECT count(*), avg(b) FROM t2 WHERE b>=463200 AND b<463300; SELECT count(*), avg(b) FROM t2 WHERE b>=463300 AND b<463400; SELECT count(*), avg(b) FROM t2 WHERE b>=463400 AND b<463500; SELECT count(*), avg(b) FROM t2 WHERE b>=463500 AND b<463600; SELECT count(*), avg(b) FROM t2 WHERE b>=463600 AND b<463700; SELECT count(*), avg(b) FROM t2 WHERE b>=463700 AND b<463800; SELECT count(*), avg(b) FROM t2 WHERE b>=463800 AND b<463900; SELECT count(*), avg(b) FROM t2 WHERE b>=463900 AND b<464000; SELECT count(*), avg(b) FROM t2 WHERE b>=464000 AND b<464100; SELECT count(*), avg(b) FROM t2 WHERE b>=464100 AND b<464200; SELECT count(*), avg(b) FROM t2 WHERE b>=464200 AND b<464300; SELECT count(*), avg(b) FROM t2 WHERE b>=464300 AND b<464400; SELECT count(*), avg(b) FROM t2 WHERE b>=464400 AND b<464500; SELECT count(*), avg(b) FROM t2 WHERE b>=464500 AND b<464600; SELECT count(*), avg(b) FROM t2 WHERE b>=464600 AND b<464700; SELECT count(*), avg(b) FROM t2 WHERE b>=464700 AND b<464800; SELECT count(*), avg(b) FROM t2 WHERE b>=464800 AND b<464900; SELECT count(*), avg(b) FROM t2 WHERE b>=464900 AND b<465000; SELECT count(*), avg(b) FROM t2 WHERE b>=465000 AND b<465100; SELECT count(*), avg(b) FROM t2 WHERE b>=465100 AND b<465200; SELECT count(*), avg(b) FROM t2 WHERE b>=465200 AND b<465300; SELECT count(*), avg(b) FROM t2 WHERE b>=465300 AND b<465400; SELECT count(*), avg(b) FROM t2 WHERE b>=465400 AND b<465500; SELECT count(*), avg(b) FROM t2 WHERE b>=465500 AND b<465600; SELECT count(*), avg(b) FROM t2 WHERE b>=465600 AND b<465700; SELECT count(*), avg(b) FROM t2 WHERE b>=465700 AND b<465800; SELECT count(*), avg(b) FROM t2 WHERE b>=465800 AND b<465900; SELECT count(*), avg(b) FROM t2 WHERE b>=465900 AND b<466000; SELECT count(*), avg(b) FROM t2 WHERE b>=466000 AND b<466100; SELECT count(*), avg(b) FROM t2 WHERE b>=466100 AND b<466200; SELECT count(*), avg(b) FROM t2 WHERE b>=466200 AND b<466300; SELECT count(*), avg(b) FROM t2 WHERE b>=466300 AND b<466400; SELECT count(*), avg(b) FROM t2 WHERE b>=466400 AND b<466500; SELECT count(*), avg(b) FROM t2 WHERE b>=466500 AND b<466600; SELECT count(*), avg(b) FROM t2 WHERE b>=466600 AND b<466700; SELECT count(*), avg(b) FROM t2 WHERE b>=466700 AND b<466800; SELECT count(*), avg(b) FROM t2 WHERE b>=466800 AND b<466900; SELECT count(*), avg(b) FROM t2 WHERE b>=466900 AND b<467000; SELECT count(*), avg(b) FROM t2 WHERE b>=467000 AND b<467100; SELECT count(*), avg(b) FROM t2 WHERE b>=467100 AND b<467200; SELECT count(*), avg(b) FROM t2 WHERE b>=467200 AND b<467300; SELECT count(*), avg(b) FROM t2 WHERE b>=467300 AND b<467400; SELECT count(*), avg(b) FROM t2 WHERE b>=467400 AND b<467500; SELECT count(*), avg(b) FROM t2 WHERE b>=467500 AND b<467600; SELECT count(*), avg(b) FROM t2 WHERE b>=467600 AND b<467700; SELECT count(*), avg(b) FROM t2 WHERE b>=467700 AND b<467800; SELECT count(*), avg(b) FROM t2 WHERE b>=467800 AND b<467900; SELECT count(*), avg(b) FROM t2 WHERE b>=467900 AND b<468000; SELECT count(*), avg(b) FROM t2 WHERE b>=468000 AND b<468100; SELECT count(*), avg(b) FROM t2 WHERE b>=468100 AND b<468200; SELECT count(*), avg(b) FROM t2 WHERE b>=468200 AND b<468300; SELECT count(*), avg(b) FROM t2 WHERE b>=468300 AND b<468400; SELECT count(*), avg(b) FROM t2 WHERE b>=468400 AND b<468500; SELECT count(*), avg(b) FROM t2 WHERE b>=468500 AND b<468600; SELECT count(*), avg(b) FROM t2 WHERE b>=468600 AND b<468700; SELECT count(*), avg(b) FROM t2 WHERE b>=468700 AND b<468800; SELECT count(*), avg(b) FROM t2 WHERE b>=468800 AND b<468900; SELECT count(*), avg(b) FROM t2 WHERE b>=468900 AND b<469000; SELECT count(*), avg(b) FROM t2 WHERE b>=469000 AND b<469100; SELECT count(*), avg(b) FROM t2 WHERE b>=469100 AND b<469200; SELECT count(*), avg(b) FROM t2 WHERE b>=469200 AND b<469300; SELECT count(*), avg(b) FROM t2 WHERE b>=469300 AND b<469400; SELECT count(*), avg(b) FROM t2 WHERE b>=469400 AND b<469500; SELECT count(*), avg(b) FROM t2 WHERE b>=469500 AND b<469600; SELECT count(*), avg(b) FROM t2 WHERE b>=469600 AND b<469700; SELECT count(*), avg(b) FROM t2 WHERE b>=469700 AND b<469800; SELECT count(*), avg(b) FROM t2 WHERE b>=469800 AND b<469900; SELECT count(*), avg(b) FROM t2 WHERE b>=469900 AND b<470000; SELECT count(*), avg(b) FROM t2 WHERE b>=470000 AND b<470100; SELECT count(*), avg(b) FROM t2 WHERE b>=470100 AND b<470200; SELECT count(*), avg(b) FROM t2 WHERE b>=470200 AND b<470300; SELECT count(*), avg(b) FROM t2 WHERE b>=470300 AND b<470400; SELECT count(*), avg(b) FROM t2 WHERE b>=470400 AND b<470500; SELECT count(*), avg(b) FROM t2 WHERE b>=470500 AND b<470600; SELECT count(*), avg(b) FROM t2 WHERE b>=470600 AND b<470700; SELECT count(*), avg(b) FROM t2 WHERE b>=470700 AND b<470800; SELECT count(*), avg(b) FROM t2 WHERE b>=470800 AND b<470900; SELECT count(*), avg(b) FROM t2 WHERE b>=470900 AND b<471000; SELECT count(*), avg(b) FROM t2 WHERE b>=471000 AND b<471100; SELECT count(*), avg(b) FROM t2 WHERE b>=471100 AND b<471200; SELECT count(*), avg(b) FROM t2 WHERE b>=471200 AND b<471300; SELECT count(*), avg(b) FROM t2 WHERE b>=471300 AND b<471400; SELECT count(*), avg(b) FROM t2 WHERE b>=471400 AND b<471500; SELECT count(*), avg(b) FROM t2 WHERE b>=471500 AND b<471600; SELECT count(*), avg(b) FROM t2 WHERE b>=471600 AND b<471700; SELECT count(*), avg(b) FROM t2 WHERE b>=471700 AND b<471800; SELECT count(*), avg(b) FROM t2 WHERE b>=471800 AND b<471900; SELECT count(*), avg(b) FROM t2 WHERE b>=471900 AND b<472000; SELECT count(*), avg(b) FROM t2 WHERE b>=472000 AND b<472100; SELECT count(*), avg(b) FROM t2 WHERE b>=472100 AND b<472200; SELECT count(*), avg(b) FROM t2 WHERE b>=472200 AND b<472300; SELECT count(*), avg(b) FROM t2 WHERE b>=472300 AND b<472400; SELECT count(*), avg(b) FROM t2 WHERE b>=472400 AND b<472500; SELECT count(*), avg(b) FROM t2 WHERE b>=472500 AND b<472600; SELECT count(*), avg(b) FROM t2 WHERE b>=472600 AND b<472700; SELECT count(*), avg(b) FROM t2 WHERE b>=472700 AND b<472800; SELECT count(*), avg(b) FROM t2 WHERE b>=472800 AND b<472900; SELECT count(*), avg(b) FROM t2 WHERE b>=472900 AND b<473000; SELECT count(*), avg(b) FROM t2 WHERE b>=473000 AND b<473100; SELECT count(*), avg(b) FROM t2 WHERE b>=473100 AND b<473200; SELECT count(*), avg(b) FROM t2 WHERE b>=473200 AND b<473300; SELECT count(*), avg(b) FROM t2 WHERE b>=473300 AND b<473400; SELECT count(*), avg(b) FROM t2 WHERE b>=473400 AND b<473500; SELECT count(*), avg(b) FROM t2 WHERE b>=473500 AND b<473600; SELECT count(*), avg(b) FROM t2 WHERE b>=473600 AND b<473700; SELECT count(*), avg(b) FROM t2 WHERE b>=473700 AND b<473800; SELECT count(*), avg(b) FROM t2 WHERE b>=473800 AND b<473900; SELECT count(*), avg(b) FROM t2 WHERE b>=473900 AND b<474000; SELECT count(*), avg(b) FROM t2 WHERE b>=474000 AND b<474100; SELECT count(*), avg(b) FROM t2 WHERE b>=474100 AND b<474200; SELECT count(*), avg(b) FROM t2 WHERE b>=474200 AND b<474300; SELECT count(*), avg(b) FROM t2 WHERE b>=474300 AND b<474400; SELECT count(*), avg(b) FROM t2 WHERE b>=474400 AND b<474500; SELECT count(*), avg(b) FROM t2 WHERE b>=474500 AND b<474600; SELECT count(*), avg(b) FROM t2 WHERE b>=474600 AND b<474700; SELECT count(*), avg(b) FROM t2 WHERE b>=474700 AND b<474800; SELECT count(*), avg(b) FROM t2 WHERE b>=474800 AND b<474900; SELECT count(*), avg(b) FROM t2 WHERE b>=474900 AND b<475000; SELECT count(*), avg(b) FROM t2 WHERE b>=475000 AND b<475100; SELECT count(*), avg(b) FROM t2 WHERE b>=475100 AND b<475200; SELECT count(*), avg(b) FROM t2 WHERE b>=475200 AND b<475300; SELECT count(*), avg(b) FROM t2 WHERE b>=475300 AND b<475400; SELECT count(*), avg(b) FROM t2 WHERE b>=475400 AND b<475500; SELECT count(*), avg(b) FROM t2 WHERE b>=475500 AND b<475600; SELECT count(*), avg(b) FROM t2 WHERE b>=475600 AND b<475700; SELECT count(*), avg(b) FROM t2 WHERE b>=475700 AND b<475800; SELECT count(*), avg(b) FROM t2 WHERE b>=475800 AND b<475900; SELECT count(*), avg(b) FROM t2 WHERE b>=475900 AND b<476000; SELECT count(*), avg(b) FROM t2 WHERE b>=476000 AND b<476100; SELECT count(*), avg(b) FROM t2 WHERE b>=476100 AND b<476200; SELECT count(*), avg(b) FROM t2 WHERE b>=476200 AND b<476300; SELECT count(*), avg(b) FROM t2 WHERE b>=476300 AND b<476400; SELECT count(*), avg(b) FROM t2 WHERE b>=476400 AND b<476500; SELECT count(*), avg(b) FROM t2 WHERE b>=476500 AND b<476600; SELECT count(*), avg(b) FROM t2 WHERE b>=476600 AND b<476700; SELECT count(*), avg(b) FROM t2 WHERE b>=476700 AND b<476800; SELECT count(*), avg(b) FROM t2 WHERE b>=476800 AND b<476900; SELECT count(*), avg(b) FROM t2 WHERE b>=476900 AND b<477000; SELECT count(*), avg(b) FROM t2 WHERE b>=477000 AND b<477100; SELECT count(*), avg(b) FROM t2 WHERE b>=477100 AND b<477200; SELECT count(*), avg(b) FROM t2 WHERE b>=477200 AND b<477300; SELECT count(*), avg(b) FROM t2 WHERE b>=477300 AND b<477400; SELECT count(*), avg(b) FROM t2 WHERE b>=477400 AND b<477500; SELECT count(*), avg(b) FROM t2 WHERE b>=477500 AND b<477600; SELECT count(*), avg(b) FROM t2 WHERE b>=477600 AND b<477700; SELECT count(*), avg(b) FROM t2 WHERE b>=477700 AND b<477800; SELECT count(*), avg(b) FROM t2 WHERE b>=477800 AND b<477900; SELECT count(*), avg(b) FROM t2 WHERE b>=477900 AND b<478000; SELECT count(*), avg(b) FROM t2 WHERE b>=478000 AND b<478100; SELECT count(*), avg(b) FROM t2 WHERE b>=478100 AND b<478200; SELECT count(*), avg(b) FROM t2 WHERE b>=478200 AND b<478300; SELECT count(*), avg(b) FROM t2 WHERE b>=478300 AND b<478400; SELECT count(*), avg(b) FROM t2 WHERE b>=478400 AND b<478500; SELECT count(*), avg(b) FROM t2 WHERE b>=478500 AND b<478600; SELECT count(*), avg(b) FROM t2 WHERE b>=478600 AND b<478700; SELECT count(*), avg(b) FROM t2 WHERE b>=478700 AND b<478800; SELECT count(*), avg(b) FROM t2 WHERE b>=478800 AND b<478900; SELECT count(*), avg(b) FROM t2 WHERE b>=478900 AND b<479000; SELECT count(*), avg(b) FROM t2 WHERE b>=479000 AND b<479100; SELECT count(*), avg(b) FROM t2 WHERE b>=479100 AND b<479200; SELECT count(*), avg(b) FROM t2 WHERE b>=479200 AND b<479300; SELECT count(*), avg(b) FROM t2 WHERE b>=479300 AND b<479400; SELECT count(*), avg(b) FROM t2 WHERE b>=479400 AND b<479500; SELECT count(*), avg(b) FROM t2 WHERE b>=479500 AND b<479600; SELECT count(*), avg(b) FROM t2 WHERE b>=479600 AND b<479700; SELECT count(*), avg(b) FROM t2 WHERE b>=479700 AND b<479800; SELECT count(*), avg(b) FROM t2 WHERE b>=479800 AND b<479900; SELECT count(*), avg(b) FROM t2 WHERE b>=479900 AND b<480000; SELECT count(*), avg(b) FROM t2 WHERE b>=480000 AND b<480100; SELECT count(*), avg(b) FROM t2 WHERE b>=480100 AND b<480200; SELECT count(*), avg(b) FROM t2 WHERE b>=480200 AND b<480300; SELECT count(*), avg(b) FROM t2 WHERE b>=480300 AND b<480400; SELECT count(*), avg(b) FROM t2 WHERE b>=480400 AND b<480500; SELECT count(*), avg(b) FROM t2 WHERE b>=480500 AND b<480600; SELECT count(*), avg(b) FROM t2 WHERE b>=480600 AND b<480700; SELECT count(*), avg(b) FROM t2 WHERE b>=480700 AND b<480800; SELECT count(*), avg(b) FROM t2 WHERE b>=480800 AND b<480900; SELECT count(*), avg(b) FROM t2 WHERE b>=480900 AND b<481000; SELECT count(*), avg(b) FROM t2 WHERE b>=481000 AND b<481100; SELECT count(*), avg(b) FROM t2 WHERE b>=481100 AND b<481200; SELECT count(*), avg(b) FROM t2 WHERE b>=481200 AND b<481300; SELECT count(*), avg(b) FROM t2 WHERE b>=481300 AND b<481400; SELECT count(*), avg(b) FROM t2 WHERE b>=481400 AND b<481500; SELECT count(*), avg(b) FROM t2 WHERE b>=481500 AND b<481600; SELECT count(*), avg(b) FROM t2 WHERE b>=481600 AND b<481700; SELECT count(*), avg(b) FROM t2 WHERE b>=481700 AND b<481800; SELECT count(*), avg(b) FROM t2 WHERE b>=481800 AND b<481900; SELECT count(*), avg(b) FROM t2 WHERE b>=481900 AND b<482000; SELECT count(*), avg(b) FROM t2 WHERE b>=482000 AND b<482100; SELECT count(*), avg(b) FROM t2 WHERE b>=482100 AND b<482200; SELECT count(*), avg(b) FROM t2 WHERE b>=482200 AND b<482300; SELECT count(*), avg(b) FROM t2 WHERE b>=482300 AND b<482400; SELECT count(*), avg(b) FROM t2 WHERE b>=482400 AND b<482500; SELECT count(*), avg(b) FROM t2 WHERE b>=482500 AND b<482600; SELECT count(*), avg(b) FROM t2 WHERE b>=482600 AND b<482700; SELECT count(*), avg(b) FROM t2 WHERE b>=482700 AND b<482800; SELECT count(*), avg(b) FROM t2 WHERE b>=482800 AND b<482900; SELECT count(*), avg(b) FROM t2 WHERE b>=482900 AND b<483000; SELECT count(*), avg(b) FROM t2 WHERE b>=483000 AND b<483100; SELECT count(*), avg(b) FROM t2 WHERE b>=483100 AND b<483200; SELECT count(*), avg(b) FROM t2 WHERE b>=483200 AND b<483300; SELECT count(*), avg(b) FROM t2 WHERE b>=483300 AND b<483400; SELECT count(*), avg(b) FROM t2 WHERE b>=483400 AND b<483500; SELECT count(*), avg(b) FROM t2 WHERE b>=483500 AND b<483600; SELECT count(*), avg(b) FROM t2 WHERE b>=483600 AND b<483700; SELECT count(*), avg(b) FROM t2 WHERE b>=483700 AND b<483800; SELECT count(*), avg(b) FROM t2 WHERE b>=483800 AND b<483900; SELECT count(*), avg(b) FROM t2 WHERE b>=483900 AND b<484000; SELECT count(*), avg(b) FROM t2 WHERE b>=484000 AND b<484100; SELECT count(*), avg(b) FROM t2 WHERE b>=484100 AND b<484200; SELECT count(*), avg(b) FROM t2 WHERE b>=484200 AND b<484300; SELECT count(*), avg(b) FROM t2 WHERE b>=484300 AND b<484400; SELECT count(*), avg(b) FROM t2 WHERE b>=484400 AND b<484500; SELECT count(*), avg(b) FROM t2 WHERE b>=484500 AND b<484600; SELECT count(*), avg(b) FROM t2 WHERE b>=484600 AND b<484700; SELECT count(*), avg(b) FROM t2 WHERE b>=484700 AND b<484800; SELECT count(*), avg(b) FROM t2 WHERE b>=484800 AND b<484900; SELECT count(*), avg(b) FROM t2 WHERE b>=484900 AND b<485000; SELECT count(*), avg(b) FROM t2 WHERE b>=485000 AND b<485100; SELECT count(*), avg(b) FROM t2 WHERE b>=485100 AND b<485200; SELECT count(*), avg(b) FROM t2 WHERE b>=485200 AND b<485300; SELECT count(*), avg(b) FROM t2 WHERE b>=485300 AND b<485400; SELECT count(*), avg(b) FROM t2 WHERE b>=485400 AND b<485500; SELECT count(*), avg(b) FROM t2 WHERE b>=485500 AND b<485600; SELECT count(*), avg(b) FROM t2 WHERE b>=485600 AND b<485700; SELECT count(*), avg(b) FROM t2 WHERE b>=485700 AND b<485800; SELECT count(*), avg(b) FROM t2 WHERE b>=485800 AND b<485900; SELECT count(*), avg(b) FROM t2 WHERE b>=485900 AND b<486000; SELECT count(*), avg(b) FROM t2 WHERE b>=486000 AND b<486100; SELECT count(*), avg(b) FROM t2 WHERE b>=486100 AND b<486200; SELECT count(*), avg(b) FROM t2 WHERE b>=486200 AND b<486300; SELECT count(*), avg(b) FROM t2 WHERE b>=486300 AND b<486400; SELECT count(*), avg(b) FROM t2 WHERE b>=486400 AND b<486500; SELECT count(*), avg(b) FROM t2 WHERE b>=486500 AND b<486600; SELECT count(*), avg(b) FROM t2 WHERE b>=486600 AND b<486700; SELECT count(*), avg(b) FROM t2 WHERE b>=486700 AND b<486800; SELECT count(*), avg(b) FROM t2 WHERE b>=486800 AND b<486900; SELECT count(*), avg(b) FROM t2 WHERE b>=486900 AND b<487000; SELECT count(*), avg(b) FROM t2 WHERE b>=487000 AND b<487100; SELECT count(*), avg(b) FROM t2 WHERE b>=487100 AND b<487200; SELECT count(*), avg(b) FROM t2 WHERE b>=487200 AND b<487300; SELECT count(*), avg(b) FROM t2 WHERE b>=487300 AND b<487400; SELECT count(*), avg(b) FROM t2 WHERE b>=487400 AND b<487500; SELECT count(*), avg(b) FROM t2 WHERE b>=487500 AND b<487600; SELECT count(*), avg(b) FROM t2 WHERE b>=487600 AND b<487700; SELECT count(*), avg(b) FROM t2 WHERE b>=487700 AND b<487800; SELECT count(*), avg(b) FROM t2 WHERE b>=487800 AND b<487900; SELECT count(*), avg(b) FROM t2 WHERE b>=487900 AND b<488000; SELECT count(*), avg(b) FROM t2 WHERE b>=488000 AND b<488100; SELECT count(*), avg(b) FROM t2 WHERE b>=488100 AND b<488200; SELECT count(*), avg(b) FROM t2 WHERE b>=488200 AND b<488300; SELECT count(*), avg(b) FROM t2 WHERE b>=488300 AND b<488400; SELECT count(*), avg(b) FROM t2 WHERE b>=488400 AND b<488500; SELECT count(*), avg(b) FROM t2 WHERE b>=488500 AND b<488600; SELECT count(*), avg(b) FROM t2 WHERE b>=488600 AND b<488700; SELECT count(*), avg(b) FROM t2 WHERE b>=488700 AND b<488800; SELECT count(*), avg(b) FROM t2 WHERE b>=488800 AND b<488900; SELECT count(*), avg(b) FROM t2 WHERE b>=488900 AND b<489000; SELECT count(*), avg(b) FROM t2 WHERE b>=489000 AND b<489100; SELECT count(*), avg(b) FROM t2 WHERE b>=489100 AND b<489200; SELECT count(*), avg(b) FROM t2 WHERE b>=489200 AND b<489300; SELECT count(*), avg(b) FROM t2 WHERE b>=489300 AND b<489400; SELECT count(*), avg(b) FROM t2 WHERE b>=489400 AND b<489500; SELECT count(*), avg(b) FROM t2 WHERE b>=489500 AND b<489600; SELECT count(*), avg(b) FROM t2 WHERE b>=489600 AND b<489700; SELECT count(*), avg(b) FROM t2 WHERE b>=489700 AND b<489800; SELECT count(*), avg(b) FROM t2 WHERE b>=489800 AND b<489900; SELECT count(*), avg(b) FROM t2 WHERE b>=489900 AND b<490000; SELECT count(*), avg(b) FROM t2 WHERE b>=490000 AND b<490100; SELECT count(*), avg(b) FROM t2 WHERE b>=490100 AND b<490200; SELECT count(*), avg(b) FROM t2 WHERE b>=490200 AND b<490300; SELECT count(*), avg(b) FROM t2 WHERE b>=490300 AND b<490400; SELECT count(*), avg(b) FROM t2 WHERE b>=490400 AND b<490500; SELECT count(*), avg(b) FROM t2 WHERE b>=490500 AND b<490600; SELECT count(*), avg(b) FROM t2 WHERE b>=490600 AND b<490700; SELECT count(*), avg(b) FROM t2 WHERE b>=490700 AND b<490800; SELECT count(*), avg(b) FROM t2 WHERE b>=490800 AND b<490900; SELECT count(*), avg(b) FROM t2 WHERE b>=490900 AND b<491000; SELECT count(*), avg(b) FROM t2 WHERE b>=491000 AND b<491100; SELECT count(*), avg(b) FROM t2 WHERE b>=491100 AND b<491200; SELECT count(*), avg(b) FROM t2 WHERE b>=491200 AND b<491300; SELECT count(*), avg(b) FROM t2 WHERE b>=491300 AND b<491400; SELECT count(*), avg(b) FROM t2 WHERE b>=491400 AND b<491500; SELECT count(*), avg(b) FROM t2 WHERE b>=491500 AND b<491600; SELECT count(*), avg(b) FROM t2 WHERE b>=491600 AND b<491700; SELECT count(*), avg(b) FROM t2 WHERE b>=491700 AND b<491800; SELECT count(*), avg(b) FROM t2 WHERE b>=491800 AND b<491900; SELECT count(*), avg(b) FROM t2 WHERE b>=491900 AND b<492000; SELECT count(*), avg(b) FROM t2 WHERE b>=492000 AND b<492100; SELECT count(*), avg(b) FROM t2 WHERE b>=492100 AND b<492200; SELECT count(*), avg(b) FROM t2 WHERE b>=492200 AND b<492300; SELECT count(*), avg(b) FROM t2 WHERE b>=492300 AND b<492400; SELECT count(*), avg(b) FROM t2 WHERE b>=492400 AND b<492500; SELECT count(*), avg(b) FROM t2 WHERE b>=492500 AND b<492600; SELECT count(*), avg(b) FROM t2 WHERE b>=492600 AND b<492700; SELECT count(*), avg(b) FROM t2 WHERE b>=492700 AND b<492800; SELECT count(*), avg(b) FROM t2 WHERE b>=492800 AND b<492900; SELECT count(*), avg(b) FROM t2 WHERE b>=492900 AND b<493000; SELECT count(*), avg(b) FROM t2 WHERE b>=493000 AND b<493100; SELECT count(*), avg(b) FROM t2 WHERE b>=493100 AND b<493200; SELECT count(*), avg(b) FROM t2 WHERE b>=493200 AND b<493300; SELECT count(*), avg(b) FROM t2 WHERE b>=493300 AND b<493400; SELECT count(*), avg(b) FROM t2 WHERE b>=493400 AND b<493500; SELECT count(*), avg(b) FROM t2 WHERE b>=493500 AND b<493600; SELECT count(*), avg(b) FROM t2 WHERE b>=493600 AND b<493700; SELECT count(*), avg(b) FROM t2 WHERE b>=493700 AND b<493800; SELECT count(*), avg(b) FROM t2 WHERE b>=493800 AND b<493900; SELECT count(*), avg(b) FROM t2 WHERE b>=493900 AND b<494000; SELECT count(*), avg(b) FROM t2 WHERE b>=494000 AND b<494100; SELECT count(*), avg(b) FROM t2 WHERE b>=494100 AND b<494200; SELECT count(*), avg(b) FROM t2 WHERE b>=494200 AND b<494300; SELECT count(*), avg(b) FROM t2 WHERE b>=494300 AND b<494400; SELECT count(*), avg(b) FROM t2 WHERE b>=494400 AND b<494500; SELECT count(*), avg(b) FROM t2 WHERE b>=494500 AND b<494600; SELECT count(*), avg(b) FROM t2 WHERE b>=494600 AND b<494700; SELECT count(*), avg(b) FROM t2 WHERE b>=494700 AND b<494800; SELECT count(*), avg(b) FROM t2 WHERE b>=494800 AND b<494900; SELECT count(*), avg(b) FROM t2 WHERE b>=494900 AND b<495000; SELECT count(*), avg(b) FROM t2 WHERE b>=495000 AND b<495100; SELECT count(*), avg(b) FROM t2 WHERE b>=495100 AND b<495200; SELECT count(*), avg(b) FROM t2 WHERE b>=495200 AND b<495300; SELECT count(*), avg(b) FROM t2 WHERE b>=495300 AND b<495400; SELECT count(*), avg(b) FROM t2 WHERE b>=495400 AND b<495500; SELECT count(*), avg(b) FROM t2 WHERE b>=495500 AND b<495600; SELECT count(*), avg(b) FROM t2 WHERE b>=495600 AND b<495700; SELECT count(*), avg(b) FROM t2 WHERE b>=495700 AND b<495800; SELECT count(*), avg(b) FROM t2 WHERE b>=495800 AND b<495900; SELECT count(*), avg(b) FROM t2 WHERE b>=495900 AND b<496000; SELECT count(*), avg(b) FROM t2 WHERE b>=496000 AND b<496100; SELECT count(*), avg(b) FROM t2 WHERE b>=496100 AND b<496200; SELECT count(*), avg(b) FROM t2 WHERE b>=496200 AND b<496300; SELECT count(*), avg(b) FROM t2 WHERE b>=496300 AND b<496400; SELECT count(*), avg(b) FROM t2 WHERE b>=496400 AND b<496500; SELECT count(*), avg(b) FROM t2 WHERE b>=496500 AND b<496600; SELECT count(*), avg(b) FROM t2 WHERE b>=496600 AND b<496700; SELECT count(*), avg(b) FROM t2 WHERE b>=496700 AND b<496800; SELECT count(*), avg(b) FROM t2 WHERE b>=496800 AND b<496900; SELECT count(*), avg(b) FROM t2 WHERE b>=496900 AND b<497000; SELECT count(*), avg(b) FROM t2 WHERE b>=497000 AND b<497100; SELECT count(*), avg(b) FROM t2 WHERE b>=497100 AND b<497200; SELECT count(*), avg(b) FROM t2 WHERE b>=497200 AND b<497300; SELECT count(*), avg(b) FROM t2 WHERE b>=497300 AND b<497400; SELECT count(*), avg(b) FROM t2 WHERE b>=497400 AND b<497500; SELECT count(*), avg(b) FROM t2 WHERE b>=497500 AND b<497600; SELECT count(*), avg(b) FROM t2 WHERE b>=497600 AND b<497700; SELECT count(*), avg(b) FROM t2 WHERE b>=497700 AND b<497800; SELECT count(*), avg(b) FROM t2 WHERE b>=497800 AND b<497900; SELECT count(*), avg(b) FROM t2 WHERE b>=497900 AND b<498000; SELECT count(*), avg(b) FROM t2 WHERE b>=498000 AND b<498100; SELECT count(*), avg(b) FROM t2 WHERE b>=498100 AND b<498200; SELECT count(*), avg(b) FROM t2 WHERE b>=498200 AND b<498300; SELECT count(*), avg(b) FROM t2 WHERE b>=498300 AND b<498400; SELECT count(*), avg(b) FROM t2 WHERE b>=498400 AND b<498500; SELECT count(*), avg(b) FROM t2 WHERE b>=498500 AND b<498600; SELECT count(*), avg(b) FROM t2 WHERE b>=498600 AND b<498700; SELECT count(*), avg(b) FROM t2 WHERE b>=498700 AND b<498800; SELECT count(*), avg(b) FROM t2 WHERE b>=498800 AND b<498900; SELECT count(*), avg(b) FROM t2 WHERE b>=498900 AND b<499000; SELECT count(*), avg(b) FROM t2 WHERE b>=499000 AND b<499100; SELECT count(*), avg(b) FROM t2 WHERE b>=499100 AND b<499200; SELECT count(*), avg(b) FROM t2 WHERE b>=499200 AND b<499300; SELECT count(*), avg(b) FROM t2 WHERE b>=499300 AND b<499400; SELECT count(*), avg(b) FROM t2 WHERE b>=499400 AND b<499500; SELECT count(*), avg(b) FROM t2 WHERE b>=499500 AND b<499600; SELECT count(*), avg(b) FROM t2 WHERE b>=499600 AND b<499700; SELECT count(*), avg(b) FROM t2 WHERE b>=499700 AND b<499800; SELECT count(*), avg(b) FROM t2 WHERE b>=499800 AND b<499900; SELECT count(*), avg(b) FROM t2 WHERE b>=499900 AND b<500000; COMMIT; ================================================ FILE: packages/benchmark/src/benchmark8.sql ================================================ BEGIN; UPDATE t1 SET b=b*2 WHERE a>=0 AND a<10; UPDATE t1 SET b=b*2 WHERE a>=10 AND a<20; UPDATE t1 SET b=b*2 WHERE a>=20 AND a<30; UPDATE t1 SET b=b*2 WHERE a>=30 AND a<40; UPDATE t1 SET b=b*2 WHERE a>=40 AND a<50; UPDATE t1 SET b=b*2 WHERE a>=50 AND a<60; UPDATE t1 SET b=b*2 WHERE a>=60 AND a<70; UPDATE t1 SET b=b*2 WHERE a>=70 AND a<80; UPDATE t1 SET b=b*2 WHERE a>=80 AND a<90; UPDATE t1 SET b=b*2 WHERE a>=90 AND a<100; UPDATE t1 SET b=b*2 WHERE a>=100 AND a<110; UPDATE t1 SET b=b*2 WHERE a>=110 AND a<120; UPDATE t1 SET b=b*2 WHERE a>=120 AND a<130; UPDATE t1 SET b=b*2 WHERE a>=130 AND a<140; UPDATE t1 SET b=b*2 WHERE a>=140 AND a<150; UPDATE t1 SET b=b*2 WHERE a>=150 AND a<160; UPDATE t1 SET b=b*2 WHERE a>=160 AND a<170; UPDATE t1 SET b=b*2 WHERE a>=170 AND a<180; UPDATE t1 SET b=b*2 WHERE a>=180 AND a<190; UPDATE t1 SET b=b*2 WHERE a>=190 AND a<200; UPDATE t1 SET b=b*2 WHERE a>=200 AND a<210; UPDATE t1 SET b=b*2 WHERE a>=210 AND a<220; UPDATE t1 SET b=b*2 WHERE a>=220 AND a<230; UPDATE t1 SET b=b*2 WHERE a>=230 AND a<240; UPDATE t1 SET b=b*2 WHERE a>=240 AND a<250; UPDATE t1 SET b=b*2 WHERE a>=250 AND a<260; UPDATE t1 SET b=b*2 WHERE a>=260 AND a<270; UPDATE t1 SET b=b*2 WHERE a>=270 AND a<280; UPDATE t1 SET b=b*2 WHERE a>=280 AND a<290; UPDATE t1 SET b=b*2 WHERE a>=290 AND a<300; UPDATE t1 SET b=b*2 WHERE a>=300 AND a<310; UPDATE t1 SET b=b*2 WHERE a>=310 AND a<320; UPDATE t1 SET b=b*2 WHERE a>=320 AND a<330; UPDATE t1 SET b=b*2 WHERE a>=330 AND a<340; UPDATE t1 SET b=b*2 WHERE a>=340 AND a<350; UPDATE t1 SET b=b*2 WHERE a>=350 AND a<360; UPDATE t1 SET b=b*2 WHERE a>=360 AND a<370; UPDATE t1 SET b=b*2 WHERE a>=370 AND a<380; UPDATE t1 SET b=b*2 WHERE a>=380 AND a<390; UPDATE t1 SET b=b*2 WHERE a>=390 AND a<400; UPDATE t1 SET b=b*2 WHERE a>=400 AND a<410; UPDATE t1 SET b=b*2 WHERE a>=410 AND a<420; UPDATE t1 SET b=b*2 WHERE a>=420 AND a<430; UPDATE t1 SET b=b*2 WHERE a>=430 AND a<440; UPDATE t1 SET b=b*2 WHERE a>=440 AND a<450; UPDATE t1 SET b=b*2 WHERE a>=450 AND a<460; UPDATE t1 SET b=b*2 WHERE a>=460 AND a<470; UPDATE t1 SET b=b*2 WHERE a>=470 AND a<480; UPDATE t1 SET b=b*2 WHERE a>=480 AND a<490; UPDATE t1 SET b=b*2 WHERE a>=490 AND a<500; UPDATE t1 SET b=b*2 WHERE a>=500 AND a<510; UPDATE t1 SET b=b*2 WHERE a>=510 AND a<520; UPDATE t1 SET b=b*2 WHERE a>=520 AND a<530; UPDATE t1 SET b=b*2 WHERE a>=530 AND a<540; UPDATE t1 SET b=b*2 WHERE a>=540 AND a<550; UPDATE t1 SET b=b*2 WHERE a>=550 AND a<560; UPDATE t1 SET b=b*2 WHERE a>=560 AND a<570; UPDATE t1 SET b=b*2 WHERE a>=570 AND a<580; UPDATE t1 SET b=b*2 WHERE a>=580 AND a<590; UPDATE t1 SET b=b*2 WHERE a>=590 AND a<600; UPDATE t1 SET b=b*2 WHERE a>=600 AND a<610; UPDATE t1 SET b=b*2 WHERE a>=610 AND a<620; UPDATE t1 SET b=b*2 WHERE a>=620 AND a<630; UPDATE t1 SET b=b*2 WHERE a>=630 AND a<640; UPDATE t1 SET b=b*2 WHERE a>=640 AND a<650; UPDATE t1 SET b=b*2 WHERE a>=650 AND a<660; UPDATE t1 SET b=b*2 WHERE a>=660 AND a<670; UPDATE t1 SET b=b*2 WHERE a>=670 AND a<680; UPDATE t1 SET b=b*2 WHERE a>=680 AND a<690; UPDATE t1 SET b=b*2 WHERE a>=690 AND a<700; UPDATE t1 SET b=b*2 WHERE a>=700 AND a<710; UPDATE t1 SET b=b*2 WHERE a>=710 AND a<720; UPDATE t1 SET b=b*2 WHERE a>=720 AND a<730; UPDATE t1 SET b=b*2 WHERE a>=730 AND a<740; UPDATE t1 SET b=b*2 WHERE a>=740 AND a<750; UPDATE t1 SET b=b*2 WHERE a>=750 AND a<760; UPDATE t1 SET b=b*2 WHERE a>=760 AND a<770; UPDATE t1 SET b=b*2 WHERE a>=770 AND a<780; UPDATE t1 SET b=b*2 WHERE a>=780 AND a<790; UPDATE t1 SET b=b*2 WHERE a>=790 AND a<800; UPDATE t1 SET b=b*2 WHERE a>=800 AND a<810; UPDATE t1 SET b=b*2 WHERE a>=810 AND a<820; UPDATE t1 SET b=b*2 WHERE a>=820 AND a<830; UPDATE t1 SET b=b*2 WHERE a>=830 AND a<840; UPDATE t1 SET b=b*2 WHERE a>=840 AND a<850; UPDATE t1 SET b=b*2 WHERE a>=850 AND a<860; UPDATE t1 SET b=b*2 WHERE a>=860 AND a<870; UPDATE t1 SET b=b*2 WHERE a>=870 AND a<880; UPDATE t1 SET b=b*2 WHERE a>=880 AND a<890; UPDATE t1 SET b=b*2 WHERE a>=890 AND a<900; UPDATE t1 SET b=b*2 WHERE a>=900 AND a<910; UPDATE t1 SET b=b*2 WHERE a>=910 AND a<920; UPDATE t1 SET b=b*2 WHERE a>=920 AND a<930; UPDATE t1 SET b=b*2 WHERE a>=930 AND a<940; UPDATE t1 SET b=b*2 WHERE a>=940 AND a<950; UPDATE t1 SET b=b*2 WHERE a>=950 AND a<960; UPDATE t1 SET b=b*2 WHERE a>=960 AND a<970; UPDATE t1 SET b=b*2 WHERE a>=970 AND a<980; UPDATE t1 SET b=b*2 WHERE a>=980 AND a<990; UPDATE t1 SET b=b*2 WHERE a>=990 AND a<1000; UPDATE t1 SET b=b*2 WHERE a>=1000 AND a<1010; UPDATE t1 SET b=b*2 WHERE a>=1010 AND a<1020; UPDATE t1 SET b=b*2 WHERE a>=1020 AND a<1030; UPDATE t1 SET b=b*2 WHERE a>=1030 AND a<1040; UPDATE t1 SET b=b*2 WHERE a>=1040 AND a<1050; UPDATE t1 SET b=b*2 WHERE a>=1050 AND a<1060; UPDATE t1 SET b=b*2 WHERE a>=1060 AND a<1070; UPDATE t1 SET b=b*2 WHERE a>=1070 AND a<1080; UPDATE t1 SET b=b*2 WHERE a>=1080 AND a<1090; UPDATE t1 SET b=b*2 WHERE a>=1090 AND a<1100; UPDATE t1 SET b=b*2 WHERE a>=1100 AND a<1110; UPDATE t1 SET b=b*2 WHERE a>=1110 AND a<1120; UPDATE t1 SET b=b*2 WHERE a>=1120 AND a<1130; UPDATE t1 SET b=b*2 WHERE a>=1130 AND a<1140; UPDATE t1 SET b=b*2 WHERE a>=1140 AND a<1150; UPDATE t1 SET b=b*2 WHERE a>=1150 AND a<1160; UPDATE t1 SET b=b*2 WHERE a>=1160 AND a<1170; UPDATE t1 SET b=b*2 WHERE a>=1170 AND a<1180; UPDATE t1 SET b=b*2 WHERE a>=1180 AND a<1190; UPDATE t1 SET b=b*2 WHERE a>=1190 AND a<1200; UPDATE t1 SET b=b*2 WHERE a>=1200 AND a<1210; UPDATE t1 SET b=b*2 WHERE a>=1210 AND a<1220; UPDATE t1 SET b=b*2 WHERE a>=1220 AND a<1230; UPDATE t1 SET b=b*2 WHERE a>=1230 AND a<1240; UPDATE t1 SET b=b*2 WHERE a>=1240 AND a<1250; UPDATE t1 SET b=b*2 WHERE a>=1250 AND a<1260; UPDATE t1 SET b=b*2 WHERE a>=1260 AND a<1270; UPDATE t1 SET b=b*2 WHERE a>=1270 AND a<1280; UPDATE t1 SET b=b*2 WHERE a>=1280 AND a<1290; UPDATE t1 SET b=b*2 WHERE a>=1290 AND a<1300; UPDATE t1 SET b=b*2 WHERE a>=1300 AND a<1310; UPDATE t1 SET b=b*2 WHERE a>=1310 AND a<1320; UPDATE t1 SET b=b*2 WHERE a>=1320 AND a<1330; UPDATE t1 SET b=b*2 WHERE a>=1330 AND a<1340; UPDATE t1 SET b=b*2 WHERE a>=1340 AND a<1350; UPDATE t1 SET b=b*2 WHERE a>=1350 AND a<1360; UPDATE t1 SET b=b*2 WHERE a>=1360 AND a<1370; UPDATE t1 SET b=b*2 WHERE a>=1370 AND a<1380; UPDATE t1 SET b=b*2 WHERE a>=1380 AND a<1390; UPDATE t1 SET b=b*2 WHERE a>=1390 AND a<1400; UPDATE t1 SET b=b*2 WHERE a>=1400 AND a<1410; UPDATE t1 SET b=b*2 WHERE a>=1410 AND a<1420; UPDATE t1 SET b=b*2 WHERE a>=1420 AND a<1430; UPDATE t1 SET b=b*2 WHERE a>=1430 AND a<1440; UPDATE t1 SET b=b*2 WHERE a>=1440 AND a<1450; UPDATE t1 SET b=b*2 WHERE a>=1450 AND a<1460; UPDATE t1 SET b=b*2 WHERE a>=1460 AND a<1470; UPDATE t1 SET b=b*2 WHERE a>=1470 AND a<1480; UPDATE t1 SET b=b*2 WHERE a>=1480 AND a<1490; UPDATE t1 SET b=b*2 WHERE a>=1490 AND a<1500; UPDATE t1 SET b=b*2 WHERE a>=1500 AND a<1510; UPDATE t1 SET b=b*2 WHERE a>=1510 AND a<1520; UPDATE t1 SET b=b*2 WHERE a>=1520 AND a<1530; UPDATE t1 SET b=b*2 WHERE a>=1530 AND a<1540; UPDATE t1 SET b=b*2 WHERE a>=1540 AND a<1550; UPDATE t1 SET b=b*2 WHERE a>=1550 AND a<1560; UPDATE t1 SET b=b*2 WHERE a>=1560 AND a<1570; UPDATE t1 SET b=b*2 WHERE a>=1570 AND a<1580; UPDATE t1 SET b=b*2 WHERE a>=1580 AND a<1590; UPDATE t1 SET b=b*2 WHERE a>=1590 AND a<1600; UPDATE t1 SET b=b*2 WHERE a>=1600 AND a<1610; UPDATE t1 SET b=b*2 WHERE a>=1610 AND a<1620; UPDATE t1 SET b=b*2 WHERE a>=1620 AND a<1630; UPDATE t1 SET b=b*2 WHERE a>=1630 AND a<1640; UPDATE t1 SET b=b*2 WHERE a>=1640 AND a<1650; UPDATE t1 SET b=b*2 WHERE a>=1650 AND a<1660; UPDATE t1 SET b=b*2 WHERE a>=1660 AND a<1670; UPDATE t1 SET b=b*2 WHERE a>=1670 AND a<1680; UPDATE t1 SET b=b*2 WHERE a>=1680 AND a<1690; UPDATE t1 SET b=b*2 WHERE a>=1690 AND a<1700; UPDATE t1 SET b=b*2 WHERE a>=1700 AND a<1710; UPDATE t1 SET b=b*2 WHERE a>=1710 AND a<1720; UPDATE t1 SET b=b*2 WHERE a>=1720 AND a<1730; UPDATE t1 SET b=b*2 WHERE a>=1730 AND a<1740; UPDATE t1 SET b=b*2 WHERE a>=1740 AND a<1750; UPDATE t1 SET b=b*2 WHERE a>=1750 AND a<1760; UPDATE t1 SET b=b*2 WHERE a>=1760 AND a<1770; UPDATE t1 SET b=b*2 WHERE a>=1770 AND a<1780; UPDATE t1 SET b=b*2 WHERE a>=1780 AND a<1790; UPDATE t1 SET b=b*2 WHERE a>=1790 AND a<1800; UPDATE t1 SET b=b*2 WHERE a>=1800 AND a<1810; UPDATE t1 SET b=b*2 WHERE a>=1810 AND a<1820; UPDATE t1 SET b=b*2 WHERE a>=1820 AND a<1830; UPDATE t1 SET b=b*2 WHERE a>=1830 AND a<1840; UPDATE t1 SET b=b*2 WHERE a>=1840 AND a<1850; UPDATE t1 SET b=b*2 WHERE a>=1850 AND a<1860; UPDATE t1 SET b=b*2 WHERE a>=1860 AND a<1870; UPDATE t1 SET b=b*2 WHERE a>=1870 AND a<1880; UPDATE t1 SET b=b*2 WHERE a>=1880 AND a<1890; UPDATE t1 SET b=b*2 WHERE a>=1890 AND a<1900; UPDATE t1 SET b=b*2 WHERE a>=1900 AND a<1910; UPDATE t1 SET b=b*2 WHERE a>=1910 AND a<1920; UPDATE t1 SET b=b*2 WHERE a>=1920 AND a<1930; UPDATE t1 SET b=b*2 WHERE a>=1930 AND a<1940; UPDATE t1 SET b=b*2 WHERE a>=1940 AND a<1950; UPDATE t1 SET b=b*2 WHERE a>=1950 AND a<1960; UPDATE t1 SET b=b*2 WHERE a>=1960 AND a<1970; UPDATE t1 SET b=b*2 WHERE a>=1970 AND a<1980; UPDATE t1 SET b=b*2 WHERE a>=1980 AND a<1990; UPDATE t1 SET b=b*2 WHERE a>=1990 AND a<2000; UPDATE t1 SET b=b*2 WHERE a>=2000 AND a<2010; UPDATE t1 SET b=b*2 WHERE a>=2010 AND a<2020; UPDATE t1 SET b=b*2 WHERE a>=2020 AND a<2030; UPDATE t1 SET b=b*2 WHERE a>=2030 AND a<2040; UPDATE t1 SET b=b*2 WHERE a>=2040 AND a<2050; UPDATE t1 SET b=b*2 WHERE a>=2050 AND a<2060; UPDATE t1 SET b=b*2 WHERE a>=2060 AND a<2070; UPDATE t1 SET b=b*2 WHERE a>=2070 AND a<2080; UPDATE t1 SET b=b*2 WHERE a>=2080 AND a<2090; UPDATE t1 SET b=b*2 WHERE a>=2090 AND a<2100; UPDATE t1 SET b=b*2 WHERE a>=2100 AND a<2110; UPDATE t1 SET b=b*2 WHERE a>=2110 AND a<2120; UPDATE t1 SET b=b*2 WHERE a>=2120 AND a<2130; UPDATE t1 SET b=b*2 WHERE a>=2130 AND a<2140; UPDATE t1 SET b=b*2 WHERE a>=2140 AND a<2150; UPDATE t1 SET b=b*2 WHERE a>=2150 AND a<2160; UPDATE t1 SET b=b*2 WHERE a>=2160 AND a<2170; UPDATE t1 SET b=b*2 WHERE a>=2170 AND a<2180; UPDATE t1 SET b=b*2 WHERE a>=2180 AND a<2190; UPDATE t1 SET b=b*2 WHERE a>=2190 AND a<2200; UPDATE t1 SET b=b*2 WHERE a>=2200 AND a<2210; UPDATE t1 SET b=b*2 WHERE a>=2210 AND a<2220; UPDATE t1 SET b=b*2 WHERE a>=2220 AND a<2230; UPDATE t1 SET b=b*2 WHERE a>=2230 AND a<2240; UPDATE t1 SET b=b*2 WHERE a>=2240 AND a<2250; UPDATE t1 SET b=b*2 WHERE a>=2250 AND a<2260; UPDATE t1 SET b=b*2 WHERE a>=2260 AND a<2270; UPDATE t1 SET b=b*2 WHERE a>=2270 AND a<2280; UPDATE t1 SET b=b*2 WHERE a>=2280 AND a<2290; UPDATE t1 SET b=b*2 WHERE a>=2290 AND a<2300; UPDATE t1 SET b=b*2 WHERE a>=2300 AND a<2310; UPDATE t1 SET b=b*2 WHERE a>=2310 AND a<2320; UPDATE t1 SET b=b*2 WHERE a>=2320 AND a<2330; UPDATE t1 SET b=b*2 WHERE a>=2330 AND a<2340; UPDATE t1 SET b=b*2 WHERE a>=2340 AND a<2350; UPDATE t1 SET b=b*2 WHERE a>=2350 AND a<2360; UPDATE t1 SET b=b*2 WHERE a>=2360 AND a<2370; UPDATE t1 SET b=b*2 WHERE a>=2370 AND a<2380; UPDATE t1 SET b=b*2 WHERE a>=2380 AND a<2390; UPDATE t1 SET b=b*2 WHERE a>=2390 AND a<2400; UPDATE t1 SET b=b*2 WHERE a>=2400 AND a<2410; UPDATE t1 SET b=b*2 WHERE a>=2410 AND a<2420; UPDATE t1 SET b=b*2 WHERE a>=2420 AND a<2430; UPDATE t1 SET b=b*2 WHERE a>=2430 AND a<2440; UPDATE t1 SET b=b*2 WHERE a>=2440 AND a<2450; UPDATE t1 SET b=b*2 WHERE a>=2450 AND a<2460; UPDATE t1 SET b=b*2 WHERE a>=2460 AND a<2470; UPDATE t1 SET b=b*2 WHERE a>=2470 AND a<2480; UPDATE t1 SET b=b*2 WHERE a>=2480 AND a<2490; UPDATE t1 SET b=b*2 WHERE a>=2490 AND a<2500; UPDATE t1 SET b=b*2 WHERE a>=2500 AND a<2510; UPDATE t1 SET b=b*2 WHERE a>=2510 AND a<2520; UPDATE t1 SET b=b*2 WHERE a>=2520 AND a<2530; UPDATE t1 SET b=b*2 WHERE a>=2530 AND a<2540; UPDATE t1 SET b=b*2 WHERE a>=2540 AND a<2550; UPDATE t1 SET b=b*2 WHERE a>=2550 AND a<2560; UPDATE t1 SET b=b*2 WHERE a>=2560 AND a<2570; UPDATE t1 SET b=b*2 WHERE a>=2570 AND a<2580; UPDATE t1 SET b=b*2 WHERE a>=2580 AND a<2590; UPDATE t1 SET b=b*2 WHERE a>=2590 AND a<2600; UPDATE t1 SET b=b*2 WHERE a>=2600 AND a<2610; UPDATE t1 SET b=b*2 WHERE a>=2610 AND a<2620; UPDATE t1 SET b=b*2 WHERE a>=2620 AND a<2630; UPDATE t1 SET b=b*2 WHERE a>=2630 AND a<2640; UPDATE t1 SET b=b*2 WHERE a>=2640 AND a<2650; UPDATE t1 SET b=b*2 WHERE a>=2650 AND a<2660; UPDATE t1 SET b=b*2 WHERE a>=2660 AND a<2670; UPDATE t1 SET b=b*2 WHERE a>=2670 AND a<2680; UPDATE t1 SET b=b*2 WHERE a>=2680 AND a<2690; UPDATE t1 SET b=b*2 WHERE a>=2690 AND a<2700; UPDATE t1 SET b=b*2 WHERE a>=2700 AND a<2710; UPDATE t1 SET b=b*2 WHERE a>=2710 AND a<2720; UPDATE t1 SET b=b*2 WHERE a>=2720 AND a<2730; UPDATE t1 SET b=b*2 WHERE a>=2730 AND a<2740; UPDATE t1 SET b=b*2 WHERE a>=2740 AND a<2750; UPDATE t1 SET b=b*2 WHERE a>=2750 AND a<2760; UPDATE t1 SET b=b*2 WHERE a>=2760 AND a<2770; UPDATE t1 SET b=b*2 WHERE a>=2770 AND a<2780; UPDATE t1 SET b=b*2 WHERE a>=2780 AND a<2790; UPDATE t1 SET b=b*2 WHERE a>=2790 AND a<2800; UPDATE t1 SET b=b*2 WHERE a>=2800 AND a<2810; UPDATE t1 SET b=b*2 WHERE a>=2810 AND a<2820; UPDATE t1 SET b=b*2 WHERE a>=2820 AND a<2830; UPDATE t1 SET b=b*2 WHERE a>=2830 AND a<2840; UPDATE t1 SET b=b*2 WHERE a>=2840 AND a<2850; UPDATE t1 SET b=b*2 WHERE a>=2850 AND a<2860; UPDATE t1 SET b=b*2 WHERE a>=2860 AND a<2870; UPDATE t1 SET b=b*2 WHERE a>=2870 AND a<2880; UPDATE t1 SET b=b*2 WHERE a>=2880 AND a<2890; UPDATE t1 SET b=b*2 WHERE a>=2890 AND a<2900; UPDATE t1 SET b=b*2 WHERE a>=2900 AND a<2910; UPDATE t1 SET b=b*2 WHERE a>=2910 AND a<2920; UPDATE t1 SET b=b*2 WHERE a>=2920 AND a<2930; UPDATE t1 SET b=b*2 WHERE a>=2930 AND a<2940; UPDATE t1 SET b=b*2 WHERE a>=2940 AND a<2950; UPDATE t1 SET b=b*2 WHERE a>=2950 AND a<2960; UPDATE t1 SET b=b*2 WHERE a>=2960 AND a<2970; UPDATE t1 SET b=b*2 WHERE a>=2970 AND a<2980; UPDATE t1 SET b=b*2 WHERE a>=2980 AND a<2990; UPDATE t1 SET b=b*2 WHERE a>=2990 AND a<3000; UPDATE t1 SET b=b*2 WHERE a>=3000 AND a<3010; UPDATE t1 SET b=b*2 WHERE a>=3010 AND a<3020; UPDATE t1 SET b=b*2 WHERE a>=3020 AND a<3030; UPDATE t1 SET b=b*2 WHERE a>=3030 AND a<3040; UPDATE t1 SET b=b*2 WHERE a>=3040 AND a<3050; UPDATE t1 SET b=b*2 WHERE a>=3050 AND a<3060; UPDATE t1 SET b=b*2 WHERE a>=3060 AND a<3070; UPDATE t1 SET b=b*2 WHERE a>=3070 AND a<3080; UPDATE t1 SET b=b*2 WHERE a>=3080 AND a<3090; UPDATE t1 SET b=b*2 WHERE a>=3090 AND a<3100; UPDATE t1 SET b=b*2 WHERE a>=3100 AND a<3110; UPDATE t1 SET b=b*2 WHERE a>=3110 AND a<3120; UPDATE t1 SET b=b*2 WHERE a>=3120 AND a<3130; UPDATE t1 SET b=b*2 WHERE a>=3130 AND a<3140; UPDATE t1 SET b=b*2 WHERE a>=3140 AND a<3150; UPDATE t1 SET b=b*2 WHERE a>=3150 AND a<3160; UPDATE t1 SET b=b*2 WHERE a>=3160 AND a<3170; UPDATE t1 SET b=b*2 WHERE a>=3170 AND a<3180; UPDATE t1 SET b=b*2 WHERE a>=3180 AND a<3190; UPDATE t1 SET b=b*2 WHERE a>=3190 AND a<3200; UPDATE t1 SET b=b*2 WHERE a>=3200 AND a<3210; UPDATE t1 SET b=b*2 WHERE a>=3210 AND a<3220; UPDATE t1 SET b=b*2 WHERE a>=3220 AND a<3230; UPDATE t1 SET b=b*2 WHERE a>=3230 AND a<3240; UPDATE t1 SET b=b*2 WHERE a>=3240 AND a<3250; UPDATE t1 SET b=b*2 WHERE a>=3250 AND a<3260; UPDATE t1 SET b=b*2 WHERE a>=3260 AND a<3270; UPDATE t1 SET b=b*2 WHERE a>=3270 AND a<3280; UPDATE t1 SET b=b*2 WHERE a>=3280 AND a<3290; UPDATE t1 SET b=b*2 WHERE a>=3290 AND a<3300; UPDATE t1 SET b=b*2 WHERE a>=3300 AND a<3310; UPDATE t1 SET b=b*2 WHERE a>=3310 AND a<3320; UPDATE t1 SET b=b*2 WHERE a>=3320 AND a<3330; UPDATE t1 SET b=b*2 WHERE a>=3330 AND a<3340; UPDATE t1 SET b=b*2 WHERE a>=3340 AND a<3350; UPDATE t1 SET b=b*2 WHERE a>=3350 AND a<3360; UPDATE t1 SET b=b*2 WHERE a>=3360 AND a<3370; UPDATE t1 SET b=b*2 WHERE a>=3370 AND a<3380; UPDATE t1 SET b=b*2 WHERE a>=3380 AND a<3390; UPDATE t1 SET b=b*2 WHERE a>=3390 AND a<3400; UPDATE t1 SET b=b*2 WHERE a>=3400 AND a<3410; UPDATE t1 SET b=b*2 WHERE a>=3410 AND a<3420; UPDATE t1 SET b=b*2 WHERE a>=3420 AND a<3430; UPDATE t1 SET b=b*2 WHERE a>=3430 AND a<3440; UPDATE t1 SET b=b*2 WHERE a>=3440 AND a<3450; UPDATE t1 SET b=b*2 WHERE a>=3450 AND a<3460; UPDATE t1 SET b=b*2 WHERE a>=3460 AND a<3470; UPDATE t1 SET b=b*2 WHERE a>=3470 AND a<3480; UPDATE t1 SET b=b*2 WHERE a>=3480 AND a<3490; UPDATE t1 SET b=b*2 WHERE a>=3490 AND a<3500; UPDATE t1 SET b=b*2 WHERE a>=3500 AND a<3510; UPDATE t1 SET b=b*2 WHERE a>=3510 AND a<3520; UPDATE t1 SET b=b*2 WHERE a>=3520 AND a<3530; UPDATE t1 SET b=b*2 WHERE a>=3530 AND a<3540; UPDATE t1 SET b=b*2 WHERE a>=3540 AND a<3550; UPDATE t1 SET b=b*2 WHERE a>=3550 AND a<3560; UPDATE t1 SET b=b*2 WHERE a>=3560 AND a<3570; UPDATE t1 SET b=b*2 WHERE a>=3570 AND a<3580; UPDATE t1 SET b=b*2 WHERE a>=3580 AND a<3590; UPDATE t1 SET b=b*2 WHERE a>=3590 AND a<3600; UPDATE t1 SET b=b*2 WHERE a>=3600 AND a<3610; UPDATE t1 SET b=b*2 WHERE a>=3610 AND a<3620; UPDATE t1 SET b=b*2 WHERE a>=3620 AND a<3630; UPDATE t1 SET b=b*2 WHERE a>=3630 AND a<3640; UPDATE t1 SET b=b*2 WHERE a>=3640 AND a<3650; UPDATE t1 SET b=b*2 WHERE a>=3650 AND a<3660; UPDATE t1 SET b=b*2 WHERE a>=3660 AND a<3670; UPDATE t1 SET b=b*2 WHERE a>=3670 AND a<3680; UPDATE t1 SET b=b*2 WHERE a>=3680 AND a<3690; UPDATE t1 SET b=b*2 WHERE a>=3690 AND a<3700; UPDATE t1 SET b=b*2 WHERE a>=3700 AND a<3710; UPDATE t1 SET b=b*2 WHERE a>=3710 AND a<3720; UPDATE t1 SET b=b*2 WHERE a>=3720 AND a<3730; UPDATE t1 SET b=b*2 WHERE a>=3730 AND a<3740; UPDATE t1 SET b=b*2 WHERE a>=3740 AND a<3750; UPDATE t1 SET b=b*2 WHERE a>=3750 AND a<3760; UPDATE t1 SET b=b*2 WHERE a>=3760 AND a<3770; UPDATE t1 SET b=b*2 WHERE a>=3770 AND a<3780; UPDATE t1 SET b=b*2 WHERE a>=3780 AND a<3790; UPDATE t1 SET b=b*2 WHERE a>=3790 AND a<3800; UPDATE t1 SET b=b*2 WHERE a>=3800 AND a<3810; UPDATE t1 SET b=b*2 WHERE a>=3810 AND a<3820; UPDATE t1 SET b=b*2 WHERE a>=3820 AND a<3830; UPDATE t1 SET b=b*2 WHERE a>=3830 AND a<3840; UPDATE t1 SET b=b*2 WHERE a>=3840 AND a<3850; UPDATE t1 SET b=b*2 WHERE a>=3850 AND a<3860; UPDATE t1 SET b=b*2 WHERE a>=3860 AND a<3870; UPDATE t1 SET b=b*2 WHERE a>=3870 AND a<3880; UPDATE t1 SET b=b*2 WHERE a>=3880 AND a<3890; UPDATE t1 SET b=b*2 WHERE a>=3890 AND a<3900; UPDATE t1 SET b=b*2 WHERE a>=3900 AND a<3910; UPDATE t1 SET b=b*2 WHERE a>=3910 AND a<3920; UPDATE t1 SET b=b*2 WHERE a>=3920 AND a<3930; UPDATE t1 SET b=b*2 WHERE a>=3930 AND a<3940; UPDATE t1 SET b=b*2 WHERE a>=3940 AND a<3950; UPDATE t1 SET b=b*2 WHERE a>=3950 AND a<3960; UPDATE t1 SET b=b*2 WHERE a>=3960 AND a<3970; UPDATE t1 SET b=b*2 WHERE a>=3970 AND a<3980; UPDATE t1 SET b=b*2 WHERE a>=3980 AND a<3990; UPDATE t1 SET b=b*2 WHERE a>=3990 AND a<4000; UPDATE t1 SET b=b*2 WHERE a>=4000 AND a<4010; UPDATE t1 SET b=b*2 WHERE a>=4010 AND a<4020; UPDATE t1 SET b=b*2 WHERE a>=4020 AND a<4030; UPDATE t1 SET b=b*2 WHERE a>=4030 AND a<4040; UPDATE t1 SET b=b*2 WHERE a>=4040 AND a<4050; UPDATE t1 SET b=b*2 WHERE a>=4050 AND a<4060; UPDATE t1 SET b=b*2 WHERE a>=4060 AND a<4070; UPDATE t1 SET b=b*2 WHERE a>=4070 AND a<4080; UPDATE t1 SET b=b*2 WHERE a>=4080 AND a<4090; UPDATE t1 SET b=b*2 WHERE a>=4090 AND a<4100; UPDATE t1 SET b=b*2 WHERE a>=4100 AND a<4110; UPDATE t1 SET b=b*2 WHERE a>=4110 AND a<4120; UPDATE t1 SET b=b*2 WHERE a>=4120 AND a<4130; UPDATE t1 SET b=b*2 WHERE a>=4130 AND a<4140; UPDATE t1 SET b=b*2 WHERE a>=4140 AND a<4150; UPDATE t1 SET b=b*2 WHERE a>=4150 AND a<4160; UPDATE t1 SET b=b*2 WHERE a>=4160 AND a<4170; UPDATE t1 SET b=b*2 WHERE a>=4170 AND a<4180; UPDATE t1 SET b=b*2 WHERE a>=4180 AND a<4190; UPDATE t1 SET b=b*2 WHERE a>=4190 AND a<4200; UPDATE t1 SET b=b*2 WHERE a>=4200 AND a<4210; UPDATE t1 SET b=b*2 WHERE a>=4210 AND a<4220; UPDATE t1 SET b=b*2 WHERE a>=4220 AND a<4230; UPDATE t1 SET b=b*2 WHERE a>=4230 AND a<4240; UPDATE t1 SET b=b*2 WHERE a>=4240 AND a<4250; UPDATE t1 SET b=b*2 WHERE a>=4250 AND a<4260; UPDATE t1 SET b=b*2 WHERE a>=4260 AND a<4270; UPDATE t1 SET b=b*2 WHERE a>=4270 AND a<4280; UPDATE t1 SET b=b*2 WHERE a>=4280 AND a<4290; UPDATE t1 SET b=b*2 WHERE a>=4290 AND a<4300; UPDATE t1 SET b=b*2 WHERE a>=4300 AND a<4310; UPDATE t1 SET b=b*2 WHERE a>=4310 AND a<4320; UPDATE t1 SET b=b*2 WHERE a>=4320 AND a<4330; UPDATE t1 SET b=b*2 WHERE a>=4330 AND a<4340; UPDATE t1 SET b=b*2 WHERE a>=4340 AND a<4350; UPDATE t1 SET b=b*2 WHERE a>=4350 AND a<4360; UPDATE t1 SET b=b*2 WHERE a>=4360 AND a<4370; UPDATE t1 SET b=b*2 WHERE a>=4370 AND a<4380; UPDATE t1 SET b=b*2 WHERE a>=4380 AND a<4390; UPDATE t1 SET b=b*2 WHERE a>=4390 AND a<4400; UPDATE t1 SET b=b*2 WHERE a>=4400 AND a<4410; UPDATE t1 SET b=b*2 WHERE a>=4410 AND a<4420; UPDATE t1 SET b=b*2 WHERE a>=4420 AND a<4430; UPDATE t1 SET b=b*2 WHERE a>=4430 AND a<4440; UPDATE t1 SET b=b*2 WHERE a>=4440 AND a<4450; UPDATE t1 SET b=b*2 WHERE a>=4450 AND a<4460; UPDATE t1 SET b=b*2 WHERE a>=4460 AND a<4470; UPDATE t1 SET b=b*2 WHERE a>=4470 AND a<4480; UPDATE t1 SET b=b*2 WHERE a>=4480 AND a<4490; UPDATE t1 SET b=b*2 WHERE a>=4490 AND a<4500; UPDATE t1 SET b=b*2 WHERE a>=4500 AND a<4510; UPDATE t1 SET b=b*2 WHERE a>=4510 AND a<4520; UPDATE t1 SET b=b*2 WHERE a>=4520 AND a<4530; UPDATE t1 SET b=b*2 WHERE a>=4530 AND a<4540; UPDATE t1 SET b=b*2 WHERE a>=4540 AND a<4550; UPDATE t1 SET b=b*2 WHERE a>=4550 AND a<4560; UPDATE t1 SET b=b*2 WHERE a>=4560 AND a<4570; UPDATE t1 SET b=b*2 WHERE a>=4570 AND a<4580; UPDATE t1 SET b=b*2 WHERE a>=4580 AND a<4590; UPDATE t1 SET b=b*2 WHERE a>=4590 AND a<4600; UPDATE t1 SET b=b*2 WHERE a>=4600 AND a<4610; UPDATE t1 SET b=b*2 WHERE a>=4610 AND a<4620; UPDATE t1 SET b=b*2 WHERE a>=4620 AND a<4630; UPDATE t1 SET b=b*2 WHERE a>=4630 AND a<4640; UPDATE t1 SET b=b*2 WHERE a>=4640 AND a<4650; UPDATE t1 SET b=b*2 WHERE a>=4650 AND a<4660; UPDATE t1 SET b=b*2 WHERE a>=4660 AND a<4670; UPDATE t1 SET b=b*2 WHERE a>=4670 AND a<4680; UPDATE t1 SET b=b*2 WHERE a>=4680 AND a<4690; UPDATE t1 SET b=b*2 WHERE a>=4690 AND a<4700; UPDATE t1 SET b=b*2 WHERE a>=4700 AND a<4710; UPDATE t1 SET b=b*2 WHERE a>=4710 AND a<4720; UPDATE t1 SET b=b*2 WHERE a>=4720 AND a<4730; UPDATE t1 SET b=b*2 WHERE a>=4730 AND a<4740; UPDATE t1 SET b=b*2 WHERE a>=4740 AND a<4750; UPDATE t1 SET b=b*2 WHERE a>=4750 AND a<4760; UPDATE t1 SET b=b*2 WHERE a>=4760 AND a<4770; UPDATE t1 SET b=b*2 WHERE a>=4770 AND a<4780; UPDATE t1 SET b=b*2 WHERE a>=4780 AND a<4790; UPDATE t1 SET b=b*2 WHERE a>=4790 AND a<4800; UPDATE t1 SET b=b*2 WHERE a>=4800 AND a<4810; UPDATE t1 SET b=b*2 WHERE a>=4810 AND a<4820; UPDATE t1 SET b=b*2 WHERE a>=4820 AND a<4830; UPDATE t1 SET b=b*2 WHERE a>=4830 AND a<4840; UPDATE t1 SET b=b*2 WHERE a>=4840 AND a<4850; UPDATE t1 SET b=b*2 WHERE a>=4850 AND a<4860; UPDATE t1 SET b=b*2 WHERE a>=4860 AND a<4870; UPDATE t1 SET b=b*2 WHERE a>=4870 AND a<4880; UPDATE t1 SET b=b*2 WHERE a>=4880 AND a<4890; UPDATE t1 SET b=b*2 WHERE a>=4890 AND a<4900; UPDATE t1 SET b=b*2 WHERE a>=4900 AND a<4910; UPDATE t1 SET b=b*2 WHERE a>=4910 AND a<4920; UPDATE t1 SET b=b*2 WHERE a>=4920 AND a<4930; UPDATE t1 SET b=b*2 WHERE a>=4930 AND a<4940; UPDATE t1 SET b=b*2 WHERE a>=4940 AND a<4950; UPDATE t1 SET b=b*2 WHERE a>=4950 AND a<4960; UPDATE t1 SET b=b*2 WHERE a>=4960 AND a<4970; UPDATE t1 SET b=b*2 WHERE a>=4970 AND a<4980; UPDATE t1 SET b=b*2 WHERE a>=4980 AND a<4990; UPDATE t1 SET b=b*2 WHERE a>=4990 AND a<5000; UPDATE t1 SET b=b*2 WHERE a>=5000 AND a<5010; UPDATE t1 SET b=b*2 WHERE a>=5010 AND a<5020; UPDATE t1 SET b=b*2 WHERE a>=5020 AND a<5030; UPDATE t1 SET b=b*2 WHERE a>=5030 AND a<5040; UPDATE t1 SET b=b*2 WHERE a>=5040 AND a<5050; UPDATE t1 SET b=b*2 WHERE a>=5050 AND a<5060; UPDATE t1 SET b=b*2 WHERE a>=5060 AND a<5070; UPDATE t1 SET b=b*2 WHERE a>=5070 AND a<5080; UPDATE t1 SET b=b*2 WHERE a>=5080 AND a<5090; UPDATE t1 SET b=b*2 WHERE a>=5090 AND a<5100; UPDATE t1 SET b=b*2 WHERE a>=5100 AND a<5110; UPDATE t1 SET b=b*2 WHERE a>=5110 AND a<5120; UPDATE t1 SET b=b*2 WHERE a>=5120 AND a<5130; UPDATE t1 SET b=b*2 WHERE a>=5130 AND a<5140; UPDATE t1 SET b=b*2 WHERE a>=5140 AND a<5150; UPDATE t1 SET b=b*2 WHERE a>=5150 AND a<5160; UPDATE t1 SET b=b*2 WHERE a>=5160 AND a<5170; UPDATE t1 SET b=b*2 WHERE a>=5170 AND a<5180; UPDATE t1 SET b=b*2 WHERE a>=5180 AND a<5190; UPDATE t1 SET b=b*2 WHERE a>=5190 AND a<5200; UPDATE t1 SET b=b*2 WHERE a>=5200 AND a<5210; UPDATE t1 SET b=b*2 WHERE a>=5210 AND a<5220; UPDATE t1 SET b=b*2 WHERE a>=5220 AND a<5230; UPDATE t1 SET b=b*2 WHERE a>=5230 AND a<5240; UPDATE t1 SET b=b*2 WHERE a>=5240 AND a<5250; UPDATE t1 SET b=b*2 WHERE a>=5250 AND a<5260; UPDATE t1 SET b=b*2 WHERE a>=5260 AND a<5270; UPDATE t1 SET b=b*2 WHERE a>=5270 AND a<5280; UPDATE t1 SET b=b*2 WHERE a>=5280 AND a<5290; UPDATE t1 SET b=b*2 WHERE a>=5290 AND a<5300; UPDATE t1 SET b=b*2 WHERE a>=5300 AND a<5310; UPDATE t1 SET b=b*2 WHERE a>=5310 AND a<5320; UPDATE t1 SET b=b*2 WHERE a>=5320 AND a<5330; UPDATE t1 SET b=b*2 WHERE a>=5330 AND a<5340; UPDATE t1 SET b=b*2 WHERE a>=5340 AND a<5350; UPDATE t1 SET b=b*2 WHERE a>=5350 AND a<5360; UPDATE t1 SET b=b*2 WHERE a>=5360 AND a<5370; UPDATE t1 SET b=b*2 WHERE a>=5370 AND a<5380; UPDATE t1 SET b=b*2 WHERE a>=5380 AND a<5390; UPDATE t1 SET b=b*2 WHERE a>=5390 AND a<5400; UPDATE t1 SET b=b*2 WHERE a>=5400 AND a<5410; UPDATE t1 SET b=b*2 WHERE a>=5410 AND a<5420; UPDATE t1 SET b=b*2 WHERE a>=5420 AND a<5430; UPDATE t1 SET b=b*2 WHERE a>=5430 AND a<5440; UPDATE t1 SET b=b*2 WHERE a>=5440 AND a<5450; UPDATE t1 SET b=b*2 WHERE a>=5450 AND a<5460; UPDATE t1 SET b=b*2 WHERE a>=5460 AND a<5470; UPDATE t1 SET b=b*2 WHERE a>=5470 AND a<5480; UPDATE t1 SET b=b*2 WHERE a>=5480 AND a<5490; UPDATE t1 SET b=b*2 WHERE a>=5490 AND a<5500; UPDATE t1 SET b=b*2 WHERE a>=5500 AND a<5510; UPDATE t1 SET b=b*2 WHERE a>=5510 AND a<5520; UPDATE t1 SET b=b*2 WHERE a>=5520 AND a<5530; UPDATE t1 SET b=b*2 WHERE a>=5530 AND a<5540; UPDATE t1 SET b=b*2 WHERE a>=5540 AND a<5550; UPDATE t1 SET b=b*2 WHERE a>=5550 AND a<5560; UPDATE t1 SET b=b*2 WHERE a>=5560 AND a<5570; UPDATE t1 SET b=b*2 WHERE a>=5570 AND a<5580; UPDATE t1 SET b=b*2 WHERE a>=5580 AND a<5590; UPDATE t1 SET b=b*2 WHERE a>=5590 AND a<5600; UPDATE t1 SET b=b*2 WHERE a>=5600 AND a<5610; UPDATE t1 SET b=b*2 WHERE a>=5610 AND a<5620; UPDATE t1 SET b=b*2 WHERE a>=5620 AND a<5630; UPDATE t1 SET b=b*2 WHERE a>=5630 AND a<5640; UPDATE t1 SET b=b*2 WHERE a>=5640 AND a<5650; UPDATE t1 SET b=b*2 WHERE a>=5650 AND a<5660; UPDATE t1 SET b=b*2 WHERE a>=5660 AND a<5670; UPDATE t1 SET b=b*2 WHERE a>=5670 AND a<5680; UPDATE t1 SET b=b*2 WHERE a>=5680 AND a<5690; UPDATE t1 SET b=b*2 WHERE a>=5690 AND a<5700; UPDATE t1 SET b=b*2 WHERE a>=5700 AND a<5710; UPDATE t1 SET b=b*2 WHERE a>=5710 AND a<5720; UPDATE t1 SET b=b*2 WHERE a>=5720 AND a<5730; UPDATE t1 SET b=b*2 WHERE a>=5730 AND a<5740; UPDATE t1 SET b=b*2 WHERE a>=5740 AND a<5750; UPDATE t1 SET b=b*2 WHERE a>=5750 AND a<5760; UPDATE t1 SET b=b*2 WHERE a>=5760 AND a<5770; UPDATE t1 SET b=b*2 WHERE a>=5770 AND a<5780; UPDATE t1 SET b=b*2 WHERE a>=5780 AND a<5790; UPDATE t1 SET b=b*2 WHERE a>=5790 AND a<5800; UPDATE t1 SET b=b*2 WHERE a>=5800 AND a<5810; UPDATE t1 SET b=b*2 WHERE a>=5810 AND a<5820; UPDATE t1 SET b=b*2 WHERE a>=5820 AND a<5830; UPDATE t1 SET b=b*2 WHERE a>=5830 AND a<5840; UPDATE t1 SET b=b*2 WHERE a>=5840 AND a<5850; UPDATE t1 SET b=b*2 WHERE a>=5850 AND a<5860; UPDATE t1 SET b=b*2 WHERE a>=5860 AND a<5870; UPDATE t1 SET b=b*2 WHERE a>=5870 AND a<5880; UPDATE t1 SET b=b*2 WHERE a>=5880 AND a<5890; UPDATE t1 SET b=b*2 WHERE a>=5890 AND a<5900; UPDATE t1 SET b=b*2 WHERE a>=5900 AND a<5910; UPDATE t1 SET b=b*2 WHERE a>=5910 AND a<5920; UPDATE t1 SET b=b*2 WHERE a>=5920 AND a<5930; UPDATE t1 SET b=b*2 WHERE a>=5930 AND a<5940; UPDATE t1 SET b=b*2 WHERE a>=5940 AND a<5950; UPDATE t1 SET b=b*2 WHERE a>=5950 AND a<5960; UPDATE t1 SET b=b*2 WHERE a>=5960 AND a<5970; UPDATE t1 SET b=b*2 WHERE a>=5970 AND a<5980; UPDATE t1 SET b=b*2 WHERE a>=5980 AND a<5990; UPDATE t1 SET b=b*2 WHERE a>=5990 AND a<6000; UPDATE t1 SET b=b*2 WHERE a>=6000 AND a<6010; UPDATE t1 SET b=b*2 WHERE a>=6010 AND a<6020; UPDATE t1 SET b=b*2 WHERE a>=6020 AND a<6030; UPDATE t1 SET b=b*2 WHERE a>=6030 AND a<6040; UPDATE t1 SET b=b*2 WHERE a>=6040 AND a<6050; UPDATE t1 SET b=b*2 WHERE a>=6050 AND a<6060; UPDATE t1 SET b=b*2 WHERE a>=6060 AND a<6070; UPDATE t1 SET b=b*2 WHERE a>=6070 AND a<6080; UPDATE t1 SET b=b*2 WHERE a>=6080 AND a<6090; UPDATE t1 SET b=b*2 WHERE a>=6090 AND a<6100; UPDATE t1 SET b=b*2 WHERE a>=6100 AND a<6110; UPDATE t1 SET b=b*2 WHERE a>=6110 AND a<6120; UPDATE t1 SET b=b*2 WHERE a>=6120 AND a<6130; UPDATE t1 SET b=b*2 WHERE a>=6130 AND a<6140; UPDATE t1 SET b=b*2 WHERE a>=6140 AND a<6150; UPDATE t1 SET b=b*2 WHERE a>=6150 AND a<6160; UPDATE t1 SET b=b*2 WHERE a>=6160 AND a<6170; UPDATE t1 SET b=b*2 WHERE a>=6170 AND a<6180; UPDATE t1 SET b=b*2 WHERE a>=6180 AND a<6190; UPDATE t1 SET b=b*2 WHERE a>=6190 AND a<6200; UPDATE t1 SET b=b*2 WHERE a>=6200 AND a<6210; UPDATE t1 SET b=b*2 WHERE a>=6210 AND a<6220; UPDATE t1 SET b=b*2 WHERE a>=6220 AND a<6230; UPDATE t1 SET b=b*2 WHERE a>=6230 AND a<6240; UPDATE t1 SET b=b*2 WHERE a>=6240 AND a<6250; UPDATE t1 SET b=b*2 WHERE a>=6250 AND a<6260; UPDATE t1 SET b=b*2 WHERE a>=6260 AND a<6270; UPDATE t1 SET b=b*2 WHERE a>=6270 AND a<6280; UPDATE t1 SET b=b*2 WHERE a>=6280 AND a<6290; UPDATE t1 SET b=b*2 WHERE a>=6290 AND a<6300; UPDATE t1 SET b=b*2 WHERE a>=6300 AND a<6310; UPDATE t1 SET b=b*2 WHERE a>=6310 AND a<6320; UPDATE t1 SET b=b*2 WHERE a>=6320 AND a<6330; UPDATE t1 SET b=b*2 WHERE a>=6330 AND a<6340; UPDATE t1 SET b=b*2 WHERE a>=6340 AND a<6350; UPDATE t1 SET b=b*2 WHERE a>=6350 AND a<6360; UPDATE t1 SET b=b*2 WHERE a>=6360 AND a<6370; UPDATE t1 SET b=b*2 WHERE a>=6370 AND a<6380; UPDATE t1 SET b=b*2 WHERE a>=6380 AND a<6390; UPDATE t1 SET b=b*2 WHERE a>=6390 AND a<6400; UPDATE t1 SET b=b*2 WHERE a>=6400 AND a<6410; UPDATE t1 SET b=b*2 WHERE a>=6410 AND a<6420; UPDATE t1 SET b=b*2 WHERE a>=6420 AND a<6430; UPDATE t1 SET b=b*2 WHERE a>=6430 AND a<6440; UPDATE t1 SET b=b*2 WHERE a>=6440 AND a<6450; UPDATE t1 SET b=b*2 WHERE a>=6450 AND a<6460; UPDATE t1 SET b=b*2 WHERE a>=6460 AND a<6470; UPDATE t1 SET b=b*2 WHERE a>=6470 AND a<6480; UPDATE t1 SET b=b*2 WHERE a>=6480 AND a<6490; UPDATE t1 SET b=b*2 WHERE a>=6490 AND a<6500; UPDATE t1 SET b=b*2 WHERE a>=6500 AND a<6510; UPDATE t1 SET b=b*2 WHERE a>=6510 AND a<6520; UPDATE t1 SET b=b*2 WHERE a>=6520 AND a<6530; UPDATE t1 SET b=b*2 WHERE a>=6530 AND a<6540; UPDATE t1 SET b=b*2 WHERE a>=6540 AND a<6550; UPDATE t1 SET b=b*2 WHERE a>=6550 AND a<6560; UPDATE t1 SET b=b*2 WHERE a>=6560 AND a<6570; UPDATE t1 SET b=b*2 WHERE a>=6570 AND a<6580; UPDATE t1 SET b=b*2 WHERE a>=6580 AND a<6590; UPDATE t1 SET b=b*2 WHERE a>=6590 AND a<6600; UPDATE t1 SET b=b*2 WHERE a>=6600 AND a<6610; UPDATE t1 SET b=b*2 WHERE a>=6610 AND a<6620; UPDATE t1 SET b=b*2 WHERE a>=6620 AND a<6630; UPDATE t1 SET b=b*2 WHERE a>=6630 AND a<6640; UPDATE t1 SET b=b*2 WHERE a>=6640 AND a<6650; UPDATE t1 SET b=b*2 WHERE a>=6650 AND a<6660; UPDATE t1 SET b=b*2 WHERE a>=6660 AND a<6670; UPDATE t1 SET b=b*2 WHERE a>=6670 AND a<6680; UPDATE t1 SET b=b*2 WHERE a>=6680 AND a<6690; UPDATE t1 SET b=b*2 WHERE a>=6690 AND a<6700; UPDATE t1 SET b=b*2 WHERE a>=6700 AND a<6710; UPDATE t1 SET b=b*2 WHERE a>=6710 AND a<6720; UPDATE t1 SET b=b*2 WHERE a>=6720 AND a<6730; UPDATE t1 SET b=b*2 WHERE a>=6730 AND a<6740; UPDATE t1 SET b=b*2 WHERE a>=6740 AND a<6750; UPDATE t1 SET b=b*2 WHERE a>=6750 AND a<6760; UPDATE t1 SET b=b*2 WHERE a>=6760 AND a<6770; UPDATE t1 SET b=b*2 WHERE a>=6770 AND a<6780; UPDATE t1 SET b=b*2 WHERE a>=6780 AND a<6790; UPDATE t1 SET b=b*2 WHERE a>=6790 AND a<6800; UPDATE t1 SET b=b*2 WHERE a>=6800 AND a<6810; UPDATE t1 SET b=b*2 WHERE a>=6810 AND a<6820; UPDATE t1 SET b=b*2 WHERE a>=6820 AND a<6830; UPDATE t1 SET b=b*2 WHERE a>=6830 AND a<6840; UPDATE t1 SET b=b*2 WHERE a>=6840 AND a<6850; UPDATE t1 SET b=b*2 WHERE a>=6850 AND a<6860; UPDATE t1 SET b=b*2 WHERE a>=6860 AND a<6870; UPDATE t1 SET b=b*2 WHERE a>=6870 AND a<6880; UPDATE t1 SET b=b*2 WHERE a>=6880 AND a<6890; UPDATE t1 SET b=b*2 WHERE a>=6890 AND a<6900; UPDATE t1 SET b=b*2 WHERE a>=6900 AND a<6910; UPDATE t1 SET b=b*2 WHERE a>=6910 AND a<6920; UPDATE t1 SET b=b*2 WHERE a>=6920 AND a<6930; UPDATE t1 SET b=b*2 WHERE a>=6930 AND a<6940; UPDATE t1 SET b=b*2 WHERE a>=6940 AND a<6950; UPDATE t1 SET b=b*2 WHERE a>=6950 AND a<6960; UPDATE t1 SET b=b*2 WHERE a>=6960 AND a<6970; UPDATE t1 SET b=b*2 WHERE a>=6970 AND a<6980; UPDATE t1 SET b=b*2 WHERE a>=6980 AND a<6990; UPDATE t1 SET b=b*2 WHERE a>=6990 AND a<7000; UPDATE t1 SET b=b*2 WHERE a>=7000 AND a<7010; UPDATE t1 SET b=b*2 WHERE a>=7010 AND a<7020; UPDATE t1 SET b=b*2 WHERE a>=7020 AND a<7030; UPDATE t1 SET b=b*2 WHERE a>=7030 AND a<7040; UPDATE t1 SET b=b*2 WHERE a>=7040 AND a<7050; UPDATE t1 SET b=b*2 WHERE a>=7050 AND a<7060; UPDATE t1 SET b=b*2 WHERE a>=7060 AND a<7070; UPDATE t1 SET b=b*2 WHERE a>=7070 AND a<7080; UPDATE t1 SET b=b*2 WHERE a>=7080 AND a<7090; UPDATE t1 SET b=b*2 WHERE a>=7090 AND a<7100; UPDATE t1 SET b=b*2 WHERE a>=7100 AND a<7110; UPDATE t1 SET b=b*2 WHERE a>=7110 AND a<7120; UPDATE t1 SET b=b*2 WHERE a>=7120 AND a<7130; UPDATE t1 SET b=b*2 WHERE a>=7130 AND a<7140; UPDATE t1 SET b=b*2 WHERE a>=7140 AND a<7150; UPDATE t1 SET b=b*2 WHERE a>=7150 AND a<7160; UPDATE t1 SET b=b*2 WHERE a>=7160 AND a<7170; UPDATE t1 SET b=b*2 WHERE a>=7170 AND a<7180; UPDATE t1 SET b=b*2 WHERE a>=7180 AND a<7190; UPDATE t1 SET b=b*2 WHERE a>=7190 AND a<7200; UPDATE t1 SET b=b*2 WHERE a>=7200 AND a<7210; UPDATE t1 SET b=b*2 WHERE a>=7210 AND a<7220; UPDATE t1 SET b=b*2 WHERE a>=7220 AND a<7230; UPDATE t1 SET b=b*2 WHERE a>=7230 AND a<7240; UPDATE t1 SET b=b*2 WHERE a>=7240 AND a<7250; UPDATE t1 SET b=b*2 WHERE a>=7250 AND a<7260; UPDATE t1 SET b=b*2 WHERE a>=7260 AND a<7270; UPDATE t1 SET b=b*2 WHERE a>=7270 AND a<7280; UPDATE t1 SET b=b*2 WHERE a>=7280 AND a<7290; UPDATE t1 SET b=b*2 WHERE a>=7290 AND a<7300; UPDATE t1 SET b=b*2 WHERE a>=7300 AND a<7310; UPDATE t1 SET b=b*2 WHERE a>=7310 AND a<7320; UPDATE t1 SET b=b*2 WHERE a>=7320 AND a<7330; UPDATE t1 SET b=b*2 WHERE a>=7330 AND a<7340; UPDATE t1 SET b=b*2 WHERE a>=7340 AND a<7350; UPDATE t1 SET b=b*2 WHERE a>=7350 AND a<7360; UPDATE t1 SET b=b*2 WHERE a>=7360 AND a<7370; UPDATE t1 SET b=b*2 WHERE a>=7370 AND a<7380; UPDATE t1 SET b=b*2 WHERE a>=7380 AND a<7390; UPDATE t1 SET b=b*2 WHERE a>=7390 AND a<7400; UPDATE t1 SET b=b*2 WHERE a>=7400 AND a<7410; UPDATE t1 SET b=b*2 WHERE a>=7410 AND a<7420; UPDATE t1 SET b=b*2 WHERE a>=7420 AND a<7430; UPDATE t1 SET b=b*2 WHERE a>=7430 AND a<7440; UPDATE t1 SET b=b*2 WHERE a>=7440 AND a<7450; UPDATE t1 SET b=b*2 WHERE a>=7450 AND a<7460; UPDATE t1 SET b=b*2 WHERE a>=7460 AND a<7470; UPDATE t1 SET b=b*2 WHERE a>=7470 AND a<7480; UPDATE t1 SET b=b*2 WHERE a>=7480 AND a<7490; UPDATE t1 SET b=b*2 WHERE a>=7490 AND a<7500; UPDATE t1 SET b=b*2 WHERE a>=7500 AND a<7510; UPDATE t1 SET b=b*2 WHERE a>=7510 AND a<7520; UPDATE t1 SET b=b*2 WHERE a>=7520 AND a<7530; UPDATE t1 SET b=b*2 WHERE a>=7530 AND a<7540; UPDATE t1 SET b=b*2 WHERE a>=7540 AND a<7550; UPDATE t1 SET b=b*2 WHERE a>=7550 AND a<7560; UPDATE t1 SET b=b*2 WHERE a>=7560 AND a<7570; UPDATE t1 SET b=b*2 WHERE a>=7570 AND a<7580; UPDATE t1 SET b=b*2 WHERE a>=7580 AND a<7590; UPDATE t1 SET b=b*2 WHERE a>=7590 AND a<7600; UPDATE t1 SET b=b*2 WHERE a>=7600 AND a<7610; UPDATE t1 SET b=b*2 WHERE a>=7610 AND a<7620; UPDATE t1 SET b=b*2 WHERE a>=7620 AND a<7630; UPDATE t1 SET b=b*2 WHERE a>=7630 AND a<7640; UPDATE t1 SET b=b*2 WHERE a>=7640 AND a<7650; UPDATE t1 SET b=b*2 WHERE a>=7650 AND a<7660; UPDATE t1 SET b=b*2 WHERE a>=7660 AND a<7670; UPDATE t1 SET b=b*2 WHERE a>=7670 AND a<7680; UPDATE t1 SET b=b*2 WHERE a>=7680 AND a<7690; UPDATE t1 SET b=b*2 WHERE a>=7690 AND a<7700; UPDATE t1 SET b=b*2 WHERE a>=7700 AND a<7710; UPDATE t1 SET b=b*2 WHERE a>=7710 AND a<7720; UPDATE t1 SET b=b*2 WHERE a>=7720 AND a<7730; UPDATE t1 SET b=b*2 WHERE a>=7730 AND a<7740; UPDATE t1 SET b=b*2 WHERE a>=7740 AND a<7750; UPDATE t1 SET b=b*2 WHERE a>=7750 AND a<7760; UPDATE t1 SET b=b*2 WHERE a>=7760 AND a<7770; UPDATE t1 SET b=b*2 WHERE a>=7770 AND a<7780; UPDATE t1 SET b=b*2 WHERE a>=7780 AND a<7790; UPDATE t1 SET b=b*2 WHERE a>=7790 AND a<7800; UPDATE t1 SET b=b*2 WHERE a>=7800 AND a<7810; UPDATE t1 SET b=b*2 WHERE a>=7810 AND a<7820; UPDATE t1 SET b=b*2 WHERE a>=7820 AND a<7830; UPDATE t1 SET b=b*2 WHERE a>=7830 AND a<7840; UPDATE t1 SET b=b*2 WHERE a>=7840 AND a<7850; UPDATE t1 SET b=b*2 WHERE a>=7850 AND a<7860; UPDATE t1 SET b=b*2 WHERE a>=7860 AND a<7870; UPDATE t1 SET b=b*2 WHERE a>=7870 AND a<7880; UPDATE t1 SET b=b*2 WHERE a>=7880 AND a<7890; UPDATE t1 SET b=b*2 WHERE a>=7890 AND a<7900; UPDATE t1 SET b=b*2 WHERE a>=7900 AND a<7910; UPDATE t1 SET b=b*2 WHERE a>=7910 AND a<7920; UPDATE t1 SET b=b*2 WHERE a>=7920 AND a<7930; UPDATE t1 SET b=b*2 WHERE a>=7930 AND a<7940; UPDATE t1 SET b=b*2 WHERE a>=7940 AND a<7950; UPDATE t1 SET b=b*2 WHERE a>=7950 AND a<7960; UPDATE t1 SET b=b*2 WHERE a>=7960 AND a<7970; UPDATE t1 SET b=b*2 WHERE a>=7970 AND a<7980; UPDATE t1 SET b=b*2 WHERE a>=7980 AND a<7990; UPDATE t1 SET b=b*2 WHERE a>=7990 AND a<8000; UPDATE t1 SET b=b*2 WHERE a>=8000 AND a<8010; UPDATE t1 SET b=b*2 WHERE a>=8010 AND a<8020; UPDATE t1 SET b=b*2 WHERE a>=8020 AND a<8030; UPDATE t1 SET b=b*2 WHERE a>=8030 AND a<8040; UPDATE t1 SET b=b*2 WHERE a>=8040 AND a<8050; UPDATE t1 SET b=b*2 WHERE a>=8050 AND a<8060; UPDATE t1 SET b=b*2 WHERE a>=8060 AND a<8070; UPDATE t1 SET b=b*2 WHERE a>=8070 AND a<8080; UPDATE t1 SET b=b*2 WHERE a>=8080 AND a<8090; UPDATE t1 SET b=b*2 WHERE a>=8090 AND a<8100; UPDATE t1 SET b=b*2 WHERE a>=8100 AND a<8110; UPDATE t1 SET b=b*2 WHERE a>=8110 AND a<8120; UPDATE t1 SET b=b*2 WHERE a>=8120 AND a<8130; UPDATE t1 SET b=b*2 WHERE a>=8130 AND a<8140; UPDATE t1 SET b=b*2 WHERE a>=8140 AND a<8150; UPDATE t1 SET b=b*2 WHERE a>=8150 AND a<8160; UPDATE t1 SET b=b*2 WHERE a>=8160 AND a<8170; UPDATE t1 SET b=b*2 WHERE a>=8170 AND a<8180; UPDATE t1 SET b=b*2 WHERE a>=8180 AND a<8190; UPDATE t1 SET b=b*2 WHERE a>=8190 AND a<8200; UPDATE t1 SET b=b*2 WHERE a>=8200 AND a<8210; UPDATE t1 SET b=b*2 WHERE a>=8210 AND a<8220; UPDATE t1 SET b=b*2 WHERE a>=8220 AND a<8230; UPDATE t1 SET b=b*2 WHERE a>=8230 AND a<8240; UPDATE t1 SET b=b*2 WHERE a>=8240 AND a<8250; UPDATE t1 SET b=b*2 WHERE a>=8250 AND a<8260; UPDATE t1 SET b=b*2 WHERE a>=8260 AND a<8270; UPDATE t1 SET b=b*2 WHERE a>=8270 AND a<8280; UPDATE t1 SET b=b*2 WHERE a>=8280 AND a<8290; UPDATE t1 SET b=b*2 WHERE a>=8290 AND a<8300; UPDATE t1 SET b=b*2 WHERE a>=8300 AND a<8310; UPDATE t1 SET b=b*2 WHERE a>=8310 AND a<8320; UPDATE t1 SET b=b*2 WHERE a>=8320 AND a<8330; UPDATE t1 SET b=b*2 WHERE a>=8330 AND a<8340; UPDATE t1 SET b=b*2 WHERE a>=8340 AND a<8350; UPDATE t1 SET b=b*2 WHERE a>=8350 AND a<8360; UPDATE t1 SET b=b*2 WHERE a>=8360 AND a<8370; UPDATE t1 SET b=b*2 WHERE a>=8370 AND a<8380; UPDATE t1 SET b=b*2 WHERE a>=8380 AND a<8390; UPDATE t1 SET b=b*2 WHERE a>=8390 AND a<8400; UPDATE t1 SET b=b*2 WHERE a>=8400 AND a<8410; UPDATE t1 SET b=b*2 WHERE a>=8410 AND a<8420; UPDATE t1 SET b=b*2 WHERE a>=8420 AND a<8430; UPDATE t1 SET b=b*2 WHERE a>=8430 AND a<8440; UPDATE t1 SET b=b*2 WHERE a>=8440 AND a<8450; UPDATE t1 SET b=b*2 WHERE a>=8450 AND a<8460; UPDATE t1 SET b=b*2 WHERE a>=8460 AND a<8470; UPDATE t1 SET b=b*2 WHERE a>=8470 AND a<8480; UPDATE t1 SET b=b*2 WHERE a>=8480 AND a<8490; UPDATE t1 SET b=b*2 WHERE a>=8490 AND a<8500; UPDATE t1 SET b=b*2 WHERE a>=8500 AND a<8510; UPDATE t1 SET b=b*2 WHERE a>=8510 AND a<8520; UPDATE t1 SET b=b*2 WHERE a>=8520 AND a<8530; UPDATE t1 SET b=b*2 WHERE a>=8530 AND a<8540; UPDATE t1 SET b=b*2 WHERE a>=8540 AND a<8550; UPDATE t1 SET b=b*2 WHERE a>=8550 AND a<8560; UPDATE t1 SET b=b*2 WHERE a>=8560 AND a<8570; UPDATE t1 SET b=b*2 WHERE a>=8570 AND a<8580; UPDATE t1 SET b=b*2 WHERE a>=8580 AND a<8590; UPDATE t1 SET b=b*2 WHERE a>=8590 AND a<8600; UPDATE t1 SET b=b*2 WHERE a>=8600 AND a<8610; UPDATE t1 SET b=b*2 WHERE a>=8610 AND a<8620; UPDATE t1 SET b=b*2 WHERE a>=8620 AND a<8630; UPDATE t1 SET b=b*2 WHERE a>=8630 AND a<8640; UPDATE t1 SET b=b*2 WHERE a>=8640 AND a<8650; UPDATE t1 SET b=b*2 WHERE a>=8650 AND a<8660; UPDATE t1 SET b=b*2 WHERE a>=8660 AND a<8670; UPDATE t1 SET b=b*2 WHERE a>=8670 AND a<8680; UPDATE t1 SET b=b*2 WHERE a>=8680 AND a<8690; UPDATE t1 SET b=b*2 WHERE a>=8690 AND a<8700; UPDATE t1 SET b=b*2 WHERE a>=8700 AND a<8710; UPDATE t1 SET b=b*2 WHERE a>=8710 AND a<8720; UPDATE t1 SET b=b*2 WHERE a>=8720 AND a<8730; UPDATE t1 SET b=b*2 WHERE a>=8730 AND a<8740; UPDATE t1 SET b=b*2 WHERE a>=8740 AND a<8750; UPDATE t1 SET b=b*2 WHERE a>=8750 AND a<8760; UPDATE t1 SET b=b*2 WHERE a>=8760 AND a<8770; UPDATE t1 SET b=b*2 WHERE a>=8770 AND a<8780; UPDATE t1 SET b=b*2 WHERE a>=8780 AND a<8790; UPDATE t1 SET b=b*2 WHERE a>=8790 AND a<8800; UPDATE t1 SET b=b*2 WHERE a>=8800 AND a<8810; UPDATE t1 SET b=b*2 WHERE a>=8810 AND a<8820; UPDATE t1 SET b=b*2 WHERE a>=8820 AND a<8830; UPDATE t1 SET b=b*2 WHERE a>=8830 AND a<8840; UPDATE t1 SET b=b*2 WHERE a>=8840 AND a<8850; UPDATE t1 SET b=b*2 WHERE a>=8850 AND a<8860; UPDATE t1 SET b=b*2 WHERE a>=8860 AND a<8870; UPDATE t1 SET b=b*2 WHERE a>=8870 AND a<8880; UPDATE t1 SET b=b*2 WHERE a>=8880 AND a<8890; UPDATE t1 SET b=b*2 WHERE a>=8890 AND a<8900; UPDATE t1 SET b=b*2 WHERE a>=8900 AND a<8910; UPDATE t1 SET b=b*2 WHERE a>=8910 AND a<8920; UPDATE t1 SET b=b*2 WHERE a>=8920 AND a<8930; UPDATE t1 SET b=b*2 WHERE a>=8930 AND a<8940; UPDATE t1 SET b=b*2 WHERE a>=8940 AND a<8950; UPDATE t1 SET b=b*2 WHERE a>=8950 AND a<8960; UPDATE t1 SET b=b*2 WHERE a>=8960 AND a<8970; UPDATE t1 SET b=b*2 WHERE a>=8970 AND a<8980; UPDATE t1 SET b=b*2 WHERE a>=8980 AND a<8990; UPDATE t1 SET b=b*2 WHERE a>=8990 AND a<9000; UPDATE t1 SET b=b*2 WHERE a>=9000 AND a<9010; UPDATE t1 SET b=b*2 WHERE a>=9010 AND a<9020; UPDATE t1 SET b=b*2 WHERE a>=9020 AND a<9030; UPDATE t1 SET b=b*2 WHERE a>=9030 AND a<9040; UPDATE t1 SET b=b*2 WHERE a>=9040 AND a<9050; UPDATE t1 SET b=b*2 WHERE a>=9050 AND a<9060; UPDATE t1 SET b=b*2 WHERE a>=9060 AND a<9070; UPDATE t1 SET b=b*2 WHERE a>=9070 AND a<9080; UPDATE t1 SET b=b*2 WHERE a>=9080 AND a<9090; UPDATE t1 SET b=b*2 WHERE a>=9090 AND a<9100; UPDATE t1 SET b=b*2 WHERE a>=9100 AND a<9110; UPDATE t1 SET b=b*2 WHERE a>=9110 AND a<9120; UPDATE t1 SET b=b*2 WHERE a>=9120 AND a<9130; UPDATE t1 SET b=b*2 WHERE a>=9130 AND a<9140; UPDATE t1 SET b=b*2 WHERE a>=9140 AND a<9150; UPDATE t1 SET b=b*2 WHERE a>=9150 AND a<9160; UPDATE t1 SET b=b*2 WHERE a>=9160 AND a<9170; UPDATE t1 SET b=b*2 WHERE a>=9170 AND a<9180; UPDATE t1 SET b=b*2 WHERE a>=9180 AND a<9190; UPDATE t1 SET b=b*2 WHERE a>=9190 AND a<9200; UPDATE t1 SET b=b*2 WHERE a>=9200 AND a<9210; UPDATE t1 SET b=b*2 WHERE a>=9210 AND a<9220; UPDATE t1 SET b=b*2 WHERE a>=9220 AND a<9230; UPDATE t1 SET b=b*2 WHERE a>=9230 AND a<9240; UPDATE t1 SET b=b*2 WHERE a>=9240 AND a<9250; UPDATE t1 SET b=b*2 WHERE a>=9250 AND a<9260; UPDATE t1 SET b=b*2 WHERE a>=9260 AND a<9270; UPDATE t1 SET b=b*2 WHERE a>=9270 AND a<9280; UPDATE t1 SET b=b*2 WHERE a>=9280 AND a<9290; UPDATE t1 SET b=b*2 WHERE a>=9290 AND a<9300; UPDATE t1 SET b=b*2 WHERE a>=9300 AND a<9310; UPDATE t1 SET b=b*2 WHERE a>=9310 AND a<9320; UPDATE t1 SET b=b*2 WHERE a>=9320 AND a<9330; UPDATE t1 SET b=b*2 WHERE a>=9330 AND a<9340; UPDATE t1 SET b=b*2 WHERE a>=9340 AND a<9350; UPDATE t1 SET b=b*2 WHERE a>=9350 AND a<9360; UPDATE t1 SET b=b*2 WHERE a>=9360 AND a<9370; UPDATE t1 SET b=b*2 WHERE a>=9370 AND a<9380; UPDATE t1 SET b=b*2 WHERE a>=9380 AND a<9390; UPDATE t1 SET b=b*2 WHERE a>=9390 AND a<9400; UPDATE t1 SET b=b*2 WHERE a>=9400 AND a<9410; UPDATE t1 SET b=b*2 WHERE a>=9410 AND a<9420; UPDATE t1 SET b=b*2 WHERE a>=9420 AND a<9430; UPDATE t1 SET b=b*2 WHERE a>=9430 AND a<9440; UPDATE t1 SET b=b*2 WHERE a>=9440 AND a<9450; UPDATE t1 SET b=b*2 WHERE a>=9450 AND a<9460; UPDATE t1 SET b=b*2 WHERE a>=9460 AND a<9470; UPDATE t1 SET b=b*2 WHERE a>=9470 AND a<9480; UPDATE t1 SET b=b*2 WHERE a>=9480 AND a<9490; UPDATE t1 SET b=b*2 WHERE a>=9490 AND a<9500; UPDATE t1 SET b=b*2 WHERE a>=9500 AND a<9510; UPDATE t1 SET b=b*2 WHERE a>=9510 AND a<9520; UPDATE t1 SET b=b*2 WHERE a>=9520 AND a<9530; UPDATE t1 SET b=b*2 WHERE a>=9530 AND a<9540; UPDATE t1 SET b=b*2 WHERE a>=9540 AND a<9550; UPDATE t1 SET b=b*2 WHERE a>=9550 AND a<9560; UPDATE t1 SET b=b*2 WHERE a>=9560 AND a<9570; UPDATE t1 SET b=b*2 WHERE a>=9570 AND a<9580; UPDATE t1 SET b=b*2 WHERE a>=9580 AND a<9590; UPDATE t1 SET b=b*2 WHERE a>=9590 AND a<9600; UPDATE t1 SET b=b*2 WHERE a>=9600 AND a<9610; UPDATE t1 SET b=b*2 WHERE a>=9610 AND a<9620; UPDATE t1 SET b=b*2 WHERE a>=9620 AND a<9630; UPDATE t1 SET b=b*2 WHERE a>=9630 AND a<9640; UPDATE t1 SET b=b*2 WHERE a>=9640 AND a<9650; UPDATE t1 SET b=b*2 WHERE a>=9650 AND a<9660; UPDATE t1 SET b=b*2 WHERE a>=9660 AND a<9670; UPDATE t1 SET b=b*2 WHERE a>=9670 AND a<9680; UPDATE t1 SET b=b*2 WHERE a>=9680 AND a<9690; UPDATE t1 SET b=b*2 WHERE a>=9690 AND a<9700; UPDATE t1 SET b=b*2 WHERE a>=9700 AND a<9710; UPDATE t1 SET b=b*2 WHERE a>=9710 AND a<9720; UPDATE t1 SET b=b*2 WHERE a>=9720 AND a<9730; UPDATE t1 SET b=b*2 WHERE a>=9730 AND a<9740; UPDATE t1 SET b=b*2 WHERE a>=9740 AND a<9750; UPDATE t1 SET b=b*2 WHERE a>=9750 AND a<9760; UPDATE t1 SET b=b*2 WHERE a>=9760 AND a<9770; UPDATE t1 SET b=b*2 WHERE a>=9770 AND a<9780; UPDATE t1 SET b=b*2 WHERE a>=9780 AND a<9790; UPDATE t1 SET b=b*2 WHERE a>=9790 AND a<9800; UPDATE t1 SET b=b*2 WHERE a>=9800 AND a<9810; UPDATE t1 SET b=b*2 WHERE a>=9810 AND a<9820; UPDATE t1 SET b=b*2 WHERE a>=9820 AND a<9830; UPDATE t1 SET b=b*2 WHERE a>=9830 AND a<9840; UPDATE t1 SET b=b*2 WHERE a>=9840 AND a<9850; UPDATE t1 SET b=b*2 WHERE a>=9850 AND a<9860; UPDATE t1 SET b=b*2 WHERE a>=9860 AND a<9870; UPDATE t1 SET b=b*2 WHERE a>=9870 AND a<9880; UPDATE t1 SET b=b*2 WHERE a>=9880 AND a<9890; UPDATE t1 SET b=b*2 WHERE a>=9890 AND a<9900; UPDATE t1 SET b=b*2 WHERE a>=9900 AND a<9910; UPDATE t1 SET b=b*2 WHERE a>=9910 AND a<9920; UPDATE t1 SET b=b*2 WHERE a>=9920 AND a<9930; UPDATE t1 SET b=b*2 WHERE a>=9930 AND a<9940; UPDATE t1 SET b=b*2 WHERE a>=9940 AND a<9950; UPDATE t1 SET b=b*2 WHERE a>=9950 AND a<9960; UPDATE t1 SET b=b*2 WHERE a>=9960 AND a<9970; UPDATE t1 SET b=b*2 WHERE a>=9970 AND a<9980; UPDATE t1 SET b=b*2 WHERE a>=9980 AND a<9990; UPDATE t1 SET b=b*2 WHERE a>=9990 AND a<10000; COMMIT; ================================================ FILE: packages/benchmark/src/benchmark9.sql ================================================ BEGIN; UPDATE t2 SET b=6669 WHERE a=1; UPDATE t2 SET b=58207 WHERE a=2; UPDATE t2 SET b=83400 WHERE a=3; UPDATE t2 SET b=91722 WHERE a=4; UPDATE t2 SET b=11247 WHERE a=5; UPDATE t2 SET b=75095 WHERE a=6; UPDATE t2 SET b=92982 WHERE a=7; UPDATE t2 SET b=10496 WHERE a=8; UPDATE t2 SET b=70141 WHERE a=9; UPDATE t2 SET b=64704 WHERE a=10; UPDATE t2 SET b=38561 WHERE a=11; UPDATE t2 SET b=15203 WHERE a=12; UPDATE t2 SET b=52211 WHERE a=13; UPDATE t2 SET b=77433 WHERE a=14; UPDATE t2 SET b=60818 WHERE a=15; UPDATE t2 SET b=55485 WHERE a=16; UPDATE t2 SET b=32116 WHERE a=17; UPDATE t2 SET b=80787 WHERE a=18; UPDATE t2 SET b=37771 WHERE a=19; UPDATE t2 SET b=1476 WHERE a=20; UPDATE t2 SET b=82241 WHERE a=21; UPDATE t2 SET b=59022 WHERE a=22; UPDATE t2 SET b=38096 WHERE a=23; UPDATE t2 SET b=29130 WHERE a=24; UPDATE t2 SET b=21104 WHERE a=25; UPDATE t2 SET b=80535 WHERE a=26; UPDATE t2 SET b=71037 WHERE a=27; UPDATE t2 SET b=62045 WHERE a=28; UPDATE t2 SET b=36063 WHERE a=29; UPDATE t2 SET b=35922 WHERE a=30; UPDATE t2 SET b=41498 WHERE a=31; UPDATE t2 SET b=85270 WHERE a=32; UPDATE t2 SET b=53733 WHERE a=33; UPDATE t2 SET b=21604 WHERE a=34; UPDATE t2 SET b=20848 WHERE a=35; UPDATE t2 SET b=86887 WHERE a=36; UPDATE t2 SET b=35708 WHERE a=37; UPDATE t2 SET b=10901 WHERE a=38; UPDATE t2 SET b=57681 WHERE a=39; UPDATE t2 SET b=37050 WHERE a=40; UPDATE t2 SET b=30360 WHERE a=41; UPDATE t2 SET b=71454 WHERE a=42; UPDATE t2 SET b=29133 WHERE a=43; UPDATE t2 SET b=21615 WHERE a=44; UPDATE t2 SET b=98374 WHERE a=45; UPDATE t2 SET b=34330 WHERE a=46; UPDATE t2 SET b=38527 WHERE a=47; UPDATE t2 SET b=52498 WHERE a=48; UPDATE t2 SET b=31683 WHERE a=49; UPDATE t2 SET b=11434 WHERE a=50; UPDATE t2 SET b=99658 WHERE a=51; UPDATE t2 SET b=77139 WHERE a=52; UPDATE t2 SET b=54368 WHERE a=53; UPDATE t2 SET b=29097 WHERE a=54; UPDATE t2 SET b=69273 WHERE a=55; UPDATE t2 SET b=18972 WHERE a=56; UPDATE t2 SET b=91620 WHERE a=57; UPDATE t2 SET b=23760 WHERE a=58; UPDATE t2 SET b=9500 WHERE a=59; UPDATE t2 SET b=85355 WHERE a=60; UPDATE t2 SET b=83568 WHERE a=61; UPDATE t2 SET b=26554 WHERE a=62; UPDATE t2 SET b=13030 WHERE a=63; UPDATE t2 SET b=65100 WHERE a=64; UPDATE t2 SET b=75539 WHERE a=65; UPDATE t2 SET b=37393 WHERE a=66; UPDATE t2 SET b=56147 WHERE a=67; UPDATE t2 SET b=59775 WHERE a=68; UPDATE t2 SET b=18514 WHERE a=69; UPDATE t2 SET b=91781 WHERE a=70; UPDATE t2 SET b=64406 WHERE a=71; UPDATE t2 SET b=40508 WHERE a=72; UPDATE t2 SET b=73330 WHERE a=73; UPDATE t2 SET b=2679 WHERE a=74; UPDATE t2 SET b=10046 WHERE a=75; UPDATE t2 SET b=77279 WHERE a=76; UPDATE t2 SET b=82910 WHERE a=77; UPDATE t2 SET b=51608 WHERE a=78; UPDATE t2 SET b=48058 WHERE a=79; UPDATE t2 SET b=9877 WHERE a=80; UPDATE t2 SET b=80158 WHERE a=81; UPDATE t2 SET b=58819 WHERE a=82; UPDATE t2 SET b=47732 WHERE a=83; UPDATE t2 SET b=89055 WHERE a=84; UPDATE t2 SET b=10851 WHERE a=85; UPDATE t2 SET b=65614 WHERE a=86; UPDATE t2 SET b=71846 WHERE a=87; UPDATE t2 SET b=65251 WHERE a=88; UPDATE t2 SET b=2812 WHERE a=89; UPDATE t2 SET b=94814 WHERE a=90; UPDATE t2 SET b=69766 WHERE a=91; UPDATE t2 SET b=41955 WHERE a=92; UPDATE t2 SET b=79487 WHERE a=93; UPDATE t2 SET b=67735 WHERE a=94; UPDATE t2 SET b=60717 WHERE a=95; UPDATE t2 SET b=1862 WHERE a=96; UPDATE t2 SET b=15641 WHERE a=97; UPDATE t2 SET b=52620 WHERE a=98; UPDATE t2 SET b=7277 WHERE a=99; UPDATE t2 SET b=73185 WHERE a=100; UPDATE t2 SET b=14200 WHERE a=101; UPDATE t2 SET b=21475 WHERE a=102; UPDATE t2 SET b=20311 WHERE a=103; UPDATE t2 SET b=93535 WHERE a=104; UPDATE t2 SET b=41429 WHERE a=105; UPDATE t2 SET b=18933 WHERE a=106; UPDATE t2 SET b=87187 WHERE a=107; UPDATE t2 SET b=99663 WHERE a=108; UPDATE t2 SET b=81237 WHERE a=109; UPDATE t2 SET b=37028 WHERE a=110; UPDATE t2 SET b=60128 WHERE a=111; UPDATE t2 SET b=22505 WHERE a=112; UPDATE t2 SET b=89022 WHERE a=113; UPDATE t2 SET b=73490 WHERE a=114; UPDATE t2 SET b=17059 WHERE a=115; UPDATE t2 SET b=20510 WHERE a=116; UPDATE t2 SET b=7031 WHERE a=117; UPDATE t2 SET b=3586 WHERE a=118; UPDATE t2 SET b=83876 WHERE a=119; UPDATE t2 SET b=43344 WHERE a=120; UPDATE t2 SET b=30411 WHERE a=121; UPDATE t2 SET b=61320 WHERE a=122; UPDATE t2 SET b=88653 WHERE a=123; UPDATE t2 SET b=83221 WHERE a=124; UPDATE t2 SET b=64966 WHERE a=125; UPDATE t2 SET b=44723 WHERE a=126; UPDATE t2 SET b=22643 WHERE a=127; UPDATE t2 SET b=79724 WHERE a=128; UPDATE t2 SET b=58262 WHERE a=129; UPDATE t2 SET b=98250 WHERE a=130; UPDATE t2 SET b=28853 WHERE a=131; UPDATE t2 SET b=33715 WHERE a=132; UPDATE t2 SET b=14208 WHERE a=133; UPDATE t2 SET b=8649 WHERE a=134; UPDATE t2 SET b=88557 WHERE a=135; UPDATE t2 SET b=45495 WHERE a=136; UPDATE t2 SET b=15043 WHERE a=137; UPDATE t2 SET b=28378 WHERE a=138; UPDATE t2 SET b=49378 WHERE a=139; UPDATE t2 SET b=39729 WHERE a=140; UPDATE t2 SET b=62898 WHERE a=141; UPDATE t2 SET b=46764 WHERE a=142; UPDATE t2 SET b=68297 WHERE a=143; UPDATE t2 SET b=92400 WHERE a=144; UPDATE t2 SET b=38793 WHERE a=145; UPDATE t2 SET b=58097 WHERE a=146; UPDATE t2 SET b=26266 WHERE a=147; UPDATE t2 SET b=70828 WHERE a=148; UPDATE t2 SET b=41777 WHERE a=149; UPDATE t2 SET b=62612 WHERE a=150; UPDATE t2 SET b=3494 WHERE a=151; UPDATE t2 SET b=4812 WHERE a=152; UPDATE t2 SET b=88066 WHERE a=153; UPDATE t2 SET b=81989 WHERE a=154; UPDATE t2 SET b=223 WHERE a=155; UPDATE t2 SET b=52776 WHERE a=156; UPDATE t2 SET b=31495 WHERE a=157; UPDATE t2 SET b=93507 WHERE a=158; UPDATE t2 SET b=90523 WHERE a=159; UPDATE t2 SET b=63344 WHERE a=160; UPDATE t2 SET b=9017 WHERE a=161; UPDATE t2 SET b=97362 WHERE a=162; UPDATE t2 SET b=65929 WHERE a=163; UPDATE t2 SET b=7795 WHERE a=164; UPDATE t2 SET b=63658 WHERE a=165; UPDATE t2 SET b=58401 WHERE a=166; UPDATE t2 SET b=16958 WHERE a=167; UPDATE t2 SET b=37187 WHERE a=168; UPDATE t2 SET b=61829 WHERE a=169; UPDATE t2 SET b=18196 WHERE a=170; UPDATE t2 SET b=67885 WHERE a=171; UPDATE t2 SET b=79908 WHERE a=172; UPDATE t2 SET b=64437 WHERE a=173; UPDATE t2 SET b=98130 WHERE a=174; UPDATE t2 SET b=84323 WHERE a=175; UPDATE t2 SET b=24078 WHERE a=176; UPDATE t2 SET b=91927 WHERE a=177; UPDATE t2 SET b=82883 WHERE a=178; UPDATE t2 SET b=14651 WHERE a=179; UPDATE t2 SET b=27533 WHERE a=180; UPDATE t2 SET b=89763 WHERE a=181; UPDATE t2 SET b=40450 WHERE a=182; UPDATE t2 SET b=31171 WHERE a=183; UPDATE t2 SET b=85716 WHERE a=184; UPDATE t2 SET b=16884 WHERE a=185; UPDATE t2 SET b=26852 WHERE a=186; UPDATE t2 SET b=54477 WHERE a=187; UPDATE t2 SET b=11849 WHERE a=188; UPDATE t2 SET b=90233 WHERE a=189; UPDATE t2 SET b=30188 WHERE a=190; UPDATE t2 SET b=26037 WHERE a=191; UPDATE t2 SET b=59831 WHERE a=192; UPDATE t2 SET b=59792 WHERE a=193; UPDATE t2 SET b=66506 WHERE a=194; UPDATE t2 SET b=51150 WHERE a=195; UPDATE t2 SET b=76292 WHERE a=196; UPDATE t2 SET b=23179 WHERE a=197; UPDATE t2 SET b=62800 WHERE a=198; UPDATE t2 SET b=3556 WHERE a=199; UPDATE t2 SET b=55533 WHERE a=200; UPDATE t2 SET b=82821 WHERE a=201; UPDATE t2 SET b=25555 WHERE a=202; UPDATE t2 SET b=99731 WHERE a=203; UPDATE t2 SET b=33504 WHERE a=204; UPDATE t2 SET b=38936 WHERE a=205; UPDATE t2 SET b=98371 WHERE a=206; UPDATE t2 SET b=33021 WHERE a=207; UPDATE t2 SET b=26047 WHERE a=208; UPDATE t2 SET b=371 WHERE a=209; UPDATE t2 SET b=85371 WHERE a=210; UPDATE t2 SET b=8852 WHERE a=211; UPDATE t2 SET b=89737 WHERE a=212; UPDATE t2 SET b=57954 WHERE a=213; UPDATE t2 SET b=37172 WHERE a=214; UPDATE t2 SET b=57389 WHERE a=215; UPDATE t2 SET b=7253 WHERE a=216; UPDATE t2 SET b=39314 WHERE a=217; UPDATE t2 SET b=40762 WHERE a=218; UPDATE t2 SET b=98942 WHERE a=219; UPDATE t2 SET b=29247 WHERE a=220; UPDATE t2 SET b=89133 WHERE a=221; UPDATE t2 SET b=45781 WHERE a=222; UPDATE t2 SET b=4834 WHERE a=223; UPDATE t2 SET b=4275 WHERE a=224; UPDATE t2 SET b=27373 WHERE a=225; UPDATE t2 SET b=60865 WHERE a=226; UPDATE t2 SET b=2682 WHERE a=227; UPDATE t2 SET b=73451 WHERE a=228; UPDATE t2 SET b=45438 WHERE a=229; UPDATE t2 SET b=97505 WHERE a=230; UPDATE t2 SET b=82597 WHERE a=231; UPDATE t2 SET b=35758 WHERE a=232; UPDATE t2 SET b=48008 WHERE a=233; UPDATE t2 SET b=93855 WHERE a=234; UPDATE t2 SET b=47673 WHERE a=235; UPDATE t2 SET b=49459 WHERE a=236; UPDATE t2 SET b=98403 WHERE a=237; UPDATE t2 SET b=98573 WHERE a=238; UPDATE t2 SET b=88384 WHERE a=239; UPDATE t2 SET b=51068 WHERE a=240; UPDATE t2 SET b=86901 WHERE a=241; UPDATE t2 SET b=32796 WHERE a=242; UPDATE t2 SET b=62638 WHERE a=243; UPDATE t2 SET b=74424 WHERE a=244; UPDATE t2 SET b=86330 WHERE a=245; UPDATE t2 SET b=69131 WHERE a=246; UPDATE t2 SET b=18726 WHERE a=247; UPDATE t2 SET b=25837 WHERE a=248; UPDATE t2 SET b=58140 WHERE a=249; UPDATE t2 SET b=61864 WHERE a=250; UPDATE t2 SET b=45068 WHERE a=251; UPDATE t2 SET b=25411 WHERE a=252; UPDATE t2 SET b=74567 WHERE a=253; UPDATE t2 SET b=59100 WHERE a=254; UPDATE t2 SET b=88328 WHERE a=255; UPDATE t2 SET b=32204 WHERE a=256; UPDATE t2 SET b=66617 WHERE a=257; UPDATE t2 SET b=84113 WHERE a=258; UPDATE t2 SET b=81418 WHERE a=259; UPDATE t2 SET b=89475 WHERE a=260; UPDATE t2 SET b=75496 WHERE a=261; UPDATE t2 SET b=73972 WHERE a=262; UPDATE t2 SET b=7069 WHERE a=263; UPDATE t2 SET b=12769 WHERE a=264; UPDATE t2 SET b=68972 WHERE a=265; UPDATE t2 SET b=13777 WHERE a=266; UPDATE t2 SET b=73537 WHERE a=267; UPDATE t2 SET b=8524 WHERE a=268; UPDATE t2 SET b=74712 WHERE a=269; UPDATE t2 SET b=59066 WHERE a=270; UPDATE t2 SET b=25487 WHERE a=271; UPDATE t2 SET b=79158 WHERE a=272; UPDATE t2 SET b=17302 WHERE a=273; UPDATE t2 SET b=89849 WHERE a=274; UPDATE t2 SET b=35088 WHERE a=275; UPDATE t2 SET b=37529 WHERE a=276; UPDATE t2 SET b=92261 WHERE a=277; UPDATE t2 SET b=52581 WHERE a=278; UPDATE t2 SET b=74033 WHERE a=279; UPDATE t2 SET b=90116 WHERE a=280; UPDATE t2 SET b=52845 WHERE a=281; UPDATE t2 SET b=92102 WHERE a=282; UPDATE t2 SET b=56480 WHERE a=283; UPDATE t2 SET b=47321 WHERE a=284; UPDATE t2 SET b=10036 WHERE a=285; UPDATE t2 SET b=32140 WHERE a=286; UPDATE t2 SET b=35681 WHERE a=287; UPDATE t2 SET b=54214 WHERE a=288; UPDATE t2 SET b=98356 WHERE a=289; UPDATE t2 SET b=33910 WHERE a=290; UPDATE t2 SET b=94607 WHERE a=291; UPDATE t2 SET b=17443 WHERE a=292; UPDATE t2 SET b=31488 WHERE a=293; UPDATE t2 SET b=76668 WHERE a=294; UPDATE t2 SET b=57119 WHERE a=295; UPDATE t2 SET b=5576 WHERE a=296; UPDATE t2 SET b=17913 WHERE a=297; UPDATE t2 SET b=12060 WHERE a=298; UPDATE t2 SET b=78741 WHERE a=299; UPDATE t2 SET b=26395 WHERE a=300; UPDATE t2 SET b=55504 WHERE a=301; UPDATE t2 SET b=88720 WHERE a=302; UPDATE t2 SET b=6512 WHERE a=303; UPDATE t2 SET b=84121 WHERE a=304; UPDATE t2 SET b=820 WHERE a=305; UPDATE t2 SET b=42516 WHERE a=306; UPDATE t2 SET b=24887 WHERE a=307; UPDATE t2 SET b=38372 WHERE a=308; UPDATE t2 SET b=40248 WHERE a=309; UPDATE t2 SET b=47310 WHERE a=310; UPDATE t2 SET b=9758 WHERE a=311; UPDATE t2 SET b=17585 WHERE a=312; UPDATE t2 SET b=23075 WHERE a=313; UPDATE t2 SET b=61069 WHERE a=314; UPDATE t2 SET b=55199 WHERE a=315; UPDATE t2 SET b=92228 WHERE a=316; UPDATE t2 SET b=71279 WHERE a=317; UPDATE t2 SET b=37971 WHERE a=318; UPDATE t2 SET b=24001 WHERE a=319; UPDATE t2 SET b=16664 WHERE a=320; UPDATE t2 SET b=61835 WHERE a=321; UPDATE t2 SET b=98951 WHERE a=322; UPDATE t2 SET b=25386 WHERE a=323; UPDATE t2 SET b=57931 WHERE a=324; UPDATE t2 SET b=75750 WHERE a=325; UPDATE t2 SET b=63642 WHERE a=326; UPDATE t2 SET b=99548 WHERE a=327; UPDATE t2 SET b=55581 WHERE a=328; UPDATE t2 SET b=34688 WHERE a=329; UPDATE t2 SET b=1103 WHERE a=330; UPDATE t2 SET b=92888 WHERE a=331; UPDATE t2 SET b=68111 WHERE a=332; UPDATE t2 SET b=10753 WHERE a=333; UPDATE t2 SET b=49177 WHERE a=334; UPDATE t2 SET b=47528 WHERE a=335; UPDATE t2 SET b=30778 WHERE a=336; UPDATE t2 SET b=42126 WHERE a=337; UPDATE t2 SET b=33107 WHERE a=338; UPDATE t2 SET b=5605 WHERE a=339; UPDATE t2 SET b=49003 WHERE a=340; UPDATE t2 SET b=14582 WHERE a=341; UPDATE t2 SET b=40329 WHERE a=342; UPDATE t2 SET b=69752 WHERE a=343; UPDATE t2 SET b=4627 WHERE a=344; UPDATE t2 SET b=11989 WHERE a=345; UPDATE t2 SET b=62077 WHERE a=346; UPDATE t2 SET b=38264 WHERE a=347; UPDATE t2 SET b=51381 WHERE a=348; UPDATE t2 SET b=49507 WHERE a=349; UPDATE t2 SET b=26874 WHERE a=350; UPDATE t2 SET b=27116 WHERE a=351; UPDATE t2 SET b=45418 WHERE a=352; UPDATE t2 SET b=70923 WHERE a=353; UPDATE t2 SET b=33507 WHERE a=354; UPDATE t2 SET b=4961 WHERE a=355; UPDATE t2 SET b=19802 WHERE a=356; UPDATE t2 SET b=30937 WHERE a=357; UPDATE t2 SET b=97131 WHERE a=358; UPDATE t2 SET b=46379 WHERE a=359; UPDATE t2 SET b=13939 WHERE a=360; UPDATE t2 SET b=74249 WHERE a=361; UPDATE t2 SET b=17922 WHERE a=362; UPDATE t2 SET b=83932 WHERE a=363; UPDATE t2 SET b=28600 WHERE a=364; UPDATE t2 SET b=90012 WHERE a=365; UPDATE t2 SET b=1187 WHERE a=366; UPDATE t2 SET b=14870 WHERE a=367; UPDATE t2 SET b=31517 WHERE a=368; UPDATE t2 SET b=52869 WHERE a=369; UPDATE t2 SET b=68215 WHERE a=370; UPDATE t2 SET b=73289 WHERE a=371; UPDATE t2 SET b=30347 WHERE a=372; UPDATE t2 SET b=54093 WHERE a=373; UPDATE t2 SET b=10699 WHERE a=374; UPDATE t2 SET b=6155 WHERE a=375; UPDATE t2 SET b=68103 WHERE a=376; UPDATE t2 SET b=44163 WHERE a=377; UPDATE t2 SET b=23873 WHERE a=378; UPDATE t2 SET b=24355 WHERE a=379; UPDATE t2 SET b=93688 WHERE a=380; UPDATE t2 SET b=79016 WHERE a=381; UPDATE t2 SET b=67660 WHERE a=382; UPDATE t2 SET b=67733 WHERE a=383; UPDATE t2 SET b=45379 WHERE a=384; UPDATE t2 SET b=46171 WHERE a=385; UPDATE t2 SET b=25373 WHERE a=386; UPDATE t2 SET b=62074 WHERE a=387; UPDATE t2 SET b=30111 WHERE a=388; UPDATE t2 SET b=34040 WHERE a=389; UPDATE t2 SET b=38680 WHERE a=390; UPDATE t2 SET b=33598 WHERE a=391; UPDATE t2 SET b=64623 WHERE a=392; UPDATE t2 SET b=99608 WHERE a=393; UPDATE t2 SET b=62097 WHERE a=394; UPDATE t2 SET b=83969 WHERE a=395; UPDATE t2 SET b=42696 WHERE a=396; UPDATE t2 SET b=62206 WHERE a=397; UPDATE t2 SET b=27313 WHERE a=398; UPDATE t2 SET b=36858 WHERE a=399; UPDATE t2 SET b=90061 WHERE a=400; UPDATE t2 SET b=74735 WHERE a=401; UPDATE t2 SET b=28742 WHERE a=402; UPDATE t2 SET b=35019 WHERE a=403; UPDATE t2 SET b=49030 WHERE a=404; UPDATE t2 SET b=12834 WHERE a=405; UPDATE t2 SET b=32600 WHERE a=406; UPDATE t2 SET b=11773 WHERE a=407; UPDATE t2 SET b=80265 WHERE a=408; UPDATE t2 SET b=73406 WHERE a=409; UPDATE t2 SET b=66427 WHERE a=410; UPDATE t2 SET b=12764 WHERE a=411; UPDATE t2 SET b=12453 WHERE a=412; UPDATE t2 SET b=57545 WHERE a=413; UPDATE t2 SET b=70198 WHERE a=414; UPDATE t2 SET b=39421 WHERE a=415; UPDATE t2 SET b=46942 WHERE a=416; UPDATE t2 SET b=25216 WHERE a=417; UPDATE t2 SET b=90662 WHERE a=418; UPDATE t2 SET b=59846 WHERE a=419; UPDATE t2 SET b=96954 WHERE a=420; UPDATE t2 SET b=10732 WHERE a=421; UPDATE t2 SET b=47356 WHERE a=422; UPDATE t2 SET b=77155 WHERE a=423; UPDATE t2 SET b=20023 WHERE a=424; UPDATE t2 SET b=58889 WHERE a=425; UPDATE t2 SET b=20850 WHERE a=426; UPDATE t2 SET b=93880 WHERE a=427; UPDATE t2 SET b=50801 WHERE a=428; UPDATE t2 SET b=10204 WHERE a=429; UPDATE t2 SET b=19780 WHERE a=430; UPDATE t2 SET b=53143 WHERE a=431; UPDATE t2 SET b=28085 WHERE a=432; UPDATE t2 SET b=12256 WHERE a=433; UPDATE t2 SET b=31626 WHERE a=434; UPDATE t2 SET b=19661 WHERE a=435; UPDATE t2 SET b=57179 WHERE a=436; UPDATE t2 SET b=94903 WHERE a=437; UPDATE t2 SET b=64847 WHERE a=438; UPDATE t2 SET b=6484 WHERE a=439; UPDATE t2 SET b=70679 WHERE a=440; UPDATE t2 SET b=4293 WHERE a=441; UPDATE t2 SET b=59781 WHERE a=442; UPDATE t2 SET b=62794 WHERE a=443; UPDATE t2 SET b=64849 WHERE a=444; UPDATE t2 SET b=62119 WHERE a=445; UPDATE t2 SET b=23519 WHERE a=446; UPDATE t2 SET b=99687 WHERE a=447; UPDATE t2 SET b=607 WHERE a=448; UPDATE t2 SET b=26010 WHERE a=449; UPDATE t2 SET b=59444 WHERE a=450; UPDATE t2 SET b=68502 WHERE a=451; UPDATE t2 SET b=70914 WHERE a=452; UPDATE t2 SET b=25051 WHERE a=453; UPDATE t2 SET b=82911 WHERE a=454; UPDATE t2 SET b=78826 WHERE a=455; UPDATE t2 SET b=51231 WHERE a=456; UPDATE t2 SET b=85487 WHERE a=457; UPDATE t2 SET b=31005 WHERE a=458; UPDATE t2 SET b=98227 WHERE a=459; UPDATE t2 SET b=45523 WHERE a=460; UPDATE t2 SET b=51172 WHERE a=461; UPDATE t2 SET b=83244 WHERE a=462; UPDATE t2 SET b=60307 WHERE a=463; UPDATE t2 SET b=13428 WHERE a=464; UPDATE t2 SET b=82812 WHERE a=465; UPDATE t2 SET b=8897 WHERE a=466; UPDATE t2 SET b=99154 WHERE a=467; UPDATE t2 SET b=47602 WHERE a=468; UPDATE t2 SET b=78653 WHERE a=469; UPDATE t2 SET b=52966 WHERE a=470; UPDATE t2 SET b=59912 WHERE a=471; UPDATE t2 SET b=28038 WHERE a=472; UPDATE t2 SET b=42864 WHERE a=473; UPDATE t2 SET b=92057 WHERE a=474; UPDATE t2 SET b=28213 WHERE a=475; UPDATE t2 SET b=91385 WHERE a=476; UPDATE t2 SET b=13187 WHERE a=477; UPDATE t2 SET b=50035 WHERE a=478; UPDATE t2 SET b=48559 WHERE a=479; UPDATE t2 SET b=45187 WHERE a=480; UPDATE t2 SET b=43832 WHERE a=481; UPDATE t2 SET b=2579 WHERE a=482; UPDATE t2 SET b=18071 WHERE a=483; UPDATE t2 SET b=67818 WHERE a=484; UPDATE t2 SET b=3849 WHERE a=485; UPDATE t2 SET b=54027 WHERE a=486; UPDATE t2 SET b=87596 WHERE a=487; UPDATE t2 SET b=87920 WHERE a=488; UPDATE t2 SET b=5092 WHERE a=489; UPDATE t2 SET b=54089 WHERE a=490; UPDATE t2 SET b=46207 WHERE a=491; UPDATE t2 SET b=58313 WHERE a=492; UPDATE t2 SET b=9037 WHERE a=493; UPDATE t2 SET b=96712 WHERE a=494; UPDATE t2 SET b=67931 WHERE a=495; UPDATE t2 SET b=55508 WHERE a=496; UPDATE t2 SET b=42839 WHERE a=497; UPDATE t2 SET b=38059 WHERE a=498; UPDATE t2 SET b=47086 WHERE a=499; UPDATE t2 SET b=54183 WHERE a=500; UPDATE t2 SET b=90184 WHERE a=501; UPDATE t2 SET b=78419 WHERE a=502; UPDATE t2 SET b=55310 WHERE a=503; UPDATE t2 SET b=41309 WHERE a=504; UPDATE t2 SET b=57408 WHERE a=505; UPDATE t2 SET b=36600 WHERE a=506; UPDATE t2 SET b=15918 WHERE a=507; UPDATE t2 SET b=33790 WHERE a=508; UPDATE t2 SET b=67443 WHERE a=509; UPDATE t2 SET b=57710 WHERE a=510; UPDATE t2 SET b=37097 WHERE a=511; UPDATE t2 SET b=26415 WHERE a=512; UPDATE t2 SET b=79702 WHERE a=513; UPDATE t2 SET b=90818 WHERE a=514; UPDATE t2 SET b=12985 WHERE a=515; UPDATE t2 SET b=13813 WHERE a=516; UPDATE t2 SET b=63643 WHERE a=517; UPDATE t2 SET b=76844 WHERE a=518; UPDATE t2 SET b=45486 WHERE a=519; UPDATE t2 SET b=38784 WHERE a=520; UPDATE t2 SET b=81952 WHERE a=521; UPDATE t2 SET b=59623 WHERE a=522; UPDATE t2 SET b=24657 WHERE a=523; UPDATE t2 SET b=24726 WHERE a=524; UPDATE t2 SET b=15738 WHERE a=525; UPDATE t2 SET b=39910 WHERE a=526; UPDATE t2 SET b=70173 WHERE a=527; UPDATE t2 SET b=81959 WHERE a=528; UPDATE t2 SET b=10079 WHERE a=529; UPDATE t2 SET b=65317 WHERE a=530; UPDATE t2 SET b=57010 WHERE a=531; UPDATE t2 SET b=9464 WHERE a=532; UPDATE t2 SET b=96509 WHERE a=533; UPDATE t2 SET b=48316 WHERE a=534; UPDATE t2 SET b=39933 WHERE a=535; UPDATE t2 SET b=59417 WHERE a=536; UPDATE t2 SET b=85787 WHERE a=537; UPDATE t2 SET b=52108 WHERE a=538; UPDATE t2 SET b=8716 WHERE a=539; UPDATE t2 SET b=71474 WHERE a=540; UPDATE t2 SET b=91767 WHERE a=541; UPDATE t2 SET b=14926 WHERE a=542; UPDATE t2 SET b=68208 WHERE a=543; UPDATE t2 SET b=45499 WHERE a=544; UPDATE t2 SET b=66820 WHERE a=545; UPDATE t2 SET b=7731 WHERE a=546; UPDATE t2 SET b=86751 WHERE a=547; UPDATE t2 SET b=3993 WHERE a=548; UPDATE t2 SET b=45586 WHERE a=549; UPDATE t2 SET b=98870 WHERE a=550; UPDATE t2 SET b=38138 WHERE a=551; UPDATE t2 SET b=42291 WHERE a=552; UPDATE t2 SET b=37593 WHERE a=553; UPDATE t2 SET b=29317 WHERE a=554; UPDATE t2 SET b=12337 WHERE a=555; UPDATE t2 SET b=19669 WHERE a=556; UPDATE t2 SET b=8843 WHERE a=557; UPDATE t2 SET b=29335 WHERE a=558; UPDATE t2 SET b=12774 WHERE a=559; UPDATE t2 SET b=82270 WHERE a=560; UPDATE t2 SET b=3504 WHERE a=561; UPDATE t2 SET b=18436 WHERE a=562; UPDATE t2 SET b=49846 WHERE a=563; UPDATE t2 SET b=61496 WHERE a=564; UPDATE t2 SET b=61566 WHERE a=565; UPDATE t2 SET b=57641 WHERE a=566; UPDATE t2 SET b=34221 WHERE a=567; UPDATE t2 SET b=97295 WHERE a=568; UPDATE t2 SET b=50645 WHERE a=569; UPDATE t2 SET b=71626 WHERE a=570; UPDATE t2 SET b=89276 WHERE a=571; UPDATE t2 SET b=21307 WHERE a=572; UPDATE t2 SET b=63337 WHERE a=573; UPDATE t2 SET b=39470 WHERE a=574; UPDATE t2 SET b=46517 WHERE a=575; UPDATE t2 SET b=70876 WHERE a=576; UPDATE t2 SET b=4481 WHERE a=577; UPDATE t2 SET b=27895 WHERE a=578; UPDATE t2 SET b=74546 WHERE a=579; UPDATE t2 SET b=1106 WHERE a=580; UPDATE t2 SET b=45277 WHERE a=581; UPDATE t2 SET b=31786 WHERE a=582; UPDATE t2 SET b=98454 WHERE a=583; UPDATE t2 SET b=28088 WHERE a=584; UPDATE t2 SET b=71484 WHERE a=585; UPDATE t2 SET b=17905 WHERE a=586; UPDATE t2 SET b=84346 WHERE a=587; UPDATE t2 SET b=23804 WHERE a=588; UPDATE t2 SET b=7468 WHERE a=589; UPDATE t2 SET b=12387 WHERE a=590; UPDATE t2 SET b=16695 WHERE a=591; UPDATE t2 SET b=91788 WHERE a=592; UPDATE t2 SET b=49611 WHERE a=593; UPDATE t2 SET b=22526 WHERE a=594; UPDATE t2 SET b=83978 WHERE a=595; UPDATE t2 SET b=46956 WHERE a=596; UPDATE t2 SET b=57202 WHERE a=597; UPDATE t2 SET b=20238 WHERE a=598; UPDATE t2 SET b=37521 WHERE a=599; UPDATE t2 SET b=67354 WHERE a=600; UPDATE t2 SET b=29677 WHERE a=601; UPDATE t2 SET b=34743 WHERE a=602; UPDATE t2 SET b=6523 WHERE a=603; UPDATE t2 SET b=76633 WHERE a=604; UPDATE t2 SET b=42878 WHERE a=605; UPDATE t2 SET b=44327 WHERE a=606; UPDATE t2 SET b=51179 WHERE a=607; UPDATE t2 SET b=95996 WHERE a=608; UPDATE t2 SET b=20969 WHERE a=609; UPDATE t2 SET b=81299 WHERE a=610; UPDATE t2 SET b=60994 WHERE a=611; UPDATE t2 SET b=54334 WHERE a=612; UPDATE t2 SET b=54624 WHERE a=613; UPDATE t2 SET b=27785 WHERE a=614; UPDATE t2 SET b=41405 WHERE a=615; UPDATE t2 SET b=93105 WHERE a=616; UPDATE t2 SET b=51724 WHERE a=617; UPDATE t2 SET b=83712 WHERE a=618; UPDATE t2 SET b=87404 WHERE a=619; UPDATE t2 SET b=27282 WHERE a=620; UPDATE t2 SET b=82755 WHERE a=621; UPDATE t2 SET b=29587 WHERE a=622; UPDATE t2 SET b=16205 WHERE a=623; UPDATE t2 SET b=19959 WHERE a=624; UPDATE t2 SET b=24650 WHERE a=625; UPDATE t2 SET b=52389 WHERE a=626; UPDATE t2 SET b=7380 WHERE a=627; UPDATE t2 SET b=78630 WHERE a=628; UPDATE t2 SET b=63847 WHERE a=629; UPDATE t2 SET b=40364 WHERE a=630; UPDATE t2 SET b=39407 WHERE a=631; UPDATE t2 SET b=80689 WHERE a=632; UPDATE t2 SET b=14992 WHERE a=633; UPDATE t2 SET b=43560 WHERE a=634; UPDATE t2 SET b=46215 WHERE a=635; UPDATE t2 SET b=15426 WHERE a=636; UPDATE t2 SET b=60742 WHERE a=637; UPDATE t2 SET b=89186 WHERE a=638; UPDATE t2 SET b=22956 WHERE a=639; UPDATE t2 SET b=43184 WHERE a=640; UPDATE t2 SET b=90118 WHERE a=641; UPDATE t2 SET b=81148 WHERE a=642; UPDATE t2 SET b=49654 WHERE a=643; UPDATE t2 SET b=9239 WHERE a=644; UPDATE t2 SET b=74499 WHERE a=645; UPDATE t2 SET b=51533 WHERE a=646; UPDATE t2 SET b=29186 WHERE a=647; UPDATE t2 SET b=52262 WHERE a=648; UPDATE t2 SET b=21475 WHERE a=649; UPDATE t2 SET b=85872 WHERE a=650; UPDATE t2 SET b=5706 WHERE a=651; UPDATE t2 SET b=90553 WHERE a=652; UPDATE t2 SET b=2725 WHERE a=653; UPDATE t2 SET b=52510 WHERE a=654; UPDATE t2 SET b=3366 WHERE a=655; UPDATE t2 SET b=62655 WHERE a=656; UPDATE t2 SET b=72232 WHERE a=657; UPDATE t2 SET b=67890 WHERE a=658; UPDATE t2 SET b=41708 WHERE a=659; UPDATE t2 SET b=88459 WHERE a=660; UPDATE t2 SET b=14487 WHERE a=661; UPDATE t2 SET b=25477 WHERE a=662; UPDATE t2 SET b=64226 WHERE a=663; UPDATE t2 SET b=663 WHERE a=664; UPDATE t2 SET b=24878 WHERE a=665; UPDATE t2 SET b=91312 WHERE a=666; UPDATE t2 SET b=91224 WHERE a=667; UPDATE t2 SET b=98467 WHERE a=668; UPDATE t2 SET b=52496 WHERE a=669; UPDATE t2 SET b=25936 WHERE a=670; UPDATE t2 SET b=86681 WHERE a=671; UPDATE t2 SET b=9517 WHERE a=672; UPDATE t2 SET b=55975 WHERE a=673; UPDATE t2 SET b=77017 WHERE a=674; UPDATE t2 SET b=70740 WHERE a=675; UPDATE t2 SET b=93624 WHERE a=676; UPDATE t2 SET b=66849 WHERE a=677; UPDATE t2 SET b=38376 WHERE a=678; UPDATE t2 SET b=72919 WHERE a=679; UPDATE t2 SET b=56899 WHERE a=680; UPDATE t2 SET b=60875 WHERE a=681; UPDATE t2 SET b=96983 WHERE a=682; UPDATE t2 SET b=29418 WHERE a=683; UPDATE t2 SET b=1955 WHERE a=684; UPDATE t2 SET b=31107 WHERE a=685; UPDATE t2 SET b=3201 WHERE a=686; UPDATE t2 SET b=88496 WHERE a=687; UPDATE t2 SET b=9826 WHERE a=688; UPDATE t2 SET b=97486 WHERE a=689; UPDATE t2 SET b=17281 WHERE a=690; UPDATE t2 SET b=65005 WHERE a=691; UPDATE t2 SET b=23782 WHERE a=692; UPDATE t2 SET b=42032 WHERE a=693; UPDATE t2 SET b=97966 WHERE a=694; UPDATE t2 SET b=82533 WHERE a=695; UPDATE t2 SET b=25137 WHERE a=696; UPDATE t2 SET b=32721 WHERE a=697; UPDATE t2 SET b=80663 WHERE a=698; UPDATE t2 SET b=83626 WHERE a=699; UPDATE t2 SET b=35082 WHERE a=700; UPDATE t2 SET b=43093 WHERE a=701; UPDATE t2 SET b=8542 WHERE a=702; UPDATE t2 SET b=13705 WHERE a=703; UPDATE t2 SET b=24749 WHERE a=704; UPDATE t2 SET b=64434 WHERE a=705; UPDATE t2 SET b=18402 WHERE a=706; UPDATE t2 SET b=31058 WHERE a=707; UPDATE t2 SET b=68325 WHERE a=708; UPDATE t2 SET b=99079 WHERE a=709; UPDATE t2 SET b=84089 WHERE a=710; UPDATE t2 SET b=6114 WHERE a=711; UPDATE t2 SET b=7787 WHERE a=712; UPDATE t2 SET b=67156 WHERE a=713; UPDATE t2 SET b=60201 WHERE a=714; UPDATE t2 SET b=20411 WHERE a=715; UPDATE t2 SET b=53593 WHERE a=716; UPDATE t2 SET b=48918 WHERE a=717; UPDATE t2 SET b=19632 WHERE a=718; UPDATE t2 SET b=86134 WHERE a=719; UPDATE t2 SET b=65874 WHERE a=720; UPDATE t2 SET b=34120 WHERE a=721; UPDATE t2 SET b=67271 WHERE a=722; UPDATE t2 SET b=59012 WHERE a=723; UPDATE t2 SET b=99855 WHERE a=724; UPDATE t2 SET b=54937 WHERE a=725; UPDATE t2 SET b=53722 WHERE a=726; UPDATE t2 SET b=386 WHERE a=727; UPDATE t2 SET b=85774 WHERE a=728; UPDATE t2 SET b=60129 WHERE a=729; UPDATE t2 SET b=62790 WHERE a=730; UPDATE t2 SET b=32870 WHERE a=731; UPDATE t2 SET b=37907 WHERE a=732; UPDATE t2 SET b=98086 WHERE a=733; UPDATE t2 SET b=74994 WHERE a=734; UPDATE t2 SET b=98229 WHERE a=735; UPDATE t2 SET b=6821 WHERE a=736; UPDATE t2 SET b=67730 WHERE a=737; UPDATE t2 SET b=15167 WHERE a=738; UPDATE t2 SET b=76005 WHERE a=739; UPDATE t2 SET b=46649 WHERE a=740; UPDATE t2 SET b=18202 WHERE a=741; UPDATE t2 SET b=69954 WHERE a=742; UPDATE t2 SET b=95972 WHERE a=743; UPDATE t2 SET b=18268 WHERE a=744; UPDATE t2 SET b=97184 WHERE a=745; UPDATE t2 SET b=95353 WHERE a=746; UPDATE t2 SET b=39015 WHERE a=747; UPDATE t2 SET b=72416 WHERE a=748; UPDATE t2 SET b=60523 WHERE a=749; UPDATE t2 SET b=263 WHERE a=750; UPDATE t2 SET b=70590 WHERE a=751; UPDATE t2 SET b=8146 WHERE a=752; UPDATE t2 SET b=64654 WHERE a=753; UPDATE t2 SET b=94545 WHERE a=754; UPDATE t2 SET b=48915 WHERE a=755; UPDATE t2 SET b=18334 WHERE a=756; UPDATE t2 SET b=16629 WHERE a=757; UPDATE t2 SET b=13026 WHERE a=758; UPDATE t2 SET b=18416 WHERE a=759; UPDATE t2 SET b=84370 WHERE a=760; UPDATE t2 SET b=97212 WHERE a=761; UPDATE t2 SET b=33658 WHERE a=762; UPDATE t2 SET b=55325 WHERE a=763; UPDATE t2 SET b=21771 WHERE a=764; UPDATE t2 SET b=64727 WHERE a=765; UPDATE t2 SET b=93925 WHERE a=766; UPDATE t2 SET b=89128 WHERE a=767; UPDATE t2 SET b=25242 WHERE a=768; UPDATE t2 SET b=59190 WHERE a=769; UPDATE t2 SET b=86311 WHERE a=770; UPDATE t2 SET b=96768 WHERE a=771; UPDATE t2 SET b=53025 WHERE a=772; UPDATE t2 SET b=81015 WHERE a=773; UPDATE t2 SET b=94187 WHERE a=774; UPDATE t2 SET b=81570 WHERE a=775; UPDATE t2 SET b=60320 WHERE a=776; UPDATE t2 SET b=74870 WHERE a=777; UPDATE t2 SET b=66628 WHERE a=778; UPDATE t2 SET b=26018 WHERE a=779; UPDATE t2 SET b=74528 WHERE a=780; UPDATE t2 SET b=18277 WHERE a=781; UPDATE t2 SET b=58328 WHERE a=782; UPDATE t2 SET b=53461 WHERE a=783; UPDATE t2 SET b=19660 WHERE a=784; UPDATE t2 SET b=40604 WHERE a=785; UPDATE t2 SET b=91365 WHERE a=786; UPDATE t2 SET b=10521 WHERE a=787; UPDATE t2 SET b=23459 WHERE a=788; UPDATE t2 SET b=69983 WHERE a=789; UPDATE t2 SET b=88480 WHERE a=790; UPDATE t2 SET b=89824 WHERE a=791; UPDATE t2 SET b=11295 WHERE a=792; UPDATE t2 SET b=63133 WHERE a=793; UPDATE t2 SET b=84384 WHERE a=794; UPDATE t2 SET b=98409 WHERE a=795; UPDATE t2 SET b=77994 WHERE a=796; UPDATE t2 SET b=90062 WHERE a=797; UPDATE t2 SET b=91800 WHERE a=798; UPDATE t2 SET b=8468 WHERE a=799; UPDATE t2 SET b=60415 WHERE a=800; UPDATE t2 SET b=2352 WHERE a=801; UPDATE t2 SET b=12615 WHERE a=802; UPDATE t2 SET b=56694 WHERE a=803; UPDATE t2 SET b=5733 WHERE a=804; UPDATE t2 SET b=20319 WHERE a=805; UPDATE t2 SET b=40662 WHERE a=806; UPDATE t2 SET b=54652 WHERE a=807; UPDATE t2 SET b=80123 WHERE a=808; UPDATE t2 SET b=64593 WHERE a=809; UPDATE t2 SET b=63598 WHERE a=810; UPDATE t2 SET b=60804 WHERE a=811; UPDATE t2 SET b=31762 WHERE a=812; UPDATE t2 SET b=56747 WHERE a=813; UPDATE t2 SET b=92180 WHERE a=814; UPDATE t2 SET b=79033 WHERE a=815; UPDATE t2 SET b=73503 WHERE a=816; UPDATE t2 SET b=21517 WHERE a=817; UPDATE t2 SET b=79620 WHERE a=818; UPDATE t2 SET b=44046 WHERE a=819; UPDATE t2 SET b=56879 WHERE a=820; UPDATE t2 SET b=54085 WHERE a=821; UPDATE t2 SET b=99002 WHERE a=822; UPDATE t2 SET b=54627 WHERE a=823; UPDATE t2 SET b=63916 WHERE a=824; UPDATE t2 SET b=3929 WHERE a=825; UPDATE t2 SET b=34474 WHERE a=826; UPDATE t2 SET b=17015 WHERE a=827; UPDATE t2 SET b=15847 WHERE a=828; UPDATE t2 SET b=44325 WHERE a=829; UPDATE t2 SET b=42723 WHERE a=830; UPDATE t2 SET b=39234 WHERE a=831; UPDATE t2 SET b=24560 WHERE a=832; UPDATE t2 SET b=90905 WHERE a=833; UPDATE t2 SET b=78239 WHERE a=834; UPDATE t2 SET b=98216 WHERE a=835; UPDATE t2 SET b=63533 WHERE a=836; UPDATE t2 SET b=12198 WHERE a=837; UPDATE t2 SET b=97049 WHERE a=838; UPDATE t2 SET b=24364 WHERE a=839; UPDATE t2 SET b=62169 WHERE a=840; UPDATE t2 SET b=92479 WHERE a=841; UPDATE t2 SET b=49702 WHERE a=842; UPDATE t2 SET b=70453 WHERE a=843; UPDATE t2 SET b=84670 WHERE a=844; UPDATE t2 SET b=68220 WHERE a=845; UPDATE t2 SET b=92644 WHERE a=846; UPDATE t2 SET b=13345 WHERE a=847; UPDATE t2 SET b=20942 WHERE a=848; UPDATE t2 SET b=4838 WHERE a=849; UPDATE t2 SET b=51905 WHERE a=850; UPDATE t2 SET b=80403 WHERE a=851; UPDATE t2 SET b=73785 WHERE a=852; UPDATE t2 SET b=63956 WHERE a=853; UPDATE t2 SET b=9176 WHERE a=854; UPDATE t2 SET b=62020 WHERE a=855; UPDATE t2 SET b=99506 WHERE a=856; UPDATE t2 SET b=36118 WHERE a=857; UPDATE t2 SET b=85824 WHERE a=858; UPDATE t2 SET b=11095 WHERE a=859; UPDATE t2 SET b=1872 WHERE a=860; UPDATE t2 SET b=97730 WHERE a=861; UPDATE t2 SET b=50368 WHERE a=862; UPDATE t2 SET b=21183 WHERE a=863; UPDATE t2 SET b=40590 WHERE a=864; UPDATE t2 SET b=10902 WHERE a=865; UPDATE t2 SET b=92429 WHERE a=866; UPDATE t2 SET b=63025 WHERE a=867; UPDATE t2 SET b=3084 WHERE a=868; UPDATE t2 SET b=34283 WHERE a=869; UPDATE t2 SET b=85390 WHERE a=870; UPDATE t2 SET b=94762 WHERE a=871; UPDATE t2 SET b=94421 WHERE a=872; UPDATE t2 SET b=14212 WHERE a=873; UPDATE t2 SET b=36683 WHERE a=874; UPDATE t2 SET b=27770 WHERE a=875; UPDATE t2 SET b=39365 WHERE a=876; UPDATE t2 SET b=15598 WHERE a=877; UPDATE t2 SET b=25057 WHERE a=878; UPDATE t2 SET b=27956 WHERE a=879; UPDATE t2 SET b=66878 WHERE a=880; UPDATE t2 SET b=6794 WHERE a=881; UPDATE t2 SET b=4870 WHERE a=882; UPDATE t2 SET b=20297 WHERE a=883; UPDATE t2 SET b=75681 WHERE a=884; UPDATE t2 SET b=75800 WHERE a=885; UPDATE t2 SET b=82836 WHERE a=886; UPDATE t2 SET b=9111 WHERE a=887; UPDATE t2 SET b=60883 WHERE a=888; UPDATE t2 SET b=46444 WHERE a=889; UPDATE t2 SET b=92590 WHERE a=890; UPDATE t2 SET b=83947 WHERE a=891; UPDATE t2 SET b=53543 WHERE a=892; UPDATE t2 SET b=71106 WHERE a=893; UPDATE t2 SET b=86481 WHERE a=894; UPDATE t2 SET b=15791 WHERE a=895; UPDATE t2 SET b=41232 WHERE a=896; UPDATE t2 SET b=79374 WHERE a=897; UPDATE t2 SET b=55203 WHERE a=898; UPDATE t2 SET b=28681 WHERE a=899; UPDATE t2 SET b=9151 WHERE a=900; UPDATE t2 SET b=35825 WHERE a=901; UPDATE t2 SET b=6357 WHERE a=902; UPDATE t2 SET b=50248 WHERE a=903; UPDATE t2 SET b=74260 WHERE a=904; UPDATE t2 SET b=70963 WHERE a=905; UPDATE t2 SET b=5906 WHERE a=906; UPDATE t2 SET b=10164 WHERE a=907; UPDATE t2 SET b=69099 WHERE a=908; UPDATE t2 SET b=37129 WHERE a=909; UPDATE t2 SET b=19438 WHERE a=910; UPDATE t2 SET b=83238 WHERE a=911; UPDATE t2 SET b=8761 WHERE a=912; UPDATE t2 SET b=81654 WHERE a=913; UPDATE t2 SET b=69648 WHERE a=914; UPDATE t2 SET b=35670 WHERE a=915; UPDATE t2 SET b=16543 WHERE a=916; UPDATE t2 SET b=48688 WHERE a=917; UPDATE t2 SET b=38804 WHERE a=918; UPDATE t2 SET b=98985 WHERE a=919; UPDATE t2 SET b=61715 WHERE a=920; UPDATE t2 SET b=41008 WHERE a=921; UPDATE t2 SET b=66376 WHERE a=922; UPDATE t2 SET b=10497 WHERE a=923; UPDATE t2 SET b=92418 WHERE a=924; UPDATE t2 SET b=29499 WHERE a=925; UPDATE t2 SET b=98397 WHERE a=926; UPDATE t2 SET b=76221 WHERE a=927; UPDATE t2 SET b=31920 WHERE a=928; UPDATE t2 SET b=15830 WHERE a=929; UPDATE t2 SET b=36175 WHERE a=930; UPDATE t2 SET b=25656 WHERE a=931; UPDATE t2 SET b=62531 WHERE a=932; UPDATE t2 SET b=50927 WHERE a=933; UPDATE t2 SET b=49245 WHERE a=934; UPDATE t2 SET b=61006 WHERE a=935; UPDATE t2 SET b=54160 WHERE a=936; UPDATE t2 SET b=12424 WHERE a=937; UPDATE t2 SET b=6761 WHERE a=938; UPDATE t2 SET b=14729 WHERE a=939; UPDATE t2 SET b=91887 WHERE a=940; UPDATE t2 SET b=59064 WHERE a=941; UPDATE t2 SET b=29820 WHERE a=942; UPDATE t2 SET b=90122 WHERE a=943; UPDATE t2 SET b=57980 WHERE a=944; UPDATE t2 SET b=10396 WHERE a=945; UPDATE t2 SET b=75442 WHERE a=946; UPDATE t2 SET b=92534 WHERE a=947; UPDATE t2 SET b=19292 WHERE a=948; UPDATE t2 SET b=27768 WHERE a=949; UPDATE t2 SET b=27090 WHERE a=950; UPDATE t2 SET b=98753 WHERE a=951; UPDATE t2 SET b=10208 WHERE a=952; UPDATE t2 SET b=51478 WHERE a=953; UPDATE t2 SET b=60869 WHERE a=954; UPDATE t2 SET b=76917 WHERE a=955; UPDATE t2 SET b=14247 WHERE a=956; UPDATE t2 SET b=85323 WHERE a=957; UPDATE t2 SET b=67138 WHERE a=958; UPDATE t2 SET b=74632 WHERE a=959; UPDATE t2 SET b=20397 WHERE a=960; UPDATE t2 SET b=69259 WHERE a=961; UPDATE t2 SET b=87064 WHERE a=962; UPDATE t2 SET b=45637 WHERE a=963; UPDATE t2 SET b=2518 WHERE a=964; UPDATE t2 SET b=10426 WHERE a=965; UPDATE t2 SET b=39079 WHERE a=966; UPDATE t2 SET b=57460 WHERE a=967; UPDATE t2 SET b=14554 WHERE a=968; UPDATE t2 SET b=61595 WHERE a=969; UPDATE t2 SET b=47093 WHERE a=970; UPDATE t2 SET b=21988 WHERE a=971; UPDATE t2 SET b=57326 WHERE a=972; UPDATE t2 SET b=50936 WHERE a=973; UPDATE t2 SET b=94110 WHERE a=974; UPDATE t2 SET b=9589 WHERE a=975; UPDATE t2 SET b=69198 WHERE a=976; UPDATE t2 SET b=80683 WHERE a=977; UPDATE t2 SET b=99933 WHERE a=978; UPDATE t2 SET b=79751 WHERE a=979; UPDATE t2 SET b=20700 WHERE a=980; UPDATE t2 SET b=72980 WHERE a=981; UPDATE t2 SET b=85253 WHERE a=982; UPDATE t2 SET b=32493 WHERE a=983; UPDATE t2 SET b=82135 WHERE a=984; UPDATE t2 SET b=63082 WHERE a=985; UPDATE t2 SET b=76683 WHERE a=986; UPDATE t2 SET b=23751 WHERE a=987; UPDATE t2 SET b=69207 WHERE a=988; UPDATE t2 SET b=55699 WHERE a=989; UPDATE t2 SET b=12854 WHERE a=990; UPDATE t2 SET b=75077 WHERE a=991; UPDATE t2 SET b=86584 WHERE a=992; UPDATE t2 SET b=42224 WHERE a=993; UPDATE t2 SET b=21804 WHERE a=994; UPDATE t2 SET b=15261 WHERE a=995; UPDATE t2 SET b=5042 WHERE a=996; UPDATE t2 SET b=70116 WHERE a=997; UPDATE t2 SET b=75678 WHERE a=998; UPDATE t2 SET b=2860 WHERE a=999; UPDATE t2 SET b=73520 WHERE a=1000; UPDATE t2 SET b=35324 WHERE a=1001; UPDATE t2 SET b=69640 WHERE a=1002; UPDATE t2 SET b=68759 WHERE a=1003; UPDATE t2 SET b=57526 WHERE a=1004; UPDATE t2 SET b=56161 WHERE a=1005; UPDATE t2 SET b=54651 WHERE a=1006; UPDATE t2 SET b=1033 WHERE a=1007; UPDATE t2 SET b=63232 WHERE a=1008; UPDATE t2 SET b=83257 WHERE a=1009; UPDATE t2 SET b=73770 WHERE a=1010; UPDATE t2 SET b=40406 WHERE a=1011; UPDATE t2 SET b=3865 WHERE a=1012; UPDATE t2 SET b=66486 WHERE a=1013; UPDATE t2 SET b=57785 WHERE a=1014; UPDATE t2 SET b=63799 WHERE a=1015; UPDATE t2 SET b=97371 WHERE a=1016; UPDATE t2 SET b=63341 WHERE a=1017; UPDATE t2 SET b=12422 WHERE a=1018; UPDATE t2 SET b=55988 WHERE a=1019; UPDATE t2 SET b=20785 WHERE a=1020; UPDATE t2 SET b=98940 WHERE a=1021; UPDATE t2 SET b=11066 WHERE a=1022; UPDATE t2 SET b=1823 WHERE a=1023; UPDATE t2 SET b=43574 WHERE a=1024; UPDATE t2 SET b=92755 WHERE a=1025; UPDATE t2 SET b=11319 WHERE a=1026; UPDATE t2 SET b=33267 WHERE a=1027; UPDATE t2 SET b=56563 WHERE a=1028; UPDATE t2 SET b=92236 WHERE a=1029; UPDATE t2 SET b=5183 WHERE a=1030; UPDATE t2 SET b=31913 WHERE a=1031; UPDATE t2 SET b=77300 WHERE a=1032; UPDATE t2 SET b=28071 WHERE a=1033; UPDATE t2 SET b=66015 WHERE a=1034; UPDATE t2 SET b=13628 WHERE a=1035; UPDATE t2 SET b=40631 WHERE a=1036; UPDATE t2 SET b=82604 WHERE a=1037; UPDATE t2 SET b=61483 WHERE a=1038; UPDATE t2 SET b=10941 WHERE a=1039; UPDATE t2 SET b=86595 WHERE a=1040; UPDATE t2 SET b=94727 WHERE a=1041; UPDATE t2 SET b=82666 WHERE a=1042; UPDATE t2 SET b=73258 WHERE a=1043; UPDATE t2 SET b=97009 WHERE a=1044; UPDATE t2 SET b=50493 WHERE a=1045; UPDATE t2 SET b=88654 WHERE a=1046; UPDATE t2 SET b=44274 WHERE a=1047; UPDATE t2 SET b=3558 WHERE a=1048; UPDATE t2 SET b=60117 WHERE a=1049; UPDATE t2 SET b=9040 WHERE a=1050; UPDATE t2 SET b=76563 WHERE a=1051; UPDATE t2 SET b=80706 WHERE a=1052; UPDATE t2 SET b=89293 WHERE a=1053; UPDATE t2 SET b=95204 WHERE a=1054; UPDATE t2 SET b=52524 WHERE a=1055; UPDATE t2 SET b=8980 WHERE a=1056; UPDATE t2 SET b=76164 WHERE a=1057; UPDATE t2 SET b=96542 WHERE a=1058; UPDATE t2 SET b=10939 WHERE a=1059; UPDATE t2 SET b=61854 WHERE a=1060; UPDATE t2 SET b=31385 WHERE a=1061; UPDATE t2 SET b=63883 WHERE a=1062; UPDATE t2 SET b=2065 WHERE a=1063; UPDATE t2 SET b=30291 WHERE a=1064; UPDATE t2 SET b=13537 WHERE a=1065; UPDATE t2 SET b=14118 WHERE a=1066; UPDATE t2 SET b=24145 WHERE a=1067; UPDATE t2 SET b=6142 WHERE a=1068; UPDATE t2 SET b=9575 WHERE a=1069; UPDATE t2 SET b=90007 WHERE a=1070; UPDATE t2 SET b=23957 WHERE a=1071; UPDATE t2 SET b=84304 WHERE a=1072; UPDATE t2 SET b=69022 WHERE a=1073; UPDATE t2 SET b=50612 WHERE a=1074; UPDATE t2 SET b=22557 WHERE a=1075; UPDATE t2 SET b=57521 WHERE a=1076; UPDATE t2 SET b=27431 WHERE a=1077; UPDATE t2 SET b=91415 WHERE a=1078; UPDATE t2 SET b=91981 WHERE a=1079; UPDATE t2 SET b=60357 WHERE a=1080; UPDATE t2 SET b=90082 WHERE a=1081; UPDATE t2 SET b=96171 WHERE a=1082; UPDATE t2 SET b=76637 WHERE a=1083; UPDATE t2 SET b=14658 WHERE a=1084; UPDATE t2 SET b=60189 WHERE a=1085; UPDATE t2 SET b=67751 WHERE a=1086; UPDATE t2 SET b=69928 WHERE a=1087; UPDATE t2 SET b=47829 WHERE a=1088; UPDATE t2 SET b=11117 WHERE a=1089; UPDATE t2 SET b=58945 WHERE a=1090; UPDATE t2 SET b=31497 WHERE a=1091; UPDATE t2 SET b=6297 WHERE a=1092; UPDATE t2 SET b=90268 WHERE a=1093; UPDATE t2 SET b=38005 WHERE a=1094; UPDATE t2 SET b=5322 WHERE a=1095; UPDATE t2 SET b=39102 WHERE a=1096; UPDATE t2 SET b=92108 WHERE a=1097; UPDATE t2 SET b=16913 WHERE a=1098; UPDATE t2 SET b=33889 WHERE a=1099; UPDATE t2 SET b=47733 WHERE a=1100; UPDATE t2 SET b=40407 WHERE a=1101; UPDATE t2 SET b=65198 WHERE a=1102; UPDATE t2 SET b=57741 WHERE a=1103; UPDATE t2 SET b=66042 WHERE a=1104; UPDATE t2 SET b=51775 WHERE a=1105; UPDATE t2 SET b=52650 WHERE a=1106; UPDATE t2 SET b=32705 WHERE a=1107; UPDATE t2 SET b=95813 WHERE a=1108; UPDATE t2 SET b=23606 WHERE a=1109; UPDATE t2 SET b=18114 WHERE a=1110; UPDATE t2 SET b=95538 WHERE a=1111; UPDATE t2 SET b=96529 WHERE a=1112; UPDATE t2 SET b=40081 WHERE a=1113; UPDATE t2 SET b=3185 WHERE a=1114; UPDATE t2 SET b=92899 WHERE a=1115; UPDATE t2 SET b=17923 WHERE a=1116; UPDATE t2 SET b=50305 WHERE a=1117; UPDATE t2 SET b=74829 WHERE a=1118; UPDATE t2 SET b=93064 WHERE a=1119; UPDATE t2 SET b=62754 WHERE a=1120; UPDATE t2 SET b=27701 WHERE a=1121; UPDATE t2 SET b=98676 WHERE a=1122; UPDATE t2 SET b=63678 WHERE a=1123; UPDATE t2 SET b=31139 WHERE a=1124; UPDATE t2 SET b=60631 WHERE a=1125; UPDATE t2 SET b=12674 WHERE a=1126; UPDATE t2 SET b=18160 WHERE a=1127; UPDATE t2 SET b=38233 WHERE a=1128; UPDATE t2 SET b=20336 WHERE a=1129; UPDATE t2 SET b=56419 WHERE a=1130; UPDATE t2 SET b=21288 WHERE a=1131; UPDATE t2 SET b=26042 WHERE a=1132; UPDATE t2 SET b=79012 WHERE a=1133; UPDATE t2 SET b=61769 WHERE a=1134; UPDATE t2 SET b=54926 WHERE a=1135; UPDATE t2 SET b=18957 WHERE a=1136; UPDATE t2 SET b=51034 WHERE a=1137; UPDATE t2 SET b=70751 WHERE a=1138; UPDATE t2 SET b=69863 WHERE a=1139; UPDATE t2 SET b=70761 WHERE a=1140; UPDATE t2 SET b=15056 WHERE a=1141; UPDATE t2 SET b=41725 WHERE a=1142; UPDATE t2 SET b=82359 WHERE a=1143; UPDATE t2 SET b=78117 WHERE a=1144; UPDATE t2 SET b=65854 WHERE a=1145; UPDATE t2 SET b=270 WHERE a=1146; UPDATE t2 SET b=94414 WHERE a=1147; UPDATE t2 SET b=67109 WHERE a=1148; UPDATE t2 SET b=7443 WHERE a=1149; UPDATE t2 SET b=86941 WHERE a=1150; UPDATE t2 SET b=70323 WHERE a=1151; UPDATE t2 SET b=97818 WHERE a=1152; UPDATE t2 SET b=99343 WHERE a=1153; UPDATE t2 SET b=35300 WHERE a=1154; UPDATE t2 SET b=18734 WHERE a=1155; UPDATE t2 SET b=6308 WHERE a=1156; UPDATE t2 SET b=48975 WHERE a=1157; UPDATE t2 SET b=57923 WHERE a=1158; UPDATE t2 SET b=39556 WHERE a=1159; UPDATE t2 SET b=28745 WHERE a=1160; UPDATE t2 SET b=8573 WHERE a=1161; UPDATE t2 SET b=30063 WHERE a=1162; UPDATE t2 SET b=68834 WHERE a=1163; UPDATE t2 SET b=24861 WHERE a=1164; UPDATE t2 SET b=80744 WHERE a=1165; UPDATE t2 SET b=50942 WHERE a=1166; UPDATE t2 SET b=50653 WHERE a=1167; UPDATE t2 SET b=39673 WHERE a=1168; UPDATE t2 SET b=89506 WHERE a=1169; UPDATE t2 SET b=66354 WHERE a=1170; UPDATE t2 SET b=424 WHERE a=1171; UPDATE t2 SET b=45751 WHERE a=1172; UPDATE t2 SET b=93551 WHERE a=1173; UPDATE t2 SET b=94478 WHERE a=1174; UPDATE t2 SET b=6148 WHERE a=1175; UPDATE t2 SET b=94341 WHERE a=1176; UPDATE t2 SET b=62454 WHERE a=1177; UPDATE t2 SET b=52243 WHERE a=1178; UPDATE t2 SET b=51874 WHERE a=1179; UPDATE t2 SET b=55975 WHERE a=1180; UPDATE t2 SET b=2369 WHERE a=1181; UPDATE t2 SET b=94950 WHERE a=1182; UPDATE t2 SET b=98017 WHERE a=1183; UPDATE t2 SET b=80290 WHERE a=1184; UPDATE t2 SET b=1082 WHERE a=1185; UPDATE t2 SET b=68414 WHERE a=1186; UPDATE t2 SET b=46627 WHERE a=1187; UPDATE t2 SET b=60558 WHERE a=1188; UPDATE t2 SET b=72690 WHERE a=1189; UPDATE t2 SET b=13521 WHERE a=1190; UPDATE t2 SET b=49388 WHERE a=1191; UPDATE t2 SET b=55873 WHERE a=1192; UPDATE t2 SET b=87048 WHERE a=1193; UPDATE t2 SET b=47631 WHERE a=1194; UPDATE t2 SET b=50970 WHERE a=1195; UPDATE t2 SET b=80946 WHERE a=1196; UPDATE t2 SET b=79826 WHERE a=1197; UPDATE t2 SET b=13232 WHERE a=1198; UPDATE t2 SET b=29793 WHERE a=1199; UPDATE t2 SET b=50660 WHERE a=1200; UPDATE t2 SET b=82929 WHERE a=1201; UPDATE t2 SET b=10239 WHERE a=1202; UPDATE t2 SET b=91768 WHERE a=1203; UPDATE t2 SET b=9267 WHERE a=1204; UPDATE t2 SET b=6581 WHERE a=1205; UPDATE t2 SET b=39983 WHERE a=1206; UPDATE t2 SET b=88643 WHERE a=1207; UPDATE t2 SET b=22138 WHERE a=1208; UPDATE t2 SET b=49724 WHERE a=1209; UPDATE t2 SET b=74233 WHERE a=1210; UPDATE t2 SET b=30351 WHERE a=1211; UPDATE t2 SET b=33242 WHERE a=1212; UPDATE t2 SET b=71091 WHERE a=1213; UPDATE t2 SET b=64463 WHERE a=1214; UPDATE t2 SET b=11207 WHERE a=1215; UPDATE t2 SET b=77025 WHERE a=1216; UPDATE t2 SET b=62115 WHERE a=1217; UPDATE t2 SET b=25751 WHERE a=1218; UPDATE t2 SET b=23822 WHERE a=1219; UPDATE t2 SET b=47250 WHERE a=1220; UPDATE t2 SET b=12202 WHERE a=1221; UPDATE t2 SET b=41005 WHERE a=1222; UPDATE t2 SET b=27909 WHERE a=1223; UPDATE t2 SET b=59023 WHERE a=1224; UPDATE t2 SET b=9116 WHERE a=1225; UPDATE t2 SET b=16955 WHERE a=1226; UPDATE t2 SET b=42231 WHERE a=1227; UPDATE t2 SET b=63870 WHERE a=1228; UPDATE t2 SET b=25916 WHERE a=1229; UPDATE t2 SET b=86000 WHERE a=1230; UPDATE t2 SET b=45562 WHERE a=1231; UPDATE t2 SET b=46125 WHERE a=1232; UPDATE t2 SET b=52818 WHERE a=1233; UPDATE t2 SET b=80284 WHERE a=1234; UPDATE t2 SET b=81569 WHERE a=1235; UPDATE t2 SET b=73134 WHERE a=1236; UPDATE t2 SET b=40806 WHERE a=1237; UPDATE t2 SET b=68227 WHERE a=1238; UPDATE t2 SET b=90687 WHERE a=1239; UPDATE t2 SET b=64543 WHERE a=1240; UPDATE t2 SET b=8925 WHERE a=1241; UPDATE t2 SET b=35709 WHERE a=1242; UPDATE t2 SET b=69213 WHERE a=1243; UPDATE t2 SET b=46642 WHERE a=1244; UPDATE t2 SET b=59967 WHERE a=1245; UPDATE t2 SET b=42911 WHERE a=1246; UPDATE t2 SET b=83395 WHERE a=1247; UPDATE t2 SET b=27164 WHERE a=1248; UPDATE t2 SET b=89316 WHERE a=1249; UPDATE t2 SET b=98302 WHERE a=1250; UPDATE t2 SET b=67700 WHERE a=1251; UPDATE t2 SET b=40554 WHERE a=1252; UPDATE t2 SET b=29961 WHERE a=1253; UPDATE t2 SET b=28610 WHERE a=1254; UPDATE t2 SET b=56426 WHERE a=1255; UPDATE t2 SET b=67242 WHERE a=1256; UPDATE t2 SET b=96389 WHERE a=1257; UPDATE t2 SET b=14973 WHERE a=1258; UPDATE t2 SET b=45650 WHERE a=1259; UPDATE t2 SET b=24604 WHERE a=1260; UPDATE t2 SET b=29529 WHERE a=1261; UPDATE t2 SET b=21106 WHERE a=1262; UPDATE t2 SET b=53679 WHERE a=1263; UPDATE t2 SET b=80511 WHERE a=1264; UPDATE t2 SET b=81222 WHERE a=1265; UPDATE t2 SET b=66059 WHERE a=1266; UPDATE t2 SET b=92739 WHERE a=1267; UPDATE t2 SET b=65683 WHERE a=1268; UPDATE t2 SET b=23668 WHERE a=1269; UPDATE t2 SET b=76646 WHERE a=1270; UPDATE t2 SET b=83023 WHERE a=1271; UPDATE t2 SET b=40605 WHERE a=1272; UPDATE t2 SET b=92416 WHERE a=1273; UPDATE t2 SET b=25802 WHERE a=1274; UPDATE t2 SET b=80128 WHERE a=1275; UPDATE t2 SET b=91627 WHERE a=1276; UPDATE t2 SET b=44567 WHERE a=1277; UPDATE t2 SET b=78949 WHERE a=1278; UPDATE t2 SET b=88137 WHERE a=1279; UPDATE t2 SET b=41766 WHERE a=1280; UPDATE t2 SET b=41665 WHERE a=1281; UPDATE t2 SET b=87664 WHERE a=1282; UPDATE t2 SET b=43391 WHERE a=1283; UPDATE t2 SET b=64281 WHERE a=1284; UPDATE t2 SET b=19113 WHERE a=1285; UPDATE t2 SET b=91463 WHERE a=1286; UPDATE t2 SET b=27289 WHERE a=1287; UPDATE t2 SET b=40075 WHERE a=1288; UPDATE t2 SET b=64372 WHERE a=1289; UPDATE t2 SET b=95176 WHERE a=1290; UPDATE t2 SET b=16249 WHERE a=1291; UPDATE t2 SET b=62981 WHERE a=1292; UPDATE t2 SET b=79100 WHERE a=1293; UPDATE t2 SET b=75346 WHERE a=1294; UPDATE t2 SET b=55042 WHERE a=1295; UPDATE t2 SET b=85304 WHERE a=1296; UPDATE t2 SET b=330 WHERE a=1297; UPDATE t2 SET b=51281 WHERE a=1298; UPDATE t2 SET b=24966 WHERE a=1299; UPDATE t2 SET b=68301 WHERE a=1300; UPDATE t2 SET b=96205 WHERE a=1301; UPDATE t2 SET b=44024 WHERE a=1302; UPDATE t2 SET b=57916 WHERE a=1303; UPDATE t2 SET b=76019 WHERE a=1304; UPDATE t2 SET b=70905 WHERE a=1305; UPDATE t2 SET b=34707 WHERE a=1306; UPDATE t2 SET b=93749 WHERE a=1307; UPDATE t2 SET b=25721 WHERE a=1308; UPDATE t2 SET b=7282 WHERE a=1309; UPDATE t2 SET b=61957 WHERE a=1310; UPDATE t2 SET b=65685 WHERE a=1311; UPDATE t2 SET b=18782 WHERE a=1312; UPDATE t2 SET b=55544 WHERE a=1313; UPDATE t2 SET b=93557 WHERE a=1314; UPDATE t2 SET b=69417 WHERE a=1315; UPDATE t2 SET b=8297 WHERE a=1316; UPDATE t2 SET b=36178 WHERE a=1317; UPDATE t2 SET b=92164 WHERE a=1318; UPDATE t2 SET b=46629 WHERE a=1319; UPDATE t2 SET b=16248 WHERE a=1320; UPDATE t2 SET b=80988 WHERE a=1321; UPDATE t2 SET b=53275 WHERE a=1322; UPDATE t2 SET b=7152 WHERE a=1323; UPDATE t2 SET b=3971 WHERE a=1324; UPDATE t2 SET b=71241 WHERE a=1325; UPDATE t2 SET b=66641 WHERE a=1326; UPDATE t2 SET b=27351 WHERE a=1327; UPDATE t2 SET b=53686 WHERE a=1328; UPDATE t2 SET b=38297 WHERE a=1329; UPDATE t2 SET b=4750 WHERE a=1330; UPDATE t2 SET b=66742 WHERE a=1331; UPDATE t2 SET b=65784 WHERE a=1332; UPDATE t2 SET b=17089 WHERE a=1333; UPDATE t2 SET b=40448 WHERE a=1334; UPDATE t2 SET b=78740 WHERE a=1335; UPDATE t2 SET b=34341 WHERE a=1336; UPDATE t2 SET b=60663 WHERE a=1337; UPDATE t2 SET b=28776 WHERE a=1338; UPDATE t2 SET b=79771 WHERE a=1339; UPDATE t2 SET b=37695 WHERE a=1340; UPDATE t2 SET b=26359 WHERE a=1341; UPDATE t2 SET b=7932 WHERE a=1342; UPDATE t2 SET b=62028 WHERE a=1343; UPDATE t2 SET b=95677 WHERE a=1344; UPDATE t2 SET b=4093 WHERE a=1345; UPDATE t2 SET b=86440 WHERE a=1346; UPDATE t2 SET b=88414 WHERE a=1347; UPDATE t2 SET b=36103 WHERE a=1348; UPDATE t2 SET b=19839 WHERE a=1349; UPDATE t2 SET b=17725 WHERE a=1350; UPDATE t2 SET b=47358 WHERE a=1351; UPDATE t2 SET b=9719 WHERE a=1352; UPDATE t2 SET b=63422 WHERE a=1353; UPDATE t2 SET b=81659 WHERE a=1354; UPDATE t2 SET b=3430 WHERE a=1355; UPDATE t2 SET b=73774 WHERE a=1356; UPDATE t2 SET b=75198 WHERE a=1357; UPDATE t2 SET b=87499 WHERE a=1358; UPDATE t2 SET b=8519 WHERE a=1359; UPDATE t2 SET b=30633 WHERE a=1360; UPDATE t2 SET b=2588 WHERE a=1361; UPDATE t2 SET b=59381 WHERE a=1362; UPDATE t2 SET b=93506 WHERE a=1363; UPDATE t2 SET b=10136 WHERE a=1364; UPDATE t2 SET b=63241 WHERE a=1365; UPDATE t2 SET b=27768 WHERE a=1366; UPDATE t2 SET b=850 WHERE a=1367; UPDATE t2 SET b=18906 WHERE a=1368; UPDATE t2 SET b=70347 WHERE a=1369; UPDATE t2 SET b=63558 WHERE a=1370; UPDATE t2 SET b=7201 WHERE a=1371; UPDATE t2 SET b=83557 WHERE a=1372; UPDATE t2 SET b=81344 WHERE a=1373; UPDATE t2 SET b=47778 WHERE a=1374; UPDATE t2 SET b=68043 WHERE a=1375; UPDATE t2 SET b=68711 WHERE a=1376; UPDATE t2 SET b=68495 WHERE a=1377; UPDATE t2 SET b=52651 WHERE a=1378; UPDATE t2 SET b=23383 WHERE a=1379; UPDATE t2 SET b=38604 WHERE a=1380; UPDATE t2 SET b=58960 WHERE a=1381; UPDATE t2 SET b=72140 WHERE a=1382; UPDATE t2 SET b=94235 WHERE a=1383; UPDATE t2 SET b=33344 WHERE a=1384; UPDATE t2 SET b=96070 WHERE a=1385; UPDATE t2 SET b=96025 WHERE a=1386; UPDATE t2 SET b=65829 WHERE a=1387; UPDATE t2 SET b=670 WHERE a=1388; UPDATE t2 SET b=61805 WHERE a=1389; UPDATE t2 SET b=96762 WHERE a=1390; UPDATE t2 SET b=63174 WHERE a=1391; UPDATE t2 SET b=84358 WHERE a=1392; UPDATE t2 SET b=2638 WHERE a=1393; UPDATE t2 SET b=95390 WHERE a=1394; UPDATE t2 SET b=4374 WHERE a=1395; UPDATE t2 SET b=25039 WHERE a=1396; UPDATE t2 SET b=31081 WHERE a=1397; UPDATE t2 SET b=42701 WHERE a=1398; UPDATE t2 SET b=49189 WHERE a=1399; UPDATE t2 SET b=9657 WHERE a=1400; UPDATE t2 SET b=36391 WHERE a=1401; UPDATE t2 SET b=23884 WHERE a=1402; UPDATE t2 SET b=95063 WHERE a=1403; UPDATE t2 SET b=85140 WHERE a=1404; UPDATE t2 SET b=77749 WHERE a=1405; UPDATE t2 SET b=57567 WHERE a=1406; UPDATE t2 SET b=38806 WHERE a=1407; UPDATE t2 SET b=13185 WHERE a=1408; UPDATE t2 SET b=38866 WHERE a=1409; UPDATE t2 SET b=53180 WHERE a=1410; UPDATE t2 SET b=37810 WHERE a=1411; UPDATE t2 SET b=51311 WHERE a=1412; UPDATE t2 SET b=21001 WHERE a=1413; UPDATE t2 SET b=59707 WHERE a=1414; UPDATE t2 SET b=76433 WHERE a=1415; UPDATE t2 SET b=94343 WHERE a=1416; UPDATE t2 SET b=68211 WHERE a=1417; UPDATE t2 SET b=9497 WHERE a=1418; UPDATE t2 SET b=84187 WHERE a=1419; UPDATE t2 SET b=14605 WHERE a=1420; UPDATE t2 SET b=38372 WHERE a=1421; UPDATE t2 SET b=91438 WHERE a=1422; UPDATE t2 SET b=38980 WHERE a=1423; UPDATE t2 SET b=11631 WHERE a=1424; UPDATE t2 SET b=76249 WHERE a=1425; UPDATE t2 SET b=35489 WHERE a=1426; UPDATE t2 SET b=31688 WHERE a=1427; UPDATE t2 SET b=77978 WHERE a=1428; UPDATE t2 SET b=96169 WHERE a=1429; UPDATE t2 SET b=42445 WHERE a=1430; UPDATE t2 SET b=25232 WHERE a=1431; UPDATE t2 SET b=11715 WHERE a=1432; UPDATE t2 SET b=85116 WHERE a=1433; UPDATE t2 SET b=64479 WHERE a=1434; UPDATE t2 SET b=26283 WHERE a=1435; UPDATE t2 SET b=18335 WHERE a=1436; UPDATE t2 SET b=33630 WHERE a=1437; UPDATE t2 SET b=40134 WHERE a=1438; UPDATE t2 SET b=51829 WHERE a=1439; UPDATE t2 SET b=24712 WHERE a=1440; UPDATE t2 SET b=62203 WHERE a=1441; UPDATE t2 SET b=10741 WHERE a=1442; UPDATE t2 SET b=25196 WHERE a=1443; UPDATE t2 SET b=76490 WHERE a=1444; UPDATE t2 SET b=22861 WHERE a=1445; UPDATE t2 SET b=75189 WHERE a=1446; UPDATE t2 SET b=72919 WHERE a=1447; UPDATE t2 SET b=34626 WHERE a=1448; UPDATE t2 SET b=87951 WHERE a=1449; UPDATE t2 SET b=25143 WHERE a=1450; UPDATE t2 SET b=10290 WHERE a=1451; UPDATE t2 SET b=67495 WHERE a=1452; UPDATE t2 SET b=95028 WHERE a=1453; UPDATE t2 SET b=33394 WHERE a=1454; UPDATE t2 SET b=35270 WHERE a=1455; UPDATE t2 SET b=10677 WHERE a=1456; UPDATE t2 SET b=71545 WHERE a=1457; UPDATE t2 SET b=91833 WHERE a=1458; UPDATE t2 SET b=41250 WHERE a=1459; UPDATE t2 SET b=52711 WHERE a=1460; UPDATE t2 SET b=92413 WHERE a=1461; UPDATE t2 SET b=624 WHERE a=1462; UPDATE t2 SET b=71210 WHERE a=1463; UPDATE t2 SET b=57027 WHERE a=1464; UPDATE t2 SET b=67661 WHERE a=1465; UPDATE t2 SET b=79484 WHERE a=1466; UPDATE t2 SET b=55338 WHERE a=1467; UPDATE t2 SET b=20808 WHERE a=1468; UPDATE t2 SET b=64268 WHERE a=1469; UPDATE t2 SET b=95531 WHERE a=1470; UPDATE t2 SET b=63958 WHERE a=1471; UPDATE t2 SET b=8474 WHERE a=1472; UPDATE t2 SET b=21307 WHERE a=1473; UPDATE t2 SET b=78640 WHERE a=1474; UPDATE t2 SET b=36487 WHERE a=1475; UPDATE t2 SET b=30630 WHERE a=1476; UPDATE t2 SET b=2184 WHERE a=1477; UPDATE t2 SET b=91480 WHERE a=1478; UPDATE t2 SET b=84652 WHERE a=1479; UPDATE t2 SET b=84993 WHERE a=1480; UPDATE t2 SET b=23079 WHERE a=1481; UPDATE t2 SET b=24905 WHERE a=1482; UPDATE t2 SET b=73170 WHERE a=1483; UPDATE t2 SET b=54680 WHERE a=1484; UPDATE t2 SET b=71599 WHERE a=1485; UPDATE t2 SET b=85984 WHERE a=1486; UPDATE t2 SET b=52926 WHERE a=1487; UPDATE t2 SET b=48915 WHERE a=1488; UPDATE t2 SET b=96709 WHERE a=1489; UPDATE t2 SET b=11722 WHERE a=1490; UPDATE t2 SET b=28456 WHERE a=1491; UPDATE t2 SET b=97696 WHERE a=1492; UPDATE t2 SET b=48994 WHERE a=1493; UPDATE t2 SET b=13601 WHERE a=1494; UPDATE t2 SET b=94169 WHERE a=1495; UPDATE t2 SET b=98127 WHERE a=1496; UPDATE t2 SET b=92699 WHERE a=1497; UPDATE t2 SET b=33147 WHERE a=1498; UPDATE t2 SET b=69098 WHERE a=1499; UPDATE t2 SET b=99949 WHERE a=1500; UPDATE t2 SET b=31260 WHERE a=1501; UPDATE t2 SET b=19004 WHERE a=1502; UPDATE t2 SET b=20216 WHERE a=1503; UPDATE t2 SET b=61664 WHERE a=1504; UPDATE t2 SET b=51757 WHERE a=1505; UPDATE t2 SET b=93711 WHERE a=1506; UPDATE t2 SET b=31895 WHERE a=1507; UPDATE t2 SET b=51993 WHERE a=1508; UPDATE t2 SET b=43763 WHERE a=1509; UPDATE t2 SET b=39943 WHERE a=1510; UPDATE t2 SET b=60640 WHERE a=1511; UPDATE t2 SET b=66859 WHERE a=1512; UPDATE t2 SET b=73554 WHERE a=1513; UPDATE t2 SET b=42205 WHERE a=1514; UPDATE t2 SET b=72977 WHERE a=1515; UPDATE t2 SET b=10977 WHERE a=1516; UPDATE t2 SET b=68265 WHERE a=1517; UPDATE t2 SET b=94724 WHERE a=1518; UPDATE t2 SET b=89724 WHERE a=1519; UPDATE t2 SET b=46914 WHERE a=1520; UPDATE t2 SET b=8895 WHERE a=1521; UPDATE t2 SET b=94295 WHERE a=1522; UPDATE t2 SET b=46549 WHERE a=1523; UPDATE t2 SET b=83429 WHERE a=1524; UPDATE t2 SET b=22169 WHERE a=1525; UPDATE t2 SET b=45046 WHERE a=1526; UPDATE t2 SET b=58689 WHERE a=1527; UPDATE t2 SET b=79529 WHERE a=1528; UPDATE t2 SET b=54805 WHERE a=1529; UPDATE t2 SET b=27059 WHERE a=1530; UPDATE t2 SET b=51674 WHERE a=1531; UPDATE t2 SET b=89931 WHERE a=1532; UPDATE t2 SET b=42289 WHERE a=1533; UPDATE t2 SET b=46165 WHERE a=1534; UPDATE t2 SET b=41760 WHERE a=1535; UPDATE t2 SET b=50249 WHERE a=1536; UPDATE t2 SET b=12485 WHERE a=1537; UPDATE t2 SET b=24842 WHERE a=1538; UPDATE t2 SET b=10299 WHERE a=1539; UPDATE t2 SET b=37436 WHERE a=1540; UPDATE t2 SET b=28450 WHERE a=1541; UPDATE t2 SET b=99219 WHERE a=1542; UPDATE t2 SET b=26228 WHERE a=1543; UPDATE t2 SET b=35815 WHERE a=1544; UPDATE t2 SET b=46609 WHERE a=1545; UPDATE t2 SET b=44025 WHERE a=1546; UPDATE t2 SET b=94075 WHERE a=1547; UPDATE t2 SET b=72045 WHERE a=1548; UPDATE t2 SET b=98832 WHERE a=1549; UPDATE t2 SET b=79964 WHERE a=1550; UPDATE t2 SET b=78071 WHERE a=1551; UPDATE t2 SET b=17775 WHERE a=1552; UPDATE t2 SET b=76638 WHERE a=1553; UPDATE t2 SET b=5857 WHERE a=1554; UPDATE t2 SET b=21742 WHERE a=1555; UPDATE t2 SET b=12481 WHERE a=1556; UPDATE t2 SET b=70281 WHERE a=1557; UPDATE t2 SET b=63295 WHERE a=1558; UPDATE t2 SET b=89024 WHERE a=1559; UPDATE t2 SET b=3647 WHERE a=1560; UPDATE t2 SET b=90353 WHERE a=1561; UPDATE t2 SET b=71147 WHERE a=1562; UPDATE t2 SET b=541 WHERE a=1563; UPDATE t2 SET b=98039 WHERE a=1564; UPDATE t2 SET b=91091 WHERE a=1565; UPDATE t2 SET b=25759 WHERE a=1566; UPDATE t2 SET b=23020 WHERE a=1567; UPDATE t2 SET b=36290 WHERE a=1568; UPDATE t2 SET b=97601 WHERE a=1569; UPDATE t2 SET b=53301 WHERE a=1570; UPDATE t2 SET b=25776 WHERE a=1571; UPDATE t2 SET b=87472 WHERE a=1572; UPDATE t2 SET b=97994 WHERE a=1573; UPDATE t2 SET b=38406 WHERE a=1574; UPDATE t2 SET b=81322 WHERE a=1575; UPDATE t2 SET b=1474 WHERE a=1576; UPDATE t2 SET b=59496 WHERE a=1577; UPDATE t2 SET b=7907 WHERE a=1578; UPDATE t2 SET b=68871 WHERE a=1579; UPDATE t2 SET b=15041 WHERE a=1580; UPDATE t2 SET b=7777 WHERE a=1581; UPDATE t2 SET b=82428 WHERE a=1582; UPDATE t2 SET b=66658 WHERE a=1583; UPDATE t2 SET b=87411 WHERE a=1584; UPDATE t2 SET b=81450 WHERE a=1585; UPDATE t2 SET b=81999 WHERE a=1586; UPDATE t2 SET b=95678 WHERE a=1587; UPDATE t2 SET b=34120 WHERE a=1588; UPDATE t2 SET b=99659 WHERE a=1589; UPDATE t2 SET b=2154 WHERE a=1590; UPDATE t2 SET b=79139 WHERE a=1591; UPDATE t2 SET b=7994 WHERE a=1592; UPDATE t2 SET b=67075 WHERE a=1593; UPDATE t2 SET b=26016 WHERE a=1594; UPDATE t2 SET b=47306 WHERE a=1595; UPDATE t2 SET b=84653 WHERE a=1596; UPDATE t2 SET b=80817 WHERE a=1597; UPDATE t2 SET b=99072 WHERE a=1598; UPDATE t2 SET b=85382 WHERE a=1599; UPDATE t2 SET b=14574 WHERE a=1600; UPDATE t2 SET b=80757 WHERE a=1601; UPDATE t2 SET b=45239 WHERE a=1602; UPDATE t2 SET b=39036 WHERE a=1603; UPDATE t2 SET b=24862 WHERE a=1604; UPDATE t2 SET b=48716 WHERE a=1605; UPDATE t2 SET b=263 WHERE a=1606; UPDATE t2 SET b=13188 WHERE a=1607; UPDATE t2 SET b=86419 WHERE a=1608; UPDATE t2 SET b=75841 WHERE a=1609; UPDATE t2 SET b=6214 WHERE a=1610; UPDATE t2 SET b=59577 WHERE a=1611; UPDATE t2 SET b=52187 WHERE a=1612; UPDATE t2 SET b=18786 WHERE a=1613; UPDATE t2 SET b=32788 WHERE a=1614; UPDATE t2 SET b=23901 WHERE a=1615; UPDATE t2 SET b=79601 WHERE a=1616; UPDATE t2 SET b=48345 WHERE a=1617; UPDATE t2 SET b=79072 WHERE a=1618; UPDATE t2 SET b=23782 WHERE a=1619; UPDATE t2 SET b=24500 WHERE a=1620; UPDATE t2 SET b=23634 WHERE a=1621; UPDATE t2 SET b=8517 WHERE a=1622; UPDATE t2 SET b=86768 WHERE a=1623; UPDATE t2 SET b=91626 WHERE a=1624; UPDATE t2 SET b=25092 WHERE a=1625; UPDATE t2 SET b=46597 WHERE a=1626; UPDATE t2 SET b=88207 WHERE a=1627; UPDATE t2 SET b=84630 WHERE a=1628; UPDATE t2 SET b=95889 WHERE a=1629; UPDATE t2 SET b=88160 WHERE a=1630; UPDATE t2 SET b=4981 WHERE a=1631; UPDATE t2 SET b=5060 WHERE a=1632; UPDATE t2 SET b=47290 WHERE a=1633; UPDATE t2 SET b=20062 WHERE a=1634; UPDATE t2 SET b=33250 WHERE a=1635; UPDATE t2 SET b=48319 WHERE a=1636; UPDATE t2 SET b=43065 WHERE a=1637; UPDATE t2 SET b=1698 WHERE a=1638; UPDATE t2 SET b=46036 WHERE a=1639; UPDATE t2 SET b=66285 WHERE a=1640; UPDATE t2 SET b=32543 WHERE a=1641; UPDATE t2 SET b=53223 WHERE a=1642; UPDATE t2 SET b=73747 WHERE a=1643; UPDATE t2 SET b=41843 WHERE a=1644; UPDATE t2 SET b=11283 WHERE a=1645; UPDATE t2 SET b=60796 WHERE a=1646; UPDATE t2 SET b=51566 WHERE a=1647; UPDATE t2 SET b=98679 WHERE a=1648; UPDATE t2 SET b=19937 WHERE a=1649; UPDATE t2 SET b=95933 WHERE a=1650; UPDATE t2 SET b=94215 WHERE a=1651; UPDATE t2 SET b=4336 WHERE a=1652; UPDATE t2 SET b=96742 WHERE a=1653; UPDATE t2 SET b=51558 WHERE a=1654; UPDATE t2 SET b=35436 WHERE a=1655; UPDATE t2 SET b=34813 WHERE a=1656; UPDATE t2 SET b=28365 WHERE a=1657; UPDATE t2 SET b=90873 WHERE a=1658; UPDATE t2 SET b=19479 WHERE a=1659; UPDATE t2 SET b=39412 WHERE a=1660; UPDATE t2 SET b=86381 WHERE a=1661; UPDATE t2 SET b=3546 WHERE a=1662; UPDATE t2 SET b=68339 WHERE a=1663; UPDATE t2 SET b=7387 WHERE a=1664; UPDATE t2 SET b=89162 WHERE a=1665; UPDATE t2 SET b=81560 WHERE a=1666; UPDATE t2 SET b=94384 WHERE a=1667; UPDATE t2 SET b=79137 WHERE a=1668; UPDATE t2 SET b=78959 WHERE a=1669; UPDATE t2 SET b=70737 WHERE a=1670; UPDATE t2 SET b=71540 WHERE a=1671; UPDATE t2 SET b=92760 WHERE a=1672; UPDATE t2 SET b=1471 WHERE a=1673; UPDATE t2 SET b=63966 WHERE a=1674; UPDATE t2 SET b=47247 WHERE a=1675; UPDATE t2 SET b=76207 WHERE a=1676; UPDATE t2 SET b=74893 WHERE a=1677; UPDATE t2 SET b=91669 WHERE a=1678; UPDATE t2 SET b=60222 WHERE a=1679; UPDATE t2 SET b=19227 WHERE a=1680; UPDATE t2 SET b=31265 WHERE a=1681; UPDATE t2 SET b=74579 WHERE a=1682; UPDATE t2 SET b=2800 WHERE a=1683; UPDATE t2 SET b=63917 WHERE a=1684; UPDATE t2 SET b=19757 WHERE a=1685; UPDATE t2 SET b=68221 WHERE a=1686; UPDATE t2 SET b=5290 WHERE a=1687; UPDATE t2 SET b=39246 WHERE a=1688; UPDATE t2 SET b=69716 WHERE a=1689; UPDATE t2 SET b=79688 WHERE a=1690; UPDATE t2 SET b=38050 WHERE a=1691; UPDATE t2 SET b=35948 WHERE a=1692; UPDATE t2 SET b=89302 WHERE a=1693; UPDATE t2 SET b=83123 WHERE a=1694; UPDATE t2 SET b=84610 WHERE a=1695; UPDATE t2 SET b=16136 WHERE a=1696; UPDATE t2 SET b=49943 WHERE a=1697; UPDATE t2 SET b=12709 WHERE a=1698; UPDATE t2 SET b=8865 WHERE a=1699; UPDATE t2 SET b=15759 WHERE a=1700; UPDATE t2 SET b=86226 WHERE a=1701; UPDATE t2 SET b=78892 WHERE a=1702; UPDATE t2 SET b=67569 WHERE a=1703; UPDATE t2 SET b=53163 WHERE a=1704; UPDATE t2 SET b=29987 WHERE a=1705; UPDATE t2 SET b=92508 WHERE a=1706; UPDATE t2 SET b=74437 WHERE a=1707; UPDATE t2 SET b=35752 WHERE a=1708; UPDATE t2 SET b=8428 WHERE a=1709; UPDATE t2 SET b=60537 WHERE a=1710; UPDATE t2 SET b=71254 WHERE a=1711; UPDATE t2 SET b=92411 WHERE a=1712; UPDATE t2 SET b=29136 WHERE a=1713; UPDATE t2 SET b=1859 WHERE a=1714; UPDATE t2 SET b=3865 WHERE a=1715; UPDATE t2 SET b=31929 WHERE a=1716; UPDATE t2 SET b=77111 WHERE a=1717; UPDATE t2 SET b=55354 WHERE a=1718; UPDATE t2 SET b=32145 WHERE a=1719; UPDATE t2 SET b=44815 WHERE a=1720; UPDATE t2 SET b=61207 WHERE a=1721; UPDATE t2 SET b=81112 WHERE a=1722; UPDATE t2 SET b=14553 WHERE a=1723; UPDATE t2 SET b=4543 WHERE a=1724; UPDATE t2 SET b=73284 WHERE a=1725; UPDATE t2 SET b=79034 WHERE a=1726; UPDATE t2 SET b=72896 WHERE a=1727; UPDATE t2 SET b=63701 WHERE a=1728; UPDATE t2 SET b=43828 WHERE a=1729; UPDATE t2 SET b=7318 WHERE a=1730; UPDATE t2 SET b=67353 WHERE a=1731; UPDATE t2 SET b=10494 WHERE a=1732; UPDATE t2 SET b=16229 WHERE a=1733; UPDATE t2 SET b=724 WHERE a=1734; UPDATE t2 SET b=48211 WHERE a=1735; UPDATE t2 SET b=59823 WHERE a=1736; UPDATE t2 SET b=22901 WHERE a=1737; UPDATE t2 SET b=97019 WHERE a=1738; UPDATE t2 SET b=38327 WHERE a=1739; UPDATE t2 SET b=95936 WHERE a=1740; UPDATE t2 SET b=4138 WHERE a=1741; UPDATE t2 SET b=57908 WHERE a=1742; UPDATE t2 SET b=3302 WHERE a=1743; UPDATE t2 SET b=45121 WHERE a=1744; UPDATE t2 SET b=37529 WHERE a=1745; UPDATE t2 SET b=67474 WHERE a=1746; UPDATE t2 SET b=56423 WHERE a=1747; UPDATE t2 SET b=19182 WHERE a=1748; UPDATE t2 SET b=25436 WHERE a=1749; UPDATE t2 SET b=2981 WHERE a=1750; UPDATE t2 SET b=13561 WHERE a=1751; UPDATE t2 SET b=65360 WHERE a=1752; UPDATE t2 SET b=1877 WHERE a=1753; UPDATE t2 SET b=31841 WHERE a=1754; UPDATE t2 SET b=63465 WHERE a=1755; UPDATE t2 SET b=17829 WHERE a=1756; UPDATE t2 SET b=83223 WHERE a=1757; UPDATE t2 SET b=78876 WHERE a=1758; UPDATE t2 SET b=67153 WHERE a=1759; UPDATE t2 SET b=2972 WHERE a=1760; UPDATE t2 SET b=15482 WHERE a=1761; UPDATE t2 SET b=40306 WHERE a=1762; UPDATE t2 SET b=98678 WHERE a=1763; UPDATE t2 SET b=41544 WHERE a=1764; UPDATE t2 SET b=20263 WHERE a=1765; UPDATE t2 SET b=80149 WHERE a=1766; UPDATE t2 SET b=48196 WHERE a=1767; UPDATE t2 SET b=47179 WHERE a=1768; UPDATE t2 SET b=79986 WHERE a=1769; UPDATE t2 SET b=39229 WHERE a=1770; UPDATE t2 SET b=53663 WHERE a=1771; UPDATE t2 SET b=2832 WHERE a=1772; UPDATE t2 SET b=33819 WHERE a=1773; UPDATE t2 SET b=2747 WHERE a=1774; UPDATE t2 SET b=28013 WHERE a=1775; UPDATE t2 SET b=12435 WHERE a=1776; UPDATE t2 SET b=1148 WHERE a=1777; UPDATE t2 SET b=33486 WHERE a=1778; UPDATE t2 SET b=55151 WHERE a=1779; UPDATE t2 SET b=78687 WHERE a=1780; UPDATE t2 SET b=96327 WHERE a=1781; UPDATE t2 SET b=51158 WHERE a=1782; UPDATE t2 SET b=45152 WHERE a=1783; UPDATE t2 SET b=64961 WHERE a=1784; UPDATE t2 SET b=66431 WHERE a=1785; UPDATE t2 SET b=88001 WHERE a=1786; UPDATE t2 SET b=73406 WHERE a=1787; UPDATE t2 SET b=39250 WHERE a=1788; UPDATE t2 SET b=24971 WHERE a=1789; UPDATE t2 SET b=8101 WHERE a=1790; UPDATE t2 SET b=35152 WHERE a=1791; UPDATE t2 SET b=43944 WHERE a=1792; UPDATE t2 SET b=23938 WHERE a=1793; UPDATE t2 SET b=63342 WHERE a=1794; UPDATE t2 SET b=94192 WHERE a=1795; UPDATE t2 SET b=33342 WHERE a=1796; UPDATE t2 SET b=79382 WHERE a=1797; UPDATE t2 SET b=94438 WHERE a=1798; UPDATE t2 SET b=89155 WHERE a=1799; UPDATE t2 SET b=38474 WHERE a=1800; UPDATE t2 SET b=63153 WHERE a=1801; UPDATE t2 SET b=50560 WHERE a=1802; UPDATE t2 SET b=20860 WHERE a=1803; UPDATE t2 SET b=49106 WHERE a=1804; UPDATE t2 SET b=71242 WHERE a=1805; UPDATE t2 SET b=92914 WHERE a=1806; UPDATE t2 SET b=29787 WHERE a=1807; UPDATE t2 SET b=69233 WHERE a=1808; UPDATE t2 SET b=75343 WHERE a=1809; UPDATE t2 SET b=86805 WHERE a=1810; UPDATE t2 SET b=59806 WHERE a=1811; UPDATE t2 SET b=58894 WHERE a=1812; UPDATE t2 SET b=10447 WHERE a=1813; UPDATE t2 SET b=23690 WHERE a=1814; UPDATE t2 SET b=52131 WHERE a=1815; UPDATE t2 SET b=87440 WHERE a=1816; UPDATE t2 SET b=30469 WHERE a=1817; UPDATE t2 SET b=31633 WHERE a=1818; UPDATE t2 SET b=10710 WHERE a=1819; UPDATE t2 SET b=49780 WHERE a=1820; UPDATE t2 SET b=50557 WHERE a=1821; UPDATE t2 SET b=4741 WHERE a=1822; UPDATE t2 SET b=14139 WHERE a=1823; UPDATE t2 SET b=20386 WHERE a=1824; UPDATE t2 SET b=7870 WHERE a=1825; UPDATE t2 SET b=52491 WHERE a=1826; UPDATE t2 SET b=14183 WHERE a=1827; UPDATE t2 SET b=25303 WHERE a=1828; UPDATE t2 SET b=69480 WHERE a=1829; UPDATE t2 SET b=74237 WHERE a=1830; UPDATE t2 SET b=53762 WHERE a=1831; UPDATE t2 SET b=16010 WHERE a=1832; UPDATE t2 SET b=5014 WHERE a=1833; UPDATE t2 SET b=99133 WHERE a=1834; UPDATE t2 SET b=98973 WHERE a=1835; UPDATE t2 SET b=12359 WHERE a=1836; UPDATE t2 SET b=44678 WHERE a=1837; UPDATE t2 SET b=2892 WHERE a=1838; UPDATE t2 SET b=3904 WHERE a=1839; UPDATE t2 SET b=51970 WHERE a=1840; UPDATE t2 SET b=82130 WHERE a=1841; UPDATE t2 SET b=36260 WHERE a=1842; UPDATE t2 SET b=59395 WHERE a=1843; UPDATE t2 SET b=87852 WHERE a=1844; UPDATE t2 SET b=75381 WHERE a=1845; UPDATE t2 SET b=40466 WHERE a=1846; UPDATE t2 SET b=33983 WHERE a=1847; UPDATE t2 SET b=83879 WHERE a=1848; UPDATE t2 SET b=20421 WHERE a=1849; UPDATE t2 SET b=54779 WHERE a=1850; UPDATE t2 SET b=79505 WHERE a=1851; UPDATE t2 SET b=49454 WHERE a=1852; UPDATE t2 SET b=2931 WHERE a=1853; UPDATE t2 SET b=55335 WHERE a=1854; UPDATE t2 SET b=20263 WHERE a=1855; UPDATE t2 SET b=93446 WHERE a=1856; UPDATE t2 SET b=74087 WHERE a=1857; UPDATE t2 SET b=42717 WHERE a=1858; UPDATE t2 SET b=99513 WHERE a=1859; UPDATE t2 SET b=65291 WHERE a=1860; UPDATE t2 SET b=92888 WHERE a=1861; UPDATE t2 SET b=65795 WHERE a=1862; UPDATE t2 SET b=11837 WHERE a=1863; UPDATE t2 SET b=84522 WHERE a=1864; UPDATE t2 SET b=58654 WHERE a=1865; UPDATE t2 SET b=96217 WHERE a=1866; UPDATE t2 SET b=35612 WHERE a=1867; UPDATE t2 SET b=36556 WHERE a=1868; UPDATE t2 SET b=4537 WHERE a=1869; UPDATE t2 SET b=31409 WHERE a=1870; UPDATE t2 SET b=11556 WHERE a=1871; UPDATE t2 SET b=89235 WHERE a=1872; UPDATE t2 SET b=24366 WHERE a=1873; UPDATE t2 SET b=75223 WHERE a=1874; UPDATE t2 SET b=16536 WHERE a=1875; UPDATE t2 SET b=60430 WHERE a=1876; UPDATE t2 SET b=12201 WHERE a=1877; UPDATE t2 SET b=67967 WHERE a=1878; UPDATE t2 SET b=69026 WHERE a=1879; UPDATE t2 SET b=77163 WHERE a=1880; UPDATE t2 SET b=51313 WHERE a=1881; UPDATE t2 SET b=52532 WHERE a=1882; UPDATE t2 SET b=21486 WHERE a=1883; UPDATE t2 SET b=22113 WHERE a=1884; UPDATE t2 SET b=24687 WHERE a=1885; UPDATE t2 SET b=72009 WHERE a=1886; UPDATE t2 SET b=18449 WHERE a=1887; UPDATE t2 SET b=70141 WHERE a=1888; UPDATE t2 SET b=67946 WHERE a=1889; UPDATE t2 SET b=93593 WHERE a=1890; UPDATE t2 SET b=92804 WHERE a=1891; UPDATE t2 SET b=80023 WHERE a=1892; UPDATE t2 SET b=85625 WHERE a=1893; UPDATE t2 SET b=67915 WHERE a=1894; UPDATE t2 SET b=78104 WHERE a=1895; UPDATE t2 SET b=74225 WHERE a=1896; UPDATE t2 SET b=28903 WHERE a=1897; UPDATE t2 SET b=29423 WHERE a=1898; UPDATE t2 SET b=84283 WHERE a=1899; UPDATE t2 SET b=37231 WHERE a=1900; UPDATE t2 SET b=93509 WHERE a=1901; UPDATE t2 SET b=92796 WHERE a=1902; UPDATE t2 SET b=65684 WHERE a=1903; UPDATE t2 SET b=49246 WHERE a=1904; UPDATE t2 SET b=37400 WHERE a=1905; UPDATE t2 SET b=70503 WHERE a=1906; UPDATE t2 SET b=82976 WHERE a=1907; UPDATE t2 SET b=30074 WHERE a=1908; UPDATE t2 SET b=17497 WHERE a=1909; UPDATE t2 SET b=59390 WHERE a=1910; UPDATE t2 SET b=4100 WHERE a=1911; UPDATE t2 SET b=37529 WHERE a=1912; UPDATE t2 SET b=64603 WHERE a=1913; UPDATE t2 SET b=94944 WHERE a=1914; UPDATE t2 SET b=20039 WHERE a=1915; UPDATE t2 SET b=52834 WHERE a=1916; UPDATE t2 SET b=79146 WHERE a=1917; UPDATE t2 SET b=62904 WHERE a=1918; UPDATE t2 SET b=97240 WHERE a=1919; UPDATE t2 SET b=37218 WHERE a=1920; UPDATE t2 SET b=31305 WHERE a=1921; UPDATE t2 SET b=37187 WHERE a=1922; UPDATE t2 SET b=64977 WHERE a=1923; UPDATE t2 SET b=32476 WHERE a=1924; UPDATE t2 SET b=95732 WHERE a=1925; UPDATE t2 SET b=9338 WHERE a=1926; UPDATE t2 SET b=5130 WHERE a=1927; UPDATE t2 SET b=55313 WHERE a=1928; UPDATE t2 SET b=88679 WHERE a=1929; UPDATE t2 SET b=96427 WHERE a=1930; UPDATE t2 SET b=26450 WHERE a=1931; UPDATE t2 SET b=33107 WHERE a=1932; UPDATE t2 SET b=65529 WHERE a=1933; UPDATE t2 SET b=27795 WHERE a=1934; UPDATE t2 SET b=32174 WHERE a=1935; UPDATE t2 SET b=69320 WHERE a=1936; UPDATE t2 SET b=95096 WHERE a=1937; UPDATE t2 SET b=68238 WHERE a=1938; UPDATE t2 SET b=61843 WHERE a=1939; UPDATE t2 SET b=37722 WHERE a=1940; UPDATE t2 SET b=8401 WHERE a=1941; UPDATE t2 SET b=38849 WHERE a=1942; UPDATE t2 SET b=65880 WHERE a=1943; UPDATE t2 SET b=86725 WHERE a=1944; UPDATE t2 SET b=30397 WHERE a=1945; UPDATE t2 SET b=93321 WHERE a=1946; UPDATE t2 SET b=57680 WHERE a=1947; UPDATE t2 SET b=4174 WHERE a=1948; UPDATE t2 SET b=3722 WHERE a=1949; UPDATE t2 SET b=5330 WHERE a=1950; UPDATE t2 SET b=17637 WHERE a=1951; UPDATE t2 SET b=57254 WHERE a=1952; UPDATE t2 SET b=50233 WHERE a=1953; UPDATE t2 SET b=36668 WHERE a=1954; UPDATE t2 SET b=25452 WHERE a=1955; UPDATE t2 SET b=83902 WHERE a=1956; UPDATE t2 SET b=76343 WHERE a=1957; UPDATE t2 SET b=1634 WHERE a=1958; UPDATE t2 SET b=85478 WHERE a=1959; UPDATE t2 SET b=32573 WHERE a=1960; UPDATE t2 SET b=37391 WHERE a=1961; UPDATE t2 SET b=83778 WHERE a=1962; UPDATE t2 SET b=19577 WHERE a=1963; UPDATE t2 SET b=54530 WHERE a=1964; UPDATE t2 SET b=97107 WHERE a=1965; UPDATE t2 SET b=81565 WHERE a=1966; UPDATE t2 SET b=62876 WHERE a=1967; UPDATE t2 SET b=27671 WHERE a=1968; UPDATE t2 SET b=50776 WHERE a=1969; UPDATE t2 SET b=38974 WHERE a=1970; UPDATE t2 SET b=35548 WHERE a=1971; UPDATE t2 SET b=15158 WHERE a=1972; UPDATE t2 SET b=63009 WHERE a=1973; UPDATE t2 SET b=71243 WHERE a=1974; UPDATE t2 SET b=64453 WHERE a=1975; UPDATE t2 SET b=84873 WHERE a=1976; UPDATE t2 SET b=71035 WHERE a=1977; UPDATE t2 SET b=14499 WHERE a=1978; UPDATE t2 SET b=74951 WHERE a=1979; UPDATE t2 SET b=52764 WHERE a=1980; UPDATE t2 SET b=9891 WHERE a=1981; UPDATE t2 SET b=33542 WHERE a=1982; UPDATE t2 SET b=6222 WHERE a=1983; UPDATE t2 SET b=21912 WHERE a=1984; UPDATE t2 SET b=10715 WHERE a=1985; UPDATE t2 SET b=97857 WHERE a=1986; UPDATE t2 SET b=10594 WHERE a=1987; UPDATE t2 SET b=4448 WHERE a=1988; UPDATE t2 SET b=66137 WHERE a=1989; UPDATE t2 SET b=37487 WHERE a=1990; UPDATE t2 SET b=31104 WHERE a=1991; UPDATE t2 SET b=39110 WHERE a=1992; UPDATE t2 SET b=12660 WHERE a=1993; UPDATE t2 SET b=75411 WHERE a=1994; UPDATE t2 SET b=81495 WHERE a=1995; UPDATE t2 SET b=37488 WHERE a=1996; UPDATE t2 SET b=34744 WHERE a=1997; UPDATE t2 SET b=84261 WHERE a=1998; UPDATE t2 SET b=56171 WHERE a=1999; UPDATE t2 SET b=91319 WHERE a=2000; UPDATE t2 SET b=77530 WHERE a=2001; UPDATE t2 SET b=80060 WHERE a=2002; UPDATE t2 SET b=39720 WHERE a=2003; UPDATE t2 SET b=31239 WHERE a=2004; UPDATE t2 SET b=13046 WHERE a=2005; UPDATE t2 SET b=66703 WHERE a=2006; UPDATE t2 SET b=84357 WHERE a=2007; UPDATE t2 SET b=53804 WHERE a=2008; UPDATE t2 SET b=21405 WHERE a=2009; UPDATE t2 SET b=66932 WHERE a=2010; UPDATE t2 SET b=97541 WHERE a=2011; UPDATE t2 SET b=12780 WHERE a=2012; UPDATE t2 SET b=35119 WHERE a=2013; UPDATE t2 SET b=81237 WHERE a=2014; UPDATE t2 SET b=70091 WHERE a=2015; UPDATE t2 SET b=15688 WHERE a=2016; UPDATE t2 SET b=49489 WHERE a=2017; UPDATE t2 SET b=64308 WHERE a=2018; UPDATE t2 SET b=9797 WHERE a=2019; UPDATE t2 SET b=70472 WHERE a=2020; UPDATE t2 SET b=84251 WHERE a=2021; UPDATE t2 SET b=9826 WHERE a=2022; UPDATE t2 SET b=83078 WHERE a=2023; UPDATE t2 SET b=76214 WHERE a=2024; UPDATE t2 SET b=65906 WHERE a=2025; UPDATE t2 SET b=68776 WHERE a=2026; UPDATE t2 SET b=38925 WHERE a=2027; UPDATE t2 SET b=54330 WHERE a=2028; UPDATE t2 SET b=30722 WHERE a=2029; UPDATE t2 SET b=18597 WHERE a=2030; UPDATE t2 SET b=27265 WHERE a=2031; UPDATE t2 SET b=48581 WHERE a=2032; UPDATE t2 SET b=57884 WHERE a=2033; UPDATE t2 SET b=90533 WHERE a=2034; UPDATE t2 SET b=67524 WHERE a=2035; UPDATE t2 SET b=26633 WHERE a=2036; UPDATE t2 SET b=48502 WHERE a=2037; UPDATE t2 SET b=86188 WHERE a=2038; UPDATE t2 SET b=38123 WHERE a=2039; UPDATE t2 SET b=44510 WHERE a=2040; UPDATE t2 SET b=16432 WHERE a=2041; UPDATE t2 SET b=24092 WHERE a=2042; UPDATE t2 SET b=26438 WHERE a=2043; UPDATE t2 SET b=58177 WHERE a=2044; UPDATE t2 SET b=64902 WHERE a=2045; UPDATE t2 SET b=71038 WHERE a=2046; UPDATE t2 SET b=70628 WHERE a=2047; UPDATE t2 SET b=39286 WHERE a=2048; UPDATE t2 SET b=52722 WHERE a=2049; UPDATE t2 SET b=99691 WHERE a=2050; UPDATE t2 SET b=42810 WHERE a=2051; UPDATE t2 SET b=37484 WHERE a=2052; UPDATE t2 SET b=94576 WHERE a=2053; UPDATE t2 SET b=15859 WHERE a=2054; UPDATE t2 SET b=89081 WHERE a=2055; UPDATE t2 SET b=23658 WHERE a=2056; UPDATE t2 SET b=63383 WHERE a=2057; UPDATE t2 SET b=99170 WHERE a=2058; UPDATE t2 SET b=50974 WHERE a=2059; UPDATE t2 SET b=68414 WHERE a=2060; UPDATE t2 SET b=47379 WHERE a=2061; UPDATE t2 SET b=28871 WHERE a=2062; UPDATE t2 SET b=76260 WHERE a=2063; UPDATE t2 SET b=29624 WHERE a=2064; UPDATE t2 SET b=14322 WHERE a=2065; UPDATE t2 SET b=39038 WHERE a=2066; UPDATE t2 SET b=41124 WHERE a=2067; UPDATE t2 SET b=20050 WHERE a=2068; UPDATE t2 SET b=95876 WHERE a=2069; UPDATE t2 SET b=1361 WHERE a=2070; UPDATE t2 SET b=56669 WHERE a=2071; UPDATE t2 SET b=33877 WHERE a=2072; UPDATE t2 SET b=80305 WHERE a=2073; UPDATE t2 SET b=39980 WHERE a=2074; UPDATE t2 SET b=86704 WHERE a=2075; UPDATE t2 SET b=48587 WHERE a=2076; UPDATE t2 SET b=31370 WHERE a=2077; UPDATE t2 SET b=36187 WHERE a=2078; UPDATE t2 SET b=60655 WHERE a=2079; UPDATE t2 SET b=80717 WHERE a=2080; UPDATE t2 SET b=28264 WHERE a=2081; UPDATE t2 SET b=60619 WHERE a=2082; UPDATE t2 SET b=78611 WHERE a=2083; UPDATE t2 SET b=85619 WHERE a=2084; UPDATE t2 SET b=59224 WHERE a=2085; UPDATE t2 SET b=28749 WHERE a=2086; UPDATE t2 SET b=52813 WHERE a=2087; UPDATE t2 SET b=70662 WHERE a=2088; UPDATE t2 SET b=63368 WHERE a=2089; UPDATE t2 SET b=47500 WHERE a=2090; UPDATE t2 SET b=7978 WHERE a=2091; UPDATE t2 SET b=17010 WHERE a=2092; UPDATE t2 SET b=82829 WHERE a=2093; UPDATE t2 SET b=77423 WHERE a=2094; UPDATE t2 SET b=70582 WHERE a=2095; UPDATE t2 SET b=99240 WHERE a=2096; UPDATE t2 SET b=34980 WHERE a=2097; UPDATE t2 SET b=42243 WHERE a=2098; UPDATE t2 SET b=2833 WHERE a=2099; UPDATE t2 SET b=21494 WHERE a=2100; UPDATE t2 SET b=68020 WHERE a=2101; UPDATE t2 SET b=18877 WHERE a=2102; UPDATE t2 SET b=25929 WHERE a=2103; UPDATE t2 SET b=80543 WHERE a=2104; UPDATE t2 SET b=87869 WHERE a=2105; UPDATE t2 SET b=54905 WHERE a=2106; UPDATE t2 SET b=6709 WHERE a=2107; UPDATE t2 SET b=30639 WHERE a=2108; UPDATE t2 SET b=55388 WHERE a=2109; UPDATE t2 SET b=7999 WHERE a=2110; UPDATE t2 SET b=77204 WHERE a=2111; UPDATE t2 SET b=44651 WHERE a=2112; UPDATE t2 SET b=78549 WHERE a=2113; UPDATE t2 SET b=78296 WHERE a=2114; UPDATE t2 SET b=15586 WHERE a=2115; UPDATE t2 SET b=92896 WHERE a=2116; UPDATE t2 SET b=11917 WHERE a=2117; UPDATE t2 SET b=46128 WHERE a=2118; UPDATE t2 SET b=40806 WHERE a=2119; UPDATE t2 SET b=9751 WHERE a=2120; UPDATE t2 SET b=4686 WHERE a=2121; UPDATE t2 SET b=17317 WHERE a=2122; UPDATE t2 SET b=1394 WHERE a=2123; UPDATE t2 SET b=48532 WHERE a=2124; UPDATE t2 SET b=92069 WHERE a=2125; UPDATE t2 SET b=9832 WHERE a=2126; UPDATE t2 SET b=25171 WHERE a=2127; UPDATE t2 SET b=43074 WHERE a=2128; UPDATE t2 SET b=2943 WHERE a=2129; UPDATE t2 SET b=67134 WHERE a=2130; UPDATE t2 SET b=56114 WHERE a=2131; UPDATE t2 SET b=92655 WHERE a=2132; UPDATE t2 SET b=97279 WHERE a=2133; UPDATE t2 SET b=94407 WHERE a=2134; UPDATE t2 SET b=21907 WHERE a=2135; UPDATE t2 SET b=11089 WHERE a=2136; UPDATE t2 SET b=13620 WHERE a=2137; UPDATE t2 SET b=40007 WHERE a=2138; UPDATE t2 SET b=71803 WHERE a=2139; UPDATE t2 SET b=25828 WHERE a=2140; UPDATE t2 SET b=32382 WHERE a=2141; UPDATE t2 SET b=99111 WHERE a=2142; UPDATE t2 SET b=14986 WHERE a=2143; UPDATE t2 SET b=48155 WHERE a=2144; UPDATE t2 SET b=5974 WHERE a=2145; UPDATE t2 SET b=29208 WHERE a=2146; UPDATE t2 SET b=61140 WHERE a=2147; UPDATE t2 SET b=13909 WHERE a=2148; UPDATE t2 SET b=99199 WHERE a=2149; UPDATE t2 SET b=70312 WHERE a=2150; UPDATE t2 SET b=25552 WHERE a=2151; UPDATE t2 SET b=61493 WHERE a=2152; UPDATE t2 SET b=62195 WHERE a=2153; UPDATE t2 SET b=19107 WHERE a=2154; UPDATE t2 SET b=41454 WHERE a=2155; UPDATE t2 SET b=55147 WHERE a=2156; UPDATE t2 SET b=17982 WHERE a=2157; UPDATE t2 SET b=52311 WHERE a=2158; UPDATE t2 SET b=17760 WHERE a=2159; UPDATE t2 SET b=4720 WHERE a=2160; UPDATE t2 SET b=1432 WHERE a=2161; UPDATE t2 SET b=51173 WHERE a=2162; UPDATE t2 SET b=1411 WHERE a=2163; UPDATE t2 SET b=55164 WHERE a=2164; UPDATE t2 SET b=2356 WHERE a=2165; UPDATE t2 SET b=94117 WHERE a=2166; UPDATE t2 SET b=81522 WHERE a=2167; UPDATE t2 SET b=71824 WHERE a=2168; UPDATE t2 SET b=6537 WHERE a=2169; UPDATE t2 SET b=27707 WHERE a=2170; UPDATE t2 SET b=71121 WHERE a=2171; UPDATE t2 SET b=59042 WHERE a=2172; UPDATE t2 SET b=59019 WHERE a=2173; UPDATE t2 SET b=67786 WHERE a=2174; UPDATE t2 SET b=65842 WHERE a=2175; UPDATE t2 SET b=40228 WHERE a=2176; UPDATE t2 SET b=58283 WHERE a=2177; UPDATE t2 SET b=12024 WHERE a=2178; UPDATE t2 SET b=34988 WHERE a=2179; UPDATE t2 SET b=88438 WHERE a=2180; UPDATE t2 SET b=30589 WHERE a=2181; UPDATE t2 SET b=57710 WHERE a=2182; UPDATE t2 SET b=50559 WHERE a=2183; UPDATE t2 SET b=77033 WHERE a=2184; UPDATE t2 SET b=19073 WHERE a=2185; UPDATE t2 SET b=85646 WHERE a=2186; UPDATE t2 SET b=29335 WHERE a=2187; UPDATE t2 SET b=56804 WHERE a=2188; UPDATE t2 SET b=77177 WHERE a=2189; UPDATE t2 SET b=80070 WHERE a=2190; UPDATE t2 SET b=93915 WHERE a=2191; UPDATE t2 SET b=15983 WHERE a=2192; UPDATE t2 SET b=55117 WHERE a=2193; UPDATE t2 SET b=42947 WHERE a=2194; UPDATE t2 SET b=75227 WHERE a=2195; UPDATE t2 SET b=36258 WHERE a=2196; UPDATE t2 SET b=74799 WHERE a=2197; UPDATE t2 SET b=80915 WHERE a=2198; UPDATE t2 SET b=31039 WHERE a=2199; UPDATE t2 SET b=45438 WHERE a=2200; UPDATE t2 SET b=61043 WHERE a=2201; UPDATE t2 SET b=26322 WHERE a=2202; UPDATE t2 SET b=39155 WHERE a=2203; UPDATE t2 SET b=59991 WHERE a=2204; UPDATE t2 SET b=61272 WHERE a=2205; UPDATE t2 SET b=10242 WHERE a=2206; UPDATE t2 SET b=35119 WHERE a=2207; UPDATE t2 SET b=71806 WHERE a=2208; UPDATE t2 SET b=10339 WHERE a=2209; UPDATE t2 SET b=49046 WHERE a=2210; UPDATE t2 SET b=96317 WHERE a=2211; UPDATE t2 SET b=87846 WHERE a=2212; UPDATE t2 SET b=31596 WHERE a=2213; UPDATE t2 SET b=3906 WHERE a=2214; UPDATE t2 SET b=69886 WHERE a=2215; UPDATE t2 SET b=82998 WHERE a=2216; UPDATE t2 SET b=26344 WHERE a=2217; UPDATE t2 SET b=84208 WHERE a=2218; UPDATE t2 SET b=9805 WHERE a=2219; UPDATE t2 SET b=72321 WHERE a=2220; UPDATE t2 SET b=31803 WHERE a=2221; UPDATE t2 SET b=34282 WHERE a=2222; UPDATE t2 SET b=61721 WHERE a=2223; UPDATE t2 SET b=88823 WHERE a=2224; UPDATE t2 SET b=85825 WHERE a=2225; UPDATE t2 SET b=30561 WHERE a=2226; UPDATE t2 SET b=37485 WHERE a=2227; UPDATE t2 SET b=37415 WHERE a=2228; UPDATE t2 SET b=56797 WHERE a=2229; UPDATE t2 SET b=18081 WHERE a=2230; UPDATE t2 SET b=47667 WHERE a=2231; UPDATE t2 SET b=40082 WHERE a=2232; UPDATE t2 SET b=13168 WHERE a=2233; UPDATE t2 SET b=20115 WHERE a=2234; UPDATE t2 SET b=1282 WHERE a=2235; UPDATE t2 SET b=23327 WHERE a=2236; UPDATE t2 SET b=30075 WHERE a=2237; UPDATE t2 SET b=55795 WHERE a=2238; UPDATE t2 SET b=83614 WHERE a=2239; UPDATE t2 SET b=76017 WHERE a=2240; UPDATE t2 SET b=21726 WHERE a=2241; UPDATE t2 SET b=79299 WHERE a=2242; UPDATE t2 SET b=50402 WHERE a=2243; UPDATE t2 SET b=37957 WHERE a=2244; UPDATE t2 SET b=16815 WHERE a=2245; UPDATE t2 SET b=42748 WHERE a=2246; UPDATE t2 SET b=5573 WHERE a=2247; UPDATE t2 SET b=41044 WHERE a=2248; UPDATE t2 SET b=5639 WHERE a=2249; UPDATE t2 SET b=41607 WHERE a=2250; UPDATE t2 SET b=98710 WHERE a=2251; UPDATE t2 SET b=90258 WHERE a=2252; UPDATE t2 SET b=37061 WHERE a=2253; UPDATE t2 SET b=24722 WHERE a=2254; UPDATE t2 SET b=58489 WHERE a=2255; UPDATE t2 SET b=11123 WHERE a=2256; UPDATE t2 SET b=83187 WHERE a=2257; UPDATE t2 SET b=36203 WHERE a=2258; UPDATE t2 SET b=97273 WHERE a=2259; UPDATE t2 SET b=9542 WHERE a=2260; UPDATE t2 SET b=76079 WHERE a=2261; UPDATE t2 SET b=79711 WHERE a=2262; UPDATE t2 SET b=45490 WHERE a=2263; UPDATE t2 SET b=62990 WHERE a=2264; UPDATE t2 SET b=86011 WHERE a=2265; UPDATE t2 SET b=91763 WHERE a=2266; UPDATE t2 SET b=62810 WHERE a=2267; UPDATE t2 SET b=53037 WHERE a=2268; UPDATE t2 SET b=58487 WHERE a=2269; UPDATE t2 SET b=90746 WHERE a=2270; UPDATE t2 SET b=14999 WHERE a=2271; UPDATE t2 SET b=83721 WHERE a=2272; UPDATE t2 SET b=32898 WHERE a=2273; UPDATE t2 SET b=99156 WHERE a=2274; UPDATE t2 SET b=43807 WHERE a=2275; UPDATE t2 SET b=71760 WHERE a=2276; UPDATE t2 SET b=85906 WHERE a=2277; UPDATE t2 SET b=43052 WHERE a=2278; UPDATE t2 SET b=74756 WHERE a=2279; UPDATE t2 SET b=70042 WHERE a=2280; UPDATE t2 SET b=64430 WHERE a=2281; UPDATE t2 SET b=4101 WHERE a=2282; UPDATE t2 SET b=53910 WHERE a=2283; UPDATE t2 SET b=27983 WHERE a=2284; UPDATE t2 SET b=17957 WHERE a=2285; UPDATE t2 SET b=18304 WHERE a=2286; UPDATE t2 SET b=89445 WHERE a=2287; UPDATE t2 SET b=25885 WHERE a=2288; UPDATE t2 SET b=29332 WHERE a=2289; UPDATE t2 SET b=76237 WHERE a=2290; UPDATE t2 SET b=15352 WHERE a=2291; UPDATE t2 SET b=93073 WHERE a=2292; UPDATE t2 SET b=65797 WHERE a=2293; UPDATE t2 SET b=71949 WHERE a=2294; UPDATE t2 SET b=14594 WHERE a=2295; UPDATE t2 SET b=50947 WHERE a=2296; UPDATE t2 SET b=35436 WHERE a=2297; UPDATE t2 SET b=76372 WHERE a=2298; UPDATE t2 SET b=4282 WHERE a=2299; UPDATE t2 SET b=89059 WHERE a=2300; UPDATE t2 SET b=51709 WHERE a=2301; UPDATE t2 SET b=43391 WHERE a=2302; UPDATE t2 SET b=51689 WHERE a=2303; UPDATE t2 SET b=58678 WHERE a=2304; UPDATE t2 SET b=79352 WHERE a=2305; UPDATE t2 SET b=68746 WHERE a=2306; UPDATE t2 SET b=71527 WHERE a=2307; UPDATE t2 SET b=7027 WHERE a=2308; UPDATE t2 SET b=94663 WHERE a=2309; UPDATE t2 SET b=70956 WHERE a=2310; UPDATE t2 SET b=2888 WHERE a=2311; UPDATE t2 SET b=51747 WHERE a=2312; UPDATE t2 SET b=46242 WHERE a=2313; UPDATE t2 SET b=38536 WHERE a=2314; UPDATE t2 SET b=50034 WHERE a=2315; UPDATE t2 SET b=4887 WHERE a=2316; UPDATE t2 SET b=16587 WHERE a=2317; UPDATE t2 SET b=36870 WHERE a=2318; UPDATE t2 SET b=80386 WHERE a=2319; UPDATE t2 SET b=52621 WHERE a=2320; UPDATE t2 SET b=87757 WHERE a=2321; UPDATE t2 SET b=21630 WHERE a=2322; UPDATE t2 SET b=25039 WHERE a=2323; UPDATE t2 SET b=81062 WHERE a=2324; UPDATE t2 SET b=87365 WHERE a=2325; UPDATE t2 SET b=16749 WHERE a=2326; UPDATE t2 SET b=33369 WHERE a=2327; UPDATE t2 SET b=3427 WHERE a=2328; UPDATE t2 SET b=59457 WHERE a=2329; UPDATE t2 SET b=89583 WHERE a=2330; UPDATE t2 SET b=49237 WHERE a=2331; UPDATE t2 SET b=87284 WHERE a=2332; UPDATE t2 SET b=19306 WHERE a=2333; UPDATE t2 SET b=44142 WHERE a=2334; UPDATE t2 SET b=75222 WHERE a=2335; UPDATE t2 SET b=26880 WHERE a=2336; UPDATE t2 SET b=80202 WHERE a=2337; UPDATE t2 SET b=36224 WHERE a=2338; UPDATE t2 SET b=30686 WHERE a=2339; UPDATE t2 SET b=16715 WHERE a=2340; UPDATE t2 SET b=17906 WHERE a=2341; UPDATE t2 SET b=54821 WHERE a=2342; UPDATE t2 SET b=74410 WHERE a=2343; UPDATE t2 SET b=4617 WHERE a=2344; UPDATE t2 SET b=25294 WHERE a=2345; UPDATE t2 SET b=30226 WHERE a=2346; UPDATE t2 SET b=77152 WHERE a=2347; UPDATE t2 SET b=6199 WHERE a=2348; UPDATE t2 SET b=4010 WHERE a=2349; UPDATE t2 SET b=35817 WHERE a=2350; UPDATE t2 SET b=94072 WHERE a=2351; UPDATE t2 SET b=19721 WHERE a=2352; UPDATE t2 SET b=17377 WHERE a=2353; UPDATE t2 SET b=97091 WHERE a=2354; UPDATE t2 SET b=20618 WHERE a=2355; UPDATE t2 SET b=83618 WHERE a=2356; UPDATE t2 SET b=50499 WHERE a=2357; UPDATE t2 SET b=40208 WHERE a=2358; UPDATE t2 SET b=48683 WHERE a=2359; UPDATE t2 SET b=68869 WHERE a=2360; UPDATE t2 SET b=39766 WHERE a=2361; UPDATE t2 SET b=56288 WHERE a=2362; UPDATE t2 SET b=30121 WHERE a=2363; UPDATE t2 SET b=43638 WHERE a=2364; UPDATE t2 SET b=70617 WHERE a=2365; UPDATE t2 SET b=98855 WHERE a=2366; UPDATE t2 SET b=46211 WHERE a=2367; UPDATE t2 SET b=50440 WHERE a=2368; UPDATE t2 SET b=14246 WHERE a=2369; UPDATE t2 SET b=80049 WHERE a=2370; UPDATE t2 SET b=82495 WHERE a=2371; UPDATE t2 SET b=57475 WHERE a=2372; UPDATE t2 SET b=72133 WHERE a=2373; UPDATE t2 SET b=69332 WHERE a=2374; UPDATE t2 SET b=33241 WHERE a=2375; UPDATE t2 SET b=57149 WHERE a=2376; UPDATE t2 SET b=22568 WHERE a=2377; UPDATE t2 SET b=7282 WHERE a=2378; UPDATE t2 SET b=58213 WHERE a=2379; UPDATE t2 SET b=91539 WHERE a=2380; UPDATE t2 SET b=42062 WHERE a=2381; UPDATE t2 SET b=72957 WHERE a=2382; UPDATE t2 SET b=98309 WHERE a=2383; UPDATE t2 SET b=35597 WHERE a=2384; UPDATE t2 SET b=7877 WHERE a=2385; UPDATE t2 SET b=9633 WHERE a=2386; UPDATE t2 SET b=51686 WHERE a=2387; UPDATE t2 SET b=93786 WHERE a=2388; UPDATE t2 SET b=65135 WHERE a=2389; UPDATE t2 SET b=90859 WHERE a=2390; UPDATE t2 SET b=77915 WHERE a=2391; UPDATE t2 SET b=44276 WHERE a=2392; UPDATE t2 SET b=98364 WHERE a=2393; UPDATE t2 SET b=75112 WHERE a=2394; UPDATE t2 SET b=63871 WHERE a=2395; UPDATE t2 SET b=87258 WHERE a=2396; UPDATE t2 SET b=25693 WHERE a=2397; UPDATE t2 SET b=34926 WHERE a=2398; UPDATE t2 SET b=64993 WHERE a=2399; UPDATE t2 SET b=52425 WHERE a=2400; UPDATE t2 SET b=27407 WHERE a=2401; UPDATE t2 SET b=76700 WHERE a=2402; UPDATE t2 SET b=62790 WHERE a=2403; UPDATE t2 SET b=20223 WHERE a=2404; UPDATE t2 SET b=85992 WHERE a=2405; UPDATE t2 SET b=99264 WHERE a=2406; UPDATE t2 SET b=24598 WHERE a=2407; UPDATE t2 SET b=62506 WHERE a=2408; UPDATE t2 SET b=92113 WHERE a=2409; UPDATE t2 SET b=86374 WHERE a=2410; UPDATE t2 SET b=13271 WHERE a=2411; UPDATE t2 SET b=11755 WHERE a=2412; UPDATE t2 SET b=79023 WHERE a=2413; UPDATE t2 SET b=14552 WHERE a=2414; UPDATE t2 SET b=37506 WHERE a=2415; UPDATE t2 SET b=87454 WHERE a=2416; UPDATE t2 SET b=1577 WHERE a=2417; UPDATE t2 SET b=33973 WHERE a=2418; UPDATE t2 SET b=11240 WHERE a=2419; UPDATE t2 SET b=39497 WHERE a=2420; UPDATE t2 SET b=36436 WHERE a=2421; UPDATE t2 SET b=66300 WHERE a=2422; UPDATE t2 SET b=69506 WHERE a=2423; UPDATE t2 SET b=11303 WHERE a=2424; UPDATE t2 SET b=94587 WHERE a=2425; UPDATE t2 SET b=86566 WHERE a=2426; UPDATE t2 SET b=70651 WHERE a=2427; UPDATE t2 SET b=77317 WHERE a=2428; UPDATE t2 SET b=9179 WHERE a=2429; UPDATE t2 SET b=53124 WHERE a=2430; UPDATE t2 SET b=31889 WHERE a=2431; UPDATE t2 SET b=20881 WHERE a=2432; UPDATE t2 SET b=53887 WHERE a=2433; UPDATE t2 SET b=19994 WHERE a=2434; UPDATE t2 SET b=653 WHERE a=2435; UPDATE t2 SET b=2085 WHERE a=2436; UPDATE t2 SET b=79395 WHERE a=2437; UPDATE t2 SET b=98727 WHERE a=2438; UPDATE t2 SET b=73481 WHERE a=2439; UPDATE t2 SET b=91671 WHERE a=2440; UPDATE t2 SET b=341 WHERE a=2441; UPDATE t2 SET b=78062 WHERE a=2442; UPDATE t2 SET b=34283 WHERE a=2443; UPDATE t2 SET b=77604 WHERE a=2444; UPDATE t2 SET b=17590 WHERE a=2445; UPDATE t2 SET b=40947 WHERE a=2446; UPDATE t2 SET b=9392 WHERE a=2447; UPDATE t2 SET b=79099 WHERE a=2448; UPDATE t2 SET b=45996 WHERE a=2449; UPDATE t2 SET b=62747 WHERE a=2450; UPDATE t2 SET b=25230 WHERE a=2451; UPDATE t2 SET b=23182 WHERE a=2452; UPDATE t2 SET b=93046 WHERE a=2453; UPDATE t2 SET b=25865 WHERE a=2454; UPDATE t2 SET b=88775 WHERE a=2455; UPDATE t2 SET b=85250 WHERE a=2456; UPDATE t2 SET b=83400 WHERE a=2457; UPDATE t2 SET b=1291 WHERE a=2458; UPDATE t2 SET b=98570 WHERE a=2459; UPDATE t2 SET b=99065 WHERE a=2460; UPDATE t2 SET b=17860 WHERE a=2461; UPDATE t2 SET b=81452 WHERE a=2462; UPDATE t2 SET b=37701 WHERE a=2463; UPDATE t2 SET b=37357 WHERE a=2464; UPDATE t2 SET b=94936 WHERE a=2465; UPDATE t2 SET b=39636 WHERE a=2466; UPDATE t2 SET b=28795 WHERE a=2467; UPDATE t2 SET b=75247 WHERE a=2468; UPDATE t2 SET b=50975 WHERE a=2469; UPDATE t2 SET b=78020 WHERE a=2470; UPDATE t2 SET b=90600 WHERE a=2471; UPDATE t2 SET b=57640 WHERE a=2472; UPDATE t2 SET b=80403 WHERE a=2473; UPDATE t2 SET b=25328 WHERE a=2474; UPDATE t2 SET b=69787 WHERE a=2475; UPDATE t2 SET b=12407 WHERE a=2476; UPDATE t2 SET b=78732 WHERE a=2477; UPDATE t2 SET b=78240 WHERE a=2478; UPDATE t2 SET b=24151 WHERE a=2479; UPDATE t2 SET b=20827 WHERE a=2480; UPDATE t2 SET b=5129 WHERE a=2481; UPDATE t2 SET b=38738 WHERE a=2482; UPDATE t2 SET b=93539 WHERE a=2483; UPDATE t2 SET b=34352 WHERE a=2484; UPDATE t2 SET b=69017 WHERE a=2485; UPDATE t2 SET b=14279 WHERE a=2486; UPDATE t2 SET b=18188 WHERE a=2487; UPDATE t2 SET b=97210 WHERE a=2488; UPDATE t2 SET b=10387 WHERE a=2489; UPDATE t2 SET b=45590 WHERE a=2490; UPDATE t2 SET b=21072 WHERE a=2491; UPDATE t2 SET b=42167 WHERE a=2492; UPDATE t2 SET b=51546 WHERE a=2493; UPDATE t2 SET b=49906 WHERE a=2494; UPDATE t2 SET b=86558 WHERE a=2495; UPDATE t2 SET b=63156 WHERE a=2496; UPDATE t2 SET b=25603 WHERE a=2497; UPDATE t2 SET b=47798 WHERE a=2498; UPDATE t2 SET b=61526 WHERE a=2499; UPDATE t2 SET b=64713 WHERE a=2500; UPDATE t2 SET b=15479 WHERE a=2501; UPDATE t2 SET b=87517 WHERE a=2502; UPDATE t2 SET b=78568 WHERE a=2503; UPDATE t2 SET b=71643 WHERE a=2504; UPDATE t2 SET b=65176 WHERE a=2505; UPDATE t2 SET b=26125 WHERE a=2506; UPDATE t2 SET b=51919 WHERE a=2507; UPDATE t2 SET b=85528 WHERE a=2508; UPDATE t2 SET b=89719 WHERE a=2509; UPDATE t2 SET b=97099 WHERE a=2510; UPDATE t2 SET b=37113 WHERE a=2511; UPDATE t2 SET b=35467 WHERE a=2512; UPDATE t2 SET b=62404 WHERE a=2513; UPDATE t2 SET b=93280 WHERE a=2514; UPDATE t2 SET b=90784 WHERE a=2515; UPDATE t2 SET b=98286 WHERE a=2516; UPDATE t2 SET b=70263 WHERE a=2517; UPDATE t2 SET b=9035 WHERE a=2518; UPDATE t2 SET b=57796 WHERE a=2519; UPDATE t2 SET b=96295 WHERE a=2520; UPDATE t2 SET b=99213 WHERE a=2521; UPDATE t2 SET b=51058 WHERE a=2522; UPDATE t2 SET b=19157 WHERE a=2523; UPDATE t2 SET b=42104 WHERE a=2524; UPDATE t2 SET b=23070 WHERE a=2525; UPDATE t2 SET b=94187 WHERE a=2526; UPDATE t2 SET b=7069 WHERE a=2527; UPDATE t2 SET b=96697 WHERE a=2528; UPDATE t2 SET b=42187 WHERE a=2529; UPDATE t2 SET b=57329 WHERE a=2530; UPDATE t2 SET b=80901 WHERE a=2531; UPDATE t2 SET b=6349 WHERE a=2532; UPDATE t2 SET b=29038 WHERE a=2533; UPDATE t2 SET b=45682 WHERE a=2534; UPDATE t2 SET b=74026 WHERE a=2535; UPDATE t2 SET b=94152 WHERE a=2536; UPDATE t2 SET b=33413 WHERE a=2537; UPDATE t2 SET b=10701 WHERE a=2538; UPDATE t2 SET b=38192 WHERE a=2539; UPDATE t2 SET b=9612 WHERE a=2540; UPDATE t2 SET b=29949 WHERE a=2541; UPDATE t2 SET b=53656 WHERE a=2542; UPDATE t2 SET b=41019 WHERE a=2543; UPDATE t2 SET b=48066 WHERE a=2544; UPDATE t2 SET b=84029 WHERE a=2545; UPDATE t2 SET b=28070 WHERE a=2546; UPDATE t2 SET b=34306 WHERE a=2547; UPDATE t2 SET b=38398 WHERE a=2548; UPDATE t2 SET b=97714 WHERE a=2549; UPDATE t2 SET b=22050 WHERE a=2550; UPDATE t2 SET b=10693 WHERE a=2551; UPDATE t2 SET b=85098 WHERE a=2552; UPDATE t2 SET b=99385 WHERE a=2553; UPDATE t2 SET b=60177 WHERE a=2554; UPDATE t2 SET b=1874 WHERE a=2555; UPDATE t2 SET b=9981 WHERE a=2556; UPDATE t2 SET b=33059 WHERE a=2557; UPDATE t2 SET b=44943 WHERE a=2558; UPDATE t2 SET b=90730 WHERE a=2559; UPDATE t2 SET b=59022 WHERE a=2560; UPDATE t2 SET b=10837 WHERE a=2561; UPDATE t2 SET b=54829 WHERE a=2562; UPDATE t2 SET b=80665 WHERE a=2563; UPDATE t2 SET b=1618 WHERE a=2564; UPDATE t2 SET b=18768 WHERE a=2565; UPDATE t2 SET b=73673 WHERE a=2566; UPDATE t2 SET b=76298 WHERE a=2567; UPDATE t2 SET b=6147 WHERE a=2568; UPDATE t2 SET b=79052 WHERE a=2569; UPDATE t2 SET b=6287 WHERE a=2570; UPDATE t2 SET b=87121 WHERE a=2571; UPDATE t2 SET b=12356 WHERE a=2572; UPDATE t2 SET b=3271 WHERE a=2573; UPDATE t2 SET b=82257 WHERE a=2574; UPDATE t2 SET b=76756 WHERE a=2575; UPDATE t2 SET b=66974 WHERE a=2576; UPDATE t2 SET b=53676 WHERE a=2577; UPDATE t2 SET b=93126 WHERE a=2578; UPDATE t2 SET b=38939 WHERE a=2579; UPDATE t2 SET b=1248 WHERE a=2580; UPDATE t2 SET b=28796 WHERE a=2581; UPDATE t2 SET b=10916 WHERE a=2582; UPDATE t2 SET b=21892 WHERE a=2583; UPDATE t2 SET b=92850 WHERE a=2584; UPDATE t2 SET b=79316 WHERE a=2585; UPDATE t2 SET b=66722 WHERE a=2586; UPDATE t2 SET b=52778 WHERE a=2587; UPDATE t2 SET b=44739 WHERE a=2588; UPDATE t2 SET b=95008 WHERE a=2589; UPDATE t2 SET b=75164 WHERE a=2590; UPDATE t2 SET b=63542 WHERE a=2591; UPDATE t2 SET b=39979 WHERE a=2592; UPDATE t2 SET b=98410 WHERE a=2593; UPDATE t2 SET b=54392 WHERE a=2594; UPDATE t2 SET b=53389 WHERE a=2595; UPDATE t2 SET b=29602 WHERE a=2596; UPDATE t2 SET b=2132 WHERE a=2597; UPDATE t2 SET b=51869 WHERE a=2598; UPDATE t2 SET b=73445 WHERE a=2599; UPDATE t2 SET b=59355 WHERE a=2600; UPDATE t2 SET b=97417 WHERE a=2601; UPDATE t2 SET b=8818 WHERE a=2602; UPDATE t2 SET b=9891 WHERE a=2603; UPDATE t2 SET b=1807 WHERE a=2604; UPDATE t2 SET b=9010 WHERE a=2605; UPDATE t2 SET b=38388 WHERE a=2606; UPDATE t2 SET b=77356 WHERE a=2607; UPDATE t2 SET b=39829 WHERE a=2608; UPDATE t2 SET b=36747 WHERE a=2609; UPDATE t2 SET b=48490 WHERE a=2610; UPDATE t2 SET b=42272 WHERE a=2611; UPDATE t2 SET b=26695 WHERE a=2612; UPDATE t2 SET b=18782 WHERE a=2613; UPDATE t2 SET b=28440 WHERE a=2614; UPDATE t2 SET b=13471 WHERE a=2615; UPDATE t2 SET b=64714 WHERE a=2616; UPDATE t2 SET b=32480 WHERE a=2617; UPDATE t2 SET b=27055 WHERE a=2618; UPDATE t2 SET b=27036 WHERE a=2619; UPDATE t2 SET b=18568 WHERE a=2620; UPDATE t2 SET b=83419 WHERE a=2621; UPDATE t2 SET b=47174 WHERE a=2622; UPDATE t2 SET b=97438 WHERE a=2623; UPDATE t2 SET b=81844 WHERE a=2624; UPDATE t2 SET b=77031 WHERE a=2625; UPDATE t2 SET b=27900 WHERE a=2626; UPDATE t2 SET b=2337 WHERE a=2627; UPDATE t2 SET b=49799 WHERE a=2628; UPDATE t2 SET b=75751 WHERE a=2629; UPDATE t2 SET b=47149 WHERE a=2630; UPDATE t2 SET b=83251 WHERE a=2631; UPDATE t2 SET b=10818 WHERE a=2632; UPDATE t2 SET b=72452 WHERE a=2633; UPDATE t2 SET b=33441 WHERE a=2634; UPDATE t2 SET b=98267 WHERE a=2635; UPDATE t2 SET b=13528 WHERE a=2636; UPDATE t2 SET b=75306 WHERE a=2637; UPDATE t2 SET b=67513 WHERE a=2638; UPDATE t2 SET b=44130 WHERE a=2639; UPDATE t2 SET b=33459 WHERE a=2640; UPDATE t2 SET b=64650 WHERE a=2641; UPDATE t2 SET b=48146 WHERE a=2642; UPDATE t2 SET b=7270 WHERE a=2643; UPDATE t2 SET b=25583 WHERE a=2644; UPDATE t2 SET b=97942 WHERE a=2645; UPDATE t2 SET b=82624 WHERE a=2646; UPDATE t2 SET b=77699 WHERE a=2647; UPDATE t2 SET b=10639 WHERE a=2648; UPDATE t2 SET b=14395 WHERE a=2649; UPDATE t2 SET b=28765 WHERE a=2650; UPDATE t2 SET b=40738 WHERE a=2651; UPDATE t2 SET b=52505 WHERE a=2652; UPDATE t2 SET b=63171 WHERE a=2653; UPDATE t2 SET b=52590 WHERE a=2654; UPDATE t2 SET b=87445 WHERE a=2655; UPDATE t2 SET b=11782 WHERE a=2656; UPDATE t2 SET b=35556 WHERE a=2657; UPDATE t2 SET b=13353 WHERE a=2658; UPDATE t2 SET b=12331 WHERE a=2659; UPDATE t2 SET b=51773 WHERE a=2660; UPDATE t2 SET b=19754 WHERE a=2661; UPDATE t2 SET b=94281 WHERE a=2662; UPDATE t2 SET b=12799 WHERE a=2663; UPDATE t2 SET b=72000 WHERE a=2664; UPDATE t2 SET b=43463 WHERE a=2665; UPDATE t2 SET b=49889 WHERE a=2666; UPDATE t2 SET b=11854 WHERE a=2667; UPDATE t2 SET b=51499 WHERE a=2668; UPDATE t2 SET b=94878 WHERE a=2669; UPDATE t2 SET b=32376 WHERE a=2670; UPDATE t2 SET b=30638 WHERE a=2671; UPDATE t2 SET b=34674 WHERE a=2672; UPDATE t2 SET b=90247 WHERE a=2673; UPDATE t2 SET b=29897 WHERE a=2674; UPDATE t2 SET b=39665 WHERE a=2675; UPDATE t2 SET b=36908 WHERE a=2676; UPDATE t2 SET b=14087 WHERE a=2677; UPDATE t2 SET b=21295 WHERE a=2678; UPDATE t2 SET b=88863 WHERE a=2679; UPDATE t2 SET b=21343 WHERE a=2680; UPDATE t2 SET b=1651 WHERE a=2681; UPDATE t2 SET b=25944 WHERE a=2682; UPDATE t2 SET b=55732 WHERE a=2683; UPDATE t2 SET b=81256 WHERE a=2684; UPDATE t2 SET b=43294 WHERE a=2685; UPDATE t2 SET b=12172 WHERE a=2686; UPDATE t2 SET b=69536 WHERE a=2687; UPDATE t2 SET b=78750 WHERE a=2688; UPDATE t2 SET b=5302 WHERE a=2689; UPDATE t2 SET b=52251 WHERE a=2690; UPDATE t2 SET b=35521 WHERE a=2691; UPDATE t2 SET b=89304 WHERE a=2692; UPDATE t2 SET b=38880 WHERE a=2693; UPDATE t2 SET b=64644 WHERE a=2694; UPDATE t2 SET b=59151 WHERE a=2695; UPDATE t2 SET b=95114 WHERE a=2696; UPDATE t2 SET b=67707 WHERE a=2697; UPDATE t2 SET b=46651 WHERE a=2698; UPDATE t2 SET b=87894 WHERE a=2699; UPDATE t2 SET b=7338 WHERE a=2700; UPDATE t2 SET b=766 WHERE a=2701; UPDATE t2 SET b=30469 WHERE a=2702; UPDATE t2 SET b=21465 WHERE a=2703; UPDATE t2 SET b=28505 WHERE a=2704; UPDATE t2 SET b=73364 WHERE a=2705; UPDATE t2 SET b=30526 WHERE a=2706; UPDATE t2 SET b=75256 WHERE a=2707; UPDATE t2 SET b=86111 WHERE a=2708; UPDATE t2 SET b=84140 WHERE a=2709; UPDATE t2 SET b=37226 WHERE a=2710; UPDATE t2 SET b=64138 WHERE a=2711; UPDATE t2 SET b=54131 WHERE a=2712; UPDATE t2 SET b=84395 WHERE a=2713; UPDATE t2 SET b=99631 WHERE a=2714; UPDATE t2 SET b=83471 WHERE a=2715; UPDATE t2 SET b=73816 WHERE a=2716; UPDATE t2 SET b=17181 WHERE a=2717; UPDATE t2 SET b=45463 WHERE a=2718; UPDATE t2 SET b=38056 WHERE a=2719; UPDATE t2 SET b=75972 WHERE a=2720; UPDATE t2 SET b=73651 WHERE a=2721; UPDATE t2 SET b=59821 WHERE a=2722; UPDATE t2 SET b=40560 WHERE a=2723; UPDATE t2 SET b=92628 WHERE a=2724; UPDATE t2 SET b=86504 WHERE a=2725; UPDATE t2 SET b=12609 WHERE a=2726; UPDATE t2 SET b=5296 WHERE a=2727; UPDATE t2 SET b=41017 WHERE a=2728; UPDATE t2 SET b=95183 WHERE a=2729; UPDATE t2 SET b=93142 WHERE a=2730; UPDATE t2 SET b=86482 WHERE a=2731; UPDATE t2 SET b=22762 WHERE a=2732; UPDATE t2 SET b=37912 WHERE a=2733; UPDATE t2 SET b=97680 WHERE a=2734; UPDATE t2 SET b=16943 WHERE a=2735; UPDATE t2 SET b=403 WHERE a=2736; UPDATE t2 SET b=7622 WHERE a=2737; UPDATE t2 SET b=55656 WHERE a=2738; UPDATE t2 SET b=86206 WHERE a=2739; UPDATE t2 SET b=32970 WHERE a=2740; UPDATE t2 SET b=88208 WHERE a=2741; UPDATE t2 SET b=57371 WHERE a=2742; UPDATE t2 SET b=38934 WHERE a=2743; UPDATE t2 SET b=35150 WHERE a=2744; UPDATE t2 SET b=6627 WHERE a=2745; UPDATE t2 SET b=32525 WHERE a=2746; UPDATE t2 SET b=28904 WHERE a=2747; UPDATE t2 SET b=20602 WHERE a=2748; UPDATE t2 SET b=80722 WHERE a=2749; UPDATE t2 SET b=52441 WHERE a=2750; UPDATE t2 SET b=60497 WHERE a=2751; UPDATE t2 SET b=48402 WHERE a=2752; UPDATE t2 SET b=8250 WHERE a=2753; UPDATE t2 SET b=86344 WHERE a=2754; UPDATE t2 SET b=24412 WHERE a=2755; UPDATE t2 SET b=25723 WHERE a=2756; UPDATE t2 SET b=38066 WHERE a=2757; UPDATE t2 SET b=98999 WHERE a=2758; UPDATE t2 SET b=52574 WHERE a=2759; UPDATE t2 SET b=72333 WHERE a=2760; UPDATE t2 SET b=34734 WHERE a=2761; UPDATE t2 SET b=5886 WHERE a=2762; UPDATE t2 SET b=14103 WHERE a=2763; UPDATE t2 SET b=98165 WHERE a=2764; UPDATE t2 SET b=59018 WHERE a=2765; UPDATE t2 SET b=55192 WHERE a=2766; UPDATE t2 SET b=79366 WHERE a=2767; UPDATE t2 SET b=22368 WHERE a=2768; UPDATE t2 SET b=38517 WHERE a=2769; UPDATE t2 SET b=52763 WHERE a=2770; UPDATE t2 SET b=47658 WHERE a=2771; UPDATE t2 SET b=48705 WHERE a=2772; UPDATE t2 SET b=30506 WHERE a=2773; UPDATE t2 SET b=30052 WHERE a=2774; UPDATE t2 SET b=59299 WHERE a=2775; UPDATE t2 SET b=23260 WHERE a=2776; UPDATE t2 SET b=26842 WHERE a=2777; UPDATE t2 SET b=83550 WHERE a=2778; UPDATE t2 SET b=43295 WHERE a=2779; UPDATE t2 SET b=38587 WHERE a=2780; UPDATE t2 SET b=61149 WHERE a=2781; UPDATE t2 SET b=92268 WHERE a=2782; UPDATE t2 SET b=24058 WHERE a=2783; UPDATE t2 SET b=96685 WHERE a=2784; UPDATE t2 SET b=11793 WHERE a=2785; UPDATE t2 SET b=26372 WHERE a=2786; UPDATE t2 SET b=87177 WHERE a=2787; UPDATE t2 SET b=96447 WHERE a=2788; UPDATE t2 SET b=2360 WHERE a=2789; UPDATE t2 SET b=84076 WHERE a=2790; UPDATE t2 SET b=95977 WHERE a=2791; UPDATE t2 SET b=2202 WHERE a=2792; UPDATE t2 SET b=67029 WHERE a=2793; UPDATE t2 SET b=67000 WHERE a=2794; UPDATE t2 SET b=61213 WHERE a=2795; UPDATE t2 SET b=76922 WHERE a=2796; UPDATE t2 SET b=9316 WHERE a=2797; UPDATE t2 SET b=42006 WHERE a=2798; UPDATE t2 SET b=8793 WHERE a=2799; UPDATE t2 SET b=48489 WHERE a=2800; UPDATE t2 SET b=99821 WHERE a=2801; UPDATE t2 SET b=28213 WHERE a=2802; UPDATE t2 SET b=60783 WHERE a=2803; UPDATE t2 SET b=82366 WHERE a=2804; UPDATE t2 SET b=17031 WHERE a=2805; UPDATE t2 SET b=63712 WHERE a=2806; UPDATE t2 SET b=40462 WHERE a=2807; UPDATE t2 SET b=32678 WHERE a=2808; UPDATE t2 SET b=84856 WHERE a=2809; UPDATE t2 SET b=47503 WHERE a=2810; UPDATE t2 SET b=22516 WHERE a=2811; UPDATE t2 SET b=67515 WHERE a=2812; UPDATE t2 SET b=20402 WHERE a=2813; UPDATE t2 SET b=51138 WHERE a=2814; UPDATE t2 SET b=82182 WHERE a=2815; UPDATE t2 SET b=97647 WHERE a=2816; UPDATE t2 SET b=70534 WHERE a=2817; UPDATE t2 SET b=52572 WHERE a=2818; UPDATE t2 SET b=86154 WHERE a=2819; UPDATE t2 SET b=51846 WHERE a=2820; UPDATE t2 SET b=82014 WHERE a=2821; UPDATE t2 SET b=74265 WHERE a=2822; UPDATE t2 SET b=48697 WHERE a=2823; UPDATE t2 SET b=21980 WHERE a=2824; UPDATE t2 SET b=64043 WHERE a=2825; UPDATE t2 SET b=27884 WHERE a=2826; UPDATE t2 SET b=24801 WHERE a=2827; UPDATE t2 SET b=55408 WHERE a=2828; UPDATE t2 SET b=53130 WHERE a=2829; UPDATE t2 SET b=32994 WHERE a=2830; UPDATE t2 SET b=94903 WHERE a=2831; UPDATE t2 SET b=98578 WHERE a=2832; UPDATE t2 SET b=25960 WHERE a=2833; UPDATE t2 SET b=58181 WHERE a=2834; UPDATE t2 SET b=36848 WHERE a=2835; UPDATE t2 SET b=2081 WHERE a=2836; UPDATE t2 SET b=51297 WHERE a=2837; UPDATE t2 SET b=34764 WHERE a=2838; UPDATE t2 SET b=48317 WHERE a=2839; UPDATE t2 SET b=14494 WHERE a=2840; UPDATE t2 SET b=52281 WHERE a=2841; UPDATE t2 SET b=71804 WHERE a=2842; UPDATE t2 SET b=99273 WHERE a=2843; UPDATE t2 SET b=95560 WHERE a=2844; UPDATE t2 SET b=81867 WHERE a=2845; UPDATE t2 SET b=77480 WHERE a=2846; UPDATE t2 SET b=76577 WHERE a=2847; UPDATE t2 SET b=73760 WHERE a=2848; UPDATE t2 SET b=33579 WHERE a=2849; UPDATE t2 SET b=5118 WHERE a=2850; UPDATE t2 SET b=27734 WHERE a=2851; UPDATE t2 SET b=66212 WHERE a=2852; UPDATE t2 SET b=77094 WHERE a=2853; UPDATE t2 SET b=10616 WHERE a=2854; UPDATE t2 SET b=16909 WHERE a=2855; UPDATE t2 SET b=34064 WHERE a=2856; UPDATE t2 SET b=75447 WHERE a=2857; UPDATE t2 SET b=84912 WHERE a=2858; UPDATE t2 SET b=91641 WHERE a=2859; UPDATE t2 SET b=91661 WHERE a=2860; UPDATE t2 SET b=50685 WHERE a=2861; UPDATE t2 SET b=36960 WHERE a=2862; UPDATE t2 SET b=29437 WHERE a=2863; UPDATE t2 SET b=74864 WHERE a=2864; UPDATE t2 SET b=29417 WHERE a=2865; UPDATE t2 SET b=57860 WHERE a=2866; UPDATE t2 SET b=4498 WHERE a=2867; UPDATE t2 SET b=49739 WHERE a=2868; UPDATE t2 SET b=84504 WHERE a=2869; UPDATE t2 SET b=81924 WHERE a=2870; UPDATE t2 SET b=58828 WHERE a=2871; UPDATE t2 SET b=84653 WHERE a=2872; UPDATE t2 SET b=67364 WHERE a=2873; UPDATE t2 SET b=79420 WHERE a=2874; UPDATE t2 SET b=68778 WHERE a=2875; UPDATE t2 SET b=43864 WHERE a=2876; UPDATE t2 SET b=1973 WHERE a=2877; UPDATE t2 SET b=75261 WHERE a=2878; UPDATE t2 SET b=22023 WHERE a=2879; UPDATE t2 SET b=76793 WHERE a=2880; UPDATE t2 SET b=14646 WHERE a=2881; UPDATE t2 SET b=48685 WHERE a=2882; UPDATE t2 SET b=72281 WHERE a=2883; UPDATE t2 SET b=90995 WHERE a=2884; UPDATE t2 SET b=3441 WHERE a=2885; UPDATE t2 SET b=5918 WHERE a=2886; UPDATE t2 SET b=9997 WHERE a=2887; UPDATE t2 SET b=40929 WHERE a=2888; UPDATE t2 SET b=30193 WHERE a=2889; UPDATE t2 SET b=99463 WHERE a=2890; UPDATE t2 SET b=5118 WHERE a=2891; UPDATE t2 SET b=223 WHERE a=2892; UPDATE t2 SET b=43308 WHERE a=2893; UPDATE t2 SET b=79765 WHERE a=2894; UPDATE t2 SET b=25798 WHERE a=2895; UPDATE t2 SET b=16699 WHERE a=2896; UPDATE t2 SET b=81634 WHERE a=2897; UPDATE t2 SET b=59443 WHERE a=2898; UPDATE t2 SET b=2465 WHERE a=2899; UPDATE t2 SET b=34652 WHERE a=2900; UPDATE t2 SET b=67207 WHERE a=2901; UPDATE t2 SET b=87888 WHERE a=2902; UPDATE t2 SET b=44521 WHERE a=2903; UPDATE t2 SET b=86338 WHERE a=2904; UPDATE t2 SET b=35952 WHERE a=2905; UPDATE t2 SET b=19904 WHERE a=2906; UPDATE t2 SET b=24984 WHERE a=2907; UPDATE t2 SET b=39695 WHERE a=2908; UPDATE t2 SET b=59859 WHERE a=2909; UPDATE t2 SET b=31837 WHERE a=2910; UPDATE t2 SET b=29087 WHERE a=2911; UPDATE t2 SET b=94691 WHERE a=2912; UPDATE t2 SET b=70404 WHERE a=2913; UPDATE t2 SET b=80539 WHERE a=2914; UPDATE t2 SET b=29107 WHERE a=2915; UPDATE t2 SET b=64195 WHERE a=2916; UPDATE t2 SET b=35777 WHERE a=2917; UPDATE t2 SET b=81117 WHERE a=2918; UPDATE t2 SET b=55572 WHERE a=2919; UPDATE t2 SET b=83002 WHERE a=2920; UPDATE t2 SET b=85565 WHERE a=2921; UPDATE t2 SET b=99244 WHERE a=2922; UPDATE t2 SET b=38122 WHERE a=2923; UPDATE t2 SET b=90503 WHERE a=2924; UPDATE t2 SET b=144 WHERE a=2925; UPDATE t2 SET b=3101 WHERE a=2926; UPDATE t2 SET b=46888 WHERE a=2927; UPDATE t2 SET b=11222 WHERE a=2928; UPDATE t2 SET b=62821 WHERE a=2929; UPDATE t2 SET b=59961 WHERE a=2930; UPDATE t2 SET b=29398 WHERE a=2931; UPDATE t2 SET b=5946 WHERE a=2932; UPDATE t2 SET b=53789 WHERE a=2933; UPDATE t2 SET b=0 WHERE a=2934; UPDATE t2 SET b=25773 WHERE a=2935; UPDATE t2 SET b=55952 WHERE a=2936; UPDATE t2 SET b=68945 WHERE a=2937; UPDATE t2 SET b=13862 WHERE a=2938; UPDATE t2 SET b=58579 WHERE a=2939; UPDATE t2 SET b=88473 WHERE a=2940; UPDATE t2 SET b=76345 WHERE a=2941; UPDATE t2 SET b=70221 WHERE a=2942; UPDATE t2 SET b=63003 WHERE a=2943; UPDATE t2 SET b=85249 WHERE a=2944; UPDATE t2 SET b=99584 WHERE a=2945; UPDATE t2 SET b=434 WHERE a=2946; UPDATE t2 SET b=46392 WHERE a=2947; UPDATE t2 SET b=2492 WHERE a=2948; UPDATE t2 SET b=34943 WHERE a=2949; UPDATE t2 SET b=37010 WHERE a=2950; UPDATE t2 SET b=17938 WHERE a=2951; UPDATE t2 SET b=11015 WHERE a=2952; UPDATE t2 SET b=18208 WHERE a=2953; UPDATE t2 SET b=88816 WHERE a=2954; UPDATE t2 SET b=64656 WHERE a=2955; UPDATE t2 SET b=84589 WHERE a=2956; UPDATE t2 SET b=86736 WHERE a=2957; UPDATE t2 SET b=58494 WHERE a=2958; UPDATE t2 SET b=526 WHERE a=2959; UPDATE t2 SET b=32884 WHERE a=2960; UPDATE t2 SET b=85672 WHERE a=2961; UPDATE t2 SET b=21576 WHERE a=2962; UPDATE t2 SET b=71142 WHERE a=2963; UPDATE t2 SET b=94169 WHERE a=2964; UPDATE t2 SET b=90760 WHERE a=2965; UPDATE t2 SET b=18769 WHERE a=2966; UPDATE t2 SET b=54197 WHERE a=2967; UPDATE t2 SET b=33740 WHERE a=2968; UPDATE t2 SET b=25115 WHERE a=2969; UPDATE t2 SET b=9804 WHERE a=2970; UPDATE t2 SET b=44355 WHERE a=2971; UPDATE t2 SET b=94920 WHERE a=2972; UPDATE t2 SET b=61041 WHERE a=2973; UPDATE t2 SET b=43771 WHERE a=2974; UPDATE t2 SET b=63350 WHERE a=2975; UPDATE t2 SET b=60873 WHERE a=2976; UPDATE t2 SET b=69796 WHERE a=2977; UPDATE t2 SET b=66123 WHERE a=2978; UPDATE t2 SET b=26007 WHERE a=2979; UPDATE t2 SET b=10747 WHERE a=2980; UPDATE t2 SET b=18735 WHERE a=2981; UPDATE t2 SET b=78801 WHERE a=2982; UPDATE t2 SET b=87142 WHERE a=2983; UPDATE t2 SET b=28885 WHERE a=2984; UPDATE t2 SET b=3424 WHERE a=2985; UPDATE t2 SET b=2244 WHERE a=2986; UPDATE t2 SET b=80723 WHERE a=2987; UPDATE t2 SET b=62070 WHERE a=2988; UPDATE t2 SET b=40707 WHERE a=2989; UPDATE t2 SET b=64918 WHERE a=2990; UPDATE t2 SET b=33745 WHERE a=2991; UPDATE t2 SET b=40997 WHERE a=2992; UPDATE t2 SET b=75669 WHERE a=2993; UPDATE t2 SET b=686 WHERE a=2994; UPDATE t2 SET b=84540 WHERE a=2995; UPDATE t2 SET b=70861 WHERE a=2996; UPDATE t2 SET b=26745 WHERE a=2997; UPDATE t2 SET b=30457 WHERE a=2998; UPDATE t2 SET b=42619 WHERE a=2999; UPDATE t2 SET b=82299 WHERE a=3000; UPDATE t2 SET b=83333 WHERE a=3001; UPDATE t2 SET b=42220 WHERE a=3002; UPDATE t2 SET b=47960 WHERE a=3003; UPDATE t2 SET b=48944 WHERE a=3004; UPDATE t2 SET b=34384 WHERE a=3005; UPDATE t2 SET b=64993 WHERE a=3006; UPDATE t2 SET b=5993 WHERE a=3007; UPDATE t2 SET b=11352 WHERE a=3008; UPDATE t2 SET b=58988 WHERE a=3009; UPDATE t2 SET b=7343 WHERE a=3010; UPDATE t2 SET b=77925 WHERE a=3011; UPDATE t2 SET b=98214 WHERE a=3012; UPDATE t2 SET b=30171 WHERE a=3013; UPDATE t2 SET b=2361 WHERE a=3014; UPDATE t2 SET b=88714 WHERE a=3015; UPDATE t2 SET b=11922 WHERE a=3016; UPDATE t2 SET b=84151 WHERE a=3017; UPDATE t2 SET b=6231 WHERE a=3018; UPDATE t2 SET b=70765 WHERE a=3019; UPDATE t2 SET b=73510 WHERE a=3020; UPDATE t2 SET b=61448 WHERE a=3021; UPDATE t2 SET b=44154 WHERE a=3022; UPDATE t2 SET b=74495 WHERE a=3023; UPDATE t2 SET b=43527 WHERE a=3024; UPDATE t2 SET b=37049 WHERE a=3025; UPDATE t2 SET b=85655 WHERE a=3026; UPDATE t2 SET b=87214 WHERE a=3027; UPDATE t2 SET b=34125 WHERE a=3028; UPDATE t2 SET b=56764 WHERE a=3029; UPDATE t2 SET b=37316 WHERE a=3030; UPDATE t2 SET b=2105 WHERE a=3031; UPDATE t2 SET b=26954 WHERE a=3032; UPDATE t2 SET b=84144 WHERE a=3033; UPDATE t2 SET b=96574 WHERE a=3034; UPDATE t2 SET b=63545 WHERE a=3035; UPDATE t2 SET b=72005 WHERE a=3036; UPDATE t2 SET b=6193 WHERE a=3037; UPDATE t2 SET b=24507 WHERE a=3038; UPDATE t2 SET b=56219 WHERE a=3039; UPDATE t2 SET b=24793 WHERE a=3040; UPDATE t2 SET b=40696 WHERE a=3041; UPDATE t2 SET b=81224 WHERE a=3042; UPDATE t2 SET b=24821 WHERE a=3043; UPDATE t2 SET b=61112 WHERE a=3044; UPDATE t2 SET b=74770 WHERE a=3045; UPDATE t2 SET b=32834 WHERE a=3046; UPDATE t2 SET b=48644 WHERE a=3047; UPDATE t2 SET b=62811 WHERE a=3048; UPDATE t2 SET b=75150 WHERE a=3049; UPDATE t2 SET b=23274 WHERE a=3050; UPDATE t2 SET b=47553 WHERE a=3051; UPDATE t2 SET b=14433 WHERE a=3052; UPDATE t2 SET b=49919 WHERE a=3053; UPDATE t2 SET b=99161 WHERE a=3054; UPDATE t2 SET b=10638 WHERE a=3055; UPDATE t2 SET b=22442 WHERE a=3056; UPDATE t2 SET b=55039 WHERE a=3057; UPDATE t2 SET b=72656 WHERE a=3058; UPDATE t2 SET b=86681 WHERE a=3059; UPDATE t2 SET b=13116 WHERE a=3060; UPDATE t2 SET b=3540 WHERE a=3061; UPDATE t2 SET b=28940 WHERE a=3062; UPDATE t2 SET b=42561 WHERE a=3063; UPDATE t2 SET b=70094 WHERE a=3064; UPDATE t2 SET b=52246 WHERE a=3065; UPDATE t2 SET b=27726 WHERE a=3066; UPDATE t2 SET b=29144 WHERE a=3067; UPDATE t2 SET b=82914 WHERE a=3068; UPDATE t2 SET b=87556 WHERE a=3069; UPDATE t2 SET b=2177 WHERE a=3070; UPDATE t2 SET b=97283 WHERE a=3071; UPDATE t2 SET b=81946 WHERE a=3072; UPDATE t2 SET b=8555 WHERE a=3073; UPDATE t2 SET b=81696 WHERE a=3074; UPDATE t2 SET b=16955 WHERE a=3075; UPDATE t2 SET b=40755 WHERE a=3076; UPDATE t2 SET b=35702 WHERE a=3077; UPDATE t2 SET b=10720 WHERE a=3078; UPDATE t2 SET b=59236 WHERE a=3079; UPDATE t2 SET b=14701 WHERE a=3080; UPDATE t2 SET b=91786 WHERE a=3081; UPDATE t2 SET b=78011 WHERE a=3082; UPDATE t2 SET b=36540 WHERE a=3083; UPDATE t2 SET b=17359 WHERE a=3084; UPDATE t2 SET b=7731 WHERE a=3085; UPDATE t2 SET b=3650 WHERE a=3086; UPDATE t2 SET b=81042 WHERE a=3087; UPDATE t2 SET b=23382 WHERE a=3088; UPDATE t2 SET b=14686 WHERE a=3089; UPDATE t2 SET b=67007 WHERE a=3090; UPDATE t2 SET b=64014 WHERE a=3091; UPDATE t2 SET b=91917 WHERE a=3092; UPDATE t2 SET b=78377 WHERE a=3093; UPDATE t2 SET b=65183 WHERE a=3094; UPDATE t2 SET b=76433 WHERE a=3095; UPDATE t2 SET b=51317 WHERE a=3096; UPDATE t2 SET b=11411 WHERE a=3097; UPDATE t2 SET b=28063 WHERE a=3098; UPDATE t2 SET b=25200 WHERE a=3099; UPDATE t2 SET b=57363 WHERE a=3100; UPDATE t2 SET b=5443 WHERE a=3101; UPDATE t2 SET b=44771 WHERE a=3102; UPDATE t2 SET b=87884 WHERE a=3103; UPDATE t2 SET b=4863 WHERE a=3104; UPDATE t2 SET b=77865 WHERE a=3105; UPDATE t2 SET b=81153 WHERE a=3106; UPDATE t2 SET b=8651 WHERE a=3107; UPDATE t2 SET b=3050 WHERE a=3108; UPDATE t2 SET b=95916 WHERE a=3109; UPDATE t2 SET b=91500 WHERE a=3110; UPDATE t2 SET b=22532 WHERE a=3111; UPDATE t2 SET b=861 WHERE a=3112; UPDATE t2 SET b=51815 WHERE a=3113; UPDATE t2 SET b=33854 WHERE a=3114; UPDATE t2 SET b=33433 WHERE a=3115; UPDATE t2 SET b=57283 WHERE a=3116; UPDATE t2 SET b=6732 WHERE a=3117; UPDATE t2 SET b=73827 WHERE a=3118; UPDATE t2 SET b=13157 WHERE a=3119; UPDATE t2 SET b=33728 WHERE a=3120; UPDATE t2 SET b=42987 WHERE a=3121; UPDATE t2 SET b=33448 WHERE a=3122; UPDATE t2 SET b=50407 WHERE a=3123; UPDATE t2 SET b=38785 WHERE a=3124; UPDATE t2 SET b=79836 WHERE a=3125; UPDATE t2 SET b=81126 WHERE a=3126; UPDATE t2 SET b=35954 WHERE a=3127; UPDATE t2 SET b=73464 WHERE a=3128; UPDATE t2 SET b=35793 WHERE a=3129; UPDATE t2 SET b=18941 WHERE a=3130; UPDATE t2 SET b=52770 WHERE a=3131; UPDATE t2 SET b=97418 WHERE a=3132; UPDATE t2 SET b=59637 WHERE a=3133; UPDATE t2 SET b=27549 WHERE a=3134; UPDATE t2 SET b=84220 WHERE a=3135; UPDATE t2 SET b=90069 WHERE a=3136; UPDATE t2 SET b=22402 WHERE a=3137; UPDATE t2 SET b=63737 WHERE a=3138; UPDATE t2 SET b=92189 WHERE a=3139; UPDATE t2 SET b=88325 WHERE a=3140; UPDATE t2 SET b=60523 WHERE a=3141; UPDATE t2 SET b=57992 WHERE a=3142; UPDATE t2 SET b=84052 WHERE a=3143; UPDATE t2 SET b=6014 WHERE a=3144; UPDATE t2 SET b=30880 WHERE a=3145; UPDATE t2 SET b=36910 WHERE a=3146; UPDATE t2 SET b=51506 WHERE a=3147; UPDATE t2 SET b=20017 WHERE a=3148; UPDATE t2 SET b=72182 WHERE a=3149; UPDATE t2 SET b=1577 WHERE a=3150; UPDATE t2 SET b=55630 WHERE a=3151; UPDATE t2 SET b=50244 WHERE a=3152; UPDATE t2 SET b=44135 WHERE a=3153; UPDATE t2 SET b=61457 WHERE a=3154; UPDATE t2 SET b=90772 WHERE a=3155; UPDATE t2 SET b=33279 WHERE a=3156; UPDATE t2 SET b=85242 WHERE a=3157; UPDATE t2 SET b=43318 WHERE a=3158; UPDATE t2 SET b=96715 WHERE a=3159; UPDATE t2 SET b=1439 WHERE a=3160; UPDATE t2 SET b=68319 WHERE a=3161; UPDATE t2 SET b=20625 WHERE a=3162; UPDATE t2 SET b=55472 WHERE a=3163; UPDATE t2 SET b=15748 WHERE a=3164; UPDATE t2 SET b=28842 WHERE a=3165; UPDATE t2 SET b=8837 WHERE a=3166; UPDATE t2 SET b=94861 WHERE a=3167; UPDATE t2 SET b=79792 WHERE a=3168; UPDATE t2 SET b=45625 WHERE a=3169; UPDATE t2 SET b=36338 WHERE a=3170; UPDATE t2 SET b=12261 WHERE a=3171; UPDATE t2 SET b=27374 WHERE a=3172; UPDATE t2 SET b=55237 WHERE a=3173; UPDATE t2 SET b=56050 WHERE a=3174; UPDATE t2 SET b=50016 WHERE a=3175; UPDATE t2 SET b=82253 WHERE a=3176; UPDATE t2 SET b=38335 WHERE a=3177; UPDATE t2 SET b=58204 WHERE a=3178; UPDATE t2 SET b=31306 WHERE a=3179; UPDATE t2 SET b=62336 WHERE a=3180; UPDATE t2 SET b=9423 WHERE a=3181; UPDATE t2 SET b=71792 WHERE a=3182; UPDATE t2 SET b=39464 WHERE a=3183; UPDATE t2 SET b=33133 WHERE a=3184; UPDATE t2 SET b=83825 WHERE a=3185; UPDATE t2 SET b=25281 WHERE a=3186; UPDATE t2 SET b=60003 WHERE a=3187; UPDATE t2 SET b=30408 WHERE a=3188; UPDATE t2 SET b=65324 WHERE a=3189; UPDATE t2 SET b=39222 WHERE a=3190; UPDATE t2 SET b=65242 WHERE a=3191; UPDATE t2 SET b=18427 WHERE a=3192; UPDATE t2 SET b=95947 WHERE a=3193; UPDATE t2 SET b=74013 WHERE a=3194; UPDATE t2 SET b=30668 WHERE a=3195; UPDATE t2 SET b=5899 WHERE a=3196; UPDATE t2 SET b=82472 WHERE a=3197; UPDATE t2 SET b=67213 WHERE a=3198; UPDATE t2 SET b=93795 WHERE a=3199; UPDATE t2 SET b=53023 WHERE a=3200; UPDATE t2 SET b=85894 WHERE a=3201; UPDATE t2 SET b=36484 WHERE a=3202; UPDATE t2 SET b=90838 WHERE a=3203; UPDATE t2 SET b=7000 WHERE a=3204; UPDATE t2 SET b=21820 WHERE a=3205; UPDATE t2 SET b=67851 WHERE a=3206; UPDATE t2 SET b=95761 WHERE a=3207; UPDATE t2 SET b=19567 WHERE a=3208; UPDATE t2 SET b=80859 WHERE a=3209; UPDATE t2 SET b=20562 WHERE a=3210; UPDATE t2 SET b=51045 WHERE a=3211; UPDATE t2 SET b=23577 WHERE a=3212; UPDATE t2 SET b=84807 WHERE a=3213; UPDATE t2 SET b=72577 WHERE a=3214; UPDATE t2 SET b=55666 WHERE a=3215; UPDATE t2 SET b=1249 WHERE a=3216; UPDATE t2 SET b=79041 WHERE a=3217; UPDATE t2 SET b=99714 WHERE a=3218; UPDATE t2 SET b=65831 WHERE a=3219; UPDATE t2 SET b=31021 WHERE a=3220; UPDATE t2 SET b=59227 WHERE a=3221; UPDATE t2 SET b=32857 WHERE a=3222; UPDATE t2 SET b=78414 WHERE a=3223; UPDATE t2 SET b=18719 WHERE a=3224; UPDATE t2 SET b=64144 WHERE a=3225; UPDATE t2 SET b=8110 WHERE a=3226; UPDATE t2 SET b=7217 WHERE a=3227; UPDATE t2 SET b=70925 WHERE a=3228; UPDATE t2 SET b=79545 WHERE a=3229; UPDATE t2 SET b=85823 WHERE a=3230; UPDATE t2 SET b=98242 WHERE a=3231; UPDATE t2 SET b=73079 WHERE a=3232; UPDATE t2 SET b=31207 WHERE a=3233; UPDATE t2 SET b=35311 WHERE a=3234; UPDATE t2 SET b=50663 WHERE a=3235; UPDATE t2 SET b=82693 WHERE a=3236; UPDATE t2 SET b=75643 WHERE a=3237; UPDATE t2 SET b=32142 WHERE a=3238; UPDATE t2 SET b=62226 WHERE a=3239; UPDATE t2 SET b=22024 WHERE a=3240; UPDATE t2 SET b=3599 WHERE a=3241; UPDATE t2 SET b=85986 WHERE a=3242; UPDATE t2 SET b=38217 WHERE a=3243; UPDATE t2 SET b=30315 WHERE a=3244; UPDATE t2 SET b=81734 WHERE a=3245; UPDATE t2 SET b=646 WHERE a=3246; UPDATE t2 SET b=56437 WHERE a=3247; UPDATE t2 SET b=80124 WHERE a=3248; UPDATE t2 SET b=55766 WHERE a=3249; UPDATE t2 SET b=3274 WHERE a=3250; UPDATE t2 SET b=37057 WHERE a=3251; UPDATE t2 SET b=16745 WHERE a=3252; UPDATE t2 SET b=92652 WHERE a=3253; UPDATE t2 SET b=45038 WHERE a=3254; UPDATE t2 SET b=67415 WHERE a=3255; UPDATE t2 SET b=29980 WHERE a=3256; UPDATE t2 SET b=94004 WHERE a=3257; UPDATE t2 SET b=4252 WHERE a=3258; UPDATE t2 SET b=28709 WHERE a=3259; UPDATE t2 SET b=57427 WHERE a=3260; UPDATE t2 SET b=95625 WHERE a=3261; UPDATE t2 SET b=95697 WHERE a=3262; UPDATE t2 SET b=86344 WHERE a=3263; UPDATE t2 SET b=54993 WHERE a=3264; UPDATE t2 SET b=14115 WHERE a=3265; UPDATE t2 SET b=31726 WHERE a=3266; UPDATE t2 SET b=81962 WHERE a=3267; UPDATE t2 SET b=58514 WHERE a=3268; UPDATE t2 SET b=44791 WHERE a=3269; UPDATE t2 SET b=36673 WHERE a=3270; UPDATE t2 SET b=36106 WHERE a=3271; UPDATE t2 SET b=79511 WHERE a=3272; UPDATE t2 SET b=56699 WHERE a=3273; UPDATE t2 SET b=17745 WHERE a=3274; UPDATE t2 SET b=15641 WHERE a=3275; UPDATE t2 SET b=18479 WHERE a=3276; UPDATE t2 SET b=60652 WHERE a=3277; UPDATE t2 SET b=81138 WHERE a=3278; UPDATE t2 SET b=85435 WHERE a=3279; UPDATE t2 SET b=56771 WHERE a=3280; UPDATE t2 SET b=3796 WHERE a=3281; UPDATE t2 SET b=61540 WHERE a=3282; UPDATE t2 SET b=89765 WHERE a=3283; UPDATE t2 SET b=4712 WHERE a=3284; UPDATE t2 SET b=70227 WHERE a=3285; UPDATE t2 SET b=32819 WHERE a=3286; UPDATE t2 SET b=76889 WHERE a=3287; UPDATE t2 SET b=80375 WHERE a=3288; UPDATE t2 SET b=64611 WHERE a=3289; UPDATE t2 SET b=32431 WHERE a=3290; UPDATE t2 SET b=47612 WHERE a=3291; UPDATE t2 SET b=48890 WHERE a=3292; UPDATE t2 SET b=31547 WHERE a=3293; UPDATE t2 SET b=98177 WHERE a=3294; UPDATE t2 SET b=40540 WHERE a=3295; UPDATE t2 SET b=56491 WHERE a=3296; UPDATE t2 SET b=13495 WHERE a=3297; UPDATE t2 SET b=20932 WHERE a=3298; UPDATE t2 SET b=17136 WHERE a=3299; UPDATE t2 SET b=31243 WHERE a=3300; UPDATE t2 SET b=3278 WHERE a=3301; UPDATE t2 SET b=90574 WHERE a=3302; UPDATE t2 SET b=77954 WHERE a=3303; UPDATE t2 SET b=14030 WHERE a=3304; UPDATE t2 SET b=57367 WHERE a=3305; UPDATE t2 SET b=4983 WHERE a=3306; UPDATE t2 SET b=61872 WHERE a=3307; UPDATE t2 SET b=53373 WHERE a=3308; UPDATE t2 SET b=37733 WHERE a=3309; UPDATE t2 SET b=16695 WHERE a=3310; UPDATE t2 SET b=12209 WHERE a=3311; UPDATE t2 SET b=9834 WHERE a=3312; UPDATE t2 SET b=29546 WHERE a=3313; UPDATE t2 SET b=66246 WHERE a=3314; UPDATE t2 SET b=85448 WHERE a=3315; UPDATE t2 SET b=10670 WHERE a=3316; UPDATE t2 SET b=13866 WHERE a=3317; UPDATE t2 SET b=82129 WHERE a=3318; UPDATE t2 SET b=78787 WHERE a=3319; UPDATE t2 SET b=71269 WHERE a=3320; UPDATE t2 SET b=76623 WHERE a=3321; UPDATE t2 SET b=36267 WHERE a=3322; UPDATE t2 SET b=67663 WHERE a=3323; UPDATE t2 SET b=4122 WHERE a=3324; UPDATE t2 SET b=11683 WHERE a=3325; UPDATE t2 SET b=51689 WHERE a=3326; UPDATE t2 SET b=42746 WHERE a=3327; UPDATE t2 SET b=14310 WHERE a=3328; UPDATE t2 SET b=5077 WHERE a=3329; UPDATE t2 SET b=75291 WHERE a=3330; UPDATE t2 SET b=54244 WHERE a=3331; UPDATE t2 SET b=53463 WHERE a=3332; UPDATE t2 SET b=64505 WHERE a=3333; UPDATE t2 SET b=22196 WHERE a=3334; UPDATE t2 SET b=94372 WHERE a=3335; UPDATE t2 SET b=55161 WHERE a=3336; UPDATE t2 SET b=97801 WHERE a=3337; UPDATE t2 SET b=97196 WHERE a=3338; UPDATE t2 SET b=86248 WHERE a=3339; UPDATE t2 SET b=58313 WHERE a=3340; UPDATE t2 SET b=36126 WHERE a=3341; UPDATE t2 SET b=60240 WHERE a=3342; UPDATE t2 SET b=46257 WHERE a=3343; UPDATE t2 SET b=87476 WHERE a=3344; UPDATE t2 SET b=28190 WHERE a=3345; UPDATE t2 SET b=8035 WHERE a=3346; UPDATE t2 SET b=25486 WHERE a=3347; UPDATE t2 SET b=27361 WHERE a=3348; UPDATE t2 SET b=34675 WHERE a=3349; UPDATE t2 SET b=22550 WHERE a=3350; UPDATE t2 SET b=53839 WHERE a=3351; UPDATE t2 SET b=39578 WHERE a=3352; UPDATE t2 SET b=21220 WHERE a=3353; UPDATE t2 SET b=62471 WHERE a=3354; UPDATE t2 SET b=99636 WHERE a=3355; UPDATE t2 SET b=28459 WHERE a=3356; UPDATE t2 SET b=96065 WHERE a=3357; UPDATE t2 SET b=6552 WHERE a=3358; UPDATE t2 SET b=64982 WHERE a=3359; UPDATE t2 SET b=46850 WHERE a=3360; UPDATE t2 SET b=90420 WHERE a=3361; UPDATE t2 SET b=48602 WHERE a=3362; UPDATE t2 SET b=17474 WHERE a=3363; UPDATE t2 SET b=88190 WHERE a=3364; UPDATE t2 SET b=37182 WHERE a=3365; UPDATE t2 SET b=27969 WHERE a=3366; UPDATE t2 SET b=99639 WHERE a=3367; UPDATE t2 SET b=58211 WHERE a=3368; UPDATE t2 SET b=21256 WHERE a=3369; UPDATE t2 SET b=45467 WHERE a=3370; UPDATE t2 SET b=65898 WHERE a=3371; UPDATE t2 SET b=50276 WHERE a=3372; UPDATE t2 SET b=5201 WHERE a=3373; UPDATE t2 SET b=59064 WHERE a=3374; UPDATE t2 SET b=62270 WHERE a=3375; UPDATE t2 SET b=91505 WHERE a=3376; UPDATE t2 SET b=45185 WHERE a=3377; UPDATE t2 SET b=34384 WHERE a=3378; UPDATE t2 SET b=76835 WHERE a=3379; UPDATE t2 SET b=42203 WHERE a=3380; UPDATE t2 SET b=49320 WHERE a=3381; UPDATE t2 SET b=86272 WHERE a=3382; UPDATE t2 SET b=65391 WHERE a=3383; UPDATE t2 SET b=45656 WHERE a=3384; UPDATE t2 SET b=67054 WHERE a=3385; UPDATE t2 SET b=57836 WHERE a=3386; UPDATE t2 SET b=83580 WHERE a=3387; UPDATE t2 SET b=88977 WHERE a=3388; UPDATE t2 SET b=66649 WHERE a=3389; UPDATE t2 SET b=28802 WHERE a=3390; UPDATE t2 SET b=11473 WHERE a=3391; UPDATE t2 SET b=16644 WHERE a=3392; UPDATE t2 SET b=41580 WHERE a=3393; UPDATE t2 SET b=18364 WHERE a=3394; UPDATE t2 SET b=29258 WHERE a=3395; UPDATE t2 SET b=695 WHERE a=3396; UPDATE t2 SET b=36045 WHERE a=3397; UPDATE t2 SET b=27811 WHERE a=3398; UPDATE t2 SET b=96361 WHERE a=3399; UPDATE t2 SET b=26403 WHERE a=3400; UPDATE t2 SET b=91254 WHERE a=3401; UPDATE t2 SET b=14549 WHERE a=3402; UPDATE t2 SET b=53101 WHERE a=3403; UPDATE t2 SET b=52350 WHERE a=3404; UPDATE t2 SET b=4235 WHERE a=3405; UPDATE t2 SET b=48322 WHERE a=3406; UPDATE t2 SET b=66617 WHERE a=3407; UPDATE t2 SET b=87005 WHERE a=3408; UPDATE t2 SET b=84830 WHERE a=3409; UPDATE t2 SET b=69146 WHERE a=3410; UPDATE t2 SET b=6336 WHERE a=3411; UPDATE t2 SET b=46356 WHERE a=3412; UPDATE t2 SET b=65650 WHERE a=3413; UPDATE t2 SET b=10183 WHERE a=3414; UPDATE t2 SET b=45761 WHERE a=3415; UPDATE t2 SET b=82245 WHERE a=3416; UPDATE t2 SET b=23702 WHERE a=3417; UPDATE t2 SET b=18677 WHERE a=3418; UPDATE t2 SET b=26042 WHERE a=3419; UPDATE t2 SET b=89821 WHERE a=3420; UPDATE t2 SET b=62143 WHERE a=3421; UPDATE t2 SET b=24612 WHERE a=3422; UPDATE t2 SET b=91689 WHERE a=3423; UPDATE t2 SET b=92255 WHERE a=3424; UPDATE t2 SET b=112 WHERE a=3425; UPDATE t2 SET b=639 WHERE a=3426; UPDATE t2 SET b=95454 WHERE a=3427; UPDATE t2 SET b=97834 WHERE a=3428; UPDATE t2 SET b=56314 WHERE a=3429; UPDATE t2 SET b=59548 WHERE a=3430; UPDATE t2 SET b=75216 WHERE a=3431; UPDATE t2 SET b=40281 WHERE a=3432; UPDATE t2 SET b=48058 WHERE a=3433; UPDATE t2 SET b=10581 WHERE a=3434; UPDATE t2 SET b=36550 WHERE a=3435; UPDATE t2 SET b=76606 WHERE a=3436; UPDATE t2 SET b=66683 WHERE a=3437; UPDATE t2 SET b=56053 WHERE a=3438; UPDATE t2 SET b=36609 WHERE a=3439; UPDATE t2 SET b=68735 WHERE a=3440; UPDATE t2 SET b=76309 WHERE a=3441; UPDATE t2 SET b=95270 WHERE a=3442; UPDATE t2 SET b=37475 WHERE a=3443; UPDATE t2 SET b=29793 WHERE a=3444; UPDATE t2 SET b=90396 WHERE a=3445; UPDATE t2 SET b=11852 WHERE a=3446; UPDATE t2 SET b=78244 WHERE a=3447; UPDATE t2 SET b=68948 WHERE a=3448; UPDATE t2 SET b=81810 WHERE a=3449; UPDATE t2 SET b=42891 WHERE a=3450; UPDATE t2 SET b=38857 WHERE a=3451; UPDATE t2 SET b=31560 WHERE a=3452; UPDATE t2 SET b=4925 WHERE a=3453; UPDATE t2 SET b=82490 WHERE a=3454; UPDATE t2 SET b=55542 WHERE a=3455; UPDATE t2 SET b=56988 WHERE a=3456; UPDATE t2 SET b=77412 WHERE a=3457; UPDATE t2 SET b=94031 WHERE a=3458; UPDATE t2 SET b=57164 WHERE a=3459; UPDATE t2 SET b=66755 WHERE a=3460; UPDATE t2 SET b=33513 WHERE a=3461; UPDATE t2 SET b=98722 WHERE a=3462; UPDATE t2 SET b=72383 WHERE a=3463; UPDATE t2 SET b=32180 WHERE a=3464; UPDATE t2 SET b=94012 WHERE a=3465; UPDATE t2 SET b=91288 WHERE a=3466; UPDATE t2 SET b=414 WHERE a=3467; UPDATE t2 SET b=65484 WHERE a=3468; UPDATE t2 SET b=86670 WHERE a=3469; UPDATE t2 SET b=73467 WHERE a=3470; UPDATE t2 SET b=45361 WHERE a=3471; UPDATE t2 SET b=11078 WHERE a=3472; UPDATE t2 SET b=77917 WHERE a=3473; UPDATE t2 SET b=41661 WHERE a=3474; UPDATE t2 SET b=93666 WHERE a=3475; UPDATE t2 SET b=14863 WHERE a=3476; UPDATE t2 SET b=79768 WHERE a=3477; UPDATE t2 SET b=97765 WHERE a=3478; UPDATE t2 SET b=68679 WHERE a=3479; UPDATE t2 SET b=38741 WHERE a=3480; UPDATE t2 SET b=68766 WHERE a=3481; UPDATE t2 SET b=2827 WHERE a=3482; UPDATE t2 SET b=58472 WHERE a=3483; UPDATE t2 SET b=88795 WHERE a=3484; UPDATE t2 SET b=33260 WHERE a=3485; UPDATE t2 SET b=78687 WHERE a=3486; UPDATE t2 SET b=89905 WHERE a=3487; UPDATE t2 SET b=59315 WHERE a=3488; UPDATE t2 SET b=68449 WHERE a=3489; UPDATE t2 SET b=84861 WHERE a=3490; UPDATE t2 SET b=62250 WHERE a=3491; UPDATE t2 SET b=40042 WHERE a=3492; UPDATE t2 SET b=56527 WHERE a=3493; UPDATE t2 SET b=43795 WHERE a=3494; UPDATE t2 SET b=85328 WHERE a=3495; UPDATE t2 SET b=53297 WHERE a=3496; UPDATE t2 SET b=60894 WHERE a=3497; UPDATE t2 SET b=37829 WHERE a=3498; UPDATE t2 SET b=95877 WHERE a=3499; UPDATE t2 SET b=30905 WHERE a=3500; UPDATE t2 SET b=48028 WHERE a=3501; UPDATE t2 SET b=8737 WHERE a=3502; UPDATE t2 SET b=69232 WHERE a=3503; UPDATE t2 SET b=83037 WHERE a=3504; UPDATE t2 SET b=17260 WHERE a=3505; UPDATE t2 SET b=90517 WHERE a=3506; UPDATE t2 SET b=88284 WHERE a=3507; UPDATE t2 SET b=61296 WHERE a=3508; UPDATE t2 SET b=95133 WHERE a=3509; UPDATE t2 SET b=28741 WHERE a=3510; UPDATE t2 SET b=86272 WHERE a=3511; UPDATE t2 SET b=49074 WHERE a=3512; UPDATE t2 SET b=25332 WHERE a=3513; UPDATE t2 SET b=13472 WHERE a=3514; UPDATE t2 SET b=30677 WHERE a=3515; UPDATE t2 SET b=87338 WHERE a=3516; UPDATE t2 SET b=7700 WHERE a=3517; UPDATE t2 SET b=56126 WHERE a=3518; UPDATE t2 SET b=9201 WHERE a=3519; UPDATE t2 SET b=92411 WHERE a=3520; UPDATE t2 SET b=58419 WHERE a=3521; UPDATE t2 SET b=9098 WHERE a=3522; UPDATE t2 SET b=45066 WHERE a=3523; UPDATE t2 SET b=24792 WHERE a=3524; UPDATE t2 SET b=15015 WHERE a=3525; UPDATE t2 SET b=81386 WHERE a=3526; UPDATE t2 SET b=72293 WHERE a=3527; UPDATE t2 SET b=66922 WHERE a=3528; UPDATE t2 SET b=4376 WHERE a=3529; UPDATE t2 SET b=5016 WHERE a=3530; UPDATE t2 SET b=61928 WHERE a=3531; UPDATE t2 SET b=37200 WHERE a=3532; UPDATE t2 SET b=20578 WHERE a=3533; UPDATE t2 SET b=35259 WHERE a=3534; UPDATE t2 SET b=77055 WHERE a=3535; UPDATE t2 SET b=18728 WHERE a=3536; UPDATE t2 SET b=97497 WHERE a=3537; UPDATE t2 SET b=36500 WHERE a=3538; UPDATE t2 SET b=59490 WHERE a=3539; UPDATE t2 SET b=40885 WHERE a=3540; UPDATE t2 SET b=54428 WHERE a=3541; UPDATE t2 SET b=57468 WHERE a=3542; UPDATE t2 SET b=28385 WHERE a=3543; UPDATE t2 SET b=36764 WHERE a=3544; UPDATE t2 SET b=50293 WHERE a=3545; UPDATE t2 SET b=93887 WHERE a=3546; UPDATE t2 SET b=43208 WHERE a=3547; UPDATE t2 SET b=41508 WHERE a=3548; UPDATE t2 SET b=14016 WHERE a=3549; UPDATE t2 SET b=74195 WHERE a=3550; UPDATE t2 SET b=21956 WHERE a=3551; UPDATE t2 SET b=73949 WHERE a=3552; UPDATE t2 SET b=40514 WHERE a=3553; UPDATE t2 SET b=6170 WHERE a=3554; UPDATE t2 SET b=34329 WHERE a=3555; UPDATE t2 SET b=69806 WHERE a=3556; UPDATE t2 SET b=66713 WHERE a=3557; UPDATE t2 SET b=65302 WHERE a=3558; UPDATE t2 SET b=72779 WHERE a=3559; UPDATE t2 SET b=60445 WHERE a=3560; UPDATE t2 SET b=85909 WHERE a=3561; UPDATE t2 SET b=27835 WHERE a=3562; UPDATE t2 SET b=83110 WHERE a=3563; UPDATE t2 SET b=76340 WHERE a=3564; UPDATE t2 SET b=27456 WHERE a=3565; UPDATE t2 SET b=68188 WHERE a=3566; UPDATE t2 SET b=62902 WHERE a=3567; UPDATE t2 SET b=41950 WHERE a=3568; UPDATE t2 SET b=49055 WHERE a=3569; UPDATE t2 SET b=76590 WHERE a=3570; UPDATE t2 SET b=33120 WHERE a=3571; UPDATE t2 SET b=74545 WHERE a=3572; UPDATE t2 SET b=89351 WHERE a=3573; UPDATE t2 SET b=80889 WHERE a=3574; UPDATE t2 SET b=23129 WHERE a=3575; UPDATE t2 SET b=9307 WHERE a=3576; UPDATE t2 SET b=39593 WHERE a=3577; UPDATE t2 SET b=63216 WHERE a=3578; UPDATE t2 SET b=58901 WHERE a=3579; UPDATE t2 SET b=24590 WHERE a=3580; UPDATE t2 SET b=92288 WHERE a=3581; UPDATE t2 SET b=7015 WHERE a=3582; UPDATE t2 SET b=69923 WHERE a=3583; UPDATE t2 SET b=21248 WHERE a=3584; UPDATE t2 SET b=21642 WHERE a=3585; UPDATE t2 SET b=50733 WHERE a=3586; UPDATE t2 SET b=22977 WHERE a=3587; UPDATE t2 SET b=60881 WHERE a=3588; UPDATE t2 SET b=71155 WHERE a=3589; UPDATE t2 SET b=15846 WHERE a=3590; UPDATE t2 SET b=39916 WHERE a=3591; UPDATE t2 SET b=92496 WHERE a=3592; UPDATE t2 SET b=89363 WHERE a=3593; UPDATE t2 SET b=44513 WHERE a=3594; UPDATE t2 SET b=68798 WHERE a=3595; UPDATE t2 SET b=98990 WHERE a=3596; UPDATE t2 SET b=5247 WHERE a=3597; UPDATE t2 SET b=5644 WHERE a=3598; UPDATE t2 SET b=44625 WHERE a=3599; UPDATE t2 SET b=89126 WHERE a=3600; UPDATE t2 SET b=99172 WHERE a=3601; UPDATE t2 SET b=64652 WHERE a=3602; UPDATE t2 SET b=44461 WHERE a=3603; UPDATE t2 SET b=80461 WHERE a=3604; UPDATE t2 SET b=14373 WHERE a=3605; UPDATE t2 SET b=12371 WHERE a=3606; UPDATE t2 SET b=71528 WHERE a=3607; UPDATE t2 SET b=20826 WHERE a=3608; UPDATE t2 SET b=60780 WHERE a=3609; UPDATE t2 SET b=98456 WHERE a=3610; UPDATE t2 SET b=88534 WHERE a=3611; UPDATE t2 SET b=1398 WHERE a=3612; UPDATE t2 SET b=64431 WHERE a=3613; UPDATE t2 SET b=21271 WHERE a=3614; UPDATE t2 SET b=82641 WHERE a=3615; UPDATE t2 SET b=14263 WHERE a=3616; UPDATE t2 SET b=98792 WHERE a=3617; UPDATE t2 SET b=96588 WHERE a=3618; UPDATE t2 SET b=58097 WHERE a=3619; UPDATE t2 SET b=75720 WHERE a=3620; UPDATE t2 SET b=40415 WHERE a=3621; UPDATE t2 SET b=20859 WHERE a=3622; UPDATE t2 SET b=72084 WHERE a=3623; UPDATE t2 SET b=47736 WHERE a=3624; UPDATE t2 SET b=93202 WHERE a=3625; UPDATE t2 SET b=98670 WHERE a=3626; UPDATE t2 SET b=55814 WHERE a=3627; UPDATE t2 SET b=35064 WHERE a=3628; UPDATE t2 SET b=35472 WHERE a=3629; UPDATE t2 SET b=88568 WHERE a=3630; UPDATE t2 SET b=3217 WHERE a=3631; UPDATE t2 SET b=12024 WHERE a=3632; UPDATE t2 SET b=32586 WHERE a=3633; UPDATE t2 SET b=70690 WHERE a=3634; UPDATE t2 SET b=94141 WHERE a=3635; UPDATE t2 SET b=73179 WHERE a=3636; UPDATE t2 SET b=4308 WHERE a=3637; UPDATE t2 SET b=6391 WHERE a=3638; UPDATE t2 SET b=6334 WHERE a=3639; UPDATE t2 SET b=552 WHERE a=3640; UPDATE t2 SET b=39539 WHERE a=3641; UPDATE t2 SET b=63757 WHERE a=3642; UPDATE t2 SET b=18003 WHERE a=3643; UPDATE t2 SET b=68916 WHERE a=3644; UPDATE t2 SET b=1498 WHERE a=3645; UPDATE t2 SET b=37201 WHERE a=3646; UPDATE t2 SET b=97836 WHERE a=3647; UPDATE t2 SET b=4509 WHERE a=3648; UPDATE t2 SET b=89707 WHERE a=3649; UPDATE t2 SET b=97323 WHERE a=3650; UPDATE t2 SET b=93633 WHERE a=3651; UPDATE t2 SET b=79946 WHERE a=3652; UPDATE t2 SET b=15339 WHERE a=3653; UPDATE t2 SET b=91269 WHERE a=3654; UPDATE t2 SET b=49537 WHERE a=3655; UPDATE t2 SET b=41685 WHERE a=3656; UPDATE t2 SET b=33325 WHERE a=3657; UPDATE t2 SET b=52688 WHERE a=3658; UPDATE t2 SET b=4552 WHERE a=3659; UPDATE t2 SET b=20690 WHERE a=3660; UPDATE t2 SET b=87703 WHERE a=3661; UPDATE t2 SET b=40495 WHERE a=3662; UPDATE t2 SET b=14743 WHERE a=3663; UPDATE t2 SET b=5403 WHERE a=3664; UPDATE t2 SET b=67136 WHERE a=3665; UPDATE t2 SET b=72259 WHERE a=3666; UPDATE t2 SET b=77813 WHERE a=3667; UPDATE t2 SET b=92122 WHERE a=3668; UPDATE t2 SET b=6894 WHERE a=3669; UPDATE t2 SET b=39437 WHERE a=3670; UPDATE t2 SET b=42717 WHERE a=3671; UPDATE t2 SET b=5009 WHERE a=3672; UPDATE t2 SET b=7987 WHERE a=3673; UPDATE t2 SET b=91164 WHERE a=3674; UPDATE t2 SET b=18381 WHERE a=3675; UPDATE t2 SET b=61498 WHERE a=3676; UPDATE t2 SET b=91128 WHERE a=3677; UPDATE t2 SET b=64640 WHERE a=3678; UPDATE t2 SET b=2799 WHERE a=3679; UPDATE t2 SET b=44846 WHERE a=3680; UPDATE t2 SET b=83228 WHERE a=3681; UPDATE t2 SET b=75383 WHERE a=3682; UPDATE t2 SET b=30583 WHERE a=3683; UPDATE t2 SET b=3299 WHERE a=3684; UPDATE t2 SET b=79779 WHERE a=3685; UPDATE t2 SET b=25469 WHERE a=3686; UPDATE t2 SET b=79217 WHERE a=3687; UPDATE t2 SET b=15266 WHERE a=3688; UPDATE t2 SET b=21272 WHERE a=3689; UPDATE t2 SET b=56433 WHERE a=3690; UPDATE t2 SET b=29954 WHERE a=3691; UPDATE t2 SET b=48440 WHERE a=3692; UPDATE t2 SET b=55115 WHERE a=3693; UPDATE t2 SET b=84334 WHERE a=3694; UPDATE t2 SET b=18574 WHERE a=3695; UPDATE t2 SET b=48171 WHERE a=3696; UPDATE t2 SET b=84571 WHERE a=3697; UPDATE t2 SET b=98235 WHERE a=3698; UPDATE t2 SET b=57046 WHERE a=3699; UPDATE t2 SET b=76988 WHERE a=3700; UPDATE t2 SET b=18741 WHERE a=3701; UPDATE t2 SET b=84086 WHERE a=3702; UPDATE t2 SET b=10948 WHERE a=3703; UPDATE t2 SET b=73311 WHERE a=3704; UPDATE t2 SET b=93465 WHERE a=3705; UPDATE t2 SET b=6026 WHERE a=3706; UPDATE t2 SET b=87320 WHERE a=3707; UPDATE t2 SET b=61247 WHERE a=3708; UPDATE t2 SET b=63196 WHERE a=3709; UPDATE t2 SET b=59352 WHERE a=3710; UPDATE t2 SET b=63195 WHERE a=3711; UPDATE t2 SET b=45615 WHERE a=3712; UPDATE t2 SET b=95620 WHERE a=3713; UPDATE t2 SET b=74705 WHERE a=3714; UPDATE t2 SET b=7228 WHERE a=3715; UPDATE t2 SET b=13642 WHERE a=3716; UPDATE t2 SET b=61980 WHERE a=3717; UPDATE t2 SET b=53726 WHERE a=3718; UPDATE t2 SET b=61840 WHERE a=3719; UPDATE t2 SET b=30441 WHERE a=3720; UPDATE t2 SET b=75058 WHERE a=3721; UPDATE t2 SET b=47297 WHERE a=3722; UPDATE t2 SET b=97051 WHERE a=3723; UPDATE t2 SET b=65384 WHERE a=3724; UPDATE t2 SET b=82963 WHERE a=3725; UPDATE t2 SET b=96933 WHERE a=3726; UPDATE t2 SET b=91654 WHERE a=3727; UPDATE t2 SET b=1196 WHERE a=3728; UPDATE t2 SET b=80878 WHERE a=3729; UPDATE t2 SET b=31372 WHERE a=3730; UPDATE t2 SET b=45849 WHERE a=3731; UPDATE t2 SET b=15886 WHERE a=3732; UPDATE t2 SET b=90365 WHERE a=3733; UPDATE t2 SET b=20298 WHERE a=3734; UPDATE t2 SET b=68040 WHERE a=3735; UPDATE t2 SET b=35448 WHERE a=3736; UPDATE t2 SET b=63409 WHERE a=3737; UPDATE t2 SET b=63451 WHERE a=3738; UPDATE t2 SET b=41468 WHERE a=3739; UPDATE t2 SET b=49361 WHERE a=3740; UPDATE t2 SET b=51934 WHERE a=3741; UPDATE t2 SET b=8459 WHERE a=3742; UPDATE t2 SET b=28284 WHERE a=3743; UPDATE t2 SET b=48627 WHERE a=3744; UPDATE t2 SET b=31914 WHERE a=3745; UPDATE t2 SET b=57440 WHERE a=3746; UPDATE t2 SET b=31280 WHERE a=3747; UPDATE t2 SET b=76301 WHERE a=3748; UPDATE t2 SET b=28448 WHERE a=3749; UPDATE t2 SET b=1769 WHERE a=3750; UPDATE t2 SET b=88553 WHERE a=3751; UPDATE t2 SET b=51135 WHERE a=3752; UPDATE t2 SET b=84835 WHERE a=3753; UPDATE t2 SET b=60343 WHERE a=3754; UPDATE t2 SET b=34326 WHERE a=3755; UPDATE t2 SET b=10286 WHERE a=3756; UPDATE t2 SET b=93082 WHERE a=3757; UPDATE t2 SET b=14952 WHERE a=3758; UPDATE t2 SET b=32291 WHERE a=3759; UPDATE t2 SET b=19643 WHERE a=3760; UPDATE t2 SET b=59572 WHERE a=3761; UPDATE t2 SET b=47283 WHERE a=3762; UPDATE t2 SET b=16308 WHERE a=3763; UPDATE t2 SET b=61038 WHERE a=3764; UPDATE t2 SET b=15529 WHERE a=3765; UPDATE t2 SET b=30668 WHERE a=3766; UPDATE t2 SET b=11948 WHERE a=3767; UPDATE t2 SET b=97637 WHERE a=3768; UPDATE t2 SET b=87188 WHERE a=3769; UPDATE t2 SET b=64833 WHERE a=3770; UPDATE t2 SET b=95774 WHERE a=3771; UPDATE t2 SET b=20798 WHERE a=3772; UPDATE t2 SET b=64724 WHERE a=3773; UPDATE t2 SET b=55475 WHERE a=3774; UPDATE t2 SET b=77540 WHERE a=3775; UPDATE t2 SET b=37769 WHERE a=3776; UPDATE t2 SET b=40422 WHERE a=3777; UPDATE t2 SET b=25831 WHERE a=3778; UPDATE t2 SET b=86180 WHERE a=3779; UPDATE t2 SET b=54458 WHERE a=3780; UPDATE t2 SET b=64895 WHERE a=3781; UPDATE t2 SET b=31803 WHERE a=3782; UPDATE t2 SET b=51700 WHERE a=3783; UPDATE t2 SET b=71397 WHERE a=3784; UPDATE t2 SET b=96916 WHERE a=3785; UPDATE t2 SET b=68624 WHERE a=3786; UPDATE t2 SET b=87980 WHERE a=3787; UPDATE t2 SET b=21563 WHERE a=3788; UPDATE t2 SET b=36501 WHERE a=3789; UPDATE t2 SET b=71696 WHERE a=3790; UPDATE t2 SET b=86663 WHERE a=3791; UPDATE t2 SET b=57815 WHERE a=3792; UPDATE t2 SET b=56274 WHERE a=3793; UPDATE t2 SET b=34640 WHERE a=3794; UPDATE t2 SET b=52749 WHERE a=3795; UPDATE t2 SET b=35160 WHERE a=3796; UPDATE t2 SET b=17934 WHERE a=3797; UPDATE t2 SET b=57767 WHERE a=3798; UPDATE t2 SET b=27409 WHERE a=3799; UPDATE t2 SET b=70034 WHERE a=3800; UPDATE t2 SET b=28483 WHERE a=3801; UPDATE t2 SET b=53181 WHERE a=3802; UPDATE t2 SET b=75055 WHERE a=3803; UPDATE t2 SET b=70851 WHERE a=3804; UPDATE t2 SET b=71471 WHERE a=3805; UPDATE t2 SET b=48613 WHERE a=3806; UPDATE t2 SET b=91209 WHERE a=3807; UPDATE t2 SET b=23101 WHERE a=3808; UPDATE t2 SET b=39626 WHERE a=3809; UPDATE t2 SET b=89379 WHERE a=3810; UPDATE t2 SET b=19741 WHERE a=3811; UPDATE t2 SET b=94607 WHERE a=3812; UPDATE t2 SET b=17672 WHERE a=3813; UPDATE t2 SET b=95338 WHERE a=3814; UPDATE t2 SET b=68259 WHERE a=3815; UPDATE t2 SET b=24716 WHERE a=3816; UPDATE t2 SET b=9670 WHERE a=3817; UPDATE t2 SET b=49462 WHERE a=3818; UPDATE t2 SET b=2756 WHERE a=3819; UPDATE t2 SET b=27135 WHERE a=3820; UPDATE t2 SET b=7267 WHERE a=3821; UPDATE t2 SET b=72948 WHERE a=3822; UPDATE t2 SET b=45528 WHERE a=3823; UPDATE t2 SET b=6404 WHERE a=3824; UPDATE t2 SET b=66168 WHERE a=3825; UPDATE t2 SET b=35242 WHERE a=3826; UPDATE t2 SET b=72262 WHERE a=3827; UPDATE t2 SET b=91297 WHERE a=3828; UPDATE t2 SET b=40682 WHERE a=3829; UPDATE t2 SET b=24042 WHERE a=3830; UPDATE t2 SET b=32221 WHERE a=3831; UPDATE t2 SET b=51899 WHERE a=3832; UPDATE t2 SET b=57342 WHERE a=3833; UPDATE t2 SET b=1333 WHERE a=3834; UPDATE t2 SET b=79483 WHERE a=3835; UPDATE t2 SET b=37746 WHERE a=3836; UPDATE t2 SET b=90557 WHERE a=3837; UPDATE t2 SET b=27567 WHERE a=3838; UPDATE t2 SET b=71603 WHERE a=3839; UPDATE t2 SET b=96255 WHERE a=3840; UPDATE t2 SET b=80635 WHERE a=3841; UPDATE t2 SET b=26682 WHERE a=3842; UPDATE t2 SET b=63835 WHERE a=3843; UPDATE t2 SET b=83222 WHERE a=3844; UPDATE t2 SET b=39789 WHERE a=3845; UPDATE t2 SET b=61678 WHERE a=3846; UPDATE t2 SET b=44821 WHERE a=3847; UPDATE t2 SET b=72423 WHERE a=3848; UPDATE t2 SET b=67515 WHERE a=3849; UPDATE t2 SET b=17556 WHERE a=3850; UPDATE t2 SET b=81207 WHERE a=3851; UPDATE t2 SET b=80376 WHERE a=3852; UPDATE t2 SET b=69797 WHERE a=3853; UPDATE t2 SET b=55147 WHERE a=3854; UPDATE t2 SET b=10090 WHERE a=3855; UPDATE t2 SET b=6595 WHERE a=3856; UPDATE t2 SET b=97323 WHERE a=3857; UPDATE t2 SET b=10329 WHERE a=3858; UPDATE t2 SET b=99207 WHERE a=3859; UPDATE t2 SET b=79539 WHERE a=3860; UPDATE t2 SET b=2879 WHERE a=3861; UPDATE t2 SET b=68955 WHERE a=3862; UPDATE t2 SET b=80125 WHERE a=3863; UPDATE t2 SET b=69898 WHERE a=3864; UPDATE t2 SET b=34401 WHERE a=3865; UPDATE t2 SET b=26103 WHERE a=3866; UPDATE t2 SET b=40785 WHERE a=3867; UPDATE t2 SET b=20460 WHERE a=3868; UPDATE t2 SET b=68242 WHERE a=3869; UPDATE t2 SET b=34323 WHERE a=3870; UPDATE t2 SET b=65579 WHERE a=3871; UPDATE t2 SET b=14535 WHERE a=3872; UPDATE t2 SET b=62295 WHERE a=3873; UPDATE t2 SET b=35343 WHERE a=3874; UPDATE t2 SET b=39492 WHERE a=3875; UPDATE t2 SET b=95123 WHERE a=3876; UPDATE t2 SET b=56106 WHERE a=3877; UPDATE t2 SET b=68820 WHERE a=3878; UPDATE t2 SET b=2402 WHERE a=3879; UPDATE t2 SET b=34291 WHERE a=3880; UPDATE t2 SET b=33080 WHERE a=3881; UPDATE t2 SET b=64435 WHERE a=3882; UPDATE t2 SET b=95889 WHERE a=3883; UPDATE t2 SET b=89702 WHERE a=3884; UPDATE t2 SET b=47393 WHERE a=3885; UPDATE t2 SET b=98103 WHERE a=3886; UPDATE t2 SET b=89831 WHERE a=3887; UPDATE t2 SET b=28184 WHERE a=3888; UPDATE t2 SET b=7008 WHERE a=3889; UPDATE t2 SET b=38157 WHERE a=3890; UPDATE t2 SET b=10052 WHERE a=3891; UPDATE t2 SET b=3948 WHERE a=3892; UPDATE t2 SET b=41515 WHERE a=3893; UPDATE t2 SET b=48972 WHERE a=3894; UPDATE t2 SET b=24550 WHERE a=3895; UPDATE t2 SET b=89192 WHERE a=3896; UPDATE t2 SET b=18693 WHERE a=3897; UPDATE t2 SET b=5239 WHERE a=3898; UPDATE t2 SET b=59662 WHERE a=3899; UPDATE t2 SET b=18290 WHERE a=3900; UPDATE t2 SET b=76132 WHERE a=3901; UPDATE t2 SET b=31491 WHERE a=3902; UPDATE t2 SET b=51110 WHERE a=3903; UPDATE t2 SET b=11090 WHERE a=3904; UPDATE t2 SET b=29854 WHERE a=3905; UPDATE t2 SET b=31457 WHERE a=3906; UPDATE t2 SET b=63295 WHERE a=3907; UPDATE t2 SET b=10735 WHERE a=3908; UPDATE t2 SET b=12662 WHERE a=3909; UPDATE t2 SET b=50657 WHERE a=3910; UPDATE t2 SET b=34212 WHERE a=3911; UPDATE t2 SET b=98664 WHERE a=3912; UPDATE t2 SET b=2931 WHERE a=3913; UPDATE t2 SET b=64213 WHERE a=3914; UPDATE t2 SET b=32145 WHERE a=3915; UPDATE t2 SET b=98031 WHERE a=3916; UPDATE t2 SET b=48296 WHERE a=3917; UPDATE t2 SET b=53969 WHERE a=3918; UPDATE t2 SET b=2438 WHERE a=3919; UPDATE t2 SET b=53239 WHERE a=3920; UPDATE t2 SET b=35291 WHERE a=3921; UPDATE t2 SET b=44833 WHERE a=3922; UPDATE t2 SET b=19716 WHERE a=3923; UPDATE t2 SET b=87803 WHERE a=3924; UPDATE t2 SET b=51116 WHERE a=3925; UPDATE t2 SET b=27704 WHERE a=3926; UPDATE t2 SET b=12843 WHERE a=3927; UPDATE t2 SET b=5236 WHERE a=3928; UPDATE t2 SET b=77761 WHERE a=3929; UPDATE t2 SET b=48772 WHERE a=3930; UPDATE t2 SET b=96177 WHERE a=3931; UPDATE t2 SET b=81700 WHERE a=3932; UPDATE t2 SET b=53149 WHERE a=3933; UPDATE t2 SET b=85080 WHERE a=3934; UPDATE t2 SET b=96467 WHERE a=3935; UPDATE t2 SET b=2472 WHERE a=3936; UPDATE t2 SET b=2152 WHERE a=3937; UPDATE t2 SET b=67117 WHERE a=3938; UPDATE t2 SET b=57022 WHERE a=3939; UPDATE t2 SET b=92662 WHERE a=3940; UPDATE t2 SET b=78773 WHERE a=3941; UPDATE t2 SET b=78536 WHERE a=3942; UPDATE t2 SET b=7290 WHERE a=3943; UPDATE t2 SET b=43066 WHERE a=3944; UPDATE t2 SET b=18066 WHERE a=3945; UPDATE t2 SET b=82622 WHERE a=3946; UPDATE t2 SET b=17218 WHERE a=3947; UPDATE t2 SET b=62651 WHERE a=3948; UPDATE t2 SET b=72594 WHERE a=3949; UPDATE t2 SET b=22022 WHERE a=3950; UPDATE t2 SET b=49369 WHERE a=3951; UPDATE t2 SET b=37147 WHERE a=3952; UPDATE t2 SET b=57160 WHERE a=3953; UPDATE t2 SET b=97708 WHERE a=3954; UPDATE t2 SET b=36428 WHERE a=3955; UPDATE t2 SET b=61018 WHERE a=3956; UPDATE t2 SET b=93004 WHERE a=3957; UPDATE t2 SET b=38075 WHERE a=3958; UPDATE t2 SET b=20553 WHERE a=3959; UPDATE t2 SET b=33674 WHERE a=3960; UPDATE t2 SET b=19020 WHERE a=3961; UPDATE t2 SET b=91051 WHERE a=3962; UPDATE t2 SET b=44968 WHERE a=3963; UPDATE t2 SET b=47451 WHERE a=3964; UPDATE t2 SET b=53883 WHERE a=3965; UPDATE t2 SET b=96906 WHERE a=3966; UPDATE t2 SET b=26120 WHERE a=3967; UPDATE t2 SET b=55054 WHERE a=3968; UPDATE t2 SET b=22576 WHERE a=3969; UPDATE t2 SET b=49669 WHERE a=3970; UPDATE t2 SET b=84304 WHERE a=3971; UPDATE t2 SET b=37706 WHERE a=3972; UPDATE t2 SET b=48906 WHERE a=3973; UPDATE t2 SET b=95379 WHERE a=3974; UPDATE t2 SET b=50476 WHERE a=3975; UPDATE t2 SET b=9581 WHERE a=3976; UPDATE t2 SET b=83175 WHERE a=3977; UPDATE t2 SET b=64176 WHERE a=3978; UPDATE t2 SET b=64796 WHERE a=3979; UPDATE t2 SET b=4237 WHERE a=3980; UPDATE t2 SET b=65421 WHERE a=3981; UPDATE t2 SET b=67880 WHERE a=3982; UPDATE t2 SET b=93796 WHERE a=3983; UPDATE t2 SET b=7824 WHERE a=3984; UPDATE t2 SET b=53929 WHERE a=3985; UPDATE t2 SET b=4902 WHERE a=3986; UPDATE t2 SET b=16030 WHERE a=3987; UPDATE t2 SET b=22709 WHERE a=3988; UPDATE t2 SET b=42257 WHERE a=3989; UPDATE t2 SET b=18146 WHERE a=3990; UPDATE t2 SET b=70232 WHERE a=3991; UPDATE t2 SET b=69215 WHERE a=3992; UPDATE t2 SET b=30924 WHERE a=3993; UPDATE t2 SET b=16008 WHERE a=3994; UPDATE t2 SET b=1434 WHERE a=3995; UPDATE t2 SET b=37512 WHERE a=3996; UPDATE t2 SET b=32761 WHERE a=3997; UPDATE t2 SET b=19646 WHERE a=3998; UPDATE t2 SET b=49283 WHERE a=3999; UPDATE t2 SET b=67332 WHERE a=4000; UPDATE t2 SET b=44221 WHERE a=4001; UPDATE t2 SET b=83185 WHERE a=4002; UPDATE t2 SET b=48324 WHERE a=4003; UPDATE t2 SET b=20860 WHERE a=4004; UPDATE t2 SET b=16615 WHERE a=4005; UPDATE t2 SET b=77223 WHERE a=4006; UPDATE t2 SET b=88303 WHERE a=4007; UPDATE t2 SET b=38462 WHERE a=4008; UPDATE t2 SET b=95645 WHERE a=4009; UPDATE t2 SET b=262 WHERE a=4010; UPDATE t2 SET b=20645 WHERE a=4011; UPDATE t2 SET b=86671 WHERE a=4012; UPDATE t2 SET b=65345 WHERE a=4013; UPDATE t2 SET b=88411 WHERE a=4014; UPDATE t2 SET b=13365 WHERE a=4015; UPDATE t2 SET b=39624 WHERE a=4016; UPDATE t2 SET b=82308 WHERE a=4017; UPDATE t2 SET b=15492 WHERE a=4018; UPDATE t2 SET b=93488 WHERE a=4019; UPDATE t2 SET b=3192 WHERE a=4020; UPDATE t2 SET b=68695 WHERE a=4021; UPDATE t2 SET b=51393 WHERE a=4022; UPDATE t2 SET b=84425 WHERE a=4023; UPDATE t2 SET b=49472 WHERE a=4024; UPDATE t2 SET b=32617 WHERE a=4025; UPDATE t2 SET b=61579 WHERE a=4026; UPDATE t2 SET b=40736 WHERE a=4027; UPDATE t2 SET b=35992 WHERE a=4028; UPDATE t2 SET b=29094 WHERE a=4029; UPDATE t2 SET b=7724 WHERE a=4030; UPDATE t2 SET b=5166 WHERE a=4031; UPDATE t2 SET b=39110 WHERE a=4032; UPDATE t2 SET b=89330 WHERE a=4033; UPDATE t2 SET b=35096 WHERE a=4034; UPDATE t2 SET b=62751 WHERE a=4035; UPDATE t2 SET b=75878 WHERE a=4036; UPDATE t2 SET b=95606 WHERE a=4037; UPDATE t2 SET b=29321 WHERE a=4038; UPDATE t2 SET b=30391 WHERE a=4039; UPDATE t2 SET b=96135 WHERE a=4040; UPDATE t2 SET b=64414 WHERE a=4041; UPDATE t2 SET b=91390 WHERE a=4042; UPDATE t2 SET b=83429 WHERE a=4043; UPDATE t2 SET b=66647 WHERE a=4044; UPDATE t2 SET b=4182 WHERE a=4045; UPDATE t2 SET b=33134 WHERE a=4046; UPDATE t2 SET b=18315 WHERE a=4047; UPDATE t2 SET b=12411 WHERE a=4048; UPDATE t2 SET b=4881 WHERE a=4049; UPDATE t2 SET b=3601 WHERE a=4050; UPDATE t2 SET b=12231 WHERE a=4051; UPDATE t2 SET b=60473 WHERE a=4052; UPDATE t2 SET b=55472 WHERE a=4053; UPDATE t2 SET b=53094 WHERE a=4054; UPDATE t2 SET b=70220 WHERE a=4055; UPDATE t2 SET b=73661 WHERE a=4056; UPDATE t2 SET b=27558 WHERE a=4057; UPDATE t2 SET b=44704 WHERE a=4058; UPDATE t2 SET b=51361 WHERE a=4059; UPDATE t2 SET b=82145 WHERE a=4060; UPDATE t2 SET b=56858 WHERE a=4061; UPDATE t2 SET b=64385 WHERE a=4062; UPDATE t2 SET b=70632 WHERE a=4063; UPDATE t2 SET b=81567 WHERE a=4064; UPDATE t2 SET b=47584 WHERE a=4065; UPDATE t2 SET b=5672 WHERE a=4066; UPDATE t2 SET b=54504 WHERE a=4067; UPDATE t2 SET b=99016 WHERE a=4068; UPDATE t2 SET b=33227 WHERE a=4069; UPDATE t2 SET b=6560 WHERE a=4070; UPDATE t2 SET b=73408 WHERE a=4071; UPDATE t2 SET b=99629 WHERE a=4072; UPDATE t2 SET b=9432 WHERE a=4073; UPDATE t2 SET b=20977 WHERE a=4074; UPDATE t2 SET b=42919 WHERE a=4075; UPDATE t2 SET b=6533 WHERE a=4076; UPDATE t2 SET b=23921 WHERE a=4077; UPDATE t2 SET b=79752 WHERE a=4078; UPDATE t2 SET b=12874 WHERE a=4079; UPDATE t2 SET b=48225 WHERE a=4080; UPDATE t2 SET b=64896 WHERE a=4081; UPDATE t2 SET b=45943 WHERE a=4082; UPDATE t2 SET b=18597 WHERE a=4083; UPDATE t2 SET b=88359 WHERE a=4084; UPDATE t2 SET b=69003 WHERE a=4085; UPDATE t2 SET b=68546 WHERE a=4086; UPDATE t2 SET b=6176 WHERE a=4087; UPDATE t2 SET b=91445 WHERE a=4088; UPDATE t2 SET b=12003 WHERE a=4089; UPDATE t2 SET b=55175 WHERE a=4090; UPDATE t2 SET b=29532 WHERE a=4091; UPDATE t2 SET b=37051 WHERE a=4092; UPDATE t2 SET b=46678 WHERE a=4093; UPDATE t2 SET b=63583 WHERE a=4094; UPDATE t2 SET b=58496 WHERE a=4095; UPDATE t2 SET b=65470 WHERE a=4096; UPDATE t2 SET b=90779 WHERE a=4097; UPDATE t2 SET b=66979 WHERE a=4098; UPDATE t2 SET b=81198 WHERE a=4099; UPDATE t2 SET b=96498 WHERE a=4100; UPDATE t2 SET b=89818 WHERE a=4101; UPDATE t2 SET b=65983 WHERE a=4102; UPDATE t2 SET b=76774 WHERE a=4103; UPDATE t2 SET b=22850 WHERE a=4104; UPDATE t2 SET b=53488 WHERE a=4105; UPDATE t2 SET b=50384 WHERE a=4106; UPDATE t2 SET b=91604 WHERE a=4107; UPDATE t2 SET b=83047 WHERE a=4108; UPDATE t2 SET b=48058 WHERE a=4109; UPDATE t2 SET b=16309 WHERE a=4110; UPDATE t2 SET b=4706 WHERE a=4111; UPDATE t2 SET b=36727 WHERE a=4112; UPDATE t2 SET b=65249 WHERE a=4113; UPDATE t2 SET b=71026 WHERE a=4114; UPDATE t2 SET b=45918 WHERE a=4115; UPDATE t2 SET b=46189 WHERE a=4116; UPDATE t2 SET b=60290 WHERE a=4117; UPDATE t2 SET b=57157 WHERE a=4118; UPDATE t2 SET b=33539 WHERE a=4119; UPDATE t2 SET b=53004 WHERE a=4120; UPDATE t2 SET b=8376 WHERE a=4121; UPDATE t2 SET b=3999 WHERE a=4122; UPDATE t2 SET b=49197 WHERE a=4123; UPDATE t2 SET b=68876 WHERE a=4124; UPDATE t2 SET b=74500 WHERE a=4125; UPDATE t2 SET b=59739 WHERE a=4126; UPDATE t2 SET b=18555 WHERE a=4127; UPDATE t2 SET b=90010 WHERE a=4128; UPDATE t2 SET b=34207 WHERE a=4129; UPDATE t2 SET b=3888 WHERE a=4130; UPDATE t2 SET b=24780 WHERE a=4131; UPDATE t2 SET b=63486 WHERE a=4132; UPDATE t2 SET b=72332 WHERE a=4133; UPDATE t2 SET b=67212 WHERE a=4134; UPDATE t2 SET b=41663 WHERE a=4135; UPDATE t2 SET b=73863 WHERE a=4136; UPDATE t2 SET b=73947 WHERE a=4137; UPDATE t2 SET b=97798 WHERE a=4138; UPDATE t2 SET b=49698 WHERE a=4139; UPDATE t2 SET b=15373 WHERE a=4140; UPDATE t2 SET b=5946 WHERE a=4141; UPDATE t2 SET b=91858 WHERE a=4142; UPDATE t2 SET b=25508 WHERE a=4143; UPDATE t2 SET b=9059 WHERE a=4144; UPDATE t2 SET b=72131 WHERE a=4145; UPDATE t2 SET b=52255 WHERE a=4146; UPDATE t2 SET b=98195 WHERE a=4147; UPDATE t2 SET b=92048 WHERE a=4148; UPDATE t2 SET b=56526 WHERE a=4149; UPDATE t2 SET b=12040 WHERE a=4150; UPDATE t2 SET b=762 WHERE a=4151; UPDATE t2 SET b=70157 WHERE a=4152; UPDATE t2 SET b=8684 WHERE a=4153; UPDATE t2 SET b=92086 WHERE a=4154; UPDATE t2 SET b=40971 WHERE a=4155; UPDATE t2 SET b=93093 WHERE a=4156; UPDATE t2 SET b=15563 WHERE a=4157; UPDATE t2 SET b=85458 WHERE a=4158; UPDATE t2 SET b=52005 WHERE a=4159; UPDATE t2 SET b=65675 WHERE a=4160; UPDATE t2 SET b=60469 WHERE a=4161; UPDATE t2 SET b=23231 WHERE a=4162; UPDATE t2 SET b=68412 WHERE a=4163; UPDATE t2 SET b=58905 WHERE a=4164; UPDATE t2 SET b=83290 WHERE a=4165; UPDATE t2 SET b=23326 WHERE a=4166; UPDATE t2 SET b=31614 WHERE a=4167; UPDATE t2 SET b=30696 WHERE a=4168; UPDATE t2 SET b=12382 WHERE a=4169; UPDATE t2 SET b=15242 WHERE a=4170; UPDATE t2 SET b=21144 WHERE a=4171; UPDATE t2 SET b=28649 WHERE a=4172; UPDATE t2 SET b=40326 WHERE a=4173; UPDATE t2 SET b=69000 WHERE a=4174; UPDATE t2 SET b=36049 WHERE a=4175; UPDATE t2 SET b=15926 WHERE a=4176; UPDATE t2 SET b=26950 WHERE a=4177; UPDATE t2 SET b=19439 WHERE a=4178; UPDATE t2 SET b=65061 WHERE a=4179; UPDATE t2 SET b=3400 WHERE a=4180; UPDATE t2 SET b=17309 WHERE a=4181; UPDATE t2 SET b=29015 WHERE a=4182; UPDATE t2 SET b=19711 WHERE a=4183; UPDATE t2 SET b=79663 WHERE a=4184; UPDATE t2 SET b=43896 WHERE a=4185; UPDATE t2 SET b=1073 WHERE a=4186; UPDATE t2 SET b=43356 WHERE a=4187; UPDATE t2 SET b=47792 WHERE a=4188; UPDATE t2 SET b=49680 WHERE a=4189; UPDATE t2 SET b=89729 WHERE a=4190; UPDATE t2 SET b=18262 WHERE a=4191; UPDATE t2 SET b=53567 WHERE a=4192; UPDATE t2 SET b=52019 WHERE a=4193; UPDATE t2 SET b=29065 WHERE a=4194; UPDATE t2 SET b=59858 WHERE a=4195; UPDATE t2 SET b=8551 WHERE a=4196; UPDATE t2 SET b=22869 WHERE a=4197; UPDATE t2 SET b=87529 WHERE a=4198; UPDATE t2 SET b=70528 WHERE a=4199; UPDATE t2 SET b=33896 WHERE a=4200; UPDATE t2 SET b=34028 WHERE a=4201; UPDATE t2 SET b=62913 WHERE a=4202; UPDATE t2 SET b=74719 WHERE a=4203; UPDATE t2 SET b=5822 WHERE a=4204; UPDATE t2 SET b=63791 WHERE a=4205; UPDATE t2 SET b=57695 WHERE a=4206; UPDATE t2 SET b=15762 WHERE a=4207; UPDATE t2 SET b=77659 WHERE a=4208; UPDATE t2 SET b=27559 WHERE a=4209; UPDATE t2 SET b=60393 WHERE a=4210; UPDATE t2 SET b=82367 WHERE a=4211; UPDATE t2 SET b=15610 WHERE a=4212; UPDATE t2 SET b=31088 WHERE a=4213; UPDATE t2 SET b=6716 WHERE a=4214; UPDATE t2 SET b=76993 WHERE a=4215; UPDATE t2 SET b=87049 WHERE a=4216; UPDATE t2 SET b=18570 WHERE a=4217; UPDATE t2 SET b=9061 WHERE a=4218; UPDATE t2 SET b=55038 WHERE a=4219; UPDATE t2 SET b=68480 WHERE a=4220; UPDATE t2 SET b=20819 WHERE a=4221; UPDATE t2 SET b=7370 WHERE a=4222; UPDATE t2 SET b=83526 WHERE a=4223; UPDATE t2 SET b=41982 WHERE a=4224; UPDATE t2 SET b=51722 WHERE a=4225; UPDATE t2 SET b=22038 WHERE a=4226; UPDATE t2 SET b=29766 WHERE a=4227; UPDATE t2 SET b=1272 WHERE a=4228; UPDATE t2 SET b=11982 WHERE a=4229; UPDATE t2 SET b=53001 WHERE a=4230; UPDATE t2 SET b=62825 WHERE a=4231; UPDATE t2 SET b=5177 WHERE a=4232; UPDATE t2 SET b=65760 WHERE a=4233; UPDATE t2 SET b=61112 WHERE a=4234; UPDATE t2 SET b=30304 WHERE a=4235; UPDATE t2 SET b=79220 WHERE a=4236; UPDATE t2 SET b=26556 WHERE a=4237; UPDATE t2 SET b=3934 WHERE a=4238; UPDATE t2 SET b=30441 WHERE a=4239; UPDATE t2 SET b=97318 WHERE a=4240; UPDATE t2 SET b=9074 WHERE a=4241; UPDATE t2 SET b=18355 WHERE a=4242; UPDATE t2 SET b=36365 WHERE a=4243; UPDATE t2 SET b=46725 WHERE a=4244; UPDATE t2 SET b=11282 WHERE a=4245; UPDATE t2 SET b=32225 WHERE a=4246; UPDATE t2 SET b=76906 WHERE a=4247; UPDATE t2 SET b=64933 WHERE a=4248; UPDATE t2 SET b=39435 WHERE a=4249; UPDATE t2 SET b=45516 WHERE a=4250; UPDATE t2 SET b=80510 WHERE a=4251; UPDATE t2 SET b=76129 WHERE a=4252; UPDATE t2 SET b=20912 WHERE a=4253; UPDATE t2 SET b=50578 WHERE a=4254; UPDATE t2 SET b=89360 WHERE a=4255; UPDATE t2 SET b=72678 WHERE a=4256; UPDATE t2 SET b=7157 WHERE a=4257; UPDATE t2 SET b=6758 WHERE a=4258; UPDATE t2 SET b=29194 WHERE a=4259; UPDATE t2 SET b=67415 WHERE a=4260; UPDATE t2 SET b=63240 WHERE a=4261; UPDATE t2 SET b=4177 WHERE a=4262; UPDATE t2 SET b=58435 WHERE a=4263; UPDATE t2 SET b=43437 WHERE a=4264; UPDATE t2 SET b=5294 WHERE a=4265; UPDATE t2 SET b=46045 WHERE a=4266; UPDATE t2 SET b=8183 WHERE a=4267; UPDATE t2 SET b=9828 WHERE a=4268; UPDATE t2 SET b=85708 WHERE a=4269; UPDATE t2 SET b=39613 WHERE a=4270; UPDATE t2 SET b=89942 WHERE a=4271; UPDATE t2 SET b=28678 WHERE a=4272; UPDATE t2 SET b=14728 WHERE a=4273; UPDATE t2 SET b=55014 WHERE a=4274; UPDATE t2 SET b=8293 WHERE a=4275; UPDATE t2 SET b=39126 WHERE a=4276; UPDATE t2 SET b=5064 WHERE a=4277; UPDATE t2 SET b=22047 WHERE a=4278; UPDATE t2 SET b=78653 WHERE a=4279; UPDATE t2 SET b=47392 WHERE a=4280; UPDATE t2 SET b=68045 WHERE a=4281; UPDATE t2 SET b=64678 WHERE a=4282; UPDATE t2 SET b=96254 WHERE a=4283; UPDATE t2 SET b=7127 WHERE a=4284; UPDATE t2 SET b=5949 WHERE a=4285; UPDATE t2 SET b=8194 WHERE a=4286; UPDATE t2 SET b=76595 WHERE a=4287; UPDATE t2 SET b=4630 WHERE a=4288; UPDATE t2 SET b=10850 WHERE a=4289; UPDATE t2 SET b=76241 WHERE a=4290; UPDATE t2 SET b=26037 WHERE a=4291; UPDATE t2 SET b=60212 WHERE a=4292; UPDATE t2 SET b=92582 WHERE a=4293; UPDATE t2 SET b=68208 WHERE a=4294; UPDATE t2 SET b=11276 WHERE a=4295; UPDATE t2 SET b=24539 WHERE a=4296; UPDATE t2 SET b=46948 WHERE a=4297; UPDATE t2 SET b=26559 WHERE a=4298; UPDATE t2 SET b=88002 WHERE a=4299; UPDATE t2 SET b=47324 WHERE a=4300; UPDATE t2 SET b=84591 WHERE a=4301; UPDATE t2 SET b=6412 WHERE a=4302; UPDATE t2 SET b=12241 WHERE a=4303; UPDATE t2 SET b=22774 WHERE a=4304; UPDATE t2 SET b=84940 WHERE a=4305; UPDATE t2 SET b=96349 WHERE a=4306; UPDATE t2 SET b=89048 WHERE a=4307; UPDATE t2 SET b=97455 WHERE a=4308; UPDATE t2 SET b=17703 WHERE a=4309; UPDATE t2 SET b=52313 WHERE a=4310; UPDATE t2 SET b=77837 WHERE a=4311; UPDATE t2 SET b=68167 WHERE a=4312; UPDATE t2 SET b=34873 WHERE a=4313; UPDATE t2 SET b=2888 WHERE a=4314; UPDATE t2 SET b=77183 WHERE a=4315; UPDATE t2 SET b=17943 WHERE a=4316; UPDATE t2 SET b=99913 WHERE a=4317; UPDATE t2 SET b=49895 WHERE a=4318; UPDATE t2 SET b=48900 WHERE a=4319; UPDATE t2 SET b=14056 WHERE a=4320; UPDATE t2 SET b=99063 WHERE a=4321; UPDATE t2 SET b=98030 WHERE a=4322; UPDATE t2 SET b=60626 WHERE a=4323; UPDATE t2 SET b=16770 WHERE a=4324; UPDATE t2 SET b=21479 WHERE a=4325; UPDATE t2 SET b=30993 WHERE a=4326; UPDATE t2 SET b=88404 WHERE a=4327; UPDATE t2 SET b=19208 WHERE a=4328; UPDATE t2 SET b=78469 WHERE a=4329; UPDATE t2 SET b=69950 WHERE a=4330; UPDATE t2 SET b=17473 WHERE a=4331; UPDATE t2 SET b=69982 WHERE a=4332; UPDATE t2 SET b=97419 WHERE a=4333; UPDATE t2 SET b=53622 WHERE a=4334; UPDATE t2 SET b=2233 WHERE a=4335; UPDATE t2 SET b=6554 WHERE a=4336; UPDATE t2 SET b=62883 WHERE a=4337; UPDATE t2 SET b=25017 WHERE a=4338; UPDATE t2 SET b=14755 WHERE a=4339; UPDATE t2 SET b=96428 WHERE a=4340; UPDATE t2 SET b=50661 WHERE a=4341; UPDATE t2 SET b=58607 WHERE a=4342; UPDATE t2 SET b=64816 WHERE a=4343; UPDATE t2 SET b=38310 WHERE a=4344; UPDATE t2 SET b=76521 WHERE a=4345; UPDATE t2 SET b=91008 WHERE a=4346; UPDATE t2 SET b=11129 WHERE a=4347; UPDATE t2 SET b=51522 WHERE a=4348; UPDATE t2 SET b=57973 WHERE a=4349; UPDATE t2 SET b=28416 WHERE a=4350; UPDATE t2 SET b=29602 WHERE a=4351; UPDATE t2 SET b=51326 WHERE a=4352; UPDATE t2 SET b=32596 WHERE a=4353; UPDATE t2 SET b=68256 WHERE a=4354; UPDATE t2 SET b=81207 WHERE a=4355; UPDATE t2 SET b=56077 WHERE a=4356; UPDATE t2 SET b=63119 WHERE a=4357; UPDATE t2 SET b=73287 WHERE a=4358; UPDATE t2 SET b=47914 WHERE a=4359; UPDATE t2 SET b=40821 WHERE a=4360; UPDATE t2 SET b=28346 WHERE a=4361; UPDATE t2 SET b=67126 WHERE a=4362; UPDATE t2 SET b=96965 WHERE a=4363; UPDATE t2 SET b=6815 WHERE a=4364; UPDATE t2 SET b=97374 WHERE a=4365; UPDATE t2 SET b=49846 WHERE a=4366; UPDATE t2 SET b=97090 WHERE a=4367; UPDATE t2 SET b=19123 WHERE a=4368; UPDATE t2 SET b=23243 WHERE a=4369; UPDATE t2 SET b=32051 WHERE a=4370; UPDATE t2 SET b=42276 WHERE a=4371; UPDATE t2 SET b=5279 WHERE a=4372; UPDATE t2 SET b=32553 WHERE a=4373; UPDATE t2 SET b=66489 WHERE a=4374; UPDATE t2 SET b=36963 WHERE a=4375; UPDATE t2 SET b=27080 WHERE a=4376; UPDATE t2 SET b=58786 WHERE a=4377; UPDATE t2 SET b=20988 WHERE a=4378; UPDATE t2 SET b=7409 WHERE a=4379; UPDATE t2 SET b=66975 WHERE a=4380; UPDATE t2 SET b=69740 WHERE a=4381; UPDATE t2 SET b=26914 WHERE a=4382; UPDATE t2 SET b=8652 WHERE a=4383; UPDATE t2 SET b=97698 WHERE a=4384; UPDATE t2 SET b=68636 WHERE a=4385; UPDATE t2 SET b=6635 WHERE a=4386; UPDATE t2 SET b=13088 WHERE a=4387; UPDATE t2 SET b=39913 WHERE a=4388; UPDATE t2 SET b=81025 WHERE a=4389; UPDATE t2 SET b=54903 WHERE a=4390; UPDATE t2 SET b=97664 WHERE a=4391; UPDATE t2 SET b=8232 WHERE a=4392; UPDATE t2 SET b=89249 WHERE a=4393; UPDATE t2 SET b=97446 WHERE a=4394; UPDATE t2 SET b=17862 WHERE a=4395; UPDATE t2 SET b=98927 WHERE a=4396; UPDATE t2 SET b=94172 WHERE a=4397; UPDATE t2 SET b=73440 WHERE a=4398; UPDATE t2 SET b=21703 WHERE a=4399; UPDATE t2 SET b=11708 WHERE a=4400; UPDATE t2 SET b=87405 WHERE a=4401; UPDATE t2 SET b=95830 WHERE a=4402; UPDATE t2 SET b=79264 WHERE a=4403; UPDATE t2 SET b=59068 WHERE a=4404; UPDATE t2 SET b=72671 WHERE a=4405; UPDATE t2 SET b=92259 WHERE a=4406; UPDATE t2 SET b=90449 WHERE a=4407; UPDATE t2 SET b=85216 WHERE a=4408; UPDATE t2 SET b=73453 WHERE a=4409; UPDATE t2 SET b=80847 WHERE a=4410; UPDATE t2 SET b=34528 WHERE a=4411; UPDATE t2 SET b=65377 WHERE a=4412; UPDATE t2 SET b=86481 WHERE a=4413; UPDATE t2 SET b=74542 WHERE a=4414; UPDATE t2 SET b=83092 WHERE a=4415; UPDATE t2 SET b=39650 WHERE a=4416; UPDATE t2 SET b=31118 WHERE a=4417; UPDATE t2 SET b=36819 WHERE a=4418; UPDATE t2 SET b=17436 WHERE a=4419; UPDATE t2 SET b=28081 WHERE a=4420; UPDATE t2 SET b=96766 WHERE a=4421; UPDATE t2 SET b=70832 WHERE a=4422; UPDATE t2 SET b=92121 WHERE a=4423; UPDATE t2 SET b=37408 WHERE a=4424; UPDATE t2 SET b=70068 WHERE a=4425; UPDATE t2 SET b=53708 WHERE a=4426; UPDATE t2 SET b=82235 WHERE a=4427; UPDATE t2 SET b=15638 WHERE a=4428; UPDATE t2 SET b=46304 WHERE a=4429; UPDATE t2 SET b=85065 WHERE a=4430; UPDATE t2 SET b=29385 WHERE a=4431; UPDATE t2 SET b=69463 WHERE a=4432; UPDATE t2 SET b=65464 WHERE a=4433; UPDATE t2 SET b=48688 WHERE a=4434; UPDATE t2 SET b=91111 WHERE a=4435; UPDATE t2 SET b=2529 WHERE a=4436; UPDATE t2 SET b=49625 WHERE a=4437; UPDATE t2 SET b=14901 WHERE a=4438; UPDATE t2 SET b=67296 WHERE a=4439; UPDATE t2 SET b=33779 WHERE a=4440; UPDATE t2 SET b=12738 WHERE a=4441; UPDATE t2 SET b=40948 WHERE a=4442; UPDATE t2 SET b=85367 WHERE a=4443; UPDATE t2 SET b=98221 WHERE a=4444; UPDATE t2 SET b=44774 WHERE a=4445; UPDATE t2 SET b=44508 WHERE a=4446; UPDATE t2 SET b=35262 WHERE a=4447; UPDATE t2 SET b=45074 WHERE a=4448; UPDATE t2 SET b=53619 WHERE a=4449; UPDATE t2 SET b=42589 WHERE a=4450; UPDATE t2 SET b=83169 WHERE a=4451; UPDATE t2 SET b=56589 WHERE a=4452; UPDATE t2 SET b=27301 WHERE a=4453; UPDATE t2 SET b=66255 WHERE a=4454; UPDATE t2 SET b=85184 WHERE a=4455; UPDATE t2 SET b=31868 WHERE a=4456; UPDATE t2 SET b=29142 WHERE a=4457; UPDATE t2 SET b=3616 WHERE a=4458; UPDATE t2 SET b=31426 WHERE a=4459; UPDATE t2 SET b=82901 WHERE a=4460; UPDATE t2 SET b=81074 WHERE a=4461; UPDATE t2 SET b=17722 WHERE a=4462; UPDATE t2 SET b=27459 WHERE a=4463; UPDATE t2 SET b=11300 WHERE a=4464; UPDATE t2 SET b=33423 WHERE a=4465; UPDATE t2 SET b=56698 WHERE a=4466; UPDATE t2 SET b=56963 WHERE a=4467; UPDATE t2 SET b=55554 WHERE a=4468; UPDATE t2 SET b=13279 WHERE a=4469; UPDATE t2 SET b=85633 WHERE a=4470; UPDATE t2 SET b=21483 WHERE a=4471; UPDATE t2 SET b=647 WHERE a=4472; UPDATE t2 SET b=49807 WHERE a=4473; UPDATE t2 SET b=59619 WHERE a=4474; UPDATE t2 SET b=28163 WHERE a=4475; UPDATE t2 SET b=14408 WHERE a=4476; UPDATE t2 SET b=20460 WHERE a=4477; UPDATE t2 SET b=23159 WHERE a=4478; UPDATE t2 SET b=31228 WHERE a=4479; UPDATE t2 SET b=21679 WHERE a=4480; UPDATE t2 SET b=63670 WHERE a=4481; UPDATE t2 SET b=13505 WHERE a=4482; UPDATE t2 SET b=67946 WHERE a=4483; UPDATE t2 SET b=80772 WHERE a=4484; UPDATE t2 SET b=47670 WHERE a=4485; UPDATE t2 SET b=93005 WHERE a=4486; UPDATE t2 SET b=61174 WHERE a=4487; UPDATE t2 SET b=16210 WHERE a=4488; UPDATE t2 SET b=71338 WHERE a=4489; UPDATE t2 SET b=20934 WHERE a=4490; UPDATE t2 SET b=18792 WHERE a=4491; UPDATE t2 SET b=31423 WHERE a=4492; UPDATE t2 SET b=24297 WHERE a=4493; UPDATE t2 SET b=6098 WHERE a=4494; UPDATE t2 SET b=72341 WHERE a=4495; UPDATE t2 SET b=96181 WHERE a=4496; UPDATE t2 SET b=4173 WHERE a=4497; UPDATE t2 SET b=91014 WHERE a=4498; UPDATE t2 SET b=5064 WHERE a=4499; UPDATE t2 SET b=8710 WHERE a=4500; UPDATE t2 SET b=86004 WHERE a=4501; UPDATE t2 SET b=84512 WHERE a=4502; UPDATE t2 SET b=91383 WHERE a=4503; UPDATE t2 SET b=80523 WHERE a=4504; UPDATE t2 SET b=30135 WHERE a=4505; UPDATE t2 SET b=38877 WHERE a=4506; UPDATE t2 SET b=15285 WHERE a=4507; UPDATE t2 SET b=32985 WHERE a=4508; UPDATE t2 SET b=31491 WHERE a=4509; UPDATE t2 SET b=4309 WHERE a=4510; UPDATE t2 SET b=79800 WHERE a=4511; UPDATE t2 SET b=86651 WHERE a=4512; UPDATE t2 SET b=45865 WHERE a=4513; UPDATE t2 SET b=88679 WHERE a=4514; UPDATE t2 SET b=97173 WHERE a=4515; UPDATE t2 SET b=56314 WHERE a=4516; UPDATE t2 SET b=20144 WHERE a=4517; UPDATE t2 SET b=51157 WHERE a=4518; UPDATE t2 SET b=670 WHERE a=4519; UPDATE t2 SET b=74663 WHERE a=4520; UPDATE t2 SET b=29283 WHERE a=4521; UPDATE t2 SET b=86099 WHERE a=4522; UPDATE t2 SET b=15283 WHERE a=4523; UPDATE t2 SET b=9331 WHERE a=4524; UPDATE t2 SET b=97626 WHERE a=4525; UPDATE t2 SET b=36460 WHERE a=4526; UPDATE t2 SET b=91232 WHERE a=4527; UPDATE t2 SET b=19368 WHERE a=4528; UPDATE t2 SET b=14129 WHERE a=4529; UPDATE t2 SET b=53306 WHERE a=4530; UPDATE t2 SET b=57019 WHERE a=4531; UPDATE t2 SET b=11503 WHERE a=4532; UPDATE t2 SET b=55901 WHERE a=4533; UPDATE t2 SET b=2099 WHERE a=4534; UPDATE t2 SET b=27976 WHERE a=4535; UPDATE t2 SET b=27261 WHERE a=4536; UPDATE t2 SET b=55897 WHERE a=4537; UPDATE t2 SET b=56584 WHERE a=4538; UPDATE t2 SET b=87484 WHERE a=4539; UPDATE t2 SET b=28022 WHERE a=4540; UPDATE t2 SET b=48192 WHERE a=4541; UPDATE t2 SET b=89491 WHERE a=4542; UPDATE t2 SET b=3036 WHERE a=4543; UPDATE t2 SET b=22499 WHERE a=4544; UPDATE t2 SET b=76414 WHERE a=4545; UPDATE t2 SET b=1771 WHERE a=4546; UPDATE t2 SET b=22441 WHERE a=4547; UPDATE t2 SET b=31107 WHERE a=4548; UPDATE t2 SET b=32680 WHERE a=4549; UPDATE t2 SET b=21384 WHERE a=4550; UPDATE t2 SET b=8683 WHERE a=4551; UPDATE t2 SET b=32462 WHERE a=4552; UPDATE t2 SET b=52576 WHERE a=4553; UPDATE t2 SET b=38970 WHERE a=4554; UPDATE t2 SET b=30612 WHERE a=4555; UPDATE t2 SET b=22172 WHERE a=4556; UPDATE t2 SET b=51015 WHERE a=4557; UPDATE t2 SET b=35838 WHERE a=4558; UPDATE t2 SET b=37031 WHERE a=4559; UPDATE t2 SET b=38532 WHERE a=4560; UPDATE t2 SET b=2678 WHERE a=4561; UPDATE t2 SET b=80301 WHERE a=4562; UPDATE t2 SET b=13121 WHERE a=4563; UPDATE t2 SET b=84352 WHERE a=4564; UPDATE t2 SET b=23178 WHERE a=4565; UPDATE t2 SET b=70228 WHERE a=4566; UPDATE t2 SET b=97732 WHERE a=4567; UPDATE t2 SET b=81667 WHERE a=4568; UPDATE t2 SET b=89137 WHERE a=4569; UPDATE t2 SET b=73111 WHERE a=4570; UPDATE t2 SET b=91427 WHERE a=4571; UPDATE t2 SET b=28684 WHERE a=4572; UPDATE t2 SET b=40202 WHERE a=4573; UPDATE t2 SET b=93795 WHERE a=4574; UPDATE t2 SET b=79201 WHERE a=4575; UPDATE t2 SET b=42971 WHERE a=4576; UPDATE t2 SET b=66265 WHERE a=4577; UPDATE t2 SET b=26691 WHERE a=4578; UPDATE t2 SET b=91417 WHERE a=4579; UPDATE t2 SET b=47388 WHERE a=4580; UPDATE t2 SET b=53155 WHERE a=4581; UPDATE t2 SET b=51999 WHERE a=4582; UPDATE t2 SET b=24092 WHERE a=4583; UPDATE t2 SET b=50676 WHERE a=4584; UPDATE t2 SET b=44180 WHERE a=4585; UPDATE t2 SET b=93709 WHERE a=4586; UPDATE t2 SET b=26912 WHERE a=4587; UPDATE t2 SET b=1248 WHERE a=4588; UPDATE t2 SET b=98065 WHERE a=4589; UPDATE t2 SET b=41575 WHERE a=4590; UPDATE t2 SET b=92246 WHERE a=4591; UPDATE t2 SET b=29740 WHERE a=4592; UPDATE t2 SET b=17941 WHERE a=4593; UPDATE t2 SET b=48064 WHERE a=4594; UPDATE t2 SET b=90084 WHERE a=4595; UPDATE t2 SET b=15577 WHERE a=4596; UPDATE t2 SET b=30701 WHERE a=4597; UPDATE t2 SET b=46256 WHERE a=4598; UPDATE t2 SET b=94457 WHERE a=4599; UPDATE t2 SET b=81948 WHERE a=4600; UPDATE t2 SET b=93660 WHERE a=4601; UPDATE t2 SET b=41590 WHERE a=4602; UPDATE t2 SET b=63541 WHERE a=4603; UPDATE t2 SET b=99775 WHERE a=4604; UPDATE t2 SET b=66430 WHERE a=4605; UPDATE t2 SET b=91522 WHERE a=4606; UPDATE t2 SET b=12738 WHERE a=4607; UPDATE t2 SET b=4123 WHERE a=4608; UPDATE t2 SET b=89976 WHERE a=4609; UPDATE t2 SET b=80750 WHERE a=4610; UPDATE t2 SET b=58816 WHERE a=4611; UPDATE t2 SET b=2536 WHERE a=4612; UPDATE t2 SET b=23890 WHERE a=4613; UPDATE t2 SET b=3526 WHERE a=4614; UPDATE t2 SET b=20109 WHERE a=4615; UPDATE t2 SET b=3835 WHERE a=4616; UPDATE t2 SET b=98853 WHERE a=4617; UPDATE t2 SET b=80533 WHERE a=4618; UPDATE t2 SET b=2175 WHERE a=4619; UPDATE t2 SET b=15700 WHERE a=4620; UPDATE t2 SET b=57804 WHERE a=4621; UPDATE t2 SET b=99193 WHERE a=4622; UPDATE t2 SET b=95160 WHERE a=4623; UPDATE t2 SET b=27233 WHERE a=4624; UPDATE t2 SET b=1066 WHERE a=4625; UPDATE t2 SET b=82562 WHERE a=4626; UPDATE t2 SET b=78645 WHERE a=4627; UPDATE t2 SET b=76544 WHERE a=4628; UPDATE t2 SET b=92788 WHERE a=4629; UPDATE t2 SET b=7590 WHERE a=4630; UPDATE t2 SET b=1115 WHERE a=4631; UPDATE t2 SET b=90911 WHERE a=4632; UPDATE t2 SET b=62448 WHERE a=4633; UPDATE t2 SET b=79219 WHERE a=4634; UPDATE t2 SET b=86532 WHERE a=4635; UPDATE t2 SET b=16461 WHERE a=4636; UPDATE t2 SET b=90579 WHERE a=4637; UPDATE t2 SET b=42004 WHERE a=4638; UPDATE t2 SET b=94159 WHERE a=4639; UPDATE t2 SET b=9315 WHERE a=4640; UPDATE t2 SET b=39902 WHERE a=4641; UPDATE t2 SET b=45212 WHERE a=4642; UPDATE t2 SET b=58510 WHERE a=4643; UPDATE t2 SET b=19514 WHERE a=4644; UPDATE t2 SET b=77993 WHERE a=4645; UPDATE t2 SET b=94695 WHERE a=4646; UPDATE t2 SET b=14301 WHERE a=4647; UPDATE t2 SET b=94888 WHERE a=4648; UPDATE t2 SET b=22071 WHERE a=4649; UPDATE t2 SET b=38512 WHERE a=4650; UPDATE t2 SET b=15557 WHERE a=4651; UPDATE t2 SET b=7914 WHERE a=4652; UPDATE t2 SET b=68816 WHERE a=4653; UPDATE t2 SET b=75693 WHERE a=4654; UPDATE t2 SET b=61514 WHERE a=4655; UPDATE t2 SET b=33113 WHERE a=4656; UPDATE t2 SET b=93336 WHERE a=4657; UPDATE t2 SET b=76428 WHERE a=4658; UPDATE t2 SET b=43170 WHERE a=4659; UPDATE t2 SET b=88312 WHERE a=4660; UPDATE t2 SET b=98956 WHERE a=4661; UPDATE t2 SET b=95998 WHERE a=4662; UPDATE t2 SET b=23465 WHERE a=4663; UPDATE t2 SET b=36648 WHERE a=4664; UPDATE t2 SET b=95692 WHERE a=4665; UPDATE t2 SET b=23428 WHERE a=4666; UPDATE t2 SET b=77554 WHERE a=4667; UPDATE t2 SET b=71498 WHERE a=4668; UPDATE t2 SET b=59938 WHERE a=4669; UPDATE t2 SET b=85003 WHERE a=4670; UPDATE t2 SET b=77394 WHERE a=4671; UPDATE t2 SET b=84855 WHERE a=4672; UPDATE t2 SET b=87901 WHERE a=4673; UPDATE t2 SET b=9970 WHERE a=4674; UPDATE t2 SET b=72857 WHERE a=4675; UPDATE t2 SET b=19329 WHERE a=4676; UPDATE t2 SET b=76341 WHERE a=4677; UPDATE t2 SET b=82218 WHERE a=4678; UPDATE t2 SET b=95386 WHERE a=4679; UPDATE t2 SET b=10283 WHERE a=4680; UPDATE t2 SET b=91338 WHERE a=4681; UPDATE t2 SET b=63511 WHERE a=4682; UPDATE t2 SET b=99623 WHERE a=4683; UPDATE t2 SET b=56210 WHERE a=4684; UPDATE t2 SET b=38363 WHERE a=4685; UPDATE t2 SET b=94284 WHERE a=4686; UPDATE t2 SET b=85406 WHERE a=4687; UPDATE t2 SET b=57664 WHERE a=4688; UPDATE t2 SET b=88779 WHERE a=4689; UPDATE t2 SET b=92941 WHERE a=4690; UPDATE t2 SET b=93496 WHERE a=4691; UPDATE t2 SET b=2712 WHERE a=4692; UPDATE t2 SET b=94977 WHERE a=4693; UPDATE t2 SET b=4474 WHERE a=4694; UPDATE t2 SET b=33166 WHERE a=4695; UPDATE t2 SET b=79988 WHERE a=4696; UPDATE t2 SET b=72179 WHERE a=4697; UPDATE t2 SET b=93894 WHERE a=4698; UPDATE t2 SET b=96200 WHERE a=4699; UPDATE t2 SET b=3167 WHERE a=4700; UPDATE t2 SET b=73895 WHERE a=4701; UPDATE t2 SET b=92089 WHERE a=4702; UPDATE t2 SET b=67719 WHERE a=4703; UPDATE t2 SET b=3719 WHERE a=4704; UPDATE t2 SET b=50167 WHERE a=4705; UPDATE t2 SET b=11904 WHERE a=4706; UPDATE t2 SET b=8089 WHERE a=4707; UPDATE t2 SET b=7230 WHERE a=4708; UPDATE t2 SET b=1152 WHERE a=4709; UPDATE t2 SET b=99446 WHERE a=4710; UPDATE t2 SET b=77752 WHERE a=4711; UPDATE t2 SET b=35100 WHERE a=4712; UPDATE t2 SET b=66324 WHERE a=4713; UPDATE t2 SET b=92369 WHERE a=4714; UPDATE t2 SET b=94759 WHERE a=4715; UPDATE t2 SET b=97914 WHERE a=4716; UPDATE t2 SET b=85324 WHERE a=4717; UPDATE t2 SET b=31630 WHERE a=4718; UPDATE t2 SET b=12231 WHERE a=4719; UPDATE t2 SET b=73128 WHERE a=4720; UPDATE t2 SET b=2349 WHERE a=4721; UPDATE t2 SET b=8653 WHERE a=4722; UPDATE t2 SET b=64548 WHERE a=4723; UPDATE t2 SET b=46409 WHERE a=4724; UPDATE t2 SET b=22686 WHERE a=4725; UPDATE t2 SET b=87664 WHERE a=4726; UPDATE t2 SET b=63465 WHERE a=4727; UPDATE t2 SET b=67853 WHERE a=4728; UPDATE t2 SET b=97855 WHERE a=4729; UPDATE t2 SET b=43555 WHERE a=4730; UPDATE t2 SET b=55048 WHERE a=4731; UPDATE t2 SET b=21679 WHERE a=4732; UPDATE t2 SET b=32904 WHERE a=4733; UPDATE t2 SET b=8433 WHERE a=4734; UPDATE t2 SET b=29156 WHERE a=4735; UPDATE t2 SET b=47718 WHERE a=4736; UPDATE t2 SET b=53632 WHERE a=4737; UPDATE t2 SET b=54385 WHERE a=4738; UPDATE t2 SET b=295 WHERE a=4739; UPDATE t2 SET b=50617 WHERE a=4740; UPDATE t2 SET b=67084 WHERE a=4741; UPDATE t2 SET b=63010 WHERE a=4742; UPDATE t2 SET b=79089 WHERE a=4743; UPDATE t2 SET b=45216 WHERE a=4744; UPDATE t2 SET b=15864 WHERE a=4745; UPDATE t2 SET b=40051 WHERE a=4746; UPDATE t2 SET b=20126 WHERE a=4747; UPDATE t2 SET b=91092 WHERE a=4748; UPDATE t2 SET b=22392 WHERE a=4749; UPDATE t2 SET b=25380 WHERE a=4750; UPDATE t2 SET b=66844 WHERE a=4751; UPDATE t2 SET b=45143 WHERE a=4752; UPDATE t2 SET b=35455 WHERE a=4753; UPDATE t2 SET b=43687 WHERE a=4754; UPDATE t2 SET b=79594 WHERE a=4755; UPDATE t2 SET b=37978 WHERE a=4756; UPDATE t2 SET b=68812 WHERE a=4757; UPDATE t2 SET b=86226 WHERE a=4758; UPDATE t2 SET b=90555 WHERE a=4759; UPDATE t2 SET b=62433 WHERE a=4760; UPDATE t2 SET b=49356 WHERE a=4761; UPDATE t2 SET b=9397 WHERE a=4762; UPDATE t2 SET b=1652 WHERE a=4763; UPDATE t2 SET b=14174 WHERE a=4764; UPDATE t2 SET b=56936 WHERE a=4765; UPDATE t2 SET b=98659 WHERE a=4766; UPDATE t2 SET b=8100 WHERE a=4767; UPDATE t2 SET b=87777 WHERE a=4768; UPDATE t2 SET b=78187 WHERE a=4769; UPDATE t2 SET b=88844 WHERE a=4770; UPDATE t2 SET b=9276 WHERE a=4771; UPDATE t2 SET b=40236 WHERE a=4772; UPDATE t2 SET b=64424 WHERE a=4773; UPDATE t2 SET b=60657 WHERE a=4774; UPDATE t2 SET b=11758 WHERE a=4775; UPDATE t2 SET b=24701 WHERE a=4776; UPDATE t2 SET b=54816 WHERE a=4777; UPDATE t2 SET b=72769 WHERE a=4778; UPDATE t2 SET b=85302 WHERE a=4779; UPDATE t2 SET b=52819 WHERE a=4780; UPDATE t2 SET b=51867 WHERE a=4781; UPDATE t2 SET b=42317 WHERE a=4782; UPDATE t2 SET b=33582 WHERE a=4783; UPDATE t2 SET b=54191 WHERE a=4784; UPDATE t2 SET b=87104 WHERE a=4785; UPDATE t2 SET b=76729 WHERE a=4786; UPDATE t2 SET b=10804 WHERE a=4787; UPDATE t2 SET b=75548 WHERE a=4788; UPDATE t2 SET b=19189 WHERE a=4789; UPDATE t2 SET b=61107 WHERE a=4790; UPDATE t2 SET b=55198 WHERE a=4791; UPDATE t2 SET b=81839 WHERE a=4792; UPDATE t2 SET b=81254 WHERE a=4793; UPDATE t2 SET b=52546 WHERE a=4794; UPDATE t2 SET b=91428 WHERE a=4795; UPDATE t2 SET b=33574 WHERE a=4796; UPDATE t2 SET b=59071 WHERE a=4797; UPDATE t2 SET b=47313 WHERE a=4798; UPDATE t2 SET b=15644 WHERE a=4799; UPDATE t2 SET b=40805 WHERE a=4800; UPDATE t2 SET b=52029 WHERE a=4801; UPDATE t2 SET b=49052 WHERE a=4802; UPDATE t2 SET b=50935 WHERE a=4803; UPDATE t2 SET b=36843 WHERE a=4804; UPDATE t2 SET b=57401 WHERE a=4805; UPDATE t2 SET b=70128 WHERE a=4806; UPDATE t2 SET b=95905 WHERE a=4807; UPDATE t2 SET b=42884 WHERE a=4808; UPDATE t2 SET b=21957 WHERE a=4809; UPDATE t2 SET b=4124 WHERE a=4810; UPDATE t2 SET b=57076 WHERE a=4811; UPDATE t2 SET b=27014 WHERE a=4812; UPDATE t2 SET b=12550 WHERE a=4813; UPDATE t2 SET b=11984 WHERE a=4814; UPDATE t2 SET b=8371 WHERE a=4815; UPDATE t2 SET b=27287 WHERE a=4816; UPDATE t2 SET b=31629 WHERE a=4817; UPDATE t2 SET b=97743 WHERE a=4818; UPDATE t2 SET b=53655 WHERE a=4819; UPDATE t2 SET b=44218 WHERE a=4820; UPDATE t2 SET b=15554 WHERE a=4821; UPDATE t2 SET b=23786 WHERE a=4822; UPDATE t2 SET b=43885 WHERE a=4823; UPDATE t2 SET b=51766 WHERE a=4824; UPDATE t2 SET b=60268 WHERE a=4825; UPDATE t2 SET b=16791 WHERE a=4826; UPDATE t2 SET b=99592 WHERE a=4827; UPDATE t2 SET b=3953 WHERE a=4828; UPDATE t2 SET b=72121 WHERE a=4829; UPDATE t2 SET b=2295 WHERE a=4830; UPDATE t2 SET b=25012 WHERE a=4831; UPDATE t2 SET b=41329 WHERE a=4832; UPDATE t2 SET b=79872 WHERE a=4833; UPDATE t2 SET b=69443 WHERE a=4834; UPDATE t2 SET b=96777 WHERE a=4835; UPDATE t2 SET b=16836 WHERE a=4836; UPDATE t2 SET b=20294 WHERE a=4837; UPDATE t2 SET b=28443 WHERE a=4838; UPDATE t2 SET b=34405 WHERE a=4839; UPDATE t2 SET b=34846 WHERE a=4840; UPDATE t2 SET b=28199 WHERE a=4841; UPDATE t2 SET b=56788 WHERE a=4842; UPDATE t2 SET b=47846 WHERE a=4843; UPDATE t2 SET b=96351 WHERE a=4844; UPDATE t2 SET b=32727 WHERE a=4845; UPDATE t2 SET b=79867 WHERE a=4846; UPDATE t2 SET b=85247 WHERE a=4847; UPDATE t2 SET b=7135 WHERE a=4848; UPDATE t2 SET b=37387 WHERE a=4849; UPDATE t2 SET b=49526 WHERE a=4850; UPDATE t2 SET b=84675 WHERE a=4851; UPDATE t2 SET b=23698 WHERE a=4852; UPDATE t2 SET b=16589 WHERE a=4853; UPDATE t2 SET b=51270 WHERE a=4854; UPDATE t2 SET b=45273 WHERE a=4855; UPDATE t2 SET b=13909 WHERE a=4856; UPDATE t2 SET b=78713 WHERE a=4857; UPDATE t2 SET b=15552 WHERE a=4858; UPDATE t2 SET b=52339 WHERE a=4859; UPDATE t2 SET b=53470 WHERE a=4860; UPDATE t2 SET b=3807 WHERE a=4861; UPDATE t2 SET b=11373 WHERE a=4862; UPDATE t2 SET b=98962 WHERE a=4863; UPDATE t2 SET b=11390 WHERE a=4864; UPDATE t2 SET b=83475 WHERE a=4865; UPDATE t2 SET b=75309 WHERE a=4866; UPDATE t2 SET b=8820 WHERE a=4867; UPDATE t2 SET b=17729 WHERE a=4868; UPDATE t2 SET b=74187 WHERE a=4869; UPDATE t2 SET b=16657 WHERE a=4870; UPDATE t2 SET b=47984 WHERE a=4871; UPDATE t2 SET b=60926 WHERE a=4872; UPDATE t2 SET b=84774 WHERE a=4873; UPDATE t2 SET b=17744 WHERE a=4874; UPDATE t2 SET b=91576 WHERE a=4875; UPDATE t2 SET b=99317 WHERE a=4876; UPDATE t2 SET b=1988 WHERE a=4877; UPDATE t2 SET b=19702 WHERE a=4878; UPDATE t2 SET b=48481 WHERE a=4879; UPDATE t2 SET b=81794 WHERE a=4880; UPDATE t2 SET b=77376 WHERE a=4881; UPDATE t2 SET b=82353 WHERE a=4882; UPDATE t2 SET b=2966 WHERE a=4883; UPDATE t2 SET b=37564 WHERE a=4884; UPDATE t2 SET b=24446 WHERE a=4885; UPDATE t2 SET b=96863 WHERE a=4886; UPDATE t2 SET b=59073 WHERE a=4887; UPDATE t2 SET b=18174 WHERE a=4888; UPDATE t2 SET b=18655 WHERE a=4889; UPDATE t2 SET b=92766 WHERE a=4890; UPDATE t2 SET b=75507 WHERE a=4891; UPDATE t2 SET b=60629 WHERE a=4892; UPDATE t2 SET b=83029 WHERE a=4893; UPDATE t2 SET b=83210 WHERE a=4894; UPDATE t2 SET b=33416 WHERE a=4895; UPDATE t2 SET b=96472 WHERE a=4896; UPDATE t2 SET b=18183 WHERE a=4897; UPDATE t2 SET b=41350 WHERE a=4898; UPDATE t2 SET b=587 WHERE a=4899; UPDATE t2 SET b=65961 WHERE a=4900; UPDATE t2 SET b=20601 WHERE a=4901; UPDATE t2 SET b=37344 WHERE a=4902; UPDATE t2 SET b=14702 WHERE a=4903; UPDATE t2 SET b=70297 WHERE a=4904; UPDATE t2 SET b=28005 WHERE a=4905; UPDATE t2 SET b=73633 WHERE a=4906; UPDATE t2 SET b=96826 WHERE a=4907; UPDATE t2 SET b=74835 WHERE a=4908; UPDATE t2 SET b=59202 WHERE a=4909; UPDATE t2 SET b=72113 WHERE a=4910; UPDATE t2 SET b=94937 WHERE a=4911; UPDATE t2 SET b=46741 WHERE a=4912; UPDATE t2 SET b=11544 WHERE a=4913; UPDATE t2 SET b=19135 WHERE a=4914; UPDATE t2 SET b=97493 WHERE a=4915; UPDATE t2 SET b=58598 WHERE a=4916; UPDATE t2 SET b=90347 WHERE a=4917; UPDATE t2 SET b=61052 WHERE a=4918; UPDATE t2 SET b=25192 WHERE a=4919; UPDATE t2 SET b=55254 WHERE a=4920; UPDATE t2 SET b=70919 WHERE a=4921; UPDATE t2 SET b=65699 WHERE a=4922; UPDATE t2 SET b=30013 WHERE a=4923; UPDATE t2 SET b=46484 WHERE a=4924; UPDATE t2 SET b=58979 WHERE a=4925; UPDATE t2 SET b=86335 WHERE a=4926; UPDATE t2 SET b=22839 WHERE a=4927; UPDATE t2 SET b=81616 WHERE a=4928; UPDATE t2 SET b=53423 WHERE a=4929; UPDATE t2 SET b=20402 WHERE a=4930; UPDATE t2 SET b=27791 WHERE a=4931; UPDATE t2 SET b=44321 WHERE a=4932; UPDATE t2 SET b=69097 WHERE a=4933; UPDATE t2 SET b=21124 WHERE a=4934; UPDATE t2 SET b=30633 WHERE a=4935; UPDATE t2 SET b=73736 WHERE a=4936; UPDATE t2 SET b=2723 WHERE a=4937; UPDATE t2 SET b=28673 WHERE a=4938; UPDATE t2 SET b=75227 WHERE a=4939; UPDATE t2 SET b=52086 WHERE a=4940; UPDATE t2 SET b=21822 WHERE a=4941; UPDATE t2 SET b=28309 WHERE a=4942; UPDATE t2 SET b=41740 WHERE a=4943; UPDATE t2 SET b=63965 WHERE a=4944; UPDATE t2 SET b=76552 WHERE a=4945; UPDATE t2 SET b=19187 WHERE a=4946; UPDATE t2 SET b=84148 WHERE a=4947; UPDATE t2 SET b=46556 WHERE a=4948; UPDATE t2 SET b=9990 WHERE a=4949; UPDATE t2 SET b=26424 WHERE a=4950; UPDATE t2 SET b=20277 WHERE a=4951; UPDATE t2 SET b=90304 WHERE a=4952; UPDATE t2 SET b=78813 WHERE a=4953; UPDATE t2 SET b=41017 WHERE a=4954; UPDATE t2 SET b=38879 WHERE a=4955; UPDATE t2 SET b=18997 WHERE a=4956; UPDATE t2 SET b=78506 WHERE a=4957; UPDATE t2 SET b=15049 WHERE a=4958; UPDATE t2 SET b=80989 WHERE a=4959; UPDATE t2 SET b=54887 WHERE a=4960; UPDATE t2 SET b=98406 WHERE a=4961; UPDATE t2 SET b=10777 WHERE a=4962; UPDATE t2 SET b=70548 WHERE a=4963; UPDATE t2 SET b=75341 WHERE a=4964; UPDATE t2 SET b=92936 WHERE a=4965; UPDATE t2 SET b=56489 WHERE a=4966; UPDATE t2 SET b=44376 WHERE a=4967; UPDATE t2 SET b=74966 WHERE a=4968; UPDATE t2 SET b=65774 WHERE a=4969; UPDATE t2 SET b=54681 WHERE a=4970; UPDATE t2 SET b=59028 WHERE a=4971; UPDATE t2 SET b=94430 WHERE a=4972; UPDATE t2 SET b=4751 WHERE a=4973; UPDATE t2 SET b=91973 WHERE a=4974; UPDATE t2 SET b=25443 WHERE a=4975; UPDATE t2 SET b=54266 WHERE a=4976; UPDATE t2 SET b=26737 WHERE a=4977; UPDATE t2 SET b=29163 WHERE a=4978; UPDATE t2 SET b=86004 WHERE a=4979; UPDATE t2 SET b=7129 WHERE a=4980; UPDATE t2 SET b=56063 WHERE a=4981; UPDATE t2 SET b=95301 WHERE a=4982; UPDATE t2 SET b=12717 WHERE a=4983; UPDATE t2 SET b=19377 WHERE a=4984; UPDATE t2 SET b=20622 WHERE a=4985; UPDATE t2 SET b=41126 WHERE a=4986; UPDATE t2 SET b=8994 WHERE a=4987; UPDATE t2 SET b=16290 WHERE a=4988; UPDATE t2 SET b=56873 WHERE a=4989; UPDATE t2 SET b=26124 WHERE a=4990; UPDATE t2 SET b=61311 WHERE a=4991; UPDATE t2 SET b=8432 WHERE a=4992; UPDATE t2 SET b=32958 WHERE a=4993; UPDATE t2 SET b=93549 WHERE a=4994; UPDATE t2 SET b=88900 WHERE a=4995; UPDATE t2 SET b=39857 WHERE a=4996; UPDATE t2 SET b=86239 WHERE a=4997; UPDATE t2 SET b=8619 WHERE a=4998; UPDATE t2 SET b=55492 WHERE a=4999; UPDATE t2 SET b=57990 WHERE a=5000; UPDATE t2 SET b=25619 WHERE a=5001; UPDATE t2 SET b=25022 WHERE a=5002; UPDATE t2 SET b=57376 WHERE a=5003; UPDATE t2 SET b=54472 WHERE a=5004; UPDATE t2 SET b=34405 WHERE a=5005; UPDATE t2 SET b=13789 WHERE a=5006; UPDATE t2 SET b=99855 WHERE a=5007; UPDATE t2 SET b=10602 WHERE a=5008; UPDATE t2 SET b=87857 WHERE a=5009; UPDATE t2 SET b=78527 WHERE a=5010; UPDATE t2 SET b=72815 WHERE a=5011; UPDATE t2 SET b=17843 WHERE a=5012; UPDATE t2 SET b=83820 WHERE a=5013; UPDATE t2 SET b=81568 WHERE a=5014; UPDATE t2 SET b=98705 WHERE a=5015; UPDATE t2 SET b=5444 WHERE a=5016; UPDATE t2 SET b=20816 WHERE a=5017; UPDATE t2 SET b=73902 WHERE a=5018; UPDATE t2 SET b=19182 WHERE a=5019; UPDATE t2 SET b=35941 WHERE a=5020; UPDATE t2 SET b=91336 WHERE a=5021; UPDATE t2 SET b=52713 WHERE a=5022; UPDATE t2 SET b=30661 WHERE a=5023; UPDATE t2 SET b=9194 WHERE a=5024; UPDATE t2 SET b=85384 WHERE a=5025; UPDATE t2 SET b=46210 WHERE a=5026; UPDATE t2 SET b=62577 WHERE a=5027; UPDATE t2 SET b=86329 WHERE a=5028; UPDATE t2 SET b=59558 WHERE a=5029; UPDATE t2 SET b=48356 WHERE a=5030; UPDATE t2 SET b=88502 WHERE a=5031; UPDATE t2 SET b=14425 WHERE a=5032; UPDATE t2 SET b=41399 WHERE a=5033; UPDATE t2 SET b=87182 WHERE a=5034; UPDATE t2 SET b=76092 WHERE a=5035; UPDATE t2 SET b=26377 WHERE a=5036; UPDATE t2 SET b=95600 WHERE a=5037; UPDATE t2 SET b=87470 WHERE a=5038; UPDATE t2 SET b=61087 WHERE a=5039; UPDATE t2 SET b=35259 WHERE a=5040; UPDATE t2 SET b=39942 WHERE a=5041; UPDATE t2 SET b=5102 WHERE a=5042; UPDATE t2 SET b=77843 WHERE a=5043; UPDATE t2 SET b=9192 WHERE a=5044; UPDATE t2 SET b=85718 WHERE a=5045; UPDATE t2 SET b=86413 WHERE a=5046; UPDATE t2 SET b=36616 WHERE a=5047; UPDATE t2 SET b=21581 WHERE a=5048; UPDATE t2 SET b=7808 WHERE a=5049; UPDATE t2 SET b=20617 WHERE a=5050; UPDATE t2 SET b=8253 WHERE a=5051; UPDATE t2 SET b=59989 WHERE a=5052; UPDATE t2 SET b=6316 WHERE a=5053; UPDATE t2 SET b=69699 WHERE a=5054; UPDATE t2 SET b=89858 WHERE a=5055; UPDATE t2 SET b=11136 WHERE a=5056; UPDATE t2 SET b=48839 WHERE a=5057; UPDATE t2 SET b=1640 WHERE a=5058; UPDATE t2 SET b=58332 WHERE a=5059; UPDATE t2 SET b=55753 WHERE a=5060; UPDATE t2 SET b=79616 WHERE a=5061; UPDATE t2 SET b=19705 WHERE a=5062; UPDATE t2 SET b=77312 WHERE a=5063; UPDATE t2 SET b=5141 WHERE a=5064; UPDATE t2 SET b=98667 WHERE a=5065; UPDATE t2 SET b=28122 WHERE a=5066; UPDATE t2 SET b=37955 WHERE a=5067; UPDATE t2 SET b=70960 WHERE a=5068; UPDATE t2 SET b=72626 WHERE a=5069; UPDATE t2 SET b=36916 WHERE a=5070; UPDATE t2 SET b=20821 WHERE a=5071; UPDATE t2 SET b=77772 WHERE a=5072; UPDATE t2 SET b=99443 WHERE a=5073; UPDATE t2 SET b=84513 WHERE a=5074; UPDATE t2 SET b=79673 WHERE a=5075; UPDATE t2 SET b=76516 WHERE a=5076; UPDATE t2 SET b=87800 WHERE a=5077; UPDATE t2 SET b=39367 WHERE a=5078; UPDATE t2 SET b=58530 WHERE a=5079; UPDATE t2 SET b=94022 WHERE a=5080; UPDATE t2 SET b=7694 WHERE a=5081; UPDATE t2 SET b=71921 WHERE a=5082; UPDATE t2 SET b=77566 WHERE a=5083; UPDATE t2 SET b=21777 WHERE a=5084; UPDATE t2 SET b=17542 WHERE a=5085; UPDATE t2 SET b=74204 WHERE a=5086; UPDATE t2 SET b=76369 WHERE a=5087; UPDATE t2 SET b=81555 WHERE a=5088; UPDATE t2 SET b=77620 WHERE a=5089; UPDATE t2 SET b=59110 WHERE a=5090; UPDATE t2 SET b=72801 WHERE a=5091; UPDATE t2 SET b=66412 WHERE a=5092; UPDATE t2 SET b=28345 WHERE a=5093; UPDATE t2 SET b=17342 WHERE a=5094; UPDATE t2 SET b=77128 WHERE a=5095; UPDATE t2 SET b=40058 WHERE a=5096; UPDATE t2 SET b=69325 WHERE a=5097; UPDATE t2 SET b=64114 WHERE a=5098; UPDATE t2 SET b=54907 WHERE a=5099; UPDATE t2 SET b=42334 WHERE a=5100; UPDATE t2 SET b=28999 WHERE a=5101; UPDATE t2 SET b=59319 WHERE a=5102; UPDATE t2 SET b=48257 WHERE a=5103; UPDATE t2 SET b=65314 WHERE a=5104; UPDATE t2 SET b=61221 WHERE a=5105; UPDATE t2 SET b=28620 WHERE a=5106; UPDATE t2 SET b=44678 WHERE a=5107; UPDATE t2 SET b=61303 WHERE a=5108; UPDATE t2 SET b=84180 WHERE a=5109; UPDATE t2 SET b=98754 WHERE a=5110; UPDATE t2 SET b=41036 WHERE a=5111; UPDATE t2 SET b=41463 WHERE a=5112; UPDATE t2 SET b=63185 WHERE a=5113; UPDATE t2 SET b=64259 WHERE a=5114; UPDATE t2 SET b=46136 WHERE a=5115; UPDATE t2 SET b=12477 WHERE a=5116; UPDATE t2 SET b=96005 WHERE a=5117; UPDATE t2 SET b=69154 WHERE a=5118; UPDATE t2 SET b=21100 WHERE a=5119; UPDATE t2 SET b=11655 WHERE a=5120; UPDATE t2 SET b=89170 WHERE a=5121; UPDATE t2 SET b=44183 WHERE a=5122; UPDATE t2 SET b=69063 WHERE a=5123; UPDATE t2 SET b=45475 WHERE a=5124; UPDATE t2 SET b=72207 WHERE a=5125; UPDATE t2 SET b=2509 WHERE a=5126; UPDATE t2 SET b=14225 WHERE a=5127; UPDATE t2 SET b=47628 WHERE a=5128; UPDATE t2 SET b=77360 WHERE a=5129; UPDATE t2 SET b=88044 WHERE a=5130; UPDATE t2 SET b=58000 WHERE a=5131; UPDATE t2 SET b=50598 WHERE a=5132; UPDATE t2 SET b=2153 WHERE a=5133; UPDATE t2 SET b=22178 WHERE a=5134; UPDATE t2 SET b=1516 WHERE a=5135; UPDATE t2 SET b=10836 WHERE a=5136; UPDATE t2 SET b=20152 WHERE a=5137; UPDATE t2 SET b=21947 WHERE a=5138; UPDATE t2 SET b=7497 WHERE a=5139; UPDATE t2 SET b=16539 WHERE a=5140; UPDATE t2 SET b=85135 WHERE a=5141; UPDATE t2 SET b=97858 WHERE a=5142; UPDATE t2 SET b=88011 WHERE a=5143; UPDATE t2 SET b=14111 WHERE a=5144; UPDATE t2 SET b=15746 WHERE a=5145; UPDATE t2 SET b=19151 WHERE a=5146; UPDATE t2 SET b=23347 WHERE a=5147; UPDATE t2 SET b=78152 WHERE a=5148; UPDATE t2 SET b=84243 WHERE a=5149; UPDATE t2 SET b=86449 WHERE a=5150; UPDATE t2 SET b=85648 WHERE a=5151; UPDATE t2 SET b=54662 WHERE a=5152; UPDATE t2 SET b=3973 WHERE a=5153; UPDATE t2 SET b=88992 WHERE a=5154; UPDATE t2 SET b=35008 WHERE a=5155; UPDATE t2 SET b=81189 WHERE a=5156; UPDATE t2 SET b=49744 WHERE a=5157; UPDATE t2 SET b=86233 WHERE a=5158; UPDATE t2 SET b=59104 WHERE a=5159; UPDATE t2 SET b=51150 WHERE a=5160; UPDATE t2 SET b=94176 WHERE a=5161; UPDATE t2 SET b=29816 WHERE a=5162; UPDATE t2 SET b=47059 WHERE a=5163; UPDATE t2 SET b=5515 WHERE a=5164; UPDATE t2 SET b=88969 WHERE a=5165; UPDATE t2 SET b=66408 WHERE a=5166; UPDATE t2 SET b=41615 WHERE a=5167; UPDATE t2 SET b=54246 WHERE a=5168; UPDATE t2 SET b=52858 WHERE a=5169; UPDATE t2 SET b=72422 WHERE a=5170; UPDATE t2 SET b=93315 WHERE a=5171; UPDATE t2 SET b=27528 WHERE a=5172; UPDATE t2 SET b=45273 WHERE a=5173; UPDATE t2 SET b=66670 WHERE a=5174; UPDATE t2 SET b=73266 WHERE a=5175; UPDATE t2 SET b=45124 WHERE a=5176; UPDATE t2 SET b=27264 WHERE a=5177; UPDATE t2 SET b=4510 WHERE a=5178; UPDATE t2 SET b=27667 WHERE a=5179; UPDATE t2 SET b=60306 WHERE a=5180; UPDATE t2 SET b=88400 WHERE a=5181; UPDATE t2 SET b=55738 WHERE a=5182; UPDATE t2 SET b=2886 WHERE a=5183; UPDATE t2 SET b=51080 WHERE a=5184; UPDATE t2 SET b=78041 WHERE a=5185; UPDATE t2 SET b=79699 WHERE a=5186; UPDATE t2 SET b=40774 WHERE a=5187; UPDATE t2 SET b=631 WHERE a=5188; UPDATE t2 SET b=48173 WHERE a=5189; UPDATE t2 SET b=49435 WHERE a=5190; UPDATE t2 SET b=69632 WHERE a=5191; UPDATE t2 SET b=56753 WHERE a=5192; UPDATE t2 SET b=33564 WHERE a=5193; UPDATE t2 SET b=72742 WHERE a=5194; UPDATE t2 SET b=51550 WHERE a=5195; UPDATE t2 SET b=86233 WHERE a=5196; UPDATE t2 SET b=95170 WHERE a=5197; UPDATE t2 SET b=26876 WHERE a=5198; UPDATE t2 SET b=2149 WHERE a=5199; UPDATE t2 SET b=81537 WHERE a=5200; UPDATE t2 SET b=27048 WHERE a=5201; UPDATE t2 SET b=40360 WHERE a=5202; UPDATE t2 SET b=8957 WHERE a=5203; UPDATE t2 SET b=26834 WHERE a=5204; UPDATE t2 SET b=49449 WHERE a=5205; UPDATE t2 SET b=25770 WHERE a=5206; UPDATE t2 SET b=57169 WHERE a=5207; UPDATE t2 SET b=9122 WHERE a=5208; UPDATE t2 SET b=11176 WHERE a=5209; UPDATE t2 SET b=58720 WHERE a=5210; UPDATE t2 SET b=81339 WHERE a=5211; UPDATE t2 SET b=76978 WHERE a=5212; UPDATE t2 SET b=69658 WHERE a=5213; UPDATE t2 SET b=79841 WHERE a=5214; UPDATE t2 SET b=11675 WHERE a=5215; UPDATE t2 SET b=71896 WHERE a=5216; UPDATE t2 SET b=69546 WHERE a=5217; UPDATE t2 SET b=96379 WHERE a=5218; UPDATE t2 SET b=92153 WHERE a=5219; UPDATE t2 SET b=36393 WHERE a=5220; UPDATE t2 SET b=44759 WHERE a=5221; UPDATE t2 SET b=23378 WHERE a=5222; UPDATE t2 SET b=10621 WHERE a=5223; UPDATE t2 SET b=55844 WHERE a=5224; UPDATE t2 SET b=36769 WHERE a=5225; UPDATE t2 SET b=33528 WHERE a=5226; UPDATE t2 SET b=23561 WHERE a=5227; UPDATE t2 SET b=51325 WHERE a=5228; UPDATE t2 SET b=93409 WHERE a=5229; UPDATE t2 SET b=57265 WHERE a=5230; UPDATE t2 SET b=8042 WHERE a=5231; UPDATE t2 SET b=8388 WHERE a=5232; UPDATE t2 SET b=62176 WHERE a=5233; UPDATE t2 SET b=9434 WHERE a=5234; UPDATE t2 SET b=49933 WHERE a=5235; UPDATE t2 SET b=80101 WHERE a=5236; UPDATE t2 SET b=17365 WHERE a=5237; UPDATE t2 SET b=75644 WHERE a=5238; UPDATE t2 SET b=13560 WHERE a=5239; UPDATE t2 SET b=72212 WHERE a=5240; UPDATE t2 SET b=44764 WHERE a=5241; UPDATE t2 SET b=9930 WHERE a=5242; UPDATE t2 SET b=17121 WHERE a=5243; UPDATE t2 SET b=52537 WHERE a=5244; UPDATE t2 SET b=22526 WHERE a=5245; UPDATE t2 SET b=55831 WHERE a=5246; UPDATE t2 SET b=76535 WHERE a=5247; UPDATE t2 SET b=96591 WHERE a=5248; UPDATE t2 SET b=29309 WHERE a=5249; UPDATE t2 SET b=3804 WHERE a=5250; UPDATE t2 SET b=6865 WHERE a=5251; UPDATE t2 SET b=94179 WHERE a=5252; UPDATE t2 SET b=28480 WHERE a=5253; UPDATE t2 SET b=15057 WHERE a=5254; UPDATE t2 SET b=95597 WHERE a=5255; UPDATE t2 SET b=5180 WHERE a=5256; UPDATE t2 SET b=7590 WHERE a=5257; UPDATE t2 SET b=8325 WHERE a=5258; UPDATE t2 SET b=86972 WHERE a=5259; UPDATE t2 SET b=20257 WHERE a=5260; UPDATE t2 SET b=9446 WHERE a=5261; UPDATE t2 SET b=75812 WHERE a=5262; UPDATE t2 SET b=27343 WHERE a=5263; UPDATE t2 SET b=17522 WHERE a=5264; UPDATE t2 SET b=91714 WHERE a=5265; UPDATE t2 SET b=38230 WHERE a=5266; UPDATE t2 SET b=95715 WHERE a=5267; UPDATE t2 SET b=26351 WHERE a=5268; UPDATE t2 SET b=10970 WHERE a=5269; UPDATE t2 SET b=77812 WHERE a=5270; UPDATE t2 SET b=38335 WHERE a=5271; UPDATE t2 SET b=42737 WHERE a=5272; UPDATE t2 SET b=25818 WHERE a=5273; UPDATE t2 SET b=14535 WHERE a=5274; UPDATE t2 SET b=15591 WHERE a=5275; UPDATE t2 SET b=11255 WHERE a=5276; UPDATE t2 SET b=91199 WHERE a=5277; UPDATE t2 SET b=78822 WHERE a=5278; UPDATE t2 SET b=80718 WHERE a=5279; UPDATE t2 SET b=62296 WHERE a=5280; UPDATE t2 SET b=39778 WHERE a=5281; UPDATE t2 SET b=92055 WHERE a=5282; UPDATE t2 SET b=89861 WHERE a=5283; UPDATE t2 SET b=71693 WHERE a=5284; UPDATE t2 SET b=22922 WHERE a=5285; UPDATE t2 SET b=5170 WHERE a=5286; UPDATE t2 SET b=69061 WHERE a=5287; UPDATE t2 SET b=14735 WHERE a=5288; UPDATE t2 SET b=72648 WHERE a=5289; UPDATE t2 SET b=67291 WHERE a=5290; UPDATE t2 SET b=81093 WHERE a=5291; UPDATE t2 SET b=60678 WHERE a=5292; UPDATE t2 SET b=55458 WHERE a=5293; UPDATE t2 SET b=64738 WHERE a=5294; UPDATE t2 SET b=27058 WHERE a=5295; UPDATE t2 SET b=26585 WHERE a=5296; UPDATE t2 SET b=83523 WHERE a=5297; UPDATE t2 SET b=88238 WHERE a=5298; UPDATE t2 SET b=74011 WHERE a=5299; UPDATE t2 SET b=38582 WHERE a=5300; UPDATE t2 SET b=41149 WHERE a=5301; UPDATE t2 SET b=54883 WHERE a=5302; UPDATE t2 SET b=90922 WHERE a=5303; UPDATE t2 SET b=99319 WHERE a=5304; UPDATE t2 SET b=94594 WHERE a=5305; UPDATE t2 SET b=31881 WHERE a=5306; UPDATE t2 SET b=31403 WHERE a=5307; UPDATE t2 SET b=76550 WHERE a=5308; UPDATE t2 SET b=64838 WHERE a=5309; UPDATE t2 SET b=42652 WHERE a=5310; UPDATE t2 SET b=34082 WHERE a=5311; UPDATE t2 SET b=56892 WHERE a=5312; UPDATE t2 SET b=85019 WHERE a=5313; UPDATE t2 SET b=9724 WHERE a=5314; UPDATE t2 SET b=52565 WHERE a=5315; UPDATE t2 SET b=88248 WHERE a=5316; UPDATE t2 SET b=50166 WHERE a=5317; UPDATE t2 SET b=58262 WHERE a=5318; UPDATE t2 SET b=13748 WHERE a=5319; UPDATE t2 SET b=81288 WHERE a=5320; UPDATE t2 SET b=26003 WHERE a=5321; UPDATE t2 SET b=99619 WHERE a=5322; UPDATE t2 SET b=84887 WHERE a=5323; UPDATE t2 SET b=466 WHERE a=5324; UPDATE t2 SET b=81538 WHERE a=5325; UPDATE t2 SET b=84358 WHERE a=5326; UPDATE t2 SET b=95365 WHERE a=5327; UPDATE t2 SET b=48377 WHERE a=5328; UPDATE t2 SET b=3639 WHERE a=5329; UPDATE t2 SET b=88274 WHERE a=5330; UPDATE t2 SET b=42446 WHERE a=5331; UPDATE t2 SET b=78751 WHERE a=5332; UPDATE t2 SET b=36782 WHERE a=5333; UPDATE t2 SET b=89498 WHERE a=5334; UPDATE t2 SET b=29537 WHERE a=5335; UPDATE t2 SET b=65223 WHERE a=5336; UPDATE t2 SET b=2971 WHERE a=5337; UPDATE t2 SET b=21896 WHERE a=5338; UPDATE t2 SET b=92523 WHERE a=5339; UPDATE t2 SET b=1772 WHERE a=5340; UPDATE t2 SET b=57008 WHERE a=5341; UPDATE t2 SET b=27199 WHERE a=5342; UPDATE t2 SET b=75827 WHERE a=5343; UPDATE t2 SET b=40819 WHERE a=5344; UPDATE t2 SET b=71507 WHERE a=5345; UPDATE t2 SET b=74291 WHERE a=5346; UPDATE t2 SET b=87099 WHERE a=5347; UPDATE t2 SET b=8148 WHERE a=5348; UPDATE t2 SET b=21704 WHERE a=5349; UPDATE t2 SET b=21176 WHERE a=5350; UPDATE t2 SET b=52116 WHERE a=5351; UPDATE t2 SET b=56973 WHERE a=5352; UPDATE t2 SET b=7747 WHERE a=5353; UPDATE t2 SET b=54254 WHERE a=5354; UPDATE t2 SET b=9128 WHERE a=5355; UPDATE t2 SET b=28287 WHERE a=5356; UPDATE t2 SET b=82994 WHERE a=5357; UPDATE t2 SET b=9088 WHERE a=5358; UPDATE t2 SET b=29339 WHERE a=5359; UPDATE t2 SET b=97258 WHERE a=5360; UPDATE t2 SET b=40082 WHERE a=5361; UPDATE t2 SET b=83520 WHERE a=5362; UPDATE t2 SET b=77109 WHERE a=5363; UPDATE t2 SET b=47883 WHERE a=5364; UPDATE t2 SET b=17162 WHERE a=5365; UPDATE t2 SET b=48899 WHERE a=5366; UPDATE t2 SET b=53919 WHERE a=5367; UPDATE t2 SET b=39671 WHERE a=5368; UPDATE t2 SET b=43801 WHERE a=5369; UPDATE t2 SET b=42124 WHERE a=5370; UPDATE t2 SET b=99924 WHERE a=5371; UPDATE t2 SET b=2976 WHERE a=5372; UPDATE t2 SET b=10266 WHERE a=5373; UPDATE t2 SET b=41423 WHERE a=5374; UPDATE t2 SET b=70369 WHERE a=5375; UPDATE t2 SET b=74126 WHERE a=5376; UPDATE t2 SET b=26162 WHERE a=5377; UPDATE t2 SET b=68805 WHERE a=5378; UPDATE t2 SET b=27169 WHERE a=5379; UPDATE t2 SET b=53553 WHERE a=5380; UPDATE t2 SET b=7308 WHERE a=5381; UPDATE t2 SET b=44857 WHERE a=5382; UPDATE t2 SET b=84946 WHERE a=5383; UPDATE t2 SET b=90624 WHERE a=5384; UPDATE t2 SET b=52786 WHERE a=5385; UPDATE t2 SET b=30633 WHERE a=5386; UPDATE t2 SET b=23658 WHERE a=5387; UPDATE t2 SET b=70788 WHERE a=5388; UPDATE t2 SET b=87714 WHERE a=5389; UPDATE t2 SET b=84752 WHERE a=5390; UPDATE t2 SET b=20818 WHERE a=5391; UPDATE t2 SET b=88184 WHERE a=5392; UPDATE t2 SET b=1976 WHERE a=5393; UPDATE t2 SET b=58792 WHERE a=5394; UPDATE t2 SET b=38603 WHERE a=5395; UPDATE t2 SET b=53550 WHERE a=5396; UPDATE t2 SET b=61609 WHERE a=5397; UPDATE t2 SET b=86039 WHERE a=5398; UPDATE t2 SET b=92769 WHERE a=5399; UPDATE t2 SET b=22547 WHERE a=5400; UPDATE t2 SET b=6617 WHERE a=5401; UPDATE t2 SET b=20210 WHERE a=5402; UPDATE t2 SET b=41303 WHERE a=5403; UPDATE t2 SET b=52986 WHERE a=5404; UPDATE t2 SET b=52845 WHERE a=5405; UPDATE t2 SET b=63342 WHERE a=5406; UPDATE t2 SET b=99936 WHERE a=5407; UPDATE t2 SET b=99957 WHERE a=5408; UPDATE t2 SET b=30118 WHERE a=5409; UPDATE t2 SET b=36790 WHERE a=5410; UPDATE t2 SET b=86258 WHERE a=5411; UPDATE t2 SET b=76716 WHERE a=5412; UPDATE t2 SET b=81112 WHERE a=5413; UPDATE t2 SET b=6703 WHERE a=5414; UPDATE t2 SET b=67630 WHERE a=5415; UPDATE t2 SET b=83331 WHERE a=5416; UPDATE t2 SET b=78856 WHERE a=5417; UPDATE t2 SET b=30558 WHERE a=5418; UPDATE t2 SET b=44017 WHERE a=5419; UPDATE t2 SET b=25544 WHERE a=5420; UPDATE t2 SET b=40506 WHERE a=5421; UPDATE t2 SET b=74008 WHERE a=5422; UPDATE t2 SET b=95049 WHERE a=5423; UPDATE t2 SET b=75004 WHERE a=5424; UPDATE t2 SET b=83206 WHERE a=5425; UPDATE t2 SET b=17663 WHERE a=5426; UPDATE t2 SET b=42349 WHERE a=5427; UPDATE t2 SET b=53775 WHERE a=5428; UPDATE t2 SET b=73837 WHERE a=5429; UPDATE t2 SET b=91622 WHERE a=5430; UPDATE t2 SET b=19766 WHERE a=5431; UPDATE t2 SET b=27338 WHERE a=5432; UPDATE t2 SET b=25720 WHERE a=5433; UPDATE t2 SET b=41103 WHERE a=5434; UPDATE t2 SET b=67644 WHERE a=5435; UPDATE t2 SET b=59764 WHERE a=5436; UPDATE t2 SET b=40785 WHERE a=5437; UPDATE t2 SET b=39193 WHERE a=5438; UPDATE t2 SET b=60445 WHERE a=5439; UPDATE t2 SET b=50978 WHERE a=5440; UPDATE t2 SET b=80841 WHERE a=5441; UPDATE t2 SET b=38335 WHERE a=5442; UPDATE t2 SET b=76290 WHERE a=5443; UPDATE t2 SET b=59311 WHERE a=5444; UPDATE t2 SET b=34370 WHERE a=5445; UPDATE t2 SET b=94754 WHERE a=5446; UPDATE t2 SET b=79092 WHERE a=5447; UPDATE t2 SET b=66729 WHERE a=5448; UPDATE t2 SET b=10822 WHERE a=5449; UPDATE t2 SET b=446 WHERE a=5450; UPDATE t2 SET b=44215 WHERE a=5451; UPDATE t2 SET b=92008 WHERE a=5452; UPDATE t2 SET b=34954 WHERE a=5453; UPDATE t2 SET b=68373 WHERE a=5454; UPDATE t2 SET b=95948 WHERE a=5455; UPDATE t2 SET b=32163 WHERE a=5456; UPDATE t2 SET b=6776 WHERE a=5457; UPDATE t2 SET b=38291 WHERE a=5458; UPDATE t2 SET b=21431 WHERE a=5459; UPDATE t2 SET b=29795 WHERE a=5460; UPDATE t2 SET b=94459 WHERE a=5461; UPDATE t2 SET b=92700 WHERE a=5462; UPDATE t2 SET b=91003 WHERE a=5463; UPDATE t2 SET b=16201 WHERE a=5464; UPDATE t2 SET b=20677 WHERE a=5465; UPDATE t2 SET b=91945 WHERE a=5466; UPDATE t2 SET b=5200 WHERE a=5467; UPDATE t2 SET b=58616 WHERE a=5468; UPDATE t2 SET b=85413 WHERE a=5469; UPDATE t2 SET b=59172 WHERE a=5470; UPDATE t2 SET b=72390 WHERE a=5471; UPDATE t2 SET b=3971 WHERE a=5472; UPDATE t2 SET b=66193 WHERE a=5473; UPDATE t2 SET b=97433 WHERE a=5474; UPDATE t2 SET b=98154 WHERE a=5475; UPDATE t2 SET b=3959 WHERE a=5476; UPDATE t2 SET b=8107 WHERE a=5477; UPDATE t2 SET b=96621 WHERE a=5478; UPDATE t2 SET b=35277 WHERE a=5479; UPDATE t2 SET b=9981 WHERE a=5480; UPDATE t2 SET b=44010 WHERE a=5481; UPDATE t2 SET b=76766 WHERE a=5482; UPDATE t2 SET b=6240 WHERE a=5483; UPDATE t2 SET b=56166 WHERE a=5484; UPDATE t2 SET b=99086 WHERE a=5485; UPDATE t2 SET b=56554 WHERE a=5486; UPDATE t2 SET b=78730 WHERE a=5487; UPDATE t2 SET b=91436 WHERE a=5488; UPDATE t2 SET b=14347 WHERE a=5489; UPDATE t2 SET b=71131 WHERE a=5490; UPDATE t2 SET b=74513 WHERE a=5491; UPDATE t2 SET b=32649 WHERE a=5492; UPDATE t2 SET b=77311 WHERE a=5493; UPDATE t2 SET b=36960 WHERE a=5494; UPDATE t2 SET b=2562 WHERE a=5495; UPDATE t2 SET b=42443 WHERE a=5496; UPDATE t2 SET b=18986 WHERE a=5497; UPDATE t2 SET b=53986 WHERE a=5498; UPDATE t2 SET b=83180 WHERE a=5499; UPDATE t2 SET b=65225 WHERE a=5500; UPDATE t2 SET b=64543 WHERE a=5501; UPDATE t2 SET b=94028 WHERE a=5502; UPDATE t2 SET b=68784 WHERE a=5503; UPDATE t2 SET b=2184 WHERE a=5504; UPDATE t2 SET b=61669 WHERE a=5505; UPDATE t2 SET b=64425 WHERE a=5506; UPDATE t2 SET b=9898 WHERE a=5507; UPDATE t2 SET b=89367 WHERE a=5508; UPDATE t2 SET b=76846 WHERE a=5509; UPDATE t2 SET b=39353 WHERE a=5510; UPDATE t2 SET b=9883 WHERE a=5511; UPDATE t2 SET b=49992 WHERE a=5512; UPDATE t2 SET b=3482 WHERE a=5513; UPDATE t2 SET b=25602 WHERE a=5514; UPDATE t2 SET b=33207 WHERE a=5515; UPDATE t2 SET b=56112 WHERE a=5516; UPDATE t2 SET b=79388 WHERE a=5517; UPDATE t2 SET b=6743 WHERE a=5518; UPDATE t2 SET b=70162 WHERE a=5519; UPDATE t2 SET b=60603 WHERE a=5520; UPDATE t2 SET b=61984 WHERE a=5521; UPDATE t2 SET b=8303 WHERE a=5522; UPDATE t2 SET b=65543 WHERE a=5523; UPDATE t2 SET b=6556 WHERE a=5524; UPDATE t2 SET b=42644 WHERE a=5525; UPDATE t2 SET b=73092 WHERE a=5526; UPDATE t2 SET b=54055 WHERE a=5527; UPDATE t2 SET b=39377 WHERE a=5528; UPDATE t2 SET b=5042 WHERE a=5529; UPDATE t2 SET b=86646 WHERE a=5530; UPDATE t2 SET b=15311 WHERE a=5531; UPDATE t2 SET b=90314 WHERE a=5532; UPDATE t2 SET b=42943 WHERE a=5533; UPDATE t2 SET b=74000 WHERE a=5534; UPDATE t2 SET b=48374 WHERE a=5535; UPDATE t2 SET b=19072 WHERE a=5536; UPDATE t2 SET b=44881 WHERE a=5537; UPDATE t2 SET b=83794 WHERE a=5538; UPDATE t2 SET b=31226 WHERE a=5539; UPDATE t2 SET b=81695 WHERE a=5540; UPDATE t2 SET b=58707 WHERE a=5541; UPDATE t2 SET b=45026 WHERE a=5542; UPDATE t2 SET b=56334 WHERE a=5543; UPDATE t2 SET b=88128 WHERE a=5544; UPDATE t2 SET b=17379 WHERE a=5545; UPDATE t2 SET b=74244 WHERE a=5546; UPDATE t2 SET b=51092 WHERE a=5547; UPDATE t2 SET b=45685 WHERE a=5548; UPDATE t2 SET b=50267 WHERE a=5549; UPDATE t2 SET b=48877 WHERE a=5550; UPDATE t2 SET b=324 WHERE a=5551; UPDATE t2 SET b=46450 WHERE a=5552; UPDATE t2 SET b=10195 WHERE a=5553; UPDATE t2 SET b=35882 WHERE a=5554; UPDATE t2 SET b=59362 WHERE a=5555; UPDATE t2 SET b=56788 WHERE a=5556; UPDATE t2 SET b=62130 WHERE a=5557; UPDATE t2 SET b=55544 WHERE a=5558; UPDATE t2 SET b=59063 WHERE a=5559; UPDATE t2 SET b=22803 WHERE a=5560; UPDATE t2 SET b=71944 WHERE a=5561; UPDATE t2 SET b=35390 WHERE a=5562; UPDATE t2 SET b=76308 WHERE a=5563; UPDATE t2 SET b=83199 WHERE a=5564; UPDATE t2 SET b=79216 WHERE a=5565; UPDATE t2 SET b=74366 WHERE a=5566; UPDATE t2 SET b=42250 WHERE a=5567; UPDATE t2 SET b=12777 WHERE a=5568; UPDATE t2 SET b=60428 WHERE a=5569; UPDATE t2 SET b=73776 WHERE a=5570; UPDATE t2 SET b=68259 WHERE a=5571; UPDATE t2 SET b=32650 WHERE a=5572; UPDATE t2 SET b=87970 WHERE a=5573; UPDATE t2 SET b=29836 WHERE a=5574; UPDATE t2 SET b=68345 WHERE a=5575; UPDATE t2 SET b=97267 WHERE a=5576; UPDATE t2 SET b=53042 WHERE a=5577; UPDATE t2 SET b=79761 WHERE a=5578; UPDATE t2 SET b=17009 WHERE a=5579; UPDATE t2 SET b=94803 WHERE a=5580; UPDATE t2 SET b=20021 WHERE a=5581; UPDATE t2 SET b=72817 WHERE a=5582; UPDATE t2 SET b=34527 WHERE a=5583; UPDATE t2 SET b=84337 WHERE a=5584; UPDATE t2 SET b=9217 WHERE a=5585; UPDATE t2 SET b=25546 WHERE a=5586; UPDATE t2 SET b=85753 WHERE a=5587; UPDATE t2 SET b=75364 WHERE a=5588; UPDATE t2 SET b=8641 WHERE a=5589; UPDATE t2 SET b=39445 WHERE a=5590; UPDATE t2 SET b=28394 WHERE a=5591; UPDATE t2 SET b=13472 WHERE a=5592; UPDATE t2 SET b=6972 WHERE a=5593; UPDATE t2 SET b=63925 WHERE a=5594; UPDATE t2 SET b=99837 WHERE a=5595; UPDATE t2 SET b=78319 WHERE a=5596; UPDATE t2 SET b=92787 WHERE a=5597; UPDATE t2 SET b=14772 WHERE a=5598; UPDATE t2 SET b=8191 WHERE a=5599; UPDATE t2 SET b=69467 WHERE a=5600; UPDATE t2 SET b=30388 WHERE a=5601; UPDATE t2 SET b=52608 WHERE a=5602; UPDATE t2 SET b=30755 WHERE a=5603; UPDATE t2 SET b=68218 WHERE a=5604; UPDATE t2 SET b=23433 WHERE a=5605; UPDATE t2 SET b=21425 WHERE a=5606; UPDATE t2 SET b=80204 WHERE a=5607; UPDATE t2 SET b=78762 WHERE a=5608; UPDATE t2 SET b=51791 WHERE a=5609; UPDATE t2 SET b=97221 WHERE a=5610; UPDATE t2 SET b=44222 WHERE a=5611; UPDATE t2 SET b=17553 WHERE a=5612; UPDATE t2 SET b=56324 WHERE a=5613; UPDATE t2 SET b=22326 WHERE a=5614; UPDATE t2 SET b=66315 WHERE a=5615; UPDATE t2 SET b=36874 WHERE a=5616; UPDATE t2 SET b=30025 WHERE a=5617; UPDATE t2 SET b=53161 WHERE a=5618; UPDATE t2 SET b=96703 WHERE a=5619; UPDATE t2 SET b=86914 WHERE a=5620; UPDATE t2 SET b=27849 WHERE a=5621; UPDATE t2 SET b=63487 WHERE a=5622; UPDATE t2 SET b=37621 WHERE a=5623; UPDATE t2 SET b=56925 WHERE a=5624; UPDATE t2 SET b=28000 WHERE a=5625; UPDATE t2 SET b=4174 WHERE a=5626; UPDATE t2 SET b=34143 WHERE a=5627; UPDATE t2 SET b=82837 WHERE a=5628; UPDATE t2 SET b=54909 WHERE a=5629; UPDATE t2 SET b=10293 WHERE a=5630; UPDATE t2 SET b=86438 WHERE a=5631; UPDATE t2 SET b=70007 WHERE a=5632; UPDATE t2 SET b=85357 WHERE a=5633; UPDATE t2 SET b=6757 WHERE a=5634; UPDATE t2 SET b=89844 WHERE a=5635; UPDATE t2 SET b=27285 WHERE a=5636; UPDATE t2 SET b=63017 WHERE a=5637; UPDATE t2 SET b=53320 WHERE a=5638; UPDATE t2 SET b=30110 WHERE a=5639; UPDATE t2 SET b=59790 WHERE a=5640; UPDATE t2 SET b=18100 WHERE a=5641; UPDATE t2 SET b=84925 WHERE a=5642; UPDATE t2 SET b=82149 WHERE a=5643; UPDATE t2 SET b=37006 WHERE a=5644; UPDATE t2 SET b=99269 WHERE a=5645; UPDATE t2 SET b=12030 WHERE a=5646; UPDATE t2 SET b=15937 WHERE a=5647; UPDATE t2 SET b=83970 WHERE a=5648; UPDATE t2 SET b=79436 WHERE a=5649; UPDATE t2 SET b=21585 WHERE a=5650; UPDATE t2 SET b=1349 WHERE a=5651; UPDATE t2 SET b=26098 WHERE a=5652; UPDATE t2 SET b=73285 WHERE a=5653; UPDATE t2 SET b=72267 WHERE a=5654; UPDATE t2 SET b=69295 WHERE a=5655; UPDATE t2 SET b=72014 WHERE a=5656; UPDATE t2 SET b=39131 WHERE a=5657; UPDATE t2 SET b=54467 WHERE a=5658; UPDATE t2 SET b=1204 WHERE a=5659; UPDATE t2 SET b=85135 WHERE a=5660; UPDATE t2 SET b=67846 WHERE a=5661; UPDATE t2 SET b=17472 WHERE a=5662; UPDATE t2 SET b=16067 WHERE a=5663; UPDATE t2 SET b=41979 WHERE a=5664; UPDATE t2 SET b=35140 WHERE a=5665; UPDATE t2 SET b=28458 WHERE a=5666; UPDATE t2 SET b=96354 WHERE a=5667; UPDATE t2 SET b=24862 WHERE a=5668; UPDATE t2 SET b=62441 WHERE a=5669; UPDATE t2 SET b=42025 WHERE a=5670; UPDATE t2 SET b=21482 WHERE a=5671; UPDATE t2 SET b=8450 WHERE a=5672; UPDATE t2 SET b=32286 WHERE a=5673; UPDATE t2 SET b=63298 WHERE a=5674; UPDATE t2 SET b=59216 WHERE a=5675; UPDATE t2 SET b=90766 WHERE a=5676; UPDATE t2 SET b=31954 WHERE a=5677; UPDATE t2 SET b=8287 WHERE a=5678; UPDATE t2 SET b=56152 WHERE a=5679; UPDATE t2 SET b=91 WHERE a=5680; UPDATE t2 SET b=83445 WHERE a=5681; UPDATE t2 SET b=49593 WHERE a=5682; UPDATE t2 SET b=98891 WHERE a=5683; UPDATE t2 SET b=61961 WHERE a=5684; UPDATE t2 SET b=18257 WHERE a=5685; UPDATE t2 SET b=5772 WHERE a=5686; UPDATE t2 SET b=6130 WHERE a=5687; UPDATE t2 SET b=71348 WHERE a=5688; UPDATE t2 SET b=27099 WHERE a=5689; UPDATE t2 SET b=15129 WHERE a=5690; UPDATE t2 SET b=7826 WHERE a=5691; UPDATE t2 SET b=83965 WHERE a=5692; UPDATE t2 SET b=69626 WHERE a=5693; UPDATE t2 SET b=11659 WHERE a=5694; UPDATE t2 SET b=18872 WHERE a=5695; UPDATE t2 SET b=90004 WHERE a=5696; UPDATE t2 SET b=48052 WHERE a=5697; UPDATE t2 SET b=36559 WHERE a=5698; UPDATE t2 SET b=97987 WHERE a=5699; UPDATE t2 SET b=79582 WHERE a=5700; UPDATE t2 SET b=2037 WHERE a=5701; UPDATE t2 SET b=8187 WHERE a=5702; UPDATE t2 SET b=92538 WHERE a=5703; UPDATE t2 SET b=80875 WHERE a=5704; UPDATE t2 SET b=8513 WHERE a=5705; UPDATE t2 SET b=837 WHERE a=5706; UPDATE t2 SET b=13228 WHERE a=5707; UPDATE t2 SET b=67681 WHERE a=5708; UPDATE t2 SET b=4183 WHERE a=5709; UPDATE t2 SET b=97425 WHERE a=5710; UPDATE t2 SET b=12197 WHERE a=5711; UPDATE t2 SET b=10158 WHERE a=5712; UPDATE t2 SET b=70152 WHERE a=5713; UPDATE t2 SET b=65814 WHERE a=5714; UPDATE t2 SET b=15738 WHERE a=5715; UPDATE t2 SET b=22717 WHERE a=5716; UPDATE t2 SET b=51239 WHERE a=5717; UPDATE t2 SET b=59927 WHERE a=5718; UPDATE t2 SET b=7420 WHERE a=5719; UPDATE t2 SET b=66496 WHERE a=5720; UPDATE t2 SET b=18505 WHERE a=5721; UPDATE t2 SET b=70492 WHERE a=5722; UPDATE t2 SET b=63612 WHERE a=5723; UPDATE t2 SET b=22727 WHERE a=5724; UPDATE t2 SET b=99509 WHERE a=5725; UPDATE t2 SET b=50401 WHERE a=5726; UPDATE t2 SET b=25978 WHERE a=5727; UPDATE t2 SET b=64870 WHERE a=5728; UPDATE t2 SET b=26557 WHERE a=5729; UPDATE t2 SET b=17091 WHERE a=5730; UPDATE t2 SET b=44141 WHERE a=5731; UPDATE t2 SET b=1501 WHERE a=5732; UPDATE t2 SET b=12102 WHERE a=5733; UPDATE t2 SET b=16411 WHERE a=5734; UPDATE t2 SET b=95446 WHERE a=5735; UPDATE t2 SET b=48594 WHERE a=5736; UPDATE t2 SET b=31430 WHERE a=5737; UPDATE t2 SET b=94768 WHERE a=5738; UPDATE t2 SET b=84860 WHERE a=5739; UPDATE t2 SET b=92824 WHERE a=5740; UPDATE t2 SET b=50811 WHERE a=5741; UPDATE t2 SET b=88666 WHERE a=5742; UPDATE t2 SET b=26948 WHERE a=5743; UPDATE t2 SET b=52682 WHERE a=5744; UPDATE t2 SET b=43790 WHERE a=5745; UPDATE t2 SET b=28849 WHERE a=5746; UPDATE t2 SET b=38509 WHERE a=5747; UPDATE t2 SET b=7666 WHERE a=5748; UPDATE t2 SET b=37331 WHERE a=5749; UPDATE t2 SET b=63139 WHERE a=5750; UPDATE t2 SET b=77660 WHERE a=5751; UPDATE t2 SET b=37897 WHERE a=5752; UPDATE t2 SET b=50090 WHERE a=5753; UPDATE t2 SET b=83079 WHERE a=5754; UPDATE t2 SET b=80102 WHERE a=5755; UPDATE t2 SET b=93456 WHERE a=5756; UPDATE t2 SET b=38519 WHERE a=5757; UPDATE t2 SET b=25201 WHERE a=5758; UPDATE t2 SET b=36343 WHERE a=5759; UPDATE t2 SET b=46392 WHERE a=5760; UPDATE t2 SET b=38356 WHERE a=5761; UPDATE t2 SET b=55398 WHERE a=5762; UPDATE t2 SET b=12991 WHERE a=5763; UPDATE t2 SET b=20052 WHERE a=5764; UPDATE t2 SET b=71033 WHERE a=5765; UPDATE t2 SET b=84541 WHERE a=5766; UPDATE t2 SET b=36010 WHERE a=5767; UPDATE t2 SET b=42590 WHERE a=5768; UPDATE t2 SET b=53544 WHERE a=5769; UPDATE t2 SET b=71333 WHERE a=5770; UPDATE t2 SET b=54647 WHERE a=5771; UPDATE t2 SET b=19053 WHERE a=5772; UPDATE t2 SET b=19385 WHERE a=5773; UPDATE t2 SET b=49548 WHERE a=5774; UPDATE t2 SET b=87935 WHERE a=5775; UPDATE t2 SET b=96671 WHERE a=5776; UPDATE t2 SET b=9902 WHERE a=5777; UPDATE t2 SET b=18086 WHERE a=5778; UPDATE t2 SET b=18021 WHERE a=5779; UPDATE t2 SET b=90215 WHERE a=5780; UPDATE t2 SET b=23837 WHERE a=5781; UPDATE t2 SET b=91235 WHERE a=5782; UPDATE t2 SET b=82109 WHERE a=5783; UPDATE t2 SET b=67282 WHERE a=5784; UPDATE t2 SET b=62982 WHERE a=5785; UPDATE t2 SET b=74549 WHERE a=5786; UPDATE t2 SET b=74815 WHERE a=5787; UPDATE t2 SET b=27166 WHERE a=5788; UPDATE t2 SET b=38160 WHERE a=5789; UPDATE t2 SET b=82471 WHERE a=5790; UPDATE t2 SET b=79942 WHERE a=5791; UPDATE t2 SET b=71630 WHERE a=5792; UPDATE t2 SET b=29939 WHERE a=5793; UPDATE t2 SET b=5177 WHERE a=5794; UPDATE t2 SET b=26407 WHERE a=5795; UPDATE t2 SET b=62223 WHERE a=5796; UPDATE t2 SET b=85014 WHERE a=5797; UPDATE t2 SET b=41191 WHERE a=5798; UPDATE t2 SET b=52711 WHERE a=5799; UPDATE t2 SET b=51761 WHERE a=5800; UPDATE t2 SET b=51576 WHERE a=5801; UPDATE t2 SET b=82767 WHERE a=5802; UPDATE t2 SET b=76209 WHERE a=5803; UPDATE t2 SET b=95010 WHERE a=5804; UPDATE t2 SET b=17402 WHERE a=5805; UPDATE t2 SET b=25999 WHERE a=5806; UPDATE t2 SET b=20379 WHERE a=5807; UPDATE t2 SET b=27299 WHERE a=5808; UPDATE t2 SET b=92221 WHERE a=5809; UPDATE t2 SET b=27516 WHERE a=5810; UPDATE t2 SET b=63161 WHERE a=5811; UPDATE t2 SET b=22735 WHERE a=5812; UPDATE t2 SET b=10601 WHERE a=5813; UPDATE t2 SET b=79931 WHERE a=5814; UPDATE t2 SET b=11909 WHERE a=5815; UPDATE t2 SET b=14868 WHERE a=5816; UPDATE t2 SET b=80882 WHERE a=5817; UPDATE t2 SET b=99044 WHERE a=5818; UPDATE t2 SET b=68022 WHERE a=5819; UPDATE t2 SET b=53735 WHERE a=5820; UPDATE t2 SET b=8695 WHERE a=5821; UPDATE t2 SET b=5655 WHERE a=5822; UPDATE t2 SET b=54461 WHERE a=5823; UPDATE t2 SET b=46721 WHERE a=5824; UPDATE t2 SET b=58591 WHERE a=5825; UPDATE t2 SET b=94986 WHERE a=5826; UPDATE t2 SET b=78876 WHERE a=5827; UPDATE t2 SET b=35748 WHERE a=5828; UPDATE t2 SET b=65185 WHERE a=5829; UPDATE t2 SET b=49884 WHERE a=5830; UPDATE t2 SET b=86767 WHERE a=5831; UPDATE t2 SET b=56366 WHERE a=5832; UPDATE t2 SET b=71809 WHERE a=5833; UPDATE t2 SET b=73274 WHERE a=5834; UPDATE t2 SET b=34492 WHERE a=5835; UPDATE t2 SET b=39433 WHERE a=5836; UPDATE t2 SET b=28534 WHERE a=5837; UPDATE t2 SET b=25911 WHERE a=5838; UPDATE t2 SET b=90905 WHERE a=5839; UPDATE t2 SET b=41623 WHERE a=5840; UPDATE t2 SET b=71952 WHERE a=5841; UPDATE t2 SET b=19286 WHERE a=5842; UPDATE t2 SET b=41438 WHERE a=5843; UPDATE t2 SET b=39158 WHERE a=5844; UPDATE t2 SET b=43368 WHERE a=5845; UPDATE t2 SET b=48271 WHERE a=5846; UPDATE t2 SET b=3024 WHERE a=5847; UPDATE t2 SET b=86622 WHERE a=5848; UPDATE t2 SET b=18410 WHERE a=5849; UPDATE t2 SET b=12813 WHERE a=5850; UPDATE t2 SET b=93426 WHERE a=5851; UPDATE t2 SET b=65959 WHERE a=5852; UPDATE t2 SET b=59407 WHERE a=5853; UPDATE t2 SET b=65385 WHERE a=5854; UPDATE t2 SET b=35441 WHERE a=5855; UPDATE t2 SET b=25173 WHERE a=5856; UPDATE t2 SET b=84133 WHERE a=5857; UPDATE t2 SET b=88523 WHERE a=5858; UPDATE t2 SET b=48123 WHERE a=5859; UPDATE t2 SET b=84567 WHERE a=5860; UPDATE t2 SET b=24738 WHERE a=5861; UPDATE t2 SET b=39131 WHERE a=5862; UPDATE t2 SET b=81674 WHERE a=5863; UPDATE t2 SET b=44965 WHERE a=5864; UPDATE t2 SET b=24253 WHERE a=5865; UPDATE t2 SET b=83570 WHERE a=5866; UPDATE t2 SET b=60327 WHERE a=5867; UPDATE t2 SET b=30699 WHERE a=5868; UPDATE t2 SET b=36922 WHERE a=5869; UPDATE t2 SET b=70606 WHERE a=5870; UPDATE t2 SET b=2733 WHERE a=5871; UPDATE t2 SET b=11203 WHERE a=5872; UPDATE t2 SET b=80323 WHERE a=5873; UPDATE t2 SET b=99299 WHERE a=5874; UPDATE t2 SET b=24165 WHERE a=5875; UPDATE t2 SET b=79990 WHERE a=5876; UPDATE t2 SET b=25105 WHERE a=5877; UPDATE t2 SET b=50957 WHERE a=5878; UPDATE t2 SET b=82188 WHERE a=5879; UPDATE t2 SET b=48568 WHERE a=5880; UPDATE t2 SET b=23806 WHERE a=5881; UPDATE t2 SET b=75542 WHERE a=5882; UPDATE t2 SET b=23645 WHERE a=5883; UPDATE t2 SET b=77523 WHERE a=5884; UPDATE t2 SET b=25241 WHERE a=5885; UPDATE t2 SET b=64975 WHERE a=5886; UPDATE t2 SET b=27145 WHERE a=5887; UPDATE t2 SET b=74387 WHERE a=5888; UPDATE t2 SET b=9584 WHERE a=5889; UPDATE t2 SET b=56061 WHERE a=5890; UPDATE t2 SET b=82007 WHERE a=5891; UPDATE t2 SET b=65923 WHERE a=5892; UPDATE t2 SET b=5654 WHERE a=5893; UPDATE t2 SET b=19355 WHERE a=5894; UPDATE t2 SET b=53910 WHERE a=5895; UPDATE t2 SET b=41294 WHERE a=5896; UPDATE t2 SET b=97429 WHERE a=5897; UPDATE t2 SET b=28446 WHERE a=5898; UPDATE t2 SET b=87082 WHERE a=5899; UPDATE t2 SET b=58226 WHERE a=5900; UPDATE t2 SET b=37499 WHERE a=5901; UPDATE t2 SET b=64691 WHERE a=5902; UPDATE t2 SET b=44449 WHERE a=5903; UPDATE t2 SET b=70702 WHERE a=5904; UPDATE t2 SET b=77662 WHERE a=5905; UPDATE t2 SET b=87821 WHERE a=5906; UPDATE t2 SET b=83197 WHERE a=5907; UPDATE t2 SET b=18682 WHERE a=5908; UPDATE t2 SET b=18142 WHERE a=5909; UPDATE t2 SET b=99113 WHERE a=5910; UPDATE t2 SET b=29295 WHERE a=5911; UPDATE t2 SET b=47356 WHERE a=5912; UPDATE t2 SET b=85108 WHERE a=5913; UPDATE t2 SET b=39469 WHERE a=5914; UPDATE t2 SET b=20592 WHERE a=5915; UPDATE t2 SET b=22372 WHERE a=5916; UPDATE t2 SET b=20034 WHERE a=5917; UPDATE t2 SET b=99483 WHERE a=5918; UPDATE t2 SET b=12462 WHERE a=5919; UPDATE t2 SET b=77822 WHERE a=5920; UPDATE t2 SET b=51531 WHERE a=5921; UPDATE t2 SET b=67234 WHERE a=5922; UPDATE t2 SET b=33048 WHERE a=5923; UPDATE t2 SET b=43856 WHERE a=5924; UPDATE t2 SET b=19708 WHERE a=5925; UPDATE t2 SET b=79574 WHERE a=5926; UPDATE t2 SET b=18297 WHERE a=5927; UPDATE t2 SET b=1514 WHERE a=5928; UPDATE t2 SET b=17492 WHERE a=5929; UPDATE t2 SET b=82176 WHERE a=5930; UPDATE t2 SET b=56766 WHERE a=5931; UPDATE t2 SET b=78515 WHERE a=5932; UPDATE t2 SET b=83984 WHERE a=5933; UPDATE t2 SET b=25164 WHERE a=5934; UPDATE t2 SET b=60481 WHERE a=5935; UPDATE t2 SET b=10462 WHERE a=5936; UPDATE t2 SET b=53169 WHERE a=5937; UPDATE t2 SET b=19484 WHERE a=5938; UPDATE t2 SET b=71522 WHERE a=5939; UPDATE t2 SET b=35355 WHERE a=5940; UPDATE t2 SET b=13332 WHERE a=5941; UPDATE t2 SET b=51238 WHERE a=5942; UPDATE t2 SET b=96323 WHERE a=5943; UPDATE t2 SET b=49286 WHERE a=5944; UPDATE t2 SET b=81007 WHERE a=5945; UPDATE t2 SET b=78677 WHERE a=5946; UPDATE t2 SET b=5041 WHERE a=5947; UPDATE t2 SET b=44598 WHERE a=5948; UPDATE t2 SET b=417 WHERE a=5949; UPDATE t2 SET b=65063 WHERE a=5950; UPDATE t2 SET b=21497 WHERE a=5951; UPDATE t2 SET b=113 WHERE a=5952; UPDATE t2 SET b=8916 WHERE a=5953; UPDATE t2 SET b=57367 WHERE a=5954; UPDATE t2 SET b=96710 WHERE a=5955; UPDATE t2 SET b=21039 WHERE a=5956; UPDATE t2 SET b=170 WHERE a=5957; UPDATE t2 SET b=49513 WHERE a=5958; UPDATE t2 SET b=57057 WHERE a=5959; UPDATE t2 SET b=62630 WHERE a=5960; UPDATE t2 SET b=80493 WHERE a=5961; UPDATE t2 SET b=58772 WHERE a=5962; UPDATE t2 SET b=80674 WHERE a=5963; UPDATE t2 SET b=11587 WHERE a=5964; UPDATE t2 SET b=36163 WHERE a=5965; UPDATE t2 SET b=97196 WHERE a=5966; UPDATE t2 SET b=39645 WHERE a=5967; UPDATE t2 SET b=33160 WHERE a=5968; UPDATE t2 SET b=73401 WHERE a=5969; UPDATE t2 SET b=43956 WHERE a=5970; UPDATE t2 SET b=97213 WHERE a=5971; UPDATE t2 SET b=8819 WHERE a=5972; UPDATE t2 SET b=90304 WHERE a=5973; UPDATE t2 SET b=80890 WHERE a=5974; UPDATE t2 SET b=96063 WHERE a=5975; UPDATE t2 SET b=55976 WHERE a=5976; UPDATE t2 SET b=51863 WHERE a=5977; UPDATE t2 SET b=97677 WHERE a=5978; UPDATE t2 SET b=74487 WHERE a=5979; UPDATE t2 SET b=81396 WHERE a=5980; UPDATE t2 SET b=46819 WHERE a=5981; UPDATE t2 SET b=55811 WHERE a=5982; UPDATE t2 SET b=4394 WHERE a=5983; UPDATE t2 SET b=32669 WHERE a=5984; UPDATE t2 SET b=44938 WHERE a=5985; UPDATE t2 SET b=68028 WHERE a=5986; UPDATE t2 SET b=43266 WHERE a=5987; UPDATE t2 SET b=83877 WHERE a=5988; UPDATE t2 SET b=13449 WHERE a=5989; UPDATE t2 SET b=55214 WHERE a=5990; UPDATE t2 SET b=85040 WHERE a=5991; UPDATE t2 SET b=32142 WHERE a=5992; UPDATE t2 SET b=75360 WHERE a=5993; UPDATE t2 SET b=37947 WHERE a=5994; UPDATE t2 SET b=26171 WHERE a=5995; UPDATE t2 SET b=2043 WHERE a=5996; UPDATE t2 SET b=28005 WHERE a=5997; UPDATE t2 SET b=66442 WHERE a=5998; UPDATE t2 SET b=80819 WHERE a=5999; UPDATE t2 SET b=2177 WHERE a=6000; UPDATE t2 SET b=7498 WHERE a=6001; UPDATE t2 SET b=7399 WHERE a=6002; UPDATE t2 SET b=40022 WHERE a=6003; UPDATE t2 SET b=25616 WHERE a=6004; UPDATE t2 SET b=77296 WHERE a=6005; UPDATE t2 SET b=83731 WHERE a=6006; UPDATE t2 SET b=42856 WHERE a=6007; UPDATE t2 SET b=35320 WHERE a=6008; UPDATE t2 SET b=80233 WHERE a=6009; UPDATE t2 SET b=56006 WHERE a=6010; UPDATE t2 SET b=81131 WHERE a=6011; UPDATE t2 SET b=3306 WHERE a=6012; UPDATE t2 SET b=23882 WHERE a=6013; UPDATE t2 SET b=23577 WHERE a=6014; UPDATE t2 SET b=74863 WHERE a=6015; UPDATE t2 SET b=78903 WHERE a=6016; UPDATE t2 SET b=22974 WHERE a=6017; UPDATE t2 SET b=5228 WHERE a=6018; UPDATE t2 SET b=15422 WHERE a=6019; UPDATE t2 SET b=32042 WHERE a=6020; UPDATE t2 SET b=45229 WHERE a=6021; UPDATE t2 SET b=85092 WHERE a=6022; UPDATE t2 SET b=57699 WHERE a=6023; UPDATE t2 SET b=3844 WHERE a=6024; UPDATE t2 SET b=84694 WHERE a=6025; UPDATE t2 SET b=46427 WHERE a=6026; UPDATE t2 SET b=12071 WHERE a=6027; UPDATE t2 SET b=18365 WHERE a=6028; UPDATE t2 SET b=80833 WHERE a=6029; UPDATE t2 SET b=56021 WHERE a=6030; UPDATE t2 SET b=76998 WHERE a=6031; UPDATE t2 SET b=66024 WHERE a=6032; UPDATE t2 SET b=48736 WHERE a=6033; UPDATE t2 SET b=97658 WHERE a=6034; UPDATE t2 SET b=81120 WHERE a=6035; UPDATE t2 SET b=25244 WHERE a=6036; UPDATE t2 SET b=26793 WHERE a=6037; UPDATE t2 SET b=30503 WHERE a=6038; UPDATE t2 SET b=839 WHERE a=6039; UPDATE t2 SET b=54408 WHERE a=6040; UPDATE t2 SET b=74199 WHERE a=6041; UPDATE t2 SET b=75659 WHERE a=6042; UPDATE t2 SET b=32836 WHERE a=6043; UPDATE t2 SET b=48717 WHERE a=6044; UPDATE t2 SET b=71846 WHERE a=6045; UPDATE t2 SET b=15428 WHERE a=6046; UPDATE t2 SET b=78084 WHERE a=6047; UPDATE t2 SET b=79626 WHERE a=6048; UPDATE t2 SET b=36137 WHERE a=6049; UPDATE t2 SET b=75117 WHERE a=6050; UPDATE t2 SET b=36171 WHERE a=6051; UPDATE t2 SET b=47529 WHERE a=6052; UPDATE t2 SET b=86454 WHERE a=6053; UPDATE t2 SET b=27971 WHERE a=6054; UPDATE t2 SET b=38973 WHERE a=6055; UPDATE t2 SET b=81705 WHERE a=6056; UPDATE t2 SET b=66479 WHERE a=6057; UPDATE t2 SET b=32376 WHERE a=6058; UPDATE t2 SET b=6122 WHERE a=6059; UPDATE t2 SET b=86026 WHERE a=6060; UPDATE t2 SET b=35666 WHERE a=6061; UPDATE t2 SET b=99619 WHERE a=6062; UPDATE t2 SET b=12578 WHERE a=6063; UPDATE t2 SET b=23274 WHERE a=6064; UPDATE t2 SET b=42576 WHERE a=6065; UPDATE t2 SET b=43460 WHERE a=6066; UPDATE t2 SET b=61804 WHERE a=6067; UPDATE t2 SET b=98418 WHERE a=6068; UPDATE t2 SET b=14839 WHERE a=6069; UPDATE t2 SET b=77938 WHERE a=6070; UPDATE t2 SET b=53519 WHERE a=6071; UPDATE t2 SET b=67247 WHERE a=6072; UPDATE t2 SET b=60569 WHERE a=6073; UPDATE t2 SET b=5422 WHERE a=6074; UPDATE t2 SET b=98303 WHERE a=6075; UPDATE t2 SET b=19611 WHERE a=6076; UPDATE t2 SET b=72931 WHERE a=6077; UPDATE t2 SET b=55070 WHERE a=6078; UPDATE t2 SET b=25609 WHERE a=6079; UPDATE t2 SET b=36954 WHERE a=6080; UPDATE t2 SET b=32082 WHERE a=6081; UPDATE t2 SET b=98431 WHERE a=6082; UPDATE t2 SET b=57334 WHERE a=6083; UPDATE t2 SET b=49118 WHERE a=6084; UPDATE t2 SET b=11085 WHERE a=6085; UPDATE t2 SET b=10710 WHERE a=6086; UPDATE t2 SET b=79137 WHERE a=6087; UPDATE t2 SET b=10815 WHERE a=6088; UPDATE t2 SET b=60350 WHERE a=6089; UPDATE t2 SET b=86387 WHERE a=6090; UPDATE t2 SET b=44068 WHERE a=6091; UPDATE t2 SET b=12218 WHERE a=6092; UPDATE t2 SET b=60717 WHERE a=6093; UPDATE t2 SET b=99898 WHERE a=6094; UPDATE t2 SET b=34204 WHERE a=6095; UPDATE t2 SET b=80549 WHERE a=6096; UPDATE t2 SET b=34571 WHERE a=6097; UPDATE t2 SET b=71503 WHERE a=6098; UPDATE t2 SET b=91732 WHERE a=6099; UPDATE t2 SET b=54605 WHERE a=6100; UPDATE t2 SET b=90508 WHERE a=6101; UPDATE t2 SET b=52456 WHERE a=6102; UPDATE t2 SET b=57101 WHERE a=6103; UPDATE t2 SET b=87629 WHERE a=6104; UPDATE t2 SET b=44074 WHERE a=6105; UPDATE t2 SET b=95527 WHERE a=6106; UPDATE t2 SET b=31484 WHERE a=6107; UPDATE t2 SET b=55326 WHERE a=6108; UPDATE t2 SET b=61156 WHERE a=6109; UPDATE t2 SET b=39514 WHERE a=6110; UPDATE t2 SET b=48442 WHERE a=6111; UPDATE t2 SET b=37240 WHERE a=6112; UPDATE t2 SET b=20673 WHERE a=6113; UPDATE t2 SET b=68158 WHERE a=6114; UPDATE t2 SET b=19610 WHERE a=6115; UPDATE t2 SET b=83381 WHERE a=6116; UPDATE t2 SET b=49827 WHERE a=6117; UPDATE t2 SET b=39368 WHERE a=6118; UPDATE t2 SET b=1510 WHERE a=6119; UPDATE t2 SET b=38865 WHERE a=6120; UPDATE t2 SET b=19584 WHERE a=6121; UPDATE t2 SET b=21718 WHERE a=6122; UPDATE t2 SET b=65342 WHERE a=6123; UPDATE t2 SET b=24285 WHERE a=6124; UPDATE t2 SET b=43244 WHERE a=6125; UPDATE t2 SET b=45227 WHERE a=6126; UPDATE t2 SET b=47240 WHERE a=6127; UPDATE t2 SET b=94154 WHERE a=6128; UPDATE t2 SET b=73894 WHERE a=6129; UPDATE t2 SET b=74537 WHERE a=6130; UPDATE t2 SET b=65395 WHERE a=6131; UPDATE t2 SET b=80139 WHERE a=6132; UPDATE t2 SET b=25656 WHERE a=6133; UPDATE t2 SET b=80167 WHERE a=6134; UPDATE t2 SET b=3278 WHERE a=6135; UPDATE t2 SET b=68794 WHERE a=6136; UPDATE t2 SET b=16466 WHERE a=6137; UPDATE t2 SET b=23976 WHERE a=6138; UPDATE t2 SET b=42528 WHERE a=6139; UPDATE t2 SET b=90140 WHERE a=6140; UPDATE t2 SET b=4280 WHERE a=6141; UPDATE t2 SET b=69973 WHERE a=6142; UPDATE t2 SET b=33123 WHERE a=6143; UPDATE t2 SET b=5532 WHERE a=6144; UPDATE t2 SET b=10098 WHERE a=6145; UPDATE t2 SET b=92821 WHERE a=6146; UPDATE t2 SET b=40899 WHERE a=6147; UPDATE t2 SET b=80347 WHERE a=6148; UPDATE t2 SET b=24873 WHERE a=6149; UPDATE t2 SET b=15315 WHERE a=6150; UPDATE t2 SET b=77548 WHERE a=6151; UPDATE t2 SET b=72462 WHERE a=6152; UPDATE t2 SET b=55829 WHERE a=6153; UPDATE t2 SET b=36215 WHERE a=6154; UPDATE t2 SET b=26107 WHERE a=6155; UPDATE t2 SET b=42179 WHERE a=6156; UPDATE t2 SET b=1377 WHERE a=6157; UPDATE t2 SET b=45171 WHERE a=6158; UPDATE t2 SET b=42604 WHERE a=6159; UPDATE t2 SET b=74380 WHERE a=6160; UPDATE t2 SET b=1175 WHERE a=6161; UPDATE t2 SET b=74243 WHERE a=6162; UPDATE t2 SET b=99353 WHERE a=6163; UPDATE t2 SET b=66910 WHERE a=6164; UPDATE t2 SET b=22891 WHERE a=6165; UPDATE t2 SET b=54038 WHERE a=6166; UPDATE t2 SET b=55320 WHERE a=6167; UPDATE t2 SET b=7074 WHERE a=6168; UPDATE t2 SET b=68971 WHERE a=6169; UPDATE t2 SET b=22781 WHERE a=6170; UPDATE t2 SET b=61479 WHERE a=6171; UPDATE t2 SET b=78494 WHERE a=6172; UPDATE t2 SET b=1649 WHERE a=6173; UPDATE t2 SET b=93369 WHERE a=6174; UPDATE t2 SET b=42689 WHERE a=6175; UPDATE t2 SET b=49804 WHERE a=6176; UPDATE t2 SET b=82876 WHERE a=6177; UPDATE t2 SET b=57836 WHERE a=6178; UPDATE t2 SET b=50496 WHERE a=6179; UPDATE t2 SET b=22550 WHERE a=6180; UPDATE t2 SET b=26605 WHERE a=6181; UPDATE t2 SET b=59836 WHERE a=6182; UPDATE t2 SET b=7642 WHERE a=6183; UPDATE t2 SET b=23587 WHERE a=6184; UPDATE t2 SET b=70194 WHERE a=6185; UPDATE t2 SET b=39549 WHERE a=6186; UPDATE t2 SET b=46514 WHERE a=6187; UPDATE t2 SET b=98773 WHERE a=6188; UPDATE t2 SET b=33124 WHERE a=6189; UPDATE t2 SET b=20306 WHERE a=6190; UPDATE t2 SET b=14682 WHERE a=6191; UPDATE t2 SET b=41918 WHERE a=6192; UPDATE t2 SET b=7026 WHERE a=6193; UPDATE t2 SET b=63581 WHERE a=6194; UPDATE t2 SET b=22466 WHERE a=6195; UPDATE t2 SET b=1283 WHERE a=6196; UPDATE t2 SET b=9397 WHERE a=6197; UPDATE t2 SET b=837 WHERE a=6198; UPDATE t2 SET b=60852 WHERE a=6199; UPDATE t2 SET b=45284 WHERE a=6200; UPDATE t2 SET b=40126 WHERE a=6201; UPDATE t2 SET b=96426 WHERE a=6202; UPDATE t2 SET b=85524 WHERE a=6203; UPDATE t2 SET b=93449 WHERE a=6204; UPDATE t2 SET b=50254 WHERE a=6205; UPDATE t2 SET b=7196 WHERE a=6206; UPDATE t2 SET b=68727 WHERE a=6207; UPDATE t2 SET b=58895 WHERE a=6208; UPDATE t2 SET b=91170 WHERE a=6209; UPDATE t2 SET b=67843 WHERE a=6210; UPDATE t2 SET b=58145 WHERE a=6211; UPDATE t2 SET b=64200 WHERE a=6212; UPDATE t2 SET b=45891 WHERE a=6213; UPDATE t2 SET b=30988 WHERE a=6214; UPDATE t2 SET b=50170 WHERE a=6215; UPDATE t2 SET b=12004 WHERE a=6216; UPDATE t2 SET b=6512 WHERE a=6217; UPDATE t2 SET b=10770 WHERE a=6218; UPDATE t2 SET b=8697 WHERE a=6219; UPDATE t2 SET b=46467 WHERE a=6220; UPDATE t2 SET b=15742 WHERE a=6221; UPDATE t2 SET b=92371 WHERE a=6222; UPDATE t2 SET b=36505 WHERE a=6223; UPDATE t2 SET b=81914 WHERE a=6224; UPDATE t2 SET b=31216 WHERE a=6225; UPDATE t2 SET b=91064 WHERE a=6226; UPDATE t2 SET b=45582 WHERE a=6227; UPDATE t2 SET b=53116 WHERE a=6228; UPDATE t2 SET b=24497 WHERE a=6229; UPDATE t2 SET b=4509 WHERE a=6230; UPDATE t2 SET b=79209 WHERE a=6231; UPDATE t2 SET b=55395 WHERE a=6232; UPDATE t2 SET b=16632 WHERE a=6233; UPDATE t2 SET b=6870 WHERE a=6234; UPDATE t2 SET b=80258 WHERE a=6235; UPDATE t2 SET b=13784 WHERE a=6236; UPDATE t2 SET b=42298 WHERE a=6237; UPDATE t2 SET b=91498 WHERE a=6238; UPDATE t2 SET b=16334 WHERE a=6239; UPDATE t2 SET b=65072 WHERE a=6240; UPDATE t2 SET b=74035 WHERE a=6241; UPDATE t2 SET b=67542 WHERE a=6242; UPDATE t2 SET b=80348 WHERE a=6243; UPDATE t2 SET b=3597 WHERE a=6244; UPDATE t2 SET b=30565 WHERE a=6245; UPDATE t2 SET b=41410 WHERE a=6246; UPDATE t2 SET b=95825 WHERE a=6247; UPDATE t2 SET b=99170 WHERE a=6248; UPDATE t2 SET b=47790 WHERE a=6249; UPDATE t2 SET b=25580 WHERE a=6250; UPDATE t2 SET b=18618 WHERE a=6251; UPDATE t2 SET b=156 WHERE a=6252; UPDATE t2 SET b=10028 WHERE a=6253; UPDATE t2 SET b=23177 WHERE a=6254; UPDATE t2 SET b=12557 WHERE a=6255; UPDATE t2 SET b=71941 WHERE a=6256; UPDATE t2 SET b=39905 WHERE a=6257; UPDATE t2 SET b=97710 WHERE a=6258; UPDATE t2 SET b=66797 WHERE a=6259; UPDATE t2 SET b=62243 WHERE a=6260; UPDATE t2 SET b=76339 WHERE a=6261; UPDATE t2 SET b=7928 WHERE a=6262; UPDATE t2 SET b=80971 WHERE a=6263; UPDATE t2 SET b=31555 WHERE a=6264; UPDATE t2 SET b=47388 WHERE a=6265; UPDATE t2 SET b=20286 WHERE a=6266; UPDATE t2 SET b=20585 WHERE a=6267; UPDATE t2 SET b=91266 WHERE a=6268; UPDATE t2 SET b=12605 WHERE a=6269; UPDATE t2 SET b=3318 WHERE a=6270; UPDATE t2 SET b=69166 WHERE a=6271; UPDATE t2 SET b=11072 WHERE a=6272; UPDATE t2 SET b=18331 WHERE a=6273; UPDATE t2 SET b=46249 WHERE a=6274; UPDATE t2 SET b=82174 WHERE a=6275; UPDATE t2 SET b=31058 WHERE a=6276; UPDATE t2 SET b=67157 WHERE a=6277; UPDATE t2 SET b=84326 WHERE a=6278; UPDATE t2 SET b=61339 WHERE a=6279; UPDATE t2 SET b=53539 WHERE a=6280; UPDATE t2 SET b=17264 WHERE a=6281; UPDATE t2 SET b=33677 WHERE a=6282; UPDATE t2 SET b=48966 WHERE a=6283; UPDATE t2 SET b=98545 WHERE a=6284; UPDATE t2 SET b=85749 WHERE a=6285; UPDATE t2 SET b=74689 WHERE a=6286; UPDATE t2 SET b=75538 WHERE a=6287; UPDATE t2 SET b=38074 WHERE a=6288; UPDATE t2 SET b=77956 WHERE a=6289; UPDATE t2 SET b=50222 WHERE a=6290; UPDATE t2 SET b=48902 WHERE a=6291; UPDATE t2 SET b=51074 WHERE a=6292; UPDATE t2 SET b=37407 WHERE a=6293; UPDATE t2 SET b=13060 WHERE a=6294; UPDATE t2 SET b=37511 WHERE a=6295; UPDATE t2 SET b=43415 WHERE a=6296; UPDATE t2 SET b=63497 WHERE a=6297; UPDATE t2 SET b=90091 WHERE a=6298; UPDATE t2 SET b=74566 WHERE a=6299; UPDATE t2 SET b=93764 WHERE a=6300; UPDATE t2 SET b=48711 WHERE a=6301; UPDATE t2 SET b=7 WHERE a=6302; UPDATE t2 SET b=56239 WHERE a=6303; UPDATE t2 SET b=91019 WHERE a=6304; UPDATE t2 SET b=57403 WHERE a=6305; UPDATE t2 SET b=82785 WHERE a=6306; UPDATE t2 SET b=25636 WHERE a=6307; UPDATE t2 SET b=61080 WHERE a=6308; UPDATE t2 SET b=60527 WHERE a=6309; UPDATE t2 SET b=22326 WHERE a=6310; UPDATE t2 SET b=52390 WHERE a=6311; UPDATE t2 SET b=2927 WHERE a=6312; UPDATE t2 SET b=99754 WHERE a=6313; UPDATE t2 SET b=6421 WHERE a=6314; UPDATE t2 SET b=17689 WHERE a=6315; UPDATE t2 SET b=27198 WHERE a=6316; UPDATE t2 SET b=73794 WHERE a=6317; UPDATE t2 SET b=40455 WHERE a=6318; UPDATE t2 SET b=11844 WHERE a=6319; UPDATE t2 SET b=13662 WHERE a=6320; UPDATE t2 SET b=39155 WHERE a=6321; UPDATE t2 SET b=71625 WHERE a=6322; UPDATE t2 SET b=33711 WHERE a=6323; UPDATE t2 SET b=85275 WHERE a=6324; UPDATE t2 SET b=42306 WHERE a=6325; UPDATE t2 SET b=23403 WHERE a=6326; UPDATE t2 SET b=8036 WHERE a=6327; UPDATE t2 SET b=3220 WHERE a=6328; UPDATE t2 SET b=97476 WHERE a=6329; UPDATE t2 SET b=51362 WHERE a=6330; UPDATE t2 SET b=70523 WHERE a=6331; UPDATE t2 SET b=78425 WHERE a=6332; UPDATE t2 SET b=36759 WHERE a=6333; UPDATE t2 SET b=80149 WHERE a=6334; UPDATE t2 SET b=98260 WHERE a=6335; UPDATE t2 SET b=95629 WHERE a=6336; UPDATE t2 SET b=52537 WHERE a=6337; UPDATE t2 SET b=66037 WHERE a=6338; UPDATE t2 SET b=55692 WHERE a=6339; UPDATE t2 SET b=1724 WHERE a=6340; UPDATE t2 SET b=17779 WHERE a=6341; UPDATE t2 SET b=97797 WHERE a=6342; UPDATE t2 SET b=13302 WHERE a=6343; UPDATE t2 SET b=76519 WHERE a=6344; UPDATE t2 SET b=43347 WHERE a=6345; UPDATE t2 SET b=2386 WHERE a=6346; UPDATE t2 SET b=159 WHERE a=6347; UPDATE t2 SET b=22388 WHERE a=6348; UPDATE t2 SET b=85561 WHERE a=6349; UPDATE t2 SET b=79617 WHERE a=6350; UPDATE t2 SET b=20329 WHERE a=6351; UPDATE t2 SET b=24386 WHERE a=6352; UPDATE t2 SET b=84287 WHERE a=6353; UPDATE t2 SET b=92799 WHERE a=6354; UPDATE t2 SET b=95169 WHERE a=6355; UPDATE t2 SET b=81240 WHERE a=6356; UPDATE t2 SET b=7188 WHERE a=6357; UPDATE t2 SET b=3544 WHERE a=6358; UPDATE t2 SET b=78374 WHERE a=6359; UPDATE t2 SET b=87782 WHERE a=6360; UPDATE t2 SET b=69044 WHERE a=6361; UPDATE t2 SET b=85068 WHERE a=6362; UPDATE t2 SET b=51997 WHERE a=6363; UPDATE t2 SET b=29015 WHERE a=6364; UPDATE t2 SET b=77139 WHERE a=6365; UPDATE t2 SET b=39708 WHERE a=6366; UPDATE t2 SET b=95736 WHERE a=6367; UPDATE t2 SET b=52624 WHERE a=6368; UPDATE t2 SET b=28121 WHERE a=6369; UPDATE t2 SET b=11694 WHERE a=6370; UPDATE t2 SET b=69610 WHERE a=6371; UPDATE t2 SET b=95334 WHERE a=6372; UPDATE t2 SET b=29084 WHERE a=6373; UPDATE t2 SET b=91716 WHERE a=6374; UPDATE t2 SET b=17757 WHERE a=6375; UPDATE t2 SET b=93429 WHERE a=6376; UPDATE t2 SET b=12368 WHERE a=6377; UPDATE t2 SET b=8956 WHERE a=6378; UPDATE t2 SET b=15223 WHERE a=6379; UPDATE t2 SET b=44078 WHERE a=6380; UPDATE t2 SET b=10277 WHERE a=6381; UPDATE t2 SET b=85380 WHERE a=6382; UPDATE t2 SET b=55843 WHERE a=6383; UPDATE t2 SET b=75765 WHERE a=6384; UPDATE t2 SET b=27704 WHERE a=6385; UPDATE t2 SET b=50144 WHERE a=6386; UPDATE t2 SET b=64912 WHERE a=6387; UPDATE t2 SET b=51113 WHERE a=6388; UPDATE t2 SET b=68340 WHERE a=6389; UPDATE t2 SET b=95798 WHERE a=6390; UPDATE t2 SET b=39644 WHERE a=6391; UPDATE t2 SET b=6586 WHERE a=6392; UPDATE t2 SET b=94539 WHERE a=6393; UPDATE t2 SET b=21607 WHERE a=6394; UPDATE t2 SET b=19083 WHERE a=6395; UPDATE t2 SET b=45641 WHERE a=6396; UPDATE t2 SET b=53663 WHERE a=6397; UPDATE t2 SET b=9443 WHERE a=6398; UPDATE t2 SET b=33530 WHERE a=6399; UPDATE t2 SET b=49486 WHERE a=6400; UPDATE t2 SET b=67559 WHERE a=6401; UPDATE t2 SET b=76982 WHERE a=6402; UPDATE t2 SET b=17370 WHERE a=6403; UPDATE t2 SET b=36932 WHERE a=6404; UPDATE t2 SET b=27737 WHERE a=6405; UPDATE t2 SET b=72397 WHERE a=6406; UPDATE t2 SET b=49933 WHERE a=6407; UPDATE t2 SET b=28988 WHERE a=6408; UPDATE t2 SET b=24074 WHERE a=6409; UPDATE t2 SET b=94526 WHERE a=6410; UPDATE t2 SET b=28416 WHERE a=6411; UPDATE t2 SET b=48959 WHERE a=6412; UPDATE t2 SET b=55233 WHERE a=6413; UPDATE t2 SET b=93673 WHERE a=6414; UPDATE t2 SET b=84465 WHERE a=6415; UPDATE t2 SET b=36734 WHERE a=6416; UPDATE t2 SET b=27450 WHERE a=6417; UPDATE t2 SET b=76938 WHERE a=6418; UPDATE t2 SET b=92785 WHERE a=6419; UPDATE t2 SET b=37819 WHERE a=6420; UPDATE t2 SET b=17583 WHERE a=6421; UPDATE t2 SET b=33606 WHERE a=6422; UPDATE t2 SET b=19399 WHERE a=6423; UPDATE t2 SET b=2168 WHERE a=6424; UPDATE t2 SET b=36856 WHERE a=6425; UPDATE t2 SET b=25841 WHERE a=6426; UPDATE t2 SET b=74933 WHERE a=6427; UPDATE t2 SET b=17299 WHERE a=6428; UPDATE t2 SET b=88633 WHERE a=6429; UPDATE t2 SET b=27749 WHERE a=6430; UPDATE t2 SET b=25847 WHERE a=6431; UPDATE t2 SET b=20666 WHERE a=6432; UPDATE t2 SET b=37665 WHERE a=6433; UPDATE t2 SET b=58594 WHERE a=6434; UPDATE t2 SET b=95307 WHERE a=6435; UPDATE t2 SET b=51825 WHERE a=6436; UPDATE t2 SET b=26536 WHERE a=6437; UPDATE t2 SET b=14539 WHERE a=6438; UPDATE t2 SET b=3508 WHERE a=6439; UPDATE t2 SET b=62321 WHERE a=6440; UPDATE t2 SET b=66119 WHERE a=6441; UPDATE t2 SET b=97 WHERE a=6442; UPDATE t2 SET b=77539 WHERE a=6443; UPDATE t2 SET b=13291 WHERE a=6444; UPDATE t2 SET b=39195 WHERE a=6445; UPDATE t2 SET b=21767 WHERE a=6446; UPDATE t2 SET b=73152 WHERE a=6447; UPDATE t2 SET b=40138 WHERE a=6448; UPDATE t2 SET b=87988 WHERE a=6449; UPDATE t2 SET b=52641 WHERE a=6450; UPDATE t2 SET b=67307 WHERE a=6451; UPDATE t2 SET b=79070 WHERE a=6452; UPDATE t2 SET b=86198 WHERE a=6453; UPDATE t2 SET b=85940 WHERE a=6454; UPDATE t2 SET b=65067 WHERE a=6455; UPDATE t2 SET b=76541 WHERE a=6456; UPDATE t2 SET b=76322 WHERE a=6457; UPDATE t2 SET b=2298 WHERE a=6458; UPDATE t2 SET b=65899 WHERE a=6459; UPDATE t2 SET b=72008 WHERE a=6460; UPDATE t2 SET b=64800 WHERE a=6461; UPDATE t2 SET b=40093 WHERE a=6462; UPDATE t2 SET b=16191 WHERE a=6463; UPDATE t2 SET b=25040 WHERE a=6464; UPDATE t2 SET b=92463 WHERE a=6465; UPDATE t2 SET b=61802 WHERE a=6466; UPDATE t2 SET b=57756 WHERE a=6467; UPDATE t2 SET b=15267 WHERE a=6468; UPDATE t2 SET b=26284 WHERE a=6469; UPDATE t2 SET b=28865 WHERE a=6470; UPDATE t2 SET b=19264 WHERE a=6471; UPDATE t2 SET b=10434 WHERE a=6472; UPDATE t2 SET b=7865 WHERE a=6473; UPDATE t2 SET b=496 WHERE a=6474; UPDATE t2 SET b=84507 WHERE a=6475; UPDATE t2 SET b=12745 WHERE a=6476; UPDATE t2 SET b=98045 WHERE a=6477; UPDATE t2 SET b=57812 WHERE a=6478; UPDATE t2 SET b=28547 WHERE a=6479; UPDATE t2 SET b=93968 WHERE a=6480; UPDATE t2 SET b=12097 WHERE a=6481; UPDATE t2 SET b=17402 WHERE a=6482; UPDATE t2 SET b=22856 WHERE a=6483; UPDATE t2 SET b=32026 WHERE a=6484; UPDATE t2 SET b=94362 WHERE a=6485; UPDATE t2 SET b=20659 WHERE a=6486; UPDATE t2 SET b=34180 WHERE a=6487; UPDATE t2 SET b=32004 WHERE a=6488; UPDATE t2 SET b=55721 WHERE a=6489; UPDATE t2 SET b=37339 WHERE a=6490; UPDATE t2 SET b=59082 WHERE a=6491; UPDATE t2 SET b=21000 WHERE a=6492; UPDATE t2 SET b=92083 WHERE a=6493; UPDATE t2 SET b=91825 WHERE a=6494; UPDATE t2 SET b=97977 WHERE a=6495; UPDATE t2 SET b=70016 WHERE a=6496; UPDATE t2 SET b=41189 WHERE a=6497; UPDATE t2 SET b=2563 WHERE a=6498; UPDATE t2 SET b=89223 WHERE a=6499; UPDATE t2 SET b=2325 WHERE a=6500; UPDATE t2 SET b=10041 WHERE a=6501; UPDATE t2 SET b=37877 WHERE a=6502; UPDATE t2 SET b=33368 WHERE a=6503; UPDATE t2 SET b=61969 WHERE a=6504; UPDATE t2 SET b=89884 WHERE a=6505; UPDATE t2 SET b=69323 WHERE a=6506; UPDATE t2 SET b=31860 WHERE a=6507; UPDATE t2 SET b=3396 WHERE a=6508; UPDATE t2 SET b=58710 WHERE a=6509; UPDATE t2 SET b=68021 WHERE a=6510; UPDATE t2 SET b=56101 WHERE a=6511; UPDATE t2 SET b=52717 WHERE a=6512; UPDATE t2 SET b=36117 WHERE a=6513; UPDATE t2 SET b=23228 WHERE a=6514; UPDATE t2 SET b=31581 WHERE a=6515; UPDATE t2 SET b=71657 WHERE a=6516; UPDATE t2 SET b=31590 WHERE a=6517; UPDATE t2 SET b=46270 WHERE a=6518; UPDATE t2 SET b=97381 WHERE a=6519; UPDATE t2 SET b=92681 WHERE a=6520; UPDATE t2 SET b=92738 WHERE a=6521; UPDATE t2 SET b=16293 WHERE a=6522; UPDATE t2 SET b=89538 WHERE a=6523; UPDATE t2 SET b=53186 WHERE a=6524; UPDATE t2 SET b=7875 WHERE a=6525; UPDATE t2 SET b=57146 WHERE a=6526; UPDATE t2 SET b=17824 WHERE a=6527; UPDATE t2 SET b=85686 WHERE a=6528; UPDATE t2 SET b=34592 WHERE a=6529; UPDATE t2 SET b=96786 WHERE a=6530; UPDATE t2 SET b=65682 WHERE a=6531; UPDATE t2 SET b=52371 WHERE a=6532; UPDATE t2 SET b=38649 WHERE a=6533; UPDATE t2 SET b=78370 WHERE a=6534; UPDATE t2 SET b=87291 WHERE a=6535; UPDATE t2 SET b=51920 WHERE a=6536; UPDATE t2 SET b=31570 WHERE a=6537; UPDATE t2 SET b=84240 WHERE a=6538; UPDATE t2 SET b=73160 WHERE a=6539; UPDATE t2 SET b=56850 WHERE a=6540; UPDATE t2 SET b=64076 WHERE a=6541; UPDATE t2 SET b=48558 WHERE a=6542; UPDATE t2 SET b=42974 WHERE a=6543; UPDATE t2 SET b=2980 WHERE a=6544; UPDATE t2 SET b=96809 WHERE a=6545; UPDATE t2 SET b=84846 WHERE a=6546; UPDATE t2 SET b=18923 WHERE a=6547; UPDATE t2 SET b=52467 WHERE a=6548; UPDATE t2 SET b=7198 WHERE a=6549; UPDATE t2 SET b=71308 WHERE a=6550; UPDATE t2 SET b=73577 WHERE a=6551; UPDATE t2 SET b=96434 WHERE a=6552; UPDATE t2 SET b=54848 WHERE a=6553; UPDATE t2 SET b=5367 WHERE a=6554; UPDATE t2 SET b=47949 WHERE a=6555; UPDATE t2 SET b=21913 WHERE a=6556; UPDATE t2 SET b=95675 WHERE a=6557; UPDATE t2 SET b=23161 WHERE a=6558; UPDATE t2 SET b=94671 WHERE a=6559; UPDATE t2 SET b=53717 WHERE a=6560; UPDATE t2 SET b=96165 WHERE a=6561; UPDATE t2 SET b=98821 WHERE a=6562; UPDATE t2 SET b=29763 WHERE a=6563; UPDATE t2 SET b=19452 WHERE a=6564; UPDATE t2 SET b=54521 WHERE a=6565; UPDATE t2 SET b=34950 WHERE a=6566; UPDATE t2 SET b=18075 WHERE a=6567; UPDATE t2 SET b=84366 WHERE a=6568; UPDATE t2 SET b=88795 WHERE a=6569; UPDATE t2 SET b=9313 WHERE a=6570; UPDATE t2 SET b=14024 WHERE a=6571; UPDATE t2 SET b=23594 WHERE a=6572; UPDATE t2 SET b=30544 WHERE a=6573; UPDATE t2 SET b=39508 WHERE a=6574; UPDATE t2 SET b=23614 WHERE a=6575; UPDATE t2 SET b=61544 WHERE a=6576; UPDATE t2 SET b=4649 WHERE a=6577; UPDATE t2 SET b=92175 WHERE a=6578; UPDATE t2 SET b=79990 WHERE a=6579; UPDATE t2 SET b=7553 WHERE a=6580; UPDATE t2 SET b=8972 WHERE a=6581; UPDATE t2 SET b=63971 WHERE a=6582; UPDATE t2 SET b=91791 WHERE a=6583; UPDATE t2 SET b=55231 WHERE a=6584; UPDATE t2 SET b=74639 WHERE a=6585; UPDATE t2 SET b=9045 WHERE a=6586; UPDATE t2 SET b=3357 WHERE a=6587; UPDATE t2 SET b=34520 WHERE a=6588; UPDATE t2 SET b=99230 WHERE a=6589; UPDATE t2 SET b=11400 WHERE a=6590; UPDATE t2 SET b=27467 WHERE a=6591; UPDATE t2 SET b=12154 WHERE a=6592; UPDATE t2 SET b=5765 WHERE a=6593; UPDATE t2 SET b=53453 WHERE a=6594; UPDATE t2 SET b=78963 WHERE a=6595; UPDATE t2 SET b=90652 WHERE a=6596; UPDATE t2 SET b=48168 WHERE a=6597; UPDATE t2 SET b=24898 WHERE a=6598; UPDATE t2 SET b=29305 WHERE a=6599; UPDATE t2 SET b=56164 WHERE a=6600; UPDATE t2 SET b=41776 WHERE a=6601; UPDATE t2 SET b=98200 WHERE a=6602; UPDATE t2 SET b=42578 WHERE a=6603; UPDATE t2 SET b=72533 WHERE a=6604; UPDATE t2 SET b=9466 WHERE a=6605; UPDATE t2 SET b=44753 WHERE a=6606; UPDATE t2 SET b=69135 WHERE a=6607; UPDATE t2 SET b=4505 WHERE a=6608; UPDATE t2 SET b=33490 WHERE a=6609; UPDATE t2 SET b=14329 WHERE a=6610; UPDATE t2 SET b=95419 WHERE a=6611; UPDATE t2 SET b=56355 WHERE a=6612; UPDATE t2 SET b=11673 WHERE a=6613; UPDATE t2 SET b=26267 WHERE a=6614; UPDATE t2 SET b=48860 WHERE a=6615; UPDATE t2 SET b=40570 WHERE a=6616; UPDATE t2 SET b=42127 WHERE a=6617; UPDATE t2 SET b=17155 WHERE a=6618; UPDATE t2 SET b=91647 WHERE a=6619; UPDATE t2 SET b=2245 WHERE a=6620; UPDATE t2 SET b=75551 WHERE a=6621; UPDATE t2 SET b=16893 WHERE a=6622; UPDATE t2 SET b=48973 WHERE a=6623; UPDATE t2 SET b=45628 WHERE a=6624; UPDATE t2 SET b=81570 WHERE a=6625; UPDATE t2 SET b=72515 WHERE a=6626; UPDATE t2 SET b=84315 WHERE a=6627; UPDATE t2 SET b=51236 WHERE a=6628; UPDATE t2 SET b=85908 WHERE a=6629; UPDATE t2 SET b=27349 WHERE a=6630; UPDATE t2 SET b=87226 WHERE a=6631; UPDATE t2 SET b=55536 WHERE a=6632; UPDATE t2 SET b=38019 WHERE a=6633; UPDATE t2 SET b=93406 WHERE a=6634; UPDATE t2 SET b=45901 WHERE a=6635; UPDATE t2 SET b=70048 WHERE a=6636; UPDATE t2 SET b=60079 WHERE a=6637; UPDATE t2 SET b=49715 WHERE a=6638; UPDATE t2 SET b=20359 WHERE a=6639; UPDATE t2 SET b=78554 WHERE a=6640; UPDATE t2 SET b=80028 WHERE a=6641; UPDATE t2 SET b=84811 WHERE a=6642; UPDATE t2 SET b=16718 WHERE a=6643; UPDATE t2 SET b=23178 WHERE a=6644; UPDATE t2 SET b=77411 WHERE a=6645; UPDATE t2 SET b=31724 WHERE a=6646; UPDATE t2 SET b=81665 WHERE a=6647; UPDATE t2 SET b=75440 WHERE a=6648; UPDATE t2 SET b=40299 WHERE a=6649; UPDATE t2 SET b=19223 WHERE a=6650; UPDATE t2 SET b=26800 WHERE a=6651; UPDATE t2 SET b=10490 WHERE a=6652; UPDATE t2 SET b=75223 WHERE a=6653; UPDATE t2 SET b=86720 WHERE a=6654; UPDATE t2 SET b=85467 WHERE a=6655; UPDATE t2 SET b=32553 WHERE a=6656; UPDATE t2 SET b=70131 WHERE a=6657; UPDATE t2 SET b=59848 WHERE a=6658; UPDATE t2 SET b=43299 WHERE a=6659; UPDATE t2 SET b=75771 WHERE a=6660; UPDATE t2 SET b=54780 WHERE a=6661; UPDATE t2 SET b=80500 WHERE a=6662; UPDATE t2 SET b=29143 WHERE a=6663; UPDATE t2 SET b=59057 WHERE a=6664; UPDATE t2 SET b=49705 WHERE a=6665; UPDATE t2 SET b=23045 WHERE a=6666; UPDATE t2 SET b=85408 WHERE a=6667; UPDATE t2 SET b=94635 WHERE a=6668; UPDATE t2 SET b=27403 WHERE a=6669; UPDATE t2 SET b=65019 WHERE a=6670; UPDATE t2 SET b=35721 WHERE a=6671; UPDATE t2 SET b=65174 WHERE a=6672; UPDATE t2 SET b=34770 WHERE a=6673; UPDATE t2 SET b=63849 WHERE a=6674; UPDATE t2 SET b=79948 WHERE a=6675; UPDATE t2 SET b=60418 WHERE a=6676; UPDATE t2 SET b=88799 WHERE a=6677; UPDATE t2 SET b=96176 WHERE a=6678; UPDATE t2 SET b=7160 WHERE a=6679; UPDATE t2 SET b=67069 WHERE a=6680; UPDATE t2 SET b=7970 WHERE a=6681; UPDATE t2 SET b=27296 WHERE a=6682; UPDATE t2 SET b=17183 WHERE a=6683; UPDATE t2 SET b=56338 WHERE a=6684; UPDATE t2 SET b=18523 WHERE a=6685; UPDATE t2 SET b=13180 WHERE a=6686; UPDATE t2 SET b=46298 WHERE a=6687; UPDATE t2 SET b=63305 WHERE a=6688; UPDATE t2 SET b=69151 WHERE a=6689; UPDATE t2 SET b=1195 WHERE a=6690; UPDATE t2 SET b=56207 WHERE a=6691; UPDATE t2 SET b=1383 WHERE a=6692; UPDATE t2 SET b=52046 WHERE a=6693; UPDATE t2 SET b=16719 WHERE a=6694; UPDATE t2 SET b=54094 WHERE a=6695; UPDATE t2 SET b=34696 WHERE a=6696; UPDATE t2 SET b=88609 WHERE a=6697; UPDATE t2 SET b=91210 WHERE a=6698; UPDATE t2 SET b=46901 WHERE a=6699; UPDATE t2 SET b=97315 WHERE a=6700; UPDATE t2 SET b=35659 WHERE a=6701; UPDATE t2 SET b=46831 WHERE a=6702; UPDATE t2 SET b=36901 WHERE a=6703; UPDATE t2 SET b=28551 WHERE a=6704; UPDATE t2 SET b=95956 WHERE a=6705; UPDATE t2 SET b=41634 WHERE a=6706; UPDATE t2 SET b=83616 WHERE a=6707; UPDATE t2 SET b=38001 WHERE a=6708; UPDATE t2 SET b=20467 WHERE a=6709; UPDATE t2 SET b=52239 WHERE a=6710; UPDATE t2 SET b=60177 WHERE a=6711; UPDATE t2 SET b=88328 WHERE a=6712; UPDATE t2 SET b=81887 WHERE a=6713; UPDATE t2 SET b=61670 WHERE a=6714; UPDATE t2 SET b=64910 WHERE a=6715; UPDATE t2 SET b=76635 WHERE a=6716; UPDATE t2 SET b=22264 WHERE a=6717; UPDATE t2 SET b=87007 WHERE a=6718; UPDATE t2 SET b=14803 WHERE a=6719; UPDATE t2 SET b=62755 WHERE a=6720; UPDATE t2 SET b=31376 WHERE a=6721; UPDATE t2 SET b=42250 WHERE a=6722; UPDATE t2 SET b=91126 WHERE a=6723; UPDATE t2 SET b=57698 WHERE a=6724; UPDATE t2 SET b=57643 WHERE a=6725; UPDATE t2 SET b=50329 WHERE a=6726; UPDATE t2 SET b=97781 WHERE a=6727; UPDATE t2 SET b=73723 WHERE a=6728; UPDATE t2 SET b=51404 WHERE a=6729; UPDATE t2 SET b=78773 WHERE a=6730; UPDATE t2 SET b=91542 WHERE a=6731; UPDATE t2 SET b=51119 WHERE a=6732; UPDATE t2 SET b=59285 WHERE a=6733; UPDATE t2 SET b=23073 WHERE a=6734; UPDATE t2 SET b=40076 WHERE a=6735; UPDATE t2 SET b=71610 WHERE a=6736; UPDATE t2 SET b=70810 WHERE a=6737; UPDATE t2 SET b=55505 WHERE a=6738; UPDATE t2 SET b=74238 WHERE a=6739; UPDATE t2 SET b=59328 WHERE a=6740; UPDATE t2 SET b=89743 WHERE a=6741; UPDATE t2 SET b=29796 WHERE a=6742; UPDATE t2 SET b=60473 WHERE a=6743; UPDATE t2 SET b=59658 WHERE a=6744; UPDATE t2 SET b=59575 WHERE a=6745; UPDATE t2 SET b=73999 WHERE a=6746; UPDATE t2 SET b=35243 WHERE a=6747; UPDATE t2 SET b=11142 WHERE a=6748; UPDATE t2 SET b=34081 WHERE a=6749; UPDATE t2 SET b=4802 WHERE a=6750; UPDATE t2 SET b=24509 WHERE a=6751; UPDATE t2 SET b=13494 WHERE a=6752; UPDATE t2 SET b=67696 WHERE a=6753; UPDATE t2 SET b=12147 WHERE a=6754; UPDATE t2 SET b=85713 WHERE a=6755; UPDATE t2 SET b=13848 WHERE a=6756; UPDATE t2 SET b=82310 WHERE a=6757; UPDATE t2 SET b=10304 WHERE a=6758; UPDATE t2 SET b=76098 WHERE a=6759; UPDATE t2 SET b=3689 WHERE a=6760; UPDATE t2 SET b=59771 WHERE a=6761; UPDATE t2 SET b=39129 WHERE a=6762; UPDATE t2 SET b=37284 WHERE a=6763; UPDATE t2 SET b=83630 WHERE a=6764; UPDATE t2 SET b=76605 WHERE a=6765; UPDATE t2 SET b=5758 WHERE a=6766; UPDATE t2 SET b=3521 WHERE a=6767; UPDATE t2 SET b=24754 WHERE a=6768; UPDATE t2 SET b=81242 WHERE a=6769; UPDATE t2 SET b=19597 WHERE a=6770; UPDATE t2 SET b=28408 WHERE a=6771; UPDATE t2 SET b=40778 WHERE a=6772; UPDATE t2 SET b=72220 WHERE a=6773; UPDATE t2 SET b=55862 WHERE a=6774; UPDATE t2 SET b=89707 WHERE a=6775; UPDATE t2 SET b=2895 WHERE a=6776; UPDATE t2 SET b=38924 WHERE a=6777; UPDATE t2 SET b=88660 WHERE a=6778; UPDATE t2 SET b=73995 WHERE a=6779; UPDATE t2 SET b=16164 WHERE a=6780; UPDATE t2 SET b=25830 WHERE a=6781; UPDATE t2 SET b=70313 WHERE a=6782; UPDATE t2 SET b=82360 WHERE a=6783; UPDATE t2 SET b=3409 WHERE a=6784; UPDATE t2 SET b=86673 WHERE a=6785; UPDATE t2 SET b=52043 WHERE a=6786; UPDATE t2 SET b=87544 WHERE a=6787; UPDATE t2 SET b=98088 WHERE a=6788; UPDATE t2 SET b=83321 WHERE a=6789; UPDATE t2 SET b=53703 WHERE a=6790; UPDATE t2 SET b=78473 WHERE a=6791; UPDATE t2 SET b=41327 WHERE a=6792; UPDATE t2 SET b=60435 WHERE a=6793; UPDATE t2 SET b=49798 WHERE a=6794; UPDATE t2 SET b=64750 WHERE a=6795; UPDATE t2 SET b=80043 WHERE a=6796; UPDATE t2 SET b=18553 WHERE a=6797; UPDATE t2 SET b=84866 WHERE a=6798; UPDATE t2 SET b=8655 WHERE a=6799; UPDATE t2 SET b=79720 WHERE a=6800; UPDATE t2 SET b=2257 WHERE a=6801; UPDATE t2 SET b=48553 WHERE a=6802; UPDATE t2 SET b=26685 WHERE a=6803; UPDATE t2 SET b=9980 WHERE a=6804; UPDATE t2 SET b=31483 WHERE a=6805; UPDATE t2 SET b=37534 WHERE a=6806; UPDATE t2 SET b=46001 WHERE a=6807; UPDATE t2 SET b=25724 WHERE a=6808; UPDATE t2 SET b=68165 WHERE a=6809; UPDATE t2 SET b=62719 WHERE a=6810; UPDATE t2 SET b=52563 WHERE a=6811; UPDATE t2 SET b=92104 WHERE a=6812; UPDATE t2 SET b=25243 WHERE a=6813; UPDATE t2 SET b=4940 WHERE a=6814; UPDATE t2 SET b=95132 WHERE a=6815; UPDATE t2 SET b=18992 WHERE a=6816; UPDATE t2 SET b=24135 WHERE a=6817; UPDATE t2 SET b=40702 WHERE a=6818; UPDATE t2 SET b=42468 WHERE a=6819; UPDATE t2 SET b=36133 WHERE a=6820; UPDATE t2 SET b=93529 WHERE a=6821; UPDATE t2 SET b=16712 WHERE a=6822; UPDATE t2 SET b=17891 WHERE a=6823; UPDATE t2 SET b=72698 WHERE a=6824; UPDATE t2 SET b=9710 WHERE a=6825; UPDATE t2 SET b=36515 WHERE a=6826; UPDATE t2 SET b=381 WHERE a=6827; UPDATE t2 SET b=43749 WHERE a=6828; UPDATE t2 SET b=81619 WHERE a=6829; UPDATE t2 SET b=50540 WHERE a=6830; UPDATE t2 SET b=40182 WHERE a=6831; UPDATE t2 SET b=10838 WHERE a=6832; UPDATE t2 SET b=97704 WHERE a=6833; UPDATE t2 SET b=82731 WHERE a=6834; UPDATE t2 SET b=26078 WHERE a=6835; UPDATE t2 SET b=71686 WHERE a=6836; UPDATE t2 SET b=17656 WHERE a=6837; UPDATE t2 SET b=49641 WHERE a=6838; UPDATE t2 SET b=79782 WHERE a=6839; UPDATE t2 SET b=99054 WHERE a=6840; UPDATE t2 SET b=22543 WHERE a=6841; UPDATE t2 SET b=12546 WHERE a=6842; UPDATE t2 SET b=89373 WHERE a=6843; UPDATE t2 SET b=86360 WHERE a=6844; UPDATE t2 SET b=30321 WHERE a=6845; UPDATE t2 SET b=50669 WHERE a=6846; UPDATE t2 SET b=32582 WHERE a=6847; UPDATE t2 SET b=60287 WHERE a=6848; UPDATE t2 SET b=49112 WHERE a=6849; UPDATE t2 SET b=51490 WHERE a=6850; UPDATE t2 SET b=17865 WHERE a=6851; UPDATE t2 SET b=40349 WHERE a=6852; UPDATE t2 SET b=13528 WHERE a=6853; UPDATE t2 SET b=80547 WHERE a=6854; UPDATE t2 SET b=73352 WHERE a=6855; UPDATE t2 SET b=45066 WHERE a=6856; UPDATE t2 SET b=7211 WHERE a=6857; UPDATE t2 SET b=53871 WHERE a=6858; UPDATE t2 SET b=42528 WHERE a=6859; UPDATE t2 SET b=10128 WHERE a=6860; UPDATE t2 SET b=71562 WHERE a=6861; UPDATE t2 SET b=42865 WHERE a=6862; UPDATE t2 SET b=99523 WHERE a=6863; UPDATE t2 SET b=17641 WHERE a=6864; UPDATE t2 SET b=71769 WHERE a=6865; UPDATE t2 SET b=14421 WHERE a=6866; UPDATE t2 SET b=43078 WHERE a=6867; UPDATE t2 SET b=71552 WHERE a=6868; UPDATE t2 SET b=2576 WHERE a=6869; UPDATE t2 SET b=12868 WHERE a=6870; UPDATE t2 SET b=58050 WHERE a=6871; UPDATE t2 SET b=71341 WHERE a=6872; UPDATE t2 SET b=92889 WHERE a=6873; UPDATE t2 SET b=4119 WHERE a=6874; UPDATE t2 SET b=58704 WHERE a=6875; UPDATE t2 SET b=54579 WHERE a=6876; UPDATE t2 SET b=39992 WHERE a=6877; UPDATE t2 SET b=83772 WHERE a=6878; UPDATE t2 SET b=22681 WHERE a=6879; UPDATE t2 SET b=45746 WHERE a=6880; UPDATE t2 SET b=36975 WHERE a=6881; UPDATE t2 SET b=47524 WHERE a=6882; UPDATE t2 SET b=92618 WHERE a=6883; UPDATE t2 SET b=93652 WHERE a=6884; UPDATE t2 SET b=87653 WHERE a=6885; UPDATE t2 SET b=1959 WHERE a=6886; UPDATE t2 SET b=65208 WHERE a=6887; UPDATE t2 SET b=8305 WHERE a=6888; UPDATE t2 SET b=2050 WHERE a=6889; UPDATE t2 SET b=59245 WHERE a=6890; UPDATE t2 SET b=68648 WHERE a=6891; UPDATE t2 SET b=88119 WHERE a=6892; UPDATE t2 SET b=95759 WHERE a=6893; UPDATE t2 SET b=79263 WHERE a=6894; UPDATE t2 SET b=51873 WHERE a=6895; UPDATE t2 SET b=41812 WHERE a=6896; UPDATE t2 SET b=18101 WHERE a=6897; UPDATE t2 SET b=48878 WHERE a=6898; UPDATE t2 SET b=76680 WHERE a=6899; UPDATE t2 SET b=60251 WHERE a=6900; UPDATE t2 SET b=3478 WHERE a=6901; UPDATE t2 SET b=61091 WHERE a=6902; UPDATE t2 SET b=29967 WHERE a=6903; UPDATE t2 SET b=5625 WHERE a=6904; UPDATE t2 SET b=30508 WHERE a=6905; UPDATE t2 SET b=66731 WHERE a=6906; UPDATE t2 SET b=31636 WHERE a=6907; UPDATE t2 SET b=67859 WHERE a=6908; UPDATE t2 SET b=33133 WHERE a=6909; UPDATE t2 SET b=92010 WHERE a=6910; UPDATE t2 SET b=62589 WHERE a=6911; UPDATE t2 SET b=35844 WHERE a=6912; UPDATE t2 SET b=18634 WHERE a=6913; UPDATE t2 SET b=32796 WHERE a=6914; UPDATE t2 SET b=10622 WHERE a=6915; UPDATE t2 SET b=27927 WHERE a=6916; UPDATE t2 SET b=75051 WHERE a=6917; UPDATE t2 SET b=73952 WHERE a=6918; UPDATE t2 SET b=53543 WHERE a=6919; UPDATE t2 SET b=94034 WHERE a=6920; UPDATE t2 SET b=85245 WHERE a=6921; UPDATE t2 SET b=11979 WHERE a=6922; UPDATE t2 SET b=77991 WHERE a=6923; UPDATE t2 SET b=31738 WHERE a=6924; UPDATE t2 SET b=60774 WHERE a=6925; UPDATE t2 SET b=64860 WHERE a=6926; UPDATE t2 SET b=72816 WHERE a=6927; UPDATE t2 SET b=83118 WHERE a=6928; UPDATE t2 SET b=61375 WHERE a=6929; UPDATE t2 SET b=77135 WHERE a=6930; UPDATE t2 SET b=84269 WHERE a=6931; UPDATE t2 SET b=99615 WHERE a=6932; UPDATE t2 SET b=62743 WHERE a=6933; UPDATE t2 SET b=91969 WHERE a=6934; UPDATE t2 SET b=21247 WHERE a=6935; UPDATE t2 SET b=38378 WHERE a=6936; UPDATE t2 SET b=76358 WHERE a=6937; UPDATE t2 SET b=50360 WHERE a=6938; UPDATE t2 SET b=79002 WHERE a=6939; UPDATE t2 SET b=94386 WHERE a=6940; UPDATE t2 SET b=71263 WHERE a=6941; UPDATE t2 SET b=84370 WHERE a=6942; UPDATE t2 SET b=88836 WHERE a=6943; UPDATE t2 SET b=41972 WHERE a=6944; UPDATE t2 SET b=33905 WHERE a=6945; UPDATE t2 SET b=29867 WHERE a=6946; UPDATE t2 SET b=39020 WHERE a=6947; UPDATE t2 SET b=96393 WHERE a=6948; UPDATE t2 SET b=1325 WHERE a=6949; UPDATE t2 SET b=89261 WHERE a=6950; UPDATE t2 SET b=93689 WHERE a=6951; UPDATE t2 SET b=36452 WHERE a=6952; UPDATE t2 SET b=19468 WHERE a=6953; UPDATE t2 SET b=19889 WHERE a=6954; UPDATE t2 SET b=99915 WHERE a=6955; UPDATE t2 SET b=24374 WHERE a=6956; UPDATE t2 SET b=84908 WHERE a=6957; UPDATE t2 SET b=28037 WHERE a=6958; UPDATE t2 SET b=82507 WHERE a=6959; UPDATE t2 SET b=20528 WHERE a=6960; UPDATE t2 SET b=27029 WHERE a=6961; UPDATE t2 SET b=81831 WHERE a=6962; UPDATE t2 SET b=74590 WHERE a=6963; UPDATE t2 SET b=19141 WHERE a=6964; UPDATE t2 SET b=12226 WHERE a=6965; UPDATE t2 SET b=16175 WHERE a=6966; UPDATE t2 SET b=40583 WHERE a=6967; UPDATE t2 SET b=43005 WHERE a=6968; UPDATE t2 SET b=28202 WHERE a=6969; UPDATE t2 SET b=21811 WHERE a=6970; UPDATE t2 SET b=60374 WHERE a=6971; UPDATE t2 SET b=72376 WHERE a=6972; UPDATE t2 SET b=46503 WHERE a=6973; UPDATE t2 SET b=61436 WHERE a=6974; UPDATE t2 SET b=38816 WHERE a=6975; UPDATE t2 SET b=52648 WHERE a=6976; UPDATE t2 SET b=81128 WHERE a=6977; UPDATE t2 SET b=15773 WHERE a=6978; UPDATE t2 SET b=33126 WHERE a=6979; UPDATE t2 SET b=67226 WHERE a=6980; UPDATE t2 SET b=4341 WHERE a=6981; UPDATE t2 SET b=7485 WHERE a=6982; UPDATE t2 SET b=47070 WHERE a=6983; UPDATE t2 SET b=36564 WHERE a=6984; UPDATE t2 SET b=68495 WHERE a=6985; UPDATE t2 SET b=40234 WHERE a=6986; UPDATE t2 SET b=39293 WHERE a=6987; UPDATE t2 SET b=31183 WHERE a=6988; UPDATE t2 SET b=55883 WHERE a=6989; UPDATE t2 SET b=35333 WHERE a=6990; UPDATE t2 SET b=96600 WHERE a=6991; UPDATE t2 SET b=1118 WHERE a=6992; UPDATE t2 SET b=44873 WHERE a=6993; UPDATE t2 SET b=77829 WHERE a=6994; UPDATE t2 SET b=4230 WHERE a=6995; UPDATE t2 SET b=55761 WHERE a=6996; UPDATE t2 SET b=36821 WHERE a=6997; UPDATE t2 SET b=43934 WHERE a=6998; UPDATE t2 SET b=49128 WHERE a=6999; UPDATE t2 SET b=76653 WHERE a=7000; UPDATE t2 SET b=53264 WHERE a=7001; UPDATE t2 SET b=88349 WHERE a=7002; UPDATE t2 SET b=38097 WHERE a=7003; UPDATE t2 SET b=56450 WHERE a=7004; UPDATE t2 SET b=56103 WHERE a=7005; UPDATE t2 SET b=93780 WHERE a=7006; UPDATE t2 SET b=53408 WHERE a=7007; UPDATE t2 SET b=36458 WHERE a=7008; UPDATE t2 SET b=92141 WHERE a=7009; UPDATE t2 SET b=27504 WHERE a=7010; UPDATE t2 SET b=44574 WHERE a=7011; UPDATE t2 SET b=5308 WHERE a=7012; UPDATE t2 SET b=22671 WHERE a=7013; UPDATE t2 SET b=34657 WHERE a=7014; UPDATE t2 SET b=59111 WHERE a=7015; UPDATE t2 SET b=26808 WHERE a=7016; UPDATE t2 SET b=51639 WHERE a=7017; UPDATE t2 SET b=19350 WHERE a=7018; UPDATE t2 SET b=38762 WHERE a=7019; UPDATE t2 SET b=59912 WHERE a=7020; UPDATE t2 SET b=92851 WHERE a=7021; UPDATE t2 SET b=72830 WHERE a=7022; UPDATE t2 SET b=96322 WHERE a=7023; UPDATE t2 SET b=90467 WHERE a=7024; UPDATE t2 SET b=31861 WHERE a=7025; UPDATE t2 SET b=77701 WHERE a=7026; UPDATE t2 SET b=63689 WHERE a=7027; UPDATE t2 SET b=60716 WHERE a=7028; UPDATE t2 SET b=33029 WHERE a=7029; UPDATE t2 SET b=29134 WHERE a=7030; UPDATE t2 SET b=6545 WHERE a=7031; UPDATE t2 SET b=64714 WHERE a=7032; UPDATE t2 SET b=46779 WHERE a=7033; UPDATE t2 SET b=61866 WHERE a=7034; UPDATE t2 SET b=50375 WHERE a=7035; UPDATE t2 SET b=24120 WHERE a=7036; UPDATE t2 SET b=10640 WHERE a=7037; UPDATE t2 SET b=85662 WHERE a=7038; UPDATE t2 SET b=86364 WHERE a=7039; UPDATE t2 SET b=17622 WHERE a=7040; UPDATE t2 SET b=18772 WHERE a=7041; UPDATE t2 SET b=57306 WHERE a=7042; UPDATE t2 SET b=75031 WHERE a=7043; UPDATE t2 SET b=61932 WHERE a=7044; UPDATE t2 SET b=76792 WHERE a=7045; UPDATE t2 SET b=44274 WHERE a=7046; UPDATE t2 SET b=95194 WHERE a=7047; UPDATE t2 SET b=91204 WHERE a=7048; UPDATE t2 SET b=99540 WHERE a=7049; UPDATE t2 SET b=82897 WHERE a=7050; UPDATE t2 SET b=24128 WHERE a=7051; UPDATE t2 SET b=68462 WHERE a=7052; UPDATE t2 SET b=64344 WHERE a=7053; UPDATE t2 SET b=30938 WHERE a=7054; UPDATE t2 SET b=76715 WHERE a=7055; UPDATE t2 SET b=44205 WHERE a=7056; UPDATE t2 SET b=80395 WHERE a=7057; UPDATE t2 SET b=10127 WHERE a=7058; UPDATE t2 SET b=13633 WHERE a=7059; UPDATE t2 SET b=55320 WHERE a=7060; UPDATE t2 SET b=80051 WHERE a=7061; UPDATE t2 SET b=81401 WHERE a=7062; UPDATE t2 SET b=69820 WHERE a=7063; UPDATE t2 SET b=35808 WHERE a=7064; UPDATE t2 SET b=95185 WHERE a=7065; UPDATE t2 SET b=64635 WHERE a=7066; UPDATE t2 SET b=60914 WHERE a=7067; UPDATE t2 SET b=61773 WHERE a=7068; UPDATE t2 SET b=30902 WHERE a=7069; UPDATE t2 SET b=49322 WHERE a=7070; UPDATE t2 SET b=2852 WHERE a=7071; UPDATE t2 SET b=74137 WHERE a=7072; UPDATE t2 SET b=58383 WHERE a=7073; UPDATE t2 SET b=16870 WHERE a=7074; UPDATE t2 SET b=55374 WHERE a=7075; UPDATE t2 SET b=95817 WHERE a=7076; UPDATE t2 SET b=415 WHERE a=7077; UPDATE t2 SET b=43535 WHERE a=7078; UPDATE t2 SET b=28068 WHERE a=7079; UPDATE t2 SET b=88732 WHERE a=7080; UPDATE t2 SET b=60081 WHERE a=7081; UPDATE t2 SET b=28692 WHERE a=7082; UPDATE t2 SET b=65221 WHERE a=7083; UPDATE t2 SET b=1861 WHERE a=7084; UPDATE t2 SET b=71234 WHERE a=7085; UPDATE t2 SET b=34568 WHERE a=7086; UPDATE t2 SET b=75835 WHERE a=7087; UPDATE t2 SET b=95403 WHERE a=7088; UPDATE t2 SET b=18630 WHERE a=7089; UPDATE t2 SET b=27942 WHERE a=7090; UPDATE t2 SET b=71114 WHERE a=7091; UPDATE t2 SET b=90757 WHERE a=7092; UPDATE t2 SET b=28398 WHERE a=7093; UPDATE t2 SET b=35937 WHERE a=7094; UPDATE t2 SET b=4412 WHERE a=7095; UPDATE t2 SET b=78933 WHERE a=7096; UPDATE t2 SET b=46916 WHERE a=7097; UPDATE t2 SET b=24679 WHERE a=7098; UPDATE t2 SET b=31461 WHERE a=7099; UPDATE t2 SET b=25765 WHERE a=7100; UPDATE t2 SET b=51035 WHERE a=7101; UPDATE t2 SET b=31159 WHERE a=7102; UPDATE t2 SET b=69511 WHERE a=7103; UPDATE t2 SET b=57067 WHERE a=7104; UPDATE t2 SET b=3582 WHERE a=7105; UPDATE t2 SET b=69274 WHERE a=7106; UPDATE t2 SET b=62518 WHERE a=7107; UPDATE t2 SET b=32818 WHERE a=7108; UPDATE t2 SET b=11870 WHERE a=7109; UPDATE t2 SET b=439 WHERE a=7110; UPDATE t2 SET b=31476 WHERE a=7111; UPDATE t2 SET b=20181 WHERE a=7112; UPDATE t2 SET b=47363 WHERE a=7113; UPDATE t2 SET b=41816 WHERE a=7114; UPDATE t2 SET b=38130 WHERE a=7115; UPDATE t2 SET b=33415 WHERE a=7116; UPDATE t2 SET b=67778 WHERE a=7117; UPDATE t2 SET b=99678 WHERE a=7118; UPDATE t2 SET b=30444 WHERE a=7119; UPDATE t2 SET b=3614 WHERE a=7120; UPDATE t2 SET b=99374 WHERE a=7121; UPDATE t2 SET b=46174 WHERE a=7122; UPDATE t2 SET b=3186 WHERE a=7123; UPDATE t2 SET b=54009 WHERE a=7124; UPDATE t2 SET b=31068 WHERE a=7125; UPDATE t2 SET b=90456 WHERE a=7126; UPDATE t2 SET b=73095 WHERE a=7127; UPDATE t2 SET b=15552 WHERE a=7128; UPDATE t2 SET b=99119 WHERE a=7129; UPDATE t2 SET b=37165 WHERE a=7130; UPDATE t2 SET b=80213 WHERE a=7131; UPDATE t2 SET b=22921 WHERE a=7132; UPDATE t2 SET b=74045 WHERE a=7133; UPDATE t2 SET b=46966 WHERE a=7134; UPDATE t2 SET b=75796 WHERE a=7135; UPDATE t2 SET b=26289 WHERE a=7136; UPDATE t2 SET b=35071 WHERE a=7137; UPDATE t2 SET b=65853 WHERE a=7138; UPDATE t2 SET b=74800 WHERE a=7139; UPDATE t2 SET b=90253 WHERE a=7140; UPDATE t2 SET b=28130 WHERE a=7141; UPDATE t2 SET b=19659 WHERE a=7142; UPDATE t2 SET b=91469 WHERE a=7143; UPDATE t2 SET b=19313 WHERE a=7144; UPDATE t2 SET b=59306 WHERE a=7145; UPDATE t2 SET b=78946 WHERE a=7146; UPDATE t2 SET b=41666 WHERE a=7147; UPDATE t2 SET b=59590 WHERE a=7148; UPDATE t2 SET b=36588 WHERE a=7149; UPDATE t2 SET b=77916 WHERE a=7150; UPDATE t2 SET b=41450 WHERE a=7151; UPDATE t2 SET b=9133 WHERE a=7152; UPDATE t2 SET b=56031 WHERE a=7153; UPDATE t2 SET b=16291 WHERE a=7154; UPDATE t2 SET b=66758 WHERE a=7155; UPDATE t2 SET b=48958 WHERE a=7156; UPDATE t2 SET b=84835 WHERE a=7157; UPDATE t2 SET b=17670 WHERE a=7158; UPDATE t2 SET b=65734 WHERE a=7159; UPDATE t2 SET b=16455 WHERE a=7160; UPDATE t2 SET b=31329 WHERE a=7161; UPDATE t2 SET b=88626 WHERE a=7162; UPDATE t2 SET b=6410 WHERE a=7163; UPDATE t2 SET b=58456 WHERE a=7164; UPDATE t2 SET b=67709 WHERE a=7165; UPDATE t2 SET b=33023 WHERE a=7166; UPDATE t2 SET b=93145 WHERE a=7167; UPDATE t2 SET b=2404 WHERE a=7168; UPDATE t2 SET b=36217 WHERE a=7169; UPDATE t2 SET b=79082 WHERE a=7170; UPDATE t2 SET b=81 WHERE a=7171; UPDATE t2 SET b=1263 WHERE a=7172; UPDATE t2 SET b=99400 WHERE a=7173; UPDATE t2 SET b=48182 WHERE a=7174; UPDATE t2 SET b=3695 WHERE a=7175; UPDATE t2 SET b=35706 WHERE a=7176; UPDATE t2 SET b=45451 WHERE a=7177; UPDATE t2 SET b=47638 WHERE a=7178; UPDATE t2 SET b=26124 WHERE a=7179; UPDATE t2 SET b=5503 WHERE a=7180; UPDATE t2 SET b=99099 WHERE a=7181; UPDATE t2 SET b=86891 WHERE a=7182; UPDATE t2 SET b=1820 WHERE a=7183; UPDATE t2 SET b=72033 WHERE a=7184; UPDATE t2 SET b=35409 WHERE a=7185; UPDATE t2 SET b=12696 WHERE a=7186; UPDATE t2 SET b=96329 WHERE a=7187; UPDATE t2 SET b=27568 WHERE a=7188; UPDATE t2 SET b=32742 WHERE a=7189; UPDATE t2 SET b=43456 WHERE a=7190; UPDATE t2 SET b=45956 WHERE a=7191; UPDATE t2 SET b=39716 WHERE a=7192; UPDATE t2 SET b=33883 WHERE a=7193; UPDATE t2 SET b=34980 WHERE a=7194; UPDATE t2 SET b=50915 WHERE a=7195; UPDATE t2 SET b=78280 WHERE a=7196; UPDATE t2 SET b=37732 WHERE a=7197; UPDATE t2 SET b=33751 WHERE a=7198; UPDATE t2 SET b=86239 WHERE a=7199; UPDATE t2 SET b=49265 WHERE a=7200; UPDATE t2 SET b=85769 WHERE a=7201; UPDATE t2 SET b=27364 WHERE a=7202; UPDATE t2 SET b=48895 WHERE a=7203; UPDATE t2 SET b=98049 WHERE a=7204; UPDATE t2 SET b=97748 WHERE a=7205; UPDATE t2 SET b=78663 WHERE a=7206; UPDATE t2 SET b=19771 WHERE a=7207; UPDATE t2 SET b=4328 WHERE a=7208; UPDATE t2 SET b=79608 WHERE a=7209; UPDATE t2 SET b=70131 WHERE a=7210; UPDATE t2 SET b=84897 WHERE a=7211; UPDATE t2 SET b=84556 WHERE a=7212; UPDATE t2 SET b=20474 WHERE a=7213; UPDATE t2 SET b=85062 WHERE a=7214; UPDATE t2 SET b=53404 WHERE a=7215; UPDATE t2 SET b=22409 WHERE a=7216; UPDATE t2 SET b=13949 WHERE a=7217; UPDATE t2 SET b=14929 WHERE a=7218; UPDATE t2 SET b=10925 WHERE a=7219; UPDATE t2 SET b=68170 WHERE a=7220; UPDATE t2 SET b=71476 WHERE a=7221; UPDATE t2 SET b=55959 WHERE a=7222; UPDATE t2 SET b=52578 WHERE a=7223; UPDATE t2 SET b=7779 WHERE a=7224; UPDATE t2 SET b=54889 WHERE a=7225; UPDATE t2 SET b=96013 WHERE a=7226; UPDATE t2 SET b=746 WHERE a=7227; UPDATE t2 SET b=79542 WHERE a=7228; UPDATE t2 SET b=54634 WHERE a=7229; UPDATE t2 SET b=60279 WHERE a=7230; UPDATE t2 SET b=1763 WHERE a=7231; UPDATE t2 SET b=42083 WHERE a=7232; UPDATE t2 SET b=40855 WHERE a=7233; UPDATE t2 SET b=98867 WHERE a=7234; UPDATE t2 SET b=99366 WHERE a=7235; UPDATE t2 SET b=53777 WHERE a=7236; UPDATE t2 SET b=2529 WHERE a=7237; UPDATE t2 SET b=15886 WHERE a=7238; UPDATE t2 SET b=58878 WHERE a=7239; UPDATE t2 SET b=71792 WHERE a=7240; UPDATE t2 SET b=35177 WHERE a=7241; UPDATE t2 SET b=7990 WHERE a=7242; UPDATE t2 SET b=18388 WHERE a=7243; UPDATE t2 SET b=53552 WHERE a=7244; UPDATE t2 SET b=44359 WHERE a=7245; UPDATE t2 SET b=33165 WHERE a=7246; UPDATE t2 SET b=34081 WHERE a=7247; UPDATE t2 SET b=43577 WHERE a=7248; UPDATE t2 SET b=33674 WHERE a=7249; UPDATE t2 SET b=30449 WHERE a=7250; UPDATE t2 SET b=32305 WHERE a=7251; UPDATE t2 SET b=83685 WHERE a=7252; UPDATE t2 SET b=37110 WHERE a=7253; UPDATE t2 SET b=52532 WHERE a=7254; UPDATE t2 SET b=45241 WHERE a=7255; UPDATE t2 SET b=39648 WHERE a=7256; UPDATE t2 SET b=62748 WHERE a=7257; UPDATE t2 SET b=91820 WHERE a=7258; UPDATE t2 SET b=95489 WHERE a=7259; UPDATE t2 SET b=70343 WHERE a=7260; UPDATE t2 SET b=67718 WHERE a=7261; UPDATE t2 SET b=81334 WHERE a=7262; UPDATE t2 SET b=20435 WHERE a=7263; UPDATE t2 SET b=73478 WHERE a=7264; UPDATE t2 SET b=25795 WHERE a=7265; UPDATE t2 SET b=75010 WHERE a=7266; UPDATE t2 SET b=47411 WHERE a=7267; UPDATE t2 SET b=25109 WHERE a=7268; UPDATE t2 SET b=44254 WHERE a=7269; UPDATE t2 SET b=35468 WHERE a=7270; UPDATE t2 SET b=615 WHERE a=7271; UPDATE t2 SET b=72024 WHERE a=7272; UPDATE t2 SET b=42008 WHERE a=7273; UPDATE t2 SET b=41522 WHERE a=7274; UPDATE t2 SET b=38494 WHERE a=7275; UPDATE t2 SET b=87155 WHERE a=7276; UPDATE t2 SET b=79391 WHERE a=7277; UPDATE t2 SET b=97081 WHERE a=7278; UPDATE t2 SET b=37561 WHERE a=7279; UPDATE t2 SET b=85914 WHERE a=7280; UPDATE t2 SET b=5048 WHERE a=7281; UPDATE t2 SET b=47018 WHERE a=7282; UPDATE t2 SET b=1443 WHERE a=7283; UPDATE t2 SET b=67218 WHERE a=7284; UPDATE t2 SET b=46308 WHERE a=7285; UPDATE t2 SET b=85902 WHERE a=7286; UPDATE t2 SET b=22090 WHERE a=7287; UPDATE t2 SET b=63751 WHERE a=7288; UPDATE t2 SET b=19309 WHERE a=7289; UPDATE t2 SET b=9408 WHERE a=7290; UPDATE t2 SET b=80810 WHERE a=7291; UPDATE t2 SET b=94204 WHERE a=7292; UPDATE t2 SET b=76675 WHERE a=7293; UPDATE t2 SET b=47815 WHERE a=7294; UPDATE t2 SET b=80823 WHERE a=7295; UPDATE t2 SET b=41704 WHERE a=7296; UPDATE t2 SET b=39549 WHERE a=7297; UPDATE t2 SET b=385 WHERE a=7298; UPDATE t2 SET b=85361 WHERE a=7299; UPDATE t2 SET b=71559 WHERE a=7300; UPDATE t2 SET b=31381 WHERE a=7301; UPDATE t2 SET b=8330 WHERE a=7302; UPDATE t2 SET b=70272 WHERE a=7303; UPDATE t2 SET b=28034 WHERE a=7304; UPDATE t2 SET b=77354 WHERE a=7305; UPDATE t2 SET b=46550 WHERE a=7306; UPDATE t2 SET b=37272 WHERE a=7307; UPDATE t2 SET b=33666 WHERE a=7308; UPDATE t2 SET b=40117 WHERE a=7309; UPDATE t2 SET b=19077 WHERE a=7310; UPDATE t2 SET b=41050 WHERE a=7311; UPDATE t2 SET b=42168 WHERE a=7312; UPDATE t2 SET b=82196 WHERE a=7313; UPDATE t2 SET b=41508 WHERE a=7314; UPDATE t2 SET b=57023 WHERE a=7315; UPDATE t2 SET b=94851 WHERE a=7316; UPDATE t2 SET b=89954 WHERE a=7317; UPDATE t2 SET b=76260 WHERE a=7318; UPDATE t2 SET b=83573 WHERE a=7319; UPDATE t2 SET b=55916 WHERE a=7320; UPDATE t2 SET b=28043 WHERE a=7321; UPDATE t2 SET b=76315 WHERE a=7322; UPDATE t2 SET b=30884 WHERE a=7323; UPDATE t2 SET b=45502 WHERE a=7324; UPDATE t2 SET b=42156 WHERE a=7325; UPDATE t2 SET b=64898 WHERE a=7326; UPDATE t2 SET b=13326 WHERE a=7327; UPDATE t2 SET b=96262 WHERE a=7328; UPDATE t2 SET b=18357 WHERE a=7329; UPDATE t2 SET b=40061 WHERE a=7330; UPDATE t2 SET b=28610 WHERE a=7331; UPDATE t2 SET b=52103 WHERE a=7332; UPDATE t2 SET b=71349 WHERE a=7333; UPDATE t2 SET b=89047 WHERE a=7334; UPDATE t2 SET b=33054 WHERE a=7335; UPDATE t2 SET b=37124 WHERE a=7336; UPDATE t2 SET b=97337 WHERE a=7337; UPDATE t2 SET b=49379 WHERE a=7338; UPDATE t2 SET b=4663 WHERE a=7339; UPDATE t2 SET b=64597 WHERE a=7340; UPDATE t2 SET b=31390 WHERE a=7341; UPDATE t2 SET b=70106 WHERE a=7342; UPDATE t2 SET b=62779 WHERE a=7343; UPDATE t2 SET b=88370 WHERE a=7344; UPDATE t2 SET b=29616 WHERE a=7345; UPDATE t2 SET b=47770 WHERE a=7346; UPDATE t2 SET b=96851 WHERE a=7347; UPDATE t2 SET b=96374 WHERE a=7348; UPDATE t2 SET b=31177 WHERE a=7349; UPDATE t2 SET b=44022 WHERE a=7350; UPDATE t2 SET b=73103 WHERE a=7351; UPDATE t2 SET b=87322 WHERE a=7352; UPDATE t2 SET b=45260 WHERE a=7353; UPDATE t2 SET b=53034 WHERE a=7354; UPDATE t2 SET b=17313 WHERE a=7355; UPDATE t2 SET b=19376 WHERE a=7356; UPDATE t2 SET b=73830 WHERE a=7357; UPDATE t2 SET b=25867 WHERE a=7358; UPDATE t2 SET b=30057 WHERE a=7359; UPDATE t2 SET b=81459 WHERE a=7360; UPDATE t2 SET b=9055 WHERE a=7361; UPDATE t2 SET b=6538 WHERE a=7362; UPDATE t2 SET b=38750 WHERE a=7363; UPDATE t2 SET b=53977 WHERE a=7364; UPDATE t2 SET b=51895 WHERE a=7365; UPDATE t2 SET b=26556 WHERE a=7366; UPDATE t2 SET b=23835 WHERE a=7367; UPDATE t2 SET b=92324 WHERE a=7368; UPDATE t2 SET b=7936 WHERE a=7369; UPDATE t2 SET b=31912 WHERE a=7370; UPDATE t2 SET b=86305 WHERE a=7371; UPDATE t2 SET b=91246 WHERE a=7372; UPDATE t2 SET b=44087 WHERE a=7373; UPDATE t2 SET b=77556 WHERE a=7374; UPDATE t2 SET b=92389 WHERE a=7375; UPDATE t2 SET b=16427 WHERE a=7376; UPDATE t2 SET b=82339 WHERE a=7377; UPDATE t2 SET b=81171 WHERE a=7378; UPDATE t2 SET b=39355 WHERE a=7379; UPDATE t2 SET b=17677 WHERE a=7380; UPDATE t2 SET b=65217 WHERE a=7381; UPDATE t2 SET b=53770 WHERE a=7382; UPDATE t2 SET b=4185 WHERE a=7383; UPDATE t2 SET b=83511 WHERE a=7384; UPDATE t2 SET b=20674 WHERE a=7385; UPDATE t2 SET b=52793 WHERE a=7386; UPDATE t2 SET b=85088 WHERE a=7387; UPDATE t2 SET b=31956 WHERE a=7388; UPDATE t2 SET b=69919 WHERE a=7389; UPDATE t2 SET b=73728 WHERE a=7390; UPDATE t2 SET b=97196 WHERE a=7391; UPDATE t2 SET b=9062 WHERE a=7392; UPDATE t2 SET b=76267 WHERE a=7393; UPDATE t2 SET b=49509 WHERE a=7394; UPDATE t2 SET b=46220 WHERE a=7395; UPDATE t2 SET b=61793 WHERE a=7396; UPDATE t2 SET b=38720 WHERE a=7397; UPDATE t2 SET b=92253 WHERE a=7398; UPDATE t2 SET b=14737 WHERE a=7399; UPDATE t2 SET b=44958 WHERE a=7400; UPDATE t2 SET b=17110 WHERE a=7401; UPDATE t2 SET b=31889 WHERE a=7402; UPDATE t2 SET b=92879 WHERE a=7403; UPDATE t2 SET b=37533 WHERE a=7404; UPDATE t2 SET b=46706 WHERE a=7405; UPDATE t2 SET b=25714 WHERE a=7406; UPDATE t2 SET b=80149 WHERE a=7407; UPDATE t2 SET b=62668 WHERE a=7408; UPDATE t2 SET b=25450 WHERE a=7409; UPDATE t2 SET b=31161 WHERE a=7410; UPDATE t2 SET b=62802 WHERE a=7411; UPDATE t2 SET b=8665 WHERE a=7412; UPDATE t2 SET b=3990 WHERE a=7413; UPDATE t2 SET b=64373 WHERE a=7414; UPDATE t2 SET b=45401 WHERE a=7415; UPDATE t2 SET b=30492 WHERE a=7416; UPDATE t2 SET b=59008 WHERE a=7417; UPDATE t2 SET b=12902 WHERE a=7418; UPDATE t2 SET b=1274 WHERE a=7419; UPDATE t2 SET b=86024 WHERE a=7420; UPDATE t2 SET b=22373 WHERE a=7421; UPDATE t2 SET b=92392 WHERE a=7422; UPDATE t2 SET b=13587 WHERE a=7423; UPDATE t2 SET b=42810 WHERE a=7424; UPDATE t2 SET b=35982 WHERE a=7425; UPDATE t2 SET b=28064 WHERE a=7426; UPDATE t2 SET b=97489 WHERE a=7427; UPDATE t2 SET b=54785 WHERE a=7428; UPDATE t2 SET b=90557 WHERE a=7429; UPDATE t2 SET b=60457 WHERE a=7430; UPDATE t2 SET b=29591 WHERE a=7431; UPDATE t2 SET b=59305 WHERE a=7432; UPDATE t2 SET b=4048 WHERE a=7433; UPDATE t2 SET b=527 WHERE a=7434; UPDATE t2 SET b=45184 WHERE a=7435; UPDATE t2 SET b=63808 WHERE a=7436; UPDATE t2 SET b=23549 WHERE a=7437; UPDATE t2 SET b=30776 WHERE a=7438; UPDATE t2 SET b=69489 WHERE a=7439; UPDATE t2 SET b=13758 WHERE a=7440; UPDATE t2 SET b=1422 WHERE a=7441; UPDATE t2 SET b=61121 WHERE a=7442; UPDATE t2 SET b=80727 WHERE a=7443; UPDATE t2 SET b=33899 WHERE a=7444; UPDATE t2 SET b=45877 WHERE a=7445; UPDATE t2 SET b=22637 WHERE a=7446; UPDATE t2 SET b=76674 WHERE a=7447; UPDATE t2 SET b=54787 WHERE a=7448; UPDATE t2 SET b=14275 WHERE a=7449; UPDATE t2 SET b=50909 WHERE a=7450; UPDATE t2 SET b=4877 WHERE a=7451; UPDATE t2 SET b=9130 WHERE a=7452; UPDATE t2 SET b=85357 WHERE a=7453; UPDATE t2 SET b=90753 WHERE a=7454; UPDATE t2 SET b=52972 WHERE a=7455; UPDATE t2 SET b=93966 WHERE a=7456; UPDATE t2 SET b=449 WHERE a=7457; UPDATE t2 SET b=47164 WHERE a=7458; UPDATE t2 SET b=2571 WHERE a=7459; UPDATE t2 SET b=19172 WHERE a=7460; UPDATE t2 SET b=78964 WHERE a=7461; UPDATE t2 SET b=59533 WHERE a=7462; UPDATE t2 SET b=94333 WHERE a=7463; UPDATE t2 SET b=57369 WHERE a=7464; UPDATE t2 SET b=81370 WHERE a=7465; UPDATE t2 SET b=69114 WHERE a=7466; UPDATE t2 SET b=96794 WHERE a=7467; UPDATE t2 SET b=34023 WHERE a=7468; UPDATE t2 SET b=31726 WHERE a=7469; UPDATE t2 SET b=9634 WHERE a=7470; UPDATE t2 SET b=73495 WHERE a=7471; UPDATE t2 SET b=59092 WHERE a=7472; UPDATE t2 SET b=50538 WHERE a=7473; UPDATE t2 SET b=30376 WHERE a=7474; UPDATE t2 SET b=91908 WHERE a=7475; UPDATE t2 SET b=63446 WHERE a=7476; UPDATE t2 SET b=61881 WHERE a=7477; UPDATE t2 SET b=22431 WHERE a=7478; UPDATE t2 SET b=97343 WHERE a=7479; UPDATE t2 SET b=21720 WHERE a=7480; UPDATE t2 SET b=63865 WHERE a=7481; UPDATE t2 SET b=12100 WHERE a=7482; UPDATE t2 SET b=5635 WHERE a=7483; UPDATE t2 SET b=34622 WHERE a=7484; UPDATE t2 SET b=28754 WHERE a=7485; UPDATE t2 SET b=29175 WHERE a=7486; UPDATE t2 SET b=57677 WHERE a=7487; UPDATE t2 SET b=31093 WHERE a=7488; UPDATE t2 SET b=63214 WHERE a=7489; UPDATE t2 SET b=10199 WHERE a=7490; UPDATE t2 SET b=25077 WHERE a=7491; UPDATE t2 SET b=7123 WHERE a=7492; UPDATE t2 SET b=43142 WHERE a=7493; UPDATE t2 SET b=53228 WHERE a=7494; UPDATE t2 SET b=89792 WHERE a=7495; UPDATE t2 SET b=604 WHERE a=7496; UPDATE t2 SET b=91262 WHERE a=7497; UPDATE t2 SET b=37376 WHERE a=7498; UPDATE t2 SET b=41362 WHERE a=7499; UPDATE t2 SET b=2419 WHERE a=7500; UPDATE t2 SET b=67079 WHERE a=7501; UPDATE t2 SET b=48298 WHERE a=7502; UPDATE t2 SET b=54948 WHERE a=7503; UPDATE t2 SET b=18499 WHERE a=7504; UPDATE t2 SET b=16578 WHERE a=7505; UPDATE t2 SET b=8776 WHERE a=7506; UPDATE t2 SET b=92673 WHERE a=7507; UPDATE t2 SET b=76828 WHERE a=7508; UPDATE t2 SET b=56560 WHERE a=7509; UPDATE t2 SET b=5214 WHERE a=7510; UPDATE t2 SET b=11663 WHERE a=7511; UPDATE t2 SET b=6287 WHERE a=7512; UPDATE t2 SET b=76774 WHERE a=7513; UPDATE t2 SET b=16464 WHERE a=7514; UPDATE t2 SET b=72583 WHERE a=7515; UPDATE t2 SET b=13919 WHERE a=7516; UPDATE t2 SET b=74967 WHERE a=7517; UPDATE t2 SET b=38814 WHERE a=7518; UPDATE t2 SET b=92866 WHERE a=7519; UPDATE t2 SET b=44084 WHERE a=7520; UPDATE t2 SET b=8368 WHERE a=7521; UPDATE t2 SET b=24301 WHERE a=7522; UPDATE t2 SET b=50170 WHERE a=7523; UPDATE t2 SET b=41700 WHERE a=7524; UPDATE t2 SET b=64432 WHERE a=7525; UPDATE t2 SET b=30861 WHERE a=7526; UPDATE t2 SET b=65295 WHERE a=7527; UPDATE t2 SET b=21202 WHERE a=7528; UPDATE t2 SET b=83777 WHERE a=7529; UPDATE t2 SET b=58512 WHERE a=7530; UPDATE t2 SET b=90814 WHERE a=7531; UPDATE t2 SET b=70054 WHERE a=7532; UPDATE t2 SET b=39152 WHERE a=7533; UPDATE t2 SET b=43798 WHERE a=7534; UPDATE t2 SET b=40807 WHERE a=7535; UPDATE t2 SET b=45113 WHERE a=7536; UPDATE t2 SET b=39353 WHERE a=7537; UPDATE t2 SET b=5537 WHERE a=7538; UPDATE t2 SET b=40541 WHERE a=7539; UPDATE t2 SET b=25959 WHERE a=7540; UPDATE t2 SET b=97112 WHERE a=7541; UPDATE t2 SET b=36748 WHERE a=7542; UPDATE t2 SET b=77513 WHERE a=7543; UPDATE t2 SET b=26390 WHERE a=7544; UPDATE t2 SET b=66040 WHERE a=7545; UPDATE t2 SET b=79844 WHERE a=7546; UPDATE t2 SET b=761 WHERE a=7547; UPDATE t2 SET b=88611 WHERE a=7548; UPDATE t2 SET b=3543 WHERE a=7549; UPDATE t2 SET b=43687 WHERE a=7550; UPDATE t2 SET b=76401 WHERE a=7551; UPDATE t2 SET b=40509 WHERE a=7552; UPDATE t2 SET b=94027 WHERE a=7553; UPDATE t2 SET b=30854 WHERE a=7554; UPDATE t2 SET b=54979 WHERE a=7555; UPDATE t2 SET b=77249 WHERE a=7556; UPDATE t2 SET b=85563 WHERE a=7557; UPDATE t2 SET b=78236 WHERE a=7558; UPDATE t2 SET b=56678 WHERE a=7559; UPDATE t2 SET b=38843 WHERE a=7560; UPDATE t2 SET b=45072 WHERE a=7561; UPDATE t2 SET b=82226 WHERE a=7562; UPDATE t2 SET b=36378 WHERE a=7563; UPDATE t2 SET b=17936 WHERE a=7564; UPDATE t2 SET b=79332 WHERE a=7565; UPDATE t2 SET b=10240 WHERE a=7566; UPDATE t2 SET b=23262 WHERE a=7567; UPDATE t2 SET b=24179 WHERE a=7568; UPDATE t2 SET b=42293 WHERE a=7569; UPDATE t2 SET b=55300 WHERE a=7570; UPDATE t2 SET b=29980 WHERE a=7571; UPDATE t2 SET b=442 WHERE a=7572; UPDATE t2 SET b=51117 WHERE a=7573; UPDATE t2 SET b=45283 WHERE a=7574; UPDATE t2 SET b=64622 WHERE a=7575; UPDATE t2 SET b=71381 WHERE a=7576; UPDATE t2 SET b=64189 WHERE a=7577; UPDATE t2 SET b=36899 WHERE a=7578; UPDATE t2 SET b=49746 WHERE a=7579; UPDATE t2 SET b=66481 WHERE a=7580; UPDATE t2 SET b=10227 WHERE a=7581; UPDATE t2 SET b=73708 WHERE a=7582; UPDATE t2 SET b=97636 WHERE a=7583; UPDATE t2 SET b=60912 WHERE a=7584; UPDATE t2 SET b=32913 WHERE a=7585; UPDATE t2 SET b=16851 WHERE a=7586; UPDATE t2 SET b=41642 WHERE a=7587; UPDATE t2 SET b=88365 WHERE a=7588; UPDATE t2 SET b=37098 WHERE a=7589; UPDATE t2 SET b=96423 WHERE a=7590; UPDATE t2 SET b=30296 WHERE a=7591; UPDATE t2 SET b=31603 WHERE a=7592; UPDATE t2 SET b=62462 WHERE a=7593; UPDATE t2 SET b=22636 WHERE a=7594; UPDATE t2 SET b=3669 WHERE a=7595; UPDATE t2 SET b=80 WHERE a=7596; UPDATE t2 SET b=69076 WHERE a=7597; UPDATE t2 SET b=3905 WHERE a=7598; UPDATE t2 SET b=54240 WHERE a=7599; UPDATE t2 SET b=24112 WHERE a=7600; UPDATE t2 SET b=39054 WHERE a=7601; UPDATE t2 SET b=57636 WHERE a=7602; UPDATE t2 SET b=45953 WHERE a=7603; UPDATE t2 SET b=7171 WHERE a=7604; UPDATE t2 SET b=63009 WHERE a=7605; UPDATE t2 SET b=34395 WHERE a=7606; UPDATE t2 SET b=6345 WHERE a=7607; UPDATE t2 SET b=537 WHERE a=7608; UPDATE t2 SET b=69741 WHERE a=7609; UPDATE t2 SET b=61962 WHERE a=7610; UPDATE t2 SET b=34016 WHERE a=7611; UPDATE t2 SET b=15417 WHERE a=7612; UPDATE t2 SET b=88414 WHERE a=7613; UPDATE t2 SET b=48850 WHERE a=7614; UPDATE t2 SET b=18629 WHERE a=7615; UPDATE t2 SET b=43253 WHERE a=7616; UPDATE t2 SET b=93242 WHERE a=7617; UPDATE t2 SET b=16883 WHERE a=7618; UPDATE t2 SET b=37319 WHERE a=7619; UPDATE t2 SET b=65481 WHERE a=7620; UPDATE t2 SET b=50862 WHERE a=7621; UPDATE t2 SET b=85547 WHERE a=7622; UPDATE t2 SET b=56926 WHERE a=7623; UPDATE t2 SET b=35200 WHERE a=7624; UPDATE t2 SET b=88156 WHERE a=7625; UPDATE t2 SET b=29263 WHERE a=7626; UPDATE t2 SET b=51180 WHERE a=7627; UPDATE t2 SET b=31823 WHERE a=7628; UPDATE t2 SET b=54557 WHERE a=7629; UPDATE t2 SET b=36078 WHERE a=7630; UPDATE t2 SET b=40704 WHERE a=7631; UPDATE t2 SET b=44888 WHERE a=7632; UPDATE t2 SET b=82270 WHERE a=7633; UPDATE t2 SET b=18781 WHERE a=7634; UPDATE t2 SET b=19008 WHERE a=7635; UPDATE t2 SET b=31048 WHERE a=7636; UPDATE t2 SET b=86586 WHERE a=7637; UPDATE t2 SET b=18710 WHERE a=7638; UPDATE t2 SET b=34165 WHERE a=7639; UPDATE t2 SET b=14599 WHERE a=7640; UPDATE t2 SET b=16735 WHERE a=7641; UPDATE t2 SET b=11893 WHERE a=7642; UPDATE t2 SET b=93746 WHERE a=7643; UPDATE t2 SET b=81929 WHERE a=7644; UPDATE t2 SET b=62360 WHERE a=7645; UPDATE t2 SET b=47407 WHERE a=7646; UPDATE t2 SET b=54963 WHERE a=7647; UPDATE t2 SET b=49855 WHERE a=7648; UPDATE t2 SET b=73606 WHERE a=7649; UPDATE t2 SET b=40443 WHERE a=7650; UPDATE t2 SET b=14769 WHERE a=7651; UPDATE t2 SET b=12307 WHERE a=7652; UPDATE t2 SET b=61694 WHERE a=7653; UPDATE t2 SET b=29172 WHERE a=7654; UPDATE t2 SET b=93780 WHERE a=7655; UPDATE t2 SET b=97131 WHERE a=7656; UPDATE t2 SET b=55546 WHERE a=7657; UPDATE t2 SET b=74424 WHERE a=7658; UPDATE t2 SET b=39406 WHERE a=7659; UPDATE t2 SET b=52920 WHERE a=7660; UPDATE t2 SET b=53526 WHERE a=7661; UPDATE t2 SET b=60397 WHERE a=7662; UPDATE t2 SET b=56007 WHERE a=7663; UPDATE t2 SET b=78823 WHERE a=7664; UPDATE t2 SET b=16976 WHERE a=7665; UPDATE t2 SET b=70742 WHERE a=7666; UPDATE t2 SET b=64947 WHERE a=7667; UPDATE t2 SET b=55619 WHERE a=7668; UPDATE t2 SET b=62336 WHERE a=7669; UPDATE t2 SET b=98596 WHERE a=7670; UPDATE t2 SET b=61665 WHERE a=7671; UPDATE t2 SET b=67864 WHERE a=7672; UPDATE t2 SET b=35370 WHERE a=7673; UPDATE t2 SET b=31813 WHERE a=7674; UPDATE t2 SET b=93348 WHERE a=7675; UPDATE t2 SET b=51723 WHERE a=7676; UPDATE t2 SET b=42364 WHERE a=7677; UPDATE t2 SET b=94378 WHERE a=7678; UPDATE t2 SET b=81563 WHERE a=7679; UPDATE t2 SET b=50241 WHERE a=7680; UPDATE t2 SET b=35861 WHERE a=7681; UPDATE t2 SET b=37937 WHERE a=7682; UPDATE t2 SET b=85978 WHERE a=7683; UPDATE t2 SET b=87420 WHERE a=7684; UPDATE t2 SET b=26193 WHERE a=7685; UPDATE t2 SET b=35069 WHERE a=7686; UPDATE t2 SET b=88290 WHERE a=7687; UPDATE t2 SET b=49441 WHERE a=7688; UPDATE t2 SET b=76567 WHERE a=7689; UPDATE t2 SET b=89553 WHERE a=7690; UPDATE t2 SET b=83268 WHERE a=7691; UPDATE t2 SET b=47669 WHERE a=7692; UPDATE t2 SET b=72789 WHERE a=7693; UPDATE t2 SET b=66280 WHERE a=7694; UPDATE t2 SET b=47798 WHERE a=7695; UPDATE t2 SET b=87764 WHERE a=7696; UPDATE t2 SET b=67193 WHERE a=7697; UPDATE t2 SET b=19360 WHERE a=7698; UPDATE t2 SET b=32888 WHERE a=7699; UPDATE t2 SET b=83244 WHERE a=7700; UPDATE t2 SET b=62586 WHERE a=7701; UPDATE t2 SET b=9604 WHERE a=7702; UPDATE t2 SET b=83326 WHERE a=7703; UPDATE t2 SET b=48915 WHERE a=7704; UPDATE t2 SET b=70511 WHERE a=7705; UPDATE t2 SET b=3720 WHERE a=7706; UPDATE t2 SET b=92927 WHERE a=7707; UPDATE t2 SET b=7142 WHERE a=7708; UPDATE t2 SET b=39584 WHERE a=7709; UPDATE t2 SET b=77641 WHERE a=7710; UPDATE t2 SET b=91101 WHERE a=7711; UPDATE t2 SET b=59094 WHERE a=7712; UPDATE t2 SET b=94296 WHERE a=7713; UPDATE t2 SET b=39758 WHERE a=7714; UPDATE t2 SET b=22732 WHERE a=7715; UPDATE t2 SET b=96530 WHERE a=7716; UPDATE t2 SET b=23390 WHERE a=7717; UPDATE t2 SET b=87700 WHERE a=7718; UPDATE t2 SET b=64578 WHERE a=7719; UPDATE t2 SET b=36066 WHERE a=7720; UPDATE t2 SET b=71245 WHERE a=7721; UPDATE t2 SET b=95787 WHERE a=7722; UPDATE t2 SET b=44778 WHERE a=7723; UPDATE t2 SET b=26872 WHERE a=7724; UPDATE t2 SET b=52109 WHERE a=7725; UPDATE t2 SET b=34414 WHERE a=7726; UPDATE t2 SET b=90086 WHERE a=7727; UPDATE t2 SET b=62405 WHERE a=7728; UPDATE t2 SET b=51260 WHERE a=7729; UPDATE t2 SET b=14609 WHERE a=7730; UPDATE t2 SET b=50757 WHERE a=7731; UPDATE t2 SET b=84759 WHERE a=7732; UPDATE t2 SET b=951 WHERE a=7733; UPDATE t2 SET b=46705 WHERE a=7734; UPDATE t2 SET b=47616 WHERE a=7735; UPDATE t2 SET b=25111 WHERE a=7736; UPDATE t2 SET b=86032 WHERE a=7737; UPDATE t2 SET b=29193 WHERE a=7738; UPDATE t2 SET b=2316 WHERE a=7739; UPDATE t2 SET b=19647 WHERE a=7740; UPDATE t2 SET b=21379 WHERE a=7741; UPDATE t2 SET b=90464 WHERE a=7742; UPDATE t2 SET b=68706 WHERE a=7743; UPDATE t2 SET b=99725 WHERE a=7744; UPDATE t2 SET b=92695 WHERE a=7745; UPDATE t2 SET b=12207 WHERE a=7746; UPDATE t2 SET b=35881 WHERE a=7747; UPDATE t2 SET b=20264 WHERE a=7748; UPDATE t2 SET b=7317 WHERE a=7749; UPDATE t2 SET b=32354 WHERE a=7750; UPDATE t2 SET b=38834 WHERE a=7751; UPDATE t2 SET b=49115 WHERE a=7752; UPDATE t2 SET b=15466 WHERE a=7753; UPDATE t2 SET b=59544 WHERE a=7754; UPDATE t2 SET b=39008 WHERE a=7755; UPDATE t2 SET b=61652 WHERE a=7756; UPDATE t2 SET b=51176 WHERE a=7757; UPDATE t2 SET b=97482 WHERE a=7758; UPDATE t2 SET b=89372 WHERE a=7759; UPDATE t2 SET b=33702 WHERE a=7760; UPDATE t2 SET b=76174 WHERE a=7761; UPDATE t2 SET b=80785 WHERE a=7762; UPDATE t2 SET b=21802 WHERE a=7763; UPDATE t2 SET b=41527 WHERE a=7764; UPDATE t2 SET b=82089 WHERE a=7765; UPDATE t2 SET b=21270 WHERE a=7766; UPDATE t2 SET b=90250 WHERE a=7767; UPDATE t2 SET b=35360 WHERE a=7768; UPDATE t2 SET b=6995 WHERE a=7769; UPDATE t2 SET b=21378 WHERE a=7770; UPDATE t2 SET b=23680 WHERE a=7771; UPDATE t2 SET b=47514 WHERE a=7772; UPDATE t2 SET b=25835 WHERE a=7773; UPDATE t2 SET b=12791 WHERE a=7774; UPDATE t2 SET b=77639 WHERE a=7775; UPDATE t2 SET b=5786 WHERE a=7776; UPDATE t2 SET b=64601 WHERE a=7777; UPDATE t2 SET b=50469 WHERE a=7778; UPDATE t2 SET b=65743 WHERE a=7779; UPDATE t2 SET b=3229 WHERE a=7780; UPDATE t2 SET b=87213 WHERE a=7781; UPDATE t2 SET b=39920 WHERE a=7782; UPDATE t2 SET b=84747 WHERE a=7783; UPDATE t2 SET b=58618 WHERE a=7784; UPDATE t2 SET b=25485 WHERE a=7785; UPDATE t2 SET b=84949 WHERE a=7786; UPDATE t2 SET b=9692 WHERE a=7787; UPDATE t2 SET b=88932 WHERE a=7788; UPDATE t2 SET b=76530 WHERE a=7789; UPDATE t2 SET b=7168 WHERE a=7790; UPDATE t2 SET b=19995 WHERE a=7791; UPDATE t2 SET b=18365 WHERE a=7792; UPDATE t2 SET b=9465 WHERE a=7793; UPDATE t2 SET b=32681 WHERE a=7794; UPDATE t2 SET b=34050 WHERE a=7795; UPDATE t2 SET b=48747 WHERE a=7796; UPDATE t2 SET b=94129 WHERE a=7797; UPDATE t2 SET b=16574 WHERE a=7798; UPDATE t2 SET b=62900 WHERE a=7799; UPDATE t2 SET b=7562 WHERE a=7800; UPDATE t2 SET b=60380 WHERE a=7801; UPDATE t2 SET b=45402 WHERE a=7802; UPDATE t2 SET b=34405 WHERE a=7803; UPDATE t2 SET b=60686 WHERE a=7804; UPDATE t2 SET b=55818 WHERE a=7805; UPDATE t2 SET b=68468 WHERE a=7806; UPDATE t2 SET b=65965 WHERE a=7807; UPDATE t2 SET b=38018 WHERE a=7808; UPDATE t2 SET b=92984 WHERE a=7809; UPDATE t2 SET b=98525 WHERE a=7810; UPDATE t2 SET b=64496 WHERE a=7811; UPDATE t2 SET b=84996 WHERE a=7812; UPDATE t2 SET b=94513 WHERE a=7813; UPDATE t2 SET b=17359 WHERE a=7814; UPDATE t2 SET b=35344 WHERE a=7815; UPDATE t2 SET b=3454 WHERE a=7816; UPDATE t2 SET b=42405 WHERE a=7817; UPDATE t2 SET b=58274 WHERE a=7818; UPDATE t2 SET b=44420 WHERE a=7819; UPDATE t2 SET b=21226 WHERE a=7820; UPDATE t2 SET b=90491 WHERE a=7821; UPDATE t2 SET b=69698 WHERE a=7822; UPDATE t2 SET b=93764 WHERE a=7823; UPDATE t2 SET b=99589 WHERE a=7824; UPDATE t2 SET b=26315 WHERE a=7825; UPDATE t2 SET b=16015 WHERE a=7826; UPDATE t2 SET b=71269 WHERE a=7827; UPDATE t2 SET b=82593 WHERE a=7828; UPDATE t2 SET b=84517 WHERE a=7829; UPDATE t2 SET b=67495 WHERE a=7830; UPDATE t2 SET b=81449 WHERE a=7831; UPDATE t2 SET b=88267 WHERE a=7832; UPDATE t2 SET b=23847 WHERE a=7833; UPDATE t2 SET b=58318 WHERE a=7834; UPDATE t2 SET b=11245 WHERE a=7835; UPDATE t2 SET b=390 WHERE a=7836; UPDATE t2 SET b=37443 WHERE a=7837; UPDATE t2 SET b=45782 WHERE a=7838; UPDATE t2 SET b=61795 WHERE a=7839; UPDATE t2 SET b=60129 WHERE a=7840; UPDATE t2 SET b=24696 WHERE a=7841; UPDATE t2 SET b=66705 WHERE a=7842; UPDATE t2 SET b=35555 WHERE a=7843; UPDATE t2 SET b=7464 WHERE a=7844; UPDATE t2 SET b=59643 WHERE a=7845; UPDATE t2 SET b=37368 WHERE a=7846; UPDATE t2 SET b=26126 WHERE a=7847; UPDATE t2 SET b=27234 WHERE a=7848; UPDATE t2 SET b=48645 WHERE a=7849; UPDATE t2 SET b=58668 WHERE a=7850; UPDATE t2 SET b=44465 WHERE a=7851; UPDATE t2 SET b=74894 WHERE a=7852; UPDATE t2 SET b=21521 WHERE a=7853; UPDATE t2 SET b=20602 WHERE a=7854; UPDATE t2 SET b=38418 WHERE a=7855; UPDATE t2 SET b=24190 WHERE a=7856; UPDATE t2 SET b=76515 WHERE a=7857; UPDATE t2 SET b=46389 WHERE a=7858; UPDATE t2 SET b=32462 WHERE a=7859; UPDATE t2 SET b=62514 WHERE a=7860; UPDATE t2 SET b=69520 WHERE a=7861; UPDATE t2 SET b=75775 WHERE a=7862; UPDATE t2 SET b=20424 WHERE a=7863; UPDATE t2 SET b=33645 WHERE a=7864; UPDATE t2 SET b=9572 WHERE a=7865; UPDATE t2 SET b=33088 WHERE a=7866; UPDATE t2 SET b=67116 WHERE a=7867; UPDATE t2 SET b=55249 WHERE a=7868; UPDATE t2 SET b=80394 WHERE a=7869; UPDATE t2 SET b=58583 WHERE a=7870; UPDATE t2 SET b=74113 WHERE a=7871; UPDATE t2 SET b=38103 WHERE a=7872; UPDATE t2 SET b=73495 WHERE a=7873; UPDATE t2 SET b=58351 WHERE a=7874; UPDATE t2 SET b=34129 WHERE a=7875; UPDATE t2 SET b=89653 WHERE a=7876; UPDATE t2 SET b=85015 WHERE a=7877; UPDATE t2 SET b=18948 WHERE a=7878; UPDATE t2 SET b=75803 WHERE a=7879; UPDATE t2 SET b=50893 WHERE a=7880; UPDATE t2 SET b=92163 WHERE a=7881; UPDATE t2 SET b=55134 WHERE a=7882; UPDATE t2 SET b=50258 WHERE a=7883; UPDATE t2 SET b=3020 WHERE a=7884; UPDATE t2 SET b=9844 WHERE a=7885; UPDATE t2 SET b=67596 WHERE a=7886; UPDATE t2 SET b=9941 WHERE a=7887; UPDATE t2 SET b=81742 WHERE a=7888; UPDATE t2 SET b=93131 WHERE a=7889; UPDATE t2 SET b=86113 WHERE a=7890; UPDATE t2 SET b=25136 WHERE a=7891; UPDATE t2 SET b=98692 WHERE a=7892; UPDATE t2 SET b=41770 WHERE a=7893; UPDATE t2 SET b=50222 WHERE a=7894; UPDATE t2 SET b=25521 WHERE a=7895; UPDATE t2 SET b=9472 WHERE a=7896; UPDATE t2 SET b=2638 WHERE a=7897; UPDATE t2 SET b=68681 WHERE a=7898; UPDATE t2 SET b=52115 WHERE a=7899; UPDATE t2 SET b=59614 WHERE a=7900; UPDATE t2 SET b=25731 WHERE a=7901; UPDATE t2 SET b=55320 WHERE a=7902; UPDATE t2 SET b=15672 WHERE a=7903; UPDATE t2 SET b=98702 WHERE a=7904; UPDATE t2 SET b=25785 WHERE a=7905; UPDATE t2 SET b=31377 WHERE a=7906; UPDATE t2 SET b=23233 WHERE a=7907; UPDATE t2 SET b=46203 WHERE a=7908; UPDATE t2 SET b=48046 WHERE a=7909; UPDATE t2 SET b=91829 WHERE a=7910; UPDATE t2 SET b=59982 WHERE a=7911; UPDATE t2 SET b=80202 WHERE a=7912; UPDATE t2 SET b=68032 WHERE a=7913; UPDATE t2 SET b=50556 WHERE a=7914; UPDATE t2 SET b=16470 WHERE a=7915; UPDATE t2 SET b=28017 WHERE a=7916; UPDATE t2 SET b=57900 WHERE a=7917; UPDATE t2 SET b=72610 WHERE a=7918; UPDATE t2 SET b=72865 WHERE a=7919; UPDATE t2 SET b=13852 WHERE a=7920; UPDATE t2 SET b=68058 WHERE a=7921; UPDATE t2 SET b=71483 WHERE a=7922; UPDATE t2 SET b=33465 WHERE a=7923; UPDATE t2 SET b=51742 WHERE a=7924; UPDATE t2 SET b=29624 WHERE a=7925; UPDATE t2 SET b=25041 WHERE a=7926; UPDATE t2 SET b=52414 WHERE a=7927; UPDATE t2 SET b=27914 WHERE a=7928; UPDATE t2 SET b=23597 WHERE a=7929; UPDATE t2 SET b=62882 WHERE a=7930; UPDATE t2 SET b=4795 WHERE a=7931; UPDATE t2 SET b=45980 WHERE a=7932; UPDATE t2 SET b=55592 WHERE a=7933; UPDATE t2 SET b=77057 WHERE a=7934; UPDATE t2 SET b=74579 WHERE a=7935; UPDATE t2 SET b=2996 WHERE a=7936; UPDATE t2 SET b=22531 WHERE a=7937; UPDATE t2 SET b=4733 WHERE a=7938; UPDATE t2 SET b=14086 WHERE a=7939; UPDATE t2 SET b=60920 WHERE a=7940; UPDATE t2 SET b=63996 WHERE a=7941; UPDATE t2 SET b=18671 WHERE a=7942; UPDATE t2 SET b=59371 WHERE a=7943; UPDATE t2 SET b=60459 WHERE a=7944; UPDATE t2 SET b=39059 WHERE a=7945; UPDATE t2 SET b=13382 WHERE a=7946; UPDATE t2 SET b=29791 WHERE a=7947; UPDATE t2 SET b=62469 WHERE a=7948; UPDATE t2 SET b=24571 WHERE a=7949; UPDATE t2 SET b=78886 WHERE a=7950; UPDATE t2 SET b=40480 WHERE a=7951; UPDATE t2 SET b=82310 WHERE a=7952; UPDATE t2 SET b=27923 WHERE a=7953; UPDATE t2 SET b=57219 WHERE a=7954; UPDATE t2 SET b=81907 WHERE a=7955; UPDATE t2 SET b=17824 WHERE a=7956; UPDATE t2 SET b=49251 WHERE a=7957; UPDATE t2 SET b=30644 WHERE a=7958; UPDATE t2 SET b=63318 WHERE a=7959; UPDATE t2 SET b=10678 WHERE a=7960; UPDATE t2 SET b=81315 WHERE a=7961; UPDATE t2 SET b=8466 WHERE a=7962; UPDATE t2 SET b=93643 WHERE a=7963; UPDATE t2 SET b=65471 WHERE a=7964; UPDATE t2 SET b=28087 WHERE a=7965; UPDATE t2 SET b=84448 WHERE a=7966; UPDATE t2 SET b=96832 WHERE a=7967; UPDATE t2 SET b=92149 WHERE a=7968; UPDATE t2 SET b=20953 WHERE a=7969; UPDATE t2 SET b=72180 WHERE a=7970; UPDATE t2 SET b=42759 WHERE a=7971; UPDATE t2 SET b=41466 WHERE a=7972; UPDATE t2 SET b=33839 WHERE a=7973; UPDATE t2 SET b=9575 WHERE a=7974; UPDATE t2 SET b=47619 WHERE a=7975; UPDATE t2 SET b=85159 WHERE a=7976; UPDATE t2 SET b=54190 WHERE a=7977; UPDATE t2 SET b=10679 WHERE a=7978; UPDATE t2 SET b=14843 WHERE a=7979; UPDATE t2 SET b=43583 WHERE a=7980; UPDATE t2 SET b=98614 WHERE a=7981; UPDATE t2 SET b=97353 WHERE a=7982; UPDATE t2 SET b=65233 WHERE a=7983; UPDATE t2 SET b=8525 WHERE a=7984; UPDATE t2 SET b=92791 WHERE a=7985; UPDATE t2 SET b=88157 WHERE a=7986; UPDATE t2 SET b=43815 WHERE a=7987; UPDATE t2 SET b=62753 WHERE a=7988; UPDATE t2 SET b=74468 WHERE a=7989; UPDATE t2 SET b=74050 WHERE a=7990; UPDATE t2 SET b=9558 WHERE a=7991; UPDATE t2 SET b=79225 WHERE a=7992; UPDATE t2 SET b=40388 WHERE a=7993; UPDATE t2 SET b=52681 WHERE a=7994; UPDATE t2 SET b=52424 WHERE a=7995; UPDATE t2 SET b=54717 WHERE a=7996; UPDATE t2 SET b=38066 WHERE a=7997; UPDATE t2 SET b=86010 WHERE a=7998; UPDATE t2 SET b=411 WHERE a=7999; UPDATE t2 SET b=66984 WHERE a=8000; UPDATE t2 SET b=94812 WHERE a=8001; UPDATE t2 SET b=40123 WHERE a=8002; UPDATE t2 SET b=94565 WHERE a=8003; UPDATE t2 SET b=46444 WHERE a=8004; UPDATE t2 SET b=97579 WHERE a=8005; UPDATE t2 SET b=99286 WHERE a=8006; UPDATE t2 SET b=56677 WHERE a=8007; UPDATE t2 SET b=6491 WHERE a=8008; UPDATE t2 SET b=71986 WHERE a=8009; UPDATE t2 SET b=4429 WHERE a=8010; UPDATE t2 SET b=18021 WHERE a=8011; UPDATE t2 SET b=47915 WHERE a=8012; UPDATE t2 SET b=41606 WHERE a=8013; UPDATE t2 SET b=43081 WHERE a=8014; UPDATE t2 SET b=12157 WHERE a=8015; UPDATE t2 SET b=89786 WHERE a=8016; UPDATE t2 SET b=90409 WHERE a=8017; UPDATE t2 SET b=47933 WHERE a=8018; UPDATE t2 SET b=11315 WHERE a=8019; UPDATE t2 SET b=20943 WHERE a=8020; UPDATE t2 SET b=63751 WHERE a=8021; UPDATE t2 SET b=12391 WHERE a=8022; UPDATE t2 SET b=13411 WHERE a=8023; UPDATE t2 SET b=66131 WHERE a=8024; UPDATE t2 SET b=39884 WHERE a=8025; UPDATE t2 SET b=78608 WHERE a=8026; UPDATE t2 SET b=46744 WHERE a=8027; UPDATE t2 SET b=59409 WHERE a=8028; UPDATE t2 SET b=57756 WHERE a=8029; UPDATE t2 SET b=80971 WHERE a=8030; UPDATE t2 SET b=27553 WHERE a=8031; UPDATE t2 SET b=60904 WHERE a=8032; UPDATE t2 SET b=86316 WHERE a=8033; UPDATE t2 SET b=36250 WHERE a=8034; UPDATE t2 SET b=54852 WHERE a=8035; UPDATE t2 SET b=79848 WHERE a=8036; UPDATE t2 SET b=6448 WHERE a=8037; UPDATE t2 SET b=26502 WHERE a=8038; UPDATE t2 SET b=96937 WHERE a=8039; UPDATE t2 SET b=97169 WHERE a=8040; UPDATE t2 SET b=23244 WHERE a=8041; UPDATE t2 SET b=20756 WHERE a=8042; UPDATE t2 SET b=1225 WHERE a=8043; UPDATE t2 SET b=97872 WHERE a=8044; UPDATE t2 SET b=67093 WHERE a=8045; UPDATE t2 SET b=79446 WHERE a=8046; UPDATE t2 SET b=65059 WHERE a=8047; UPDATE t2 SET b=57386 WHERE a=8048; UPDATE t2 SET b=86346 WHERE a=8049; UPDATE t2 SET b=58001 WHERE a=8050; UPDATE t2 SET b=48601 WHERE a=8051; UPDATE t2 SET b=89282 WHERE a=8052; UPDATE t2 SET b=71679 WHERE a=8053; UPDATE t2 SET b=13325 WHERE a=8054; UPDATE t2 SET b=71194 WHERE a=8055; UPDATE t2 SET b=18836 WHERE a=8056; UPDATE t2 SET b=46264 WHERE a=8057; UPDATE t2 SET b=47387 WHERE a=8058; UPDATE t2 SET b=94447 WHERE a=8059; UPDATE t2 SET b=45161 WHERE a=8060; UPDATE t2 SET b=82912 WHERE a=8061; UPDATE t2 SET b=159 WHERE a=8062; UPDATE t2 SET b=2279 WHERE a=8063; UPDATE t2 SET b=731 WHERE a=8064; UPDATE t2 SET b=51617 WHERE a=8065; UPDATE t2 SET b=92031 WHERE a=8066; UPDATE t2 SET b=39960 WHERE a=8067; UPDATE t2 SET b=90244 WHERE a=8068; UPDATE t2 SET b=94025 WHERE a=8069; UPDATE t2 SET b=69330 WHERE a=8070; UPDATE t2 SET b=72944 WHERE a=8071; UPDATE t2 SET b=85225 WHERE a=8072; UPDATE t2 SET b=72877 WHERE a=8073; UPDATE t2 SET b=43044 WHERE a=8074; UPDATE t2 SET b=20332 WHERE a=8075; UPDATE t2 SET b=66182 WHERE a=8076; UPDATE t2 SET b=24332 WHERE a=8077; UPDATE t2 SET b=17842 WHERE a=8078; UPDATE t2 SET b=76402 WHERE a=8079; UPDATE t2 SET b=12004 WHERE a=8080; UPDATE t2 SET b=98914 WHERE a=8081; UPDATE t2 SET b=74983 WHERE a=8082; UPDATE t2 SET b=62436 WHERE a=8083; UPDATE t2 SET b=67799 WHERE a=8084; UPDATE t2 SET b=65948 WHERE a=8085; UPDATE t2 SET b=13213 WHERE a=8086; UPDATE t2 SET b=43155 WHERE a=8087; UPDATE t2 SET b=90414 WHERE a=8088; UPDATE t2 SET b=44037 WHERE a=8089; UPDATE t2 SET b=28033 WHERE a=8090; UPDATE t2 SET b=53591 WHERE a=8091; UPDATE t2 SET b=36780 WHERE a=8092; UPDATE t2 SET b=81500 WHERE a=8093; UPDATE t2 SET b=62514 WHERE a=8094; UPDATE t2 SET b=93894 WHERE a=8095; UPDATE t2 SET b=47608 WHERE a=8096; UPDATE t2 SET b=48269 WHERE a=8097; UPDATE t2 SET b=58503 WHERE a=8098; UPDATE t2 SET b=77805 WHERE a=8099; UPDATE t2 SET b=69708 WHERE a=8100; UPDATE t2 SET b=9109 WHERE a=8101; UPDATE t2 SET b=94892 WHERE a=8102; UPDATE t2 SET b=16646 WHERE a=8103; UPDATE t2 SET b=50158 WHERE a=8104; UPDATE t2 SET b=67235 WHERE a=8105; UPDATE t2 SET b=92217 WHERE a=8106; UPDATE t2 SET b=28908 WHERE a=8107; UPDATE t2 SET b=89306 WHERE a=8108; UPDATE t2 SET b=27496 WHERE a=8109; UPDATE t2 SET b=8964 WHERE a=8110; UPDATE t2 SET b=42135 WHERE a=8111; UPDATE t2 SET b=47102 WHERE a=8112; UPDATE t2 SET b=18427 WHERE a=8113; UPDATE t2 SET b=76063 WHERE a=8114; UPDATE t2 SET b=48873 WHERE a=8115; UPDATE t2 SET b=7560 WHERE a=8116; UPDATE t2 SET b=71500 WHERE a=8117; UPDATE t2 SET b=70616 WHERE a=8118; UPDATE t2 SET b=74693 WHERE a=8119; UPDATE t2 SET b=80632 WHERE a=8120; UPDATE t2 SET b=27870 WHERE a=8121; UPDATE t2 SET b=89043 WHERE a=8122; UPDATE t2 SET b=20689 WHERE a=8123; UPDATE t2 SET b=98281 WHERE a=8124; UPDATE t2 SET b=60618 WHERE a=8125; UPDATE t2 SET b=78946 WHERE a=8126; UPDATE t2 SET b=40141 WHERE a=8127; UPDATE t2 SET b=27615 WHERE a=8128; UPDATE t2 SET b=15150 WHERE a=8129; UPDATE t2 SET b=1182 WHERE a=8130; UPDATE t2 SET b=82447 WHERE a=8131; UPDATE t2 SET b=77462 WHERE a=8132; UPDATE t2 SET b=15484 WHERE a=8133; UPDATE t2 SET b=30420 WHERE a=8134; UPDATE t2 SET b=86351 WHERE a=8135; UPDATE t2 SET b=70688 WHERE a=8136; UPDATE t2 SET b=36650 WHERE a=8137; UPDATE t2 SET b=24840 WHERE a=8138; UPDATE t2 SET b=90460 WHERE a=8139; UPDATE t2 SET b=87843 WHERE a=8140; UPDATE t2 SET b=80374 WHERE a=8141; UPDATE t2 SET b=60437 WHERE a=8142; UPDATE t2 SET b=55078 WHERE a=8143; UPDATE t2 SET b=82890 WHERE a=8144; UPDATE t2 SET b=35362 WHERE a=8145; UPDATE t2 SET b=42336 WHERE a=8146; UPDATE t2 SET b=87712 WHERE a=8147; UPDATE t2 SET b=90035 WHERE a=8148; UPDATE t2 SET b=67236 WHERE a=8149; UPDATE t2 SET b=60007 WHERE a=8150; UPDATE t2 SET b=26392 WHERE a=8151; UPDATE t2 SET b=58253 WHERE a=8152; UPDATE t2 SET b=61246 WHERE a=8153; UPDATE t2 SET b=55269 WHERE a=8154; UPDATE t2 SET b=97313 WHERE a=8155; UPDATE t2 SET b=61531 WHERE a=8156; UPDATE t2 SET b=1966 WHERE a=8157; UPDATE t2 SET b=88324 WHERE a=8158; UPDATE t2 SET b=81995 WHERE a=8159; UPDATE t2 SET b=15221 WHERE a=8160; UPDATE t2 SET b=53432 WHERE a=8161; UPDATE t2 SET b=41958 WHERE a=8162; UPDATE t2 SET b=58475 WHERE a=8163; UPDATE t2 SET b=74220 WHERE a=8164; UPDATE t2 SET b=97531 WHERE a=8165; UPDATE t2 SET b=49137 WHERE a=8166; UPDATE t2 SET b=59990 WHERE a=8167; UPDATE t2 SET b=80624 WHERE a=8168; UPDATE t2 SET b=35736 WHERE a=8169; UPDATE t2 SET b=86273 WHERE a=8170; UPDATE t2 SET b=70695 WHERE a=8171; UPDATE t2 SET b=2849 WHERE a=8172; UPDATE t2 SET b=6191 WHERE a=8173; UPDATE t2 SET b=10315 WHERE a=8174; UPDATE t2 SET b=71473 WHERE a=8175; UPDATE t2 SET b=90928 WHERE a=8176; UPDATE t2 SET b=2219 WHERE a=8177; UPDATE t2 SET b=31794 WHERE a=8178; UPDATE t2 SET b=48503 WHERE a=8179; UPDATE t2 SET b=82352 WHERE a=8180; UPDATE t2 SET b=86084 WHERE a=8181; UPDATE t2 SET b=28326 WHERE a=8182; UPDATE t2 SET b=91378 WHERE a=8183; UPDATE t2 SET b=5988 WHERE a=8184; UPDATE t2 SET b=13032 WHERE a=8185; UPDATE t2 SET b=66940 WHERE a=8186; UPDATE t2 SET b=13219 WHERE a=8187; UPDATE t2 SET b=8348 WHERE a=8188; UPDATE t2 SET b=48348 WHERE a=8189; UPDATE t2 SET b=62874 WHERE a=8190; UPDATE t2 SET b=35968 WHERE a=8191; UPDATE t2 SET b=7093 WHERE a=8192; UPDATE t2 SET b=24911 WHERE a=8193; UPDATE t2 SET b=90327 WHERE a=8194; UPDATE t2 SET b=11042 WHERE a=8195; UPDATE t2 SET b=39361 WHERE a=8196; UPDATE t2 SET b=60883 WHERE a=8197; UPDATE t2 SET b=3903 WHERE a=8198; UPDATE t2 SET b=39320 WHERE a=8199; UPDATE t2 SET b=57538 WHERE a=8200; UPDATE t2 SET b=43640 WHERE a=8201; UPDATE t2 SET b=78601 WHERE a=8202; UPDATE t2 SET b=86112 WHERE a=8203; UPDATE t2 SET b=12351 WHERE a=8204; UPDATE t2 SET b=29721 WHERE a=8205; UPDATE t2 SET b=18864 WHERE a=8206; UPDATE t2 SET b=22637 WHERE a=8207; UPDATE t2 SET b=90372 WHERE a=8208; UPDATE t2 SET b=72683 WHERE a=8209; UPDATE t2 SET b=8871 WHERE a=8210; UPDATE t2 SET b=13948 WHERE a=8211; UPDATE t2 SET b=98491 WHERE a=8212; UPDATE t2 SET b=58855 WHERE a=8213; UPDATE t2 SET b=24813 WHERE a=8214; UPDATE t2 SET b=35820 WHERE a=8215; UPDATE t2 SET b=78554 WHERE a=8216; UPDATE t2 SET b=27463 WHERE a=8217; UPDATE t2 SET b=7328 WHERE a=8218; UPDATE t2 SET b=78722 WHERE a=8219; UPDATE t2 SET b=8989 WHERE a=8220; UPDATE t2 SET b=75324 WHERE a=8221; UPDATE t2 SET b=60101 WHERE a=8222; UPDATE t2 SET b=99011 WHERE a=8223; UPDATE t2 SET b=41938 WHERE a=8224; UPDATE t2 SET b=87341 WHERE a=8225; UPDATE t2 SET b=97895 WHERE a=8226; UPDATE t2 SET b=53274 WHERE a=8227; UPDATE t2 SET b=34824 WHERE a=8228; UPDATE t2 SET b=11054 WHERE a=8229; UPDATE t2 SET b=92035 WHERE a=8230; UPDATE t2 SET b=15083 WHERE a=8231; UPDATE t2 SET b=56141 WHERE a=8232; UPDATE t2 SET b=71154 WHERE a=8233; UPDATE t2 SET b=92574 WHERE a=8234; UPDATE t2 SET b=89246 WHERE a=8235; UPDATE t2 SET b=39106 WHERE a=8236; UPDATE t2 SET b=39274 WHERE a=8237; UPDATE t2 SET b=86377 WHERE a=8238; UPDATE t2 SET b=4180 WHERE a=8239; UPDATE t2 SET b=1234 WHERE a=8240; UPDATE t2 SET b=70770 WHERE a=8241; UPDATE t2 SET b=51211 WHERE a=8242; UPDATE t2 SET b=88550 WHERE a=8243; UPDATE t2 SET b=62820 WHERE a=8244; UPDATE t2 SET b=15374 WHERE a=8245; UPDATE t2 SET b=70820 WHERE a=8246; UPDATE t2 SET b=12017 WHERE a=8247; UPDATE t2 SET b=48708 WHERE a=8248; UPDATE t2 SET b=4063 WHERE a=8249; UPDATE t2 SET b=4436 WHERE a=8250; UPDATE t2 SET b=12474 WHERE a=8251; UPDATE t2 SET b=50472 WHERE a=8252; UPDATE t2 SET b=41365 WHERE a=8253; UPDATE t2 SET b=64605 WHERE a=8254; UPDATE t2 SET b=64547 WHERE a=8255; UPDATE t2 SET b=20858 WHERE a=8256; UPDATE t2 SET b=63199 WHERE a=8257; UPDATE t2 SET b=21641 WHERE a=8258; UPDATE t2 SET b=29604 WHERE a=8259; UPDATE t2 SET b=19315 WHERE a=8260; UPDATE t2 SET b=1885 WHERE a=8261; UPDATE t2 SET b=42441 WHERE a=8262; UPDATE t2 SET b=45704 WHERE a=8263; UPDATE t2 SET b=18697 WHERE a=8264; UPDATE t2 SET b=31870 WHERE a=8265; UPDATE t2 SET b=83957 WHERE a=8266; UPDATE t2 SET b=10201 WHERE a=8267; UPDATE t2 SET b=66846 WHERE a=8268; UPDATE t2 SET b=77190 WHERE a=8269; UPDATE t2 SET b=21479 WHERE a=8270; UPDATE t2 SET b=46143 WHERE a=8271; UPDATE t2 SET b=4681 WHERE a=8272; UPDATE t2 SET b=88519 WHERE a=8273; UPDATE t2 SET b=94646 WHERE a=8274; UPDATE t2 SET b=3361 WHERE a=8275; UPDATE t2 SET b=17547 WHERE a=8276; UPDATE t2 SET b=29436 WHERE a=8277; UPDATE t2 SET b=8296 WHERE a=8278; UPDATE t2 SET b=92168 WHERE a=8279; UPDATE t2 SET b=40455 WHERE a=8280; UPDATE t2 SET b=40823 WHERE a=8281; UPDATE t2 SET b=32140 WHERE a=8282; UPDATE t2 SET b=56123 WHERE a=8283; UPDATE t2 SET b=89213 WHERE a=8284; UPDATE t2 SET b=84813 WHERE a=8285; UPDATE t2 SET b=82820 WHERE a=8286; UPDATE t2 SET b=68669 WHERE a=8287; UPDATE t2 SET b=28300 WHERE a=8288; UPDATE t2 SET b=45013 WHERE a=8289; UPDATE t2 SET b=71780 WHERE a=8290; UPDATE t2 SET b=54498 WHERE a=8291; UPDATE t2 SET b=74038 WHERE a=8292; UPDATE t2 SET b=84404 WHERE a=8293; UPDATE t2 SET b=91228 WHERE a=8294; UPDATE t2 SET b=69974 WHERE a=8295; UPDATE t2 SET b=61171 WHERE a=8296; UPDATE t2 SET b=93954 WHERE a=8297; UPDATE t2 SET b=56054 WHERE a=8298; UPDATE t2 SET b=84651 WHERE a=8299; UPDATE t2 SET b=96995 WHERE a=8300; UPDATE t2 SET b=65084 WHERE a=8301; UPDATE t2 SET b=69536 WHERE a=8302; UPDATE t2 SET b=53279 WHERE a=8303; UPDATE t2 SET b=36331 WHERE a=8304; UPDATE t2 SET b=31356 WHERE a=8305; UPDATE t2 SET b=47136 WHERE a=8306; UPDATE t2 SET b=69763 WHERE a=8307; UPDATE t2 SET b=43402 WHERE a=8308; UPDATE t2 SET b=52983 WHERE a=8309; UPDATE t2 SET b=96750 WHERE a=8310; UPDATE t2 SET b=21211 WHERE a=8311; UPDATE t2 SET b=83360 WHERE a=8312; UPDATE t2 SET b=8087 WHERE a=8313; UPDATE t2 SET b=49679 WHERE a=8314; UPDATE t2 SET b=34648 WHERE a=8315; UPDATE t2 SET b=63557 WHERE a=8316; UPDATE t2 SET b=7250 WHERE a=8317; UPDATE t2 SET b=80921 WHERE a=8318; UPDATE t2 SET b=55184 WHERE a=8319; UPDATE t2 SET b=15534 WHERE a=8320; UPDATE t2 SET b=60171 WHERE a=8321; UPDATE t2 SET b=52846 WHERE a=8322; UPDATE t2 SET b=50166 WHERE a=8323; UPDATE t2 SET b=4883 WHERE a=8324; UPDATE t2 SET b=77893 WHERE a=8325; UPDATE t2 SET b=52442 WHERE a=8326; UPDATE t2 SET b=65918 WHERE a=8327; UPDATE t2 SET b=75607 WHERE a=8328; UPDATE t2 SET b=86464 WHERE a=8329; UPDATE t2 SET b=90676 WHERE a=8330; UPDATE t2 SET b=48958 WHERE a=8331; UPDATE t2 SET b=2297 WHERE a=8332; UPDATE t2 SET b=40894 WHERE a=8333; UPDATE t2 SET b=76694 WHERE a=8334; UPDATE t2 SET b=10784 WHERE a=8335; UPDATE t2 SET b=88192 WHERE a=8336; UPDATE t2 SET b=58575 WHERE a=8337; UPDATE t2 SET b=7947 WHERE a=8338; UPDATE t2 SET b=8500 WHERE a=8339; UPDATE t2 SET b=28833 WHERE a=8340; UPDATE t2 SET b=95122 WHERE a=8341; UPDATE t2 SET b=9653 WHERE a=8342; UPDATE t2 SET b=41501 WHERE a=8343; UPDATE t2 SET b=37618 WHERE a=8344; UPDATE t2 SET b=33064 WHERE a=8345; UPDATE t2 SET b=33945 WHERE a=8346; UPDATE t2 SET b=4339 WHERE a=8347; UPDATE t2 SET b=35537 WHERE a=8348; UPDATE t2 SET b=29061 WHERE a=8349; UPDATE t2 SET b=2381 WHERE a=8350; UPDATE t2 SET b=35180 WHERE a=8351; UPDATE t2 SET b=67829 WHERE a=8352; UPDATE t2 SET b=87992 WHERE a=8353; UPDATE t2 SET b=12731 WHERE a=8354; UPDATE t2 SET b=33902 WHERE a=8355; UPDATE t2 SET b=81214 WHERE a=8356; UPDATE t2 SET b=93230 WHERE a=8357; UPDATE t2 SET b=49093 WHERE a=8358; UPDATE t2 SET b=50752 WHERE a=8359; UPDATE t2 SET b=88288 WHERE a=8360; UPDATE t2 SET b=17137 WHERE a=8361; UPDATE t2 SET b=78844 WHERE a=8362; UPDATE t2 SET b=82584 WHERE a=8363; UPDATE t2 SET b=42954 WHERE a=8364; UPDATE t2 SET b=2668 WHERE a=8365; UPDATE t2 SET b=42402 WHERE a=8366; UPDATE t2 SET b=52635 WHERE a=8367; UPDATE t2 SET b=30156 WHERE a=8368; UPDATE t2 SET b=78841 WHERE a=8369; UPDATE t2 SET b=17973 WHERE a=8370; UPDATE t2 SET b=65542 WHERE a=8371; UPDATE t2 SET b=53911 WHERE a=8372; UPDATE t2 SET b=61111 WHERE a=8373; UPDATE t2 SET b=97250 WHERE a=8374; UPDATE t2 SET b=44261 WHERE a=8375; UPDATE t2 SET b=6218 WHERE a=8376; UPDATE t2 SET b=54013 WHERE a=8377; UPDATE t2 SET b=42619 WHERE a=8378; UPDATE t2 SET b=23845 WHERE a=8379; UPDATE t2 SET b=56595 WHERE a=8380; UPDATE t2 SET b=21808 WHERE a=8381; UPDATE t2 SET b=84312 WHERE a=8382; UPDATE t2 SET b=68289 WHERE a=8383; UPDATE t2 SET b=93661 WHERE a=8384; UPDATE t2 SET b=43821 WHERE a=8385; UPDATE t2 SET b=31115 WHERE a=8386; UPDATE t2 SET b=30218 WHERE a=8387; UPDATE t2 SET b=65646 WHERE a=8388; UPDATE t2 SET b=89007 WHERE a=8389; UPDATE t2 SET b=95087 WHERE a=8390; UPDATE t2 SET b=49357 WHERE a=8391; UPDATE t2 SET b=40306 WHERE a=8392; UPDATE t2 SET b=88564 WHERE a=8393; UPDATE t2 SET b=12309 WHERE a=8394; UPDATE t2 SET b=30157 WHERE a=8395; UPDATE t2 SET b=3238 WHERE a=8396; UPDATE t2 SET b=11773 WHERE a=8397; UPDATE t2 SET b=56635 WHERE a=8398; UPDATE t2 SET b=75173 WHERE a=8399; UPDATE t2 SET b=83542 WHERE a=8400; UPDATE t2 SET b=73235 WHERE a=8401; UPDATE t2 SET b=40489 WHERE a=8402; UPDATE t2 SET b=40750 WHERE a=8403; UPDATE t2 SET b=69870 WHERE a=8404; UPDATE t2 SET b=83807 WHERE a=8405; UPDATE t2 SET b=46913 WHERE a=8406; UPDATE t2 SET b=84696 WHERE a=8407; UPDATE t2 SET b=57378 WHERE a=8408; UPDATE t2 SET b=36807 WHERE a=8409; UPDATE t2 SET b=40660 WHERE a=8410; UPDATE t2 SET b=90525 WHERE a=8411; UPDATE t2 SET b=76013 WHERE a=8412; UPDATE t2 SET b=10624 WHERE a=8413; UPDATE t2 SET b=37776 WHERE a=8414; UPDATE t2 SET b=83799 WHERE a=8415; UPDATE t2 SET b=71391 WHERE a=8416; UPDATE t2 SET b=98365 WHERE a=8417; UPDATE t2 SET b=16315 WHERE a=8418; UPDATE t2 SET b=42016 WHERE a=8419; UPDATE t2 SET b=7157 WHERE a=8420; UPDATE t2 SET b=37980 WHERE a=8421; UPDATE t2 SET b=4957 WHERE a=8422; UPDATE t2 SET b=80902 WHERE a=8423; UPDATE t2 SET b=48608 WHERE a=8424; UPDATE t2 SET b=6270 WHERE a=8425; UPDATE t2 SET b=53994 WHERE a=8426; UPDATE t2 SET b=4240 WHERE a=8427; UPDATE t2 SET b=12782 WHERE a=8428; UPDATE t2 SET b=10465 WHERE a=8429; UPDATE t2 SET b=20464 WHERE a=8430; UPDATE t2 SET b=36242 WHERE a=8431; UPDATE t2 SET b=51788 WHERE a=8432; UPDATE t2 SET b=1412 WHERE a=8433; UPDATE t2 SET b=66864 WHERE a=8434; UPDATE t2 SET b=76161 WHERE a=8435; UPDATE t2 SET b=51807 WHERE a=8436; UPDATE t2 SET b=3838 WHERE a=8437; UPDATE t2 SET b=22495 WHERE a=8438; UPDATE t2 SET b=26333 WHERE a=8439; UPDATE t2 SET b=70502 WHERE a=8440; UPDATE t2 SET b=28861 WHERE a=8441; UPDATE t2 SET b=26636 WHERE a=8442; UPDATE t2 SET b=90876 WHERE a=8443; UPDATE t2 SET b=96445 WHERE a=8444; UPDATE t2 SET b=19849 WHERE a=8445; UPDATE t2 SET b=72216 WHERE a=8446; UPDATE t2 SET b=36374 WHERE a=8447; UPDATE t2 SET b=98987 WHERE a=8448; UPDATE t2 SET b=83001 WHERE a=8449; UPDATE t2 SET b=15025 WHERE a=8450; UPDATE t2 SET b=7585 WHERE a=8451; UPDATE t2 SET b=75126 WHERE a=8452; UPDATE t2 SET b=98742 WHERE a=8453; UPDATE t2 SET b=7685 WHERE a=8454; UPDATE t2 SET b=58627 WHERE a=8455; UPDATE t2 SET b=48136 WHERE a=8456; UPDATE t2 SET b=15803 WHERE a=8457; UPDATE t2 SET b=3078 WHERE a=8458; UPDATE t2 SET b=45281 WHERE a=8459; UPDATE t2 SET b=12569 WHERE a=8460; UPDATE t2 SET b=41613 WHERE a=8461; UPDATE t2 SET b=65364 WHERE a=8462; UPDATE t2 SET b=15349 WHERE a=8463; UPDATE t2 SET b=38433 WHERE a=8464; UPDATE t2 SET b=76774 WHERE a=8465; UPDATE t2 SET b=31884 WHERE a=8466; UPDATE t2 SET b=27458 WHERE a=8467; UPDATE t2 SET b=11425 WHERE a=8468; UPDATE t2 SET b=55465 WHERE a=8469; UPDATE t2 SET b=39985 WHERE a=8470; UPDATE t2 SET b=4427 WHERE a=8471; UPDATE t2 SET b=86705 WHERE a=8472; UPDATE t2 SET b=88088 WHERE a=8473; UPDATE t2 SET b=43864 WHERE a=8474; UPDATE t2 SET b=72451 WHERE a=8475; UPDATE t2 SET b=18072 WHERE a=8476; UPDATE t2 SET b=71884 WHERE a=8477; UPDATE t2 SET b=50100 WHERE a=8478; UPDATE t2 SET b=51131 WHERE a=8479; UPDATE t2 SET b=39450 WHERE a=8480; UPDATE t2 SET b=4057 WHERE a=8481; UPDATE t2 SET b=11649 WHERE a=8482; UPDATE t2 SET b=98272 WHERE a=8483; UPDATE t2 SET b=68526 WHERE a=8484; UPDATE t2 SET b=35724 WHERE a=8485; UPDATE t2 SET b=25501 WHERE a=8486; UPDATE t2 SET b=47885 WHERE a=8487; UPDATE t2 SET b=34060 WHERE a=8488; UPDATE t2 SET b=82318 WHERE a=8489; UPDATE t2 SET b=19833 WHERE a=8490; UPDATE t2 SET b=18967 WHERE a=8491; UPDATE t2 SET b=98300 WHERE a=8492; UPDATE t2 SET b=60038 WHERE a=8493; UPDATE t2 SET b=42885 WHERE a=8494; UPDATE t2 SET b=90786 WHERE a=8495; UPDATE t2 SET b=45264 WHERE a=8496; UPDATE t2 SET b=83032 WHERE a=8497; UPDATE t2 SET b=61019 WHERE a=8498; UPDATE t2 SET b=12747 WHERE a=8499; UPDATE t2 SET b=19494 WHERE a=8500; UPDATE t2 SET b=73268 WHERE a=8501; UPDATE t2 SET b=90839 WHERE a=8502; UPDATE t2 SET b=54200 WHERE a=8503; UPDATE t2 SET b=22424 WHERE a=8504; UPDATE t2 SET b=76210 WHERE a=8505; UPDATE t2 SET b=93670 WHERE a=8506; UPDATE t2 SET b=16828 WHERE a=8507; UPDATE t2 SET b=34904 WHERE a=8508; UPDATE t2 SET b=55381 WHERE a=8509; UPDATE t2 SET b=79556 WHERE a=8510; UPDATE t2 SET b=57740 WHERE a=8511; UPDATE t2 SET b=68544 WHERE a=8512; UPDATE t2 SET b=87044 WHERE a=8513; UPDATE t2 SET b=17613 WHERE a=8514; UPDATE t2 SET b=74027 WHERE a=8515; UPDATE t2 SET b=8226 WHERE a=8516; UPDATE t2 SET b=82668 WHERE a=8517; UPDATE t2 SET b=179 WHERE a=8518; UPDATE t2 SET b=26174 WHERE a=8519; UPDATE t2 SET b=94682 WHERE a=8520; UPDATE t2 SET b=13267 WHERE a=8521; UPDATE t2 SET b=82896 WHERE a=8522; UPDATE t2 SET b=70350 WHERE a=8523; UPDATE t2 SET b=45864 WHERE a=8524; UPDATE t2 SET b=97054 WHERE a=8525; UPDATE t2 SET b=64007 WHERE a=8526; UPDATE t2 SET b=77441 WHERE a=8527; UPDATE t2 SET b=43185 WHERE a=8528; UPDATE t2 SET b=85770 WHERE a=8529; UPDATE t2 SET b=26727 WHERE a=8530; UPDATE t2 SET b=13988 WHERE a=8531; UPDATE t2 SET b=93457 WHERE a=8532; UPDATE t2 SET b=14491 WHERE a=8533; UPDATE t2 SET b=13584 WHERE a=8534; UPDATE t2 SET b=72394 WHERE a=8535; UPDATE t2 SET b=97433 WHERE a=8536; UPDATE t2 SET b=51751 WHERE a=8537; UPDATE t2 SET b=32997 WHERE a=8538; UPDATE t2 SET b=62029 WHERE a=8539; UPDATE t2 SET b=89936 WHERE a=8540; UPDATE t2 SET b=18943 WHERE a=8541; UPDATE t2 SET b=20389 WHERE a=8542; UPDATE t2 SET b=63744 WHERE a=8543; UPDATE t2 SET b=60146 WHERE a=8544; UPDATE t2 SET b=35182 WHERE a=8545; UPDATE t2 SET b=84955 WHERE a=8546; UPDATE t2 SET b=95377 WHERE a=8547; UPDATE t2 SET b=46174 WHERE a=8548; UPDATE t2 SET b=79583 WHERE a=8549; UPDATE t2 SET b=90875 WHERE a=8550; UPDATE t2 SET b=60644 WHERE a=8551; UPDATE t2 SET b=2546 WHERE a=8552; UPDATE t2 SET b=18842 WHERE a=8553; UPDATE t2 SET b=8440 WHERE a=8554; UPDATE t2 SET b=3519 WHERE a=8555; UPDATE t2 SET b=49682 WHERE a=8556; UPDATE t2 SET b=82947 WHERE a=8557; UPDATE t2 SET b=20490 WHERE a=8558; UPDATE t2 SET b=880 WHERE a=8559; UPDATE t2 SET b=77905 WHERE a=8560; UPDATE t2 SET b=79187 WHERE a=8561; UPDATE t2 SET b=8199 WHERE a=8562; UPDATE t2 SET b=91076 WHERE a=8563; UPDATE t2 SET b=98145 WHERE a=8564; UPDATE t2 SET b=88470 WHERE a=8565; UPDATE t2 SET b=49372 WHERE a=8566; UPDATE t2 SET b=74426 WHERE a=8567; UPDATE t2 SET b=37540 WHERE a=8568; UPDATE t2 SET b=77026 WHERE a=8569; UPDATE t2 SET b=38790 WHERE a=8570; UPDATE t2 SET b=62249 WHERE a=8571; UPDATE t2 SET b=34526 WHERE a=8572; UPDATE t2 SET b=46515 WHERE a=8573; UPDATE t2 SET b=79045 WHERE a=8574; UPDATE t2 SET b=48745 WHERE a=8575; UPDATE t2 SET b=75818 WHERE a=8576; UPDATE t2 SET b=82684 WHERE a=8577; UPDATE t2 SET b=70407 WHERE a=8578; UPDATE t2 SET b=34 WHERE a=8579; UPDATE t2 SET b=30798 WHERE a=8580; UPDATE t2 SET b=79163 WHERE a=8581; UPDATE t2 SET b=49831 WHERE a=8582; UPDATE t2 SET b=57543 WHERE a=8583; UPDATE t2 SET b=60331 WHERE a=8584; UPDATE t2 SET b=40026 WHERE a=8585; UPDATE t2 SET b=87894 WHERE a=8586; UPDATE t2 SET b=25007 WHERE a=8587; UPDATE t2 SET b=57273 WHERE a=8588; UPDATE t2 SET b=79795 WHERE a=8589; UPDATE t2 SET b=5947 WHERE a=8590; UPDATE t2 SET b=45881 WHERE a=8591; UPDATE t2 SET b=23043 WHERE a=8592; UPDATE t2 SET b=12200 WHERE a=8593; UPDATE t2 SET b=80714 WHERE a=8594; UPDATE t2 SET b=91322 WHERE a=8595; UPDATE t2 SET b=99411 WHERE a=8596; UPDATE t2 SET b=66753 WHERE a=8597; UPDATE t2 SET b=63012 WHERE a=8598; UPDATE t2 SET b=24859 WHERE a=8599; UPDATE t2 SET b=44251 WHERE a=8600; UPDATE t2 SET b=62474 WHERE a=8601; UPDATE t2 SET b=94589 WHERE a=8602; UPDATE t2 SET b=4135 WHERE a=8603; UPDATE t2 SET b=11010 WHERE a=8604; UPDATE t2 SET b=49942 WHERE a=8605; UPDATE t2 SET b=49943 WHERE a=8606; UPDATE t2 SET b=53042 WHERE a=8607; UPDATE t2 SET b=41062 WHERE a=8608; UPDATE t2 SET b=28478 WHERE a=8609; UPDATE t2 SET b=44792 WHERE a=8610; UPDATE t2 SET b=939 WHERE a=8611; UPDATE t2 SET b=65882 WHERE a=8612; UPDATE t2 SET b=13546 WHERE a=8613; UPDATE t2 SET b=25280 WHERE a=8614; UPDATE t2 SET b=33144 WHERE a=8615; UPDATE t2 SET b=1039 WHERE a=8616; UPDATE t2 SET b=33506 WHERE a=8617; UPDATE t2 SET b=50173 WHERE a=8618; UPDATE t2 SET b=53764 WHERE a=8619; UPDATE t2 SET b=79754 WHERE a=8620; UPDATE t2 SET b=68055 WHERE a=8621; UPDATE t2 SET b=93226 WHERE a=8622; UPDATE t2 SET b=99111 WHERE a=8623; UPDATE t2 SET b=84378 WHERE a=8624; UPDATE t2 SET b=2520 WHERE a=8625; UPDATE t2 SET b=64422 WHERE a=8626; UPDATE t2 SET b=11706 WHERE a=8627; UPDATE t2 SET b=73649 WHERE a=8628; UPDATE t2 SET b=6007 WHERE a=8629; UPDATE t2 SET b=7218 WHERE a=8630; UPDATE t2 SET b=72984 WHERE a=8631; UPDATE t2 SET b=62652 WHERE a=8632; UPDATE t2 SET b=77641 WHERE a=8633; UPDATE t2 SET b=66808 WHERE a=8634; UPDATE t2 SET b=51769 WHERE a=8635; UPDATE t2 SET b=18279 WHERE a=8636; UPDATE t2 SET b=68398 WHERE a=8637; UPDATE t2 SET b=46109 WHERE a=8638; UPDATE t2 SET b=36755 WHERE a=8639; UPDATE t2 SET b=54456 WHERE a=8640; UPDATE t2 SET b=79142 WHERE a=8641; UPDATE t2 SET b=16437 WHERE a=8642; UPDATE t2 SET b=13465 WHERE a=8643; UPDATE t2 SET b=73879 WHERE a=8644; UPDATE t2 SET b=49337 WHERE a=8645; UPDATE t2 SET b=33882 WHERE a=8646; UPDATE t2 SET b=78402 WHERE a=8647; UPDATE t2 SET b=57601 WHERE a=8648; UPDATE t2 SET b=79801 WHERE a=8649; UPDATE t2 SET b=50623 WHERE a=8650; UPDATE t2 SET b=20186 WHERE a=8651; UPDATE t2 SET b=26110 WHERE a=8652; UPDATE t2 SET b=76868 WHERE a=8653; UPDATE t2 SET b=66810 WHERE a=8654; UPDATE t2 SET b=37076 WHERE a=8655; UPDATE t2 SET b=96615 WHERE a=8656; UPDATE t2 SET b=71156 WHERE a=8657; UPDATE t2 SET b=79916 WHERE a=8658; UPDATE t2 SET b=88174 WHERE a=8659; UPDATE t2 SET b=30389 WHERE a=8660; UPDATE t2 SET b=26047 WHERE a=8661; UPDATE t2 SET b=62239 WHERE a=8662; UPDATE t2 SET b=5015 WHERE a=8663; UPDATE t2 SET b=261 WHERE a=8664; UPDATE t2 SET b=49655 WHERE a=8665; UPDATE t2 SET b=47106 WHERE a=8666; UPDATE t2 SET b=31370 WHERE a=8667; UPDATE t2 SET b=73147 WHERE a=8668; UPDATE t2 SET b=37607 WHERE a=8669; UPDATE t2 SET b=16328 WHERE a=8670; UPDATE t2 SET b=46111 WHERE a=8671; UPDATE t2 SET b=46343 WHERE a=8672; UPDATE t2 SET b=6042 WHERE a=8673; UPDATE t2 SET b=88067 WHERE a=8674; UPDATE t2 SET b=18154 WHERE a=8675; UPDATE t2 SET b=68019 WHERE a=8676; UPDATE t2 SET b=8724 WHERE a=8677; UPDATE t2 SET b=96665 WHERE a=8678; UPDATE t2 SET b=82528 WHERE a=8679; UPDATE t2 SET b=61282 WHERE a=8680; UPDATE t2 SET b=81651 WHERE a=8681; UPDATE t2 SET b=37846 WHERE a=8682; UPDATE t2 SET b=63464 WHERE a=8683; UPDATE t2 SET b=54918 WHERE a=8684; UPDATE t2 SET b=81083 WHERE a=8685; UPDATE t2 SET b=10005 WHERE a=8686; UPDATE t2 SET b=17815 WHERE a=8687; UPDATE t2 SET b=77420 WHERE a=8688; UPDATE t2 SET b=34567 WHERE a=8689; UPDATE t2 SET b=69327 WHERE a=8690; UPDATE t2 SET b=39972 WHERE a=8691; UPDATE t2 SET b=60348 WHERE a=8692; UPDATE t2 SET b=59710 WHERE a=8693; UPDATE t2 SET b=49094 WHERE a=8694; UPDATE t2 SET b=69171 WHERE a=8695; UPDATE t2 SET b=82127 WHERE a=8696; UPDATE t2 SET b=53007 WHERE a=8697; UPDATE t2 SET b=3537 WHERE a=8698; UPDATE t2 SET b=34530 WHERE a=8699; UPDATE t2 SET b=5201 WHERE a=8700; UPDATE t2 SET b=98242 WHERE a=8701; UPDATE t2 SET b=25825 WHERE a=8702; UPDATE t2 SET b=26907 WHERE a=8703; UPDATE t2 SET b=14590 WHERE a=8704; UPDATE t2 SET b=12540 WHERE a=8705; UPDATE t2 SET b=20698 WHERE a=8706; UPDATE t2 SET b=38217 WHERE a=8707; UPDATE t2 SET b=15592 WHERE a=8708; UPDATE t2 SET b=201 WHERE a=8709; UPDATE t2 SET b=7936 WHERE a=8710; UPDATE t2 SET b=54978 WHERE a=8711; UPDATE t2 SET b=53030 WHERE a=8712; UPDATE t2 SET b=10140 WHERE a=8713; UPDATE t2 SET b=9702 WHERE a=8714; UPDATE t2 SET b=27584 WHERE a=8715; UPDATE t2 SET b=13078 WHERE a=8716; UPDATE t2 SET b=56193 WHERE a=8717; UPDATE t2 SET b=23676 WHERE a=8718; UPDATE t2 SET b=82429 WHERE a=8719; UPDATE t2 SET b=16651 WHERE a=8720; UPDATE t2 SET b=88167 WHERE a=8721; UPDATE t2 SET b=45218 WHERE a=8722; UPDATE t2 SET b=52150 WHERE a=8723; UPDATE t2 SET b=71773 WHERE a=8724; UPDATE t2 SET b=51680 WHERE a=8725; UPDATE t2 SET b=80797 WHERE a=8726; UPDATE t2 SET b=61110 WHERE a=8727; UPDATE t2 SET b=42892 WHERE a=8728; UPDATE t2 SET b=19833 WHERE a=8729; UPDATE t2 SET b=45058 WHERE a=8730; UPDATE t2 SET b=12202 WHERE a=8731; UPDATE t2 SET b=51058 WHERE a=8732; UPDATE t2 SET b=34205 WHERE a=8733; UPDATE t2 SET b=7697 WHERE a=8734; UPDATE t2 SET b=78201 WHERE a=8735; UPDATE t2 SET b=77890 WHERE a=8736; UPDATE t2 SET b=39948 WHERE a=8737; UPDATE t2 SET b=93174 WHERE a=8738; UPDATE t2 SET b=77657 WHERE a=8739; UPDATE t2 SET b=14460 WHERE a=8740; UPDATE t2 SET b=59709 WHERE a=8741; UPDATE t2 SET b=38420 WHERE a=8742; UPDATE t2 SET b=47500 WHERE a=8743; UPDATE t2 SET b=78250 WHERE a=8744; UPDATE t2 SET b=31939 WHERE a=8745; UPDATE t2 SET b=65240 WHERE a=8746; UPDATE t2 SET b=16160 WHERE a=8747; UPDATE t2 SET b=26161 WHERE a=8748; UPDATE t2 SET b=89368 WHERE a=8749; UPDATE t2 SET b=79315 WHERE a=8750; UPDATE t2 SET b=55250 WHERE a=8751; UPDATE t2 SET b=26421 WHERE a=8752; UPDATE t2 SET b=41326 WHERE a=8753; UPDATE t2 SET b=45139 WHERE a=8754; UPDATE t2 SET b=30934 WHERE a=8755; UPDATE t2 SET b=10506 WHERE a=8756; UPDATE t2 SET b=52538 WHERE a=8757; UPDATE t2 SET b=96900 WHERE a=8758; UPDATE t2 SET b=89249 WHERE a=8759; UPDATE t2 SET b=72585 WHERE a=8760; UPDATE t2 SET b=41835 WHERE a=8761; UPDATE t2 SET b=11085 WHERE a=8762; UPDATE t2 SET b=60771 WHERE a=8763; UPDATE t2 SET b=66723 WHERE a=8764; UPDATE t2 SET b=92891 WHERE a=8765; UPDATE t2 SET b=36305 WHERE a=8766; UPDATE t2 SET b=71913 WHERE a=8767; UPDATE t2 SET b=67565 WHERE a=8768; UPDATE t2 SET b=53404 WHERE a=8769; UPDATE t2 SET b=23421 WHERE a=8770; UPDATE t2 SET b=10072 WHERE a=8771; UPDATE t2 SET b=34863 WHERE a=8772; UPDATE t2 SET b=45433 WHERE a=8773; UPDATE t2 SET b=51991 WHERE a=8774; UPDATE t2 SET b=86973 WHERE a=8775; UPDATE t2 SET b=12661 WHERE a=8776; UPDATE t2 SET b=36000 WHERE a=8777; UPDATE t2 SET b=93456 WHERE a=8778; UPDATE t2 SET b=14881 WHERE a=8779; UPDATE t2 SET b=66846 WHERE a=8780; UPDATE t2 SET b=22429 WHERE a=8781; UPDATE t2 SET b=27358 WHERE a=8782; UPDATE t2 SET b=37612 WHERE a=8783; UPDATE t2 SET b=19490 WHERE a=8784; UPDATE t2 SET b=74548 WHERE a=8785; UPDATE t2 SET b=79999 WHERE a=8786; UPDATE t2 SET b=53185 WHERE a=8787; UPDATE t2 SET b=14200 WHERE a=8788; UPDATE t2 SET b=90594 WHERE a=8789; UPDATE t2 SET b=97838 WHERE a=8790; UPDATE t2 SET b=26036 WHERE a=8791; UPDATE t2 SET b=61973 WHERE a=8792; UPDATE t2 SET b=23442 WHERE a=8793; UPDATE t2 SET b=61550 WHERE a=8794; UPDATE t2 SET b=70616 WHERE a=8795; UPDATE t2 SET b=32674 WHERE a=8796; UPDATE t2 SET b=67804 WHERE a=8797; UPDATE t2 SET b=63229 WHERE a=8798; UPDATE t2 SET b=74744 WHERE a=8799; UPDATE t2 SET b=87769 WHERE a=8800; UPDATE t2 SET b=30992 WHERE a=8801; UPDATE t2 SET b=30790 WHERE a=8802; UPDATE t2 SET b=54660 WHERE a=8803; UPDATE t2 SET b=29078 WHERE a=8804; UPDATE t2 SET b=1258 WHERE a=8805; UPDATE t2 SET b=37008 WHERE a=8806; UPDATE t2 SET b=33339 WHERE a=8807; UPDATE t2 SET b=71060 WHERE a=8808; UPDATE t2 SET b=81724 WHERE a=8809; UPDATE t2 SET b=91275 WHERE a=8810; UPDATE t2 SET b=14262 WHERE a=8811; UPDATE t2 SET b=29506 WHERE a=8812; UPDATE t2 SET b=60397 WHERE a=8813; UPDATE t2 SET b=22580 WHERE a=8814; UPDATE t2 SET b=88097 WHERE a=8815; UPDATE t2 SET b=66463 WHERE a=8816; UPDATE t2 SET b=12787 WHERE a=8817; UPDATE t2 SET b=75170 WHERE a=8818; UPDATE t2 SET b=49504 WHERE a=8819; UPDATE t2 SET b=73215 WHERE a=8820; UPDATE t2 SET b=81275 WHERE a=8821; UPDATE t2 SET b=63432 WHERE a=8822; UPDATE t2 SET b=58941 WHERE a=8823; UPDATE t2 SET b=1412 WHERE a=8824; UPDATE t2 SET b=99325 WHERE a=8825; UPDATE t2 SET b=53788 WHERE a=8826; UPDATE t2 SET b=89730 WHERE a=8827; UPDATE t2 SET b=55200 WHERE a=8828; UPDATE t2 SET b=35686 WHERE a=8829; UPDATE t2 SET b=47644 WHERE a=8830; UPDATE t2 SET b=20461 WHERE a=8831; UPDATE t2 SET b=36865 WHERE a=8832; UPDATE t2 SET b=39302 WHERE a=8833; UPDATE t2 SET b=8378 WHERE a=8834; UPDATE t2 SET b=11282 WHERE a=8835; UPDATE t2 SET b=61649 WHERE a=8836; UPDATE t2 SET b=65556 WHERE a=8837; UPDATE t2 SET b=90413 WHERE a=8838; UPDATE t2 SET b=83277 WHERE a=8839; UPDATE t2 SET b=42205 WHERE a=8840; UPDATE t2 SET b=26043 WHERE a=8841; UPDATE t2 SET b=25262 WHERE a=8842; UPDATE t2 SET b=56412 WHERE a=8843; UPDATE t2 SET b=74887 WHERE a=8844; UPDATE t2 SET b=64090 WHERE a=8845; UPDATE t2 SET b=42353 WHERE a=8846; UPDATE t2 SET b=71918 WHERE a=8847; UPDATE t2 SET b=17318 WHERE a=8848; UPDATE t2 SET b=47722 WHERE a=8849; UPDATE t2 SET b=55062 WHERE a=8850; UPDATE t2 SET b=29344 WHERE a=8851; UPDATE t2 SET b=19566 WHERE a=8852; UPDATE t2 SET b=60298 WHERE a=8853; UPDATE t2 SET b=58692 WHERE a=8854; UPDATE t2 SET b=97789 WHERE a=8855; UPDATE t2 SET b=43184 WHERE a=8856; UPDATE t2 SET b=45028 WHERE a=8857; UPDATE t2 SET b=20564 WHERE a=8858; UPDATE t2 SET b=77389 WHERE a=8859; UPDATE t2 SET b=23193 WHERE a=8860; UPDATE t2 SET b=63919 WHERE a=8861; UPDATE t2 SET b=61038 WHERE a=8862; UPDATE t2 SET b=77343 WHERE a=8863; UPDATE t2 SET b=90434 WHERE a=8864; UPDATE t2 SET b=70224 WHERE a=8865; UPDATE t2 SET b=88810 WHERE a=8866; UPDATE t2 SET b=56163 WHERE a=8867; UPDATE t2 SET b=53030 WHERE a=8868; UPDATE t2 SET b=4615 WHERE a=8869; UPDATE t2 SET b=90565 WHERE a=8870; UPDATE t2 SET b=9368 WHERE a=8871; UPDATE t2 SET b=35004 WHERE a=8872; UPDATE t2 SET b=60913 WHERE a=8873; UPDATE t2 SET b=48870 WHERE a=8874; UPDATE t2 SET b=35479 WHERE a=8875; UPDATE t2 SET b=36368 WHERE a=8876; UPDATE t2 SET b=62923 WHERE a=8877; UPDATE t2 SET b=92587 WHERE a=8878; UPDATE t2 SET b=24426 WHERE a=8879; UPDATE t2 SET b=16663 WHERE a=8880; UPDATE t2 SET b=40563 WHERE a=8881; UPDATE t2 SET b=79374 WHERE a=8882; UPDATE t2 SET b=75663 WHERE a=8883; UPDATE t2 SET b=48184 WHERE a=8884; UPDATE t2 SET b=81822 WHERE a=8885; UPDATE t2 SET b=85803 WHERE a=8886; UPDATE t2 SET b=24903 WHERE a=8887; UPDATE t2 SET b=19785 WHERE a=8888; UPDATE t2 SET b=55522 WHERE a=8889; UPDATE t2 SET b=35714 WHERE a=8890; UPDATE t2 SET b=58355 WHERE a=8891; UPDATE t2 SET b=79565 WHERE a=8892; UPDATE t2 SET b=75213 WHERE a=8893; UPDATE t2 SET b=30230 WHERE a=8894; UPDATE t2 SET b=99607 WHERE a=8895; UPDATE t2 SET b=43167 WHERE a=8896; UPDATE t2 SET b=64071 WHERE a=8897; UPDATE t2 SET b=67765 WHERE a=8898; UPDATE t2 SET b=56407 WHERE a=8899; UPDATE t2 SET b=60230 WHERE a=8900; UPDATE t2 SET b=3767 WHERE a=8901; UPDATE t2 SET b=88412 WHERE a=8902; UPDATE t2 SET b=32135 WHERE a=8903; UPDATE t2 SET b=56275 WHERE a=8904; UPDATE t2 SET b=7151 WHERE a=8905; UPDATE t2 SET b=40358 WHERE a=8906; UPDATE t2 SET b=80262 WHERE a=8907; UPDATE t2 SET b=36614 WHERE a=8908; UPDATE t2 SET b=88591 WHERE a=8909; UPDATE t2 SET b=42912 WHERE a=8910; UPDATE t2 SET b=17814 WHERE a=8911; UPDATE t2 SET b=84148 WHERE a=8912; UPDATE t2 SET b=26128 WHERE a=8913; UPDATE t2 SET b=64669 WHERE a=8914; UPDATE t2 SET b=19650 WHERE a=8915; UPDATE t2 SET b=84935 WHERE a=8916; UPDATE t2 SET b=84761 WHERE a=8917; UPDATE t2 SET b=10474 WHERE a=8918; UPDATE t2 SET b=68499 WHERE a=8919; UPDATE t2 SET b=16624 WHERE a=8920; UPDATE t2 SET b=26426 WHERE a=8921; UPDATE t2 SET b=28791 WHERE a=8922; UPDATE t2 SET b=67869 WHERE a=8923; UPDATE t2 SET b=53182 WHERE a=8924; UPDATE t2 SET b=54089 WHERE a=8925; UPDATE t2 SET b=87558 WHERE a=8926; UPDATE t2 SET b=88754 WHERE a=8927; UPDATE t2 SET b=65868 WHERE a=8928; UPDATE t2 SET b=93719 WHERE a=8929; UPDATE t2 SET b=91828 WHERE a=8930; UPDATE t2 SET b=61168 WHERE a=8931; UPDATE t2 SET b=75540 WHERE a=8932; UPDATE t2 SET b=71015 WHERE a=8933; UPDATE t2 SET b=41473 WHERE a=8934; UPDATE t2 SET b=46845 WHERE a=8935; UPDATE t2 SET b=88422 WHERE a=8936; UPDATE t2 SET b=29958 WHERE a=8937; UPDATE t2 SET b=32508 WHERE a=8938; UPDATE t2 SET b=88514 WHERE a=8939; UPDATE t2 SET b=1012 WHERE a=8940; UPDATE t2 SET b=12926 WHERE a=8941; UPDATE t2 SET b=2211 WHERE a=8942; UPDATE t2 SET b=23540 WHERE a=8943; UPDATE t2 SET b=3566 WHERE a=8944; UPDATE t2 SET b=3227 WHERE a=8945; UPDATE t2 SET b=22780 WHERE a=8946; UPDATE t2 SET b=63210 WHERE a=8947; UPDATE t2 SET b=45920 WHERE a=8948; UPDATE t2 SET b=90378 WHERE a=8949; UPDATE t2 SET b=32962 WHERE a=8950; UPDATE t2 SET b=32614 WHERE a=8951; UPDATE t2 SET b=70918 WHERE a=8952; UPDATE t2 SET b=17079 WHERE a=8953; UPDATE t2 SET b=94800 WHERE a=8954; UPDATE t2 SET b=59815 WHERE a=8955; UPDATE t2 SET b=7349 WHERE a=8956; UPDATE t2 SET b=24848 WHERE a=8957; UPDATE t2 SET b=284 WHERE a=8958; UPDATE t2 SET b=93400 WHERE a=8959; UPDATE t2 SET b=75385 WHERE a=8960; UPDATE t2 SET b=79622 WHERE a=8961; UPDATE t2 SET b=68323 WHERE a=8962; UPDATE t2 SET b=61463 WHERE a=8963; UPDATE t2 SET b=70693 WHERE a=8964; UPDATE t2 SET b=39257 WHERE a=8965; UPDATE t2 SET b=71321 WHERE a=8966; UPDATE t2 SET b=84692 WHERE a=8967; UPDATE t2 SET b=46942 WHERE a=8968; UPDATE t2 SET b=3719 WHERE a=8969; UPDATE t2 SET b=81904 WHERE a=8970; UPDATE t2 SET b=9225 WHERE a=8971; UPDATE t2 SET b=95092 WHERE a=8972; UPDATE t2 SET b=71880 WHERE a=8973; UPDATE t2 SET b=37075 WHERE a=8974; UPDATE t2 SET b=64211 WHERE a=8975; UPDATE t2 SET b=36425 WHERE a=8976; UPDATE t2 SET b=3447 WHERE a=8977; UPDATE t2 SET b=67887 WHERE a=8978; UPDATE t2 SET b=67950 WHERE a=8979; UPDATE t2 SET b=16765 WHERE a=8980; UPDATE t2 SET b=39565 WHERE a=8981; UPDATE t2 SET b=46218 WHERE a=8982; UPDATE t2 SET b=66468 WHERE a=8983; UPDATE t2 SET b=76695 WHERE a=8984; UPDATE t2 SET b=42404 WHERE a=8985; UPDATE t2 SET b=11240 WHERE a=8986; UPDATE t2 SET b=42384 WHERE a=8987; UPDATE t2 SET b=29156 WHERE a=8988; UPDATE t2 SET b=9640 WHERE a=8989; UPDATE t2 SET b=39356 WHERE a=8990; UPDATE t2 SET b=68026 WHERE a=8991; UPDATE t2 SET b=39526 WHERE a=8992; UPDATE t2 SET b=82068 WHERE a=8993; UPDATE t2 SET b=59542 WHERE a=8994; UPDATE t2 SET b=99711 WHERE a=8995; UPDATE t2 SET b=65695 WHERE a=8996; UPDATE t2 SET b=28818 WHERE a=8997; UPDATE t2 SET b=57798 WHERE a=8998; UPDATE t2 SET b=143 WHERE a=8999; UPDATE t2 SET b=85695 WHERE a=9000; UPDATE t2 SET b=28956 WHERE a=9001; UPDATE t2 SET b=50856 WHERE a=9002; UPDATE t2 SET b=56157 WHERE a=9003; UPDATE t2 SET b=55745 WHERE a=9004; UPDATE t2 SET b=14991 WHERE a=9005; UPDATE t2 SET b=56840 WHERE a=9006; UPDATE t2 SET b=63120 WHERE a=9007; UPDATE t2 SET b=62378 WHERE a=9008; UPDATE t2 SET b=43949 WHERE a=9009; UPDATE t2 SET b=73899 WHERE a=9010; UPDATE t2 SET b=26931 WHERE a=9011; UPDATE t2 SET b=5080 WHERE a=9012; UPDATE t2 SET b=14180 WHERE a=9013; UPDATE t2 SET b=2385 WHERE a=9014; UPDATE t2 SET b=49203 WHERE a=9015; UPDATE t2 SET b=53453 WHERE a=9016; UPDATE t2 SET b=55918 WHERE a=9017; UPDATE t2 SET b=73691 WHERE a=9018; UPDATE t2 SET b=7596 WHERE a=9019; UPDATE t2 SET b=84106 WHERE a=9020; UPDATE t2 SET b=76281 WHERE a=9021; UPDATE t2 SET b=33772 WHERE a=9022; UPDATE t2 SET b=4101 WHERE a=9023; UPDATE t2 SET b=74172 WHERE a=9024; UPDATE t2 SET b=51800 WHERE a=9025; UPDATE t2 SET b=27050 WHERE a=9026; UPDATE t2 SET b=25558 WHERE a=9027; UPDATE t2 SET b=56119 WHERE a=9028; UPDATE t2 SET b=62271 WHERE a=9029; UPDATE t2 SET b=36360 WHERE a=9030; UPDATE t2 SET b=65677 WHERE a=9031; UPDATE t2 SET b=5617 WHERE a=9032; UPDATE t2 SET b=40407 WHERE a=9033; UPDATE t2 SET b=47132 WHERE a=9034; UPDATE t2 SET b=92380 WHERE a=9035; UPDATE t2 SET b=84199 WHERE a=9036; UPDATE t2 SET b=90911 WHERE a=9037; UPDATE t2 SET b=69126 WHERE a=9038; UPDATE t2 SET b=65806 WHERE a=9039; UPDATE t2 SET b=53483 WHERE a=9040; UPDATE t2 SET b=85919 WHERE a=9041; UPDATE t2 SET b=73843 WHERE a=9042; UPDATE t2 SET b=51525 WHERE a=9043; UPDATE t2 SET b=41544 WHERE a=9044; UPDATE t2 SET b=48335 WHERE a=9045; UPDATE t2 SET b=92128 WHERE a=9046; UPDATE t2 SET b=85510 WHERE a=9047; UPDATE t2 SET b=98390 WHERE a=9048; UPDATE t2 SET b=97446 WHERE a=9049; UPDATE t2 SET b=17667 WHERE a=9050; UPDATE t2 SET b=75505 WHERE a=9051; UPDATE t2 SET b=19604 WHERE a=9052; UPDATE t2 SET b=89403 WHERE a=9053; UPDATE t2 SET b=63637 WHERE a=9054; UPDATE t2 SET b=46123 WHERE a=9055; UPDATE t2 SET b=64869 WHERE a=9056; UPDATE t2 SET b=49529 WHERE a=9057; UPDATE t2 SET b=99733 WHERE a=9058; UPDATE t2 SET b=78934 WHERE a=9059; UPDATE t2 SET b=51978 WHERE a=9060; UPDATE t2 SET b=55872 WHERE a=9061; UPDATE t2 SET b=51993 WHERE a=9062; UPDATE t2 SET b=1356 WHERE a=9063; UPDATE t2 SET b=57532 WHERE a=9064; UPDATE t2 SET b=81446 WHERE a=9065; UPDATE t2 SET b=32997 WHERE a=9066; UPDATE t2 SET b=86504 WHERE a=9067; UPDATE t2 SET b=89988 WHERE a=9068; UPDATE t2 SET b=40130 WHERE a=9069; UPDATE t2 SET b=24531 WHERE a=9070; UPDATE t2 SET b=62926 WHERE a=9071; UPDATE t2 SET b=78019 WHERE a=9072; UPDATE t2 SET b=14653 WHERE a=9073; UPDATE t2 SET b=34576 WHERE a=9074; UPDATE t2 SET b=15396 WHERE a=9075; UPDATE t2 SET b=39775 WHERE a=9076; UPDATE t2 SET b=93832 WHERE a=9077; UPDATE t2 SET b=33497 WHERE a=9078; UPDATE t2 SET b=20362 WHERE a=9079; UPDATE t2 SET b=74540 WHERE a=9080; UPDATE t2 SET b=22878 WHERE a=9081; UPDATE t2 SET b=21830 WHERE a=9082; UPDATE t2 SET b=43060 WHERE a=9083; UPDATE t2 SET b=94012 WHERE a=9084; UPDATE t2 SET b=31140 WHERE a=9085; UPDATE t2 SET b=89605 WHERE a=9086; UPDATE t2 SET b=3306 WHERE a=9087; UPDATE t2 SET b=6354 WHERE a=9088; UPDATE t2 SET b=82170 WHERE a=9089; UPDATE t2 SET b=16715 WHERE a=9090; UPDATE t2 SET b=59267 WHERE a=9091; UPDATE t2 SET b=91537 WHERE a=9092; UPDATE t2 SET b=94033 WHERE a=9093; UPDATE t2 SET b=60883 WHERE a=9094; UPDATE t2 SET b=1139 WHERE a=9095; UPDATE t2 SET b=84499 WHERE a=9096; UPDATE t2 SET b=66089 WHERE a=9097; UPDATE t2 SET b=28375 WHERE a=9098; UPDATE t2 SET b=67176 WHERE a=9099; UPDATE t2 SET b=24417 WHERE a=9100; UPDATE t2 SET b=14400 WHERE a=9101; UPDATE t2 SET b=84057 WHERE a=9102; UPDATE t2 SET b=31416 WHERE a=9103; UPDATE t2 SET b=73396 WHERE a=9104; UPDATE t2 SET b=39272 WHERE a=9105; UPDATE t2 SET b=1565 WHERE a=9106; UPDATE t2 SET b=80071 WHERE a=9107; UPDATE t2 SET b=29001 WHERE a=9108; UPDATE t2 SET b=5626 WHERE a=9109; UPDATE t2 SET b=98147 WHERE a=9110; UPDATE t2 SET b=24302 WHERE a=9111; UPDATE t2 SET b=25099 WHERE a=9112; UPDATE t2 SET b=64784 WHERE a=9113; UPDATE t2 SET b=9284 WHERE a=9114; UPDATE t2 SET b=16211 WHERE a=9115; UPDATE t2 SET b=88900 WHERE a=9116; UPDATE t2 SET b=41320 WHERE a=9117; UPDATE t2 SET b=8737 WHERE a=9118; UPDATE t2 SET b=15794 WHERE a=9119; UPDATE t2 SET b=43596 WHERE a=9120; UPDATE t2 SET b=46774 WHERE a=9121; UPDATE t2 SET b=24734 WHERE a=9122; UPDATE t2 SET b=44876 WHERE a=9123; UPDATE t2 SET b=63473 WHERE a=9124; UPDATE t2 SET b=73124 WHERE a=9125; UPDATE t2 SET b=98134 WHERE a=9126; UPDATE t2 SET b=36864 WHERE a=9127; UPDATE t2 SET b=69003 WHERE a=9128; UPDATE t2 SET b=18152 WHERE a=9129; UPDATE t2 SET b=34110 WHERE a=9130; UPDATE t2 SET b=98555 WHERE a=9131; UPDATE t2 SET b=25428 WHERE a=9132; UPDATE t2 SET b=63534 WHERE a=9133; UPDATE t2 SET b=62752 WHERE a=9134; UPDATE t2 SET b=58993 WHERE a=9135; UPDATE t2 SET b=79226 WHERE a=9136; UPDATE t2 SET b=39070 WHERE a=9137; UPDATE t2 SET b=77688 WHERE a=9138; UPDATE t2 SET b=92611 WHERE a=9139; UPDATE t2 SET b=9087 WHERE a=9140; UPDATE t2 SET b=72580 WHERE a=9141; UPDATE t2 SET b=62770 WHERE a=9142; UPDATE t2 SET b=80555 WHERE a=9143; UPDATE t2 SET b=12169 WHERE a=9144; UPDATE t2 SET b=27291 WHERE a=9145; UPDATE t2 SET b=52106 WHERE a=9146; UPDATE t2 SET b=85078 WHERE a=9147; UPDATE t2 SET b=34778 WHERE a=9148; UPDATE t2 SET b=50687 WHERE a=9149; UPDATE t2 SET b=78661 WHERE a=9150; UPDATE t2 SET b=15566 WHERE a=9151; UPDATE t2 SET b=17373 WHERE a=9152; UPDATE t2 SET b=76621 WHERE a=9153; UPDATE t2 SET b=18500 WHERE a=9154; UPDATE t2 SET b=85396 WHERE a=9155; UPDATE t2 SET b=19231 WHERE a=9156; UPDATE t2 SET b=97758 WHERE a=9157; UPDATE t2 SET b=75217 WHERE a=9158; UPDATE t2 SET b=96887 WHERE a=9159; UPDATE t2 SET b=85819 WHERE a=9160; UPDATE t2 SET b=6823 WHERE a=9161; UPDATE t2 SET b=86880 WHERE a=9162; UPDATE t2 SET b=98338 WHERE a=9163; UPDATE t2 SET b=43672 WHERE a=9164; UPDATE t2 SET b=1375 WHERE a=9165; UPDATE t2 SET b=82815 WHERE a=9166; UPDATE t2 SET b=18333 WHERE a=9167; UPDATE t2 SET b=41122 WHERE a=9168; UPDATE t2 SET b=28275 WHERE a=9169; UPDATE t2 SET b=34833 WHERE a=9170; UPDATE t2 SET b=39370 WHERE a=9171; UPDATE t2 SET b=8148 WHERE a=9172; UPDATE t2 SET b=3707 WHERE a=9173; UPDATE t2 SET b=34414 WHERE a=9174; UPDATE t2 SET b=62403 WHERE a=9175; UPDATE t2 SET b=96886 WHERE a=9176; UPDATE t2 SET b=85000 WHERE a=9177; UPDATE t2 SET b=6177 WHERE a=9178; UPDATE t2 SET b=9248 WHERE a=9179; UPDATE t2 SET b=81476 WHERE a=9180; UPDATE t2 SET b=33303 WHERE a=9181; UPDATE t2 SET b=96791 WHERE a=9182; UPDATE t2 SET b=75832 WHERE a=9183; UPDATE t2 SET b=33974 WHERE a=9184; UPDATE t2 SET b=95923 WHERE a=9185; UPDATE t2 SET b=1088 WHERE a=9186; UPDATE t2 SET b=57494 WHERE a=9187; UPDATE t2 SET b=14377 WHERE a=9188; UPDATE t2 SET b=16111 WHERE a=9189; UPDATE t2 SET b=9383 WHERE a=9190; UPDATE t2 SET b=60647 WHERE a=9191; UPDATE t2 SET b=62727 WHERE a=9192; UPDATE t2 SET b=84598 WHERE a=9193; UPDATE t2 SET b=95215 WHERE a=9194; UPDATE t2 SET b=74357 WHERE a=9195; UPDATE t2 SET b=58005 WHERE a=9196; UPDATE t2 SET b=57333 WHERE a=9197; UPDATE t2 SET b=48310 WHERE a=9198; UPDATE t2 SET b=92105 WHERE a=9199; UPDATE t2 SET b=90566 WHERE a=9200; UPDATE t2 SET b=57107 WHERE a=9201; UPDATE t2 SET b=30644 WHERE a=9202; UPDATE t2 SET b=47638 WHERE a=9203; UPDATE t2 SET b=12955 WHERE a=9204; UPDATE t2 SET b=81011 WHERE a=9205; UPDATE t2 SET b=90084 WHERE a=9206; UPDATE t2 SET b=5959 WHERE a=9207; UPDATE t2 SET b=90863 WHERE a=9208; UPDATE t2 SET b=16935 WHERE a=9209; UPDATE t2 SET b=85296 WHERE a=9210; UPDATE t2 SET b=84490 WHERE a=9211; UPDATE t2 SET b=83403 WHERE a=9212; UPDATE t2 SET b=17008 WHERE a=9213; UPDATE t2 SET b=60989 WHERE a=9214; UPDATE t2 SET b=79806 WHERE a=9215; UPDATE t2 SET b=2466 WHERE a=9216; UPDATE t2 SET b=20098 WHERE a=9217; UPDATE t2 SET b=16337 WHERE a=9218; UPDATE t2 SET b=2423 WHERE a=9219; UPDATE t2 SET b=34887 WHERE a=9220; UPDATE t2 SET b=19341 WHERE a=9221; UPDATE t2 SET b=94732 WHERE a=9222; UPDATE t2 SET b=64335 WHERE a=9223; UPDATE t2 SET b=45911 WHERE a=9224; UPDATE t2 SET b=92742 WHERE a=9225; UPDATE t2 SET b=91298 WHERE a=9226; UPDATE t2 SET b=99813 WHERE a=9227; UPDATE t2 SET b=21023 WHERE a=9228; UPDATE t2 SET b=6519 WHERE a=9229; UPDATE t2 SET b=40052 WHERE a=9230; UPDATE t2 SET b=66458 WHERE a=9231; UPDATE t2 SET b=46365 WHERE a=9232; UPDATE t2 SET b=15793 WHERE a=9233; UPDATE t2 SET b=18725 WHERE a=9234; UPDATE t2 SET b=52721 WHERE a=9235; UPDATE t2 SET b=33029 WHERE a=9236; UPDATE t2 SET b=73300 WHERE a=9237; UPDATE t2 SET b=87923 WHERE a=9238; UPDATE t2 SET b=44238 WHERE a=9239; UPDATE t2 SET b=74870 WHERE a=9240; UPDATE t2 SET b=37299 WHERE a=9241; UPDATE t2 SET b=46619 WHERE a=9242; UPDATE t2 SET b=16267 WHERE a=9243; UPDATE t2 SET b=50348 WHERE a=9244; UPDATE t2 SET b=99642 WHERE a=9245; UPDATE t2 SET b=34927 WHERE a=9246; UPDATE t2 SET b=50027 WHERE a=9247; UPDATE t2 SET b=25823 WHERE a=9248; UPDATE t2 SET b=36501 WHERE a=9249; UPDATE t2 SET b=41023 WHERE a=9250; UPDATE t2 SET b=53296 WHERE a=9251; UPDATE t2 SET b=85236 WHERE a=9252; UPDATE t2 SET b=54575 WHERE a=9253; UPDATE t2 SET b=13527 WHERE a=9254; UPDATE t2 SET b=14992 WHERE a=9255; UPDATE t2 SET b=83873 WHERE a=9256; UPDATE t2 SET b=20945 WHERE a=9257; UPDATE t2 SET b=86494 WHERE a=9258; UPDATE t2 SET b=42305 WHERE a=9259; UPDATE t2 SET b=92271 WHERE a=9260; UPDATE t2 SET b=32300 WHERE a=9261; UPDATE t2 SET b=66948 WHERE a=9262; UPDATE t2 SET b=88599 WHERE a=9263; UPDATE t2 SET b=38235 WHERE a=9264; UPDATE t2 SET b=19082 WHERE a=9265; UPDATE t2 SET b=3834 WHERE a=9266; UPDATE t2 SET b=83733 WHERE a=9267; UPDATE t2 SET b=7515 WHERE a=9268; UPDATE t2 SET b=80859 WHERE a=9269; UPDATE t2 SET b=27930 WHERE a=9270; UPDATE t2 SET b=32936 WHERE a=9271; UPDATE t2 SET b=7089 WHERE a=9272; UPDATE t2 SET b=9110 WHERE a=9273; UPDATE t2 SET b=41374 WHERE a=9274; UPDATE t2 SET b=52064 WHERE a=9275; UPDATE t2 SET b=6550 WHERE a=9276; UPDATE t2 SET b=61184 WHERE a=9277; UPDATE t2 SET b=93502 WHERE a=9278; UPDATE t2 SET b=74442 WHERE a=9279; UPDATE t2 SET b=28744 WHERE a=9280; UPDATE t2 SET b=7000 WHERE a=9281; UPDATE t2 SET b=69320 WHERE a=9282; UPDATE t2 SET b=1369 WHERE a=9283; UPDATE t2 SET b=73980 WHERE a=9284; UPDATE t2 SET b=57410 WHERE a=9285; UPDATE t2 SET b=56052 WHERE a=9286; UPDATE t2 SET b=1728 WHERE a=9287; UPDATE t2 SET b=66150 WHERE a=9288; UPDATE t2 SET b=52638 WHERE a=9289; UPDATE t2 SET b=65920 WHERE a=9290; UPDATE t2 SET b=81062 WHERE a=9291; UPDATE t2 SET b=68133 WHERE a=9292; UPDATE t2 SET b=37660 WHERE a=9293; UPDATE t2 SET b=28226 WHERE a=9294; UPDATE t2 SET b=95179 WHERE a=9295; UPDATE t2 SET b=30568 WHERE a=9296; UPDATE t2 SET b=78457 WHERE a=9297; UPDATE t2 SET b=47868 WHERE a=9298; UPDATE t2 SET b=40209 WHERE a=9299; UPDATE t2 SET b=92684 WHERE a=9300; UPDATE t2 SET b=90137 WHERE a=9301; UPDATE t2 SET b=13182 WHERE a=9302; UPDATE t2 SET b=94661 WHERE a=9303; UPDATE t2 SET b=77878 WHERE a=9304; UPDATE t2 SET b=12968 WHERE a=9305; UPDATE t2 SET b=10782 WHERE a=9306; UPDATE t2 SET b=75441 WHERE a=9307; UPDATE t2 SET b=2826 WHERE a=9308; UPDATE t2 SET b=39553 WHERE a=9309; UPDATE t2 SET b=19607 WHERE a=9310; UPDATE t2 SET b=23300 WHERE a=9311; UPDATE t2 SET b=22550 WHERE a=9312; UPDATE t2 SET b=6876 WHERE a=9313; UPDATE t2 SET b=64583 WHERE a=9314; UPDATE t2 SET b=82108 WHERE a=9315; UPDATE t2 SET b=29544 WHERE a=9316; UPDATE t2 SET b=99630 WHERE a=9317; UPDATE t2 SET b=28044 WHERE a=9318; UPDATE t2 SET b=4149 WHERE a=9319; UPDATE t2 SET b=56847 WHERE a=9320; UPDATE t2 SET b=6013 WHERE a=9321; UPDATE t2 SET b=27125 WHERE a=9322; UPDATE t2 SET b=35168 WHERE a=9323; UPDATE t2 SET b=72133 WHERE a=9324; UPDATE t2 SET b=14038 WHERE a=9325; UPDATE t2 SET b=125 WHERE a=9326; UPDATE t2 SET b=81663 WHERE a=9327; UPDATE t2 SET b=16750 WHERE a=9328; UPDATE t2 SET b=89000 WHERE a=9329; UPDATE t2 SET b=21129 WHERE a=9330; UPDATE t2 SET b=56115 WHERE a=9331; UPDATE t2 SET b=79243 WHERE a=9332; UPDATE t2 SET b=65490 WHERE a=9333; UPDATE t2 SET b=4833 WHERE a=9334; UPDATE t2 SET b=20420 WHERE a=9335; UPDATE t2 SET b=34470 WHERE a=9336; UPDATE t2 SET b=19820 WHERE a=9337; UPDATE t2 SET b=55884 WHERE a=9338; UPDATE t2 SET b=85928 WHERE a=9339; UPDATE t2 SET b=66479 WHERE a=9340; UPDATE t2 SET b=85219 WHERE a=9341; UPDATE t2 SET b=43647 WHERE a=9342; UPDATE t2 SET b=22770 WHERE a=9343; UPDATE t2 SET b=64320 WHERE a=9344; UPDATE t2 SET b=84644 WHERE a=9345; UPDATE t2 SET b=56538 WHERE a=9346; UPDATE t2 SET b=38611 WHERE a=9347; UPDATE t2 SET b=10472 WHERE a=9348; UPDATE t2 SET b=60447 WHERE a=9349; UPDATE t2 SET b=68108 WHERE a=9350; UPDATE t2 SET b=49901 WHERE a=9351; UPDATE t2 SET b=76862 WHERE a=9352; UPDATE t2 SET b=85462 WHERE a=9353; UPDATE t2 SET b=89011 WHERE a=9354; UPDATE t2 SET b=56618 WHERE a=9355; UPDATE t2 SET b=57756 WHERE a=9356; UPDATE t2 SET b=30437 WHERE a=9357; UPDATE t2 SET b=46032 WHERE a=9358; UPDATE t2 SET b=34467 WHERE a=9359; UPDATE t2 SET b=46066 WHERE a=9360; UPDATE t2 SET b=62616 WHERE a=9361; UPDATE t2 SET b=65257 WHERE a=9362; UPDATE t2 SET b=77735 WHERE a=9363; UPDATE t2 SET b=80021 WHERE a=9364; UPDATE t2 SET b=26954 WHERE a=9365; UPDATE t2 SET b=98446 WHERE a=9366; UPDATE t2 SET b=77357 WHERE a=9367; UPDATE t2 SET b=27965 WHERE a=9368; UPDATE t2 SET b=33420 WHERE a=9369; UPDATE t2 SET b=89172 WHERE a=9370; UPDATE t2 SET b=86437 WHERE a=9371; UPDATE t2 SET b=77258 WHERE a=9372; UPDATE t2 SET b=91396 WHERE a=9373; UPDATE t2 SET b=3879 WHERE a=9374; UPDATE t2 SET b=93646 WHERE a=9375; UPDATE t2 SET b=37246 WHERE a=9376; UPDATE t2 SET b=93509 WHERE a=9377; UPDATE t2 SET b=60735 WHERE a=9378; UPDATE t2 SET b=12620 WHERE a=9379; UPDATE t2 SET b=46311 WHERE a=9380; UPDATE t2 SET b=4759 WHERE a=9381; UPDATE t2 SET b=1918 WHERE a=9382; UPDATE t2 SET b=66188 WHERE a=9383; UPDATE t2 SET b=73050 WHERE a=9384; UPDATE t2 SET b=87988 WHERE a=9385; UPDATE t2 SET b=27180 WHERE a=9386; UPDATE t2 SET b=7847 WHERE a=9387; UPDATE t2 SET b=50668 WHERE a=9388; UPDATE t2 SET b=55243 WHERE a=9389; UPDATE t2 SET b=74120 WHERE a=9390; UPDATE t2 SET b=39616 WHERE a=9391; UPDATE t2 SET b=23773 WHERE a=9392; UPDATE t2 SET b=13551 WHERE a=9393; UPDATE t2 SET b=79509 WHERE a=9394; UPDATE t2 SET b=57218 WHERE a=9395; UPDATE t2 SET b=92079 WHERE a=9396; UPDATE t2 SET b=23716 WHERE a=9397; UPDATE t2 SET b=68572 WHERE a=9398; UPDATE t2 SET b=5806 WHERE a=9399; UPDATE t2 SET b=49001 WHERE a=9400; UPDATE t2 SET b=40541 WHERE a=9401; UPDATE t2 SET b=84649 WHERE a=9402; UPDATE t2 SET b=26690 WHERE a=9403; UPDATE t2 SET b=59705 WHERE a=9404; UPDATE t2 SET b=47608 WHERE a=9405; UPDATE t2 SET b=3970 WHERE a=9406; UPDATE t2 SET b=33060 WHERE a=9407; UPDATE t2 SET b=62433 WHERE a=9408; UPDATE t2 SET b=84196 WHERE a=9409; UPDATE t2 SET b=40372 WHERE a=9410; UPDATE t2 SET b=37698 WHERE a=9411; UPDATE t2 SET b=45428 WHERE a=9412; UPDATE t2 SET b=14478 WHERE a=9413; UPDATE t2 SET b=4935 WHERE a=9414; UPDATE t2 SET b=30197 WHERE a=9415; UPDATE t2 SET b=28404 WHERE a=9416; UPDATE t2 SET b=37602 WHERE a=9417; UPDATE t2 SET b=32651 WHERE a=9418; UPDATE t2 SET b=14047 WHERE a=9419; UPDATE t2 SET b=72873 WHERE a=9420; UPDATE t2 SET b=18333 WHERE a=9421; UPDATE t2 SET b=80442 WHERE a=9422; UPDATE t2 SET b=56775 WHERE a=9423; UPDATE t2 SET b=28612 WHERE a=9424; UPDATE t2 SET b=65771 WHERE a=9425; UPDATE t2 SET b=93801 WHERE a=9426; UPDATE t2 SET b=88702 WHERE a=9427; UPDATE t2 SET b=95873 WHERE a=9428; UPDATE t2 SET b=91965 WHERE a=9429; UPDATE t2 SET b=28279 WHERE a=9430; UPDATE t2 SET b=7654 WHERE a=9431; UPDATE t2 SET b=28586 WHERE a=9432; UPDATE t2 SET b=62426 WHERE a=9433; UPDATE t2 SET b=35204 WHERE a=9434; UPDATE t2 SET b=52820 WHERE a=9435; UPDATE t2 SET b=5771 WHERE a=9436; UPDATE t2 SET b=46072 WHERE a=9437; UPDATE t2 SET b=28920 WHERE a=9438; UPDATE t2 SET b=37974 WHERE a=9439; UPDATE t2 SET b=13299 WHERE a=9440; UPDATE t2 SET b=60196 WHERE a=9441; UPDATE t2 SET b=91023 WHERE a=9442; UPDATE t2 SET b=66444 WHERE a=9443; UPDATE t2 SET b=71181 WHERE a=9444; UPDATE t2 SET b=83761 WHERE a=9445; UPDATE t2 SET b=63618 WHERE a=9446; UPDATE t2 SET b=63665 WHERE a=9447; UPDATE t2 SET b=5844 WHERE a=9448; UPDATE t2 SET b=73908 WHERE a=9449; UPDATE t2 SET b=48764 WHERE a=9450; UPDATE t2 SET b=41918 WHERE a=9451; UPDATE t2 SET b=31422 WHERE a=9452; UPDATE t2 SET b=30862 WHERE a=9453; UPDATE t2 SET b=93 WHERE a=9454; UPDATE t2 SET b=35878 WHERE a=9455; UPDATE t2 SET b=81678 WHERE a=9456; UPDATE t2 SET b=7293 WHERE a=9457; UPDATE t2 SET b=82853 WHERE a=9458; UPDATE t2 SET b=9796 WHERE a=9459; UPDATE t2 SET b=94508 WHERE a=9460; UPDATE t2 SET b=31356 WHERE a=9461; UPDATE t2 SET b=74306 WHERE a=9462; UPDATE t2 SET b=27265 WHERE a=9463; UPDATE t2 SET b=80298 WHERE a=9464; UPDATE t2 SET b=58713 WHERE a=9465; UPDATE t2 SET b=66678 WHERE a=9466; UPDATE t2 SET b=6520 WHERE a=9467; UPDATE t2 SET b=55512 WHERE a=9468; UPDATE t2 SET b=15455 WHERE a=9469; UPDATE t2 SET b=95486 WHERE a=9470; UPDATE t2 SET b=54579 WHERE a=9471; UPDATE t2 SET b=74638 WHERE a=9472; UPDATE t2 SET b=30231 WHERE a=9473; UPDATE t2 SET b=23212 WHERE a=9474; UPDATE t2 SET b=64340 WHERE a=9475; UPDATE t2 SET b=83263 WHERE a=9476; UPDATE t2 SET b=66133 WHERE a=9477; UPDATE t2 SET b=98132 WHERE a=9478; UPDATE t2 SET b=95126 WHERE a=9479; UPDATE t2 SET b=71976 WHERE a=9480; UPDATE t2 SET b=14259 WHERE a=9481; UPDATE t2 SET b=41841 WHERE a=9482; UPDATE t2 SET b=4914 WHERE a=9483; UPDATE t2 SET b=10548 WHERE a=9484; UPDATE t2 SET b=45512 WHERE a=9485; UPDATE t2 SET b=27089 WHERE a=9486; UPDATE t2 SET b=9590 WHERE a=9487; UPDATE t2 SET b=27854 WHERE a=9488; UPDATE t2 SET b=44781 WHERE a=9489; UPDATE t2 SET b=16060 WHERE a=9490; UPDATE t2 SET b=37286 WHERE a=9491; UPDATE t2 SET b=13971 WHERE a=9492; UPDATE t2 SET b=69959 WHERE a=9493; UPDATE t2 SET b=28331 WHERE a=9494; UPDATE t2 SET b=64015 WHERE a=9495; UPDATE t2 SET b=93763 WHERE a=9496; UPDATE t2 SET b=86328 WHERE a=9497; UPDATE t2 SET b=13631 WHERE a=9498; UPDATE t2 SET b=53090 WHERE a=9499; UPDATE t2 SET b=15018 WHERE a=9500; UPDATE t2 SET b=86148 WHERE a=9501; UPDATE t2 SET b=10905 WHERE a=9502; UPDATE t2 SET b=78062 WHERE a=9503; UPDATE t2 SET b=49173 WHERE a=9504; UPDATE t2 SET b=88257 WHERE a=9505; UPDATE t2 SET b=71655 WHERE a=9506; UPDATE t2 SET b=32959 WHERE a=9507; UPDATE t2 SET b=43721 WHERE a=9508; UPDATE t2 SET b=90453 WHERE a=9509; UPDATE t2 SET b=98141 WHERE a=9510; UPDATE t2 SET b=7299 WHERE a=9511; UPDATE t2 SET b=64917 WHERE a=9512; UPDATE t2 SET b=18054 WHERE a=9513; UPDATE t2 SET b=13524 WHERE a=9514; UPDATE t2 SET b=23496 WHERE a=9515; UPDATE t2 SET b=75337 WHERE a=9516; UPDATE t2 SET b=92411 WHERE a=9517; UPDATE t2 SET b=63755 WHERE a=9518; UPDATE t2 SET b=16383 WHERE a=9519; UPDATE t2 SET b=17491 WHERE a=9520; UPDATE t2 SET b=30812 WHERE a=9521; UPDATE t2 SET b=31816 WHERE a=9522; UPDATE t2 SET b=59564 WHERE a=9523; UPDATE t2 SET b=75145 WHERE a=9524; UPDATE t2 SET b=14103 WHERE a=9525; UPDATE t2 SET b=72717 WHERE a=9526; UPDATE t2 SET b=89505 WHERE a=9527; UPDATE t2 SET b=1247 WHERE a=9528; UPDATE t2 SET b=12887 WHERE a=9529; UPDATE t2 SET b=48877 WHERE a=9530; UPDATE t2 SET b=50418 WHERE a=9531; UPDATE t2 SET b=2353 WHERE a=9532; UPDATE t2 SET b=33313 WHERE a=9533; UPDATE t2 SET b=74908 WHERE a=9534; UPDATE t2 SET b=88687 WHERE a=9535; UPDATE t2 SET b=7588 WHERE a=9536; UPDATE t2 SET b=61631 WHERE a=9537; UPDATE t2 SET b=84409 WHERE a=9538; UPDATE t2 SET b=42676 WHERE a=9539; UPDATE t2 SET b=14452 WHERE a=9540; UPDATE t2 SET b=69048 WHERE a=9541; UPDATE t2 SET b=9341 WHERE a=9542; UPDATE t2 SET b=82893 WHERE a=9543; UPDATE t2 SET b=88653 WHERE a=9544; UPDATE t2 SET b=48646 WHERE a=9545; UPDATE t2 SET b=39237 WHERE a=9546; UPDATE t2 SET b=9326 WHERE a=9547; UPDATE t2 SET b=66452 WHERE a=9548; UPDATE t2 SET b=10698 WHERE a=9549; UPDATE t2 SET b=48214 WHERE a=9550; UPDATE t2 SET b=39494 WHERE a=9551; UPDATE t2 SET b=6677 WHERE a=9552; UPDATE t2 SET b=5036 WHERE a=9553; UPDATE t2 SET b=58505 WHERE a=9554; UPDATE t2 SET b=75152 WHERE a=9555; UPDATE t2 SET b=96010 WHERE a=9556; UPDATE t2 SET b=65699 WHERE a=9557; UPDATE t2 SET b=4955 WHERE a=9558; UPDATE t2 SET b=46167 WHERE a=9559; UPDATE t2 SET b=13100 WHERE a=9560; UPDATE t2 SET b=87853 WHERE a=9561; UPDATE t2 SET b=51902 WHERE a=9562; UPDATE t2 SET b=6271 WHERE a=9563; UPDATE t2 SET b=26694 WHERE a=9564; UPDATE t2 SET b=97548 WHERE a=9565; UPDATE t2 SET b=46980 WHERE a=9566; UPDATE t2 SET b=37644 WHERE a=9567; UPDATE t2 SET b=68029 WHERE a=9568; UPDATE t2 SET b=25885 WHERE a=9569; UPDATE t2 SET b=96020 WHERE a=9570; UPDATE t2 SET b=79518 WHERE a=9571; UPDATE t2 SET b=26119 WHERE a=9572; UPDATE t2 SET b=87885 WHERE a=9573; UPDATE t2 SET b=34055 WHERE a=9574; UPDATE t2 SET b=98419 WHERE a=9575; UPDATE t2 SET b=83133 WHERE a=9576; UPDATE t2 SET b=92569 WHERE a=9577; UPDATE t2 SET b=8321 WHERE a=9578; UPDATE t2 SET b=89816 WHERE a=9579; UPDATE t2 SET b=92230 WHERE a=9580; UPDATE t2 SET b=56094 WHERE a=9581; UPDATE t2 SET b=59111 WHERE a=9582; UPDATE t2 SET b=93816 WHERE a=9583; UPDATE t2 SET b=51994 WHERE a=9584; UPDATE t2 SET b=99615 WHERE a=9585; UPDATE t2 SET b=380 WHERE a=9586; UPDATE t2 SET b=68208 WHERE a=9587; UPDATE t2 SET b=39810 WHERE a=9588; UPDATE t2 SET b=66651 WHERE a=9589; UPDATE t2 SET b=75371 WHERE a=9590; UPDATE t2 SET b=13742 WHERE a=9591; UPDATE t2 SET b=43482 WHERE a=9592; UPDATE t2 SET b=85749 WHERE a=9593; UPDATE t2 SET b=1156 WHERE a=9594; UPDATE t2 SET b=37616 WHERE a=9595; UPDATE t2 SET b=65010 WHERE a=9596; UPDATE t2 SET b=79998 WHERE a=9597; UPDATE t2 SET b=31662 WHERE a=9598; UPDATE t2 SET b=97599 WHERE a=9599; UPDATE t2 SET b=69638 WHERE a=9600; UPDATE t2 SET b=47024 WHERE a=9601; UPDATE t2 SET b=16802 WHERE a=9602; UPDATE t2 SET b=13751 WHERE a=9603; UPDATE t2 SET b=68826 WHERE a=9604; UPDATE t2 SET b=68769 WHERE a=9605; UPDATE t2 SET b=93811 WHERE a=9606; UPDATE t2 SET b=87463 WHERE a=9607; UPDATE t2 SET b=10699 WHERE a=9608; UPDATE t2 SET b=27315 WHERE a=9609; UPDATE t2 SET b=60902 WHERE a=9610; UPDATE t2 SET b=73261 WHERE a=9611; UPDATE t2 SET b=48275 WHERE a=9612; UPDATE t2 SET b=22258 WHERE a=9613; UPDATE t2 SET b=38148 WHERE a=9614; UPDATE t2 SET b=67642 WHERE a=9615; UPDATE t2 SET b=77694 WHERE a=9616; UPDATE t2 SET b=28112 WHERE a=9617; UPDATE t2 SET b=56570 WHERE a=9618; UPDATE t2 SET b=81425 WHERE a=9619; UPDATE t2 SET b=18532 WHERE a=9620; UPDATE t2 SET b=39862 WHERE a=9621; UPDATE t2 SET b=62 WHERE a=9622; UPDATE t2 SET b=30954 WHERE a=9623; UPDATE t2 SET b=24553 WHERE a=9624; UPDATE t2 SET b=65683 WHERE a=9625; UPDATE t2 SET b=43896 WHERE a=9626; UPDATE t2 SET b=91072 WHERE a=9627; UPDATE t2 SET b=31882 WHERE a=9628; UPDATE t2 SET b=3523 WHERE a=9629; UPDATE t2 SET b=33049 WHERE a=9630; UPDATE t2 SET b=2410 WHERE a=9631; UPDATE t2 SET b=4104 WHERE a=9632; UPDATE t2 SET b=20423 WHERE a=9633; UPDATE t2 SET b=11771 WHERE a=9634; UPDATE t2 SET b=59666 WHERE a=9635; UPDATE t2 SET b=38493 WHERE a=9636; UPDATE t2 SET b=13328 WHERE a=9637; UPDATE t2 SET b=16192 WHERE a=9638; UPDATE t2 SET b=76894 WHERE a=9639; UPDATE t2 SET b=11406 WHERE a=9640; UPDATE t2 SET b=76948 WHERE a=9641; UPDATE t2 SET b=8734 WHERE a=9642; UPDATE t2 SET b=24004 WHERE a=9643; UPDATE t2 SET b=63586 WHERE a=9644; UPDATE t2 SET b=99920 WHERE a=9645; UPDATE t2 SET b=86592 WHERE a=9646; UPDATE t2 SET b=83851 WHERE a=9647; UPDATE t2 SET b=6723 WHERE a=9648; UPDATE t2 SET b=67880 WHERE a=9649; UPDATE t2 SET b=18080 WHERE a=9650; UPDATE t2 SET b=62168 WHERE a=9651; UPDATE t2 SET b=34471 WHERE a=9652; UPDATE t2 SET b=27310 WHERE a=9653; UPDATE t2 SET b=44259 WHERE a=9654; UPDATE t2 SET b=10955 WHERE a=9655; UPDATE t2 SET b=59091 WHERE a=9656; UPDATE t2 SET b=49097 WHERE a=9657; UPDATE t2 SET b=44679 WHERE a=9658; UPDATE t2 SET b=16439 WHERE a=9659; UPDATE t2 SET b=12438 WHERE a=9660; UPDATE t2 SET b=86777 WHERE a=9661; UPDATE t2 SET b=21028 WHERE a=9662; UPDATE t2 SET b=46961 WHERE a=9663; UPDATE t2 SET b=17486 WHERE a=9664; UPDATE t2 SET b=69520 WHERE a=9665; UPDATE t2 SET b=9174 WHERE a=9666; UPDATE t2 SET b=5671 WHERE a=9667; UPDATE t2 SET b=50340 WHERE a=9668; UPDATE t2 SET b=35309 WHERE a=9669; UPDATE t2 SET b=93114 WHERE a=9670; UPDATE t2 SET b=63940 WHERE a=9671; UPDATE t2 SET b=27022 WHERE a=9672; UPDATE t2 SET b=46716 WHERE a=9673; UPDATE t2 SET b=31769 WHERE a=9674; UPDATE t2 SET b=15986 WHERE a=9675; UPDATE t2 SET b=2820 WHERE a=9676; UPDATE t2 SET b=89097 WHERE a=9677; UPDATE t2 SET b=43842 WHERE a=9678; UPDATE t2 SET b=73858 WHERE a=9679; UPDATE t2 SET b=84140 WHERE a=9680; UPDATE t2 SET b=66319 WHERE a=9681; UPDATE t2 SET b=56155 WHERE a=9682; UPDATE t2 SET b=23611 WHERE a=9683; UPDATE t2 SET b=13618 WHERE a=9684; UPDATE t2 SET b=13974 WHERE a=9685; UPDATE t2 SET b=2728 WHERE a=9686; UPDATE t2 SET b=49141 WHERE a=9687; UPDATE t2 SET b=19061 WHERE a=9688; UPDATE t2 SET b=47458 WHERE a=9689; UPDATE t2 SET b=67022 WHERE a=9690; UPDATE t2 SET b=48994 WHERE a=9691; UPDATE t2 SET b=23799 WHERE a=9692; UPDATE t2 SET b=74550 WHERE a=9693; UPDATE t2 SET b=73359 WHERE a=9694; UPDATE t2 SET b=8146 WHERE a=9695; UPDATE t2 SET b=85894 WHERE a=9696; UPDATE t2 SET b=68160 WHERE a=9697; UPDATE t2 SET b=52043 WHERE a=9698; UPDATE t2 SET b=28985 WHERE a=9699; UPDATE t2 SET b=32589 WHERE a=9700; UPDATE t2 SET b=86215 WHERE a=9701; UPDATE t2 SET b=10803 WHERE a=9702; UPDATE t2 SET b=36440 WHERE a=9703; UPDATE t2 SET b=81988 WHERE a=9704; UPDATE t2 SET b=43265 WHERE a=9705; UPDATE t2 SET b=56006 WHERE a=9706; UPDATE t2 SET b=42611 WHERE a=9707; UPDATE t2 SET b=63227 WHERE a=9708; UPDATE t2 SET b=77617 WHERE a=9709; UPDATE t2 SET b=70903 WHERE a=9710; UPDATE t2 SET b=35569 WHERE a=9711; UPDATE t2 SET b=45622 WHERE a=9712; UPDATE t2 SET b=69905 WHERE a=9713; UPDATE t2 SET b=72301 WHERE a=9714; UPDATE t2 SET b=86257 WHERE a=9715; UPDATE t2 SET b=41392 WHERE a=9716; UPDATE t2 SET b=55504 WHERE a=9717; UPDATE t2 SET b=35750 WHERE a=9718; UPDATE t2 SET b=92424 WHERE a=9719; UPDATE t2 SET b=42157 WHERE a=9720; UPDATE t2 SET b=91689 WHERE a=9721; UPDATE t2 SET b=29639 WHERE a=9722; UPDATE t2 SET b=7458 WHERE a=9723; UPDATE t2 SET b=55392 WHERE a=9724; UPDATE t2 SET b=67138 WHERE a=9725; UPDATE t2 SET b=26722 WHERE a=9726; UPDATE t2 SET b=35037 WHERE a=9727; UPDATE t2 SET b=53855 WHERE a=9728; UPDATE t2 SET b=96642 WHERE a=9729; UPDATE t2 SET b=68047 WHERE a=9730; UPDATE t2 SET b=95354 WHERE a=9731; UPDATE t2 SET b=33901 WHERE a=9732; UPDATE t2 SET b=37222 WHERE a=9733; UPDATE t2 SET b=49380 WHERE a=9734; UPDATE t2 SET b=84629 WHERE a=9735; UPDATE t2 SET b=43819 WHERE a=9736; UPDATE t2 SET b=80831 WHERE a=9737; UPDATE t2 SET b=55820 WHERE a=9738; UPDATE t2 SET b=10125 WHERE a=9739; UPDATE t2 SET b=64621 WHERE a=9740; UPDATE t2 SET b=1644 WHERE a=9741; UPDATE t2 SET b=34785 WHERE a=9742; UPDATE t2 SET b=62027 WHERE a=9743; UPDATE t2 SET b=6008 WHERE a=9744; UPDATE t2 SET b=76215 WHERE a=9745; UPDATE t2 SET b=49857 WHERE a=9746; UPDATE t2 SET b=96680 WHERE a=9747; UPDATE t2 SET b=50474 WHERE a=9748; UPDATE t2 SET b=91103 WHERE a=9749; UPDATE t2 SET b=79330 WHERE a=9750; UPDATE t2 SET b=8932 WHERE a=9751; UPDATE t2 SET b=11691 WHERE a=9752; UPDATE t2 SET b=71428 WHERE a=9753; UPDATE t2 SET b=26642 WHERE a=9754; UPDATE t2 SET b=76105 WHERE a=9755; UPDATE t2 SET b=96286 WHERE a=9756; UPDATE t2 SET b=39312 WHERE a=9757; UPDATE t2 SET b=94967 WHERE a=9758; UPDATE t2 SET b=69075 WHERE a=9759; UPDATE t2 SET b=63235 WHERE a=9760; UPDATE t2 SET b=13687 WHERE a=9761; UPDATE t2 SET b=2315 WHERE a=9762; UPDATE t2 SET b=12537 WHERE a=9763; UPDATE t2 SET b=71002 WHERE a=9764; UPDATE t2 SET b=75077 WHERE a=9765; UPDATE t2 SET b=91034 WHERE a=9766; UPDATE t2 SET b=48573 WHERE a=9767; UPDATE t2 SET b=79181 WHERE a=9768; UPDATE t2 SET b=81405 WHERE a=9769; UPDATE t2 SET b=23256 WHERE a=9770; UPDATE t2 SET b=72663 WHERE a=9771; UPDATE t2 SET b=96197 WHERE a=9772; UPDATE t2 SET b=18575 WHERE a=9773; UPDATE t2 SET b=18067 WHERE a=9774; UPDATE t2 SET b=56524 WHERE a=9775; UPDATE t2 SET b=30471 WHERE a=9776; UPDATE t2 SET b=85763 WHERE a=9777; UPDATE t2 SET b=6699 WHERE a=9778; UPDATE t2 SET b=34429 WHERE a=9779; UPDATE t2 SET b=75939 WHERE a=9780; UPDATE t2 SET b=44649 WHERE a=9781; UPDATE t2 SET b=75171 WHERE a=9782; UPDATE t2 SET b=86785 WHERE a=9783; UPDATE t2 SET b=91526 WHERE a=9784; UPDATE t2 SET b=18937 WHERE a=9785; UPDATE t2 SET b=85830 WHERE a=9786; UPDATE t2 SET b=19715 WHERE a=9787; UPDATE t2 SET b=97254 WHERE a=9788; UPDATE t2 SET b=54964 WHERE a=9789; UPDATE t2 SET b=48080 WHERE a=9790; UPDATE t2 SET b=97181 WHERE a=9791; UPDATE t2 SET b=78500 WHERE a=9792; UPDATE t2 SET b=93842 WHERE a=9793; UPDATE t2 SET b=61097 WHERE a=9794; UPDATE t2 SET b=55608 WHERE a=9795; UPDATE t2 SET b=19129 WHERE a=9796; UPDATE t2 SET b=68590 WHERE a=9797; UPDATE t2 SET b=36363 WHERE a=9798; UPDATE t2 SET b=89971 WHERE a=9799; UPDATE t2 SET b=28845 WHERE a=9800; UPDATE t2 SET b=72744 WHERE a=9801; UPDATE t2 SET b=84868 WHERE a=9802; UPDATE t2 SET b=97331 WHERE a=9803; UPDATE t2 SET b=41895 WHERE a=9804; UPDATE t2 SET b=22097 WHERE a=9805; UPDATE t2 SET b=68138 WHERE a=9806; UPDATE t2 SET b=88430 WHERE a=9807; UPDATE t2 SET b=1974 WHERE a=9808; UPDATE t2 SET b=4190 WHERE a=9809; UPDATE t2 SET b=29956 WHERE a=9810; UPDATE t2 SET b=10180 WHERE a=9811; UPDATE t2 SET b=94520 WHERE a=9812; UPDATE t2 SET b=88474 WHERE a=9813; UPDATE t2 SET b=17721 WHERE a=9814; UPDATE t2 SET b=71033 WHERE a=9815; UPDATE t2 SET b=4891 WHERE a=9816; UPDATE t2 SET b=74913 WHERE a=9817; UPDATE t2 SET b=92910 WHERE a=9818; UPDATE t2 SET b=1809 WHERE a=9819; UPDATE t2 SET b=39052 WHERE a=9820; UPDATE t2 SET b=66990 WHERE a=9821; UPDATE t2 SET b=67461 WHERE a=9822; UPDATE t2 SET b=7916 WHERE a=9823; UPDATE t2 SET b=6745 WHERE a=9824; UPDATE t2 SET b=28985 WHERE a=9825; UPDATE t2 SET b=21983 WHERE a=9826; UPDATE t2 SET b=10255 WHERE a=9827; UPDATE t2 SET b=2537 WHERE a=9828; UPDATE t2 SET b=44093 WHERE a=9829; UPDATE t2 SET b=66430 WHERE a=9830; UPDATE t2 SET b=65432 WHERE a=9831; UPDATE t2 SET b=68095 WHERE a=9832; UPDATE t2 SET b=10697 WHERE a=9833; UPDATE t2 SET b=99374 WHERE a=9834; UPDATE t2 SET b=9409 WHERE a=9835; UPDATE t2 SET b=30006 WHERE a=9836; UPDATE t2 SET b=55824 WHERE a=9837; UPDATE t2 SET b=94727 WHERE a=9838; UPDATE t2 SET b=24567 WHERE a=9839; UPDATE t2 SET b=64080 WHERE a=9840; UPDATE t2 SET b=84989 WHERE a=9841; UPDATE t2 SET b=21668 WHERE a=9842; UPDATE t2 SET b=60776 WHERE a=9843; UPDATE t2 SET b=69828 WHERE a=9844; UPDATE t2 SET b=66945 WHERE a=9845; UPDATE t2 SET b=30359 WHERE a=9846; UPDATE t2 SET b=29150 WHERE a=9847; UPDATE t2 SET b=47768 WHERE a=9848; UPDATE t2 SET b=81276 WHERE a=9849; UPDATE t2 SET b=18724 WHERE a=9850; UPDATE t2 SET b=81120 WHERE a=9851; UPDATE t2 SET b=51051 WHERE a=9852; UPDATE t2 SET b=16001 WHERE a=9853; UPDATE t2 SET b=67278 WHERE a=9854; UPDATE t2 SET b=23463 WHERE a=9855; UPDATE t2 SET b=90479 WHERE a=9856; UPDATE t2 SET b=95651 WHERE a=9857; UPDATE t2 SET b=88637 WHERE a=9858; UPDATE t2 SET b=41455 WHERE a=9859; UPDATE t2 SET b=26391 WHERE a=9860; UPDATE t2 SET b=25280 WHERE a=9861; UPDATE t2 SET b=25186 WHERE a=9862; UPDATE t2 SET b=54417 WHERE a=9863; UPDATE t2 SET b=32562 WHERE a=9864; UPDATE t2 SET b=74001 WHERE a=9865; UPDATE t2 SET b=19018 WHERE a=9866; UPDATE t2 SET b=12803 WHERE a=9867; UPDATE t2 SET b=68083 WHERE a=9868; UPDATE t2 SET b=70579 WHERE a=9869; UPDATE t2 SET b=91744 WHERE a=9870; UPDATE t2 SET b=44914 WHERE a=9871; UPDATE t2 SET b=4619 WHERE a=9872; UPDATE t2 SET b=57732 WHERE a=9873; UPDATE t2 SET b=66489 WHERE a=9874; UPDATE t2 SET b=12039 WHERE a=9875; UPDATE t2 SET b=55609 WHERE a=9876; UPDATE t2 SET b=29917 WHERE a=9877; UPDATE t2 SET b=2923 WHERE a=9878; UPDATE t2 SET b=47830 WHERE a=9879; UPDATE t2 SET b=28822 WHERE a=9880; UPDATE t2 SET b=99853 WHERE a=9881; UPDATE t2 SET b=32422 WHERE a=9882; UPDATE t2 SET b=28010 WHERE a=9883; UPDATE t2 SET b=38797 WHERE a=9884; UPDATE t2 SET b=30730 WHERE a=9885; UPDATE t2 SET b=82373 WHERE a=9886; UPDATE t2 SET b=58911 WHERE a=9887; UPDATE t2 SET b=85339 WHERE a=9888; UPDATE t2 SET b=98392 WHERE a=9889; UPDATE t2 SET b=70630 WHERE a=9890; UPDATE t2 SET b=96510 WHERE a=9891; UPDATE t2 SET b=34163 WHERE a=9892; UPDATE t2 SET b=77933 WHERE a=9893; UPDATE t2 SET b=82618 WHERE a=9894; UPDATE t2 SET b=15104 WHERE a=9895; UPDATE t2 SET b=53474 WHERE a=9896; UPDATE t2 SET b=74625 WHERE a=9897; UPDATE t2 SET b=70686 WHERE a=9898; UPDATE t2 SET b=71711 WHERE a=9899; UPDATE t2 SET b=11933 WHERE a=9900; UPDATE t2 SET b=86714 WHERE a=9901; UPDATE t2 SET b=52686 WHERE a=9902; UPDATE t2 SET b=59572 WHERE a=9903; UPDATE t2 SET b=23713 WHERE a=9904; UPDATE t2 SET b=8126 WHERE a=9905; UPDATE t2 SET b=87555 WHERE a=9906; UPDATE t2 SET b=97450 WHERE a=9907; UPDATE t2 SET b=70460 WHERE a=9908; UPDATE t2 SET b=4905 WHERE a=9909; UPDATE t2 SET b=49943 WHERE a=9910; UPDATE t2 SET b=48731 WHERE a=9911; UPDATE t2 SET b=28356 WHERE a=9912; UPDATE t2 SET b=3281 WHERE a=9913; UPDATE t2 SET b=95841 WHERE a=9914; UPDATE t2 SET b=15739 WHERE a=9915; UPDATE t2 SET b=27439 WHERE a=9916; UPDATE t2 SET b=66351 WHERE a=9917; UPDATE t2 SET b=36057 WHERE a=9918; UPDATE t2 SET b=4794 WHERE a=9919; UPDATE t2 SET b=30038 WHERE a=9920; UPDATE t2 SET b=72119 WHERE a=9921; UPDATE t2 SET b=42432 WHERE a=9922; UPDATE t2 SET b=7968 WHERE a=9923; UPDATE t2 SET b=41362 WHERE a=9924; UPDATE t2 SET b=5871 WHERE a=9925; UPDATE t2 SET b=32347 WHERE a=9926; UPDATE t2 SET b=6973 WHERE a=9927; UPDATE t2 SET b=24499 WHERE a=9928; UPDATE t2 SET b=45186 WHERE a=9929; UPDATE t2 SET b=14818 WHERE a=9930; UPDATE t2 SET b=74813 WHERE a=9931; UPDATE t2 SET b=12285 WHERE a=9932; UPDATE t2 SET b=77519 WHERE a=9933; UPDATE t2 SET b=98205 WHERE a=9934; UPDATE t2 SET b=10371 WHERE a=9935; UPDATE t2 SET b=40430 WHERE a=9936; UPDATE t2 SET b=75252 WHERE a=9937; UPDATE t2 SET b=97476 WHERE a=9938; UPDATE t2 SET b=84568 WHERE a=9939; UPDATE t2 SET b=7022 WHERE a=9940; UPDATE t2 SET b=31836 WHERE a=9941; UPDATE t2 SET b=694 WHERE a=9942; UPDATE t2 SET b=31922 WHERE a=9943; UPDATE t2 SET b=82439 WHERE a=9944; UPDATE t2 SET b=83546 WHERE a=9945; UPDATE t2 SET b=47185 WHERE a=9946; UPDATE t2 SET b=4887 WHERE a=9947; UPDATE t2 SET b=9907 WHERE a=9948; UPDATE t2 SET b=17173 WHERE a=9949; UPDATE t2 SET b=47244 WHERE a=9950; UPDATE t2 SET b=39468 WHERE a=9951; UPDATE t2 SET b=57870 WHERE a=9952; UPDATE t2 SET b=73670 WHERE a=9953; UPDATE t2 SET b=51129 WHERE a=9954; UPDATE t2 SET b=86787 WHERE a=9955; UPDATE t2 SET b=13543 WHERE a=9956; UPDATE t2 SET b=55096 WHERE a=9957; UPDATE t2 SET b=33234 WHERE a=9958; UPDATE t2 SET b=38642 WHERE a=9959; UPDATE t2 SET b=80905 WHERE a=9960; UPDATE t2 SET b=83611 WHERE a=9961; UPDATE t2 SET b=46731 WHERE a=9962; UPDATE t2 SET b=99488 WHERE a=9963; UPDATE t2 SET b=97303 WHERE a=9964; UPDATE t2 SET b=46767 WHERE a=9965; UPDATE t2 SET b=17461 WHERE a=9966; UPDATE t2 SET b=57598 WHERE a=9967; UPDATE t2 SET b=36770 WHERE a=9968; UPDATE t2 SET b=65189 WHERE a=9969; UPDATE t2 SET b=35177 WHERE a=9970; UPDATE t2 SET b=97571 WHERE a=9971; UPDATE t2 SET b=6770 WHERE a=9972; UPDATE t2 SET b=76373 WHERE a=9973; UPDATE t2 SET b=90740 WHERE a=9974; UPDATE t2 SET b=75669 WHERE a=9975; UPDATE t2 SET b=22395 WHERE a=9976; UPDATE t2 SET b=42601 WHERE a=9977; UPDATE t2 SET b=94262 WHERE a=9978; UPDATE t2 SET b=966 WHERE a=9979; UPDATE t2 SET b=74271 WHERE a=9980; UPDATE t2 SET b=21168 WHERE a=9981; UPDATE t2 SET b=98482 WHERE a=9982; UPDATE t2 SET b=68566 WHERE a=9983; UPDATE t2 SET b=60664 WHERE a=9984; UPDATE t2 SET b=34415 WHERE a=9985; UPDATE t2 SET b=10324 WHERE a=9986; UPDATE t2 SET b=7203 WHERE a=9987; UPDATE t2 SET b=88049 WHERE a=9988; UPDATE t2 SET b=32054 WHERE a=9989; UPDATE t2 SET b=86901 WHERE a=9990; UPDATE t2 SET b=38505 WHERE a=9991; UPDATE t2 SET b=27238 WHERE a=9992; UPDATE t2 SET b=26900 WHERE a=9993; UPDATE t2 SET b=74653 WHERE a=9994; UPDATE t2 SET b=35304 WHERE a=9995; UPDATE t2 SET b=65513 WHERE a=9996; UPDATE t2 SET b=98235 WHERE a=9997; UPDATE t2 SET b=69652 WHERE a=9998; UPDATE t2 SET b=56878 WHERE a=9999; UPDATE t2 SET b=71588 WHERE a=10000; UPDATE t2 SET b=39020 WHERE a=10001; UPDATE t2 SET b=6328 WHERE a=10002; UPDATE t2 SET b=87196 WHERE a=10003; UPDATE t2 SET b=75943 WHERE a=10004; UPDATE t2 SET b=72381 WHERE a=10005; UPDATE t2 SET b=67938 WHERE a=10006; UPDATE t2 SET b=55020 WHERE a=10007; UPDATE t2 SET b=99141 WHERE a=10008; UPDATE t2 SET b=96369 WHERE a=10009; UPDATE t2 SET b=79874 WHERE a=10010; UPDATE t2 SET b=92859 WHERE a=10011; UPDATE t2 SET b=45585 WHERE a=10012; UPDATE t2 SET b=14993 WHERE a=10013; UPDATE t2 SET b=40403 WHERE a=10014; UPDATE t2 SET b=12923 WHERE a=10015; UPDATE t2 SET b=58563 WHERE a=10016; UPDATE t2 SET b=34103 WHERE a=10017; UPDATE t2 SET b=39085 WHERE a=10018; UPDATE t2 SET b=84966 WHERE a=10019; UPDATE t2 SET b=41643 WHERE a=10020; UPDATE t2 SET b=3899 WHERE a=10021; UPDATE t2 SET b=83192 WHERE a=10022; UPDATE t2 SET b=9213 WHERE a=10023; UPDATE t2 SET b=69969 WHERE a=10024; UPDATE t2 SET b=50458 WHERE a=10025; UPDATE t2 SET b=35891 WHERE a=10026; UPDATE t2 SET b=74298 WHERE a=10027; UPDATE t2 SET b=22271 WHERE a=10028; UPDATE t2 SET b=73796 WHERE a=10029; UPDATE t2 SET b=22348 WHERE a=10030; UPDATE t2 SET b=40486 WHERE a=10031; UPDATE t2 SET b=16760 WHERE a=10032; UPDATE t2 SET b=79726 WHERE a=10033; UPDATE t2 SET b=83956 WHERE a=10034; UPDATE t2 SET b=41828 WHERE a=10035; UPDATE t2 SET b=54894 WHERE a=10036; UPDATE t2 SET b=98125 WHERE a=10037; UPDATE t2 SET b=52429 WHERE a=10038; UPDATE t2 SET b=95878 WHERE a=10039; UPDATE t2 SET b=69855 WHERE a=10040; UPDATE t2 SET b=91460 WHERE a=10041; UPDATE t2 SET b=1848 WHERE a=10042; UPDATE t2 SET b=91428 WHERE a=10043; UPDATE t2 SET b=33915 WHERE a=10044; UPDATE t2 SET b=74343 WHERE a=10045; UPDATE t2 SET b=32484 WHERE a=10046; UPDATE t2 SET b=37271 WHERE a=10047; UPDATE t2 SET b=77386 WHERE a=10048; UPDATE t2 SET b=60642 WHERE a=10049; UPDATE t2 SET b=95746 WHERE a=10050; UPDATE t2 SET b=8425 WHERE a=10051; UPDATE t2 SET b=70069 WHERE a=10052; UPDATE t2 SET b=45816 WHERE a=10053; UPDATE t2 SET b=10767 WHERE a=10054; UPDATE t2 SET b=69161 WHERE a=10055; UPDATE t2 SET b=98984 WHERE a=10056; UPDATE t2 SET b=8373 WHERE a=10057; UPDATE t2 SET b=26791 WHERE a=10058; UPDATE t2 SET b=83552 WHERE a=10059; UPDATE t2 SET b=72264 WHERE a=10060; UPDATE t2 SET b=34953 WHERE a=10061; UPDATE t2 SET b=36160 WHERE a=10062; UPDATE t2 SET b=84415 WHERE a=10063; UPDATE t2 SET b=72313 WHERE a=10064; UPDATE t2 SET b=95095 WHERE a=10065; UPDATE t2 SET b=95138 WHERE a=10066; UPDATE t2 SET b=78383 WHERE a=10067; UPDATE t2 SET b=40935 WHERE a=10068; UPDATE t2 SET b=20057 WHERE a=10069; UPDATE t2 SET b=48961 WHERE a=10070; UPDATE t2 SET b=64633 WHERE a=10071; UPDATE t2 SET b=59314 WHERE a=10072; UPDATE t2 SET b=98945 WHERE a=10073; UPDATE t2 SET b=3818 WHERE a=10074; UPDATE t2 SET b=83516 WHERE a=10075; UPDATE t2 SET b=64693 WHERE a=10076; UPDATE t2 SET b=20062 WHERE a=10077; UPDATE t2 SET b=92245 WHERE a=10078; UPDATE t2 SET b=25819 WHERE a=10079; UPDATE t2 SET b=9227 WHERE a=10080; UPDATE t2 SET b=86066 WHERE a=10081; UPDATE t2 SET b=84153 WHERE a=10082; UPDATE t2 SET b=71327 WHERE a=10083; UPDATE t2 SET b=42533 WHERE a=10084; UPDATE t2 SET b=52354 WHERE a=10085; UPDATE t2 SET b=11738 WHERE a=10086; UPDATE t2 SET b=81675 WHERE a=10087; UPDATE t2 SET b=76188 WHERE a=10088; UPDATE t2 SET b=24849 WHERE a=10089; UPDATE t2 SET b=47061 WHERE a=10090; UPDATE t2 SET b=21792 WHERE a=10091; UPDATE t2 SET b=77849 WHERE a=10092; UPDATE t2 SET b=23023 WHERE a=10093; UPDATE t2 SET b=94223 WHERE a=10094; UPDATE t2 SET b=22544 WHERE a=10095; UPDATE t2 SET b=18365 WHERE a=10096; UPDATE t2 SET b=12740 WHERE a=10097; UPDATE t2 SET b=39982 WHERE a=10098; UPDATE t2 SET b=47539 WHERE a=10099; UPDATE t2 SET b=73828 WHERE a=10100; UPDATE t2 SET b=33154 WHERE a=10101; UPDATE t2 SET b=77187 WHERE a=10102; UPDATE t2 SET b=54831 WHERE a=10103; UPDATE t2 SET b=96779 WHERE a=10104; UPDATE t2 SET b=83356 WHERE a=10105; UPDATE t2 SET b=5778 WHERE a=10106; UPDATE t2 SET b=40717 WHERE a=10107; UPDATE t2 SET b=51009 WHERE a=10108; UPDATE t2 SET b=99583 WHERE a=10109; UPDATE t2 SET b=55905 WHERE a=10110; UPDATE t2 SET b=96654 WHERE a=10111; UPDATE t2 SET b=55003 WHERE a=10112; UPDATE t2 SET b=17284 WHERE a=10113; UPDATE t2 SET b=28492 WHERE a=10114; UPDATE t2 SET b=22209 WHERE a=10115; UPDATE t2 SET b=15948 WHERE a=10116; UPDATE t2 SET b=28670 WHERE a=10117; UPDATE t2 SET b=53717 WHERE a=10118; UPDATE t2 SET b=98372 WHERE a=10119; UPDATE t2 SET b=40117 WHERE a=10120; UPDATE t2 SET b=1174 WHERE a=10121; UPDATE t2 SET b=24599 WHERE a=10122; UPDATE t2 SET b=97842 WHERE a=10123; UPDATE t2 SET b=68636 WHERE a=10124; UPDATE t2 SET b=62915 WHERE a=10125; UPDATE t2 SET b=51984 WHERE a=10126; UPDATE t2 SET b=56962 WHERE a=10127; UPDATE t2 SET b=43351 WHERE a=10128; UPDATE t2 SET b=17586 WHERE a=10129; UPDATE t2 SET b=72937 WHERE a=10130; UPDATE t2 SET b=84587 WHERE a=10131; UPDATE t2 SET b=38805 WHERE a=10132; UPDATE t2 SET b=87837 WHERE a=10133; UPDATE t2 SET b=22912 WHERE a=10134; UPDATE t2 SET b=83263 WHERE a=10135; UPDATE t2 SET b=9769 WHERE a=10136; UPDATE t2 SET b=5047 WHERE a=10137; UPDATE t2 SET b=47721 WHERE a=10138; UPDATE t2 SET b=63541 WHERE a=10139; UPDATE t2 SET b=86911 WHERE a=10140; UPDATE t2 SET b=47782 WHERE a=10141; UPDATE t2 SET b=44416 WHERE a=10142; UPDATE t2 SET b=57782 WHERE a=10143; UPDATE t2 SET b=76990 WHERE a=10144; UPDATE t2 SET b=42660 WHERE a=10145; UPDATE t2 SET b=50653 WHERE a=10146; UPDATE t2 SET b=44749 WHERE a=10147; UPDATE t2 SET b=44739 WHERE a=10148; UPDATE t2 SET b=50561 WHERE a=10149; UPDATE t2 SET b=44018 WHERE a=10150; UPDATE t2 SET b=4859 WHERE a=10151; UPDATE t2 SET b=5146 WHERE a=10152; UPDATE t2 SET b=92487 WHERE a=10153; UPDATE t2 SET b=94645 WHERE a=10154; UPDATE t2 SET b=11513 WHERE a=10155; UPDATE t2 SET b=61109 WHERE a=10156; UPDATE t2 SET b=70933 WHERE a=10157; UPDATE t2 SET b=99316 WHERE a=10158; UPDATE t2 SET b=75714 WHERE a=10159; UPDATE t2 SET b=55571 WHERE a=10160; UPDATE t2 SET b=45795 WHERE a=10161; UPDATE t2 SET b=78808 WHERE a=10162; UPDATE t2 SET b=58095 WHERE a=10163; UPDATE t2 SET b=33164 WHERE a=10164; UPDATE t2 SET b=92878 WHERE a=10165; UPDATE t2 SET b=18550 WHERE a=10166; UPDATE t2 SET b=51038 WHERE a=10167; UPDATE t2 SET b=11542 WHERE a=10168; UPDATE t2 SET b=86664 WHERE a=10169; UPDATE t2 SET b=30651 WHERE a=10170; UPDATE t2 SET b=59344 WHERE a=10171; UPDATE t2 SET b=9466 WHERE a=10172; UPDATE t2 SET b=54201 WHERE a=10173; UPDATE t2 SET b=89719 WHERE a=10174; UPDATE t2 SET b=43832 WHERE a=10175; UPDATE t2 SET b=63733 WHERE a=10176; UPDATE t2 SET b=48961 WHERE a=10177; UPDATE t2 SET b=40808 WHERE a=10178; UPDATE t2 SET b=32014 WHERE a=10179; UPDATE t2 SET b=24134 WHERE a=10180; UPDATE t2 SET b=18285 WHERE a=10181; UPDATE t2 SET b=66084 WHERE a=10182; UPDATE t2 SET b=71433 WHERE a=10183; UPDATE t2 SET b=44345 WHERE a=10184; UPDATE t2 SET b=21255 WHERE a=10185; UPDATE t2 SET b=94841 WHERE a=10186; UPDATE t2 SET b=88035 WHERE a=10187; UPDATE t2 SET b=19859 WHERE a=10188; UPDATE t2 SET b=86318 WHERE a=10189; UPDATE t2 SET b=54811 WHERE a=10190; UPDATE t2 SET b=8466 WHERE a=10191; UPDATE t2 SET b=27776 WHERE a=10192; UPDATE t2 SET b=47388 WHERE a=10193; UPDATE t2 SET b=94767 WHERE a=10194; UPDATE t2 SET b=23163 WHERE a=10195; UPDATE t2 SET b=55799 WHERE a=10196; UPDATE t2 SET b=8383 WHERE a=10197; UPDATE t2 SET b=31277 WHERE a=10198; UPDATE t2 SET b=67436 WHERE a=10199; UPDATE t2 SET b=61825 WHERE a=10200; UPDATE t2 SET b=34888 WHERE a=10201; UPDATE t2 SET b=29675 WHERE a=10202; UPDATE t2 SET b=88941 WHERE a=10203; UPDATE t2 SET b=24139 WHERE a=10204; UPDATE t2 SET b=95477 WHERE a=10205; UPDATE t2 SET b=4700 WHERE a=10206; UPDATE t2 SET b=42401 WHERE a=10207; UPDATE t2 SET b=73064 WHERE a=10208; UPDATE t2 SET b=18666 WHERE a=10209; UPDATE t2 SET b=84757 WHERE a=10210; UPDATE t2 SET b=26881 WHERE a=10211; UPDATE t2 SET b=42658 WHERE a=10212; UPDATE t2 SET b=92162 WHERE a=10213; UPDATE t2 SET b=87116 WHERE a=10214; UPDATE t2 SET b=43728 WHERE a=10215; UPDATE t2 SET b=12269 WHERE a=10216; UPDATE t2 SET b=72003 WHERE a=10217; UPDATE t2 SET b=634 WHERE a=10218; UPDATE t2 SET b=72006 WHERE a=10219; UPDATE t2 SET b=79507 WHERE a=10220; UPDATE t2 SET b=48484 WHERE a=10221; UPDATE t2 SET b=57089 WHERE a=10222; UPDATE t2 SET b=12006 WHERE a=10223; UPDATE t2 SET b=76661 WHERE a=10224; UPDATE t2 SET b=26818 WHERE a=10225; UPDATE t2 SET b=24511 WHERE a=10226; UPDATE t2 SET b=25491 WHERE a=10227; UPDATE t2 SET b=22578 WHERE a=10228; UPDATE t2 SET b=47968 WHERE a=10229; UPDATE t2 SET b=40459 WHERE a=10230; UPDATE t2 SET b=91871 WHERE a=10231; UPDATE t2 SET b=58161 WHERE a=10232; UPDATE t2 SET b=6765 WHERE a=10233; UPDATE t2 SET b=76996 WHERE a=10234; UPDATE t2 SET b=45944 WHERE a=10235; UPDATE t2 SET b=58226 WHERE a=10236; UPDATE t2 SET b=80501 WHERE a=10237; UPDATE t2 SET b=27931 WHERE a=10238; UPDATE t2 SET b=16210 WHERE a=10239; UPDATE t2 SET b=4632 WHERE a=10240; UPDATE t2 SET b=21288 WHERE a=10241; UPDATE t2 SET b=48933 WHERE a=10242; UPDATE t2 SET b=68249 WHERE a=10243; UPDATE t2 SET b=8097 WHERE a=10244; UPDATE t2 SET b=36151 WHERE a=10245; UPDATE t2 SET b=40210 WHERE a=10246; UPDATE t2 SET b=16009 WHERE a=10247; UPDATE t2 SET b=37789 WHERE a=10248; UPDATE t2 SET b=82 WHERE a=10249; UPDATE t2 SET b=69767 WHERE a=10250; UPDATE t2 SET b=84727 WHERE a=10251; UPDATE t2 SET b=70015 WHERE a=10252; UPDATE t2 SET b=90717 WHERE a=10253; UPDATE t2 SET b=16359 WHERE a=10254; UPDATE t2 SET b=86895 WHERE a=10255; UPDATE t2 SET b=64556 WHERE a=10256; UPDATE t2 SET b=16203 WHERE a=10257; UPDATE t2 SET b=7494 WHERE a=10258; UPDATE t2 SET b=60644 WHERE a=10259; UPDATE t2 SET b=89205 WHERE a=10260; UPDATE t2 SET b=44438 WHERE a=10261; UPDATE t2 SET b=13358 WHERE a=10262; UPDATE t2 SET b=32686 WHERE a=10263; UPDATE t2 SET b=91599 WHERE a=10264; UPDATE t2 SET b=61738 WHERE a=10265; UPDATE t2 SET b=70526 WHERE a=10266; UPDATE t2 SET b=73070 WHERE a=10267; UPDATE t2 SET b=94855 WHERE a=10268; UPDATE t2 SET b=10508 WHERE a=10269; UPDATE t2 SET b=2353 WHERE a=10270; UPDATE t2 SET b=15408 WHERE a=10271; UPDATE t2 SET b=58469 WHERE a=10272; UPDATE t2 SET b=64973 WHERE a=10273; UPDATE t2 SET b=39678 WHERE a=10274; UPDATE t2 SET b=54269 WHERE a=10275; UPDATE t2 SET b=2531 WHERE a=10276; UPDATE t2 SET b=65628 WHERE a=10277; UPDATE t2 SET b=40196 WHERE a=10278; UPDATE t2 SET b=38719 WHERE a=10279; UPDATE t2 SET b=75917 WHERE a=10280; UPDATE t2 SET b=36551 WHERE a=10281; UPDATE t2 SET b=16181 WHERE a=10282; UPDATE t2 SET b=66335 WHERE a=10283; UPDATE t2 SET b=79168 WHERE a=10284; UPDATE t2 SET b=61072 WHERE a=10285; UPDATE t2 SET b=86204 WHERE a=10286; UPDATE t2 SET b=61035 WHERE a=10287; UPDATE t2 SET b=58106 WHERE a=10288; UPDATE t2 SET b=15216 WHERE a=10289; UPDATE t2 SET b=45797 WHERE a=10290; UPDATE t2 SET b=69015 WHERE a=10291; UPDATE t2 SET b=71159 WHERE a=10292; UPDATE t2 SET b=54500 WHERE a=10293; UPDATE t2 SET b=17287 WHERE a=10294; UPDATE t2 SET b=12632 WHERE a=10295; UPDATE t2 SET b=24372 WHERE a=10296; UPDATE t2 SET b=66072 WHERE a=10297; UPDATE t2 SET b=43235 WHERE a=10298; UPDATE t2 SET b=72004 WHERE a=10299; UPDATE t2 SET b=22946 WHERE a=10300; UPDATE t2 SET b=45221 WHERE a=10301; UPDATE t2 SET b=62967 WHERE a=10302; UPDATE t2 SET b=70451 WHERE a=10303; UPDATE t2 SET b=77499 WHERE a=10304; UPDATE t2 SET b=12439 WHERE a=10305; UPDATE t2 SET b=50626 WHERE a=10306; UPDATE t2 SET b=81287 WHERE a=10307; UPDATE t2 SET b=82880 WHERE a=10308; UPDATE t2 SET b=81037 WHERE a=10309; UPDATE t2 SET b=75115 WHERE a=10310; UPDATE t2 SET b=38232 WHERE a=10311; UPDATE t2 SET b=53850 WHERE a=10312; UPDATE t2 SET b=68621 WHERE a=10313; UPDATE t2 SET b=67980 WHERE a=10314; UPDATE t2 SET b=25084 WHERE a=10315; UPDATE t2 SET b=97679 WHERE a=10316; UPDATE t2 SET b=72671 WHERE a=10317; UPDATE t2 SET b=23493 WHERE a=10318; UPDATE t2 SET b=83076 WHERE a=10319; UPDATE t2 SET b=38793 WHERE a=10320; UPDATE t2 SET b=15912 WHERE a=10321; UPDATE t2 SET b=50395 WHERE a=10322; UPDATE t2 SET b=97671 WHERE a=10323; UPDATE t2 SET b=14338 WHERE a=10324; UPDATE t2 SET b=12789 WHERE a=10325; UPDATE t2 SET b=90131 WHERE a=10326; UPDATE t2 SET b=5411 WHERE a=10327; UPDATE t2 SET b=32320 WHERE a=10328; UPDATE t2 SET b=5532 WHERE a=10329; UPDATE t2 SET b=98838 WHERE a=10330; UPDATE t2 SET b=7306 WHERE a=10331; UPDATE t2 SET b=15701 WHERE a=10332; UPDATE t2 SET b=69250 WHERE a=10333; UPDATE t2 SET b=67423 WHERE a=10334; UPDATE t2 SET b=36148 WHERE a=10335; UPDATE t2 SET b=28692 WHERE a=10336; UPDATE t2 SET b=68067 WHERE a=10337; UPDATE t2 SET b=67067 WHERE a=10338; UPDATE t2 SET b=84490 WHERE a=10339; UPDATE t2 SET b=65973 WHERE a=10340; UPDATE t2 SET b=56011 WHERE a=10341; UPDATE t2 SET b=53666 WHERE a=10342; UPDATE t2 SET b=77678 WHERE a=10343; UPDATE t2 SET b=20518 WHERE a=10344; UPDATE t2 SET b=57189 WHERE a=10345; UPDATE t2 SET b=48641 WHERE a=10346; UPDATE t2 SET b=88557 WHERE a=10347; UPDATE t2 SET b=51942 WHERE a=10348; UPDATE t2 SET b=30406 WHERE a=10349; UPDATE t2 SET b=65208 WHERE a=10350; UPDATE t2 SET b=37012 WHERE a=10351; UPDATE t2 SET b=37950 WHERE a=10352; UPDATE t2 SET b=31690 WHERE a=10353; UPDATE t2 SET b=33085 WHERE a=10354; UPDATE t2 SET b=99157 WHERE a=10355; UPDATE t2 SET b=56214 WHERE a=10356; UPDATE t2 SET b=91255 WHERE a=10357; UPDATE t2 SET b=45825 WHERE a=10358; UPDATE t2 SET b=24095 WHERE a=10359; UPDATE t2 SET b=59456 WHERE a=10360; UPDATE t2 SET b=49745 WHERE a=10361; UPDATE t2 SET b=85615 WHERE a=10362; UPDATE t2 SET b=25895 WHERE a=10363; UPDATE t2 SET b=63196 WHERE a=10364; UPDATE t2 SET b=92778 WHERE a=10365; UPDATE t2 SET b=23612 WHERE a=10366; UPDATE t2 SET b=53966 WHERE a=10367; UPDATE t2 SET b=84076 WHERE a=10368; UPDATE t2 SET b=13597 WHERE a=10369; UPDATE t2 SET b=77462 WHERE a=10370; UPDATE t2 SET b=44330 WHERE a=10371; UPDATE t2 SET b=7614 WHERE a=10372; UPDATE t2 SET b=20950 WHERE a=10373; UPDATE t2 SET b=61062 WHERE a=10374; UPDATE t2 SET b=56260 WHERE a=10375; UPDATE t2 SET b=13357 WHERE a=10376; UPDATE t2 SET b=16418 WHERE a=10377; UPDATE t2 SET b=28572 WHERE a=10378; UPDATE t2 SET b=98521 WHERE a=10379; UPDATE t2 SET b=62599 WHERE a=10380; UPDATE t2 SET b=91846 WHERE a=10381; UPDATE t2 SET b=96971 WHERE a=10382; UPDATE t2 SET b=17279 WHERE a=10383; UPDATE t2 SET b=50693 WHERE a=10384; UPDATE t2 SET b=26438 WHERE a=10385; UPDATE t2 SET b=14390 WHERE a=10386; UPDATE t2 SET b=43899 WHERE a=10387; UPDATE t2 SET b=56079 WHERE a=10388; UPDATE t2 SET b=50642 WHERE a=10389; UPDATE t2 SET b=78765 WHERE a=10390; UPDATE t2 SET b=28487 WHERE a=10391; UPDATE t2 SET b=20634 WHERE a=10392; UPDATE t2 SET b=53957 WHERE a=10393; UPDATE t2 SET b=32126 WHERE a=10394; UPDATE t2 SET b=90039 WHERE a=10395; UPDATE t2 SET b=12020 WHERE a=10396; UPDATE t2 SET b=64882 WHERE a=10397; UPDATE t2 SET b=49286 WHERE a=10398; UPDATE t2 SET b=6287 WHERE a=10399; UPDATE t2 SET b=92238 WHERE a=10400; UPDATE t2 SET b=11358 WHERE a=10401; UPDATE t2 SET b=17298 WHERE a=10402; UPDATE t2 SET b=31766 WHERE a=10403; UPDATE t2 SET b=78600 WHERE a=10404; UPDATE t2 SET b=1538 WHERE a=10405; UPDATE t2 SET b=75925 WHERE a=10406; UPDATE t2 SET b=25496 WHERE a=10407; UPDATE t2 SET b=75140 WHERE a=10408; UPDATE t2 SET b=73139 WHERE a=10409; UPDATE t2 SET b=99662 WHERE a=10410; UPDATE t2 SET b=65575 WHERE a=10411; UPDATE t2 SET b=73928 WHERE a=10412; UPDATE t2 SET b=88389 WHERE a=10413; UPDATE t2 SET b=98721 WHERE a=10414; UPDATE t2 SET b=40689 WHERE a=10415; UPDATE t2 SET b=19354 WHERE a=10416; UPDATE t2 SET b=10384 WHERE a=10417; UPDATE t2 SET b=40025 WHERE a=10418; UPDATE t2 SET b=70591 WHERE a=10419; UPDATE t2 SET b=60726 WHERE a=10420; UPDATE t2 SET b=95607 WHERE a=10421; UPDATE t2 SET b=50643 WHERE a=10422; UPDATE t2 SET b=2586 WHERE a=10423; UPDATE t2 SET b=86374 WHERE a=10424; UPDATE t2 SET b=87616 WHERE a=10425; UPDATE t2 SET b=14855 WHERE a=10426; UPDATE t2 SET b=63789 WHERE a=10427; UPDATE t2 SET b=91519 WHERE a=10428; UPDATE t2 SET b=578 WHERE a=10429; UPDATE t2 SET b=43455 WHERE a=10430; UPDATE t2 SET b=12159 WHERE a=10431; UPDATE t2 SET b=35602 WHERE a=10432; UPDATE t2 SET b=52238 WHERE a=10433; UPDATE t2 SET b=73799 WHERE a=10434; UPDATE t2 SET b=9076 WHERE a=10435; UPDATE t2 SET b=16546 WHERE a=10436; UPDATE t2 SET b=11361 WHERE a=10437; UPDATE t2 SET b=97441 WHERE a=10438; UPDATE t2 SET b=2592 WHERE a=10439; UPDATE t2 SET b=81480 WHERE a=10440; UPDATE t2 SET b=64951 WHERE a=10441; UPDATE t2 SET b=19671 WHERE a=10442; UPDATE t2 SET b=4253 WHERE a=10443; UPDATE t2 SET b=80713 WHERE a=10444; UPDATE t2 SET b=32369 WHERE a=10445; UPDATE t2 SET b=3011 WHERE a=10446; UPDATE t2 SET b=66563 WHERE a=10447; UPDATE t2 SET b=84544 WHERE a=10448; UPDATE t2 SET b=73408 WHERE a=10449; UPDATE t2 SET b=96082 WHERE a=10450; UPDATE t2 SET b=2461 WHERE a=10451; UPDATE t2 SET b=71387 WHERE a=10452; UPDATE t2 SET b=86286 WHERE a=10453; UPDATE t2 SET b=73229 WHERE a=10454; UPDATE t2 SET b=67030 WHERE a=10455; UPDATE t2 SET b=33161 WHERE a=10456; UPDATE t2 SET b=75897 WHERE a=10457; UPDATE t2 SET b=37147 WHERE a=10458; UPDATE t2 SET b=27735 WHERE a=10459; UPDATE t2 SET b=47902 WHERE a=10460; UPDATE t2 SET b=93978 WHERE a=10461; UPDATE t2 SET b=39315 WHERE a=10462; UPDATE t2 SET b=76627 WHERE a=10463; UPDATE t2 SET b=47691 WHERE a=10464; UPDATE t2 SET b=44365 WHERE a=10465; UPDATE t2 SET b=2318 WHERE a=10466; UPDATE t2 SET b=40431 WHERE a=10467; UPDATE t2 SET b=86826 WHERE a=10468; UPDATE t2 SET b=73256 WHERE a=10469; UPDATE t2 SET b=9118 WHERE a=10470; UPDATE t2 SET b=87618 WHERE a=10471; UPDATE t2 SET b=22960 WHERE a=10472; UPDATE t2 SET b=92218 WHERE a=10473; UPDATE t2 SET b=64206 WHERE a=10474; UPDATE t2 SET b=39726 WHERE a=10475; UPDATE t2 SET b=95289 WHERE a=10476; UPDATE t2 SET b=91669 WHERE a=10477; UPDATE t2 SET b=45722 WHERE a=10478; UPDATE t2 SET b=12831 WHERE a=10479; UPDATE t2 SET b=56806 WHERE a=10480; UPDATE t2 SET b=27322 WHERE a=10481; UPDATE t2 SET b=97654 WHERE a=10482; UPDATE t2 SET b=44497 WHERE a=10483; UPDATE t2 SET b=1931 WHERE a=10484; UPDATE t2 SET b=95353 WHERE a=10485; UPDATE t2 SET b=2055 WHERE a=10486; UPDATE t2 SET b=44168 WHERE a=10487; UPDATE t2 SET b=310 WHERE a=10488; UPDATE t2 SET b=39968 WHERE a=10489; UPDATE t2 SET b=47886 WHERE a=10490; UPDATE t2 SET b=39879 WHERE a=10491; UPDATE t2 SET b=97517 WHERE a=10492; UPDATE t2 SET b=85299 WHERE a=10493; UPDATE t2 SET b=88501 WHERE a=10494; UPDATE t2 SET b=29396 WHERE a=10495; UPDATE t2 SET b=49206 WHERE a=10496; UPDATE t2 SET b=86397 WHERE a=10497; UPDATE t2 SET b=72628 WHERE a=10498; UPDATE t2 SET b=7395 WHERE a=10499; UPDATE t2 SET b=76183 WHERE a=10500; UPDATE t2 SET b=51056 WHERE a=10501; UPDATE t2 SET b=49610 WHERE a=10502; UPDATE t2 SET b=79296 WHERE a=10503; UPDATE t2 SET b=66906 WHERE a=10504; UPDATE t2 SET b=93375 WHERE a=10505; UPDATE t2 SET b=4082 WHERE a=10506; UPDATE t2 SET b=41800 WHERE a=10507; UPDATE t2 SET b=93114 WHERE a=10508; UPDATE t2 SET b=93633 WHERE a=10509; UPDATE t2 SET b=55545 WHERE a=10510; UPDATE t2 SET b=43448 WHERE a=10511; UPDATE t2 SET b=72679 WHERE a=10512; UPDATE t2 SET b=84327 WHERE a=10513; UPDATE t2 SET b=521 WHERE a=10514; UPDATE t2 SET b=87289 WHERE a=10515; UPDATE t2 SET b=19810 WHERE a=10516; UPDATE t2 SET b=62812 WHERE a=10517; UPDATE t2 SET b=59141 WHERE a=10518; UPDATE t2 SET b=16997 WHERE a=10519; UPDATE t2 SET b=47999 WHERE a=10520; UPDATE t2 SET b=51405 WHERE a=10521; UPDATE t2 SET b=98970 WHERE a=10522; UPDATE t2 SET b=24410 WHERE a=10523; UPDATE t2 SET b=45804 WHERE a=10524; UPDATE t2 SET b=5918 WHERE a=10525; UPDATE t2 SET b=33188 WHERE a=10526; UPDATE t2 SET b=24018 WHERE a=10527; UPDATE t2 SET b=24056 WHERE a=10528; UPDATE t2 SET b=98365 WHERE a=10529; UPDATE t2 SET b=57205 WHERE a=10530; UPDATE t2 SET b=91381 WHERE a=10531; UPDATE t2 SET b=96729 WHERE a=10532; UPDATE t2 SET b=20628 WHERE a=10533; UPDATE t2 SET b=85734 WHERE a=10534; UPDATE t2 SET b=97818 WHERE a=10535; UPDATE t2 SET b=30656 WHERE a=10536; UPDATE t2 SET b=16726 WHERE a=10537; UPDATE t2 SET b=5979 WHERE a=10538; UPDATE t2 SET b=64701 WHERE a=10539; UPDATE t2 SET b=74328 WHERE a=10540; UPDATE t2 SET b=59831 WHERE a=10541; UPDATE t2 SET b=97985 WHERE a=10542; UPDATE t2 SET b=11882 WHERE a=10543; UPDATE t2 SET b=62201 WHERE a=10544; UPDATE t2 SET b=84897 WHERE a=10545; UPDATE t2 SET b=79978 WHERE a=10546; UPDATE t2 SET b=35935 WHERE a=10547; UPDATE t2 SET b=48855 WHERE a=10548; UPDATE t2 SET b=30054 WHERE a=10549; UPDATE t2 SET b=65079 WHERE a=10550; UPDATE t2 SET b=69728 WHERE a=10551; UPDATE t2 SET b=2399 WHERE a=10552; UPDATE t2 SET b=93568 WHERE a=10553; UPDATE t2 SET b=90567 WHERE a=10554; UPDATE t2 SET b=87430 WHERE a=10555; UPDATE t2 SET b=64915 WHERE a=10556; UPDATE t2 SET b=41917 WHERE a=10557; UPDATE t2 SET b=38339 WHERE a=10558; UPDATE t2 SET b=93274 WHERE a=10559; UPDATE t2 SET b=85920 WHERE a=10560; UPDATE t2 SET b=36114 WHERE a=10561; UPDATE t2 SET b=92552 WHERE a=10562; UPDATE t2 SET b=33732 WHERE a=10563; UPDATE t2 SET b=66700 WHERE a=10564; UPDATE t2 SET b=25762 WHERE a=10565; UPDATE t2 SET b=17041 WHERE a=10566; UPDATE t2 SET b=85804 WHERE a=10567; UPDATE t2 SET b=61857 WHERE a=10568; UPDATE t2 SET b=14070 WHERE a=10569; UPDATE t2 SET b=19654 WHERE a=10570; UPDATE t2 SET b=2455 WHERE a=10571; UPDATE t2 SET b=59825 WHERE a=10572; UPDATE t2 SET b=19674 WHERE a=10573; UPDATE t2 SET b=37163 WHERE a=10574; UPDATE t2 SET b=1620 WHERE a=10575; UPDATE t2 SET b=6715 WHERE a=10576; UPDATE t2 SET b=81194 WHERE a=10577; UPDATE t2 SET b=31896 WHERE a=10578; UPDATE t2 SET b=3026 WHERE a=10579; UPDATE t2 SET b=12603 WHERE a=10580; UPDATE t2 SET b=68278 WHERE a=10581; UPDATE t2 SET b=16454 WHERE a=10582; UPDATE t2 SET b=17938 WHERE a=10583; UPDATE t2 SET b=37554 WHERE a=10584; UPDATE t2 SET b=46731 WHERE a=10585; UPDATE t2 SET b=31098 WHERE a=10586; UPDATE t2 SET b=28911 WHERE a=10587; UPDATE t2 SET b=74219 WHERE a=10588; UPDATE t2 SET b=82598 WHERE a=10589; UPDATE t2 SET b=76698 WHERE a=10590; UPDATE t2 SET b=20328 WHERE a=10591; UPDATE t2 SET b=55165 WHERE a=10592; UPDATE t2 SET b=52728 WHERE a=10593; UPDATE t2 SET b=10522 WHERE a=10594; UPDATE t2 SET b=9262 WHERE a=10595; UPDATE t2 SET b=47486 WHERE a=10596; UPDATE t2 SET b=23518 WHERE a=10597; UPDATE t2 SET b=87423 WHERE a=10598; UPDATE t2 SET b=41513 WHERE a=10599; UPDATE t2 SET b=70554 WHERE a=10600; UPDATE t2 SET b=53464 WHERE a=10601; UPDATE t2 SET b=93558 WHERE a=10602; UPDATE t2 SET b=14823 WHERE a=10603; UPDATE t2 SET b=59729 WHERE a=10604; UPDATE t2 SET b=27023 WHERE a=10605; UPDATE t2 SET b=18189 WHERE a=10606; UPDATE t2 SET b=68823 WHERE a=10607; UPDATE t2 SET b=20432 WHERE a=10608; UPDATE t2 SET b=92987 WHERE a=10609; UPDATE t2 SET b=85268 WHERE a=10610; UPDATE t2 SET b=5612 WHERE a=10611; UPDATE t2 SET b=6586 WHERE a=10612; UPDATE t2 SET b=15723 WHERE a=10613; UPDATE t2 SET b=95222 WHERE a=10614; UPDATE t2 SET b=66603 WHERE a=10615; UPDATE t2 SET b=61102 WHERE a=10616; UPDATE t2 SET b=23472 WHERE a=10617; UPDATE t2 SET b=23852 WHERE a=10618; UPDATE t2 SET b=98347 WHERE a=10619; UPDATE t2 SET b=4518 WHERE a=10620; UPDATE t2 SET b=64005 WHERE a=10621; UPDATE t2 SET b=69810 WHERE a=10622; UPDATE t2 SET b=65120 WHERE a=10623; UPDATE t2 SET b=92879 WHERE a=10624; UPDATE t2 SET b=25763 WHERE a=10625; UPDATE t2 SET b=9774 WHERE a=10626; UPDATE t2 SET b=87492 WHERE a=10627; UPDATE t2 SET b=10788 WHERE a=10628; UPDATE t2 SET b=51917 WHERE a=10629; UPDATE t2 SET b=35643 WHERE a=10630; UPDATE t2 SET b=46667 WHERE a=10631; UPDATE t2 SET b=46688 WHERE a=10632; UPDATE t2 SET b=13168 WHERE a=10633; UPDATE t2 SET b=58668 WHERE a=10634; UPDATE t2 SET b=82393 WHERE a=10635; UPDATE t2 SET b=330 WHERE a=10636; UPDATE t2 SET b=78801 WHERE a=10637; UPDATE t2 SET b=21283 WHERE a=10638; UPDATE t2 SET b=51753 WHERE a=10639; UPDATE t2 SET b=97809 WHERE a=10640; UPDATE t2 SET b=23179 WHERE a=10641; UPDATE t2 SET b=26682 WHERE a=10642; UPDATE t2 SET b=53061 WHERE a=10643; UPDATE t2 SET b=72403 WHERE a=10644; UPDATE t2 SET b=64882 WHERE a=10645; UPDATE t2 SET b=80787 WHERE a=10646; UPDATE t2 SET b=1790 WHERE a=10647; UPDATE t2 SET b=83893 WHERE a=10648; UPDATE t2 SET b=77626 WHERE a=10649; UPDATE t2 SET b=71054 WHERE a=10650; UPDATE t2 SET b=46083 WHERE a=10651; UPDATE t2 SET b=59494 WHERE a=10652; UPDATE t2 SET b=57647 WHERE a=10653; UPDATE t2 SET b=69166 WHERE a=10654; UPDATE t2 SET b=62455 WHERE a=10655; UPDATE t2 SET b=16522 WHERE a=10656; UPDATE t2 SET b=34325 WHERE a=10657; UPDATE t2 SET b=61572 WHERE a=10658; UPDATE t2 SET b=87842 WHERE a=10659; UPDATE t2 SET b=21471 WHERE a=10660; UPDATE t2 SET b=6451 WHERE a=10661; UPDATE t2 SET b=52265 WHERE a=10662; UPDATE t2 SET b=56032 WHERE a=10663; UPDATE t2 SET b=79238 WHERE a=10664; UPDATE t2 SET b=76542 WHERE a=10665; UPDATE t2 SET b=25053 WHERE a=10666; UPDATE t2 SET b=78116 WHERE a=10667; UPDATE t2 SET b=2014 WHERE a=10668; UPDATE t2 SET b=41488 WHERE a=10669; UPDATE t2 SET b=44200 WHERE a=10670; UPDATE t2 SET b=56891 WHERE a=10671; UPDATE t2 SET b=73780 WHERE a=10672; UPDATE t2 SET b=11588 WHERE a=10673; UPDATE t2 SET b=70299 WHERE a=10674; UPDATE t2 SET b=74309 WHERE a=10675; UPDATE t2 SET b=23446 WHERE a=10676; UPDATE t2 SET b=15769 WHERE a=10677; UPDATE t2 SET b=88200 WHERE a=10678; UPDATE t2 SET b=39045 WHERE a=10679; UPDATE t2 SET b=65446 WHERE a=10680; UPDATE t2 SET b=23488 WHERE a=10681; UPDATE t2 SET b=84653 WHERE a=10682; UPDATE t2 SET b=40456 WHERE a=10683; UPDATE t2 SET b=69025 WHERE a=10684; UPDATE t2 SET b=12171 WHERE a=10685; UPDATE t2 SET b=85653 WHERE a=10686; UPDATE t2 SET b=13193 WHERE a=10687; UPDATE t2 SET b=31793 WHERE a=10688; UPDATE t2 SET b=55272 WHERE a=10689; UPDATE t2 SET b=62570 WHERE a=10690; UPDATE t2 SET b=1194 WHERE a=10691; UPDATE t2 SET b=38530 WHERE a=10692; UPDATE t2 SET b=60858 WHERE a=10693; UPDATE t2 SET b=18284 WHERE a=10694; UPDATE t2 SET b=62597 WHERE a=10695; UPDATE t2 SET b=70290 WHERE a=10696; UPDATE t2 SET b=61559 WHERE a=10697; UPDATE t2 SET b=94825 WHERE a=10698; UPDATE t2 SET b=34798 WHERE a=10699; UPDATE t2 SET b=5883 WHERE a=10700; UPDATE t2 SET b=1810 WHERE a=10701; UPDATE t2 SET b=58687 WHERE a=10702; UPDATE t2 SET b=44024 WHERE a=10703; UPDATE t2 SET b=8247 WHERE a=10704; UPDATE t2 SET b=20288 WHERE a=10705; UPDATE t2 SET b=75846 WHERE a=10706; UPDATE t2 SET b=72649 WHERE a=10707; UPDATE t2 SET b=23182 WHERE a=10708; UPDATE t2 SET b=49459 WHERE a=10709; UPDATE t2 SET b=1989 WHERE a=10710; UPDATE t2 SET b=75852 WHERE a=10711; UPDATE t2 SET b=39665 WHERE a=10712; UPDATE t2 SET b=92972 WHERE a=10713; UPDATE t2 SET b=21644 WHERE a=10714; UPDATE t2 SET b=62062 WHERE a=10715; UPDATE t2 SET b=32304 WHERE a=10716; UPDATE t2 SET b=14559 WHERE a=10717; UPDATE t2 SET b=16286 WHERE a=10718; UPDATE t2 SET b=1737 WHERE a=10719; UPDATE t2 SET b=46110 WHERE a=10720; UPDATE t2 SET b=65149 WHERE a=10721; UPDATE t2 SET b=28912 WHERE a=10722; UPDATE t2 SET b=10475 WHERE a=10723; UPDATE t2 SET b=16141 WHERE a=10724; UPDATE t2 SET b=42358 WHERE a=10725; UPDATE t2 SET b=62704 WHERE a=10726; UPDATE t2 SET b=63144 WHERE a=10727; UPDATE t2 SET b=31366 WHERE a=10728; UPDATE t2 SET b=14741 WHERE a=10729; UPDATE t2 SET b=9864 WHERE a=10730; UPDATE t2 SET b=6803 WHERE a=10731; UPDATE t2 SET b=9928 WHERE a=10732; UPDATE t2 SET b=1561 WHERE a=10733; UPDATE t2 SET b=86931 WHERE a=10734; UPDATE t2 SET b=3927 WHERE a=10735; UPDATE t2 SET b=36395 WHERE a=10736; UPDATE t2 SET b=50256 WHERE a=10737; UPDATE t2 SET b=18796 WHERE a=10738; UPDATE t2 SET b=43564 WHERE a=10739; UPDATE t2 SET b=28568 WHERE a=10740; UPDATE t2 SET b=42138 WHERE a=10741; UPDATE t2 SET b=63946 WHERE a=10742; UPDATE t2 SET b=49595 WHERE a=10743; UPDATE t2 SET b=92891 WHERE a=10744; UPDATE t2 SET b=31564 WHERE a=10745; UPDATE t2 SET b=21499 WHERE a=10746; UPDATE t2 SET b=29635 WHERE a=10747; UPDATE t2 SET b=72108 WHERE a=10748; UPDATE t2 SET b=17618 WHERE a=10749; UPDATE t2 SET b=13098 WHERE a=10750; UPDATE t2 SET b=44529 WHERE a=10751; UPDATE t2 SET b=76155 WHERE a=10752; UPDATE t2 SET b=24805 WHERE a=10753; UPDATE t2 SET b=61105 WHERE a=10754; UPDATE t2 SET b=73995 WHERE a=10755; UPDATE t2 SET b=56080 WHERE a=10756; UPDATE t2 SET b=10342 WHERE a=10757; UPDATE t2 SET b=12943 WHERE a=10758; UPDATE t2 SET b=18810 WHERE a=10759; UPDATE t2 SET b=97797 WHERE a=10760; UPDATE t2 SET b=15095 WHERE a=10761; UPDATE t2 SET b=93490 WHERE a=10762; UPDATE t2 SET b=53193 WHERE a=10763; UPDATE t2 SET b=7129 WHERE a=10764; UPDATE t2 SET b=71196 WHERE a=10765; UPDATE t2 SET b=98345 WHERE a=10766; UPDATE t2 SET b=93854 WHERE a=10767; UPDATE t2 SET b=74409 WHERE a=10768; UPDATE t2 SET b=85256 WHERE a=10769; UPDATE t2 SET b=45558 WHERE a=10770; UPDATE t2 SET b=55624 WHERE a=10771; UPDATE t2 SET b=24071 WHERE a=10772; UPDATE t2 SET b=22380 WHERE a=10773; UPDATE t2 SET b=48446 WHERE a=10774; UPDATE t2 SET b=25748 WHERE a=10775; UPDATE t2 SET b=58425 WHERE a=10776; UPDATE t2 SET b=30341 WHERE a=10777; UPDATE t2 SET b=84097 WHERE a=10778; UPDATE t2 SET b=8865 WHERE a=10779; UPDATE t2 SET b=45514 WHERE a=10780; UPDATE t2 SET b=10953 WHERE a=10781; UPDATE t2 SET b=61875 WHERE a=10782; UPDATE t2 SET b=78468 WHERE a=10783; UPDATE t2 SET b=8641 WHERE a=10784; UPDATE t2 SET b=54051 WHERE a=10785; UPDATE t2 SET b=92026 WHERE a=10786; UPDATE t2 SET b=91629 WHERE a=10787; UPDATE t2 SET b=27319 WHERE a=10788; UPDATE t2 SET b=27807 WHERE a=10789; UPDATE t2 SET b=67139 WHERE a=10790; UPDATE t2 SET b=93683 WHERE a=10791; UPDATE t2 SET b=94827 WHERE a=10792; UPDATE t2 SET b=86007 WHERE a=10793; UPDATE t2 SET b=93813 WHERE a=10794; UPDATE t2 SET b=78538 WHERE a=10795; UPDATE t2 SET b=18374 WHERE a=10796; UPDATE t2 SET b=69660 WHERE a=10797; UPDATE t2 SET b=53908 WHERE a=10798; UPDATE t2 SET b=17110 WHERE a=10799; UPDATE t2 SET b=60072 WHERE a=10800; UPDATE t2 SET b=3826 WHERE a=10801; UPDATE t2 SET b=52985 WHERE a=10802; UPDATE t2 SET b=67741 WHERE a=10803; UPDATE t2 SET b=94244 WHERE a=10804; UPDATE t2 SET b=76336 WHERE a=10805; UPDATE t2 SET b=1807 WHERE a=10806; UPDATE t2 SET b=80460 WHERE a=10807; UPDATE t2 SET b=16502 WHERE a=10808; UPDATE t2 SET b=60671 WHERE a=10809; UPDATE t2 SET b=11774 WHERE a=10810; UPDATE t2 SET b=24206 WHERE a=10811; UPDATE t2 SET b=31584 WHERE a=10812; UPDATE t2 SET b=37427 WHERE a=10813; UPDATE t2 SET b=90032 WHERE a=10814; UPDATE t2 SET b=61145 WHERE a=10815; UPDATE t2 SET b=60754 WHERE a=10816; UPDATE t2 SET b=18746 WHERE a=10817; UPDATE t2 SET b=69910 WHERE a=10818; UPDATE t2 SET b=73881 WHERE a=10819; UPDATE t2 SET b=73704 WHERE a=10820; UPDATE t2 SET b=70213 WHERE a=10821; UPDATE t2 SET b=84778 WHERE a=10822; UPDATE t2 SET b=35 WHERE a=10823; UPDATE t2 SET b=78438 WHERE a=10824; UPDATE t2 SET b=91405 WHERE a=10825; UPDATE t2 SET b=24097 WHERE a=10826; UPDATE t2 SET b=31815 WHERE a=10827; UPDATE t2 SET b=20433 WHERE a=10828; UPDATE t2 SET b=27745 WHERE a=10829; UPDATE t2 SET b=76802 WHERE a=10830; UPDATE t2 SET b=12 WHERE a=10831; UPDATE t2 SET b=74156 WHERE a=10832; UPDATE t2 SET b=1527 WHERE a=10833; UPDATE t2 SET b=18260 WHERE a=10834; UPDATE t2 SET b=90284 WHERE a=10835; UPDATE t2 SET b=36438 WHERE a=10836; UPDATE t2 SET b=57482 WHERE a=10837; UPDATE t2 SET b=41640 WHERE a=10838; UPDATE t2 SET b=51339 WHERE a=10839; UPDATE t2 SET b=19648 WHERE a=10840; UPDATE t2 SET b=24881 WHERE a=10841; UPDATE t2 SET b=1276 WHERE a=10842; UPDATE t2 SET b=99712 WHERE a=10843; UPDATE t2 SET b=89450 WHERE a=10844; UPDATE t2 SET b=17354 WHERE a=10845; UPDATE t2 SET b=77791 WHERE a=10846; UPDATE t2 SET b=640 WHERE a=10847; UPDATE t2 SET b=59919 WHERE a=10848; UPDATE t2 SET b=75032 WHERE a=10849; UPDATE t2 SET b=13004 WHERE a=10850; UPDATE t2 SET b=5715 WHERE a=10851; UPDATE t2 SET b=29476 WHERE a=10852; UPDATE t2 SET b=30570 WHERE a=10853; UPDATE t2 SET b=10161 WHERE a=10854; UPDATE t2 SET b=19091 WHERE a=10855; UPDATE t2 SET b=20592 WHERE a=10856; UPDATE t2 SET b=28446 WHERE a=10857; UPDATE t2 SET b=3970 WHERE a=10858; UPDATE t2 SET b=59308 WHERE a=10859; UPDATE t2 SET b=15314 WHERE a=10860; UPDATE t2 SET b=46362 WHERE a=10861; UPDATE t2 SET b=87026 WHERE a=10862; UPDATE t2 SET b=92804 WHERE a=10863; UPDATE t2 SET b=8010 WHERE a=10864; UPDATE t2 SET b=91687 WHERE a=10865; UPDATE t2 SET b=72598 WHERE a=10866; UPDATE t2 SET b=74282 WHERE a=10867; UPDATE t2 SET b=86156 WHERE a=10868; UPDATE t2 SET b=74912 WHERE a=10869; UPDATE t2 SET b=10875 WHERE a=10870; UPDATE t2 SET b=95509 WHERE a=10871; UPDATE t2 SET b=30369 WHERE a=10872; UPDATE t2 SET b=61362 WHERE a=10873; UPDATE t2 SET b=35896 WHERE a=10874; UPDATE t2 SET b=70937 WHERE a=10875; UPDATE t2 SET b=51031 WHERE a=10876; UPDATE t2 SET b=54640 WHERE a=10877; UPDATE t2 SET b=36335 WHERE a=10878; UPDATE t2 SET b=70080 WHERE a=10879; UPDATE t2 SET b=24973 WHERE a=10880; UPDATE t2 SET b=58653 WHERE a=10881; UPDATE t2 SET b=17184 WHERE a=10882; UPDATE t2 SET b=17551 WHERE a=10883; UPDATE t2 SET b=85602 WHERE a=10884; UPDATE t2 SET b=55755 WHERE a=10885; UPDATE t2 SET b=51344 WHERE a=10886; UPDATE t2 SET b=20746 WHERE a=10887; UPDATE t2 SET b=13840 WHERE a=10888; UPDATE t2 SET b=32610 WHERE a=10889; UPDATE t2 SET b=78372 WHERE a=10890; UPDATE t2 SET b=29874 WHERE a=10891; UPDATE t2 SET b=82183 WHERE a=10892; UPDATE t2 SET b=87832 WHERE a=10893; UPDATE t2 SET b=51822 WHERE a=10894; UPDATE t2 SET b=74540 WHERE a=10895; UPDATE t2 SET b=33231 WHERE a=10896; UPDATE t2 SET b=33651 WHERE a=10897; UPDATE t2 SET b=6244 WHERE a=10898; UPDATE t2 SET b=28580 WHERE a=10899; UPDATE t2 SET b=38615 WHERE a=10900; UPDATE t2 SET b=89994 WHERE a=10901; UPDATE t2 SET b=65430 WHERE a=10902; UPDATE t2 SET b=15082 WHERE a=10903; UPDATE t2 SET b=70600 WHERE a=10904; UPDATE t2 SET b=48247 WHERE a=10905; UPDATE t2 SET b=10848 WHERE a=10906; UPDATE t2 SET b=47068 WHERE a=10907; UPDATE t2 SET b=34226 WHERE a=10908; UPDATE t2 SET b=1250 WHERE a=10909; UPDATE t2 SET b=10257 WHERE a=10910; UPDATE t2 SET b=87569 WHERE a=10911; UPDATE t2 SET b=69856 WHERE a=10912; UPDATE t2 SET b=69027 WHERE a=10913; UPDATE t2 SET b=31742 WHERE a=10914; UPDATE t2 SET b=48570 WHERE a=10915; UPDATE t2 SET b=42141 WHERE a=10916; UPDATE t2 SET b=84990 WHERE a=10917; UPDATE t2 SET b=14172 WHERE a=10918; UPDATE t2 SET b=96982 WHERE a=10919; UPDATE t2 SET b=38134 WHERE a=10920; UPDATE t2 SET b=3842 WHERE a=10921; UPDATE t2 SET b=43841 WHERE a=10922; UPDATE t2 SET b=96412 WHERE a=10923; UPDATE t2 SET b=88367 WHERE a=10924; UPDATE t2 SET b=56791 WHERE a=10925; UPDATE t2 SET b=93613 WHERE a=10926; UPDATE t2 SET b=90569 WHERE a=10927; UPDATE t2 SET b=10705 WHERE a=10928; UPDATE t2 SET b=41376 WHERE a=10929; UPDATE t2 SET b=21539 WHERE a=10930; UPDATE t2 SET b=41231 WHERE a=10931; UPDATE t2 SET b=6744 WHERE a=10932; UPDATE t2 SET b=75375 WHERE a=10933; UPDATE t2 SET b=39638 WHERE a=10934; UPDATE t2 SET b=65141 WHERE a=10935; UPDATE t2 SET b=12677 WHERE a=10936; UPDATE t2 SET b=41796 WHERE a=10937; UPDATE t2 SET b=10906 WHERE a=10938; UPDATE t2 SET b=76162 WHERE a=10939; UPDATE t2 SET b=96431 WHERE a=10940; UPDATE t2 SET b=94185 WHERE a=10941; UPDATE t2 SET b=86673 WHERE a=10942; UPDATE t2 SET b=81239 WHERE a=10943; UPDATE t2 SET b=67838 WHERE a=10944; UPDATE t2 SET b=59056 WHERE a=10945; UPDATE t2 SET b=22542 WHERE a=10946; UPDATE t2 SET b=69074 WHERE a=10947; UPDATE t2 SET b=28368 WHERE a=10948; UPDATE t2 SET b=39501 WHERE a=10949; UPDATE t2 SET b=22881 WHERE a=10950; UPDATE t2 SET b=87127 WHERE a=10951; UPDATE t2 SET b=25328 WHERE a=10952; UPDATE t2 SET b=96662 WHERE a=10953; UPDATE t2 SET b=41582 WHERE a=10954; UPDATE t2 SET b=29722 WHERE a=10955; UPDATE t2 SET b=98186 WHERE a=10956; UPDATE t2 SET b=32204 WHERE a=10957; UPDATE t2 SET b=92640 WHERE a=10958; UPDATE t2 SET b=42490 WHERE a=10959; UPDATE t2 SET b=5634 WHERE a=10960; UPDATE t2 SET b=93209 WHERE a=10961; UPDATE t2 SET b=4550 WHERE a=10962; UPDATE t2 SET b=87249 WHERE a=10963; UPDATE t2 SET b=21656 WHERE a=10964; UPDATE t2 SET b=95213 WHERE a=10965; UPDATE t2 SET b=43995 WHERE a=10966; UPDATE t2 SET b=12817 WHERE a=10967; UPDATE t2 SET b=92419 WHERE a=10968; UPDATE t2 SET b=20279 WHERE a=10969; UPDATE t2 SET b=66474 WHERE a=10970; UPDATE t2 SET b=48538 WHERE a=10971; UPDATE t2 SET b=56422 WHERE a=10972; UPDATE t2 SET b=14489 WHERE a=10973; UPDATE t2 SET b=40218 WHERE a=10974; UPDATE t2 SET b=87102 WHERE a=10975; UPDATE t2 SET b=58018 WHERE a=10976; UPDATE t2 SET b=13225 WHERE a=10977; UPDATE t2 SET b=61099 WHERE a=10978; UPDATE t2 SET b=14480 WHERE a=10979; UPDATE t2 SET b=68648 WHERE a=10980; UPDATE t2 SET b=85820 WHERE a=10981; UPDATE t2 SET b=49563 WHERE a=10982; UPDATE t2 SET b=95934 WHERE a=10983; UPDATE t2 SET b=47564 WHERE a=10984; UPDATE t2 SET b=77767 WHERE a=10985; UPDATE t2 SET b=34507 WHERE a=10986; UPDATE t2 SET b=31611 WHERE a=10987; UPDATE t2 SET b=10806 WHERE a=10988; UPDATE t2 SET b=703 WHERE a=10989; UPDATE t2 SET b=93465 WHERE a=10990; UPDATE t2 SET b=32216 WHERE a=10991; UPDATE t2 SET b=38508 WHERE a=10992; UPDATE t2 SET b=64257 WHERE a=10993; UPDATE t2 SET b=11516 WHERE a=10994; UPDATE t2 SET b=33752 WHERE a=10995; UPDATE t2 SET b=55903 WHERE a=10996; UPDATE t2 SET b=31339 WHERE a=10997; UPDATE t2 SET b=51523 WHERE a=10998; UPDATE t2 SET b=64531 WHERE a=10999; UPDATE t2 SET b=26545 WHERE a=11000; UPDATE t2 SET b=59583 WHERE a=11001; UPDATE t2 SET b=77673 WHERE a=11002; UPDATE t2 SET b=16271 WHERE a=11003; UPDATE t2 SET b=50509 WHERE a=11004; UPDATE t2 SET b=69266 WHERE a=11005; UPDATE t2 SET b=76108 WHERE a=11006; UPDATE t2 SET b=28200 WHERE a=11007; UPDATE t2 SET b=80532 WHERE a=11008; UPDATE t2 SET b=74790 WHERE a=11009; UPDATE t2 SET b=15779 WHERE a=11010; UPDATE t2 SET b=76762 WHERE a=11011; UPDATE t2 SET b=64985 WHERE a=11012; UPDATE t2 SET b=51788 WHERE a=11013; UPDATE t2 SET b=22005 WHERE a=11014; UPDATE t2 SET b=39206 WHERE a=11015; UPDATE t2 SET b=9926 WHERE a=11016; UPDATE t2 SET b=82223 WHERE a=11017; UPDATE t2 SET b=70970 WHERE a=11018; UPDATE t2 SET b=84717 WHERE a=11019; UPDATE t2 SET b=99619 WHERE a=11020; UPDATE t2 SET b=76711 WHERE a=11021; UPDATE t2 SET b=86396 WHERE a=11022; UPDATE t2 SET b=37237 WHERE a=11023; UPDATE t2 SET b=14961 WHERE a=11024; UPDATE t2 SET b=60727 WHERE a=11025; UPDATE t2 SET b=56596 WHERE a=11026; UPDATE t2 SET b=99701 WHERE a=11027; UPDATE t2 SET b=65811 WHERE a=11028; UPDATE t2 SET b=52839 WHERE a=11029; UPDATE t2 SET b=33880 WHERE a=11030; UPDATE t2 SET b=7780 WHERE a=11031; UPDATE t2 SET b=28754 WHERE a=11032; UPDATE t2 SET b=94096 WHERE a=11033; UPDATE t2 SET b=86337 WHERE a=11034; UPDATE t2 SET b=12365 WHERE a=11035; UPDATE t2 SET b=66474 WHERE a=11036; UPDATE t2 SET b=16226 WHERE a=11037; UPDATE t2 SET b=46504 WHERE a=11038; UPDATE t2 SET b=63714 WHERE a=11039; UPDATE t2 SET b=75897 WHERE a=11040; UPDATE t2 SET b=71704 WHERE a=11041; UPDATE t2 SET b=28930 WHERE a=11042; UPDATE t2 SET b=40612 WHERE a=11043; UPDATE t2 SET b=1596 WHERE a=11044; UPDATE t2 SET b=10802 WHERE a=11045; UPDATE t2 SET b=89998 WHERE a=11046; UPDATE t2 SET b=76897 WHERE a=11047; UPDATE t2 SET b=57879 WHERE a=11048; UPDATE t2 SET b=34446 WHERE a=11049; UPDATE t2 SET b=21334 WHERE a=11050; UPDATE t2 SET b=22749 WHERE a=11051; UPDATE t2 SET b=61653 WHERE a=11052; UPDATE t2 SET b=69142 WHERE a=11053; UPDATE t2 SET b=57199 WHERE a=11054; UPDATE t2 SET b=23951 WHERE a=11055; UPDATE t2 SET b=89571 WHERE a=11056; UPDATE t2 SET b=5551 WHERE a=11057; UPDATE t2 SET b=43716 WHERE a=11058; UPDATE t2 SET b=18388 WHERE a=11059; UPDATE t2 SET b=99255 WHERE a=11060; UPDATE t2 SET b=7865 WHERE a=11061; UPDATE t2 SET b=72068 WHERE a=11062; UPDATE t2 SET b=1333 WHERE a=11063; UPDATE t2 SET b=88257 WHERE a=11064; UPDATE t2 SET b=13648 WHERE a=11065; UPDATE t2 SET b=84064 WHERE a=11066; UPDATE t2 SET b=55644 WHERE a=11067; UPDATE t2 SET b=10603 WHERE a=11068; UPDATE t2 SET b=47652 WHERE a=11069; UPDATE t2 SET b=59926 WHERE a=11070; UPDATE t2 SET b=36173 WHERE a=11071; UPDATE t2 SET b=40100 WHERE a=11072; UPDATE t2 SET b=10412 WHERE a=11073; UPDATE t2 SET b=14217 WHERE a=11074; UPDATE t2 SET b=64713 WHERE a=11075; UPDATE t2 SET b=51776 WHERE a=11076; UPDATE t2 SET b=7140 WHERE a=11077; UPDATE t2 SET b=143 WHERE a=11078; UPDATE t2 SET b=89169 WHERE a=11079; UPDATE t2 SET b=19893 WHERE a=11080; UPDATE t2 SET b=37409 WHERE a=11081; UPDATE t2 SET b=89582 WHERE a=11082; UPDATE t2 SET b=59274 WHERE a=11083; UPDATE t2 SET b=92722 WHERE a=11084; UPDATE t2 SET b=56380 WHERE a=11085; UPDATE t2 SET b=24232 WHERE a=11086; UPDATE t2 SET b=37579 WHERE a=11087; UPDATE t2 SET b=44375 WHERE a=11088; UPDATE t2 SET b=23557 WHERE a=11089; UPDATE t2 SET b=46691 WHERE a=11090; UPDATE t2 SET b=50747 WHERE a=11091; UPDATE t2 SET b=20116 WHERE a=11092; UPDATE t2 SET b=56709 WHERE a=11093; UPDATE t2 SET b=11527 WHERE a=11094; UPDATE t2 SET b=93809 WHERE a=11095; UPDATE t2 SET b=91830 WHERE a=11096; UPDATE t2 SET b=32316 WHERE a=11097; UPDATE t2 SET b=13639 WHERE a=11098; UPDATE t2 SET b=46074 WHERE a=11099; UPDATE t2 SET b=83130 WHERE a=11100; UPDATE t2 SET b=31453 WHERE a=11101; UPDATE t2 SET b=30832 WHERE a=11102; UPDATE t2 SET b=43620 WHERE a=11103; UPDATE t2 SET b=2913 WHERE a=11104; UPDATE t2 SET b=23470 WHERE a=11105; UPDATE t2 SET b=84940 WHERE a=11106; UPDATE t2 SET b=23628 WHERE a=11107; UPDATE t2 SET b=45298 WHERE a=11108; UPDATE t2 SET b=63110 WHERE a=11109; UPDATE t2 SET b=89027 WHERE a=11110; UPDATE t2 SET b=59551 WHERE a=11111; UPDATE t2 SET b=85832 WHERE a=11112; UPDATE t2 SET b=30119 WHERE a=11113; UPDATE t2 SET b=21599 WHERE a=11114; UPDATE t2 SET b=81095 WHERE a=11115; UPDATE t2 SET b=98324 WHERE a=11116; UPDATE t2 SET b=50161 WHERE a=11117; UPDATE t2 SET b=15584 WHERE a=11118; UPDATE t2 SET b=92038 WHERE a=11119; UPDATE t2 SET b=58121 WHERE a=11120; UPDATE t2 SET b=76125 WHERE a=11121; UPDATE t2 SET b=22825 WHERE a=11122; UPDATE t2 SET b=13817 WHERE a=11123; UPDATE t2 SET b=28716 WHERE a=11124; UPDATE t2 SET b=78829 WHERE a=11125; UPDATE t2 SET b=74703 WHERE a=11126; UPDATE t2 SET b=23472 WHERE a=11127; UPDATE t2 SET b=98382 WHERE a=11128; UPDATE t2 SET b=38190 WHERE a=11129; UPDATE t2 SET b=90186 WHERE a=11130; UPDATE t2 SET b=72897 WHERE a=11131; UPDATE t2 SET b=38577 WHERE a=11132; UPDATE t2 SET b=66106 WHERE a=11133; UPDATE t2 SET b=51870 WHERE a=11134; UPDATE t2 SET b=13156 WHERE a=11135; UPDATE t2 SET b=43030 WHERE a=11136; UPDATE t2 SET b=51549 WHERE a=11137; UPDATE t2 SET b=53436 WHERE a=11138; UPDATE t2 SET b=88916 WHERE a=11139; UPDATE t2 SET b=87632 WHERE a=11140; UPDATE t2 SET b=69851 WHERE a=11141; UPDATE t2 SET b=85116 WHERE a=11142; UPDATE t2 SET b=37374 WHERE a=11143; UPDATE t2 SET b=38303 WHERE a=11144; UPDATE t2 SET b=43936 WHERE a=11145; UPDATE t2 SET b=72837 WHERE a=11146; UPDATE t2 SET b=3496 WHERE a=11147; UPDATE t2 SET b=14253 WHERE a=11148; UPDATE t2 SET b=7547 WHERE a=11149; UPDATE t2 SET b=90296 WHERE a=11150; UPDATE t2 SET b=98922 WHERE a=11151; UPDATE t2 SET b=50314 WHERE a=11152; UPDATE t2 SET b=57190 WHERE a=11153; UPDATE t2 SET b=5423 WHERE a=11154; UPDATE t2 SET b=49541 WHERE a=11155; UPDATE t2 SET b=84267 WHERE a=11156; UPDATE t2 SET b=7944 WHERE a=11157; UPDATE t2 SET b=68636 WHERE a=11158; UPDATE t2 SET b=51309 WHERE a=11159; UPDATE t2 SET b=18560 WHERE a=11160; UPDATE t2 SET b=1497 WHERE a=11161; UPDATE t2 SET b=48925 WHERE a=11162; UPDATE t2 SET b=64463 WHERE a=11163; UPDATE t2 SET b=40839 WHERE a=11164; UPDATE t2 SET b=27425 WHERE a=11165; UPDATE t2 SET b=66599 WHERE a=11166; UPDATE t2 SET b=49785 WHERE a=11167; UPDATE t2 SET b=52425 WHERE a=11168; UPDATE t2 SET b=32819 WHERE a=11169; UPDATE t2 SET b=94081 WHERE a=11170; UPDATE t2 SET b=52067 WHERE a=11171; UPDATE t2 SET b=40081 WHERE a=11172; UPDATE t2 SET b=8197 WHERE a=11173; UPDATE t2 SET b=22663 WHERE a=11174; UPDATE t2 SET b=53717 WHERE a=11175; UPDATE t2 SET b=30706 WHERE a=11176; UPDATE t2 SET b=94816 WHERE a=11177; UPDATE t2 SET b=29786 WHERE a=11178; UPDATE t2 SET b=79779 WHERE a=11179; UPDATE t2 SET b=3087 WHERE a=11180; UPDATE t2 SET b=67718 WHERE a=11181; UPDATE t2 SET b=3270 WHERE a=11182; UPDATE t2 SET b=51903 WHERE a=11183; UPDATE t2 SET b=88778 WHERE a=11184; UPDATE t2 SET b=74054 WHERE a=11185; UPDATE t2 SET b=769 WHERE a=11186; UPDATE t2 SET b=68301 WHERE a=11187; UPDATE t2 SET b=17860 WHERE a=11188; UPDATE t2 SET b=94937 WHERE a=11189; UPDATE t2 SET b=91408 WHERE a=11190; UPDATE t2 SET b=9715 WHERE a=11191; UPDATE t2 SET b=62084 WHERE a=11192; UPDATE t2 SET b=8687 WHERE a=11193; UPDATE t2 SET b=53981 WHERE a=11194; UPDATE t2 SET b=86421 WHERE a=11195; UPDATE t2 SET b=46752 WHERE a=11196; UPDATE t2 SET b=3953 WHERE a=11197; UPDATE t2 SET b=72149 WHERE a=11198; UPDATE t2 SET b=24847 WHERE a=11199; UPDATE t2 SET b=1598 WHERE a=11200; UPDATE t2 SET b=99294 WHERE a=11201; UPDATE t2 SET b=26641 WHERE a=11202; UPDATE t2 SET b=19325 WHERE a=11203; UPDATE t2 SET b=67208 WHERE a=11204; UPDATE t2 SET b=61936 WHERE a=11205; UPDATE t2 SET b=32640 WHERE a=11206; UPDATE t2 SET b=64118 WHERE a=11207; UPDATE t2 SET b=69686 WHERE a=11208; UPDATE t2 SET b=1742 WHERE a=11209; UPDATE t2 SET b=8398 WHERE a=11210; UPDATE t2 SET b=34984 WHERE a=11211; UPDATE t2 SET b=39910 WHERE a=11212; UPDATE t2 SET b=62229 WHERE a=11213; UPDATE t2 SET b=37647 WHERE a=11214; UPDATE t2 SET b=48966 WHERE a=11215; UPDATE t2 SET b=40683 WHERE a=11216; UPDATE t2 SET b=95958 WHERE a=11217; UPDATE t2 SET b=39324 WHERE a=11218; UPDATE t2 SET b=56739 WHERE a=11219; UPDATE t2 SET b=78693 WHERE a=11220; UPDATE t2 SET b=37377 WHERE a=11221; UPDATE t2 SET b=20876 WHERE a=11222; UPDATE t2 SET b=89908 WHERE a=11223; UPDATE t2 SET b=78707 WHERE a=11224; UPDATE t2 SET b=60439 WHERE a=11225; UPDATE t2 SET b=85411 WHERE a=11226; UPDATE t2 SET b=50127 WHERE a=11227; UPDATE t2 SET b=1062 WHERE a=11228; UPDATE t2 SET b=34420 WHERE a=11229; UPDATE t2 SET b=58660 WHERE a=11230; UPDATE t2 SET b=28318 WHERE a=11231; UPDATE t2 SET b=34279 WHERE a=11232; UPDATE t2 SET b=28011 WHERE a=11233; UPDATE t2 SET b=13713 WHERE a=11234; UPDATE t2 SET b=18139 WHERE a=11235; UPDATE t2 SET b=21613 WHERE a=11236; UPDATE t2 SET b=45836 WHERE a=11237; UPDATE t2 SET b=20159 WHERE a=11238; UPDATE t2 SET b=45755 WHERE a=11239; UPDATE t2 SET b=60100 WHERE a=11240; UPDATE t2 SET b=38666 WHERE a=11241; UPDATE t2 SET b=33235 WHERE a=11242; UPDATE t2 SET b=10093 WHERE a=11243; UPDATE t2 SET b=54972 WHERE a=11244; UPDATE t2 SET b=57576 WHERE a=11245; UPDATE t2 SET b=18938 WHERE a=11246; UPDATE t2 SET b=43103 WHERE a=11247; UPDATE t2 SET b=98189 WHERE a=11248; UPDATE t2 SET b=33424 WHERE a=11249; UPDATE t2 SET b=11425 WHERE a=11250; UPDATE t2 SET b=11624 WHERE a=11251; UPDATE t2 SET b=97177 WHERE a=11252; UPDATE t2 SET b=4609 WHERE a=11253; UPDATE t2 SET b=66018 WHERE a=11254; UPDATE t2 SET b=59640 WHERE a=11255; UPDATE t2 SET b=66146 WHERE a=11256; UPDATE t2 SET b=92824 WHERE a=11257; UPDATE t2 SET b=53044 WHERE a=11258; UPDATE t2 SET b=69468 WHERE a=11259; UPDATE t2 SET b=12244 WHERE a=11260; UPDATE t2 SET b=74595 WHERE a=11261; UPDATE t2 SET b=68190 WHERE a=11262; UPDATE t2 SET b=52758 WHERE a=11263; UPDATE t2 SET b=44586 WHERE a=11264; UPDATE t2 SET b=27851 WHERE a=11265; UPDATE t2 SET b=15959 WHERE a=11266; UPDATE t2 SET b=44778 WHERE a=11267; UPDATE t2 SET b=23281 WHERE a=11268; UPDATE t2 SET b=40305 WHERE a=11269; UPDATE t2 SET b=40850 WHERE a=11270; UPDATE t2 SET b=80906 WHERE a=11271; UPDATE t2 SET b=9635 WHERE a=11272; UPDATE t2 SET b=81648 WHERE a=11273; UPDATE t2 SET b=58470 WHERE a=11274; UPDATE t2 SET b=96820 WHERE a=11275; UPDATE t2 SET b=93231 WHERE a=11276; UPDATE t2 SET b=35440 WHERE a=11277; UPDATE t2 SET b=52897 WHERE a=11278; UPDATE t2 SET b=72416 WHERE a=11279; UPDATE t2 SET b=9053 WHERE a=11280; UPDATE t2 SET b=6718 WHERE a=11281; UPDATE t2 SET b=57759 WHERE a=11282; UPDATE t2 SET b=795 WHERE a=11283; UPDATE t2 SET b=32375 WHERE a=11284; UPDATE t2 SET b=9660 WHERE a=11285; UPDATE t2 SET b=31442 WHERE a=11286; UPDATE t2 SET b=69537 WHERE a=11287; UPDATE t2 SET b=68399 WHERE a=11288; UPDATE t2 SET b=99914 WHERE a=11289; UPDATE t2 SET b=17572 WHERE a=11290; UPDATE t2 SET b=56569 WHERE a=11291; UPDATE t2 SET b=57354 WHERE a=11292; UPDATE t2 SET b=71221 WHERE a=11293; UPDATE t2 SET b=26099 WHERE a=11294; UPDATE t2 SET b=2633 WHERE a=11295; UPDATE t2 SET b=30695 WHERE a=11296; UPDATE t2 SET b=17511 WHERE a=11297; UPDATE t2 SET b=28016 WHERE a=11298; UPDATE t2 SET b=79233 WHERE a=11299; UPDATE t2 SET b=71416 WHERE a=11300; UPDATE t2 SET b=19494 WHERE a=11301; UPDATE t2 SET b=72619 WHERE a=11302; UPDATE t2 SET b=6609 WHERE a=11303; UPDATE t2 SET b=72876 WHERE a=11304; UPDATE t2 SET b=98796 WHERE a=11305; UPDATE t2 SET b=64530 WHERE a=11306; UPDATE t2 SET b=46938 WHERE a=11307; UPDATE t2 SET b=8742 WHERE a=11308; UPDATE t2 SET b=14464 WHERE a=11309; UPDATE t2 SET b=49515 WHERE a=11310; UPDATE t2 SET b=85490 WHERE a=11311; UPDATE t2 SET b=92163 WHERE a=11312; UPDATE t2 SET b=94552 WHERE a=11313; UPDATE t2 SET b=94239 WHERE a=11314; UPDATE t2 SET b=27149 WHERE a=11315; UPDATE t2 SET b=25811 WHERE a=11316; UPDATE t2 SET b=60872 WHERE a=11317; UPDATE t2 SET b=68058 WHERE a=11318; UPDATE t2 SET b=25979 WHERE a=11319; UPDATE t2 SET b=81638 WHERE a=11320; UPDATE t2 SET b=19164 WHERE a=11321; UPDATE t2 SET b=71363 WHERE a=11322; UPDATE t2 SET b=66103 WHERE a=11323; UPDATE t2 SET b=94265 WHERE a=11324; UPDATE t2 SET b=25092 WHERE a=11325; UPDATE t2 SET b=4623 WHERE a=11326; UPDATE t2 SET b=84895 WHERE a=11327; UPDATE t2 SET b=85618 WHERE a=11328; UPDATE t2 SET b=17449 WHERE a=11329; UPDATE t2 SET b=25995 WHERE a=11330; UPDATE t2 SET b=85546 WHERE a=11331; UPDATE t2 SET b=68784 WHERE a=11332; UPDATE t2 SET b=46470 WHERE a=11333; UPDATE t2 SET b=49614 WHERE a=11334; UPDATE t2 SET b=62284 WHERE a=11335; UPDATE t2 SET b=96641 WHERE a=11336; UPDATE t2 SET b=80253 WHERE a=11337; UPDATE t2 SET b=81421 WHERE a=11338; UPDATE t2 SET b=20635 WHERE a=11339; UPDATE t2 SET b=78165 WHERE a=11340; UPDATE t2 SET b=10653 WHERE a=11341; UPDATE t2 SET b=90613 WHERE a=11342; UPDATE t2 SET b=47957 WHERE a=11343; UPDATE t2 SET b=42830 WHERE a=11344; UPDATE t2 SET b=96887 WHERE a=11345; UPDATE t2 SET b=1093 WHERE a=11346; UPDATE t2 SET b=40065 WHERE a=11347; UPDATE t2 SET b=1273 WHERE a=11348; UPDATE t2 SET b=57625 WHERE a=11349; UPDATE t2 SET b=12535 WHERE a=11350; UPDATE t2 SET b=31908 WHERE a=11351; UPDATE t2 SET b=92336 WHERE a=11352; UPDATE t2 SET b=52627 WHERE a=11353; UPDATE t2 SET b=87812 WHERE a=11354; UPDATE t2 SET b=43353 WHERE a=11355; UPDATE t2 SET b=59641 WHERE a=11356; UPDATE t2 SET b=40756 WHERE a=11357; UPDATE t2 SET b=40541 WHERE a=11358; UPDATE t2 SET b=36282 WHERE a=11359; UPDATE t2 SET b=22533 WHERE a=11360; UPDATE t2 SET b=40391 WHERE a=11361; UPDATE t2 SET b=39584 WHERE a=11362; UPDATE t2 SET b=8843 WHERE a=11363; UPDATE t2 SET b=80619 WHERE a=11364; UPDATE t2 SET b=157 WHERE a=11365; UPDATE t2 SET b=56813 WHERE a=11366; UPDATE t2 SET b=29805 WHERE a=11367; UPDATE t2 SET b=14093 WHERE a=11368; UPDATE t2 SET b=72091 WHERE a=11369; UPDATE t2 SET b=530 WHERE a=11370; UPDATE t2 SET b=44364 WHERE a=11371; UPDATE t2 SET b=60974 WHERE a=11372; UPDATE t2 SET b=51584 WHERE a=11373; UPDATE t2 SET b=53574 WHERE a=11374; UPDATE t2 SET b=55827 WHERE a=11375; UPDATE t2 SET b=56999 WHERE a=11376; UPDATE t2 SET b=61436 WHERE a=11377; UPDATE t2 SET b=59631 WHERE a=11378; UPDATE t2 SET b=5281 WHERE a=11379; UPDATE t2 SET b=92747 WHERE a=11380; UPDATE t2 SET b=10459 WHERE a=11381; UPDATE t2 SET b=66080 WHERE a=11382; UPDATE t2 SET b=79494 WHERE a=11383; UPDATE t2 SET b=91491 WHERE a=11384; UPDATE t2 SET b=41181 WHERE a=11385; UPDATE t2 SET b=6815 WHERE a=11386; UPDATE t2 SET b=92335 WHERE a=11387; UPDATE t2 SET b=3988 WHERE a=11388; UPDATE t2 SET b=61502 WHERE a=11389; UPDATE t2 SET b=63690 WHERE a=11390; UPDATE t2 SET b=4827 WHERE a=11391; UPDATE t2 SET b=60278 WHERE a=11392; UPDATE t2 SET b=50355 WHERE a=11393; UPDATE t2 SET b=19111 WHERE a=11394; UPDATE t2 SET b=18374 WHERE a=11395; UPDATE t2 SET b=81083 WHERE a=11396; UPDATE t2 SET b=49904 WHERE a=11397; UPDATE t2 SET b=97410 WHERE a=11398; UPDATE t2 SET b=98491 WHERE a=11399; UPDATE t2 SET b=28743 WHERE a=11400; UPDATE t2 SET b=97918 WHERE a=11401; UPDATE t2 SET b=52641 WHERE a=11402; UPDATE t2 SET b=78834 WHERE a=11403; UPDATE t2 SET b=2186 WHERE a=11404; UPDATE t2 SET b=25188 WHERE a=11405; UPDATE t2 SET b=5707 WHERE a=11406; UPDATE t2 SET b=59002 WHERE a=11407; UPDATE t2 SET b=36354 WHERE a=11408; UPDATE t2 SET b=82034 WHERE a=11409; UPDATE t2 SET b=91323 WHERE a=11410; UPDATE t2 SET b=55231 WHERE a=11411; UPDATE t2 SET b=83110 WHERE a=11412; UPDATE t2 SET b=64815 WHERE a=11413; UPDATE t2 SET b=4927 WHERE a=11414; UPDATE t2 SET b=50514 WHERE a=11415; UPDATE t2 SET b=16916 WHERE a=11416; UPDATE t2 SET b=44262 WHERE a=11417; UPDATE t2 SET b=3997 WHERE a=11418; UPDATE t2 SET b=75531 WHERE a=11419; UPDATE t2 SET b=91597 WHERE a=11420; UPDATE t2 SET b=28168 WHERE a=11421; UPDATE t2 SET b=12625 WHERE a=11422; UPDATE t2 SET b=71787 WHERE a=11423; UPDATE t2 SET b=2757 WHERE a=11424; UPDATE t2 SET b=79782 WHERE a=11425; UPDATE t2 SET b=65758 WHERE a=11426; UPDATE t2 SET b=6841 WHERE a=11427; UPDATE t2 SET b=92405 WHERE a=11428; UPDATE t2 SET b=63706 WHERE a=11429; UPDATE t2 SET b=75642 WHERE a=11430; UPDATE t2 SET b=99134 WHERE a=11431; UPDATE t2 SET b=57976 WHERE a=11432; UPDATE t2 SET b=33198 WHERE a=11433; UPDATE t2 SET b=12956 WHERE a=11434; UPDATE t2 SET b=36696 WHERE a=11435; UPDATE t2 SET b=84901 WHERE a=11436; UPDATE t2 SET b=85004 WHERE a=11437; UPDATE t2 SET b=35356 WHERE a=11438; UPDATE t2 SET b=55791 WHERE a=11439; UPDATE t2 SET b=90374 WHERE a=11440; UPDATE t2 SET b=95098 WHERE a=11441; UPDATE t2 SET b=86543 WHERE a=11442; UPDATE t2 SET b=24848 WHERE a=11443; UPDATE t2 SET b=72089 WHERE a=11444; UPDATE t2 SET b=13450 WHERE a=11445; UPDATE t2 SET b=53610 WHERE a=11446; UPDATE t2 SET b=52937 WHERE a=11447; UPDATE t2 SET b=82196 WHERE a=11448; UPDATE t2 SET b=88176 WHERE a=11449; UPDATE t2 SET b=28697 WHERE a=11450; UPDATE t2 SET b=31877 WHERE a=11451; UPDATE t2 SET b=31964 WHERE a=11452; UPDATE t2 SET b=69086 WHERE a=11453; UPDATE t2 SET b=82414 WHERE a=11454; UPDATE t2 SET b=55259 WHERE a=11455; UPDATE t2 SET b=46384 WHERE a=11456; UPDATE t2 SET b=32431 WHERE a=11457; UPDATE t2 SET b=3741 WHERE a=11458; UPDATE t2 SET b=41057 WHERE a=11459; UPDATE t2 SET b=77442 WHERE a=11460; UPDATE t2 SET b=98926 WHERE a=11461; UPDATE t2 SET b=22274 WHERE a=11462; UPDATE t2 SET b=85663 WHERE a=11463; UPDATE t2 SET b=50213 WHERE a=11464; UPDATE t2 SET b=99556 WHERE a=11465; UPDATE t2 SET b=6119 WHERE a=11466; UPDATE t2 SET b=63514 WHERE a=11467; UPDATE t2 SET b=227 WHERE a=11468; UPDATE t2 SET b=68852 WHERE a=11469; UPDATE t2 SET b=8647 WHERE a=11470; UPDATE t2 SET b=49336 WHERE a=11471; UPDATE t2 SET b=14640 WHERE a=11472; UPDATE t2 SET b=36915 WHERE a=11473; UPDATE t2 SET b=39020 WHERE a=11474; UPDATE t2 SET b=6325 WHERE a=11475; UPDATE t2 SET b=82524 WHERE a=11476; UPDATE t2 SET b=29965 WHERE a=11477; UPDATE t2 SET b=31016 WHERE a=11478; UPDATE t2 SET b=9327 WHERE a=11479; UPDATE t2 SET b=5660 WHERE a=11480; UPDATE t2 SET b=99366 WHERE a=11481; UPDATE t2 SET b=20058 WHERE a=11482; UPDATE t2 SET b=22330 WHERE a=11483; UPDATE t2 SET b=3778 WHERE a=11484; UPDATE t2 SET b=26060 WHERE a=11485; UPDATE t2 SET b=83900 WHERE a=11486; UPDATE t2 SET b=84706 WHERE a=11487; UPDATE t2 SET b=35241 WHERE a=11488; UPDATE t2 SET b=44412 WHERE a=11489; UPDATE t2 SET b=55831 WHERE a=11490; UPDATE t2 SET b=4166 WHERE a=11491; UPDATE t2 SET b=35404 WHERE a=11492; UPDATE t2 SET b=91735 WHERE a=11493; UPDATE t2 SET b=4669 WHERE a=11494; UPDATE t2 SET b=21003 WHERE a=11495; UPDATE t2 SET b=77845 WHERE a=11496; UPDATE t2 SET b=99106 WHERE a=11497; UPDATE t2 SET b=2581 WHERE a=11498; UPDATE t2 SET b=66765 WHERE a=11499; UPDATE t2 SET b=10178 WHERE a=11500; UPDATE t2 SET b=64074 WHERE a=11501; UPDATE t2 SET b=54734 WHERE a=11502; UPDATE t2 SET b=72132 WHERE a=11503; UPDATE t2 SET b=19603 WHERE a=11504; UPDATE t2 SET b=63128 WHERE a=11505; UPDATE t2 SET b=76191 WHERE a=11506; UPDATE t2 SET b=70081 WHERE a=11507; UPDATE t2 SET b=58193 WHERE a=11508; UPDATE t2 SET b=53131 WHERE a=11509; UPDATE t2 SET b=49888 WHERE a=11510; UPDATE t2 SET b=61458 WHERE a=11511; UPDATE t2 SET b=12085 WHERE a=11512; UPDATE t2 SET b=79995 WHERE a=11513; UPDATE t2 SET b=45828 WHERE a=11514; UPDATE t2 SET b=67440 WHERE a=11515; UPDATE t2 SET b=23389 WHERE a=11516; UPDATE t2 SET b=81059 WHERE a=11517; UPDATE t2 SET b=75782 WHERE a=11518; UPDATE t2 SET b=20894 WHERE a=11519; UPDATE t2 SET b=32043 WHERE a=11520; UPDATE t2 SET b=87001 WHERE a=11521; UPDATE t2 SET b=16745 WHERE a=11522; UPDATE t2 SET b=48470 WHERE a=11523; UPDATE t2 SET b=92193 WHERE a=11524; UPDATE t2 SET b=74058 WHERE a=11525; UPDATE t2 SET b=80560 WHERE a=11526; UPDATE t2 SET b=18107 WHERE a=11527; UPDATE t2 SET b=27918 WHERE a=11528; UPDATE t2 SET b=40878 WHERE a=11529; UPDATE t2 SET b=23175 WHERE a=11530; UPDATE t2 SET b=70342 WHERE a=11531; UPDATE t2 SET b=87836 WHERE a=11532; UPDATE t2 SET b=43773 WHERE a=11533; UPDATE t2 SET b=97001 WHERE a=11534; UPDATE t2 SET b=59546 WHERE a=11535; UPDATE t2 SET b=62642 WHERE a=11536; UPDATE t2 SET b=21178 WHERE a=11537; UPDATE t2 SET b=64823 WHERE a=11538; UPDATE t2 SET b=69993 WHERE a=11539; UPDATE t2 SET b=1596 WHERE a=11540; UPDATE t2 SET b=64826 WHERE a=11541; UPDATE t2 SET b=78439 WHERE a=11542; UPDATE t2 SET b=43643 WHERE a=11543; UPDATE t2 SET b=27044 WHERE a=11544; UPDATE t2 SET b=43318 WHERE a=11545; UPDATE t2 SET b=62931 WHERE a=11546; UPDATE t2 SET b=85532 WHERE a=11547; UPDATE t2 SET b=2617 WHERE a=11548; UPDATE t2 SET b=31207 WHERE a=11549; UPDATE t2 SET b=84553 WHERE a=11550; UPDATE t2 SET b=28071 WHERE a=11551; UPDATE t2 SET b=3361 WHERE a=11552; UPDATE t2 SET b=41616 WHERE a=11553; UPDATE t2 SET b=34479 WHERE a=11554; UPDATE t2 SET b=35253 WHERE a=11555; UPDATE t2 SET b=27725 WHERE a=11556; UPDATE t2 SET b=65218 WHERE a=11557; UPDATE t2 SET b=67223 WHERE a=11558; UPDATE t2 SET b=62139 WHERE a=11559; UPDATE t2 SET b=72651 WHERE a=11560; UPDATE t2 SET b=45544 WHERE a=11561; UPDATE t2 SET b=50772 WHERE a=11562; UPDATE t2 SET b=1909 WHERE a=11563; UPDATE t2 SET b=86140 WHERE a=11564; UPDATE t2 SET b=18600 WHERE a=11565; UPDATE t2 SET b=44514 WHERE a=11566; UPDATE t2 SET b=14947 WHERE a=11567; UPDATE t2 SET b=6620 WHERE a=11568; UPDATE t2 SET b=42486 WHERE a=11569; UPDATE t2 SET b=78191 WHERE a=11570; UPDATE t2 SET b=17831 WHERE a=11571; UPDATE t2 SET b=83168 WHERE a=11572; UPDATE t2 SET b=77044 WHERE a=11573; UPDATE t2 SET b=95747 WHERE a=11574; UPDATE t2 SET b=72224 WHERE a=11575; UPDATE t2 SET b=62720 WHERE a=11576; UPDATE t2 SET b=62323 WHERE a=11577; UPDATE t2 SET b=93620 WHERE a=11578; UPDATE t2 SET b=45361 WHERE a=11579; UPDATE t2 SET b=8644 WHERE a=11580; UPDATE t2 SET b=37687 WHERE a=11581; UPDATE t2 SET b=54324 WHERE a=11582; UPDATE t2 SET b=51754 WHERE a=11583; UPDATE t2 SET b=77260 WHERE a=11584; UPDATE t2 SET b=15047 WHERE a=11585; UPDATE t2 SET b=55994 WHERE a=11586; UPDATE t2 SET b=4204 WHERE a=11587; UPDATE t2 SET b=80883 WHERE a=11588; UPDATE t2 SET b=14923 WHERE a=11589; UPDATE t2 SET b=47256 WHERE a=11590; UPDATE t2 SET b=10921 WHERE a=11591; UPDATE t2 SET b=59708 WHERE a=11592; UPDATE t2 SET b=84526 WHERE a=11593; UPDATE t2 SET b=46494 WHERE a=11594; UPDATE t2 SET b=70210 WHERE a=11595; UPDATE t2 SET b=29960 WHERE a=11596; UPDATE t2 SET b=50804 WHERE a=11597; UPDATE t2 SET b=90095 WHERE a=11598; UPDATE t2 SET b=19717 WHERE a=11599; UPDATE t2 SET b=20775 WHERE a=11600; UPDATE t2 SET b=19166 WHERE a=11601; UPDATE t2 SET b=52205 WHERE a=11602; UPDATE t2 SET b=62375 WHERE a=11603; UPDATE t2 SET b=61842 WHERE a=11604; UPDATE t2 SET b=20193 WHERE a=11605; UPDATE t2 SET b=14794 WHERE a=11606; UPDATE t2 SET b=49126 WHERE a=11607; UPDATE t2 SET b=94029 WHERE a=11608; UPDATE t2 SET b=6956 WHERE a=11609; UPDATE t2 SET b=5963 WHERE a=11610; UPDATE t2 SET b=77891 WHERE a=11611; UPDATE t2 SET b=75561 WHERE a=11612; UPDATE t2 SET b=10757 WHERE a=11613; UPDATE t2 SET b=22057 WHERE a=11614; UPDATE t2 SET b=12728 WHERE a=11615; UPDATE t2 SET b=45330 WHERE a=11616; UPDATE t2 SET b=15657 WHERE a=11617; UPDATE t2 SET b=86222 WHERE a=11618; UPDATE t2 SET b=81589 WHERE a=11619; UPDATE t2 SET b=3043 WHERE a=11620; UPDATE t2 SET b=9326 WHERE a=11621; UPDATE t2 SET b=33880 WHERE a=11622; UPDATE t2 SET b=20048 WHERE a=11623; UPDATE t2 SET b=49005 WHERE a=11624; UPDATE t2 SET b=25164 WHERE a=11625; UPDATE t2 SET b=27793 WHERE a=11626; UPDATE t2 SET b=89283 WHERE a=11627; UPDATE t2 SET b=30581 WHERE a=11628; UPDATE t2 SET b=13682 WHERE a=11629; UPDATE t2 SET b=83427 WHERE a=11630; UPDATE t2 SET b=59194 WHERE a=11631; UPDATE t2 SET b=19023 WHERE a=11632; UPDATE t2 SET b=30585 WHERE a=11633; UPDATE t2 SET b=33695 WHERE a=11634; UPDATE t2 SET b=5485 WHERE a=11635; UPDATE t2 SET b=78973 WHERE a=11636; UPDATE t2 SET b=38293 WHERE a=11637; UPDATE t2 SET b=65622 WHERE a=11638; UPDATE t2 SET b=58654 WHERE a=11639; UPDATE t2 SET b=60167 WHERE a=11640; UPDATE t2 SET b=56726 WHERE a=11641; UPDATE t2 SET b=73635 WHERE a=11642; UPDATE t2 SET b=10153 WHERE a=11643; UPDATE t2 SET b=30295 WHERE a=11644; UPDATE t2 SET b=94632 WHERE a=11645; UPDATE t2 SET b=81815 WHERE a=11646; UPDATE t2 SET b=7257 WHERE a=11647; UPDATE t2 SET b=20168 WHERE a=11648; UPDATE t2 SET b=99890 WHERE a=11649; UPDATE t2 SET b=23772 WHERE a=11650; UPDATE t2 SET b=56625 WHERE a=11651; UPDATE t2 SET b=10537 WHERE a=11652; UPDATE t2 SET b=20839 WHERE a=11653; UPDATE t2 SET b=21834 WHERE a=11654; UPDATE t2 SET b=19225 WHERE a=11655; UPDATE t2 SET b=88493 WHERE a=11656; UPDATE t2 SET b=92128 WHERE a=11657; UPDATE t2 SET b=65061 WHERE a=11658; UPDATE t2 SET b=52592 WHERE a=11659; UPDATE t2 SET b=34133 WHERE a=11660; UPDATE t2 SET b=71121 WHERE a=11661; UPDATE t2 SET b=49111 WHERE a=11662; UPDATE t2 SET b=98924 WHERE a=11663; UPDATE t2 SET b=36945 WHERE a=11664; UPDATE t2 SET b=52293 WHERE a=11665; UPDATE t2 SET b=33924 WHERE a=11666; UPDATE t2 SET b=7018 WHERE a=11667; UPDATE t2 SET b=41469 WHERE a=11668; UPDATE t2 SET b=54483 WHERE a=11669; UPDATE t2 SET b=67280 WHERE a=11670; UPDATE t2 SET b=69921 WHERE a=11671; UPDATE t2 SET b=74795 WHERE a=11672; UPDATE t2 SET b=93510 WHERE a=11673; UPDATE t2 SET b=57701 WHERE a=11674; UPDATE t2 SET b=87147 WHERE a=11675; UPDATE t2 SET b=62739 WHERE a=11676; UPDATE t2 SET b=25435 WHERE a=11677; UPDATE t2 SET b=68253 WHERE a=11678; UPDATE t2 SET b=44987 WHERE a=11679; UPDATE t2 SET b=98510 WHERE a=11680; UPDATE t2 SET b=26882 WHERE a=11681; UPDATE t2 SET b=70058 WHERE a=11682; UPDATE t2 SET b=20901 WHERE a=11683; UPDATE t2 SET b=31464 WHERE a=11684; UPDATE t2 SET b=68684 WHERE a=11685; UPDATE t2 SET b=18219 WHERE a=11686; UPDATE t2 SET b=55509 WHERE a=11687; UPDATE t2 SET b=47624 WHERE a=11688; UPDATE t2 SET b=13331 WHERE a=11689; UPDATE t2 SET b=23317 WHERE a=11690; UPDATE t2 SET b=51260 WHERE a=11691; UPDATE t2 SET b=5705 WHERE a=11692; UPDATE t2 SET b=13811 WHERE a=11693; UPDATE t2 SET b=64393 WHERE a=11694; UPDATE t2 SET b=95777 WHERE a=11695; UPDATE t2 SET b=47899 WHERE a=11696; UPDATE t2 SET b=11413 WHERE a=11697; UPDATE t2 SET b=37230 WHERE a=11698; UPDATE t2 SET b=3913 WHERE a=11699; UPDATE t2 SET b=43261 WHERE a=11700; UPDATE t2 SET b=74813 WHERE a=11701; UPDATE t2 SET b=59168 WHERE a=11702; UPDATE t2 SET b=80524 WHERE a=11703; UPDATE t2 SET b=93889 WHERE a=11704; UPDATE t2 SET b=95062 WHERE a=11705; UPDATE t2 SET b=32101 WHERE a=11706; UPDATE t2 SET b=89240 WHERE a=11707; UPDATE t2 SET b=50220 WHERE a=11708; UPDATE t2 SET b=42925 WHERE a=11709; UPDATE t2 SET b=57608 WHERE a=11710; UPDATE t2 SET b=7536 WHERE a=11711; UPDATE t2 SET b=1283 WHERE a=11712; UPDATE t2 SET b=57077 WHERE a=11713; UPDATE t2 SET b=32736 WHERE a=11714; UPDATE t2 SET b=31569 WHERE a=11715; UPDATE t2 SET b=19933 WHERE a=11716; UPDATE t2 SET b=25858 WHERE a=11717; UPDATE t2 SET b=14656 WHERE a=11718; UPDATE t2 SET b=14073 WHERE a=11719; UPDATE t2 SET b=37787 WHERE a=11720; UPDATE t2 SET b=78705 WHERE a=11721; UPDATE t2 SET b=14788 WHERE a=11722; UPDATE t2 SET b=16642 WHERE a=11723; UPDATE t2 SET b=33972 WHERE a=11724; UPDATE t2 SET b=6945 WHERE a=11725; UPDATE t2 SET b=18506 WHERE a=11726; UPDATE t2 SET b=3245 WHERE a=11727; UPDATE t2 SET b=9869 WHERE a=11728; UPDATE t2 SET b=56224 WHERE a=11729; UPDATE t2 SET b=77435 WHERE a=11730; UPDATE t2 SET b=80687 WHERE a=11731; UPDATE t2 SET b=55833 WHERE a=11732; UPDATE t2 SET b=14857 WHERE a=11733; UPDATE t2 SET b=41569 WHERE a=11734; UPDATE t2 SET b=26463 WHERE a=11735; UPDATE t2 SET b=79220 WHERE a=11736; UPDATE t2 SET b=24875 WHERE a=11737; UPDATE t2 SET b=93936 WHERE a=11738; UPDATE t2 SET b=83969 WHERE a=11739; UPDATE t2 SET b=99281 WHERE a=11740; UPDATE t2 SET b=53299 WHERE a=11741; UPDATE t2 SET b=37022 WHERE a=11742; UPDATE t2 SET b=80756 WHERE a=11743; UPDATE t2 SET b=66873 WHERE a=11744; UPDATE t2 SET b=43597 WHERE a=11745; UPDATE t2 SET b=79739 WHERE a=11746; UPDATE t2 SET b=16411 WHERE a=11747; UPDATE t2 SET b=39120 WHERE a=11748; UPDATE t2 SET b=91596 WHERE a=11749; UPDATE t2 SET b=3501 WHERE a=11750; UPDATE t2 SET b=89001 WHERE a=11751; UPDATE t2 SET b=65581 WHERE a=11752; UPDATE t2 SET b=94206 WHERE a=11753; UPDATE t2 SET b=5742 WHERE a=11754; UPDATE t2 SET b=50827 WHERE a=11755; UPDATE t2 SET b=24153 WHERE a=11756; UPDATE t2 SET b=5581 WHERE a=11757; UPDATE t2 SET b=77260 WHERE a=11758; UPDATE t2 SET b=38819 WHERE a=11759; UPDATE t2 SET b=52747 WHERE a=11760; UPDATE t2 SET b=91071 WHERE a=11761; UPDATE t2 SET b=73297 WHERE a=11762; UPDATE t2 SET b=88586 WHERE a=11763; UPDATE t2 SET b=48845 WHERE a=11764; UPDATE t2 SET b=97026 WHERE a=11765; UPDATE t2 SET b=82932 WHERE a=11766; UPDATE t2 SET b=5358 WHERE a=11767; UPDATE t2 SET b=98823 WHERE a=11768; UPDATE t2 SET b=12652 WHERE a=11769; UPDATE t2 SET b=23004 WHERE a=11770; UPDATE t2 SET b=86908 WHERE a=11771; UPDATE t2 SET b=4678 WHERE a=11772; UPDATE t2 SET b=99245 WHERE a=11773; UPDATE t2 SET b=83871 WHERE a=11774; UPDATE t2 SET b=29735 WHERE a=11775; UPDATE t2 SET b=4009 WHERE a=11776; UPDATE t2 SET b=72966 WHERE a=11777; UPDATE t2 SET b=22158 WHERE a=11778; UPDATE t2 SET b=4351 WHERE a=11779; UPDATE t2 SET b=92194 WHERE a=11780; UPDATE t2 SET b=68281 WHERE a=11781; UPDATE t2 SET b=65794 WHERE a=11782; UPDATE t2 SET b=84523 WHERE a=11783; UPDATE t2 SET b=75178 WHERE a=11784; UPDATE t2 SET b=55684 WHERE a=11785; UPDATE t2 SET b=79986 WHERE a=11786; UPDATE t2 SET b=60380 WHERE a=11787; UPDATE t2 SET b=36730 WHERE a=11788; UPDATE t2 SET b=96419 WHERE a=11789; UPDATE t2 SET b=2289 WHERE a=11790; UPDATE t2 SET b=87799 WHERE a=11791; UPDATE t2 SET b=17924 WHERE a=11792; UPDATE t2 SET b=93053 WHERE a=11793; UPDATE t2 SET b=52154 WHERE a=11794; UPDATE t2 SET b=17358 WHERE a=11795; UPDATE t2 SET b=38484 WHERE a=11796; UPDATE t2 SET b=81103 WHERE a=11797; UPDATE t2 SET b=55984 WHERE a=11798; UPDATE t2 SET b=14333 WHERE a=11799; UPDATE t2 SET b=13538 WHERE a=11800; UPDATE t2 SET b=14611 WHERE a=11801; UPDATE t2 SET b=6942 WHERE a=11802; UPDATE t2 SET b=59458 WHERE a=11803; UPDATE t2 SET b=42006 WHERE a=11804; UPDATE t2 SET b=34988 WHERE a=11805; UPDATE t2 SET b=44589 WHERE a=11806; UPDATE t2 SET b=38680 WHERE a=11807; UPDATE t2 SET b=13630 WHERE a=11808; UPDATE t2 SET b=30544 WHERE a=11809; UPDATE t2 SET b=48215 WHERE a=11810; UPDATE t2 SET b=83642 WHERE a=11811; UPDATE t2 SET b=22734 WHERE a=11812; UPDATE t2 SET b=76792 WHERE a=11813; UPDATE t2 SET b=87857 WHERE a=11814; UPDATE t2 SET b=88998 WHERE a=11815; UPDATE t2 SET b=94870 WHERE a=11816; UPDATE t2 SET b=93351 WHERE a=11817; UPDATE t2 SET b=79585 WHERE a=11818; UPDATE t2 SET b=2710 WHERE a=11819; UPDATE t2 SET b=33488 WHERE a=11820; UPDATE t2 SET b=42576 WHERE a=11821; UPDATE t2 SET b=5338 WHERE a=11822; UPDATE t2 SET b=2738 WHERE a=11823; UPDATE t2 SET b=32414 WHERE a=11824; UPDATE t2 SET b=62376 WHERE a=11825; UPDATE t2 SET b=562 WHERE a=11826; UPDATE t2 SET b=92811 WHERE a=11827; UPDATE t2 SET b=62979 WHERE a=11828; UPDATE t2 SET b=80532 WHERE a=11829; UPDATE t2 SET b=90437 WHERE a=11830; UPDATE t2 SET b=3666 WHERE a=11831; UPDATE t2 SET b=64949 WHERE a=11832; UPDATE t2 SET b=98501 WHERE a=11833; UPDATE t2 SET b=5057 WHERE a=11834; UPDATE t2 SET b=91050 WHERE a=11835; UPDATE t2 SET b=7895 WHERE a=11836; UPDATE t2 SET b=45015 WHERE a=11837; UPDATE t2 SET b=90217 WHERE a=11838; UPDATE t2 SET b=53959 WHERE a=11839; UPDATE t2 SET b=44129 WHERE a=11840; UPDATE t2 SET b=21487 WHERE a=11841; UPDATE t2 SET b=78695 WHERE a=11842; UPDATE t2 SET b=21944 WHERE a=11843; UPDATE t2 SET b=93333 WHERE a=11844; UPDATE t2 SET b=59085 WHERE a=11845; UPDATE t2 SET b=60665 WHERE a=11846; UPDATE t2 SET b=67893 WHERE a=11847; UPDATE t2 SET b=70790 WHERE a=11848; UPDATE t2 SET b=24185 WHERE a=11849; UPDATE t2 SET b=38929 WHERE a=11850; UPDATE t2 SET b=57828 WHERE a=11851; UPDATE t2 SET b=34379 WHERE a=11852; UPDATE t2 SET b=41209 WHERE a=11853; UPDATE t2 SET b=45560 WHERE a=11854; UPDATE t2 SET b=18564 WHERE a=11855; UPDATE t2 SET b=17657 WHERE a=11856; UPDATE t2 SET b=30994 WHERE a=11857; UPDATE t2 SET b=73338 WHERE a=11858; UPDATE t2 SET b=42729 WHERE a=11859; UPDATE t2 SET b=68573 WHERE a=11860; UPDATE t2 SET b=33 WHERE a=11861; UPDATE t2 SET b=91822 WHERE a=11862; UPDATE t2 SET b=14565 WHERE a=11863; UPDATE t2 SET b=50712 WHERE a=11864; UPDATE t2 SET b=39147 WHERE a=11865; UPDATE t2 SET b=52381 WHERE a=11866; UPDATE t2 SET b=67802 WHERE a=11867; UPDATE t2 SET b=93586 WHERE a=11868; UPDATE t2 SET b=6780 WHERE a=11869; UPDATE t2 SET b=14370 WHERE a=11870; UPDATE t2 SET b=17784 WHERE a=11871; UPDATE t2 SET b=8099 WHERE a=11872; UPDATE t2 SET b=28119 WHERE a=11873; UPDATE t2 SET b=17349 WHERE a=11874; UPDATE t2 SET b=18712 WHERE a=11875; UPDATE t2 SET b=28844 WHERE a=11876; UPDATE t2 SET b=34677 WHERE a=11877; UPDATE t2 SET b=62096 WHERE a=11878; UPDATE t2 SET b=62332 WHERE a=11879; UPDATE t2 SET b=82432 WHERE a=11880; UPDATE t2 SET b=89519 WHERE a=11881; UPDATE t2 SET b=94159 WHERE a=11882; UPDATE t2 SET b=44513 WHERE a=11883; UPDATE t2 SET b=34659 WHERE a=11884; UPDATE t2 SET b=27312 WHERE a=11885; UPDATE t2 SET b=57300 WHERE a=11886; UPDATE t2 SET b=87339 WHERE a=11887; UPDATE t2 SET b=63770 WHERE a=11888; UPDATE t2 SET b=79606 WHERE a=11889; UPDATE t2 SET b=74601 WHERE a=11890; UPDATE t2 SET b=98090 WHERE a=11891; UPDATE t2 SET b=27140 WHERE a=11892; UPDATE t2 SET b=92124 WHERE a=11893; UPDATE t2 SET b=55021 WHERE a=11894; UPDATE t2 SET b=58832 WHERE a=11895; UPDATE t2 SET b=68458 WHERE a=11896; UPDATE t2 SET b=75624 WHERE a=11897; UPDATE t2 SET b=91189 WHERE a=11898; UPDATE t2 SET b=64935 WHERE a=11899; UPDATE t2 SET b=59058 WHERE a=11900; UPDATE t2 SET b=49159 WHERE a=11901; UPDATE t2 SET b=29072 WHERE a=11902; UPDATE t2 SET b=9799 WHERE a=11903; UPDATE t2 SET b=32589 WHERE a=11904; UPDATE t2 SET b=55664 WHERE a=11905; UPDATE t2 SET b=80546 WHERE a=11906; UPDATE t2 SET b=84146 WHERE a=11907; UPDATE t2 SET b=34903 WHERE a=11908; UPDATE t2 SET b=8142 WHERE a=11909; UPDATE t2 SET b=85015 WHERE a=11910; UPDATE t2 SET b=81652 WHERE a=11911; UPDATE t2 SET b=8419 WHERE a=11912; UPDATE t2 SET b=41934 WHERE a=11913; UPDATE t2 SET b=23256 WHERE a=11914; UPDATE t2 SET b=15658 WHERE a=11915; UPDATE t2 SET b=72839 WHERE a=11916; UPDATE t2 SET b=84693 WHERE a=11917; UPDATE t2 SET b=24546 WHERE a=11918; UPDATE t2 SET b=90436 WHERE a=11919; UPDATE t2 SET b=24440 WHERE a=11920; UPDATE t2 SET b=81856 WHERE a=11921; UPDATE t2 SET b=19713 WHERE a=11922; UPDATE t2 SET b=23640 WHERE a=11923; UPDATE t2 SET b=9381 WHERE a=11924; UPDATE t2 SET b=91546 WHERE a=11925; UPDATE t2 SET b=36931 WHERE a=11926; UPDATE t2 SET b=49000 WHERE a=11927; UPDATE t2 SET b=44443 WHERE a=11928; UPDATE t2 SET b=69691 WHERE a=11929; UPDATE t2 SET b=98809 WHERE a=11930; UPDATE t2 SET b=80584 WHERE a=11931; UPDATE t2 SET b=43056 WHERE a=11932; UPDATE t2 SET b=87152 WHERE a=11933; UPDATE t2 SET b=49566 WHERE a=11934; UPDATE t2 SET b=79511 WHERE a=11935; UPDATE t2 SET b=58360 WHERE a=11936; UPDATE t2 SET b=72157 WHERE a=11937; UPDATE t2 SET b=89564 WHERE a=11938; UPDATE t2 SET b=64921 WHERE a=11939; UPDATE t2 SET b=90204 WHERE a=11940; UPDATE t2 SET b=12273 WHERE a=11941; UPDATE t2 SET b=6476 WHERE a=11942; UPDATE t2 SET b=60163 WHERE a=11943; UPDATE t2 SET b=3988 WHERE a=11944; UPDATE t2 SET b=26565 WHERE a=11945; UPDATE t2 SET b=36527 WHERE a=11946; UPDATE t2 SET b=81954 WHERE a=11947; UPDATE t2 SET b=93255 WHERE a=11948; UPDATE t2 SET b=83344 WHERE a=11949; UPDATE t2 SET b=95326 WHERE a=11950; UPDATE t2 SET b=10526 WHERE a=11951; UPDATE t2 SET b=91846 WHERE a=11952; UPDATE t2 SET b=86157 WHERE a=11953; UPDATE t2 SET b=18397 WHERE a=11954; UPDATE t2 SET b=79220 WHERE a=11955; UPDATE t2 SET b=1609 WHERE a=11956; UPDATE t2 SET b=34063 WHERE a=11957; UPDATE t2 SET b=9534 WHERE a=11958; UPDATE t2 SET b=28046 WHERE a=11959; UPDATE t2 SET b=26885 WHERE a=11960; UPDATE t2 SET b=91622 WHERE a=11961; UPDATE t2 SET b=16307 WHERE a=11962; UPDATE t2 SET b=64167 WHERE a=11963; UPDATE t2 SET b=43422 WHERE a=11964; UPDATE t2 SET b=88846 WHERE a=11965; UPDATE t2 SET b=26006 WHERE a=11966; UPDATE t2 SET b=90258 WHERE a=11967; UPDATE t2 SET b=28496 WHERE a=11968; UPDATE t2 SET b=46057 WHERE a=11969; UPDATE t2 SET b=65008 WHERE a=11970; UPDATE t2 SET b=90496 WHERE a=11971; UPDATE t2 SET b=28293 WHERE a=11972; UPDATE t2 SET b=84464 WHERE a=11973; UPDATE t2 SET b=75789 WHERE a=11974; UPDATE t2 SET b=20630 WHERE a=11975; UPDATE t2 SET b=61830 WHERE a=11976; UPDATE t2 SET b=87662 WHERE a=11977; UPDATE t2 SET b=97959 WHERE a=11978; UPDATE t2 SET b=66005 WHERE a=11979; UPDATE t2 SET b=54781 WHERE a=11980; UPDATE t2 SET b=36612 WHERE a=11981; UPDATE t2 SET b=243 WHERE a=11982; UPDATE t2 SET b=92051 WHERE a=11983; UPDATE t2 SET b=53461 WHERE a=11984; UPDATE t2 SET b=90007 WHERE a=11985; UPDATE t2 SET b=27776 WHERE a=11986; UPDATE t2 SET b=33232 WHERE a=11987; UPDATE t2 SET b=8520 WHERE a=11988; UPDATE t2 SET b=68067 WHERE a=11989; UPDATE t2 SET b=65409 WHERE a=11990; UPDATE t2 SET b=64040 WHERE a=11991; UPDATE t2 SET b=45662 WHERE a=11992; UPDATE t2 SET b=32667 WHERE a=11993; UPDATE t2 SET b=75597 WHERE a=11994; UPDATE t2 SET b=29747 WHERE a=11995; UPDATE t2 SET b=22471 WHERE a=11996; UPDATE t2 SET b=49335 WHERE a=11997; UPDATE t2 SET b=81024 WHERE a=11998; UPDATE t2 SET b=36670 WHERE a=11999; UPDATE t2 SET b=52256 WHERE a=12000; UPDATE t2 SET b=72354 WHERE a=12001; UPDATE t2 SET b=39523 WHERE a=12002; UPDATE t2 SET b=51210 WHERE a=12003; UPDATE t2 SET b=62370 WHERE a=12004; UPDATE t2 SET b=73917 WHERE a=12005; UPDATE t2 SET b=10018 WHERE a=12006; UPDATE t2 SET b=91976 WHERE a=12007; UPDATE t2 SET b=67409 WHERE a=12008; UPDATE t2 SET b=89104 WHERE a=12009; UPDATE t2 SET b=88797 WHERE a=12010; UPDATE t2 SET b=42465 WHERE a=12011; UPDATE t2 SET b=60730 WHERE a=12012; UPDATE t2 SET b=37501 WHERE a=12013; UPDATE t2 SET b=54611 WHERE a=12014; UPDATE t2 SET b=50272 WHERE a=12015; UPDATE t2 SET b=18064 WHERE a=12016; UPDATE t2 SET b=32250 WHERE a=12017; UPDATE t2 SET b=32635 WHERE a=12018; UPDATE t2 SET b=28842 WHERE a=12019; UPDATE t2 SET b=37758 WHERE a=12020; UPDATE t2 SET b=13689 WHERE a=12021; UPDATE t2 SET b=88543 WHERE a=12022; UPDATE t2 SET b=26957 WHERE a=12023; UPDATE t2 SET b=12279 WHERE a=12024; UPDATE t2 SET b=99898 WHERE a=12025; UPDATE t2 SET b=16768 WHERE a=12026; UPDATE t2 SET b=79134 WHERE a=12027; UPDATE t2 SET b=1585 WHERE a=12028; UPDATE t2 SET b=47374 WHERE a=12029; UPDATE t2 SET b=85383 WHERE a=12030; UPDATE t2 SET b=26961 WHERE a=12031; UPDATE t2 SET b=26538 WHERE a=12032; UPDATE t2 SET b=44748 WHERE a=12033; UPDATE t2 SET b=58567 WHERE a=12034; UPDATE t2 SET b=74328 WHERE a=12035; UPDATE t2 SET b=20805 WHERE a=12036; UPDATE t2 SET b=35177 WHERE a=12037; UPDATE t2 SET b=91419 WHERE a=12038; UPDATE t2 SET b=50518 WHERE a=12039; UPDATE t2 SET b=18668 WHERE a=12040; UPDATE t2 SET b=48193 WHERE a=12041; UPDATE t2 SET b=25805 WHERE a=12042; UPDATE t2 SET b=31987 WHERE a=12043; UPDATE t2 SET b=28058 WHERE a=12044; UPDATE t2 SET b=54552 WHERE a=12045; UPDATE t2 SET b=68070 WHERE a=12046; UPDATE t2 SET b=24117 WHERE a=12047; UPDATE t2 SET b=70058 WHERE a=12048; UPDATE t2 SET b=33599 WHERE a=12049; UPDATE t2 SET b=36960 WHERE a=12050; UPDATE t2 SET b=63767 WHERE a=12051; UPDATE t2 SET b=95706 WHERE a=12052; UPDATE t2 SET b=79991 WHERE a=12053; UPDATE t2 SET b=61671 WHERE a=12054; UPDATE t2 SET b=68988 WHERE a=12055; UPDATE t2 SET b=80956 WHERE a=12056; UPDATE t2 SET b=75557 WHERE a=12057; UPDATE t2 SET b=18321 WHERE a=12058; UPDATE t2 SET b=60978 WHERE a=12059; UPDATE t2 SET b=91838 WHERE a=12060; UPDATE t2 SET b=88902 WHERE a=12061; UPDATE t2 SET b=91202 WHERE a=12062; UPDATE t2 SET b=73396 WHERE a=12063; UPDATE t2 SET b=44676 WHERE a=12064; UPDATE t2 SET b=28018 WHERE a=12065; UPDATE t2 SET b=34764 WHERE a=12066; UPDATE t2 SET b=34157 WHERE a=12067; UPDATE t2 SET b=57715 WHERE a=12068; UPDATE t2 SET b=77104 WHERE a=12069; UPDATE t2 SET b=61381 WHERE a=12070; UPDATE t2 SET b=24825 WHERE a=12071; UPDATE t2 SET b=3222 WHERE a=12072; UPDATE t2 SET b=10231 WHERE a=12073; UPDATE t2 SET b=30549 WHERE a=12074; UPDATE t2 SET b=92785 WHERE a=12075; UPDATE t2 SET b=56421 WHERE a=12076; UPDATE t2 SET b=86231 WHERE a=12077; UPDATE t2 SET b=16051 WHERE a=12078; UPDATE t2 SET b=69118 WHERE a=12079; UPDATE t2 SET b=26105 WHERE a=12080; UPDATE t2 SET b=82005 WHERE a=12081; UPDATE t2 SET b=10841 WHERE a=12082; UPDATE t2 SET b=96080 WHERE a=12083; UPDATE t2 SET b=36126 WHERE a=12084; UPDATE t2 SET b=83364 WHERE a=12085; UPDATE t2 SET b=74769 WHERE a=12086; UPDATE t2 SET b=53098 WHERE a=12087; UPDATE t2 SET b=62548 WHERE a=12088; UPDATE t2 SET b=15210 WHERE a=12089; UPDATE t2 SET b=29144 WHERE a=12090; UPDATE t2 SET b=22105 WHERE a=12091; UPDATE t2 SET b=82211 WHERE a=12092; UPDATE t2 SET b=24799 WHERE a=12093; UPDATE t2 SET b=95598 WHERE a=12094; UPDATE t2 SET b=73489 WHERE a=12095; UPDATE t2 SET b=81017 WHERE a=12096; UPDATE t2 SET b=44251 WHERE a=12097; UPDATE t2 SET b=37236 WHERE a=12098; UPDATE t2 SET b=74074 WHERE a=12099; UPDATE t2 SET b=87687 WHERE a=12100; UPDATE t2 SET b=34691 WHERE a=12101; UPDATE t2 SET b=76086 WHERE a=12102; UPDATE t2 SET b=41856 WHERE a=12103; UPDATE t2 SET b=790 WHERE a=12104; UPDATE t2 SET b=50866 WHERE a=12105; UPDATE t2 SET b=58694 WHERE a=12106; UPDATE t2 SET b=37998 WHERE a=12107; UPDATE t2 SET b=91655 WHERE a=12108; UPDATE t2 SET b=87812 WHERE a=12109; UPDATE t2 SET b=1976 WHERE a=12110; UPDATE t2 SET b=26007 WHERE a=12111; UPDATE t2 SET b=86471 WHERE a=12112; UPDATE t2 SET b=11936 WHERE a=12113; UPDATE t2 SET b=93468 WHERE a=12114; UPDATE t2 SET b=82335 WHERE a=12115; UPDATE t2 SET b=94542 WHERE a=12116; UPDATE t2 SET b=9887 WHERE a=12117; UPDATE t2 SET b=93697 WHERE a=12118; UPDATE t2 SET b=94414 WHERE a=12119; UPDATE t2 SET b=62284 WHERE a=12120; UPDATE t2 SET b=60770 WHERE a=12121; UPDATE t2 SET b=95046 WHERE a=12122; UPDATE t2 SET b=98860 WHERE a=12123; UPDATE t2 SET b=11814 WHERE a=12124; UPDATE t2 SET b=67549 WHERE a=12125; UPDATE t2 SET b=96276 WHERE a=12126; UPDATE t2 SET b=78632 WHERE a=12127; UPDATE t2 SET b=60996 WHERE a=12128; UPDATE t2 SET b=16813 WHERE a=12129; UPDATE t2 SET b=15806 WHERE a=12130; UPDATE t2 SET b=31524 WHERE a=12131; UPDATE t2 SET b=56525 WHERE a=12132; UPDATE t2 SET b=40381 WHERE a=12133; UPDATE t2 SET b=82597 WHERE a=12134; UPDATE t2 SET b=78331 WHERE a=12135; UPDATE t2 SET b=46598 WHERE a=12136; UPDATE t2 SET b=51423 WHERE a=12137; UPDATE t2 SET b=72679 WHERE a=12138; UPDATE t2 SET b=92153 WHERE a=12139; UPDATE t2 SET b=51662 WHERE a=12140; UPDATE t2 SET b=30606 WHERE a=12141; UPDATE t2 SET b=58874 WHERE a=12142; UPDATE t2 SET b=85990 WHERE a=12143; UPDATE t2 SET b=4782 WHERE a=12144; UPDATE t2 SET b=659 WHERE a=12145; UPDATE t2 SET b=52476 WHERE a=12146; UPDATE t2 SET b=46567 WHERE a=12147; UPDATE t2 SET b=8136 WHERE a=12148; UPDATE t2 SET b=62813 WHERE a=12149; UPDATE t2 SET b=41772 WHERE a=12150; UPDATE t2 SET b=25407 WHERE a=12151; UPDATE t2 SET b=69359 WHERE a=12152; UPDATE t2 SET b=21783 WHERE a=12153; UPDATE t2 SET b=19200 WHERE a=12154; UPDATE t2 SET b=41760 WHERE a=12155; UPDATE t2 SET b=69829 WHERE a=12156; UPDATE t2 SET b=86849 WHERE a=12157; UPDATE t2 SET b=81173 WHERE a=12158; UPDATE t2 SET b=92621 WHERE a=12159; UPDATE t2 SET b=10592 WHERE a=12160; UPDATE t2 SET b=96775 WHERE a=12161; UPDATE t2 SET b=53120 WHERE a=12162; UPDATE t2 SET b=3835 WHERE a=12163; UPDATE t2 SET b=35086 WHERE a=12164; UPDATE t2 SET b=69249 WHERE a=12165; UPDATE t2 SET b=51249 WHERE a=12166; UPDATE t2 SET b=78737 WHERE a=12167; UPDATE t2 SET b=79434 WHERE a=12168; UPDATE t2 SET b=75756 WHERE a=12169; UPDATE t2 SET b=76445 WHERE a=12170; UPDATE t2 SET b=14042 WHERE a=12171; UPDATE t2 SET b=84681 WHERE a=12172; UPDATE t2 SET b=93142 WHERE a=12173; UPDATE t2 SET b=83597 WHERE a=12174; UPDATE t2 SET b=43010 WHERE a=12175; UPDATE t2 SET b=40316 WHERE a=12176; UPDATE t2 SET b=66807 WHERE a=12177; UPDATE t2 SET b=61244 WHERE a=12178; UPDATE t2 SET b=51176 WHERE a=12179; UPDATE t2 SET b=44106 WHERE a=12180; UPDATE t2 SET b=8338 WHERE a=12181; UPDATE t2 SET b=64109 WHERE a=12182; UPDATE t2 SET b=13898 WHERE a=12183; UPDATE t2 SET b=48393 WHERE a=12184; UPDATE t2 SET b=39371 WHERE a=12185; UPDATE t2 SET b=61218 WHERE a=12186; UPDATE t2 SET b=97445 WHERE a=12187; UPDATE t2 SET b=21813 WHERE a=12188; UPDATE t2 SET b=56255 WHERE a=12189; UPDATE t2 SET b=57630 WHERE a=12190; UPDATE t2 SET b=70547 WHERE a=12191; UPDATE t2 SET b=59015 WHERE a=12192; UPDATE t2 SET b=56163 WHERE a=12193; UPDATE t2 SET b=20200 WHERE a=12194; UPDATE t2 SET b=88811 WHERE a=12195; UPDATE t2 SET b=26467 WHERE a=12196; UPDATE t2 SET b=18746 WHERE a=12197; UPDATE t2 SET b=75612 WHERE a=12198; UPDATE t2 SET b=48005 WHERE a=12199; UPDATE t2 SET b=26501 WHERE a=12200; UPDATE t2 SET b=58574 WHERE a=12201; UPDATE t2 SET b=97685 WHERE a=12202; UPDATE t2 SET b=12378 WHERE a=12203; UPDATE t2 SET b=13987 WHERE a=12204; UPDATE t2 SET b=41325 WHERE a=12205; UPDATE t2 SET b=78613 WHERE a=12206; UPDATE t2 SET b=37169 WHERE a=12207; UPDATE t2 SET b=22110 WHERE a=12208; UPDATE t2 SET b=83659 WHERE a=12209; UPDATE t2 SET b=41494 WHERE a=12210; UPDATE t2 SET b=57097 WHERE a=12211; UPDATE t2 SET b=32354 WHERE a=12212; UPDATE t2 SET b=35005 WHERE a=12213; UPDATE t2 SET b=99731 WHERE a=12214; UPDATE t2 SET b=35098 WHERE a=12215; UPDATE t2 SET b=30559 WHERE a=12216; UPDATE t2 SET b=77720 WHERE a=12217; UPDATE t2 SET b=93331 WHERE a=12218; UPDATE t2 SET b=35216 WHERE a=12219; UPDATE t2 SET b=91778 WHERE a=12220; UPDATE t2 SET b=36056 WHERE a=12221; UPDATE t2 SET b=69969 WHERE a=12222; UPDATE t2 SET b=15162 WHERE a=12223; UPDATE t2 SET b=50032 WHERE a=12224; UPDATE t2 SET b=36439 WHERE a=12225; UPDATE t2 SET b=72771 WHERE a=12226; UPDATE t2 SET b=34090 WHERE a=12227; UPDATE t2 SET b=63867 WHERE a=12228; UPDATE t2 SET b=48552 WHERE a=12229; UPDATE t2 SET b=51690 WHERE a=12230; UPDATE t2 SET b=94703 WHERE a=12231; UPDATE t2 SET b=36335 WHERE a=12232; UPDATE t2 SET b=72968 WHERE a=12233; UPDATE t2 SET b=7043 WHERE a=12234; UPDATE t2 SET b=52577 WHERE a=12235; UPDATE t2 SET b=17836 WHERE a=12236; UPDATE t2 SET b=80401 WHERE a=12237; UPDATE t2 SET b=24560 WHERE a=12238; UPDATE t2 SET b=7696 WHERE a=12239; UPDATE t2 SET b=78236 WHERE a=12240; UPDATE t2 SET b=65713 WHERE a=12241; UPDATE t2 SET b=28663 WHERE a=12242; UPDATE t2 SET b=7395 WHERE a=12243; UPDATE t2 SET b=49655 WHERE a=12244; UPDATE t2 SET b=9979 WHERE a=12245; UPDATE t2 SET b=51661 WHERE a=12246; UPDATE t2 SET b=19209 WHERE a=12247; UPDATE t2 SET b=36470 WHERE a=12248; UPDATE t2 SET b=75982 WHERE a=12249; UPDATE t2 SET b=91706 WHERE a=12250; UPDATE t2 SET b=56695 WHERE a=12251; UPDATE t2 SET b=65323 WHERE a=12252; UPDATE t2 SET b=53228 WHERE a=12253; UPDATE t2 SET b=56277 WHERE a=12254; UPDATE t2 SET b=62014 WHERE a=12255; UPDATE t2 SET b=23280 WHERE a=12256; UPDATE t2 SET b=17654 WHERE a=12257; UPDATE t2 SET b=40028 WHERE a=12258; UPDATE t2 SET b=86365 WHERE a=12259; UPDATE t2 SET b=97673 WHERE a=12260; UPDATE t2 SET b=60137 WHERE a=12261; UPDATE t2 SET b=91469 WHERE a=12262; UPDATE t2 SET b=99253 WHERE a=12263; UPDATE t2 SET b=9161 WHERE a=12264; UPDATE t2 SET b=17204 WHERE a=12265; UPDATE t2 SET b=46998 WHERE a=12266; UPDATE t2 SET b=22176 WHERE a=12267; UPDATE t2 SET b=58430 WHERE a=12268; UPDATE t2 SET b=96941 WHERE a=12269; UPDATE t2 SET b=42722 WHERE a=12270; UPDATE t2 SET b=36207 WHERE a=12271; UPDATE t2 SET b=31046 WHERE a=12272; UPDATE t2 SET b=20276 WHERE a=12273; UPDATE t2 SET b=94296 WHERE a=12274; UPDATE t2 SET b=50295 WHERE a=12275; UPDATE t2 SET b=37184 WHERE a=12276; UPDATE t2 SET b=55709 WHERE a=12277; UPDATE t2 SET b=64891 WHERE a=12278; UPDATE t2 SET b=4833 WHERE a=12279; UPDATE t2 SET b=86213 WHERE a=12280; UPDATE t2 SET b=68910 WHERE a=12281; UPDATE t2 SET b=92271 WHERE a=12282; UPDATE t2 SET b=15305 WHERE a=12283; UPDATE t2 SET b=8219 WHERE a=12284; UPDATE t2 SET b=55762 WHERE a=12285; UPDATE t2 SET b=46418 WHERE a=12286; UPDATE t2 SET b=43432 WHERE a=12287; UPDATE t2 SET b=85465 WHERE a=12288; UPDATE t2 SET b=90663 WHERE a=12289; UPDATE t2 SET b=3824 WHERE a=12290; UPDATE t2 SET b=83877 WHERE a=12291; UPDATE t2 SET b=30093 WHERE a=12292; UPDATE t2 SET b=99286 WHERE a=12293; UPDATE t2 SET b=71420 WHERE a=12294; UPDATE t2 SET b=91841 WHERE a=12295; UPDATE t2 SET b=61753 WHERE a=12296; UPDATE t2 SET b=13210 WHERE a=12297; UPDATE t2 SET b=88922 WHERE a=12298; UPDATE t2 SET b=6523 WHERE a=12299; UPDATE t2 SET b=29921 WHERE a=12300; UPDATE t2 SET b=92826 WHERE a=12301; UPDATE t2 SET b=28274 WHERE a=12302; UPDATE t2 SET b=5932 WHERE a=12303; UPDATE t2 SET b=33103 WHERE a=12304; UPDATE t2 SET b=86335 WHERE a=12305; UPDATE t2 SET b=44959 WHERE a=12306; UPDATE t2 SET b=60855 WHERE a=12307; UPDATE t2 SET b=83573 WHERE a=12308; UPDATE t2 SET b=99449 WHERE a=12309; UPDATE t2 SET b=14190 WHERE a=12310; UPDATE t2 SET b=45643 WHERE a=12311; UPDATE t2 SET b=45508 WHERE a=12312; UPDATE t2 SET b=56778 WHERE a=12313; UPDATE t2 SET b=51882 WHERE a=12314; UPDATE t2 SET b=35614 WHERE a=12315; UPDATE t2 SET b=69820 WHERE a=12316; UPDATE t2 SET b=46256 WHERE a=12317; UPDATE t2 SET b=67015 WHERE a=12318; UPDATE t2 SET b=26479 WHERE a=12319; UPDATE t2 SET b=46467 WHERE a=12320; UPDATE t2 SET b=73002 WHERE a=12321; UPDATE t2 SET b=41627 WHERE a=12322; UPDATE t2 SET b=95401 WHERE a=12323; UPDATE t2 SET b=66003 WHERE a=12324; UPDATE t2 SET b=44376 WHERE a=12325; UPDATE t2 SET b=63315 WHERE a=12326; UPDATE t2 SET b=66899 WHERE a=12327; UPDATE t2 SET b=92630 WHERE a=12328; UPDATE t2 SET b=5881 WHERE a=12329; UPDATE t2 SET b=78175 WHERE a=12330; UPDATE t2 SET b=28386 WHERE a=12331; UPDATE t2 SET b=16860 WHERE a=12332; UPDATE t2 SET b=82305 WHERE a=12333; UPDATE t2 SET b=41933 WHERE a=12334; UPDATE t2 SET b=18811 WHERE a=12335; UPDATE t2 SET b=33353 WHERE a=12336; UPDATE t2 SET b=96727 WHERE a=12337; UPDATE t2 SET b=44637 WHERE a=12338; UPDATE t2 SET b=53061 WHERE a=12339; UPDATE t2 SET b=29836 WHERE a=12340; UPDATE t2 SET b=50220 WHERE a=12341; UPDATE t2 SET b=98382 WHERE a=12342; UPDATE t2 SET b=46495 WHERE a=12343; UPDATE t2 SET b=58030 WHERE a=12344; UPDATE t2 SET b=35826 WHERE a=12345; UPDATE t2 SET b=90637 WHERE a=12346; UPDATE t2 SET b=47496 WHERE a=12347; UPDATE t2 SET b=83311 WHERE a=12348; UPDATE t2 SET b=17407 WHERE a=12349; UPDATE t2 SET b=31625 WHERE a=12350; UPDATE t2 SET b=41813 WHERE a=12351; UPDATE t2 SET b=85056 WHERE a=12352; UPDATE t2 SET b=53301 WHERE a=12353; UPDATE t2 SET b=54122 WHERE a=12354; UPDATE t2 SET b=82599 WHERE a=12355; UPDATE t2 SET b=28902 WHERE a=12356; UPDATE t2 SET b=2917 WHERE a=12357; UPDATE t2 SET b=22115 WHERE a=12358; UPDATE t2 SET b=20151 WHERE a=12359; UPDATE t2 SET b=81001 WHERE a=12360; UPDATE t2 SET b=84104 WHERE a=12361; UPDATE t2 SET b=12280 WHERE a=12362; UPDATE t2 SET b=7948 WHERE a=12363; UPDATE t2 SET b=27110 WHERE a=12364; UPDATE t2 SET b=59118 WHERE a=12365; UPDATE t2 SET b=29608 WHERE a=12366; UPDATE t2 SET b=14748 WHERE a=12367; UPDATE t2 SET b=80181 WHERE a=12368; UPDATE t2 SET b=73972 WHERE a=12369; UPDATE t2 SET b=46840 WHERE a=12370; UPDATE t2 SET b=1805 WHERE a=12371; UPDATE t2 SET b=48431 WHERE a=12372; UPDATE t2 SET b=38323 WHERE a=12373; UPDATE t2 SET b=49577 WHERE a=12374; UPDATE t2 SET b=9058 WHERE a=12375; UPDATE t2 SET b=75182 WHERE a=12376; UPDATE t2 SET b=47245 WHERE a=12377; UPDATE t2 SET b=79105 WHERE a=12378; UPDATE t2 SET b=65739 WHERE a=12379; UPDATE t2 SET b=19728 WHERE a=12380; UPDATE t2 SET b=76566 WHERE a=12381; UPDATE t2 SET b=65946 WHERE a=12382; UPDATE t2 SET b=30707 WHERE a=12383; UPDATE t2 SET b=94611 WHERE a=12384; UPDATE t2 SET b=45447 WHERE a=12385; UPDATE t2 SET b=39787 WHERE a=12386; UPDATE t2 SET b=68331 WHERE a=12387; UPDATE t2 SET b=1460 WHERE a=12388; UPDATE t2 SET b=16243 WHERE a=12389; UPDATE t2 SET b=17534 WHERE a=12390; UPDATE t2 SET b=34172 WHERE a=12391; UPDATE t2 SET b=87835 WHERE a=12392; UPDATE t2 SET b=29404 WHERE a=12393; UPDATE t2 SET b=45899 WHERE a=12394; UPDATE t2 SET b=8343 WHERE a=12395; UPDATE t2 SET b=39877 WHERE a=12396; UPDATE t2 SET b=84311 WHERE a=12397; UPDATE t2 SET b=98407 WHERE a=12398; UPDATE t2 SET b=19489 WHERE a=12399; UPDATE t2 SET b=52507 WHERE a=12400; UPDATE t2 SET b=25667 WHERE a=12401; UPDATE t2 SET b=2608 WHERE a=12402; UPDATE t2 SET b=62116 WHERE a=12403; UPDATE t2 SET b=98539 WHERE a=12404; UPDATE t2 SET b=5554 WHERE a=12405; UPDATE t2 SET b=95945 WHERE a=12406; UPDATE t2 SET b=21579 WHERE a=12407; UPDATE t2 SET b=8994 WHERE a=12408; UPDATE t2 SET b=95190 WHERE a=12409; UPDATE t2 SET b=11623 WHERE a=12410; UPDATE t2 SET b=72819 WHERE a=12411; UPDATE t2 SET b=69144 WHERE a=12412; UPDATE t2 SET b=32508 WHERE a=12413; UPDATE t2 SET b=98919 WHERE a=12414; UPDATE t2 SET b=86139 WHERE a=12415; UPDATE t2 SET b=6912 WHERE a=12416; UPDATE t2 SET b=3578 WHERE a=12417; UPDATE t2 SET b=16364 WHERE a=12418; UPDATE t2 SET b=2558 WHERE a=12419; UPDATE t2 SET b=74659 WHERE a=12420; UPDATE t2 SET b=48078 WHERE a=12421; UPDATE t2 SET b=51154 WHERE a=12422; UPDATE t2 SET b=38856 WHERE a=12423; UPDATE t2 SET b=26579 WHERE a=12424; UPDATE t2 SET b=89220 WHERE a=12425; UPDATE t2 SET b=4023 WHERE a=12426; UPDATE t2 SET b=43644 WHERE a=12427; UPDATE t2 SET b=42372 WHERE a=12428; UPDATE t2 SET b=5128 WHERE a=12429; UPDATE t2 SET b=61987 WHERE a=12430; UPDATE t2 SET b=84698 WHERE a=12431; UPDATE t2 SET b=17560 WHERE a=12432; UPDATE t2 SET b=3659 WHERE a=12433; UPDATE t2 SET b=61130 WHERE a=12434; UPDATE t2 SET b=13466 WHERE a=12435; UPDATE t2 SET b=51974 WHERE a=12436; UPDATE t2 SET b=98380 WHERE a=12437; UPDATE t2 SET b=1972 WHERE a=12438; UPDATE t2 SET b=45671 WHERE a=12439; UPDATE t2 SET b=68191 WHERE a=12440; UPDATE t2 SET b=46203 WHERE a=12441; UPDATE t2 SET b=66100 WHERE a=12442; UPDATE t2 SET b=70784 WHERE a=12443; UPDATE t2 SET b=8979 WHERE a=12444; UPDATE t2 SET b=82810 WHERE a=12445; UPDATE t2 SET b=69119 WHERE a=12446; UPDATE t2 SET b=61710 WHERE a=12447; UPDATE t2 SET b=96408 WHERE a=12448; UPDATE t2 SET b=11364 WHERE a=12449; UPDATE t2 SET b=83945 WHERE a=12450; UPDATE t2 SET b=41105 WHERE a=12451; UPDATE t2 SET b=12656 WHERE a=12452; UPDATE t2 SET b=28178 WHERE a=12453; UPDATE t2 SET b=60459 WHERE a=12454; UPDATE t2 SET b=19707 WHERE a=12455; UPDATE t2 SET b=2939 WHERE a=12456; UPDATE t2 SET b=31409 WHERE a=12457; UPDATE t2 SET b=51833 WHERE a=12458; UPDATE t2 SET b=87917 WHERE a=12459; UPDATE t2 SET b=6824 WHERE a=12460; UPDATE t2 SET b=36150 WHERE a=12461; UPDATE t2 SET b=73905 WHERE a=12462; UPDATE t2 SET b=79828 WHERE a=12463; UPDATE t2 SET b=97380 WHERE a=12464; UPDATE t2 SET b=28594 WHERE a=12465; UPDATE t2 SET b=40109 WHERE a=12466; UPDATE t2 SET b=37884 WHERE a=12467; UPDATE t2 SET b=27592 WHERE a=12468; UPDATE t2 SET b=7014 WHERE a=12469; UPDATE t2 SET b=17829 WHERE a=12470; UPDATE t2 SET b=17328 WHERE a=12471; UPDATE t2 SET b=43642 WHERE a=12472; UPDATE t2 SET b=66725 WHERE a=12473; UPDATE t2 SET b=76689 WHERE a=12474; UPDATE t2 SET b=44687 WHERE a=12475; UPDATE t2 SET b=37293 WHERE a=12476; UPDATE t2 SET b=17518 WHERE a=12477; UPDATE t2 SET b=23726 WHERE a=12478; UPDATE t2 SET b=73393 WHERE a=12479; UPDATE t2 SET b=45802 WHERE a=12480; UPDATE t2 SET b=93329 WHERE a=12481; UPDATE t2 SET b=18649 WHERE a=12482; UPDATE t2 SET b=89487 WHERE a=12483; UPDATE t2 SET b=70382 WHERE a=12484; UPDATE t2 SET b=474 WHERE a=12485; UPDATE t2 SET b=87033 WHERE a=12486; UPDATE t2 SET b=5420 WHERE a=12487; UPDATE t2 SET b=41810 WHERE a=12488; UPDATE t2 SET b=66289 WHERE a=12489; UPDATE t2 SET b=43332 WHERE a=12490; UPDATE t2 SET b=21903 WHERE a=12491; UPDATE t2 SET b=35186 WHERE a=12492; UPDATE t2 SET b=31893 WHERE a=12493; UPDATE t2 SET b=21135 WHERE a=12494; UPDATE t2 SET b=7614 WHERE a=12495; UPDATE t2 SET b=85571 WHERE a=12496; UPDATE t2 SET b=20023 WHERE a=12497; UPDATE t2 SET b=68907 WHERE a=12498; UPDATE t2 SET b=88623 WHERE a=12499; UPDATE t2 SET b=67718 WHERE a=12500; UPDATE t2 SET b=36255 WHERE a=12501; UPDATE t2 SET b=99916 WHERE a=12502; UPDATE t2 SET b=70100 WHERE a=12503; UPDATE t2 SET b=98011 WHERE a=12504; UPDATE t2 SET b=1474 WHERE a=12505; UPDATE t2 SET b=79648 WHERE a=12506; UPDATE t2 SET b=50522 WHERE a=12507; UPDATE t2 SET b=17354 WHERE a=12508; UPDATE t2 SET b=86824 WHERE a=12509; UPDATE t2 SET b=57606 WHERE a=12510; UPDATE t2 SET b=81323 WHERE a=12511; UPDATE t2 SET b=28383 WHERE a=12512; UPDATE t2 SET b=4202 WHERE a=12513; UPDATE t2 SET b=90337 WHERE a=12514; UPDATE t2 SET b=15036 WHERE a=12515; UPDATE t2 SET b=2531 WHERE a=12516; UPDATE t2 SET b=86420 WHERE a=12517; UPDATE t2 SET b=55239 WHERE a=12518; UPDATE t2 SET b=35111 WHERE a=12519; UPDATE t2 SET b=59332 WHERE a=12520; UPDATE t2 SET b=62952 WHERE a=12521; UPDATE t2 SET b=91492 WHERE a=12522; UPDATE t2 SET b=70229 WHERE a=12523; UPDATE t2 SET b=16511 WHERE a=12524; UPDATE t2 SET b=29764 WHERE a=12525; UPDATE t2 SET b=4895 WHERE a=12526; UPDATE t2 SET b=39655 WHERE a=12527; UPDATE t2 SET b=95528 WHERE a=12528; UPDATE t2 SET b=97530 WHERE a=12529; UPDATE t2 SET b=72030 WHERE a=12530; UPDATE t2 SET b=58641 WHERE a=12531; UPDATE t2 SET b=67716 WHERE a=12532; UPDATE t2 SET b=59606 WHERE a=12533; UPDATE t2 SET b=84120 WHERE a=12534; UPDATE t2 SET b=40915 WHERE a=12535; UPDATE t2 SET b=30057 WHERE a=12536; UPDATE t2 SET b=39260 WHERE a=12537; UPDATE t2 SET b=12816 WHERE a=12538; UPDATE t2 SET b=3678 WHERE a=12539; UPDATE t2 SET b=24690 WHERE a=12540; UPDATE t2 SET b=75244 WHERE a=12541; UPDATE t2 SET b=70174 WHERE a=12542; UPDATE t2 SET b=63608 WHERE a=12543; UPDATE t2 SET b=75781 WHERE a=12544; UPDATE t2 SET b=73506 WHERE a=12545; UPDATE t2 SET b=92682 WHERE a=12546; UPDATE t2 SET b=27815 WHERE a=12547; UPDATE t2 SET b=63706 WHERE a=12548; UPDATE t2 SET b=66481 WHERE a=12549; UPDATE t2 SET b=47458 WHERE a=12550; UPDATE t2 SET b=60772 WHERE a=12551; UPDATE t2 SET b=96097 WHERE a=12552; UPDATE t2 SET b=62328 WHERE a=12553; UPDATE t2 SET b=85170 WHERE a=12554; UPDATE t2 SET b=70551 WHERE a=12555; UPDATE t2 SET b=4680 WHERE a=12556; UPDATE t2 SET b=38802 WHERE a=12557; UPDATE t2 SET b=73472 WHERE a=12558; UPDATE t2 SET b=16987 WHERE a=12559; UPDATE t2 SET b=24254 WHERE a=12560; UPDATE t2 SET b=82907 WHERE a=12561; UPDATE t2 SET b=37983 WHERE a=12562; UPDATE t2 SET b=2480 WHERE a=12563; UPDATE t2 SET b=67515 WHERE a=12564; UPDATE t2 SET b=26553 WHERE a=12565; UPDATE t2 SET b=35587 WHERE a=12566; UPDATE t2 SET b=44563 WHERE a=12567; UPDATE t2 SET b=35143 WHERE a=12568; UPDATE t2 SET b=30818 WHERE a=12569; UPDATE t2 SET b=83599 WHERE a=12570; UPDATE t2 SET b=6557 WHERE a=12571; UPDATE t2 SET b=82241 WHERE a=12572; UPDATE t2 SET b=44716 WHERE a=12573; UPDATE t2 SET b=50316 WHERE a=12574; UPDATE t2 SET b=18216 WHERE a=12575; UPDATE t2 SET b=9706 WHERE a=12576; UPDATE t2 SET b=90926 WHERE a=12577; UPDATE t2 SET b=54896 WHERE a=12578; UPDATE t2 SET b=90949 WHERE a=12579; UPDATE t2 SET b=96502 WHERE a=12580; UPDATE t2 SET b=63371 WHERE a=12581; UPDATE t2 SET b=65307 WHERE a=12582; UPDATE t2 SET b=15365 WHERE a=12583; UPDATE t2 SET b=39370 WHERE a=12584; UPDATE t2 SET b=1701 WHERE a=12585; UPDATE t2 SET b=52378 WHERE a=12586; UPDATE t2 SET b=97431 WHERE a=12587; UPDATE t2 SET b=23070 WHERE a=12588; UPDATE t2 SET b=86353 WHERE a=12589; UPDATE t2 SET b=94208 WHERE a=12590; UPDATE t2 SET b=3433 WHERE a=12591; UPDATE t2 SET b=30822 WHERE a=12592; UPDATE t2 SET b=69577 WHERE a=12593; UPDATE t2 SET b=6604 WHERE a=12594; UPDATE t2 SET b=93876 WHERE a=12595; UPDATE t2 SET b=68922 WHERE a=12596; UPDATE t2 SET b=34409 WHERE a=12597; UPDATE t2 SET b=4977 WHERE a=12598; UPDATE t2 SET b=66364 WHERE a=12599; UPDATE t2 SET b=78589 WHERE a=12600; UPDATE t2 SET b=14684 WHERE a=12601; UPDATE t2 SET b=18927 WHERE a=12602; UPDATE t2 SET b=82498 WHERE a=12603; UPDATE t2 SET b=53728 WHERE a=12604; UPDATE t2 SET b=42966 WHERE a=12605; UPDATE t2 SET b=64473 WHERE a=12606; UPDATE t2 SET b=88425 WHERE a=12607; UPDATE t2 SET b=64085 WHERE a=12608; UPDATE t2 SET b=77588 WHERE a=12609; UPDATE t2 SET b=53406 WHERE a=12610; UPDATE t2 SET b=67168 WHERE a=12611; UPDATE t2 SET b=41655 WHERE a=12612; UPDATE t2 SET b=36461 WHERE a=12613; UPDATE t2 SET b=19805 WHERE a=12614; UPDATE t2 SET b=47678 WHERE a=12615; UPDATE t2 SET b=22918 WHERE a=12616; UPDATE t2 SET b=84119 WHERE a=12617; UPDATE t2 SET b=16602 WHERE a=12618; UPDATE t2 SET b=48842 WHERE a=12619; UPDATE t2 SET b=94052 WHERE a=12620; UPDATE t2 SET b=41028 WHERE a=12621; UPDATE t2 SET b=1337 WHERE a=12622; UPDATE t2 SET b=60070 WHERE a=12623; UPDATE t2 SET b=98955 WHERE a=12624; UPDATE t2 SET b=84553 WHERE a=12625; UPDATE t2 SET b=67258 WHERE a=12626; UPDATE t2 SET b=6987 WHERE a=12627; UPDATE t2 SET b=26715 WHERE a=12628; UPDATE t2 SET b=70082 WHERE a=12629; UPDATE t2 SET b=80913 WHERE a=12630; UPDATE t2 SET b=25224 WHERE a=12631; UPDATE t2 SET b=66116 WHERE a=12632; UPDATE t2 SET b=30622 WHERE a=12633; UPDATE t2 SET b=1627 WHERE a=12634; UPDATE t2 SET b=45173 WHERE a=12635; UPDATE t2 SET b=32839 WHERE a=12636; UPDATE t2 SET b=44527 WHERE a=12637; UPDATE t2 SET b=79672 WHERE a=12638; UPDATE t2 SET b=95081 WHERE a=12639; UPDATE t2 SET b=6171 WHERE a=12640; UPDATE t2 SET b=35194 WHERE a=12641; UPDATE t2 SET b=4056 WHERE a=12642; UPDATE t2 SET b=83848 WHERE a=12643; UPDATE t2 SET b=12202 WHERE a=12644; UPDATE t2 SET b=82981 WHERE a=12645; UPDATE t2 SET b=81394 WHERE a=12646; UPDATE t2 SET b=65014 WHERE a=12647; UPDATE t2 SET b=17607 WHERE a=12648; UPDATE t2 SET b=70159 WHERE a=12649; UPDATE t2 SET b=92412 WHERE a=12650; UPDATE t2 SET b=3835 WHERE a=12651; UPDATE t2 SET b=55770 WHERE a=12652; UPDATE t2 SET b=48307 WHERE a=12653; UPDATE t2 SET b=37177 WHERE a=12654; UPDATE t2 SET b=16035 WHERE a=12655; UPDATE t2 SET b=88292 WHERE a=12656; UPDATE t2 SET b=27176 WHERE a=12657; UPDATE t2 SET b=50364 WHERE a=12658; UPDATE t2 SET b=12041 WHERE a=12659; UPDATE t2 SET b=20171 WHERE a=12660; UPDATE t2 SET b=40467 WHERE a=12661; UPDATE t2 SET b=5618 WHERE a=12662; UPDATE t2 SET b=2224 WHERE a=12663; UPDATE t2 SET b=96047 WHERE a=12664; UPDATE t2 SET b=48560 WHERE a=12665; UPDATE t2 SET b=60274 WHERE a=12666; UPDATE t2 SET b=25398 WHERE a=12667; UPDATE t2 SET b=45693 WHERE a=12668; UPDATE t2 SET b=48155 WHERE a=12669; UPDATE t2 SET b=44245 WHERE a=12670; UPDATE t2 SET b=93583 WHERE a=12671; UPDATE t2 SET b=18845 WHERE a=12672; UPDATE t2 SET b=10880 WHERE a=12673; UPDATE t2 SET b=28304 WHERE a=12674; UPDATE t2 SET b=76669 WHERE a=12675; UPDATE t2 SET b=52701 WHERE a=12676; UPDATE t2 SET b=83022 WHERE a=12677; UPDATE t2 SET b=15397 WHERE a=12678; UPDATE t2 SET b=21736 WHERE a=12679; UPDATE t2 SET b=28522 WHERE a=12680; UPDATE t2 SET b=80429 WHERE a=12681; UPDATE t2 SET b=79416 WHERE a=12682; UPDATE t2 SET b=59862 WHERE a=12683; UPDATE t2 SET b=5153 WHERE a=12684; UPDATE t2 SET b=18961 WHERE a=12685; UPDATE t2 SET b=12301 WHERE a=12686; UPDATE t2 SET b=35498 WHERE a=12687; UPDATE t2 SET b=8922 WHERE a=12688; UPDATE t2 SET b=45882 WHERE a=12689; UPDATE t2 SET b=83192 WHERE a=12690; UPDATE t2 SET b=78556 WHERE a=12691; UPDATE t2 SET b=39241 WHERE a=12692; UPDATE t2 SET b=67992 WHERE a=12693; UPDATE t2 SET b=71257 WHERE a=12694; UPDATE t2 SET b=87507 WHERE a=12695; UPDATE t2 SET b=67198 WHERE a=12696; UPDATE t2 SET b=41727 WHERE a=12697; UPDATE t2 SET b=18331 WHERE a=12698; UPDATE t2 SET b=37090 WHERE a=12699; UPDATE t2 SET b=7177 WHERE a=12700; UPDATE t2 SET b=74969 WHERE a=12701; UPDATE t2 SET b=24028 WHERE a=12702; UPDATE t2 SET b=94694 WHERE a=12703; UPDATE t2 SET b=66296 WHERE a=12704; UPDATE t2 SET b=39061 WHERE a=12705; UPDATE t2 SET b=44630 WHERE a=12706; UPDATE t2 SET b=96847 WHERE a=12707; UPDATE t2 SET b=30560 WHERE a=12708; UPDATE t2 SET b=69657 WHERE a=12709; UPDATE t2 SET b=45131 WHERE a=12710; UPDATE t2 SET b=3817 WHERE a=12711; UPDATE t2 SET b=26610 WHERE a=12712; UPDATE t2 SET b=10607 WHERE a=12713; UPDATE t2 SET b=85175 WHERE a=12714; UPDATE t2 SET b=35017 WHERE a=12715; UPDATE t2 SET b=46685 WHERE a=12716; UPDATE t2 SET b=95181 WHERE a=12717; UPDATE t2 SET b=82638 WHERE a=12718; UPDATE t2 SET b=10001 WHERE a=12719; UPDATE t2 SET b=85420 WHERE a=12720; UPDATE t2 SET b=48635 WHERE a=12721; UPDATE t2 SET b=85126 WHERE a=12722; UPDATE t2 SET b=70955 WHERE a=12723; UPDATE t2 SET b=33047 WHERE a=12724; UPDATE t2 SET b=11279 WHERE a=12725; UPDATE t2 SET b=43006 WHERE a=12726; UPDATE t2 SET b=98055 WHERE a=12727; UPDATE t2 SET b=34935 WHERE a=12728; UPDATE t2 SET b=18940 WHERE a=12729; UPDATE t2 SET b=60367 WHERE a=12730; UPDATE t2 SET b=91507 WHERE a=12731; UPDATE t2 SET b=23412 WHERE a=12732; UPDATE t2 SET b=105 WHERE a=12733; UPDATE t2 SET b=8538 WHERE a=12734; UPDATE t2 SET b=61254 WHERE a=12735; UPDATE t2 SET b=78399 WHERE a=12736; UPDATE t2 SET b=54067 WHERE a=12737; UPDATE t2 SET b=61349 WHERE a=12738; UPDATE t2 SET b=41485 WHERE a=12739; UPDATE t2 SET b=51556 WHERE a=12740; UPDATE t2 SET b=5671 WHERE a=12741; UPDATE t2 SET b=39559 WHERE a=12742; UPDATE t2 SET b=80231 WHERE a=12743; UPDATE t2 SET b=16703 WHERE a=12744; UPDATE t2 SET b=23193 WHERE a=12745; UPDATE t2 SET b=9322 WHERE a=12746; UPDATE t2 SET b=51878 WHERE a=12747; UPDATE t2 SET b=44574 WHERE a=12748; UPDATE t2 SET b=43275 WHERE a=12749; UPDATE t2 SET b=56009 WHERE a=12750; UPDATE t2 SET b=71880 WHERE a=12751; UPDATE t2 SET b=24758 WHERE a=12752; UPDATE t2 SET b=34616 WHERE a=12753; UPDATE t2 SET b=2956 WHERE a=12754; UPDATE t2 SET b=73955 WHERE a=12755; UPDATE t2 SET b=35942 WHERE a=12756; UPDATE t2 SET b=48430 WHERE a=12757; UPDATE t2 SET b=56874 WHERE a=12758; UPDATE t2 SET b=62434 WHERE a=12759; UPDATE t2 SET b=11282 WHERE a=12760; UPDATE t2 SET b=52436 WHERE a=12761; UPDATE t2 SET b=13506 WHERE a=12762; UPDATE t2 SET b=31264 WHERE a=12763; UPDATE t2 SET b=9435 WHERE a=12764; UPDATE t2 SET b=74276 WHERE a=12765; UPDATE t2 SET b=24787 WHERE a=12766; UPDATE t2 SET b=60218 WHERE a=12767; UPDATE t2 SET b=42230 WHERE a=12768; UPDATE t2 SET b=82741 WHERE a=12769; UPDATE t2 SET b=91460 WHERE a=12770; UPDATE t2 SET b=7260 WHERE a=12771; UPDATE t2 SET b=43696 WHERE a=12772; UPDATE t2 SET b=88032 WHERE a=12773; UPDATE t2 SET b=48011 WHERE a=12774; UPDATE t2 SET b=13235 WHERE a=12775; UPDATE t2 SET b=96924 WHERE a=12776; UPDATE t2 SET b=86703 WHERE a=12777; UPDATE t2 SET b=39217 WHERE a=12778; UPDATE t2 SET b=50410 WHERE a=12779; UPDATE t2 SET b=59789 WHERE a=12780; UPDATE t2 SET b=36960 WHERE a=12781; UPDATE t2 SET b=81967 WHERE a=12782; UPDATE t2 SET b=49162 WHERE a=12783; UPDATE t2 SET b=47116 WHERE a=12784; UPDATE t2 SET b=88214 WHERE a=12785; UPDATE t2 SET b=44388 WHERE a=12786; UPDATE t2 SET b=39624 WHERE a=12787; UPDATE t2 SET b=75554 WHERE a=12788; UPDATE t2 SET b=12559 WHERE a=12789; UPDATE t2 SET b=76107 WHERE a=12790; UPDATE t2 SET b=44716 WHERE a=12791; UPDATE t2 SET b=35647 WHERE a=12792; UPDATE t2 SET b=53275 WHERE a=12793; UPDATE t2 SET b=18519 WHERE a=12794; UPDATE t2 SET b=45638 WHERE a=12795; UPDATE t2 SET b=30130 WHERE a=12796; UPDATE t2 SET b=45682 WHERE a=12797; UPDATE t2 SET b=99979 WHERE a=12798; UPDATE t2 SET b=40659 WHERE a=12799; UPDATE t2 SET b=77059 WHERE a=12800; UPDATE t2 SET b=36241 WHERE a=12801; UPDATE t2 SET b=89287 WHERE a=12802; UPDATE t2 SET b=37909 WHERE a=12803; UPDATE t2 SET b=84869 WHERE a=12804; UPDATE t2 SET b=99122 WHERE a=12805; UPDATE t2 SET b=61485 WHERE a=12806; UPDATE t2 SET b=21573 WHERE a=12807; UPDATE t2 SET b=1390 WHERE a=12808; UPDATE t2 SET b=51218 WHERE a=12809; UPDATE t2 SET b=89956 WHERE a=12810; UPDATE t2 SET b=31485 WHERE a=12811; UPDATE t2 SET b=60648 WHERE a=12812; UPDATE t2 SET b=32444 WHERE a=12813; UPDATE t2 SET b=85590 WHERE a=12814; UPDATE t2 SET b=97578 WHERE a=12815; UPDATE t2 SET b=46839 WHERE a=12816; UPDATE t2 SET b=84736 WHERE a=12817; UPDATE t2 SET b=80280 WHERE a=12818; UPDATE t2 SET b=82936 WHERE a=12819; UPDATE t2 SET b=23387 WHERE a=12820; UPDATE t2 SET b=37589 WHERE a=12821; UPDATE t2 SET b=433 WHERE a=12822; UPDATE t2 SET b=69015 WHERE a=12823; UPDATE t2 SET b=28230 WHERE a=12824; UPDATE t2 SET b=70134 WHERE a=12825; UPDATE t2 SET b=21696 WHERE a=12826; UPDATE t2 SET b=94862 WHERE a=12827; UPDATE t2 SET b=72132 WHERE a=12828; UPDATE t2 SET b=78644 WHERE a=12829; UPDATE t2 SET b=37594 WHERE a=12830; UPDATE t2 SET b=38950 WHERE a=12831; UPDATE t2 SET b=39457 WHERE a=12832; UPDATE t2 SET b=74350 WHERE a=12833; UPDATE t2 SET b=54475 WHERE a=12834; UPDATE t2 SET b=41707 WHERE a=12835; UPDATE t2 SET b=87500 WHERE a=12836; UPDATE t2 SET b=69695 WHERE a=12837; UPDATE t2 SET b=52383 WHERE a=12838; UPDATE t2 SET b=25756 WHERE a=12839; UPDATE t2 SET b=9802 WHERE a=12840; UPDATE t2 SET b=43 WHERE a=12841; UPDATE t2 SET b=7912 WHERE a=12842; UPDATE t2 SET b=40982 WHERE a=12843; UPDATE t2 SET b=23031 WHERE a=12844; UPDATE t2 SET b=1729 WHERE a=12845; UPDATE t2 SET b=89250 WHERE a=12846; UPDATE t2 SET b=67636 WHERE a=12847; UPDATE t2 SET b=91065 WHERE a=12848; UPDATE t2 SET b=97052 WHERE a=12849; UPDATE t2 SET b=77837 WHERE a=12850; UPDATE t2 SET b=77342 WHERE a=12851; UPDATE t2 SET b=24164 WHERE a=12852; UPDATE t2 SET b=40663 WHERE a=12853; UPDATE t2 SET b=77212 WHERE a=12854; UPDATE t2 SET b=64195 WHERE a=12855; UPDATE t2 SET b=89050 WHERE a=12856; UPDATE t2 SET b=19710 WHERE a=12857; UPDATE t2 SET b=54591 WHERE a=12858; UPDATE t2 SET b=21774 WHERE a=12859; UPDATE t2 SET b=54848 WHERE a=12860; UPDATE t2 SET b=85827 WHERE a=12861; UPDATE t2 SET b=51375 WHERE a=12862; UPDATE t2 SET b=65640 WHERE a=12863; UPDATE t2 SET b=57831 WHERE a=12864; UPDATE t2 SET b=4814 WHERE a=12865; UPDATE t2 SET b=76999 WHERE a=12866; UPDATE t2 SET b=33028 WHERE a=12867; UPDATE t2 SET b=77047 WHERE a=12868; UPDATE t2 SET b=36006 WHERE a=12869; UPDATE t2 SET b=11911 WHERE a=12870; UPDATE t2 SET b=45774 WHERE a=12871; UPDATE t2 SET b=10558 WHERE a=12872; UPDATE t2 SET b=10342 WHERE a=12873; UPDATE t2 SET b=815 WHERE a=12874; UPDATE t2 SET b=52465 WHERE a=12875; UPDATE t2 SET b=60874 WHERE a=12876; UPDATE t2 SET b=32998 WHERE a=12877; UPDATE t2 SET b=6416 WHERE a=12878; UPDATE t2 SET b=11287 WHERE a=12879; UPDATE t2 SET b=81143 WHERE a=12880; UPDATE t2 SET b=67012 WHERE a=12881; UPDATE t2 SET b=72490 WHERE a=12882; UPDATE t2 SET b=46731 WHERE a=12883; UPDATE t2 SET b=37731 WHERE a=12884; UPDATE t2 SET b=67438 WHERE a=12885; UPDATE t2 SET b=15398 WHERE a=12886; UPDATE t2 SET b=56341 WHERE a=12887; UPDATE t2 SET b=7280 WHERE a=12888; UPDATE t2 SET b=46412 WHERE a=12889; UPDATE t2 SET b=21762 WHERE a=12890; UPDATE t2 SET b=61769 WHERE a=12891; UPDATE t2 SET b=1859 WHERE a=12892; UPDATE t2 SET b=52329 WHERE a=12893; UPDATE t2 SET b=49753 WHERE a=12894; UPDATE t2 SET b=90670 WHERE a=12895; UPDATE t2 SET b=38468 WHERE a=12896; UPDATE t2 SET b=24340 WHERE a=12897; UPDATE t2 SET b=7024 WHERE a=12898; UPDATE t2 SET b=26737 WHERE a=12899; UPDATE t2 SET b=27843 WHERE a=12900; UPDATE t2 SET b=4030 WHERE a=12901; UPDATE t2 SET b=41845 WHERE a=12902; UPDATE t2 SET b=57204 WHERE a=12903; UPDATE t2 SET b=99427 WHERE a=12904; UPDATE t2 SET b=19949 WHERE a=12905; UPDATE t2 SET b=64463 WHERE a=12906; UPDATE t2 SET b=14965 WHERE a=12907; UPDATE t2 SET b=59323 WHERE a=12908; UPDATE t2 SET b=4872 WHERE a=12909; UPDATE t2 SET b=24366 WHERE a=12910; UPDATE t2 SET b=71525 WHERE a=12911; UPDATE t2 SET b=40280 WHERE a=12912; UPDATE t2 SET b=98326 WHERE a=12913; UPDATE t2 SET b=11229 WHERE a=12914; UPDATE t2 SET b=17165 WHERE a=12915; UPDATE t2 SET b=5427 WHERE a=12916; UPDATE t2 SET b=35575 WHERE a=12917; UPDATE t2 SET b=99386 WHERE a=12918; UPDATE t2 SET b=99430 WHERE a=12919; UPDATE t2 SET b=20447 WHERE a=12920; UPDATE t2 SET b=14746 WHERE a=12921; UPDATE t2 SET b=62857 WHERE a=12922; UPDATE t2 SET b=86489 WHERE a=12923; UPDATE t2 SET b=39840 WHERE a=12924; UPDATE t2 SET b=1882 WHERE a=12925; UPDATE t2 SET b=17919 WHERE a=12926; UPDATE t2 SET b=63778 WHERE a=12927; UPDATE t2 SET b=64609 WHERE a=12928; UPDATE t2 SET b=64250 WHERE a=12929; UPDATE t2 SET b=83621 WHERE a=12930; UPDATE t2 SET b=65537 WHERE a=12931; UPDATE t2 SET b=53599 WHERE a=12932; UPDATE t2 SET b=59384 WHERE a=12933; UPDATE t2 SET b=34104 WHERE a=12934; UPDATE t2 SET b=97597 WHERE a=12935; UPDATE t2 SET b=25854 WHERE a=12936; UPDATE t2 SET b=12579 WHERE a=12937; UPDATE t2 SET b=54635 WHERE a=12938; UPDATE t2 SET b=44054 WHERE a=12939; UPDATE t2 SET b=77641 WHERE a=12940; UPDATE t2 SET b=50719 WHERE a=12941; UPDATE t2 SET b=584 WHERE a=12942; UPDATE t2 SET b=46375 WHERE a=12943; UPDATE t2 SET b=23225 WHERE a=12944; UPDATE t2 SET b=80648 WHERE a=12945; UPDATE t2 SET b=90614 WHERE a=12946; UPDATE t2 SET b=53497 WHERE a=12947; UPDATE t2 SET b=64317 WHERE a=12948; UPDATE t2 SET b=72026 WHERE a=12949; UPDATE t2 SET b=15483 WHERE a=12950; UPDATE t2 SET b=10370 WHERE a=12951; UPDATE t2 SET b=16891 WHERE a=12952; UPDATE t2 SET b=31405 WHERE a=12953; UPDATE t2 SET b=82916 WHERE a=12954; UPDATE t2 SET b=63457 WHERE a=12955; UPDATE t2 SET b=79756 WHERE a=12956; UPDATE t2 SET b=89832 WHERE a=12957; UPDATE t2 SET b=76015 WHERE a=12958; UPDATE t2 SET b=79949 WHERE a=12959; UPDATE t2 SET b=58807 WHERE a=12960; UPDATE t2 SET b=74316 WHERE a=12961; UPDATE t2 SET b=94463 WHERE a=12962; UPDATE t2 SET b=18582 WHERE a=12963; UPDATE t2 SET b=74052 WHERE a=12964; UPDATE t2 SET b=68550 WHERE a=12965; UPDATE t2 SET b=12226 WHERE a=12966; UPDATE t2 SET b=14364 WHERE a=12967; UPDATE t2 SET b=731 WHERE a=12968; UPDATE t2 SET b=91187 WHERE a=12969; UPDATE t2 SET b=25190 WHERE a=12970; UPDATE t2 SET b=85507 WHERE a=12971; UPDATE t2 SET b=94362 WHERE a=12972; UPDATE t2 SET b=87555 WHERE a=12973; UPDATE t2 SET b=29132 WHERE a=12974; UPDATE t2 SET b=89686 WHERE a=12975; UPDATE t2 SET b=60861 WHERE a=12976; UPDATE t2 SET b=66674 WHERE a=12977; UPDATE t2 SET b=56663 WHERE a=12978; UPDATE t2 SET b=98267 WHERE a=12979; UPDATE t2 SET b=75054 WHERE a=12980; UPDATE t2 SET b=49539 WHERE a=12981; UPDATE t2 SET b=89726 WHERE a=12982; UPDATE t2 SET b=86771 WHERE a=12983; UPDATE t2 SET b=27740 WHERE a=12984; UPDATE t2 SET b=57618 WHERE a=12985; UPDATE t2 SET b=2165 WHERE a=12986; UPDATE t2 SET b=6267 WHERE a=12987; UPDATE t2 SET b=8009 WHERE a=12988; UPDATE t2 SET b=39779 WHERE a=12989; UPDATE t2 SET b=1306 WHERE a=12990; UPDATE t2 SET b=41719 WHERE a=12991; UPDATE t2 SET b=94330 WHERE a=12992; UPDATE t2 SET b=15315 WHERE a=12993; UPDATE t2 SET b=23943 WHERE a=12994; UPDATE t2 SET b=62736 WHERE a=12995; UPDATE t2 SET b=66539 WHERE a=12996; UPDATE t2 SET b=62134 WHERE a=12997; UPDATE t2 SET b=76702 WHERE a=12998; UPDATE t2 SET b=4766 WHERE a=12999; UPDATE t2 SET b=68165 WHERE a=13000; UPDATE t2 SET b=70962 WHERE a=13001; UPDATE t2 SET b=63416 WHERE a=13002; UPDATE t2 SET b=99570 WHERE a=13003; UPDATE t2 SET b=3669 WHERE a=13004; UPDATE t2 SET b=47609 WHERE a=13005; UPDATE t2 SET b=12789 WHERE a=13006; UPDATE t2 SET b=53861 WHERE a=13007; UPDATE t2 SET b=3722 WHERE a=13008; UPDATE t2 SET b=87735 WHERE a=13009; UPDATE t2 SET b=65285 WHERE a=13010; UPDATE t2 SET b=35745 WHERE a=13011; UPDATE t2 SET b=9527 WHERE a=13012; UPDATE t2 SET b=87368 WHERE a=13013; UPDATE t2 SET b=42261 WHERE a=13014; UPDATE t2 SET b=79199 WHERE a=13015; UPDATE t2 SET b=71466 WHERE a=13016; UPDATE t2 SET b=781 WHERE a=13017; UPDATE t2 SET b=36256 WHERE a=13018; UPDATE t2 SET b=5657 WHERE a=13019; UPDATE t2 SET b=87440 WHERE a=13020; UPDATE t2 SET b=49837 WHERE a=13021; UPDATE t2 SET b=4305 WHERE a=13022; UPDATE t2 SET b=95036 WHERE a=13023; UPDATE t2 SET b=66344 WHERE a=13024; UPDATE t2 SET b=84835 WHERE a=13025; UPDATE t2 SET b=37671 WHERE a=13026; UPDATE t2 SET b=68445 WHERE a=13027; UPDATE t2 SET b=36762 WHERE a=13028; UPDATE t2 SET b=56618 WHERE a=13029; UPDATE t2 SET b=35079 WHERE a=13030; UPDATE t2 SET b=45383 WHERE a=13031; UPDATE t2 SET b=70427 WHERE a=13032; UPDATE t2 SET b=40384 WHERE a=13033; UPDATE t2 SET b=11265 WHERE a=13034; UPDATE t2 SET b=43759 WHERE a=13035; UPDATE t2 SET b=92637 WHERE a=13036; UPDATE t2 SET b=46549 WHERE a=13037; UPDATE t2 SET b=54537 WHERE a=13038; UPDATE t2 SET b=24662 WHERE a=13039; UPDATE t2 SET b=39120 WHERE a=13040; UPDATE t2 SET b=1573 WHERE a=13041; UPDATE t2 SET b=30391 WHERE a=13042; UPDATE t2 SET b=48044 WHERE a=13043; UPDATE t2 SET b=14231 WHERE a=13044; UPDATE t2 SET b=21498 WHERE a=13045; UPDATE t2 SET b=95761 WHERE a=13046; UPDATE t2 SET b=65609 WHERE a=13047; UPDATE t2 SET b=85521 WHERE a=13048; UPDATE t2 SET b=53164 WHERE a=13049; UPDATE t2 SET b=79946 WHERE a=13050; UPDATE t2 SET b=18467 WHERE a=13051; UPDATE t2 SET b=99031 WHERE a=13052; UPDATE t2 SET b=49998 WHERE a=13053; UPDATE t2 SET b=35647 WHERE a=13054; UPDATE t2 SET b=31965 WHERE a=13055; UPDATE t2 SET b=95415 WHERE a=13056; UPDATE t2 SET b=660 WHERE a=13057; UPDATE t2 SET b=1711 WHERE a=13058; UPDATE t2 SET b=42119 WHERE a=13059; UPDATE t2 SET b=47628 WHERE a=13060; UPDATE t2 SET b=61296 WHERE a=13061; UPDATE t2 SET b=20495 WHERE a=13062; UPDATE t2 SET b=25779 WHERE a=13063; UPDATE t2 SET b=7307 WHERE a=13064; UPDATE t2 SET b=39725 WHERE a=13065; UPDATE t2 SET b=91814 WHERE a=13066; UPDATE t2 SET b=20963 WHERE a=13067; UPDATE t2 SET b=91586 WHERE a=13068; UPDATE t2 SET b=4957 WHERE a=13069; UPDATE t2 SET b=47688 WHERE a=13070; UPDATE t2 SET b=8062 WHERE a=13071; UPDATE t2 SET b=42251 WHERE a=13072; UPDATE t2 SET b=18781 WHERE a=13073; UPDATE t2 SET b=78259 WHERE a=13074; UPDATE t2 SET b=89652 WHERE a=13075; UPDATE t2 SET b=26780 WHERE a=13076; UPDATE t2 SET b=53605 WHERE a=13077; UPDATE t2 SET b=51194 WHERE a=13078; UPDATE t2 SET b=76527 WHERE a=13079; UPDATE t2 SET b=87202 WHERE a=13080; UPDATE t2 SET b=86512 WHERE a=13081; UPDATE t2 SET b=90225 WHERE a=13082; UPDATE t2 SET b=4048 WHERE a=13083; UPDATE t2 SET b=74776 WHERE a=13084; UPDATE t2 SET b=31437 WHERE a=13085; UPDATE t2 SET b=50401 WHERE a=13086; UPDATE t2 SET b=68775 WHERE a=13087; UPDATE t2 SET b=7137 WHERE a=13088; UPDATE t2 SET b=68345 WHERE a=13089; UPDATE t2 SET b=48513 WHERE a=13090; UPDATE t2 SET b=55644 WHERE a=13091; UPDATE t2 SET b=4478 WHERE a=13092; UPDATE t2 SET b=45085 WHERE a=13093; UPDATE t2 SET b=88082 WHERE a=13094; UPDATE t2 SET b=47434 WHERE a=13095; UPDATE t2 SET b=79701 WHERE a=13096; UPDATE t2 SET b=64597 WHERE a=13097; UPDATE t2 SET b=3695 WHERE a=13098; UPDATE t2 SET b=80956 WHERE a=13099; UPDATE t2 SET b=77393 WHERE a=13100; UPDATE t2 SET b=47009 WHERE a=13101; UPDATE t2 SET b=1090 WHERE a=13102; UPDATE t2 SET b=42950 WHERE a=13103; UPDATE t2 SET b=8074 WHERE a=13104; UPDATE t2 SET b=75062 WHERE a=13105; UPDATE t2 SET b=3091 WHERE a=13106; UPDATE t2 SET b=335 WHERE a=13107; UPDATE t2 SET b=66127 WHERE a=13108; UPDATE t2 SET b=83057 WHERE a=13109; UPDATE t2 SET b=94390 WHERE a=13110; UPDATE t2 SET b=66121 WHERE a=13111; UPDATE t2 SET b=73173 WHERE a=13112; UPDATE t2 SET b=697 WHERE a=13113; UPDATE t2 SET b=2666 WHERE a=13114; UPDATE t2 SET b=13455 WHERE a=13115; UPDATE t2 SET b=57127 WHERE a=13116; UPDATE t2 SET b=89950 WHERE a=13117; UPDATE t2 SET b=77808 WHERE a=13118; UPDATE t2 SET b=57433 WHERE a=13119; UPDATE t2 SET b=81918 WHERE a=13120; UPDATE t2 SET b=66307 WHERE a=13121; UPDATE t2 SET b=52927 WHERE a=13122; UPDATE t2 SET b=81884 WHERE a=13123; UPDATE t2 SET b=36407 WHERE a=13124; UPDATE t2 SET b=66677 WHERE a=13125; UPDATE t2 SET b=41428 WHERE a=13126; UPDATE t2 SET b=22418 WHERE a=13127; UPDATE t2 SET b=12712 WHERE a=13128; UPDATE t2 SET b=58248 WHERE a=13129; UPDATE t2 SET b=11639 WHERE a=13130; UPDATE t2 SET b=34383 WHERE a=13131; UPDATE t2 SET b=3162 WHERE a=13132; UPDATE t2 SET b=18723 WHERE a=13133; UPDATE t2 SET b=39433 WHERE a=13134; UPDATE t2 SET b=73473 WHERE a=13135; UPDATE t2 SET b=84482 WHERE a=13136; UPDATE t2 SET b=47776 WHERE a=13137; UPDATE t2 SET b=33394 WHERE a=13138; UPDATE t2 SET b=82344 WHERE a=13139; UPDATE t2 SET b=25003 WHERE a=13140; UPDATE t2 SET b=38275 WHERE a=13141; UPDATE t2 SET b=47935 WHERE a=13142; UPDATE t2 SET b=20391 WHERE a=13143; UPDATE t2 SET b=86405 WHERE a=13144; UPDATE t2 SET b=92722 WHERE a=13145; UPDATE t2 SET b=57450 WHERE a=13146; UPDATE t2 SET b=16784 WHERE a=13147; UPDATE t2 SET b=29571 WHERE a=13148; UPDATE t2 SET b=33139 WHERE a=13149; UPDATE t2 SET b=54052 WHERE a=13150; UPDATE t2 SET b=8012 WHERE a=13151; UPDATE t2 SET b=68372 WHERE a=13152; UPDATE t2 SET b=74815 WHERE a=13153; UPDATE t2 SET b=30498 WHERE a=13154; UPDATE t2 SET b=12289 WHERE a=13155; UPDATE t2 SET b=23304 WHERE a=13156; UPDATE t2 SET b=61534 WHERE a=13157; UPDATE t2 SET b=24885 WHERE a=13158; UPDATE t2 SET b=42503 WHERE a=13159; UPDATE t2 SET b=96899 WHERE a=13160; UPDATE t2 SET b=78419 WHERE a=13161; UPDATE t2 SET b=34270 WHERE a=13162; UPDATE t2 SET b=130 WHERE a=13163; UPDATE t2 SET b=84485 WHERE a=13164; UPDATE t2 SET b=12956 WHERE a=13165; UPDATE t2 SET b=33785 WHERE a=13166; UPDATE t2 SET b=93893 WHERE a=13167; UPDATE t2 SET b=86536 WHERE a=13168; UPDATE t2 SET b=20647 WHERE a=13169; UPDATE t2 SET b=26329 WHERE a=13170; UPDATE t2 SET b=56408 WHERE a=13171; UPDATE t2 SET b=42738 WHERE a=13172; UPDATE t2 SET b=86235 WHERE a=13173; UPDATE t2 SET b=44385 WHERE a=13174; UPDATE t2 SET b=74593 WHERE a=13175; UPDATE t2 SET b=45274 WHERE a=13176; UPDATE t2 SET b=74456 WHERE a=13177; UPDATE t2 SET b=95678 WHERE a=13178; UPDATE t2 SET b=82868 WHERE a=13179; UPDATE t2 SET b=15760 WHERE a=13180; UPDATE t2 SET b=9160 WHERE a=13181; UPDATE t2 SET b=29519 WHERE a=13182; UPDATE t2 SET b=10479 WHERE a=13183; UPDATE t2 SET b=73949 WHERE a=13184; UPDATE t2 SET b=15830 WHERE a=13185; UPDATE t2 SET b=57316 WHERE a=13186; UPDATE t2 SET b=75279 WHERE a=13187; UPDATE t2 SET b=77387 WHERE a=13188; UPDATE t2 SET b=24253 WHERE a=13189; UPDATE t2 SET b=61703 WHERE a=13190; UPDATE t2 SET b=34658 WHERE a=13191; UPDATE t2 SET b=95286 WHERE a=13192; UPDATE t2 SET b=46361 WHERE a=13193; UPDATE t2 SET b=81446 WHERE a=13194; UPDATE t2 SET b=92350 WHERE a=13195; UPDATE t2 SET b=24327 WHERE a=13196; UPDATE t2 SET b=46656 WHERE a=13197; UPDATE t2 SET b=84807 WHERE a=13198; UPDATE t2 SET b=15155 WHERE a=13199; UPDATE t2 SET b=51354 WHERE a=13200; UPDATE t2 SET b=80313 WHERE a=13201; UPDATE t2 SET b=71307 WHERE a=13202; UPDATE t2 SET b=5012 WHERE a=13203; UPDATE t2 SET b=95130 WHERE a=13204; UPDATE t2 SET b=87246 WHERE a=13205; UPDATE t2 SET b=31446 WHERE a=13206; UPDATE t2 SET b=69217 WHERE a=13207; UPDATE t2 SET b=53603 WHERE a=13208; UPDATE t2 SET b=45958 WHERE a=13209; UPDATE t2 SET b=91947 WHERE a=13210; UPDATE t2 SET b=29921 WHERE a=13211; UPDATE t2 SET b=14439 WHERE a=13212; UPDATE t2 SET b=81122 WHERE a=13213; UPDATE t2 SET b=92640 WHERE a=13214; UPDATE t2 SET b=57412 WHERE a=13215; UPDATE t2 SET b=59969 WHERE a=13216; UPDATE t2 SET b=69528 WHERE a=13217; UPDATE t2 SET b=60988 WHERE a=13218; UPDATE t2 SET b=83892 WHERE a=13219; UPDATE t2 SET b=89122 WHERE a=13220; UPDATE t2 SET b=61027 WHERE a=13221; UPDATE t2 SET b=37146 WHERE a=13222; UPDATE t2 SET b=26636 WHERE a=13223; UPDATE t2 SET b=9185 WHERE a=13224; UPDATE t2 SET b=76463 WHERE a=13225; UPDATE t2 SET b=16771 WHERE a=13226; UPDATE t2 SET b=71497 WHERE a=13227; UPDATE t2 SET b=62582 WHERE a=13228; UPDATE t2 SET b=74183 WHERE a=13229; UPDATE t2 SET b=48927 WHERE a=13230; UPDATE t2 SET b=25209 WHERE a=13231; UPDATE t2 SET b=88762 WHERE a=13232; UPDATE t2 SET b=69774 WHERE a=13233; UPDATE t2 SET b=73118 WHERE a=13234; UPDATE t2 SET b=25815 WHERE a=13235; UPDATE t2 SET b=52719 WHERE a=13236; UPDATE t2 SET b=50395 WHERE a=13237; UPDATE t2 SET b=4078 WHERE a=13238; UPDATE t2 SET b=42069 WHERE a=13239; UPDATE t2 SET b=41996 WHERE a=13240; UPDATE t2 SET b=62292 WHERE a=13241; UPDATE t2 SET b=50816 WHERE a=13242; UPDATE t2 SET b=27068 WHERE a=13243; UPDATE t2 SET b=58417 WHERE a=13244; UPDATE t2 SET b=40705 WHERE a=13245; UPDATE t2 SET b=67874 WHERE a=13246; UPDATE t2 SET b=37440 WHERE a=13247; UPDATE t2 SET b=78077 WHERE a=13248; UPDATE t2 SET b=23597 WHERE a=13249; UPDATE t2 SET b=63277 WHERE a=13250; UPDATE t2 SET b=87315 WHERE a=13251; UPDATE t2 SET b=26981 WHERE a=13252; UPDATE t2 SET b=87665 WHERE a=13253; UPDATE t2 SET b=80154 WHERE a=13254; UPDATE t2 SET b=43861 WHERE a=13255; UPDATE t2 SET b=85956 WHERE a=13256; UPDATE t2 SET b=5436 WHERE a=13257; UPDATE t2 SET b=13410 WHERE a=13258; UPDATE t2 SET b=97609 WHERE a=13259; UPDATE t2 SET b=1178 WHERE a=13260; UPDATE t2 SET b=43794 WHERE a=13261; UPDATE t2 SET b=99554 WHERE a=13262; UPDATE t2 SET b=55911 WHERE a=13263; UPDATE t2 SET b=35660 WHERE a=13264; UPDATE t2 SET b=43399 WHERE a=13265; UPDATE t2 SET b=87949 WHERE a=13266; UPDATE t2 SET b=59210 WHERE a=13267; UPDATE t2 SET b=85085 WHERE a=13268; UPDATE t2 SET b=85201 WHERE a=13269; UPDATE t2 SET b=91818 WHERE a=13270; UPDATE t2 SET b=10283 WHERE a=13271; UPDATE t2 SET b=57827 WHERE a=13272; UPDATE t2 SET b=72955 WHERE a=13273; UPDATE t2 SET b=54152 WHERE a=13274; UPDATE t2 SET b=12894 WHERE a=13275; UPDATE t2 SET b=22153 WHERE a=13276; UPDATE t2 SET b=59522 WHERE a=13277; UPDATE t2 SET b=84562 WHERE a=13278; UPDATE t2 SET b=45813 WHERE a=13279; UPDATE t2 SET b=91545 WHERE a=13280; UPDATE t2 SET b=52456 WHERE a=13281; UPDATE t2 SET b=20070 WHERE a=13282; UPDATE t2 SET b=43795 WHERE a=13283; UPDATE t2 SET b=59292 WHERE a=13284; UPDATE t2 SET b=1399 WHERE a=13285; UPDATE t2 SET b=31946 WHERE a=13286; UPDATE t2 SET b=22049 WHERE a=13287; UPDATE t2 SET b=72257 WHERE a=13288; UPDATE t2 SET b=50129 WHERE a=13289; UPDATE t2 SET b=65097 WHERE a=13290; UPDATE t2 SET b=59256 WHERE a=13291; UPDATE t2 SET b=16457 WHERE a=13292; UPDATE t2 SET b=90938 WHERE a=13293; UPDATE t2 SET b=16357 WHERE a=13294; UPDATE t2 SET b=75620 WHERE a=13295; UPDATE t2 SET b=65273 WHERE a=13296; UPDATE t2 SET b=36003 WHERE a=13297; UPDATE t2 SET b=56398 WHERE a=13298; UPDATE t2 SET b=58330 WHERE a=13299; UPDATE t2 SET b=1710 WHERE a=13300; UPDATE t2 SET b=61264 WHERE a=13301; UPDATE t2 SET b=91879 WHERE a=13302; UPDATE t2 SET b=57204 WHERE a=13303; UPDATE t2 SET b=62665 WHERE a=13304; UPDATE t2 SET b=65818 WHERE a=13305; UPDATE t2 SET b=72574 WHERE a=13306; UPDATE t2 SET b=9415 WHERE a=13307; UPDATE t2 SET b=76507 WHERE a=13308; UPDATE t2 SET b=8498 WHERE a=13309; UPDATE t2 SET b=97993 WHERE a=13310; UPDATE t2 SET b=36630 WHERE a=13311; UPDATE t2 SET b=18835 WHERE a=13312; UPDATE t2 SET b=6405 WHERE a=13313; UPDATE t2 SET b=14470 WHERE a=13314; UPDATE t2 SET b=20387 WHERE a=13315; UPDATE t2 SET b=33792 WHERE a=13316; UPDATE t2 SET b=43486 WHERE a=13317; UPDATE t2 SET b=10752 WHERE a=13318; UPDATE t2 SET b=73315 WHERE a=13319; UPDATE t2 SET b=95144 WHERE a=13320; UPDATE t2 SET b=17944 WHERE a=13321; UPDATE t2 SET b=66087 WHERE a=13322; UPDATE t2 SET b=40545 WHERE a=13323; UPDATE t2 SET b=18526 WHERE a=13324; UPDATE t2 SET b=67185 WHERE a=13325; UPDATE t2 SET b=34674 WHERE a=13326; UPDATE t2 SET b=35467 WHERE a=13327; UPDATE t2 SET b=69508 WHERE a=13328; UPDATE t2 SET b=65185 WHERE a=13329; UPDATE t2 SET b=25047 WHERE a=13330; UPDATE t2 SET b=56017 WHERE a=13331; UPDATE t2 SET b=58660 WHERE a=13332; UPDATE t2 SET b=26121 WHERE a=13333; UPDATE t2 SET b=13066 WHERE a=13334; UPDATE t2 SET b=85895 WHERE a=13335; UPDATE t2 SET b=34092 WHERE a=13336; UPDATE t2 SET b=31339 WHERE a=13337; UPDATE t2 SET b=23552 WHERE a=13338; UPDATE t2 SET b=83410 WHERE a=13339; UPDATE t2 SET b=26034 WHERE a=13340; UPDATE t2 SET b=87321 WHERE a=13341; UPDATE t2 SET b=13694 WHERE a=13342; UPDATE t2 SET b=45424 WHERE a=13343; UPDATE t2 SET b=58536 WHERE a=13344; UPDATE t2 SET b=85679 WHERE a=13345; UPDATE t2 SET b=54745 WHERE a=13346; UPDATE t2 SET b=92637 WHERE a=13347; UPDATE t2 SET b=25061 WHERE a=13348; UPDATE t2 SET b=75368 WHERE a=13349; UPDATE t2 SET b=61196 WHERE a=13350; UPDATE t2 SET b=58751 WHERE a=13351; UPDATE t2 SET b=36581 WHERE a=13352; UPDATE t2 SET b=75822 WHERE a=13353; UPDATE t2 SET b=7748 WHERE a=13354; UPDATE t2 SET b=10644 WHERE a=13355; UPDATE t2 SET b=21037 WHERE a=13356; UPDATE t2 SET b=57608 WHERE a=13357; UPDATE t2 SET b=71935 WHERE a=13358; UPDATE t2 SET b=77695 WHERE a=13359; UPDATE t2 SET b=21913 WHERE a=13360; UPDATE t2 SET b=7546 WHERE a=13361; UPDATE t2 SET b=63891 WHERE a=13362; UPDATE t2 SET b=20135 WHERE a=13363; UPDATE t2 SET b=59652 WHERE a=13364; UPDATE t2 SET b=35679 WHERE a=13365; UPDATE t2 SET b=5938 WHERE a=13366; UPDATE t2 SET b=68379 WHERE a=13367; UPDATE t2 SET b=5656 WHERE a=13368; UPDATE t2 SET b=98241 WHERE a=13369; UPDATE t2 SET b=80570 WHERE a=13370; UPDATE t2 SET b=87421 WHERE a=13371; UPDATE t2 SET b=99989 WHERE a=13372; UPDATE t2 SET b=45365 WHERE a=13373; UPDATE t2 SET b=1426 WHERE a=13374; UPDATE t2 SET b=56929 WHERE a=13375; UPDATE t2 SET b=28491 WHERE a=13376; UPDATE t2 SET b=7550 WHERE a=13377; UPDATE t2 SET b=94346 WHERE a=13378; UPDATE t2 SET b=93509 WHERE a=13379; UPDATE t2 SET b=87448 WHERE a=13380; UPDATE t2 SET b=68212 WHERE a=13381; UPDATE t2 SET b=59244 WHERE a=13382; UPDATE t2 SET b=18248 WHERE a=13383; UPDATE t2 SET b=7008 WHERE a=13384; UPDATE t2 SET b=10649 WHERE a=13385; UPDATE t2 SET b=37892 WHERE a=13386; UPDATE t2 SET b=86444 WHERE a=13387; UPDATE t2 SET b=30772 WHERE a=13388; UPDATE t2 SET b=94249 WHERE a=13389; UPDATE t2 SET b=95889 WHERE a=13390; UPDATE t2 SET b=74089 WHERE a=13391; UPDATE t2 SET b=79069 WHERE a=13392; UPDATE t2 SET b=24399 WHERE a=13393; UPDATE t2 SET b=20189 WHERE a=13394; UPDATE t2 SET b=31828 WHERE a=13395; UPDATE t2 SET b=84575 WHERE a=13396; UPDATE t2 SET b=88947 WHERE a=13397; UPDATE t2 SET b=26540 WHERE a=13398; UPDATE t2 SET b=68831 WHERE a=13399; UPDATE t2 SET b=59557 WHERE a=13400; UPDATE t2 SET b=81850 WHERE a=13401; UPDATE t2 SET b=8520 WHERE a=13402; UPDATE t2 SET b=24728 WHERE a=13403; UPDATE t2 SET b=59636 WHERE a=13404; UPDATE t2 SET b=78175 WHERE a=13405; UPDATE t2 SET b=72336 WHERE a=13406; UPDATE t2 SET b=32171 WHERE a=13407; UPDATE t2 SET b=93456 WHERE a=13408; UPDATE t2 SET b=9654 WHERE a=13409; UPDATE t2 SET b=60959 WHERE a=13410; UPDATE t2 SET b=20268 WHERE a=13411; UPDATE t2 SET b=54710 WHERE a=13412; UPDATE t2 SET b=3470 WHERE a=13413; UPDATE t2 SET b=84862 WHERE a=13414; UPDATE t2 SET b=55945 WHERE a=13415; UPDATE t2 SET b=15256 WHERE a=13416; UPDATE t2 SET b=73579 WHERE a=13417; UPDATE t2 SET b=76426 WHERE a=13418; UPDATE t2 SET b=29234 WHERE a=13419; UPDATE t2 SET b=42647 WHERE a=13420; UPDATE t2 SET b=95835 WHERE a=13421; UPDATE t2 SET b=8476 WHERE a=13422; UPDATE t2 SET b=45041 WHERE a=13423; UPDATE t2 SET b=50148 WHERE a=13424; UPDATE t2 SET b=5149 WHERE a=13425; UPDATE t2 SET b=36897 WHERE a=13426; UPDATE t2 SET b=57834 WHERE a=13427; UPDATE t2 SET b=17881 WHERE a=13428; UPDATE t2 SET b=88752 WHERE a=13429; UPDATE t2 SET b=75843 WHERE a=13430; UPDATE t2 SET b=69227 WHERE a=13431; UPDATE t2 SET b=19471 WHERE a=13432; UPDATE t2 SET b=47439 WHERE a=13433; UPDATE t2 SET b=85667 WHERE a=13434; UPDATE t2 SET b=49603 WHERE a=13435; UPDATE t2 SET b=30256 WHERE a=13436; UPDATE t2 SET b=28763 WHERE a=13437; UPDATE t2 SET b=32447 WHERE a=13438; UPDATE t2 SET b=77266 WHERE a=13439; UPDATE t2 SET b=19192 WHERE a=13440; UPDATE t2 SET b=47472 WHERE a=13441; UPDATE t2 SET b=86448 WHERE a=13442; UPDATE t2 SET b=63855 WHERE a=13443; UPDATE t2 SET b=72919 WHERE a=13444; UPDATE t2 SET b=63518 WHERE a=13445; UPDATE t2 SET b=79326 WHERE a=13446; UPDATE t2 SET b=14607 WHERE a=13447; UPDATE t2 SET b=10593 WHERE a=13448; UPDATE t2 SET b=33550 WHERE a=13449; UPDATE t2 SET b=82654 WHERE a=13450; UPDATE t2 SET b=69591 WHERE a=13451; UPDATE t2 SET b=11120 WHERE a=13452; UPDATE t2 SET b=97042 WHERE a=13453; UPDATE t2 SET b=14062 WHERE a=13454; UPDATE t2 SET b=38421 WHERE a=13455; UPDATE t2 SET b=67474 WHERE a=13456; UPDATE t2 SET b=35924 WHERE a=13457; UPDATE t2 SET b=11088 WHERE a=13458; UPDATE t2 SET b=11332 WHERE a=13459; UPDATE t2 SET b=4094 WHERE a=13460; UPDATE t2 SET b=70638 WHERE a=13461; UPDATE t2 SET b=58942 WHERE a=13462; UPDATE t2 SET b=73208 WHERE a=13463; UPDATE t2 SET b=22342 WHERE a=13464; UPDATE t2 SET b=8908 WHERE a=13465; UPDATE t2 SET b=10029 WHERE a=13466; UPDATE t2 SET b=99521 WHERE a=13467; UPDATE t2 SET b=85903 WHERE a=13468; UPDATE t2 SET b=66359 WHERE a=13469; UPDATE t2 SET b=97216 WHERE a=13470; UPDATE t2 SET b=3678 WHERE a=13471; UPDATE t2 SET b=72994 WHERE a=13472; UPDATE t2 SET b=16133 WHERE a=13473; UPDATE t2 SET b=61989 WHERE a=13474; UPDATE t2 SET b=3771 WHERE a=13475; UPDATE t2 SET b=87006 WHERE a=13476; UPDATE t2 SET b=84628 WHERE a=13477; UPDATE t2 SET b=51697 WHERE a=13478; UPDATE t2 SET b=43658 WHERE a=13479; UPDATE t2 SET b=73979 WHERE a=13480; UPDATE t2 SET b=32703 WHERE a=13481; UPDATE t2 SET b=24927 WHERE a=13482; UPDATE t2 SET b=51049 WHERE a=13483; UPDATE t2 SET b=73559 WHERE a=13484; UPDATE t2 SET b=59338 WHERE a=13485; UPDATE t2 SET b=98223 WHERE a=13486; UPDATE t2 SET b=66622 WHERE a=13487; UPDATE t2 SET b=34160 WHERE a=13488; UPDATE t2 SET b=42316 WHERE a=13489; UPDATE t2 SET b=60091 WHERE a=13490; UPDATE t2 SET b=62364 WHERE a=13491; UPDATE t2 SET b=94725 WHERE a=13492; UPDATE t2 SET b=2681 WHERE a=13493; UPDATE t2 SET b=69774 WHERE a=13494; UPDATE t2 SET b=65054 WHERE a=13495; UPDATE t2 SET b=60552 WHERE a=13496; UPDATE t2 SET b=47855 WHERE a=13497; UPDATE t2 SET b=3155 WHERE a=13498; UPDATE t2 SET b=91981 WHERE a=13499; UPDATE t2 SET b=19093 WHERE a=13500; UPDATE t2 SET b=15123 WHERE a=13501; UPDATE t2 SET b=27447 WHERE a=13502; UPDATE t2 SET b=22003 WHERE a=13503; UPDATE t2 SET b=26002 WHERE a=13504; UPDATE t2 SET b=51990 WHERE a=13505; UPDATE t2 SET b=12793 WHERE a=13506; UPDATE t2 SET b=18406 WHERE a=13507; UPDATE t2 SET b=35247 WHERE a=13508; UPDATE t2 SET b=85594 WHERE a=13509; UPDATE t2 SET b=75133 WHERE a=13510; UPDATE t2 SET b=45090 WHERE a=13511; UPDATE t2 SET b=91333 WHERE a=13512; UPDATE t2 SET b=78508 WHERE a=13513; UPDATE t2 SET b=62581 WHERE a=13514; UPDATE t2 SET b=83830 WHERE a=13515; UPDATE t2 SET b=43180 WHERE a=13516; UPDATE t2 SET b=49213 WHERE a=13517; UPDATE t2 SET b=13430 WHERE a=13518; UPDATE t2 SET b=78419 WHERE a=13519; UPDATE t2 SET b=4451 WHERE a=13520; UPDATE t2 SET b=5163 WHERE a=13521; UPDATE t2 SET b=18812 WHERE a=13522; UPDATE t2 SET b=66566 WHERE a=13523; UPDATE t2 SET b=27953 WHERE a=13524; UPDATE t2 SET b=20902 WHERE a=13525; UPDATE t2 SET b=4714 WHERE a=13526; UPDATE t2 SET b=63943 WHERE a=13527; UPDATE t2 SET b=91732 WHERE a=13528; UPDATE t2 SET b=2428 WHERE a=13529; UPDATE t2 SET b=42102 WHERE a=13530; UPDATE t2 SET b=60376 WHERE a=13531; UPDATE t2 SET b=50573 WHERE a=13532; UPDATE t2 SET b=51404 WHERE a=13533; UPDATE t2 SET b=63583 WHERE a=13534; UPDATE t2 SET b=96279 WHERE a=13535; UPDATE t2 SET b=67951 WHERE a=13536; UPDATE t2 SET b=551 WHERE a=13537; UPDATE t2 SET b=39541 WHERE a=13538; UPDATE t2 SET b=737 WHERE a=13539; UPDATE t2 SET b=35728 WHERE a=13540; UPDATE t2 SET b=4639 WHERE a=13541; UPDATE t2 SET b=81542 WHERE a=13542; UPDATE t2 SET b=18892 WHERE a=13543; UPDATE t2 SET b=32265 WHERE a=13544; UPDATE t2 SET b=54018 WHERE a=13545; UPDATE t2 SET b=6730 WHERE a=13546; UPDATE t2 SET b=36390 WHERE a=13547; UPDATE t2 SET b=39574 WHERE a=13548; UPDATE t2 SET b=50517 WHERE a=13549; UPDATE t2 SET b=53364 WHERE a=13550; UPDATE t2 SET b=16677 WHERE a=13551; UPDATE t2 SET b=31137 WHERE a=13552; UPDATE t2 SET b=31742 WHERE a=13553; UPDATE t2 SET b=61118 WHERE a=13554; UPDATE t2 SET b=36422 WHERE a=13555; UPDATE t2 SET b=44941 WHERE a=13556; UPDATE t2 SET b=52895 WHERE a=13557; UPDATE t2 SET b=67115 WHERE a=13558; UPDATE t2 SET b=10474 WHERE a=13559; UPDATE t2 SET b=92682 WHERE a=13560; UPDATE t2 SET b=40010 WHERE a=13561; UPDATE t2 SET b=56012 WHERE a=13562; UPDATE t2 SET b=41644 WHERE a=13563; UPDATE t2 SET b=18633 WHERE a=13564; UPDATE t2 SET b=62085 WHERE a=13565; UPDATE t2 SET b=82612 WHERE a=13566; UPDATE t2 SET b=95944 WHERE a=13567; UPDATE t2 SET b=96117 WHERE a=13568; UPDATE t2 SET b=63946 WHERE a=13569; UPDATE t2 SET b=81058 WHERE a=13570; UPDATE t2 SET b=28074 WHERE a=13571; UPDATE t2 SET b=34563 WHERE a=13572; UPDATE t2 SET b=81 WHERE a=13573; UPDATE t2 SET b=32636 WHERE a=13574; UPDATE t2 SET b=78591 WHERE a=13575; UPDATE t2 SET b=23144 WHERE a=13576; UPDATE t2 SET b=7896 WHERE a=13577; UPDATE t2 SET b=97348 WHERE a=13578; UPDATE t2 SET b=71710 WHERE a=13579; UPDATE t2 SET b=6443 WHERE a=13580; UPDATE t2 SET b=59548 WHERE a=13581; UPDATE t2 SET b=5773 WHERE a=13582; UPDATE t2 SET b=37971 WHERE a=13583; UPDATE t2 SET b=94069 WHERE a=13584; UPDATE t2 SET b=99177 WHERE a=13585; UPDATE t2 SET b=86918 WHERE a=13586; UPDATE t2 SET b=32412 WHERE a=13587; UPDATE t2 SET b=304 WHERE a=13588; UPDATE t2 SET b=51121 WHERE a=13589; UPDATE t2 SET b=3324 WHERE a=13590; UPDATE t2 SET b=6883 WHERE a=13591; UPDATE t2 SET b=33064 WHERE a=13592; UPDATE t2 SET b=28230 WHERE a=13593; UPDATE t2 SET b=13240 WHERE a=13594; UPDATE t2 SET b=31420 WHERE a=13595; UPDATE t2 SET b=70669 WHERE a=13596; UPDATE t2 SET b=33060 WHERE a=13597; UPDATE t2 SET b=99004 WHERE a=13598; UPDATE t2 SET b=33070 WHERE a=13599; UPDATE t2 SET b=65574 WHERE a=13600; UPDATE t2 SET b=90469 WHERE a=13601; UPDATE t2 SET b=73871 WHERE a=13602; UPDATE t2 SET b=1393 WHERE a=13603; UPDATE t2 SET b=87811 WHERE a=13604; UPDATE t2 SET b=37309 WHERE a=13605; UPDATE t2 SET b=70406 WHERE a=13606; UPDATE t2 SET b=64280 WHERE a=13607; UPDATE t2 SET b=82851 WHERE a=13608; UPDATE t2 SET b=43965 WHERE a=13609; UPDATE t2 SET b=26877 WHERE a=13610; UPDATE t2 SET b=5132 WHERE a=13611; UPDATE t2 SET b=74365 WHERE a=13612; UPDATE t2 SET b=98559 WHERE a=13613; UPDATE t2 SET b=58951 WHERE a=13614; UPDATE t2 SET b=61978 WHERE a=13615; UPDATE t2 SET b=7321 WHERE a=13616; UPDATE t2 SET b=617 WHERE a=13617; UPDATE t2 SET b=61718 WHERE a=13618; UPDATE t2 SET b=35971 WHERE a=13619; UPDATE t2 SET b=33181 WHERE a=13620; UPDATE t2 SET b=99909 WHERE a=13621; UPDATE t2 SET b=84861 WHERE a=13622; UPDATE t2 SET b=99921 WHERE a=13623; UPDATE t2 SET b=71669 WHERE a=13624; UPDATE t2 SET b=91379 WHERE a=13625; UPDATE t2 SET b=39892 WHERE a=13626; UPDATE t2 SET b=47800 WHERE a=13627; UPDATE t2 SET b=8810 WHERE a=13628; UPDATE t2 SET b=11714 WHERE a=13629; UPDATE t2 SET b=15148 WHERE a=13630; UPDATE t2 SET b=10376 WHERE a=13631; UPDATE t2 SET b=95768 WHERE a=13632; UPDATE t2 SET b=47106 WHERE a=13633; UPDATE t2 SET b=59618 WHERE a=13634; UPDATE t2 SET b=11175 WHERE a=13635; UPDATE t2 SET b=6361 WHERE a=13636; UPDATE t2 SET b=78392 WHERE a=13637; UPDATE t2 SET b=73397 WHERE a=13638; UPDATE t2 SET b=48256 WHERE a=13639; UPDATE t2 SET b=88668 WHERE a=13640; UPDATE t2 SET b=21863 WHERE a=13641; UPDATE t2 SET b=11225 WHERE a=13642; UPDATE t2 SET b=57283 WHERE a=13643; UPDATE t2 SET b=80474 WHERE a=13644; UPDATE t2 SET b=42395 WHERE a=13645; UPDATE t2 SET b=61495 WHERE a=13646; UPDATE t2 SET b=16390 WHERE a=13647; UPDATE t2 SET b=76668 WHERE a=13648; UPDATE t2 SET b=13291 WHERE a=13649; UPDATE t2 SET b=68101 WHERE a=13650; UPDATE t2 SET b=20238 WHERE a=13651; UPDATE t2 SET b=10026 WHERE a=13652; UPDATE t2 SET b=53773 WHERE a=13653; UPDATE t2 SET b=4533 WHERE a=13654; UPDATE t2 SET b=25096 WHERE a=13655; UPDATE t2 SET b=57635 WHERE a=13656; UPDATE t2 SET b=38350 WHERE a=13657; UPDATE t2 SET b=18367 WHERE a=13658; UPDATE t2 SET b=50525 WHERE a=13659; UPDATE t2 SET b=11453 WHERE a=13660; UPDATE t2 SET b=88153 WHERE a=13661; UPDATE t2 SET b=12478 WHERE a=13662; UPDATE t2 SET b=3899 WHERE a=13663; UPDATE t2 SET b=66023 WHERE a=13664; UPDATE t2 SET b=9083 WHERE a=13665; UPDATE t2 SET b=51039 WHERE a=13666; UPDATE t2 SET b=37777 WHERE a=13667; UPDATE t2 SET b=68517 WHERE a=13668; UPDATE t2 SET b=44871 WHERE a=13669; UPDATE t2 SET b=20359 WHERE a=13670; UPDATE t2 SET b=20047 WHERE a=13671; UPDATE t2 SET b=18913 WHERE a=13672; UPDATE t2 SET b=62277 WHERE a=13673; UPDATE t2 SET b=98802 WHERE a=13674; UPDATE t2 SET b=48473 WHERE a=13675; UPDATE t2 SET b=53744 WHERE a=13676; UPDATE t2 SET b=77983 WHERE a=13677; UPDATE t2 SET b=69118 WHERE a=13678; UPDATE t2 SET b=69633 WHERE a=13679; UPDATE t2 SET b=806 WHERE a=13680; UPDATE t2 SET b=16955 WHERE a=13681; UPDATE t2 SET b=13039 WHERE a=13682; UPDATE t2 SET b=51976 WHERE a=13683; UPDATE t2 SET b=92689 WHERE a=13684; UPDATE t2 SET b=46837 WHERE a=13685; UPDATE t2 SET b=26818 WHERE a=13686; UPDATE t2 SET b=43159 WHERE a=13687; UPDATE t2 SET b=36548 WHERE a=13688; UPDATE t2 SET b=60364 WHERE a=13689; UPDATE t2 SET b=48692 WHERE a=13690; UPDATE t2 SET b=66602 WHERE a=13691; UPDATE t2 SET b=7764 WHERE a=13692; UPDATE t2 SET b=27251 WHERE a=13693; UPDATE t2 SET b=97554 WHERE a=13694; UPDATE t2 SET b=76667 WHERE a=13695; UPDATE t2 SET b=79183 WHERE a=13696; UPDATE t2 SET b=54983 WHERE a=13697; UPDATE t2 SET b=61522 WHERE a=13698; UPDATE t2 SET b=68034 WHERE a=13699; UPDATE t2 SET b=3410 WHERE a=13700; UPDATE t2 SET b=49751 WHERE a=13701; UPDATE t2 SET b=53670 WHERE a=13702; UPDATE t2 SET b=86282 WHERE a=13703; UPDATE t2 SET b=50885 WHERE a=13704; UPDATE t2 SET b=28890 WHERE a=13705; UPDATE t2 SET b=25353 WHERE a=13706; UPDATE t2 SET b=60415 WHERE a=13707; UPDATE t2 SET b=7600 WHERE a=13708; UPDATE t2 SET b=58698 WHERE a=13709; UPDATE t2 SET b=37081 WHERE a=13710; UPDATE t2 SET b=26860 WHERE a=13711; UPDATE t2 SET b=50456 WHERE a=13712; UPDATE t2 SET b=35826 WHERE a=13713; UPDATE t2 SET b=2420 WHERE a=13714; UPDATE t2 SET b=78779 WHERE a=13715; UPDATE t2 SET b=18700 WHERE a=13716; UPDATE t2 SET b=41843 WHERE a=13717; UPDATE t2 SET b=96090 WHERE a=13718; UPDATE t2 SET b=70622 WHERE a=13719; UPDATE t2 SET b=25069 WHERE a=13720; UPDATE t2 SET b=38553 WHERE a=13721; UPDATE t2 SET b=72133 WHERE a=13722; UPDATE t2 SET b=45808 WHERE a=13723; UPDATE t2 SET b=14049 WHERE a=13724; UPDATE t2 SET b=14774 WHERE a=13725; UPDATE t2 SET b=51306 WHERE a=13726; UPDATE t2 SET b=25112 WHERE a=13727; UPDATE t2 SET b=96861 WHERE a=13728; UPDATE t2 SET b=83968 WHERE a=13729; UPDATE t2 SET b=64928 WHERE a=13730; UPDATE t2 SET b=90537 WHERE a=13731; UPDATE t2 SET b=69702 WHERE a=13732; UPDATE t2 SET b=82501 WHERE a=13733; UPDATE t2 SET b=76503 WHERE a=13734; UPDATE t2 SET b=53272 WHERE a=13735; UPDATE t2 SET b=77617 WHERE a=13736; UPDATE t2 SET b=69089 WHERE a=13737; UPDATE t2 SET b=30126 WHERE a=13738; UPDATE t2 SET b=15559 WHERE a=13739; UPDATE t2 SET b=70488 WHERE a=13740; UPDATE t2 SET b=15639 WHERE a=13741; UPDATE t2 SET b=6545 WHERE a=13742; UPDATE t2 SET b=49647 WHERE a=13743; UPDATE t2 SET b=93740 WHERE a=13744; UPDATE t2 SET b=85057 WHERE a=13745; UPDATE t2 SET b=24183 WHERE a=13746; UPDATE t2 SET b=2110 WHERE a=13747; UPDATE t2 SET b=77796 WHERE a=13748; UPDATE t2 SET b=96309 WHERE a=13749; UPDATE t2 SET b=89380 WHERE a=13750; UPDATE t2 SET b=72218 WHERE a=13751; UPDATE t2 SET b=64672 WHERE a=13752; UPDATE t2 SET b=63836 WHERE a=13753; UPDATE t2 SET b=78254 WHERE a=13754; UPDATE t2 SET b=95301 WHERE a=13755; UPDATE t2 SET b=82595 WHERE a=13756; UPDATE t2 SET b=79897 WHERE a=13757; UPDATE t2 SET b=60010 WHERE a=13758; UPDATE t2 SET b=56993 WHERE a=13759; UPDATE t2 SET b=23023 WHERE a=13760; UPDATE t2 SET b=80588 WHERE a=13761; UPDATE t2 SET b=9262 WHERE a=13762; UPDATE t2 SET b=50048 WHERE a=13763; UPDATE t2 SET b=33232 WHERE a=13764; UPDATE t2 SET b=55090 WHERE a=13765; UPDATE t2 SET b=50981 WHERE a=13766; UPDATE t2 SET b=81172 WHERE a=13767; UPDATE t2 SET b=28937 WHERE a=13768; UPDATE t2 SET b=45512 WHERE a=13769; UPDATE t2 SET b=61756 WHERE a=13770; UPDATE t2 SET b=89102 WHERE a=13771; UPDATE t2 SET b=38295 WHERE a=13772; UPDATE t2 SET b=28987 WHERE a=13773; UPDATE t2 SET b=64781 WHERE a=13774; UPDATE t2 SET b=55548 WHERE a=13775; UPDATE t2 SET b=74226 WHERE a=13776; UPDATE t2 SET b=50341 WHERE a=13777; UPDATE t2 SET b=81444 WHERE a=13778; UPDATE t2 SET b=55139 WHERE a=13779; UPDATE t2 SET b=587 WHERE a=13780; UPDATE t2 SET b=1124 WHERE a=13781; UPDATE t2 SET b=85144 WHERE a=13782; UPDATE t2 SET b=30935 WHERE a=13783; UPDATE t2 SET b=21842 WHERE a=13784; UPDATE t2 SET b=43719 WHERE a=13785; UPDATE t2 SET b=94434 WHERE a=13786; UPDATE t2 SET b=69102 WHERE a=13787; UPDATE t2 SET b=97376 WHERE a=13788; UPDATE t2 SET b=2442 WHERE a=13789; UPDATE t2 SET b=99896 WHERE a=13790; UPDATE t2 SET b=4251 WHERE a=13791; UPDATE t2 SET b=11131 WHERE a=13792; UPDATE t2 SET b=97901 WHERE a=13793; UPDATE t2 SET b=2012 WHERE a=13794; UPDATE t2 SET b=41626 WHERE a=13795; UPDATE t2 SET b=36452 WHERE a=13796; UPDATE t2 SET b=21603 WHERE a=13797; UPDATE t2 SET b=44988 WHERE a=13798; UPDATE t2 SET b=6654 WHERE a=13799; UPDATE t2 SET b=93626 WHERE a=13800; UPDATE t2 SET b=95922 WHERE a=13801; UPDATE t2 SET b=4400 WHERE a=13802; UPDATE t2 SET b=52595 WHERE a=13803; UPDATE t2 SET b=82205 WHERE a=13804; UPDATE t2 SET b=22497 WHERE a=13805; UPDATE t2 SET b=30629 WHERE a=13806; UPDATE t2 SET b=98612 WHERE a=13807; UPDATE t2 SET b=20778 WHERE a=13808; UPDATE t2 SET b=94219 WHERE a=13809; UPDATE t2 SET b=93343 WHERE a=13810; UPDATE t2 SET b=60510 WHERE a=13811; UPDATE t2 SET b=58732 WHERE a=13812; UPDATE t2 SET b=16824 WHERE a=13813; UPDATE t2 SET b=34499 WHERE a=13814; UPDATE t2 SET b=34490 WHERE a=13815; UPDATE t2 SET b=93655 WHERE a=13816; UPDATE t2 SET b=76458 WHERE a=13817; UPDATE t2 SET b=65545 WHERE a=13818; UPDATE t2 SET b=99176 WHERE a=13819; UPDATE t2 SET b=54531 WHERE a=13820; UPDATE t2 SET b=73292 WHERE a=13821; UPDATE t2 SET b=48565 WHERE a=13822; UPDATE t2 SET b=25799 WHERE a=13823; UPDATE t2 SET b=44212 WHERE a=13824; UPDATE t2 SET b=74546 WHERE a=13825; UPDATE t2 SET b=38488 WHERE a=13826; UPDATE t2 SET b=67280 WHERE a=13827; UPDATE t2 SET b=75169 WHERE a=13828; UPDATE t2 SET b=44604 WHERE a=13829; UPDATE t2 SET b=58523 WHERE a=13830; UPDATE t2 SET b=1457 WHERE a=13831; UPDATE t2 SET b=71411 WHERE a=13832; UPDATE t2 SET b=65882 WHERE a=13833; UPDATE t2 SET b=26474 WHERE a=13834; UPDATE t2 SET b=29740 WHERE a=13835; UPDATE t2 SET b=48312 WHERE a=13836; UPDATE t2 SET b=13226 WHERE a=13837; UPDATE t2 SET b=18196 WHERE a=13838; UPDATE t2 SET b=65105 WHERE a=13839; UPDATE t2 SET b=95168 WHERE a=13840; UPDATE t2 SET b=60121 WHERE a=13841; UPDATE t2 SET b=41491 WHERE a=13842; UPDATE t2 SET b=16697 WHERE a=13843; UPDATE t2 SET b=35612 WHERE a=13844; UPDATE t2 SET b=89241 WHERE a=13845; UPDATE t2 SET b=77915 WHERE a=13846; UPDATE t2 SET b=65755 WHERE a=13847; UPDATE t2 SET b=56364 WHERE a=13848; UPDATE t2 SET b=89637 WHERE a=13849; UPDATE t2 SET b=61272 WHERE a=13850; UPDATE t2 SET b=25502 WHERE a=13851; UPDATE t2 SET b=54868 WHERE a=13852; UPDATE t2 SET b=59070 WHERE a=13853; UPDATE t2 SET b=6874 WHERE a=13854; UPDATE t2 SET b=50251 WHERE a=13855; UPDATE t2 SET b=17753 WHERE a=13856; UPDATE t2 SET b=97679 WHERE a=13857; UPDATE t2 SET b=67143 WHERE a=13858; UPDATE t2 SET b=38485 WHERE a=13859; UPDATE t2 SET b=5959 WHERE a=13860; UPDATE t2 SET b=11431 WHERE a=13861; UPDATE t2 SET b=55814 WHERE a=13862; UPDATE t2 SET b=24873 WHERE a=13863; UPDATE t2 SET b=40420 WHERE a=13864; UPDATE t2 SET b=56078 WHERE a=13865; UPDATE t2 SET b=12847 WHERE a=13866; UPDATE t2 SET b=93485 WHERE a=13867; UPDATE t2 SET b=3208 WHERE a=13868; UPDATE t2 SET b=61189 WHERE a=13869; UPDATE t2 SET b=2405 WHERE a=13870; UPDATE t2 SET b=91811 WHERE a=13871; UPDATE t2 SET b=94380 WHERE a=13872; UPDATE t2 SET b=40744 WHERE a=13873; UPDATE t2 SET b=22886 WHERE a=13874; UPDATE t2 SET b=45154 WHERE a=13875; UPDATE t2 SET b=44487 WHERE a=13876; UPDATE t2 SET b=77600 WHERE a=13877; UPDATE t2 SET b=54519 WHERE a=13878; UPDATE t2 SET b=5507 WHERE a=13879; UPDATE t2 SET b=73789 WHERE a=13880; UPDATE t2 SET b=18542 WHERE a=13881; UPDATE t2 SET b=60305 WHERE a=13882; UPDATE t2 SET b=11619 WHERE a=13883; UPDATE t2 SET b=3879 WHERE a=13884; UPDATE t2 SET b=30127 WHERE a=13885; UPDATE t2 SET b=4441 WHERE a=13886; UPDATE t2 SET b=45810 WHERE a=13887; UPDATE t2 SET b=51601 WHERE a=13888; UPDATE t2 SET b=1208 WHERE a=13889; UPDATE t2 SET b=5677 WHERE a=13890; UPDATE t2 SET b=78727 WHERE a=13891; UPDATE t2 SET b=73087 WHERE a=13892; UPDATE t2 SET b=73766 WHERE a=13893; UPDATE t2 SET b=63487 WHERE a=13894; UPDATE t2 SET b=4161 WHERE a=13895; UPDATE t2 SET b=87809 WHERE a=13896; UPDATE t2 SET b=14906 WHERE a=13897; UPDATE t2 SET b=43677 WHERE a=13898; UPDATE t2 SET b=32755 WHERE a=13899; UPDATE t2 SET b=43188 WHERE a=13900; UPDATE t2 SET b=42148 WHERE a=13901; UPDATE t2 SET b=98728 WHERE a=13902; UPDATE t2 SET b=81542 WHERE a=13903; UPDATE t2 SET b=95065 WHERE a=13904; UPDATE t2 SET b=29072 WHERE a=13905; UPDATE t2 SET b=99574 WHERE a=13906; UPDATE t2 SET b=94898 WHERE a=13907; UPDATE t2 SET b=72110 WHERE a=13908; UPDATE t2 SET b=67391 WHERE a=13909; UPDATE t2 SET b=60351 WHERE a=13910; UPDATE t2 SET b=36535 WHERE a=13911; UPDATE t2 SET b=30657 WHERE a=13912; UPDATE t2 SET b=80097 WHERE a=13913; UPDATE t2 SET b=73903 WHERE a=13914; UPDATE t2 SET b=58626 WHERE a=13915; UPDATE t2 SET b=40848 WHERE a=13916; UPDATE t2 SET b=85191 WHERE a=13917; UPDATE t2 SET b=52589 WHERE a=13918; UPDATE t2 SET b=33067 WHERE a=13919; UPDATE t2 SET b=96925 WHERE a=13920; UPDATE t2 SET b=64248 WHERE a=13921; UPDATE t2 SET b=17277 WHERE a=13922; UPDATE t2 SET b=36093 WHERE a=13923; UPDATE t2 SET b=25564 WHERE a=13924; UPDATE t2 SET b=68275 WHERE a=13925; UPDATE t2 SET b=78636 WHERE a=13926; UPDATE t2 SET b=81015 WHERE a=13927; UPDATE t2 SET b=62260 WHERE a=13928; UPDATE t2 SET b=27121 WHERE a=13929; UPDATE t2 SET b=86710 WHERE a=13930; UPDATE t2 SET b=17960 WHERE a=13931; UPDATE t2 SET b=4395 WHERE a=13932; UPDATE t2 SET b=22560 WHERE a=13933; UPDATE t2 SET b=75095 WHERE a=13934; UPDATE t2 SET b=74252 WHERE a=13935; UPDATE t2 SET b=28051 WHERE a=13936; UPDATE t2 SET b=37810 WHERE a=13937; UPDATE t2 SET b=3873 WHERE a=13938; UPDATE t2 SET b=42963 WHERE a=13939; UPDATE t2 SET b=56526 WHERE a=13940; UPDATE t2 SET b=49662 WHERE a=13941; UPDATE t2 SET b=89034 WHERE a=13942; UPDATE t2 SET b=15023 WHERE a=13943; UPDATE t2 SET b=62959 WHERE a=13944; UPDATE t2 SET b=24980 WHERE a=13945; UPDATE t2 SET b=92369 WHERE a=13946; UPDATE t2 SET b=94414 WHERE a=13947; UPDATE t2 SET b=89267 WHERE a=13948; UPDATE t2 SET b=24918 WHERE a=13949; UPDATE t2 SET b=87659 WHERE a=13950; UPDATE t2 SET b=69545 WHERE a=13951; UPDATE t2 SET b=22558 WHERE a=13952; UPDATE t2 SET b=80401 WHERE a=13953; UPDATE t2 SET b=65897 WHERE a=13954; UPDATE t2 SET b=10838 WHERE a=13955; UPDATE t2 SET b=88327 WHERE a=13956; UPDATE t2 SET b=13569 WHERE a=13957; UPDATE t2 SET b=29216 WHERE a=13958; UPDATE t2 SET b=20236 WHERE a=13959; UPDATE t2 SET b=9886 WHERE a=13960; UPDATE t2 SET b=70058 WHERE a=13961; UPDATE t2 SET b=33681 WHERE a=13962; UPDATE t2 SET b=84674 WHERE a=13963; UPDATE t2 SET b=45100 WHERE a=13964; UPDATE t2 SET b=83734 WHERE a=13965; UPDATE t2 SET b=79368 WHERE a=13966; UPDATE t2 SET b=83853 WHERE a=13967; UPDATE t2 SET b=5128 WHERE a=13968; UPDATE t2 SET b=53572 WHERE a=13969; UPDATE t2 SET b=79965 WHERE a=13970; UPDATE t2 SET b=5786 WHERE a=13971; UPDATE t2 SET b=29191 WHERE a=13972; UPDATE t2 SET b=65483 WHERE a=13973; UPDATE t2 SET b=13159 WHERE a=13974; UPDATE t2 SET b=9216 WHERE a=13975; UPDATE t2 SET b=12992 WHERE a=13976; UPDATE t2 SET b=38985 WHERE a=13977; UPDATE t2 SET b=45977 WHERE a=13978; UPDATE t2 SET b=27089 WHERE a=13979; UPDATE t2 SET b=4578 WHERE a=13980; UPDATE t2 SET b=66459 WHERE a=13981; UPDATE t2 SET b=77657 WHERE a=13982; UPDATE t2 SET b=76698 WHERE a=13983; UPDATE t2 SET b=33180 WHERE a=13984; UPDATE t2 SET b=47363 WHERE a=13985; UPDATE t2 SET b=12448 WHERE a=13986; UPDATE t2 SET b=77026 WHERE a=13987; UPDATE t2 SET b=71490 WHERE a=13988; UPDATE t2 SET b=77377 WHERE a=13989; UPDATE t2 SET b=22565 WHERE a=13990; UPDATE t2 SET b=28799 WHERE a=13991; UPDATE t2 SET b=16304 WHERE a=13992; UPDATE t2 SET b=39195 WHERE a=13993; UPDATE t2 SET b=99624 WHERE a=13994; UPDATE t2 SET b=38538 WHERE a=13995; UPDATE t2 SET b=66287 WHERE a=13996; UPDATE t2 SET b=21272 WHERE a=13997; UPDATE t2 SET b=35562 WHERE a=13998; UPDATE t2 SET b=422 WHERE a=13999; UPDATE t2 SET b=56304 WHERE a=14000; UPDATE t2 SET b=8535 WHERE a=14001; UPDATE t2 SET b=36260 WHERE a=14002; UPDATE t2 SET b=37693 WHERE a=14003; UPDATE t2 SET b=76997 WHERE a=14004; UPDATE t2 SET b=22752 WHERE a=14005; UPDATE t2 SET b=31610 WHERE a=14006; UPDATE t2 SET b=41268 WHERE a=14007; UPDATE t2 SET b=99809 WHERE a=14008; UPDATE t2 SET b=14164 WHERE a=14009; UPDATE t2 SET b=67026 WHERE a=14010; UPDATE t2 SET b=19191 WHERE a=14011; UPDATE t2 SET b=36903 WHERE a=14012; UPDATE t2 SET b=90269 WHERE a=14013; UPDATE t2 SET b=9260 WHERE a=14014; UPDATE t2 SET b=90355 WHERE a=14015; UPDATE t2 SET b=1454 WHERE a=14016; UPDATE t2 SET b=77531 WHERE a=14017; UPDATE t2 SET b=80538 WHERE a=14018; UPDATE t2 SET b=973 WHERE a=14019; UPDATE t2 SET b=75256 WHERE a=14020; UPDATE t2 SET b=8007 WHERE a=14021; UPDATE t2 SET b=54187 WHERE a=14022; UPDATE t2 SET b=55885 WHERE a=14023; UPDATE t2 SET b=59891 WHERE a=14024; UPDATE t2 SET b=23470 WHERE a=14025; UPDATE t2 SET b=19232 WHERE a=14026; UPDATE t2 SET b=94737 WHERE a=14027; UPDATE t2 SET b=34332 WHERE a=14028; UPDATE t2 SET b=68263 WHERE a=14029; UPDATE t2 SET b=52423 WHERE a=14030; UPDATE t2 SET b=34848 WHERE a=14031; UPDATE t2 SET b=74459 WHERE a=14032; UPDATE t2 SET b=71101 WHERE a=14033; UPDATE t2 SET b=67427 WHERE a=14034; UPDATE t2 SET b=34703 WHERE a=14035; UPDATE t2 SET b=45083 WHERE a=14036; UPDATE t2 SET b=30251 WHERE a=14037; UPDATE t2 SET b=57902 WHERE a=14038; UPDATE t2 SET b=67560 WHERE a=14039; UPDATE t2 SET b=74933 WHERE a=14040; UPDATE t2 SET b=49154 WHERE a=14041; UPDATE t2 SET b=24663 WHERE a=14042; UPDATE t2 SET b=91667 WHERE a=14043; UPDATE t2 SET b=23519 WHERE a=14044; UPDATE t2 SET b=85444 WHERE a=14045; UPDATE t2 SET b=95026 WHERE a=14046; UPDATE t2 SET b=97582 WHERE a=14047; UPDATE t2 SET b=14077 WHERE a=14048; UPDATE t2 SET b=14338 WHERE a=14049; UPDATE t2 SET b=79361 WHERE a=14050; UPDATE t2 SET b=82932 WHERE a=14051; UPDATE t2 SET b=21244 WHERE a=14052; UPDATE t2 SET b=21811 WHERE a=14053; UPDATE t2 SET b=56406 WHERE a=14054; UPDATE t2 SET b=15203 WHERE a=14055; UPDATE t2 SET b=58786 WHERE a=14056; UPDATE t2 SET b=85895 WHERE a=14057; UPDATE t2 SET b=55981 WHERE a=14058; UPDATE t2 SET b=75741 WHERE a=14059; UPDATE t2 SET b=13837 WHERE a=14060; UPDATE t2 SET b=64934 WHERE a=14061; UPDATE t2 SET b=18701 WHERE a=14062; UPDATE t2 SET b=32801 WHERE a=14063; UPDATE t2 SET b=3981 WHERE a=14064; UPDATE t2 SET b=53175 WHERE a=14065; UPDATE t2 SET b=85477 WHERE a=14066; UPDATE t2 SET b=82230 WHERE a=14067; UPDATE t2 SET b=56525 WHERE a=14068; UPDATE t2 SET b=36947 WHERE a=14069; UPDATE t2 SET b=74238 WHERE a=14070; UPDATE t2 SET b=85433 WHERE a=14071; UPDATE t2 SET b=11663 WHERE a=14072; UPDATE t2 SET b=90172 WHERE a=14073; UPDATE t2 SET b=37626 WHERE a=14074; UPDATE t2 SET b=67856 WHERE a=14075; UPDATE t2 SET b=37914 WHERE a=14076; UPDATE t2 SET b=34090 WHERE a=14077; UPDATE t2 SET b=95898 WHERE a=14078; UPDATE t2 SET b=27444 WHERE a=14079; UPDATE t2 SET b=54535 WHERE a=14080; UPDATE t2 SET b=76830 WHERE a=14081; UPDATE t2 SET b=5384 WHERE a=14082; UPDATE t2 SET b=4302 WHERE a=14083; UPDATE t2 SET b=63409 WHERE a=14084; UPDATE t2 SET b=86344 WHERE a=14085; UPDATE t2 SET b=62646 WHERE a=14086; UPDATE t2 SET b=2548 WHERE a=14087; UPDATE t2 SET b=67580 WHERE a=14088; UPDATE t2 SET b=99229 WHERE a=14089; UPDATE t2 SET b=54126 WHERE a=14090; UPDATE t2 SET b=21806 WHERE a=14091; UPDATE t2 SET b=61531 WHERE a=14092; UPDATE t2 SET b=94011 WHERE a=14093; UPDATE t2 SET b=53013 WHERE a=14094; UPDATE t2 SET b=53154 WHERE a=14095; UPDATE t2 SET b=37352 WHERE a=14096; UPDATE t2 SET b=18295 WHERE a=14097; UPDATE t2 SET b=54314 WHERE a=14098; UPDATE t2 SET b=53094 WHERE a=14099; UPDATE t2 SET b=62648 WHERE a=14100; UPDATE t2 SET b=76710 WHERE a=14101; UPDATE t2 SET b=49768 WHERE a=14102; UPDATE t2 SET b=8262 WHERE a=14103; UPDATE t2 SET b=38746 WHERE a=14104; UPDATE t2 SET b=11854 WHERE a=14105; UPDATE t2 SET b=1605 WHERE a=14106; UPDATE t2 SET b=66832 WHERE a=14107; UPDATE t2 SET b=20626 WHERE a=14108; UPDATE t2 SET b=3128 WHERE a=14109; UPDATE t2 SET b=77899 WHERE a=14110; UPDATE t2 SET b=83851 WHERE a=14111; UPDATE t2 SET b=33341 WHERE a=14112; UPDATE t2 SET b=21231 WHERE a=14113; UPDATE t2 SET b=29062 WHERE a=14114; UPDATE t2 SET b=13622 WHERE a=14115; UPDATE t2 SET b=3166 WHERE a=14116; UPDATE t2 SET b=5177 WHERE a=14117; UPDATE t2 SET b=25275 WHERE a=14118; UPDATE t2 SET b=29583 WHERE a=14119; UPDATE t2 SET b=23077 WHERE a=14120; UPDATE t2 SET b=54311 WHERE a=14121; UPDATE t2 SET b=17884 WHERE a=14122; UPDATE t2 SET b=50983 WHERE a=14123; UPDATE t2 SET b=22499 WHERE a=14124; UPDATE t2 SET b=95523 WHERE a=14125; UPDATE t2 SET b=33069 WHERE a=14126; UPDATE t2 SET b=16742 WHERE a=14127; UPDATE t2 SET b=14121 WHERE a=14128; UPDATE t2 SET b=77360 WHERE a=14129; UPDATE t2 SET b=43214 WHERE a=14130; UPDATE t2 SET b=39492 WHERE a=14131; UPDATE t2 SET b=35791 WHERE a=14132; UPDATE t2 SET b=51502 WHERE a=14133; UPDATE t2 SET b=56317 WHERE a=14134; UPDATE t2 SET b=30135 WHERE a=14135; UPDATE t2 SET b=73042 WHERE a=14136; UPDATE t2 SET b=85999 WHERE a=14137; UPDATE t2 SET b=55421 WHERE a=14138; UPDATE t2 SET b=93846 WHERE a=14139; UPDATE t2 SET b=44062 WHERE a=14140; UPDATE t2 SET b=21070 WHERE a=14141; UPDATE t2 SET b=5826 WHERE a=14142; UPDATE t2 SET b=82271 WHERE a=14143; UPDATE t2 SET b=83669 WHERE a=14144; UPDATE t2 SET b=80805 WHERE a=14145; UPDATE t2 SET b=59679 WHERE a=14146; UPDATE t2 SET b=63917 WHERE a=14147; UPDATE t2 SET b=52813 WHERE a=14148; UPDATE t2 SET b=30440 WHERE a=14149; UPDATE t2 SET b=34754 WHERE a=14150; UPDATE t2 SET b=37013 WHERE a=14151; UPDATE t2 SET b=943 WHERE a=14152; UPDATE t2 SET b=79187 WHERE a=14153; UPDATE t2 SET b=20466 WHERE a=14154; UPDATE t2 SET b=81081 WHERE a=14155; UPDATE t2 SET b=26090 WHERE a=14156; UPDATE t2 SET b=40370 WHERE a=14157; UPDATE t2 SET b=75040 WHERE a=14158; UPDATE t2 SET b=68193 WHERE a=14159; UPDATE t2 SET b=46685 WHERE a=14160; UPDATE t2 SET b=68576 WHERE a=14161; UPDATE t2 SET b=76281 WHERE a=14162; UPDATE t2 SET b=55879 WHERE a=14163; UPDATE t2 SET b=90022 WHERE a=14164; UPDATE t2 SET b=91374 WHERE a=14165; UPDATE t2 SET b=3280 WHERE a=14166; UPDATE t2 SET b=40828 WHERE a=14167; UPDATE t2 SET b=11270 WHERE a=14168; UPDATE t2 SET b=93564 WHERE a=14169; UPDATE t2 SET b=24880 WHERE a=14170; UPDATE t2 SET b=43694 WHERE a=14171; UPDATE t2 SET b=60313 WHERE a=14172; UPDATE t2 SET b=32863 WHERE a=14173; UPDATE t2 SET b=95573 WHERE a=14174; UPDATE t2 SET b=2314 WHERE a=14175; UPDATE t2 SET b=33948 WHERE a=14176; UPDATE t2 SET b=36246 WHERE a=14177; UPDATE t2 SET b=49495 WHERE a=14178; UPDATE t2 SET b=68127 WHERE a=14179; UPDATE t2 SET b=86313 WHERE a=14180; UPDATE t2 SET b=64590 WHERE a=14181; UPDATE t2 SET b=76398 WHERE a=14182; UPDATE t2 SET b=67110 WHERE a=14183; UPDATE t2 SET b=81950 WHERE a=14184; UPDATE t2 SET b=15290 WHERE a=14185; UPDATE t2 SET b=21665 WHERE a=14186; UPDATE t2 SET b=62043 WHERE a=14187; UPDATE t2 SET b=25633 WHERE a=14188; UPDATE t2 SET b=22742 WHERE a=14189; UPDATE t2 SET b=61703 WHERE a=14190; UPDATE t2 SET b=82029 WHERE a=14191; UPDATE t2 SET b=99723 WHERE a=14192; UPDATE t2 SET b=79902 WHERE a=14193; UPDATE t2 SET b=93117 WHERE a=14194; UPDATE t2 SET b=96334 WHERE a=14195; UPDATE t2 SET b=15604 WHERE a=14196; UPDATE t2 SET b=68209 WHERE a=14197; UPDATE t2 SET b=3942 WHERE a=14198; UPDATE t2 SET b=52552 WHERE a=14199; UPDATE t2 SET b=78342 WHERE a=14200; UPDATE t2 SET b=59615 WHERE a=14201; UPDATE t2 SET b=17548 WHERE a=14202; UPDATE t2 SET b=69095 WHERE a=14203; UPDATE t2 SET b=76765 WHERE a=14204; UPDATE t2 SET b=35259 WHERE a=14205; UPDATE t2 SET b=3863 WHERE a=14206; UPDATE t2 SET b=23645 WHERE a=14207; UPDATE t2 SET b=2570 WHERE a=14208; UPDATE t2 SET b=5981 WHERE a=14209; UPDATE t2 SET b=5395 WHERE a=14210; UPDATE t2 SET b=29526 WHERE a=14211; UPDATE t2 SET b=67702 WHERE a=14212; UPDATE t2 SET b=895 WHERE a=14213; UPDATE t2 SET b=67574 WHERE a=14214; UPDATE t2 SET b=69242 WHERE a=14215; UPDATE t2 SET b=45301 WHERE a=14216; UPDATE t2 SET b=95384 WHERE a=14217; UPDATE t2 SET b=98704 WHERE a=14218; UPDATE t2 SET b=21273 WHERE a=14219; UPDATE t2 SET b=53562 WHERE a=14220; UPDATE t2 SET b=86357 WHERE a=14221; UPDATE t2 SET b=47497 WHERE a=14222; UPDATE t2 SET b=75707 WHERE a=14223; UPDATE t2 SET b=32817 WHERE a=14224; UPDATE t2 SET b=21302 WHERE a=14225; UPDATE t2 SET b=41843 WHERE a=14226; UPDATE t2 SET b=89108 WHERE a=14227; UPDATE t2 SET b=36815 WHERE a=14228; UPDATE t2 SET b=72751 WHERE a=14229; UPDATE t2 SET b=47750 WHERE a=14230; UPDATE t2 SET b=84258 WHERE a=14231; UPDATE t2 SET b=24114 WHERE a=14232; UPDATE t2 SET b=46592 WHERE a=14233; UPDATE t2 SET b=69121 WHERE a=14234; UPDATE t2 SET b=50583 WHERE a=14235; UPDATE t2 SET b=77191 WHERE a=14236; UPDATE t2 SET b=99461 WHERE a=14237; UPDATE t2 SET b=79491 WHERE a=14238; UPDATE t2 SET b=51237 WHERE a=14239; UPDATE t2 SET b=90549 WHERE a=14240; UPDATE t2 SET b=87175 WHERE a=14241; UPDATE t2 SET b=90811 WHERE a=14242; UPDATE t2 SET b=53502 WHERE a=14243; UPDATE t2 SET b=16197 WHERE a=14244; UPDATE t2 SET b=17269 WHERE a=14245; UPDATE t2 SET b=94666 WHERE a=14246; UPDATE t2 SET b=31098 WHERE a=14247; UPDATE t2 SET b=10923 WHERE a=14248; UPDATE t2 SET b=46225 WHERE a=14249; UPDATE t2 SET b=50012 WHERE a=14250; UPDATE t2 SET b=25202 WHERE a=14251; UPDATE t2 SET b=38631 WHERE a=14252; UPDATE t2 SET b=6735 WHERE a=14253; UPDATE t2 SET b=91863 WHERE a=14254; UPDATE t2 SET b=35485 WHERE a=14255; UPDATE t2 SET b=22957 WHERE a=14256; UPDATE t2 SET b=81173 WHERE a=14257; UPDATE t2 SET b=57173 WHERE a=14258; UPDATE t2 SET b=54432 WHERE a=14259; UPDATE t2 SET b=19117 WHERE a=14260; UPDATE t2 SET b=40062 WHERE a=14261; UPDATE t2 SET b=61678 WHERE a=14262; UPDATE t2 SET b=86838 WHERE a=14263; UPDATE t2 SET b=92135 WHERE a=14264; UPDATE t2 SET b=42195 WHERE a=14265; UPDATE t2 SET b=80541 WHERE a=14266; UPDATE t2 SET b=90528 WHERE a=14267; UPDATE t2 SET b=39703 WHERE a=14268; UPDATE t2 SET b=87894 WHERE a=14269; UPDATE t2 SET b=23826 WHERE a=14270; UPDATE t2 SET b=39993 WHERE a=14271; UPDATE t2 SET b=44526 WHERE a=14272; UPDATE t2 SET b=80232 WHERE a=14273; UPDATE t2 SET b=25638 WHERE a=14274; UPDATE t2 SET b=94974 WHERE a=14275; UPDATE t2 SET b=19138 WHERE a=14276; UPDATE t2 SET b=37762 WHERE a=14277; UPDATE t2 SET b=64882 WHERE a=14278; UPDATE t2 SET b=24289 WHERE a=14279; UPDATE t2 SET b=17432 WHERE a=14280; UPDATE t2 SET b=96242 WHERE a=14281; UPDATE t2 SET b=25542 WHERE a=14282; UPDATE t2 SET b=32912 WHERE a=14283; UPDATE t2 SET b=96523 WHERE a=14284; UPDATE t2 SET b=5921 WHERE a=14285; UPDATE t2 SET b=50680 WHERE a=14286; UPDATE t2 SET b=10530 WHERE a=14287; UPDATE t2 SET b=34376 WHERE a=14288; UPDATE t2 SET b=39630 WHERE a=14289; UPDATE t2 SET b=40577 WHERE a=14290; UPDATE t2 SET b=49716 WHERE a=14291; UPDATE t2 SET b=81219 WHERE a=14292; UPDATE t2 SET b=79060 WHERE a=14293; UPDATE t2 SET b=21393 WHERE a=14294; UPDATE t2 SET b=85510 WHERE a=14295; UPDATE t2 SET b=86456 WHERE a=14296; UPDATE t2 SET b=21145 WHERE a=14297; UPDATE t2 SET b=26581 WHERE a=14298; UPDATE t2 SET b=87141 WHERE a=14299; UPDATE t2 SET b=54236 WHERE a=14300; UPDATE t2 SET b=66836 WHERE a=14301; UPDATE t2 SET b=50487 WHERE a=14302; UPDATE t2 SET b=52606 WHERE a=14303; UPDATE t2 SET b=19853 WHERE a=14304; UPDATE t2 SET b=50632 WHERE a=14305; UPDATE t2 SET b=72186 WHERE a=14306; UPDATE t2 SET b=37870 WHERE a=14307; UPDATE t2 SET b=70788 WHERE a=14308; UPDATE t2 SET b=36390 WHERE a=14309; UPDATE t2 SET b=4345 WHERE a=14310; UPDATE t2 SET b=82745 WHERE a=14311; UPDATE t2 SET b=68079 WHERE a=14312; UPDATE t2 SET b=45815 WHERE a=14313; UPDATE t2 SET b=20715 WHERE a=14314; UPDATE t2 SET b=77663 WHERE a=14315; UPDATE t2 SET b=32593 WHERE a=14316; UPDATE t2 SET b=95250 WHERE a=14317; UPDATE t2 SET b=75425 WHERE a=14318; UPDATE t2 SET b=63155 WHERE a=14319; UPDATE t2 SET b=35139 WHERE a=14320; UPDATE t2 SET b=94843 WHERE a=14321; UPDATE t2 SET b=649 WHERE a=14322; UPDATE t2 SET b=82523 WHERE a=14323; UPDATE t2 SET b=78515 WHERE a=14324; UPDATE t2 SET b=51432 WHERE a=14325; UPDATE t2 SET b=56550 WHERE a=14326; UPDATE t2 SET b=42347 WHERE a=14327; UPDATE t2 SET b=23635 WHERE a=14328; UPDATE t2 SET b=65110 WHERE a=14329; UPDATE t2 SET b=1172 WHERE a=14330; UPDATE t2 SET b=73816 WHERE a=14331; UPDATE t2 SET b=75344 WHERE a=14332; UPDATE t2 SET b=16221 WHERE a=14333; UPDATE t2 SET b=45054 WHERE a=14334; UPDATE t2 SET b=46004 WHERE a=14335; UPDATE t2 SET b=54180 WHERE a=14336; UPDATE t2 SET b=99293 WHERE a=14337; UPDATE t2 SET b=51093 WHERE a=14338; UPDATE t2 SET b=39448 WHERE a=14339; UPDATE t2 SET b=75402 WHERE a=14340; UPDATE t2 SET b=83241 WHERE a=14341; UPDATE t2 SET b=5186 WHERE a=14342; UPDATE t2 SET b=9742 WHERE a=14343; UPDATE t2 SET b=67926 WHERE a=14344; UPDATE t2 SET b=37181 WHERE a=14345; UPDATE t2 SET b=26672 WHERE a=14346; UPDATE t2 SET b=94627 WHERE a=14347; UPDATE t2 SET b=6343 WHERE a=14348; UPDATE t2 SET b=40011 WHERE a=14349; UPDATE t2 SET b=47424 WHERE a=14350; UPDATE t2 SET b=39637 WHERE a=14351; UPDATE t2 SET b=43811 WHERE a=14352; UPDATE t2 SET b=51818 WHERE a=14353; UPDATE t2 SET b=71690 WHERE a=14354; UPDATE t2 SET b=45687 WHERE a=14355; UPDATE t2 SET b=26617 WHERE a=14356; UPDATE t2 SET b=12821 WHERE a=14357; UPDATE t2 SET b=70912 WHERE a=14358; UPDATE t2 SET b=71506 WHERE a=14359; UPDATE t2 SET b=83574 WHERE a=14360; UPDATE t2 SET b=13843 WHERE a=14361; UPDATE t2 SET b=7205 WHERE a=14362; UPDATE t2 SET b=78590 WHERE a=14363; UPDATE t2 SET b=33761 WHERE a=14364; UPDATE t2 SET b=38169 WHERE a=14365; UPDATE t2 SET b=37311 WHERE a=14366; UPDATE t2 SET b=75207 WHERE a=14367; UPDATE t2 SET b=69494 WHERE a=14368; UPDATE t2 SET b=90424 WHERE a=14369; UPDATE t2 SET b=21928 WHERE a=14370; UPDATE t2 SET b=93290 WHERE a=14371; UPDATE t2 SET b=47049 WHERE a=14372; UPDATE t2 SET b=10340 WHERE a=14373; UPDATE t2 SET b=23800 WHERE a=14374; UPDATE t2 SET b=56163 WHERE a=14375; UPDATE t2 SET b=57527 WHERE a=14376; UPDATE t2 SET b=4419 WHERE a=14377; UPDATE t2 SET b=51234 WHERE a=14378; UPDATE t2 SET b=85890 WHERE a=14379; UPDATE t2 SET b=36065 WHERE a=14380; UPDATE t2 SET b=95546 WHERE a=14381; UPDATE t2 SET b=90373 WHERE a=14382; UPDATE t2 SET b=54962 WHERE a=14383; UPDATE t2 SET b=9005 WHERE a=14384; UPDATE t2 SET b=56736 WHERE a=14385; UPDATE t2 SET b=4437 WHERE a=14386; UPDATE t2 SET b=48291 WHERE a=14387; UPDATE t2 SET b=23569 WHERE a=14388; UPDATE t2 SET b=75545 WHERE a=14389; UPDATE t2 SET b=42070 WHERE a=14390; UPDATE t2 SET b=85978 WHERE a=14391; UPDATE t2 SET b=36915 WHERE a=14392; UPDATE t2 SET b=99356 WHERE a=14393; UPDATE t2 SET b=84424 WHERE a=14394; UPDATE t2 SET b=90487 WHERE a=14395; UPDATE t2 SET b=72037 WHERE a=14396; UPDATE t2 SET b=29141 WHERE a=14397; UPDATE t2 SET b=44211 WHERE a=14398; UPDATE t2 SET b=40192 WHERE a=14399; UPDATE t2 SET b=17031 WHERE a=14400; UPDATE t2 SET b=57138 WHERE a=14401; UPDATE t2 SET b=6942 WHERE a=14402; UPDATE t2 SET b=94832 WHERE a=14403; UPDATE t2 SET b=15223 WHERE a=14404; UPDATE t2 SET b=13389 WHERE a=14405; UPDATE t2 SET b=34431 WHERE a=14406; UPDATE t2 SET b=76052 WHERE a=14407; UPDATE t2 SET b=4354 WHERE a=14408; UPDATE t2 SET b=59904 WHERE a=14409; UPDATE t2 SET b=15756 WHERE a=14410; UPDATE t2 SET b=44940 WHERE a=14411; UPDATE t2 SET b=72080 WHERE a=14412; UPDATE t2 SET b=60530 WHERE a=14413; UPDATE t2 SET b=15753 WHERE a=14414; UPDATE t2 SET b=54564 WHERE a=14415; UPDATE t2 SET b=83183 WHERE a=14416; UPDATE t2 SET b=97230 WHERE a=14417; UPDATE t2 SET b=91576 WHERE a=14418; UPDATE t2 SET b=67622 WHERE a=14419; UPDATE t2 SET b=18896 WHERE a=14420; UPDATE t2 SET b=92656 WHERE a=14421; UPDATE t2 SET b=79537 WHERE a=14422; UPDATE t2 SET b=36554 WHERE a=14423; UPDATE t2 SET b=25432 WHERE a=14424; UPDATE t2 SET b=40105 WHERE a=14425; UPDATE t2 SET b=49225 WHERE a=14426; UPDATE t2 SET b=22975 WHERE a=14427; UPDATE t2 SET b=75193 WHERE a=14428; UPDATE t2 SET b=46674 WHERE a=14429; UPDATE t2 SET b=47243 WHERE a=14430; UPDATE t2 SET b=48279 WHERE a=14431; UPDATE t2 SET b=26746 WHERE a=14432; UPDATE t2 SET b=53995 WHERE a=14433; UPDATE t2 SET b=61625 WHERE a=14434; UPDATE t2 SET b=47218 WHERE a=14435; UPDATE t2 SET b=93230 WHERE a=14436; UPDATE t2 SET b=61567 WHERE a=14437; UPDATE t2 SET b=11688 WHERE a=14438; UPDATE t2 SET b=51123 WHERE a=14439; UPDATE t2 SET b=54921 WHERE a=14440; UPDATE t2 SET b=36134 WHERE a=14441; UPDATE t2 SET b=97758 WHERE a=14442; UPDATE t2 SET b=73873 WHERE a=14443; UPDATE t2 SET b=99382 WHERE a=14444; UPDATE t2 SET b=69796 WHERE a=14445; UPDATE t2 SET b=52396 WHERE a=14446; UPDATE t2 SET b=46093 WHERE a=14447; UPDATE t2 SET b=94927 WHERE a=14448; UPDATE t2 SET b=16072 WHERE a=14449; UPDATE t2 SET b=19009 WHERE a=14450; UPDATE t2 SET b=51050 WHERE a=14451; UPDATE t2 SET b=53570 WHERE a=14452; UPDATE t2 SET b=79201 WHERE a=14453; UPDATE t2 SET b=75367 WHERE a=14454; UPDATE t2 SET b=88674 WHERE a=14455; UPDATE t2 SET b=84430 WHERE a=14456; UPDATE t2 SET b=27822 WHERE a=14457; UPDATE t2 SET b=50653 WHERE a=14458; UPDATE t2 SET b=2918 WHERE a=14459; UPDATE t2 SET b=58511 WHERE a=14460; UPDATE t2 SET b=4560 WHERE a=14461; UPDATE t2 SET b=25436 WHERE a=14462; UPDATE t2 SET b=5115 WHERE a=14463; UPDATE t2 SET b=21623 WHERE a=14464; UPDATE t2 SET b=66695 WHERE a=14465; UPDATE t2 SET b=3142 WHERE a=14466; UPDATE t2 SET b=24945 WHERE a=14467; UPDATE t2 SET b=61176 WHERE a=14468; UPDATE t2 SET b=1847 WHERE a=14469; UPDATE t2 SET b=14462 WHERE a=14470; UPDATE t2 SET b=86310 WHERE a=14471; UPDATE t2 SET b=91021 WHERE a=14472; UPDATE t2 SET b=51899 WHERE a=14473; UPDATE t2 SET b=29445 WHERE a=14474; UPDATE t2 SET b=25390 WHERE a=14475; UPDATE t2 SET b=64782 WHERE a=14476; UPDATE t2 SET b=9919 WHERE a=14477; UPDATE t2 SET b=335 WHERE a=14478; UPDATE t2 SET b=47957 WHERE a=14479; UPDATE t2 SET b=43776 WHERE a=14480; UPDATE t2 SET b=48136 WHERE a=14481; UPDATE t2 SET b=69340 WHERE a=14482; UPDATE t2 SET b=55960 WHERE a=14483; UPDATE t2 SET b=42722 WHERE a=14484; UPDATE t2 SET b=12134 WHERE a=14485; UPDATE t2 SET b=62583 WHERE a=14486; UPDATE t2 SET b=27558 WHERE a=14487; UPDATE t2 SET b=57164 WHERE a=14488; UPDATE t2 SET b=47867 WHERE a=14489; UPDATE t2 SET b=243 WHERE a=14490; UPDATE t2 SET b=57182 WHERE a=14491; UPDATE t2 SET b=84641 WHERE a=14492; UPDATE t2 SET b=70689 WHERE a=14493; UPDATE t2 SET b=19498 WHERE a=14494; UPDATE t2 SET b=67797 WHERE a=14495; UPDATE t2 SET b=47520 WHERE a=14496; UPDATE t2 SET b=15129 WHERE a=14497; UPDATE t2 SET b=9424 WHERE a=14498; UPDATE t2 SET b=72408 WHERE a=14499; UPDATE t2 SET b=46157 WHERE a=14500; UPDATE t2 SET b=56113 WHERE a=14501; UPDATE t2 SET b=52223 WHERE a=14502; UPDATE t2 SET b=73676 WHERE a=14503; UPDATE t2 SET b=77809 WHERE a=14504; UPDATE t2 SET b=66016 WHERE a=14505; UPDATE t2 SET b=19993 WHERE a=14506; UPDATE t2 SET b=14279 WHERE a=14507; UPDATE t2 SET b=48515 WHERE a=14508; UPDATE t2 SET b=89452 WHERE a=14509; UPDATE t2 SET b=63062 WHERE a=14510; UPDATE t2 SET b=62157 WHERE a=14511; UPDATE t2 SET b=89829 WHERE a=14512; UPDATE t2 SET b=2916 WHERE a=14513; UPDATE t2 SET b=66852 WHERE a=14514; UPDATE t2 SET b=77799 WHERE a=14515; UPDATE t2 SET b=216 WHERE a=14516; UPDATE t2 SET b=98571 WHERE a=14517; UPDATE t2 SET b=567 WHERE a=14518; UPDATE t2 SET b=51218 WHERE a=14519; UPDATE t2 SET b=70955 WHERE a=14520; UPDATE t2 SET b=79350 WHERE a=14521; UPDATE t2 SET b=93305 WHERE a=14522; UPDATE t2 SET b=29535 WHERE a=14523; UPDATE t2 SET b=43877 WHERE a=14524; UPDATE t2 SET b=58211 WHERE a=14525; UPDATE t2 SET b=29064 WHERE a=14526; UPDATE t2 SET b=70076 WHERE a=14527; UPDATE t2 SET b=27493 WHERE a=14528; UPDATE t2 SET b=65242 WHERE a=14529; UPDATE t2 SET b=76059 WHERE a=14530; UPDATE t2 SET b=99180 WHERE a=14531; UPDATE t2 SET b=3104 WHERE a=14532; UPDATE t2 SET b=1575 WHERE a=14533; UPDATE t2 SET b=34885 WHERE a=14534; UPDATE t2 SET b=44009 WHERE a=14535; UPDATE t2 SET b=33587 WHERE a=14536; UPDATE t2 SET b=17611 WHERE a=14537; UPDATE t2 SET b=55616 WHERE a=14538; UPDATE t2 SET b=16151 WHERE a=14539; UPDATE t2 SET b=26303 WHERE a=14540; UPDATE t2 SET b=2332 WHERE a=14541; UPDATE t2 SET b=77562 WHERE a=14542; UPDATE t2 SET b=62757 WHERE a=14543; UPDATE t2 SET b=97774 WHERE a=14544; UPDATE t2 SET b=81984 WHERE a=14545; UPDATE t2 SET b=8918 WHERE a=14546; UPDATE t2 SET b=3075 WHERE a=14547; UPDATE t2 SET b=22536 WHERE a=14548; UPDATE t2 SET b=95414 WHERE a=14549; UPDATE t2 SET b=1435 WHERE a=14550; UPDATE t2 SET b=27705 WHERE a=14551; UPDATE t2 SET b=3959 WHERE a=14552; UPDATE t2 SET b=24474 WHERE a=14553; UPDATE t2 SET b=58594 WHERE a=14554; UPDATE t2 SET b=26523 WHERE a=14555; UPDATE t2 SET b=5140 WHERE a=14556; UPDATE t2 SET b=51695 WHERE a=14557; UPDATE t2 SET b=46617 WHERE a=14558; UPDATE t2 SET b=41263 WHERE a=14559; UPDATE t2 SET b=79344 WHERE a=14560; UPDATE t2 SET b=44370 WHERE a=14561; UPDATE t2 SET b=1464 WHERE a=14562; UPDATE t2 SET b=19846 WHERE a=14563; UPDATE t2 SET b=97233 WHERE a=14564; UPDATE t2 SET b=85070 WHERE a=14565; UPDATE t2 SET b=16326 WHERE a=14566; UPDATE t2 SET b=65690 WHERE a=14567; UPDATE t2 SET b=71480 WHERE a=14568; UPDATE t2 SET b=86281 WHERE a=14569; UPDATE t2 SET b=81372 WHERE a=14570; UPDATE t2 SET b=59926 WHERE a=14571; UPDATE t2 SET b=4447 WHERE a=14572; UPDATE t2 SET b=93293 WHERE a=14573; UPDATE t2 SET b=42018 WHERE a=14574; UPDATE t2 SET b=5835 WHERE a=14575; UPDATE t2 SET b=16464 WHERE a=14576; UPDATE t2 SET b=40563 WHERE a=14577; UPDATE t2 SET b=79559 WHERE a=14578; UPDATE t2 SET b=60928 WHERE a=14579; UPDATE t2 SET b=10595 WHERE a=14580; UPDATE t2 SET b=28815 WHERE a=14581; UPDATE t2 SET b=11776 WHERE a=14582; UPDATE t2 SET b=80055 WHERE a=14583; UPDATE t2 SET b=61953 WHERE a=14584; UPDATE t2 SET b=48159 WHERE a=14585; UPDATE t2 SET b=12131 WHERE a=14586; UPDATE t2 SET b=48912 WHERE a=14587; UPDATE t2 SET b=2569 WHERE a=14588; UPDATE t2 SET b=44663 WHERE a=14589; UPDATE t2 SET b=29106 WHERE a=14590; UPDATE t2 SET b=14026 WHERE a=14591; UPDATE t2 SET b=96047 WHERE a=14592; UPDATE t2 SET b=36602 WHERE a=14593; UPDATE t2 SET b=14486 WHERE a=14594; UPDATE t2 SET b=398 WHERE a=14595; UPDATE t2 SET b=45381 WHERE a=14596; UPDATE t2 SET b=15321 WHERE a=14597; UPDATE t2 SET b=56575 WHERE a=14598; UPDATE t2 SET b=73163 WHERE a=14599; UPDATE t2 SET b=37309 WHERE a=14600; UPDATE t2 SET b=1032 WHERE a=14601; UPDATE t2 SET b=28860 WHERE a=14602; UPDATE t2 SET b=99245 WHERE a=14603; UPDATE t2 SET b=91459 WHERE a=14604; UPDATE t2 SET b=68724 WHERE a=14605; UPDATE t2 SET b=8106 WHERE a=14606; UPDATE t2 SET b=99804 WHERE a=14607; UPDATE t2 SET b=96430 WHERE a=14608; UPDATE t2 SET b=10901 WHERE a=14609; UPDATE t2 SET b=32977 WHERE a=14610; UPDATE t2 SET b=93222 WHERE a=14611; UPDATE t2 SET b=19483 WHERE a=14612; UPDATE t2 SET b=66179 WHERE a=14613; UPDATE t2 SET b=81955 WHERE a=14614; UPDATE t2 SET b=84844 WHERE a=14615; UPDATE t2 SET b=48171 WHERE a=14616; UPDATE t2 SET b=4066 WHERE a=14617; UPDATE t2 SET b=21153 WHERE a=14618; UPDATE t2 SET b=63067 WHERE a=14619; UPDATE t2 SET b=26429 WHERE a=14620; UPDATE t2 SET b=76035 WHERE a=14621; UPDATE t2 SET b=12351 WHERE a=14622; UPDATE t2 SET b=19408 WHERE a=14623; UPDATE t2 SET b=22945 WHERE a=14624; UPDATE t2 SET b=32405 WHERE a=14625; UPDATE t2 SET b=46229 WHERE a=14626; UPDATE t2 SET b=85772 WHERE a=14627; UPDATE t2 SET b=16576 WHERE a=14628; UPDATE t2 SET b=80519 WHERE a=14629; UPDATE t2 SET b=93299 WHERE a=14630; UPDATE t2 SET b=37792 WHERE a=14631; UPDATE t2 SET b=48686 WHERE a=14632; UPDATE t2 SET b=68182 WHERE a=14633; UPDATE t2 SET b=71149 WHERE a=14634; UPDATE t2 SET b=13041 WHERE a=14635; UPDATE t2 SET b=25233 WHERE a=14636; UPDATE t2 SET b=92960 WHERE a=14637; UPDATE t2 SET b=83281 WHERE a=14638; UPDATE t2 SET b=96296 WHERE a=14639; UPDATE t2 SET b=54519 WHERE a=14640; UPDATE t2 SET b=21874 WHERE a=14641; UPDATE t2 SET b=32198 WHERE a=14642; UPDATE t2 SET b=99870 WHERE a=14643; UPDATE t2 SET b=46649 WHERE a=14644; UPDATE t2 SET b=7289 WHERE a=14645; UPDATE t2 SET b=95286 WHERE a=14646; UPDATE t2 SET b=85494 WHERE a=14647; UPDATE t2 SET b=60846 WHERE a=14648; UPDATE t2 SET b=38715 WHERE a=14649; UPDATE t2 SET b=28869 WHERE a=14650; UPDATE t2 SET b=44986 WHERE a=14651; UPDATE t2 SET b=41890 WHERE a=14652; UPDATE t2 SET b=14998 WHERE a=14653; UPDATE t2 SET b=19758 WHERE a=14654; UPDATE t2 SET b=7262 WHERE a=14655; UPDATE t2 SET b=25977 WHERE a=14656; UPDATE t2 SET b=30137 WHERE a=14657; UPDATE t2 SET b=7393 WHERE a=14658; UPDATE t2 SET b=28570 WHERE a=14659; UPDATE t2 SET b=37521 WHERE a=14660; UPDATE t2 SET b=24192 WHERE a=14661; UPDATE t2 SET b=97800 WHERE a=14662; UPDATE t2 SET b=19968 WHERE a=14663; UPDATE t2 SET b=64388 WHERE a=14664; UPDATE t2 SET b=93455 WHERE a=14665; UPDATE t2 SET b=65625 WHERE a=14666; UPDATE t2 SET b=81483 WHERE a=14667; UPDATE t2 SET b=21402 WHERE a=14668; UPDATE t2 SET b=43271 WHERE a=14669; UPDATE t2 SET b=41937 WHERE a=14670; UPDATE t2 SET b=82877 WHERE a=14671; UPDATE t2 SET b=61898 WHERE a=14672; UPDATE t2 SET b=36020 WHERE a=14673; UPDATE t2 SET b=92206 WHERE a=14674; UPDATE t2 SET b=9113 WHERE a=14675; UPDATE t2 SET b=50978 WHERE a=14676; UPDATE t2 SET b=55026 WHERE a=14677; UPDATE t2 SET b=83435 WHERE a=14678; UPDATE t2 SET b=58827 WHERE a=14679; UPDATE t2 SET b=38828 WHERE a=14680; UPDATE t2 SET b=65211 WHERE a=14681; UPDATE t2 SET b=31169 WHERE a=14682; UPDATE t2 SET b=44578 WHERE a=14683; UPDATE t2 SET b=1752 WHERE a=14684; UPDATE t2 SET b=89068 WHERE a=14685; UPDATE t2 SET b=24274 WHERE a=14686; UPDATE t2 SET b=53867 WHERE a=14687; UPDATE t2 SET b=35734 WHERE a=14688; UPDATE t2 SET b=32173 WHERE a=14689; UPDATE t2 SET b=21779 WHERE a=14690; UPDATE t2 SET b=86816 WHERE a=14691; UPDATE t2 SET b=8736 WHERE a=14692; UPDATE t2 SET b=31925 WHERE a=14693; UPDATE t2 SET b=97833 WHERE a=14694; UPDATE t2 SET b=11515 WHERE a=14695; UPDATE t2 SET b=13506 WHERE a=14696; UPDATE t2 SET b=20977 WHERE a=14697; UPDATE t2 SET b=88113 WHERE a=14698; UPDATE t2 SET b=73866 WHERE a=14699; UPDATE t2 SET b=45342 WHERE a=14700; UPDATE t2 SET b=3239 WHERE a=14701; UPDATE t2 SET b=52580 WHERE a=14702; UPDATE t2 SET b=59158 WHERE a=14703; UPDATE t2 SET b=3833 WHERE a=14704; UPDATE t2 SET b=5429 WHERE a=14705; UPDATE t2 SET b=81174 WHERE a=14706; UPDATE t2 SET b=85146 WHERE a=14707; UPDATE t2 SET b=73513 WHERE a=14708; UPDATE t2 SET b=17784 WHERE a=14709; UPDATE t2 SET b=20144 WHERE a=14710; UPDATE t2 SET b=38997 WHERE a=14711; UPDATE t2 SET b=6490 WHERE a=14712; UPDATE t2 SET b=31094 WHERE a=14713; UPDATE t2 SET b=53040 WHERE a=14714; UPDATE t2 SET b=89454 WHERE a=14715; UPDATE t2 SET b=21091 WHERE a=14716; UPDATE t2 SET b=29581 WHERE a=14717; UPDATE t2 SET b=79466 WHERE a=14718; UPDATE t2 SET b=46795 WHERE a=14719; UPDATE t2 SET b=31146 WHERE a=14720; UPDATE t2 SET b=45618 WHERE a=14721; UPDATE t2 SET b=99437 WHERE a=14722; UPDATE t2 SET b=81953 WHERE a=14723; UPDATE t2 SET b=81506 WHERE a=14724; UPDATE t2 SET b=48971 WHERE a=14725; UPDATE t2 SET b=37357 WHERE a=14726; UPDATE t2 SET b=78938 WHERE a=14727; UPDATE t2 SET b=94383 WHERE a=14728; UPDATE t2 SET b=48266 WHERE a=14729; UPDATE t2 SET b=83592 WHERE a=14730; UPDATE t2 SET b=56963 WHERE a=14731; UPDATE t2 SET b=90321 WHERE a=14732; UPDATE t2 SET b=89070 WHERE a=14733; UPDATE t2 SET b=13434 WHERE a=14734; UPDATE t2 SET b=71464 WHERE a=14735; UPDATE t2 SET b=19477 WHERE a=14736; UPDATE t2 SET b=48051 WHERE a=14737; UPDATE t2 SET b=61544 WHERE a=14738; UPDATE t2 SET b=93623 WHERE a=14739; UPDATE t2 SET b=29085 WHERE a=14740; UPDATE t2 SET b=42048 WHERE a=14741; UPDATE t2 SET b=22525 WHERE a=14742; UPDATE t2 SET b=42531 WHERE a=14743; UPDATE t2 SET b=63295 WHERE a=14744; UPDATE t2 SET b=65336 WHERE a=14745; UPDATE t2 SET b=51461 WHERE a=14746; UPDATE t2 SET b=24674 WHERE a=14747; UPDATE t2 SET b=52325 WHERE a=14748; UPDATE t2 SET b=43516 WHERE a=14749; UPDATE t2 SET b=48211 WHERE a=14750; UPDATE t2 SET b=41537 WHERE a=14751; UPDATE t2 SET b=69387 WHERE a=14752; UPDATE t2 SET b=25202 WHERE a=14753; UPDATE t2 SET b=33579 WHERE a=14754; UPDATE t2 SET b=70422 WHERE a=14755; UPDATE t2 SET b=47343 WHERE a=14756; UPDATE t2 SET b=29225 WHERE a=14757; UPDATE t2 SET b=62601 WHERE a=14758; UPDATE t2 SET b=21237 WHERE a=14759; UPDATE t2 SET b=77939 WHERE a=14760; UPDATE t2 SET b=23447 WHERE a=14761; UPDATE t2 SET b=23681 WHERE a=14762; UPDATE t2 SET b=52908 WHERE a=14763; UPDATE t2 SET b=42762 WHERE a=14764; UPDATE t2 SET b=25874 WHERE a=14765; UPDATE t2 SET b=15712 WHERE a=14766; UPDATE t2 SET b=97548 WHERE a=14767; UPDATE t2 SET b=41464 WHERE a=14768; UPDATE t2 SET b=18040 WHERE a=14769; UPDATE t2 SET b=61768 WHERE a=14770; UPDATE t2 SET b=71190 WHERE a=14771; UPDATE t2 SET b=66677 WHERE a=14772; UPDATE t2 SET b=96564 WHERE a=14773; UPDATE t2 SET b=67940 WHERE a=14774; UPDATE t2 SET b=79348 WHERE a=14775; UPDATE t2 SET b=91729 WHERE a=14776; UPDATE t2 SET b=3280 WHERE a=14777; UPDATE t2 SET b=10721 WHERE a=14778; UPDATE t2 SET b=40499 WHERE a=14779; UPDATE t2 SET b=38797 WHERE a=14780; UPDATE t2 SET b=99037 WHERE a=14781; UPDATE t2 SET b=65191 WHERE a=14782; UPDATE t2 SET b=90751 WHERE a=14783; UPDATE t2 SET b=85053 WHERE a=14784; UPDATE t2 SET b=59339 WHERE a=14785; UPDATE t2 SET b=84513 WHERE a=14786; UPDATE t2 SET b=85365 WHERE a=14787; UPDATE t2 SET b=28244 WHERE a=14788; UPDATE t2 SET b=58873 WHERE a=14789; UPDATE t2 SET b=42358 WHERE a=14790; UPDATE t2 SET b=19458 WHERE a=14791; UPDATE t2 SET b=67232 WHERE a=14792; UPDATE t2 SET b=97187 WHERE a=14793; UPDATE t2 SET b=26253 WHERE a=14794; UPDATE t2 SET b=13792 WHERE a=14795; UPDATE t2 SET b=59944 WHERE a=14796; UPDATE t2 SET b=36290 WHERE a=14797; UPDATE t2 SET b=62583 WHERE a=14798; UPDATE t2 SET b=12018 WHERE a=14799; UPDATE t2 SET b=98059 WHERE a=14800; UPDATE t2 SET b=46053 WHERE a=14801; UPDATE t2 SET b=7667 WHERE a=14802; UPDATE t2 SET b=65598 WHERE a=14803; UPDATE t2 SET b=55642 WHERE a=14804; UPDATE t2 SET b=37219 WHERE a=14805; UPDATE t2 SET b=41311 WHERE a=14806; UPDATE t2 SET b=93579 WHERE a=14807; UPDATE t2 SET b=14147 WHERE a=14808; UPDATE t2 SET b=11718 WHERE a=14809; UPDATE t2 SET b=66651 WHERE a=14810; UPDATE t2 SET b=35571 WHERE a=14811; UPDATE t2 SET b=46680 WHERE a=14812; UPDATE t2 SET b=17986 WHERE a=14813; UPDATE t2 SET b=16990 WHERE a=14814; UPDATE t2 SET b=83980 WHERE a=14815; UPDATE t2 SET b=58369 WHERE a=14816; UPDATE t2 SET b=78133 WHERE a=14817; UPDATE t2 SET b=44776 WHERE a=14818; UPDATE t2 SET b=87612 WHERE a=14819; UPDATE t2 SET b=97395 WHERE a=14820; UPDATE t2 SET b=94730 WHERE a=14821; UPDATE t2 SET b=2873 WHERE a=14822; UPDATE t2 SET b=92765 WHERE a=14823; UPDATE t2 SET b=41025 WHERE a=14824; UPDATE t2 SET b=30249 WHERE a=14825; UPDATE t2 SET b=78008 WHERE a=14826; UPDATE t2 SET b=36258 WHERE a=14827; UPDATE t2 SET b=42859 WHERE a=14828; UPDATE t2 SET b=51262 WHERE a=14829; UPDATE t2 SET b=10751 WHERE a=14830; UPDATE t2 SET b=70144 WHERE a=14831; UPDATE t2 SET b=94857 WHERE a=14832; UPDATE t2 SET b=84367 WHERE a=14833; UPDATE t2 SET b=76530 WHERE a=14834; UPDATE t2 SET b=28352 WHERE a=14835; UPDATE t2 SET b=91018 WHERE a=14836; UPDATE t2 SET b=8884 WHERE a=14837; UPDATE t2 SET b=35564 WHERE a=14838; UPDATE t2 SET b=28175 WHERE a=14839; UPDATE t2 SET b=843 WHERE a=14840; UPDATE t2 SET b=65740 WHERE a=14841; UPDATE t2 SET b=51156 WHERE a=14842; UPDATE t2 SET b=7538 WHERE a=14843; UPDATE t2 SET b=41480 WHERE a=14844; UPDATE t2 SET b=83865 WHERE a=14845; UPDATE t2 SET b=98469 WHERE a=14846; UPDATE t2 SET b=95586 WHERE a=14847; UPDATE t2 SET b=87574 WHERE a=14848; UPDATE t2 SET b=94284 WHERE a=14849; UPDATE t2 SET b=111 WHERE a=14850; UPDATE t2 SET b=24343 WHERE a=14851; UPDATE t2 SET b=14031 WHERE a=14852; UPDATE t2 SET b=67251 WHERE a=14853; UPDATE t2 SET b=47508 WHERE a=14854; UPDATE t2 SET b=84091 WHERE a=14855; UPDATE t2 SET b=81358 WHERE a=14856; UPDATE t2 SET b=35364 WHERE a=14857; UPDATE t2 SET b=10200 WHERE a=14858; UPDATE t2 SET b=58092 WHERE a=14859; UPDATE t2 SET b=41625 WHERE a=14860; UPDATE t2 SET b=70950 WHERE a=14861; UPDATE t2 SET b=14918 WHERE a=14862; UPDATE t2 SET b=54678 WHERE a=14863; UPDATE t2 SET b=84874 WHERE a=14864; UPDATE t2 SET b=43755 WHERE a=14865; UPDATE t2 SET b=63961 WHERE a=14866; UPDATE t2 SET b=46153 WHERE a=14867; UPDATE t2 SET b=30071 WHERE a=14868; UPDATE t2 SET b=67457 WHERE a=14869; UPDATE t2 SET b=90491 WHERE a=14870; UPDATE t2 SET b=93577 WHERE a=14871; UPDATE t2 SET b=13679 WHERE a=14872; UPDATE t2 SET b=61067 WHERE a=14873; UPDATE t2 SET b=83486 WHERE a=14874; UPDATE t2 SET b=34782 WHERE a=14875; UPDATE t2 SET b=8578 WHERE a=14876; UPDATE t2 SET b=57409 WHERE a=14877; UPDATE t2 SET b=37627 WHERE a=14878; UPDATE t2 SET b=60196 WHERE a=14879; UPDATE t2 SET b=16920 WHERE a=14880; UPDATE t2 SET b=55658 WHERE a=14881; UPDATE t2 SET b=32286 WHERE a=14882; UPDATE t2 SET b=51482 WHERE a=14883; UPDATE t2 SET b=29842 WHERE a=14884; UPDATE t2 SET b=28454 WHERE a=14885; UPDATE t2 SET b=83440 WHERE a=14886; UPDATE t2 SET b=19448 WHERE a=14887; UPDATE t2 SET b=1516 WHERE a=14888; UPDATE t2 SET b=77745 WHERE a=14889; UPDATE t2 SET b=51207 WHERE a=14890; UPDATE t2 SET b=2764 WHERE a=14891; UPDATE t2 SET b=45620 WHERE a=14892; UPDATE t2 SET b=59915 WHERE a=14893; UPDATE t2 SET b=81770 WHERE a=14894; UPDATE t2 SET b=34749 WHERE a=14895; UPDATE t2 SET b=1808 WHERE a=14896; UPDATE t2 SET b=40232 WHERE a=14897; UPDATE t2 SET b=61521 WHERE a=14898; UPDATE t2 SET b=23543 WHERE a=14899; UPDATE t2 SET b=4556 WHERE a=14900; UPDATE t2 SET b=38630 WHERE a=14901; UPDATE t2 SET b=47727 WHERE a=14902; UPDATE t2 SET b=17913 WHERE a=14903; UPDATE t2 SET b=99428 WHERE a=14904; UPDATE t2 SET b=1105 WHERE a=14905; UPDATE t2 SET b=28395 WHERE a=14906; UPDATE t2 SET b=36348 WHERE a=14907; UPDATE t2 SET b=16057 WHERE a=14908; UPDATE t2 SET b=43912 WHERE a=14909; UPDATE t2 SET b=89428 WHERE a=14910; UPDATE t2 SET b=61543 WHERE a=14911; UPDATE t2 SET b=64863 WHERE a=14912; UPDATE t2 SET b=23043 WHERE a=14913; UPDATE t2 SET b=87103 WHERE a=14914; UPDATE t2 SET b=61236 WHERE a=14915; UPDATE t2 SET b=39204 WHERE a=14916; UPDATE t2 SET b=93010 WHERE a=14917; UPDATE t2 SET b=35435 WHERE a=14918; UPDATE t2 SET b=17864 WHERE a=14919; UPDATE t2 SET b=27143 WHERE a=14920; UPDATE t2 SET b=65643 WHERE a=14921; UPDATE t2 SET b=55305 WHERE a=14922; UPDATE t2 SET b=33668 WHERE a=14923; UPDATE t2 SET b=5368 WHERE a=14924; UPDATE t2 SET b=26225 WHERE a=14925; UPDATE t2 SET b=64271 WHERE a=14926; UPDATE t2 SET b=45686 WHERE a=14927; UPDATE t2 SET b=45627 WHERE a=14928; UPDATE t2 SET b=32657 WHERE a=14929; UPDATE t2 SET b=34815 WHERE a=14930; UPDATE t2 SET b=5202 WHERE a=14931; UPDATE t2 SET b=96965 WHERE a=14932; UPDATE t2 SET b=64540 WHERE a=14933; UPDATE t2 SET b=91037 WHERE a=14934; UPDATE t2 SET b=25215 WHERE a=14935; UPDATE t2 SET b=34101 WHERE a=14936; UPDATE t2 SET b=45969 WHERE a=14937; UPDATE t2 SET b=76159 WHERE a=14938; UPDATE t2 SET b=61106 WHERE a=14939; UPDATE t2 SET b=83572 WHERE a=14940; UPDATE t2 SET b=37491 WHERE a=14941; UPDATE t2 SET b=12681 WHERE a=14942; UPDATE t2 SET b=93530 WHERE a=14943; UPDATE t2 SET b=2914 WHERE a=14944; UPDATE t2 SET b=68005 WHERE a=14945; UPDATE t2 SET b=74001 WHERE a=14946; UPDATE t2 SET b=94222 WHERE a=14947; UPDATE t2 SET b=10908 WHERE a=14948; UPDATE t2 SET b=60720 WHERE a=14949; UPDATE t2 SET b=71612 WHERE a=14950; UPDATE t2 SET b=24657 WHERE a=14951; UPDATE t2 SET b=5176 WHERE a=14952; UPDATE t2 SET b=77699 WHERE a=14953; UPDATE t2 SET b=36685 WHERE a=14954; UPDATE t2 SET b=1649 WHERE a=14955; UPDATE t2 SET b=10336 WHERE a=14956; UPDATE t2 SET b=9216 WHERE a=14957; UPDATE t2 SET b=63985 WHERE a=14958; UPDATE t2 SET b=76937 WHERE a=14959; UPDATE t2 SET b=33886 WHERE a=14960; UPDATE t2 SET b=34729 WHERE a=14961; UPDATE t2 SET b=59372 WHERE a=14962; UPDATE t2 SET b=28247 WHERE a=14963; UPDATE t2 SET b=81257 WHERE a=14964; UPDATE t2 SET b=34924 WHERE a=14965; UPDATE t2 SET b=98711 WHERE a=14966; UPDATE t2 SET b=86157 WHERE a=14967; UPDATE t2 SET b=54183 WHERE a=14968; UPDATE t2 SET b=28117 WHERE a=14969; UPDATE t2 SET b=19514 WHERE a=14970; UPDATE t2 SET b=91775 WHERE a=14971; UPDATE t2 SET b=91684 WHERE a=14972; UPDATE t2 SET b=11719 WHERE a=14973; UPDATE t2 SET b=87803 WHERE a=14974; UPDATE t2 SET b=23343 WHERE a=14975; UPDATE t2 SET b=55783 WHERE a=14976; UPDATE t2 SET b=85722 WHERE a=14977; UPDATE t2 SET b=48191 WHERE a=14978; UPDATE t2 SET b=4638 WHERE a=14979; UPDATE t2 SET b=51584 WHERE a=14980; UPDATE t2 SET b=31509 WHERE a=14981; UPDATE t2 SET b=58007 WHERE a=14982; UPDATE t2 SET b=58222 WHERE a=14983; UPDATE t2 SET b=43324 WHERE a=14984; UPDATE t2 SET b=62955 WHERE a=14985; UPDATE t2 SET b=9124 WHERE a=14986; UPDATE t2 SET b=14755 WHERE a=14987; UPDATE t2 SET b=4463 WHERE a=14988; UPDATE t2 SET b=12267 WHERE a=14989; UPDATE t2 SET b=7341 WHERE a=14990; UPDATE t2 SET b=58459 WHERE a=14991; UPDATE t2 SET b=99649 WHERE a=14992; UPDATE t2 SET b=88595 WHERE a=14993; UPDATE t2 SET b=66942 WHERE a=14994; UPDATE t2 SET b=89925 WHERE a=14995; UPDATE t2 SET b=8045 WHERE a=14996; UPDATE t2 SET b=77455 WHERE a=14997; UPDATE t2 SET b=46241 WHERE a=14998; UPDATE t2 SET b=64519 WHERE a=14999; UPDATE t2 SET b=61046 WHERE a=15000; UPDATE t2 SET b=8768 WHERE a=15001; UPDATE t2 SET b=87918 WHERE a=15002; UPDATE t2 SET b=65342 WHERE a=15003; UPDATE t2 SET b=36851 WHERE a=15004; UPDATE t2 SET b=56983 WHERE a=15005; UPDATE t2 SET b=94040 WHERE a=15006; UPDATE t2 SET b=7014 WHERE a=15007; UPDATE t2 SET b=85923 WHERE a=15008; UPDATE t2 SET b=32003 WHERE a=15009; UPDATE t2 SET b=67884 WHERE a=15010; UPDATE t2 SET b=45136 WHERE a=15011; UPDATE t2 SET b=11257 WHERE a=15012; UPDATE t2 SET b=92689 WHERE a=15013; UPDATE t2 SET b=30082 WHERE a=15014; UPDATE t2 SET b=86713 WHERE a=15015; UPDATE t2 SET b=61075 WHERE a=15016; UPDATE t2 SET b=19824 WHERE a=15017; UPDATE t2 SET b=45667 WHERE a=15018; UPDATE t2 SET b=20930 WHERE a=15019; UPDATE t2 SET b=6307 WHERE a=15020; UPDATE t2 SET b=8655 WHERE a=15021; UPDATE t2 SET b=40627 WHERE a=15022; UPDATE t2 SET b=79358 WHERE a=15023; UPDATE t2 SET b=96749 WHERE a=15024; UPDATE t2 SET b=32495 WHERE a=15025; UPDATE t2 SET b=25053 WHERE a=15026; UPDATE t2 SET b=53060 WHERE a=15027; UPDATE t2 SET b=64193 WHERE a=15028; UPDATE t2 SET b=48964 WHERE a=15029; UPDATE t2 SET b=60720 WHERE a=15030; UPDATE t2 SET b=59976 WHERE a=15031; UPDATE t2 SET b=32238 WHERE a=15032; UPDATE t2 SET b=62913 WHERE a=15033; UPDATE t2 SET b=90220 WHERE a=15034; UPDATE t2 SET b=62192 WHERE a=15035; UPDATE t2 SET b=40789 WHERE a=15036; UPDATE t2 SET b=34893 WHERE a=15037; UPDATE t2 SET b=47817 WHERE a=15038; UPDATE t2 SET b=51203 WHERE a=15039; UPDATE t2 SET b=17985 WHERE a=15040; UPDATE t2 SET b=83096 WHERE a=15041; UPDATE t2 SET b=43298 WHERE a=15042; UPDATE t2 SET b=43777 WHERE a=15043; UPDATE t2 SET b=59415 WHERE a=15044; UPDATE t2 SET b=34374 WHERE a=15045; UPDATE t2 SET b=59036 WHERE a=15046; UPDATE t2 SET b=42367 WHERE a=15047; UPDATE t2 SET b=61341 WHERE a=15048; UPDATE t2 SET b=86494 WHERE a=15049; UPDATE t2 SET b=88145 WHERE a=15050; UPDATE t2 SET b=65246 WHERE a=15051; UPDATE t2 SET b=58004 WHERE a=15052; UPDATE t2 SET b=49724 WHERE a=15053; UPDATE t2 SET b=1412 WHERE a=15054; UPDATE t2 SET b=96087 WHERE a=15055; UPDATE t2 SET b=63235 WHERE a=15056; UPDATE t2 SET b=50599 WHERE a=15057; UPDATE t2 SET b=61411 WHERE a=15058; UPDATE t2 SET b=12734 WHERE a=15059; UPDATE t2 SET b=92362 WHERE a=15060; UPDATE t2 SET b=58436 WHERE a=15061; UPDATE t2 SET b=10762 WHERE a=15062; UPDATE t2 SET b=28881 WHERE a=15063; UPDATE t2 SET b=76481 WHERE a=15064; UPDATE t2 SET b=25190 WHERE a=15065; UPDATE t2 SET b=79827 WHERE a=15066; UPDATE t2 SET b=98286 WHERE a=15067; UPDATE t2 SET b=19077 WHERE a=15068; UPDATE t2 SET b=18484 WHERE a=15069; UPDATE t2 SET b=11019 WHERE a=15070; UPDATE t2 SET b=27703 WHERE a=15071; UPDATE t2 SET b=79664 WHERE a=15072; UPDATE t2 SET b=59104 WHERE a=15073; UPDATE t2 SET b=83803 WHERE a=15074; UPDATE t2 SET b=53668 WHERE a=15075; UPDATE t2 SET b=8410 WHERE a=15076; UPDATE t2 SET b=87791 WHERE a=15077; UPDATE t2 SET b=25752 WHERE a=15078; UPDATE t2 SET b=59933 WHERE a=15079; UPDATE t2 SET b=52096 WHERE a=15080; UPDATE t2 SET b=6395 WHERE a=15081; UPDATE t2 SET b=59149 WHERE a=15082; UPDATE t2 SET b=59298 WHERE a=15083; UPDATE t2 SET b=19181 WHERE a=15084; UPDATE t2 SET b=37294 WHERE a=15085; UPDATE t2 SET b=51990 WHERE a=15086; UPDATE t2 SET b=15279 WHERE a=15087; UPDATE t2 SET b=85464 WHERE a=15088; UPDATE t2 SET b=75700 WHERE a=15089; UPDATE t2 SET b=54584 WHERE a=15090; UPDATE t2 SET b=76553 WHERE a=15091; UPDATE t2 SET b=62325 WHERE a=15092; UPDATE t2 SET b=42645 WHERE a=15093; UPDATE t2 SET b=48380 WHERE a=15094; UPDATE t2 SET b=90649 WHERE a=15095; UPDATE t2 SET b=92281 WHERE a=15096; UPDATE t2 SET b=99232 WHERE a=15097; UPDATE t2 SET b=6528 WHERE a=15098; UPDATE t2 SET b=46917 WHERE a=15099; UPDATE t2 SET b=95319 WHERE a=15100; UPDATE t2 SET b=65690 WHERE a=15101; UPDATE t2 SET b=76333 WHERE a=15102; UPDATE t2 SET b=30424 WHERE a=15103; UPDATE t2 SET b=45910 WHERE a=15104; UPDATE t2 SET b=52643 WHERE a=15105; UPDATE t2 SET b=25055 WHERE a=15106; UPDATE t2 SET b=60159 WHERE a=15107; UPDATE t2 SET b=24399 WHERE a=15108; UPDATE t2 SET b=67542 WHERE a=15109; UPDATE t2 SET b=80310 WHERE a=15110; UPDATE t2 SET b=31740 WHERE a=15111; UPDATE t2 SET b=99510 WHERE a=15112; UPDATE t2 SET b=88970 WHERE a=15113; UPDATE t2 SET b=9475 WHERE a=15114; UPDATE t2 SET b=32546 WHERE a=15115; UPDATE t2 SET b=25173 WHERE a=15116; UPDATE t2 SET b=45340 WHERE a=15117; UPDATE t2 SET b=78010 WHERE a=15118; UPDATE t2 SET b=434 WHERE a=15119; UPDATE t2 SET b=44623 WHERE a=15120; UPDATE t2 SET b=97216 WHERE a=15121; UPDATE t2 SET b=82907 WHERE a=15122; UPDATE t2 SET b=29759 WHERE a=15123; UPDATE t2 SET b=14533 WHERE a=15124; UPDATE t2 SET b=7398 WHERE a=15125; UPDATE t2 SET b=76111 WHERE a=15126; UPDATE t2 SET b=19491 WHERE a=15127; UPDATE t2 SET b=81223 WHERE a=15128; UPDATE t2 SET b=28686 WHERE a=15129; UPDATE t2 SET b=33064 WHERE a=15130; UPDATE t2 SET b=38590 WHERE a=15131; UPDATE t2 SET b=95528 WHERE a=15132; UPDATE t2 SET b=88813 WHERE a=15133; UPDATE t2 SET b=34947 WHERE a=15134; UPDATE t2 SET b=98500 WHERE a=15135; UPDATE t2 SET b=80344 WHERE a=15136; UPDATE t2 SET b=46837 WHERE a=15137; UPDATE t2 SET b=58062 WHERE a=15138; UPDATE t2 SET b=65504 WHERE a=15139; UPDATE t2 SET b=39722 WHERE a=15140; UPDATE t2 SET b=94182 WHERE a=15141; UPDATE t2 SET b=62402 WHERE a=15142; UPDATE t2 SET b=71447 WHERE a=15143; UPDATE t2 SET b=53060 WHERE a=15144; UPDATE t2 SET b=19916 WHERE a=15145; UPDATE t2 SET b=57212 WHERE a=15146; UPDATE t2 SET b=14929 WHERE a=15147; UPDATE t2 SET b=63549 WHERE a=15148; UPDATE t2 SET b=30024 WHERE a=15149; UPDATE t2 SET b=71608 WHERE a=15150; UPDATE t2 SET b=38934 WHERE a=15151; UPDATE t2 SET b=76760 WHERE a=15152; UPDATE t2 SET b=91863 WHERE a=15153; UPDATE t2 SET b=88764 WHERE a=15154; UPDATE t2 SET b=69440 WHERE a=15155; UPDATE t2 SET b=76123 WHERE a=15156; UPDATE t2 SET b=10505 WHERE a=15157; UPDATE t2 SET b=74231 WHERE a=15158; UPDATE t2 SET b=76043 WHERE a=15159; UPDATE t2 SET b=5522 WHERE a=15160; UPDATE t2 SET b=61488 WHERE a=15161; UPDATE t2 SET b=53468 WHERE a=15162; UPDATE t2 SET b=51809 WHERE a=15163; UPDATE t2 SET b=45081 WHERE a=15164; UPDATE t2 SET b=75868 WHERE a=15165; UPDATE t2 SET b=36251 WHERE a=15166; UPDATE t2 SET b=82221 WHERE a=15167; UPDATE t2 SET b=45004 WHERE a=15168; UPDATE t2 SET b=1775 WHERE a=15169; UPDATE t2 SET b=87063 WHERE a=15170; UPDATE t2 SET b=60342 WHERE a=15171; UPDATE t2 SET b=88968 WHERE a=15172; UPDATE t2 SET b=75302 WHERE a=15173; UPDATE t2 SET b=42553 WHERE a=15174; UPDATE t2 SET b=79374 WHERE a=15175; UPDATE t2 SET b=47695 WHERE a=15176; UPDATE t2 SET b=61654 WHERE a=15177; UPDATE t2 SET b=61920 WHERE a=15178; UPDATE t2 SET b=96925 WHERE a=15179; UPDATE t2 SET b=39645 WHERE a=15180; UPDATE t2 SET b=16471 WHERE a=15181; UPDATE t2 SET b=61966 WHERE a=15182; UPDATE t2 SET b=42295 WHERE a=15183; UPDATE t2 SET b=25718 WHERE a=15184; UPDATE t2 SET b=43979 WHERE a=15185; UPDATE t2 SET b=30468 WHERE a=15186; UPDATE t2 SET b=62951 WHERE a=15187; UPDATE t2 SET b=31055 WHERE a=15188; UPDATE t2 SET b=11858 WHERE a=15189; UPDATE t2 SET b=55811 WHERE a=15190; UPDATE t2 SET b=44686 WHERE a=15191; UPDATE t2 SET b=92245 WHERE a=15192; UPDATE t2 SET b=53709 WHERE a=15193; UPDATE t2 SET b=28318 WHERE a=15194; UPDATE t2 SET b=62801 WHERE a=15195; UPDATE t2 SET b=41993 WHERE a=15196; UPDATE t2 SET b=83796 WHERE a=15197; UPDATE t2 SET b=13452 WHERE a=15198; UPDATE t2 SET b=56388 WHERE a=15199; UPDATE t2 SET b=12807 WHERE a=15200; UPDATE t2 SET b=62495 WHERE a=15201; UPDATE t2 SET b=36960 WHERE a=15202; UPDATE t2 SET b=43840 WHERE a=15203; UPDATE t2 SET b=6220 WHERE a=15204; UPDATE t2 SET b=14508 WHERE a=15205; UPDATE t2 SET b=54426 WHERE a=15206; UPDATE t2 SET b=83209 WHERE a=15207; UPDATE t2 SET b=24908 WHERE a=15208; UPDATE t2 SET b=31272 WHERE a=15209; UPDATE t2 SET b=89009 WHERE a=15210; UPDATE t2 SET b=57689 WHERE a=15211; UPDATE t2 SET b=67321 WHERE a=15212; UPDATE t2 SET b=50123 WHERE a=15213; UPDATE t2 SET b=42371 WHERE a=15214; UPDATE t2 SET b=71130 WHERE a=15215; UPDATE t2 SET b=73565 WHERE a=15216; UPDATE t2 SET b=21814 WHERE a=15217; UPDATE t2 SET b=91996 WHERE a=15218; UPDATE t2 SET b=3953 WHERE a=15219; UPDATE t2 SET b=58968 WHERE a=15220; UPDATE t2 SET b=96122 WHERE a=15221; UPDATE t2 SET b=46229 WHERE a=15222; UPDATE t2 SET b=70850 WHERE a=15223; UPDATE t2 SET b=86393 WHERE a=15224; UPDATE t2 SET b=44049 WHERE a=15225; UPDATE t2 SET b=42860 WHERE a=15226; UPDATE t2 SET b=69307 WHERE a=15227; UPDATE t2 SET b=19840 WHERE a=15228; UPDATE t2 SET b=84587 WHERE a=15229; UPDATE t2 SET b=73696 WHERE a=15230; UPDATE t2 SET b=86081 WHERE a=15231; UPDATE t2 SET b=14851 WHERE a=15232; UPDATE t2 SET b=10961 WHERE a=15233; UPDATE t2 SET b=72235 WHERE a=15234; UPDATE t2 SET b=86554 WHERE a=15235; UPDATE t2 SET b=43521 WHERE a=15236; UPDATE t2 SET b=74865 WHERE a=15237; UPDATE t2 SET b=46689 WHERE a=15238; UPDATE t2 SET b=56996 WHERE a=15239; UPDATE t2 SET b=86398 WHERE a=15240; UPDATE t2 SET b=6189 WHERE a=15241; UPDATE t2 SET b=45280 WHERE a=15242; UPDATE t2 SET b=23497 WHERE a=15243; UPDATE t2 SET b=43872 WHERE a=15244; UPDATE t2 SET b=92052 WHERE a=15245; UPDATE t2 SET b=89841 WHERE a=15246; UPDATE t2 SET b=8734 WHERE a=15247; UPDATE t2 SET b=40376 WHERE a=15248; UPDATE t2 SET b=54137 WHERE a=15249; UPDATE t2 SET b=48829 WHERE a=15250; UPDATE t2 SET b=21293 WHERE a=15251; UPDATE t2 SET b=47634 WHERE a=15252; UPDATE t2 SET b=31420 WHERE a=15253; UPDATE t2 SET b=56525 WHERE a=15254; UPDATE t2 SET b=97985 WHERE a=15255; UPDATE t2 SET b=20031 WHERE a=15256; UPDATE t2 SET b=30821 WHERE a=15257; UPDATE t2 SET b=40329 WHERE a=15258; UPDATE t2 SET b=82984 WHERE a=15259; UPDATE t2 SET b=20528 WHERE a=15260; UPDATE t2 SET b=77714 WHERE a=15261; UPDATE t2 SET b=77903 WHERE a=15262; UPDATE t2 SET b=39214 WHERE a=15263; UPDATE t2 SET b=90045 WHERE a=15264; UPDATE t2 SET b=65660 WHERE a=15265; UPDATE t2 SET b=2205 WHERE a=15266; UPDATE t2 SET b=13037 WHERE a=15267; UPDATE t2 SET b=7764 WHERE a=15268; UPDATE t2 SET b=37553 WHERE a=15269; UPDATE t2 SET b=41592 WHERE a=15270; UPDATE t2 SET b=78178 WHERE a=15271; UPDATE t2 SET b=77559 WHERE a=15272; UPDATE t2 SET b=19772 WHERE a=15273; UPDATE t2 SET b=80362 WHERE a=15274; UPDATE t2 SET b=79437 WHERE a=15275; UPDATE t2 SET b=74302 WHERE a=15276; UPDATE t2 SET b=48292 WHERE a=15277; UPDATE t2 SET b=88624 WHERE a=15278; UPDATE t2 SET b=66471 WHERE a=15279; UPDATE t2 SET b=14237 WHERE a=15280; UPDATE t2 SET b=86627 WHERE a=15281; UPDATE t2 SET b=35224 WHERE a=15282; UPDATE t2 SET b=7245 WHERE a=15283; UPDATE t2 SET b=18816 WHERE a=15284; UPDATE t2 SET b=84341 WHERE a=15285; UPDATE t2 SET b=5781 WHERE a=15286; UPDATE t2 SET b=47646 WHERE a=15287; UPDATE t2 SET b=44586 WHERE a=15288; UPDATE t2 SET b=99912 WHERE a=15289; UPDATE t2 SET b=10518 WHERE a=15290; UPDATE t2 SET b=8539 WHERE a=15291; UPDATE t2 SET b=64834 WHERE a=15292; UPDATE t2 SET b=14442 WHERE a=15293; UPDATE t2 SET b=67919 WHERE a=15294; UPDATE t2 SET b=36419 WHERE a=15295; UPDATE t2 SET b=45183 WHERE a=15296; UPDATE t2 SET b=72096 WHERE a=15297; UPDATE t2 SET b=11788 WHERE a=15298; UPDATE t2 SET b=14070 WHERE a=15299; UPDATE t2 SET b=28084 WHERE a=15300; UPDATE t2 SET b=55174 WHERE a=15301; UPDATE t2 SET b=45569 WHERE a=15302; UPDATE t2 SET b=73550 WHERE a=15303; UPDATE t2 SET b=30929 WHERE a=15304; UPDATE t2 SET b=9740 WHERE a=15305; UPDATE t2 SET b=13843 WHERE a=15306; UPDATE t2 SET b=77490 WHERE a=15307; UPDATE t2 SET b=92280 WHERE a=15308; UPDATE t2 SET b=15272 WHERE a=15309; UPDATE t2 SET b=70913 WHERE a=15310; UPDATE t2 SET b=47440 WHERE a=15311; UPDATE t2 SET b=37358 WHERE a=15312; UPDATE t2 SET b=89136 WHERE a=15313; UPDATE t2 SET b=39367 WHERE a=15314; UPDATE t2 SET b=83152 WHERE a=15315; UPDATE t2 SET b=58220 WHERE a=15316; UPDATE t2 SET b=22675 WHERE a=15317; UPDATE t2 SET b=32771 WHERE a=15318; UPDATE t2 SET b=81756 WHERE a=15319; UPDATE t2 SET b=84459 WHERE a=15320; UPDATE t2 SET b=96940 WHERE a=15321; UPDATE t2 SET b=72370 WHERE a=15322; UPDATE t2 SET b=89578 WHERE a=15323; UPDATE t2 SET b=48359 WHERE a=15324; UPDATE t2 SET b=34525 WHERE a=15325; UPDATE t2 SET b=73681 WHERE a=15326; UPDATE t2 SET b=44998 WHERE a=15327; UPDATE t2 SET b=71850 WHERE a=15328; UPDATE t2 SET b=78933 WHERE a=15329; UPDATE t2 SET b=20234 WHERE a=15330; UPDATE t2 SET b=15863 WHERE a=15331; UPDATE t2 SET b=63592 WHERE a=15332; UPDATE t2 SET b=21911 WHERE a=15333; UPDATE t2 SET b=92801 WHERE a=15334; UPDATE t2 SET b=18598 WHERE a=15335; UPDATE t2 SET b=44293 WHERE a=15336; UPDATE t2 SET b=19025 WHERE a=15337; UPDATE t2 SET b=66328 WHERE a=15338; UPDATE t2 SET b=98461 WHERE a=15339; UPDATE t2 SET b=52392 WHERE a=15340; UPDATE t2 SET b=14940 WHERE a=15341; UPDATE t2 SET b=39744 WHERE a=15342; UPDATE t2 SET b=69933 WHERE a=15343; UPDATE t2 SET b=20869 WHERE a=15344; UPDATE t2 SET b=6356 WHERE a=15345; UPDATE t2 SET b=7153 WHERE a=15346; UPDATE t2 SET b=33533 WHERE a=15347; UPDATE t2 SET b=30021 WHERE a=15348; UPDATE t2 SET b=36389 WHERE a=15349; UPDATE t2 SET b=29882 WHERE a=15350; UPDATE t2 SET b=57029 WHERE a=15351; UPDATE t2 SET b=72839 WHERE a=15352; UPDATE t2 SET b=45314 WHERE a=15353; UPDATE t2 SET b=63736 WHERE a=15354; UPDATE t2 SET b=40359 WHERE a=15355; UPDATE t2 SET b=54491 WHERE a=15356; UPDATE t2 SET b=9048 WHERE a=15357; UPDATE t2 SET b=79164 WHERE a=15358; UPDATE t2 SET b=92515 WHERE a=15359; UPDATE t2 SET b=85265 WHERE a=15360; UPDATE t2 SET b=17656 WHERE a=15361; UPDATE t2 SET b=58379 WHERE a=15362; UPDATE t2 SET b=83179 WHERE a=15363; UPDATE t2 SET b=77087 WHERE a=15364; UPDATE t2 SET b=5725 WHERE a=15365; UPDATE t2 SET b=10830 WHERE a=15366; UPDATE t2 SET b=38036 WHERE a=15367; UPDATE t2 SET b=88730 WHERE a=15368; UPDATE t2 SET b=60719 WHERE a=15369; UPDATE t2 SET b=69238 WHERE a=15370; UPDATE t2 SET b=62492 WHERE a=15371; UPDATE t2 SET b=7641 WHERE a=15372; UPDATE t2 SET b=50380 WHERE a=15373; UPDATE t2 SET b=29816 WHERE a=15374; UPDATE t2 SET b=16860 WHERE a=15375; UPDATE t2 SET b=41634 WHERE a=15376; UPDATE t2 SET b=48098 WHERE a=15377; UPDATE t2 SET b=62295 WHERE a=15378; UPDATE t2 SET b=1617 WHERE a=15379; UPDATE t2 SET b=65085 WHERE a=15380; UPDATE t2 SET b=91773 WHERE a=15381; UPDATE t2 SET b=79303 WHERE a=15382; UPDATE t2 SET b=9355 WHERE a=15383; UPDATE t2 SET b=29025 WHERE a=15384; UPDATE t2 SET b=40362 WHERE a=15385; UPDATE t2 SET b=73255 WHERE a=15386; UPDATE t2 SET b=2858 WHERE a=15387; UPDATE t2 SET b=51817 WHERE a=15388; UPDATE t2 SET b=10186 WHERE a=15389; UPDATE t2 SET b=54069 WHERE a=15390; UPDATE t2 SET b=55617 WHERE a=15391; UPDATE t2 SET b=15096 WHERE a=15392; UPDATE t2 SET b=83598 WHERE a=15393; UPDATE t2 SET b=85195 WHERE a=15394; UPDATE t2 SET b=49903 WHERE a=15395; UPDATE t2 SET b=81861 WHERE a=15396; UPDATE t2 SET b=4493 WHERE a=15397; UPDATE t2 SET b=27178 WHERE a=15398; UPDATE t2 SET b=63806 WHERE a=15399; UPDATE t2 SET b=68271 WHERE a=15400; UPDATE t2 SET b=83320 WHERE a=15401; UPDATE t2 SET b=32151 WHERE a=15402; UPDATE t2 SET b=99158 WHERE a=15403; UPDATE t2 SET b=77581 WHERE a=15404; UPDATE t2 SET b=97914 WHERE a=15405; UPDATE t2 SET b=13870 WHERE a=15406; UPDATE t2 SET b=6493 WHERE a=15407; UPDATE t2 SET b=54538 WHERE a=15408; UPDATE t2 SET b=98795 WHERE a=15409; UPDATE t2 SET b=57214 WHERE a=15410; UPDATE t2 SET b=9333 WHERE a=15411; UPDATE t2 SET b=5410 WHERE a=15412; UPDATE t2 SET b=36672 WHERE a=15413; UPDATE t2 SET b=8321 WHERE a=15414; UPDATE t2 SET b=46096 WHERE a=15415; UPDATE t2 SET b=71256 WHERE a=15416; UPDATE t2 SET b=47623 WHERE a=15417; UPDATE t2 SET b=84535 WHERE a=15418; UPDATE t2 SET b=84242 WHERE a=15419; UPDATE t2 SET b=70297 WHERE a=15420; UPDATE t2 SET b=566 WHERE a=15421; UPDATE t2 SET b=29539 WHERE a=15422; UPDATE t2 SET b=4930 WHERE a=15423; UPDATE t2 SET b=27373 WHERE a=15424; UPDATE t2 SET b=73871 WHERE a=15425; UPDATE t2 SET b=61570 WHERE a=15426; UPDATE t2 SET b=83017 WHERE a=15427; UPDATE t2 SET b=89689 WHERE a=15428; UPDATE t2 SET b=93393 WHERE a=15429; UPDATE t2 SET b=68196 WHERE a=15430; UPDATE t2 SET b=78145 WHERE a=15431; UPDATE t2 SET b=18049 WHERE a=15432; UPDATE t2 SET b=30863 WHERE a=15433; UPDATE t2 SET b=76603 WHERE a=15434; UPDATE t2 SET b=90482 WHERE a=15435; UPDATE t2 SET b=4936 WHERE a=15436; UPDATE t2 SET b=20710 WHERE a=15437; UPDATE t2 SET b=90588 WHERE a=15438; UPDATE t2 SET b=4269 WHERE a=15439; UPDATE t2 SET b=29900 WHERE a=15440; UPDATE t2 SET b=55621 WHERE a=15441; UPDATE t2 SET b=88414 WHERE a=15442; UPDATE t2 SET b=38312 WHERE a=15443; UPDATE t2 SET b=93479 WHERE a=15444; UPDATE t2 SET b=92898 WHERE a=15445; UPDATE t2 SET b=82386 WHERE a=15446; UPDATE t2 SET b=63225 WHERE a=15447; UPDATE t2 SET b=31808 WHERE a=15448; UPDATE t2 SET b=41449 WHERE a=15449; UPDATE t2 SET b=81135 WHERE a=15450; UPDATE t2 SET b=60525 WHERE a=15451; UPDATE t2 SET b=66 WHERE a=15452; UPDATE t2 SET b=44670 WHERE a=15453; UPDATE t2 SET b=2015 WHERE a=15454; UPDATE t2 SET b=28474 WHERE a=15455; UPDATE t2 SET b=32008 WHERE a=15456; UPDATE t2 SET b=64566 WHERE a=15457; UPDATE t2 SET b=48388 WHERE a=15458; UPDATE t2 SET b=37760 WHERE a=15459; UPDATE t2 SET b=52844 WHERE a=15460; UPDATE t2 SET b=5483 WHERE a=15461; UPDATE t2 SET b=27452 WHERE a=15462; UPDATE t2 SET b=75623 WHERE a=15463; UPDATE t2 SET b=5117 WHERE a=15464; UPDATE t2 SET b=66987 WHERE a=15465; UPDATE t2 SET b=68497 WHERE a=15466; UPDATE t2 SET b=53500 WHERE a=15467; UPDATE t2 SET b=96221 WHERE a=15468; UPDATE t2 SET b=37555 WHERE a=15469; UPDATE t2 SET b=34149 WHERE a=15470; UPDATE t2 SET b=56925 WHERE a=15471; UPDATE t2 SET b=49421 WHERE a=15472; UPDATE t2 SET b=12963 WHERE a=15473; UPDATE t2 SET b=46047 WHERE a=15474; UPDATE t2 SET b=73708 WHERE a=15475; UPDATE t2 SET b=59540 WHERE a=15476; UPDATE t2 SET b=87119 WHERE a=15477; UPDATE t2 SET b=4170 WHERE a=15478; UPDATE t2 SET b=16266 WHERE a=15479; UPDATE t2 SET b=42721 WHERE a=15480; UPDATE t2 SET b=10485 WHERE a=15481; UPDATE t2 SET b=97959 WHERE a=15482; UPDATE t2 SET b=87359 WHERE a=15483; UPDATE t2 SET b=55159 WHERE a=15484; UPDATE t2 SET b=31856 WHERE a=15485; UPDATE t2 SET b=84932 WHERE a=15486; UPDATE t2 SET b=60839 WHERE a=15487; UPDATE t2 SET b=94417 WHERE a=15488; UPDATE t2 SET b=83508 WHERE a=15489; UPDATE t2 SET b=76186 WHERE a=15490; UPDATE t2 SET b=23457 WHERE a=15491; UPDATE t2 SET b=59983 WHERE a=15492; UPDATE t2 SET b=37420 WHERE a=15493; UPDATE t2 SET b=66058 WHERE a=15494; UPDATE t2 SET b=43813 WHERE a=15495; UPDATE t2 SET b=27446 WHERE a=15496; UPDATE t2 SET b=57324 WHERE a=15497; UPDATE t2 SET b=68495 WHERE a=15498; UPDATE t2 SET b=74567 WHERE a=15499; UPDATE t2 SET b=64371 WHERE a=15500; UPDATE t2 SET b=32754 WHERE a=15501; UPDATE t2 SET b=12166 WHERE a=15502; UPDATE t2 SET b=66074 WHERE a=15503; UPDATE t2 SET b=71421 WHERE a=15504; UPDATE t2 SET b=91130 WHERE a=15505; UPDATE t2 SET b=37665 WHERE a=15506; UPDATE t2 SET b=5772 WHERE a=15507; UPDATE t2 SET b=32019 WHERE a=15508; UPDATE t2 SET b=21049 WHERE a=15509; UPDATE t2 SET b=23299 WHERE a=15510; UPDATE t2 SET b=32573 WHERE a=15511; UPDATE t2 SET b=95111 WHERE a=15512; UPDATE t2 SET b=10909 WHERE a=15513; UPDATE t2 SET b=40535 WHERE a=15514; UPDATE t2 SET b=54341 WHERE a=15515; UPDATE t2 SET b=40348 WHERE a=15516; UPDATE t2 SET b=47839 WHERE a=15517; UPDATE t2 SET b=97017 WHERE a=15518; UPDATE t2 SET b=8878 WHERE a=15519; UPDATE t2 SET b=53143 WHERE a=15520; UPDATE t2 SET b=55524 WHERE a=15521; UPDATE t2 SET b=55644 WHERE a=15522; UPDATE t2 SET b=50131 WHERE a=15523; UPDATE t2 SET b=82893 WHERE a=15524; UPDATE t2 SET b=6589 WHERE a=15525; UPDATE t2 SET b=39444 WHERE a=15526; UPDATE t2 SET b=21817 WHERE a=15527; UPDATE t2 SET b=10978 WHERE a=15528; UPDATE t2 SET b=18133 WHERE a=15529; UPDATE t2 SET b=27248 WHERE a=15530; UPDATE t2 SET b=10518 WHERE a=15531; UPDATE t2 SET b=22550 WHERE a=15532; UPDATE t2 SET b=72849 WHERE a=15533; UPDATE t2 SET b=31256 WHERE a=15534; UPDATE t2 SET b=14536 WHERE a=15535; UPDATE t2 SET b=77911 WHERE a=15536; UPDATE t2 SET b=63485 WHERE a=15537; UPDATE t2 SET b=28182 WHERE a=15538; UPDATE t2 SET b=30231 WHERE a=15539; UPDATE t2 SET b=25016 WHERE a=15540; UPDATE t2 SET b=40452 WHERE a=15541; UPDATE t2 SET b=17669 WHERE a=15542; UPDATE t2 SET b=22568 WHERE a=15543; UPDATE t2 SET b=99889 WHERE a=15544; UPDATE t2 SET b=8403 WHERE a=15545; UPDATE t2 SET b=38365 WHERE a=15546; UPDATE t2 SET b=16040 WHERE a=15547; UPDATE t2 SET b=83108 WHERE a=15548; UPDATE t2 SET b=32468 WHERE a=15549; UPDATE t2 SET b=91164 WHERE a=15550; UPDATE t2 SET b=72909 WHERE a=15551; UPDATE t2 SET b=69887 WHERE a=15552; UPDATE t2 SET b=71304 WHERE a=15553; UPDATE t2 SET b=89904 WHERE a=15554; UPDATE t2 SET b=87392 WHERE a=15555; UPDATE t2 SET b=8245 WHERE a=15556; UPDATE t2 SET b=59706 WHERE a=15557; UPDATE t2 SET b=6628 WHERE a=15558; UPDATE t2 SET b=2041 WHERE a=15559; UPDATE t2 SET b=80690 WHERE a=15560; UPDATE t2 SET b=76888 WHERE a=15561; UPDATE t2 SET b=17141 WHERE a=15562; UPDATE t2 SET b=81278 WHERE a=15563; UPDATE t2 SET b=48403 WHERE a=15564; UPDATE t2 SET b=17872 WHERE a=15565; UPDATE t2 SET b=65465 WHERE a=15566; UPDATE t2 SET b=69432 WHERE a=15567; UPDATE t2 SET b=15369 WHERE a=15568; UPDATE t2 SET b=66729 WHERE a=15569; UPDATE t2 SET b=13633 WHERE a=15570; UPDATE t2 SET b=17575 WHERE a=15571; UPDATE t2 SET b=74469 WHERE a=15572; UPDATE t2 SET b=9969 WHERE a=15573; UPDATE t2 SET b=2271 WHERE a=15574; UPDATE t2 SET b=2738 WHERE a=15575; UPDATE t2 SET b=87570 WHERE a=15576; UPDATE t2 SET b=78640 WHERE a=15577; UPDATE t2 SET b=14909 WHERE a=15578; UPDATE t2 SET b=1139 WHERE a=15579; UPDATE t2 SET b=60178 WHERE a=15580; UPDATE t2 SET b=32178 WHERE a=15581; UPDATE t2 SET b=41515 WHERE a=15582; UPDATE t2 SET b=11922 WHERE a=15583; UPDATE t2 SET b=61989 WHERE a=15584; UPDATE t2 SET b=95145 WHERE a=15585; UPDATE t2 SET b=91355 WHERE a=15586; UPDATE t2 SET b=83248 WHERE a=15587; UPDATE t2 SET b=83315 WHERE a=15588; UPDATE t2 SET b=81414 WHERE a=15589; UPDATE t2 SET b=93564 WHERE a=15590; UPDATE t2 SET b=14764 WHERE a=15591; UPDATE t2 SET b=89575 WHERE a=15592; UPDATE t2 SET b=27776 WHERE a=15593; UPDATE t2 SET b=65565 WHERE a=15594; UPDATE t2 SET b=4500 WHERE a=15595; UPDATE t2 SET b=60335 WHERE a=15596; UPDATE t2 SET b=62931 WHERE a=15597; UPDATE t2 SET b=84178 WHERE a=15598; UPDATE t2 SET b=54088 WHERE a=15599; UPDATE t2 SET b=34642 WHERE a=15600; UPDATE t2 SET b=94690 WHERE a=15601; UPDATE t2 SET b=88900 WHERE a=15602; UPDATE t2 SET b=29467 WHERE a=15603; UPDATE t2 SET b=63966 WHERE a=15604; UPDATE t2 SET b=85871 WHERE a=15605; UPDATE t2 SET b=35421 WHERE a=15606; UPDATE t2 SET b=95889 WHERE a=15607; UPDATE t2 SET b=42029 WHERE a=15608; UPDATE t2 SET b=65896 WHERE a=15609; UPDATE t2 SET b=96603 WHERE a=15610; UPDATE t2 SET b=74136 WHERE a=15611; UPDATE t2 SET b=46184 WHERE a=15612; UPDATE t2 SET b=62233 WHERE a=15613; UPDATE t2 SET b=84820 WHERE a=15614; UPDATE t2 SET b=69162 WHERE a=15615; UPDATE t2 SET b=44189 WHERE a=15616; UPDATE t2 SET b=21762 WHERE a=15617; UPDATE t2 SET b=78127 WHERE a=15618; UPDATE t2 SET b=16761 WHERE a=15619; UPDATE t2 SET b=48081 WHERE a=15620; UPDATE t2 SET b=89197 WHERE a=15621; UPDATE t2 SET b=31087 WHERE a=15622; UPDATE t2 SET b=62537 WHERE a=15623; UPDATE t2 SET b=81816 WHERE a=15624; UPDATE t2 SET b=7479 WHERE a=15625; UPDATE t2 SET b=88771 WHERE a=15626; UPDATE t2 SET b=15302 WHERE a=15627; UPDATE t2 SET b=76177 WHERE a=15628; UPDATE t2 SET b=69570 WHERE a=15629; UPDATE t2 SET b=73672 WHERE a=15630; UPDATE t2 SET b=29133 WHERE a=15631; UPDATE t2 SET b=38315 WHERE a=15632; UPDATE t2 SET b=62124 WHERE a=15633; UPDATE t2 SET b=1995 WHERE a=15634; UPDATE t2 SET b=26604 WHERE a=15635; UPDATE t2 SET b=30724 WHERE a=15636; UPDATE t2 SET b=8517 WHERE a=15637; UPDATE t2 SET b=14143 WHERE a=15638; UPDATE t2 SET b=63189 WHERE a=15639; UPDATE t2 SET b=41092 WHERE a=15640; UPDATE t2 SET b=34714 WHERE a=15641; UPDATE t2 SET b=43557 WHERE a=15642; UPDATE t2 SET b=95460 WHERE a=15643; UPDATE t2 SET b=86160 WHERE a=15644; UPDATE t2 SET b=45170 WHERE a=15645; UPDATE t2 SET b=77130 WHERE a=15646; UPDATE t2 SET b=78901 WHERE a=15647; UPDATE t2 SET b=14597 WHERE a=15648; UPDATE t2 SET b=1708 WHERE a=15649; UPDATE t2 SET b=33485 WHERE a=15650; UPDATE t2 SET b=73734 WHERE a=15651; UPDATE t2 SET b=83506 WHERE a=15652; UPDATE t2 SET b=84705 WHERE a=15653; UPDATE t2 SET b=84479 WHERE a=15654; UPDATE t2 SET b=44452 WHERE a=15655; UPDATE t2 SET b=93267 WHERE a=15656; UPDATE t2 SET b=72545 WHERE a=15657; UPDATE t2 SET b=27744 WHERE a=15658; UPDATE t2 SET b=75297 WHERE a=15659; UPDATE t2 SET b=57622 WHERE a=15660; UPDATE t2 SET b=686 WHERE a=15661; UPDATE t2 SET b=62137 WHERE a=15662; UPDATE t2 SET b=46187 WHERE a=15663; UPDATE t2 SET b=96327 WHERE a=15664; UPDATE t2 SET b=21735 WHERE a=15665; UPDATE t2 SET b=51265 WHERE a=15666; UPDATE t2 SET b=172 WHERE a=15667; UPDATE t2 SET b=74860 WHERE a=15668; UPDATE t2 SET b=71051 WHERE a=15669; UPDATE t2 SET b=86523 WHERE a=15670; UPDATE t2 SET b=15353 WHERE a=15671; UPDATE t2 SET b=7339 WHERE a=15672; UPDATE t2 SET b=48954 WHERE a=15673; UPDATE t2 SET b=78734 WHERE a=15674; UPDATE t2 SET b=80930 WHERE a=15675; UPDATE t2 SET b=93435 WHERE a=15676; UPDATE t2 SET b=68553 WHERE a=15677; UPDATE t2 SET b=38265 WHERE a=15678; UPDATE t2 SET b=71944 WHERE a=15679; UPDATE t2 SET b=74811 WHERE a=15680; UPDATE t2 SET b=11750 WHERE a=15681; UPDATE t2 SET b=96346 WHERE a=15682; UPDATE t2 SET b=13361 WHERE a=15683; UPDATE t2 SET b=806 WHERE a=15684; UPDATE t2 SET b=31093 WHERE a=15685; UPDATE t2 SET b=68706 WHERE a=15686; UPDATE t2 SET b=32453 WHERE a=15687; UPDATE t2 SET b=64082 WHERE a=15688; UPDATE t2 SET b=44020 WHERE a=15689; UPDATE t2 SET b=18636 WHERE a=15690; UPDATE t2 SET b=75194 WHERE a=15691; UPDATE t2 SET b=25111 WHERE a=15692; UPDATE t2 SET b=60806 WHERE a=15693; UPDATE t2 SET b=49447 WHERE a=15694; UPDATE t2 SET b=33264 WHERE a=15695; UPDATE t2 SET b=3592 WHERE a=15696; UPDATE t2 SET b=22157 WHERE a=15697; UPDATE t2 SET b=15613 WHERE a=15698; UPDATE t2 SET b=50884 WHERE a=15699; UPDATE t2 SET b=72099 WHERE a=15700; UPDATE t2 SET b=80633 WHERE a=15701; UPDATE t2 SET b=50628 WHERE a=15702; UPDATE t2 SET b=29497 WHERE a=15703; UPDATE t2 SET b=61757 WHERE a=15704; UPDATE t2 SET b=74814 WHERE a=15705; UPDATE t2 SET b=78616 WHERE a=15706; UPDATE t2 SET b=29755 WHERE a=15707; UPDATE t2 SET b=5890 WHERE a=15708; UPDATE t2 SET b=25504 WHERE a=15709; UPDATE t2 SET b=92291 WHERE a=15710; UPDATE t2 SET b=73579 WHERE a=15711; UPDATE t2 SET b=8060 WHERE a=15712; UPDATE t2 SET b=71422 WHERE a=15713; UPDATE t2 SET b=2933 WHERE a=15714; UPDATE t2 SET b=12426 WHERE a=15715; UPDATE t2 SET b=30856 WHERE a=15716; UPDATE t2 SET b=8958 WHERE a=15717; UPDATE t2 SET b=80216 WHERE a=15718; UPDATE t2 SET b=90961 WHERE a=15719; UPDATE t2 SET b=43352 WHERE a=15720; UPDATE t2 SET b=81636 WHERE a=15721; UPDATE t2 SET b=66892 WHERE a=15722; UPDATE t2 SET b=22750 WHERE a=15723; UPDATE t2 SET b=4826 WHERE a=15724; UPDATE t2 SET b=16439 WHERE a=15725; UPDATE t2 SET b=57482 WHERE a=15726; UPDATE t2 SET b=49966 WHERE a=15727; UPDATE t2 SET b=50235 WHERE a=15728; UPDATE t2 SET b=25770 WHERE a=15729; UPDATE t2 SET b=88374 WHERE a=15730; UPDATE t2 SET b=42685 WHERE a=15731; UPDATE t2 SET b=70484 WHERE a=15732; UPDATE t2 SET b=29669 WHERE a=15733; UPDATE t2 SET b=57335 WHERE a=15734; UPDATE t2 SET b=79689 WHERE a=15735; UPDATE t2 SET b=40607 WHERE a=15736; UPDATE t2 SET b=16770 WHERE a=15737; UPDATE t2 SET b=754 WHERE a=15738; UPDATE t2 SET b=95600 WHERE a=15739; UPDATE t2 SET b=90019 WHERE a=15740; UPDATE t2 SET b=8618 WHERE a=15741; UPDATE t2 SET b=59194 WHERE a=15742; UPDATE t2 SET b=36778 WHERE a=15743; UPDATE t2 SET b=88080 WHERE a=15744; UPDATE t2 SET b=72668 WHERE a=15745; UPDATE t2 SET b=89784 WHERE a=15746; UPDATE t2 SET b=723 WHERE a=15747; UPDATE t2 SET b=59345 WHERE a=15748; UPDATE t2 SET b=98654 WHERE a=15749; UPDATE t2 SET b=29599 WHERE a=15750; UPDATE t2 SET b=11347 WHERE a=15751; UPDATE t2 SET b=88148 WHERE a=15752; UPDATE t2 SET b=7284 WHERE a=15753; UPDATE t2 SET b=7917 WHERE a=15754; UPDATE t2 SET b=67438 WHERE a=15755; UPDATE t2 SET b=76849 WHERE a=15756; UPDATE t2 SET b=60540 WHERE a=15757; UPDATE t2 SET b=62934 WHERE a=15758; UPDATE t2 SET b=60100 WHERE a=15759; UPDATE t2 SET b=79130 WHERE a=15760; UPDATE t2 SET b=66891 WHERE a=15761; UPDATE t2 SET b=1530 WHERE a=15762; UPDATE t2 SET b=27548 WHERE a=15763; UPDATE t2 SET b=59029 WHERE a=15764; UPDATE t2 SET b=40927 WHERE a=15765; UPDATE t2 SET b=86305 WHERE a=15766; UPDATE t2 SET b=18833 WHERE a=15767; UPDATE t2 SET b=26817 WHERE a=15768; UPDATE t2 SET b=3743 WHERE a=15769; UPDATE t2 SET b=99047 WHERE a=15770; UPDATE t2 SET b=26767 WHERE a=15771; UPDATE t2 SET b=23474 WHERE a=15772; UPDATE t2 SET b=9193 WHERE a=15773; UPDATE t2 SET b=42720 WHERE a=15774; UPDATE t2 SET b=40729 WHERE a=15775; UPDATE t2 SET b=80038 WHERE a=15776; UPDATE t2 SET b=25001 WHERE a=15777; UPDATE t2 SET b=33302 WHERE a=15778; UPDATE t2 SET b=8043 WHERE a=15779; UPDATE t2 SET b=95718 WHERE a=15780; UPDATE t2 SET b=36322 WHERE a=15781; UPDATE t2 SET b=14243 WHERE a=15782; UPDATE t2 SET b=4061 WHERE a=15783; UPDATE t2 SET b=8657 WHERE a=15784; UPDATE t2 SET b=75157 WHERE a=15785; UPDATE t2 SET b=42176 WHERE a=15786; UPDATE t2 SET b=1016 WHERE a=15787; UPDATE t2 SET b=45886 WHERE a=15788; UPDATE t2 SET b=17839 WHERE a=15789; UPDATE t2 SET b=1907 WHERE a=15790; UPDATE t2 SET b=91591 WHERE a=15791; UPDATE t2 SET b=6153 WHERE a=15792; UPDATE t2 SET b=6724 WHERE a=15793; UPDATE t2 SET b=12982 WHERE a=15794; UPDATE t2 SET b=76090 WHERE a=15795; UPDATE t2 SET b=41572 WHERE a=15796; UPDATE t2 SET b=68307 WHERE a=15797; UPDATE t2 SET b=45063 WHERE a=15798; UPDATE t2 SET b=11327 WHERE a=15799; UPDATE t2 SET b=63267 WHERE a=15800; UPDATE t2 SET b=72330 WHERE a=15801; UPDATE t2 SET b=22622 WHERE a=15802; UPDATE t2 SET b=92184 WHERE a=15803; UPDATE t2 SET b=85050 WHERE a=15804; UPDATE t2 SET b=67017 WHERE a=15805; UPDATE t2 SET b=51900 WHERE a=15806; UPDATE t2 SET b=42722 WHERE a=15807; UPDATE t2 SET b=76434 WHERE a=15808; UPDATE t2 SET b=47952 WHERE a=15809; UPDATE t2 SET b=43516 WHERE a=15810; UPDATE t2 SET b=92221 WHERE a=15811; UPDATE t2 SET b=54363 WHERE a=15812; UPDATE t2 SET b=67259 WHERE a=15813; UPDATE t2 SET b=7684 WHERE a=15814; UPDATE t2 SET b=132 WHERE a=15815; UPDATE t2 SET b=76685 WHERE a=15816; UPDATE t2 SET b=95029 WHERE a=15817; UPDATE t2 SET b=9480 WHERE a=15818; UPDATE t2 SET b=7099 WHERE a=15819; UPDATE t2 SET b=80507 WHERE a=15820; UPDATE t2 SET b=29888 WHERE a=15821; UPDATE t2 SET b=73003 WHERE a=15822; UPDATE t2 SET b=10293 WHERE a=15823; UPDATE t2 SET b=38307 WHERE a=15824; UPDATE t2 SET b=99080 WHERE a=15825; UPDATE t2 SET b=50209 WHERE a=15826; UPDATE t2 SET b=35353 WHERE a=15827; UPDATE t2 SET b=95499 WHERE a=15828; UPDATE t2 SET b=99720 WHERE a=15829; UPDATE t2 SET b=93184 WHERE a=15830; UPDATE t2 SET b=53874 WHERE a=15831; UPDATE t2 SET b=14713 WHERE a=15832; UPDATE t2 SET b=95271 WHERE a=15833; UPDATE t2 SET b=5497 WHERE a=15834; UPDATE t2 SET b=92886 WHERE a=15835; UPDATE t2 SET b=9478 WHERE a=15836; UPDATE t2 SET b=298 WHERE a=15837; UPDATE t2 SET b=59715 WHERE a=15838; UPDATE t2 SET b=83714 WHERE a=15839; UPDATE t2 SET b=64370 WHERE a=15840; UPDATE t2 SET b=63816 WHERE a=15841; UPDATE t2 SET b=25877 WHERE a=15842; UPDATE t2 SET b=69758 WHERE a=15843; UPDATE t2 SET b=7331 WHERE a=15844; UPDATE t2 SET b=98630 WHERE a=15845; UPDATE t2 SET b=38606 WHERE a=15846; UPDATE t2 SET b=23544 WHERE a=15847; UPDATE t2 SET b=13518 WHERE a=15848; UPDATE t2 SET b=78144 WHERE a=15849; UPDATE t2 SET b=18423 WHERE a=15850; UPDATE t2 SET b=89081 WHERE a=15851; UPDATE t2 SET b=82096 WHERE a=15852; UPDATE t2 SET b=74411 WHERE a=15853; UPDATE t2 SET b=29510 WHERE a=15854; UPDATE t2 SET b=98729 WHERE a=15855; UPDATE t2 SET b=28252 WHERE a=15856; UPDATE t2 SET b=32539 WHERE a=15857; UPDATE t2 SET b=43833 WHERE a=15858; UPDATE t2 SET b=70180 WHERE a=15859; UPDATE t2 SET b=57569 WHERE a=15860; UPDATE t2 SET b=6355 WHERE a=15861; UPDATE t2 SET b=77046 WHERE a=15862; UPDATE t2 SET b=23906 WHERE a=15863; UPDATE t2 SET b=53219 WHERE a=15864; UPDATE t2 SET b=18830 WHERE a=15865; UPDATE t2 SET b=51826 WHERE a=15866; UPDATE t2 SET b=76812 WHERE a=15867; UPDATE t2 SET b=35932 WHERE a=15868; UPDATE t2 SET b=61765 WHERE a=15869; UPDATE t2 SET b=95730 WHERE a=15870; UPDATE t2 SET b=76139 WHERE a=15871; UPDATE t2 SET b=84722 WHERE a=15872; UPDATE t2 SET b=2704 WHERE a=15873; UPDATE t2 SET b=16580 WHERE a=15874; UPDATE t2 SET b=54765 WHERE a=15875; UPDATE t2 SET b=45552 WHERE a=15876; UPDATE t2 SET b=82713 WHERE a=15877; UPDATE t2 SET b=33559 WHERE a=15878; UPDATE t2 SET b=68598 WHERE a=15879; UPDATE t2 SET b=46758 WHERE a=15880; UPDATE t2 SET b=57010 WHERE a=15881; UPDATE t2 SET b=20019 WHERE a=15882; UPDATE t2 SET b=13366 WHERE a=15883; UPDATE t2 SET b=51551 WHERE a=15884; UPDATE t2 SET b=72812 WHERE a=15885; UPDATE t2 SET b=50928 WHERE a=15886; UPDATE t2 SET b=97892 WHERE a=15887; UPDATE t2 SET b=31193 WHERE a=15888; UPDATE t2 SET b=56592 WHERE a=15889; UPDATE t2 SET b=22955 WHERE a=15890; UPDATE t2 SET b=23347 WHERE a=15891; UPDATE t2 SET b=27487 WHERE a=15892; UPDATE t2 SET b=30343 WHERE a=15893; UPDATE t2 SET b=34741 WHERE a=15894; UPDATE t2 SET b=68817 WHERE a=15895; UPDATE t2 SET b=59626 WHERE a=15896; UPDATE t2 SET b=56618 WHERE a=15897; UPDATE t2 SET b=70258 WHERE a=15898; UPDATE t2 SET b=73970 WHERE a=15899; UPDATE t2 SET b=57630 WHERE a=15900; UPDATE t2 SET b=44098 WHERE a=15901; UPDATE t2 SET b=33867 WHERE a=15902; UPDATE t2 SET b=54200 WHERE a=15903; UPDATE t2 SET b=44572 WHERE a=15904; UPDATE t2 SET b=99344 WHERE a=15905; UPDATE t2 SET b=78872 WHERE a=15906; UPDATE t2 SET b=65909 WHERE a=15907; UPDATE t2 SET b=21227 WHERE a=15908; UPDATE t2 SET b=54308 WHERE a=15909; UPDATE t2 SET b=33007 WHERE a=15910; UPDATE t2 SET b=8721 WHERE a=15911; UPDATE t2 SET b=92389 WHERE a=15912; UPDATE t2 SET b=37480 WHERE a=15913; UPDATE t2 SET b=12070 WHERE a=15914; UPDATE t2 SET b=76975 WHERE a=15915; UPDATE t2 SET b=9865 WHERE a=15916; UPDATE t2 SET b=30634 WHERE a=15917; UPDATE t2 SET b=35366 WHERE a=15918; UPDATE t2 SET b=39073 WHERE a=15919; UPDATE t2 SET b=49178 WHERE a=15920; UPDATE t2 SET b=98546 WHERE a=15921; UPDATE t2 SET b=89255 WHERE a=15922; UPDATE t2 SET b=81776 WHERE a=15923; UPDATE t2 SET b=26809 WHERE a=15924; UPDATE t2 SET b=69768 WHERE a=15925; UPDATE t2 SET b=43790 WHERE a=15926; UPDATE t2 SET b=34398 WHERE a=15927; UPDATE t2 SET b=4750 WHERE a=15928; UPDATE t2 SET b=64546 WHERE a=15929; UPDATE t2 SET b=25689 WHERE a=15930; UPDATE t2 SET b=45784 WHERE a=15931; UPDATE t2 SET b=66257 WHERE a=15932; UPDATE t2 SET b=91093 WHERE a=15933; UPDATE t2 SET b=44917 WHERE a=15934; UPDATE t2 SET b=33397 WHERE a=15935; UPDATE t2 SET b=51128 WHERE a=15936; UPDATE t2 SET b=35606 WHERE a=15937; UPDATE t2 SET b=66336 WHERE a=15938; UPDATE t2 SET b=33389 WHERE a=15939; UPDATE t2 SET b=65109 WHERE a=15940; UPDATE t2 SET b=54905 WHERE a=15941; UPDATE t2 SET b=6387 WHERE a=15942; UPDATE t2 SET b=58323 WHERE a=15943; UPDATE t2 SET b=51029 WHERE a=15944; UPDATE t2 SET b=27908 WHERE a=15945; UPDATE t2 SET b=46090 WHERE a=15946; UPDATE t2 SET b=69993 WHERE a=15947; UPDATE t2 SET b=54560 WHERE a=15948; UPDATE t2 SET b=81970 WHERE a=15949; UPDATE t2 SET b=72602 WHERE a=15950; UPDATE t2 SET b=89682 WHERE a=15951; UPDATE t2 SET b=94202 WHERE a=15952; UPDATE t2 SET b=94901 WHERE a=15953; UPDATE t2 SET b=87430 WHERE a=15954; UPDATE t2 SET b=84668 WHERE a=15955; UPDATE t2 SET b=72273 WHERE a=15956; UPDATE t2 SET b=19785 WHERE a=15957; UPDATE t2 SET b=18942 WHERE a=15958; UPDATE t2 SET b=62794 WHERE a=15959; UPDATE t2 SET b=51578 WHERE a=15960; UPDATE t2 SET b=4077 WHERE a=15961; UPDATE t2 SET b=86994 WHERE a=15962; UPDATE t2 SET b=75904 WHERE a=15963; UPDATE t2 SET b=5404 WHERE a=15964; UPDATE t2 SET b=92289 WHERE a=15965; UPDATE t2 SET b=55623 WHERE a=15966; UPDATE t2 SET b=75354 WHERE a=15967; UPDATE t2 SET b=65105 WHERE a=15968; UPDATE t2 SET b=26081 WHERE a=15969; UPDATE t2 SET b=42957 WHERE a=15970; UPDATE t2 SET b=90966 WHERE a=15971; UPDATE t2 SET b=85047 WHERE a=15972; UPDATE t2 SET b=78894 WHERE a=15973; UPDATE t2 SET b=75384 WHERE a=15974; UPDATE t2 SET b=58776 WHERE a=15975; UPDATE t2 SET b=36240 WHERE a=15976; UPDATE t2 SET b=48659 WHERE a=15977; UPDATE t2 SET b=29780 WHERE a=15978; UPDATE t2 SET b=2 WHERE a=15979; UPDATE t2 SET b=85533 WHERE a=15980; UPDATE t2 SET b=75819 WHERE a=15981; UPDATE t2 SET b=7594 WHERE a=15982; UPDATE t2 SET b=38555 WHERE a=15983; UPDATE t2 SET b=94626 WHERE a=15984; UPDATE t2 SET b=96670 WHERE a=15985; UPDATE t2 SET b=43161 WHERE a=15986; UPDATE t2 SET b=75637 WHERE a=15987; UPDATE t2 SET b=35986 WHERE a=15988; UPDATE t2 SET b=18593 WHERE a=15989; UPDATE t2 SET b=86937 WHERE a=15990; UPDATE t2 SET b=18739 WHERE a=15991; UPDATE t2 SET b=91800 WHERE a=15992; UPDATE t2 SET b=37214 WHERE a=15993; UPDATE t2 SET b=20349 WHERE a=15994; UPDATE t2 SET b=88904 WHERE a=15995; UPDATE t2 SET b=18769 WHERE a=15996; UPDATE t2 SET b=67485 WHERE a=15997; UPDATE t2 SET b=1224 WHERE a=15998; UPDATE t2 SET b=56917 WHERE a=15999; UPDATE t2 SET b=60369 WHERE a=16000; UPDATE t2 SET b=85983 WHERE a=16001; UPDATE t2 SET b=46553 WHERE a=16002; UPDATE t2 SET b=85342 WHERE a=16003; UPDATE t2 SET b=72250 WHERE a=16004; UPDATE t2 SET b=48973 WHERE a=16005; UPDATE t2 SET b=38767 WHERE a=16006; UPDATE t2 SET b=99875 WHERE a=16007; UPDATE t2 SET b=98266 WHERE a=16008; UPDATE t2 SET b=56225 WHERE a=16009; UPDATE t2 SET b=71778 WHERE a=16010; UPDATE t2 SET b=97146 WHERE a=16011; UPDATE t2 SET b=3606 WHERE a=16012; UPDATE t2 SET b=83608 WHERE a=16013; UPDATE t2 SET b=64469 WHERE a=16014; UPDATE t2 SET b=80695 WHERE a=16015; UPDATE t2 SET b=93516 WHERE a=16016; UPDATE t2 SET b=70976 WHERE a=16017; UPDATE t2 SET b=28541 WHERE a=16018; UPDATE t2 SET b=86505 WHERE a=16019; UPDATE t2 SET b=11547 WHERE a=16020; UPDATE t2 SET b=63763 WHERE a=16021; UPDATE t2 SET b=11462 WHERE a=16022; UPDATE t2 SET b=54896 WHERE a=16023; UPDATE t2 SET b=71039 WHERE a=16024; UPDATE t2 SET b=18189 WHERE a=16025; UPDATE t2 SET b=18653 WHERE a=16026; UPDATE t2 SET b=8065 WHERE a=16027; UPDATE t2 SET b=12111 WHERE a=16028; UPDATE t2 SET b=68950 WHERE a=16029; UPDATE t2 SET b=11156 WHERE a=16030; UPDATE t2 SET b=50376 WHERE a=16031; UPDATE t2 SET b=48839 WHERE a=16032; UPDATE t2 SET b=81775 WHERE a=16033; UPDATE t2 SET b=43411 WHERE a=16034; UPDATE t2 SET b=14601 WHERE a=16035; UPDATE t2 SET b=82412 WHERE a=16036; UPDATE t2 SET b=72275 WHERE a=16037; UPDATE t2 SET b=76709 WHERE a=16038; UPDATE t2 SET b=55360 WHERE a=16039; UPDATE t2 SET b=86067 WHERE a=16040; UPDATE t2 SET b=98406 WHERE a=16041; UPDATE t2 SET b=65404 WHERE a=16042; UPDATE t2 SET b=22669 WHERE a=16043; UPDATE t2 SET b=43595 WHERE a=16044; UPDATE t2 SET b=4685 WHERE a=16045; UPDATE t2 SET b=25398 WHERE a=16046; UPDATE t2 SET b=23360 WHERE a=16047; UPDATE t2 SET b=53680 WHERE a=16048; UPDATE t2 SET b=65251 WHERE a=16049; UPDATE t2 SET b=17767 WHERE a=16050; UPDATE t2 SET b=91712 WHERE a=16051; UPDATE t2 SET b=56163 WHERE a=16052; UPDATE t2 SET b=94045 WHERE a=16053; UPDATE t2 SET b=34148 WHERE a=16054; UPDATE t2 SET b=18113 WHERE a=16055; UPDATE t2 SET b=68703 WHERE a=16056; UPDATE t2 SET b=3173 WHERE a=16057; UPDATE t2 SET b=74158 WHERE a=16058; UPDATE t2 SET b=4149 WHERE a=16059; UPDATE t2 SET b=60181 WHERE a=16060; UPDATE t2 SET b=1251 WHERE a=16061; UPDATE t2 SET b=95209 WHERE a=16062; UPDATE t2 SET b=14417 WHERE a=16063; UPDATE t2 SET b=58951 WHERE a=16064; UPDATE t2 SET b=13762 WHERE a=16065; UPDATE t2 SET b=37132 WHERE a=16066; UPDATE t2 SET b=14289 WHERE a=16067; UPDATE t2 SET b=54286 WHERE a=16068; UPDATE t2 SET b=93577 WHERE a=16069; UPDATE t2 SET b=52099 WHERE a=16070; UPDATE t2 SET b=16211 WHERE a=16071; UPDATE t2 SET b=98620 WHERE a=16072; UPDATE t2 SET b=20036 WHERE a=16073; UPDATE t2 SET b=75485 WHERE a=16074; UPDATE t2 SET b=27838 WHERE a=16075; UPDATE t2 SET b=37659 WHERE a=16076; UPDATE t2 SET b=22119 WHERE a=16077; UPDATE t2 SET b=31609 WHERE a=16078; UPDATE t2 SET b=85799 WHERE a=16079; UPDATE t2 SET b=37179 WHERE a=16080; UPDATE t2 SET b=29886 WHERE a=16081; UPDATE t2 SET b=78468 WHERE a=16082; UPDATE t2 SET b=41794 WHERE a=16083; UPDATE t2 SET b=52595 WHERE a=16084; UPDATE t2 SET b=75200 WHERE a=16085; UPDATE t2 SET b=83774 WHERE a=16086; UPDATE t2 SET b=98584 WHERE a=16087; UPDATE t2 SET b=96292 WHERE a=16088; UPDATE t2 SET b=93580 WHERE a=16089; UPDATE t2 SET b=11419 WHERE a=16090; UPDATE t2 SET b=23044 WHERE a=16091; UPDATE t2 SET b=78727 WHERE a=16092; UPDATE t2 SET b=35062 WHERE a=16093; UPDATE t2 SET b=18803 WHERE a=16094; UPDATE t2 SET b=94622 WHERE a=16095; UPDATE t2 SET b=43432 WHERE a=16096; UPDATE t2 SET b=7657 WHERE a=16097; UPDATE t2 SET b=76691 WHERE a=16098; UPDATE t2 SET b=1955 WHERE a=16099; UPDATE t2 SET b=65063 WHERE a=16100; UPDATE t2 SET b=73911 WHERE a=16101; UPDATE t2 SET b=89148 WHERE a=16102; UPDATE t2 SET b=32761 WHERE a=16103; UPDATE t2 SET b=70555 WHERE a=16104; UPDATE t2 SET b=54411 WHERE a=16105; UPDATE t2 SET b=40604 WHERE a=16106; UPDATE t2 SET b=44693 WHERE a=16107; UPDATE t2 SET b=20317 WHERE a=16108; UPDATE t2 SET b=79150 WHERE a=16109; UPDATE t2 SET b=79493 WHERE a=16110; UPDATE t2 SET b=2050 WHERE a=16111; UPDATE t2 SET b=73073 WHERE a=16112; UPDATE t2 SET b=32613 WHERE a=16113; UPDATE t2 SET b=71042 WHERE a=16114; UPDATE t2 SET b=98442 WHERE a=16115; UPDATE t2 SET b=94206 WHERE a=16116; UPDATE t2 SET b=42842 WHERE a=16117; UPDATE t2 SET b=91120 WHERE a=16118; UPDATE t2 SET b=29783 WHERE a=16119; UPDATE t2 SET b=79911 WHERE a=16120; UPDATE t2 SET b=66077 WHERE a=16121; UPDATE t2 SET b=69528 WHERE a=16122; UPDATE t2 SET b=59787 WHERE a=16123; UPDATE t2 SET b=97375 WHERE a=16124; UPDATE t2 SET b=12127 WHERE a=16125; UPDATE t2 SET b=75396 WHERE a=16126; UPDATE t2 SET b=44016 WHERE a=16127; UPDATE t2 SET b=95677 WHERE a=16128; UPDATE t2 SET b=43584 WHERE a=16129; UPDATE t2 SET b=6237 WHERE a=16130; UPDATE t2 SET b=84829 WHERE a=16131; UPDATE t2 SET b=7492 WHERE a=16132; UPDATE t2 SET b=39281 WHERE a=16133; UPDATE t2 SET b=19188 WHERE a=16134; UPDATE t2 SET b=43194 WHERE a=16135; UPDATE t2 SET b=61618 WHERE a=16136; UPDATE t2 SET b=57949 WHERE a=16137; UPDATE t2 SET b=24048 WHERE a=16138; UPDATE t2 SET b=15550 WHERE a=16139; UPDATE t2 SET b=19448 WHERE a=16140; UPDATE t2 SET b=33976 WHERE a=16141; UPDATE t2 SET b=42355 WHERE a=16142; UPDATE t2 SET b=10292 WHERE a=16143; UPDATE t2 SET b=45998 WHERE a=16144; UPDATE t2 SET b=71855 WHERE a=16145; UPDATE t2 SET b=62235 WHERE a=16146; UPDATE t2 SET b=34529 WHERE a=16147; UPDATE t2 SET b=17890 WHERE a=16148; UPDATE t2 SET b=43582 WHERE a=16149; UPDATE t2 SET b=62818 WHERE a=16150; UPDATE t2 SET b=41949 WHERE a=16151; UPDATE t2 SET b=95088 WHERE a=16152; UPDATE t2 SET b=90768 WHERE a=16153; UPDATE t2 SET b=95615 WHERE a=16154; UPDATE t2 SET b=92745 WHERE a=16155; UPDATE t2 SET b=48545 WHERE a=16156; UPDATE t2 SET b=75716 WHERE a=16157; UPDATE t2 SET b=5214 WHERE a=16158; UPDATE t2 SET b=55635 WHERE a=16159; UPDATE t2 SET b=77561 WHERE a=16160; UPDATE t2 SET b=35697 WHERE a=16161; UPDATE t2 SET b=9422 WHERE a=16162; UPDATE t2 SET b=91951 WHERE a=16163; UPDATE t2 SET b=64496 WHERE a=16164; UPDATE t2 SET b=68315 WHERE a=16165; UPDATE t2 SET b=19816 WHERE a=16166; UPDATE t2 SET b=12216 WHERE a=16167; UPDATE t2 SET b=19555 WHERE a=16168; UPDATE t2 SET b=85180 WHERE a=16169; UPDATE t2 SET b=27457 WHERE a=16170; UPDATE t2 SET b=14322 WHERE a=16171; UPDATE t2 SET b=47738 WHERE a=16172; UPDATE t2 SET b=33419 WHERE a=16173; UPDATE t2 SET b=46307 WHERE a=16174; UPDATE t2 SET b=22772 WHERE a=16175; UPDATE t2 SET b=50876 WHERE a=16176; UPDATE t2 SET b=75806 WHERE a=16177; UPDATE t2 SET b=79189 WHERE a=16178; UPDATE t2 SET b=53445 WHERE a=16179; UPDATE t2 SET b=99096 WHERE a=16180; UPDATE t2 SET b=36471 WHERE a=16181; UPDATE t2 SET b=63846 WHERE a=16182; UPDATE t2 SET b=87756 WHERE a=16183; UPDATE t2 SET b=21400 WHERE a=16184; UPDATE t2 SET b=12 WHERE a=16185; UPDATE t2 SET b=57504 WHERE a=16186; UPDATE t2 SET b=26277 WHERE a=16187; UPDATE t2 SET b=2901 WHERE a=16188; UPDATE t2 SET b=46815 WHERE a=16189; UPDATE t2 SET b=85795 WHERE a=16190; UPDATE t2 SET b=84103 WHERE a=16191; UPDATE t2 SET b=23498 WHERE a=16192; UPDATE t2 SET b=50849 WHERE a=16193; UPDATE t2 SET b=73532 WHERE a=16194; UPDATE t2 SET b=62849 WHERE a=16195; UPDATE t2 SET b=90561 WHERE a=16196; UPDATE t2 SET b=52835 WHERE a=16197; UPDATE t2 SET b=42619 WHERE a=16198; UPDATE t2 SET b=52372 WHERE a=16199; UPDATE t2 SET b=19958 WHERE a=16200; UPDATE t2 SET b=68381 WHERE a=16201; UPDATE t2 SET b=48624 WHERE a=16202; UPDATE t2 SET b=18935 WHERE a=16203; UPDATE t2 SET b=20587 WHERE a=16204; UPDATE t2 SET b=90865 WHERE a=16205; UPDATE t2 SET b=4179 WHERE a=16206; UPDATE t2 SET b=22128 WHERE a=16207; UPDATE t2 SET b=92622 WHERE a=16208; UPDATE t2 SET b=48281 WHERE a=16209; UPDATE t2 SET b=18392 WHERE a=16210; UPDATE t2 SET b=73493 WHERE a=16211; UPDATE t2 SET b=27123 WHERE a=16212; UPDATE t2 SET b=55677 WHERE a=16213; UPDATE t2 SET b=65864 WHERE a=16214; UPDATE t2 SET b=1958 WHERE a=16215; UPDATE t2 SET b=32399 WHERE a=16216; UPDATE t2 SET b=20708 WHERE a=16217; UPDATE t2 SET b=58493 WHERE a=16218; UPDATE t2 SET b=12417 WHERE a=16219; UPDATE t2 SET b=14041 WHERE a=16220; UPDATE t2 SET b=75158 WHERE a=16221; UPDATE t2 SET b=9611 WHERE a=16222; UPDATE t2 SET b=59080 WHERE a=16223; UPDATE t2 SET b=14569 WHERE a=16224; UPDATE t2 SET b=80395 WHERE a=16225; UPDATE t2 SET b=85433 WHERE a=16226; UPDATE t2 SET b=16926 WHERE a=16227; UPDATE t2 SET b=62196 WHERE a=16228; UPDATE t2 SET b=41226 WHERE a=16229; UPDATE t2 SET b=70091 WHERE a=16230; UPDATE t2 SET b=82355 WHERE a=16231; UPDATE t2 SET b=29721 WHERE a=16232; UPDATE t2 SET b=80334 WHERE a=16233; UPDATE t2 SET b=73069 WHERE a=16234; UPDATE t2 SET b=89696 WHERE a=16235; UPDATE t2 SET b=24732 WHERE a=16236; UPDATE t2 SET b=22135 WHERE a=16237; UPDATE t2 SET b=58387 WHERE a=16238; UPDATE t2 SET b=85965 WHERE a=16239; UPDATE t2 SET b=9961 WHERE a=16240; UPDATE t2 SET b=6747 WHERE a=16241; UPDATE t2 SET b=85040 WHERE a=16242; UPDATE t2 SET b=59757 WHERE a=16243; UPDATE t2 SET b=68142 WHERE a=16244; UPDATE t2 SET b=83445 WHERE a=16245; UPDATE t2 SET b=74033 WHERE a=16246; UPDATE t2 SET b=34071 WHERE a=16247; UPDATE t2 SET b=90219 WHERE a=16248; UPDATE t2 SET b=68639 WHERE a=16249; UPDATE t2 SET b=14208 WHERE a=16250; UPDATE t2 SET b=67742 WHERE a=16251; UPDATE t2 SET b=74205 WHERE a=16252; UPDATE t2 SET b=6338 WHERE a=16253; UPDATE t2 SET b=2921 WHERE a=16254; UPDATE t2 SET b=26952 WHERE a=16255; UPDATE t2 SET b=25645 WHERE a=16256; UPDATE t2 SET b=34469 WHERE a=16257; UPDATE t2 SET b=98250 WHERE a=16258; UPDATE t2 SET b=73907 WHERE a=16259; UPDATE t2 SET b=85468 WHERE a=16260; UPDATE t2 SET b=35919 WHERE a=16261; UPDATE t2 SET b=30942 WHERE a=16262; UPDATE t2 SET b=17541 WHERE a=16263; UPDATE t2 SET b=46242 WHERE a=16264; UPDATE t2 SET b=75563 WHERE a=16265; UPDATE t2 SET b=15086 WHERE a=16266; UPDATE t2 SET b=98159 WHERE a=16267; UPDATE t2 SET b=3679 WHERE a=16268; UPDATE t2 SET b=74641 WHERE a=16269; UPDATE t2 SET b=5636 WHERE a=16270; UPDATE t2 SET b=98449 WHERE a=16271; UPDATE t2 SET b=74578 WHERE a=16272; UPDATE t2 SET b=82479 WHERE a=16273; UPDATE t2 SET b=4803 WHERE a=16274; UPDATE t2 SET b=7130 WHERE a=16275; UPDATE t2 SET b=42992 WHERE a=16276; UPDATE t2 SET b=28831 WHERE a=16277; UPDATE t2 SET b=60168 WHERE a=16278; UPDATE t2 SET b=80119 WHERE a=16279; UPDATE t2 SET b=63487 WHERE a=16280; UPDATE t2 SET b=4089 WHERE a=16281; UPDATE t2 SET b=73928 WHERE a=16282; UPDATE t2 SET b=10126 WHERE a=16283; UPDATE t2 SET b=85896 WHERE a=16284; UPDATE t2 SET b=33812 WHERE a=16285; UPDATE t2 SET b=92384 WHERE a=16286; UPDATE t2 SET b=97021 WHERE a=16287; UPDATE t2 SET b=27539 WHERE a=16288; UPDATE t2 SET b=61976 WHERE a=16289; UPDATE t2 SET b=45337 WHERE a=16290; UPDATE t2 SET b=17631 WHERE a=16291; UPDATE t2 SET b=71285 WHERE a=16292; UPDATE t2 SET b=27557 WHERE a=16293; UPDATE t2 SET b=99794 WHERE a=16294; UPDATE t2 SET b=40112 WHERE a=16295; UPDATE t2 SET b=68860 WHERE a=16296; UPDATE t2 SET b=45846 WHERE a=16297; UPDATE t2 SET b=69851 WHERE a=16298; UPDATE t2 SET b=17869 WHERE a=16299; UPDATE t2 SET b=71886 WHERE a=16300; UPDATE t2 SET b=50123 WHERE a=16301; UPDATE t2 SET b=8105 WHERE a=16302; UPDATE t2 SET b=73817 WHERE a=16303; UPDATE t2 SET b=69269 WHERE a=16304; UPDATE t2 SET b=48090 WHERE a=16305; UPDATE t2 SET b=27320 WHERE a=16306; UPDATE t2 SET b=91655 WHERE a=16307; UPDATE t2 SET b=23637 WHERE a=16308; UPDATE t2 SET b=60166 WHERE a=16309; UPDATE t2 SET b=44387 WHERE a=16310; UPDATE t2 SET b=5985 WHERE a=16311; UPDATE t2 SET b=81369 WHERE a=16312; UPDATE t2 SET b=59894 WHERE a=16313; UPDATE t2 SET b=85691 WHERE a=16314; UPDATE t2 SET b=97126 WHERE a=16315; UPDATE t2 SET b=42711 WHERE a=16316; UPDATE t2 SET b=80044 WHERE a=16317; UPDATE t2 SET b=53021 WHERE a=16318; UPDATE t2 SET b=57612 WHERE a=16319; UPDATE t2 SET b=28491 WHERE a=16320; UPDATE t2 SET b=46451 WHERE a=16321; UPDATE t2 SET b=44558 WHERE a=16322; UPDATE t2 SET b=35599 WHERE a=16323; UPDATE t2 SET b=11167 WHERE a=16324; UPDATE t2 SET b=98690 WHERE a=16325; UPDATE t2 SET b=30613 WHERE a=16326; UPDATE t2 SET b=83214 WHERE a=16327; UPDATE t2 SET b=96865 WHERE a=16328; UPDATE t2 SET b=54940 WHERE a=16329; UPDATE t2 SET b=52222 WHERE a=16330; UPDATE t2 SET b=75553 WHERE a=16331; UPDATE t2 SET b=51191 WHERE a=16332; UPDATE t2 SET b=78569 WHERE a=16333; UPDATE t2 SET b=80928 WHERE a=16334; UPDATE t2 SET b=11156 WHERE a=16335; UPDATE t2 SET b=94519 WHERE a=16336; UPDATE t2 SET b=13672 WHERE a=16337; UPDATE t2 SET b=43387 WHERE a=16338; UPDATE t2 SET b=88551 WHERE a=16339; UPDATE t2 SET b=78186 WHERE a=16340; UPDATE t2 SET b=26320 WHERE a=16341; UPDATE t2 SET b=69110 WHERE a=16342; UPDATE t2 SET b=44196 WHERE a=16343; UPDATE t2 SET b=13381 WHERE a=16344; UPDATE t2 SET b=10401 WHERE a=16345; UPDATE t2 SET b=52098 WHERE a=16346; UPDATE t2 SET b=4969 WHERE a=16347; UPDATE t2 SET b=88249 WHERE a=16348; UPDATE t2 SET b=27149 WHERE a=16349; UPDATE t2 SET b=51884 WHERE a=16350; UPDATE t2 SET b=51316 WHERE a=16351; UPDATE t2 SET b=92182 WHERE a=16352; UPDATE t2 SET b=62411 WHERE a=16353; UPDATE t2 SET b=56767 WHERE a=16354; UPDATE t2 SET b=85475 WHERE a=16355; UPDATE t2 SET b=20410 WHERE a=16356; UPDATE t2 SET b=9442 WHERE a=16357; UPDATE t2 SET b=23521 WHERE a=16358; UPDATE t2 SET b=49121 WHERE a=16359; UPDATE t2 SET b=81692 WHERE a=16360; UPDATE t2 SET b=31738 WHERE a=16361; UPDATE t2 SET b=71118 WHERE a=16362; UPDATE t2 SET b=34016 WHERE a=16363; UPDATE t2 SET b=30199 WHERE a=16364; UPDATE t2 SET b=71412 WHERE a=16365; UPDATE t2 SET b=38478 WHERE a=16366; UPDATE t2 SET b=91914 WHERE a=16367; UPDATE t2 SET b=28505 WHERE a=16368; UPDATE t2 SET b=10438 WHERE a=16369; UPDATE t2 SET b=54822 WHERE a=16370; UPDATE t2 SET b=61807 WHERE a=16371; UPDATE t2 SET b=87487 WHERE a=16372; UPDATE t2 SET b=32901 WHERE a=16373; UPDATE t2 SET b=76330 WHERE a=16374; UPDATE t2 SET b=6077 WHERE a=16375; UPDATE t2 SET b=25154 WHERE a=16376; UPDATE t2 SET b=74100 WHERE a=16377; UPDATE t2 SET b=90281 WHERE a=16378; UPDATE t2 SET b=86081 WHERE a=16379; UPDATE t2 SET b=9951 WHERE a=16380; UPDATE t2 SET b=9808 WHERE a=16381; UPDATE t2 SET b=68435 WHERE a=16382; UPDATE t2 SET b=21290 WHERE a=16383; UPDATE t2 SET b=42493 WHERE a=16384; UPDATE t2 SET b=73363 WHERE a=16385; UPDATE t2 SET b=29233 WHERE a=16386; UPDATE t2 SET b=37293 WHERE a=16387; UPDATE t2 SET b=52556 WHERE a=16388; UPDATE t2 SET b=97703 WHERE a=16389; UPDATE t2 SET b=97278 WHERE a=16390; UPDATE t2 SET b=38892 WHERE a=16391; UPDATE t2 SET b=45062 WHERE a=16392; UPDATE t2 SET b=29290 WHERE a=16393; UPDATE t2 SET b=95900 WHERE a=16394; UPDATE t2 SET b=23047 WHERE a=16395; UPDATE t2 SET b=68582 WHERE a=16396; UPDATE t2 SET b=99497 WHERE a=16397; UPDATE t2 SET b=48445 WHERE a=16398; UPDATE t2 SET b=96303 WHERE a=16399; UPDATE t2 SET b=32461 WHERE a=16400; UPDATE t2 SET b=18574 WHERE a=16401; UPDATE t2 SET b=52159 WHERE a=16402; UPDATE t2 SET b=38617 WHERE a=16403; UPDATE t2 SET b=14062 WHERE a=16404; UPDATE t2 SET b=89294 WHERE a=16405; UPDATE t2 SET b=73607 WHERE a=16406; UPDATE t2 SET b=49205 WHERE a=16407; UPDATE t2 SET b=73475 WHERE a=16408; UPDATE t2 SET b=81109 WHERE a=16409; UPDATE t2 SET b=62987 WHERE a=16410; UPDATE t2 SET b=90294 WHERE a=16411; UPDATE t2 SET b=7895 WHERE a=16412; UPDATE t2 SET b=26184 WHERE a=16413; UPDATE t2 SET b=80117 WHERE a=16414; UPDATE t2 SET b=52625 WHERE a=16415; UPDATE t2 SET b=76190 WHERE a=16416; UPDATE t2 SET b=8903 WHERE a=16417; UPDATE t2 SET b=63560 WHERE a=16418; UPDATE t2 SET b=47329 WHERE a=16419; UPDATE t2 SET b=49609 WHERE a=16420; UPDATE t2 SET b=90904 WHERE a=16421; UPDATE t2 SET b=3582 WHERE a=16422; UPDATE t2 SET b=62478 WHERE a=16423; UPDATE t2 SET b=43626 WHERE a=16424; UPDATE t2 SET b=69532 WHERE a=16425; UPDATE t2 SET b=44428 WHERE a=16426; UPDATE t2 SET b=21617 WHERE a=16427; UPDATE t2 SET b=66858 WHERE a=16428; UPDATE t2 SET b=35586 WHERE a=16429; UPDATE t2 SET b=43080 WHERE a=16430; UPDATE t2 SET b=27373 WHERE a=16431; UPDATE t2 SET b=50934 WHERE a=16432; UPDATE t2 SET b=20784 WHERE a=16433; UPDATE t2 SET b=19226 WHERE a=16434; UPDATE t2 SET b=72462 WHERE a=16435; UPDATE t2 SET b=61997 WHERE a=16436; UPDATE t2 SET b=15146 WHERE a=16437; UPDATE t2 SET b=96807 WHERE a=16438; UPDATE t2 SET b=5101 WHERE a=16439; UPDATE t2 SET b=64043 WHERE a=16440; UPDATE t2 SET b=26065 WHERE a=16441; UPDATE t2 SET b=12336 WHERE a=16442; UPDATE t2 SET b=98763 WHERE a=16443; UPDATE t2 SET b=99155 WHERE a=16444; UPDATE t2 SET b=36557 WHERE a=16445; UPDATE t2 SET b=26769 WHERE a=16446; UPDATE t2 SET b=87304 WHERE a=16447; UPDATE t2 SET b=72747 WHERE a=16448; UPDATE t2 SET b=6545 WHERE a=16449; UPDATE t2 SET b=7654 WHERE a=16450; UPDATE t2 SET b=96126 WHERE a=16451; UPDATE t2 SET b=84857 WHERE a=16452; UPDATE t2 SET b=84184 WHERE a=16453; UPDATE t2 SET b=12838 WHERE a=16454; UPDATE t2 SET b=69009 WHERE a=16455; UPDATE t2 SET b=84928 WHERE a=16456; UPDATE t2 SET b=55230 WHERE a=16457; UPDATE t2 SET b=68365 WHERE a=16458; UPDATE t2 SET b=64121 WHERE a=16459; UPDATE t2 SET b=18176 WHERE a=16460; UPDATE t2 SET b=71408 WHERE a=16461; UPDATE t2 SET b=88126 WHERE a=16462; UPDATE t2 SET b=54487 WHERE a=16463; UPDATE t2 SET b=4340 WHERE a=16464; UPDATE t2 SET b=35413 WHERE a=16465; UPDATE t2 SET b=49816 WHERE a=16466; UPDATE t2 SET b=29302 WHERE a=16467; UPDATE t2 SET b=27239 WHERE a=16468; UPDATE t2 SET b=7748 WHERE a=16469; UPDATE t2 SET b=9021 WHERE a=16470; UPDATE t2 SET b=19973 WHERE a=16471; UPDATE t2 SET b=84262 WHERE a=16472; UPDATE t2 SET b=2444 WHERE a=16473; UPDATE t2 SET b=25766 WHERE a=16474; UPDATE t2 SET b=75500 WHERE a=16475; UPDATE t2 SET b=34213 WHERE a=16476; UPDATE t2 SET b=71745 WHERE a=16477; UPDATE t2 SET b=16507 WHERE a=16478; UPDATE t2 SET b=82944 WHERE a=16479; UPDATE t2 SET b=52985 WHERE a=16480; UPDATE t2 SET b=3964 WHERE a=16481; UPDATE t2 SET b=70301 WHERE a=16482; UPDATE t2 SET b=15098 WHERE a=16483; UPDATE t2 SET b=23779 WHERE a=16484; UPDATE t2 SET b=68355 WHERE a=16485; UPDATE t2 SET b=80159 WHERE a=16486; UPDATE t2 SET b=25451 WHERE a=16487; UPDATE t2 SET b=54865 WHERE a=16488; UPDATE t2 SET b=81575 WHERE a=16489; UPDATE t2 SET b=48592 WHERE a=16490; UPDATE t2 SET b=83112 WHERE a=16491; UPDATE t2 SET b=21803 WHERE a=16492; UPDATE t2 SET b=15321 WHERE a=16493; UPDATE t2 SET b=71084 WHERE a=16494; UPDATE t2 SET b=59082 WHERE a=16495; UPDATE t2 SET b=89886 WHERE a=16496; UPDATE t2 SET b=461 WHERE a=16497; UPDATE t2 SET b=14455 WHERE a=16498; UPDATE t2 SET b=66115 WHERE a=16499; UPDATE t2 SET b=76760 WHERE a=16500; UPDATE t2 SET b=95668 WHERE a=16501; UPDATE t2 SET b=24478 WHERE a=16502; UPDATE t2 SET b=48744 WHERE a=16503; UPDATE t2 SET b=84480 WHERE a=16504; UPDATE t2 SET b=3789 WHERE a=16505; UPDATE t2 SET b=66150 WHERE a=16506; UPDATE t2 SET b=816 WHERE a=16507; UPDATE t2 SET b=54410 WHERE a=16508; UPDATE t2 SET b=18172 WHERE a=16509; UPDATE t2 SET b=10215 WHERE a=16510; UPDATE t2 SET b=38621 WHERE a=16511; UPDATE t2 SET b=41243 WHERE a=16512; UPDATE t2 SET b=42367 WHERE a=16513; UPDATE t2 SET b=39518 WHERE a=16514; UPDATE t2 SET b=100 WHERE a=16515; UPDATE t2 SET b=37810 WHERE a=16516; UPDATE t2 SET b=90028 WHERE a=16517; UPDATE t2 SET b=30774 WHERE a=16518; UPDATE t2 SET b=57471 WHERE a=16519; UPDATE t2 SET b=29831 WHERE a=16520; UPDATE t2 SET b=78059 WHERE a=16521; UPDATE t2 SET b=51380 WHERE a=16522; UPDATE t2 SET b=31572 WHERE a=16523; UPDATE t2 SET b=44119 WHERE a=16524; UPDATE t2 SET b=71661 WHERE a=16525; UPDATE t2 SET b=17215 WHERE a=16526; UPDATE t2 SET b=62515 WHERE a=16527; UPDATE t2 SET b=236 WHERE a=16528; UPDATE t2 SET b=74840 WHERE a=16529; UPDATE t2 SET b=78855 WHERE a=16530; UPDATE t2 SET b=17140 WHERE a=16531; UPDATE t2 SET b=46895 WHERE a=16532; UPDATE t2 SET b=71398 WHERE a=16533; UPDATE t2 SET b=24155 WHERE a=16534; UPDATE t2 SET b=26529 WHERE a=16535; UPDATE t2 SET b=90662 WHERE a=16536; UPDATE t2 SET b=38284 WHERE a=16537; UPDATE t2 SET b=86120 WHERE a=16538; UPDATE t2 SET b=97564 WHERE a=16539; UPDATE t2 SET b=16484 WHERE a=16540; UPDATE t2 SET b=18813 WHERE a=16541; UPDATE t2 SET b=88557 WHERE a=16542; UPDATE t2 SET b=92227 WHERE a=16543; UPDATE t2 SET b=78833 WHERE a=16544; UPDATE t2 SET b=61719 WHERE a=16545; UPDATE t2 SET b=97407 WHERE a=16546; UPDATE t2 SET b=41849 WHERE a=16547; UPDATE t2 SET b=65788 WHERE a=16548; UPDATE t2 SET b=52884 WHERE a=16549; UPDATE t2 SET b=84408 WHERE a=16550; UPDATE t2 SET b=76870 WHERE a=16551; UPDATE t2 SET b=43134 WHERE a=16552; UPDATE t2 SET b=4703 WHERE a=16553; UPDATE t2 SET b=80417 WHERE a=16554; UPDATE t2 SET b=57129 WHERE a=16555; UPDATE t2 SET b=58346 WHERE a=16556; UPDATE t2 SET b=63138 WHERE a=16557; UPDATE t2 SET b=77137 WHERE a=16558; UPDATE t2 SET b=69856 WHERE a=16559; UPDATE t2 SET b=51498 WHERE a=16560; UPDATE t2 SET b=66324 WHERE a=16561; UPDATE t2 SET b=51967 WHERE a=16562; UPDATE t2 SET b=45725 WHERE a=16563; UPDATE t2 SET b=94186 WHERE a=16564; UPDATE t2 SET b=90425 WHERE a=16565; UPDATE t2 SET b=58682 WHERE a=16566; UPDATE t2 SET b=43526 WHERE a=16567; UPDATE t2 SET b=94083 WHERE a=16568; UPDATE t2 SET b=69891 WHERE a=16569; UPDATE t2 SET b=97261 WHERE a=16570; UPDATE t2 SET b=6106 WHERE a=16571; UPDATE t2 SET b=19845 WHERE a=16572; UPDATE t2 SET b=36194 WHERE a=16573; UPDATE t2 SET b=44760 WHERE a=16574; UPDATE t2 SET b=61133 WHERE a=16575; UPDATE t2 SET b=33224 WHERE a=16576; UPDATE t2 SET b=67941 WHERE a=16577; UPDATE t2 SET b=56241 WHERE a=16578; UPDATE t2 SET b=28539 WHERE a=16579; UPDATE t2 SET b=46983 WHERE a=16580; UPDATE t2 SET b=66089 WHERE a=16581; UPDATE t2 SET b=57298 WHERE a=16582; UPDATE t2 SET b=64020 WHERE a=16583; UPDATE t2 SET b=92602 WHERE a=16584; UPDATE t2 SET b=93708 WHERE a=16585; UPDATE t2 SET b=66120 WHERE a=16586; UPDATE t2 SET b=28508 WHERE a=16587; UPDATE t2 SET b=65355 WHERE a=16588; UPDATE t2 SET b=46527 WHERE a=16589; UPDATE t2 SET b=96298 WHERE a=16590; UPDATE t2 SET b=49923 WHERE a=16591; UPDATE t2 SET b=21341 WHERE a=16592; UPDATE t2 SET b=27066 WHERE a=16593; UPDATE t2 SET b=13772 WHERE a=16594; UPDATE t2 SET b=20755 WHERE a=16595; UPDATE t2 SET b=41214 WHERE a=16596; UPDATE t2 SET b=30988 WHERE a=16597; UPDATE t2 SET b=85458 WHERE a=16598; UPDATE t2 SET b=28318 WHERE a=16599; UPDATE t2 SET b=60985 WHERE a=16600; UPDATE t2 SET b=55477 WHERE a=16601; UPDATE t2 SET b=56974 WHERE a=16602; UPDATE t2 SET b=2792 WHERE a=16603; UPDATE t2 SET b=28271 WHERE a=16604; UPDATE t2 SET b=8229 WHERE a=16605; UPDATE t2 SET b=27180 WHERE a=16606; UPDATE t2 SET b=61272 WHERE a=16607; UPDATE t2 SET b=69290 WHERE a=16608; UPDATE t2 SET b=20306 WHERE a=16609; UPDATE t2 SET b=8402 WHERE a=16610; UPDATE t2 SET b=71472 WHERE a=16611; UPDATE t2 SET b=98716 WHERE a=16612; UPDATE t2 SET b=18053 WHERE a=16613; UPDATE t2 SET b=64321 WHERE a=16614; UPDATE t2 SET b=99185 WHERE a=16615; UPDATE t2 SET b=72764 WHERE a=16616; UPDATE t2 SET b=56444 WHERE a=16617; UPDATE t2 SET b=89111 WHERE a=16618; UPDATE t2 SET b=85138 WHERE a=16619; UPDATE t2 SET b=53627 WHERE a=16620; UPDATE t2 SET b=23971 WHERE a=16621; UPDATE t2 SET b=54178 WHERE a=16622; UPDATE t2 SET b=72722 WHERE a=16623; UPDATE t2 SET b=82041 WHERE a=16624; UPDATE t2 SET b=28246 WHERE a=16625; UPDATE t2 SET b=83042 WHERE a=16626; UPDATE t2 SET b=64575 WHERE a=16627; UPDATE t2 SET b=62371 WHERE a=16628; UPDATE t2 SET b=1525 WHERE a=16629; UPDATE t2 SET b=13099 WHERE a=16630; UPDATE t2 SET b=15070 WHERE a=16631; UPDATE t2 SET b=59763 WHERE a=16632; UPDATE t2 SET b=42643 WHERE a=16633; UPDATE t2 SET b=79961 WHERE a=16634; UPDATE t2 SET b=7079 WHERE a=16635; UPDATE t2 SET b=40589 WHERE a=16636; UPDATE t2 SET b=60289 WHERE a=16637; UPDATE t2 SET b=31294 WHERE a=16638; UPDATE t2 SET b=90835 WHERE a=16639; UPDATE t2 SET b=86274 WHERE a=16640; UPDATE t2 SET b=79146 WHERE a=16641; UPDATE t2 SET b=86384 WHERE a=16642; UPDATE t2 SET b=67336 WHERE a=16643; UPDATE t2 SET b=21552 WHERE a=16644; UPDATE t2 SET b=49183 WHERE a=16645; UPDATE t2 SET b=88483 WHERE a=16646; UPDATE t2 SET b=59695 WHERE a=16647; UPDATE t2 SET b=53994 WHERE a=16648; UPDATE t2 SET b=7178 WHERE a=16649; UPDATE t2 SET b=47419 WHERE a=16650; UPDATE t2 SET b=16050 WHERE a=16651; UPDATE t2 SET b=66391 WHERE a=16652; UPDATE t2 SET b=23830 WHERE a=16653; UPDATE t2 SET b=53777 WHERE a=16654; UPDATE t2 SET b=80957 WHERE a=16655; UPDATE t2 SET b=78029 WHERE a=16656; UPDATE t2 SET b=13953 WHERE a=16657; UPDATE t2 SET b=99658 WHERE a=16658; UPDATE t2 SET b=86943 WHERE a=16659; UPDATE t2 SET b=90234 WHERE a=16660; UPDATE t2 SET b=33738 WHERE a=16661; UPDATE t2 SET b=66805 WHERE a=16662; UPDATE t2 SET b=22496 WHERE a=16663; UPDATE t2 SET b=42133 WHERE a=16664; UPDATE t2 SET b=47043 WHERE a=16665; UPDATE t2 SET b=36547 WHERE a=16666; UPDATE t2 SET b=99929 WHERE a=16667; UPDATE t2 SET b=78005 WHERE a=16668; UPDATE t2 SET b=99968 WHERE a=16669; UPDATE t2 SET b=25785 WHERE a=16670; UPDATE t2 SET b=83699 WHERE a=16671; UPDATE t2 SET b=11245 WHERE a=16672; UPDATE t2 SET b=78692 WHERE a=16673; UPDATE t2 SET b=20481 WHERE a=16674; UPDATE t2 SET b=34595 WHERE a=16675; UPDATE t2 SET b=78663 WHERE a=16676; UPDATE t2 SET b=82951 WHERE a=16677; UPDATE t2 SET b=77142 WHERE a=16678; UPDATE t2 SET b=8212 WHERE a=16679; UPDATE t2 SET b=88985 WHERE a=16680; UPDATE t2 SET b=29648 WHERE a=16681; UPDATE t2 SET b=2511 WHERE a=16682; UPDATE t2 SET b=25470 WHERE a=16683; UPDATE t2 SET b=94402 WHERE a=16684; UPDATE t2 SET b=83577 WHERE a=16685; UPDATE t2 SET b=24067 WHERE a=16686; UPDATE t2 SET b=46400 WHERE a=16687; UPDATE t2 SET b=92208 WHERE a=16688; UPDATE t2 SET b=92533 WHERE a=16689; UPDATE t2 SET b=54877 WHERE a=16690; UPDATE t2 SET b=81069 WHERE a=16691; UPDATE t2 SET b=52884 WHERE a=16692; UPDATE t2 SET b=33606 WHERE a=16693; UPDATE t2 SET b=41412 WHERE a=16694; UPDATE t2 SET b=49478 WHERE a=16695; UPDATE t2 SET b=9664 WHERE a=16696; UPDATE t2 SET b=37907 WHERE a=16697; UPDATE t2 SET b=31395 WHERE a=16698; UPDATE t2 SET b=78561 WHERE a=16699; UPDATE t2 SET b=63151 WHERE a=16700; UPDATE t2 SET b=7969 WHERE a=16701; UPDATE t2 SET b=110 WHERE a=16702; UPDATE t2 SET b=73167 WHERE a=16703; UPDATE t2 SET b=50024 WHERE a=16704; UPDATE t2 SET b=27688 WHERE a=16705; UPDATE t2 SET b=51527 WHERE a=16706; UPDATE t2 SET b=96932 WHERE a=16707; UPDATE t2 SET b=95972 WHERE a=16708; UPDATE t2 SET b=22895 WHERE a=16709; UPDATE t2 SET b=36365 WHERE a=16710; UPDATE t2 SET b=68126 WHERE a=16711; UPDATE t2 SET b=40196 WHERE a=16712; UPDATE t2 SET b=12581 WHERE a=16713; UPDATE t2 SET b=3401 WHERE a=16714; UPDATE t2 SET b=34815 WHERE a=16715; UPDATE t2 SET b=83299 WHERE a=16716; UPDATE t2 SET b=6020 WHERE a=16717; UPDATE t2 SET b=46067 WHERE a=16718; UPDATE t2 SET b=57361 WHERE a=16719; UPDATE t2 SET b=97971 WHERE a=16720; UPDATE t2 SET b=58196 WHERE a=16721; UPDATE t2 SET b=78143 WHERE a=16722; UPDATE t2 SET b=4726 WHERE a=16723; UPDATE t2 SET b=95300 WHERE a=16724; UPDATE t2 SET b=37320 WHERE a=16725; UPDATE t2 SET b=90262 WHERE a=16726; UPDATE t2 SET b=68756 WHERE a=16727; UPDATE t2 SET b=5281 WHERE a=16728; UPDATE t2 SET b=43138 WHERE a=16729; UPDATE t2 SET b=41659 WHERE a=16730; UPDATE t2 SET b=93979 WHERE a=16731; UPDATE t2 SET b=90919 WHERE a=16732; UPDATE t2 SET b=8035 WHERE a=16733; UPDATE t2 SET b=92356 WHERE a=16734; UPDATE t2 SET b=19785 WHERE a=16735; UPDATE t2 SET b=95714 WHERE a=16736; UPDATE t2 SET b=87147 WHERE a=16737; UPDATE t2 SET b=27477 WHERE a=16738; UPDATE t2 SET b=8212 WHERE a=16739; UPDATE t2 SET b=86606 WHERE a=16740; UPDATE t2 SET b=18476 WHERE a=16741; UPDATE t2 SET b=50132 WHERE a=16742; UPDATE t2 SET b=77545 WHERE a=16743; UPDATE t2 SET b=88045 WHERE a=16744; UPDATE t2 SET b=61303 WHERE a=16745; UPDATE t2 SET b=41283 WHERE a=16746; UPDATE t2 SET b=38884 WHERE a=16747; UPDATE t2 SET b=510 WHERE a=16748; UPDATE t2 SET b=36665 WHERE a=16749; UPDATE t2 SET b=32955 WHERE a=16750; UPDATE t2 SET b=42320 WHERE a=16751; UPDATE t2 SET b=6395 WHERE a=16752; UPDATE t2 SET b=87879 WHERE a=16753; UPDATE t2 SET b=92172 WHERE a=16754; UPDATE t2 SET b=27566 WHERE a=16755; UPDATE t2 SET b=80719 WHERE a=16756; UPDATE t2 SET b=29710 WHERE a=16757; UPDATE t2 SET b=16533 WHERE a=16758; UPDATE t2 SET b=24248 WHERE a=16759; UPDATE t2 SET b=78118 WHERE a=16760; UPDATE t2 SET b=48732 WHERE a=16761; UPDATE t2 SET b=3351 WHERE a=16762; UPDATE t2 SET b=37246 WHERE a=16763; UPDATE t2 SET b=94021 WHERE a=16764; UPDATE t2 SET b=27185 WHERE a=16765; UPDATE t2 SET b=8128 WHERE a=16766; UPDATE t2 SET b=15515 WHERE a=16767; UPDATE t2 SET b=57883 WHERE a=16768; UPDATE t2 SET b=4661 WHERE a=16769; UPDATE t2 SET b=61831 WHERE a=16770; UPDATE t2 SET b=47279 WHERE a=16771; UPDATE t2 SET b=86332 WHERE a=16772; UPDATE t2 SET b=27502 WHERE a=16773; UPDATE t2 SET b=12991 WHERE a=16774; UPDATE t2 SET b=10561 WHERE a=16775; UPDATE t2 SET b=56951 WHERE a=16776; UPDATE t2 SET b=32250 WHERE a=16777; UPDATE t2 SET b=16663 WHERE a=16778; UPDATE t2 SET b=17300 WHERE a=16779; UPDATE t2 SET b=5963 WHERE a=16780; UPDATE t2 SET b=96878 WHERE a=16781; UPDATE t2 SET b=91694 WHERE a=16782; UPDATE t2 SET b=78893 WHERE a=16783; UPDATE t2 SET b=65694 WHERE a=16784; UPDATE t2 SET b=2772 WHERE a=16785; UPDATE t2 SET b=8151 WHERE a=16786; UPDATE t2 SET b=88661 WHERE a=16787; UPDATE t2 SET b=77789 WHERE a=16788; UPDATE t2 SET b=11354 WHERE a=16789; UPDATE t2 SET b=66645 WHERE a=16790; UPDATE t2 SET b=84120 WHERE a=16791; UPDATE t2 SET b=84532 WHERE a=16792; UPDATE t2 SET b=45504 WHERE a=16793; UPDATE t2 SET b=71610 WHERE a=16794; UPDATE t2 SET b=85797 WHERE a=16795; UPDATE t2 SET b=53497 WHERE a=16796; UPDATE t2 SET b=31820 WHERE a=16797; UPDATE t2 SET b=29814 WHERE a=16798; UPDATE t2 SET b=16857 WHERE a=16799; UPDATE t2 SET b=87295 WHERE a=16800; UPDATE t2 SET b=50253 WHERE a=16801; UPDATE t2 SET b=83150 WHERE a=16802; UPDATE t2 SET b=43689 WHERE a=16803; UPDATE t2 SET b=64633 WHERE a=16804; UPDATE t2 SET b=37960 WHERE a=16805; UPDATE t2 SET b=2992 WHERE a=16806; UPDATE t2 SET b=26161 WHERE a=16807; UPDATE t2 SET b=42980 WHERE a=16808; UPDATE t2 SET b=37057 WHERE a=16809; UPDATE t2 SET b=91833 WHERE a=16810; UPDATE t2 SET b=75280 WHERE a=16811; UPDATE t2 SET b=39714 WHERE a=16812; UPDATE t2 SET b=40353 WHERE a=16813; UPDATE t2 SET b=87238 WHERE a=16814; UPDATE t2 SET b=99527 WHERE a=16815; UPDATE t2 SET b=92774 WHERE a=16816; UPDATE t2 SET b=83800 WHERE a=16817; UPDATE t2 SET b=55336 WHERE a=16818; UPDATE t2 SET b=60167 WHERE a=16819; UPDATE t2 SET b=24302 WHERE a=16820; UPDATE t2 SET b=17692 WHERE a=16821; UPDATE t2 SET b=65405 WHERE a=16822; UPDATE t2 SET b=84251 WHERE a=16823; UPDATE t2 SET b=15095 WHERE a=16824; UPDATE t2 SET b=21623 WHERE a=16825; UPDATE t2 SET b=55634 WHERE a=16826; UPDATE t2 SET b=5960 WHERE a=16827; UPDATE t2 SET b=7102 WHERE a=16828; UPDATE t2 SET b=85918 WHERE a=16829; UPDATE t2 SET b=6127 WHERE a=16830; UPDATE t2 SET b=20541 WHERE a=16831; UPDATE t2 SET b=13424 WHERE a=16832; UPDATE t2 SET b=88224 WHERE a=16833; UPDATE t2 SET b=97487 WHERE a=16834; UPDATE t2 SET b=90927 WHERE a=16835; UPDATE t2 SET b=79209 WHERE a=16836; UPDATE t2 SET b=27863 WHERE a=16837; UPDATE t2 SET b=91201 WHERE a=16838; UPDATE t2 SET b=24756 WHERE a=16839; UPDATE t2 SET b=96762 WHERE a=16840; UPDATE t2 SET b=8104 WHERE a=16841; UPDATE t2 SET b=67976 WHERE a=16842; UPDATE t2 SET b=21890 WHERE a=16843; UPDATE t2 SET b=68478 WHERE a=16844; UPDATE t2 SET b=94112 WHERE a=16845; UPDATE t2 SET b=39423 WHERE a=16846; UPDATE t2 SET b=50351 WHERE a=16847; UPDATE t2 SET b=16669 WHERE a=16848; UPDATE t2 SET b=65185 WHERE a=16849; UPDATE t2 SET b=49045 WHERE a=16850; UPDATE t2 SET b=86878 WHERE a=16851; UPDATE t2 SET b=65890 WHERE a=16852; UPDATE t2 SET b=43799 WHERE a=16853; UPDATE t2 SET b=63340 WHERE a=16854; UPDATE t2 SET b=53387 WHERE a=16855; UPDATE t2 SET b=43321 WHERE a=16856; UPDATE t2 SET b=88406 WHERE a=16857; UPDATE t2 SET b=21375 WHERE a=16858; UPDATE t2 SET b=93981 WHERE a=16859; UPDATE t2 SET b=79757 WHERE a=16860; UPDATE t2 SET b=852 WHERE a=16861; UPDATE t2 SET b=52765 WHERE a=16862; UPDATE t2 SET b=28478 WHERE a=16863; UPDATE t2 SET b=83909 WHERE a=16864; UPDATE t2 SET b=54710 WHERE a=16865; UPDATE t2 SET b=53273 WHERE a=16866; UPDATE t2 SET b=27106 WHERE a=16867; UPDATE t2 SET b=94726 WHERE a=16868; UPDATE t2 SET b=27115 WHERE a=16869; UPDATE t2 SET b=26483 WHERE a=16870; UPDATE t2 SET b=15250 WHERE a=16871; UPDATE t2 SET b=73687 WHERE a=16872; UPDATE t2 SET b=35779 WHERE a=16873; UPDATE t2 SET b=52789 WHERE a=16874; UPDATE t2 SET b=43523 WHERE a=16875; UPDATE t2 SET b=95970 WHERE a=16876; UPDATE t2 SET b=66033 WHERE a=16877; UPDATE t2 SET b=88106 WHERE a=16878; UPDATE t2 SET b=68521 WHERE a=16879; UPDATE t2 SET b=16329 WHERE a=16880; UPDATE t2 SET b=68699 WHERE a=16881; UPDATE t2 SET b=56468 WHERE a=16882; UPDATE t2 SET b=5329 WHERE a=16883; UPDATE t2 SET b=34480 WHERE a=16884; UPDATE t2 SET b=84322 WHERE a=16885; UPDATE t2 SET b=52842 WHERE a=16886; UPDATE t2 SET b=184 WHERE a=16887; UPDATE t2 SET b=18953 WHERE a=16888; UPDATE t2 SET b=93096 WHERE a=16889; UPDATE t2 SET b=96504 WHERE a=16890; UPDATE t2 SET b=85206 WHERE a=16891; UPDATE t2 SET b=24108 WHERE a=16892; UPDATE t2 SET b=74809 WHERE a=16893; UPDATE t2 SET b=95031 WHERE a=16894; UPDATE t2 SET b=210 WHERE a=16895; UPDATE t2 SET b=54315 WHERE a=16896; UPDATE t2 SET b=49256 WHERE a=16897; UPDATE t2 SET b=77598 WHERE a=16898; UPDATE t2 SET b=80888 WHERE a=16899; UPDATE t2 SET b=75676 WHERE a=16900; UPDATE t2 SET b=74659 WHERE a=16901; UPDATE t2 SET b=36317 WHERE a=16902; UPDATE t2 SET b=22574 WHERE a=16903; UPDATE t2 SET b=40358 WHERE a=16904; UPDATE t2 SET b=1169 WHERE a=16905; UPDATE t2 SET b=95739 WHERE a=16906; UPDATE t2 SET b=1572 WHERE a=16907; UPDATE t2 SET b=96499 WHERE a=16908; UPDATE t2 SET b=32867 WHERE a=16909; UPDATE t2 SET b=50356 WHERE a=16910; UPDATE t2 SET b=59975 WHERE a=16911; UPDATE t2 SET b=58823 WHERE a=16912; UPDATE t2 SET b=43362 WHERE a=16913; UPDATE t2 SET b=57574 WHERE a=16914; UPDATE t2 SET b=83548 WHERE a=16915; UPDATE t2 SET b=5089 WHERE a=16916; UPDATE t2 SET b=51883 WHERE a=16917; UPDATE t2 SET b=21741 WHERE a=16918; UPDATE t2 SET b=21912 WHERE a=16919; UPDATE t2 SET b=58475 WHERE a=16920; UPDATE t2 SET b=95000 WHERE a=16921; UPDATE t2 SET b=39999 WHERE a=16922; UPDATE t2 SET b=25751 WHERE a=16923; UPDATE t2 SET b=96750 WHERE a=16924; UPDATE t2 SET b=63410 WHERE a=16925; UPDATE t2 SET b=43905 WHERE a=16926; UPDATE t2 SET b=40866 WHERE a=16927; UPDATE t2 SET b=57819 WHERE a=16928; UPDATE t2 SET b=72889 WHERE a=16929; UPDATE t2 SET b=54587 WHERE a=16930; UPDATE t2 SET b=16476 WHERE a=16931; UPDATE t2 SET b=68972 WHERE a=16932; UPDATE t2 SET b=23089 WHERE a=16933; UPDATE t2 SET b=73078 WHERE a=16934; UPDATE t2 SET b=15926 WHERE a=16935; UPDATE t2 SET b=25819 WHERE a=16936; UPDATE t2 SET b=26319 WHERE a=16937; UPDATE t2 SET b=39777 WHERE a=16938; UPDATE t2 SET b=81776 WHERE a=16939; UPDATE t2 SET b=83596 WHERE a=16940; UPDATE t2 SET b=84644 WHERE a=16941; UPDATE t2 SET b=4131 WHERE a=16942; UPDATE t2 SET b=84192 WHERE a=16943; UPDATE t2 SET b=61094 WHERE a=16944; UPDATE t2 SET b=53091 WHERE a=16945; UPDATE t2 SET b=43965 WHERE a=16946; UPDATE t2 SET b=43533 WHERE a=16947; UPDATE t2 SET b=87958 WHERE a=16948; UPDATE t2 SET b=88585 WHERE a=16949; UPDATE t2 SET b=74779 WHERE a=16950; UPDATE t2 SET b=21782 WHERE a=16951; UPDATE t2 SET b=82881 WHERE a=16952; UPDATE t2 SET b=13895 WHERE a=16953; UPDATE t2 SET b=98867 WHERE a=16954; UPDATE t2 SET b=76279 WHERE a=16955; UPDATE t2 SET b=93452 WHERE a=16956; UPDATE t2 SET b=36860 WHERE a=16957; UPDATE t2 SET b=39956 WHERE a=16958; UPDATE t2 SET b=91989 WHERE a=16959; UPDATE t2 SET b=31573 WHERE a=16960; UPDATE t2 SET b=74924 WHERE a=16961; UPDATE t2 SET b=82122 WHERE a=16962; UPDATE t2 SET b=11431 WHERE a=16963; UPDATE t2 SET b=89863 WHERE a=16964; UPDATE t2 SET b=80501 WHERE a=16965; UPDATE t2 SET b=23736 WHERE a=16966; UPDATE t2 SET b=17605 WHERE a=16967; UPDATE t2 SET b=85459 WHERE a=16968; UPDATE t2 SET b=75205 WHERE a=16969; UPDATE t2 SET b=42342 WHERE a=16970; UPDATE t2 SET b=95394 WHERE a=16971; UPDATE t2 SET b=62424 WHERE a=16972; UPDATE t2 SET b=36942 WHERE a=16973; UPDATE t2 SET b=28295 WHERE a=16974; UPDATE t2 SET b=66157 WHERE a=16975; UPDATE t2 SET b=54159 WHERE a=16976; UPDATE t2 SET b=55567 WHERE a=16977; UPDATE t2 SET b=97551 WHERE a=16978; UPDATE t2 SET b=7231 WHERE a=16979; UPDATE t2 SET b=4246 WHERE a=16980; UPDATE t2 SET b=51987 WHERE a=16981; UPDATE t2 SET b=90872 WHERE a=16982; UPDATE t2 SET b=68762 WHERE a=16983; UPDATE t2 SET b=35638 WHERE a=16984; UPDATE t2 SET b=34272 WHERE a=16985; UPDATE t2 SET b=73013 WHERE a=16986; UPDATE t2 SET b=81243 WHERE a=16987; UPDATE t2 SET b=97324 WHERE a=16988; UPDATE t2 SET b=94253 WHERE a=16989; UPDATE t2 SET b=18392 WHERE a=16990; UPDATE t2 SET b=92274 WHERE a=16991; UPDATE t2 SET b=70564 WHERE a=16992; UPDATE t2 SET b=84326 WHERE a=16993; UPDATE t2 SET b=49653 WHERE a=16994; UPDATE t2 SET b=22628 WHERE a=16995; UPDATE t2 SET b=68019 WHERE a=16996; UPDATE t2 SET b=19252 WHERE a=16997; UPDATE t2 SET b=75358 WHERE a=16998; UPDATE t2 SET b=76321 WHERE a=16999; UPDATE t2 SET b=738 WHERE a=17000; UPDATE t2 SET b=26040 WHERE a=17001; UPDATE t2 SET b=46502 WHERE a=17002; UPDATE t2 SET b=914 WHERE a=17003; UPDATE t2 SET b=15937 WHERE a=17004; UPDATE t2 SET b=92674 WHERE a=17005; UPDATE t2 SET b=38654 WHERE a=17006; UPDATE t2 SET b=89838 WHERE a=17007; UPDATE t2 SET b=59448 WHERE a=17008; UPDATE t2 SET b=26933 WHERE a=17009; UPDATE t2 SET b=58573 WHERE a=17010; UPDATE t2 SET b=45434 WHERE a=17011; UPDATE t2 SET b=87753 WHERE a=17012; UPDATE t2 SET b=18588 WHERE a=17013; UPDATE t2 SET b=72602 WHERE a=17014; UPDATE t2 SET b=67248 WHERE a=17015; UPDATE t2 SET b=82292 WHERE a=17016; UPDATE t2 SET b=1952 WHERE a=17017; UPDATE t2 SET b=67449 WHERE a=17018; UPDATE t2 SET b=54545 WHERE a=17019; UPDATE t2 SET b=94296 WHERE a=17020; UPDATE t2 SET b=22622 WHERE a=17021; UPDATE t2 SET b=78658 WHERE a=17022; UPDATE t2 SET b=36110 WHERE a=17023; UPDATE t2 SET b=66682 WHERE a=17024; UPDATE t2 SET b=69654 WHERE a=17025; UPDATE t2 SET b=7668 WHERE a=17026; UPDATE t2 SET b=55116 WHERE a=17027; UPDATE t2 SET b=37115 WHERE a=17028; UPDATE t2 SET b=7835 WHERE a=17029; UPDATE t2 SET b=57160 WHERE a=17030; UPDATE t2 SET b=24267 WHERE a=17031; UPDATE t2 SET b=5688 WHERE a=17032; UPDATE t2 SET b=4922 WHERE a=17033; UPDATE t2 SET b=70016 WHERE a=17034; UPDATE t2 SET b=81575 WHERE a=17035; UPDATE t2 SET b=3799 WHERE a=17036; UPDATE t2 SET b=63102 WHERE a=17037; UPDATE t2 SET b=11682 WHERE a=17038; UPDATE t2 SET b=33924 WHERE a=17039; UPDATE t2 SET b=66607 WHERE a=17040; UPDATE t2 SET b=56343 WHERE a=17041; UPDATE t2 SET b=34267 WHERE a=17042; UPDATE t2 SET b=24251 WHERE a=17043; UPDATE t2 SET b=57480 WHERE a=17044; UPDATE t2 SET b=8314 WHERE a=17045; UPDATE t2 SET b=89318 WHERE a=17046; UPDATE t2 SET b=97878 WHERE a=17047; UPDATE t2 SET b=71104 WHERE a=17048; UPDATE t2 SET b=38696 WHERE a=17049; UPDATE t2 SET b=82099 WHERE a=17050; UPDATE t2 SET b=18155 WHERE a=17051; UPDATE t2 SET b=25597 WHERE a=17052; UPDATE t2 SET b=43384 WHERE a=17053; UPDATE t2 SET b=20453 WHERE a=17054; UPDATE t2 SET b=92662 WHERE a=17055; UPDATE t2 SET b=5046 WHERE a=17056; UPDATE t2 SET b=99482 WHERE a=17057; UPDATE t2 SET b=20112 WHERE a=17058; UPDATE t2 SET b=47390 WHERE a=17059; UPDATE t2 SET b=25312 WHERE a=17060; UPDATE t2 SET b=53544 WHERE a=17061; UPDATE t2 SET b=64869 WHERE a=17062; UPDATE t2 SET b=99677 WHERE a=17063; UPDATE t2 SET b=66710 WHERE a=17064; UPDATE t2 SET b=98958 WHERE a=17065; UPDATE t2 SET b=93144 WHERE a=17066; UPDATE t2 SET b=84750 WHERE a=17067; UPDATE t2 SET b=55982 WHERE a=17068; UPDATE t2 SET b=25765 WHERE a=17069; UPDATE t2 SET b=33164 WHERE a=17070; UPDATE t2 SET b=48046 WHERE a=17071; UPDATE t2 SET b=78408 WHERE a=17072; UPDATE t2 SET b=80861 WHERE a=17073; UPDATE t2 SET b=18747 WHERE a=17074; UPDATE t2 SET b=99057 WHERE a=17075; UPDATE t2 SET b=33228 WHERE a=17076; UPDATE t2 SET b=18524 WHERE a=17077; UPDATE t2 SET b=26170 WHERE a=17078; UPDATE t2 SET b=68286 WHERE a=17079; UPDATE t2 SET b=4914 WHERE a=17080; UPDATE t2 SET b=4019 WHERE a=17081; UPDATE t2 SET b=98811 WHERE a=17082; UPDATE t2 SET b=44765 WHERE a=17083; UPDATE t2 SET b=1308 WHERE a=17084; UPDATE t2 SET b=16805 WHERE a=17085; UPDATE t2 SET b=1395 WHERE a=17086; UPDATE t2 SET b=20619 WHERE a=17087; UPDATE t2 SET b=76051 WHERE a=17088; UPDATE t2 SET b=52822 WHERE a=17089; UPDATE t2 SET b=80890 WHERE a=17090; UPDATE t2 SET b=65241 WHERE a=17091; UPDATE t2 SET b=68613 WHERE a=17092; UPDATE t2 SET b=5847 WHERE a=17093; UPDATE t2 SET b=62334 WHERE a=17094; UPDATE t2 SET b=21482 WHERE a=17095; UPDATE t2 SET b=61742 WHERE a=17096; UPDATE t2 SET b=64678 WHERE a=17097; UPDATE t2 SET b=16406 WHERE a=17098; UPDATE t2 SET b=97110 WHERE a=17099; UPDATE t2 SET b=71839 WHERE a=17100; UPDATE t2 SET b=92958 WHERE a=17101; UPDATE t2 SET b=55968 WHERE a=17102; UPDATE t2 SET b=51056 WHERE a=17103; UPDATE t2 SET b=69771 WHERE a=17104; UPDATE t2 SET b=95481 WHERE a=17105; UPDATE t2 SET b=18556 WHERE a=17106; UPDATE t2 SET b=26502 WHERE a=17107; UPDATE t2 SET b=73953 WHERE a=17108; UPDATE t2 SET b=15149 WHERE a=17109; UPDATE t2 SET b=74085 WHERE a=17110; UPDATE t2 SET b=94637 WHERE a=17111; UPDATE t2 SET b=21685 WHERE a=17112; UPDATE t2 SET b=27214 WHERE a=17113; UPDATE t2 SET b=29901 WHERE a=17114; UPDATE t2 SET b=71020 WHERE a=17115; UPDATE t2 SET b=59302 WHERE a=17116; UPDATE t2 SET b=40460 WHERE a=17117; UPDATE t2 SET b=49298 WHERE a=17118; UPDATE t2 SET b=46273 WHERE a=17119; UPDATE t2 SET b=35963 WHERE a=17120; UPDATE t2 SET b=81084 WHERE a=17121; UPDATE t2 SET b=77402 WHERE a=17122; UPDATE t2 SET b=18355 WHERE a=17123; UPDATE t2 SET b=77618 WHERE a=17124; UPDATE t2 SET b=76430 WHERE a=17125; UPDATE t2 SET b=94417 WHERE a=17126; UPDATE t2 SET b=47593 WHERE a=17127; UPDATE t2 SET b=78987 WHERE a=17128; UPDATE t2 SET b=9827 WHERE a=17129; UPDATE t2 SET b=85251 WHERE a=17130; UPDATE t2 SET b=59111 WHERE a=17131; UPDATE t2 SET b=54701 WHERE a=17132; UPDATE t2 SET b=28062 WHERE a=17133; UPDATE t2 SET b=38177 WHERE a=17134; UPDATE t2 SET b=94121 WHERE a=17135; UPDATE t2 SET b=82967 WHERE a=17136; UPDATE t2 SET b=4637 WHERE a=17137; UPDATE t2 SET b=14215 WHERE a=17138; UPDATE t2 SET b=29219 WHERE a=17139; UPDATE t2 SET b=32458 WHERE a=17140; UPDATE t2 SET b=97969 WHERE a=17141; UPDATE t2 SET b=54130 WHERE a=17142; UPDATE t2 SET b=61161 WHERE a=17143; UPDATE t2 SET b=65736 WHERE a=17144; UPDATE t2 SET b=21973 WHERE a=17145; UPDATE t2 SET b=67393 WHERE a=17146; UPDATE t2 SET b=30018 WHERE a=17147; UPDATE t2 SET b=37056 WHERE a=17148; UPDATE t2 SET b=80845 WHERE a=17149; UPDATE t2 SET b=61300 WHERE a=17150; UPDATE t2 SET b=90125 WHERE a=17151; UPDATE t2 SET b=66013 WHERE a=17152; UPDATE t2 SET b=52379 WHERE a=17153; UPDATE t2 SET b=7241 WHERE a=17154; UPDATE t2 SET b=76452 WHERE a=17155; UPDATE t2 SET b=74592 WHERE a=17156; UPDATE t2 SET b=10964 WHERE a=17157; UPDATE t2 SET b=34721 WHERE a=17158; UPDATE t2 SET b=72094 WHERE a=17159; UPDATE t2 SET b=84863 WHERE a=17160; UPDATE t2 SET b=72715 WHERE a=17161; UPDATE t2 SET b=50693 WHERE a=17162; UPDATE t2 SET b=15447 WHERE a=17163; UPDATE t2 SET b=51417 WHERE a=17164; UPDATE t2 SET b=10281 WHERE a=17165; UPDATE t2 SET b=44941 WHERE a=17166; UPDATE t2 SET b=51088 WHERE a=17167; UPDATE t2 SET b=27356 WHERE a=17168; UPDATE t2 SET b=87150 WHERE a=17169; UPDATE t2 SET b=44619 WHERE a=17170; UPDATE t2 SET b=11430 WHERE a=17171; UPDATE t2 SET b=79574 WHERE a=17172; UPDATE t2 SET b=90799 WHERE a=17173; UPDATE t2 SET b=68738 WHERE a=17174; UPDATE t2 SET b=9490 WHERE a=17175; UPDATE t2 SET b=16377 WHERE a=17176; UPDATE t2 SET b=21130 WHERE a=17177; UPDATE t2 SET b=65906 WHERE a=17178; UPDATE t2 SET b=2021 WHERE a=17179; UPDATE t2 SET b=27632 WHERE a=17180; UPDATE t2 SET b=58423 WHERE a=17181; UPDATE t2 SET b=36540 WHERE a=17182; UPDATE t2 SET b=83687 WHERE a=17183; UPDATE t2 SET b=31606 WHERE a=17184; UPDATE t2 SET b=18457 WHERE a=17185; UPDATE t2 SET b=78925 WHERE a=17186; UPDATE t2 SET b=1335 WHERE a=17187; UPDATE t2 SET b=17866 WHERE a=17188; UPDATE t2 SET b=93602 WHERE a=17189; UPDATE t2 SET b=78190 WHERE a=17190; UPDATE t2 SET b=73851 WHERE a=17191; UPDATE t2 SET b=55555 WHERE a=17192; UPDATE t2 SET b=52275 WHERE a=17193; UPDATE t2 SET b=62535 WHERE a=17194; UPDATE t2 SET b=26477 WHERE a=17195; UPDATE t2 SET b=47369 WHERE a=17196; UPDATE t2 SET b=88149 WHERE a=17197; UPDATE t2 SET b=97500 WHERE a=17198; UPDATE t2 SET b=42776 WHERE a=17199; UPDATE t2 SET b=1869 WHERE a=17200; UPDATE t2 SET b=93283 WHERE a=17201; UPDATE t2 SET b=87447 WHERE a=17202; UPDATE t2 SET b=50028 WHERE a=17203; UPDATE t2 SET b=79674 WHERE a=17204; UPDATE t2 SET b=45041 WHERE a=17205; UPDATE t2 SET b=46301 WHERE a=17206; UPDATE t2 SET b=71728 WHERE a=17207; UPDATE t2 SET b=60104 WHERE a=17208; UPDATE t2 SET b=66050 WHERE a=17209; UPDATE t2 SET b=13111 WHERE a=17210; UPDATE t2 SET b=90640 WHERE a=17211; UPDATE t2 SET b=30860 WHERE a=17212; UPDATE t2 SET b=6749 WHERE a=17213; UPDATE t2 SET b=24517 WHERE a=17214; UPDATE t2 SET b=51164 WHERE a=17215; UPDATE t2 SET b=73726 WHERE a=17216; UPDATE t2 SET b=97018 WHERE a=17217; UPDATE t2 SET b=42571 WHERE a=17218; UPDATE t2 SET b=58329 WHERE a=17219; UPDATE t2 SET b=77033 WHERE a=17220; UPDATE t2 SET b=95957 WHERE a=17221; UPDATE t2 SET b=88990 WHERE a=17222; UPDATE t2 SET b=78213 WHERE a=17223; UPDATE t2 SET b=31195 WHERE a=17224; UPDATE t2 SET b=47176 WHERE a=17225; UPDATE t2 SET b=32873 WHERE a=17226; UPDATE t2 SET b=46275 WHERE a=17227; UPDATE t2 SET b=27211 WHERE a=17228; UPDATE t2 SET b=96907 WHERE a=17229; UPDATE t2 SET b=55477 WHERE a=17230; UPDATE t2 SET b=7583 WHERE a=17231; UPDATE t2 SET b=35102 WHERE a=17232; UPDATE t2 SET b=61538 WHERE a=17233; UPDATE t2 SET b=78723 WHERE a=17234; UPDATE t2 SET b=44221 WHERE a=17235; UPDATE t2 SET b=83400 WHERE a=17236; UPDATE t2 SET b=15597 WHERE a=17237; UPDATE t2 SET b=77077 WHERE a=17238; UPDATE t2 SET b=25006 WHERE a=17239; UPDATE t2 SET b=3217 WHERE a=17240; UPDATE t2 SET b=13454 WHERE a=17241; UPDATE t2 SET b=11366 WHERE a=17242; UPDATE t2 SET b=73738 WHERE a=17243; UPDATE t2 SET b=50894 WHERE a=17244; UPDATE t2 SET b=32864 WHERE a=17245; UPDATE t2 SET b=34710 WHERE a=17246; UPDATE t2 SET b=10737 WHERE a=17247; UPDATE t2 SET b=52345 WHERE a=17248; UPDATE t2 SET b=81521 WHERE a=17249; UPDATE t2 SET b=29499 WHERE a=17250; UPDATE t2 SET b=79824 WHERE a=17251; UPDATE t2 SET b=65976 WHERE a=17252; UPDATE t2 SET b=14319 WHERE a=17253; UPDATE t2 SET b=72801 WHERE a=17254; UPDATE t2 SET b=31717 WHERE a=17255; UPDATE t2 SET b=56565 WHERE a=17256; UPDATE t2 SET b=39099 WHERE a=17257; UPDATE t2 SET b=34286 WHERE a=17258; UPDATE t2 SET b=77036 WHERE a=17259; UPDATE t2 SET b=42471 WHERE a=17260; UPDATE t2 SET b=83023 WHERE a=17261; UPDATE t2 SET b=27142 WHERE a=17262; UPDATE t2 SET b=32599 WHERE a=17263; UPDATE t2 SET b=54530 WHERE a=17264; UPDATE t2 SET b=71378 WHERE a=17265; UPDATE t2 SET b=88183 WHERE a=17266; UPDATE t2 SET b=93714 WHERE a=17267; UPDATE t2 SET b=54256 WHERE a=17268; UPDATE t2 SET b=71479 WHERE a=17269; UPDATE t2 SET b=78222 WHERE a=17270; UPDATE t2 SET b=50286 WHERE a=17271; UPDATE t2 SET b=26601 WHERE a=17272; UPDATE t2 SET b=33700 WHERE a=17273; UPDATE t2 SET b=36836 WHERE a=17274; UPDATE t2 SET b=9919 WHERE a=17275; UPDATE t2 SET b=69674 WHERE a=17276; UPDATE t2 SET b=19075 WHERE a=17277; UPDATE t2 SET b=68283 WHERE a=17278; UPDATE t2 SET b=46529 WHERE a=17279; UPDATE t2 SET b=75832 WHERE a=17280; UPDATE t2 SET b=33386 WHERE a=17281; UPDATE t2 SET b=6776 WHERE a=17282; UPDATE t2 SET b=78517 WHERE a=17283; UPDATE t2 SET b=58779 WHERE a=17284; UPDATE t2 SET b=3996 WHERE a=17285; UPDATE t2 SET b=80339 WHERE a=17286; UPDATE t2 SET b=46262 WHERE a=17287; UPDATE t2 SET b=54853 WHERE a=17288; UPDATE t2 SET b=47360 WHERE a=17289; UPDATE t2 SET b=72363 WHERE a=17290; UPDATE t2 SET b=18114 WHERE a=17291; UPDATE t2 SET b=22641 WHERE a=17292; UPDATE t2 SET b=58923 WHERE a=17293; UPDATE t2 SET b=91852 WHERE a=17294; UPDATE t2 SET b=74191 WHERE a=17295; UPDATE t2 SET b=65324 WHERE a=17296; UPDATE t2 SET b=19509 WHERE a=17297; UPDATE t2 SET b=56899 WHERE a=17298; UPDATE t2 SET b=93011 WHERE a=17299; UPDATE t2 SET b=12934 WHERE a=17300; UPDATE t2 SET b=50882 WHERE a=17301; UPDATE t2 SET b=79069 WHERE a=17302; UPDATE t2 SET b=16152 WHERE a=17303; UPDATE t2 SET b=6798 WHERE a=17304; UPDATE t2 SET b=86286 WHERE a=17305; UPDATE t2 SET b=64921 WHERE a=17306; UPDATE t2 SET b=46019 WHERE a=17307; UPDATE t2 SET b=65105 WHERE a=17308; UPDATE t2 SET b=15463 WHERE a=17309; UPDATE t2 SET b=72952 WHERE a=17310; UPDATE t2 SET b=56177 WHERE a=17311; UPDATE t2 SET b=58724 WHERE a=17312; UPDATE t2 SET b=9386 WHERE a=17313; UPDATE t2 SET b=11828 WHERE a=17314; UPDATE t2 SET b=68743 WHERE a=17315; UPDATE t2 SET b=49875 WHERE a=17316; UPDATE t2 SET b=6661 WHERE a=17317; UPDATE t2 SET b=91041 WHERE a=17318; UPDATE t2 SET b=55590 WHERE a=17319; UPDATE t2 SET b=16276 WHERE a=17320; UPDATE t2 SET b=81186 WHERE a=17321; UPDATE t2 SET b=84815 WHERE a=17322; UPDATE t2 SET b=42845 WHERE a=17323; UPDATE t2 SET b=58162 WHERE a=17324; UPDATE t2 SET b=50952 WHERE a=17325; UPDATE t2 SET b=75971 WHERE a=17326; UPDATE t2 SET b=59797 WHERE a=17327; UPDATE t2 SET b=48464 WHERE a=17328; UPDATE t2 SET b=92583 WHERE a=17329; UPDATE t2 SET b=77693 WHERE a=17330; UPDATE t2 SET b=90677 WHERE a=17331; UPDATE t2 SET b=2390 WHERE a=17332; UPDATE t2 SET b=96179 WHERE a=17333; UPDATE t2 SET b=18774 WHERE a=17334; UPDATE t2 SET b=49357 WHERE a=17335; UPDATE t2 SET b=60556 WHERE a=17336; UPDATE t2 SET b=36828 WHERE a=17337; UPDATE t2 SET b=21179 WHERE a=17338; UPDATE t2 SET b=89971 WHERE a=17339; UPDATE t2 SET b=34651 WHERE a=17340; UPDATE t2 SET b=10776 WHERE a=17341; UPDATE t2 SET b=63043 WHERE a=17342; UPDATE t2 SET b=20176 WHERE a=17343; UPDATE t2 SET b=96402 WHERE a=17344; UPDATE t2 SET b=76489 WHERE a=17345; UPDATE t2 SET b=89386 WHERE a=17346; UPDATE t2 SET b=90884 WHERE a=17347; UPDATE t2 SET b=35905 WHERE a=17348; UPDATE t2 SET b=82698 WHERE a=17349; UPDATE t2 SET b=43984 WHERE a=17350; UPDATE t2 SET b=90243 WHERE a=17351; UPDATE t2 SET b=35656 WHERE a=17352; UPDATE t2 SET b=76367 WHERE a=17353; UPDATE t2 SET b=86970 WHERE a=17354; UPDATE t2 SET b=68065 WHERE a=17355; UPDATE t2 SET b=31927 WHERE a=17356; UPDATE t2 SET b=46739 WHERE a=17357; UPDATE t2 SET b=29522 WHERE a=17358; UPDATE t2 SET b=82651 WHERE a=17359; UPDATE t2 SET b=85497 WHERE a=17360; UPDATE t2 SET b=91565 WHERE a=17361; UPDATE t2 SET b=8141 WHERE a=17362; UPDATE t2 SET b=39288 WHERE a=17363; UPDATE t2 SET b=12550 WHERE a=17364; UPDATE t2 SET b=3422 WHERE a=17365; UPDATE t2 SET b=14389 WHERE a=17366; UPDATE t2 SET b=32550 WHERE a=17367; UPDATE t2 SET b=82926 WHERE a=17368; UPDATE t2 SET b=72384 WHERE a=17369; UPDATE t2 SET b=15180 WHERE a=17370; UPDATE t2 SET b=50250 WHERE a=17371; UPDATE t2 SET b=744 WHERE a=17372; UPDATE t2 SET b=96372 WHERE a=17373; UPDATE t2 SET b=19910 WHERE a=17374; UPDATE t2 SET b=49711 WHERE a=17375; UPDATE t2 SET b=486 WHERE a=17376; UPDATE t2 SET b=90017 WHERE a=17377; UPDATE t2 SET b=17117 WHERE a=17378; UPDATE t2 SET b=41474 WHERE a=17379; UPDATE t2 SET b=85853 WHERE a=17380; UPDATE t2 SET b=93339 WHERE a=17381; UPDATE t2 SET b=91435 WHERE a=17382; UPDATE t2 SET b=70933 WHERE a=17383; UPDATE t2 SET b=57315 WHERE a=17384; UPDATE t2 SET b=67940 WHERE a=17385; UPDATE t2 SET b=70892 WHERE a=17386; UPDATE t2 SET b=10549 WHERE a=17387; UPDATE t2 SET b=30151 WHERE a=17388; UPDATE t2 SET b=3623 WHERE a=17389; UPDATE t2 SET b=25779 WHERE a=17390; UPDATE t2 SET b=56104 WHERE a=17391; UPDATE t2 SET b=41088 WHERE a=17392; UPDATE t2 SET b=5369 WHERE a=17393; UPDATE t2 SET b=67360 WHERE a=17394; UPDATE t2 SET b=50377 WHERE a=17395; UPDATE t2 SET b=78399 WHERE a=17396; UPDATE t2 SET b=92192 WHERE a=17397; UPDATE t2 SET b=26596 WHERE a=17398; UPDATE t2 SET b=10532 WHERE a=17399; UPDATE t2 SET b=75249 WHERE a=17400; UPDATE t2 SET b=97076 WHERE a=17401; UPDATE t2 SET b=90052 WHERE a=17402; UPDATE t2 SET b=29379 WHERE a=17403; UPDATE t2 SET b=47629 WHERE a=17404; UPDATE t2 SET b=90246 WHERE a=17405; UPDATE t2 SET b=36829 WHERE a=17406; UPDATE t2 SET b=8374 WHERE a=17407; UPDATE t2 SET b=18927 WHERE a=17408; UPDATE t2 SET b=24053 WHERE a=17409; UPDATE t2 SET b=25862 WHERE a=17410; UPDATE t2 SET b=70018 WHERE a=17411; UPDATE t2 SET b=98796 WHERE a=17412; UPDATE t2 SET b=97729 WHERE a=17413; UPDATE t2 SET b=73064 WHERE a=17414; UPDATE t2 SET b=54441 WHERE a=17415; UPDATE t2 SET b=64071 WHERE a=17416; UPDATE t2 SET b=75401 WHERE a=17417; UPDATE t2 SET b=62467 WHERE a=17418; UPDATE t2 SET b=52853 WHERE a=17419; UPDATE t2 SET b=22239 WHERE a=17420; UPDATE t2 SET b=11128 WHERE a=17421; UPDATE t2 SET b=86187 WHERE a=17422; UPDATE t2 SET b=84147 WHERE a=17423; UPDATE t2 SET b=48932 WHERE a=17424; UPDATE t2 SET b=21695 WHERE a=17425; UPDATE t2 SET b=94972 WHERE a=17426; UPDATE t2 SET b=75501 WHERE a=17427; UPDATE t2 SET b=40789 WHERE a=17428; UPDATE t2 SET b=23176 WHERE a=17429; UPDATE t2 SET b=73711 WHERE a=17430; UPDATE t2 SET b=95284 WHERE a=17431; UPDATE t2 SET b=40769 WHERE a=17432; UPDATE t2 SET b=2000 WHERE a=17433; UPDATE t2 SET b=85550 WHERE a=17434; UPDATE t2 SET b=61581 WHERE a=17435; UPDATE t2 SET b=63541 WHERE a=17436; UPDATE t2 SET b=52253 WHERE a=17437; UPDATE t2 SET b=21950 WHERE a=17438; UPDATE t2 SET b=47170 WHERE a=17439; UPDATE t2 SET b=8388 WHERE a=17440; UPDATE t2 SET b=12002 WHERE a=17441; UPDATE t2 SET b=21143 WHERE a=17442; UPDATE t2 SET b=97710 WHERE a=17443; UPDATE t2 SET b=41977 WHERE a=17444; UPDATE t2 SET b=44406 WHERE a=17445; UPDATE t2 SET b=85494 WHERE a=17446; UPDATE t2 SET b=41341 WHERE a=17447; UPDATE t2 SET b=98279 WHERE a=17448; UPDATE t2 SET b=70947 WHERE a=17449; UPDATE t2 SET b=68591 WHERE a=17450; UPDATE t2 SET b=50672 WHERE a=17451; UPDATE t2 SET b=80240 WHERE a=17452; UPDATE t2 SET b=10325 WHERE a=17453; UPDATE t2 SET b=67746 WHERE a=17454; UPDATE t2 SET b=12116 WHERE a=17455; UPDATE t2 SET b=22148 WHERE a=17456; UPDATE t2 SET b=50798 WHERE a=17457; UPDATE t2 SET b=34747 WHERE a=17458; UPDATE t2 SET b=37554 WHERE a=17459; UPDATE t2 SET b=5944 WHERE a=17460; UPDATE t2 SET b=28343 WHERE a=17461; UPDATE t2 SET b=23136 WHERE a=17462; UPDATE t2 SET b=78314 WHERE a=17463; UPDATE t2 SET b=7609 WHERE a=17464; UPDATE t2 SET b=20426 WHERE a=17465; UPDATE t2 SET b=34820 WHERE a=17466; UPDATE t2 SET b=98876 WHERE a=17467; UPDATE t2 SET b=42242 WHERE a=17468; UPDATE t2 SET b=96273 WHERE a=17469; UPDATE t2 SET b=26611 WHERE a=17470; UPDATE t2 SET b=23133 WHERE a=17471; UPDATE t2 SET b=23554 WHERE a=17472; UPDATE t2 SET b=29325 WHERE a=17473; UPDATE t2 SET b=56872 WHERE a=17474; UPDATE t2 SET b=10732 WHERE a=17475; UPDATE t2 SET b=64690 WHERE a=17476; UPDATE t2 SET b=47781 WHERE a=17477; UPDATE t2 SET b=7467 WHERE a=17478; UPDATE t2 SET b=19520 WHERE a=17479; UPDATE t2 SET b=89965 WHERE a=17480; UPDATE t2 SET b=42334 WHERE a=17481; UPDATE t2 SET b=16256 WHERE a=17482; UPDATE t2 SET b=68991 WHERE a=17483; UPDATE t2 SET b=14584 WHERE a=17484; UPDATE t2 SET b=75462 WHERE a=17485; UPDATE t2 SET b=74086 WHERE a=17486; UPDATE t2 SET b=57569 WHERE a=17487; UPDATE t2 SET b=53391 WHERE a=17488; UPDATE t2 SET b=27903 WHERE a=17489; UPDATE t2 SET b=43494 WHERE a=17490; UPDATE t2 SET b=65106 WHERE a=17491; UPDATE t2 SET b=20545 WHERE a=17492; UPDATE t2 SET b=13379 WHERE a=17493; UPDATE t2 SET b=59500 WHERE a=17494; UPDATE t2 SET b=52367 WHERE a=17495; UPDATE t2 SET b=52252 WHERE a=17496; UPDATE t2 SET b=27176 WHERE a=17497; UPDATE t2 SET b=28640 WHERE a=17498; UPDATE t2 SET b=5010 WHERE a=17499; UPDATE t2 SET b=32405 WHERE a=17500; UPDATE t2 SET b=76310 WHERE a=17501; UPDATE t2 SET b=78324 WHERE a=17502; UPDATE t2 SET b=8014 WHERE a=17503; UPDATE t2 SET b=48799 WHERE a=17504; UPDATE t2 SET b=34608 WHERE a=17505; UPDATE t2 SET b=52833 WHERE a=17506; UPDATE t2 SET b=95276 WHERE a=17507; UPDATE t2 SET b=81462 WHERE a=17508; UPDATE t2 SET b=27569 WHERE a=17509; UPDATE t2 SET b=70780 WHERE a=17510; UPDATE t2 SET b=45157 WHERE a=17511; UPDATE t2 SET b=12130 WHERE a=17512; UPDATE t2 SET b=70136 WHERE a=17513; UPDATE t2 SET b=13813 WHERE a=17514; UPDATE t2 SET b=18218 WHERE a=17515; UPDATE t2 SET b=89530 WHERE a=17516; UPDATE t2 SET b=44092 WHERE a=17517; UPDATE t2 SET b=57939 WHERE a=17518; UPDATE t2 SET b=99322 WHERE a=17519; UPDATE t2 SET b=645 WHERE a=17520; UPDATE t2 SET b=73632 WHERE a=17521; UPDATE t2 SET b=75504 WHERE a=17522; UPDATE t2 SET b=35026 WHERE a=17523; UPDATE t2 SET b=38393 WHERE a=17524; UPDATE t2 SET b=46993 WHERE a=17525; UPDATE t2 SET b=49593 WHERE a=17526; UPDATE t2 SET b=83873 WHERE a=17527; UPDATE t2 SET b=42139 WHERE a=17528; UPDATE t2 SET b=68527 WHERE a=17529; UPDATE t2 SET b=91439 WHERE a=17530; UPDATE t2 SET b=32773 WHERE a=17531; UPDATE t2 SET b=8115 WHERE a=17532; UPDATE t2 SET b=65705 WHERE a=17533; UPDATE t2 SET b=47416 WHERE a=17534; UPDATE t2 SET b=38910 WHERE a=17535; UPDATE t2 SET b=67829 WHERE a=17536; UPDATE t2 SET b=1131 WHERE a=17537; UPDATE t2 SET b=3272 WHERE a=17538; UPDATE t2 SET b=53880 WHERE a=17539; UPDATE t2 SET b=88559 WHERE a=17540; UPDATE t2 SET b=53108 WHERE a=17541; UPDATE t2 SET b=41075 WHERE a=17542; UPDATE t2 SET b=16541 WHERE a=17543; UPDATE t2 SET b=88789 WHERE a=17544; UPDATE t2 SET b=47229 WHERE a=17545; UPDATE t2 SET b=65054 WHERE a=17546; UPDATE t2 SET b=34100 WHERE a=17547; UPDATE t2 SET b=55820 WHERE a=17548; UPDATE t2 SET b=17564 WHERE a=17549; UPDATE t2 SET b=1008 WHERE a=17550; UPDATE t2 SET b=98744 WHERE a=17551; UPDATE t2 SET b=10085 WHERE a=17552; UPDATE t2 SET b=43638 WHERE a=17553; UPDATE t2 SET b=44839 WHERE a=17554; UPDATE t2 SET b=61357 WHERE a=17555; UPDATE t2 SET b=15966 WHERE a=17556; UPDATE t2 SET b=54153 WHERE a=17557; UPDATE t2 SET b=33545 WHERE a=17558; UPDATE t2 SET b=24559 WHERE a=17559; UPDATE t2 SET b=8460 WHERE a=17560; UPDATE t2 SET b=6218 WHERE a=17561; UPDATE t2 SET b=11394 WHERE a=17562; UPDATE t2 SET b=73162 WHERE a=17563; UPDATE t2 SET b=43386 WHERE a=17564; UPDATE t2 SET b=75130 WHERE a=17565; UPDATE t2 SET b=12800 WHERE a=17566; UPDATE t2 SET b=42225 WHERE a=17567; UPDATE t2 SET b=40780 WHERE a=17568; UPDATE t2 SET b=3176 WHERE a=17569; UPDATE t2 SET b=79872 WHERE a=17570; UPDATE t2 SET b=89911 WHERE a=17571; UPDATE t2 SET b=43394 WHERE a=17572; UPDATE t2 SET b=81617 WHERE a=17573; UPDATE t2 SET b=84066 WHERE a=17574; UPDATE t2 SET b=90947 WHERE a=17575; UPDATE t2 SET b=52643 WHERE a=17576; UPDATE t2 SET b=24115 WHERE a=17577; UPDATE t2 SET b=16890 WHERE a=17578; UPDATE t2 SET b=50484 WHERE a=17579; UPDATE t2 SET b=61 WHERE a=17580; UPDATE t2 SET b=74404 WHERE a=17581; UPDATE t2 SET b=75397 WHERE a=17582; UPDATE t2 SET b=50125 WHERE a=17583; UPDATE t2 SET b=5456 WHERE a=17584; UPDATE t2 SET b=65264 WHERE a=17585; UPDATE t2 SET b=3030 WHERE a=17586; UPDATE t2 SET b=80088 WHERE a=17587; UPDATE t2 SET b=46781 WHERE a=17588; UPDATE t2 SET b=52602 WHERE a=17589; UPDATE t2 SET b=65137 WHERE a=17590; UPDATE t2 SET b=57954 WHERE a=17591; UPDATE t2 SET b=14289 WHERE a=17592; UPDATE t2 SET b=49166 WHERE a=17593; UPDATE t2 SET b=57366 WHERE a=17594; UPDATE t2 SET b=91792 WHERE a=17595; UPDATE t2 SET b=9961 WHERE a=17596; UPDATE t2 SET b=50870 WHERE a=17597; UPDATE t2 SET b=15064 WHERE a=17598; UPDATE t2 SET b=90522 WHERE a=17599; UPDATE t2 SET b=5486 WHERE a=17600; UPDATE t2 SET b=85196 WHERE a=17601; UPDATE t2 SET b=16081 WHERE a=17602; UPDATE t2 SET b=84789 WHERE a=17603; UPDATE t2 SET b=42536 WHERE a=17604; UPDATE t2 SET b=7305 WHERE a=17605; UPDATE t2 SET b=36341 WHERE a=17606; UPDATE t2 SET b=74019 WHERE a=17607; UPDATE t2 SET b=1465 WHERE a=17608; UPDATE t2 SET b=90094 WHERE a=17609; UPDATE t2 SET b=43947 WHERE a=17610; UPDATE t2 SET b=30027 WHERE a=17611; UPDATE t2 SET b=9700 WHERE a=17612; UPDATE t2 SET b=58613 WHERE a=17613; UPDATE t2 SET b=78799 WHERE a=17614; UPDATE t2 SET b=22564 WHERE a=17615; UPDATE t2 SET b=23326 WHERE a=17616; UPDATE t2 SET b=45402 WHERE a=17617; UPDATE t2 SET b=37189 WHERE a=17618; UPDATE t2 SET b=66266 WHERE a=17619; UPDATE t2 SET b=53557 WHERE a=17620; UPDATE t2 SET b=43157 WHERE a=17621; UPDATE t2 SET b=23214 WHERE a=17622; UPDATE t2 SET b=77545 WHERE a=17623; UPDATE t2 SET b=81432 WHERE a=17624; UPDATE t2 SET b=21816 WHERE a=17625; UPDATE t2 SET b=78154 WHERE a=17626; UPDATE t2 SET b=80438 WHERE a=17627; UPDATE t2 SET b=21218 WHERE a=17628; UPDATE t2 SET b=2679 WHERE a=17629; UPDATE t2 SET b=27302 WHERE a=17630; UPDATE t2 SET b=93785 WHERE a=17631; UPDATE t2 SET b=32782 WHERE a=17632; UPDATE t2 SET b=14147 WHERE a=17633; UPDATE t2 SET b=62375 WHERE a=17634; UPDATE t2 SET b=68133 WHERE a=17635; UPDATE t2 SET b=91644 WHERE a=17636; UPDATE t2 SET b=13375 WHERE a=17637; UPDATE t2 SET b=93967 WHERE a=17638; UPDATE t2 SET b=46523 WHERE a=17639; UPDATE t2 SET b=76983 WHERE a=17640; UPDATE t2 SET b=71597 WHERE a=17641; UPDATE t2 SET b=18147 WHERE a=17642; UPDATE t2 SET b=87032 WHERE a=17643; UPDATE t2 SET b=96056 WHERE a=17644; UPDATE t2 SET b=89873 WHERE a=17645; UPDATE t2 SET b=83196 WHERE a=17646; UPDATE t2 SET b=59202 WHERE a=17647; UPDATE t2 SET b=18753 WHERE a=17648; UPDATE t2 SET b=39229 WHERE a=17649; UPDATE t2 SET b=42336 WHERE a=17650; UPDATE t2 SET b=89298 WHERE a=17651; UPDATE t2 SET b=43787 WHERE a=17652; UPDATE t2 SET b=98150 WHERE a=17653; UPDATE t2 SET b=98256 WHERE a=17654; UPDATE t2 SET b=26841 WHERE a=17655; UPDATE t2 SET b=24355 WHERE a=17656; UPDATE t2 SET b=28757 WHERE a=17657; UPDATE t2 SET b=11140 WHERE a=17658; UPDATE t2 SET b=90134 WHERE a=17659; UPDATE t2 SET b=2827 WHERE a=17660; UPDATE t2 SET b=2453 WHERE a=17661; UPDATE t2 SET b=41030 WHERE a=17662; UPDATE t2 SET b=32677 WHERE a=17663; UPDATE t2 SET b=46240 WHERE a=17664; UPDATE t2 SET b=40648 WHERE a=17665; UPDATE t2 SET b=61376 WHERE a=17666; UPDATE t2 SET b=52478 WHERE a=17667; UPDATE t2 SET b=60585 WHERE a=17668; UPDATE t2 SET b=87798 WHERE a=17669; UPDATE t2 SET b=9686 WHERE a=17670; UPDATE t2 SET b=39274 WHERE a=17671; UPDATE t2 SET b=94401 WHERE a=17672; UPDATE t2 SET b=28622 WHERE a=17673; UPDATE t2 SET b=73164 WHERE a=17674; UPDATE t2 SET b=87609 WHERE a=17675; UPDATE t2 SET b=14873 WHERE a=17676; UPDATE t2 SET b=51501 WHERE a=17677; UPDATE t2 SET b=59261 WHERE a=17678; UPDATE t2 SET b=82878 WHERE a=17679; UPDATE t2 SET b=28771 WHERE a=17680; UPDATE t2 SET b=46281 WHERE a=17681; UPDATE t2 SET b=43078 WHERE a=17682; UPDATE t2 SET b=7778 WHERE a=17683; UPDATE t2 SET b=74525 WHERE a=17684; UPDATE t2 SET b=95528 WHERE a=17685; UPDATE t2 SET b=10146 WHERE a=17686; UPDATE t2 SET b=35141 WHERE a=17687; UPDATE t2 SET b=80157 WHERE a=17688; UPDATE t2 SET b=34667 WHERE a=17689; UPDATE t2 SET b=96056 WHERE a=17690; UPDATE t2 SET b=81281 WHERE a=17691; UPDATE t2 SET b=33658 WHERE a=17692; UPDATE t2 SET b=41942 WHERE a=17693; UPDATE t2 SET b=63776 WHERE a=17694; UPDATE t2 SET b=83937 WHERE a=17695; UPDATE t2 SET b=52043 WHERE a=17696; UPDATE t2 SET b=44802 WHERE a=17697; UPDATE t2 SET b=13992 WHERE a=17698; UPDATE t2 SET b=54976 WHERE a=17699; UPDATE t2 SET b=61105 WHERE a=17700; UPDATE t2 SET b=11791 WHERE a=17701; UPDATE t2 SET b=41655 WHERE a=17702; UPDATE t2 SET b=82820 WHERE a=17703; UPDATE t2 SET b=54796 WHERE a=17704; UPDATE t2 SET b=35574 WHERE a=17705; UPDATE t2 SET b=28614 WHERE a=17706; UPDATE t2 SET b=46262 WHERE a=17707; UPDATE t2 SET b=14085 WHERE a=17708; UPDATE t2 SET b=17631 WHERE a=17709; UPDATE t2 SET b=90486 WHERE a=17710; UPDATE t2 SET b=18725 WHERE a=17711; UPDATE t2 SET b=79797 WHERE a=17712; UPDATE t2 SET b=37212 WHERE a=17713; UPDATE t2 SET b=18027 WHERE a=17714; UPDATE t2 SET b=53200 WHERE a=17715; UPDATE t2 SET b=89395 WHERE a=17716; UPDATE t2 SET b=36277 WHERE a=17717; UPDATE t2 SET b=87947 WHERE a=17718; UPDATE t2 SET b=28035 WHERE a=17719; UPDATE t2 SET b=25 WHERE a=17720; UPDATE t2 SET b=71298 WHERE a=17721; UPDATE t2 SET b=16456 WHERE a=17722; UPDATE t2 SET b=4774 WHERE a=17723; UPDATE t2 SET b=72417 WHERE a=17724; UPDATE t2 SET b=96953 WHERE a=17725; UPDATE t2 SET b=54823 WHERE a=17726; UPDATE t2 SET b=50402 WHERE a=17727; UPDATE t2 SET b=1827 WHERE a=17728; UPDATE t2 SET b=91807 WHERE a=17729; UPDATE t2 SET b=6801 WHERE a=17730; UPDATE t2 SET b=52924 WHERE a=17731; UPDATE t2 SET b=41644 WHERE a=17732; UPDATE t2 SET b=52564 WHERE a=17733; UPDATE t2 SET b=83712 WHERE a=17734; UPDATE t2 SET b=64486 WHERE a=17735; UPDATE t2 SET b=11792 WHERE a=17736; UPDATE t2 SET b=69852 WHERE a=17737; UPDATE t2 SET b=35275 WHERE a=17738; UPDATE t2 SET b=70791 WHERE a=17739; UPDATE t2 SET b=96927 WHERE a=17740; UPDATE t2 SET b=44221 WHERE a=17741; UPDATE t2 SET b=47160 WHERE a=17742; UPDATE t2 SET b=19594 WHERE a=17743; UPDATE t2 SET b=84277 WHERE a=17744; UPDATE t2 SET b=77937 WHERE a=17745; UPDATE t2 SET b=79214 WHERE a=17746; UPDATE t2 SET b=20262 WHERE a=17747; UPDATE t2 SET b=66301 WHERE a=17748; UPDATE t2 SET b=31124 WHERE a=17749; UPDATE t2 SET b=34578 WHERE a=17750; UPDATE t2 SET b=7977 WHERE a=17751; UPDATE t2 SET b=43968 WHERE a=17752; UPDATE t2 SET b=87585 WHERE a=17753; UPDATE t2 SET b=89215 WHERE a=17754; UPDATE t2 SET b=35601 WHERE a=17755; UPDATE t2 SET b=58490 WHERE a=17756; UPDATE t2 SET b=47360 WHERE a=17757; UPDATE t2 SET b=49348 WHERE a=17758; UPDATE t2 SET b=33563 WHERE a=17759; UPDATE t2 SET b=6123 WHERE a=17760; UPDATE t2 SET b=93873 WHERE a=17761; UPDATE t2 SET b=66281 WHERE a=17762; UPDATE t2 SET b=80330 WHERE a=17763; UPDATE t2 SET b=90512 WHERE a=17764; UPDATE t2 SET b=71581 WHERE a=17765; UPDATE t2 SET b=92174 WHERE a=17766; UPDATE t2 SET b=88986 WHERE a=17767; UPDATE t2 SET b=48992 WHERE a=17768; UPDATE t2 SET b=87516 WHERE a=17769; UPDATE t2 SET b=16556 WHERE a=17770; UPDATE t2 SET b=8648 WHERE a=17771; UPDATE t2 SET b=46493 WHERE a=17772; UPDATE t2 SET b=98528 WHERE a=17773; UPDATE t2 SET b=83087 WHERE a=17774; UPDATE t2 SET b=58256 WHERE a=17775; UPDATE t2 SET b=80362 WHERE a=17776; UPDATE t2 SET b=1539 WHERE a=17777; UPDATE t2 SET b=31818 WHERE a=17778; UPDATE t2 SET b=54060 WHERE a=17779; UPDATE t2 SET b=82931 WHERE a=17780; UPDATE t2 SET b=67256 WHERE a=17781; UPDATE t2 SET b=966 WHERE a=17782; UPDATE t2 SET b=71067 WHERE a=17783; UPDATE t2 SET b=19241 WHERE a=17784; UPDATE t2 SET b=92880 WHERE a=17785; UPDATE t2 SET b=43054 WHERE a=17786; UPDATE t2 SET b=25672 WHERE a=17787; UPDATE t2 SET b=8783 WHERE a=17788; UPDATE t2 SET b=26135 WHERE a=17789; UPDATE t2 SET b=61300 WHERE a=17790; UPDATE t2 SET b=71409 WHERE a=17791; UPDATE t2 SET b=483 WHERE a=17792; UPDATE t2 SET b=23044 WHERE a=17793; UPDATE t2 SET b=48864 WHERE a=17794; UPDATE t2 SET b=20342 WHERE a=17795; UPDATE t2 SET b=56130 WHERE a=17796; UPDATE t2 SET b=99072 WHERE a=17797; UPDATE t2 SET b=18455 WHERE a=17798; UPDATE t2 SET b=17752 WHERE a=17799; UPDATE t2 SET b=40335 WHERE a=17800; UPDATE t2 SET b=543 WHERE a=17801; UPDATE t2 SET b=96030 WHERE a=17802; UPDATE t2 SET b=85747 WHERE a=17803; UPDATE t2 SET b=15395 WHERE a=17804; UPDATE t2 SET b=23045 WHERE a=17805; UPDATE t2 SET b=66940 WHERE a=17806; UPDATE t2 SET b=44152 WHERE a=17807; UPDATE t2 SET b=71412 WHERE a=17808; UPDATE t2 SET b=52227 WHERE a=17809; UPDATE t2 SET b=55760 WHERE a=17810; UPDATE t2 SET b=81182 WHERE a=17811; UPDATE t2 SET b=71 WHERE a=17812; UPDATE t2 SET b=47077 WHERE a=17813; UPDATE t2 SET b=1468 WHERE a=17814; UPDATE t2 SET b=22888 WHERE a=17815; UPDATE t2 SET b=95593 WHERE a=17816; UPDATE t2 SET b=24263 WHERE a=17817; UPDATE t2 SET b=24533 WHERE a=17818; UPDATE t2 SET b=35355 WHERE a=17819; UPDATE t2 SET b=68422 WHERE a=17820; UPDATE t2 SET b=46946 WHERE a=17821; UPDATE t2 SET b=19663 WHERE a=17822; UPDATE t2 SET b=1428 WHERE a=17823; UPDATE t2 SET b=26645 WHERE a=17824; UPDATE t2 SET b=78292 WHERE a=17825; UPDATE t2 SET b=30033 WHERE a=17826; UPDATE t2 SET b=32285 WHERE a=17827; UPDATE t2 SET b=72538 WHERE a=17828; UPDATE t2 SET b=61891 WHERE a=17829; UPDATE t2 SET b=78426 WHERE a=17830; UPDATE t2 SET b=24601 WHERE a=17831; UPDATE t2 SET b=51673 WHERE a=17832; UPDATE t2 SET b=83339 WHERE a=17833; UPDATE t2 SET b=10618 WHERE a=17834; UPDATE t2 SET b=23785 WHERE a=17835; UPDATE t2 SET b=66867 WHERE a=17836; UPDATE t2 SET b=44142 WHERE a=17837; UPDATE t2 SET b=10870 WHERE a=17838; UPDATE t2 SET b=91042 WHERE a=17839; UPDATE t2 SET b=13797 WHERE a=17840; UPDATE t2 SET b=62988 WHERE a=17841; UPDATE t2 SET b=52356 WHERE a=17842; UPDATE t2 SET b=39793 WHERE a=17843; UPDATE t2 SET b=3257 WHERE a=17844; UPDATE t2 SET b=74848 WHERE a=17845; UPDATE t2 SET b=76764 WHERE a=17846; UPDATE t2 SET b=38238 WHERE a=17847; UPDATE t2 SET b=8490 WHERE a=17848; UPDATE t2 SET b=8319 WHERE a=17849; UPDATE t2 SET b=56310 WHERE a=17850; UPDATE t2 SET b=12392 WHERE a=17851; UPDATE t2 SET b=24253 WHERE a=17852; UPDATE t2 SET b=65717 WHERE a=17853; UPDATE t2 SET b=15317 WHERE a=17854; UPDATE t2 SET b=51343 WHERE a=17855; UPDATE t2 SET b=94469 WHERE a=17856; UPDATE t2 SET b=37560 WHERE a=17857; UPDATE t2 SET b=34606 WHERE a=17858; UPDATE t2 SET b=25263 WHERE a=17859; UPDATE t2 SET b=70453 WHERE a=17860; UPDATE t2 SET b=83322 WHERE a=17861; UPDATE t2 SET b=67468 WHERE a=17862; UPDATE t2 SET b=61075 WHERE a=17863; UPDATE t2 SET b=14252 WHERE a=17864; UPDATE t2 SET b=38089 WHERE a=17865; UPDATE t2 SET b=36729 WHERE a=17866; UPDATE t2 SET b=76349 WHERE a=17867; UPDATE t2 SET b=81735 WHERE a=17868; UPDATE t2 SET b=51585 WHERE a=17869; UPDATE t2 SET b=67035 WHERE a=17870; UPDATE t2 SET b=58229 WHERE a=17871; UPDATE t2 SET b=43847 WHERE a=17872; UPDATE t2 SET b=62790 WHERE a=17873; UPDATE t2 SET b=69223 WHERE a=17874; UPDATE t2 SET b=78223 WHERE a=17875; UPDATE t2 SET b=34229 WHERE a=17876; UPDATE t2 SET b=48303 WHERE a=17877; UPDATE t2 SET b=73471 WHERE a=17878; UPDATE t2 SET b=98884 WHERE a=17879; UPDATE t2 SET b=87507 WHERE a=17880; UPDATE t2 SET b=72091 WHERE a=17881; UPDATE t2 SET b=62403 WHERE a=17882; UPDATE t2 SET b=6415 WHERE a=17883; UPDATE t2 SET b=40433 WHERE a=17884; UPDATE t2 SET b=10246 WHERE a=17885; UPDATE t2 SET b=28753 WHERE a=17886; UPDATE t2 SET b=20785 WHERE a=17887; UPDATE t2 SET b=70680 WHERE a=17888; UPDATE t2 SET b=27507 WHERE a=17889; UPDATE t2 SET b=26154 WHERE a=17890; UPDATE t2 SET b=55535 WHERE a=17891; UPDATE t2 SET b=71302 WHERE a=17892; UPDATE t2 SET b=95949 WHERE a=17893; UPDATE t2 SET b=35155 WHERE a=17894; UPDATE t2 SET b=3262 WHERE a=17895; UPDATE t2 SET b=15878 WHERE a=17896; UPDATE t2 SET b=92945 WHERE a=17897; UPDATE t2 SET b=15434 WHERE a=17898; UPDATE t2 SET b=72904 WHERE a=17899; UPDATE t2 SET b=31459 WHERE a=17900; UPDATE t2 SET b=55281 WHERE a=17901; UPDATE t2 SET b=36863 WHERE a=17902; UPDATE t2 SET b=17348 WHERE a=17903; UPDATE t2 SET b=4520 WHERE a=17904; UPDATE t2 SET b=96424 WHERE a=17905; UPDATE t2 SET b=96427 WHERE a=17906; UPDATE t2 SET b=99214 WHERE a=17907; UPDATE t2 SET b=31001 WHERE a=17908; UPDATE t2 SET b=493 WHERE a=17909; UPDATE t2 SET b=6070 WHERE a=17910; UPDATE t2 SET b=30049 WHERE a=17911; UPDATE t2 SET b=96753 WHERE a=17912; UPDATE t2 SET b=27752 WHERE a=17913; UPDATE t2 SET b=50046 WHERE a=17914; UPDATE t2 SET b=77363 WHERE a=17915; UPDATE t2 SET b=87874 WHERE a=17916; UPDATE t2 SET b=34805 WHERE a=17917; UPDATE t2 SET b=66848 WHERE a=17918; UPDATE t2 SET b=79861 WHERE a=17919; UPDATE t2 SET b=82069 WHERE a=17920; UPDATE t2 SET b=51328 WHERE a=17921; UPDATE t2 SET b=28484 WHERE a=17922; UPDATE t2 SET b=60109 WHERE a=17923; UPDATE t2 SET b=23839 WHERE a=17924; UPDATE t2 SET b=52678 WHERE a=17925; UPDATE t2 SET b=34687 WHERE a=17926; UPDATE t2 SET b=90962 WHERE a=17927; UPDATE t2 SET b=37174 WHERE a=17928; UPDATE t2 SET b=45721 WHERE a=17929; UPDATE t2 SET b=87846 WHERE a=17930; UPDATE t2 SET b=44744 WHERE a=17931; UPDATE t2 SET b=15706 WHERE a=17932; UPDATE t2 SET b=31966 WHERE a=17933; UPDATE t2 SET b=78597 WHERE a=17934; UPDATE t2 SET b=7967 WHERE a=17935; UPDATE t2 SET b=19291 WHERE a=17936; UPDATE t2 SET b=61863 WHERE a=17937; UPDATE t2 SET b=65590 WHERE a=17938; UPDATE t2 SET b=91891 WHERE a=17939; UPDATE t2 SET b=64537 WHERE a=17940; UPDATE t2 SET b=73873 WHERE a=17941; UPDATE t2 SET b=49932 WHERE a=17942; UPDATE t2 SET b=48660 WHERE a=17943; UPDATE t2 SET b=45426 WHERE a=17944; UPDATE t2 SET b=55262 WHERE a=17945; UPDATE t2 SET b=26876 WHERE a=17946; UPDATE t2 SET b=76891 WHERE a=17947; UPDATE t2 SET b=4624 WHERE a=17948; UPDATE t2 SET b=17539 WHERE a=17949; UPDATE t2 SET b=33213 WHERE a=17950; UPDATE t2 SET b=35061 WHERE a=17951; UPDATE t2 SET b=79587 WHERE a=17952; UPDATE t2 SET b=57112 WHERE a=17953; UPDATE t2 SET b=93731 WHERE a=17954; UPDATE t2 SET b=42100 WHERE a=17955; UPDATE t2 SET b=86778 WHERE a=17956; UPDATE t2 SET b=80669 WHERE a=17957; UPDATE t2 SET b=14531 WHERE a=17958; UPDATE t2 SET b=76757 WHERE a=17959; UPDATE t2 SET b=85168 WHERE a=17960; UPDATE t2 SET b=52044 WHERE a=17961; UPDATE t2 SET b=39789 WHERE a=17962; UPDATE t2 SET b=73008 WHERE a=17963; UPDATE t2 SET b=12869 WHERE a=17964; UPDATE t2 SET b=43045 WHERE a=17965; UPDATE t2 SET b=1760 WHERE a=17966; UPDATE t2 SET b=85963 WHERE a=17967; UPDATE t2 SET b=14038 WHERE a=17968; UPDATE t2 SET b=59979 WHERE a=17969; UPDATE t2 SET b=96659 WHERE a=17970; UPDATE t2 SET b=45597 WHERE a=17971; UPDATE t2 SET b=82153 WHERE a=17972; UPDATE t2 SET b=88147 WHERE a=17973; UPDATE t2 SET b=26299 WHERE a=17974; UPDATE t2 SET b=11233 WHERE a=17975; UPDATE t2 SET b=13180 WHERE a=17976; UPDATE t2 SET b=8447 WHERE a=17977; UPDATE t2 SET b=83874 WHERE a=17978; UPDATE t2 SET b=52276 WHERE a=17979; UPDATE t2 SET b=24995 WHERE a=17980; UPDATE t2 SET b=10688 WHERE a=17981; UPDATE t2 SET b=4965 WHERE a=17982; UPDATE t2 SET b=9859 WHERE a=17983; UPDATE t2 SET b=80666 WHERE a=17984; UPDATE t2 SET b=14718 WHERE a=17985; UPDATE t2 SET b=42288 WHERE a=17986; UPDATE t2 SET b=93828 WHERE a=17987; UPDATE t2 SET b=34618 WHERE a=17988; UPDATE t2 SET b=64260 WHERE a=17989; UPDATE t2 SET b=36752 WHERE a=17990; UPDATE t2 SET b=15152 WHERE a=17991; UPDATE t2 SET b=63294 WHERE a=17992; UPDATE t2 SET b=11837 WHERE a=17993; UPDATE t2 SET b=9830 WHERE a=17994; UPDATE t2 SET b=58628 WHERE a=17995; UPDATE t2 SET b=34746 WHERE a=17996; UPDATE t2 SET b=25093 WHERE a=17997; UPDATE t2 SET b=67091 WHERE a=17998; UPDATE t2 SET b=4729 WHERE a=17999; UPDATE t2 SET b=53523 WHERE a=18000; UPDATE t2 SET b=94537 WHERE a=18001; UPDATE t2 SET b=99238 WHERE a=18002; UPDATE t2 SET b=40209 WHERE a=18003; UPDATE t2 SET b=21492 WHERE a=18004; UPDATE t2 SET b=84814 WHERE a=18005; UPDATE t2 SET b=86578 WHERE a=18006; UPDATE t2 SET b=79579 WHERE a=18007; UPDATE t2 SET b=27679 WHERE a=18008; UPDATE t2 SET b=42420 WHERE a=18009; UPDATE t2 SET b=55724 WHERE a=18010; UPDATE t2 SET b=4837 WHERE a=18011; UPDATE t2 SET b=67329 WHERE a=18012; UPDATE t2 SET b=17419 WHERE a=18013; UPDATE t2 SET b=59492 WHERE a=18014; UPDATE t2 SET b=50208 WHERE a=18015; UPDATE t2 SET b=1214 WHERE a=18016; UPDATE t2 SET b=99705 WHERE a=18017; UPDATE t2 SET b=54431 WHERE a=18018; UPDATE t2 SET b=5722 WHERE a=18019; UPDATE t2 SET b=51052 WHERE a=18020; UPDATE t2 SET b=64362 WHERE a=18021; UPDATE t2 SET b=5159 WHERE a=18022; UPDATE t2 SET b=65666 WHERE a=18023; UPDATE t2 SET b=85160 WHERE a=18024; UPDATE t2 SET b=41852 WHERE a=18025; UPDATE t2 SET b=48922 WHERE a=18026; UPDATE t2 SET b=8316 WHERE a=18027; UPDATE t2 SET b=25150 WHERE a=18028; UPDATE t2 SET b=13018 WHERE a=18029; UPDATE t2 SET b=56757 WHERE a=18030; UPDATE t2 SET b=22790 WHERE a=18031; UPDATE t2 SET b=95286 WHERE a=18032; UPDATE t2 SET b=74927 WHERE a=18033; UPDATE t2 SET b=36518 WHERE a=18034; UPDATE t2 SET b=61881 WHERE a=18035; UPDATE t2 SET b=69523 WHERE a=18036; UPDATE t2 SET b=3345 WHERE a=18037; UPDATE t2 SET b=99201 WHERE a=18038; UPDATE t2 SET b=25094 WHERE a=18039; UPDATE t2 SET b=10916 WHERE a=18040; UPDATE t2 SET b=5547 WHERE a=18041; UPDATE t2 SET b=37268 WHERE a=18042; UPDATE t2 SET b=45115 WHERE a=18043; UPDATE t2 SET b=80256 WHERE a=18044; UPDATE t2 SET b=10317 WHERE a=18045; UPDATE t2 SET b=11061 WHERE a=18046; UPDATE t2 SET b=40691 WHERE a=18047; UPDATE t2 SET b=22544 WHERE a=18048; UPDATE t2 SET b=31092 WHERE a=18049; UPDATE t2 SET b=18501 WHERE a=18050; UPDATE t2 SET b=79527 WHERE a=18051; UPDATE t2 SET b=59197 WHERE a=18052; UPDATE t2 SET b=61481 WHERE a=18053; UPDATE t2 SET b=46871 WHERE a=18054; UPDATE t2 SET b=64941 WHERE a=18055; UPDATE t2 SET b=81488 WHERE a=18056; UPDATE t2 SET b=72218 WHERE a=18057; UPDATE t2 SET b=39867 WHERE a=18058; UPDATE t2 SET b=68915 WHERE a=18059; UPDATE t2 SET b=58630 WHERE a=18060; UPDATE t2 SET b=79856 WHERE a=18061; UPDATE t2 SET b=54582 WHERE a=18062; UPDATE t2 SET b=50843 WHERE a=18063; UPDATE t2 SET b=45578 WHERE a=18064; UPDATE t2 SET b=83842 WHERE a=18065; UPDATE t2 SET b=6360 WHERE a=18066; UPDATE t2 SET b=50259 WHERE a=18067; UPDATE t2 SET b=20512 WHERE a=18068; UPDATE t2 SET b=50339 WHERE a=18069; UPDATE t2 SET b=21116 WHERE a=18070; UPDATE t2 SET b=28041 WHERE a=18071; UPDATE t2 SET b=70600 WHERE a=18072; UPDATE t2 SET b=68846 WHERE a=18073; UPDATE t2 SET b=15152 WHERE a=18074; UPDATE t2 SET b=37349 WHERE a=18075; UPDATE t2 SET b=46174 WHERE a=18076; UPDATE t2 SET b=20194 WHERE a=18077; UPDATE t2 SET b=17625 WHERE a=18078; UPDATE t2 SET b=51394 WHERE a=18079; UPDATE t2 SET b=15387 WHERE a=18080; UPDATE t2 SET b=77054 WHERE a=18081; UPDATE t2 SET b=37868 WHERE a=18082; UPDATE t2 SET b=5395 WHERE a=18083; UPDATE t2 SET b=45308 WHERE a=18084; UPDATE t2 SET b=12297 WHERE a=18085; UPDATE t2 SET b=77525 WHERE a=18086; UPDATE t2 SET b=41960 WHERE a=18087; UPDATE t2 SET b=26305 WHERE a=18088; UPDATE t2 SET b=30611 WHERE a=18089; UPDATE t2 SET b=35362 WHERE a=18090; UPDATE t2 SET b=74420 WHERE a=18091; UPDATE t2 SET b=56935 WHERE a=18092; UPDATE t2 SET b=91739 WHERE a=18093; UPDATE t2 SET b=64266 WHERE a=18094; UPDATE t2 SET b=22669 WHERE a=18095; UPDATE t2 SET b=33895 WHERE a=18096; UPDATE t2 SET b=22155 WHERE a=18097; UPDATE t2 SET b=62485 WHERE a=18098; UPDATE t2 SET b=27256 WHERE a=18099; UPDATE t2 SET b=1905 WHERE a=18100; UPDATE t2 SET b=46038 WHERE a=18101; UPDATE t2 SET b=40149 WHERE a=18102; UPDATE t2 SET b=16587 WHERE a=18103; UPDATE t2 SET b=72318 WHERE a=18104; UPDATE t2 SET b=96550 WHERE a=18105; UPDATE t2 SET b=15657 WHERE a=18106; UPDATE t2 SET b=14375 WHERE a=18107; UPDATE t2 SET b=74128 WHERE a=18108; UPDATE t2 SET b=43744 WHERE a=18109; UPDATE t2 SET b=39402 WHERE a=18110; UPDATE t2 SET b=783 WHERE a=18111; UPDATE t2 SET b=92337 WHERE a=18112; UPDATE t2 SET b=37733 WHERE a=18113; UPDATE t2 SET b=88230 WHERE a=18114; UPDATE t2 SET b=81319 WHERE a=18115; UPDATE t2 SET b=5195 WHERE a=18116; UPDATE t2 SET b=16122 WHERE a=18117; UPDATE t2 SET b=94337 WHERE a=18118; UPDATE t2 SET b=60633 WHERE a=18119; UPDATE t2 SET b=89454 WHERE a=18120; UPDATE t2 SET b=9466 WHERE a=18121; UPDATE t2 SET b=85130 WHERE a=18122; UPDATE t2 SET b=33162 WHERE a=18123; UPDATE t2 SET b=53465 WHERE a=18124; UPDATE t2 SET b=29364 WHERE a=18125; UPDATE t2 SET b=39981 WHERE a=18126; UPDATE t2 SET b=37280 WHERE a=18127; UPDATE t2 SET b=24125 WHERE a=18128; UPDATE t2 SET b=26679 WHERE a=18129; UPDATE t2 SET b=77858 WHERE a=18130; UPDATE t2 SET b=44518 WHERE a=18131; UPDATE t2 SET b=3212 WHERE a=18132; UPDATE t2 SET b=52985 WHERE a=18133; UPDATE t2 SET b=75672 WHERE a=18134; UPDATE t2 SET b=5993 WHERE a=18135; UPDATE t2 SET b=69147 WHERE a=18136; UPDATE t2 SET b=74097 WHERE a=18137; UPDATE t2 SET b=87048 WHERE a=18138; UPDATE t2 SET b=79440 WHERE a=18139; UPDATE t2 SET b=97925 WHERE a=18140; UPDATE t2 SET b=80793 WHERE a=18141; UPDATE t2 SET b=3300 WHERE a=18142; UPDATE t2 SET b=71156 WHERE a=18143; UPDATE t2 SET b=77533 WHERE a=18144; UPDATE t2 SET b=29656 WHERE a=18145; UPDATE t2 SET b=13888 WHERE a=18146; UPDATE t2 SET b=77772 WHERE a=18147; UPDATE t2 SET b=62150 WHERE a=18148; UPDATE t2 SET b=66609 WHERE a=18149; UPDATE t2 SET b=25095 WHERE a=18150; UPDATE t2 SET b=56023 WHERE a=18151; UPDATE t2 SET b=93262 WHERE a=18152; UPDATE t2 SET b=73612 WHERE a=18153; UPDATE t2 SET b=1103 WHERE a=18154; UPDATE t2 SET b=5471 WHERE a=18155; UPDATE t2 SET b=2129 WHERE a=18156; UPDATE t2 SET b=92371 WHERE a=18157; UPDATE t2 SET b=88386 WHERE a=18158; UPDATE t2 SET b=70092 WHERE a=18159; UPDATE t2 SET b=97481 WHERE a=18160; UPDATE t2 SET b=29564 WHERE a=18161; UPDATE t2 SET b=1995 WHERE a=18162; UPDATE t2 SET b=97310 WHERE a=18163; UPDATE t2 SET b=1050 WHERE a=18164; UPDATE t2 SET b=66986 WHERE a=18165; UPDATE t2 SET b=49145 WHERE a=18166; UPDATE t2 SET b=51726 WHERE a=18167; UPDATE t2 SET b=37127 WHERE a=18168; UPDATE t2 SET b=5140 WHERE a=18169; UPDATE t2 SET b=89433 WHERE a=18170; UPDATE t2 SET b=91035 WHERE a=18171; UPDATE t2 SET b=8279 WHERE a=18172; UPDATE t2 SET b=93286 WHERE a=18173; UPDATE t2 SET b=72504 WHERE a=18174; UPDATE t2 SET b=63005 WHERE a=18175; UPDATE t2 SET b=9827 WHERE a=18176; UPDATE t2 SET b=92725 WHERE a=18177; UPDATE t2 SET b=60150 WHERE a=18178; UPDATE t2 SET b=98522 WHERE a=18179; UPDATE t2 SET b=6787 WHERE a=18180; UPDATE t2 SET b=52965 WHERE a=18181; UPDATE t2 SET b=80348 WHERE a=18182; UPDATE t2 SET b=81240 WHERE a=18183; UPDATE t2 SET b=49463 WHERE a=18184; UPDATE t2 SET b=31967 WHERE a=18185; UPDATE t2 SET b=30190 WHERE a=18186; UPDATE t2 SET b=42464 WHERE a=18187; UPDATE t2 SET b=85448 WHERE a=18188; UPDATE t2 SET b=1449 WHERE a=18189; UPDATE t2 SET b=37918 WHERE a=18190; UPDATE t2 SET b=43595 WHERE a=18191; UPDATE t2 SET b=62409 WHERE a=18192; UPDATE t2 SET b=35672 WHERE a=18193; UPDATE t2 SET b=24242 WHERE a=18194; UPDATE t2 SET b=13133 WHERE a=18195; UPDATE t2 SET b=70445 WHERE a=18196; UPDATE t2 SET b=10785 WHERE a=18197; UPDATE t2 SET b=44031 WHERE a=18198; UPDATE t2 SET b=93474 WHERE a=18199; UPDATE t2 SET b=18348 WHERE a=18200; UPDATE t2 SET b=65622 WHERE a=18201; UPDATE t2 SET b=87321 WHERE a=18202; UPDATE t2 SET b=11532 WHERE a=18203; UPDATE t2 SET b=99397 WHERE a=18204; UPDATE t2 SET b=15257 WHERE a=18205; UPDATE t2 SET b=79239 WHERE a=18206; UPDATE t2 SET b=17140 WHERE a=18207; UPDATE t2 SET b=1426 WHERE a=18208; UPDATE t2 SET b=56282 WHERE a=18209; UPDATE t2 SET b=63284 WHERE a=18210; UPDATE t2 SET b=80624 WHERE a=18211; UPDATE t2 SET b=56224 WHERE a=18212; UPDATE t2 SET b=3596 WHERE a=18213; UPDATE t2 SET b=73674 WHERE a=18214; UPDATE t2 SET b=89427 WHERE a=18215; UPDATE t2 SET b=78031 WHERE a=18216; UPDATE t2 SET b=49708 WHERE a=18217; UPDATE t2 SET b=50526 WHERE a=18218; UPDATE t2 SET b=78123 WHERE a=18219; UPDATE t2 SET b=76467 WHERE a=18220; UPDATE t2 SET b=38298 WHERE a=18221; UPDATE t2 SET b=92008 WHERE a=18222; UPDATE t2 SET b=58248 WHERE a=18223; UPDATE t2 SET b=33082 WHERE a=18224; UPDATE t2 SET b=66354 WHERE a=18225; UPDATE t2 SET b=25449 WHERE a=18226; UPDATE t2 SET b=70173 WHERE a=18227; UPDATE t2 SET b=66631 WHERE a=18228; UPDATE t2 SET b=46987 WHERE a=18229; UPDATE t2 SET b=46885 WHERE a=18230; UPDATE t2 SET b=71799 WHERE a=18231; UPDATE t2 SET b=74645 WHERE a=18232; UPDATE t2 SET b=6942 WHERE a=18233; UPDATE t2 SET b=98076 WHERE a=18234; UPDATE t2 SET b=45776 WHERE a=18235; UPDATE t2 SET b=8359 WHERE a=18236; UPDATE t2 SET b=67262 WHERE a=18237; UPDATE t2 SET b=1730 WHERE a=18238; UPDATE t2 SET b=5358 WHERE a=18239; UPDATE t2 SET b=11999 WHERE a=18240; UPDATE t2 SET b=17913 WHERE a=18241; UPDATE t2 SET b=3376 WHERE a=18242; UPDATE t2 SET b=21590 WHERE a=18243; UPDATE t2 SET b=37183 WHERE a=18244; UPDATE t2 SET b=55786 WHERE a=18245; UPDATE t2 SET b=58975 WHERE a=18246; UPDATE t2 SET b=48568 WHERE a=18247; UPDATE t2 SET b=65763 WHERE a=18248; UPDATE t2 SET b=17108 WHERE a=18249; UPDATE t2 SET b=48370 WHERE a=18250; UPDATE t2 SET b=72817 WHERE a=18251; UPDATE t2 SET b=39644 WHERE a=18252; UPDATE t2 SET b=69885 WHERE a=18253; UPDATE t2 SET b=99731 WHERE a=18254; UPDATE t2 SET b=93010 WHERE a=18255; UPDATE t2 SET b=60695 WHERE a=18256; UPDATE t2 SET b=14328 WHERE a=18257; UPDATE t2 SET b=30389 WHERE a=18258; UPDATE t2 SET b=46107 WHERE a=18259; UPDATE t2 SET b=23947 WHERE a=18260; UPDATE t2 SET b=50918 WHERE a=18261; UPDATE t2 SET b=76276 WHERE a=18262; UPDATE t2 SET b=96533 WHERE a=18263; UPDATE t2 SET b=42290 WHERE a=18264; UPDATE t2 SET b=40842 WHERE a=18265; UPDATE t2 SET b=21642 WHERE a=18266; UPDATE t2 SET b=72234 WHERE a=18267; UPDATE t2 SET b=18093 WHERE a=18268; UPDATE t2 SET b=98503 WHERE a=18269; UPDATE t2 SET b=66708 WHERE a=18270; UPDATE t2 SET b=48612 WHERE a=18271; UPDATE t2 SET b=77209 WHERE a=18272; UPDATE t2 SET b=51308 WHERE a=18273; UPDATE t2 SET b=71789 WHERE a=18274; UPDATE t2 SET b=72136 WHERE a=18275; UPDATE t2 SET b=50700 WHERE a=18276; UPDATE t2 SET b=98145 WHERE a=18277; UPDATE t2 SET b=59473 WHERE a=18278; UPDATE t2 SET b=51375 WHERE a=18279; UPDATE t2 SET b=95694 WHERE a=18280; UPDATE t2 SET b=18504 WHERE a=18281; UPDATE t2 SET b=24844 WHERE a=18282; UPDATE t2 SET b=35397 WHERE a=18283; UPDATE t2 SET b=89264 WHERE a=18284; UPDATE t2 SET b=5369 WHERE a=18285; UPDATE t2 SET b=32835 WHERE a=18286; UPDATE t2 SET b=26833 WHERE a=18287; UPDATE t2 SET b=29664 WHERE a=18288; UPDATE t2 SET b=27368 WHERE a=18289; UPDATE t2 SET b=34115 WHERE a=18290; UPDATE t2 SET b=61592 WHERE a=18291; UPDATE t2 SET b=32806 WHERE a=18292; UPDATE t2 SET b=444 WHERE a=18293; UPDATE t2 SET b=88630 WHERE a=18294; UPDATE t2 SET b=76546 WHERE a=18295; UPDATE t2 SET b=39838 WHERE a=18296; UPDATE t2 SET b=73686 WHERE a=18297; UPDATE t2 SET b=46987 WHERE a=18298; UPDATE t2 SET b=82067 WHERE a=18299; UPDATE t2 SET b=74035 WHERE a=18300; UPDATE t2 SET b=94914 WHERE a=18301; UPDATE t2 SET b=22621 WHERE a=18302; UPDATE t2 SET b=92479 WHERE a=18303; UPDATE t2 SET b=44470 WHERE a=18304; UPDATE t2 SET b=72717 WHERE a=18305; UPDATE t2 SET b=20265 WHERE a=18306; UPDATE t2 SET b=72909 WHERE a=18307; UPDATE t2 SET b=54188 WHERE a=18308; UPDATE t2 SET b=35677 WHERE a=18309; UPDATE t2 SET b=37003 WHERE a=18310; UPDATE t2 SET b=97612 WHERE a=18311; UPDATE t2 SET b=44307 WHERE a=18312; UPDATE t2 SET b=99217 WHERE a=18313; UPDATE t2 SET b=2265 WHERE a=18314; UPDATE t2 SET b=5528 WHERE a=18315; UPDATE t2 SET b=81187 WHERE a=18316; UPDATE t2 SET b=8355 WHERE a=18317; UPDATE t2 SET b=26080 WHERE a=18318; UPDATE t2 SET b=59420 WHERE a=18319; UPDATE t2 SET b=74362 WHERE a=18320; UPDATE t2 SET b=54111 WHERE a=18321; UPDATE t2 SET b=66554 WHERE a=18322; UPDATE t2 SET b=54671 WHERE a=18323; UPDATE t2 SET b=4358 WHERE a=18324; UPDATE t2 SET b=55876 WHERE a=18325; UPDATE t2 SET b=73849 WHERE a=18326; UPDATE t2 SET b=52837 WHERE a=18327; UPDATE t2 SET b=39844 WHERE a=18328; UPDATE t2 SET b=95258 WHERE a=18329; UPDATE t2 SET b=29173 WHERE a=18330; UPDATE t2 SET b=31574 WHERE a=18331; UPDATE t2 SET b=89584 WHERE a=18332; UPDATE t2 SET b=69209 WHERE a=18333; UPDATE t2 SET b=81483 WHERE a=18334; UPDATE t2 SET b=91951 WHERE a=18335; UPDATE t2 SET b=56306 WHERE a=18336; UPDATE t2 SET b=26037 WHERE a=18337; UPDATE t2 SET b=12611 WHERE a=18338; UPDATE t2 SET b=24801 WHERE a=18339; UPDATE t2 SET b=54946 WHERE a=18340; UPDATE t2 SET b=58003 WHERE a=18341; UPDATE t2 SET b=32843 WHERE a=18342; UPDATE t2 SET b=42103 WHERE a=18343; UPDATE t2 SET b=96585 WHERE a=18344; UPDATE t2 SET b=89077 WHERE a=18345; UPDATE t2 SET b=30651 WHERE a=18346; UPDATE t2 SET b=27448 WHERE a=18347; UPDATE t2 SET b=8497 WHERE a=18348; UPDATE t2 SET b=92168 WHERE a=18349; UPDATE t2 SET b=71183 WHERE a=18350; UPDATE t2 SET b=46296 WHERE a=18351; UPDATE t2 SET b=24927 WHERE a=18352; UPDATE t2 SET b=79670 WHERE a=18353; UPDATE t2 SET b=81822 WHERE a=18354; UPDATE t2 SET b=63362 WHERE a=18355; UPDATE t2 SET b=73366 WHERE a=18356; UPDATE t2 SET b=11414 WHERE a=18357; UPDATE t2 SET b=45386 WHERE a=18358; UPDATE t2 SET b=83542 WHERE a=18359; UPDATE t2 SET b=31547 WHERE a=18360; UPDATE t2 SET b=28415 WHERE a=18361; UPDATE t2 SET b=39982 WHERE a=18362; UPDATE t2 SET b=78131 WHERE a=18363; UPDATE t2 SET b=96038 WHERE a=18364; UPDATE t2 SET b=47654 WHERE a=18365; UPDATE t2 SET b=32871 WHERE a=18366; UPDATE t2 SET b=4135 WHERE a=18367; UPDATE t2 SET b=56159 WHERE a=18368; UPDATE t2 SET b=24891 WHERE a=18369; UPDATE t2 SET b=72258 WHERE a=18370; UPDATE t2 SET b=32235 WHERE a=18371; UPDATE t2 SET b=40025 WHERE a=18372; UPDATE t2 SET b=13891 WHERE a=18373; UPDATE t2 SET b=45501 WHERE a=18374; UPDATE t2 SET b=79287 WHERE a=18375; UPDATE t2 SET b=54468 WHERE a=18376; UPDATE t2 SET b=9635 WHERE a=18377; UPDATE t2 SET b=93959 WHERE a=18378; UPDATE t2 SET b=67983 WHERE a=18379; UPDATE t2 SET b=12855 WHERE a=18380; UPDATE t2 SET b=74780 WHERE a=18381; UPDATE t2 SET b=7736 WHERE a=18382; UPDATE t2 SET b=24924 WHERE a=18383; UPDATE t2 SET b=22916 WHERE a=18384; UPDATE t2 SET b=43967 WHERE a=18385; UPDATE t2 SET b=34372 WHERE a=18386; UPDATE t2 SET b=48596 WHERE a=18387; UPDATE t2 SET b=77571 WHERE a=18388; UPDATE t2 SET b=36411 WHERE a=18389; UPDATE t2 SET b=60166 WHERE a=18390; UPDATE t2 SET b=15349 WHERE a=18391; UPDATE t2 SET b=96316 WHERE a=18392; UPDATE t2 SET b=16317 WHERE a=18393; UPDATE t2 SET b=99010 WHERE a=18394; UPDATE t2 SET b=65257 WHERE a=18395; UPDATE t2 SET b=63544 WHERE a=18396; UPDATE t2 SET b=25234 WHERE a=18397; UPDATE t2 SET b=28452 WHERE a=18398; UPDATE t2 SET b=202 WHERE a=18399; UPDATE t2 SET b=9271 WHERE a=18400; UPDATE t2 SET b=16396 WHERE a=18401; UPDATE t2 SET b=94572 WHERE a=18402; UPDATE t2 SET b=61341 WHERE a=18403; UPDATE t2 SET b=40630 WHERE a=18404; UPDATE t2 SET b=81403 WHERE a=18405; UPDATE t2 SET b=29196 WHERE a=18406; UPDATE t2 SET b=28890 WHERE a=18407; UPDATE t2 SET b=40651 WHERE a=18408; UPDATE t2 SET b=86059 WHERE a=18409; UPDATE t2 SET b=72082 WHERE a=18410; UPDATE t2 SET b=82430 WHERE a=18411; UPDATE t2 SET b=33869 WHERE a=18412; UPDATE t2 SET b=28367 WHERE a=18413; UPDATE t2 SET b=41509 WHERE a=18414; UPDATE t2 SET b=95604 WHERE a=18415; UPDATE t2 SET b=95620 WHERE a=18416; UPDATE t2 SET b=40916 WHERE a=18417; UPDATE t2 SET b=34132 WHERE a=18418; UPDATE t2 SET b=37429 WHERE a=18419; UPDATE t2 SET b=15066 WHERE a=18420; UPDATE t2 SET b=35802 WHERE a=18421; UPDATE t2 SET b=68549 WHERE a=18422; UPDATE t2 SET b=44900 WHERE a=18423; UPDATE t2 SET b=12828 WHERE a=18424; UPDATE t2 SET b=35654 WHERE a=18425; UPDATE t2 SET b=62009 WHERE a=18426; UPDATE t2 SET b=34779 WHERE a=18427; UPDATE t2 SET b=52395 WHERE a=18428; UPDATE t2 SET b=33616 WHERE a=18429; UPDATE t2 SET b=29170 WHERE a=18430; UPDATE t2 SET b=98474 WHERE a=18431; UPDATE t2 SET b=10375 WHERE a=18432; UPDATE t2 SET b=52037 WHERE a=18433; UPDATE t2 SET b=66134 WHERE a=18434; UPDATE t2 SET b=19770 WHERE a=18435; UPDATE t2 SET b=85575 WHERE a=18436; UPDATE t2 SET b=78915 WHERE a=18437; UPDATE t2 SET b=34699 WHERE a=18438; UPDATE t2 SET b=27614 WHERE a=18439; UPDATE t2 SET b=47284 WHERE a=18440; UPDATE t2 SET b=53739 WHERE a=18441; UPDATE t2 SET b=43126 WHERE a=18442; UPDATE t2 SET b=6958 WHERE a=18443; UPDATE t2 SET b=97117 WHERE a=18444; UPDATE t2 SET b=21180 WHERE a=18445; UPDATE t2 SET b=59025 WHERE a=18446; UPDATE t2 SET b=15783 WHERE a=18447; UPDATE t2 SET b=29152 WHERE a=18448; UPDATE t2 SET b=64424 WHERE a=18449; UPDATE t2 SET b=3587 WHERE a=18450; UPDATE t2 SET b=41370 WHERE a=18451; UPDATE t2 SET b=43732 WHERE a=18452; UPDATE t2 SET b=60387 WHERE a=18453; UPDATE t2 SET b=61494 WHERE a=18454; UPDATE t2 SET b=32105 WHERE a=18455; UPDATE t2 SET b=76905 WHERE a=18456; UPDATE t2 SET b=61706 WHERE a=18457; UPDATE t2 SET b=23502 WHERE a=18458; UPDATE t2 SET b=7110 WHERE a=18459; UPDATE t2 SET b=51769 WHERE a=18460; UPDATE t2 SET b=18466 WHERE a=18461; UPDATE t2 SET b=84974 WHERE a=18462; UPDATE t2 SET b=88201 WHERE a=18463; UPDATE t2 SET b=61427 WHERE a=18464; UPDATE t2 SET b=93609 WHERE a=18465; UPDATE t2 SET b=33083 WHERE a=18466; UPDATE t2 SET b=51919 WHERE a=18467; UPDATE t2 SET b=44962 WHERE a=18468; UPDATE t2 SET b=72461 WHERE a=18469; UPDATE t2 SET b=1463 WHERE a=18470; UPDATE t2 SET b=51217 WHERE a=18471; UPDATE t2 SET b=2538 WHERE a=18472; UPDATE t2 SET b=87113 WHERE a=18473; UPDATE t2 SET b=86804 WHERE a=18474; UPDATE t2 SET b=10930 WHERE a=18475; UPDATE t2 SET b=18003 WHERE a=18476; UPDATE t2 SET b=74096 WHERE a=18477; UPDATE t2 SET b=87628 WHERE a=18478; UPDATE t2 SET b=82961 WHERE a=18479; UPDATE t2 SET b=45401 WHERE a=18480; UPDATE t2 SET b=87153 WHERE a=18481; UPDATE t2 SET b=29019 WHERE a=18482; UPDATE t2 SET b=74931 WHERE a=18483; UPDATE t2 SET b=27059 WHERE a=18484; UPDATE t2 SET b=7083 WHERE a=18485; UPDATE t2 SET b=28999 WHERE a=18486; UPDATE t2 SET b=90424 WHERE a=18487; UPDATE t2 SET b=35515 WHERE a=18488; UPDATE t2 SET b=26771 WHERE a=18489; UPDATE t2 SET b=53619 WHERE a=18490; UPDATE t2 SET b=67643 WHERE a=18491; UPDATE t2 SET b=48243 WHERE a=18492; UPDATE t2 SET b=71416 WHERE a=18493; UPDATE t2 SET b=36792 WHERE a=18494; UPDATE t2 SET b=26990 WHERE a=18495; UPDATE t2 SET b=73087 WHERE a=18496; UPDATE t2 SET b=52824 WHERE a=18497; UPDATE t2 SET b=29478 WHERE a=18498; UPDATE t2 SET b=15060 WHERE a=18499; UPDATE t2 SET b=38039 WHERE a=18500; UPDATE t2 SET b=59359 WHERE a=18501; UPDATE t2 SET b=11189 WHERE a=18502; UPDATE t2 SET b=12031 WHERE a=18503; UPDATE t2 SET b=3702 WHERE a=18504; UPDATE t2 SET b=26223 WHERE a=18505; UPDATE t2 SET b=18409 WHERE a=18506; UPDATE t2 SET b=98219 WHERE a=18507; UPDATE t2 SET b=12226 WHERE a=18508; UPDATE t2 SET b=33704 WHERE a=18509; UPDATE t2 SET b=40761 WHERE a=18510; UPDATE t2 SET b=12733 WHERE a=18511; UPDATE t2 SET b=88334 WHERE a=18512; UPDATE t2 SET b=88735 WHERE a=18513; UPDATE t2 SET b=77398 WHERE a=18514; UPDATE t2 SET b=42671 WHERE a=18515; UPDATE t2 SET b=52051 WHERE a=18516; UPDATE t2 SET b=73646 WHERE a=18517; UPDATE t2 SET b=65606 WHERE a=18518; UPDATE t2 SET b=58944 WHERE a=18519; UPDATE t2 SET b=7252 WHERE a=18520; UPDATE t2 SET b=53103 WHERE a=18521; UPDATE t2 SET b=62274 WHERE a=18522; UPDATE t2 SET b=33691 WHERE a=18523; UPDATE t2 SET b=19433 WHERE a=18524; UPDATE t2 SET b=85297 WHERE a=18525; UPDATE t2 SET b=73072 WHERE a=18526; UPDATE t2 SET b=66722 WHERE a=18527; UPDATE t2 SET b=93984 WHERE a=18528; UPDATE t2 SET b=63243 WHERE a=18529; UPDATE t2 SET b=27857 WHERE a=18530; UPDATE t2 SET b=45539 WHERE a=18531; UPDATE t2 SET b=62844 WHERE a=18532; UPDATE t2 SET b=66631 WHERE a=18533; UPDATE t2 SET b=59976 WHERE a=18534; UPDATE t2 SET b=77798 WHERE a=18535; UPDATE t2 SET b=7325 WHERE a=18536; UPDATE t2 SET b=22548 WHERE a=18537; UPDATE t2 SET b=39750 WHERE a=18538; UPDATE t2 SET b=70828 WHERE a=18539; UPDATE t2 SET b=33230 WHERE a=18540; UPDATE t2 SET b=70810 WHERE a=18541; UPDATE t2 SET b=47697 WHERE a=18542; UPDATE t2 SET b=94067 WHERE a=18543; UPDATE t2 SET b=25279 WHERE a=18544; UPDATE t2 SET b=92771 WHERE a=18545; UPDATE t2 SET b=46597 WHERE a=18546; UPDATE t2 SET b=71831 WHERE a=18547; UPDATE t2 SET b=37228 WHERE a=18548; UPDATE t2 SET b=42188 WHERE a=18549; UPDATE t2 SET b=76689 WHERE a=18550; UPDATE t2 SET b=7784 WHERE a=18551; UPDATE t2 SET b=1276 WHERE a=18552; UPDATE t2 SET b=55836 WHERE a=18553; UPDATE t2 SET b=83889 WHERE a=18554; UPDATE t2 SET b=71939 WHERE a=18555; UPDATE t2 SET b=206 WHERE a=18556; UPDATE t2 SET b=87671 WHERE a=18557; UPDATE t2 SET b=5104 WHERE a=18558; UPDATE t2 SET b=3045 WHERE a=18559; UPDATE t2 SET b=95547 WHERE a=18560; UPDATE t2 SET b=76388 WHERE a=18561; UPDATE t2 SET b=12901 WHERE a=18562; UPDATE t2 SET b=1579 WHERE a=18563; UPDATE t2 SET b=55549 WHERE a=18564; UPDATE t2 SET b=19065 WHERE a=18565; UPDATE t2 SET b=48402 WHERE a=18566; UPDATE t2 SET b=16605 WHERE a=18567; UPDATE t2 SET b=7619 WHERE a=18568; UPDATE t2 SET b=16005 WHERE a=18569; UPDATE t2 SET b=59778 WHERE a=18570; UPDATE t2 SET b=93593 WHERE a=18571; UPDATE t2 SET b=78377 WHERE a=18572; UPDATE t2 SET b=28411 WHERE a=18573; UPDATE t2 SET b=32432 WHERE a=18574; UPDATE t2 SET b=50463 WHERE a=18575; UPDATE t2 SET b=14493 WHERE a=18576; UPDATE t2 SET b=50551 WHERE a=18577; UPDATE t2 SET b=87106 WHERE a=18578; UPDATE t2 SET b=521 WHERE a=18579; UPDATE t2 SET b=65028 WHERE a=18580; UPDATE t2 SET b=47019 WHERE a=18581; UPDATE t2 SET b=24393 WHERE a=18582; UPDATE t2 SET b=60181 WHERE a=18583; UPDATE t2 SET b=27617 WHERE a=18584; UPDATE t2 SET b=57542 WHERE a=18585; UPDATE t2 SET b=53469 WHERE a=18586; UPDATE t2 SET b=77462 WHERE a=18587; UPDATE t2 SET b=98969 WHERE a=18588; UPDATE t2 SET b=27265 WHERE a=18589; UPDATE t2 SET b=61362 WHERE a=18590; UPDATE t2 SET b=46932 WHERE a=18591; UPDATE t2 SET b=75118 WHERE a=18592; UPDATE t2 SET b=39897 WHERE a=18593; UPDATE t2 SET b=77188 WHERE a=18594; UPDATE t2 SET b=76947 WHERE a=18595; UPDATE t2 SET b=62166 WHERE a=18596; UPDATE t2 SET b=54917 WHERE a=18597; UPDATE t2 SET b=20953 WHERE a=18598; UPDATE t2 SET b=66983 WHERE a=18599; UPDATE t2 SET b=97644 WHERE a=18600; UPDATE t2 SET b=35385 WHERE a=18601; UPDATE t2 SET b=81564 WHERE a=18602; UPDATE t2 SET b=31163 WHERE a=18603; UPDATE t2 SET b=59155 WHERE a=18604; UPDATE t2 SET b=68692 WHERE a=18605; UPDATE t2 SET b=52366 WHERE a=18606; UPDATE t2 SET b=89057 WHERE a=18607; UPDATE t2 SET b=39211 WHERE a=18608; UPDATE t2 SET b=64889 WHERE a=18609; UPDATE t2 SET b=17755 WHERE a=18610; UPDATE t2 SET b=94900 WHERE a=18611; UPDATE t2 SET b=84435 WHERE a=18612; UPDATE t2 SET b=83808 WHERE a=18613; UPDATE t2 SET b=38495 WHERE a=18614; UPDATE t2 SET b=68367 WHERE a=18615; UPDATE t2 SET b=3369 WHERE a=18616; UPDATE t2 SET b=4653 WHERE a=18617; UPDATE t2 SET b=73672 WHERE a=18618; UPDATE t2 SET b=95498 WHERE a=18619; UPDATE t2 SET b=78429 WHERE a=18620; UPDATE t2 SET b=98397 WHERE a=18621; UPDATE t2 SET b=86697 WHERE a=18622; UPDATE t2 SET b=6601 WHERE a=18623; UPDATE t2 SET b=43601 WHERE a=18624; UPDATE t2 SET b=94240 WHERE a=18625; UPDATE t2 SET b=898 WHERE a=18626; UPDATE t2 SET b=72914 WHERE a=18627; UPDATE t2 SET b=94823 WHERE a=18628; UPDATE t2 SET b=46820 WHERE a=18629; UPDATE t2 SET b=46822 WHERE a=18630; UPDATE t2 SET b=71232 WHERE a=18631; UPDATE t2 SET b=72967 WHERE a=18632; UPDATE t2 SET b=22213 WHERE a=18633; UPDATE t2 SET b=21326 WHERE a=18634; UPDATE t2 SET b=33059 WHERE a=18635; UPDATE t2 SET b=67159 WHERE a=18636; UPDATE t2 SET b=78634 WHERE a=18637; UPDATE t2 SET b=9845 WHERE a=18638; UPDATE t2 SET b=63391 WHERE a=18639; UPDATE t2 SET b=32597 WHERE a=18640; UPDATE t2 SET b=822 WHERE a=18641; UPDATE t2 SET b=55433 WHERE a=18642; UPDATE t2 SET b=22042 WHERE a=18643; UPDATE t2 SET b=95830 WHERE a=18644; UPDATE t2 SET b=55404 WHERE a=18645; UPDATE t2 SET b=99528 WHERE a=18646; UPDATE t2 SET b=48950 WHERE a=18647; UPDATE t2 SET b=89354 WHERE a=18648; UPDATE t2 SET b=77444 WHERE a=18649; UPDATE t2 SET b=99481 WHERE a=18650; UPDATE t2 SET b=63569 WHERE a=18651; UPDATE t2 SET b=97856 WHERE a=18652; UPDATE t2 SET b=44077 WHERE a=18653; UPDATE t2 SET b=28837 WHERE a=18654; UPDATE t2 SET b=1210 WHERE a=18655; UPDATE t2 SET b=16587 WHERE a=18656; UPDATE t2 SET b=19304 WHERE a=18657; UPDATE t2 SET b=63791 WHERE a=18658; UPDATE t2 SET b=74946 WHERE a=18659; UPDATE t2 SET b=36494 WHERE a=18660; UPDATE t2 SET b=88921 WHERE a=18661; UPDATE t2 SET b=20246 WHERE a=18662; UPDATE t2 SET b=81620 WHERE a=18663; UPDATE t2 SET b=43411 WHERE a=18664; UPDATE t2 SET b=90694 WHERE a=18665; UPDATE t2 SET b=24774 WHERE a=18666; UPDATE t2 SET b=2156 WHERE a=18667; UPDATE t2 SET b=81439 WHERE a=18668; UPDATE t2 SET b=72769 WHERE a=18669; UPDATE t2 SET b=41360 WHERE a=18670; UPDATE t2 SET b=35599 WHERE a=18671; UPDATE t2 SET b=54815 WHERE a=18672; UPDATE t2 SET b=22187 WHERE a=18673; UPDATE t2 SET b=10665 WHERE a=18674; UPDATE t2 SET b=46261 WHERE a=18675; UPDATE t2 SET b=20815 WHERE a=18676; UPDATE t2 SET b=77357 WHERE a=18677; UPDATE t2 SET b=8561 WHERE a=18678; UPDATE t2 SET b=83052 WHERE a=18679; UPDATE t2 SET b=25370 WHERE a=18680; UPDATE t2 SET b=5486 WHERE a=18681; UPDATE t2 SET b=52075 WHERE a=18682; UPDATE t2 SET b=4394 WHERE a=18683; UPDATE t2 SET b=73811 WHERE a=18684; UPDATE t2 SET b=24166 WHERE a=18685; UPDATE t2 SET b=62165 WHERE a=18686; UPDATE t2 SET b=52147 WHERE a=18687; UPDATE t2 SET b=78024 WHERE a=18688; UPDATE t2 SET b=34767 WHERE a=18689; UPDATE t2 SET b=22808 WHERE a=18690; UPDATE t2 SET b=77431 WHERE a=18691; UPDATE t2 SET b=48565 WHERE a=18692; UPDATE t2 SET b=93829 WHERE a=18693; UPDATE t2 SET b=55896 WHERE a=18694; UPDATE t2 SET b=88073 WHERE a=18695; UPDATE t2 SET b=9001 WHERE a=18696; UPDATE t2 SET b=95955 WHERE a=18697; UPDATE t2 SET b=14460 WHERE a=18698; UPDATE t2 SET b=42303 WHERE a=18699; UPDATE t2 SET b=10145 WHERE a=18700; UPDATE t2 SET b=79551 WHERE a=18701; UPDATE t2 SET b=73850 WHERE a=18702; UPDATE t2 SET b=99712 WHERE a=18703; UPDATE t2 SET b=57254 WHERE a=18704; UPDATE t2 SET b=44420 WHERE a=18705; UPDATE t2 SET b=51825 WHERE a=18706; UPDATE t2 SET b=8466 WHERE a=18707; UPDATE t2 SET b=50137 WHERE a=18708; UPDATE t2 SET b=77181 WHERE a=18709; UPDATE t2 SET b=26950 WHERE a=18710; UPDATE t2 SET b=17382 WHERE a=18711; UPDATE t2 SET b=1867 WHERE a=18712; UPDATE t2 SET b=30506 WHERE a=18713; UPDATE t2 SET b=73072 WHERE a=18714; UPDATE t2 SET b=13360 WHERE a=18715; UPDATE t2 SET b=87661 WHERE a=18716; UPDATE t2 SET b=66799 WHERE a=18717; UPDATE t2 SET b=27977 WHERE a=18718; UPDATE t2 SET b=15114 WHERE a=18719; UPDATE t2 SET b=15338 WHERE a=18720; UPDATE t2 SET b=77087 WHERE a=18721; UPDATE t2 SET b=15721 WHERE a=18722; UPDATE t2 SET b=8509 WHERE a=18723; UPDATE t2 SET b=50861 WHERE a=18724; UPDATE t2 SET b=36420 WHERE a=18725; UPDATE t2 SET b=28233 WHERE a=18726; UPDATE t2 SET b=69702 WHERE a=18727; UPDATE t2 SET b=16238 WHERE a=18728; UPDATE t2 SET b=24180 WHERE a=18729; UPDATE t2 SET b=80652 WHERE a=18730; UPDATE t2 SET b=13904 WHERE a=18731; UPDATE t2 SET b=86916 WHERE a=18732; UPDATE t2 SET b=17968 WHERE a=18733; UPDATE t2 SET b=44399 WHERE a=18734; UPDATE t2 SET b=78329 WHERE a=18735; UPDATE t2 SET b=95817 WHERE a=18736; UPDATE t2 SET b=39629 WHERE a=18737; UPDATE t2 SET b=61514 WHERE a=18738; UPDATE t2 SET b=678 WHERE a=18739; UPDATE t2 SET b=98412 WHERE a=18740; UPDATE t2 SET b=8636 WHERE a=18741; UPDATE t2 SET b=70025 WHERE a=18742; UPDATE t2 SET b=42020 WHERE a=18743; UPDATE t2 SET b=38306 WHERE a=18744; UPDATE t2 SET b=82335 WHERE a=18745; UPDATE t2 SET b=62071 WHERE a=18746; UPDATE t2 SET b=67484 WHERE a=18747; UPDATE t2 SET b=82830 WHERE a=18748; UPDATE t2 SET b=60684 WHERE a=18749; UPDATE t2 SET b=77169 WHERE a=18750; UPDATE t2 SET b=17421 WHERE a=18751; UPDATE t2 SET b=5428 WHERE a=18752; UPDATE t2 SET b=70532 WHERE a=18753; UPDATE t2 SET b=79019 WHERE a=18754; UPDATE t2 SET b=4024 WHERE a=18755; UPDATE t2 SET b=69962 WHERE a=18756; UPDATE t2 SET b=62020 WHERE a=18757; UPDATE t2 SET b=54370 WHERE a=18758; UPDATE t2 SET b=50656 WHERE a=18759; UPDATE t2 SET b=33178 WHERE a=18760; UPDATE t2 SET b=16158 WHERE a=18761; UPDATE t2 SET b=58447 WHERE a=18762; UPDATE t2 SET b=74488 WHERE a=18763; UPDATE t2 SET b=13744 WHERE a=18764; UPDATE t2 SET b=74336 WHERE a=18765; UPDATE t2 SET b=36427 WHERE a=18766; UPDATE t2 SET b=44698 WHERE a=18767; UPDATE t2 SET b=50212 WHERE a=18768; UPDATE t2 SET b=43314 WHERE a=18769; UPDATE t2 SET b=81031 WHERE a=18770; UPDATE t2 SET b=90947 WHERE a=18771; UPDATE t2 SET b=53882 WHERE a=18772; UPDATE t2 SET b=90466 WHERE a=18773; UPDATE t2 SET b=33489 WHERE a=18774; UPDATE t2 SET b=67125 WHERE a=18775; UPDATE t2 SET b=22358 WHERE a=18776; UPDATE t2 SET b=59761 WHERE a=18777; UPDATE t2 SET b=25604 WHERE a=18778; UPDATE t2 SET b=18468 WHERE a=18779; UPDATE t2 SET b=61509 WHERE a=18780; UPDATE t2 SET b=11677 WHERE a=18781; UPDATE t2 SET b=86512 WHERE a=18782; UPDATE t2 SET b=82567 WHERE a=18783; UPDATE t2 SET b=75816 WHERE a=18784; UPDATE t2 SET b=98908 WHERE a=18785; UPDATE t2 SET b=72517 WHERE a=18786; UPDATE t2 SET b=4889 WHERE a=18787; UPDATE t2 SET b=16337 WHERE a=18788; UPDATE t2 SET b=85673 WHERE a=18789; UPDATE t2 SET b=93465 WHERE a=18790; UPDATE t2 SET b=15996 WHERE a=18791; UPDATE t2 SET b=52138 WHERE a=18792; UPDATE t2 SET b=26060 WHERE a=18793; UPDATE t2 SET b=74611 WHERE a=18794; UPDATE t2 SET b=53623 WHERE a=18795; UPDATE t2 SET b=21390 WHERE a=18796; UPDATE t2 SET b=61710 WHERE a=18797; UPDATE t2 SET b=82339 WHERE a=18798; UPDATE t2 SET b=81137 WHERE a=18799; UPDATE t2 SET b=51347 WHERE a=18800; UPDATE t2 SET b=34539 WHERE a=18801; UPDATE t2 SET b=44788 WHERE a=18802; UPDATE t2 SET b=61487 WHERE a=18803; UPDATE t2 SET b=19084 WHERE a=18804; UPDATE t2 SET b=91928 WHERE a=18805; UPDATE t2 SET b=72856 WHERE a=18806; UPDATE t2 SET b=64847 WHERE a=18807; UPDATE t2 SET b=67122 WHERE a=18808; UPDATE t2 SET b=49182 WHERE a=18809; UPDATE t2 SET b=97931 WHERE a=18810; UPDATE t2 SET b=45152 WHERE a=18811; UPDATE t2 SET b=35359 WHERE a=18812; UPDATE t2 SET b=73251 WHERE a=18813; UPDATE t2 SET b=57229 WHERE a=18814; UPDATE t2 SET b=25593 WHERE a=18815; UPDATE t2 SET b=58509 WHERE a=18816; UPDATE t2 SET b=23196 WHERE a=18817; UPDATE t2 SET b=67041 WHERE a=18818; UPDATE t2 SET b=78135 WHERE a=18819; UPDATE t2 SET b=30341 WHERE a=18820; UPDATE t2 SET b=98178 WHERE a=18821; UPDATE t2 SET b=68215 WHERE a=18822; UPDATE t2 SET b=11443 WHERE a=18823; UPDATE t2 SET b=41269 WHERE a=18824; UPDATE t2 SET b=97784 WHERE a=18825; UPDATE t2 SET b=8612 WHERE a=18826; UPDATE t2 SET b=37654 WHERE a=18827; UPDATE t2 SET b=69478 WHERE a=18828; UPDATE t2 SET b=36868 WHERE a=18829; UPDATE t2 SET b=4264 WHERE a=18830; UPDATE t2 SET b=44173 WHERE a=18831; UPDATE t2 SET b=22893 WHERE a=18832; UPDATE t2 SET b=34683 WHERE a=18833; UPDATE t2 SET b=71100 WHERE a=18834; UPDATE t2 SET b=28961 WHERE a=18835; UPDATE t2 SET b=35694 WHERE a=18836; UPDATE t2 SET b=7087 WHERE a=18837; UPDATE t2 SET b=46702 WHERE a=18838; UPDATE t2 SET b=89383 WHERE a=18839; UPDATE t2 SET b=26696 WHERE a=18840; UPDATE t2 SET b=1283 WHERE a=18841; UPDATE t2 SET b=88785 WHERE a=18842; UPDATE t2 SET b=80306 WHERE a=18843; UPDATE t2 SET b=5341 WHERE a=18844; UPDATE t2 SET b=21606 WHERE a=18845; UPDATE t2 SET b=5418 WHERE a=18846; UPDATE t2 SET b=35792 WHERE a=18847; UPDATE t2 SET b=64640 WHERE a=18848; UPDATE t2 SET b=14334 WHERE a=18849; UPDATE t2 SET b=16561 WHERE a=18850; UPDATE t2 SET b=86431 WHERE a=18851; UPDATE t2 SET b=72513 WHERE a=18852; UPDATE t2 SET b=76887 WHERE a=18853; UPDATE t2 SET b=46734 WHERE a=18854; UPDATE t2 SET b=71107 WHERE a=18855; UPDATE t2 SET b=26470 WHERE a=18856; UPDATE t2 SET b=65573 WHERE a=18857; UPDATE t2 SET b=91535 WHERE a=18858; UPDATE t2 SET b=67983 WHERE a=18859; UPDATE t2 SET b=52591 WHERE a=18860; UPDATE t2 SET b=37423 WHERE a=18861; UPDATE t2 SET b=39620 WHERE a=18862; UPDATE t2 SET b=21926 WHERE a=18863; UPDATE t2 SET b=12809 WHERE a=18864; UPDATE t2 SET b=24395 WHERE a=18865; UPDATE t2 SET b=23924 WHERE a=18866; UPDATE t2 SET b=12926 WHERE a=18867; UPDATE t2 SET b=616 WHERE a=18868; UPDATE t2 SET b=18757 WHERE a=18869; UPDATE t2 SET b=47962 WHERE a=18870; UPDATE t2 SET b=32327 WHERE a=18871; UPDATE t2 SET b=38945 WHERE a=18872; UPDATE t2 SET b=82091 WHERE a=18873; UPDATE t2 SET b=38724 WHERE a=18874; UPDATE t2 SET b=68145 WHERE a=18875; UPDATE t2 SET b=96794 WHERE a=18876; UPDATE t2 SET b=56544 WHERE a=18877; UPDATE t2 SET b=58654 WHERE a=18878; UPDATE t2 SET b=18146 WHERE a=18879; UPDATE t2 SET b=38247 WHERE a=18880; UPDATE t2 SET b=71966 WHERE a=18881; UPDATE t2 SET b=29126 WHERE a=18882; UPDATE t2 SET b=83525 WHERE a=18883; UPDATE t2 SET b=75080 WHERE a=18884; UPDATE t2 SET b=72164 WHERE a=18885; UPDATE t2 SET b=15337 WHERE a=18886; UPDATE t2 SET b=78502 WHERE a=18887; UPDATE t2 SET b=79674 WHERE a=18888; UPDATE t2 SET b=23911 WHERE a=18889; UPDATE t2 SET b=86606 WHERE a=18890; UPDATE t2 SET b=7746 WHERE a=18891; UPDATE t2 SET b=70065 WHERE a=18892; UPDATE t2 SET b=22586 WHERE a=18893; UPDATE t2 SET b=20052 WHERE a=18894; UPDATE t2 SET b=40363 WHERE a=18895; UPDATE t2 SET b=23269 WHERE a=18896; UPDATE t2 SET b=84546 WHERE a=18897; UPDATE t2 SET b=19561 WHERE a=18898; UPDATE t2 SET b=58307 WHERE a=18899; UPDATE t2 SET b=49085 WHERE a=18900; UPDATE t2 SET b=72341 WHERE a=18901; UPDATE t2 SET b=19955 WHERE a=18902; UPDATE t2 SET b=49810 WHERE a=18903; UPDATE t2 SET b=36792 WHERE a=18904; UPDATE t2 SET b=4585 WHERE a=18905; UPDATE t2 SET b=25294 WHERE a=18906; UPDATE t2 SET b=67202 WHERE a=18907; UPDATE t2 SET b=26819 WHERE a=18908; UPDATE t2 SET b=71554 WHERE a=18909; UPDATE t2 SET b=60115 WHERE a=18910; UPDATE t2 SET b=4514 WHERE a=18911; UPDATE t2 SET b=56771 WHERE a=18912; UPDATE t2 SET b=12352 WHERE a=18913; UPDATE t2 SET b=81534 WHERE a=18914; UPDATE t2 SET b=60860 WHERE a=18915; UPDATE t2 SET b=8408 WHERE a=18916; UPDATE t2 SET b=25808 WHERE a=18917; UPDATE t2 SET b=31782 WHERE a=18918; UPDATE t2 SET b=18004 WHERE a=18919; UPDATE t2 SET b=74852 WHERE a=18920; UPDATE t2 SET b=46803 WHERE a=18921; UPDATE t2 SET b=6896 WHERE a=18922; UPDATE t2 SET b=7994 WHERE a=18923; UPDATE t2 SET b=62128 WHERE a=18924; UPDATE t2 SET b=11111 WHERE a=18925; UPDATE t2 SET b=91679 WHERE a=18926; UPDATE t2 SET b=20565 WHERE a=18927; UPDATE t2 SET b=63659 WHERE a=18928; UPDATE t2 SET b=44906 WHERE a=18929; UPDATE t2 SET b=94157 WHERE a=18930; UPDATE t2 SET b=2422 WHERE a=18931; UPDATE t2 SET b=45065 WHERE a=18932; UPDATE t2 SET b=20438 WHERE a=18933; UPDATE t2 SET b=68598 WHERE a=18934; UPDATE t2 SET b=51709 WHERE a=18935; UPDATE t2 SET b=41719 WHERE a=18936; UPDATE t2 SET b=21466 WHERE a=18937; UPDATE t2 SET b=69779 WHERE a=18938; UPDATE t2 SET b=36333 WHERE a=18939; UPDATE t2 SET b=10623 WHERE a=18940; UPDATE t2 SET b=88015 WHERE a=18941; UPDATE t2 SET b=32716 WHERE a=18942; UPDATE t2 SET b=12080 WHERE a=18943; UPDATE t2 SET b=74942 WHERE a=18944; UPDATE t2 SET b=86545 WHERE a=18945; UPDATE t2 SET b=32567 WHERE a=18946; UPDATE t2 SET b=74670 WHERE a=18947; UPDATE t2 SET b=70420 WHERE a=18948; UPDATE t2 SET b=79106 WHERE a=18949; UPDATE t2 SET b=40335 WHERE a=18950; UPDATE t2 SET b=68762 WHERE a=18951; UPDATE t2 SET b=66505 WHERE a=18952; UPDATE t2 SET b=71375 WHERE a=18953; UPDATE t2 SET b=83276 WHERE a=18954; UPDATE t2 SET b=72474 WHERE a=18955; UPDATE t2 SET b=59083 WHERE a=18956; UPDATE t2 SET b=95983 WHERE a=18957; UPDATE t2 SET b=64123 WHERE a=18958; UPDATE t2 SET b=54451 WHERE a=18959; UPDATE t2 SET b=73480 WHERE a=18960; UPDATE t2 SET b=39715 WHERE a=18961; UPDATE t2 SET b=74969 WHERE a=18962; UPDATE t2 SET b=81241 WHERE a=18963; UPDATE t2 SET b=27562 WHERE a=18964; UPDATE t2 SET b=15281 WHERE a=18965; UPDATE t2 SET b=48570 WHERE a=18966; UPDATE t2 SET b=74472 WHERE a=18967; UPDATE t2 SET b=17786 WHERE a=18968; UPDATE t2 SET b=36823 WHERE a=18969; UPDATE t2 SET b=74910 WHERE a=18970; UPDATE t2 SET b=1610 WHERE a=18971; UPDATE t2 SET b=84171 WHERE a=18972; UPDATE t2 SET b=59986 WHERE a=18973; UPDATE t2 SET b=71512 WHERE a=18974; UPDATE t2 SET b=91743 WHERE a=18975; UPDATE t2 SET b=43553 WHERE a=18976; UPDATE t2 SET b=49204 WHERE a=18977; UPDATE t2 SET b=65568 WHERE a=18978; UPDATE t2 SET b=60034 WHERE a=18979; UPDATE t2 SET b=97755 WHERE a=18980; UPDATE t2 SET b=85474 WHERE a=18981; UPDATE t2 SET b=97563 WHERE a=18982; UPDATE t2 SET b=17097 WHERE a=18983; UPDATE t2 SET b=46593 WHERE a=18984; UPDATE t2 SET b=60083 WHERE a=18985; UPDATE t2 SET b=12695 WHERE a=18986; UPDATE t2 SET b=82679 WHERE a=18987; UPDATE t2 SET b=68030 WHERE a=18988; UPDATE t2 SET b=78040 WHERE a=18989; UPDATE t2 SET b=506 WHERE a=18990; UPDATE t2 SET b=9330 WHERE a=18991; UPDATE t2 SET b=69220 WHERE a=18992; UPDATE t2 SET b=80602 WHERE a=18993; UPDATE t2 SET b=62313 WHERE a=18994; UPDATE t2 SET b=20674 WHERE a=18995; UPDATE t2 SET b=64161 WHERE a=18996; UPDATE t2 SET b=75898 WHERE a=18997; UPDATE t2 SET b=14208 WHERE a=18998; UPDATE t2 SET b=72310 WHERE a=18999; UPDATE t2 SET b=59343 WHERE a=19000; UPDATE t2 SET b=87001 WHERE a=19001; UPDATE t2 SET b=82078 WHERE a=19002; UPDATE t2 SET b=30657 WHERE a=19003; UPDATE t2 SET b=55113 WHERE a=19004; UPDATE t2 SET b=7104 WHERE a=19005; UPDATE t2 SET b=15788 WHERE a=19006; UPDATE t2 SET b=75819 WHERE a=19007; UPDATE t2 SET b=74802 WHERE a=19008; UPDATE t2 SET b=23577 WHERE a=19009; UPDATE t2 SET b=23313 WHERE a=19010; UPDATE t2 SET b=19193 WHERE a=19011; UPDATE t2 SET b=89497 WHERE a=19012; UPDATE t2 SET b=39381 WHERE a=19013; UPDATE t2 SET b=92008 WHERE a=19014; UPDATE t2 SET b=5626 WHERE a=19015; UPDATE t2 SET b=91767 WHERE a=19016; UPDATE t2 SET b=79611 WHERE a=19017; UPDATE t2 SET b=7549 WHERE a=19018; UPDATE t2 SET b=30378 WHERE a=19019; UPDATE t2 SET b=9220 WHERE a=19020; UPDATE t2 SET b=31474 WHERE a=19021; UPDATE t2 SET b=51377 WHERE a=19022; UPDATE t2 SET b=68674 WHERE a=19023; UPDATE t2 SET b=24240 WHERE a=19024; UPDATE t2 SET b=8720 WHERE a=19025; UPDATE t2 SET b=8924 WHERE a=19026; UPDATE t2 SET b=58577 WHERE a=19027; UPDATE t2 SET b=36610 WHERE a=19028; UPDATE t2 SET b=6389 WHERE a=19029; UPDATE t2 SET b=66037 WHERE a=19030; UPDATE t2 SET b=29526 WHERE a=19031; UPDATE t2 SET b=55271 WHERE a=19032; UPDATE t2 SET b=26644 WHERE a=19033; UPDATE t2 SET b=46583 WHERE a=19034; UPDATE t2 SET b=5843 WHERE a=19035; UPDATE t2 SET b=43124 WHERE a=19036; UPDATE t2 SET b=9208 WHERE a=19037; UPDATE t2 SET b=15216 WHERE a=19038; UPDATE t2 SET b=76635 WHERE a=19039; UPDATE t2 SET b=21693 WHERE a=19040; UPDATE t2 SET b=76270 WHERE a=19041; UPDATE t2 SET b=83788 WHERE a=19042; UPDATE t2 SET b=74913 WHERE a=19043; UPDATE t2 SET b=762 WHERE a=19044; UPDATE t2 SET b=80481 WHERE a=19045; UPDATE t2 SET b=80862 WHERE a=19046; UPDATE t2 SET b=1308 WHERE a=19047; UPDATE t2 SET b=2880 WHERE a=19048; UPDATE t2 SET b=41381 WHERE a=19049; UPDATE t2 SET b=54099 WHERE a=19050; UPDATE t2 SET b=4853 WHERE a=19051; UPDATE t2 SET b=18209 WHERE a=19052; UPDATE t2 SET b=38845 WHERE a=19053; UPDATE t2 SET b=48575 WHERE a=19054; UPDATE t2 SET b=43482 WHERE a=19055; UPDATE t2 SET b=86774 WHERE a=19056; UPDATE t2 SET b=46830 WHERE a=19057; UPDATE t2 SET b=95795 WHERE a=19058; UPDATE t2 SET b=37746 WHERE a=19059; UPDATE t2 SET b=43870 WHERE a=19060; UPDATE t2 SET b=89437 WHERE a=19061; UPDATE t2 SET b=24089 WHERE a=19062; UPDATE t2 SET b=42813 WHERE a=19063; UPDATE t2 SET b=38296 WHERE a=19064; UPDATE t2 SET b=76877 WHERE a=19065; UPDATE t2 SET b=41024 WHERE a=19066; UPDATE t2 SET b=30233 WHERE a=19067; UPDATE t2 SET b=18929 WHERE a=19068; UPDATE t2 SET b=59547 WHERE a=19069; UPDATE t2 SET b=71118 WHERE a=19070; UPDATE t2 SET b=53135 WHERE a=19071; UPDATE t2 SET b=35744 WHERE a=19072; UPDATE t2 SET b=96711 WHERE a=19073; UPDATE t2 SET b=95038 WHERE a=19074; UPDATE t2 SET b=71496 WHERE a=19075; UPDATE t2 SET b=98117 WHERE a=19076; UPDATE t2 SET b=95353 WHERE a=19077; UPDATE t2 SET b=84001 WHERE a=19078; UPDATE t2 SET b=43592 WHERE a=19079; UPDATE t2 SET b=75947 WHERE a=19080; UPDATE t2 SET b=37997 WHERE a=19081; UPDATE t2 SET b=32103 WHERE a=19082; UPDATE t2 SET b=1955 WHERE a=19083; UPDATE t2 SET b=44490 WHERE a=19084; UPDATE t2 SET b=86015 WHERE a=19085; UPDATE t2 SET b=55976 WHERE a=19086; UPDATE t2 SET b=92004 WHERE a=19087; UPDATE t2 SET b=30857 WHERE a=19088; UPDATE t2 SET b=45479 WHERE a=19089; UPDATE t2 SET b=2388 WHERE a=19090; UPDATE t2 SET b=89291 WHERE a=19091; UPDATE t2 SET b=37646 WHERE a=19092; UPDATE t2 SET b=24053 WHERE a=19093; UPDATE t2 SET b=93616 WHERE a=19094; UPDATE t2 SET b=9493 WHERE a=19095; UPDATE t2 SET b=10919 WHERE a=19096; UPDATE t2 SET b=47327 WHERE a=19097; UPDATE t2 SET b=23295 WHERE a=19098; UPDATE t2 SET b=52494 WHERE a=19099; UPDATE t2 SET b=59357 WHERE a=19100; UPDATE t2 SET b=82367 WHERE a=19101; UPDATE t2 SET b=52633 WHERE a=19102; UPDATE t2 SET b=48492 WHERE a=19103; UPDATE t2 SET b=3780 WHERE a=19104; UPDATE t2 SET b=179 WHERE a=19105; UPDATE t2 SET b=82287 WHERE a=19106; UPDATE t2 SET b=50632 WHERE a=19107; UPDATE t2 SET b=48496 WHERE a=19108; UPDATE t2 SET b=49387 WHERE a=19109; UPDATE t2 SET b=75722 WHERE a=19110; UPDATE t2 SET b=69504 WHERE a=19111; UPDATE t2 SET b=53154 WHERE a=19112; UPDATE t2 SET b=88714 WHERE a=19113; UPDATE t2 SET b=86975 WHERE a=19114; UPDATE t2 SET b=83319 WHERE a=19115; UPDATE t2 SET b=52321 WHERE a=19116; UPDATE t2 SET b=95667 WHERE a=19117; UPDATE t2 SET b=57776 WHERE a=19118; UPDATE t2 SET b=47252 WHERE a=19119; UPDATE t2 SET b=96332 WHERE a=19120; UPDATE t2 SET b=98358 WHERE a=19121; UPDATE t2 SET b=20994 WHERE a=19122; UPDATE t2 SET b=76308 WHERE a=19123; UPDATE t2 SET b=707 WHERE a=19124; UPDATE t2 SET b=20393 WHERE a=19125; UPDATE t2 SET b=45446 WHERE a=19126; UPDATE t2 SET b=80760 WHERE a=19127; UPDATE t2 SET b=55002 WHERE a=19128; UPDATE t2 SET b=66450 WHERE a=19129; UPDATE t2 SET b=78742 WHERE a=19130; UPDATE t2 SET b=55908 WHERE a=19131; UPDATE t2 SET b=4307 WHERE a=19132; UPDATE t2 SET b=4296 WHERE a=19133; UPDATE t2 SET b=34919 WHERE a=19134; UPDATE t2 SET b=80423 WHERE a=19135; UPDATE t2 SET b=27475 WHERE a=19136; UPDATE t2 SET b=63045 WHERE a=19137; UPDATE t2 SET b=70230 WHERE a=19138; UPDATE t2 SET b=63399 WHERE a=19139; UPDATE t2 SET b=9313 WHERE a=19140; UPDATE t2 SET b=87001 WHERE a=19141; UPDATE t2 SET b=52224 WHERE a=19142; UPDATE t2 SET b=15457 WHERE a=19143; UPDATE t2 SET b=4633 WHERE a=19144; UPDATE t2 SET b=56653 WHERE a=19145; UPDATE t2 SET b=65859 WHERE a=19146; UPDATE t2 SET b=5387 WHERE a=19147; UPDATE t2 SET b=7216 WHERE a=19148; UPDATE t2 SET b=32923 WHERE a=19149; UPDATE t2 SET b=53657 WHERE a=19150; UPDATE t2 SET b=80511 WHERE a=19151; UPDATE t2 SET b=61493 WHERE a=19152; UPDATE t2 SET b=27749 WHERE a=19153; UPDATE t2 SET b=33897 WHERE a=19154; UPDATE t2 SET b=45254 WHERE a=19155; UPDATE t2 SET b=90062 WHERE a=19156; UPDATE t2 SET b=24043 WHERE a=19157; UPDATE t2 SET b=60480 WHERE a=19158; UPDATE t2 SET b=63771 WHERE a=19159; UPDATE t2 SET b=45750 WHERE a=19160; UPDATE t2 SET b=61287 WHERE a=19161; UPDATE t2 SET b=1509 WHERE a=19162; UPDATE t2 SET b=77211 WHERE a=19163; UPDATE t2 SET b=27118 WHERE a=19164; UPDATE t2 SET b=16410 WHERE a=19165; UPDATE t2 SET b=99887 WHERE a=19166; UPDATE t2 SET b=9035 WHERE a=19167; UPDATE t2 SET b=69163 WHERE a=19168; UPDATE t2 SET b=35692 WHERE a=19169; UPDATE t2 SET b=29281 WHERE a=19170; UPDATE t2 SET b=38416 WHERE a=19171; UPDATE t2 SET b=40149 WHERE a=19172; UPDATE t2 SET b=6869 WHERE a=19173; UPDATE t2 SET b=12429 WHERE a=19174; UPDATE t2 SET b=5568 WHERE a=19175; UPDATE t2 SET b=3639 WHERE a=19176; UPDATE t2 SET b=87260 WHERE a=19177; UPDATE t2 SET b=99936 WHERE a=19178; UPDATE t2 SET b=10414 WHERE a=19179; UPDATE t2 SET b=50014 WHERE a=19180; UPDATE t2 SET b=66378 WHERE a=19181; UPDATE t2 SET b=5071 WHERE a=19182; UPDATE t2 SET b=90827 WHERE a=19183; UPDATE t2 SET b=33989 WHERE a=19184; UPDATE t2 SET b=88706 WHERE a=19185; UPDATE t2 SET b=51723 WHERE a=19186; UPDATE t2 SET b=13832 WHERE a=19187; UPDATE t2 SET b=70863 WHERE a=19188; UPDATE t2 SET b=85173 WHERE a=19189; UPDATE t2 SET b=63940 WHERE a=19190; UPDATE t2 SET b=86315 WHERE a=19191; UPDATE t2 SET b=48820 WHERE a=19192; UPDATE t2 SET b=88015 WHERE a=19193; UPDATE t2 SET b=56010 WHERE a=19194; UPDATE t2 SET b=75853 WHERE a=19195; UPDATE t2 SET b=41001 WHERE a=19196; UPDATE t2 SET b=58437 WHERE a=19197; UPDATE t2 SET b=6496 WHERE a=19198; UPDATE t2 SET b=72815 WHERE a=19199; UPDATE t2 SET b=29450 WHERE a=19200; UPDATE t2 SET b=39389 WHERE a=19201; UPDATE t2 SET b=15659 WHERE a=19202; UPDATE t2 SET b=17192 WHERE a=19203; UPDATE t2 SET b=22766 WHERE a=19204; UPDATE t2 SET b=13636 WHERE a=19205; UPDATE t2 SET b=23624 WHERE a=19206; UPDATE t2 SET b=79129 WHERE a=19207; UPDATE t2 SET b=70915 WHERE a=19208; UPDATE t2 SET b=75768 WHERE a=19209; UPDATE t2 SET b=16775 WHERE a=19210; UPDATE t2 SET b=3395 WHERE a=19211; UPDATE t2 SET b=77244 WHERE a=19212; UPDATE t2 SET b=80607 WHERE a=19213; UPDATE t2 SET b=70601 WHERE a=19214; UPDATE t2 SET b=4455 WHERE a=19215; UPDATE t2 SET b=74734 WHERE a=19216; UPDATE t2 SET b=74055 WHERE a=19217; UPDATE t2 SET b=22427 WHERE a=19218; UPDATE t2 SET b=143 WHERE a=19219; UPDATE t2 SET b=11531 WHERE a=19220; UPDATE t2 SET b=7631 WHERE a=19221; UPDATE t2 SET b=92745 WHERE a=19222; UPDATE t2 SET b=20040 WHERE a=19223; UPDATE t2 SET b=25711 WHERE a=19224; UPDATE t2 SET b=2302 WHERE a=19225; UPDATE t2 SET b=98224 WHERE a=19226; UPDATE t2 SET b=58815 WHERE a=19227; UPDATE t2 SET b=67441 WHERE a=19228; UPDATE t2 SET b=48035 WHERE a=19229; UPDATE t2 SET b=98828 WHERE a=19230; UPDATE t2 SET b=93102 WHERE a=19231; UPDATE t2 SET b=59043 WHERE a=19232; UPDATE t2 SET b=27422 WHERE a=19233; UPDATE t2 SET b=39404 WHERE a=19234; UPDATE t2 SET b=18013 WHERE a=19235; UPDATE t2 SET b=22058 WHERE a=19236; UPDATE t2 SET b=57945 WHERE a=19237; UPDATE t2 SET b=12327 WHERE a=19238; UPDATE t2 SET b=88175 WHERE a=19239; UPDATE t2 SET b=74788 WHERE a=19240; UPDATE t2 SET b=49925 WHERE a=19241; UPDATE t2 SET b=30008 WHERE a=19242; UPDATE t2 SET b=65284 WHERE a=19243; UPDATE t2 SET b=61081 WHERE a=19244; UPDATE t2 SET b=78353 WHERE a=19245; UPDATE t2 SET b=72945 WHERE a=19246; UPDATE t2 SET b=26338 WHERE a=19247; UPDATE t2 SET b=69694 WHERE a=19248; UPDATE t2 SET b=75259 WHERE a=19249; UPDATE t2 SET b=404 WHERE a=19250; UPDATE t2 SET b=97603 WHERE a=19251; UPDATE t2 SET b=56002 WHERE a=19252; UPDATE t2 SET b=5394 WHERE a=19253; UPDATE t2 SET b=40257 WHERE a=19254; UPDATE t2 SET b=44533 WHERE a=19255; UPDATE t2 SET b=24224 WHERE a=19256; UPDATE t2 SET b=61081 WHERE a=19257; UPDATE t2 SET b=32531 WHERE a=19258; UPDATE t2 SET b=38177 WHERE a=19259; UPDATE t2 SET b=98570 WHERE a=19260; UPDATE t2 SET b=19717 WHERE a=19261; UPDATE t2 SET b=81565 WHERE a=19262; UPDATE t2 SET b=77514 WHERE a=19263; UPDATE t2 SET b=40723 WHERE a=19264; UPDATE t2 SET b=19602 WHERE a=19265; UPDATE t2 SET b=81247 WHERE a=19266; UPDATE t2 SET b=10029 WHERE a=19267; UPDATE t2 SET b=68231 WHERE a=19268; UPDATE t2 SET b=54639 WHERE a=19269; UPDATE t2 SET b=58161 WHERE a=19270; UPDATE t2 SET b=87626 WHERE a=19271; UPDATE t2 SET b=16787 WHERE a=19272; UPDATE t2 SET b=75569 WHERE a=19273; UPDATE t2 SET b=9867 WHERE a=19274; UPDATE t2 SET b=74206 WHERE a=19275; UPDATE t2 SET b=50752 WHERE a=19276; UPDATE t2 SET b=86128 WHERE a=19277; UPDATE t2 SET b=4567 WHERE a=19278; UPDATE t2 SET b=5981 WHERE a=19279; UPDATE t2 SET b=61108 WHERE a=19280; UPDATE t2 SET b=82365 WHERE a=19281; UPDATE t2 SET b=37408 WHERE a=19282; UPDATE t2 SET b=86315 WHERE a=19283; UPDATE t2 SET b=69849 WHERE a=19284; UPDATE t2 SET b=47019 WHERE a=19285; UPDATE t2 SET b=82147 WHERE a=19286; UPDATE t2 SET b=5431 WHERE a=19287; UPDATE t2 SET b=31007 WHERE a=19288; UPDATE t2 SET b=91984 WHERE a=19289; UPDATE t2 SET b=15656 WHERE a=19290; UPDATE t2 SET b=43416 WHERE a=19291; UPDATE t2 SET b=31464 WHERE a=19292; UPDATE t2 SET b=17565 WHERE a=19293; UPDATE t2 SET b=86911 WHERE a=19294; UPDATE t2 SET b=17998 WHERE a=19295; UPDATE t2 SET b=50290 WHERE a=19296; UPDATE t2 SET b=22672 WHERE a=19297; UPDATE t2 SET b=71939 WHERE a=19298; UPDATE t2 SET b=38861 WHERE a=19299; UPDATE t2 SET b=20173 WHERE a=19300; UPDATE t2 SET b=84197 WHERE a=19301; UPDATE t2 SET b=609 WHERE a=19302; UPDATE t2 SET b=6432 WHERE a=19303; UPDATE t2 SET b=11512 WHERE a=19304; UPDATE t2 SET b=35782 WHERE a=19305; UPDATE t2 SET b=47275 WHERE a=19306; UPDATE t2 SET b=73229 WHERE a=19307; UPDATE t2 SET b=21369 WHERE a=19308; UPDATE t2 SET b=62906 WHERE a=19309; UPDATE t2 SET b=37493 WHERE a=19310; UPDATE t2 SET b=54777 WHERE a=19311; UPDATE t2 SET b=62512 WHERE a=19312; UPDATE t2 SET b=37925 WHERE a=19313; UPDATE t2 SET b=74292 WHERE a=19314; UPDATE t2 SET b=36595 WHERE a=19315; UPDATE t2 SET b=21481 WHERE a=19316; UPDATE t2 SET b=15506 WHERE a=19317; UPDATE t2 SET b=51922 WHERE a=19318; UPDATE t2 SET b=58977 WHERE a=19319; UPDATE t2 SET b=1242 WHERE a=19320; UPDATE t2 SET b=42770 WHERE a=19321; UPDATE t2 SET b=52579 WHERE a=19322; UPDATE t2 SET b=7514 WHERE a=19323; UPDATE t2 SET b=98502 WHERE a=19324; UPDATE t2 SET b=80675 WHERE a=19325; UPDATE t2 SET b=21405 WHERE a=19326; UPDATE t2 SET b=78311 WHERE a=19327; UPDATE t2 SET b=92566 WHERE a=19328; UPDATE t2 SET b=27589 WHERE a=19329; UPDATE t2 SET b=91350 WHERE a=19330; UPDATE t2 SET b=93301 WHERE a=19331; UPDATE t2 SET b=34235 WHERE a=19332; UPDATE t2 SET b=77103 WHERE a=19333; UPDATE t2 SET b=4956 WHERE a=19334; UPDATE t2 SET b=70075 WHERE a=19335; UPDATE t2 SET b=50378 WHERE a=19336; UPDATE t2 SET b=60095 WHERE a=19337; UPDATE t2 SET b=95068 WHERE a=19338; UPDATE t2 SET b=44819 WHERE a=19339; UPDATE t2 SET b=3311 WHERE a=19340; UPDATE t2 SET b=49851 WHERE a=19341; UPDATE t2 SET b=45450 WHERE a=19342; UPDATE t2 SET b=6773 WHERE a=19343; UPDATE t2 SET b=71648 WHERE a=19344; UPDATE t2 SET b=79136 WHERE a=19345; UPDATE t2 SET b=54209 WHERE a=19346; UPDATE t2 SET b=28038 WHERE a=19347; UPDATE t2 SET b=1535 WHERE a=19348; UPDATE t2 SET b=93295 WHERE a=19349; UPDATE t2 SET b=63633 WHERE a=19350; UPDATE t2 SET b=37198 WHERE a=19351; UPDATE t2 SET b=92880 WHERE a=19352; UPDATE t2 SET b=35069 WHERE a=19353; UPDATE t2 SET b=78648 WHERE a=19354; UPDATE t2 SET b=86209 WHERE a=19355; UPDATE t2 SET b=84945 WHERE a=19356; UPDATE t2 SET b=23608 WHERE a=19357; UPDATE t2 SET b=20133 WHERE a=19358; UPDATE t2 SET b=70500 WHERE a=19359; UPDATE t2 SET b=39954 WHERE a=19360; UPDATE t2 SET b=23780 WHERE a=19361; UPDATE t2 SET b=40377 WHERE a=19362; UPDATE t2 SET b=4815 WHERE a=19363; UPDATE t2 SET b=69103 WHERE a=19364; UPDATE t2 SET b=12583 WHERE a=19365; UPDATE t2 SET b=77203 WHERE a=19366; UPDATE t2 SET b=93586 WHERE a=19367; UPDATE t2 SET b=19711 WHERE a=19368; UPDATE t2 SET b=15718 WHERE a=19369; UPDATE t2 SET b=69763 WHERE a=19370; UPDATE t2 SET b=18678 WHERE a=19371; UPDATE t2 SET b=63399 WHERE a=19372; UPDATE t2 SET b=22830 WHERE a=19373; UPDATE t2 SET b=6452 WHERE a=19374; UPDATE t2 SET b=86033 WHERE a=19375; UPDATE t2 SET b=37012 WHERE a=19376; UPDATE t2 SET b=85034 WHERE a=19377; UPDATE t2 SET b=21631 WHERE a=19378; UPDATE t2 SET b=24025 WHERE a=19379; UPDATE t2 SET b=85199 WHERE a=19380; UPDATE t2 SET b=439 WHERE a=19381; UPDATE t2 SET b=58038 WHERE a=19382; UPDATE t2 SET b=88307 WHERE a=19383; UPDATE t2 SET b=58362 WHERE a=19384; UPDATE t2 SET b=13386 WHERE a=19385; UPDATE t2 SET b=24209 WHERE a=19386; UPDATE t2 SET b=36985 WHERE a=19387; UPDATE t2 SET b=94617 WHERE a=19388; UPDATE t2 SET b=18786 WHERE a=19389; UPDATE t2 SET b=29935 WHERE a=19390; UPDATE t2 SET b=8095 WHERE a=19391; UPDATE t2 SET b=36875 WHERE a=19392; UPDATE t2 SET b=8821 WHERE a=19393; UPDATE t2 SET b=1969 WHERE a=19394; UPDATE t2 SET b=10820 WHERE a=19395; UPDATE t2 SET b=83391 WHERE a=19396; UPDATE t2 SET b=60895 WHERE a=19397; UPDATE t2 SET b=68181 WHERE a=19398; UPDATE t2 SET b=43085 WHERE a=19399; UPDATE t2 SET b=53357 WHERE a=19400; UPDATE t2 SET b=29582 WHERE a=19401; UPDATE t2 SET b=255 WHERE a=19402; UPDATE t2 SET b=97357 WHERE a=19403; UPDATE t2 SET b=98236 WHERE a=19404; UPDATE t2 SET b=15666 WHERE a=19405; UPDATE t2 SET b=94554 WHERE a=19406; UPDATE t2 SET b=20259 WHERE a=19407; UPDATE t2 SET b=98727 WHERE a=19408; UPDATE t2 SET b=76514 WHERE a=19409; UPDATE t2 SET b=30133 WHERE a=19410; UPDATE t2 SET b=13673 WHERE a=19411; UPDATE t2 SET b=62432 WHERE a=19412; UPDATE t2 SET b=46364 WHERE a=19413; UPDATE t2 SET b=7212 WHERE a=19414; UPDATE t2 SET b=33088 WHERE a=19415; UPDATE t2 SET b=45171 WHERE a=19416; UPDATE t2 SET b=83356 WHERE a=19417; UPDATE t2 SET b=11682 WHERE a=19418; UPDATE t2 SET b=87883 WHERE a=19419; UPDATE t2 SET b=87501 WHERE a=19420; UPDATE t2 SET b=36115 WHERE a=19421; UPDATE t2 SET b=65308 WHERE a=19422; UPDATE t2 SET b=83918 WHERE a=19423; UPDATE t2 SET b=50269 WHERE a=19424; UPDATE t2 SET b=62739 WHERE a=19425; UPDATE t2 SET b=56865 WHERE a=19426; UPDATE t2 SET b=51552 WHERE a=19427; UPDATE t2 SET b=43494 WHERE a=19428; UPDATE t2 SET b=53048 WHERE a=19429; UPDATE t2 SET b=88595 WHERE a=19430; UPDATE t2 SET b=17577 WHERE a=19431; UPDATE t2 SET b=97764 WHERE a=19432; UPDATE t2 SET b=69433 WHERE a=19433; UPDATE t2 SET b=90997 WHERE a=19434; UPDATE t2 SET b=68129 WHERE a=19435; UPDATE t2 SET b=94617 WHERE a=19436; UPDATE t2 SET b=79427 WHERE a=19437; UPDATE t2 SET b=27644 WHERE a=19438; UPDATE t2 SET b=73240 WHERE a=19439; UPDATE t2 SET b=8826 WHERE a=19440; UPDATE t2 SET b=21117 WHERE a=19441; UPDATE t2 SET b=73168 WHERE a=19442; UPDATE t2 SET b=11087 WHERE a=19443; UPDATE t2 SET b=42396 WHERE a=19444; UPDATE t2 SET b=46736 WHERE a=19445; UPDATE t2 SET b=4436 WHERE a=19446; UPDATE t2 SET b=20264 WHERE a=19447; UPDATE t2 SET b=90194 WHERE a=19448; UPDATE t2 SET b=9805 WHERE a=19449; UPDATE t2 SET b=48965 WHERE a=19450; UPDATE t2 SET b=68084 WHERE a=19451; UPDATE t2 SET b=61273 WHERE a=19452; UPDATE t2 SET b=28225 WHERE a=19453; UPDATE t2 SET b=39555 WHERE a=19454; UPDATE t2 SET b=88373 WHERE a=19455; UPDATE t2 SET b=54218 WHERE a=19456; UPDATE t2 SET b=2994 WHERE a=19457; UPDATE t2 SET b=4999 WHERE a=19458; UPDATE t2 SET b=92585 WHERE a=19459; UPDATE t2 SET b=31403 WHERE a=19460; UPDATE t2 SET b=18276 WHERE a=19461; UPDATE t2 SET b=43396 WHERE a=19462; UPDATE t2 SET b=82739 WHERE a=19463; UPDATE t2 SET b=98759 WHERE a=19464; UPDATE t2 SET b=50866 WHERE a=19465; UPDATE t2 SET b=88712 WHERE a=19466; UPDATE t2 SET b=74407 WHERE a=19467; UPDATE t2 SET b=70026 WHERE a=19468; UPDATE t2 SET b=46719 WHERE a=19469; UPDATE t2 SET b=24405 WHERE a=19470; UPDATE t2 SET b=22643 WHERE a=19471; UPDATE t2 SET b=92717 WHERE a=19472; UPDATE t2 SET b=57971 WHERE a=19473; UPDATE t2 SET b=59499 WHERE a=19474; UPDATE t2 SET b=418 WHERE a=19475; UPDATE t2 SET b=40237 WHERE a=19476; UPDATE t2 SET b=65847 WHERE a=19477; UPDATE t2 SET b=95214 WHERE a=19478; UPDATE t2 SET b=15268 WHERE a=19479; UPDATE t2 SET b=11583 WHERE a=19480; UPDATE t2 SET b=33379 WHERE a=19481; UPDATE t2 SET b=85382 WHERE a=19482; UPDATE t2 SET b=84640 WHERE a=19483; UPDATE t2 SET b=49875 WHERE a=19484; UPDATE t2 SET b=2322 WHERE a=19485; UPDATE t2 SET b=61859 WHERE a=19486; UPDATE t2 SET b=98561 WHERE a=19487; UPDATE t2 SET b=55416 WHERE a=19488; UPDATE t2 SET b=83783 WHERE a=19489; UPDATE t2 SET b=98261 WHERE a=19490; UPDATE t2 SET b=59503 WHERE a=19491; UPDATE t2 SET b=22337 WHERE a=19492; UPDATE t2 SET b=8921 WHERE a=19493; UPDATE t2 SET b=84554 WHERE a=19494; UPDATE t2 SET b=32090 WHERE a=19495; UPDATE t2 SET b=92707 WHERE a=19496; UPDATE t2 SET b=98159 WHERE a=19497; UPDATE t2 SET b=80881 WHERE a=19498; UPDATE t2 SET b=1018 WHERE a=19499; UPDATE t2 SET b=84064 WHERE a=19500; UPDATE t2 SET b=27386 WHERE a=19501; UPDATE t2 SET b=23744 WHERE a=19502; UPDATE t2 SET b=56662 WHERE a=19503; UPDATE t2 SET b=50537 WHERE a=19504; UPDATE t2 SET b=77633 WHERE a=19505; UPDATE t2 SET b=33699 WHERE a=19506; UPDATE t2 SET b=18191 WHERE a=19507; UPDATE t2 SET b=48136 WHERE a=19508; UPDATE t2 SET b=70147 WHERE a=19509; UPDATE t2 SET b=79188 WHERE a=19510; UPDATE t2 SET b=47177 WHERE a=19511; UPDATE t2 SET b=85035 WHERE a=19512; UPDATE t2 SET b=77862 WHERE a=19513; UPDATE t2 SET b=63248 WHERE a=19514; UPDATE t2 SET b=16168 WHERE a=19515; UPDATE t2 SET b=44688 WHERE a=19516; UPDATE t2 SET b=57332 WHERE a=19517; UPDATE t2 SET b=95633 WHERE a=19518; UPDATE t2 SET b=82713 WHERE a=19519; UPDATE t2 SET b=35564 WHERE a=19520; UPDATE t2 SET b=48453 WHERE a=19521; UPDATE t2 SET b=61448 WHERE a=19522; UPDATE t2 SET b=83921 WHERE a=19523; UPDATE t2 SET b=38773 WHERE a=19524; UPDATE t2 SET b=39287 WHERE a=19525; UPDATE t2 SET b=77290 WHERE a=19526; UPDATE t2 SET b=53245 WHERE a=19527; UPDATE t2 SET b=98597 WHERE a=19528; UPDATE t2 SET b=86054 WHERE a=19529; UPDATE t2 SET b=65931 WHERE a=19530; UPDATE t2 SET b=38324 WHERE a=19531; UPDATE t2 SET b=25451 WHERE a=19532; UPDATE t2 SET b=78680 WHERE a=19533; UPDATE t2 SET b=23516 WHERE a=19534; UPDATE t2 SET b=19753 WHERE a=19535; UPDATE t2 SET b=13816 WHERE a=19536; UPDATE t2 SET b=32056 WHERE a=19537; UPDATE t2 SET b=49082 WHERE a=19538; UPDATE t2 SET b=40336 WHERE a=19539; UPDATE t2 SET b=21906 WHERE a=19540; UPDATE t2 SET b=55916 WHERE a=19541; UPDATE t2 SET b=87088 WHERE a=19542; UPDATE t2 SET b=80835 WHERE a=19543; UPDATE t2 SET b=17797 WHERE a=19544; UPDATE t2 SET b=24764 WHERE a=19545; UPDATE t2 SET b=99562 WHERE a=19546; UPDATE t2 SET b=2511 WHERE a=19547; UPDATE t2 SET b=20030 WHERE a=19548; UPDATE t2 SET b=15453 WHERE a=19549; UPDATE t2 SET b=67163 WHERE a=19550; UPDATE t2 SET b=41588 WHERE a=19551; UPDATE t2 SET b=2668 WHERE a=19552; UPDATE t2 SET b=59657 WHERE a=19553; UPDATE t2 SET b=39704 WHERE a=19554; UPDATE t2 SET b=89698 WHERE a=19555; UPDATE t2 SET b=71499 WHERE a=19556; UPDATE t2 SET b=9072 WHERE a=19557; UPDATE t2 SET b=20020 WHERE a=19558; UPDATE t2 SET b=95332 WHERE a=19559; UPDATE t2 SET b=12086 WHERE a=19560; UPDATE t2 SET b=6096 WHERE a=19561; UPDATE t2 SET b=67415 WHERE a=19562; UPDATE t2 SET b=35869 WHERE a=19563; UPDATE t2 SET b=40315 WHERE a=19564; UPDATE t2 SET b=81630 WHERE a=19565; UPDATE t2 SET b=34395 WHERE a=19566; UPDATE t2 SET b=98208 WHERE a=19567; UPDATE t2 SET b=3570 WHERE a=19568; UPDATE t2 SET b=85585 WHERE a=19569; UPDATE t2 SET b=57728 WHERE a=19570; UPDATE t2 SET b=97848 WHERE a=19571; UPDATE t2 SET b=86009 WHERE a=19572; UPDATE t2 SET b=79109 WHERE a=19573; UPDATE t2 SET b=21855 WHERE a=19574; UPDATE t2 SET b=61611 WHERE a=19575; UPDATE t2 SET b=19795 WHERE a=19576; UPDATE t2 SET b=28507 WHERE a=19577; UPDATE t2 SET b=15448 WHERE a=19578; UPDATE t2 SET b=72103 WHERE a=19579; UPDATE t2 SET b=22434 WHERE a=19580; UPDATE t2 SET b=96317 WHERE a=19581; UPDATE t2 SET b=39685 WHERE a=19582; UPDATE t2 SET b=95585 WHERE a=19583; UPDATE t2 SET b=43969 WHERE a=19584; UPDATE t2 SET b=2567 WHERE a=19585; UPDATE t2 SET b=47500 WHERE a=19586; UPDATE t2 SET b=49282 WHERE a=19587; UPDATE t2 SET b=42199 WHERE a=19588; UPDATE t2 SET b=62408 WHERE a=19589; UPDATE t2 SET b=79332 WHERE a=19590; UPDATE t2 SET b=40763 WHERE a=19591; UPDATE t2 SET b=41139 WHERE a=19592; UPDATE t2 SET b=99891 WHERE a=19593; UPDATE t2 SET b=5569 WHERE a=19594; UPDATE t2 SET b=12862 WHERE a=19595; UPDATE t2 SET b=41403 WHERE a=19596; UPDATE t2 SET b=42507 WHERE a=19597; UPDATE t2 SET b=93416 WHERE a=19598; UPDATE t2 SET b=4091 WHERE a=19599; UPDATE t2 SET b=11108 WHERE a=19600; UPDATE t2 SET b=65174 WHERE a=19601; UPDATE t2 SET b=32667 WHERE a=19602; UPDATE t2 SET b=53741 WHERE a=19603; UPDATE t2 SET b=92703 WHERE a=19604; UPDATE t2 SET b=86734 WHERE a=19605; UPDATE t2 SET b=85419 WHERE a=19606; UPDATE t2 SET b=73555 WHERE a=19607; UPDATE t2 SET b=30046 WHERE a=19608; UPDATE t2 SET b=39392 WHERE a=19609; UPDATE t2 SET b=25583 WHERE a=19610; UPDATE t2 SET b=39976 WHERE a=19611; UPDATE t2 SET b=61183 WHERE a=19612; UPDATE t2 SET b=54998 WHERE a=19613; UPDATE t2 SET b=45767 WHERE a=19614; UPDATE t2 SET b=87278 WHERE a=19615; UPDATE t2 SET b=14439 WHERE a=19616; UPDATE t2 SET b=45226 WHERE a=19617; UPDATE t2 SET b=5879 WHERE a=19618; UPDATE t2 SET b=51617 WHERE a=19619; UPDATE t2 SET b=20216 WHERE a=19620; UPDATE t2 SET b=81229 WHERE a=19621; UPDATE t2 SET b=78006 WHERE a=19622; UPDATE t2 SET b=69098 WHERE a=19623; UPDATE t2 SET b=34762 WHERE a=19624; UPDATE t2 SET b=78835 WHERE a=19625; UPDATE t2 SET b=58671 WHERE a=19626; UPDATE t2 SET b=37659 WHERE a=19627; UPDATE t2 SET b=35937 WHERE a=19628; UPDATE t2 SET b=40965 WHERE a=19629; UPDATE t2 SET b=5028 WHERE a=19630; UPDATE t2 SET b=76319 WHERE a=19631; UPDATE t2 SET b=93927 WHERE a=19632; UPDATE t2 SET b=41329 WHERE a=19633; UPDATE t2 SET b=80536 WHERE a=19634; UPDATE t2 SET b=58667 WHERE a=19635; UPDATE t2 SET b=89851 WHERE a=19636; UPDATE t2 SET b=75205 WHERE a=19637; UPDATE t2 SET b=54994 WHERE a=19638; UPDATE t2 SET b=56515 WHERE a=19639; UPDATE t2 SET b=9587 WHERE a=19640; UPDATE t2 SET b=80925 WHERE a=19641; UPDATE t2 SET b=18932 WHERE a=19642; UPDATE t2 SET b=90277 WHERE a=19643; UPDATE t2 SET b=20430 WHERE a=19644; UPDATE t2 SET b=49674 WHERE a=19645; UPDATE t2 SET b=3944 WHERE a=19646; UPDATE t2 SET b=67861 WHERE a=19647; UPDATE t2 SET b=52707 WHERE a=19648; UPDATE t2 SET b=8380 WHERE a=19649; UPDATE t2 SET b=87362 WHERE a=19650; UPDATE t2 SET b=58315 WHERE a=19651; UPDATE t2 SET b=84876 WHERE a=19652; UPDATE t2 SET b=10081 WHERE a=19653; UPDATE t2 SET b=67383 WHERE a=19654; UPDATE t2 SET b=53908 WHERE a=19655; UPDATE t2 SET b=72099 WHERE a=19656; UPDATE t2 SET b=14800 WHERE a=19657; UPDATE t2 SET b=84197 WHERE a=19658; UPDATE t2 SET b=62196 WHERE a=19659; UPDATE t2 SET b=40540 WHERE a=19660; UPDATE t2 SET b=62635 WHERE a=19661; UPDATE t2 SET b=97113 WHERE a=19662; UPDATE t2 SET b=51169 WHERE a=19663; UPDATE t2 SET b=47027 WHERE a=19664; UPDATE t2 SET b=84803 WHERE a=19665; UPDATE t2 SET b=11293 WHERE a=19666; UPDATE t2 SET b=53087 WHERE a=19667; UPDATE t2 SET b=24587 WHERE a=19668; UPDATE t2 SET b=87766 WHERE a=19669; UPDATE t2 SET b=58092 WHERE a=19670; UPDATE t2 SET b=19290 WHERE a=19671; UPDATE t2 SET b=59197 WHERE a=19672; UPDATE t2 SET b=44041 WHERE a=19673; UPDATE t2 SET b=40450 WHERE a=19674; UPDATE t2 SET b=54639 WHERE a=19675; UPDATE t2 SET b=8279 WHERE a=19676; UPDATE t2 SET b=44453 WHERE a=19677; UPDATE t2 SET b=64735 WHERE a=19678; UPDATE t2 SET b=31838 WHERE a=19679; UPDATE t2 SET b=7756 WHERE a=19680; UPDATE t2 SET b=60639 WHERE a=19681; UPDATE t2 SET b=26249 WHERE a=19682; UPDATE t2 SET b=83669 WHERE a=19683; UPDATE t2 SET b=68844 WHERE a=19684; UPDATE t2 SET b=89156 WHERE a=19685; UPDATE t2 SET b=88224 WHERE a=19686; UPDATE t2 SET b=71125 WHERE a=19687; UPDATE t2 SET b=43986 WHERE a=19688; UPDATE t2 SET b=45173 WHERE a=19689; UPDATE t2 SET b=34302 WHERE a=19690; UPDATE t2 SET b=43002 WHERE a=19691; UPDATE t2 SET b=86384 WHERE a=19692; UPDATE t2 SET b=55575 WHERE a=19693; UPDATE t2 SET b=35240 WHERE a=19694; UPDATE t2 SET b=84446 WHERE a=19695; UPDATE t2 SET b=16593 WHERE a=19696; UPDATE t2 SET b=31912 WHERE a=19697; UPDATE t2 SET b=72408 WHERE a=19698; UPDATE t2 SET b=19845 WHERE a=19699; UPDATE t2 SET b=82677 WHERE a=19700; UPDATE t2 SET b=79028 WHERE a=19701; UPDATE t2 SET b=75035 WHERE a=19702; UPDATE t2 SET b=6359 WHERE a=19703; UPDATE t2 SET b=65175 WHERE a=19704; UPDATE t2 SET b=59913 WHERE a=19705; UPDATE t2 SET b=37607 WHERE a=19706; UPDATE t2 SET b=41535 WHERE a=19707; UPDATE t2 SET b=70963 WHERE a=19708; UPDATE t2 SET b=92537 WHERE a=19709; UPDATE t2 SET b=17662 WHERE a=19710; UPDATE t2 SET b=39986 WHERE a=19711; UPDATE t2 SET b=34789 WHERE a=19712; UPDATE t2 SET b=38354 WHERE a=19713; UPDATE t2 SET b=7016 WHERE a=19714; UPDATE t2 SET b=52450 WHERE a=19715; UPDATE t2 SET b=11712 WHERE a=19716; UPDATE t2 SET b=27931 WHERE a=19717; UPDATE t2 SET b=71749 WHERE a=19718; UPDATE t2 SET b=32136 WHERE a=19719; UPDATE t2 SET b=90198 WHERE a=19720; UPDATE t2 SET b=29256 WHERE a=19721; UPDATE t2 SET b=2224 WHERE a=19722; UPDATE t2 SET b=80003 WHERE a=19723; UPDATE t2 SET b=6772 WHERE a=19724; UPDATE t2 SET b=25577 WHERE a=19725; UPDATE t2 SET b=7921 WHERE a=19726; UPDATE t2 SET b=20899 WHERE a=19727; UPDATE t2 SET b=67688 WHERE a=19728; UPDATE t2 SET b=77967 WHERE a=19729; UPDATE t2 SET b=47292 WHERE a=19730; UPDATE t2 SET b=21102 WHERE a=19731; UPDATE t2 SET b=92268 WHERE a=19732; UPDATE t2 SET b=51430 WHERE a=19733; UPDATE t2 SET b=75186 WHERE a=19734; UPDATE t2 SET b=49659 WHERE a=19735; UPDATE t2 SET b=37955 WHERE a=19736; UPDATE t2 SET b=3027 WHERE a=19737; UPDATE t2 SET b=82320 WHERE a=19738; UPDATE t2 SET b=53285 WHERE a=19739; UPDATE t2 SET b=33846 WHERE a=19740; UPDATE t2 SET b=50330 WHERE a=19741; UPDATE t2 SET b=85648 WHERE a=19742; UPDATE t2 SET b=16126 WHERE a=19743; UPDATE t2 SET b=11923 WHERE a=19744; UPDATE t2 SET b=66094 WHERE a=19745; UPDATE t2 SET b=64255 WHERE a=19746; UPDATE t2 SET b=73306 WHERE a=19747; UPDATE t2 SET b=39728 WHERE a=19748; UPDATE t2 SET b=91238 WHERE a=19749; UPDATE t2 SET b=14997 WHERE a=19750; UPDATE t2 SET b=96799 WHERE a=19751; UPDATE t2 SET b=59416 WHERE a=19752; UPDATE t2 SET b=98155 WHERE a=19753; UPDATE t2 SET b=47063 WHERE a=19754; UPDATE t2 SET b=2177 WHERE a=19755; UPDATE t2 SET b=78694 WHERE a=19756; UPDATE t2 SET b=8853 WHERE a=19757; UPDATE t2 SET b=19235 WHERE a=19758; UPDATE t2 SET b=21570 WHERE a=19759; UPDATE t2 SET b=63365 WHERE a=19760; UPDATE t2 SET b=48475 WHERE a=19761; UPDATE t2 SET b=31192 WHERE a=19762; UPDATE t2 SET b=7219 WHERE a=19763; UPDATE t2 SET b=78480 WHERE a=19764; UPDATE t2 SET b=34642 WHERE a=19765; UPDATE t2 SET b=49397 WHERE a=19766; UPDATE t2 SET b=51475 WHERE a=19767; UPDATE t2 SET b=63392 WHERE a=19768; UPDATE t2 SET b=41986 WHERE a=19769; UPDATE t2 SET b=28490 WHERE a=19770; UPDATE t2 SET b=8011 WHERE a=19771; UPDATE t2 SET b=10501 WHERE a=19772; UPDATE t2 SET b=12715 WHERE a=19773; UPDATE t2 SET b=93716 WHERE a=19774; UPDATE t2 SET b=10778 WHERE a=19775; UPDATE t2 SET b=76984 WHERE a=19776; UPDATE t2 SET b=24772 WHERE a=19777; UPDATE t2 SET b=52958 WHERE a=19778; UPDATE t2 SET b=58042 WHERE a=19779; UPDATE t2 SET b=35507 WHERE a=19780; UPDATE t2 SET b=25385 WHERE a=19781; UPDATE t2 SET b=72499 WHERE a=19782; UPDATE t2 SET b=40717 WHERE a=19783; UPDATE t2 SET b=39190 WHERE a=19784; UPDATE t2 SET b=62864 WHERE a=19785; UPDATE t2 SET b=66137 WHERE a=19786; UPDATE t2 SET b=86105 WHERE a=19787; UPDATE t2 SET b=49538 WHERE a=19788; UPDATE t2 SET b=91614 WHERE a=19789; UPDATE t2 SET b=25547 WHERE a=19790; UPDATE t2 SET b=84122 WHERE a=19791; UPDATE t2 SET b=83379 WHERE a=19792; UPDATE t2 SET b=91456 WHERE a=19793; UPDATE t2 SET b=8936 WHERE a=19794; UPDATE t2 SET b=6101 WHERE a=19795; UPDATE t2 SET b=77451 WHERE a=19796; UPDATE t2 SET b=261 WHERE a=19797; UPDATE t2 SET b=4907 WHERE a=19798; UPDATE t2 SET b=2721 WHERE a=19799; UPDATE t2 SET b=94367 WHERE a=19800; UPDATE t2 SET b=92970 WHERE a=19801; UPDATE t2 SET b=47261 WHERE a=19802; UPDATE t2 SET b=12089 WHERE a=19803; UPDATE t2 SET b=45365 WHERE a=19804; UPDATE t2 SET b=22659 WHERE a=19805; UPDATE t2 SET b=12756 WHERE a=19806; UPDATE t2 SET b=85973 WHERE a=19807; UPDATE t2 SET b=93183 WHERE a=19808; UPDATE t2 SET b=40854 WHERE a=19809; UPDATE t2 SET b=20740 WHERE a=19810; UPDATE t2 SET b=80238 WHERE a=19811; UPDATE t2 SET b=12739 WHERE a=19812; UPDATE t2 SET b=24513 WHERE a=19813; UPDATE t2 SET b=84977 WHERE a=19814; UPDATE t2 SET b=46795 WHERE a=19815; UPDATE t2 SET b=98450 WHERE a=19816; UPDATE t2 SET b=97814 WHERE a=19817; UPDATE t2 SET b=58294 WHERE a=19818; UPDATE t2 SET b=2755 WHERE a=19819; UPDATE t2 SET b=19587 WHERE a=19820; UPDATE t2 SET b=17338 WHERE a=19821; UPDATE t2 SET b=19852 WHERE a=19822; UPDATE t2 SET b=37279 WHERE a=19823; UPDATE t2 SET b=55386 WHERE a=19824; UPDATE t2 SET b=61175 WHERE a=19825; UPDATE t2 SET b=87526 WHERE a=19826; UPDATE t2 SET b=10984 WHERE a=19827; UPDATE t2 SET b=42743 WHERE a=19828; UPDATE t2 SET b=87599 WHERE a=19829; UPDATE t2 SET b=10055 WHERE a=19830; UPDATE t2 SET b=9168 WHERE a=19831; UPDATE t2 SET b=62073 WHERE a=19832; UPDATE t2 SET b=53498 WHERE a=19833; UPDATE t2 SET b=24425 WHERE a=19834; UPDATE t2 SET b=58855 WHERE a=19835; UPDATE t2 SET b=54078 WHERE a=19836; UPDATE t2 SET b=9431 WHERE a=19837; UPDATE t2 SET b=14008 WHERE a=19838; UPDATE t2 SET b=44608 WHERE a=19839; UPDATE t2 SET b=48469 WHERE a=19840; UPDATE t2 SET b=23008 WHERE a=19841; UPDATE t2 SET b=69109 WHERE a=19842; UPDATE t2 SET b=75732 WHERE a=19843; UPDATE t2 SET b=98425 WHERE a=19844; UPDATE t2 SET b=97744 WHERE a=19845; UPDATE t2 SET b=65718 WHERE a=19846; UPDATE t2 SET b=3693 WHERE a=19847; UPDATE t2 SET b=34384 WHERE a=19848; UPDATE t2 SET b=41486 WHERE a=19849; UPDATE t2 SET b=76177 WHERE a=19850; UPDATE t2 SET b=87303 WHERE a=19851; UPDATE t2 SET b=85459 WHERE a=19852; UPDATE t2 SET b=29033 WHERE a=19853; UPDATE t2 SET b=66628 WHERE a=19854; UPDATE t2 SET b=25135 WHERE a=19855; UPDATE t2 SET b=207 WHERE a=19856; UPDATE t2 SET b=27939 WHERE a=19857; UPDATE t2 SET b=372 WHERE a=19858; UPDATE t2 SET b=94966 WHERE a=19859; UPDATE t2 SET b=78718 WHERE a=19860; UPDATE t2 SET b=363 WHERE a=19861; UPDATE t2 SET b=1021 WHERE a=19862; UPDATE t2 SET b=79656 WHERE a=19863; UPDATE t2 SET b=79010 WHERE a=19864; UPDATE t2 SET b=96906 WHERE a=19865; UPDATE t2 SET b=83584 WHERE a=19866; UPDATE t2 SET b=50942 WHERE a=19867; UPDATE t2 SET b=77529 WHERE a=19868; UPDATE t2 SET b=995 WHERE a=19869; UPDATE t2 SET b=45833 WHERE a=19870; UPDATE t2 SET b=78180 WHERE a=19871; UPDATE t2 SET b=30088 WHERE a=19872; UPDATE t2 SET b=49030 WHERE a=19873; UPDATE t2 SET b=21953 WHERE a=19874; UPDATE t2 SET b=98653 WHERE a=19875; UPDATE t2 SET b=87344 WHERE a=19876; UPDATE t2 SET b=92851 WHERE a=19877; UPDATE t2 SET b=61683 WHERE a=19878; UPDATE t2 SET b=42356 WHERE a=19879; UPDATE t2 SET b=96902 WHERE a=19880; UPDATE t2 SET b=5930 WHERE a=19881; UPDATE t2 SET b=62758 WHERE a=19882; UPDATE t2 SET b=8533 WHERE a=19883; UPDATE t2 SET b=95679 WHERE a=19884; UPDATE t2 SET b=40451 WHERE a=19885; UPDATE t2 SET b=60466 WHERE a=19886; UPDATE t2 SET b=41758 WHERE a=19887; UPDATE t2 SET b=48733 WHERE a=19888; UPDATE t2 SET b=53471 WHERE a=19889; UPDATE t2 SET b=10868 WHERE a=19890; UPDATE t2 SET b=25937 WHERE a=19891; UPDATE t2 SET b=93696 WHERE a=19892; UPDATE t2 SET b=13753 WHERE a=19893; UPDATE t2 SET b=43654 WHERE a=19894; UPDATE t2 SET b=12954 WHERE a=19895; UPDATE t2 SET b=65960 WHERE a=19896; UPDATE t2 SET b=54507 WHERE a=19897; UPDATE t2 SET b=47254 WHERE a=19898; UPDATE t2 SET b=68936 WHERE a=19899; UPDATE t2 SET b=63298 WHERE a=19900; UPDATE t2 SET b=16322 WHERE a=19901; UPDATE t2 SET b=31703 WHERE a=19902; UPDATE t2 SET b=18721 WHERE a=19903; UPDATE t2 SET b=59338 WHERE a=19904; UPDATE t2 SET b=2296 WHERE a=19905; UPDATE t2 SET b=39867 WHERE a=19906; UPDATE t2 SET b=36683 WHERE a=19907; UPDATE t2 SET b=43171 WHERE a=19908; UPDATE t2 SET b=2332 WHERE a=19909; UPDATE t2 SET b=56713 WHERE a=19910; UPDATE t2 SET b=15803 WHERE a=19911; UPDATE t2 SET b=24057 WHERE a=19912; UPDATE t2 SET b=73726 WHERE a=19913; UPDATE t2 SET b=90556 WHERE a=19914; UPDATE t2 SET b=69272 WHERE a=19915; UPDATE t2 SET b=69937 WHERE a=19916; UPDATE t2 SET b=11877 WHERE a=19917; UPDATE t2 SET b=19219 WHERE a=19918; UPDATE t2 SET b=32867 WHERE a=19919; UPDATE t2 SET b=51119 WHERE a=19920; UPDATE t2 SET b=48783 WHERE a=19921; UPDATE t2 SET b=32755 WHERE a=19922; UPDATE t2 SET b=1111 WHERE a=19923; UPDATE t2 SET b=4583 WHERE a=19924; UPDATE t2 SET b=27153 WHERE a=19925; UPDATE t2 SET b=98153 WHERE a=19926; UPDATE t2 SET b=44837 WHERE a=19927; UPDATE t2 SET b=74950 WHERE a=19928; UPDATE t2 SET b=25891 WHERE a=19929; UPDATE t2 SET b=32762 WHERE a=19930; UPDATE t2 SET b=98327 WHERE a=19931; UPDATE t2 SET b=50465 WHERE a=19932; UPDATE t2 SET b=85916 WHERE a=19933; UPDATE t2 SET b=58419 WHERE a=19934; UPDATE t2 SET b=82838 WHERE a=19935; UPDATE t2 SET b=16965 WHERE a=19936; UPDATE t2 SET b=63981 WHERE a=19937; UPDATE t2 SET b=58687 WHERE a=19938; UPDATE t2 SET b=81401 WHERE a=19939; UPDATE t2 SET b=11194 WHERE a=19940; UPDATE t2 SET b=64063 WHERE a=19941; UPDATE t2 SET b=96953 WHERE a=19942; UPDATE t2 SET b=1407 WHERE a=19943; UPDATE t2 SET b=52760 WHERE a=19944; UPDATE t2 SET b=95487 WHERE a=19945; UPDATE t2 SET b=33598 WHERE a=19946; UPDATE t2 SET b=61758 WHERE a=19947; UPDATE t2 SET b=53723 WHERE a=19948; UPDATE t2 SET b=57496 WHERE a=19949; UPDATE t2 SET b=82442 WHERE a=19950; UPDATE t2 SET b=14350 WHERE a=19951; UPDATE t2 SET b=52545 WHERE a=19952; UPDATE t2 SET b=36471 WHERE a=19953; UPDATE t2 SET b=68112 WHERE a=19954; UPDATE t2 SET b=97999 WHERE a=19955; UPDATE t2 SET b=30631 WHERE a=19956; UPDATE t2 SET b=96744 WHERE a=19957; UPDATE t2 SET b=28255 WHERE a=19958; UPDATE t2 SET b=62764 WHERE a=19959; UPDATE t2 SET b=43197 WHERE a=19960; UPDATE t2 SET b=21098 WHERE a=19961; UPDATE t2 SET b=45107 WHERE a=19962; UPDATE t2 SET b=68513 WHERE a=19963; UPDATE t2 SET b=22109 WHERE a=19964; UPDATE t2 SET b=96570 WHERE a=19965; UPDATE t2 SET b=78312 WHERE a=19966; UPDATE t2 SET b=18438 WHERE a=19967; UPDATE t2 SET b=20138 WHERE a=19968; UPDATE t2 SET b=16905 WHERE a=19969; UPDATE t2 SET b=65463 WHERE a=19970; UPDATE t2 SET b=26144 WHERE a=19971; UPDATE t2 SET b=90509 WHERE a=19972; UPDATE t2 SET b=10246 WHERE a=19973; UPDATE t2 SET b=10420 WHERE a=19974; UPDATE t2 SET b=24678 WHERE a=19975; UPDATE t2 SET b=9750 WHERE a=19976; UPDATE t2 SET b=64580 WHERE a=19977; UPDATE t2 SET b=32021 WHERE a=19978; UPDATE t2 SET b=94411 WHERE a=19979; UPDATE t2 SET b=82804 WHERE a=19980; UPDATE t2 SET b=96099 WHERE a=19981; UPDATE t2 SET b=27619 WHERE a=19982; UPDATE t2 SET b=42387 WHERE a=19983; UPDATE t2 SET b=30347 WHERE a=19984; UPDATE t2 SET b=60280 WHERE a=19985; UPDATE t2 SET b=10151 WHERE a=19986; UPDATE t2 SET b=54470 WHERE a=19987; UPDATE t2 SET b=54795 WHERE a=19988; UPDATE t2 SET b=74475 WHERE a=19989; UPDATE t2 SET b=14939 WHERE a=19990; UPDATE t2 SET b=42649 WHERE a=19991; UPDATE t2 SET b=98811 WHERE a=19992; UPDATE t2 SET b=16653 WHERE a=19993; UPDATE t2 SET b=46623 WHERE a=19994; UPDATE t2 SET b=37213 WHERE a=19995; UPDATE t2 SET b=60649 WHERE a=19996; UPDATE t2 SET b=47643 WHERE a=19997; UPDATE t2 SET b=44118 WHERE a=19998; UPDATE t2 SET b=58313 WHERE a=19999; UPDATE t2 SET b=73569 WHERE a=20000; UPDATE t2 SET b=65872 WHERE a=20001; UPDATE t2 SET b=33913 WHERE a=20002; UPDATE t2 SET b=56093 WHERE a=20003; UPDATE t2 SET b=23235 WHERE a=20004; UPDATE t2 SET b=97868 WHERE a=20005; UPDATE t2 SET b=85790 WHERE a=20006; UPDATE t2 SET b=16283 WHERE a=20007; UPDATE t2 SET b=53123 WHERE a=20008; UPDATE t2 SET b=85477 WHERE a=20009; UPDATE t2 SET b=9707 WHERE a=20010; UPDATE t2 SET b=53738 WHERE a=20011; UPDATE t2 SET b=18886 WHERE a=20012; UPDATE t2 SET b=37246 WHERE a=20013; UPDATE t2 SET b=95006 WHERE a=20014; UPDATE t2 SET b=81843 WHERE a=20015; UPDATE t2 SET b=66062 WHERE a=20016; UPDATE t2 SET b=29884 WHERE a=20017; UPDATE t2 SET b=29410 WHERE a=20018; UPDATE t2 SET b=30278 WHERE a=20019; UPDATE t2 SET b=45999 WHERE a=20020; UPDATE t2 SET b=56649 WHERE a=20021; UPDATE t2 SET b=64098 WHERE a=20022; UPDATE t2 SET b=8476 WHERE a=20023; UPDATE t2 SET b=14824 WHERE a=20024; UPDATE t2 SET b=60124 WHERE a=20025; UPDATE t2 SET b=53742 WHERE a=20026; UPDATE t2 SET b=3421 WHERE a=20027; UPDATE t2 SET b=39755 WHERE a=20028; UPDATE t2 SET b=22157 WHERE a=20029; UPDATE t2 SET b=24364 WHERE a=20030; UPDATE t2 SET b=21598 WHERE a=20031; UPDATE t2 SET b=12526 WHERE a=20032; UPDATE t2 SET b=39693 WHERE a=20033; UPDATE t2 SET b=68184 WHERE a=20034; UPDATE t2 SET b=22952 WHERE a=20035; UPDATE t2 SET b=18097 WHERE a=20036; UPDATE t2 SET b=86157 WHERE a=20037; UPDATE t2 SET b=35926 WHERE a=20038; UPDATE t2 SET b=20261 WHERE a=20039; UPDATE t2 SET b=79200 WHERE a=20040; UPDATE t2 SET b=29979 WHERE a=20041; UPDATE t2 SET b=81336 WHERE a=20042; UPDATE t2 SET b=90203 WHERE a=20043; UPDATE t2 SET b=53856 WHERE a=20044; UPDATE t2 SET b=99085 WHERE a=20045; UPDATE t2 SET b=87710 WHERE a=20046; UPDATE t2 SET b=86246 WHERE a=20047; UPDATE t2 SET b=96508 WHERE a=20048; UPDATE t2 SET b=45098 WHERE a=20049; UPDATE t2 SET b=65898 WHERE a=20050; UPDATE t2 SET b=3489 WHERE a=20051; UPDATE t2 SET b=61281 WHERE a=20052; UPDATE t2 SET b=16926 WHERE a=20053; UPDATE t2 SET b=81092 WHERE a=20054; UPDATE t2 SET b=18842 WHERE a=20055; UPDATE t2 SET b=11435 WHERE a=20056; UPDATE t2 SET b=26431 WHERE a=20057; UPDATE t2 SET b=22261 WHERE a=20058; UPDATE t2 SET b=7438 WHERE a=20059; UPDATE t2 SET b=92497 WHERE a=20060; UPDATE t2 SET b=38529 WHERE a=20061; UPDATE t2 SET b=12638 WHERE a=20062; UPDATE t2 SET b=69938 WHERE a=20063; UPDATE t2 SET b=74914 WHERE a=20064; UPDATE t2 SET b=19038 WHERE a=20065; UPDATE t2 SET b=50632 WHERE a=20066; UPDATE t2 SET b=5150 WHERE a=20067; UPDATE t2 SET b=6392 WHERE a=20068; UPDATE t2 SET b=43958 WHERE a=20069; UPDATE t2 SET b=28779 WHERE a=20070; UPDATE t2 SET b=37396 WHERE a=20071; UPDATE t2 SET b=91352 WHERE a=20072; UPDATE t2 SET b=60381 WHERE a=20073; UPDATE t2 SET b=1575 WHERE a=20074; UPDATE t2 SET b=15516 WHERE a=20075; UPDATE t2 SET b=82760 WHERE a=20076; UPDATE t2 SET b=16085 WHERE a=20077; UPDATE t2 SET b=6582 WHERE a=20078; UPDATE t2 SET b=22312 WHERE a=20079; UPDATE t2 SET b=93702 WHERE a=20080; UPDATE t2 SET b=33711 WHERE a=20081; UPDATE t2 SET b=49354 WHERE a=20082; UPDATE t2 SET b=22426 WHERE a=20083; UPDATE t2 SET b=17579 WHERE a=20084; UPDATE t2 SET b=55177 WHERE a=20085; UPDATE t2 SET b=90192 WHERE a=20086; UPDATE t2 SET b=53560 WHERE a=20087; UPDATE t2 SET b=10311 WHERE a=20088; UPDATE t2 SET b=44961 WHERE a=20089; UPDATE t2 SET b=16894 WHERE a=20090; UPDATE t2 SET b=63375 WHERE a=20091; UPDATE t2 SET b=58402 WHERE a=20092; UPDATE t2 SET b=79232 WHERE a=20093; UPDATE t2 SET b=64777 WHERE a=20094; UPDATE t2 SET b=7570 WHERE a=20095; UPDATE t2 SET b=21453 WHERE a=20096; UPDATE t2 SET b=77519 WHERE a=20097; UPDATE t2 SET b=41568 WHERE a=20098; UPDATE t2 SET b=95137 WHERE a=20099; UPDATE t2 SET b=79795 WHERE a=20100; UPDATE t2 SET b=98214 WHERE a=20101; UPDATE t2 SET b=69626 WHERE a=20102; UPDATE t2 SET b=62146 WHERE a=20103; UPDATE t2 SET b=75178 WHERE a=20104; UPDATE t2 SET b=4257 WHERE a=20105; UPDATE t2 SET b=95356 WHERE a=20106; UPDATE t2 SET b=93138 WHERE a=20107; UPDATE t2 SET b=30998 WHERE a=20108; UPDATE t2 SET b=41415 WHERE a=20109; UPDATE t2 SET b=96492 WHERE a=20110; UPDATE t2 SET b=87231 WHERE a=20111; UPDATE t2 SET b=67359 WHERE a=20112; UPDATE t2 SET b=20816 WHERE a=20113; UPDATE t2 SET b=16634 WHERE a=20114; UPDATE t2 SET b=68864 WHERE a=20115; UPDATE t2 SET b=24279 WHERE a=20116; UPDATE t2 SET b=39864 WHERE a=20117; UPDATE t2 SET b=23467 WHERE a=20118; UPDATE t2 SET b=18937 WHERE a=20119; UPDATE t2 SET b=7419 WHERE a=20120; UPDATE t2 SET b=99290 WHERE a=20121; UPDATE t2 SET b=19004 WHERE a=20122; UPDATE t2 SET b=90179 WHERE a=20123; UPDATE t2 SET b=93036 WHERE a=20124; UPDATE t2 SET b=313 WHERE a=20125; UPDATE t2 SET b=8311 WHERE a=20126; UPDATE t2 SET b=9489 WHERE a=20127; UPDATE t2 SET b=69771 WHERE a=20128; UPDATE t2 SET b=15073 WHERE a=20129; UPDATE t2 SET b=98823 WHERE a=20130; UPDATE t2 SET b=24748 WHERE a=20131; UPDATE t2 SET b=58662 WHERE a=20132; UPDATE t2 SET b=3581 WHERE a=20133; UPDATE t2 SET b=82652 WHERE a=20134; UPDATE t2 SET b=97985 WHERE a=20135; UPDATE t2 SET b=95905 WHERE a=20136; UPDATE t2 SET b=94051 WHERE a=20137; UPDATE t2 SET b=77816 WHERE a=20138; UPDATE t2 SET b=19625 WHERE a=20139; UPDATE t2 SET b=7416 WHERE a=20140; UPDATE t2 SET b=56740 WHERE a=20141; UPDATE t2 SET b=9012 WHERE a=20142; UPDATE t2 SET b=81319 WHERE a=20143; UPDATE t2 SET b=6087 WHERE a=20144; UPDATE t2 SET b=12587 WHERE a=20145; UPDATE t2 SET b=33250 WHERE a=20146; UPDATE t2 SET b=56243 WHERE a=20147; UPDATE t2 SET b=486 WHERE a=20148; UPDATE t2 SET b=58227 WHERE a=20149; UPDATE t2 SET b=67943 WHERE a=20150; UPDATE t2 SET b=12418 WHERE a=20151; UPDATE t2 SET b=46802 WHERE a=20152; UPDATE t2 SET b=90646 WHERE a=20153; UPDATE t2 SET b=5864 WHERE a=20154; UPDATE t2 SET b=53391 WHERE a=20155; UPDATE t2 SET b=79738 WHERE a=20156; UPDATE t2 SET b=9667 WHERE a=20157; UPDATE t2 SET b=51184 WHERE a=20158; UPDATE t2 SET b=41671 WHERE a=20159; UPDATE t2 SET b=21470 WHERE a=20160; UPDATE t2 SET b=43914 WHERE a=20161; UPDATE t2 SET b=84726 WHERE a=20162; UPDATE t2 SET b=29175 WHERE a=20163; UPDATE t2 SET b=31233 WHERE a=20164; UPDATE t2 SET b=92745 WHERE a=20165; UPDATE t2 SET b=26724 WHERE a=20166; UPDATE t2 SET b=13921 WHERE a=20167; UPDATE t2 SET b=52824 WHERE a=20168; UPDATE t2 SET b=50372 WHERE a=20169; UPDATE t2 SET b=26973 WHERE a=20170; UPDATE t2 SET b=67274 WHERE a=20171; UPDATE t2 SET b=53078 WHERE a=20172; UPDATE t2 SET b=26016 WHERE a=20173; UPDATE t2 SET b=23885 WHERE a=20174; UPDATE t2 SET b=91581 WHERE a=20175; UPDATE t2 SET b=37658 WHERE a=20176; UPDATE t2 SET b=64210 WHERE a=20177; UPDATE t2 SET b=38051 WHERE a=20178; UPDATE t2 SET b=31580 WHERE a=20179; UPDATE t2 SET b=10017 WHERE a=20180; UPDATE t2 SET b=13191 WHERE a=20181; UPDATE t2 SET b=10398 WHERE a=20182; UPDATE t2 SET b=41581 WHERE a=20183; UPDATE t2 SET b=16438 WHERE a=20184; UPDATE t2 SET b=56769 WHERE a=20185; UPDATE t2 SET b=97795 WHERE a=20186; UPDATE t2 SET b=17884 WHERE a=20187; UPDATE t2 SET b=1951 WHERE a=20188; UPDATE t2 SET b=84676 WHERE a=20189; UPDATE t2 SET b=39839 WHERE a=20190; UPDATE t2 SET b=67309 WHERE a=20191; UPDATE t2 SET b=20272 WHERE a=20192; UPDATE t2 SET b=12282 WHERE a=20193; UPDATE t2 SET b=97460 WHERE a=20194; UPDATE t2 SET b=32557 WHERE a=20195; UPDATE t2 SET b=8746 WHERE a=20196; UPDATE t2 SET b=70091 WHERE a=20197; UPDATE t2 SET b=50849 WHERE a=20198; UPDATE t2 SET b=10387 WHERE a=20199; UPDATE t2 SET b=17461 WHERE a=20200; UPDATE t2 SET b=92965 WHERE a=20201; UPDATE t2 SET b=44169 WHERE a=20202; UPDATE t2 SET b=67779 WHERE a=20203; UPDATE t2 SET b=97591 WHERE a=20204; UPDATE t2 SET b=45613 WHERE a=20205; UPDATE t2 SET b=69621 WHERE a=20206; UPDATE t2 SET b=59706 WHERE a=20207; UPDATE t2 SET b=42425 WHERE a=20208; UPDATE t2 SET b=376 WHERE a=20209; UPDATE t2 SET b=40069 WHERE a=20210; UPDATE t2 SET b=54995 WHERE a=20211; UPDATE t2 SET b=13137 WHERE a=20212; UPDATE t2 SET b=86579 WHERE a=20213; UPDATE t2 SET b=47171 WHERE a=20214; UPDATE t2 SET b=55797 WHERE a=20215; UPDATE t2 SET b=86490 WHERE a=20216; UPDATE t2 SET b=56993 WHERE a=20217; UPDATE t2 SET b=34860 WHERE a=20218; UPDATE t2 SET b=34479 WHERE a=20219; UPDATE t2 SET b=86400 WHERE a=20220; UPDATE t2 SET b=43561 WHERE a=20221; UPDATE t2 SET b=73066 WHERE a=20222; UPDATE t2 SET b=32662 WHERE a=20223; UPDATE t2 SET b=56045 WHERE a=20224; UPDATE t2 SET b=59010 WHERE a=20225; UPDATE t2 SET b=39616 WHERE a=20226; UPDATE t2 SET b=44788 WHERE a=20227; UPDATE t2 SET b=5728 WHERE a=20228; UPDATE t2 SET b=14026 WHERE a=20229; UPDATE t2 SET b=44455 WHERE a=20230; UPDATE t2 SET b=50423 WHERE a=20231; UPDATE t2 SET b=75088 WHERE a=20232; UPDATE t2 SET b=88849 WHERE a=20233; UPDATE t2 SET b=14145 WHERE a=20234; UPDATE t2 SET b=42209 WHERE a=20235; UPDATE t2 SET b=59840 WHERE a=20236; UPDATE t2 SET b=87723 WHERE a=20237; UPDATE t2 SET b=47980 WHERE a=20238; UPDATE t2 SET b=22714 WHERE a=20239; UPDATE t2 SET b=75250 WHERE a=20240; UPDATE t2 SET b=78763 WHERE a=20241; UPDATE t2 SET b=78779 WHERE a=20242; UPDATE t2 SET b=37542 WHERE a=20243; UPDATE t2 SET b=76111 WHERE a=20244; UPDATE t2 SET b=72688 WHERE a=20245; UPDATE t2 SET b=21053 WHERE a=20246; UPDATE t2 SET b=47162 WHERE a=20247; UPDATE t2 SET b=98987 WHERE a=20248; UPDATE t2 SET b=77722 WHERE a=20249; UPDATE t2 SET b=44159 WHERE a=20250; UPDATE t2 SET b=75722 WHERE a=20251; UPDATE t2 SET b=95609 WHERE a=20252; UPDATE t2 SET b=95174 WHERE a=20253; UPDATE t2 SET b=27210 WHERE a=20254; UPDATE t2 SET b=12178 WHERE a=20255; UPDATE t2 SET b=96513 WHERE a=20256; UPDATE t2 SET b=83746 WHERE a=20257; UPDATE t2 SET b=91384 WHERE a=20258; UPDATE t2 SET b=10070 WHERE a=20259; UPDATE t2 SET b=62346 WHERE a=20260; UPDATE t2 SET b=54748 WHERE a=20261; UPDATE t2 SET b=85490 WHERE a=20262; UPDATE t2 SET b=27068 WHERE a=20263; UPDATE t2 SET b=44025 WHERE a=20264; UPDATE t2 SET b=95268 WHERE a=20265; UPDATE t2 SET b=86398 WHERE a=20266; UPDATE t2 SET b=87091 WHERE a=20267; UPDATE t2 SET b=15598 WHERE a=20268; UPDATE t2 SET b=70166 WHERE a=20269; UPDATE t2 SET b=48330 WHERE a=20270; UPDATE t2 SET b=85587 WHERE a=20271; UPDATE t2 SET b=54050 WHERE a=20272; UPDATE t2 SET b=45675 WHERE a=20273; UPDATE t2 SET b=17916 WHERE a=20274; UPDATE t2 SET b=14080 WHERE a=20275; UPDATE t2 SET b=19486 WHERE a=20276; UPDATE t2 SET b=94107 WHERE a=20277; UPDATE t2 SET b=91574 WHERE a=20278; UPDATE t2 SET b=97512 WHERE a=20279; UPDATE t2 SET b=57746 WHERE a=20280; UPDATE t2 SET b=77502 WHERE a=20281; UPDATE t2 SET b=84790 WHERE a=20282; UPDATE t2 SET b=63424 WHERE a=20283; UPDATE t2 SET b=73650 WHERE a=20284; UPDATE t2 SET b=41273 WHERE a=20285; UPDATE t2 SET b=40145 WHERE a=20286; UPDATE t2 SET b=41676 WHERE a=20287; UPDATE t2 SET b=66854 WHERE a=20288; UPDATE t2 SET b=77278 WHERE a=20289; UPDATE t2 SET b=50116 WHERE a=20290; UPDATE t2 SET b=17231 WHERE a=20291; UPDATE t2 SET b=79293 WHERE a=20292; UPDATE t2 SET b=40629 WHERE a=20293; UPDATE t2 SET b=76971 WHERE a=20294; UPDATE t2 SET b=80154 WHERE a=20295; UPDATE t2 SET b=97876 WHERE a=20296; UPDATE t2 SET b=30831 WHERE a=20297; UPDATE t2 SET b=19511 WHERE a=20298; UPDATE t2 SET b=59354 WHERE a=20299; UPDATE t2 SET b=69674 WHERE a=20300; UPDATE t2 SET b=63110 WHERE a=20301; UPDATE t2 SET b=63840 WHERE a=20302; UPDATE t2 SET b=58906 WHERE a=20303; UPDATE t2 SET b=17076 WHERE a=20304; UPDATE t2 SET b=30862 WHERE a=20305; UPDATE t2 SET b=3033 WHERE a=20306; UPDATE t2 SET b=7203 WHERE a=20307; UPDATE t2 SET b=65846 WHERE a=20308; UPDATE t2 SET b=44276 WHERE a=20309; UPDATE t2 SET b=90745 WHERE a=20310; UPDATE t2 SET b=55821 WHERE a=20311; UPDATE t2 SET b=24823 WHERE a=20312; UPDATE t2 SET b=30303 WHERE a=20313; UPDATE t2 SET b=65592 WHERE a=20314; UPDATE t2 SET b=29954 WHERE a=20315; UPDATE t2 SET b=89419 WHERE a=20316; UPDATE t2 SET b=10291 WHERE a=20317; UPDATE t2 SET b=73902 WHERE a=20318; UPDATE t2 SET b=84557 WHERE a=20319; UPDATE t2 SET b=82695 WHERE a=20320; UPDATE t2 SET b=48919 WHERE a=20321; UPDATE t2 SET b=21960 WHERE a=20322; UPDATE t2 SET b=19382 WHERE a=20323; UPDATE t2 SET b=89409 WHERE a=20324; UPDATE t2 SET b=77892 WHERE a=20325; UPDATE t2 SET b=29602 WHERE a=20326; UPDATE t2 SET b=54568 WHERE a=20327; UPDATE t2 SET b=99791 WHERE a=20328; UPDATE t2 SET b=68342 WHERE a=20329; UPDATE t2 SET b=82841 WHERE a=20330; UPDATE t2 SET b=27397 WHERE a=20331; UPDATE t2 SET b=63158 WHERE a=20332; UPDATE t2 SET b=34381 WHERE a=20333; UPDATE t2 SET b=19832 WHERE a=20334; UPDATE t2 SET b=5694 WHERE a=20335; UPDATE t2 SET b=35610 WHERE a=20336; UPDATE t2 SET b=45520 WHERE a=20337; UPDATE t2 SET b=48931 WHERE a=20338; UPDATE t2 SET b=35534 WHERE a=20339; UPDATE t2 SET b=65155 WHERE a=20340; UPDATE t2 SET b=63355 WHERE a=20341; UPDATE t2 SET b=30956 WHERE a=20342; UPDATE t2 SET b=6081 WHERE a=20343; UPDATE t2 SET b=82083 WHERE a=20344; UPDATE t2 SET b=31911 WHERE a=20345; UPDATE t2 SET b=21141 WHERE a=20346; UPDATE t2 SET b=58150 WHERE a=20347; UPDATE t2 SET b=87505 WHERE a=20348; UPDATE t2 SET b=90599 WHERE a=20349; UPDATE t2 SET b=77049 WHERE a=20350; UPDATE t2 SET b=28350 WHERE a=20351; UPDATE t2 SET b=26432 WHERE a=20352; UPDATE t2 SET b=2342 WHERE a=20353; UPDATE t2 SET b=5906 WHERE a=20354; UPDATE t2 SET b=89475 WHERE a=20355; UPDATE t2 SET b=3052 WHERE a=20356; UPDATE t2 SET b=33883 WHERE a=20357; UPDATE t2 SET b=12309 WHERE a=20358; UPDATE t2 SET b=1351 WHERE a=20359; UPDATE t2 SET b=42651 WHERE a=20360; UPDATE t2 SET b=46764 WHERE a=20361; UPDATE t2 SET b=31328 WHERE a=20362; UPDATE t2 SET b=22694 WHERE a=20363; UPDATE t2 SET b=27442 WHERE a=20364; UPDATE t2 SET b=84495 WHERE a=20365; UPDATE t2 SET b=73180 WHERE a=20366; UPDATE t2 SET b=74435 WHERE a=20367; UPDATE t2 SET b=42397 WHERE a=20368; UPDATE t2 SET b=36596 WHERE a=20369; UPDATE t2 SET b=14409 WHERE a=20370; UPDATE t2 SET b=71130 WHERE a=20371; UPDATE t2 SET b=1683 WHERE a=20372; UPDATE t2 SET b=43 WHERE a=20373; UPDATE t2 SET b=98092 WHERE a=20374; UPDATE t2 SET b=43067 WHERE a=20375; UPDATE t2 SET b=25089 WHERE a=20376; UPDATE t2 SET b=94767 WHERE a=20377; UPDATE t2 SET b=55517 WHERE a=20378; UPDATE t2 SET b=34349 WHERE a=20379; UPDATE t2 SET b=13435 WHERE a=20380; UPDATE t2 SET b=34107 WHERE a=20381; UPDATE t2 SET b=19981 WHERE a=20382; UPDATE t2 SET b=91355 WHERE a=20383; UPDATE t2 SET b=6880 WHERE a=20384; UPDATE t2 SET b=52265 WHERE a=20385; UPDATE t2 SET b=18561 WHERE a=20386; UPDATE t2 SET b=31226 WHERE a=20387; UPDATE t2 SET b=39022 WHERE a=20388; UPDATE t2 SET b=27601 WHERE a=20389; UPDATE t2 SET b=48344 WHERE a=20390; UPDATE t2 SET b=5273 WHERE a=20391; UPDATE t2 SET b=18181 WHERE a=20392; UPDATE t2 SET b=66534 WHERE a=20393; UPDATE t2 SET b=41126 WHERE a=20394; UPDATE t2 SET b=47316 WHERE a=20395; UPDATE t2 SET b=11791 WHERE a=20396; UPDATE t2 SET b=54655 WHERE a=20397; UPDATE t2 SET b=42647 WHERE a=20398; UPDATE t2 SET b=36615 WHERE a=20399; UPDATE t2 SET b=97837 WHERE a=20400; UPDATE t2 SET b=4112 WHERE a=20401; UPDATE t2 SET b=41484 WHERE a=20402; UPDATE t2 SET b=85295 WHERE a=20403; UPDATE t2 SET b=43513 WHERE a=20404; UPDATE t2 SET b=87516 WHERE a=20405; UPDATE t2 SET b=45314 WHERE a=20406; UPDATE t2 SET b=10297 WHERE a=20407; UPDATE t2 SET b=13930 WHERE a=20408; UPDATE t2 SET b=15982 WHERE a=20409; UPDATE t2 SET b=38271 WHERE a=20410; UPDATE t2 SET b=50819 WHERE a=20411; UPDATE t2 SET b=37331 WHERE a=20412; UPDATE t2 SET b=32142 WHERE a=20413; UPDATE t2 SET b=87152 WHERE a=20414; UPDATE t2 SET b=44155 WHERE a=20415; UPDATE t2 SET b=85278 WHERE a=20416; UPDATE t2 SET b=79919 WHERE a=20417; UPDATE t2 SET b=54585 WHERE a=20418; UPDATE t2 SET b=30000 WHERE a=20419; UPDATE t2 SET b=81288 WHERE a=20420; UPDATE t2 SET b=84274 WHERE a=20421; UPDATE t2 SET b=52445 WHERE a=20422; UPDATE t2 SET b=80109 WHERE a=20423; UPDATE t2 SET b=71261 WHERE a=20424; UPDATE t2 SET b=43114 WHERE a=20425; UPDATE t2 SET b=44244 WHERE a=20426; UPDATE t2 SET b=86813 WHERE a=20427; UPDATE t2 SET b=28379 WHERE a=20428; UPDATE t2 SET b=64385 WHERE a=20429; UPDATE t2 SET b=98793 WHERE a=20430; UPDATE t2 SET b=91148 WHERE a=20431; UPDATE t2 SET b=42913 WHERE a=20432; UPDATE t2 SET b=75432 WHERE a=20433; UPDATE t2 SET b=14094 WHERE a=20434; UPDATE t2 SET b=43823 WHERE a=20435; UPDATE t2 SET b=81540 WHERE a=20436; UPDATE t2 SET b=33653 WHERE a=20437; UPDATE t2 SET b=29841 WHERE a=20438; UPDATE t2 SET b=64166 WHERE a=20439; UPDATE t2 SET b=80453 WHERE a=20440; UPDATE t2 SET b=28367 WHERE a=20441; UPDATE t2 SET b=21 WHERE a=20442; UPDATE t2 SET b=10526 WHERE a=20443; UPDATE t2 SET b=38704 WHERE a=20444; UPDATE t2 SET b=65139 WHERE a=20445; UPDATE t2 SET b=67707 WHERE a=20446; UPDATE t2 SET b=172 WHERE a=20447; UPDATE t2 SET b=47493 WHERE a=20448; UPDATE t2 SET b=28396 WHERE a=20449; UPDATE t2 SET b=30727 WHERE a=20450; UPDATE t2 SET b=91501 WHERE a=20451; UPDATE t2 SET b=50770 WHERE a=20452; UPDATE t2 SET b=55402 WHERE a=20453; UPDATE t2 SET b=62915 WHERE a=20454; UPDATE t2 SET b=76555 WHERE a=20455; UPDATE t2 SET b=2178 WHERE a=20456; UPDATE t2 SET b=42433 WHERE a=20457; UPDATE t2 SET b=91850 WHERE a=20458; UPDATE t2 SET b=10115 WHERE a=20459; UPDATE t2 SET b=87426 WHERE a=20460; UPDATE t2 SET b=27840 WHERE a=20461; UPDATE t2 SET b=15276 WHERE a=20462; UPDATE t2 SET b=6104 WHERE a=20463; UPDATE t2 SET b=83006 WHERE a=20464; UPDATE t2 SET b=80228 WHERE a=20465; UPDATE t2 SET b=51683 WHERE a=20466; UPDATE t2 SET b=67678 WHERE a=20467; UPDATE t2 SET b=90464 WHERE a=20468; UPDATE t2 SET b=21107 WHERE a=20469; UPDATE t2 SET b=41011 WHERE a=20470; UPDATE t2 SET b=27896 WHERE a=20471; UPDATE t2 SET b=53291 WHERE a=20472; UPDATE t2 SET b=39149 WHERE a=20473; UPDATE t2 SET b=57313 WHERE a=20474; UPDATE t2 SET b=9222 WHERE a=20475; UPDATE t2 SET b=53618 WHERE a=20476; UPDATE t2 SET b=57372 WHERE a=20477; UPDATE t2 SET b=61753 WHERE a=20478; UPDATE t2 SET b=54185 WHERE a=20479; UPDATE t2 SET b=70787 WHERE a=20480; UPDATE t2 SET b=45985 WHERE a=20481; UPDATE t2 SET b=97052 WHERE a=20482; UPDATE t2 SET b=55411 WHERE a=20483; UPDATE t2 SET b=54909 WHERE a=20484; UPDATE t2 SET b=94326 WHERE a=20485; UPDATE t2 SET b=84379 WHERE a=20486; UPDATE t2 SET b=44385 WHERE a=20487; UPDATE t2 SET b=53201 WHERE a=20488; UPDATE t2 SET b=54315 WHERE a=20489; UPDATE t2 SET b=64213 WHERE a=20490; UPDATE t2 SET b=74776 WHERE a=20491; UPDATE t2 SET b=75775 WHERE a=20492; UPDATE t2 SET b=51230 WHERE a=20493; UPDATE t2 SET b=5134 WHERE a=20494; UPDATE t2 SET b=51076 WHERE a=20495; UPDATE t2 SET b=70418 WHERE a=20496; UPDATE t2 SET b=62911 WHERE a=20497; UPDATE t2 SET b=40921 WHERE a=20498; UPDATE t2 SET b=54776 WHERE a=20499; UPDATE t2 SET b=93746 WHERE a=20500; UPDATE t2 SET b=45773 WHERE a=20501; UPDATE t2 SET b=49281 WHERE a=20502; UPDATE t2 SET b=10484 WHERE a=20503; UPDATE t2 SET b=65335 WHERE a=20504; UPDATE t2 SET b=79051 WHERE a=20505; UPDATE t2 SET b=30591 WHERE a=20506; UPDATE t2 SET b=88939 WHERE a=20507; UPDATE t2 SET b=14464 WHERE a=20508; UPDATE t2 SET b=69357 WHERE a=20509; UPDATE t2 SET b=17637 WHERE a=20510; UPDATE t2 SET b=68835 WHERE a=20511; UPDATE t2 SET b=23926 WHERE a=20512; UPDATE t2 SET b=72372 WHERE a=20513; UPDATE t2 SET b=70859 WHERE a=20514; UPDATE t2 SET b=70839 WHERE a=20515; UPDATE t2 SET b=40819 WHERE a=20516; UPDATE t2 SET b=95443 WHERE a=20517; UPDATE t2 SET b=64351 WHERE a=20518; UPDATE t2 SET b=79015 WHERE a=20519; UPDATE t2 SET b=29434 WHERE a=20520; UPDATE t2 SET b=11031 WHERE a=20521; UPDATE t2 SET b=96722 WHERE a=20522; UPDATE t2 SET b=56719 WHERE a=20523; UPDATE t2 SET b=30581 WHERE a=20524; UPDATE t2 SET b=42298 WHERE a=20525; UPDATE t2 SET b=63946 WHERE a=20526; UPDATE t2 SET b=93945 WHERE a=20527; UPDATE t2 SET b=38878 WHERE a=20528; UPDATE t2 SET b=48768 WHERE a=20529; UPDATE t2 SET b=72849 WHERE a=20530; UPDATE t2 SET b=26245 WHERE a=20531; UPDATE t2 SET b=22185 WHERE a=20532; UPDATE t2 SET b=42807 WHERE a=20533; UPDATE t2 SET b=88112 WHERE a=20534; UPDATE t2 SET b=50222 WHERE a=20535; UPDATE t2 SET b=13737 WHERE a=20536; UPDATE t2 SET b=46620 WHERE a=20537; UPDATE t2 SET b=40591 WHERE a=20538; UPDATE t2 SET b=22920 WHERE a=20539; UPDATE t2 SET b=68261 WHERE a=20540; UPDATE t2 SET b=94276 WHERE a=20541; UPDATE t2 SET b=9393 WHERE a=20542; UPDATE t2 SET b=17203 WHERE a=20543; UPDATE t2 SET b=85816 WHERE a=20544; UPDATE t2 SET b=18626 WHERE a=20545; UPDATE t2 SET b=95559 WHERE a=20546; UPDATE t2 SET b=41927 WHERE a=20547; UPDATE t2 SET b=78878 WHERE a=20548; UPDATE t2 SET b=99212 WHERE a=20549; UPDATE t2 SET b=93816 WHERE a=20550; UPDATE t2 SET b=1040 WHERE a=20551; UPDATE t2 SET b=5624 WHERE a=20552; UPDATE t2 SET b=95424 WHERE a=20553; UPDATE t2 SET b=59513 WHERE a=20554; UPDATE t2 SET b=7814 WHERE a=20555; UPDATE t2 SET b=91131 WHERE a=20556; UPDATE t2 SET b=20884 WHERE a=20557; UPDATE t2 SET b=3646 WHERE a=20558; UPDATE t2 SET b=91757 WHERE a=20559; UPDATE t2 SET b=85197 WHERE a=20560; UPDATE t2 SET b=8807 WHERE a=20561; UPDATE t2 SET b=23306 WHERE a=20562; UPDATE t2 SET b=87876 WHERE a=20563; UPDATE t2 SET b=24944 WHERE a=20564; UPDATE t2 SET b=20875 WHERE a=20565; UPDATE t2 SET b=71602 WHERE a=20566; UPDATE t2 SET b=34742 WHERE a=20567; UPDATE t2 SET b=8240 WHERE a=20568; UPDATE t2 SET b=51064 WHERE a=20569; UPDATE t2 SET b=98980 WHERE a=20570; UPDATE t2 SET b=73155 WHERE a=20571; UPDATE t2 SET b=74299 WHERE a=20572; UPDATE t2 SET b=36816 WHERE a=20573; UPDATE t2 SET b=66477 WHERE a=20574; UPDATE t2 SET b=66427 WHERE a=20575; UPDATE t2 SET b=7124 WHERE a=20576; UPDATE t2 SET b=52035 WHERE a=20577; UPDATE t2 SET b=53688 WHERE a=20578; UPDATE t2 SET b=40747 WHERE a=20579; UPDATE t2 SET b=73779 WHERE a=20580; UPDATE t2 SET b=71087 WHERE a=20581; UPDATE t2 SET b=26152 WHERE a=20582; UPDATE t2 SET b=92652 WHERE a=20583; UPDATE t2 SET b=90447 WHERE a=20584; UPDATE t2 SET b=86647 WHERE a=20585; UPDATE t2 SET b=96550 WHERE a=20586; UPDATE t2 SET b=98877 WHERE a=20587; UPDATE t2 SET b=84530 WHERE a=20588; UPDATE t2 SET b=6021 WHERE a=20589; UPDATE t2 SET b=94528 WHERE a=20590; UPDATE t2 SET b=53798 WHERE a=20591; UPDATE t2 SET b=46614 WHERE a=20592; UPDATE t2 SET b=24810 WHERE a=20593; UPDATE t2 SET b=7614 WHERE a=20594; UPDATE t2 SET b=49412 WHERE a=20595; UPDATE t2 SET b=35556 WHERE a=20596; UPDATE t2 SET b=83257 WHERE a=20597; UPDATE t2 SET b=57535 WHERE a=20598; UPDATE t2 SET b=5331 WHERE a=20599; UPDATE t2 SET b=59856 WHERE a=20600; UPDATE t2 SET b=36150 WHERE a=20601; UPDATE t2 SET b=21140 WHERE a=20602; UPDATE t2 SET b=41603 WHERE a=20603; UPDATE t2 SET b=25088 WHERE a=20604; UPDATE t2 SET b=10637 WHERE a=20605; UPDATE t2 SET b=22276 WHERE a=20606; UPDATE t2 SET b=86741 WHERE a=20607; UPDATE t2 SET b=81263 WHERE a=20608; UPDATE t2 SET b=77873 WHERE a=20609; UPDATE t2 SET b=75893 WHERE a=20610; UPDATE t2 SET b=17079 WHERE a=20611; UPDATE t2 SET b=26661 WHERE a=20612; UPDATE t2 SET b=79508 WHERE a=20613; UPDATE t2 SET b=53212 WHERE a=20614; UPDATE t2 SET b=44482 WHERE a=20615; UPDATE t2 SET b=4219 WHERE a=20616; UPDATE t2 SET b=20954 WHERE a=20617; UPDATE t2 SET b=69770 WHERE a=20618; UPDATE t2 SET b=72273 WHERE a=20619; UPDATE t2 SET b=52159 WHERE a=20620; UPDATE t2 SET b=5930 WHERE a=20621; UPDATE t2 SET b=26090 WHERE a=20622; UPDATE t2 SET b=94129 WHERE a=20623; UPDATE t2 SET b=57083 WHERE a=20624; UPDATE t2 SET b=81911 WHERE a=20625; UPDATE t2 SET b=56615 WHERE a=20626; UPDATE t2 SET b=53709 WHERE a=20627; UPDATE t2 SET b=9675 WHERE a=20628; UPDATE t2 SET b=42997 WHERE a=20629; UPDATE t2 SET b=80567 WHERE a=20630; UPDATE t2 SET b=34428 WHERE a=20631; UPDATE t2 SET b=43823 WHERE a=20632; UPDATE t2 SET b=24238 WHERE a=20633; UPDATE t2 SET b=79583 WHERE a=20634; UPDATE t2 SET b=8357 WHERE a=20635; UPDATE t2 SET b=87017 WHERE a=20636; UPDATE t2 SET b=51243 WHERE a=20637; UPDATE t2 SET b=55957 WHERE a=20638; UPDATE t2 SET b=16317 WHERE a=20639; UPDATE t2 SET b=14217 WHERE a=20640; UPDATE t2 SET b=51695 WHERE a=20641; UPDATE t2 SET b=47880 WHERE a=20642; UPDATE t2 SET b=48360 WHERE a=20643; UPDATE t2 SET b=62189 WHERE a=20644; UPDATE t2 SET b=88716 WHERE a=20645; UPDATE t2 SET b=84361 WHERE a=20646; UPDATE t2 SET b=15982 WHERE a=20647; UPDATE t2 SET b=24964 WHERE a=20648; UPDATE t2 SET b=49903 WHERE a=20649; UPDATE t2 SET b=74752 WHERE a=20650; UPDATE t2 SET b=34227 WHERE a=20651; UPDATE t2 SET b=40253 WHERE a=20652; UPDATE t2 SET b=12672 WHERE a=20653; UPDATE t2 SET b=88888 WHERE a=20654; UPDATE t2 SET b=43258 WHERE a=20655; UPDATE t2 SET b=91541 WHERE a=20656; UPDATE t2 SET b=62131 WHERE a=20657; UPDATE t2 SET b=53154 WHERE a=20658; UPDATE t2 SET b=36833 WHERE a=20659; UPDATE t2 SET b=98124 WHERE a=20660; UPDATE t2 SET b=18037 WHERE a=20661; UPDATE t2 SET b=94577 WHERE a=20662; UPDATE t2 SET b=35421 WHERE a=20663; UPDATE t2 SET b=17754 WHERE a=20664; UPDATE t2 SET b=7707 WHERE a=20665; UPDATE t2 SET b=55416 WHERE a=20666; UPDATE t2 SET b=86782 WHERE a=20667; UPDATE t2 SET b=82916 WHERE a=20668; UPDATE t2 SET b=32099 WHERE a=20669; UPDATE t2 SET b=3201 WHERE a=20670; UPDATE t2 SET b=71332 WHERE a=20671; UPDATE t2 SET b=94160 WHERE a=20672; UPDATE t2 SET b=64054 WHERE a=20673; UPDATE t2 SET b=71802 WHERE a=20674; UPDATE t2 SET b=80621 WHERE a=20675; UPDATE t2 SET b=72286 WHERE a=20676; UPDATE t2 SET b=14436 WHERE a=20677; UPDATE t2 SET b=17690 WHERE a=20678; UPDATE t2 SET b=60915 WHERE a=20679; UPDATE t2 SET b=12008 WHERE a=20680; UPDATE t2 SET b=58092 WHERE a=20681; UPDATE t2 SET b=60457 WHERE a=20682; UPDATE t2 SET b=54784 WHERE a=20683; UPDATE t2 SET b=71146 WHERE a=20684; UPDATE t2 SET b=32463 WHERE a=20685; UPDATE t2 SET b=9362 WHERE a=20686; UPDATE t2 SET b=22470 WHERE a=20687; UPDATE t2 SET b=91626 WHERE a=20688; UPDATE t2 SET b=71651 WHERE a=20689; UPDATE t2 SET b=52556 WHERE a=20690; UPDATE t2 SET b=37331 WHERE a=20691; UPDATE t2 SET b=62454 WHERE a=20692; UPDATE t2 SET b=88501 WHERE a=20693; UPDATE t2 SET b=97002 WHERE a=20694; UPDATE t2 SET b=28442 WHERE a=20695; UPDATE t2 SET b=9647 WHERE a=20696; UPDATE t2 SET b=95191 WHERE a=20697; UPDATE t2 SET b=48460 WHERE a=20698; UPDATE t2 SET b=61137 WHERE a=20699; UPDATE t2 SET b=89597 WHERE a=20700; UPDATE t2 SET b=37294 WHERE a=20701; UPDATE t2 SET b=79274 WHERE a=20702; UPDATE t2 SET b=36881 WHERE a=20703; UPDATE t2 SET b=3877 WHERE a=20704; UPDATE t2 SET b=26744 WHERE a=20705; UPDATE t2 SET b=40024 WHERE a=20706; UPDATE t2 SET b=19563 WHERE a=20707; UPDATE t2 SET b=92476 WHERE a=20708; UPDATE t2 SET b=34615 WHERE a=20709; UPDATE t2 SET b=75014 WHERE a=20710; UPDATE t2 SET b=40313 WHERE a=20711; UPDATE t2 SET b=56713 WHERE a=20712; UPDATE t2 SET b=27206 WHERE a=20713; UPDATE t2 SET b=52751 WHERE a=20714; UPDATE t2 SET b=62385 WHERE a=20715; UPDATE t2 SET b=61434 WHERE a=20716; UPDATE t2 SET b=75912 WHERE a=20717; UPDATE t2 SET b=30473 WHERE a=20718; UPDATE t2 SET b=79523 WHERE a=20719; UPDATE t2 SET b=17208 WHERE a=20720; UPDATE t2 SET b=7101 WHERE a=20721; UPDATE t2 SET b=8876 WHERE a=20722; UPDATE t2 SET b=57754 WHERE a=20723; UPDATE t2 SET b=29886 WHERE a=20724; UPDATE t2 SET b=79388 WHERE a=20725; UPDATE t2 SET b=82691 WHERE a=20726; UPDATE t2 SET b=16427 WHERE a=20727; UPDATE t2 SET b=26025 WHERE a=20728; UPDATE t2 SET b=75 WHERE a=20729; UPDATE t2 SET b=57288 WHERE a=20730; UPDATE t2 SET b=52424 WHERE a=20731; UPDATE t2 SET b=26614 WHERE a=20732; UPDATE t2 SET b=21568 WHERE a=20733; UPDATE t2 SET b=99819 WHERE a=20734; UPDATE t2 SET b=15212 WHERE a=20735; UPDATE t2 SET b=17790 WHERE a=20736; UPDATE t2 SET b=79578 WHERE a=20737; UPDATE t2 SET b=67956 WHERE a=20738; UPDATE t2 SET b=74002 WHERE a=20739; UPDATE t2 SET b=12435 WHERE a=20740; UPDATE t2 SET b=35369 WHERE a=20741; UPDATE t2 SET b=91530 WHERE a=20742; UPDATE t2 SET b=95938 WHERE a=20743; UPDATE t2 SET b=37698 WHERE a=20744; UPDATE t2 SET b=9639 WHERE a=20745; UPDATE t2 SET b=9414 WHERE a=20746; UPDATE t2 SET b=53118 WHERE a=20747; UPDATE t2 SET b=36571 WHERE a=20748; UPDATE t2 SET b=7866 WHERE a=20749; UPDATE t2 SET b=8357 WHERE a=20750; UPDATE t2 SET b=51364 WHERE a=20751; UPDATE t2 SET b=24329 WHERE a=20752; UPDATE t2 SET b=23512 WHERE a=20753; UPDATE t2 SET b=98584 WHERE a=20754; UPDATE t2 SET b=41933 WHERE a=20755; UPDATE t2 SET b=75243 WHERE a=20756; UPDATE t2 SET b=41465 WHERE a=20757; UPDATE t2 SET b=79641 WHERE a=20758; UPDATE t2 SET b=26391 WHERE a=20759; UPDATE t2 SET b=89719 WHERE a=20760; UPDATE t2 SET b=35364 WHERE a=20761; UPDATE t2 SET b=63777 WHERE a=20762; UPDATE t2 SET b=89713 WHERE a=20763; UPDATE t2 SET b=62753 WHERE a=20764; UPDATE t2 SET b=21856 WHERE a=20765; UPDATE t2 SET b=19812 WHERE a=20766; UPDATE t2 SET b=12797 WHERE a=20767; UPDATE t2 SET b=11243 WHERE a=20768; UPDATE t2 SET b=1608 WHERE a=20769; UPDATE t2 SET b=45741 WHERE a=20770; UPDATE t2 SET b=43989 WHERE a=20771; UPDATE t2 SET b=47753 WHERE a=20772; UPDATE t2 SET b=57436 WHERE a=20773; UPDATE t2 SET b=52550 WHERE a=20774; UPDATE t2 SET b=59550 WHERE a=20775; UPDATE t2 SET b=75800 WHERE a=20776; UPDATE t2 SET b=13818 WHERE a=20777; UPDATE t2 SET b=10949 WHERE a=20778; UPDATE t2 SET b=53159 WHERE a=20779; UPDATE t2 SET b=78794 WHERE a=20780; UPDATE t2 SET b=42530 WHERE a=20781; UPDATE t2 SET b=99557 WHERE a=20782; UPDATE t2 SET b=46465 WHERE a=20783; UPDATE t2 SET b=10681 WHERE a=20784; UPDATE t2 SET b=25695 WHERE a=20785; UPDATE t2 SET b=22567 WHERE a=20786; UPDATE t2 SET b=13831 WHERE a=20787; UPDATE t2 SET b=52434 WHERE a=20788; UPDATE t2 SET b=73210 WHERE a=20789; UPDATE t2 SET b=59702 WHERE a=20790; UPDATE t2 SET b=22893 WHERE a=20791; UPDATE t2 SET b=62428 WHERE a=20792; UPDATE t2 SET b=7037 WHERE a=20793; UPDATE t2 SET b=34330 WHERE a=20794; UPDATE t2 SET b=97634 WHERE a=20795; UPDATE t2 SET b=58492 WHERE a=20796; UPDATE t2 SET b=249 WHERE a=20797; UPDATE t2 SET b=95429 WHERE a=20798; UPDATE t2 SET b=49086 WHERE a=20799; UPDATE t2 SET b=39480 WHERE a=20800; UPDATE t2 SET b=49005 WHERE a=20801; UPDATE t2 SET b=77907 WHERE a=20802; UPDATE t2 SET b=11751 WHERE a=20803; UPDATE t2 SET b=8042 WHERE a=20804; UPDATE t2 SET b=99344 WHERE a=20805; UPDATE t2 SET b=64741 WHERE a=20806; UPDATE t2 SET b=41517 WHERE a=20807; UPDATE t2 SET b=10427 WHERE a=20808; UPDATE t2 SET b=94805 WHERE a=20809; UPDATE t2 SET b=40634 WHERE a=20810; UPDATE t2 SET b=25485 WHERE a=20811; UPDATE t2 SET b=67027 WHERE a=20812; UPDATE t2 SET b=11209 WHERE a=20813; UPDATE t2 SET b=35217 WHERE a=20814; UPDATE t2 SET b=64998 WHERE a=20815; UPDATE t2 SET b=50581 WHERE a=20816; UPDATE t2 SET b=31577 WHERE a=20817; UPDATE t2 SET b=58865 WHERE a=20818; UPDATE t2 SET b=50058 WHERE a=20819; UPDATE t2 SET b=6036 WHERE a=20820; UPDATE t2 SET b=2194 WHERE a=20821; UPDATE t2 SET b=97812 WHERE a=20822; UPDATE t2 SET b=15154 WHERE a=20823; UPDATE t2 SET b=94923 WHERE a=20824; UPDATE t2 SET b=75724 WHERE a=20825; UPDATE t2 SET b=74691 WHERE a=20826; UPDATE t2 SET b=96911 WHERE a=20827; UPDATE t2 SET b=61789 WHERE a=20828; UPDATE t2 SET b=11998 WHERE a=20829; UPDATE t2 SET b=23741 WHERE a=20830; UPDATE t2 SET b=95483 WHERE a=20831; UPDATE t2 SET b=48812 WHERE a=20832; UPDATE t2 SET b=23972 WHERE a=20833; UPDATE t2 SET b=62256 WHERE a=20834; UPDATE t2 SET b=44449 WHERE a=20835; UPDATE t2 SET b=67869 WHERE a=20836; UPDATE t2 SET b=83601 WHERE a=20837; UPDATE t2 SET b=66634 WHERE a=20838; UPDATE t2 SET b=84052 WHERE a=20839; UPDATE t2 SET b=78186 WHERE a=20840; UPDATE t2 SET b=8133 WHERE a=20841; UPDATE t2 SET b=22704 WHERE a=20842; UPDATE t2 SET b=65070 WHERE a=20843; UPDATE t2 SET b=6156 WHERE a=20844; UPDATE t2 SET b=49057 WHERE a=20845; UPDATE t2 SET b=15671 WHERE a=20846; UPDATE t2 SET b=50221 WHERE a=20847; UPDATE t2 SET b=88440 WHERE a=20848; UPDATE t2 SET b=74331 WHERE a=20849; UPDATE t2 SET b=12458 WHERE a=20850; UPDATE t2 SET b=33321 WHERE a=20851; UPDATE t2 SET b=20725 WHERE a=20852; UPDATE t2 SET b=33097 WHERE a=20853; UPDATE t2 SET b=9830 WHERE a=20854; UPDATE t2 SET b=50713 WHERE a=20855; UPDATE t2 SET b=66399 WHERE a=20856; UPDATE t2 SET b=82602 WHERE a=20857; UPDATE t2 SET b=83206 WHERE a=20858; UPDATE t2 SET b=61577 WHERE a=20859; UPDATE t2 SET b=5517 WHERE a=20860; UPDATE t2 SET b=92919 WHERE a=20861; UPDATE t2 SET b=14810 WHERE a=20862; UPDATE t2 SET b=74313 WHERE a=20863; UPDATE t2 SET b=67010 WHERE a=20864; UPDATE t2 SET b=87069 WHERE a=20865; UPDATE t2 SET b=46752 WHERE a=20866; UPDATE t2 SET b=29900 WHERE a=20867; UPDATE t2 SET b=30085 WHERE a=20868; UPDATE t2 SET b=45516 WHERE a=20869; UPDATE t2 SET b=8840 WHERE a=20870; UPDATE t2 SET b=3156 WHERE a=20871; UPDATE t2 SET b=96213 WHERE a=20872; UPDATE t2 SET b=68682 WHERE a=20873; UPDATE t2 SET b=5553 WHERE a=20874; UPDATE t2 SET b=44755 WHERE a=20875; UPDATE t2 SET b=93647 WHERE a=20876; UPDATE t2 SET b=64743 WHERE a=20877; UPDATE t2 SET b=18782 WHERE a=20878; UPDATE t2 SET b=65415 WHERE a=20879; UPDATE t2 SET b=31534 WHERE a=20880; UPDATE t2 SET b=45725 WHERE a=20881; UPDATE t2 SET b=24092 WHERE a=20882; UPDATE t2 SET b=91033 WHERE a=20883; UPDATE t2 SET b=5251 WHERE a=20884; UPDATE t2 SET b=55490 WHERE a=20885; UPDATE t2 SET b=81000 WHERE a=20886; UPDATE t2 SET b=31605 WHERE a=20887; UPDATE t2 SET b=39358 WHERE a=20888; UPDATE t2 SET b=62332 WHERE a=20889; UPDATE t2 SET b=66444 WHERE a=20890; UPDATE t2 SET b=69571 WHERE a=20891; UPDATE t2 SET b=66537 WHERE a=20892; UPDATE t2 SET b=12182 WHERE a=20893; UPDATE t2 SET b=3201 WHERE a=20894; UPDATE t2 SET b=30301 WHERE a=20895; UPDATE t2 SET b=13024 WHERE a=20896; UPDATE t2 SET b=52773 WHERE a=20897; UPDATE t2 SET b=76771 WHERE a=20898; UPDATE t2 SET b=37992 WHERE a=20899; UPDATE t2 SET b=16549 WHERE a=20900; UPDATE t2 SET b=87635 WHERE a=20901; UPDATE t2 SET b=8003 WHERE a=20902; UPDATE t2 SET b=77649 WHERE a=20903; UPDATE t2 SET b=77307 WHERE a=20904; UPDATE t2 SET b=46567 WHERE a=20905; UPDATE t2 SET b=25549 WHERE a=20906; UPDATE t2 SET b=26735 WHERE a=20907; UPDATE t2 SET b=67338 WHERE a=20908; UPDATE t2 SET b=33434 WHERE a=20909; UPDATE t2 SET b=19460 WHERE a=20910; UPDATE t2 SET b=56219 WHERE a=20911; UPDATE t2 SET b=22041 WHERE a=20912; UPDATE t2 SET b=82328 WHERE a=20913; UPDATE t2 SET b=28504 WHERE a=20914; UPDATE t2 SET b=46405 WHERE a=20915; UPDATE t2 SET b=316 WHERE a=20916; UPDATE t2 SET b=2854 WHERE a=20917; UPDATE t2 SET b=82345 WHERE a=20918; UPDATE t2 SET b=80356 WHERE a=20919; UPDATE t2 SET b=64550 WHERE a=20920; UPDATE t2 SET b=19266 WHERE a=20921; UPDATE t2 SET b=93203 WHERE a=20922; UPDATE t2 SET b=45865 WHERE a=20923; UPDATE t2 SET b=18365 WHERE a=20924; UPDATE t2 SET b=19945 WHERE a=20925; UPDATE t2 SET b=57003 WHERE a=20926; UPDATE t2 SET b=53692 WHERE a=20927; UPDATE t2 SET b=29397 WHERE a=20928; UPDATE t2 SET b=2672 WHERE a=20929; UPDATE t2 SET b=12215 WHERE a=20930; UPDATE t2 SET b=92268 WHERE a=20931; UPDATE t2 SET b=97615 WHERE a=20932; UPDATE t2 SET b=17836 WHERE a=20933; UPDATE t2 SET b=90624 WHERE a=20934; UPDATE t2 SET b=96626 WHERE a=20935; UPDATE t2 SET b=48256 WHERE a=20936; UPDATE t2 SET b=78602 WHERE a=20937; UPDATE t2 SET b=65096 WHERE a=20938; UPDATE t2 SET b=92637 WHERE a=20939; UPDATE t2 SET b=74555 WHERE a=20940; UPDATE t2 SET b=52687 WHERE a=20941; UPDATE t2 SET b=12381 WHERE a=20942; UPDATE t2 SET b=12848 WHERE a=20943; UPDATE t2 SET b=30340 WHERE a=20944; UPDATE t2 SET b=19385 WHERE a=20945; UPDATE t2 SET b=6331 WHERE a=20946; UPDATE t2 SET b=23940 WHERE a=20947; UPDATE t2 SET b=33574 WHERE a=20948; UPDATE t2 SET b=40358 WHERE a=20949; UPDATE t2 SET b=23538 WHERE a=20950; UPDATE t2 SET b=58943 WHERE a=20951; UPDATE t2 SET b=86902 WHERE a=20952; UPDATE t2 SET b=67132 WHERE a=20953; UPDATE t2 SET b=80204 WHERE a=20954; UPDATE t2 SET b=19820 WHERE a=20955; UPDATE t2 SET b=94898 WHERE a=20956; UPDATE t2 SET b=17584 WHERE a=20957; UPDATE t2 SET b=19778 WHERE a=20958; UPDATE t2 SET b=91711 WHERE a=20959; UPDATE t2 SET b=69716 WHERE a=20960; UPDATE t2 SET b=78030 WHERE a=20961; UPDATE t2 SET b=98757 WHERE a=20962; UPDATE t2 SET b=67966 WHERE a=20963; UPDATE t2 SET b=25155 WHERE a=20964; UPDATE t2 SET b=11878 WHERE a=20965; UPDATE t2 SET b=14474 WHERE a=20966; UPDATE t2 SET b=49764 WHERE a=20967; UPDATE t2 SET b=20290 WHERE a=20968; UPDATE t2 SET b=87894 WHERE a=20969; UPDATE t2 SET b=87125 WHERE a=20970; UPDATE t2 SET b=55926 WHERE a=20971; UPDATE t2 SET b=36578 WHERE a=20972; UPDATE t2 SET b=39639 WHERE a=20973; UPDATE t2 SET b=5037 WHERE a=20974; UPDATE t2 SET b=99104 WHERE a=20975; UPDATE t2 SET b=47869 WHERE a=20976; UPDATE t2 SET b=92466 WHERE a=20977; UPDATE t2 SET b=70926 WHERE a=20978; UPDATE t2 SET b=88817 WHERE a=20979; UPDATE t2 SET b=56615 WHERE a=20980; UPDATE t2 SET b=40723 WHERE a=20981; UPDATE t2 SET b=92536 WHERE a=20982; UPDATE t2 SET b=38714 WHERE a=20983; UPDATE t2 SET b=54347 WHERE a=20984; UPDATE t2 SET b=49458 WHERE a=20985; UPDATE t2 SET b=92836 WHERE a=20986; UPDATE t2 SET b=99599 WHERE a=20987; UPDATE t2 SET b=8599 WHERE a=20988; UPDATE t2 SET b=29882 WHERE a=20989; UPDATE t2 SET b=2209 WHERE a=20990; UPDATE t2 SET b=69932 WHERE a=20991; UPDATE t2 SET b=11050 WHERE a=20992; UPDATE t2 SET b=60127 WHERE a=20993; UPDATE t2 SET b=34029 WHERE a=20994; UPDATE t2 SET b=67040 WHERE a=20995; UPDATE t2 SET b=35321 WHERE a=20996; UPDATE t2 SET b=856 WHERE a=20997; UPDATE t2 SET b=30724 WHERE a=20998; UPDATE t2 SET b=18444 WHERE a=20999; UPDATE t2 SET b=54283 WHERE a=21000; UPDATE t2 SET b=67616 WHERE a=21001; UPDATE t2 SET b=21857 WHERE a=21002; UPDATE t2 SET b=42712 WHERE a=21003; UPDATE t2 SET b=11276 WHERE a=21004; UPDATE t2 SET b=68599 WHERE a=21005; UPDATE t2 SET b=38622 WHERE a=21006; UPDATE t2 SET b=87308 WHERE a=21007; UPDATE t2 SET b=25782 WHERE a=21008; UPDATE t2 SET b=89647 WHERE a=21009; UPDATE t2 SET b=83004 WHERE a=21010; UPDATE t2 SET b=37988 WHERE a=21011; UPDATE t2 SET b=82560 WHERE a=21012; UPDATE t2 SET b=3639 WHERE a=21013; UPDATE t2 SET b=49543 WHERE a=21014; UPDATE t2 SET b=57215 WHERE a=21015; UPDATE t2 SET b=74512 WHERE a=21016; UPDATE t2 SET b=64111 WHERE a=21017; UPDATE t2 SET b=22655 WHERE a=21018; UPDATE t2 SET b=82533 WHERE a=21019; UPDATE t2 SET b=73772 WHERE a=21020; UPDATE t2 SET b=22144 WHERE a=21021; UPDATE t2 SET b=88942 WHERE a=21022; UPDATE t2 SET b=75252 WHERE a=21023; UPDATE t2 SET b=44814 WHERE a=21024; UPDATE t2 SET b=88953 WHERE a=21025; UPDATE t2 SET b=91467 WHERE a=21026; UPDATE t2 SET b=49503 WHERE a=21027; UPDATE t2 SET b=54668 WHERE a=21028; UPDATE t2 SET b=68997 WHERE a=21029; UPDATE t2 SET b=77926 WHERE a=21030; UPDATE t2 SET b=38165 WHERE a=21031; UPDATE t2 SET b=96816 WHERE a=21032; UPDATE t2 SET b=89809 WHERE a=21033; UPDATE t2 SET b=20392 WHERE a=21034; UPDATE t2 SET b=75649 WHERE a=21035; UPDATE t2 SET b=23074 WHERE a=21036; UPDATE t2 SET b=36248 WHERE a=21037; UPDATE t2 SET b=18872 WHERE a=21038; UPDATE t2 SET b=63635 WHERE a=21039; UPDATE t2 SET b=9631 WHERE a=21040; UPDATE t2 SET b=8321 WHERE a=21041; UPDATE t2 SET b=16205 WHERE a=21042; UPDATE t2 SET b=14250 WHERE a=21043; UPDATE t2 SET b=96131 WHERE a=21044; UPDATE t2 SET b=91977 WHERE a=21045; UPDATE t2 SET b=33412 WHERE a=21046; UPDATE t2 SET b=27596 WHERE a=21047; UPDATE t2 SET b=37096 WHERE a=21048; UPDATE t2 SET b=39088 WHERE a=21049; UPDATE t2 SET b=11925 WHERE a=21050; UPDATE t2 SET b=55820 WHERE a=21051; UPDATE t2 SET b=58405 WHERE a=21052; UPDATE t2 SET b=48758 WHERE a=21053; UPDATE t2 SET b=62737 WHERE a=21054; UPDATE t2 SET b=48797 WHERE a=21055; UPDATE t2 SET b=1356 WHERE a=21056; UPDATE t2 SET b=18931 WHERE a=21057; UPDATE t2 SET b=59945 WHERE a=21058; UPDATE t2 SET b=73405 WHERE a=21059; UPDATE t2 SET b=60686 WHERE a=21060; UPDATE t2 SET b=56523 WHERE a=21061; UPDATE t2 SET b=95048 WHERE a=21062; UPDATE t2 SET b=27498 WHERE a=21063; UPDATE t2 SET b=22375 WHERE a=21064; UPDATE t2 SET b=69952 WHERE a=21065; UPDATE t2 SET b=53011 WHERE a=21066; UPDATE t2 SET b=81574 WHERE a=21067; UPDATE t2 SET b=52197 WHERE a=21068; UPDATE t2 SET b=6083 WHERE a=21069; UPDATE t2 SET b=86896 WHERE a=21070; UPDATE t2 SET b=18897 WHERE a=21071; UPDATE t2 SET b=89231 WHERE a=21072; UPDATE t2 SET b=42674 WHERE a=21073; UPDATE t2 SET b=63709 WHERE a=21074; UPDATE t2 SET b=31465 WHERE a=21075; UPDATE t2 SET b=78213 WHERE a=21076; UPDATE t2 SET b=91256 WHERE a=21077; UPDATE t2 SET b=39328 WHERE a=21078; UPDATE t2 SET b=24070 WHERE a=21079; UPDATE t2 SET b=61992 WHERE a=21080; UPDATE t2 SET b=22300 WHERE a=21081; UPDATE t2 SET b=23182 WHERE a=21082; UPDATE t2 SET b=31567 WHERE a=21083; UPDATE t2 SET b=88573 WHERE a=21084; UPDATE t2 SET b=55631 WHERE a=21085; UPDATE t2 SET b=83709 WHERE a=21086; UPDATE t2 SET b=63582 WHERE a=21087; UPDATE t2 SET b=65459 WHERE a=21088; UPDATE t2 SET b=43991 WHERE a=21089; UPDATE t2 SET b=310 WHERE a=21090; UPDATE t2 SET b=91449 WHERE a=21091; UPDATE t2 SET b=40735 WHERE a=21092; UPDATE t2 SET b=16978 WHERE a=21093; UPDATE t2 SET b=62365 WHERE a=21094; UPDATE t2 SET b=42006 WHERE a=21095; UPDATE t2 SET b=38183 WHERE a=21096; UPDATE t2 SET b=74518 WHERE a=21097; UPDATE t2 SET b=70095 WHERE a=21098; UPDATE t2 SET b=79264 WHERE a=21099; UPDATE t2 SET b=77462 WHERE a=21100; UPDATE t2 SET b=85666 WHERE a=21101; UPDATE t2 SET b=42153 WHERE a=21102; UPDATE t2 SET b=13758 WHERE a=21103; UPDATE t2 SET b=56194 WHERE a=21104; UPDATE t2 SET b=2563 WHERE a=21105; UPDATE t2 SET b=45356 WHERE a=21106; UPDATE t2 SET b=87531 WHERE a=21107; UPDATE t2 SET b=78682 WHERE a=21108; UPDATE t2 SET b=42155 WHERE a=21109; UPDATE t2 SET b=6007 WHERE a=21110; UPDATE t2 SET b=67705 WHERE a=21111; UPDATE t2 SET b=13189 WHERE a=21112; UPDATE t2 SET b=75917 WHERE a=21113; UPDATE t2 SET b=91822 WHERE a=21114; UPDATE t2 SET b=41046 WHERE a=21115; UPDATE t2 SET b=95397 WHERE a=21116; UPDATE t2 SET b=67076 WHERE a=21117; UPDATE t2 SET b=8493 WHERE a=21118; UPDATE t2 SET b=21668 WHERE a=21119; UPDATE t2 SET b=43513 WHERE a=21120; UPDATE t2 SET b=76615 WHERE a=21121; UPDATE t2 SET b=49461 WHERE a=21122; UPDATE t2 SET b=29493 WHERE a=21123; UPDATE t2 SET b=29797 WHERE a=21124; UPDATE t2 SET b=27789 WHERE a=21125; UPDATE t2 SET b=36082 WHERE a=21126; UPDATE t2 SET b=15341 WHERE a=21127; UPDATE t2 SET b=63706 WHERE a=21128; UPDATE t2 SET b=76906 WHERE a=21129; UPDATE t2 SET b=31824 WHERE a=21130; UPDATE t2 SET b=67645 WHERE a=21131; UPDATE t2 SET b=29914 WHERE a=21132; UPDATE t2 SET b=45743 WHERE a=21133; UPDATE t2 SET b=92418 WHERE a=21134; UPDATE t2 SET b=77181 WHERE a=21135; UPDATE t2 SET b=87816 WHERE a=21136; UPDATE t2 SET b=65580 WHERE a=21137; UPDATE t2 SET b=8434 WHERE a=21138; UPDATE t2 SET b=85183 WHERE a=21139; UPDATE t2 SET b=91160 WHERE a=21140; UPDATE t2 SET b=50810 WHERE a=21141; UPDATE t2 SET b=57546 WHERE a=21142; UPDATE t2 SET b=74594 WHERE a=21143; UPDATE t2 SET b=84695 WHERE a=21144; UPDATE t2 SET b=49721 WHERE a=21145; UPDATE t2 SET b=50165 WHERE a=21146; UPDATE t2 SET b=72947 WHERE a=21147; UPDATE t2 SET b=32656 WHERE a=21148; UPDATE t2 SET b=86545 WHERE a=21149; UPDATE t2 SET b=70240 WHERE a=21150; UPDATE t2 SET b=5891 WHERE a=21151; UPDATE t2 SET b=44074 WHERE a=21152; UPDATE t2 SET b=40630 WHERE a=21153; UPDATE t2 SET b=22611 WHERE a=21154; UPDATE t2 SET b=86031 WHERE a=21155; UPDATE t2 SET b=23123 WHERE a=21156; UPDATE t2 SET b=98507 WHERE a=21157; UPDATE t2 SET b=1591 WHERE a=21158; UPDATE t2 SET b=37233 WHERE a=21159; UPDATE t2 SET b=54716 WHERE a=21160; UPDATE t2 SET b=50283 WHERE a=21161; UPDATE t2 SET b=67898 WHERE a=21162; UPDATE t2 SET b=70601 WHERE a=21163; UPDATE t2 SET b=23388 WHERE a=21164; UPDATE t2 SET b=43428 WHERE a=21165; UPDATE t2 SET b=62165 WHERE a=21166; UPDATE t2 SET b=53738 WHERE a=21167; UPDATE t2 SET b=37113 WHERE a=21168; UPDATE t2 SET b=49420 WHERE a=21169; UPDATE t2 SET b=72142 WHERE a=21170; UPDATE t2 SET b=93344 WHERE a=21171; UPDATE t2 SET b=70956 WHERE a=21172; UPDATE t2 SET b=70848 WHERE a=21173; UPDATE t2 SET b=99438 WHERE a=21174; UPDATE t2 SET b=68131 WHERE a=21175; UPDATE t2 SET b=6286 WHERE a=21176; UPDATE t2 SET b=26456 WHERE a=21177; UPDATE t2 SET b=63815 WHERE a=21178; UPDATE t2 SET b=43039 WHERE a=21179; UPDATE t2 SET b=28472 WHERE a=21180; UPDATE t2 SET b=29755 WHERE a=21181; UPDATE t2 SET b=42173 WHERE a=21182; UPDATE t2 SET b=33833 WHERE a=21183; UPDATE t2 SET b=25064 WHERE a=21184; UPDATE t2 SET b=99137 WHERE a=21185; UPDATE t2 SET b=70421 WHERE a=21186; UPDATE t2 SET b=64483 WHERE a=21187; UPDATE t2 SET b=80263 WHERE a=21188; UPDATE t2 SET b=16130 WHERE a=21189; UPDATE t2 SET b=74877 WHERE a=21190; UPDATE t2 SET b=80523 WHERE a=21191; UPDATE t2 SET b=2978 WHERE a=21192; UPDATE t2 SET b=63848 WHERE a=21193; UPDATE t2 SET b=2426 WHERE a=21194; UPDATE t2 SET b=58109 WHERE a=21195; UPDATE t2 SET b=36579 WHERE a=21196; UPDATE t2 SET b=82169 WHERE a=21197; UPDATE t2 SET b=42299 WHERE a=21198; UPDATE t2 SET b=43063 WHERE a=21199; UPDATE t2 SET b=10853 WHERE a=21200; UPDATE t2 SET b=43885 WHERE a=21201; UPDATE t2 SET b=82248 WHERE a=21202; UPDATE t2 SET b=79958 WHERE a=21203; UPDATE t2 SET b=13563 WHERE a=21204; UPDATE t2 SET b=12599 WHERE a=21205; UPDATE t2 SET b=61231 WHERE a=21206; UPDATE t2 SET b=78 WHERE a=21207; UPDATE t2 SET b=67334 WHERE a=21208; UPDATE t2 SET b=89867 WHERE a=21209; UPDATE t2 SET b=53978 WHERE a=21210; UPDATE t2 SET b=40152 WHERE a=21211; UPDATE t2 SET b=49864 WHERE a=21212; UPDATE t2 SET b=56188 WHERE a=21213; UPDATE t2 SET b=13412 WHERE a=21214; UPDATE t2 SET b=94604 WHERE a=21215; UPDATE t2 SET b=77113 WHERE a=21216; UPDATE t2 SET b=26583 WHERE a=21217; UPDATE t2 SET b=3550 WHERE a=21218; UPDATE t2 SET b=63367 WHERE a=21219; UPDATE t2 SET b=19946 WHERE a=21220; UPDATE t2 SET b=71107 WHERE a=21221; UPDATE t2 SET b=59255 WHERE a=21222; UPDATE t2 SET b=61467 WHERE a=21223; UPDATE t2 SET b=63189 WHERE a=21224; UPDATE t2 SET b=84567 WHERE a=21225; UPDATE t2 SET b=27891 WHERE a=21226; UPDATE t2 SET b=79127 WHERE a=21227; UPDATE t2 SET b=34060 WHERE a=21228; UPDATE t2 SET b=89709 WHERE a=21229; UPDATE t2 SET b=50132 WHERE a=21230; UPDATE t2 SET b=60423 WHERE a=21231; UPDATE t2 SET b=60268 WHERE a=21232; UPDATE t2 SET b=90276 WHERE a=21233; UPDATE t2 SET b=44328 WHERE a=21234; UPDATE t2 SET b=71738 WHERE a=21235; UPDATE t2 SET b=84812 WHERE a=21236; UPDATE t2 SET b=26288 WHERE a=21237; UPDATE t2 SET b=57273 WHERE a=21238; UPDATE t2 SET b=98501 WHERE a=21239; UPDATE t2 SET b=17172 WHERE a=21240; UPDATE t2 SET b=81867 WHERE a=21241; UPDATE t2 SET b=53342 WHERE a=21242; UPDATE t2 SET b=85139 WHERE a=21243; UPDATE t2 SET b=12718 WHERE a=21244; UPDATE t2 SET b=65307 WHERE a=21245; UPDATE t2 SET b=20724 WHERE a=21246; UPDATE t2 SET b=27502 WHERE a=21247; UPDATE t2 SET b=60995 WHERE a=21248; UPDATE t2 SET b=4519 WHERE a=21249; UPDATE t2 SET b=57566 WHERE a=21250; UPDATE t2 SET b=80489 WHERE a=21251; UPDATE t2 SET b=88419 WHERE a=21252; UPDATE t2 SET b=16411 WHERE a=21253; UPDATE t2 SET b=21309 WHERE a=21254; UPDATE t2 SET b=70965 WHERE a=21255; UPDATE t2 SET b=57369 WHERE a=21256; UPDATE t2 SET b=99390 WHERE a=21257; UPDATE t2 SET b=70699 WHERE a=21258; UPDATE t2 SET b=23494 WHERE a=21259; UPDATE t2 SET b=68953 WHERE a=21260; UPDATE t2 SET b=15715 WHERE a=21261; UPDATE t2 SET b=26634 WHERE a=21262; UPDATE t2 SET b=84567 WHERE a=21263; UPDATE t2 SET b=95286 WHERE a=21264; UPDATE t2 SET b=70738 WHERE a=21265; UPDATE t2 SET b=90350 WHERE a=21266; UPDATE t2 SET b=33513 WHERE a=21267; UPDATE t2 SET b=79891 WHERE a=21268; UPDATE t2 SET b=27734 WHERE a=21269; UPDATE t2 SET b=82928 WHERE a=21270; UPDATE t2 SET b=8184 WHERE a=21271; UPDATE t2 SET b=39474 WHERE a=21272; UPDATE t2 SET b=76323 WHERE a=21273; UPDATE t2 SET b=67595 WHERE a=21274; UPDATE t2 SET b=97746 WHERE a=21275; UPDATE t2 SET b=50578 WHERE a=21276; UPDATE t2 SET b=69059 WHERE a=21277; UPDATE t2 SET b=43623 WHERE a=21278; UPDATE t2 SET b=77116 WHERE a=21279; UPDATE t2 SET b=56691 WHERE a=21280; UPDATE t2 SET b=3579 WHERE a=21281; UPDATE t2 SET b=47075 WHERE a=21282; UPDATE t2 SET b=8320 WHERE a=21283; UPDATE t2 SET b=28647 WHERE a=21284; UPDATE t2 SET b=361 WHERE a=21285; UPDATE t2 SET b=89362 WHERE a=21286; UPDATE t2 SET b=8829 WHERE a=21287; UPDATE t2 SET b=26920 WHERE a=21288; UPDATE t2 SET b=74590 WHERE a=21289; UPDATE t2 SET b=28586 WHERE a=21290; UPDATE t2 SET b=20587 WHERE a=21291; UPDATE t2 SET b=62484 WHERE a=21292; UPDATE t2 SET b=97682 WHERE a=21293; UPDATE t2 SET b=70118 WHERE a=21294; UPDATE t2 SET b=11563 WHERE a=21295; UPDATE t2 SET b=9849 WHERE a=21296; UPDATE t2 SET b=11993 WHERE a=21297; UPDATE t2 SET b=1124 WHERE a=21298; UPDATE t2 SET b=43508 WHERE a=21299; UPDATE t2 SET b=10318 WHERE a=21300; UPDATE t2 SET b=72144 WHERE a=21301; UPDATE t2 SET b=98146 WHERE a=21302; UPDATE t2 SET b=74099 WHERE a=21303; UPDATE t2 SET b=28281 WHERE a=21304; UPDATE t2 SET b=19416 WHERE a=21305; UPDATE t2 SET b=36204 WHERE a=21306; UPDATE t2 SET b=92613 WHERE a=21307; UPDATE t2 SET b=66513 WHERE a=21308; UPDATE t2 SET b=88398 WHERE a=21309; UPDATE t2 SET b=90702 WHERE a=21310; UPDATE t2 SET b=79992 WHERE a=21311; UPDATE t2 SET b=9107 WHERE a=21312; UPDATE t2 SET b=4560 WHERE a=21313; UPDATE t2 SET b=93972 WHERE a=21314; UPDATE t2 SET b=49150 WHERE a=21315; UPDATE t2 SET b=23459 WHERE a=21316; UPDATE t2 SET b=52128 WHERE a=21317; UPDATE t2 SET b=82598 WHERE a=21318; UPDATE t2 SET b=86199 WHERE a=21319; UPDATE t2 SET b=40683 WHERE a=21320; UPDATE t2 SET b=64843 WHERE a=21321; UPDATE t2 SET b=46827 WHERE a=21322; UPDATE t2 SET b=50498 WHERE a=21323; UPDATE t2 SET b=33532 WHERE a=21324; UPDATE t2 SET b=37438 WHERE a=21325; UPDATE t2 SET b=48685 WHERE a=21326; UPDATE t2 SET b=50905 WHERE a=21327; UPDATE t2 SET b=30413 WHERE a=21328; UPDATE t2 SET b=32871 WHERE a=21329; UPDATE t2 SET b=9867 WHERE a=21330; UPDATE t2 SET b=20139 WHERE a=21331; UPDATE t2 SET b=67120 WHERE a=21332; UPDATE t2 SET b=14338 WHERE a=21333; UPDATE t2 SET b=22517 WHERE a=21334; UPDATE t2 SET b=94224 WHERE a=21335; UPDATE t2 SET b=19194 WHERE a=21336; UPDATE t2 SET b=96920 WHERE a=21337; UPDATE t2 SET b=4270 WHERE a=21338; UPDATE t2 SET b=730 WHERE a=21339; UPDATE t2 SET b=47646 WHERE a=21340; UPDATE t2 SET b=14244 WHERE a=21341; UPDATE t2 SET b=17551 WHERE a=21342; UPDATE t2 SET b=95103 WHERE a=21343; UPDATE t2 SET b=5495 WHERE a=21344; UPDATE t2 SET b=49325 WHERE a=21345; UPDATE t2 SET b=39142 WHERE a=21346; UPDATE t2 SET b=70791 WHERE a=21347; UPDATE t2 SET b=45094 WHERE a=21348; UPDATE t2 SET b=75638 WHERE a=21349; UPDATE t2 SET b=31713 WHERE a=21350; UPDATE t2 SET b=90321 WHERE a=21351; UPDATE t2 SET b=89124 WHERE a=21352; UPDATE t2 SET b=66682 WHERE a=21353; UPDATE t2 SET b=21567 WHERE a=21354; UPDATE t2 SET b=40680 WHERE a=21355; UPDATE t2 SET b=73144 WHERE a=21356; UPDATE t2 SET b=9874 WHERE a=21357; UPDATE t2 SET b=27352 WHERE a=21358; UPDATE t2 SET b=35543 WHERE a=21359; UPDATE t2 SET b=43258 WHERE a=21360; UPDATE t2 SET b=16445 WHERE a=21361; UPDATE t2 SET b=28967 WHERE a=21362; UPDATE t2 SET b=11023 WHERE a=21363; UPDATE t2 SET b=17747 WHERE a=21364; UPDATE t2 SET b=6783 WHERE a=21365; UPDATE t2 SET b=95122 WHERE a=21366; UPDATE t2 SET b=3151 WHERE a=21367; UPDATE t2 SET b=87924 WHERE a=21368; UPDATE t2 SET b=69569 WHERE a=21369; UPDATE t2 SET b=25846 WHERE a=21370; UPDATE t2 SET b=63388 WHERE a=21371; UPDATE t2 SET b=56855 WHERE a=21372; UPDATE t2 SET b=31921 WHERE a=21373; UPDATE t2 SET b=63148 WHERE a=21374; UPDATE t2 SET b=98095 WHERE a=21375; UPDATE t2 SET b=27447 WHERE a=21376; UPDATE t2 SET b=38856 WHERE a=21377; UPDATE t2 SET b=81276 WHERE a=21378; UPDATE t2 SET b=51911 WHERE a=21379; UPDATE t2 SET b=13092 WHERE a=21380; UPDATE t2 SET b=75979 WHERE a=21381; UPDATE t2 SET b=47140 WHERE a=21382; UPDATE t2 SET b=41813 WHERE a=21383; UPDATE t2 SET b=30711 WHERE a=21384; UPDATE t2 SET b=15885 WHERE a=21385; UPDATE t2 SET b=71366 WHERE a=21386; UPDATE t2 SET b=39176 WHERE a=21387; UPDATE t2 SET b=92674 WHERE a=21388; UPDATE t2 SET b=17521 WHERE a=21389; UPDATE t2 SET b=96959 WHERE a=21390; UPDATE t2 SET b=1905 WHERE a=21391; UPDATE t2 SET b=19602 WHERE a=21392; UPDATE t2 SET b=93324 WHERE a=21393; UPDATE t2 SET b=89978 WHERE a=21394; UPDATE t2 SET b=3474 WHERE a=21395; UPDATE t2 SET b=11405 WHERE a=21396; UPDATE t2 SET b=38725 WHERE a=21397; UPDATE t2 SET b=3308 WHERE a=21398; UPDATE t2 SET b=34152 WHERE a=21399; UPDATE t2 SET b=15227 WHERE a=21400; UPDATE t2 SET b=71392 WHERE a=21401; UPDATE t2 SET b=4450 WHERE a=21402; UPDATE t2 SET b=3447 WHERE a=21403; UPDATE t2 SET b=97568 WHERE a=21404; UPDATE t2 SET b=86121 WHERE a=21405; UPDATE t2 SET b=89456 WHERE a=21406; UPDATE t2 SET b=57662 WHERE a=21407; UPDATE t2 SET b=45671 WHERE a=21408; UPDATE t2 SET b=28938 WHERE a=21409; UPDATE t2 SET b=29529 WHERE a=21410; UPDATE t2 SET b=79928 WHERE a=21411; UPDATE t2 SET b=66365 WHERE a=21412; UPDATE t2 SET b=79489 WHERE a=21413; UPDATE t2 SET b=87068 WHERE a=21414; UPDATE t2 SET b=31802 WHERE a=21415; UPDATE t2 SET b=9399 WHERE a=21416; UPDATE t2 SET b=63411 WHERE a=21417; UPDATE t2 SET b=30475 WHERE a=21418; UPDATE t2 SET b=1780 WHERE a=21419; UPDATE t2 SET b=51361 WHERE a=21420; UPDATE t2 SET b=32844 WHERE a=21421; UPDATE t2 SET b=48259 WHERE a=21422; UPDATE t2 SET b=5094 WHERE a=21423; UPDATE t2 SET b=27506 WHERE a=21424; UPDATE t2 SET b=41344 WHERE a=21425; UPDATE t2 SET b=30840 WHERE a=21426; UPDATE t2 SET b=98500 WHERE a=21427; UPDATE t2 SET b=40431 WHERE a=21428; UPDATE t2 SET b=12042 WHERE a=21429; UPDATE t2 SET b=90795 WHERE a=21430; UPDATE t2 SET b=83638 WHERE a=21431; UPDATE t2 SET b=38713 WHERE a=21432; UPDATE t2 SET b=30890 WHERE a=21433; UPDATE t2 SET b=4609 WHERE a=21434; UPDATE t2 SET b=94899 WHERE a=21435; UPDATE t2 SET b=82216 WHERE a=21436; UPDATE t2 SET b=10561 WHERE a=21437; UPDATE t2 SET b=46841 WHERE a=21438; UPDATE t2 SET b=932 WHERE a=21439; UPDATE t2 SET b=763 WHERE a=21440; UPDATE t2 SET b=68665 WHERE a=21441; UPDATE t2 SET b=68750 WHERE a=21442; UPDATE t2 SET b=33639 WHERE a=21443; UPDATE t2 SET b=1545 WHERE a=21444; UPDATE t2 SET b=61017 WHERE a=21445; UPDATE t2 SET b=16940 WHERE a=21446; UPDATE t2 SET b=44940 WHERE a=21447; UPDATE t2 SET b=93509 WHERE a=21448; UPDATE t2 SET b=68547 WHERE a=21449; UPDATE t2 SET b=84646 WHERE a=21450; UPDATE t2 SET b=18054 WHERE a=21451; UPDATE t2 SET b=94335 WHERE a=21452; UPDATE t2 SET b=12076 WHERE a=21453; UPDATE t2 SET b=51573 WHERE a=21454; UPDATE t2 SET b=33729 WHERE a=21455; UPDATE t2 SET b=80438 WHERE a=21456; UPDATE t2 SET b=91590 WHERE a=21457; UPDATE t2 SET b=54205 WHERE a=21458; UPDATE t2 SET b=90070 WHERE a=21459; UPDATE t2 SET b=68203 WHERE a=21460; UPDATE t2 SET b=6697 WHERE a=21461; UPDATE t2 SET b=7601 WHERE a=21462; UPDATE t2 SET b=79277 WHERE a=21463; UPDATE t2 SET b=12845 WHERE a=21464; UPDATE t2 SET b=12550 WHERE a=21465; UPDATE t2 SET b=22424 WHERE a=21466; UPDATE t2 SET b=98315 WHERE a=21467; UPDATE t2 SET b=25051 WHERE a=21468; UPDATE t2 SET b=46655 WHERE a=21469; UPDATE t2 SET b=28235 WHERE a=21470; UPDATE t2 SET b=95229 WHERE a=21471; UPDATE t2 SET b=804 WHERE a=21472; UPDATE t2 SET b=83450 WHERE a=21473; UPDATE t2 SET b=53516 WHERE a=21474; UPDATE t2 SET b=55645 WHERE a=21475; UPDATE t2 SET b=90538 WHERE a=21476; UPDATE t2 SET b=67380 WHERE a=21477; UPDATE t2 SET b=79498 WHERE a=21478; UPDATE t2 SET b=27726 WHERE a=21479; UPDATE t2 SET b=57881 WHERE a=21480; UPDATE t2 SET b=53998 WHERE a=21481; UPDATE t2 SET b=68510 WHERE a=21482; UPDATE t2 SET b=76151 WHERE a=21483; UPDATE t2 SET b=56272 WHERE a=21484; UPDATE t2 SET b=55152 WHERE a=21485; UPDATE t2 SET b=47743 WHERE a=21486; UPDATE t2 SET b=87823 WHERE a=21487; UPDATE t2 SET b=66511 WHERE a=21488; UPDATE t2 SET b=26215 WHERE a=21489; UPDATE t2 SET b=64508 WHERE a=21490; UPDATE t2 SET b=10029 WHERE a=21491; UPDATE t2 SET b=12143 WHERE a=21492; UPDATE t2 SET b=23892 WHERE a=21493; UPDATE t2 SET b=23809 WHERE a=21494; UPDATE t2 SET b=86988 WHERE a=21495; UPDATE t2 SET b=13822 WHERE a=21496; UPDATE t2 SET b=13299 WHERE a=21497; UPDATE t2 SET b=97830 WHERE a=21498; UPDATE t2 SET b=84921 WHERE a=21499; UPDATE t2 SET b=98918 WHERE a=21500; UPDATE t2 SET b=72832 WHERE a=21501; UPDATE t2 SET b=41796 WHERE a=21502; UPDATE t2 SET b=20082 WHERE a=21503; UPDATE t2 SET b=27524 WHERE a=21504; UPDATE t2 SET b=69431 WHERE a=21505; UPDATE t2 SET b=15358 WHERE a=21506; UPDATE t2 SET b=10549 WHERE a=21507; UPDATE t2 SET b=42155 WHERE a=21508; UPDATE t2 SET b=5441 WHERE a=21509; UPDATE t2 SET b=73754 WHERE a=21510; UPDATE t2 SET b=36615 WHERE a=21511; UPDATE t2 SET b=87280 WHERE a=21512; UPDATE t2 SET b=76557 WHERE a=21513; UPDATE t2 SET b=7843 WHERE a=21514; UPDATE t2 SET b=39387 WHERE a=21515; UPDATE t2 SET b=56959 WHERE a=21516; UPDATE t2 SET b=66305 WHERE a=21517; UPDATE t2 SET b=81125 WHERE a=21518; UPDATE t2 SET b=54071 WHERE a=21519; UPDATE t2 SET b=65070 WHERE a=21520; UPDATE t2 SET b=38369 WHERE a=21521; UPDATE t2 SET b=69623 WHERE a=21522; UPDATE t2 SET b=72421 WHERE a=21523; UPDATE t2 SET b=83917 WHERE a=21524; UPDATE t2 SET b=36118 WHERE a=21525; UPDATE t2 SET b=16041 WHERE a=21526; UPDATE t2 SET b=62009 WHERE a=21527; UPDATE t2 SET b=50402 WHERE a=21528; UPDATE t2 SET b=85444 WHERE a=21529; UPDATE t2 SET b=17404 WHERE a=21530; UPDATE t2 SET b=44638 WHERE a=21531; UPDATE t2 SET b=90828 WHERE a=21532; UPDATE t2 SET b=66687 WHERE a=21533; UPDATE t2 SET b=62570 WHERE a=21534; UPDATE t2 SET b=85946 WHERE a=21535; UPDATE t2 SET b=95777 WHERE a=21536; UPDATE t2 SET b=21727 WHERE a=21537; UPDATE t2 SET b=80227 WHERE a=21538; UPDATE t2 SET b=56641 WHERE a=21539; UPDATE t2 SET b=41138 WHERE a=21540; UPDATE t2 SET b=17809 WHERE a=21541; UPDATE t2 SET b=55739 WHERE a=21542; UPDATE t2 SET b=55456 WHERE a=21543; UPDATE t2 SET b=90496 WHERE a=21544; UPDATE t2 SET b=58085 WHERE a=21545; UPDATE t2 SET b=19047 WHERE a=21546; UPDATE t2 SET b=66980 WHERE a=21547; UPDATE t2 SET b=27056 WHERE a=21548; UPDATE t2 SET b=15080 WHERE a=21549; UPDATE t2 SET b=710 WHERE a=21550; UPDATE t2 SET b=55376 WHERE a=21551; UPDATE t2 SET b=85134 WHERE a=21552; UPDATE t2 SET b=68700 WHERE a=21553; UPDATE t2 SET b=63113 WHERE a=21554; UPDATE t2 SET b=30589 WHERE a=21555; UPDATE t2 SET b=8406 WHERE a=21556; UPDATE t2 SET b=19453 WHERE a=21557; UPDATE t2 SET b=27128 WHERE a=21558; UPDATE t2 SET b=4405 WHERE a=21559; UPDATE t2 SET b=95982 WHERE a=21560; UPDATE t2 SET b=88194 WHERE a=21561; UPDATE t2 SET b=13289 WHERE a=21562; UPDATE t2 SET b=45760 WHERE a=21563; UPDATE t2 SET b=81296 WHERE a=21564; UPDATE t2 SET b=71875 WHERE a=21565; UPDATE t2 SET b=87366 WHERE a=21566; UPDATE t2 SET b=22545 WHERE a=21567; UPDATE t2 SET b=90087 WHERE a=21568; UPDATE t2 SET b=39201 WHERE a=21569; UPDATE t2 SET b=78108 WHERE a=21570; UPDATE t2 SET b=14205 WHERE a=21571; UPDATE t2 SET b=53440 WHERE a=21572; UPDATE t2 SET b=50360 WHERE a=21573; UPDATE t2 SET b=32089 WHERE a=21574; UPDATE t2 SET b=82112 WHERE a=21575; UPDATE t2 SET b=7086 WHERE a=21576; UPDATE t2 SET b=11484 WHERE a=21577; UPDATE t2 SET b=50050 WHERE a=21578; UPDATE t2 SET b=93240 WHERE a=21579; UPDATE t2 SET b=90065 WHERE a=21580; UPDATE t2 SET b=17127 WHERE a=21581; UPDATE t2 SET b=37335 WHERE a=21582; UPDATE t2 SET b=45207 WHERE a=21583; UPDATE t2 SET b=35642 WHERE a=21584; UPDATE t2 SET b=53198 WHERE a=21585; UPDATE t2 SET b=35978 WHERE a=21586; UPDATE t2 SET b=49805 WHERE a=21587; UPDATE t2 SET b=67920 WHERE a=21588; UPDATE t2 SET b=23566 WHERE a=21589; UPDATE t2 SET b=71455 WHERE a=21590; UPDATE t2 SET b=39479 WHERE a=21591; UPDATE t2 SET b=78913 WHERE a=21592; UPDATE t2 SET b=82804 WHERE a=21593; UPDATE t2 SET b=57391 WHERE a=21594; UPDATE t2 SET b=21368 WHERE a=21595; UPDATE t2 SET b=85150 WHERE a=21596; UPDATE t2 SET b=19139 WHERE a=21597; UPDATE t2 SET b=5911 WHERE a=21598; UPDATE t2 SET b=37754 WHERE a=21599; UPDATE t2 SET b=47590 WHERE a=21600; UPDATE t2 SET b=80346 WHERE a=21601; UPDATE t2 SET b=86421 WHERE a=21602; UPDATE t2 SET b=26194 WHERE a=21603; UPDATE t2 SET b=26871 WHERE a=21604; UPDATE t2 SET b=54334 WHERE a=21605; UPDATE t2 SET b=30068 WHERE a=21606; UPDATE t2 SET b=64383 WHERE a=21607; UPDATE t2 SET b=64225 WHERE a=21608; UPDATE t2 SET b=25589 WHERE a=21609; UPDATE t2 SET b=30958 WHERE a=21610; UPDATE t2 SET b=2015 WHERE a=21611; UPDATE t2 SET b=97280 WHERE a=21612; UPDATE t2 SET b=28741 WHERE a=21613; UPDATE t2 SET b=11874 WHERE a=21614; UPDATE t2 SET b=34929 WHERE a=21615; UPDATE t2 SET b=2260 WHERE a=21616; UPDATE t2 SET b=27252 WHERE a=21617; UPDATE t2 SET b=10522 WHERE a=21618; UPDATE t2 SET b=47003 WHERE a=21619; UPDATE t2 SET b=38017 WHERE a=21620; UPDATE t2 SET b=86853 WHERE a=21621; UPDATE t2 SET b=83091 WHERE a=21622; UPDATE t2 SET b=16320 WHERE a=21623; UPDATE t2 SET b=54782 WHERE a=21624; UPDATE t2 SET b=86489 WHERE a=21625; UPDATE t2 SET b=34973 WHERE a=21626; UPDATE t2 SET b=18558 WHERE a=21627; UPDATE t2 SET b=21828 WHERE a=21628; UPDATE t2 SET b=42773 WHERE a=21629; UPDATE t2 SET b=50892 WHERE a=21630; UPDATE t2 SET b=55755 WHERE a=21631; UPDATE t2 SET b=7221 WHERE a=21632; UPDATE t2 SET b=53283 WHERE a=21633; UPDATE t2 SET b=56278 WHERE a=21634; UPDATE t2 SET b=14189 WHERE a=21635; UPDATE t2 SET b=85839 WHERE a=21636; UPDATE t2 SET b=73144 WHERE a=21637; UPDATE t2 SET b=25554 WHERE a=21638; UPDATE t2 SET b=65347 WHERE a=21639; UPDATE t2 SET b=63678 WHERE a=21640; UPDATE t2 SET b=76569 WHERE a=21641; UPDATE t2 SET b=27915 WHERE a=21642; UPDATE t2 SET b=38032 WHERE a=21643; UPDATE t2 SET b=59375 WHERE a=21644; UPDATE t2 SET b=83720 WHERE a=21645; UPDATE t2 SET b=85712 WHERE a=21646; UPDATE t2 SET b=27008 WHERE a=21647; UPDATE t2 SET b=34142 WHERE a=21648; UPDATE t2 SET b=81458 WHERE a=21649; UPDATE t2 SET b=4724 WHERE a=21650; UPDATE t2 SET b=2109 WHERE a=21651; UPDATE t2 SET b=36021 WHERE a=21652; UPDATE t2 SET b=82144 WHERE a=21653; UPDATE t2 SET b=46840 WHERE a=21654; UPDATE t2 SET b=85932 WHERE a=21655; UPDATE t2 SET b=937 WHERE a=21656; UPDATE t2 SET b=31397 WHERE a=21657; UPDATE t2 SET b=92080 WHERE a=21658; UPDATE t2 SET b=73979 WHERE a=21659; UPDATE t2 SET b=98983 WHERE a=21660; UPDATE t2 SET b=18294 WHERE a=21661; UPDATE t2 SET b=21634 WHERE a=21662; UPDATE t2 SET b=95631 WHERE a=21663; UPDATE t2 SET b=64352 WHERE a=21664; UPDATE t2 SET b=15253 WHERE a=21665; UPDATE t2 SET b=67004 WHERE a=21666; UPDATE t2 SET b=85326 WHERE a=21667; UPDATE t2 SET b=28566 WHERE a=21668; UPDATE t2 SET b=44538 WHERE a=21669; UPDATE t2 SET b=38612 WHERE a=21670; UPDATE t2 SET b=93422 WHERE a=21671; UPDATE t2 SET b=85206 WHERE a=21672; UPDATE t2 SET b=82774 WHERE a=21673; UPDATE t2 SET b=74774 WHERE a=21674; UPDATE t2 SET b=52406 WHERE a=21675; UPDATE t2 SET b=63697 WHERE a=21676; UPDATE t2 SET b=41192 WHERE a=21677; UPDATE t2 SET b=51873 WHERE a=21678; UPDATE t2 SET b=34317 WHERE a=21679; UPDATE t2 SET b=54400 WHERE a=21680; UPDATE t2 SET b=74010 WHERE a=21681; UPDATE t2 SET b=21541 WHERE a=21682; UPDATE t2 SET b=39397 WHERE a=21683; UPDATE t2 SET b=13538 WHERE a=21684; UPDATE t2 SET b=92037 WHERE a=21685; UPDATE t2 SET b=96706 WHERE a=21686; UPDATE t2 SET b=13412 WHERE a=21687; UPDATE t2 SET b=53292 WHERE a=21688; UPDATE t2 SET b=59584 WHERE a=21689; UPDATE t2 SET b=22865 WHERE a=21690; UPDATE t2 SET b=85068 WHERE a=21691; UPDATE t2 SET b=29672 WHERE a=21692; UPDATE t2 SET b=50606 WHERE a=21693; UPDATE t2 SET b=32510 WHERE a=21694; UPDATE t2 SET b=7961 WHERE a=21695; UPDATE t2 SET b=65258 WHERE a=21696; UPDATE t2 SET b=5691 WHERE a=21697; UPDATE t2 SET b=60236 WHERE a=21698; UPDATE t2 SET b=5006 WHERE a=21699; UPDATE t2 SET b=97171 WHERE a=21700; UPDATE t2 SET b=51598 WHERE a=21701; UPDATE t2 SET b=97292 WHERE a=21702; UPDATE t2 SET b=46445 WHERE a=21703; UPDATE t2 SET b=75579 WHERE a=21704; UPDATE t2 SET b=29791 WHERE a=21705; UPDATE t2 SET b=27338 WHERE a=21706; UPDATE t2 SET b=70261 WHERE a=21707; UPDATE t2 SET b=62345 WHERE a=21708; UPDATE t2 SET b=10715 WHERE a=21709; UPDATE t2 SET b=93148 WHERE a=21710; UPDATE t2 SET b=34576 WHERE a=21711; UPDATE t2 SET b=67750 WHERE a=21712; UPDATE t2 SET b=43559 WHERE a=21713; UPDATE t2 SET b=95250 WHERE a=21714; UPDATE t2 SET b=82913 WHERE a=21715; UPDATE t2 SET b=23615 WHERE a=21716; UPDATE t2 SET b=83601 WHERE a=21717; UPDATE t2 SET b=92658 WHERE a=21718; UPDATE t2 SET b=60656 WHERE a=21719; UPDATE t2 SET b=24541 WHERE a=21720; UPDATE t2 SET b=99094 WHERE a=21721; UPDATE t2 SET b=98880 WHERE a=21722; UPDATE t2 SET b=23624 WHERE a=21723; UPDATE t2 SET b=33998 WHERE a=21724; UPDATE t2 SET b=65271 WHERE a=21725; UPDATE t2 SET b=69788 WHERE a=21726; UPDATE t2 SET b=22784 WHERE a=21727; UPDATE t2 SET b=50170 WHERE a=21728; UPDATE t2 SET b=25554 WHERE a=21729; UPDATE t2 SET b=92176 WHERE a=21730; UPDATE t2 SET b=85683 WHERE a=21731; UPDATE t2 SET b=49573 WHERE a=21732; UPDATE t2 SET b=29081 WHERE a=21733; UPDATE t2 SET b=62719 WHERE a=21734; UPDATE t2 SET b=25463 WHERE a=21735; UPDATE t2 SET b=82257 WHERE a=21736; UPDATE t2 SET b=47249 WHERE a=21737; UPDATE t2 SET b=61507 WHERE a=21738; UPDATE t2 SET b=80222 WHERE a=21739; UPDATE t2 SET b=42997 WHERE a=21740; UPDATE t2 SET b=87363 WHERE a=21741; UPDATE t2 SET b=54582 WHERE a=21742; UPDATE t2 SET b=5204 WHERE a=21743; UPDATE t2 SET b=31545 WHERE a=21744; UPDATE t2 SET b=93281 WHERE a=21745; UPDATE t2 SET b=4068 WHERE a=21746; UPDATE t2 SET b=12590 WHERE a=21747; UPDATE t2 SET b=81687 WHERE a=21748; UPDATE t2 SET b=87316 WHERE a=21749; UPDATE t2 SET b=13818 WHERE a=21750; UPDATE t2 SET b=19679 WHERE a=21751; UPDATE t2 SET b=66 WHERE a=21752; UPDATE t2 SET b=19425 WHERE a=21753; UPDATE t2 SET b=59908 WHERE a=21754; UPDATE t2 SET b=7028 WHERE a=21755; UPDATE t2 SET b=16994 WHERE a=21756; UPDATE t2 SET b=38935 WHERE a=21757; UPDATE t2 SET b=67021 WHERE a=21758; UPDATE t2 SET b=53520 WHERE a=21759; UPDATE t2 SET b=66628 WHERE a=21760; UPDATE t2 SET b=25957 WHERE a=21761; UPDATE t2 SET b=96397 WHERE a=21762; UPDATE t2 SET b=69677 WHERE a=21763; UPDATE t2 SET b=55394 WHERE a=21764; UPDATE t2 SET b=76417 WHERE a=21765; UPDATE t2 SET b=99162 WHERE a=21766; UPDATE t2 SET b=53920 WHERE a=21767; UPDATE t2 SET b=63752 WHERE a=21768; UPDATE t2 SET b=77380 WHERE a=21769; UPDATE t2 SET b=20767 WHERE a=21770; UPDATE t2 SET b=67993 WHERE a=21771; UPDATE t2 SET b=39298 WHERE a=21772; UPDATE t2 SET b=59195 WHERE a=21773; UPDATE t2 SET b=56063 WHERE a=21774; UPDATE t2 SET b=1160 WHERE a=21775; UPDATE t2 SET b=21326 WHERE a=21776; UPDATE t2 SET b=17099 WHERE a=21777; UPDATE t2 SET b=1323 WHERE a=21778; UPDATE t2 SET b=50850 WHERE a=21779; UPDATE t2 SET b=70489 WHERE a=21780; UPDATE t2 SET b=92984 WHERE a=21781; UPDATE t2 SET b=35174 WHERE a=21782; UPDATE t2 SET b=33970 WHERE a=21783; UPDATE t2 SET b=62087 WHERE a=21784; UPDATE t2 SET b=52437 WHERE a=21785; UPDATE t2 SET b=49766 WHERE a=21786; UPDATE t2 SET b=70641 WHERE a=21787; UPDATE t2 SET b=18331 WHERE a=21788; UPDATE t2 SET b=5406 WHERE a=21789; UPDATE t2 SET b=72621 WHERE a=21790; UPDATE t2 SET b=7091 WHERE a=21791; UPDATE t2 SET b=1491 WHERE a=21792; UPDATE t2 SET b=68853 WHERE a=21793; UPDATE t2 SET b=44997 WHERE a=21794; UPDATE t2 SET b=14597 WHERE a=21795; UPDATE t2 SET b=15036 WHERE a=21796; UPDATE t2 SET b=62257 WHERE a=21797; UPDATE t2 SET b=27247 WHERE a=21798; UPDATE t2 SET b=44016 WHERE a=21799; UPDATE t2 SET b=84212 WHERE a=21800; UPDATE t2 SET b=96335 WHERE a=21801; UPDATE t2 SET b=84868 WHERE a=21802; UPDATE t2 SET b=81212 WHERE a=21803; UPDATE t2 SET b=86514 WHERE a=21804; UPDATE t2 SET b=85108 WHERE a=21805; UPDATE t2 SET b=19940 WHERE a=21806; UPDATE t2 SET b=82324 WHERE a=21807; UPDATE t2 SET b=70054 WHERE a=21808; UPDATE t2 SET b=77812 WHERE a=21809; UPDATE t2 SET b=3562 WHERE a=21810; UPDATE t2 SET b=89605 WHERE a=21811; UPDATE t2 SET b=37026 WHERE a=21812; UPDATE t2 SET b=37806 WHERE a=21813; UPDATE t2 SET b=15117 WHERE a=21814; UPDATE t2 SET b=74481 WHERE a=21815; UPDATE t2 SET b=45885 WHERE a=21816; UPDATE t2 SET b=6718 WHERE a=21817; UPDATE t2 SET b=48798 WHERE a=21818; UPDATE t2 SET b=23327 WHERE a=21819; UPDATE t2 SET b=3587 WHERE a=21820; UPDATE t2 SET b=53053 WHERE a=21821; UPDATE t2 SET b=341 WHERE a=21822; UPDATE t2 SET b=92040 WHERE a=21823; UPDATE t2 SET b=59463 WHERE a=21824; UPDATE t2 SET b=75409 WHERE a=21825; UPDATE t2 SET b=20639 WHERE a=21826; UPDATE t2 SET b=53359 WHERE a=21827; UPDATE t2 SET b=34397 WHERE a=21828; UPDATE t2 SET b=28962 WHERE a=21829; UPDATE t2 SET b=45648 WHERE a=21830; UPDATE t2 SET b=53670 WHERE a=21831; UPDATE t2 SET b=66276 WHERE a=21832; UPDATE t2 SET b=23466 WHERE a=21833; UPDATE t2 SET b=33507 WHERE a=21834; UPDATE t2 SET b=38978 WHERE a=21835; UPDATE t2 SET b=42273 WHERE a=21836; UPDATE t2 SET b=85372 WHERE a=21837; UPDATE t2 SET b=5436 WHERE a=21838; UPDATE t2 SET b=5805 WHERE a=21839; UPDATE t2 SET b=19256 WHERE a=21840; UPDATE t2 SET b=71123 WHERE a=21841; UPDATE t2 SET b=4536 WHERE a=21842; UPDATE t2 SET b=79068 WHERE a=21843; UPDATE t2 SET b=65796 WHERE a=21844; UPDATE t2 SET b=98641 WHERE a=21845; UPDATE t2 SET b=2997 WHERE a=21846; UPDATE t2 SET b=60071 WHERE a=21847; UPDATE t2 SET b=50629 WHERE a=21848; UPDATE t2 SET b=65092 WHERE a=21849; UPDATE t2 SET b=9771 WHERE a=21850; UPDATE t2 SET b=73415 WHERE a=21851; UPDATE t2 SET b=48336 WHERE a=21852; UPDATE t2 SET b=14166 WHERE a=21853; UPDATE t2 SET b=89832 WHERE a=21854; UPDATE t2 SET b=26708 WHERE a=21855; UPDATE t2 SET b=46645 WHERE a=21856; UPDATE t2 SET b=51518 WHERE a=21857; UPDATE t2 SET b=52844 WHERE a=21858; UPDATE t2 SET b=99611 WHERE a=21859; UPDATE t2 SET b=94363 WHERE a=21860; UPDATE t2 SET b=97370 WHERE a=21861; UPDATE t2 SET b=32667 WHERE a=21862; UPDATE t2 SET b=15440 WHERE a=21863; UPDATE t2 SET b=35509 WHERE a=21864; UPDATE t2 SET b=96726 WHERE a=21865; UPDATE t2 SET b=37431 WHERE a=21866; UPDATE t2 SET b=68189 WHERE a=21867; UPDATE t2 SET b=63583 WHERE a=21868; UPDATE t2 SET b=34887 WHERE a=21869; UPDATE t2 SET b=4191 WHERE a=21870; UPDATE t2 SET b=10315 WHERE a=21871; UPDATE t2 SET b=7016 WHERE a=21872; UPDATE t2 SET b=12057 WHERE a=21873; UPDATE t2 SET b=44545 WHERE a=21874; UPDATE t2 SET b=3918 WHERE a=21875; UPDATE t2 SET b=12003 WHERE a=21876; UPDATE t2 SET b=3797 WHERE a=21877; UPDATE t2 SET b=78527 WHERE a=21878; UPDATE t2 SET b=2321 WHERE a=21879; UPDATE t2 SET b=20972 WHERE a=21880; UPDATE t2 SET b=35175 WHERE a=21881; UPDATE t2 SET b=20944 WHERE a=21882; UPDATE t2 SET b=81233 WHERE a=21883; UPDATE t2 SET b=29384 WHERE a=21884; UPDATE t2 SET b=65524 WHERE a=21885; UPDATE t2 SET b=27367 WHERE a=21886; UPDATE t2 SET b=1023 WHERE a=21887; UPDATE t2 SET b=31580 WHERE a=21888; UPDATE t2 SET b=73681 WHERE a=21889; UPDATE t2 SET b=54534 WHERE a=21890; UPDATE t2 SET b=25639 WHERE a=21891; UPDATE t2 SET b=98190 WHERE a=21892; UPDATE t2 SET b=55800 WHERE a=21893; UPDATE t2 SET b=93042 WHERE a=21894; UPDATE t2 SET b=79767 WHERE a=21895; UPDATE t2 SET b=28332 WHERE a=21896; UPDATE t2 SET b=37692 WHERE a=21897; UPDATE t2 SET b=6056 WHERE a=21898; UPDATE t2 SET b=69968 WHERE a=21899; UPDATE t2 SET b=14250 WHERE a=21900; UPDATE t2 SET b=85024 WHERE a=21901; UPDATE t2 SET b=39741 WHERE a=21902; UPDATE t2 SET b=16890 WHERE a=21903; UPDATE t2 SET b=44769 WHERE a=21904; UPDATE t2 SET b=52961 WHERE a=21905; UPDATE t2 SET b=38460 WHERE a=21906; UPDATE t2 SET b=37567 WHERE a=21907; UPDATE t2 SET b=86489 WHERE a=21908; UPDATE t2 SET b=82968 WHERE a=21909; UPDATE t2 SET b=72674 WHERE a=21910; UPDATE t2 SET b=96146 WHERE a=21911; UPDATE t2 SET b=23494 WHERE a=21912; UPDATE t2 SET b=4281 WHERE a=21913; UPDATE t2 SET b=13652 WHERE a=21914; UPDATE t2 SET b=41638 WHERE a=21915; UPDATE t2 SET b=78370 WHERE a=21916; UPDATE t2 SET b=17405 WHERE a=21917; UPDATE t2 SET b=94262 WHERE a=21918; UPDATE t2 SET b=17897 WHERE a=21919; UPDATE t2 SET b=78513 WHERE a=21920; UPDATE t2 SET b=1741 WHERE a=21921; UPDATE t2 SET b=46582 WHERE a=21922; UPDATE t2 SET b=28128 WHERE a=21923; UPDATE t2 SET b=96420 WHERE a=21924; UPDATE t2 SET b=44952 WHERE a=21925; UPDATE t2 SET b=42481 WHERE a=21926; UPDATE t2 SET b=63524 WHERE a=21927; UPDATE t2 SET b=92905 WHERE a=21928; UPDATE t2 SET b=43487 WHERE a=21929; UPDATE t2 SET b=42658 WHERE a=21930; UPDATE t2 SET b=90617 WHERE a=21931; UPDATE t2 SET b=23689 WHERE a=21932; UPDATE t2 SET b=49203 WHERE a=21933; UPDATE t2 SET b=253 WHERE a=21934; UPDATE t2 SET b=65598 WHERE a=21935; UPDATE t2 SET b=53651 WHERE a=21936; UPDATE t2 SET b=43124 WHERE a=21937; UPDATE t2 SET b=32708 WHERE a=21938; UPDATE t2 SET b=89649 WHERE a=21939; UPDATE t2 SET b=4497 WHERE a=21940; UPDATE t2 SET b=22689 WHERE a=21941; UPDATE t2 SET b=17970 WHERE a=21942; UPDATE t2 SET b=63590 WHERE a=21943; UPDATE t2 SET b=31079 WHERE a=21944; UPDATE t2 SET b=8948 WHERE a=21945; UPDATE t2 SET b=74790 WHERE a=21946; UPDATE t2 SET b=74752 WHERE a=21947; UPDATE t2 SET b=91525 WHERE a=21948; UPDATE t2 SET b=32293 WHERE a=21949; UPDATE t2 SET b=40534 WHERE a=21950; UPDATE t2 SET b=59333 WHERE a=21951; UPDATE t2 SET b=97394 WHERE a=21952; UPDATE t2 SET b=5784 WHERE a=21953; UPDATE t2 SET b=35818 WHERE a=21954; UPDATE t2 SET b=23284 WHERE a=21955; UPDATE t2 SET b=99410 WHERE a=21956; UPDATE t2 SET b=98182 WHERE a=21957; UPDATE t2 SET b=50463 WHERE a=21958; UPDATE t2 SET b=66541 WHERE a=21959; UPDATE t2 SET b=24021 WHERE a=21960; UPDATE t2 SET b=27181 WHERE a=21961; UPDATE t2 SET b=77267 WHERE a=21962; UPDATE t2 SET b=23125 WHERE a=21963; UPDATE t2 SET b=19245 WHERE a=21964; UPDATE t2 SET b=20425 WHERE a=21965; UPDATE t2 SET b=82714 WHERE a=21966; UPDATE t2 SET b=75735 WHERE a=21967; UPDATE t2 SET b=72183 WHERE a=21968; UPDATE t2 SET b=49847 WHERE a=21969; UPDATE t2 SET b=88475 WHERE a=21970; UPDATE t2 SET b=62700 WHERE a=21971; UPDATE t2 SET b=3127 WHERE a=21972; UPDATE t2 SET b=22570 WHERE a=21973; UPDATE t2 SET b=20597 WHERE a=21974; UPDATE t2 SET b=7793 WHERE a=21975; UPDATE t2 SET b=38933 WHERE a=21976; UPDATE t2 SET b=31024 WHERE a=21977; UPDATE t2 SET b=4713 WHERE a=21978; UPDATE t2 SET b=90260 WHERE a=21979; UPDATE t2 SET b=78774 WHERE a=21980; UPDATE t2 SET b=34201 WHERE a=21981; UPDATE t2 SET b=96976 WHERE a=21982; UPDATE t2 SET b=94845 WHERE a=21983; UPDATE t2 SET b=89937 WHERE a=21984; UPDATE t2 SET b=91305 WHERE a=21985; UPDATE t2 SET b=3086 WHERE a=21986; UPDATE t2 SET b=905 WHERE a=21987; UPDATE t2 SET b=93548 WHERE a=21988; UPDATE t2 SET b=17439 WHERE a=21989; UPDATE t2 SET b=42820 WHERE a=21990; UPDATE t2 SET b=76139 WHERE a=21991; UPDATE t2 SET b=13728 WHERE a=21992; UPDATE t2 SET b=38296 WHERE a=21993; UPDATE t2 SET b=86793 WHERE a=21994; UPDATE t2 SET b=77811 WHERE a=21995; UPDATE t2 SET b=80394 WHERE a=21996; UPDATE t2 SET b=89612 WHERE a=21997; UPDATE t2 SET b=84454 WHERE a=21998; UPDATE t2 SET b=58237 WHERE a=21999; UPDATE t2 SET b=7959 WHERE a=22000; UPDATE t2 SET b=5530 WHERE a=22001; UPDATE t2 SET b=5209 WHERE a=22002; UPDATE t2 SET b=25964 WHERE a=22003; UPDATE t2 SET b=54636 WHERE a=22004; UPDATE t2 SET b=90593 WHERE a=22005; UPDATE t2 SET b=8249 WHERE a=22006; UPDATE t2 SET b=16909 WHERE a=22007; UPDATE t2 SET b=18722 WHERE a=22008; UPDATE t2 SET b=93226 WHERE a=22009; UPDATE t2 SET b=16449 WHERE a=22010; UPDATE t2 SET b=40619 WHERE a=22011; UPDATE t2 SET b=63349 WHERE a=22012; UPDATE t2 SET b=83080 WHERE a=22013; UPDATE t2 SET b=77219 WHERE a=22014; UPDATE t2 SET b=12301 WHERE a=22015; UPDATE t2 SET b=17148 WHERE a=22016; UPDATE t2 SET b=5746 WHERE a=22017; UPDATE t2 SET b=56857 WHERE a=22018; UPDATE t2 SET b=97701 WHERE a=22019; UPDATE t2 SET b=35984 WHERE a=22020; UPDATE t2 SET b=79520 WHERE a=22021; UPDATE t2 SET b=53929 WHERE a=22022; UPDATE t2 SET b=15128 WHERE a=22023; UPDATE t2 SET b=93340 WHERE a=22024; UPDATE t2 SET b=3682 WHERE a=22025; UPDATE t2 SET b=36542 WHERE a=22026; UPDATE t2 SET b=27913 WHERE a=22027; UPDATE t2 SET b=628 WHERE a=22028; UPDATE t2 SET b=7519 WHERE a=22029; UPDATE t2 SET b=96208 WHERE a=22030; UPDATE t2 SET b=76529 WHERE a=22031; UPDATE t2 SET b=89431 WHERE a=22032; UPDATE t2 SET b=5508 WHERE a=22033; UPDATE t2 SET b=4814 WHERE a=22034; UPDATE t2 SET b=13273 WHERE a=22035; UPDATE t2 SET b=33121 WHERE a=22036; UPDATE t2 SET b=79587 WHERE a=22037; UPDATE t2 SET b=74238 WHERE a=22038; UPDATE t2 SET b=44033 WHERE a=22039; UPDATE t2 SET b=797 WHERE a=22040; UPDATE t2 SET b=67533 WHERE a=22041; UPDATE t2 SET b=88810 WHERE a=22042; UPDATE t2 SET b=94528 WHERE a=22043; UPDATE t2 SET b=90847 WHERE a=22044; UPDATE t2 SET b=39925 WHERE a=22045; UPDATE t2 SET b=29043 WHERE a=22046; UPDATE t2 SET b=15506 WHERE a=22047; UPDATE t2 SET b=92836 WHERE a=22048; UPDATE t2 SET b=42399 WHERE a=22049; UPDATE t2 SET b=30896 WHERE a=22050; UPDATE t2 SET b=75305 WHERE a=22051; UPDATE t2 SET b=75977 WHERE a=22052; UPDATE t2 SET b=23978 WHERE a=22053; UPDATE t2 SET b=44268 WHERE a=22054; UPDATE t2 SET b=41410 WHERE a=22055; UPDATE t2 SET b=38239 WHERE a=22056; UPDATE t2 SET b=14914 WHERE a=22057; UPDATE t2 SET b=78960 WHERE a=22058; UPDATE t2 SET b=77256 WHERE a=22059; UPDATE t2 SET b=90681 WHERE a=22060; UPDATE t2 SET b=80601 WHERE a=22061; UPDATE t2 SET b=24792 WHERE a=22062; UPDATE t2 SET b=67079 WHERE a=22063; UPDATE t2 SET b=1117 WHERE a=22064; UPDATE t2 SET b=35066 WHERE a=22065; UPDATE t2 SET b=23960 WHERE a=22066; UPDATE t2 SET b=14710 WHERE a=22067; UPDATE t2 SET b=13293 WHERE a=22068; UPDATE t2 SET b=18275 WHERE a=22069; UPDATE t2 SET b=54483 WHERE a=22070; UPDATE t2 SET b=49413 WHERE a=22071; UPDATE t2 SET b=78879 WHERE a=22072; UPDATE t2 SET b=98906 WHERE a=22073; UPDATE t2 SET b=31531 WHERE a=22074; UPDATE t2 SET b=4583 WHERE a=22075; UPDATE t2 SET b=40078 WHERE a=22076; UPDATE t2 SET b=70764 WHERE a=22077; UPDATE t2 SET b=36262 WHERE a=22078; UPDATE t2 SET b=75085 WHERE a=22079; UPDATE t2 SET b=52588 WHERE a=22080; UPDATE t2 SET b=33708 WHERE a=22081; UPDATE t2 SET b=17104 WHERE a=22082; UPDATE t2 SET b=8746 WHERE a=22083; UPDATE t2 SET b=94710 WHERE a=22084; UPDATE t2 SET b=86394 WHERE a=22085; UPDATE t2 SET b=23624 WHERE a=22086; UPDATE t2 SET b=91328 WHERE a=22087; UPDATE t2 SET b=20784 WHERE a=22088; UPDATE t2 SET b=61969 WHERE a=22089; UPDATE t2 SET b=78808 WHERE a=22090; UPDATE t2 SET b=32877 WHERE a=22091; UPDATE t2 SET b=22578 WHERE a=22092; UPDATE t2 SET b=21337 WHERE a=22093; UPDATE t2 SET b=70445 WHERE a=22094; UPDATE t2 SET b=46340 WHERE a=22095; UPDATE t2 SET b=27102 WHERE a=22096; UPDATE t2 SET b=33952 WHERE a=22097; UPDATE t2 SET b=96829 WHERE a=22098; UPDATE t2 SET b=62903 WHERE a=22099; UPDATE t2 SET b=1500 WHERE a=22100; UPDATE t2 SET b=42047 WHERE a=22101; UPDATE t2 SET b=82218 WHERE a=22102; UPDATE t2 SET b=25586 WHERE a=22103; UPDATE t2 SET b=60274 WHERE a=22104; UPDATE t2 SET b=38908 WHERE a=22105; UPDATE t2 SET b=58335 WHERE a=22106; UPDATE t2 SET b=75538 WHERE a=22107; UPDATE t2 SET b=98057 WHERE a=22108; UPDATE t2 SET b=4221 WHERE a=22109; UPDATE t2 SET b=14184 WHERE a=22110; UPDATE t2 SET b=60090 WHERE a=22111; UPDATE t2 SET b=61274 WHERE a=22112; UPDATE t2 SET b=63003 WHERE a=22113; UPDATE t2 SET b=3170 WHERE a=22114; UPDATE t2 SET b=27152 WHERE a=22115; UPDATE t2 SET b=38711 WHERE a=22116; UPDATE t2 SET b=40491 WHERE a=22117; UPDATE t2 SET b=45391 WHERE a=22118; UPDATE t2 SET b=29627 WHERE a=22119; UPDATE t2 SET b=40949 WHERE a=22120; UPDATE t2 SET b=73102 WHERE a=22121; UPDATE t2 SET b=89919 WHERE a=22122; UPDATE t2 SET b=94053 WHERE a=22123; UPDATE t2 SET b=2776 WHERE a=22124; UPDATE t2 SET b=89078 WHERE a=22125; UPDATE t2 SET b=99094 WHERE a=22126; UPDATE t2 SET b=29433 WHERE a=22127; UPDATE t2 SET b=84278 WHERE a=22128; UPDATE t2 SET b=59138 WHERE a=22129; UPDATE t2 SET b=12708 WHERE a=22130; UPDATE t2 SET b=30686 WHERE a=22131; UPDATE t2 SET b=61533 WHERE a=22132; UPDATE t2 SET b=3715 WHERE a=22133; UPDATE t2 SET b=83801 WHERE a=22134; UPDATE t2 SET b=25244 WHERE a=22135; UPDATE t2 SET b=10005 WHERE a=22136; UPDATE t2 SET b=26263 WHERE a=22137; UPDATE t2 SET b=38399 WHERE a=22138; UPDATE t2 SET b=49446 WHERE a=22139; UPDATE t2 SET b=1817 WHERE a=22140; UPDATE t2 SET b=89539 WHERE a=22141; UPDATE t2 SET b=32930 WHERE a=22142; UPDATE t2 SET b=17016 WHERE a=22143; UPDATE t2 SET b=15536 WHERE a=22144; UPDATE t2 SET b=71214 WHERE a=22145; UPDATE t2 SET b=76623 WHERE a=22146; UPDATE t2 SET b=86980 WHERE a=22147; UPDATE t2 SET b=78307 WHERE a=22148; UPDATE t2 SET b=79979 WHERE a=22149; UPDATE t2 SET b=18461 WHERE a=22150; UPDATE t2 SET b=28308 WHERE a=22151; UPDATE t2 SET b=31222 WHERE a=22152; UPDATE t2 SET b=81395 WHERE a=22153; UPDATE t2 SET b=91618 WHERE a=22154; UPDATE t2 SET b=56773 WHERE a=22155; UPDATE t2 SET b=95838 WHERE a=22156; UPDATE t2 SET b=35604 WHERE a=22157; UPDATE t2 SET b=14620 WHERE a=22158; UPDATE t2 SET b=23884 WHERE a=22159; UPDATE t2 SET b=12943 WHERE a=22160; UPDATE t2 SET b=39696 WHERE a=22161; UPDATE t2 SET b=52338 WHERE a=22162; UPDATE t2 SET b=68597 WHERE a=22163; UPDATE t2 SET b=78880 WHERE a=22164; UPDATE t2 SET b=41171 WHERE a=22165; UPDATE t2 SET b=11513 WHERE a=22166; UPDATE t2 SET b=79353 WHERE a=22167; UPDATE t2 SET b=29319 WHERE a=22168; UPDATE t2 SET b=78572 WHERE a=22169; UPDATE t2 SET b=21425 WHERE a=22170; UPDATE t2 SET b=35055 WHERE a=22171; UPDATE t2 SET b=48004 WHERE a=22172; UPDATE t2 SET b=26963 WHERE a=22173; UPDATE t2 SET b=2813 WHERE a=22174; UPDATE t2 SET b=3371 WHERE a=22175; UPDATE t2 SET b=62791 WHERE a=22176; UPDATE t2 SET b=17874 WHERE a=22177; UPDATE t2 SET b=404 WHERE a=22178; UPDATE t2 SET b=22817 WHERE a=22179; UPDATE t2 SET b=432 WHERE a=22180; UPDATE t2 SET b=13442 WHERE a=22181; UPDATE t2 SET b=16036 WHERE a=22182; UPDATE t2 SET b=77605 WHERE a=22183; UPDATE t2 SET b=66169 WHERE a=22184; UPDATE t2 SET b=98271 WHERE a=22185; UPDATE t2 SET b=24695 WHERE a=22186; UPDATE t2 SET b=3750 WHERE a=22187; UPDATE t2 SET b=4012 WHERE a=22188; UPDATE t2 SET b=40815 WHERE a=22189; UPDATE t2 SET b=26905 WHERE a=22190; UPDATE t2 SET b=18170 WHERE a=22191; UPDATE t2 SET b=82707 WHERE a=22192; UPDATE t2 SET b=40525 WHERE a=22193; UPDATE t2 SET b=43557 WHERE a=22194; UPDATE t2 SET b=64984 WHERE a=22195; UPDATE t2 SET b=74406 WHERE a=22196; UPDATE t2 SET b=95040 WHERE a=22197; UPDATE t2 SET b=63646 WHERE a=22198; UPDATE t2 SET b=68140 WHERE a=22199; UPDATE t2 SET b=73887 WHERE a=22200; UPDATE t2 SET b=73738 WHERE a=22201; UPDATE t2 SET b=72516 WHERE a=22202; UPDATE t2 SET b=40982 WHERE a=22203; UPDATE t2 SET b=68871 WHERE a=22204; UPDATE t2 SET b=88273 WHERE a=22205; UPDATE t2 SET b=23599 WHERE a=22206; UPDATE t2 SET b=90056 WHERE a=22207; UPDATE t2 SET b=31839 WHERE a=22208; UPDATE t2 SET b=2296 WHERE a=22209; UPDATE t2 SET b=73374 WHERE a=22210; UPDATE t2 SET b=91405 WHERE a=22211; UPDATE t2 SET b=65105 WHERE a=22212; UPDATE t2 SET b=23010 WHERE a=22213; UPDATE t2 SET b=26206 WHERE a=22214; UPDATE t2 SET b=947 WHERE a=22215; UPDATE t2 SET b=83788 WHERE a=22216; UPDATE t2 SET b=84708 WHERE a=22217; UPDATE t2 SET b=37685 WHERE a=22218; UPDATE t2 SET b=88430 WHERE a=22219; UPDATE t2 SET b=57863 WHERE a=22220; UPDATE t2 SET b=45616 WHERE a=22221; UPDATE t2 SET b=29006 WHERE a=22222; UPDATE t2 SET b=49624 WHERE a=22223; UPDATE t2 SET b=8949 WHERE a=22224; UPDATE t2 SET b=4883 WHERE a=22225; UPDATE t2 SET b=57743 WHERE a=22226; UPDATE t2 SET b=13327 WHERE a=22227; UPDATE t2 SET b=80708 WHERE a=22228; UPDATE t2 SET b=26189 WHERE a=22229; UPDATE t2 SET b=60110 WHERE a=22230; UPDATE t2 SET b=57576 WHERE a=22231; UPDATE t2 SET b=40709 WHERE a=22232; UPDATE t2 SET b=74630 WHERE a=22233; UPDATE t2 SET b=69028 WHERE a=22234; UPDATE t2 SET b=22218 WHERE a=22235; UPDATE t2 SET b=72550 WHERE a=22236; UPDATE t2 SET b=75517 WHERE a=22237; UPDATE t2 SET b=22690 WHERE a=22238; UPDATE t2 SET b=68072 WHERE a=22239; UPDATE t2 SET b=18227 WHERE a=22240; UPDATE t2 SET b=5476 WHERE a=22241; UPDATE t2 SET b=6103 WHERE a=22242; UPDATE t2 SET b=45587 WHERE a=22243; UPDATE t2 SET b=55313 WHERE a=22244; UPDATE t2 SET b=91075 WHERE a=22245; UPDATE t2 SET b=89287 WHERE a=22246; UPDATE t2 SET b=91566 WHERE a=22247; UPDATE t2 SET b=8993 WHERE a=22248; UPDATE t2 SET b=15132 WHERE a=22249; UPDATE t2 SET b=19705 WHERE a=22250; UPDATE t2 SET b=80590 WHERE a=22251; UPDATE t2 SET b=53835 WHERE a=22252; UPDATE t2 SET b=890 WHERE a=22253; UPDATE t2 SET b=25739 WHERE a=22254; UPDATE t2 SET b=41254 WHERE a=22255; UPDATE t2 SET b=58242 WHERE a=22256; UPDATE t2 SET b=63383 WHERE a=22257; UPDATE t2 SET b=57940 WHERE a=22258; UPDATE t2 SET b=66012 WHERE a=22259; UPDATE t2 SET b=62382 WHERE a=22260; UPDATE t2 SET b=97762 WHERE a=22261; UPDATE t2 SET b=97613 WHERE a=22262; UPDATE t2 SET b=35854 WHERE a=22263; UPDATE t2 SET b=78 WHERE a=22264; UPDATE t2 SET b=40303 WHERE a=22265; UPDATE t2 SET b=40133 WHERE a=22266; UPDATE t2 SET b=87372 WHERE a=22267; UPDATE t2 SET b=23946 WHERE a=22268; UPDATE t2 SET b=96347 WHERE a=22269; UPDATE t2 SET b=51441 WHERE a=22270; UPDATE t2 SET b=67541 WHERE a=22271; UPDATE t2 SET b=20560 WHERE a=22272; UPDATE t2 SET b=51878 WHERE a=22273; UPDATE t2 SET b=98407 WHERE a=22274; UPDATE t2 SET b=45322 WHERE a=22275; UPDATE t2 SET b=23846 WHERE a=22276; UPDATE t2 SET b=43473 WHERE a=22277; UPDATE t2 SET b=23467 WHERE a=22278; UPDATE t2 SET b=97743 WHERE a=22279; UPDATE t2 SET b=4252 WHERE a=22280; UPDATE t2 SET b=73857 WHERE a=22281; UPDATE t2 SET b=79523 WHERE a=22282; UPDATE t2 SET b=21162 WHERE a=22283; UPDATE t2 SET b=28502 WHERE a=22284; UPDATE t2 SET b=53819 WHERE a=22285; UPDATE t2 SET b=51740 WHERE a=22286; UPDATE t2 SET b=36367 WHERE a=22287; UPDATE t2 SET b=82559 WHERE a=22288; UPDATE t2 SET b=43133 WHERE a=22289; UPDATE t2 SET b=63827 WHERE a=22290; UPDATE t2 SET b=76396 WHERE a=22291; UPDATE t2 SET b=46974 WHERE a=22292; UPDATE t2 SET b=42639 WHERE a=22293; UPDATE t2 SET b=84224 WHERE a=22294; UPDATE t2 SET b=64051 WHERE a=22295; UPDATE t2 SET b=47253 WHERE a=22296; UPDATE t2 SET b=27624 WHERE a=22297; UPDATE t2 SET b=60691 WHERE a=22298; UPDATE t2 SET b=96615 WHERE a=22299; UPDATE t2 SET b=42221 WHERE a=22300; UPDATE t2 SET b=20637 WHERE a=22301; UPDATE t2 SET b=79442 WHERE a=22302; UPDATE t2 SET b=50043 WHERE a=22303; UPDATE t2 SET b=77459 WHERE a=22304; UPDATE t2 SET b=94993 WHERE a=22305; UPDATE t2 SET b=84819 WHERE a=22306; UPDATE t2 SET b=39458 WHERE a=22307; UPDATE t2 SET b=8572 WHERE a=22308; UPDATE t2 SET b=22808 WHERE a=22309; UPDATE t2 SET b=52098 WHERE a=22310; UPDATE t2 SET b=44405 WHERE a=22311; UPDATE t2 SET b=35971 WHERE a=22312; UPDATE t2 SET b=34299 WHERE a=22313; UPDATE t2 SET b=83797 WHERE a=22314; UPDATE t2 SET b=60471 WHERE a=22315; UPDATE t2 SET b=87436 WHERE a=22316; UPDATE t2 SET b=18963 WHERE a=22317; UPDATE t2 SET b=10247 WHERE a=22318; UPDATE t2 SET b=70695 WHERE a=22319; UPDATE t2 SET b=1487 WHERE a=22320; UPDATE t2 SET b=22831 WHERE a=22321; UPDATE t2 SET b=43216 WHERE a=22322; UPDATE t2 SET b=16989 WHERE a=22323; UPDATE t2 SET b=67035 WHERE a=22324; UPDATE t2 SET b=18476 WHERE a=22325; UPDATE t2 SET b=52030 WHERE a=22326; UPDATE t2 SET b=98523 WHERE a=22327; UPDATE t2 SET b=32573 WHERE a=22328; UPDATE t2 SET b=70913 WHERE a=22329; UPDATE t2 SET b=53324 WHERE a=22330; UPDATE t2 SET b=27307 WHERE a=22331; UPDATE t2 SET b=30017 WHERE a=22332; UPDATE t2 SET b=322 WHERE a=22333; UPDATE t2 SET b=7893 WHERE a=22334; UPDATE t2 SET b=18920 WHERE a=22335; UPDATE t2 SET b=55958 WHERE a=22336; UPDATE t2 SET b=87206 WHERE a=22337; UPDATE t2 SET b=68733 WHERE a=22338; UPDATE t2 SET b=88432 WHERE a=22339; UPDATE t2 SET b=18444 WHERE a=22340; UPDATE t2 SET b=79196 WHERE a=22341; UPDATE t2 SET b=96455 WHERE a=22342; UPDATE t2 SET b=17915 WHERE a=22343; UPDATE t2 SET b=76899 WHERE a=22344; UPDATE t2 SET b=37737 WHERE a=22345; UPDATE t2 SET b=24031 WHERE a=22346; UPDATE t2 SET b=44199 WHERE a=22347; UPDATE t2 SET b=69021 WHERE a=22348; UPDATE t2 SET b=16985 WHERE a=22349; UPDATE t2 SET b=36429 WHERE a=22350; UPDATE t2 SET b=40726 WHERE a=22351; UPDATE t2 SET b=52489 WHERE a=22352; UPDATE t2 SET b=56906 WHERE a=22353; UPDATE t2 SET b=57398 WHERE a=22354; UPDATE t2 SET b=72982 WHERE a=22355; UPDATE t2 SET b=77456 WHERE a=22356; UPDATE t2 SET b=33314 WHERE a=22357; UPDATE t2 SET b=47931 WHERE a=22358; UPDATE t2 SET b=23734 WHERE a=22359; UPDATE t2 SET b=64641 WHERE a=22360; UPDATE t2 SET b=82397 WHERE a=22361; UPDATE t2 SET b=30406 WHERE a=22362; UPDATE t2 SET b=48684 WHERE a=22363; UPDATE t2 SET b=13910 WHERE a=22364; UPDATE t2 SET b=17086 WHERE a=22365; UPDATE t2 SET b=99493 WHERE a=22366; UPDATE t2 SET b=8085 WHERE a=22367; UPDATE t2 SET b=25839 WHERE a=22368; UPDATE t2 SET b=97241 WHERE a=22369; UPDATE t2 SET b=60794 WHERE a=22370; UPDATE t2 SET b=90761 WHERE a=22371; UPDATE t2 SET b=14151 WHERE a=22372; UPDATE t2 SET b=19675 WHERE a=22373; UPDATE t2 SET b=73581 WHERE a=22374; UPDATE t2 SET b=96217 WHERE a=22375; UPDATE t2 SET b=21529 WHERE a=22376; UPDATE t2 SET b=68993 WHERE a=22377; UPDATE t2 SET b=96085 WHERE a=22378; UPDATE t2 SET b=69557 WHERE a=22379; UPDATE t2 SET b=12670 WHERE a=22380; UPDATE t2 SET b=99791 WHERE a=22381; UPDATE t2 SET b=35300 WHERE a=22382; UPDATE t2 SET b=45460 WHERE a=22383; UPDATE t2 SET b=43124 WHERE a=22384; UPDATE t2 SET b=99643 WHERE a=22385; UPDATE t2 SET b=75177 WHERE a=22386; UPDATE t2 SET b=37625 WHERE a=22387; UPDATE t2 SET b=44967 WHERE a=22388; UPDATE t2 SET b=40640 WHERE a=22389; UPDATE t2 SET b=9977 WHERE a=22390; UPDATE t2 SET b=68231 WHERE a=22391; UPDATE t2 SET b=48567 WHERE a=22392; UPDATE t2 SET b=24841 WHERE a=22393; UPDATE t2 SET b=48463 WHERE a=22394; UPDATE t2 SET b=25688 WHERE a=22395; UPDATE t2 SET b=76138 WHERE a=22396; UPDATE t2 SET b=42541 WHERE a=22397; UPDATE t2 SET b=82495 WHERE a=22398; UPDATE t2 SET b=57048 WHERE a=22399; UPDATE t2 SET b=64863 WHERE a=22400; UPDATE t2 SET b=10615 WHERE a=22401; UPDATE t2 SET b=38484 WHERE a=22402; UPDATE t2 SET b=42837 WHERE a=22403; UPDATE t2 SET b=16229 WHERE a=22404; UPDATE t2 SET b=32715 WHERE a=22405; UPDATE t2 SET b=96368 WHERE a=22406; UPDATE t2 SET b=36034 WHERE a=22407; UPDATE t2 SET b=97168 WHERE a=22408; UPDATE t2 SET b=43087 WHERE a=22409; UPDATE t2 SET b=89965 WHERE a=22410; UPDATE t2 SET b=90362 WHERE a=22411; UPDATE t2 SET b=7149 WHERE a=22412; UPDATE t2 SET b=76641 WHERE a=22413; UPDATE t2 SET b=49602 WHERE a=22414; UPDATE t2 SET b=21525 WHERE a=22415; UPDATE t2 SET b=35548 WHERE a=22416; UPDATE t2 SET b=79684 WHERE a=22417; UPDATE t2 SET b=12924 WHERE a=22418; UPDATE t2 SET b=44394 WHERE a=22419; UPDATE t2 SET b=23536 WHERE a=22420; UPDATE t2 SET b=63764 WHERE a=22421; UPDATE t2 SET b=79489 WHERE a=22422; UPDATE t2 SET b=51122 WHERE a=22423; UPDATE t2 SET b=24755 WHERE a=22424; UPDATE t2 SET b=42073 WHERE a=22425; UPDATE t2 SET b=29256 WHERE a=22426; UPDATE t2 SET b=64014 WHERE a=22427; UPDATE t2 SET b=13554 WHERE a=22428; UPDATE t2 SET b=44625 WHERE a=22429; UPDATE t2 SET b=46998 WHERE a=22430; UPDATE t2 SET b=55124 WHERE a=22431; UPDATE t2 SET b=20003 WHERE a=22432; UPDATE t2 SET b=68585 WHERE a=22433; UPDATE t2 SET b=32535 WHERE a=22434; UPDATE t2 SET b=48639 WHERE a=22435; UPDATE t2 SET b=37954 WHERE a=22436; UPDATE t2 SET b=58377 WHERE a=22437; UPDATE t2 SET b=26762 WHERE a=22438; UPDATE t2 SET b=80075 WHERE a=22439; UPDATE t2 SET b=30986 WHERE a=22440; UPDATE t2 SET b=43646 WHERE a=22441; UPDATE t2 SET b=51362 WHERE a=22442; UPDATE t2 SET b=71348 WHERE a=22443; UPDATE t2 SET b=59967 WHERE a=22444; UPDATE t2 SET b=56715 WHERE a=22445; UPDATE t2 SET b=70006 WHERE a=22446; UPDATE t2 SET b=6483 WHERE a=22447; UPDATE t2 SET b=61233 WHERE a=22448; UPDATE t2 SET b=69956 WHERE a=22449; UPDATE t2 SET b=21607 WHERE a=22450; UPDATE t2 SET b=49714 WHERE a=22451; UPDATE t2 SET b=53859 WHERE a=22452; UPDATE t2 SET b=59640 WHERE a=22453; UPDATE t2 SET b=38985 WHERE a=22454; UPDATE t2 SET b=32520 WHERE a=22455; UPDATE t2 SET b=65680 WHERE a=22456; UPDATE t2 SET b=82882 WHERE a=22457; UPDATE t2 SET b=93812 WHERE a=22458; UPDATE t2 SET b=7116 WHERE a=22459; UPDATE t2 SET b=4278 WHERE a=22460; UPDATE t2 SET b=71041 WHERE a=22461; UPDATE t2 SET b=70080 WHERE a=22462; UPDATE t2 SET b=49998 WHERE a=22463; UPDATE t2 SET b=75376 WHERE a=22464; UPDATE t2 SET b=6854 WHERE a=22465; UPDATE t2 SET b=32021 WHERE a=22466; UPDATE t2 SET b=5710 WHERE a=22467; UPDATE t2 SET b=35291 WHERE a=22468; UPDATE t2 SET b=37955 WHERE a=22469; UPDATE t2 SET b=86094 WHERE a=22470; UPDATE t2 SET b=67031 WHERE a=22471; UPDATE t2 SET b=23034 WHERE a=22472; UPDATE t2 SET b=27387 WHERE a=22473; UPDATE t2 SET b=70185 WHERE a=22474; UPDATE t2 SET b=45392 WHERE a=22475; UPDATE t2 SET b=60363 WHERE a=22476; UPDATE t2 SET b=50548 WHERE a=22477; UPDATE t2 SET b=80366 WHERE a=22478; UPDATE t2 SET b=28358 WHERE a=22479; UPDATE t2 SET b=69535 WHERE a=22480; UPDATE t2 SET b=77374 WHERE a=22481; UPDATE t2 SET b=55179 WHERE a=22482; UPDATE t2 SET b=44734 WHERE a=22483; UPDATE t2 SET b=60215 WHERE a=22484; UPDATE t2 SET b=330 WHERE a=22485; UPDATE t2 SET b=80658 WHERE a=22486; UPDATE t2 SET b=42952 WHERE a=22487; UPDATE t2 SET b=79183 WHERE a=22488; UPDATE t2 SET b=57987 WHERE a=22489; UPDATE t2 SET b=46478 WHERE a=22490; UPDATE t2 SET b=68798 WHERE a=22491; UPDATE t2 SET b=51994 WHERE a=22492; UPDATE t2 SET b=82795 WHERE a=22493; UPDATE t2 SET b=35451 WHERE a=22494; UPDATE t2 SET b=45261 WHERE a=22495; UPDATE t2 SET b=63685 WHERE a=22496; UPDATE t2 SET b=84319 WHERE a=22497; UPDATE t2 SET b=47237 WHERE a=22498; UPDATE t2 SET b=49740 WHERE a=22499; UPDATE t2 SET b=79889 WHERE a=22500; UPDATE t2 SET b=50275 WHERE a=22501; UPDATE t2 SET b=4992 WHERE a=22502; UPDATE t2 SET b=8042 WHERE a=22503; UPDATE t2 SET b=56031 WHERE a=22504; UPDATE t2 SET b=76728 WHERE a=22505; UPDATE t2 SET b=71780 WHERE a=22506; UPDATE t2 SET b=16928 WHERE a=22507; UPDATE t2 SET b=79241 WHERE a=22508; UPDATE t2 SET b=55058 WHERE a=22509; UPDATE t2 SET b=50585 WHERE a=22510; UPDATE t2 SET b=71997 WHERE a=22511; UPDATE t2 SET b=53987 WHERE a=22512; UPDATE t2 SET b=59217 WHERE a=22513; UPDATE t2 SET b=34021 WHERE a=22514; UPDATE t2 SET b=49661 WHERE a=22515; UPDATE t2 SET b=46136 WHERE a=22516; UPDATE t2 SET b=23943 WHERE a=22517; UPDATE t2 SET b=30865 WHERE a=22518; UPDATE t2 SET b=74365 WHERE a=22519; UPDATE t2 SET b=11474 WHERE a=22520; UPDATE t2 SET b=40897 WHERE a=22521; UPDATE t2 SET b=66485 WHERE a=22522; UPDATE t2 SET b=86343 WHERE a=22523; UPDATE t2 SET b=81058 WHERE a=22524; UPDATE t2 SET b=8882 WHERE a=22525; UPDATE t2 SET b=4188 WHERE a=22526; UPDATE t2 SET b=55831 WHERE a=22527; UPDATE t2 SET b=83880 WHERE a=22528; UPDATE t2 SET b=73496 WHERE a=22529; UPDATE t2 SET b=86005 WHERE a=22530; UPDATE t2 SET b=85334 WHERE a=22531; UPDATE t2 SET b=60230 WHERE a=22532; UPDATE t2 SET b=27791 WHERE a=22533; UPDATE t2 SET b=46535 WHERE a=22534; UPDATE t2 SET b=43907 WHERE a=22535; UPDATE t2 SET b=98494 WHERE a=22536; UPDATE t2 SET b=14638 WHERE a=22537; UPDATE t2 SET b=931 WHERE a=22538; UPDATE t2 SET b=429 WHERE a=22539; UPDATE t2 SET b=53663 WHERE a=22540; UPDATE t2 SET b=18770 WHERE a=22541; UPDATE t2 SET b=98981 WHERE a=22542; UPDATE t2 SET b=67904 WHERE a=22543; UPDATE t2 SET b=27205 WHERE a=22544; UPDATE t2 SET b=70998 WHERE a=22545; UPDATE t2 SET b=38822 WHERE a=22546; UPDATE t2 SET b=76242 WHERE a=22547; UPDATE t2 SET b=73999 WHERE a=22548; UPDATE t2 SET b=16156 WHERE a=22549; UPDATE t2 SET b=78924 WHERE a=22550; UPDATE t2 SET b=45127 WHERE a=22551; UPDATE t2 SET b=75351 WHERE a=22552; UPDATE t2 SET b=60126 WHERE a=22553; UPDATE t2 SET b=69810 WHERE a=22554; UPDATE t2 SET b=40455 WHERE a=22555; UPDATE t2 SET b=85873 WHERE a=22556; UPDATE t2 SET b=78193 WHERE a=22557; UPDATE t2 SET b=74709 WHERE a=22558; UPDATE t2 SET b=65257 WHERE a=22559; UPDATE t2 SET b=79619 WHERE a=22560; UPDATE t2 SET b=60256 WHERE a=22561; UPDATE t2 SET b=82812 WHERE a=22562; UPDATE t2 SET b=48278 WHERE a=22563; UPDATE t2 SET b=25742 WHERE a=22564; UPDATE t2 SET b=14500 WHERE a=22565; UPDATE t2 SET b=50866 WHERE a=22566; UPDATE t2 SET b=20094 WHERE a=22567; UPDATE t2 SET b=67898 WHERE a=22568; UPDATE t2 SET b=33978 WHERE a=22569; UPDATE t2 SET b=6267 WHERE a=22570; UPDATE t2 SET b=53017 WHERE a=22571; UPDATE t2 SET b=58567 WHERE a=22572; UPDATE t2 SET b=55119 WHERE a=22573; UPDATE t2 SET b=72142 WHERE a=22574; UPDATE t2 SET b=47076 WHERE a=22575; UPDATE t2 SET b=49187 WHERE a=22576; UPDATE t2 SET b=66596 WHERE a=22577; UPDATE t2 SET b=55971 WHERE a=22578; UPDATE t2 SET b=26041 WHERE a=22579; UPDATE t2 SET b=87738 WHERE a=22580; UPDATE t2 SET b=17808 WHERE a=22581; UPDATE t2 SET b=77721 WHERE a=22582; UPDATE t2 SET b=73277 WHERE a=22583; UPDATE t2 SET b=93101 WHERE a=22584; UPDATE t2 SET b=34890 WHERE a=22585; UPDATE t2 SET b=18747 WHERE a=22586; UPDATE t2 SET b=16284 WHERE a=22587; UPDATE t2 SET b=407 WHERE a=22588; UPDATE t2 SET b=38730 WHERE a=22589; UPDATE t2 SET b=36892 WHERE a=22590; UPDATE t2 SET b=54680 WHERE a=22591; UPDATE t2 SET b=10858 WHERE a=22592; UPDATE t2 SET b=41550 WHERE a=22593; UPDATE t2 SET b=96623 WHERE a=22594; UPDATE t2 SET b=33417 WHERE a=22595; UPDATE t2 SET b=23570 WHERE a=22596; UPDATE t2 SET b=24176 WHERE a=22597; UPDATE t2 SET b=72874 WHERE a=22598; UPDATE t2 SET b=10768 WHERE a=22599; UPDATE t2 SET b=84840 WHERE a=22600; UPDATE t2 SET b=49563 WHERE a=22601; UPDATE t2 SET b=83889 WHERE a=22602; UPDATE t2 SET b=7651 WHERE a=22603; UPDATE t2 SET b=58590 WHERE a=22604; UPDATE t2 SET b=58690 WHERE a=22605; UPDATE t2 SET b=98250 WHERE a=22606; UPDATE t2 SET b=69945 WHERE a=22607; UPDATE t2 SET b=22935 WHERE a=22608; UPDATE t2 SET b=81066 WHERE a=22609; UPDATE t2 SET b=84288 WHERE a=22610; UPDATE t2 SET b=36952 WHERE a=22611; UPDATE t2 SET b=62515 WHERE a=22612; UPDATE t2 SET b=67092 WHERE a=22613; UPDATE t2 SET b=64489 WHERE a=22614; UPDATE t2 SET b=46452 WHERE a=22615; UPDATE t2 SET b=44477 WHERE a=22616; UPDATE t2 SET b=89838 WHERE a=22617; UPDATE t2 SET b=44292 WHERE a=22618; UPDATE t2 SET b=31689 WHERE a=22619; UPDATE t2 SET b=57132 WHERE a=22620; UPDATE t2 SET b=71745 WHERE a=22621; UPDATE t2 SET b=35600 WHERE a=22622; UPDATE t2 SET b=76315 WHERE a=22623; UPDATE t2 SET b=96972 WHERE a=22624; UPDATE t2 SET b=60971 WHERE a=22625; UPDATE t2 SET b=89022 WHERE a=22626; UPDATE t2 SET b=7292 WHERE a=22627; UPDATE t2 SET b=20556 WHERE a=22628; UPDATE t2 SET b=73103 WHERE a=22629; UPDATE t2 SET b=86783 WHERE a=22630; UPDATE t2 SET b=49483 WHERE a=22631; UPDATE t2 SET b=23764 WHERE a=22632; UPDATE t2 SET b=82693 WHERE a=22633; UPDATE t2 SET b=84840 WHERE a=22634; UPDATE t2 SET b=97464 WHERE a=22635; UPDATE t2 SET b=24794 WHERE a=22636; UPDATE t2 SET b=52313 WHERE a=22637; UPDATE t2 SET b=57801 WHERE a=22638; UPDATE t2 SET b=67521 WHERE a=22639; UPDATE t2 SET b=93642 WHERE a=22640; UPDATE t2 SET b=72872 WHERE a=22641; UPDATE t2 SET b=19652 WHERE a=22642; UPDATE t2 SET b=83781 WHERE a=22643; UPDATE t2 SET b=36124 WHERE a=22644; UPDATE t2 SET b=380 WHERE a=22645; UPDATE t2 SET b=82892 WHERE a=22646; UPDATE t2 SET b=59800 WHERE a=22647; UPDATE t2 SET b=8380 WHERE a=22648; UPDATE t2 SET b=18728 WHERE a=22649; UPDATE t2 SET b=54502 WHERE a=22650; UPDATE t2 SET b=75341 WHERE a=22651; UPDATE t2 SET b=45447 WHERE a=22652; UPDATE t2 SET b=12500 WHERE a=22653; UPDATE t2 SET b=7869 WHERE a=22654; UPDATE t2 SET b=21821 WHERE a=22655; UPDATE t2 SET b=99981 WHERE a=22656; UPDATE t2 SET b=33223 WHERE a=22657; UPDATE t2 SET b=21448 WHERE a=22658; UPDATE t2 SET b=20718 WHERE a=22659; UPDATE t2 SET b=87386 WHERE a=22660; UPDATE t2 SET b=35507 WHERE a=22661; UPDATE t2 SET b=30158 WHERE a=22662; UPDATE t2 SET b=95829 WHERE a=22663; UPDATE t2 SET b=72117 WHERE a=22664; UPDATE t2 SET b=19625 WHERE a=22665; UPDATE t2 SET b=80243 WHERE a=22666; UPDATE t2 SET b=81650 WHERE a=22667; UPDATE t2 SET b=2911 WHERE a=22668; UPDATE t2 SET b=38251 WHERE a=22669; UPDATE t2 SET b=63238 WHERE a=22670; UPDATE t2 SET b=2703 WHERE a=22671; UPDATE t2 SET b=78416 WHERE a=22672; UPDATE t2 SET b=57246 WHERE a=22673; UPDATE t2 SET b=77709 WHERE a=22674; UPDATE t2 SET b=59112 WHERE a=22675; UPDATE t2 SET b=98689 WHERE a=22676; UPDATE t2 SET b=60809 WHERE a=22677; UPDATE t2 SET b=52210 WHERE a=22678; UPDATE t2 SET b=94524 WHERE a=22679; UPDATE t2 SET b=1899 WHERE a=22680; UPDATE t2 SET b=47463 WHERE a=22681; UPDATE t2 SET b=22860 WHERE a=22682; UPDATE t2 SET b=85497 WHERE a=22683; UPDATE t2 SET b=91725 WHERE a=22684; UPDATE t2 SET b=99720 WHERE a=22685; UPDATE t2 SET b=33290 WHERE a=22686; UPDATE t2 SET b=43841 WHERE a=22687; UPDATE t2 SET b=76443 WHERE a=22688; UPDATE t2 SET b=12756 WHERE a=22689; UPDATE t2 SET b=27377 WHERE a=22690; UPDATE t2 SET b=89002 WHERE a=22691; UPDATE t2 SET b=32867 WHERE a=22692; UPDATE t2 SET b=20215 WHERE a=22693; UPDATE t2 SET b=59653 WHERE a=22694; UPDATE t2 SET b=78545 WHERE a=22695; UPDATE t2 SET b=28063 WHERE a=22696; UPDATE t2 SET b=70674 WHERE a=22697; UPDATE t2 SET b=40715 WHERE a=22698; UPDATE t2 SET b=99822 WHERE a=22699; UPDATE t2 SET b=16656 WHERE a=22700; UPDATE t2 SET b=39884 WHERE a=22701; UPDATE t2 SET b=18974 WHERE a=22702; UPDATE t2 SET b=87252 WHERE a=22703; UPDATE t2 SET b=98688 WHERE a=22704; UPDATE t2 SET b=42563 WHERE a=22705; UPDATE t2 SET b=61368 WHERE a=22706; UPDATE t2 SET b=56978 WHERE a=22707; UPDATE t2 SET b=14111 WHERE a=22708; UPDATE t2 SET b=51295 WHERE a=22709; UPDATE t2 SET b=45884 WHERE a=22710; UPDATE t2 SET b=65865 WHERE a=22711; UPDATE t2 SET b=57622 WHERE a=22712; UPDATE t2 SET b=89962 WHERE a=22713; UPDATE t2 SET b=71186 WHERE a=22714; UPDATE t2 SET b=31378 WHERE a=22715; UPDATE t2 SET b=63879 WHERE a=22716; UPDATE t2 SET b=54809 WHERE a=22717; UPDATE t2 SET b=20782 WHERE a=22718; UPDATE t2 SET b=53349 WHERE a=22719; UPDATE t2 SET b=8074 WHERE a=22720; UPDATE t2 SET b=90397 WHERE a=22721; UPDATE t2 SET b=19386 WHERE a=22722; UPDATE t2 SET b=68739 WHERE a=22723; UPDATE t2 SET b=96054 WHERE a=22724; UPDATE t2 SET b=70249 WHERE a=22725; UPDATE t2 SET b=46026 WHERE a=22726; UPDATE t2 SET b=44059 WHERE a=22727; UPDATE t2 SET b=66804 WHERE a=22728; UPDATE t2 SET b=74527 WHERE a=22729; UPDATE t2 SET b=87066 WHERE a=22730; UPDATE t2 SET b=33932 WHERE a=22731; UPDATE t2 SET b=19931 WHERE a=22732; UPDATE t2 SET b=17334 WHERE a=22733; UPDATE t2 SET b=16499 WHERE a=22734; UPDATE t2 SET b=75991 WHERE a=22735; UPDATE t2 SET b=88766 WHERE a=22736; UPDATE t2 SET b=66248 WHERE a=22737; UPDATE t2 SET b=82856 WHERE a=22738; UPDATE t2 SET b=8685 WHERE a=22739; UPDATE t2 SET b=94725 WHERE a=22740; UPDATE t2 SET b=62199 WHERE a=22741; UPDATE t2 SET b=76949 WHERE a=22742; UPDATE t2 SET b=9180 WHERE a=22743; UPDATE t2 SET b=3574 WHERE a=22744; UPDATE t2 SET b=16906 WHERE a=22745; UPDATE t2 SET b=79992 WHERE a=22746; UPDATE t2 SET b=89409 WHERE a=22747; UPDATE t2 SET b=97632 WHERE a=22748; UPDATE t2 SET b=59043 WHERE a=22749; UPDATE t2 SET b=65054 WHERE a=22750; UPDATE t2 SET b=18515 WHERE a=22751; UPDATE t2 SET b=79517 WHERE a=22752; UPDATE t2 SET b=65130 WHERE a=22753; UPDATE t2 SET b=49627 WHERE a=22754; UPDATE t2 SET b=15219 WHERE a=22755; UPDATE t2 SET b=73662 WHERE a=22756; UPDATE t2 SET b=26444 WHERE a=22757; UPDATE t2 SET b=3120 WHERE a=22758; UPDATE t2 SET b=74245 WHERE a=22759; UPDATE t2 SET b=50796 WHERE a=22760; UPDATE t2 SET b=55518 WHERE a=22761; UPDATE t2 SET b=2834 WHERE a=22762; UPDATE t2 SET b=50400 WHERE a=22763; UPDATE t2 SET b=28611 WHERE a=22764; UPDATE t2 SET b=77830 WHERE a=22765; UPDATE t2 SET b=68064 WHERE a=22766; UPDATE t2 SET b=74887 WHERE a=22767; UPDATE t2 SET b=43627 WHERE a=22768; UPDATE t2 SET b=4431 WHERE a=22769; UPDATE t2 SET b=85232 WHERE a=22770; UPDATE t2 SET b=56035 WHERE a=22771; UPDATE t2 SET b=85361 WHERE a=22772; UPDATE t2 SET b=33207 WHERE a=22773; UPDATE t2 SET b=15042 WHERE a=22774; UPDATE t2 SET b=31194 WHERE a=22775; UPDATE t2 SET b=29180 WHERE a=22776; UPDATE t2 SET b=79961 WHERE a=22777; UPDATE t2 SET b=91381 WHERE a=22778; UPDATE t2 SET b=97551 WHERE a=22779; UPDATE t2 SET b=9167 WHERE a=22780; UPDATE t2 SET b=61888 WHERE a=22781; UPDATE t2 SET b=65176 WHERE a=22782; UPDATE t2 SET b=15960 WHERE a=22783; UPDATE t2 SET b=39104 WHERE a=22784; UPDATE t2 SET b=30194 WHERE a=22785; UPDATE t2 SET b=46275 WHERE a=22786; UPDATE t2 SET b=25522 WHERE a=22787; UPDATE t2 SET b=70054 WHERE a=22788; UPDATE t2 SET b=42789 WHERE a=22789; UPDATE t2 SET b=83276 WHERE a=22790; UPDATE t2 SET b=73288 WHERE a=22791; UPDATE t2 SET b=35884 WHERE a=22792; UPDATE t2 SET b=45455 WHERE a=22793; UPDATE t2 SET b=74221 WHERE a=22794; UPDATE t2 SET b=66102 WHERE a=22795; UPDATE t2 SET b=38540 WHERE a=22796; UPDATE t2 SET b=93778 WHERE a=22797; UPDATE t2 SET b=56149 WHERE a=22798; UPDATE t2 SET b=7885 WHERE a=22799; UPDATE t2 SET b=41447 WHERE a=22800; UPDATE t2 SET b=29024 WHERE a=22801; UPDATE t2 SET b=25165 WHERE a=22802; UPDATE t2 SET b=79598 WHERE a=22803; UPDATE t2 SET b=45429 WHERE a=22804; UPDATE t2 SET b=73043 WHERE a=22805; UPDATE t2 SET b=70729 WHERE a=22806; UPDATE t2 SET b=77251 WHERE a=22807; UPDATE t2 SET b=22936 WHERE a=22808; UPDATE t2 SET b=14510 WHERE a=22809; UPDATE t2 SET b=68188 WHERE a=22810; UPDATE t2 SET b=85513 WHERE a=22811; UPDATE t2 SET b=85836 WHERE a=22812; UPDATE t2 SET b=29253 WHERE a=22813; UPDATE t2 SET b=98684 WHERE a=22814; UPDATE t2 SET b=70399 WHERE a=22815; UPDATE t2 SET b=9489 WHERE a=22816; UPDATE t2 SET b=23517 WHERE a=22817; UPDATE t2 SET b=36975 WHERE a=22818; UPDATE t2 SET b=78376 WHERE a=22819; UPDATE t2 SET b=32795 WHERE a=22820; UPDATE t2 SET b=87030 WHERE a=22821; UPDATE t2 SET b=4586 WHERE a=22822; UPDATE t2 SET b=90013 WHERE a=22823; UPDATE t2 SET b=29615 WHERE a=22824; UPDATE t2 SET b=25092 WHERE a=22825; UPDATE t2 SET b=48630 WHERE a=22826; UPDATE t2 SET b=75673 WHERE a=22827; UPDATE t2 SET b=45686 WHERE a=22828; UPDATE t2 SET b=62121 WHERE a=22829; UPDATE t2 SET b=65139 WHERE a=22830; UPDATE t2 SET b=76952 WHERE a=22831; UPDATE t2 SET b=27008 WHERE a=22832; UPDATE t2 SET b=63107 WHERE a=22833; UPDATE t2 SET b=10442 WHERE a=22834; UPDATE t2 SET b=44138 WHERE a=22835; UPDATE t2 SET b=53 WHERE a=22836; UPDATE t2 SET b=89464 WHERE a=22837; UPDATE t2 SET b=82867 WHERE a=22838; UPDATE t2 SET b=9241 WHERE a=22839; UPDATE t2 SET b=53577 WHERE a=22840; UPDATE t2 SET b=14207 WHERE a=22841; UPDATE t2 SET b=18619 WHERE a=22842; UPDATE t2 SET b=57101 WHERE a=22843; UPDATE t2 SET b=84000 WHERE a=22844; UPDATE t2 SET b=79067 WHERE a=22845; UPDATE t2 SET b=71008 WHERE a=22846; UPDATE t2 SET b=73735 WHERE a=22847; UPDATE t2 SET b=22925 WHERE a=22848; UPDATE t2 SET b=28957 WHERE a=22849; UPDATE t2 SET b=3855 WHERE a=22850; UPDATE t2 SET b=49259 WHERE a=22851; UPDATE t2 SET b=28171 WHERE a=22852; UPDATE t2 SET b=13208 WHERE a=22853; UPDATE t2 SET b=88808 WHERE a=22854; UPDATE t2 SET b=55734 WHERE a=22855; UPDATE t2 SET b=50072 WHERE a=22856; UPDATE t2 SET b=79330 WHERE a=22857; UPDATE t2 SET b=26425 WHERE a=22858; UPDATE t2 SET b=34988 WHERE a=22859; UPDATE t2 SET b=38018 WHERE a=22860; UPDATE t2 SET b=19489 WHERE a=22861; UPDATE t2 SET b=47952 WHERE a=22862; UPDATE t2 SET b=4846 WHERE a=22863; UPDATE t2 SET b=49800 WHERE a=22864; UPDATE t2 SET b=3924 WHERE a=22865; UPDATE t2 SET b=43087 WHERE a=22866; UPDATE t2 SET b=54138 WHERE a=22867; UPDATE t2 SET b=23756 WHERE a=22868; UPDATE t2 SET b=69746 WHERE a=22869; UPDATE t2 SET b=9598 WHERE a=22870; UPDATE t2 SET b=60998 WHERE a=22871; UPDATE t2 SET b=96878 WHERE a=22872; UPDATE t2 SET b=68380 WHERE a=22873; UPDATE t2 SET b=87206 WHERE a=22874; UPDATE t2 SET b=70838 WHERE a=22875; UPDATE t2 SET b=2666 WHERE a=22876; UPDATE t2 SET b=47185 WHERE a=22877; UPDATE t2 SET b=9252 WHERE a=22878; UPDATE t2 SET b=8228 WHERE a=22879; UPDATE t2 SET b=19446 WHERE a=22880; UPDATE t2 SET b=85407 WHERE a=22881; UPDATE t2 SET b=41147 WHERE a=22882; UPDATE t2 SET b=18920 WHERE a=22883; UPDATE t2 SET b=45767 WHERE a=22884; UPDATE t2 SET b=53520 WHERE a=22885; UPDATE t2 SET b=29872 WHERE a=22886; UPDATE t2 SET b=89527 WHERE a=22887; UPDATE t2 SET b=41994 WHERE a=22888; UPDATE t2 SET b=92544 WHERE a=22889; UPDATE t2 SET b=53513 WHERE a=22890; UPDATE t2 SET b=16582 WHERE a=22891; UPDATE t2 SET b=27689 WHERE a=22892; UPDATE t2 SET b=14114 WHERE a=22893; UPDATE t2 SET b=42438 WHERE a=22894; UPDATE t2 SET b=88017 WHERE a=22895; UPDATE t2 SET b=33176 WHERE a=22896; UPDATE t2 SET b=15375 WHERE a=22897; UPDATE t2 SET b=81959 WHERE a=22898; UPDATE t2 SET b=12622 WHERE a=22899; UPDATE t2 SET b=65776 WHERE a=22900; UPDATE t2 SET b=8139 WHERE a=22901; UPDATE t2 SET b=96698 WHERE a=22902; UPDATE t2 SET b=44772 WHERE a=22903; UPDATE t2 SET b=64199 WHERE a=22904; UPDATE t2 SET b=39429 WHERE a=22905; UPDATE t2 SET b=37477 WHERE a=22906; UPDATE t2 SET b=84286 WHERE a=22907; UPDATE t2 SET b=29281 WHERE a=22908; UPDATE t2 SET b=19022 WHERE a=22909; UPDATE t2 SET b=97310 WHERE a=22910; UPDATE t2 SET b=35385 WHERE a=22911; UPDATE t2 SET b=80092 WHERE a=22912; UPDATE t2 SET b=69579 WHERE a=22913; UPDATE t2 SET b=53782 WHERE a=22914; UPDATE t2 SET b=29228 WHERE a=22915; UPDATE t2 SET b=53534 WHERE a=22916; UPDATE t2 SET b=78513 WHERE a=22917; UPDATE t2 SET b=49127 WHERE a=22918; UPDATE t2 SET b=2543 WHERE a=22919; UPDATE t2 SET b=43925 WHERE a=22920; UPDATE t2 SET b=5767 WHERE a=22921; UPDATE t2 SET b=61618 WHERE a=22922; UPDATE t2 SET b=58451 WHERE a=22923; UPDATE t2 SET b=74633 WHERE a=22924; UPDATE t2 SET b=86786 WHERE a=22925; UPDATE t2 SET b=31812 WHERE a=22926; UPDATE t2 SET b=86347 WHERE a=22927; UPDATE t2 SET b=55625 WHERE a=22928; UPDATE t2 SET b=62952 WHERE a=22929; UPDATE t2 SET b=45015 WHERE a=22930; UPDATE t2 SET b=32446 WHERE a=22931; UPDATE t2 SET b=19228 WHERE a=22932; UPDATE t2 SET b=79070 WHERE a=22933; UPDATE t2 SET b=65666 WHERE a=22934; UPDATE t2 SET b=50022 WHERE a=22935; UPDATE t2 SET b=81273 WHERE a=22936; UPDATE t2 SET b=75946 WHERE a=22937; UPDATE t2 SET b=20378 WHERE a=22938; UPDATE t2 SET b=74200 WHERE a=22939; UPDATE t2 SET b=16792 WHERE a=22940; UPDATE t2 SET b=44932 WHERE a=22941; UPDATE t2 SET b=62071 WHERE a=22942; UPDATE t2 SET b=71655 WHERE a=22943; UPDATE t2 SET b=87920 WHERE a=22944; UPDATE t2 SET b=32494 WHERE a=22945; UPDATE t2 SET b=3963 WHERE a=22946; UPDATE t2 SET b=95624 WHERE a=22947; UPDATE t2 SET b=70701 WHERE a=22948; UPDATE t2 SET b=12930 WHERE a=22949; UPDATE t2 SET b=40431 WHERE a=22950; UPDATE t2 SET b=26297 WHERE a=22951; UPDATE t2 SET b=68871 WHERE a=22952; UPDATE t2 SET b=79329 WHERE a=22953; UPDATE t2 SET b=91321 WHERE a=22954; UPDATE t2 SET b=52874 WHERE a=22955; UPDATE t2 SET b=90917 WHERE a=22956; UPDATE t2 SET b=70752 WHERE a=22957; UPDATE t2 SET b=48017 WHERE a=22958; UPDATE t2 SET b=62873 WHERE a=22959; UPDATE t2 SET b=7714 WHERE a=22960; UPDATE t2 SET b=82695 WHERE a=22961; UPDATE t2 SET b=40498 WHERE a=22962; UPDATE t2 SET b=11293 WHERE a=22963; UPDATE t2 SET b=30222 WHERE a=22964; UPDATE t2 SET b=28721 WHERE a=22965; UPDATE t2 SET b=25694 WHERE a=22966; UPDATE t2 SET b=81476 WHERE a=22967; UPDATE t2 SET b=57760 WHERE a=22968; UPDATE t2 SET b=52160 WHERE a=22969; UPDATE t2 SET b=38840 WHERE a=22970; UPDATE t2 SET b=50775 WHERE a=22971; UPDATE t2 SET b=48070 WHERE a=22972; UPDATE t2 SET b=20222 WHERE a=22973; UPDATE t2 SET b=36818 WHERE a=22974; UPDATE t2 SET b=32898 WHERE a=22975; UPDATE t2 SET b=21232 WHERE a=22976; UPDATE t2 SET b=59054 WHERE a=22977; UPDATE t2 SET b=77163 WHERE a=22978; UPDATE t2 SET b=30747 WHERE a=22979; UPDATE t2 SET b=46367 WHERE a=22980; UPDATE t2 SET b=11759 WHERE a=22981; UPDATE t2 SET b=11713 WHERE a=22982; UPDATE t2 SET b=86716 WHERE a=22983; UPDATE t2 SET b=692 WHERE a=22984; UPDATE t2 SET b=18554 WHERE a=22985; UPDATE t2 SET b=74477 WHERE a=22986; UPDATE t2 SET b=85513 WHERE a=22987; UPDATE t2 SET b=71010 WHERE a=22988; UPDATE t2 SET b=53157 WHERE a=22989; UPDATE t2 SET b=34101 WHERE a=22990; UPDATE t2 SET b=6356 WHERE a=22991; UPDATE t2 SET b=91546 WHERE a=22992; UPDATE t2 SET b=64808 WHERE a=22993; UPDATE t2 SET b=80397 WHERE a=22994; UPDATE t2 SET b=7149 WHERE a=22995; UPDATE t2 SET b=92766 WHERE a=22996; UPDATE t2 SET b=69393 WHERE a=22997; UPDATE t2 SET b=38707 WHERE a=22998; UPDATE t2 SET b=84202 WHERE a=22999; UPDATE t2 SET b=72008 WHERE a=23000; UPDATE t2 SET b=44769 WHERE a=23001; UPDATE t2 SET b=6237 WHERE a=23002; UPDATE t2 SET b=15432 WHERE a=23003; UPDATE t2 SET b=11189 WHERE a=23004; UPDATE t2 SET b=6244 WHERE a=23005; UPDATE t2 SET b=25560 WHERE a=23006; UPDATE t2 SET b=7765 WHERE a=23007; UPDATE t2 SET b=3784 WHERE a=23008; UPDATE t2 SET b=80874 WHERE a=23009; UPDATE t2 SET b=66656 WHERE a=23010; UPDATE t2 SET b=10220 WHERE a=23011; UPDATE t2 SET b=71168 WHERE a=23012; UPDATE t2 SET b=11064 WHERE a=23013; UPDATE t2 SET b=25550 WHERE a=23014; UPDATE t2 SET b=1659 WHERE a=23015; UPDATE t2 SET b=95717 WHERE a=23016; UPDATE t2 SET b=60150 WHERE a=23017; UPDATE t2 SET b=26004 WHERE a=23018; UPDATE t2 SET b=11369 WHERE a=23019; UPDATE t2 SET b=48145 WHERE a=23020; UPDATE t2 SET b=30424 WHERE a=23021; UPDATE t2 SET b=68562 WHERE a=23022; UPDATE t2 SET b=43441 WHERE a=23023; UPDATE t2 SET b=67607 WHERE a=23024; UPDATE t2 SET b=77071 WHERE a=23025; UPDATE t2 SET b=2818 WHERE a=23026; UPDATE t2 SET b=99071 WHERE a=23027; UPDATE t2 SET b=32703 WHERE a=23028; UPDATE t2 SET b=61815 WHERE a=23029; UPDATE t2 SET b=91361 WHERE a=23030; UPDATE t2 SET b=93710 WHERE a=23031; UPDATE t2 SET b=26064 WHERE a=23032; UPDATE t2 SET b=21861 WHERE a=23033; UPDATE t2 SET b=62719 WHERE a=23034; UPDATE t2 SET b=13266 WHERE a=23035; UPDATE t2 SET b=19588 WHERE a=23036; UPDATE t2 SET b=49207 WHERE a=23037; UPDATE t2 SET b=48217 WHERE a=23038; UPDATE t2 SET b=23945 WHERE a=23039; UPDATE t2 SET b=77346 WHERE a=23040; UPDATE t2 SET b=91502 WHERE a=23041; UPDATE t2 SET b=84525 WHERE a=23042; UPDATE t2 SET b=39763 WHERE a=23043; UPDATE t2 SET b=85404 WHERE a=23044; UPDATE t2 SET b=71025 WHERE a=23045; UPDATE t2 SET b=39014 WHERE a=23046; UPDATE t2 SET b=51442 WHERE a=23047; UPDATE t2 SET b=18687 WHERE a=23048; UPDATE t2 SET b=9073 WHERE a=23049; UPDATE t2 SET b=74499 WHERE a=23050; UPDATE t2 SET b=39486 WHERE a=23051; UPDATE t2 SET b=49618 WHERE a=23052; UPDATE t2 SET b=397 WHERE a=23053; UPDATE t2 SET b=15288 WHERE a=23054; UPDATE t2 SET b=85262 WHERE a=23055; UPDATE t2 SET b=20610 WHERE a=23056; UPDATE t2 SET b=38925 WHERE a=23057; UPDATE t2 SET b=81067 WHERE a=23058; UPDATE t2 SET b=53853 WHERE a=23059; UPDATE t2 SET b=29050 WHERE a=23060; UPDATE t2 SET b=42002 WHERE a=23061; UPDATE t2 SET b=51394 WHERE a=23062; UPDATE t2 SET b=60324 WHERE a=23063; UPDATE t2 SET b=85116 WHERE a=23064; UPDATE t2 SET b=56580 WHERE a=23065; UPDATE t2 SET b=44408 WHERE a=23066; UPDATE t2 SET b=9592 WHERE a=23067; UPDATE t2 SET b=40244 WHERE a=23068; UPDATE t2 SET b=51062 WHERE a=23069; UPDATE t2 SET b=16611 WHERE a=23070; UPDATE t2 SET b=10386 WHERE a=23071; UPDATE t2 SET b=55299 WHERE a=23072; UPDATE t2 SET b=43259 WHERE a=23073; UPDATE t2 SET b=8119 WHERE a=23074; UPDATE t2 SET b=63946 WHERE a=23075; UPDATE t2 SET b=18375 WHERE a=23076; UPDATE t2 SET b=50897 WHERE a=23077; UPDATE t2 SET b=72310 WHERE a=23078; UPDATE t2 SET b=7211 WHERE a=23079; UPDATE t2 SET b=11580 WHERE a=23080; UPDATE t2 SET b=13086 WHERE a=23081; UPDATE t2 SET b=5623 WHERE a=23082; UPDATE t2 SET b=27056 WHERE a=23083; UPDATE t2 SET b=86996 WHERE a=23084; UPDATE t2 SET b=56157 WHERE a=23085; UPDATE t2 SET b=7588 WHERE a=23086; UPDATE t2 SET b=8560 WHERE a=23087; UPDATE t2 SET b=53305 WHERE a=23088; UPDATE t2 SET b=39365 WHERE a=23089; UPDATE t2 SET b=40857 WHERE a=23090; UPDATE t2 SET b=11050 WHERE a=23091; UPDATE t2 SET b=53609 WHERE a=23092; UPDATE t2 SET b=9797 WHERE a=23093; UPDATE t2 SET b=36071 WHERE a=23094; UPDATE t2 SET b=15772 WHERE a=23095; UPDATE t2 SET b=71473 WHERE a=23096; UPDATE t2 SET b=80342 WHERE a=23097; UPDATE t2 SET b=25310 WHERE a=23098; UPDATE t2 SET b=86468 WHERE a=23099; UPDATE t2 SET b=56224 WHERE a=23100; UPDATE t2 SET b=89383 WHERE a=23101; UPDATE t2 SET b=72867 WHERE a=23102; UPDATE t2 SET b=65194 WHERE a=23103; UPDATE t2 SET b=34153 WHERE a=23104; UPDATE t2 SET b=70654 WHERE a=23105; UPDATE t2 SET b=44720 WHERE a=23106; UPDATE t2 SET b=56307 WHERE a=23107; UPDATE t2 SET b=96859 WHERE a=23108; UPDATE t2 SET b=87919 WHERE a=23109; UPDATE t2 SET b=71443 WHERE a=23110; UPDATE t2 SET b=96465 WHERE a=23111; UPDATE t2 SET b=43666 WHERE a=23112; UPDATE t2 SET b=91276 WHERE a=23113; UPDATE t2 SET b=33001 WHERE a=23114; UPDATE t2 SET b=59339 WHERE a=23115; UPDATE t2 SET b=4811 WHERE a=23116; UPDATE t2 SET b=24227 WHERE a=23117; UPDATE t2 SET b=2034 WHERE a=23118; UPDATE t2 SET b=79327 WHERE a=23119; UPDATE t2 SET b=62433 WHERE a=23120; UPDATE t2 SET b=34768 WHERE a=23121; UPDATE t2 SET b=94937 WHERE a=23122; UPDATE t2 SET b=47742 WHERE a=23123; UPDATE t2 SET b=97451 WHERE a=23124; UPDATE t2 SET b=13726 WHERE a=23125; UPDATE t2 SET b=13527 WHERE a=23126; UPDATE t2 SET b=39441 WHERE a=23127; UPDATE t2 SET b=73397 WHERE a=23128; UPDATE t2 SET b=36078 WHERE a=23129; UPDATE t2 SET b=22201 WHERE a=23130; UPDATE t2 SET b=57372 WHERE a=23131; UPDATE t2 SET b=34679 WHERE a=23132; UPDATE t2 SET b=70650 WHERE a=23133; UPDATE t2 SET b=30459 WHERE a=23134; UPDATE t2 SET b=85435 WHERE a=23135; UPDATE t2 SET b=89818 WHERE a=23136; UPDATE t2 SET b=19678 WHERE a=23137; UPDATE t2 SET b=3082 WHERE a=23138; UPDATE t2 SET b=28123 WHERE a=23139; UPDATE t2 SET b=20839 WHERE a=23140; UPDATE t2 SET b=8672 WHERE a=23141; UPDATE t2 SET b=94287 WHERE a=23142; UPDATE t2 SET b=63303 WHERE a=23143; UPDATE t2 SET b=25179 WHERE a=23144; UPDATE t2 SET b=87100 WHERE a=23145; UPDATE t2 SET b=17315 WHERE a=23146; UPDATE t2 SET b=3691 WHERE a=23147; UPDATE t2 SET b=51699 WHERE a=23148; UPDATE t2 SET b=121 WHERE a=23149; UPDATE t2 SET b=82072 WHERE a=23150; UPDATE t2 SET b=35795 WHERE a=23151; UPDATE t2 SET b=62153 WHERE a=23152; UPDATE t2 SET b=63733 WHERE a=23153; UPDATE t2 SET b=33678 WHERE a=23154; UPDATE t2 SET b=60478 WHERE a=23155; UPDATE t2 SET b=22815 WHERE a=23156; UPDATE t2 SET b=84629 WHERE a=23157; UPDATE t2 SET b=34544 WHERE a=23158; UPDATE t2 SET b=92699 WHERE a=23159; UPDATE t2 SET b=35627 WHERE a=23160; UPDATE t2 SET b=92999 WHERE a=23161; UPDATE t2 SET b=2108 WHERE a=23162; UPDATE t2 SET b=67993 WHERE a=23163; UPDATE t2 SET b=1197 WHERE a=23164; UPDATE t2 SET b=50064 WHERE a=23165; UPDATE t2 SET b=81869 WHERE a=23166; UPDATE t2 SET b=71838 WHERE a=23167; UPDATE t2 SET b=38183 WHERE a=23168; UPDATE t2 SET b=92287 WHERE a=23169; UPDATE t2 SET b=70121 WHERE a=23170; UPDATE t2 SET b=62896 WHERE a=23171; UPDATE t2 SET b=6269 WHERE a=23172; UPDATE t2 SET b=52587 WHERE a=23173; UPDATE t2 SET b=55316 WHERE a=23174; UPDATE t2 SET b=20868 WHERE a=23175; UPDATE t2 SET b=92001 WHERE a=23176; UPDATE t2 SET b=75514 WHERE a=23177; UPDATE t2 SET b=57416 WHERE a=23178; UPDATE t2 SET b=64388 WHERE a=23179; UPDATE t2 SET b=61611 WHERE a=23180; UPDATE t2 SET b=77871 WHERE a=23181; UPDATE t2 SET b=77185 WHERE a=23182; UPDATE t2 SET b=59456 WHERE a=23183; UPDATE t2 SET b=10463 WHERE a=23184; UPDATE t2 SET b=74726 WHERE a=23185; UPDATE t2 SET b=81848 WHERE a=23186; UPDATE t2 SET b=43287 WHERE a=23187; UPDATE t2 SET b=43448 WHERE a=23188; UPDATE t2 SET b=21600 WHERE a=23189; UPDATE t2 SET b=59601 WHERE a=23190; UPDATE t2 SET b=18348 WHERE a=23191; UPDATE t2 SET b=80393 WHERE a=23192; UPDATE t2 SET b=89741 WHERE a=23193; UPDATE t2 SET b=23279 WHERE a=23194; UPDATE t2 SET b=40487 WHERE a=23195; UPDATE t2 SET b=86726 WHERE a=23196; UPDATE t2 SET b=25760 WHERE a=23197; UPDATE t2 SET b=67657 WHERE a=23198; UPDATE t2 SET b=87632 WHERE a=23199; UPDATE t2 SET b=71253 WHERE a=23200; UPDATE t2 SET b=81391 WHERE a=23201; UPDATE t2 SET b=54653 WHERE a=23202; UPDATE t2 SET b=22192 WHERE a=23203; UPDATE t2 SET b=22585 WHERE a=23204; UPDATE t2 SET b=95163 WHERE a=23205; UPDATE t2 SET b=66575 WHERE a=23206; UPDATE t2 SET b=6752 WHERE a=23207; UPDATE t2 SET b=51093 WHERE a=23208; UPDATE t2 SET b=14122 WHERE a=23209; UPDATE t2 SET b=1578 WHERE a=23210; UPDATE t2 SET b=28276 WHERE a=23211; UPDATE t2 SET b=54268 WHERE a=23212; UPDATE t2 SET b=5548 WHERE a=23213; UPDATE t2 SET b=15502 WHERE a=23214; UPDATE t2 SET b=40266 WHERE a=23215; UPDATE t2 SET b=80465 WHERE a=23216; UPDATE t2 SET b=68100 WHERE a=23217; UPDATE t2 SET b=95771 WHERE a=23218; UPDATE t2 SET b=88771 WHERE a=23219; UPDATE t2 SET b=94851 WHERE a=23220; UPDATE t2 SET b=7857 WHERE a=23221; UPDATE t2 SET b=8564 WHERE a=23222; UPDATE t2 SET b=76198 WHERE a=23223; UPDATE t2 SET b=65682 WHERE a=23224; UPDATE t2 SET b=3598 WHERE a=23225; UPDATE t2 SET b=35510 WHERE a=23226; UPDATE t2 SET b=74235 WHERE a=23227; UPDATE t2 SET b=77216 WHERE a=23228; UPDATE t2 SET b=36600 WHERE a=23229; UPDATE t2 SET b=3242 WHERE a=23230; UPDATE t2 SET b=990 WHERE a=23231; UPDATE t2 SET b=43535 WHERE a=23232; UPDATE t2 SET b=16017 WHERE a=23233; UPDATE t2 SET b=58208 WHERE a=23234; UPDATE t2 SET b=67854 WHERE a=23235; UPDATE t2 SET b=68608 WHERE a=23236; UPDATE t2 SET b=15629 WHERE a=23237; UPDATE t2 SET b=99966 WHERE a=23238; UPDATE t2 SET b=64372 WHERE a=23239; UPDATE t2 SET b=38757 WHERE a=23240; UPDATE t2 SET b=97088 WHERE a=23241; UPDATE t2 SET b=19851 WHERE a=23242; UPDATE t2 SET b=62091 WHERE a=23243; UPDATE t2 SET b=94744 WHERE a=23244; UPDATE t2 SET b=67586 WHERE a=23245; UPDATE t2 SET b=30431 WHERE a=23246; UPDATE t2 SET b=74090 WHERE a=23247; UPDATE t2 SET b=99856 WHERE a=23248; UPDATE t2 SET b=22596 WHERE a=23249; UPDATE t2 SET b=52614 WHERE a=23250; UPDATE t2 SET b=76302 WHERE a=23251; UPDATE t2 SET b=21016 WHERE a=23252; UPDATE t2 SET b=20004 WHERE a=23253; UPDATE t2 SET b=52668 WHERE a=23254; UPDATE t2 SET b=20231 WHERE a=23255; UPDATE t2 SET b=90309 WHERE a=23256; UPDATE t2 SET b=55124 WHERE a=23257; UPDATE t2 SET b=61187 WHERE a=23258; UPDATE t2 SET b=58675 WHERE a=23259; UPDATE t2 SET b=47510 WHERE a=23260; UPDATE t2 SET b=67775 WHERE a=23261; UPDATE t2 SET b=25903 WHERE a=23262; UPDATE t2 SET b=95346 WHERE a=23263; UPDATE t2 SET b=21623 WHERE a=23264; UPDATE t2 SET b=28382 WHERE a=23265; UPDATE t2 SET b=58266 WHERE a=23266; UPDATE t2 SET b=69447 WHERE a=23267; UPDATE t2 SET b=53227 WHERE a=23268; UPDATE t2 SET b=63725 WHERE a=23269; UPDATE t2 SET b=79485 WHERE a=23270; UPDATE t2 SET b=75390 WHERE a=23271; UPDATE t2 SET b=72793 WHERE a=23272; UPDATE t2 SET b=35373 WHERE a=23273; UPDATE t2 SET b=90315 WHERE a=23274; UPDATE t2 SET b=800 WHERE a=23275; UPDATE t2 SET b=1121 WHERE a=23276; UPDATE t2 SET b=19147 WHERE a=23277; UPDATE t2 SET b=30221 WHERE a=23278; UPDATE t2 SET b=25712 WHERE a=23279; UPDATE t2 SET b=34172 WHERE a=23280; UPDATE t2 SET b=52374 WHERE a=23281; UPDATE t2 SET b=44465 WHERE a=23282; UPDATE t2 SET b=85827 WHERE a=23283; UPDATE t2 SET b=60508 WHERE a=23284; UPDATE t2 SET b=35521 WHERE a=23285; UPDATE t2 SET b=85134 WHERE a=23286; UPDATE t2 SET b=20391 WHERE a=23287; UPDATE t2 SET b=63291 WHERE a=23288; UPDATE t2 SET b=97774 WHERE a=23289; UPDATE t2 SET b=88993 WHERE a=23290; UPDATE t2 SET b=62709 WHERE a=23291; UPDATE t2 SET b=92281 WHERE a=23292; UPDATE t2 SET b=31387 WHERE a=23293; UPDATE t2 SET b=17613 WHERE a=23294; UPDATE t2 SET b=36220 WHERE a=23295; UPDATE t2 SET b=27297 WHERE a=23296; UPDATE t2 SET b=93318 WHERE a=23297; UPDATE t2 SET b=67054 WHERE a=23298; UPDATE t2 SET b=29977 WHERE a=23299; UPDATE t2 SET b=74220 WHERE a=23300; UPDATE t2 SET b=46664 WHERE a=23301; UPDATE t2 SET b=99917 WHERE a=23302; UPDATE t2 SET b=49724 WHERE a=23303; UPDATE t2 SET b=60790 WHERE a=23304; UPDATE t2 SET b=69212 WHERE a=23305; UPDATE t2 SET b=11030 WHERE a=23306; UPDATE t2 SET b=86962 WHERE a=23307; UPDATE t2 SET b=74367 WHERE a=23308; UPDATE t2 SET b=55246 WHERE a=23309; UPDATE t2 SET b=73934 WHERE a=23310; UPDATE t2 SET b=47487 WHERE a=23311; UPDATE t2 SET b=31472 WHERE a=23312; UPDATE t2 SET b=10619 WHERE a=23313; UPDATE t2 SET b=24527 WHERE a=23314; UPDATE t2 SET b=95858 WHERE a=23315; UPDATE t2 SET b=31548 WHERE a=23316; UPDATE t2 SET b=50451 WHERE a=23317; UPDATE t2 SET b=21533 WHERE a=23318; UPDATE t2 SET b=1357 WHERE a=23319; UPDATE t2 SET b=77766 WHERE a=23320; UPDATE t2 SET b=44440 WHERE a=23321; UPDATE t2 SET b=92511 WHERE a=23322; UPDATE t2 SET b=49133 WHERE a=23323; UPDATE t2 SET b=64515 WHERE a=23324; UPDATE t2 SET b=95679 WHERE a=23325; UPDATE t2 SET b=58107 WHERE a=23326; UPDATE t2 SET b=86966 WHERE a=23327; UPDATE t2 SET b=11190 WHERE a=23328; UPDATE t2 SET b=81613 WHERE a=23329; UPDATE t2 SET b=62659 WHERE a=23330; UPDATE t2 SET b=79584 WHERE a=23331; UPDATE t2 SET b=29246 WHERE a=23332; UPDATE t2 SET b=97236 WHERE a=23333; UPDATE t2 SET b=74978 WHERE a=23334; UPDATE t2 SET b=34138 WHERE a=23335; UPDATE t2 SET b=45507 WHERE a=23336; UPDATE t2 SET b=37786 WHERE a=23337; UPDATE t2 SET b=47278 WHERE a=23338; UPDATE t2 SET b=74362 WHERE a=23339; UPDATE t2 SET b=2774 WHERE a=23340; UPDATE t2 SET b=77619 WHERE a=23341; UPDATE t2 SET b=19954 WHERE a=23342; UPDATE t2 SET b=67267 WHERE a=23343; UPDATE t2 SET b=21262 WHERE a=23344; UPDATE t2 SET b=80112 WHERE a=23345; UPDATE t2 SET b=3037 WHERE a=23346; UPDATE t2 SET b=7724 WHERE a=23347; UPDATE t2 SET b=59288 WHERE a=23348; UPDATE t2 SET b=49151 WHERE a=23349; UPDATE t2 SET b=19202 WHERE a=23350; UPDATE t2 SET b=3250 WHERE a=23351; UPDATE t2 SET b=77998 WHERE a=23352; UPDATE t2 SET b=70650 WHERE a=23353; UPDATE t2 SET b=36462 WHERE a=23354; UPDATE t2 SET b=61429 WHERE a=23355; UPDATE t2 SET b=65197 WHERE a=23356; UPDATE t2 SET b=10124 WHERE a=23357; UPDATE t2 SET b=21052 WHERE a=23358; UPDATE t2 SET b=92919 WHERE a=23359; UPDATE t2 SET b=68576 WHERE a=23360; UPDATE t2 SET b=2812 WHERE a=23361; UPDATE t2 SET b=88135 WHERE a=23362; UPDATE t2 SET b=88245 WHERE a=23363; UPDATE t2 SET b=57487 WHERE a=23364; UPDATE t2 SET b=24430 WHERE a=23365; UPDATE t2 SET b=85564 WHERE a=23366; UPDATE t2 SET b=52140 WHERE a=23367; UPDATE t2 SET b=15560 WHERE a=23368; UPDATE t2 SET b=90236 WHERE a=23369; UPDATE t2 SET b=89442 WHERE a=23370; UPDATE t2 SET b=54287 WHERE a=23371; UPDATE t2 SET b=29482 WHERE a=23372; UPDATE t2 SET b=28271 WHERE a=23373; UPDATE t2 SET b=34122 WHERE a=23374; UPDATE t2 SET b=58955 WHERE a=23375; UPDATE t2 SET b=34603 WHERE a=23376; UPDATE t2 SET b=52993 WHERE a=23377; UPDATE t2 SET b=93683 WHERE a=23378; UPDATE t2 SET b=68370 WHERE a=23379; UPDATE t2 SET b=88213 WHERE a=23380; UPDATE t2 SET b=4035 WHERE a=23381; UPDATE t2 SET b=74977 WHERE a=23382; UPDATE t2 SET b=34492 WHERE a=23383; UPDATE t2 SET b=21662 WHERE a=23384; UPDATE t2 SET b=89316 WHERE a=23385; UPDATE t2 SET b=97833 WHERE a=23386; UPDATE t2 SET b=56686 WHERE a=23387; UPDATE t2 SET b=65121 WHERE a=23388; UPDATE t2 SET b=85891 WHERE a=23389; UPDATE t2 SET b=89944 WHERE a=23390; UPDATE t2 SET b=68324 WHERE a=23391; UPDATE t2 SET b=2446 WHERE a=23392; UPDATE t2 SET b=37590 WHERE a=23393; UPDATE t2 SET b=7594 WHERE a=23394; UPDATE t2 SET b=30846 WHERE a=23395; UPDATE t2 SET b=75716 WHERE a=23396; UPDATE t2 SET b=85147 WHERE a=23397; UPDATE t2 SET b=29098 WHERE a=23398; UPDATE t2 SET b=56352 WHERE a=23399; UPDATE t2 SET b=99274 WHERE a=23400; UPDATE t2 SET b=74072 WHERE a=23401; UPDATE t2 SET b=10264 WHERE a=23402; UPDATE t2 SET b=53187 WHERE a=23403; UPDATE t2 SET b=20830 WHERE a=23404; UPDATE t2 SET b=3961 WHERE a=23405; UPDATE t2 SET b=373 WHERE a=23406; UPDATE t2 SET b=60649 WHERE a=23407; UPDATE t2 SET b=64760 WHERE a=23408; UPDATE t2 SET b=6409 WHERE a=23409; UPDATE t2 SET b=63145 WHERE a=23410; UPDATE t2 SET b=59364 WHERE a=23411; UPDATE t2 SET b=40280 WHERE a=23412; UPDATE t2 SET b=32262 WHERE a=23413; UPDATE t2 SET b=95556 WHERE a=23414; UPDATE t2 SET b=58879 WHERE a=23415; UPDATE t2 SET b=94446 WHERE a=23416; UPDATE t2 SET b=90348 WHERE a=23417; UPDATE t2 SET b=73377 WHERE a=23418; UPDATE t2 SET b=93762 WHERE a=23419; UPDATE t2 SET b=37131 WHERE a=23420; UPDATE t2 SET b=82341 WHERE a=23421; UPDATE t2 SET b=74965 WHERE a=23422; UPDATE t2 SET b=38309 WHERE a=23423; UPDATE t2 SET b=44259 WHERE a=23424; UPDATE t2 SET b=99810 WHERE a=23425; UPDATE t2 SET b=55577 WHERE a=23426; UPDATE t2 SET b=79071 WHERE a=23427; UPDATE t2 SET b=40738 WHERE a=23428; UPDATE t2 SET b=19762 WHERE a=23429; UPDATE t2 SET b=10744 WHERE a=23430; UPDATE t2 SET b=20684 WHERE a=23431; UPDATE t2 SET b=29940 WHERE a=23432; UPDATE t2 SET b=77426 WHERE a=23433; UPDATE t2 SET b=70862 WHERE a=23434; UPDATE t2 SET b=13793 WHERE a=23435; UPDATE t2 SET b=51919 WHERE a=23436; UPDATE t2 SET b=48580 WHERE a=23437; UPDATE t2 SET b=55971 WHERE a=23438; UPDATE t2 SET b=13823 WHERE a=23439; UPDATE t2 SET b=21199 WHERE a=23440; UPDATE t2 SET b=52006 WHERE a=23441; UPDATE t2 SET b=6690 WHERE a=23442; UPDATE t2 SET b=38576 WHERE a=23443; UPDATE t2 SET b=429 WHERE a=23444; UPDATE t2 SET b=50221 WHERE a=23445; UPDATE t2 SET b=11108 WHERE a=23446; UPDATE t2 SET b=47975 WHERE a=23447; UPDATE t2 SET b=5614 WHERE a=23448; UPDATE t2 SET b=53346 WHERE a=23449; UPDATE t2 SET b=10093 WHERE a=23450; UPDATE t2 SET b=34730 WHERE a=23451; UPDATE t2 SET b=71808 WHERE a=23452; UPDATE t2 SET b=16771 WHERE a=23453; UPDATE t2 SET b=68914 WHERE a=23454; UPDATE t2 SET b=88732 WHERE a=23455; UPDATE t2 SET b=17798 WHERE a=23456; UPDATE t2 SET b=64036 WHERE a=23457; UPDATE t2 SET b=30966 WHERE a=23458; UPDATE t2 SET b=90834 WHERE a=23459; UPDATE t2 SET b=79229 WHERE a=23460; UPDATE t2 SET b=93306 WHERE a=23461; UPDATE t2 SET b=14288 WHERE a=23462; UPDATE t2 SET b=86025 WHERE a=23463; UPDATE t2 SET b=92230 WHERE a=23464; UPDATE t2 SET b=21514 WHERE a=23465; UPDATE t2 SET b=51406 WHERE a=23466; UPDATE t2 SET b=36322 WHERE a=23467; UPDATE t2 SET b=84 WHERE a=23468; UPDATE t2 SET b=55267 WHERE a=23469; UPDATE t2 SET b=48912 WHERE a=23470; UPDATE t2 SET b=32339 WHERE a=23471; UPDATE t2 SET b=72626 WHERE a=23472; UPDATE t2 SET b=55642 WHERE a=23473; UPDATE t2 SET b=90391 WHERE a=23474; UPDATE t2 SET b=11042 WHERE a=23475; UPDATE t2 SET b=24506 WHERE a=23476; UPDATE t2 SET b=93348 WHERE a=23477; UPDATE t2 SET b=98776 WHERE a=23478; UPDATE t2 SET b=52993 WHERE a=23479; UPDATE t2 SET b=84125 WHERE a=23480; UPDATE t2 SET b=2719 WHERE a=23481; UPDATE t2 SET b=55666 WHERE a=23482; UPDATE t2 SET b=89562 WHERE a=23483; UPDATE t2 SET b=56368 WHERE a=23484; UPDATE t2 SET b=5376 WHERE a=23485; UPDATE t2 SET b=23917 WHERE a=23486; UPDATE t2 SET b=33517 WHERE a=23487; UPDATE t2 SET b=17269 WHERE a=23488; UPDATE t2 SET b=77709 WHERE a=23489; UPDATE t2 SET b=58106 WHERE a=23490; UPDATE t2 SET b=20082 WHERE a=23491; UPDATE t2 SET b=74145 WHERE a=23492; UPDATE t2 SET b=5080 WHERE a=23493; UPDATE t2 SET b=30461 WHERE a=23494; UPDATE t2 SET b=53852 WHERE a=23495; UPDATE t2 SET b=20872 WHERE a=23496; UPDATE t2 SET b=189 WHERE a=23497; UPDATE t2 SET b=78123 WHERE a=23498; UPDATE t2 SET b=563 WHERE a=23499; UPDATE t2 SET b=42744 WHERE a=23500; UPDATE t2 SET b=42069 WHERE a=23501; UPDATE t2 SET b=78711 WHERE a=23502; UPDATE t2 SET b=77178 WHERE a=23503; UPDATE t2 SET b=47078 WHERE a=23504; UPDATE t2 SET b=86489 WHERE a=23505; UPDATE t2 SET b=6572 WHERE a=23506; UPDATE t2 SET b=75613 WHERE a=23507; UPDATE t2 SET b=42084 WHERE a=23508; UPDATE t2 SET b=73206 WHERE a=23509; UPDATE t2 SET b=55408 WHERE a=23510; UPDATE t2 SET b=90141 WHERE a=23511; UPDATE t2 SET b=37249 WHERE a=23512; UPDATE t2 SET b=46710 WHERE a=23513; UPDATE t2 SET b=13378 WHERE a=23514; UPDATE t2 SET b=76401 WHERE a=23515; UPDATE t2 SET b=22623 WHERE a=23516; UPDATE t2 SET b=65131 WHERE a=23517; UPDATE t2 SET b=86419 WHERE a=23518; UPDATE t2 SET b=41778 WHERE a=23519; UPDATE t2 SET b=64262 WHERE a=23520; UPDATE t2 SET b=30900 WHERE a=23521; UPDATE t2 SET b=2340 WHERE a=23522; UPDATE t2 SET b=77838 WHERE a=23523; UPDATE t2 SET b=84646 WHERE a=23524; UPDATE t2 SET b=42181 WHERE a=23525; UPDATE t2 SET b=73279 WHERE a=23526; UPDATE t2 SET b=43450 WHERE a=23527; UPDATE t2 SET b=80435 WHERE a=23528; UPDATE t2 SET b=58206 WHERE a=23529; UPDATE t2 SET b=38733 WHERE a=23530; UPDATE t2 SET b=52364 WHERE a=23531; UPDATE t2 SET b=16109 WHERE a=23532; UPDATE t2 SET b=41050 WHERE a=23533; UPDATE t2 SET b=87959 WHERE a=23534; UPDATE t2 SET b=80440 WHERE a=23535; UPDATE t2 SET b=67596 WHERE a=23536; UPDATE t2 SET b=27529 WHERE a=23537; UPDATE t2 SET b=23588 WHERE a=23538; UPDATE t2 SET b=83952 WHERE a=23539; UPDATE t2 SET b=82228 WHERE a=23540; UPDATE t2 SET b=67764 WHERE a=23541; UPDATE t2 SET b=90016 WHERE a=23542; UPDATE t2 SET b=81087 WHERE a=23543; UPDATE t2 SET b=47754 WHERE a=23544; UPDATE t2 SET b=20349 WHERE a=23545; UPDATE t2 SET b=25033 WHERE a=23546; UPDATE t2 SET b=54123 WHERE a=23547; UPDATE t2 SET b=57651 WHERE a=23548; UPDATE t2 SET b=60251 WHERE a=23549; UPDATE t2 SET b=92299 WHERE a=23550; UPDATE t2 SET b=23407 WHERE a=23551; UPDATE t2 SET b=88573 WHERE a=23552; UPDATE t2 SET b=59536 WHERE a=23553; UPDATE t2 SET b=13755 WHERE a=23554; UPDATE t2 SET b=36190 WHERE a=23555; UPDATE t2 SET b=12994 WHERE a=23556; UPDATE t2 SET b=69602 WHERE a=23557; UPDATE t2 SET b=20437 WHERE a=23558; UPDATE t2 SET b=96897 WHERE a=23559; UPDATE t2 SET b=67973 WHERE a=23560; UPDATE t2 SET b=17367 WHERE a=23561; UPDATE t2 SET b=49586 WHERE a=23562; UPDATE t2 SET b=35595 WHERE a=23563; UPDATE t2 SET b=18053 WHERE a=23564; UPDATE t2 SET b=42293 WHERE a=23565; UPDATE t2 SET b=78662 WHERE a=23566; UPDATE t2 SET b=14060 WHERE a=23567; UPDATE t2 SET b=10124 WHERE a=23568; UPDATE t2 SET b=54316 WHERE a=23569; UPDATE t2 SET b=7438 WHERE a=23570; UPDATE t2 SET b=44783 WHERE a=23571; UPDATE t2 SET b=36747 WHERE a=23572; UPDATE t2 SET b=35695 WHERE a=23573; UPDATE t2 SET b=24915 WHERE a=23574; UPDATE t2 SET b=94042 WHERE a=23575; UPDATE t2 SET b=84567 WHERE a=23576; UPDATE t2 SET b=23974 WHERE a=23577; UPDATE t2 SET b=40271 WHERE a=23578; UPDATE t2 SET b=13338 WHERE a=23579; UPDATE t2 SET b=70222 WHERE a=23580; UPDATE t2 SET b=13025 WHERE a=23581; UPDATE t2 SET b=85374 WHERE a=23582; UPDATE t2 SET b=28408 WHERE a=23583; UPDATE t2 SET b=95572 WHERE a=23584; UPDATE t2 SET b=42518 WHERE a=23585; UPDATE t2 SET b=74215 WHERE a=23586; UPDATE t2 SET b=67583 WHERE a=23587; UPDATE t2 SET b=98433 WHERE a=23588; UPDATE t2 SET b=5357 WHERE a=23589; UPDATE t2 SET b=71200 WHERE a=23590; UPDATE t2 SET b=47810 WHERE a=23591; UPDATE t2 SET b=13891 WHERE a=23592; UPDATE t2 SET b=44988 WHERE a=23593; UPDATE t2 SET b=28001 WHERE a=23594; UPDATE t2 SET b=83597 WHERE a=23595; UPDATE t2 SET b=22601 WHERE a=23596; UPDATE t2 SET b=78104 WHERE a=23597; UPDATE t2 SET b=32514 WHERE a=23598; UPDATE t2 SET b=27158 WHERE a=23599; UPDATE t2 SET b=22100 WHERE a=23600; UPDATE t2 SET b=53293 WHERE a=23601; UPDATE t2 SET b=71385 WHERE a=23602; UPDATE t2 SET b=23462 WHERE a=23603; UPDATE t2 SET b=32961 WHERE a=23604; UPDATE t2 SET b=25033 WHERE a=23605; UPDATE t2 SET b=7499 WHERE a=23606; UPDATE t2 SET b=56270 WHERE a=23607; UPDATE t2 SET b=9295 WHERE a=23608; UPDATE t2 SET b=7207 WHERE a=23609; UPDATE t2 SET b=5712 WHERE a=23610; UPDATE t2 SET b=94522 WHERE a=23611; UPDATE t2 SET b=82026 WHERE a=23612; UPDATE t2 SET b=11571 WHERE a=23613; UPDATE t2 SET b=36961 WHERE a=23614; UPDATE t2 SET b=99456 WHERE a=23615; UPDATE t2 SET b=324 WHERE a=23616; UPDATE t2 SET b=9425 WHERE a=23617; UPDATE t2 SET b=37151 WHERE a=23618; UPDATE t2 SET b=55112 WHERE a=23619; UPDATE t2 SET b=66006 WHERE a=23620; UPDATE t2 SET b=35782 WHERE a=23621; UPDATE t2 SET b=31126 WHERE a=23622; UPDATE t2 SET b=65988 WHERE a=23623; UPDATE t2 SET b=21987 WHERE a=23624; UPDATE t2 SET b=22399 WHERE a=23625; UPDATE t2 SET b=46228 WHERE a=23626; UPDATE t2 SET b=785 WHERE a=23627; UPDATE t2 SET b=16784 WHERE a=23628; UPDATE t2 SET b=73596 WHERE a=23629; UPDATE t2 SET b=11884 WHERE a=23630; UPDATE t2 SET b=41480 WHERE a=23631; UPDATE t2 SET b=31988 WHERE a=23632; UPDATE t2 SET b=42275 WHERE a=23633; UPDATE t2 SET b=66790 WHERE a=23634; UPDATE t2 SET b=81946 WHERE a=23635; UPDATE t2 SET b=75944 WHERE a=23636; UPDATE t2 SET b=34158 WHERE a=23637; UPDATE t2 SET b=46707 WHERE a=23638; UPDATE t2 SET b=29628 WHERE a=23639; UPDATE t2 SET b=91503 WHERE a=23640; UPDATE t2 SET b=55025 WHERE a=23641; UPDATE t2 SET b=66929 WHERE a=23642; UPDATE t2 SET b=93463 WHERE a=23643; UPDATE t2 SET b=67614 WHERE a=23644; UPDATE t2 SET b=6120 WHERE a=23645; UPDATE t2 SET b=5075 WHERE a=23646; UPDATE t2 SET b=81729 WHERE a=23647; UPDATE t2 SET b=93911 WHERE a=23648; UPDATE t2 SET b=90563 WHERE a=23649; UPDATE t2 SET b=80913 WHERE a=23650; UPDATE t2 SET b=4209 WHERE a=23651; UPDATE t2 SET b=98063 WHERE a=23652; UPDATE t2 SET b=58964 WHERE a=23653; UPDATE t2 SET b=73038 WHERE a=23654; UPDATE t2 SET b=25685 WHERE a=23655; UPDATE t2 SET b=50511 WHERE a=23656; UPDATE t2 SET b=89839 WHERE a=23657; UPDATE t2 SET b=1972 WHERE a=23658; UPDATE t2 SET b=87006 WHERE a=23659; UPDATE t2 SET b=49351 WHERE a=23660; UPDATE t2 SET b=22627 WHERE a=23661; UPDATE t2 SET b=54337 WHERE a=23662; UPDATE t2 SET b=8840 WHERE a=23663; UPDATE t2 SET b=57915 WHERE a=23664; UPDATE t2 SET b=69671 WHERE a=23665; UPDATE t2 SET b=87133 WHERE a=23666; UPDATE t2 SET b=90324 WHERE a=23667; UPDATE t2 SET b=64220 WHERE a=23668; UPDATE t2 SET b=5721 WHERE a=23669; UPDATE t2 SET b=86209 WHERE a=23670; UPDATE t2 SET b=65227 WHERE a=23671; UPDATE t2 SET b=56608 WHERE a=23672; UPDATE t2 SET b=10090 WHERE a=23673; UPDATE t2 SET b=99334 WHERE a=23674; UPDATE t2 SET b=85695 WHERE a=23675; UPDATE t2 SET b=53494 WHERE a=23676; UPDATE t2 SET b=80911 WHERE a=23677; UPDATE t2 SET b=11469 WHERE a=23678; UPDATE t2 SET b=24121 WHERE a=23679; UPDATE t2 SET b=49265 WHERE a=23680; UPDATE t2 SET b=53918 WHERE a=23681; UPDATE t2 SET b=58409 WHERE a=23682; UPDATE t2 SET b=74890 WHERE a=23683; UPDATE t2 SET b=40426 WHERE a=23684; UPDATE t2 SET b=53187 WHERE a=23685; UPDATE t2 SET b=44005 WHERE a=23686; UPDATE t2 SET b=11482 WHERE a=23687; UPDATE t2 SET b=9854 WHERE a=23688; UPDATE t2 SET b=56099 WHERE a=23689; UPDATE t2 SET b=39466 WHERE a=23690; UPDATE t2 SET b=12953 WHERE a=23691; UPDATE t2 SET b=30263 WHERE a=23692; UPDATE t2 SET b=93837 WHERE a=23693; UPDATE t2 SET b=16097 WHERE a=23694; UPDATE t2 SET b=42872 WHERE a=23695; UPDATE t2 SET b=93196 WHERE a=23696; UPDATE t2 SET b=14433 WHERE a=23697; UPDATE t2 SET b=65647 WHERE a=23698; UPDATE t2 SET b=84884 WHERE a=23699; UPDATE t2 SET b=63873 WHERE a=23700; UPDATE t2 SET b=91877 WHERE a=23701; UPDATE t2 SET b=19360 WHERE a=23702; UPDATE t2 SET b=37734 WHERE a=23703; UPDATE t2 SET b=88906 WHERE a=23704; UPDATE t2 SET b=95613 WHERE a=23705; UPDATE t2 SET b=71545 WHERE a=23706; UPDATE t2 SET b=97186 WHERE a=23707; UPDATE t2 SET b=35863 WHERE a=23708; UPDATE t2 SET b=81904 WHERE a=23709; UPDATE t2 SET b=75563 WHERE a=23710; UPDATE t2 SET b=3942 WHERE a=23711; UPDATE t2 SET b=29790 WHERE a=23712; UPDATE t2 SET b=87898 WHERE a=23713; UPDATE t2 SET b=66946 WHERE a=23714; UPDATE t2 SET b=38911 WHERE a=23715; UPDATE t2 SET b=11446 WHERE a=23716; UPDATE t2 SET b=59351 WHERE a=23717; UPDATE t2 SET b=8713 WHERE a=23718; UPDATE t2 SET b=85507 WHERE a=23719; UPDATE t2 SET b=58300 WHERE a=23720; UPDATE t2 SET b=66809 WHERE a=23721; UPDATE t2 SET b=62039 WHERE a=23722; UPDATE t2 SET b=22561 WHERE a=23723; UPDATE t2 SET b=54528 WHERE a=23724; UPDATE t2 SET b=14359 WHERE a=23725; UPDATE t2 SET b=23630 WHERE a=23726; UPDATE t2 SET b=14023 WHERE a=23727; UPDATE t2 SET b=82239 WHERE a=23728; UPDATE t2 SET b=66037 WHERE a=23729; UPDATE t2 SET b=2557 WHERE a=23730; UPDATE t2 SET b=97493 WHERE a=23731; UPDATE t2 SET b=99044 WHERE a=23732; UPDATE t2 SET b=11947 WHERE a=23733; UPDATE t2 SET b=82592 WHERE a=23734; UPDATE t2 SET b=34985 WHERE a=23735; UPDATE t2 SET b=70334 WHERE a=23736; UPDATE t2 SET b=48068 WHERE a=23737; UPDATE t2 SET b=13335 WHERE a=23738; UPDATE t2 SET b=30040 WHERE a=23739; UPDATE t2 SET b=43882 WHERE a=23740; UPDATE t2 SET b=77202 WHERE a=23741; UPDATE t2 SET b=56926 WHERE a=23742; UPDATE t2 SET b=23260 WHERE a=23743; UPDATE t2 SET b=94345 WHERE a=23744; UPDATE t2 SET b=43829 WHERE a=23745; UPDATE t2 SET b=25274 WHERE a=23746; UPDATE t2 SET b=62267 WHERE a=23747; UPDATE t2 SET b=13313 WHERE a=23748; UPDATE t2 SET b=70491 WHERE a=23749; UPDATE t2 SET b=17460 WHERE a=23750; UPDATE t2 SET b=38313 WHERE a=23751; UPDATE t2 SET b=88545 WHERE a=23752; UPDATE t2 SET b=35491 WHERE a=23753; UPDATE t2 SET b=57498 WHERE a=23754; UPDATE t2 SET b=1810 WHERE a=23755; UPDATE t2 SET b=44455 WHERE a=23756; UPDATE t2 SET b=81985 WHERE a=23757; UPDATE t2 SET b=37912 WHERE a=23758; UPDATE t2 SET b=3770 WHERE a=23759; UPDATE t2 SET b=5086 WHERE a=23760; UPDATE t2 SET b=25768 WHERE a=23761; UPDATE t2 SET b=88880 WHERE a=23762; UPDATE t2 SET b=35535 WHERE a=23763; UPDATE t2 SET b=75468 WHERE a=23764; UPDATE t2 SET b=9663 WHERE a=23765; UPDATE t2 SET b=58094 WHERE a=23766; UPDATE t2 SET b=96522 WHERE a=23767; UPDATE t2 SET b=5871 WHERE a=23768; UPDATE t2 SET b=66534 WHERE a=23769; UPDATE t2 SET b=78650 WHERE a=23770; UPDATE t2 SET b=945 WHERE a=23771; UPDATE t2 SET b=77493 WHERE a=23772; UPDATE t2 SET b=99023 WHERE a=23773; UPDATE t2 SET b=56551 WHERE a=23774; UPDATE t2 SET b=53735 WHERE a=23775; UPDATE t2 SET b=53956 WHERE a=23776; UPDATE t2 SET b=36749 WHERE a=23777; UPDATE t2 SET b=56016 WHERE a=23778; UPDATE t2 SET b=110 WHERE a=23779; UPDATE t2 SET b=22492 WHERE a=23780; UPDATE t2 SET b=12110 WHERE a=23781; UPDATE t2 SET b=33927 WHERE a=23782; UPDATE t2 SET b=43076 WHERE a=23783; UPDATE t2 SET b=92171 WHERE a=23784; UPDATE t2 SET b=93309 WHERE a=23785; UPDATE t2 SET b=49529 WHERE a=23786; UPDATE t2 SET b=77945 WHERE a=23787; UPDATE t2 SET b=24960 WHERE a=23788; UPDATE t2 SET b=6460 WHERE a=23789; UPDATE t2 SET b=94348 WHERE a=23790; UPDATE t2 SET b=21306 WHERE a=23791; UPDATE t2 SET b=72014 WHERE a=23792; UPDATE t2 SET b=96175 WHERE a=23793; UPDATE t2 SET b=81603 WHERE a=23794; UPDATE t2 SET b=41230 WHERE a=23795; UPDATE t2 SET b=87930 WHERE a=23796; UPDATE t2 SET b=34929 WHERE a=23797; UPDATE t2 SET b=93287 WHERE a=23798; UPDATE t2 SET b=92343 WHERE a=23799; UPDATE t2 SET b=12646 WHERE a=23800; UPDATE t2 SET b=39140 WHERE a=23801; UPDATE t2 SET b=85609 WHERE a=23802; UPDATE t2 SET b=3348 WHERE a=23803; UPDATE t2 SET b=10408 WHERE a=23804; UPDATE t2 SET b=78466 WHERE a=23805; UPDATE t2 SET b=4458 WHERE a=23806; UPDATE t2 SET b=46140 WHERE a=23807; UPDATE t2 SET b=50 WHERE a=23808; UPDATE t2 SET b=3350 WHERE a=23809; UPDATE t2 SET b=88253 WHERE a=23810; UPDATE t2 SET b=277 WHERE a=23811; UPDATE t2 SET b=63411 WHERE a=23812; UPDATE t2 SET b=85009 WHERE a=23813; UPDATE t2 SET b=74393 WHERE a=23814; UPDATE t2 SET b=71304 WHERE a=23815; UPDATE t2 SET b=94324 WHERE a=23816; UPDATE t2 SET b=89110 WHERE a=23817; UPDATE t2 SET b=42247 WHERE a=23818; UPDATE t2 SET b=80560 WHERE a=23819; UPDATE t2 SET b=40480 WHERE a=23820; UPDATE t2 SET b=76827 WHERE a=23821; UPDATE t2 SET b=79156 WHERE a=23822; UPDATE t2 SET b=15698 WHERE a=23823; UPDATE t2 SET b=96241 WHERE a=23824; UPDATE t2 SET b=31430 WHERE a=23825; UPDATE t2 SET b=42260 WHERE a=23826; UPDATE t2 SET b=57211 WHERE a=23827; UPDATE t2 SET b=93693 WHERE a=23828; UPDATE t2 SET b=80266 WHERE a=23829; UPDATE t2 SET b=43370 WHERE a=23830; UPDATE t2 SET b=4398 WHERE a=23831; UPDATE t2 SET b=74514 WHERE a=23832; UPDATE t2 SET b=2813 WHERE a=23833; UPDATE t2 SET b=21083 WHERE a=23834; UPDATE t2 SET b=53797 WHERE a=23835; UPDATE t2 SET b=47499 WHERE a=23836; UPDATE t2 SET b=39939 WHERE a=23837; UPDATE t2 SET b=97586 WHERE a=23838; UPDATE t2 SET b=71125 WHERE a=23839; UPDATE t2 SET b=74468 WHERE a=23840; UPDATE t2 SET b=32986 WHERE a=23841; UPDATE t2 SET b=63885 WHERE a=23842; UPDATE t2 SET b=49566 WHERE a=23843; UPDATE t2 SET b=67338 WHERE a=23844; UPDATE t2 SET b=78789 WHERE a=23845; UPDATE t2 SET b=62139 WHERE a=23846; UPDATE t2 SET b=48999 WHERE a=23847; UPDATE t2 SET b=82465 WHERE a=23848; UPDATE t2 SET b=64083 WHERE a=23849; UPDATE t2 SET b=56710 WHERE a=23850; UPDATE t2 SET b=3046 WHERE a=23851; UPDATE t2 SET b=53214 WHERE a=23852; UPDATE t2 SET b=59039 WHERE a=23853; UPDATE t2 SET b=70753 WHERE a=23854; UPDATE t2 SET b=16796 WHERE a=23855; UPDATE t2 SET b=26257 WHERE a=23856; UPDATE t2 SET b=70346 WHERE a=23857; UPDATE t2 SET b=76665 WHERE a=23858; UPDATE t2 SET b=11011 WHERE a=23859; UPDATE t2 SET b=3338 WHERE a=23860; UPDATE t2 SET b=60063 WHERE a=23861; UPDATE t2 SET b=92325 WHERE a=23862; UPDATE t2 SET b=73792 WHERE a=23863; UPDATE t2 SET b=21974 WHERE a=23864; UPDATE t2 SET b=70965 WHERE a=23865; UPDATE t2 SET b=73100 WHERE a=23866; UPDATE t2 SET b=99602 WHERE a=23867; UPDATE t2 SET b=7869 WHERE a=23868; UPDATE t2 SET b=91492 WHERE a=23869; UPDATE t2 SET b=72334 WHERE a=23870; UPDATE t2 SET b=72392 WHERE a=23871; UPDATE t2 SET b=84519 WHERE a=23872; UPDATE t2 SET b=96426 WHERE a=23873; UPDATE t2 SET b=42768 WHERE a=23874; UPDATE t2 SET b=15195 WHERE a=23875; UPDATE t2 SET b=52045 WHERE a=23876; UPDATE t2 SET b=52707 WHERE a=23877; UPDATE t2 SET b=8982 WHERE a=23878; UPDATE t2 SET b=43081 WHERE a=23879; UPDATE t2 SET b=84384 WHERE a=23880; UPDATE t2 SET b=29915 WHERE a=23881; UPDATE t2 SET b=26478 WHERE a=23882; UPDATE t2 SET b=20296 WHERE a=23883; UPDATE t2 SET b=9825 WHERE a=23884; UPDATE t2 SET b=81132 WHERE a=23885; UPDATE t2 SET b=56197 WHERE a=23886; UPDATE t2 SET b=61163 WHERE a=23887; UPDATE t2 SET b=92297 WHERE a=23888; UPDATE t2 SET b=95765 WHERE a=23889; UPDATE t2 SET b=72821 WHERE a=23890; UPDATE t2 SET b=66355 WHERE a=23891; UPDATE t2 SET b=31095 WHERE a=23892; UPDATE t2 SET b=86626 WHERE a=23893; UPDATE t2 SET b=58612 WHERE a=23894; UPDATE t2 SET b=37457 WHERE a=23895; UPDATE t2 SET b=70107 WHERE a=23896; UPDATE t2 SET b=20477 WHERE a=23897; UPDATE t2 SET b=92058 WHERE a=23898; UPDATE t2 SET b=6812 WHERE a=23899; UPDATE t2 SET b=18914 WHERE a=23900; UPDATE t2 SET b=3091 WHERE a=23901; UPDATE t2 SET b=71668 WHERE a=23902; UPDATE t2 SET b=93635 WHERE a=23903; UPDATE t2 SET b=93197 WHERE a=23904; UPDATE t2 SET b=10570 WHERE a=23905; UPDATE t2 SET b=94782 WHERE a=23906; UPDATE t2 SET b=90993 WHERE a=23907; UPDATE t2 SET b=69942 WHERE a=23908; UPDATE t2 SET b=46583 WHERE a=23909; UPDATE t2 SET b=92783 WHERE a=23910; UPDATE t2 SET b=82943 WHERE a=23911; UPDATE t2 SET b=27409 WHERE a=23912; UPDATE t2 SET b=16768 WHERE a=23913; UPDATE t2 SET b=68475 WHERE a=23914; UPDATE t2 SET b=46951 WHERE a=23915; UPDATE t2 SET b=31797 WHERE a=23916; UPDATE t2 SET b=82131 WHERE a=23917; UPDATE t2 SET b=43250 WHERE a=23918; UPDATE t2 SET b=7923 WHERE a=23919; UPDATE t2 SET b=46635 WHERE a=23920; UPDATE t2 SET b=8772 WHERE a=23921; UPDATE t2 SET b=92270 WHERE a=23922; UPDATE t2 SET b=52552 WHERE a=23923; UPDATE t2 SET b=47534 WHERE a=23924; UPDATE t2 SET b=67393 WHERE a=23925; UPDATE t2 SET b=64636 WHERE a=23926; UPDATE t2 SET b=37399 WHERE a=23927; UPDATE t2 SET b=23449 WHERE a=23928; UPDATE t2 SET b=27352 WHERE a=23929; UPDATE t2 SET b=12054 WHERE a=23930; UPDATE t2 SET b=38233 WHERE a=23931; UPDATE t2 SET b=11711 WHERE a=23932; UPDATE t2 SET b=57423 WHERE a=23933; UPDATE t2 SET b=33151 WHERE a=23934; UPDATE t2 SET b=62959 WHERE a=23935; UPDATE t2 SET b=45014 WHERE a=23936; UPDATE t2 SET b=84974 WHERE a=23937; UPDATE t2 SET b=48158 WHERE a=23938; UPDATE t2 SET b=42420 WHERE a=23939; UPDATE t2 SET b=48327 WHERE a=23940; UPDATE t2 SET b=90306 WHERE a=23941; UPDATE t2 SET b=27869 WHERE a=23942; UPDATE t2 SET b=70978 WHERE a=23943; UPDATE t2 SET b=26750 WHERE a=23944; UPDATE t2 SET b=73571 WHERE a=23945; UPDATE t2 SET b=71599 WHERE a=23946; UPDATE t2 SET b=92789 WHERE a=23947; UPDATE t2 SET b=80413 WHERE a=23948; UPDATE t2 SET b=90201 WHERE a=23949; UPDATE t2 SET b=18520 WHERE a=23950; UPDATE t2 SET b=91958 WHERE a=23951; UPDATE t2 SET b=33227 WHERE a=23952; UPDATE t2 SET b=65963 WHERE a=23953; UPDATE t2 SET b=93138 WHERE a=23954; UPDATE t2 SET b=3279 WHERE a=23955; UPDATE t2 SET b=52966 WHERE a=23956; UPDATE t2 SET b=2557 WHERE a=23957; UPDATE t2 SET b=25743 WHERE a=23958; UPDATE t2 SET b=2640 WHERE a=23959; UPDATE t2 SET b=63308 WHERE a=23960; UPDATE t2 SET b=39718 WHERE a=23961; UPDATE t2 SET b=5903 WHERE a=23962; UPDATE t2 SET b=35964 WHERE a=23963; UPDATE t2 SET b=6682 WHERE a=23964; UPDATE t2 SET b=60598 WHERE a=23965; UPDATE t2 SET b=96610 WHERE a=23966; UPDATE t2 SET b=67266 WHERE a=23967; UPDATE t2 SET b=48253 WHERE a=23968; UPDATE t2 SET b=69086 WHERE a=23969; UPDATE t2 SET b=95 WHERE a=23970; UPDATE t2 SET b=99551 WHERE a=23971; UPDATE t2 SET b=53391 WHERE a=23972; UPDATE t2 SET b=94695 WHERE a=23973; UPDATE t2 SET b=14819 WHERE a=23974; UPDATE t2 SET b=3566 WHERE a=23975; UPDATE t2 SET b=49396 WHERE a=23976; UPDATE t2 SET b=29331 WHERE a=23977; UPDATE t2 SET b=3670 WHERE a=23978; UPDATE t2 SET b=62397 WHERE a=23979; UPDATE t2 SET b=32284 WHERE a=23980; UPDATE t2 SET b=67400 WHERE a=23981; UPDATE t2 SET b=17125 WHERE a=23982; UPDATE t2 SET b=6054 WHERE a=23983; UPDATE t2 SET b=57421 WHERE a=23984; UPDATE t2 SET b=62135 WHERE a=23985; UPDATE t2 SET b=1420 WHERE a=23986; UPDATE t2 SET b=93066 WHERE a=23987; UPDATE t2 SET b=17811 WHERE a=23988; UPDATE t2 SET b=4684 WHERE a=23989; UPDATE t2 SET b=34537 WHERE a=23990; UPDATE t2 SET b=72593 WHERE a=23991; UPDATE t2 SET b=20702 WHERE a=23992; UPDATE t2 SET b=21499 WHERE a=23993; UPDATE t2 SET b=49323 WHERE a=23994; UPDATE t2 SET b=85818 WHERE a=23995; UPDATE t2 SET b=12090 WHERE a=23996; UPDATE t2 SET b=16287 WHERE a=23997; UPDATE t2 SET b=41871 WHERE a=23998; UPDATE t2 SET b=4106 WHERE a=23999; UPDATE t2 SET b=43013 WHERE a=24000; UPDATE t2 SET b=19636 WHERE a=24001; UPDATE t2 SET b=25150 WHERE a=24002; UPDATE t2 SET b=4003 WHERE a=24003; UPDATE t2 SET b=49511 WHERE a=24004; UPDATE t2 SET b=44575 WHERE a=24005; UPDATE t2 SET b=36718 WHERE a=24006; UPDATE t2 SET b=3598 WHERE a=24007; UPDATE t2 SET b=27840 WHERE a=24008; UPDATE t2 SET b=62719 WHERE a=24009; UPDATE t2 SET b=57307 WHERE a=24010; UPDATE t2 SET b=16066 WHERE a=24011; UPDATE t2 SET b=41375 WHERE a=24012; UPDATE t2 SET b=70842 WHERE a=24013; UPDATE t2 SET b=29032 WHERE a=24014; UPDATE t2 SET b=59464 WHERE a=24015; UPDATE t2 SET b=70149 WHERE a=24016; UPDATE t2 SET b=86560 WHERE a=24017; UPDATE t2 SET b=63174 WHERE a=24018; UPDATE t2 SET b=65423 WHERE a=24019; UPDATE t2 SET b=7366 WHERE a=24020; UPDATE t2 SET b=45046 WHERE a=24021; UPDATE t2 SET b=42311 WHERE a=24022; UPDATE t2 SET b=77154 WHERE a=24023; UPDATE t2 SET b=83803 WHERE a=24024; UPDATE t2 SET b=21476 WHERE a=24025; UPDATE t2 SET b=828 WHERE a=24026; UPDATE t2 SET b=59703 WHERE a=24027; UPDATE t2 SET b=90297 WHERE a=24028; UPDATE t2 SET b=29442 WHERE a=24029; UPDATE t2 SET b=37 WHERE a=24030; UPDATE t2 SET b=30746 WHERE a=24031; UPDATE t2 SET b=93740 WHERE a=24032; UPDATE t2 SET b=70937 WHERE a=24033; UPDATE t2 SET b=74502 WHERE a=24034; UPDATE t2 SET b=92893 WHERE a=24035; UPDATE t2 SET b=17281 WHERE a=24036; UPDATE t2 SET b=38676 WHERE a=24037; UPDATE t2 SET b=84448 WHERE a=24038; UPDATE t2 SET b=58215 WHERE a=24039; UPDATE t2 SET b=32264 WHERE a=24040; UPDATE t2 SET b=68402 WHERE a=24041; UPDATE t2 SET b=75872 WHERE a=24042; UPDATE t2 SET b=76615 WHERE a=24043; UPDATE t2 SET b=18794 WHERE a=24044; UPDATE t2 SET b=78853 WHERE a=24045; UPDATE t2 SET b=81892 WHERE a=24046; UPDATE t2 SET b=83339 WHERE a=24047; UPDATE t2 SET b=4025 WHERE a=24048; UPDATE t2 SET b=16451 WHERE a=24049; UPDATE t2 SET b=65846 WHERE a=24050; UPDATE t2 SET b=82042 WHERE a=24051; UPDATE t2 SET b=4294 WHERE a=24052; UPDATE t2 SET b=24149 WHERE a=24053; UPDATE t2 SET b=29931 WHERE a=24054; UPDATE t2 SET b=43808 WHERE a=24055; UPDATE t2 SET b=15912 WHERE a=24056; UPDATE t2 SET b=35138 WHERE a=24057; UPDATE t2 SET b=19427 WHERE a=24058; UPDATE t2 SET b=48758 WHERE a=24059; UPDATE t2 SET b=28179 WHERE a=24060; UPDATE t2 SET b=94185 WHERE a=24061; UPDATE t2 SET b=22866 WHERE a=24062; UPDATE t2 SET b=96916 WHERE a=24063; UPDATE t2 SET b=20040 WHERE a=24064; UPDATE t2 SET b=94431 WHERE a=24065; UPDATE t2 SET b=73823 WHERE a=24066; UPDATE t2 SET b=21297 WHERE a=24067; UPDATE t2 SET b=24374 WHERE a=24068; UPDATE t2 SET b=74507 WHERE a=24069; UPDATE t2 SET b=71370 WHERE a=24070; UPDATE t2 SET b=10175 WHERE a=24071; UPDATE t2 SET b=30118 WHERE a=24072; UPDATE t2 SET b=83836 WHERE a=24073; UPDATE t2 SET b=45092 WHERE a=24074; UPDATE t2 SET b=54701 WHERE a=24075; UPDATE t2 SET b=34645 WHERE a=24076; UPDATE t2 SET b=42355 WHERE a=24077; UPDATE t2 SET b=62683 WHERE a=24078; UPDATE t2 SET b=7769 WHERE a=24079; UPDATE t2 SET b=17907 WHERE a=24080; UPDATE t2 SET b=96226 WHERE a=24081; UPDATE t2 SET b=20635 WHERE a=24082; UPDATE t2 SET b=52887 WHERE a=24083; UPDATE t2 SET b=76154 WHERE a=24084; UPDATE t2 SET b=44709 WHERE a=24085; UPDATE t2 SET b=86889 WHERE a=24086; UPDATE t2 SET b=74752 WHERE a=24087; UPDATE t2 SET b=75090 WHERE a=24088; UPDATE t2 SET b=20162 WHERE a=24089; UPDATE t2 SET b=79370 WHERE a=24090; UPDATE t2 SET b=89269 WHERE a=24091; UPDATE t2 SET b=14617 WHERE a=24092; UPDATE t2 SET b=66869 WHERE a=24093; UPDATE t2 SET b=99067 WHERE a=24094; UPDATE t2 SET b=12857 WHERE a=24095; UPDATE t2 SET b=96561 WHERE a=24096; UPDATE t2 SET b=36323 WHERE a=24097; UPDATE t2 SET b=71112 WHERE a=24098; UPDATE t2 SET b=80698 WHERE a=24099; UPDATE t2 SET b=69981 WHERE a=24100; UPDATE t2 SET b=7553 WHERE a=24101; UPDATE t2 SET b=31776 WHERE a=24102; UPDATE t2 SET b=73899 WHERE a=24103; UPDATE t2 SET b=14177 WHERE a=24104; UPDATE t2 SET b=59237 WHERE a=24105; UPDATE t2 SET b=98251 WHERE a=24106; UPDATE t2 SET b=2698 WHERE a=24107; UPDATE t2 SET b=84194 WHERE a=24108; UPDATE t2 SET b=62293 WHERE a=24109; UPDATE t2 SET b=30852 WHERE a=24110; UPDATE t2 SET b=34556 WHERE a=24111; UPDATE t2 SET b=49945 WHERE a=24112; UPDATE t2 SET b=53859 WHERE a=24113; UPDATE t2 SET b=13611 WHERE a=24114; UPDATE t2 SET b=50245 WHERE a=24115; UPDATE t2 SET b=90331 WHERE a=24116; UPDATE t2 SET b=73599 WHERE a=24117; UPDATE t2 SET b=1455 WHERE a=24118; UPDATE t2 SET b=65657 WHERE a=24119; UPDATE t2 SET b=64669 WHERE a=24120; UPDATE t2 SET b=12610 WHERE a=24121; UPDATE t2 SET b=66435 WHERE a=24122; UPDATE t2 SET b=83285 WHERE a=24123; UPDATE t2 SET b=62540 WHERE a=24124; UPDATE t2 SET b=54956 WHERE a=24125; UPDATE t2 SET b=82087 WHERE a=24126; UPDATE t2 SET b=39159 WHERE a=24127; UPDATE t2 SET b=53195 WHERE a=24128; UPDATE t2 SET b=98498 WHERE a=24129; UPDATE t2 SET b=69273 WHERE a=24130; UPDATE t2 SET b=72288 WHERE a=24131; UPDATE t2 SET b=65498 WHERE a=24132; UPDATE t2 SET b=11569 WHERE a=24133; UPDATE t2 SET b=92463 WHERE a=24134; UPDATE t2 SET b=84253 WHERE a=24135; UPDATE t2 SET b=18414 WHERE a=24136; UPDATE t2 SET b=21419 WHERE a=24137; UPDATE t2 SET b=16838 WHERE a=24138; UPDATE t2 SET b=66665 WHERE a=24139; UPDATE t2 SET b=4735 WHERE a=24140; UPDATE t2 SET b=50438 WHERE a=24141; UPDATE t2 SET b=21904 WHERE a=24142; UPDATE t2 SET b=18388 WHERE a=24143; UPDATE t2 SET b=75426 WHERE a=24144; UPDATE t2 SET b=3090 WHERE a=24145; UPDATE t2 SET b=86423 WHERE a=24146; UPDATE t2 SET b=57429 WHERE a=24147; UPDATE t2 SET b=58294 WHERE a=24148; UPDATE t2 SET b=36522 WHERE a=24149; UPDATE t2 SET b=43097 WHERE a=24150; UPDATE t2 SET b=92330 WHERE a=24151; UPDATE t2 SET b=79385 WHERE a=24152; UPDATE t2 SET b=74785 WHERE a=24153; UPDATE t2 SET b=3327 WHERE a=24154; UPDATE t2 SET b=29796 WHERE a=24155; UPDATE t2 SET b=79823 WHERE a=24156; UPDATE t2 SET b=61479 WHERE a=24157; UPDATE t2 SET b=57969 WHERE a=24158; UPDATE t2 SET b=15967 WHERE a=24159; UPDATE t2 SET b=93227 WHERE a=24160; UPDATE t2 SET b=49210 WHERE a=24161; UPDATE t2 SET b=94198 WHERE a=24162; UPDATE t2 SET b=11996 WHERE a=24163; UPDATE t2 SET b=19324 WHERE a=24164; UPDATE t2 SET b=72022 WHERE a=24165; UPDATE t2 SET b=71465 WHERE a=24166; UPDATE t2 SET b=26829 WHERE a=24167; UPDATE t2 SET b=42936 WHERE a=24168; UPDATE t2 SET b=37881 WHERE a=24169; UPDATE t2 SET b=3056 WHERE a=24170; UPDATE t2 SET b=33666 WHERE a=24171; UPDATE t2 SET b=62484 WHERE a=24172; UPDATE t2 SET b=16168 WHERE a=24173; UPDATE t2 SET b=88228 WHERE a=24174; UPDATE t2 SET b=5821 WHERE a=24175; UPDATE t2 SET b=80006 WHERE a=24176; UPDATE t2 SET b=59482 WHERE a=24177; UPDATE t2 SET b=28908 WHERE a=24178; UPDATE t2 SET b=65583 WHERE a=24179; UPDATE t2 SET b=74224 WHERE a=24180; UPDATE t2 SET b=83007 WHERE a=24181; UPDATE t2 SET b=99455 WHERE a=24182; UPDATE t2 SET b=57557 WHERE a=24183; UPDATE t2 SET b=16013 WHERE a=24184; UPDATE t2 SET b=4448 WHERE a=24185; UPDATE t2 SET b=47366 WHERE a=24186; UPDATE t2 SET b=4133 WHERE a=24187; UPDATE t2 SET b=44344 WHERE a=24188; UPDATE t2 SET b=67268 WHERE a=24189; UPDATE t2 SET b=91789 WHERE a=24190; UPDATE t2 SET b=84432 WHERE a=24191; UPDATE t2 SET b=54414 WHERE a=24192; UPDATE t2 SET b=81243 WHERE a=24193; UPDATE t2 SET b=99112 WHERE a=24194; UPDATE t2 SET b=39056 WHERE a=24195; UPDATE t2 SET b=10101 WHERE a=24196; UPDATE t2 SET b=65251 WHERE a=24197; UPDATE t2 SET b=40999 WHERE a=24198; UPDATE t2 SET b=1521 WHERE a=24199; UPDATE t2 SET b=27080 WHERE a=24200; UPDATE t2 SET b=1764 WHERE a=24201; UPDATE t2 SET b=10171 WHERE a=24202; UPDATE t2 SET b=92850 WHERE a=24203; UPDATE t2 SET b=60956 WHERE a=24204; UPDATE t2 SET b=40071 WHERE a=24205; UPDATE t2 SET b=11718 WHERE a=24206; UPDATE t2 SET b=36149 WHERE a=24207; UPDATE t2 SET b=99187 WHERE a=24208; UPDATE t2 SET b=3554 WHERE a=24209; UPDATE t2 SET b=2294 WHERE a=24210; UPDATE t2 SET b=29515 WHERE a=24211; UPDATE t2 SET b=82406 WHERE a=24212; UPDATE t2 SET b=92586 WHERE a=24213; UPDATE t2 SET b=94855 WHERE a=24214; UPDATE t2 SET b=1873 WHERE a=24215; UPDATE t2 SET b=21714 WHERE a=24216; UPDATE t2 SET b=41416 WHERE a=24217; UPDATE t2 SET b=8097 WHERE a=24218; UPDATE t2 SET b=4927 WHERE a=24219; UPDATE t2 SET b=58949 WHERE a=24220; UPDATE t2 SET b=49495 WHERE a=24221; UPDATE t2 SET b=54647 WHERE a=24222; UPDATE t2 SET b=51229 WHERE a=24223; UPDATE t2 SET b=27291 WHERE a=24224; UPDATE t2 SET b=36198 WHERE a=24225; UPDATE t2 SET b=9901 WHERE a=24226; UPDATE t2 SET b=65395 WHERE a=24227; UPDATE t2 SET b=63362 WHERE a=24228; UPDATE t2 SET b=47127 WHERE a=24229; UPDATE t2 SET b=6868 WHERE a=24230; UPDATE t2 SET b=35372 WHERE a=24231; UPDATE t2 SET b=91497 WHERE a=24232; UPDATE t2 SET b=41082 WHERE a=24233; UPDATE t2 SET b=24643 WHERE a=24234; UPDATE t2 SET b=817 WHERE a=24235; UPDATE t2 SET b=95652 WHERE a=24236; UPDATE t2 SET b=95048 WHERE a=24237; UPDATE t2 SET b=67256 WHERE a=24238; UPDATE t2 SET b=44591 WHERE a=24239; UPDATE t2 SET b=12886 WHERE a=24240; UPDATE t2 SET b=21180 WHERE a=24241; UPDATE t2 SET b=5352 WHERE a=24242; UPDATE t2 SET b=93595 WHERE a=24243; UPDATE t2 SET b=17542 WHERE a=24244; UPDATE t2 SET b=96784 WHERE a=24245; UPDATE t2 SET b=73203 WHERE a=24246; UPDATE t2 SET b=72052 WHERE a=24247; UPDATE t2 SET b=75518 WHERE a=24248; UPDATE t2 SET b=91692 WHERE a=24249; UPDATE t2 SET b=34493 WHERE a=24250; UPDATE t2 SET b=98746 WHERE a=24251; UPDATE t2 SET b=2743 WHERE a=24252; UPDATE t2 SET b=14009 WHERE a=24253; UPDATE t2 SET b=72737 WHERE a=24254; UPDATE t2 SET b=47788 WHERE a=24255; UPDATE t2 SET b=76284 WHERE a=24256; UPDATE t2 SET b=72267 WHERE a=24257; UPDATE t2 SET b=36513 WHERE a=24258; UPDATE t2 SET b=52757 WHERE a=24259; UPDATE t2 SET b=55505 WHERE a=24260; UPDATE t2 SET b=71681 WHERE a=24261; UPDATE t2 SET b=15465 WHERE a=24262; UPDATE t2 SET b=68659 WHERE a=24263; UPDATE t2 SET b=65140 WHERE a=24264; UPDATE t2 SET b=13754 WHERE a=24265; UPDATE t2 SET b=34094 WHERE a=24266; UPDATE t2 SET b=94542 WHERE a=24267; UPDATE t2 SET b=46369 WHERE a=24268; UPDATE t2 SET b=63075 WHERE a=24269; UPDATE t2 SET b=28909 WHERE a=24270; UPDATE t2 SET b=82356 WHERE a=24271; UPDATE t2 SET b=65786 WHERE a=24272; UPDATE t2 SET b=4316 WHERE a=24273; UPDATE t2 SET b=89243 WHERE a=24274; UPDATE t2 SET b=14971 WHERE a=24275; UPDATE t2 SET b=33812 WHERE a=24276; UPDATE t2 SET b=7662 WHERE a=24277; UPDATE t2 SET b=383 WHERE a=24278; UPDATE t2 SET b=94254 WHERE a=24279; UPDATE t2 SET b=57471 WHERE a=24280; UPDATE t2 SET b=34638 WHERE a=24281; UPDATE t2 SET b=4199 WHERE a=24282; UPDATE t2 SET b=3324 WHERE a=24283; UPDATE t2 SET b=44983 WHERE a=24284; UPDATE t2 SET b=26292 WHERE a=24285; UPDATE t2 SET b=27914 WHERE a=24286; UPDATE t2 SET b=41731 WHERE a=24287; UPDATE t2 SET b=79791 WHERE a=24288; UPDATE t2 SET b=13931 WHERE a=24289; UPDATE t2 SET b=73283 WHERE a=24290; UPDATE t2 SET b=72600 WHERE a=24291; UPDATE t2 SET b=67559 WHERE a=24292; UPDATE t2 SET b=82272 WHERE a=24293; UPDATE t2 SET b=29949 WHERE a=24294; UPDATE t2 SET b=65100 WHERE a=24295; UPDATE t2 SET b=72402 WHERE a=24296; UPDATE t2 SET b=96447 WHERE a=24297; UPDATE t2 SET b=98925 WHERE a=24298; UPDATE t2 SET b=33048 WHERE a=24299; UPDATE t2 SET b=7290 WHERE a=24300; UPDATE t2 SET b=73168 WHERE a=24301; UPDATE t2 SET b=7276 WHERE a=24302; UPDATE t2 SET b=88288 WHERE a=24303; UPDATE t2 SET b=2513 WHERE a=24304; UPDATE t2 SET b=97333 WHERE a=24305; UPDATE t2 SET b=16440 WHERE a=24306; UPDATE t2 SET b=44480 WHERE a=24307; UPDATE t2 SET b=48232 WHERE a=24308; UPDATE t2 SET b=69986 WHERE a=24309; UPDATE t2 SET b=7248 WHERE a=24310; UPDATE t2 SET b=2853 WHERE a=24311; UPDATE t2 SET b=37701 WHERE a=24312; UPDATE t2 SET b=23727 WHERE a=24313; UPDATE t2 SET b=58353 WHERE a=24314; UPDATE t2 SET b=18107 WHERE a=24315; UPDATE t2 SET b=8577 WHERE a=24316; UPDATE t2 SET b=99821 WHERE a=24317; UPDATE t2 SET b=11412 WHERE a=24318; UPDATE t2 SET b=81022 WHERE a=24319; UPDATE t2 SET b=3708 WHERE a=24320; UPDATE t2 SET b=55715 WHERE a=24321; UPDATE t2 SET b=89023 WHERE a=24322; UPDATE t2 SET b=79718 WHERE a=24323; UPDATE t2 SET b=20865 WHERE a=24324; UPDATE t2 SET b=59831 WHERE a=24325; UPDATE t2 SET b=69794 WHERE a=24326; UPDATE t2 SET b=73710 WHERE a=24327; UPDATE t2 SET b=43872 WHERE a=24328; UPDATE t2 SET b=16479 WHERE a=24329; UPDATE t2 SET b=33366 WHERE a=24330; UPDATE t2 SET b=8787 WHERE a=24331; UPDATE t2 SET b=88238 WHERE a=24332; UPDATE t2 SET b=95676 WHERE a=24333; UPDATE t2 SET b=84321 WHERE a=24334; UPDATE t2 SET b=5880 WHERE a=24335; UPDATE t2 SET b=91687 WHERE a=24336; UPDATE t2 SET b=1928 WHERE a=24337; UPDATE t2 SET b=52296 WHERE a=24338; UPDATE t2 SET b=46200 WHERE a=24339; UPDATE t2 SET b=28182 WHERE a=24340; UPDATE t2 SET b=91460 WHERE a=24341; UPDATE t2 SET b=75450 WHERE a=24342; UPDATE t2 SET b=93502 WHERE a=24343; UPDATE t2 SET b=60316 WHERE a=24344; UPDATE t2 SET b=75120 WHERE a=24345; UPDATE t2 SET b=55401 WHERE a=24346; UPDATE t2 SET b=26835 WHERE a=24347; UPDATE t2 SET b=65520 WHERE a=24348; UPDATE t2 SET b=11001 WHERE a=24349; UPDATE t2 SET b=68621 WHERE a=24350; UPDATE t2 SET b=72076 WHERE a=24351; UPDATE t2 SET b=80529 WHERE a=24352; UPDATE t2 SET b=42835 WHERE a=24353; UPDATE t2 SET b=12858 WHERE a=24354; UPDATE t2 SET b=43081 WHERE a=24355; UPDATE t2 SET b=5732 WHERE a=24356; UPDATE t2 SET b=2984 WHERE a=24357; UPDATE t2 SET b=99503 WHERE a=24358; UPDATE t2 SET b=82277 WHERE a=24359; UPDATE t2 SET b=12290 WHERE a=24360; UPDATE t2 SET b=25014 WHERE a=24361; UPDATE t2 SET b=75356 WHERE a=24362; UPDATE t2 SET b=66795 WHERE a=24363; UPDATE t2 SET b=38017 WHERE a=24364; UPDATE t2 SET b=236 WHERE a=24365; UPDATE t2 SET b=57651 WHERE a=24366; UPDATE t2 SET b=30321 WHERE a=24367; UPDATE t2 SET b=8845 WHERE a=24368; UPDATE t2 SET b=52893 WHERE a=24369; UPDATE t2 SET b=60891 WHERE a=24370; UPDATE t2 SET b=62751 WHERE a=24371; UPDATE t2 SET b=32486 WHERE a=24372; UPDATE t2 SET b=25138 WHERE a=24373; UPDATE t2 SET b=10408 WHERE a=24374; UPDATE t2 SET b=74324 WHERE a=24375; UPDATE t2 SET b=91143 WHERE a=24376; UPDATE t2 SET b=85306 WHERE a=24377; UPDATE t2 SET b=48004 WHERE a=24378; UPDATE t2 SET b=77479 WHERE a=24379; UPDATE t2 SET b=63928 WHERE a=24380; UPDATE t2 SET b=61772 WHERE a=24381; UPDATE t2 SET b=45270 WHERE a=24382; UPDATE t2 SET b=60212 WHERE a=24383; UPDATE t2 SET b=34720 WHERE a=24384; UPDATE t2 SET b=22309 WHERE a=24385; UPDATE t2 SET b=12185 WHERE a=24386; UPDATE t2 SET b=14741 WHERE a=24387; UPDATE t2 SET b=54874 WHERE a=24388; UPDATE t2 SET b=95784 WHERE a=24389; UPDATE t2 SET b=38340 WHERE a=24390; UPDATE t2 SET b=988 WHERE a=24391; UPDATE t2 SET b=92909 WHERE a=24392; UPDATE t2 SET b=1648 WHERE a=24393; UPDATE t2 SET b=96539 WHERE a=24394; UPDATE t2 SET b=74785 WHERE a=24395; UPDATE t2 SET b=4299 WHERE a=24396; UPDATE t2 SET b=12483 WHERE a=24397; UPDATE t2 SET b=72889 WHERE a=24398; UPDATE t2 SET b=78607 WHERE a=24399; UPDATE t2 SET b=47100 WHERE a=24400; UPDATE t2 SET b=69593 WHERE a=24401; UPDATE t2 SET b=6365 WHERE a=24402; UPDATE t2 SET b=61793 WHERE a=24403; UPDATE t2 SET b=72276 WHERE a=24404; UPDATE t2 SET b=41603 WHERE a=24405; UPDATE t2 SET b=96343 WHERE a=24406; UPDATE t2 SET b=78672 WHERE a=24407; UPDATE t2 SET b=59126 WHERE a=24408; UPDATE t2 SET b=22280 WHERE a=24409; UPDATE t2 SET b=74890 WHERE a=24410; UPDATE t2 SET b=60122 WHERE a=24411; UPDATE t2 SET b=10892 WHERE a=24412; UPDATE t2 SET b=40170 WHERE a=24413; UPDATE t2 SET b=90293 WHERE a=24414; UPDATE t2 SET b=55593 WHERE a=24415; UPDATE t2 SET b=54123 WHERE a=24416; UPDATE t2 SET b=40055 WHERE a=24417; UPDATE t2 SET b=65905 WHERE a=24418; UPDATE t2 SET b=58193 WHERE a=24419; UPDATE t2 SET b=72235 WHERE a=24420; UPDATE t2 SET b=6046 WHERE a=24421; UPDATE t2 SET b=38061 WHERE a=24422; UPDATE t2 SET b=90627 WHERE a=24423; UPDATE t2 SET b=10805 WHERE a=24424; UPDATE t2 SET b=78416 WHERE a=24425; UPDATE t2 SET b=86678 WHERE a=24426; UPDATE t2 SET b=143 WHERE a=24427; UPDATE t2 SET b=6461 WHERE a=24428; UPDATE t2 SET b=58811 WHERE a=24429; UPDATE t2 SET b=21280 WHERE a=24430; UPDATE t2 SET b=1238 WHERE a=24431; UPDATE t2 SET b=88887 WHERE a=24432; UPDATE t2 SET b=86566 WHERE a=24433; UPDATE t2 SET b=32181 WHERE a=24434; UPDATE t2 SET b=69646 WHERE a=24435; UPDATE t2 SET b=74428 WHERE a=24436; UPDATE t2 SET b=74576 WHERE a=24437; UPDATE t2 SET b=24353 WHERE a=24438; UPDATE t2 SET b=59935 WHERE a=24439; UPDATE t2 SET b=96184 WHERE a=24440; UPDATE t2 SET b=96984 WHERE a=24441; UPDATE t2 SET b=66451 WHERE a=24442; UPDATE t2 SET b=27836 WHERE a=24443; UPDATE t2 SET b=26042 WHERE a=24444; UPDATE t2 SET b=48205 WHERE a=24445; UPDATE t2 SET b=91442 WHERE a=24446; UPDATE t2 SET b=5743 WHERE a=24447; UPDATE t2 SET b=82319 WHERE a=24448; UPDATE t2 SET b=88881 WHERE a=24449; UPDATE t2 SET b=49633 WHERE a=24450; UPDATE t2 SET b=59967 WHERE a=24451; UPDATE t2 SET b=70236 WHERE a=24452; UPDATE t2 SET b=30948 WHERE a=24453; UPDATE t2 SET b=47033 WHERE a=24454; UPDATE t2 SET b=66375 WHERE a=24455; UPDATE t2 SET b=32406 WHERE a=24456; UPDATE t2 SET b=28493 WHERE a=24457; UPDATE t2 SET b=4843 WHERE a=24458; UPDATE t2 SET b=93391 WHERE a=24459; UPDATE t2 SET b=95795 WHERE a=24460; UPDATE t2 SET b=77945 WHERE a=24461; UPDATE t2 SET b=83304 WHERE a=24462; UPDATE t2 SET b=90599 WHERE a=24463; UPDATE t2 SET b=6048 WHERE a=24464; UPDATE t2 SET b=9494 WHERE a=24465; UPDATE t2 SET b=97853 WHERE a=24466; UPDATE t2 SET b=79908 WHERE a=24467; UPDATE t2 SET b=34611 WHERE a=24468; UPDATE t2 SET b=45483 WHERE a=24469; UPDATE t2 SET b=89121 WHERE a=24470; UPDATE t2 SET b=53544 WHERE a=24471; UPDATE t2 SET b=23840 WHERE a=24472; UPDATE t2 SET b=56926 WHERE a=24473; UPDATE t2 SET b=67324 WHERE a=24474; UPDATE t2 SET b=16594 WHERE a=24475; UPDATE t2 SET b=38931 WHERE a=24476; UPDATE t2 SET b=86916 WHERE a=24477; UPDATE t2 SET b=37232 WHERE a=24478; UPDATE t2 SET b=2415 WHERE a=24479; UPDATE t2 SET b=45009 WHERE a=24480; UPDATE t2 SET b=47952 WHERE a=24481; UPDATE t2 SET b=62258 WHERE a=24482; UPDATE t2 SET b=94443 WHERE a=24483; UPDATE t2 SET b=89651 WHERE a=24484; UPDATE t2 SET b=85559 WHERE a=24485; UPDATE t2 SET b=39865 WHERE a=24486; UPDATE t2 SET b=19413 WHERE a=24487; UPDATE t2 SET b=1130 WHERE a=24488; UPDATE t2 SET b=61040 WHERE a=24489; UPDATE t2 SET b=44714 WHERE a=24490; UPDATE t2 SET b=30857 WHERE a=24491; UPDATE t2 SET b=24262 WHERE a=24492; UPDATE t2 SET b=41080 WHERE a=24493; UPDATE t2 SET b=68931 WHERE a=24494; UPDATE t2 SET b=64 WHERE a=24495; UPDATE t2 SET b=97667 WHERE a=24496; UPDATE t2 SET b=99547 WHERE a=24497; UPDATE t2 SET b=31487 WHERE a=24498; UPDATE t2 SET b=56569 WHERE a=24499; UPDATE t2 SET b=7624 WHERE a=24500; UPDATE t2 SET b=97416 WHERE a=24501; UPDATE t2 SET b=38295 WHERE a=24502; UPDATE t2 SET b=99405 WHERE a=24503; UPDATE t2 SET b=79366 WHERE a=24504; UPDATE t2 SET b=27421 WHERE a=24505; UPDATE t2 SET b=26481 WHERE a=24506; UPDATE t2 SET b=44047 WHERE a=24507; UPDATE t2 SET b=90917 WHERE a=24508; UPDATE t2 SET b=56191 WHERE a=24509; UPDATE t2 SET b=68219 WHERE a=24510; UPDATE t2 SET b=64184 WHERE a=24511; UPDATE t2 SET b=69087 WHERE a=24512; UPDATE t2 SET b=8320 WHERE a=24513; UPDATE t2 SET b=14332 WHERE a=24514; UPDATE t2 SET b=71361 WHERE a=24515; UPDATE t2 SET b=3098 WHERE a=24516; UPDATE t2 SET b=95012 WHERE a=24517; UPDATE t2 SET b=50484 WHERE a=24518; UPDATE t2 SET b=97214 WHERE a=24519; UPDATE t2 SET b=41393 WHERE a=24520; UPDATE t2 SET b=71994 WHERE a=24521; UPDATE t2 SET b=33574 WHERE a=24522; UPDATE t2 SET b=1633 WHERE a=24523; UPDATE t2 SET b=44757 WHERE a=24524; UPDATE t2 SET b=69873 WHERE a=24525; UPDATE t2 SET b=92193 WHERE a=24526; UPDATE t2 SET b=32834 WHERE a=24527; UPDATE t2 SET b=70537 WHERE a=24528; UPDATE t2 SET b=20230 WHERE a=24529; UPDATE t2 SET b=68637 WHERE a=24530; UPDATE t2 SET b=4004 WHERE a=24531; UPDATE t2 SET b=18286 WHERE a=24532; UPDATE t2 SET b=30755 WHERE a=24533; UPDATE t2 SET b=58859 WHERE a=24534; UPDATE t2 SET b=53328 WHERE a=24535; UPDATE t2 SET b=57526 WHERE a=24536; UPDATE t2 SET b=39948 WHERE a=24537; UPDATE t2 SET b=59704 WHERE a=24538; UPDATE t2 SET b=9868 WHERE a=24539; UPDATE t2 SET b=85245 WHERE a=24540; UPDATE t2 SET b=81593 WHERE a=24541; UPDATE t2 SET b=99940 WHERE a=24542; UPDATE t2 SET b=38660 WHERE a=24543; UPDATE t2 SET b=93232 WHERE a=24544; UPDATE t2 SET b=46221 WHERE a=24545; UPDATE t2 SET b=18283 WHERE a=24546; UPDATE t2 SET b=28734 WHERE a=24547; UPDATE t2 SET b=82620 WHERE a=24548; UPDATE t2 SET b=19917 WHERE a=24549; UPDATE t2 SET b=15164 WHERE a=24550; UPDATE t2 SET b=16432 WHERE a=24551; UPDATE t2 SET b=34516 WHERE a=24552; UPDATE t2 SET b=34406 WHERE a=24553; UPDATE t2 SET b=9258 WHERE a=24554; UPDATE t2 SET b=83079 WHERE a=24555; UPDATE t2 SET b=33590 WHERE a=24556; UPDATE t2 SET b=3891 WHERE a=24557; UPDATE t2 SET b=28337 WHERE a=24558; UPDATE t2 SET b=76551 WHERE a=24559; UPDATE t2 SET b=30053 WHERE a=24560; UPDATE t2 SET b=82826 WHERE a=24561; UPDATE t2 SET b=38999 WHERE a=24562; UPDATE t2 SET b=79269 WHERE a=24563; UPDATE t2 SET b=92299 WHERE a=24564; UPDATE t2 SET b=24392 WHERE a=24565; UPDATE t2 SET b=85383 WHERE a=24566; UPDATE t2 SET b=39549 WHERE a=24567; UPDATE t2 SET b=74162 WHERE a=24568; UPDATE t2 SET b=28735 WHERE a=24569; UPDATE t2 SET b=73329 WHERE a=24570; UPDATE t2 SET b=68547 WHERE a=24571; UPDATE t2 SET b=39595 WHERE a=24572; UPDATE t2 SET b=79796 WHERE a=24573; UPDATE t2 SET b=44039 WHERE a=24574; UPDATE t2 SET b=40746 WHERE a=24575; UPDATE t2 SET b=24689 WHERE a=24576; UPDATE t2 SET b=90000 WHERE a=24577; UPDATE t2 SET b=71642 WHERE a=24578; UPDATE t2 SET b=47823 WHERE a=24579; UPDATE t2 SET b=94945 WHERE a=24580; UPDATE t2 SET b=50027 WHERE a=24581; UPDATE t2 SET b=5790 WHERE a=24582; UPDATE t2 SET b=18413 WHERE a=24583; UPDATE t2 SET b=80939 WHERE a=24584; UPDATE t2 SET b=56374 WHERE a=24585; UPDATE t2 SET b=36383 WHERE a=24586; UPDATE t2 SET b=44267 WHERE a=24587; UPDATE t2 SET b=55390 WHERE a=24588; UPDATE t2 SET b=97258 WHERE a=24589; UPDATE t2 SET b=46120 WHERE a=24590; UPDATE t2 SET b=65385 WHERE a=24591; UPDATE t2 SET b=5282 WHERE a=24592; UPDATE t2 SET b=89247 WHERE a=24593; UPDATE t2 SET b=20755 WHERE a=24594; UPDATE t2 SET b=26900 WHERE a=24595; UPDATE t2 SET b=1157 WHERE a=24596; UPDATE t2 SET b=43851 WHERE a=24597; UPDATE t2 SET b=49127 WHERE a=24598; UPDATE t2 SET b=78374 WHERE a=24599; UPDATE t2 SET b=10009 WHERE a=24600; UPDATE t2 SET b=22974 WHERE a=24601; UPDATE t2 SET b=93779 WHERE a=24602; UPDATE t2 SET b=36429 WHERE a=24603; UPDATE t2 SET b=15067 WHERE a=24604; UPDATE t2 SET b=47079 WHERE a=24605; UPDATE t2 SET b=82939 WHERE a=24606; UPDATE t2 SET b=20839 WHERE a=24607; UPDATE t2 SET b=41434 WHERE a=24608; UPDATE t2 SET b=88551 WHERE a=24609; UPDATE t2 SET b=44201 WHERE a=24610; UPDATE t2 SET b=96744 WHERE a=24611; UPDATE t2 SET b=17367 WHERE a=24612; UPDATE t2 SET b=59821 WHERE a=24613; UPDATE t2 SET b=60560 WHERE a=24614; UPDATE t2 SET b=75370 WHERE a=24615; UPDATE t2 SET b=26481 WHERE a=24616; UPDATE t2 SET b=49841 WHERE a=24617; UPDATE t2 SET b=60404 WHERE a=24618; UPDATE t2 SET b=12762 WHERE a=24619; UPDATE t2 SET b=5865 WHERE a=24620; UPDATE t2 SET b=66958 WHERE a=24621; UPDATE t2 SET b=42515 WHERE a=24622; UPDATE t2 SET b=70552 WHERE a=24623; UPDATE t2 SET b=26851 WHERE a=24624; UPDATE t2 SET b=75261 WHERE a=24625; UPDATE t2 SET b=59336 WHERE a=24626; UPDATE t2 SET b=54165 WHERE a=24627; UPDATE t2 SET b=92515 WHERE a=24628; UPDATE t2 SET b=37969 WHERE a=24629; UPDATE t2 SET b=25180 WHERE a=24630; UPDATE t2 SET b=29214 WHERE a=24631; UPDATE t2 SET b=36951 WHERE a=24632; UPDATE t2 SET b=36308 WHERE a=24633; UPDATE t2 SET b=88948 WHERE a=24634; UPDATE t2 SET b=76650 WHERE a=24635; UPDATE t2 SET b=47537 WHERE a=24636; UPDATE t2 SET b=23036 WHERE a=24637; UPDATE t2 SET b=72868 WHERE a=24638; UPDATE t2 SET b=82555 WHERE a=24639; UPDATE t2 SET b=797 WHERE a=24640; UPDATE t2 SET b=38245 WHERE a=24641; UPDATE t2 SET b=81298 WHERE a=24642; UPDATE t2 SET b=30813 WHERE a=24643; UPDATE t2 SET b=79263 WHERE a=24644; UPDATE t2 SET b=61908 WHERE a=24645; UPDATE t2 SET b=42963 WHERE a=24646; UPDATE t2 SET b=98929 WHERE a=24647; UPDATE t2 SET b=86673 WHERE a=24648; UPDATE t2 SET b=17472 WHERE a=24649; UPDATE t2 SET b=50482 WHERE a=24650; UPDATE t2 SET b=26112 WHERE a=24651; UPDATE t2 SET b=82712 WHERE a=24652; UPDATE t2 SET b=39091 WHERE a=24653; UPDATE t2 SET b=50518 WHERE a=24654; UPDATE t2 SET b=62098 WHERE a=24655; UPDATE t2 SET b=61225 WHERE a=24656; UPDATE t2 SET b=15820 WHERE a=24657; UPDATE t2 SET b=79770 WHERE a=24658; UPDATE t2 SET b=95037 WHERE a=24659; UPDATE t2 SET b=87861 WHERE a=24660; UPDATE t2 SET b=61279 WHERE a=24661; UPDATE t2 SET b=66723 WHERE a=24662; UPDATE t2 SET b=77278 WHERE a=24663; UPDATE t2 SET b=35616 WHERE a=24664; UPDATE t2 SET b=32191 WHERE a=24665; UPDATE t2 SET b=96367 WHERE a=24666; UPDATE t2 SET b=17328 WHERE a=24667; UPDATE t2 SET b=89380 WHERE a=24668; UPDATE t2 SET b=29714 WHERE a=24669; UPDATE t2 SET b=82473 WHERE a=24670; UPDATE t2 SET b=18042 WHERE a=24671; UPDATE t2 SET b=74959 WHERE a=24672; UPDATE t2 SET b=30377 WHERE a=24673; UPDATE t2 SET b=12271 WHERE a=24674; UPDATE t2 SET b=87535 WHERE a=24675; UPDATE t2 SET b=40123 WHERE a=24676; UPDATE t2 SET b=9644 WHERE a=24677; UPDATE t2 SET b=70018 WHERE a=24678; UPDATE t2 SET b=38326 WHERE a=24679; UPDATE t2 SET b=31947 WHERE a=24680; UPDATE t2 SET b=16769 WHERE a=24681; UPDATE t2 SET b=91451 WHERE a=24682; UPDATE t2 SET b=88615 WHERE a=24683; UPDATE t2 SET b=2490 WHERE a=24684; UPDATE t2 SET b=52375 WHERE a=24685; UPDATE t2 SET b=85622 WHERE a=24686; UPDATE t2 SET b=99148 WHERE a=24687; UPDATE t2 SET b=53514 WHERE a=24688; UPDATE t2 SET b=27083 WHERE a=24689; UPDATE t2 SET b=84776 WHERE a=24690; UPDATE t2 SET b=53543 WHERE a=24691; UPDATE t2 SET b=59275 WHERE a=24692; UPDATE t2 SET b=31220 WHERE a=24693; UPDATE t2 SET b=9664 WHERE a=24694; UPDATE t2 SET b=53171 WHERE a=24695; UPDATE t2 SET b=13678 WHERE a=24696; UPDATE t2 SET b=31428 WHERE a=24697; UPDATE t2 SET b=28125 WHERE a=24698; UPDATE t2 SET b=31713 WHERE a=24699; UPDATE t2 SET b=63823 WHERE a=24700; UPDATE t2 SET b=70537 WHERE a=24701; UPDATE t2 SET b=7406 WHERE a=24702; UPDATE t2 SET b=92918 WHERE a=24703; UPDATE t2 SET b=35582 WHERE a=24704; UPDATE t2 SET b=89173 WHERE a=24705; UPDATE t2 SET b=51782 WHERE a=24706; UPDATE t2 SET b=94540 WHERE a=24707; UPDATE t2 SET b=98135 WHERE a=24708; UPDATE t2 SET b=44816 WHERE a=24709; UPDATE t2 SET b=50766 WHERE a=24710; UPDATE t2 SET b=82826 WHERE a=24711; UPDATE t2 SET b=45753 WHERE a=24712; UPDATE t2 SET b=92348 WHERE a=24713; UPDATE t2 SET b=17176 WHERE a=24714; UPDATE t2 SET b=46787 WHERE a=24715; UPDATE t2 SET b=21244 WHERE a=24716; UPDATE t2 SET b=59399 WHERE a=24717; UPDATE t2 SET b=55888 WHERE a=24718; UPDATE t2 SET b=8639 WHERE a=24719; UPDATE t2 SET b=18558 WHERE a=24720; UPDATE t2 SET b=4391 WHERE a=24721; UPDATE t2 SET b=23362 WHERE a=24722; UPDATE t2 SET b=67135 WHERE a=24723; UPDATE t2 SET b=57818 WHERE a=24724; UPDATE t2 SET b=6501 WHERE a=24725; UPDATE t2 SET b=16532 WHERE a=24726; UPDATE t2 SET b=49008 WHERE a=24727; UPDATE t2 SET b=12254 WHERE a=24728; UPDATE t2 SET b=14923 WHERE a=24729; UPDATE t2 SET b=84485 WHERE a=24730; UPDATE t2 SET b=69382 WHERE a=24731; UPDATE t2 SET b=75209 WHERE a=24732; UPDATE t2 SET b=88766 WHERE a=24733; UPDATE t2 SET b=56824 WHERE a=24734; UPDATE t2 SET b=22347 WHERE a=24735; UPDATE t2 SET b=26016 WHERE a=24736; UPDATE t2 SET b=28908 WHERE a=24737; UPDATE t2 SET b=7600 WHERE a=24738; UPDATE t2 SET b=35848 WHERE a=24739; UPDATE t2 SET b=40740 WHERE a=24740; UPDATE t2 SET b=13993 WHERE a=24741; UPDATE t2 SET b=23454 WHERE a=24742; UPDATE t2 SET b=32224 WHERE a=24743; UPDATE t2 SET b=35581 WHERE a=24744; UPDATE t2 SET b=63431 WHERE a=24745; UPDATE t2 SET b=40017 WHERE a=24746; UPDATE t2 SET b=68378 WHERE a=24747; UPDATE t2 SET b=92021 WHERE a=24748; UPDATE t2 SET b=76937 WHERE a=24749; UPDATE t2 SET b=99818 WHERE a=24750; UPDATE t2 SET b=72650 WHERE a=24751; UPDATE t2 SET b=91601 WHERE a=24752; UPDATE t2 SET b=38487 WHERE a=24753; UPDATE t2 SET b=59241 WHERE a=24754; UPDATE t2 SET b=12006 WHERE a=24755; UPDATE t2 SET b=65932 WHERE a=24756; UPDATE t2 SET b=71851 WHERE a=24757; UPDATE t2 SET b=30973 WHERE a=24758; UPDATE t2 SET b=14665 WHERE a=24759; UPDATE t2 SET b=82987 WHERE a=24760; UPDATE t2 SET b=13867 WHERE a=24761; UPDATE t2 SET b=26903 WHERE a=24762; UPDATE t2 SET b=59994 WHERE a=24763; UPDATE t2 SET b=31048 WHERE a=24764; UPDATE t2 SET b=14002 WHERE a=24765; UPDATE t2 SET b=73724 WHERE a=24766; UPDATE t2 SET b=47051 WHERE a=24767; UPDATE t2 SET b=6494 WHERE a=24768; UPDATE t2 SET b=65812 WHERE a=24769; UPDATE t2 SET b=69984 WHERE a=24770; UPDATE t2 SET b=86630 WHERE a=24771; UPDATE t2 SET b=54005 WHERE a=24772; UPDATE t2 SET b=95562 WHERE a=24773; UPDATE t2 SET b=36159 WHERE a=24774; UPDATE t2 SET b=50995 WHERE a=24775; UPDATE t2 SET b=21551 WHERE a=24776; UPDATE t2 SET b=10619 WHERE a=24777; UPDATE t2 SET b=57949 WHERE a=24778; UPDATE t2 SET b=8898 WHERE a=24779; UPDATE t2 SET b=30425 WHERE a=24780; UPDATE t2 SET b=25473 WHERE a=24781; UPDATE t2 SET b=12437 WHERE a=24782; UPDATE t2 SET b=69736 WHERE a=24783; UPDATE t2 SET b=7861 WHERE a=24784; UPDATE t2 SET b=18592 WHERE a=24785; UPDATE t2 SET b=97244 WHERE a=24786; UPDATE t2 SET b=10387 WHERE a=24787; UPDATE t2 SET b=70136 WHERE a=24788; UPDATE t2 SET b=50849 WHERE a=24789; UPDATE t2 SET b=21531 WHERE a=24790; UPDATE t2 SET b=82903 WHERE a=24791; UPDATE t2 SET b=20611 WHERE a=24792; UPDATE t2 SET b=53014 WHERE a=24793; UPDATE t2 SET b=46262 WHERE a=24794; UPDATE t2 SET b=49876 WHERE a=24795; UPDATE t2 SET b=38350 WHERE a=24796; UPDATE t2 SET b=34815 WHERE a=24797; UPDATE t2 SET b=27498 WHERE a=24798; UPDATE t2 SET b=95610 WHERE a=24799; UPDATE t2 SET b=53922 WHERE a=24800; UPDATE t2 SET b=72696 WHERE a=24801; UPDATE t2 SET b=28855 WHERE a=24802; UPDATE t2 SET b=87139 WHERE a=24803; UPDATE t2 SET b=8387 WHERE a=24804; UPDATE t2 SET b=15664 WHERE a=24805; UPDATE t2 SET b=30064 WHERE a=24806; UPDATE t2 SET b=51822 WHERE a=24807; UPDATE t2 SET b=43515 WHERE a=24808; UPDATE t2 SET b=10702 WHERE a=24809; UPDATE t2 SET b=78476 WHERE a=24810; UPDATE t2 SET b=12477 WHERE a=24811; UPDATE t2 SET b=27072 WHERE a=24812; UPDATE t2 SET b=60500 WHERE a=24813; UPDATE t2 SET b=9020 WHERE a=24814; UPDATE t2 SET b=57854 WHERE a=24815; UPDATE t2 SET b=23193 WHERE a=24816; UPDATE t2 SET b=6329 WHERE a=24817; UPDATE t2 SET b=2207 WHERE a=24818; UPDATE t2 SET b=3359 WHERE a=24819; UPDATE t2 SET b=3476 WHERE a=24820; UPDATE t2 SET b=21891 WHERE a=24821; UPDATE t2 SET b=4003 WHERE a=24822; UPDATE t2 SET b=18371 WHERE a=24823; UPDATE t2 SET b=51717 WHERE a=24824; UPDATE t2 SET b=6131 WHERE a=24825; UPDATE t2 SET b=10159 WHERE a=24826; UPDATE t2 SET b=19009 WHERE a=24827; UPDATE t2 SET b=90495 WHERE a=24828; UPDATE t2 SET b=12353 WHERE a=24829; UPDATE t2 SET b=44433 WHERE a=24830; UPDATE t2 SET b=31025 WHERE a=24831; UPDATE t2 SET b=30528 WHERE a=24832; UPDATE t2 SET b=51169 WHERE a=24833; UPDATE t2 SET b=69400 WHERE a=24834; UPDATE t2 SET b=96326 WHERE a=24835; UPDATE t2 SET b=31661 WHERE a=24836; UPDATE t2 SET b=6670 WHERE a=24837; UPDATE t2 SET b=63701 WHERE a=24838; UPDATE t2 SET b=20845 WHERE a=24839; UPDATE t2 SET b=52924 WHERE a=24840; UPDATE t2 SET b=64448 WHERE a=24841; UPDATE t2 SET b=6494 WHERE a=24842; UPDATE t2 SET b=20802 WHERE a=24843; UPDATE t2 SET b=6521 WHERE a=24844; UPDATE t2 SET b=70554 WHERE a=24845; UPDATE t2 SET b=41091 WHERE a=24846; UPDATE t2 SET b=83276 WHERE a=24847; UPDATE t2 SET b=16119 WHERE a=24848; UPDATE t2 SET b=91533 WHERE a=24849; UPDATE t2 SET b=63562 WHERE a=24850; UPDATE t2 SET b=71858 WHERE a=24851; UPDATE t2 SET b=30924 WHERE a=24852; UPDATE t2 SET b=21101 WHERE a=24853; UPDATE t2 SET b=67622 WHERE a=24854; UPDATE t2 SET b=64743 WHERE a=24855; UPDATE t2 SET b=44668 WHERE a=24856; UPDATE t2 SET b=25625 WHERE a=24857; UPDATE t2 SET b=16160 WHERE a=24858; UPDATE t2 SET b=15556 WHERE a=24859; UPDATE t2 SET b=81122 WHERE a=24860; UPDATE t2 SET b=56392 WHERE a=24861; UPDATE t2 SET b=97080 WHERE a=24862; UPDATE t2 SET b=2066 WHERE a=24863; UPDATE t2 SET b=50339 WHERE a=24864; UPDATE t2 SET b=53237 WHERE a=24865; UPDATE t2 SET b=78793 WHERE a=24866; UPDATE t2 SET b=93895 WHERE a=24867; UPDATE t2 SET b=10938 WHERE a=24868; UPDATE t2 SET b=39418 WHERE a=24869; UPDATE t2 SET b=26156 WHERE a=24870; UPDATE t2 SET b=2403 WHERE a=24871; UPDATE t2 SET b=9662 WHERE a=24872; UPDATE t2 SET b=36252 WHERE a=24873; UPDATE t2 SET b=80464 WHERE a=24874; UPDATE t2 SET b=1842 WHERE a=24875; UPDATE t2 SET b=61670 WHERE a=24876; UPDATE t2 SET b=96251 WHERE a=24877; UPDATE t2 SET b=59783 WHERE a=24878; UPDATE t2 SET b=99761 WHERE a=24879; UPDATE t2 SET b=23634 WHERE a=24880; UPDATE t2 SET b=18170 WHERE a=24881; UPDATE t2 SET b=64123 WHERE a=24882; UPDATE t2 SET b=53894 WHERE a=24883; UPDATE t2 SET b=73070 WHERE a=24884; UPDATE t2 SET b=99395 WHERE a=24885; UPDATE t2 SET b=62292 WHERE a=24886; UPDATE t2 SET b=4762 WHERE a=24887; UPDATE t2 SET b=93225 WHERE a=24888; UPDATE t2 SET b=50995 WHERE a=24889; UPDATE t2 SET b=97871 WHERE a=24890; UPDATE t2 SET b=82258 WHERE a=24891; UPDATE t2 SET b=96473 WHERE a=24892; UPDATE t2 SET b=26516 WHERE a=24893; UPDATE t2 SET b=18084 WHERE a=24894; UPDATE t2 SET b=67607 WHERE a=24895; UPDATE t2 SET b=62917 WHERE a=24896; UPDATE t2 SET b=37748 WHERE a=24897; UPDATE t2 SET b=65481 WHERE a=24898; UPDATE t2 SET b=48402 WHERE a=24899; UPDATE t2 SET b=43004 WHERE a=24900; UPDATE t2 SET b=79155 WHERE a=24901; UPDATE t2 SET b=76561 WHERE a=24902; UPDATE t2 SET b=59299 WHERE a=24903; UPDATE t2 SET b=2693 WHERE a=24904; UPDATE t2 SET b=73875 WHERE a=24905; UPDATE t2 SET b=22280 WHERE a=24906; UPDATE t2 SET b=30150 WHERE a=24907; UPDATE t2 SET b=58647 WHERE a=24908; UPDATE t2 SET b=41818 WHERE a=24909; UPDATE t2 SET b=66919 WHERE a=24910; UPDATE t2 SET b=40731 WHERE a=24911; UPDATE t2 SET b=2094 WHERE a=24912; UPDATE t2 SET b=2408 WHERE a=24913; UPDATE t2 SET b=88669 WHERE a=24914; UPDATE t2 SET b=58165 WHERE a=24915; UPDATE t2 SET b=64229 WHERE a=24916; UPDATE t2 SET b=78054 WHERE a=24917; UPDATE t2 SET b=95613 WHERE a=24918; UPDATE t2 SET b=27941 WHERE a=24919; UPDATE t2 SET b=48 WHERE a=24920; UPDATE t2 SET b=36039 WHERE a=24921; UPDATE t2 SET b=45581 WHERE a=24922; UPDATE t2 SET b=5570 WHERE a=24923; UPDATE t2 SET b=23362 WHERE a=24924; UPDATE t2 SET b=57829 WHERE a=24925; UPDATE t2 SET b=47959 WHERE a=24926; UPDATE t2 SET b=13151 WHERE a=24927; UPDATE t2 SET b=2966 WHERE a=24928; UPDATE t2 SET b=26815 WHERE a=24929; UPDATE t2 SET b=4616 WHERE a=24930; UPDATE t2 SET b=31286 WHERE a=24931; UPDATE t2 SET b=38228 WHERE a=24932; UPDATE t2 SET b=4867 WHERE a=24933; UPDATE t2 SET b=65628 WHERE a=24934; UPDATE t2 SET b=89286 WHERE a=24935; UPDATE t2 SET b=88192 WHERE a=24936; UPDATE t2 SET b=34849 WHERE a=24937; UPDATE t2 SET b=53741 WHERE a=24938; UPDATE t2 SET b=43537 WHERE a=24939; UPDATE t2 SET b=41771 WHERE a=24940; UPDATE t2 SET b=80807 WHERE a=24941; UPDATE t2 SET b=99544 WHERE a=24942; UPDATE t2 SET b=14072 WHERE a=24943; UPDATE t2 SET b=45523 WHERE a=24944; UPDATE t2 SET b=15499 WHERE a=24945; UPDATE t2 SET b=2875 WHERE a=24946; UPDATE t2 SET b=41352 WHERE a=24947; UPDATE t2 SET b=10155 WHERE a=24948; UPDATE t2 SET b=70938 WHERE a=24949; UPDATE t2 SET b=37088 WHERE a=24950; UPDATE t2 SET b=19602 WHERE a=24951; UPDATE t2 SET b=20921 WHERE a=24952; UPDATE t2 SET b=19928 WHERE a=24953; UPDATE t2 SET b=99103 WHERE a=24954; UPDATE t2 SET b=91710 WHERE a=24955; UPDATE t2 SET b=33261 WHERE a=24956; UPDATE t2 SET b=58161 WHERE a=24957; UPDATE t2 SET b=34648 WHERE a=24958; UPDATE t2 SET b=20776 WHERE a=24959; UPDATE t2 SET b=68180 WHERE a=24960; UPDATE t2 SET b=49268 WHERE a=24961; UPDATE t2 SET b=83860 WHERE a=24962; UPDATE t2 SET b=88002 WHERE a=24963; UPDATE t2 SET b=87672 WHERE a=24964; UPDATE t2 SET b=92708 WHERE a=24965; UPDATE t2 SET b=48911 WHERE a=24966; UPDATE t2 SET b=52773 WHERE a=24967; UPDATE t2 SET b=22420 WHERE a=24968; UPDATE t2 SET b=56443 WHERE a=24969; UPDATE t2 SET b=24421 WHERE a=24970; UPDATE t2 SET b=9045 WHERE a=24971; UPDATE t2 SET b=81558 WHERE a=24972; UPDATE t2 SET b=47647 WHERE a=24973; UPDATE t2 SET b=20467 WHERE a=24974; UPDATE t2 SET b=8929 WHERE a=24975; UPDATE t2 SET b=2349 WHERE a=24976; UPDATE t2 SET b=9892 WHERE a=24977; UPDATE t2 SET b=63368 WHERE a=24978; UPDATE t2 SET b=76164 WHERE a=24979; UPDATE t2 SET b=96670 WHERE a=24980; UPDATE t2 SET b=65858 WHERE a=24981; UPDATE t2 SET b=37114 WHERE a=24982; UPDATE t2 SET b=20938 WHERE a=24983; UPDATE t2 SET b=10859 WHERE a=24984; UPDATE t2 SET b=12219 WHERE a=24985; UPDATE t2 SET b=13035 WHERE a=24986; UPDATE t2 SET b=8699 WHERE a=24987; UPDATE t2 SET b=34577 WHERE a=24988; UPDATE t2 SET b=81145 WHERE a=24989; UPDATE t2 SET b=72930 WHERE a=24990; UPDATE t2 SET b=90839 WHERE a=24991; UPDATE t2 SET b=62751 WHERE a=24992; UPDATE t2 SET b=81141 WHERE a=24993; UPDATE t2 SET b=19366 WHERE a=24994; UPDATE t2 SET b=87519 WHERE a=24995; UPDATE t2 SET b=56768 WHERE a=24996; UPDATE t2 SET b=43942 WHERE a=24997; UPDATE t2 SET b=50494 WHERE a=24998; UPDATE t2 SET b=74260 WHERE a=24999; UPDATE t2 SET b=41153 WHERE a=25000; COMMIT; ================================================ FILE: packages/benchmark/src/benchmarks-worker.js ================================================ // Based on wa-sqlite's benchmarks // Copyright 2021 Roy T. Hashimoto. All Rights Reserved. // Modified by the PGLite authors. import { PGlite } from './pglite/index.js' ;(async function () { const Comlink = await import('https://unpkg.com/comlink/dist/esm/comlink.mjs') /** * @param {Config} config * @returns {Promise} */ async function open(config) { if (config.dataDir.startsWith('opfs-')) { // delete the existing database const root = await navigator.storage.getDirectory() const dirName = config.dataDir.slice(config.dataDir.indexOf('://') + 3) try { const dir = await root.getDirectoryHandle(dirName, { create: false }) await dir.remove() } catch (e) { // ignore } } console.log('Opening PGLite database:', JSON.stringify(config, null, 2)) const pg = new PGlite(config.dataDir, config.options) await pg.waitReady // Create the query interface. async function query(sql) { // console.log('Query:', sql); const startTime = performance.now() await pg.exec(sql) const elapsed = performance.now() - startTime return { elapsed } } return Comlink.proxy(query) } postMessage(null) Comlink.expose(open) })() ================================================ FILE: packages/benchmark/src/benchmarks.js ================================================ // Based on wa-sqlite's benchmarks // Copyright 2021 Roy T. Hashimoto. All Rights Reserved. // Modified by the PGLite authors. // Define the selectable configurations. const CONFIGURATIONS = new Map( [ { label: 'Memory', dataDir: '', }, { label: 'Memory (Unlogged Tables)', dataDir: '', modSql: (sql) => sql.replace(/CREATE TABLE/g, 'CREATE UNLOGGED TABLE'), }, { label: 'Emscripten IndexedDB FS', dataDir: 'idb://benchmark', }, { label: 'Emscripten IndexedDB FS
relaxed durability', dataDir: 'idb://benchmark-rd', options: { relaxedDurability: true }, }, { label: 'OPFS Access Handle Pool', dataDir: 'opfs-ahp://benchmark-ahp', }, { label: 'OPFS Access Handle Pool
relaxed durability', dataDir: 'opfs-ahp://benchmark-ahp-rd', options: { relaxedDurability: true }, }, // { // label: "OPFS Worker", // dataDir: "opfs-worker://benchmark-worker", // }, ].map((obj) => [obj.label, obj]), ) const benchmarkIds = [ '1', '2', '2.1', '3', '3.1', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', ] const benchmarksReady = Promise.all( benchmarkIds.map((id) => { const filename = `./benchmark${id}.sql` return fetch(filename).then((response) => response.text()) }), ) const ComlinkReady = import('https://unpkg.com/comlink/dist/esm/comlink.mjs') const headers = document.querySelector('thead').firstElementChild for (const config of CONFIGURATIONS.values()) { addEntry(headers, config.label) } document.getElementById('start').addEventListener('click', async (event) => { event.target.disabled = true // Clear any existing storage state. await new Promise((resolve, reject) => { const req = indexedDB.deleteDatabase('/pglite/benchmark') req.onsuccess = resolve req.onerror = reject }) await new Promise((resolve, reject) => { const req = indexedDB.deleteDatabase('/pglite/benchmark-rd') req.onsuccess = resolve req.onerror = reject }) // OPFS const root = await navigator.storage.getDirectory() for await (const handle of root.values()) { if (handle.name.startsWith('benchmark')) { try { await root.removeEntry(handle.name, { recursive: true }) } catch (e) { // ignore } } } // Clear timings from the table. Array.from(document.getElementsByTagName('tr'), (element) => { if (element.parentElement.tagName === 'TBODY') { // Keep only the first child. while (element.firstElementChild.nextElementSibling) { element.firstElementChild.nextElementSibling.remove() } } }) const benchmarks = await benchmarksReady const Comlink = await ComlinkReady try { const preamble = document.getElementById('preamble').value document.getElementById('error').textContent = '' for (const config of CONFIGURATIONS.values()) { const worker = new Worker('./benchmarks-worker.js', { type: 'module' }) try { await Promise.race([ new Promise((resolve) => { worker.addEventListener('message', resolve, { once: true }) }), new Promise((_, reject) => setTimeout(() => { reject(new Error(`${config.label} initialization timeout`)) }, 5000), ), ]) const workerProxy = Comlink.wrap(worker) const query = await workerProxy({ dataDir: config.dataDir, label: config.label, options: config.options, }) await query(preamble) let tr = document.querySelector('tbody').firstElementChild for (let b = 0; b < benchmarks.length; b++) { const benchmark = benchmarks[b] const sql = config.modSql ? config.modSql(benchmark) : benchmark const { elapsed } = await query(sql) addEntry(tr, (elapsed / 1000).toFixed(3)) tr = tr.nextElementSibling } } finally { worker.terminate() } } } catch (e) { document.getElementById('error').textContent = e.stack.includes(e.message) ? e.stack : `${e.stack}\n${e.message}` throw e } finally { event.target.disabled = false } }) function addEntry(parent, text) { const tag = parent.parentElement.tagName === 'TBODY' ? 'td' : 'th' const child = document.createElement(tag) child.innerHTML = text parent.appendChild(child) } ================================================ FILE: packages/benchmark/src/index.html ================================================ PGlite benchmarks

PGlite benchmarks

Based on the wa-sqlite benchmarks

Test
Test 1: 1000 INSERTs
Test 2: 25000 INSERTs in a transaction
Test 2.1: 25000 INSERTs in single statement
Test 3: 25000 INSERTs into an indexed table
Test 3.1: 25000 INSERTs into an indexed table in single statement
Test 4: 100 SELECTs without an index
Test 5: 100 SELECTs on a string comparison
Test 6: Creating an index
Test 7: 5000 SELECTs with an index
Test 8: 1000 UPDATEs without an index
Test 9: 25000 UPDATEs with an index
Test 10: 25000 text UPDATEs with an index
Test 11: INSERTs from a SELECT
Test 12: DELETE without an index
Test 13: DELETE with an index
Test 14: A big INSERT after a big DELETE
Test 15: A big DELETE followed by many small INSERTs
Test 16: DROP TABLE
================================================ FILE: packages/benchmark/src/rtt-worker.js ================================================ // Based on wa-sqlite's benchmarks // Copyright 2021 Roy T. Hashimoto. All Rights Reserved. // Modified by the PGLite authors. import * as SQLite from './wa-sqlite/src/sqlite-api.js' import { createTag } from './wa-sqlite/src/examples/tag.js' import { PGlite } from './pglite/index.js' const WA_SQLITE = './wa-sqlite/dist/wa-sqlite.mjs' const WA_SQLITE_ASYNC = './wa-sqlite/dist/wa-sqlite-async.mjs' ;(async function () { const Comlink = await import('https://unpkg.com/comlink/dist/esm/comlink.mjs') async function open(config) { if (config.db === 'wa-sqlite') { console.log('Opening SQLite database:', JSON.stringify(config, null, 2)) return openSQLite(config) } else if (config.db === 'pglite') { console.log('Opening PGLite database:', JSON.stringify(config, null, 2)) return openPGlite(config) } } async function openPGlite(config) { const pg = new PGlite(config.dataDir, config.options) await pg.waitReady // Create the query interface. async function query(sql) { // console.log('Query:', sql); const startTime = performance.now() await pg.exec(sql) const elapsed = performance.now() - startTime return { elapsed } } return Comlink.proxy(query) } async function openSQLite(config) { const { default: moduleFactory } = await import( config.isAsync ? WA_SQLITE_ASYNC : WA_SQLITE ) const module = await moduleFactory() const sqlite3 = SQLite.Factory(module) if (config.vfsModule) { // Create the VFS and register it as the default file system. const namespace = await import(config.vfsModule) const vfs = new namespace[config.vfsClass](...(config.vfsArgs ?? [])) await vfs.isReady sqlite3.vfs_register(vfs, true) } // Open the database; const db = await sqlite3.open_v2(config.dbName ?? 'rtt-demo') const tag = createTag(sqlite3, db) const query = async (sql) => { const startTime = performance.now() await tag(sql) const elapsed = performance.now() - startTime return { elapsed } } return Comlink.proxy(query) } postMessage(null) Comlink.expose(open) })() ================================================ FILE: packages/benchmark/src/rtt.html ================================================ PGlite RTT benchmarks

PGlite RTT benchmarks

100 interactions per test, top/bottom 10% removed, average of the rest. Times in ms.

SQLite tests using wa-sqlite

Test
Test 1: insert small row
Test 2: select small row
Test 3: update small row
Test 4: delete small row
Test 5: insert 1kb row
Test 6: select 1kb row
Test 7: update 1kb row
Test 8: delete 1kb row
Test 9: insert 10kb row
Test 10: select 10kb row
Test 11: update 10kb row
Test 12: delete 10kb row
================================================ FILE: packages/benchmark/src/rtt.js ================================================ // Based on wa-sqlite's benchmarks // Copyright 2021 Roy T. Hashimoto. All Rights Reserved. // Modified by the PGLite authors. // Define the selectable configurations. const CONFIGURATIONS = new Map( [ { label: 'PGlite Memory
(CMA Transport default)', db: 'pglite', dataDir: '', }, { label: 'PGlite Memory
(File Transport)', db: 'pglite', dataDir: '', }, { label: 'PGlite IDB', db: 'pglite', dataDir: 'idb://benchmark-rtt', }, { label: 'PGlite IDB (CMA)
relaxed durability', db: 'pglite', dataDir: 'idb://benchmark-rtt-rd', options: { relaxedDurability: true }, }, { label: 'PGlite OPFS AHP', db: 'pglite', dataDir: 'opfs-ahp://benchmark-rtt', }, { label: 'PGlite OPFS AHP
relaxed durability', db: 'pglite', dataDir: 'opfs-ahp://benchmark-rtt-rd', options: { relaxedDurability: true }, }, { label: 'SQLite Memory', db: 'wa-sqlite', isAsync: false, vfsModule: './wa-sqlite/src/examples/MemoryVFS.js', vfsClass: 'MemoryVFS', vfsArgs: [], }, { label: 'SQLite IDB', db: 'wa-sqlite', isAsync: true, vfsModule: './wa-sqlite/src/examples/IDBMinimalVFS.js', vfsClass: 'IDBMinimalVFS', vfsArgs: ['demo-IDBMinimalVFS'], }, { label: 'SQLite IDB
relaxed durability', db: 'wa-sqlite', isAsync: true, vfsModule: './wa-sqlite/src/examples/IDBMinimalVFS.js', vfsClass: 'IDBMinimalVFS', vfsArgs: ['demo-IDBMinimalVFS-relaxed', { durability: 'relaxed' }], }, { label: ' SQLite IDB BatchAtomic', db: 'wa-sqlite', isAsync: true, vfsModule: './wa-sqlite/src/examples/IDBBatchAtomicVFS.js', vfsClass: 'IDBBatchAtomicVFS', vfsArgs: ['demo-IDBBatchAtomicVFS'], }, { label: 'SQLite IDB BatchAtomic
relaxed durability', db: 'wa-sqlite', isAsync: true, vfsModule: './wa-sqlite/src/examples/IDBBatchAtomicVFS.js', vfsClass: 'IDBBatchAtomicVFS', vfsArgs: ['demo-IDBBatchAtomicVFS-relaxed', { durability: 'relaxed' }], }, { label: 'SQLite OPFS', db: 'wa-sqlite', isAsync: true, vfsModule: './wa-sqlite/src/examples/OriginPrivateFileSystemVFS.js', vfsClass: 'OriginPrivateFileSystemVFS', vfsArgs: [], dbName: 'benchmark-rtt-sqlite', }, { label: 'SQLite OPFS AHP', db: 'wa-sqlite', isAsync: false, vfsModule: './wa-sqlite/src/examples/AccessHandlePoolVFS.js', vfsClass: 'AccessHandlePoolVFS', vfsArgs: ['/benchmark-rtt-sqlite-ahp'], }, ].map((obj) => [obj.label, obj]), ) const initalSetup = ` CREATE TABLE t1 (id SERIAL PRIMARY KEY NOT NULL, a INTEGER); CREATE TABLE t2 (id SERIAL PRIMARY KEY NOT NULL, a TEXT); ` const initalSetupSQLite = ` CREATE TABLE t1 (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, a INTEGER); CREATE TABLE t2 (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, a TEXT); ` const benchmarks = [ `INSERT INTO t1 (a) VALUES (1);`, `SELECT * FROM t1 WHERE id = 333;`, `UPDATE t1 SET a = 2 WHERE id = 666;`, `DELETE FROM t1 WHERE id IN (SELECT id FROM t1 LIMIT 1);`, `INSERT INTO t2 (a) VALUES ('${'a'.repeat(1000)}');`, `SELECT * FROM t2 WHERE id IN (SELECT id FROM t2 LIMIT 1);`, `UPDATE t2 SET a = '${'a'.repeat(1000)}' WHERE id = 1;`, `DELETE FROM t2 WHERE id IN (SELECT id FROM t2 LIMIT 1);`, `INSERT INTO t2 (a) VALUES ('${'a'.repeat(10000)}');`, `SELECT * FROM t2 WHERE id IN (SELECT id FROM t2 LIMIT 1);`, `UPDATE t2 SET a = '${'a'.repeat(10000)}' WHERE id = 1;`, `DELETE FROM t2 WHERE id IN (SELECT id FROM t2 LIMIT 1);`, ] const ITERATIONS = 100 const ComlinkReady = import('https://unpkg.com/comlink/dist/esm/comlink.mjs') const headers = document.querySelector('thead').firstElementChild for (const config of CONFIGURATIONS.values()) { addEntry(headers, config.label) } document.getElementById('start').addEventListener('click', async (event) => { event.target.disabled = true // Clear any existing storage state. for (const name of [ '/pglite/benchmark-rtt', '/pglite/benchmark-rtt-rd', 'demo-IDBMinimalVFS', 'demo-IDBMinimalVFS-relaxed', 'demo-IDBBatchAtomicVFS', 'demo-IDBBatchAtomicVFS-relaxed', ]) { await new Promise((resolve, reject) => { const req = indexedDB.deleteDatabase(name) req.onsuccess = resolve req.onerror = reject }) } // OPFS const root = await navigator.storage.getDirectory() for await (const handle of root.values()) { if (handle.name.startsWith('benchmark')) { try { await root.removeEntry(handle.name, { recursive: true }) } catch (e) { // ignore } } } // Clear timings from the table. Array.from(document.getElementsByTagName('tr'), (element) => { if (element.parentElement.tagName === 'TBODY') { // Keep only the first child. while (element.firstElementChild.nextElementSibling) { element.firstElementChild.nextElementSibling.remove() } } }) const Comlink = await ComlinkReady try { document.getElementById('error').textContent = '' for (const config of CONFIGURATIONS.values()) { const worker = new Worker('./rtt-worker.js', { type: 'module' }) try { await Promise.race([ new Promise((resolve) => { worker.addEventListener('message', resolve, { once: true }) }), new Promise((_, reject) => setTimeout(() => { reject(new Error(`${config.label} initialization timeout`)) }, 5000), ), ]) const workerProxy = Comlink.wrap(worker) const query = await workerProxy(config) if (config.db === 'wa-sqlite') { await query(initalSetupSQLite) } else { await query(initalSetup) } let tr = document.querySelector('tbody').firstElementChild for (let b = 0; b < benchmarks.length; b++) { const sql = benchmarks[b] let times = [] for (let i = 0; i < ITERATIONS; i++) { const { elapsed } = await query(sql) times.push(elapsed) } // sort the times array and remove the first and last 10% of the values times.sort((a, b) => a - b) times = times.slice( Math.floor(times.length * 0.1), Math.floor(times.length * 0.9), ) const avg = times.reduce((a, b) => a + b, 0) / times.length addEntry(tr, avg.toFixed(3)) tr = tr.nextElementSibling } } finally { worker.terminate() } } } catch (e) { document.getElementById('error').textContent = e.stack.includes(e.message) ? e.stack : `${e.stack}\n${e.message}` } finally { event.target.disabled = false } }) function addEntry(parent, text) { const tag = parent.parentElement.tagName === 'TBODY' ? 'td' : 'th' const child = document.createElement(tag) child.innerHTML = text parent.appendChild(child) } ================================================ FILE: packages/benchmark/src/styles.css ================================================ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300..700&display=swap'); body, html { font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.5; color: #333; background-color: #fff; margin: 1rem 2rem; padding: 0; } h1 { font-size: 1.5rem; margin: 0 0 1rem; } #log { display: block; padding: 1rem; white-space: pre-wrap; width: 50%; font-family: ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono', 'Roboto Mono', 'Oxygen Mono', 'Ubuntu Monospace', 'Source Code Pro', 'Fira Mono', 'Droid Sans Mono', 'Courier New', monospace; } #controls { margin-top: 1em; display: flex; align-items: center; } #controls * { margin-right: 0.5em; } table { border-collapse: collapse; } td:first-child { min-width: 15em; } td, th { border: 1px solid #999; padding: 0.5rem; text-align: left; max-width: 3in; } ================================================ FILE: packages/benchmark/tsconfig.json ================================================ { "extends": "../../tsconfig.json" } ================================================ FILE: packages/pg-protocol/CHANGELOG.md ================================================ # @electric-sql/pg-protocol ## 0.0.4 ### Patch Changes - e40ccad: Upgrade emsdk ## 0.0.3 ### Patch Changes - 38a55d0: fix cjs/esm misconfigurations ## 0.0.2 ### Patch Changes - 3d8efbb: Bump dependencies to address Dependabot alerts ================================================ FILE: packages/pg-protocol/LICENSE ================================================ MIT License Copyright (c) 2010 - 2021 Brian Carlson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/pg-protocol/README.md ================================================ # pg-protocol Adapted from [Brian C](https://github.com/brianc)'s [pg-protocol](https://github.com/brianc/node-postgres/tree/master/packages/pg-protocol). ================================================ FILE: packages/pg-protocol/eslint.config.js ================================================ import rootConfig from '../../eslint.config.js' export default [...rootConfig] ================================================ FILE: packages/pg-protocol/package.json ================================================ { "name": "@electric-sql/pg-protocol", "version": "0.0.4", "description": "The postgres client/server binary protocol, implemented in TypeScript", "type": "module", "private": true, "keywords": [ "postgres", "sql", "database", "wasm", "pg-protocol" ], "author": "Electric DB Limited", "license": "Apache-2.0", "repository": { "type": "git", "url": "git+https://github.com/electric-sql/pglite.git", "directory": "packages/pg-protocol" }, "scripts": { "build": "tsup", "check:exports": "attw . --pack --profile node16", "test": "vitest", "lint": "eslint ./src ./test", "format": "prettier --write ./src ./test", "typecheck": "tsc", "stylecheck": "eslint ./src ./test && prettier --check ./src ./test", "prepublishOnly": "pnpm check:exports" }, "types": "dist/index.d.ts", "main": "dist/index.cjs", "module": "dist/index.js", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } }, "./messages": { "import": { "types": "./dist/messages.d.ts", "default": "./dist/messages.js" }, "require": { "types": "./dist/messages.d.cts", "default": "./dist/messages.cjs" } } }, "files": [ "dist" ], "devDependencies": { "@arethetypeswrong/cli": "^0.18.1", "vitest": "^2.1.2" } } ================================================ FILE: packages/pg-protocol/src/buffer-reader.ts ================================================ const emptyBuffer = new ArrayBuffer(0) export class BufferReader { #bufferView: DataView = new DataView(emptyBuffer) #offset: number // TODO(bmc): support non-utf8 encoding? readonly #encoding: string = 'utf-8' as const readonly #decoder = new TextDecoder(this.#encoding) readonly #littleEndian: boolean = false as const constructor(offset: number = 0) { this.#offset = offset } public setBuffer(offset: number, buffer: ArrayBuffer): void { this.#offset = offset this.#bufferView = new DataView(buffer) } public int16(): number { // const result = this.buffer.readInt16BE(this.#offset) const result = this.#bufferView.getInt16(this.#offset, this.#littleEndian) this.#offset += 2 return result } public byte(): number { // const result = this.bufferView[this.#offset] const result = this.#bufferView.getUint8(this.#offset) this.#offset++ return result } public int32(): number { // const result = this.buffer.readInt32BE(this.#offset) const result = this.#bufferView.getInt32(this.#offset, this.#littleEndian) this.#offset += 4 return result } public string(length: number): string { // const result = this.#bufferView.toString( // this.#encoding, // this.#offset, // this.#offset + length, // ) // this.#offset += length const result = this.#decoder.decode(this.bytes(length)) return result } public cstring(): string { // const start = this.#offset // let end = start // while (this.#bufferView[end++] !== 0) {} const start = this.#offset let end = start while (this.#bufferView.getUint8(end++) !== 0) { // no-op - increment until terminator reached } const result = this.string(end - start - 1) this.#offset = end return result } public bytes(length: number): Uint8Array { // const result = this.buffer.slice(this.#offset, this.#offset + length) const result = this.#bufferView.buffer.slice( this.#offset, this.#offset + length, ) this.#offset += length return new Uint8Array(result) } } ================================================ FILE: packages/pg-protocol/src/buffer-writer.ts ================================================ import { byteLengthUtf8 } from './string-utils' export class Writer { #bufferView: DataView #offset: number = 5 readonly #littleEndian = false as const readonly #encoder = new TextEncoder() readonly #headerPosition: number = 0 constructor(private size = 256) { this.#bufferView = this.#allocateBuffer(size) } #allocateBuffer(size: number): DataView { return new DataView(new ArrayBuffer(size)) } #ensure(size: number): void { const remaining = this.#bufferView.byteLength - this.#offset if (remaining < size) { const oldBuffer = this.#bufferView.buffer // exponential growth factor of around ~ 1.5 // https://stackoverflow.com/questions/2269063/buffer-growth-strategy const newSize = oldBuffer.byteLength + (oldBuffer.byteLength >> 1) + size this.#bufferView = this.#allocateBuffer(newSize) new Uint8Array(this.#bufferView.buffer).set(new Uint8Array(oldBuffer)) } } public addInt32(num: number): Writer { this.#ensure(4) this.#bufferView.setInt32(this.#offset, num, this.#littleEndian) this.#offset += 4 return this } public addInt16(num: number): Writer { this.#ensure(2) this.#bufferView.setInt16(this.#offset, num, this.#littleEndian) this.#offset += 2 return this } public addCString(string: string): Writer { if (string) { // TODO(msfstef): might be faster to extract `addString` code and // ensure length + 1 once rather than length and then +1? this.addString(string) } // set null terminator this.#ensure(1) this.#bufferView.setUint8(this.#offset, 0) this.#offset++ return this } public addString(string: string = ''): Writer { const length = byteLengthUtf8(string) this.#ensure(length) this.#encoder.encodeInto( string, new Uint8Array(this.#bufferView.buffer, this.#offset), ) this.#offset += length return this } public add(otherBuffer: ArrayBuffer): Writer { this.#ensure(otherBuffer.byteLength) new Uint8Array(this.#bufferView.buffer).set( new Uint8Array(otherBuffer), this.#offset, ) this.#offset += otherBuffer.byteLength return this } #join(code?: number): ArrayBuffer { if (code) { this.#bufferView.setUint8(this.#headerPosition, code) // length is everything in this packet minus the code const length = this.#offset - (this.#headerPosition + 1) this.#bufferView.setInt32( this.#headerPosition + 1, length, this.#littleEndian, ) } return this.#bufferView.buffer.slice(code ? 0 : 5, this.#offset) } public flush(code?: number): Uint8Array { const result = this.#join(code) this.#offset = 5 this.#bufferView = this.#allocateBuffer(this.size) return new Uint8Array(result) } } ================================================ FILE: packages/pg-protocol/src/index.ts ================================================ export { serialize } from './serializer' export { Parser } from './parser' export * as messages from './messages' ================================================ FILE: packages/pg-protocol/src/messages.ts ================================================ import { Mode } from './types' export type MessageName = | 'parseComplete' | 'bindComplete' | 'closeComplete' | 'noData' | 'portalSuspended' | 'replicationStart' | 'emptyQuery' | 'copyDone' | 'copyData' | 'rowDescription' | 'parameterDescription' | 'parameterStatus' | 'backendKeyData' | 'notification' | 'readyForQuery' | 'commandComplete' | 'dataRow' | 'copyInResponse' | 'copyOutResponse' | 'authenticationOk' | 'authenticationMD5Password' | 'authenticationCleartextPassword' | 'authenticationSASL' | 'authenticationSASLContinue' | 'authenticationSASLFinal' | 'error' | 'notice' export type BackendMessage = { name: MessageName length: number } export const parseComplete: BackendMessage = { name: 'parseComplete', length: 5, } export const bindComplete: BackendMessage = { name: 'bindComplete', length: 5, } export const closeComplete: BackendMessage = { name: 'closeComplete', length: 5, } export const noData: BackendMessage = { name: 'noData', length: 5, } export const portalSuspended: BackendMessage = { name: 'portalSuspended', length: 5, } export const replicationStart: BackendMessage = { name: 'replicationStart', length: 4, } export const emptyQuery: BackendMessage = { name: 'emptyQuery', length: 4, } export const copyDone: BackendMessage = { name: 'copyDone', length: 4, } export class AuthenticationOk implements BackendMessage { public readonly name = 'authenticationOk' constructor(public readonly length: number) {} } export class AuthenticationCleartextPassword implements BackendMessage { public readonly name = 'authenticationCleartextPassword' constructor(public readonly length: number) {} } export class AuthenticationMD5Password implements BackendMessage { public readonly name = 'authenticationMD5Password' constructor( public readonly length: number, public readonly salt: Uint8Array, ) {} } export class AuthenticationSASL implements BackendMessage { public readonly name = 'authenticationSASL' constructor( public readonly length: number, public readonly mechanisms: string[], ) {} } export class AuthenticationSASLContinue implements BackendMessage { public readonly name = 'authenticationSASLContinue' constructor( public readonly length: number, public readonly data: string, ) {} } export class AuthenticationSASLFinal implements BackendMessage { public readonly name = 'authenticationSASLFinal' constructor( public readonly length: number, public readonly data: string, ) {} } export type AuthenticationMessage = | AuthenticationOk | AuthenticationCleartextPassword | AuthenticationMD5Password | AuthenticationSASL | AuthenticationSASLContinue | AuthenticationSASLFinal interface NoticeOrError { message: string | undefined severity: string | undefined code: string | undefined detail: string | undefined hint: string | undefined position: string | undefined internalPosition: string | undefined internalQuery: string | undefined where: string | undefined schema: string | undefined table: string | undefined column: string | undefined dataType: string | undefined constraint: string | undefined file: string | undefined line: string | undefined routine: string | undefined } export class DatabaseError extends Error implements NoticeOrError { public severity: string | undefined public code: string | undefined public detail: string | undefined public hint: string | undefined public position: string | undefined public internalPosition: string | undefined public internalQuery: string | undefined public where: string | undefined public schema: string | undefined public table: string | undefined public column: string | undefined public dataType: string | undefined public constraint: string | undefined public file: string | undefined public line: string | undefined public routine: string | undefined constructor( message: string, public readonly length: number, public readonly name: MessageName, ) { super(message) } } export class CopyDataMessage implements BackendMessage { public readonly name = 'copyData' constructor( public readonly length: number, public readonly chunk: Uint8Array, ) {} } export class CopyResponse implements BackendMessage { public readonly columnTypes: number[] constructor( public readonly length: number, public readonly name: MessageName, public readonly binary: boolean, columnCount: number, ) { this.columnTypes = new Array(columnCount) } } export class Field { constructor( public readonly name: string, public readonly tableID: number, public readonly columnID: number, public readonly dataTypeID: number, public readonly dataTypeSize: number, public readonly dataTypeModifier: number, public readonly format: Mode, ) {} } export class RowDescriptionMessage implements BackendMessage { public readonly name: MessageName = 'rowDescription' public readonly fields: Field[] constructor( public readonly length: number, public readonly fieldCount: number, ) { this.fields = new Array(this.fieldCount) } } export class ParameterDescriptionMessage implements BackendMessage { public readonly name: MessageName = 'parameterDescription' public readonly dataTypeIDs: number[] constructor( public readonly length: number, public readonly parameterCount: number, ) { this.dataTypeIDs = new Array(this.parameterCount) } } export class ParameterStatusMessage implements BackendMessage { public readonly name: MessageName = 'parameterStatus' constructor( public readonly length: number, public readonly parameterName: string, public readonly parameterValue: string, ) {} } export class BackendKeyDataMessage implements BackendMessage { public readonly name: MessageName = 'backendKeyData' constructor( public readonly length: number, public readonly processID: number, public readonly secretKey: number, ) {} } export class NotificationResponseMessage implements BackendMessage { public readonly name: MessageName = 'notification' constructor( public readonly length: number, public readonly processId: number, public readonly channel: string, public readonly payload: string, ) {} } export class ReadyForQueryMessage implements BackendMessage { public readonly name: MessageName = 'readyForQuery' constructor( public readonly length: number, public readonly status: string, ) {} } export class CommandCompleteMessage implements BackendMessage { public readonly name: MessageName = 'commandComplete' constructor( public readonly length: number, public readonly text: string, ) {} } export class DataRowMessage implements BackendMessage { public readonly fieldCount: number public readonly name: MessageName = 'dataRow' constructor( public length: number, public fields: (string | null)[], ) { this.fieldCount = fields.length } } export class NoticeMessage implements BackendMessage, NoticeOrError { constructor( public readonly length: number, public readonly message: string | undefined, ) {} public readonly name = 'notice' public severity: string | undefined public code: string | undefined public detail: string | undefined public hint: string | undefined public position: string | undefined public internalPosition: string | undefined public internalQuery: string | undefined public where: string | undefined public schema: string | undefined public table: string | undefined public column: string | undefined public dataType: string | undefined public constraint: string | undefined public file: string | undefined public line: string | undefined public routine: string | undefined } ================================================ FILE: packages/pg-protocol/src/parser.ts ================================================ import { bindComplete, parseComplete, closeComplete, noData, portalSuspended, copyDone, replicationStart, emptyQuery, ReadyForQueryMessage, CommandCompleteMessage, CopyDataMessage, CopyResponse, NotificationResponseMessage, RowDescriptionMessage, ParameterDescriptionMessage, Field, DataRowMessage, ParameterStatusMessage, BackendKeyDataMessage, DatabaseError, BackendMessage, MessageName, NoticeMessage, AuthenticationMessage, AuthenticationOk, AuthenticationCleartextPassword, AuthenticationMD5Password, AuthenticationSASL, AuthenticationSASLContinue, AuthenticationSASLFinal, } from './messages' import { BufferParameter, Modes } from './types' import { BufferReader } from './buffer-reader' // every message is prefixed with a single bye const CODE_LENGTH = 1 as const // every message has an int32 length which includes itself but does // NOT include the code in the length const LEN_LENGTH = 4 as const const HEADER_LENGTH = CODE_LENGTH + LEN_LENGTH export type Packet = { code: number packet: ArrayBuffer } const emptyBuffer = new ArrayBuffer(0) const enum MessageCodes { DataRow = 0x44, // D ParseComplete = 0x31, // 1 BindComplete = 0x32, // 2 CloseComplete = 0x33, // 3 CommandComplete = 0x43, // C ReadyForQuery = 0x5a, // Z NoData = 0x6e, // n NotificationResponse = 0x41, // A AuthenticationResponse = 0x52, // R ParameterStatus = 0x53, // S BackendKeyData = 0x4b, // K ErrorMessage = 0x45, // E NoticeMessage = 0x4e, // N RowDescriptionMessage = 0x54, // T ParameterDescriptionMessage = 0x74, // t PortalSuspended = 0x73, // s ReplicationStart = 0x57, // W EmptyQuery = 0x49, // I CopyIn = 0x47, // G CopyOut = 0x48, // H CopyDone = 0x63, // c CopyData = 0x64, // d } export type MessageCallback = (msg: BackendMessage) => void export class Parser { #bufferView: DataView = new DataView(emptyBuffer) #bufferRemainingLength: number = 0 #bufferOffset: number = 0 #reader = new BufferReader() public parse(buffer: BufferParameter, callback: MessageCallback) { this.#mergeBuffer( ArrayBuffer.isView(buffer) ? buffer.buffer.slice( buffer.byteOffset, buffer.byteOffset + buffer.byteLength, ) : buffer, ) const bufferFullLength = this.#bufferOffset + this.#bufferRemainingLength let offset = this.#bufferOffset while (offset + HEADER_LENGTH <= bufferFullLength) { // code is 1 byte long - it identifies the message type const code = this.#bufferView.getUint8(offset) // length is 1 Uint32BE - it is the length of the message EXCLUDING the code const length = this.#bufferView.getUint32(offset + CODE_LENGTH, false) const fullMessageLength = CODE_LENGTH + length if (fullMessageLength + offset <= bufferFullLength && length > 0) { const message = this.#handlePacket( offset + HEADER_LENGTH, code, length, this.#bufferView.buffer, ) callback(message) offset += fullMessageLength } else { break } } if (offset === bufferFullLength) { // No more use for the buffer this.#bufferView = new DataView(emptyBuffer) this.#bufferRemainingLength = 0 this.#bufferOffset = 0 } else { // Adjust the cursors of remainingBuffer this.#bufferRemainingLength = bufferFullLength - offset this.#bufferOffset = offset } } #mergeBuffer(buffer: ArrayBuffer): void { if (this.#bufferRemainingLength > 0) { const newLength = this.#bufferRemainingLength + buffer.byteLength const newFullLength = newLength + this.#bufferOffset if (newFullLength > this.#bufferView.byteLength) { // We can't concat the new buffer with the remaining one let newBuffer: ArrayBuffer if ( newLength <= this.#bufferView.byteLength && this.#bufferOffset >= this.#bufferRemainingLength ) { // We can move the relevant part to the beginning of the buffer instead of allocating a new buffer newBuffer = this.#bufferView.buffer } else { // Allocate a new larger buffer let newBufferLength = this.#bufferView.byteLength * 2 while (newLength >= newBufferLength) { newBufferLength *= 2 } newBuffer = new ArrayBuffer(newBufferLength) } // Move the remaining buffer to the new one new Uint8Array(newBuffer).set( new Uint8Array( this.#bufferView.buffer, this.#bufferOffset, this.#bufferRemainingLength, ), ) this.#bufferView = new DataView(newBuffer) this.#bufferOffset = 0 } // Concat the new buffer with the remaining one new Uint8Array(this.#bufferView.buffer).set( new Uint8Array(buffer), this.#bufferOffset + this.#bufferRemainingLength, ) this.#bufferRemainingLength = newLength } else { this.#bufferView = new DataView(buffer) this.#bufferOffset = 0 this.#bufferRemainingLength = buffer.byteLength } } #handlePacket( offset: number, code: number, length: number, bytes: ArrayBuffer, ): BackendMessage { switch (code) { case MessageCodes.BindComplete: return bindComplete case MessageCodes.ParseComplete: return parseComplete case MessageCodes.CloseComplete: return closeComplete case MessageCodes.NoData: return noData case MessageCodes.PortalSuspended: return portalSuspended case MessageCodes.CopyDone: return copyDone case MessageCodes.ReplicationStart: return replicationStart case MessageCodes.EmptyQuery: return emptyQuery case MessageCodes.DataRow: return this.#parseDataRowMessage(offset, length, bytes) case MessageCodes.CommandComplete: return this.#parseCommandCompleteMessage(offset, length, bytes) case MessageCodes.ReadyForQuery: return this.#parseReadyForQueryMessage(offset, length, bytes) case MessageCodes.NotificationResponse: return this.#parseNotificationMessage(offset, length, bytes) case MessageCodes.AuthenticationResponse: return this.#parseAuthenticationResponse(offset, length, bytes) case MessageCodes.ParameterStatus: return this.#parseParameterStatusMessage(offset, length, bytes) case MessageCodes.BackendKeyData: return this.#parseBackendKeyData(offset, length, bytes) case MessageCodes.ErrorMessage: return this.#parseErrorMessage(offset, length, bytes, 'error') case MessageCodes.NoticeMessage: return this.#parseErrorMessage(offset, length, bytes, 'notice') case MessageCodes.RowDescriptionMessage: return this.#parseRowDescriptionMessage(offset, length, bytes) case MessageCodes.ParameterDescriptionMessage: return this.#parseParameterDescriptionMessage(offset, length, bytes) case MessageCodes.CopyIn: return this.#parseCopyInMessage(offset, length, bytes) case MessageCodes.CopyOut: return this.#parseCopyOutMessage(offset, length, bytes) case MessageCodes.CopyData: return this.#parseCopyData(offset, length, bytes) default: return new DatabaseError( 'received invalid response: ' + code.toString(16), length, 'error', ) } } #parseReadyForQueryMessage( offset: number, length: number, bytes: ArrayBuffer, ) { this.#reader.setBuffer(offset, bytes) const status = this.#reader.string(1) return new ReadyForQueryMessage(length, status) } #parseCommandCompleteMessage( offset: number, length: number, bytes: ArrayBuffer, ) { this.#reader.setBuffer(offset, bytes) const text = this.#reader.cstring() return new CommandCompleteMessage(length, text) } #parseCopyData(offset: number, length: number, bytes: ArrayBuffer) { const chunk = bytes.slice(offset, offset + (length - 4)) return new CopyDataMessage(length, new Uint8Array(chunk)) } #parseCopyInMessage(offset: number, length: number, bytes: ArrayBuffer) { return this.#parseCopyMessage(offset, length, bytes, 'copyInResponse') } #parseCopyOutMessage(offset: number, length: number, bytes: ArrayBuffer) { return this.#parseCopyMessage(offset, length, bytes, 'copyOutResponse') } #parseCopyMessage( offset: number, length: number, bytes: ArrayBuffer, messageName: MessageName, ) { this.#reader.setBuffer(offset, bytes) const isBinary = this.#reader.byte() !== 0 const columnCount = this.#reader.int16() const message = new CopyResponse(length, messageName, isBinary, columnCount) for (let i = 0; i < columnCount; i++) { message.columnTypes[i] = this.#reader.int16() } return message } #parseNotificationMessage( offset: number, length: number, bytes: ArrayBuffer, ) { this.#reader.setBuffer(offset, bytes) const processId = this.#reader.int32() const channel = this.#reader.cstring() const payload = this.#reader.cstring() return new NotificationResponseMessage(length, processId, channel, payload) } #parseRowDescriptionMessage( offset: number, length: number, bytes: ArrayBuffer, ) { this.#reader.setBuffer(offset, bytes) const fieldCount = this.#reader.int16() const message = new RowDescriptionMessage(length, fieldCount) for (let i = 0; i < fieldCount; i++) { message.fields[i] = this.#parseField() } return message } #parseField(): Field { const name = this.#reader.cstring() const tableID = this.#reader.int32() const columnID = this.#reader.int16() const dataTypeID = this.#reader.int32() const dataTypeSize = this.#reader.int16() const dataTypeModifier = this.#reader.int32() const mode = this.#reader.int16() === 0 ? Modes.text : Modes.binary return new Field( name, tableID, columnID, dataTypeID, dataTypeSize, dataTypeModifier, mode, ) } #parseParameterDescriptionMessage( offset: number, length: number, bytes: ArrayBuffer, ) { this.#reader.setBuffer(offset, bytes) const parameterCount = this.#reader.int16() const message = new ParameterDescriptionMessage(length, parameterCount) for (let i = 0; i < parameterCount; i++) { message.dataTypeIDs[i] = this.#reader.int32() } return message } #parseDataRowMessage(offset: number, length: number, bytes: ArrayBuffer) { this.#reader.setBuffer(offset, bytes) const fieldCount = this.#reader.int16() const fields: (string | null)[] = new Array(fieldCount) for (let i = 0; i < fieldCount; i++) { const len = this.#reader.int32() // a -1 for length means the value of the field is null fields[i] = len === -1 ? null : this.#reader.string(len) } return new DataRowMessage(length, fields) } #parseParameterStatusMessage( offset: number, length: number, bytes: ArrayBuffer, ) { this.#reader.setBuffer(offset, bytes) const name = this.#reader.cstring() const value = this.#reader.cstring() return new ParameterStatusMessage(length, name, value) } #parseBackendKeyData(offset: number, length: number, bytes: ArrayBuffer) { this.#reader.setBuffer(offset, bytes) const processID = this.#reader.int32() const secretKey = this.#reader.int32() return new BackendKeyDataMessage(length, processID, secretKey) } #parseAuthenticationResponse( offset: number, length: number, bytes: ArrayBuffer, ): AuthenticationMessage { this.#reader.setBuffer(offset, bytes) const code = this.#reader.int32() switch (code) { case 0: return new AuthenticationOk(length) case 3: return new AuthenticationCleartextPassword(length) case 5: return new AuthenticationMD5Password(length, this.#reader.bytes(4)) case 10: { const mechanisms: string[] = [] while (true) { const mechanism = this.#reader.cstring() if (mechanism.length === 0) { return new AuthenticationSASL(length, mechanisms) } mechanisms.push(mechanism) } } case 11: return new AuthenticationSASLContinue( length, this.#reader.string(length - 8), ) case 12: return new AuthenticationSASLFinal( length, this.#reader.string(length - 8), ) default: throw new Error('Unknown authenticationOk message type ' + code) } } #parseErrorMessage( offset: number, length: number, bytes: ArrayBuffer, name: MessageName, ) { this.#reader.setBuffer(offset, bytes) const fields: Record = {} let fieldType = this.#reader.string(1) while (fieldType !== '\0') { fields[fieldType] = this.#reader.cstring() fieldType = this.#reader.string(1) } const messageValue = fields.M const message = name === 'notice' ? new NoticeMessage(length, messageValue) : new DatabaseError(messageValue, length, name) message.severity = fields.S message.code = fields.C message.detail = fields.D message.hint = fields.H message.position = fields.P message.internalPosition = fields.p message.internalQuery = fields.q message.where = fields.W message.schema = fields.s message.table = fields.t message.column = fields.c message.dataType = fields.d message.constraint = fields.n message.file = fields.F message.line = fields.L message.routine = fields.R return message } } ================================================ FILE: packages/pg-protocol/src/serializer.ts ================================================ import { Writer } from './buffer-writer' import { byteLengthUtf8 } from './string-utils' const enum code { startup = 0x70, query = 0x51, parse = 0x50, bind = 0x42, execute = 0x45, flush = 0x48, sync = 0x53, end = 0x58, close = 0x43, describe = 0x44, copyFromChunk = 0x64, copyDone = 0x63, copyFail = 0x66, } type LegalValue = string | ArrayBuffer | ArrayBufferView | null const writer = new Writer() const startup = (opts: Record): Uint8Array => { // protocol version writer.addInt16(3).addInt16(0) for (const key of Object.keys(opts)) { writer.addCString(key).addCString(opts[key]) } writer.addCString('client_encoding').addCString('UTF8') const bodyBuffer = writer.addCString('').flush() // this message is sent without a code const length = bodyBuffer.byteLength + 4 return new Writer().addInt32(length).add(bodyBuffer).flush() } const requestSsl = (): Uint8Array => { const bufferView = new DataView(new ArrayBuffer(8)) bufferView.setInt32(0, 8, false) bufferView.setInt32(4, 80877103, false) return new Uint8Array(bufferView.buffer) } const password = (password: string): Uint8Array => { return writer.addCString(password).flush(code.startup) } const sendSASLInitialResponseMessage = ( mechanism: string, initialResponse: string, ): Uint8Array => { // 0x70 = 'p' writer .addCString(mechanism) .addInt32(byteLengthUtf8(initialResponse)) .addString(initialResponse) return writer.flush(code.startup) } const sendSCRAMClientFinalMessage = (additionalData: string): Uint8Array => { return writer.addString(additionalData).flush(code.startup) } const query = (text: string): Uint8Array => { return writer.addCString(text).flush(code.query) } type ParseOpts = { name?: string types?: number[] text: string } const emptyValueArray: LegalValue[] = [] const parse = (query: ParseOpts): Uint8Array => { // expect something like this: // { name: 'queryName', // text: 'select * from blah', // types: ['int8', 'bool'] } // normalize missing query names to allow for null const name = query.name ?? '' if (name.length > 63) { /* eslint-disable no-console */ console.error( 'Warning! Postgres only supports 63 characters for query names.', ) console.error('You supplied %s (%s)', name, name.length) console.error( 'This can cause conflicts and silent errors executing queries', ) /* eslint-enable no-console */ } const buffer = writer .addCString(name) // name of query .addCString(query.text) // actual query text .addInt16(query.types?.length ?? 0) query.types?.forEach((type) => buffer.addInt32(type)) return writer.flush(code.parse) } type ValueMapper = (param: unknown, index: number) => LegalValue type BindOpts = { portal?: string binary?: boolean statement?: string values?: LegalValue[] // optional map from JS value to postgres value per parameter valueMapper?: ValueMapper } const paramWriter = new Writer() // make this a const enum so typescript will inline the value const enum ParamType { STRING = 0, BINARY = 1, } const writeValues = (values: LegalValue[], valueMapper?: ValueMapper): void => { for (let i = 0; i < values.length; i++) { const mappedVal = valueMapper ? valueMapper(values[i], i) : values[i] if (mappedVal === null) { // add the param type (string) to the writer writer.addInt16(ParamType.STRING) // write -1 to the param writer to indicate null paramWriter.addInt32(-1) } else if ( mappedVal instanceof ArrayBuffer || ArrayBuffer.isView(mappedVal) ) { const buffer = ArrayBuffer.isView(mappedVal) ? mappedVal.buffer.slice( mappedVal.byteOffset, mappedVal.byteOffset + mappedVal.byteLength, ) : mappedVal // add the param type (binary) to the writer writer.addInt16(ParamType.BINARY) // add the buffer to the param writer paramWriter.addInt32(buffer.byteLength) paramWriter.add(buffer) } else { // add the param type (string) to the writer writer.addInt16(ParamType.STRING) paramWriter.addInt32(byteLengthUtf8(mappedVal)) paramWriter.addString(mappedVal) } } } const bind = (config: BindOpts = {}): Uint8Array => { // normalize config const portal = config.portal ?? '' const statement = config.statement ?? '' const binary = config.binary ?? false const values = config.values ?? emptyValueArray const len = values.length writer.addCString(portal).addCString(statement) writer.addInt16(len) writeValues(values, config.valueMapper) writer.addInt16(len) writer.add(paramWriter.flush()) // format code writer.addInt16(binary ? ParamType.BINARY : ParamType.STRING) return writer.flush(code.bind) } type ExecOpts = { portal?: string rows?: number } const emptyExecute = new Uint8Array([ code.execute, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, ]) const execute = (config?: ExecOpts): Uint8Array => { // this is the happy path for most queries if (!config || (!config.portal && !config.rows)) { return emptyExecute } const portal = config.portal ?? '' const rows = config.rows ?? 0 const portalLength = byteLengthUtf8(portal) const len = 4 + portalLength + 1 + 4 // one extra bit for code const bufferView = new DataView(new ArrayBuffer(1 + len)) bufferView.setUint8(0, code.execute) bufferView.setInt32(1, len, false) new TextEncoder().encodeInto(portal, new Uint8Array(bufferView.buffer, 5)) bufferView.setUint8(portalLength + 5, 0) // null terminate portal cString bufferView.setUint32(bufferView.byteLength - 4, rows, false) return new Uint8Array(bufferView.buffer) } const cancel = (processID: number, secretKey: number): Uint8Array => { const bufferView = new DataView(new ArrayBuffer(16)) bufferView.setInt32(0, 16, false) bufferView.setInt16(4, 1234, false) bufferView.setInt16(6, 5678, false) bufferView.setInt32(8, processID, false) bufferView.setInt32(12, secretKey, false) return new Uint8Array(bufferView.buffer) } type PortalOpts = { type: 'S' | 'P' name?: string } const cstringMessage = (code: code, string: string): Uint8Array => { const writer = new Writer() writer.addCString(string) return writer.flush(code) } const emptyDescribePortal = writer.addCString('P').flush(code.describe) const emptyDescribeStatement = writer.addCString('S').flush(code.describe) const describe = (msg: PortalOpts): Uint8Array => { return msg.name ? cstringMessage(code.describe, `${msg.type}${msg.name ?? ''}`) : msg.type === 'P' ? emptyDescribePortal : emptyDescribeStatement } const close = (msg: PortalOpts): Uint8Array => { const text = `${msg.type}${msg.name ?? ''}` return cstringMessage(code.close, text) } const copyData = (chunk: ArrayBuffer): Uint8Array => { return writer.add(chunk).flush(code.copyFromChunk) } const copyFail = (message: string): Uint8Array => { return cstringMessage(code.copyFail, message) } const codeOnlyBuffer = (code: code): Uint8Array => new Uint8Array([code, 0x00, 0x00, 0x00, 0x04]) const flushBuffer = codeOnlyBuffer(code.flush) const syncBuffer = codeOnlyBuffer(code.sync) const endBuffer = codeOnlyBuffer(code.end) const copyDoneBuffer = codeOnlyBuffer(code.copyDone) const serialize = { startup, password, requestSsl, sendSASLInitialResponseMessage, sendSCRAMClientFinalMessage, query, parse, bind, execute, describe, close, flush: () => flushBuffer, sync: () => syncBuffer, end: () => endBuffer, copyData, copyDone: () => copyDoneBuffer, copyFail, cancel, } export { serialize } ================================================ FILE: packages/pg-protocol/src/string-utils.ts ================================================ /** * Calculates the byte length of a UTF-8 encoded string * Adapted from https://stackoverflow.com/a/23329386 * @param str - UTF-8 encoded string * @returns byte length of string */ function byteLengthUtf8(str: string): number { let byteLength = str.length for (let i = str.length - 1; i >= 0; i--) { const code = str.charCodeAt(i) if (code > 0x7f && code <= 0x7ff) byteLength++ else if (code > 0x7ff && code <= 0xffff) byteLength += 2 if (code >= 0xdc00 && code <= 0xdfff) i-- // trail surrogate } return byteLength } export { byteLengthUtf8 } ================================================ FILE: packages/pg-protocol/src/types.ts ================================================ export const Modes = { text: 0, binary: 1, } as const export type Mode = (typeof Modes)[keyof typeof Modes] export type BufferParameter = ArrayBuffer | ArrayBufferView ================================================ FILE: packages/pg-protocol/test/inbound-parser.test.ts ================================================ import { describe, it, expect } from 'vitest' import buffers from './testing/test-buffers' import BufferList from './testing/buffer-list' import { Parser } from '../src' import { Modes } from '../src/types' import { AuthenticationMessage, BackendKeyDataMessage, BackendMessage, CommandCompleteMessage, DataRowMessage, NotificationResponseMessage, ParameterDescriptionMessage, ParameterStatusMessage, ReadyForQueryMessage, RowDescriptionMessage, } from '../src/messages' const authOkBuffer = buffers.authenticationOk() const paramStatusBuffer = buffers.parameterStatus('client_encoding', 'UTF8') const readyForQueryBuffer = buffers.readyForQuery() const backendKeyDataBuffer = buffers.backendKeyData(1, 2) const commandCompleteBuffer = buffers.commandComplete('SELECT 3') const parseCompleteBuffer = buffers.parseComplete() const bindCompleteBuffer = buffers.bindComplete() const portalSuspendedBuffer = buffers.portalSuspended() const row1 = { name: 'id', tableID: 1, columnID: 2, dataTypeID: 3, dataTypeSize: 4, dataTypeModifier: 5, format: Modes.text, } const oneRowDescBuff = buffers.rowDescription([row1]) row1.name = 'bang' const twoRowBuf = buffers.rowDescription([ row1, { name: 'whoah', tableID: 10, columnID: 11, dataTypeID: 12, dataTypeSize: 13, dataTypeModifier: 14, format: Modes.text, }, ]) const emptyRowFieldBuf = buffers.dataRow([]) const oneFieldBuf = buffers.dataRow(['test']) const expectedAuthenticationOkayMessage: BackendMessage = { name: 'authenticationOk', length: 8, } const expectedParameterStatusMessage: ParameterStatusMessage = { name: 'parameterStatus', parameterName: 'client_encoding', parameterValue: 'UTF8', length: 25, } const expectedBackendKeyDataMessage: BackendKeyDataMessage = { name: 'backendKeyData', processID: 1, secretKey: 2, length: 12, } const expectedReadyForQueryMessage: ReadyForQueryMessage = { name: 'readyForQuery', length: 5, status: 'I', } const expectedCommandCompleteMessage: CommandCompleteMessage = { name: 'commandComplete', length: 13, text: 'SELECT 3', } const emptyRowDescriptionBuffer = new BufferList() .addInt16(0) // number of fields .join(true, 'T') const expectedEmptyRowDescriptionMessage: RowDescriptionMessage = { name: 'rowDescription', length: 6, fieldCount: 0, fields: [], } const expectedOneRowMessage: RowDescriptionMessage = { name: 'rowDescription', length: 27, fieldCount: 1, fields: [ { name: 'id', tableID: 1, columnID: 2, dataTypeID: 3, dataTypeSize: 4, dataTypeModifier: 5, format: Modes.text, }, ], } const expectedTwoRowMessage: RowDescriptionMessage = { name: 'rowDescription', length: 53, fieldCount: 2, fields: [ { name: 'bang', tableID: 1, columnID: 2, dataTypeID: 3, dataTypeSize: 4, dataTypeModifier: 5, format: Modes.text, }, { name: 'whoah', tableID: 10, columnID: 11, dataTypeID: 12, dataTypeSize: 13, dataTypeModifier: 14, format: Modes.text, }, ], } const emptyParameterDescriptionBuffer = new BufferList() .addInt16(0) // number of parameters .join(true, 't') const oneParameterDescBuf = buffers.parameterDescription([1111]) const twoParameterDescBuf = buffers.parameterDescription([2222, 3333]) const expectedEmptyParameterDescriptionMessage: ParameterDescriptionMessage = { name: 'parameterDescription', length: 6, parameterCount: 0, dataTypeIDs: [], } const expectedOneParameterMessage: ParameterDescriptionMessage = { name: 'parameterDescription', length: 10, parameterCount: 1, dataTypeIDs: [1111], } const expectedTwoParameterMessage: ParameterDescriptionMessage = { name: 'parameterDescription', length: 14, parameterCount: 2, dataTypeIDs: [2222, 3333], } function testForMessage( buffer: ArrayBuffer, expectedMessage: T, ) { it('recieves and parses ' + expectedMessage.name, async () => { const messages = await parseBuffers([buffer]) const [lastMessage] = messages for (const key in expectedMessage) { expect((lastMessage as Record)[key]).toEqual( expectedMessage[key], ) } }) } const plainPasswordBuffer = buffers.authenticationCleartextPassword() const md5PasswordBuffer = buffers.authenticationMD5Password() const SASLBuffer = buffers.authenticationSASL() const SASLContinueBuffer = buffers.authenticationSASLContinue() const SASLFinalBuffer = buffers.authenticationSASLFinal() const expectedPlainPasswordMessage: AuthenticationMessage = { name: 'authenticationCleartextPassword', length: 8, } const expectedMD5PasswordMessage: AuthenticationMessage = { name: 'authenticationMD5Password', length: 12, salt: new Uint8Array([1, 2, 3, 4]), } const expectedSASLMessage: AuthenticationMessage = { name: 'authenticationSASL', length: SASLBuffer.byteLength - 1, mechanisms: ['SCRAM-SHA-256'], } const expectedSASLContinueMessage: AuthenticationMessage = { name: 'authenticationSASLContinue', length: SASLContinueBuffer.byteLength - 1, data: 'data', } const expectedSASLFinalMessage: AuthenticationMessage = { name: 'authenticationSASLFinal', length: SASLFinalBuffer.byteLength - 1, data: 'data', } const notificationResponseBuffer = buffers.notification(4, 'hi', 'boom') const expectedNotificationResponseMessage: NotificationResponseMessage = { name: 'notification', processId: 4, channel: 'hi', payload: 'boom', length: notificationResponseBuffer.byteLength - 1, } const parseBuffers = async ( buffers: ArrayBuffer[], ): Promise => { const parser = new Parser() const msgs: BackendMessage[] = [] const numBuffers = buffers.length await new Promise((res) => { for (let i = 0; i < numBuffers; i++) { const buffer = buffers[i] parser.parse(buffer, (msg) => { msgs.push(msg) if (i === numBuffers - 1) res() }) } }) return msgs } function concatBuffers(views: ArrayBufferView[]): Uint8Array { let length = 0 for (const v of views) length += v.byteLength const buf = new Uint8Array(length) let offset = 0 for (const v of views) { const uint8view = new Uint8Array(v.buffer) buf.set(uint8view, offset) offset += uint8view.byteLength } return buf } describe('PgPacketStream', () => { testForMessage(authOkBuffer, expectedAuthenticationOkayMessage) testForMessage(plainPasswordBuffer, expectedPlainPasswordMessage) testForMessage(md5PasswordBuffer, expectedMD5PasswordMessage) testForMessage(SASLBuffer, expectedSASLMessage) testForMessage(SASLContinueBuffer, expectedSASLContinueMessage) // this exercises a found bug in the parser: // https://github.com/brianc/node-postgres/pull/2210#issuecomment-627626084 // and adds a test which is deterministic, rather than relying on network packet chunking const extendedSASLContinueBuffer = concatBuffers([ SASLContinueBuffer, new Uint8Array([1, 2, 3, 4]), ]) testForMessage(extendedSASLContinueBuffer, expectedSASLContinueMessage) testForMessage(SASLFinalBuffer, expectedSASLFinalMessage) // this exercises a found bug in the parser: // https://github.com/brianc/node-postgres/pull/2210#issuecomment-627626084 // and adds a test which is deterministic, rather than relying on network packet chunking const extendedSASLFinalBuffer = concatBuffers([ SASLFinalBuffer, new Uint8Array([1, 2, 4, 5]), ]) testForMessage(extendedSASLFinalBuffer, expectedSASLFinalMessage) testForMessage(paramStatusBuffer, expectedParameterStatusMessage) testForMessage(backendKeyDataBuffer, expectedBackendKeyDataMessage) testForMessage(readyForQueryBuffer, expectedReadyForQueryMessage) testForMessage(commandCompleteBuffer, expectedCommandCompleteMessage) testForMessage( notificationResponseBuffer, expectedNotificationResponseMessage, ) testForMessage(buffers.emptyQuery(), { name: 'emptyQuery', length: 4, }) testForMessage(new Uint8Array([0x6e, 0, 0, 0, 4]).buffer, { name: 'noData', length: 5, }) describe('rowDescription messages', () => { testForMessage( emptyRowDescriptionBuffer, expectedEmptyRowDescriptionMessage, ) testForMessage(oneRowDescBuff, expectedOneRowMessage) testForMessage(twoRowBuf, expectedTwoRowMessage) }) describe('parameterDescription messages', () => { testForMessage( emptyParameterDescriptionBuffer, expectedEmptyParameterDescriptionMessage, ) testForMessage(oneParameterDescBuf, expectedOneParameterMessage) testForMessage(twoParameterDescBuf, expectedTwoParameterMessage) }) describe('parsing rows', () => { describe('parsing empty row', () => { testForMessage(emptyRowFieldBuf, { name: 'dataRow', fieldCount: 0, length: emptyRowFieldBuf.byteLength - 1, }) }) describe('parsing data row with fields', () => { testForMessage(oneFieldBuf, { name: 'dataRow', fieldCount: 1, fields: ['test'], length: oneFieldBuf.byteLength - 1, }) }) }) describe('notice message', () => { // this uses the same logic as error message const buff = buffers.notice([{ type: 'C', value: 'code' }]) testForMessage(buff, { name: 'notice', code: 'code', length: buff.byteLength - 1, }) }) testForMessage(buffers.error([]), { name: 'error', length: buffers.error([]).byteLength - 1, }) describe('with all the fields', () => { const buffer = buffers.error([ { type: 'S', value: 'ERROR', }, { type: 'C', value: 'code', }, { type: 'M', value: 'message', }, { type: 'D', value: 'details', }, { type: 'H', value: 'hint', }, { type: 'P', value: '100', }, { type: 'p', value: '101', }, { type: 'q', value: 'query', }, { type: 'W', value: 'where', }, { type: 'F', value: 'file', }, { type: 'L', value: 'line', }, { type: 'R', value: 'routine', }, { type: 'Z', // ignored value: 'alsdkf', }, ]) testForMessage(buffer, { name: 'error', severity: 'ERROR', code: 'code', message: 'message', detail: 'details', hint: 'hint', position: '100', internalPosition: '101', internalQuery: 'query', where: 'where', file: 'file', line: 'line', routine: 'routine', length: buffer.byteLength - 1, }) }) testForMessage(parseCompleteBuffer, { name: 'parseComplete', length: 5, }) testForMessage(bindCompleteBuffer, { name: 'bindComplete', length: 5, }) testForMessage(buffers.closeComplete(), { name: 'closeComplete', length: 5, }) describe('parses portal suspended message', () => { testForMessage(portalSuspendedBuffer, { name: 'portalSuspended', length: 5, }) }) describe('parses replication start message', () => { testForMessage(new Uint8Array([0x57, 0x00, 0x00, 0x00, 0x04]), { name: 'replicationStart', length: 4, }) }) describe('copy', () => { testForMessage(buffers.copyIn(0), { name: 'copyInResponse', length: 7, binary: false, columnTypes: [], }) testForMessage(buffers.copyIn(2), { name: 'copyInResponse', length: 11, binary: false, columnTypes: [0, 1], }) testForMessage(buffers.copyOut(0), { name: 'copyOutResponse', length: 7, binary: false, columnTypes: [], }) testForMessage(buffers.copyOut(3), { name: 'copyOutResponse', length: 13, binary: false, columnTypes: [0, 1, 2], }) testForMessage(buffers.copyDone(), { name: 'copyDone', length: 4, }) testForMessage(buffers.copyData(new Uint8Array([5, 6, 7])), { name: 'copyData', length: 7, chunk: new Uint8Array([5, 6, 7]), }) }) // since the data message on a stream can randomly divide the incoming // tcp packets anywhere, we need to make sure we can parse every single // split on a tcp message describe('split buffer, single message parsing', () => { const fullBufferView = buffers.dataRow([null, 'bang', 'zug zug', null, '!']) const fullBuffer = fullBufferView.buffer it('parses when full buffer comes in', async () => { const messages = await parseBuffers([fullBuffer]) const message = messages[0] as DataRowMessage expect(message.fields.length).toBe(5) expect(message.fields[0]).toBe(null) expect(message.fields[1]).toBe('bang') expect(message.fields[2]).toBe('zug zug') expect(message.fields[3]).toBe(null) expect(message.fields[4]).toBe('!') }) const testMessageRecievedAfterSpiltAt = async (split: number) => { const firstBufferView = new Uint8Array(fullBuffer.byteLength - split) const secondBufferView = new Uint8Array( fullBuffer.byteLength - firstBufferView.byteLength, ) firstBufferView.set( new Uint8Array(fullBuffer, 0, firstBufferView.byteLength), ) secondBufferView.set( new Uint8Array(fullBuffer, firstBufferView.byteLength), ) const messages = await parseBuffers([fullBuffer]) const message = messages[0] as DataRowMessage expect(message.fields.length).toBe(5) expect(message.fields[0]).toBe(null) expect(message.fields[1]).toBe('bang') expect(message.fields[2]).toBe('zug zug') expect(message.fields[3]).toBe(null) expect(message.fields[4]).toBe('!') } it('parses when split in the middle', () => { testMessageRecievedAfterSpiltAt(6) }) it('parses when split at end', () => { testMessageRecievedAfterSpiltAt(2) }) it('parses when split at beginning', () => { testMessageRecievedAfterSpiltAt(fullBuffer.byteLength - 2) testMessageRecievedAfterSpiltAt(fullBuffer.byteLength - 1) testMessageRecievedAfterSpiltAt(fullBuffer.byteLength - 5) }) }) describe('split buffer, multiple message parsing', () => { const dataRowBuffer = buffers.dataRow(['!']) const readyForQueryBuffer = buffers.readyForQuery() const fullBuffer = new ArrayBuffer( dataRowBuffer.byteLength + readyForQueryBuffer.byteLength, ) const fullBufferView = new Uint8Array(fullBuffer) fullBufferView.set(new Uint8Array(dataRowBuffer)) fullBufferView.set( new Uint8Array(readyForQueryBuffer), dataRowBuffer.byteLength, ) function verifyMessages(messages: BackendMessage[]) { expect(messages.length).toBe(2) expect(messages[0]).toEqual({ name: 'dataRow', fieldCount: 1, length: 11, fields: ['!'], }) expect((messages[0] as DataRowMessage).fields[0]).toBe('!') expect(messages[1]).toEqual({ name: 'readyForQuery', length: 5, status: 'I', }) } // sanity check it('recieves both messages when packet is not split', async () => { const messages = await parseBuffers([fullBuffer]) verifyMessages(messages) }) const splitAndVerifyTwoMessages = async (split: number) => { const firstBufferView = new Uint8Array(fullBuffer.byteLength - split) const secondBufferView = new Uint8Array( fullBuffer.byteLength - firstBufferView.byteLength, ) firstBufferView.set( new Uint8Array(fullBuffer, 0, firstBufferView.byteLength), ) secondBufferView.set( new Uint8Array(fullBuffer, firstBufferView.byteLength), ) const messages = await parseBuffers([ firstBufferView.buffer, secondBufferView.buffer, ]) verifyMessages(messages) } describe('recieves both messages when packet is split', () => { it('in the middle', () => { return splitAndVerifyTwoMessages(11) }) it('at the front', () => { return Promise.all([ splitAndVerifyTwoMessages(fullBuffer.byteLength - 1), splitAndVerifyTwoMessages(fullBuffer.byteLength - 4), splitAndVerifyTwoMessages(fullBuffer.byteLength - 6), ]) }) it('at the end', () => { return Promise.all([ splitAndVerifyTwoMessages(8), splitAndVerifyTwoMessages(1), ]) }) }) }) describe('buffer view handling', () => { it('should only read buffer section specified by view', async () => { const originalMessageBufferView = buffers.dataRow(['bang']) const largerView = concatBuffers([ new Uint8Array([1, 2, 3, 4]), originalMessageBufferView, new Uint8Array([5, 6, 7, 8]), ]) const fullBufferView = new Uint8Array( largerView.buffer, 4, originalMessageBufferView.byteLength, ) const messages = await parseBuffers([fullBufferView]) expect(messages.length).toBe(1) expect(messages[0]).toEqual({ name: 'dataRow', fieldCount: 1, length: originalMessageBufferView.byteLength - 1, fields: ['bang'], }) }) }) }) ================================================ FILE: packages/pg-protocol/test/outbound-serializer.test.ts ================================================ import { describe, it, expect } from 'vitest' import { serialize } from '../src/serializer' import BufferList from './testing/buffer-list' describe('serializer', () => { it('builds startup message', () => { const actual = serialize.startup({ user: 'brian', database: 'bang', }) expect(actual).toEqual( new BufferList() .addInt16(3) .addInt16(0) .addCString('user') .addCString('brian') .addCString('database') .addCString('bang') .addCString('client_encoding') .addCString('UTF8') .addCString('') .join(true), ) }) it('builds password message', () => { const actual = serialize.password('!') expect(actual).toEqual(new BufferList().addCString('!').join(true, 'p')) }) it('builds request ssl message', () => { const actual = serialize.requestSsl() const expected = new BufferList().addInt32(80877103).join(true) expect(actual).toEqual(expected) }) it('builds SASLInitialResponseMessage message', () => { const actual = serialize.sendSASLInitialResponseMessage('mech', 'data') expect(actual).toEqual( new BufferList() .addCString('mech') .addInt32(4) .addString('data') .join(true, 'p'), ) }) it('builds SCRAMClientFinalMessage message', () => { const actual = serialize.sendSCRAMClientFinalMessage('data') expect(actual).toEqual(new BufferList().addString('data').join(true, 'p')) }) it('builds query message', () => { const txt = 'select * from boom' const actual = serialize.query(txt) expect(actual).toEqual(new BufferList().addCString(txt).join(true, 'Q')) }) describe('parse message', () => { it('builds parse message', () => { const actual = serialize.parse({ text: '!' }) const expected = new BufferList() .addCString('') .addCString('!') .addInt16(0) .join(true, 'P') expect(actual).toEqual(expected) }) it('builds parse message with named query', () => { const actual = serialize.parse({ name: 'boom', text: 'select * from boom', types: [], }) const expected = new BufferList() .addCString('boom') .addCString('select * from boom') .addInt16(0) .join(true, 'P') expect(actual).toEqual(expected) }) it('with multiple parameters', () => { const actual = serialize.parse({ name: 'force', text: 'select * from bang where name = $1', types: [1, 2, 3, 4], }) const expected = new BufferList() .addCString('force') .addCString('select * from bang where name = $1') .addInt16(4) .addInt32(1) .addInt32(2) .addInt32(3) .addInt32(4) .join(true, 'P') expect(actual).toEqual(expected) }) }) describe('bind messages', () => { it('with no values', () => { const actual = serialize.bind() const expectedBuffer = new BufferList() .addCString('') .addCString('') .addInt16(0) .addInt16(0) .addInt16(0) .join(true, 'B') expect(actual).toEqual(expectedBuffer) }) it('with named statement, portal, and values', () => { const actual = serialize.bind({ portal: 'bang', statement: 'woo', values: ['1', 'hi', null, 'zing'], }) const expectedBuffer = new BufferList() .addCString('bang') // portal name .addCString('woo') // statement name .addInt16(4) .addInt16(0) .addInt16(0) .addInt16(0) .addInt16(0) .addInt16(4) .addInt32(1) .add(new TextEncoder().encode('1')) .addInt32(2) .add(new TextEncoder().encode('hi')) .addInt32(-1) .addInt32(4) .add(new TextEncoder().encode('zing')) .addInt16(0) .join(true, 'B') expect(actual).toEqual(expectedBuffer) }) }) it('with custom valueMapper', () => { const actual = serialize.bind({ portal: 'bang', statement: 'woo', values: ['1', 'hi', null, 'zing'], valueMapper: () => null, }) const expectedBuffer = new BufferList() .addCString('bang') // portal name .addCString('woo') // statement name .addInt16(4) .addInt16(0) .addInt16(0) .addInt16(0) .addInt16(0) .addInt16(4) .addInt32(-1) .addInt32(-1) .addInt32(-1) .addInt32(-1) .addInt16(0) .join(true, 'B') expect(actual).toEqual(expectedBuffer) }) it('with named statement, portal, and buffer value', () => { const actual = serialize.bind({ portal: 'bang', statement: 'woo', values: ['1', 'hi', null, new TextEncoder().encode('zing')], }) const expectedBuffer = new BufferList() .addCString('bang') // portal name .addCString('woo') // statement name .addInt16(4) // value count .addInt16(0) // string .addInt16(0) // string .addInt16(0) // string .addInt16(1) // binary .addInt16(4) .addInt32(1) .add(new TextEncoder().encode('1')) .addInt32(2) .add(new TextEncoder().encode('hi')) .addInt32(-1) .addInt32(4) .add(new TextEncoder().encode('zing')) .addInt16(0) .join(true, 'B') expect(actual).toEqual(expectedBuffer) }) describe('builds execute message', () => { it('for unamed portal with no row limit', () => { const actual = serialize.execute() const expectedBuffer = new BufferList() .addCString('') .addInt32(0) .join(true, 'E') expect(actual).toEqual(expectedBuffer) }) it('for named portal with row limit', () => { const actual = serialize.execute({ portal: 'my favorite portal', rows: 100, }) const expectedBuffer = new BufferList() .addCString('my favorite portal') .addInt32(100) .join(true, 'E') expect(actual).toEqual(expectedBuffer) }) }) it('builds flush command', () => { const actual = serialize.flush() const expected = new BufferList().join(true, 'H') expect(actual).toEqual(expected) }) it('builds sync command', () => { const actual = serialize.sync() const expected = new BufferList().join(true, 'S') expect(actual).toEqual(expected) }) it('builds end command', () => { const actual = serialize.end() const expected = new Uint8Array([0x58, 0, 0, 0, 4]) expect(actual).toEqual(expected) }) describe('builds describe command', () => { it('describe statement', () => { const actual = serialize.describe({ type: 'S', name: 'bang' }) const expected = new BufferList() .addChar('S') .addCString('bang') .join(true, 'D') expect(actual).toEqual(expected) }) it('describe unnamed portal', () => { const actual = serialize.describe({ type: 'P' }) const expected = new BufferList() .addChar('P') .addCString('') .join(true, 'D') expect(actual).toEqual(expected) }) }) describe('builds close command', () => { it('describe statement', () => { const actual = serialize.close({ type: 'S', name: 'bang' }) const expected = new BufferList() .addChar('S') .addCString('bang') .join(true, 'C') expect(actual).toEqual(expected) }) it('describe unnamed portal', () => { const actual = serialize.close({ type: 'P' }) const expected = new BufferList() .addChar('P') .addCString('') .join(true, 'C') expect(actual).toEqual(expected) }) }) describe('copy messages', () => { it('builds copyFromChunk', () => { const actual = serialize.copyData(new Uint8Array([1, 2, 3])) const expected = new BufferList() .add(new Uint8Array([1, 2, 3])) .join(true, 'd') expect(actual).toEqual(expected) }) it('builds copy fail', () => { const actual = serialize.copyFail('err!') const expected = new BufferList().addCString('err!').join(true, 'f') expect(actual).toEqual(expected) }) it('builds copy done', () => { const actual = serialize.copyDone() const expected = new BufferList().join(true, 'c') expect(actual).toEqual(expected) }) }) it('builds cancel message', () => { const actual = serialize.cancel(3, 4) const expected = new BufferList() .addInt16(1234) .addInt16(5678) .addInt32(3) .addInt32(4) .join(true) expect(actual).toEqual(expected) }) }) ================================================ FILE: packages/pg-protocol/test/string-utils.test.ts ================================================ import { describe, it, expect } from 'vitest' import { byteLengthUtf8 } from '../src/string-utils' // Adjust the import based on your file structure describe('byteLengthUtf8', () => { it('should return 0 for an empty string', () => { expect(byteLengthUtf8('')).toBe(0) }) it('should return the correct byte length for ASCII characters', () => { expect(byteLengthUtf8('hello')).toBe(5) // Each character is 1 byte }) it('should return the correct byte length for extended ASCII characters', () => { expect(byteLengthUtf8('©')).toBe(2) // © is U+00A9, which is 2 bytes in UTF-8 }) it('should return the correct byte length for characters from the BMP', () => { expect(byteLengthUtf8('你好')).toBe(6) // Each character is 3 bytes in UTF-8 }) it('should return the correct byte length for surrogate pairs', () => { expect(byteLengthUtf8('𝄞')).toBe(4) // 𝄞 is U+1D11E, which is 4 bytes in UTF-8 }) it('should handle mixed content correctly', () => { expect(byteLengthUtf8('hello 你好 𝄞')).toBe(17) // 5 + 1 + 6 + 1 + 4 bytes }) it('should correctly handle emoji characters', () => { expect(byteLengthUtf8('😀')).toBe(4) // 😀 is U+1F600, which is 4 bytes in UTF-8 }) it('should handle complex strings with different languages and symbols', () => { const complexStr = 'The quick brown 🦊 jumps over 13 lazy 🐶! 你好世界' expect(byteLengthUtf8(complexStr)).toBe(58) // Mix of ASCII, emoji, and Chinese characters }) }) ================================================ FILE: packages/pg-protocol/test/testing/buffer-list.ts ================================================ import { byteLengthUtf8 } from '../../src/string-utils' export default class BufferList { constructor(public buffers: ArrayBuffer[] = []) {} public add(buffer: ArrayBuffer, front?: boolean) { this.buffers[front ? 'unshift' : 'push'](buffer) return this } public addInt16(val: number, front?: boolean) { return this.add(new Uint8Array([val >>> 8, val >>> 0]).buffer, front) } public getByteLength(initial?: number) { return this.buffers.reduce((previous, current) => { return previous + current.byteLength }, initial ?? 0) } public addInt32(val: number, first?: boolean) { return this.add( new Uint8Array([ (val >>> 24) & 0xff, (val >>> 16) & 0xff, (val >>> 8) & 0xff, (val >>> 0) & 0xff, ]).buffer, first, ) } public addCString(val: string, front?: boolean) { const len = byteLengthUtf8(val) const bufferView = new Uint8Array(len + 1) new TextEncoder().encodeInto(val, bufferView) bufferView[len] = 0 return this.add(bufferView.buffer, front) } public addString(val: string, front?: boolean) { const len = byteLengthUtf8(val) const bufferView = new Uint8Array(len) new TextEncoder().encodeInto(val, bufferView) return this.add(bufferView.buffer, front) } public addChar(char: string, first?: boolean) { const bufferView = new TextEncoder().encode(char) return this.add(bufferView.buffer, first) } public addByte(byte: number) { return this.add(new Uint8Array([byte]).buffer) } public join(appendLength?: boolean, char?: string): Uint8Array { let length = this.getByteLength() if (appendLength) { this.addInt32(length + 4, true) return this.join(false, char) } if (char) { this.addChar(char, true) length++ } const result = new ArrayBuffer(length) let index = 0 this.buffers.forEach((buffer) => { new Uint8Array(result).set(new Uint8Array(buffer), index) index += buffer.byteLength }) return new Uint8Array(result) } public static concat(...args: ArrayBuffer[]): Uint8Array { const total = new BufferList() for (let i = 0; i < args.length; i++) { total.add(args[i]) } return new Uint8Array(total.join()) } } ================================================ FILE: packages/pg-protocol/test/testing/test-buffers.ts ================================================ // https://www.postgresql.org/docs/current/protocol-message-formats.html import { Field } from '../../src/messages' import BufferList from './buffer-list' const buffers = { readyForQuery: () => { return new BufferList().add(new TextEncoder().encode('I')).join(true, 'Z') }, authenticationOk: () => { return new BufferList().addInt32(0).join(true, 'R') }, authenticationCleartextPassword: () => { return new BufferList().addInt32(3).join(true, 'R') }, authenticationMD5Password: () => { return new BufferList() .addInt32(5) .add(new Uint8Array([1, 2, 3, 4]).buffer) .join(true, 'R') }, authenticationSASL: () => { return new BufferList() .addInt32(10) .addCString('SCRAM-SHA-256') .addCString('') .join(true, 'R') }, authenticationSASLContinue: () => { return new BufferList().addInt32(11).addString('data').join(true, 'R') }, authenticationSASLFinal: () => { return new BufferList().addInt32(12).addString('data').join(true, 'R') }, parameterStatus: (name: string, value: string) => { return new BufferList().addCString(name).addCString(value).join(true, 'S') }, backendKeyData: (processID: number, secretKey: number) => { return new BufferList() .addInt32(processID) .addInt32(secretKey) .join(true, 'K') }, commandComplete: (string: string) => { return new BufferList().addCString(string).join(true, 'C') }, rowDescription: (fields: Field[]) => { fields = fields ?? [] const buf = new BufferList() buf.addInt16(fields.length) fields.forEach((field) => { buf .addCString(field.name) .addInt32(field.tableID) .addInt16(field.columnID) .addInt32(field.dataTypeID) .addInt16(field.dataTypeSize) .addInt32(field.dataTypeModifier) .addInt16(field.format) }) return buf.join(true, 'T') }, parameterDescription: (dataTypeIDs: number[]) => { dataTypeIDs = dataTypeIDs ?? [] const buf = new BufferList() buf.addInt16(dataTypeIDs.length) dataTypeIDs.forEach((dataTypeID) => { buf.addInt32(dataTypeID) }) return buf.join(true, 't') }, dataRow: (columns: (string | null)[]) => { columns = columns ?? [] const buf = new BufferList() buf.addInt16(columns.length) columns.forEach((col) => { if (col === null) { buf.addInt32(-1) } else { const strBuf = new TextEncoder().encode(col).buffer buf.addInt32(strBuf.byteLength) buf.add(strBuf) } }) return buf.join(true, 'D') }, error: (fields: { type: string; value: string }[]) => { return buffers.errorOrNotice(fields).join(true, 'E') }, notice: (fields: { type: string; value: string }[]) => { return buffers.errorOrNotice(fields).join(true, 'N') }, errorOrNotice: (fields: { type: string; value: string }[]) => { fields = fields ?? [] const buf = new BufferList() fields.forEach((field) => { buf.addChar(field.type) buf.addCString(field.value) }) return buf.add(new Uint8Array([0]).buffer) // terminator }, parseComplete: () => { return new BufferList().join(true, '1') }, bindComplete: () => { return new BufferList().join(true, '2') }, notification: (id: number, channel: string, payload: string) => { return new BufferList() .addInt32(id) .addCString(channel) .addCString(payload) .join(true, 'A') }, emptyQuery: () => { return new BufferList().join(true, 'I') }, portalSuspended: () => { return new BufferList().join(true, 's') }, closeComplete: () => { return new BufferList().join(true, '3') }, copyIn: (cols: number) => { const list = new BufferList() // text mode .addByte(0) // column count .addInt16(cols) for (let i = 0; i < cols; i++) { list.addInt16(i) } return list.join(true, 'G') }, copyOut: (cols: number) => { const list = new BufferList() // text mode .addByte(0) // column count .addInt16(cols) for (let i = 0; i < cols; i++) { list.addInt16(i) } return list.join(true, 'H') }, copyData: (bytes: ArrayBuffer) => { return new BufferList().add(bytes).join(true, 'd') }, copyDone: () => { return new BufferList().join(true, 'c') }, } export default buffers ================================================ FILE: packages/pg-protocol/tsconfig.json ================================================ { "extends": "../../tsconfig.json", "include": [ "src", "test", "eslint.config.js", "tsup.config.js", "vitest.config.ts" ] } ================================================ FILE: packages/pg-protocol/tsup.config.ts ================================================ import { defineConfig } from 'tsup' const minify = process.env.DEBUG === 'true' ? false : true export default defineConfig([ { entry: ['src/index.ts', 'src/messages.ts'], format: ['cjs', 'esm'], outDir: 'dist', dts: true, minify: minify, sourcemap: true, clean: true, }, ]) ================================================ FILE: packages/pg-protocol/vitest.config.ts ================================================ import { defineConfig } from 'vitest/config' export default defineConfig({ test: { name: 'pg-protocol', dir: './test', watch: false, typecheck: { enabled: true }, restoreMocks: true, }, }) ================================================ FILE: packages/pglite/.gitignore ================================================ node_modules release/* !release/*.d.ts dist pgdata* ================================================ FILE: packages/pglite/CHANGELOG.md ================================================ # @electric-sql/pglite ## 0.4.1 ### Patch Changes - 37fb39e: clear timers on exit; remove pglite-socket dependency on pglite-postgis ## 0.4.0 ### Minor Changes - d848955: New simplified PGlite with separate initdb. New included extension: pg_textsearch (experimental). New package for postgis (experimental) as extension. Breaking changes: 'postgres' is the default database instead of 'template1'. ## 0.3.16 ### Patch Changes - 3dfa40f: Add Apache AGE graph database extension support ## 0.3.15 ### Patch Changes - 45bff97: added pgcrypto extension - 5ec474f: Added pg_hashids extension. ## 0.3.14 ### Patch Changes - 8785034: Added pg_uuidv7 extension. - 90cfee8: live extension: use schema.oid + table.oid in trigger identifiers ## 0.3.13 ### Patch Changes - ad3d0d8: Updated pg_dump to use callback data exchange; built pg_dump with emscripten ## 0.3.12 ### Patch Changes - ce0e74e: Added pgTAP extension. ## 0.3.11 ### Patch Changes - 9a104b9: Added dict_int, dict_xsyn, file_fdw, intarray, pageinspect, pg_buffercache, pg_freespacemap, pg_surgery, pg_visibility, pg_walinspect, unaccent contrib extensions ## 0.3.10 ### Patch Changes - ad765ed: initdb calls system to query the server configs. avoid that by hardcoding a return value of 123 ## 0.3.9 ### Patch Changes - e40ccad: Upgrade emsdk ## 0.3.8 ### Patch Changes - f12a582: Ensure MessageContext and its children are actually cleared between queries ## 0.3.7 ### Patch Changes - 0936962: nested exception bugfix; wasm runtime exception fix ## 0.3.6 ### Patch Changes - 6898469: PostgreSQL 17.5 - 469be18: bug fix in packaging the distribution - 64e33c7: bug fixes ## 0.3.5 ### Patch Changes - 6653899: fix: pglite worker dumpDataDir not using compression parameter - 5f007fc: fix MERGE affected rows return count ## 0.3.4 ### Patch Changes - 1fcaa3e: fix race condition in live query unsubscribe - 38a55d0: fix cjs/esm misconfigurations - aac7003: remove double wasm instantiation when providing a wasm module' - 8ca254d: expose listen function in transaction object ## 0.3.3 ### Patch Changes - ea2c7c7: pg_ivm extension ## 0.3.2 ### Patch Changes - 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. ## 0.3.1 ### Patch Changes - 713364e: Fix a bug in the live plugin that could result in an error when unsubscribing from a live query ## 0.3.0 ### Minor Changes - 97e52f7: upgrade to postgresql 17.4 ### Patch Changes - 4356024: bug fix live plugin when dealing with case sensitive table names - 0033bc7: Fix a race condition in live query unsubscription that could result in live queries failing to update. ## 0.2.17 ### Patch Changes - 6bdd74e: listen and unlisten case sensitivity behaviour aligned to default PostgreSQL behaviour' - 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) ## 0.2.16 ### Patch Changes - c36fd09: Improvements to parsing results received from pg - e037883: Fixed PGliteWorkerOptions type - d6b981b: Fix the return type of the `.transaction` method - 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! - 118ba3e: Add affectedRows for COPY command - d93c1bb: Add `refreshArrayTypes()` call to re-sync newly created complex array columns, like enums - ddd4a68: Removes postgis extension which leads to a smaller build of the package - f3f1103: Refactor the protocol message parse code to be simpler and easer to follow - 67fb2aa: feat: add support for loading compressed dumps via loadDataDir that are not labeled with mimetype ## 0.2.15 ### Patch Changes - fa13714: Remove a debug console.log from the live query plugin ## 0.2.14 ### Patch Changes - 6547374: New `runExclusive` method on PGlite that allows you to hold an exclusive lock on the database, for use with `execProtocol*` methods - 6547374: A new `execProtocolRawSync` method that can execute a postgres wire protocol synchronously - df5c290: Make pglite compatible with @jest-environment: node - 1784d04: Bump Emscripten to 3.1.72 - ae36974: Fix a bug with pipelining prepared statements. - 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. - ce212cf: Use PG "WITH RECURSIVE" to traverse the live query dependencies ## 0.2.13 ### Patch Changes - 5e39036: Fix live queries can query a view by recursively finding all tables they depend on. - 3d8efbb: Bump dependencies to address Dependabot alerts - 1844b10: Add a new `describeQuery` method to get type information about a query's parameters and result fields without executing it. - 79e6082: Changed PGlite interface to automatically add typing for extensions. - 16d2296: Fix bug where Firefox was unable to remove OPFS files - cf50f47: Change interface of execProtocol return value to remove duplication of data buffer - bd1b3b9: Fix a bug in live.incrementalQuery where if it was set to `limit 1` it would return no rows - 5e39036: Extend the return value of live queries to be subscribed to multiple times, and make the callback optional on initiation. - 16d2296: Fix an issue with live.incrementalQuery where the order would be incorrect with rapid consecutive queries - e9bd9a7: Fix the types exports spesified in package.json - c442c88: Added custom parser and serializer options to `PGliteOptions`. Added custom serializer option to `QueryOptions`. ## 0.2.12 ### Patch Changes - 1495625: add `util` to package.json browser config to exclude it in browser builds - d3905cf: Export LiveNamespace type from the live extension - 1f036dc: The VFS API has been refactored, along with the OPFS implementation, in order to prepare it for becoming a public API. - 52ddcb0: Fix issue where a string passed as a parameter expecting JSON would not treat the string as a json encoded string ## 0.2.11 ### Patch Changes - 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. ## 0.2.10 ### Patch Changes - 3113d56: Add `fs/promises: false` to the browser config in package.json to exclude it from browser builds. - 23cd31a: Improve type serialization so it matches exceptions from other libraries ## 0.2.9 ### Patch Changes - 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 - a5712a8: Fix a bug where Postgres would hang after a "DROP DATABASE" followed by an unclean shutdown and restart ## 0.2.8 ### Patch Changes - 53ec60e: Fix the sql tagged template method to correctly handle null values - 880b60d: Fix close() as it was not correctly shutting down Postgres - 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. - 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. - 880b60d: Fix DROP DATABASE so that it doesn't hang in a busy loop - 880b60d: Initial work towards a WASI build of PGlite - 4aeb677: Change parameter serialization to be driven by expected types from Postgres, rather than inferring from the JS type - 19b3529: Fix path alias for `@electric-sql/pg-protocol` to bundle types correctly ## 0.2.7 ### Patch Changes - 5e65236: Fix an issue where the protocol ready-for-query message was not returned after an error when using execProtocol. - 5e65236: Remove a double forward slash in bundled extension paths. ## 0.2.6 ### Patch Changes - 09b356c: Fixed extended query wire protocol - 4238595: Fix `incrementalQuery` and `changes` APIs not working when keyed on non-integer primary keys like `TEXT` and `UUID`. - ef57e10: Refactor PGliteWorker so parsing happens on the main thread, fixes query options with custom parser ## 0.2.5 ### Patch Changes - fcb101c: Add ` tx.sql`` ` API to PGliteWorker transactions. - 3ee5e60: Implement `.create(dataDir: string, options: PGliteOptions)` signature for factory method to match constructor. - 0dc34af: Enable event triggers like `ddl_command_end`. ## 0.2.4 ### Patch Changes - 113aa56: Replace `pg-protocol` with vendored version and remove `Buffer` polyfill. ## 0.2.3 ### Patch Changes - d8ef285: Implement `sql` tagged template literal method for querying, along with helpers. ## 0.2.2 ### Patch Changes - be41880: Fix linking bug that prevented full text search working correctly ## 0.2.1 ### Patch Changes - 2cc39ff: New compression options for the `dumpDataDir` method and fix a bug that prevented compression when used in a worker. ================================================ FILE: packages/pglite/README.md ================================================

ElectricSQL logo

PGlite - the WASM build of Postgres from ElectricSQL.
Build reactive, realtime, local-first apps directly on Postgres.

License - Apache 2.0 Status - Alpha Chat - Discord

# PGlite - Postgres in WASM ![PGlite](https://raw.githubusercontent.com/electric-sql/pglite/main/screenshot.png) PGlite 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). ```javascript import { PGlite } from '@electric-sql/pglite' const db = new PGlite() await db.query("select 'Hello world' as message;") // -> { rows: [ { message: "Hello world" } ] } ``` It can be used as an ephemeral in-memory database, or with persistence either to the file system (Node/Bun/Deno) or indexedDB (Browser). Unlike previous "Postgres in the browser" projects, PGlite does not use a Linux virtual machine - it is simply Postgres in WASM. For full documentation and user guides see [pglite.dev](https://pglite.dev). ## Browser It can be installed and imported using your usual package manager: ```js import { PGlite } from '@electric-sql/pglite' ``` or using a CDN such as JSDeliver: ```js import { PGlite } from 'https://cdn.jsdelivr.net/npm/@electric-sql/pglite/dist/index.js' ``` Then for an in-memory Postgres: ```js const db = new PGlite() await db.query("select 'Hello world' as message;") // -> { rows: [ { message: "Hello world" } ] } ``` or to persist the database to indexedDB: ```js const db = new PGlite('idb://my-pgdata') ``` ## Node/Bun/Deno Install into your project: **NodeJS** ```bash npm install @electric-sql/pglite ``` **Bun** ```bash bun install @electric-sql/pglite ``` **Deno** ```bash deno add npm:@electric-sql/pglite ``` To use the in-memory Postgres: ```javascript import { PGlite } from '@electric-sql/pglite' const db = new PGlite() await db.query("select 'Hello world' as message;") // -> { rows: [ { message: "Hello world" } ] } ``` or to persist to the filesystem: ```javascript const db = new PGlite('./path/to/pgdata') ``` ## How it works PostgreSQL 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. Fortunately, 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. ## Limitations - PGlite is single user/connection. ## How to build PGlite and contribute The build process of PGlite is split into two parts: 1. Building the Postgres WASM module. 2. Building the PGlite client library and other TypeScript packages. Docker 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. To start checkout the repository and install dependencies: ```bash git clone https://github.com/electric-sql/pglite cd pglite pnpm install ``` To build everything, we have the convenient `pnpm build:all` command in the root of the repository. This command will: 1. Use Docker to build the Postgres WASM module. The artifacts from this are then copied to `/packages/pglite/release`. 2. Build the PGlite client library and other TypeScript packages. To _only_ build the Postgres WASM module (i.e. point 1 above), run ```bash pnpm wasm:build ``` If 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`. To build all TypeScript packages (i.e. point 2 of the above), run: ```bash pnpm ts:build ``` This 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. Or alternatively to build a single package, move into the package directory and run: ```bash cd packages/pglite pnpm build ``` When ready to open a PR, run the following command at the root of the repository: ```bash pnpm changeset ``` And follow the instructions to create an appropriate changeset. Please ensure any contributions that touch code are accompanied by a changeset. ## Acknowledgments PGlite 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). ## License PGlite 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. Changes to the [Postgres source](https://github.com/electric-sql/postgres-wasm) are licensed under the PostgreSQL License. ================================================ FILE: packages/pglite/eslint.config.js ================================================ import globals from 'globals' import rootConfig from '../../eslint.config.js' export default [ ...rootConfig, { ignores: ['release/**/*', 'examples/**/*', 'dist/**/*'], }, { languageOptions: { globals: { ...globals.browser, ...globals.node, }, }, rules: { ...rootConfig.rules, '@typescript-eslint/no-explicit-any': 'off', }, }, { files: ['tests/targets/deno/**/*.js'], languageOptions: { globals: { Deno: false, }, }, }, ] ================================================ FILE: packages/pglite/examples/basic.html ================================================ PGlite Basic Example

PGlite Basic Example

================================================ FILE: packages/pglite/examples/basic.js ================================================ import { PGlite } from '../dist/index.js' console.log('Starting...') // In-memory database: const pg = new PGlite() // Or, on-disk database: // const pg = new PGlite('pgdata'); console.log('Waiting for ready...') await pg.waitReady console.log('Ready!') console.log('Creating table...') await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) console.log('Inserting data...') await pg.exec("INSERT INTO test (name) VALUES ('test');") console.log('Selecting data...') const res = await pg.exec(` SELECT * FROM test; `) console.log(res) console.log(await pg.exec('SELECT * FROM test;')) ================================================ FILE: packages/pglite/examples/copy.html ================================================ PGlite COPY Example

PGlite COPY Example

================================================ FILE: packages/pglite/examples/dump-data-dir.html ================================================ PGlite Dump Datadir Example

PGlite Dump Datadir Example

================================================ FILE: packages/pglite/examples/dump-data-dir.js ================================================ import { PGlite } from '../dist/index.js' const pg = new PGlite() await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await pg.exec("INSERT INTO test (name) VALUES ('test');") const file = await pg.dumpDataDir() if (typeof window !== 'undefined') { // Download the dump const url = URL.createObjectURL(file) const a = document.createElement('a') a.href = url a.download = file.name a.click() } else { // Save the dump to a file using node fs const fs = await import('fs') fs.writeFileSync(file.name, await file.arrayBuffer()) } const pg2 = new PGlite({ loadDataDir: file, }) const rows = await pg2.query('SELECT * FROM test;') console.log(rows) ================================================ FILE: packages/pglite/examples/fts.html ================================================ PGlite FTS Example

PGlite FTS Example

================================================ FILE: packages/pglite/examples/live-changes.html ================================================ PGlite Live Changes Example

PGlite Live Changes Example


    
================================================ FILE: packages/pglite/examples/live-incremental.html ================================================ PGlite Live Incremental Query Example

PGlite Live Incremental Query Example

================================================ FILE: packages/pglite/examples/live.html ================================================ PGlite Live Query Example

PGlite Live Query Example

================================================ FILE: packages/pglite/examples/notify.html ================================================ PGlite NOTIFY Example

PGlite NOTIFY Example

================================================ FILE: packages/pglite/examples/opfs-worker.js ================================================ import { PGlite } from '../dist/index.js' import { worker } from '../dist/worker/index.js' worker({ async init() { const pg = new PGlite('opfs-ahp://my-test-db2') // If you want run any specific setup code for the worker process, you can do it here. return pg }, }) console.log('Worker process started') ================================================ FILE: packages/pglite/examples/opfs.html ================================================ PGlite Worker Example

PGlite OPFS Example

Worker Thread - opfs-worker.js

Main Thread

================================================ FILE: packages/pglite/examples/pg_dump.html ================================================ PGlite Basic Example

PGlite Basic Example

================================================ FILE: packages/pglite/examples/pg_dump.js ================================================ import { PGlite } from '../dist/index.js' import { pgDump } from '../../pglite-tools/dist/pg_dump.js' console.log('Starting...') const pg = await PGlite.create({ debug: 1 }) console.log('Creating table...') await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await pg.exec("INSERT INTO test (name) VALUES ('test');") console.log('Dumping database...') const dump = await pgDump({ pg }) console.log(await dump.text()) ================================================ FILE: packages/pglite/examples/plpgsql.html ================================================ PGlite PL/PGSQL Example

PGlite PL/PGSQL Example

================================================ FILE: packages/pglite/examples/query-params.html ================================================ PGlite Query Params Example

PGlite Query Params Example

================================================ FILE: packages/pglite/examples/query-params.js ================================================ import { PGlite, types } from '../dist/index.js' console.log('Starting...') const pg = new PGlite() console.log('Creating table...') await pg.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) console.log('Inserting data...') await pg.query('INSERT INTO test (name) VALUES ($1);', ['test']) await pg.query('INSERT INTO test (name) VALUES ($1);', ['other']) console.log('Selecting data...') const res = await pg.query( ` SELECT * FROM test WHERE name = $1; `, ['test'], ) console.log(res) console.log('Selecting data with options...') const res2 = await pg.query( ` SELECT * FROM test WHERE name = $1; `, ['test'], { rowMode: 'array', parsers: { [types.TEXT]: (value) => value.toUpperCase(), }, }, ) console.log(res2) ================================================ FILE: packages/pglite/examples/repl-idb.html ================================================ ================================================ FILE: packages/pglite/examples/repl.html ================================================ ================================================ FILE: packages/pglite/examples/styles.css ================================================ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300..700&display=swap'); body, html { font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.5; color: #333; background-color: #fff; margin: 1rem 2rem; padding: 0; } h1 { font-size: 1.5rem; margin: 0 0 1rem; } h2 { font-size: 1.1rem; margin: 0 0 1rem; } .script-plus-log :is(script, .script), #log { /* Show the content of the script tag */ display: block; white-space: pre-wrap; width: 50%; font-family: ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono', 'Roboto Mono', 'Oxygen Mono', 'Ubuntu Monospace', 'Source Code Pro', 'Fira Mono', 'Droid Sans Mono', 'Courier New', monospace; } .script-plus-log > :is(script, .script) { padding: 1rem; } .script-plus-log > .scripts, #log { width: 50%; padding: 1rem; } .script-plus-log > .scripts > :is(script, .script) { width: 100%; } .script-plus-log > .scripts, .script-plus-log > :is(script, .script) { background-color: #eee; } script:not([src]):first-line { line-height: 0px; } .log-entry { border-bottom: 1px solid #eee; } .script-plus-log { display: flex; flex-direction: row; background-color: #f9f9f9; border: 1px solid #eee; border-radius: 0.5rem; overflow: hidden; } .scripts h2 { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #ddd; } .scripts h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; } ================================================ FILE: packages/pglite/examples/utils.js ================================================ { const originalConsoleLog = window.console.log window.console.log = function (...args) { originalConsoleLog(...args) const log = document.getElementById('log') const el = document.createElement('div') el.classList.add('log-entry') if (args.length !== 1) { el.innerText = JSON.stringify(args, null, 2) } else { try { el.innerText += typeof args[0] === 'string' ? args.join(' ') : JSON.stringify(args[0], null, 2) } catch (e) { el.innerText = args[0].toString() } } log.appendChild(el) } document.addEventListener('DOMContentLoaded', async () => { document.body.querySelectorAll('script[src]').forEach(async (script) => { const source = fetch(script.src).then((res) => res.text()) const code = await source script.textContent = code }) document.body.querySelectorAll('div.script[rel]').forEach(async (el) => { const source = fetch(el.getAttribute('rel')).then((res) => res.text()) const code = await source el.textContent = code }) }) } ================================================ FILE: packages/pglite/examples/vector.html ================================================ PGlite Vector Example

PGlite Vector Example

================================================ FILE: packages/pglite/examples/worker-process.js ================================================ import { PGlite } from '../dist/index.js' import { worker } from '../dist/worker/index.js' import { vector } from '../dist/vector/index.js' worker({ async init() { const pg = new PGlite({ extensions: { vector, }, }) // If you want run any specific setup code for the worker process, you can do it here. return pg }, }) console.log('Worker process started') ================================================ FILE: packages/pglite/examples/worker.html ================================================ PGlite Worker Example

PGlite Worker Example

Leader: false


    

Worker Thread - worker-process.js

Main Thread

================================================ FILE: packages/pglite/package.json ================================================ { "name": "@electric-sql/pglite", "version": "0.4.1", "private": false, "publishConfig": { "access": "public" }, "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.", "keywords": [ "postgres", "sql", "database", "wasm", "client", "pglite" ], "author": "Electric DB Limited", "homepage": "https://pglite.dev", "license": "Apache-2.0", "main": "dist/index.cjs", "module": "dist/index.js", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } }, "./template": { "import": { "types": "./dist/templating.d.ts", "default": "./dist/templating.js" }, "require": { "types": "./dist/templating.d.cts", "default": "./dist/templating.cjs" } }, "./live": { "import": { "types": "./dist/live/index.d.ts", "default": "./dist/live/index.js" }, "require": { "types": "./dist/live/index.d.cts", "default": "./dist/live/index.cjs" } }, "./worker": { "import": { "types": "./dist/worker/index.d.ts", "default": "./dist/worker/index.js" }, "require": { "types": "./dist/worker/index.d.cts", "default": "./dist/worker/index.cjs" } }, "./vector": { "import": { "types": "./dist/vector/index.d.ts", "default": "./dist/vector/index.js" }, "require": { "types": "./dist/vector/index.d.cts", "default": "./dist/vector/index.cjs" } }, "./pg_ivm": { "import": { "types": "./dist/pg_ivm/index.d.ts", "default": "./dist/pg_ivm/index.js" }, "require": { "types": "./dist/pg_ivm/index.d.cts", "default": "./dist/pg_ivm/index.cjs" } }, "./pgtap": { "import": { "types": "./dist/pgtap/index.d.ts", "default": "./dist/pgtap/index.js" }, "require": { "types": "./dist/pgtap/index.d.cts", "default": "./dist/pgtap/index.cjs" } }, "./pg_uuidv7": { "import": { "types": "./dist/pg_uuidv7/index.d.ts", "default": "./dist/pg_uuidv7/index.js" }, "require": { "types": "./dist/pg_uuidv7/index.d.cts", "default": "./dist/pg_uuidv7/index.cjs" } }, "./age": { "import": { "types": "./dist/age/index.d.ts", "default": "./dist/age/index.js" }, "require": { "types": "./dist/age/index.d.cts", "default": "./dist/age/index.cjs" } }, "./nodefs": { "import": { "types": "./dist/fs/nodefs.d.ts", "default": "./dist/fs/nodefs.js" }, "require": { "types": "./dist/fs/nodefs.d.cts", "default": "./dist/fs/nodefs.cjs" } }, "./opfs-ahp": { "import": { "types": "./dist/fs/opfs-ahp.d.ts", "default": "./dist/fs/opfs-ahp.js" }, "require": { "types": "./dist/fs/opfs-ahp.d.cts", "default": "./dist/fs/opfs-ahp.cjs" } }, "./basefs": { "import": { "types": "./dist/fs/base.d.ts", "default": "./dist/fs/base.js" }, "require": { "types": "./dist/fs/base.d.cts", "default": "./dist/fs/base.cjs" } }, "./contrib/*": { "types": "./dist/contrib/*.d.ts", "import": "./dist/contrib/*.js", "require": "./dist/contrib/*.cjs" }, "./pg_hashids": { "import": { "types": "./dist/pg_hashids/index.d.ts", "default": "./dist/pg_hashids/index.js" }, "require": { "types": "./dist/pg_hashids/index.d.cts", "default": "./dist/pg_hashids/index.cjs" } }, "./pg_textsearch": { "import": { "types": "./dist/pg_textsearch/index.d.ts", "default": "./dist/pg_textsearch/index.js" }, "require": { "types": "./dist/pg_textsearch/index.d.cts", "default": "./dist/pg_textsearch/index.cjs" } } }, "type": "module", "types": "dist/index.d.ts", "files": [ "dist", "!dist/auth_delay.tar.gz", "!dist/basebackup_to_shell.tar.gz", "!dist/basic_archive.tar.gz", "!dist/dblink.tar.gz", "!dist/intagg.tar.gz", "!dist/oid2name.tar.gz", "!dist/pg_prewarm.tar.gz", "!dist/pg_stat_statements.tar.gz", "!dist/pglite.html", "!dist/pgrowlocks.tar.gz", "!dist/pgstattuple.tar.gz", "!dist/spi.tar.gz", "!dist/test_decoding.tar.gz", "!dist/vacuumlo.tar.gz", "!dist/xml2.tar.gz" ], "repository": { "type": "git", "url": "https://github.com/electric-sql/pglite", "directory": "packages/pglite" }, "scripts": { "check:exports": "attw . --pack --profile node16", "test": "pnpm test:basic && pnpm test:node", "test:basic": "pnpm test:clean && vitest tests/*.test.js tests/*.test.ts tests/**/*.test.js tests/**/*.test.ts", "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 ./\"", "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", "test:deno": "cd tests/targets/deno && deno task test", "test:node": "pnpm test:clean && pnpm vitest tests/targets/runtimes/node-*.test.js", "test:runtimes": "pnpm test:bun && pnpm test:node", "test:integration": "pnpm test:runtimes && pnpm test:web", "test:clean": "rm -rf ./pgdata-test", "build:js": "tsup && tsx scripts/bundle-wasm.ts", "build": "pnpm build:js", "dev": "concurrently \"tsup --watch\" \"sleep 1 && tsx scripts/bundle-wasm.ts\" \"pnpm dev-server\"", "dev-server": "pnpm http-server ../", "lint": "eslint ./src ./tests --report-unused-disable-directives --max-warnings 0", "format": "prettier --write ./src ./tests", "typecheck": "tsc --noEmit", "stylecheck": "pnpm lint && prettier --check ./src ./tests", "prepublishOnly": "pnpm check:exports" }, "devDependencies": { "@arethetypeswrong/cli": "^0.18.1", "@electric-sql/pg-protocol": "workspace:*", "@types/emscripten": "^1.41.1", "@types/node": "^20.16.11", "@types/node-fetch": "^2.6.11", "async-mutex": "^0.4.1", "buffer": "^6.0.3", "bun": "^1.1.30", "concurrently": "^8.2.2", "http-server": "^14.1.1", "openpgp": "^6.3.0", "playwright": "^1.48.0", "tinytar": "^0.1.0", "vitest": "^2.1.2" }, "browser": { "fs": false, "fs/promises": false, "path": false, "url": false, "zlib": false, "stream": false, "stream/promises": false, "crypto": false, "ws": false, "child_process": false, "module": false, "util": false } } ================================================ FILE: packages/pglite/scripts/bundle-wasm.ts ================================================ import * as fs from 'fs/promises' import * as path from 'path' async function findAndReplaceInFile( find: string | RegExp, replace: string, file: string, ): Promise { const content = await fs.readFile(file, 'utf8') const replacedContent = content.replace(find, replace) await fs.writeFile(file, replacedContent) } async function findAndReplaceInDir( dir: string, find: string | RegExp, replace: string, extensions: string[], recursive = false, ): Promise { const files = await fs.readdir(dir, { withFileTypes: true }) for (const file of files) { const filePath = path.join(dir, file.name) if (file.isDirectory() && recursive) { await findAndReplaceInDir(filePath, find, replace, extensions) } else { const fileExt = path.extname(file.name) if (extensions.includes(fileExt)) { await findAndReplaceInFile(find, replace, filePath) } } } } const copyFiles = async (srcDir: string, destDir: string) => { await fs.mkdir(destDir, { recursive: true }) const files = await fs.readdir(srcDir) for (const file of files) { if (file.startsWith('.')) { continue } const srcFile = path.join(srcDir, file) const destFile = path.join(destDir, file) const stat = await fs.stat(srcFile) if (stat.isFile()) { await fs.copyFile(srcFile, destFile) console.log(`Copied ${srcFile} to ${destFile}`) } } } async function main() { await copyFiles('./release', './dist') await findAndReplaceInDir('./dist', /\.\.\/release\//g, './', ['.js', '.cjs']) await findAndReplaceInDir('./dist/contrib', /\.\.\/release\//g, '', [ '.js', '.cjs', ]) await findAndReplaceInDir('./dist/vector', /\.\.\/release\//g, '', [ '.js', '.cjs', ]) await findAndReplaceInDir('./dist/pg_ivm', /\.\.\/release\//g, '', [ '.js', '.cjs', ]) await findAndReplaceInDir('./dist/pgtap', /\.\.\/release\//g, '', [ '.js', '.cjs', ]) await findAndReplaceInDir('./dist/pg_uuidv7', /\.\.\/release\//g, '', [ '.js', '.cjs', ]) await findAndReplaceInDir('./dist/age', /\.\.\/release\//g, '', [ '.js', '.cjs', ]) await findAndReplaceInDir('./dist/pg_textsearch', /\.\.\/release\//g, '', ['.js', '.cjs']) await findAndReplaceInDir( './dist', `require("./postgres.js")`, `require("./postgres.cjs").default`, ['.cjs'], ) await findAndReplaceInDir('./dist/pg_hashids', /\.\.\/release\//g, '', ['.js', '.cjs']) } await main() ================================================ FILE: packages/pglite/src/age/index.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, emscriptenOpts: any) => { return { emscriptenOpts, bundlePath: new URL('../../release/age.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const age = { name: 'age', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/argsParser.ts ================================================ // '<(' is process substitution operator and // can be parsed the same as control operator const CONTROL = '(?:' + [ '\\|\\|', '\\&\\&', ';;', '\\|\\&', '\\<\\(', '\\<\\<\\<', '>>', '>\\&', '<\\&', '[&;()|<>]', ].join('|') + ')' const controlRE = new RegExp('^' + CONTROL + '$') const META = '|&;()<> \\t' const SINGLE_QUOTE = '"((\\\\"|[^"])*?)"' const DOUBLE_QUOTE = "'((\\\\'|[^'])*?)'" const hash = /^#$/ const SQ = "'" const DQ = '"' const DS = '$' let TOKEN = '' const mult = 0x100000000 for (let i = 0; i < 4; i++) { TOKEN += (mult * Math.random()).toString(16) } const startsWithToken = new RegExp('^' + TOKEN) type Env = Record | ((key: string) => unknown) interface OpToken { op: string pattern?: string } interface CommentToken { comment: string } type ParsedToken = string | OpToken | CommentToken interface ParseOpts { escape?: string } function matchAll(s: string, r: RegExp): RegExpExecArray[] { const origIndex = r.lastIndex const matches: RegExpExecArray[] = [] let matchObj: RegExpExecArray | null while ((matchObj = r.exec(s))) { matches.push(matchObj) if (r.lastIndex === matchObj.index) { r.lastIndex += 1 } } r.lastIndex = origIndex return matches } function getVar(env: Env, pre: string, key: string): string { let r: unknown = typeof env === 'function' ? env(key) : env[key] if (typeof r === 'undefined' && key !== '') { r = '' } else if (typeof r === 'undefined') { r = '$' } if (typeof r === 'object') { return pre + TOKEN + JSON.stringify(r) + TOKEN } return pre + (r as string) } function parseInternal( string: string, env?: Env, opts?: ParseOpts, ): ParsedToken[] { if (!opts) { opts = {} } const BS = opts.escape || '\\' const BAREWORD = '(\\' + BS + '[\'"' + META + ']|[^\\s\'"' + META + '])+' const chunker = new RegExp( [ '(' + CONTROL + ')', '(' + BAREWORD + '|' + SINGLE_QUOTE + '|' + DOUBLE_QUOTE + ')+', ].join('|'), 'g', ) const matches = matchAll(string, chunker) if (matches.length === 0) { return [] } if (!env) { env = {} } let commented = false return matches .map(function (match): ParsedToken | ParsedToken[] | undefined { const s = match[0] if (!s || commented) { return void undefined } if (controlRE.test(s)) { return { op: s } } // Hand-written scanner/parser for Bash quoting rules: // // 1. inside single quotes, all characters are printed literally. // 2. inside double quotes, all characters are printed literally // except variables prefixed by '$' and backslashes followed by // either a double quote or another backslash. // 3. outside of any quotes, backslashes are treated as escape // characters and not printed (unless they are themselves escaped) // 4. quote context can switch mid-token if there is no whitespace // between the two quote contexts (e.g. all'one'"token" parses as // "allonetoken") let quote: string | false = false let esc = false let out = '' let isGlob = false let i: number function parseEnvVar(): string { i += 1 let varend: number let varname: string const char = s.charAt(i) if (char === '{') { i += 1 if (s.charAt(i) === '}') { throw new Error('Bad substitution: ' + s.slice(i - 2, i + 1)) } varend = s.indexOf('}', i) if (varend < 0) { throw new Error('Bad substitution: ' + s.slice(i)) } varname = s.slice(i, varend) i = varend } else if (/[*@#?$!_-]/.test(char)) { varname = char i += 1 } else { const slicedFromI = s.slice(i) const varendMatch = slicedFromI.match(/[^\w\d_]/) if (!varendMatch) { varname = slicedFromI i = s.length } else { varname = slicedFromI.slice(0, varendMatch.index) i += varendMatch.index! - 1 } } return getVar(env!, '', varname) } for (i = 0; i < s.length; i++) { let c = s.charAt(i) isGlob = isGlob || (!quote && (c === '*' || c === '?')) if (esc) { out += c esc = false } else if (quote) { if (c === quote) { quote = false } else if (quote === SQ) { out += c } else { if (c === BS) { i += 1 c = s.charAt(i) if (c === DQ || c === BS || c === DS) { out += c } else { out += BS + c } } else if (c === DS) { out += parseEnvVar() } else { out += c } } } else if (c === DQ || c === SQ) { quote = c } else if (controlRE.test(c)) { return { op: s } } else if (hash.test(c)) { commented = true const commentObj: CommentToken = { comment: string.slice(match.index + i + 1), } if (out.length) { return [out, commentObj] } return [commentObj] } else if (c === BS) { esc = true } else if (c === DS) { out += parseEnvVar() } else { out += c } } if (isGlob) { return { op: 'glob', pattern: out } } return out }) .reduce(function (prev: ParsedToken[], arg) { return typeof arg === 'undefined' ? prev : prev.concat(arg) }, []) } export default function parse( s: string, env?: Env, opts?: ParseOpts, ): ParsedToken[] { const mapped = parseInternal(s, env, opts) if (typeof env !== 'function') { return mapped } return mapped.reduce(function (acc: ParsedToken[], s) { if (typeof s === 'object') { return acc.concat(s) } const xs = s.split(RegExp('(' + TOKEN + '.*?' + TOKEN + ')', 'g')) if (xs.length === 1) { return acc.concat(xs[0]) } return acc.concat( xs.filter(Boolean).map(function (x): ParsedToken { if (startsWithToken.test(x)) { return JSON.parse(x.split(TOKEN)[1]) as ParsedToken } return x }), ) }, []) } ================================================ FILE: packages/pglite/src/base.ts ================================================ import { query as queryTemplate } from './templating.js' import { parseDescribeStatementResults, parseResults } from './parse.js' import { type Serializer, type Parser, serializers, parsers, arraySerializer, arrayParser, } from './types.js' import type { DebugLevel, PGliteInterface, Results, Transaction, QueryOptions, ExecProtocolOptions, ExecProtocolResult, DescribeQueryResult, ExecProtocolOptionsStream, } from './interface.js' import { serialize as serializeProtocol } from '@electric-sql/pg-protocol' import { RowDescriptionMessage, ParameterDescriptionMessage, DatabaseError, BackendMessage, } from '@electric-sql/pg-protocol/messages' import { makePGliteError } from './errors.js' export abstract class BasePGlite implements Pick { serializers: Record = { ...serializers } parsers: Record = { ...parsers } #arrayTypesInitialized = false // # Abstract properties: abstract debug: DebugLevel // # Private properties: #inTransaction = false // # Abstract methods: /** * Execute a postgres wire protocol message * @param message The postgres wire protocol message to execute * @returns The result of the query */ abstract execProtocol( message: Uint8Array, { syncToFs, onNotice }: ExecProtocolOptions, ): Promise /** * Execute a postgres wire protocol message * @param message The postgres wire protocol message to execute * @returns The parsed results of the query */ abstract execProtocolStream( message: Uint8Array, { syncToFs, onNotice }: ExecProtocolOptions, ): Promise /** * Execute a postgres wire protocol message directly without wrapping the response. * Only use if `execProtocol()` doesn't suite your needs. * * **Warning:** This bypasses PGlite's protocol wrappers that manage error/notice messages, * transactions, and notification listeners. Only use if you need to bypass these wrappers and * don't intend to use the above features. * * @param message The postgres wire protocol message to execute * @returns The direct message data response produced by Postgres */ abstract execProtocolRaw( message: Uint8Array, { syncToFs }: ExecProtocolOptions, ): Promise /** * Execute a postgres wire protocol message directly without wrapping the response. * Only use if `execProtocol()` doesn't suite your needs. * * **Warning:** This bypasses PGlite's protocol wrappers that manage error/notice messages, * transactions, and notification listeners. Only use if you need to bypass these wrappers and * don't intend to use the above features. * * @param message The postgres wire protocol message to execute * @param options.onRawData Callback to receive streaming data */ abstract execProtocolRawStream( message: Uint8Array, { syncToFs, onRawData }: ExecProtocolOptionsStream, ): Promise /** * Sync the database to the filesystem * @returns Promise that resolves when the database is synced to the filesystem */ abstract syncToFs(): Promise /** * Handle a file attached to the current query * @param file The file to handle */ abstract _handleBlob(blob?: File | Blob): Promise /** * Get the written file */ abstract _getWrittenBlob(): Promise /** * Cleanup the current file */ abstract _cleanupBlob(): Promise abstract _checkReady(): Promise abstract _runExclusiveQuery(fn: () => Promise): Promise abstract _runExclusiveTransaction(fn: () => Promise): Promise /** * Listen for notifications on a channel */ abstract listen( channel: string, callback: (payload: string) => void, tx?: Transaction, ): Promise<(tx?: Transaction) => Promise> // # Concrete implementations: /** * Initialize the array types * The oid if the type of an element and the typarray is the oid of the type of the * array. * We extract these from the database then create the serializers/parsers for * each type. * This should be called at the end of #init() in the implementing class. */ async _initArrayTypes({ force = false } = {}) { if (this.#arrayTypesInitialized && !force) return this.#arrayTypesInitialized = true const types = await this.query<{ oid: number; typarray: number }>(` SELECT b.oid, b.typarray FROM pg_catalog.pg_type a LEFT JOIN pg_catalog.pg_type b ON b.oid = a.typelem WHERE a.typcategory = 'A' GROUP BY b.oid, b.typarray ORDER BY b.oid `) for (const type of types.rows) { this.serializers[type.typarray] = (x) => arraySerializer(x, this.serializers[type.oid], type.typarray) this.parsers[type.typarray] = (x) => arrayParser(x, this.parsers[type.oid], type.typarray) } } async #execProtocolNoSync( message: Uint8Array, options: ExecProtocolOptions = {}, ): Promise { const results = await this.execProtocolStream(message, { ...options, syncToFs: false, }) return results } /** * Re-syncs the array types from the database * This is useful if you add a new type to the database and want to use it, otherwise pglite won't recognize it. */ async refreshArrayTypes() { await this._initArrayTypes({ force: true }) } /** * Execute a single SQL statement * This uses the "Extended Query" postgres wire protocol message. * @param query The query to execute * @param params Optional parameters for the query * @returns The result of the query */ async query( query: string, params?: any[], options?: QueryOptions, ): Promise> { await this._checkReady() // We wrap the public query method in the transaction mutex to ensure that // only one query can be executed at a time and not concurrently with a // transaction. return await this._runExclusiveTransaction(async () => { return await this.#runQuery(query, params, options) }) } /** * Execute a single SQL statement like with {@link PGlite.query}, but with a * templated statement where template values will be treated as parameters. * * You can use helpers from `/template` to further format the query with * identifiers, raw SQL, and nested statements. * * This uses the "Extended Query" postgres wire protocol message. * * @param query The query to execute with parameters as template values * @returns The result of the query * * @example * ```ts * const results = await db.sql`SELECT * FROM ${identifier`foo`} WHERE id = ${id}` * ``` */ async sql( sqlStrings: TemplateStringsArray, ...params: any[] ): Promise> { const { query, params: actualParams } = queryTemplate(sqlStrings, ...params) return await this.query(query, actualParams) } /** * Execute a SQL query, this can have multiple statements. * This uses the "Simple Query" postgres wire protocol message. * @param query The query to execute * @returns The result of the query */ async exec(query: string, options?: QueryOptions): Promise> { await this._checkReady() // We wrap the public exec method in the transaction mutex to ensure that // only one query can be executed at a time and not concurrently with a // transaction. return await this._runExclusiveTransaction(async () => { return await this.#runExec(query, options) }) } /** * Internal method to execute a query * Not protected by the transaction mutex, so it can be used inside a transaction * @param query The query to execute * @param params Optional parameters for the query * @returns The result of the query */ async #runQuery( query: string, params: any[] = [], options?: QueryOptions, ): Promise> { return await this._runExclusiveQuery(async () => { // We need to parse, bind and execute a query with parameters this.#log('runQuery', query, params, options) await this._handleBlob(options?.blob) let results = [] try { const parseResults = await this.#execProtocolNoSync( serializeProtocol.parse({ text: query, types: options?.paramTypes }), options, ) const dataTypeIDs = parseDescribeStatementResults( await this.#execProtocolNoSync( serializeProtocol.describe({ type: 'S' }), options, ), ) const values = params.map((param, i) => { const oid = dataTypeIDs[i] if (param === null || param === undefined) { return null } const serialize = options?.serializers?.[oid] ?? this.serializers[oid] if (serialize) { return serialize(param) } else { return param.toString() } }) results = [ ...parseResults, ...(await this.#execProtocolNoSync( serializeProtocol.bind({ values, }), options, )), ...(await this.#execProtocolNoSync( serializeProtocol.describe({ type: 'P' }), options, )), ...(await this.#execProtocolNoSync( serializeProtocol.execute({}), options, )), ] } catch (e) { if (e instanceof DatabaseError) { const pgError = makePGliteError({ e, options, params, query }) throw pgError } throw e } finally { results.push( ...(await this.#execProtocolNoSync( serializeProtocol.sync(), options, )), ) } await this._cleanupBlob() if (!this.#inTransaction) { await this.syncToFs() } const blob = await this._getWrittenBlob() return parseResults(results, this.parsers, options, blob)[0] as Results }) } /** * Internal method to execute a query * Not protected by the transaction mutex, so it can be used inside a transaction * @param query The query to execute * @param params Optional parameters for the query * @returns The result of the query */ async #runExec( query: string, options?: QueryOptions, ): Promise> { return await this._runExclusiveQuery(async () => { // No params so we can just send the query this.#log('runExec', query, options) await this._handleBlob(options?.blob) let results = [] try { results = await this.#execProtocolNoSync( serializeProtocol.query(query), options, ) } catch (e) { if (e instanceof DatabaseError) { const pgError = makePGliteError({ e, options, params: undefined, query, }) throw pgError } throw e } finally { results.push( ...(await this.#execProtocolNoSync( serializeProtocol.sync(), options, )), ) } this._cleanupBlob() if (!this.#inTransaction) { await this.syncToFs() } const blob = await this._getWrittenBlob() return parseResults( results, this.parsers, options, blob, ) as Array }) } /** * Describe a query * @param query The query to describe * @returns A description of the result types for the query */ async describeQuery( query: string, options?: QueryOptions, ): Promise { let messages = [] try { await this.#execProtocolNoSync( serializeProtocol.parse({ text: query, types: options?.paramTypes }), options, ) messages = await this.#execProtocolNoSync( serializeProtocol.describe({ type: 'S' }), options, ) } catch (e) { if (e instanceof DatabaseError) { const pgError = makePGliteError({ e, options, params: undefined, query, }) throw pgError } throw e } finally { messages.push( ...(await this.#execProtocolNoSync(serializeProtocol.sync(), options)), ) } const paramDescription = messages.find( (msg): msg is ParameterDescriptionMessage => msg.name === 'parameterDescription', ) const resultDescription = messages.find( (msg): msg is RowDescriptionMessage => msg.name === 'rowDescription', ) const queryParams = paramDescription?.dataTypeIDs.map((dataTypeID) => ({ dataTypeID, serializer: this.serializers[dataTypeID], })) ?? [] const resultFields = resultDescription?.fields.map((field) => ({ name: field.name, dataTypeID: field.dataTypeID, parser: this.parsers[field.dataTypeID], })) ?? [] return { queryParams, resultFields } } /** * Execute a transaction * @param callback A callback function that takes a transaction object * @returns The result of the transaction */ async transaction(callback: (tx: Transaction) => Promise): Promise { await this._checkReady() return await this._runExclusiveTransaction(async () => { await this.#runExec('BEGIN') this.#inTransaction = true // Once a transaction is closed, we throw an error if it's used again let closed = false const checkClosed = () => { if (closed) { throw new Error('Transaction is closed') } } const tx: Transaction = { query: async ( query: string, params?: any[], options?: QueryOptions, ): Promise> => { checkClosed() return await this.#runQuery(query, params, options) }, sql: async ( sqlStrings: TemplateStringsArray, ...params: any[] ): Promise> => { const { query, params: actualParams } = queryTemplate( sqlStrings, ...params, ) return await this.#runQuery(query, actualParams) }, exec: async ( query: string, options?: QueryOptions, ): Promise> => { checkClosed() return await this.#runExec(query, options) }, rollback: async () => { checkClosed() // Rollback and set the closed flag to prevent further use of this // transaction await this.#runExec('ROLLBACK') closed = true }, listen: async ( channel: string, callback: (payload: string) => void, ) => { checkClosed() return await this.listen(channel, callback, tx) }, get closed() { return closed }, } try { const result = await callback(tx) if (!closed) { closed = true await this.#runExec('COMMIT') } this.#inTransaction = false return result } catch (e) { if (!closed) { await this.#runExec('ROLLBACK') } this.#inTransaction = false throw e } }) } /** * Run a function exclusively, no other transactions or queries will be allowed * while the function is running. * This is useful when working with the execProtocol methods as they are not blocked, * and do not block the locks used by transactions and queries. * @param fn The function to run * @returns The result of the function */ async runExclusive(fn: () => Promise): Promise { return await this._runExclusiveQuery(fn) } /** * Internal log function */ #log(...args: any[]) { if (this.debug > 0) { console.log(...args) } } } ================================================ FILE: packages/pglite/src/contrib/amcheck.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/amcheck.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const amcheck = { name: 'amcheck', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/auto_explain.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/auto_explain.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const auto_explain = { name: 'auto_explain', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/bloom.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/bloom.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const bloom = { name: 'bloom', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/btree_gin.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/btree_gin.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const btree_gin = { name: 'btree_gin', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/btree_gist.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/btree_gist.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const btree_gist = { name: 'btree_gist', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/citext.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/citext.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const citext = { name: 'citext', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/cube.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/cube.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const cube = { name: 'cube', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/dict_int.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/dict_int.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const dict_int = { name: 'dict_int', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/dict_xsyn.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/dict_xsyn.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const dict_xsyn = { name: 'dict_xsyn', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/earthdistance.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/earthdistance.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const earthdistance = { name: 'earthdistance', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/file_fdw.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/file_fdw.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const file_fdw = { name: 'file_fdw', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/fuzzystrmatch.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/fuzzystrmatch.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const fuzzystrmatch = { name: 'fuzzystrmatch', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/hstore.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/hstore.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const hstore = { name: 'hstore', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/intarray.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/intarray.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const intarray = { name: 'intarray', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/isn.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/isn.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const isn = { name: 'isn', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/lo.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/lo.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const lo = { name: 'lo', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/ltree.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/ltree.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const ltree = { name: 'ltree', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/pageinspect.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/pageinspect.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const pageinspect = { name: 'pageinspect', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/pg_buffercache.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/pg_buffercache.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const pg_buffercache = { name: 'pg_buffercache', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/pg_freespacemap.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL( '../../release/pg_freespacemap.tar.gz', import.meta.url, ), } satisfies ExtensionSetupResult } export const pg_freespacemap = { name: 'pg_freespacemap', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/pg_surgery.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/pg_surgery.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const pg_surgery = { name: 'pg_surgery', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/pg_trgm.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/pg_trgm.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const pg_trgm = { name: 'pg_trgm', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/pg_visibility.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/pg_visibility.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const pg_visibility = { name: 'pg_visibility', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/pg_walinspect.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/pg_walinspect.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const pg_walinspect = { name: 'pg_walinspect', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/pgcrypto.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/pgcrypto.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const pgcrypto = { name: 'pgcrypto', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/seg.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/seg.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const seg = { name: 'seg', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/tablefunc.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/tablefunc.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const tablefunc = { name: 'tablefunc', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/tcn.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/tcn.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const tcn = { name: 'tcn', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/tsm_system_rows.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL( '../../release/tsm_system_rows.tar.gz', import.meta.url, ), } satisfies ExtensionSetupResult } export const tsm_system_rows = { name: 'tsm_system_rows', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/tsm_system_time.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL( '../../release/tsm_system_time.tar.gz', import.meta.url, ), } satisfies ExtensionSetupResult } export const tsm_system_time = { name: 'tsm_system_time', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/unaccent.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/unaccent.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const unaccent = { name: 'unaccent', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/contrib/uuid_ossp.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => { return { bundlePath: new URL('../../release/uuid-ossp.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const uuid_ossp = { name: 'uuid-ossp', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/definitions/tinytar.d.ts ================================================ declare module 'tinytar' { interface TarFile { name: string mode?: number uid?: number gid?: number size?: number modifyTime?: number | Date checksum?: number type?: number linkName?: string ustar?: string owner?: string group?: string majorNumber?: number minorNumber?: number prefix?: string accessTime?: number | Date createTime?: number | Date data: Uint8Array isOldGNUFormat?: boolean } interface UntarOptions { extractData?: boolean checkHeader?: boolean checkChecksum?: boolean checkFileSize?: boolean } function tar(files: TarFile[]): Uint8Array function untar(buffer: Uint8Array, options?: UntarOptions): TarFile[] const NULL_CHAR: string const TMAGIC: string const OLDGNU_MAGIC: string // Values used in typeflag field const REGTYPE: number const LNKTYPE: number const SYMTYPE: number const CHRTYPE: number const BLKTYPE: number const DIRTYPE: number const FIFOTYPE: number const CONTTYPE: number // Bits used in the mode field, values in octal const TSUID: number const TSGID: number const TSVTX: number const TUREAD: number const TUWRITE: number const TUEXEC: number const TGREAD: number const TGWRITE: number const TGEXEC: number const TOREAD: number const TOWRITE: number const TOEXEC: number const TPERMALL: number const TPERMMASK: number } ================================================ FILE: packages/pglite/src/errors.ts ================================================ import { DatabaseError } from '@electric-sql/pg-protocol/messages' import { QueryOptions } from './interface' export interface PGliteError extends DatabaseError { query: string | undefined params: any[] | undefined queryOptions: QueryOptions | undefined } export function makePGliteError(data: { e: DatabaseError query: string params: any[] | undefined options: QueryOptions | undefined }) { const pgError = data.e as PGliteError pgError.query = data.query pgError.params = data.params pgError.queryOptions = data.options return pgError } ================================================ FILE: packages/pglite/src/extensionUtils.ts ================================================ import tinyTar from 'tinytar' import { IN_NODE } from './utils.js' import type { PostgresMod } from './postgresMod.js' export async function loadExtensionBundle( bundlePath: URL, ): Promise { // Async load the extension bundle tar file // could be from a URL or a file if (IN_NODE) { const fs = await import('fs') const zlib = await import('zlib') const { Writable } = await import('stream') const { pipeline } = await import('stream/promises') if (!fs.existsSync(bundlePath)) { throw new Error(`Extension bundle not found: ${bundlePath}`) } const gunzip = zlib.createGunzip() const chunks: Uint8Array[] = [] await pipeline( fs.createReadStream(bundlePath), gunzip, new Writable({ write(chunk, _encoding, callback) { chunks.push(chunk) callback() }, }), ) return new Blob(chunks) } else { const response = await fetch(bundlePath.toString()) if (!response.ok || !response.body) { return null } else if (response.headers.get('Content-Encoding') === 'gzip') { // Although the bundle is manually compressed, some servers will recognize // that and add a content-encoding header. Fetch will then automatically // decompress the response. return response.blob() } else { const decompressionStream = new DecompressionStream('gzip') const decompressedStream = new Response( response.body.pipeThrough(decompressionStream), ) return decompressedStream.blob() } } } export async function loadExtensions( mod: PostgresMod, log: (...args: any[]) => void, ): Promise { const promises = new Array>() for (const ext in mod.pg_extensions) { let blob try { blob = await mod.pg_extensions[ext] } catch (err) { console.error('Failed to fetch extension:', ext, err) continue } if (blob) { const bytes = new Uint8Array(await blob.arrayBuffer()) promises.push(...loadExtension(mod, ext, bytes, log)) } else { console.error('Could not get binary data for extension:', ext) } } return Promise.all(promises) } function loadExtension( mod: PostgresMod, _ext: string, bytes: Uint8Array, log: (...args: any[]) => void, ): Promise[] { const soPreloadPromises: Promise[] = [] // sort is a hack to make PostGIS work. we need to preload postgis-3.so BEFORE postgis_topology-3.so const data = tinyTar .untar(bytes) .sort((a, b) => (a.name > b.name ? 1 : a.name < b.name ? -1 : 0)) data.forEach((entry: any) => { if (entry.name.endsWith('/')) { const dirPath = `${mod.WASM_PREFIX}/${entry.name}` if (mod.FS.analyzePath(dirPath).exists === false) { mod.FS.mkdirTree(dirPath) } } else if (!entry.name.startsWith('.')) { const filePath = mod.WASM_PREFIX + '/' + entry.name if (entry.name.endsWith('.so')) { log(`pgfs:ext preloading ${filePath}`) const soName = entry.name.split('/').pop()! // e.g. 'postgis-3.so' const dirPath = dirname(filePath) // Wrap createPreloadedFile in a Promise so loadExtensions can await the // async WASM compilation done by Emscripten's wasm preload plugin. // The plugin calls extOk only after preloadedWasm[path] is set, so // awaiting this ensures dlopen finds the pre-compiled module. const soPreload = new Promise((resolve, _reject) => { const extOk = (...args: any[]) => { log('pgfs:ext OK', filePath, args) resolve() } const extFail = (...args: any[]) => { log('pgfs:ext FAIL', filePath, args) // hope for the best: it's not the end even if we were unable to preload a file // emscripten will try again if/when needed and do a wasm.compile on the main thread // but we still need to copy it to our filesystem copyToFS(filePath, mod, entry) resolve() // _reject(new Error(`Failed to preload ${filePath}`)) } // Keep the .so suffix so Emscripten's wasm preload plugin canHandle() matches, // triggering async WebAssembly.instantiate. The compiled module is stored in // preloadedWasm under the path with .so. mod.FS.createPreloadedFile( dirPath, soName, 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 true, true, extOk, extFail, false, ) }) soPreloadPromises.push(soPreload) } else { copyToFS(filePath, mod, entry) } } }) return soPreloadPromises } function copyToFS(filePath: string, mod: PostgresMod, entry: any) { try { const dirPath = filePath.substring(0, filePath.lastIndexOf('/')) if (mod.FS.analyzePath(dirPath).exists === false) { mod.FS.mkdirTree(dirPath) } mod.FS.writeFile(filePath, entry.data) } catch (e) { console.error(`Error writing file ${filePath}`, e) } } function dirname(path: string) { const last = path.lastIndexOf('/') if (last > 0) { return path.slice(0, last) } else { return path } } ================================================ FILE: packages/pglite/src/fs/base.ts ================================================ import type { PostgresMod } from '../postgresMod.js' import type { PGlite } from '../pglite.js' import { dumpTar, type DumpTarCompressionOptions } from './tarUtils.js' import { PGDATA } from '../initdb.js' export const WASM_PREFIX = '/pglite' export type FsType = 'nodefs' | 'idbfs' | 'memoryfs' | 'opfs-ahp' /** * Filesystem interface. * All virtual filesystems that are compatible with PGlite must implement * this interface. */ export interface Filesystem { /** * Initiate the filesystem and return the options to pass to the emscripten module. */ init( pg: PGlite, emscriptenOptions: Partial, ): Promise<{ emscriptenOpts: Partial }> /** * Sync the filesystem to any underlying storage. */ syncToFs(relaxedDurability?: boolean): Promise /** * Sync the filesystem from any underlying storage. */ initialSyncFs(): Promise /** * Dump the PGDATA dir from the filesystem to a gzipped tarball. */ dumpTar( dbname: string, compression?: DumpTarCompressionOptions, ): Promise /** * Close the filesystem. */ closeFs(): Promise } /** * Base class for all emscripten built-in filesystems. */ export class EmscriptenBuiltinFilesystem implements Filesystem { protected dataDir?: string protected pg?: PGlite constructor(dataDir?: string) { this.dataDir = dataDir } async init(pg: PGlite, emscriptenOptions: Partial) { this.pg = pg return { emscriptenOpts: emscriptenOptions } } async syncToFs(_relaxedDurability?: boolean) {} async initialSyncFs() {} async closeFs() {} async dumpTar(dbname: string, compression?: DumpTarCompressionOptions) { return dumpTar(this.pg!.Module.FS, PGDATA, dbname, compression) } } /** * Abstract base class for all custom virtual filesystems. * Each custom filesystem needs to implement an interface similar to the NodeJS FS API. */ export abstract class BaseFilesystem implements Filesystem { protected dataDir?: string protected pg?: PGlite readonly debug: boolean constructor(dataDir?: string, { debug = false }: { debug?: boolean } = {}) { this.dataDir = dataDir this.debug = debug } async syncToFs(_relaxedDurability?: boolean) {} async initialSyncFs() {} async closeFs() {} async dumpTar(dbname: string, compression?: DumpTarCompressionOptions) { return dumpTar(this.pg!.Module.FS, PGDATA, dbname, compression) } async init(pg: PGlite, emscriptenOptions: Partial) { this.pg = pg const options: Partial = { ...emscriptenOptions, preRun: [ ...(emscriptenOptions.preRun || []), (mod: PostgresMod) => { const EMFS = createEmscriptenFS(mod, this) mod.FS.mkdir(PGDATA) mod.FS.mount(EMFS, {}, PGDATA) }, ], } return { emscriptenOpts: options } } // Filesystem API abstract chmod(path: string, mode: number): void abstract close(fd: number): void abstract fstat(fd: number): FsStats abstract lstat(path: string): FsStats abstract mkdir( path: string, options?: { recursive?: boolean; mode?: number }, ): void abstract open(path: string, flags?: string, mode?: number): number abstract readdir(path: string): string[] abstract read( fd: number, buffer: Uint8Array, // Buffer to read into offset: number, // Offset in buffer to start writing to length: number, // Number of bytes to read position: number, // Position in file to read from ): number abstract rename(oldPath: string, newPath: string): void abstract rmdir(path: string): void abstract truncate( path: string, len: number, // Length to truncate to - defaults to 0 ): void abstract unlink(path: string): void abstract utimes(path: string, atime: number, mtime: number): void abstract writeFile( path: string, data: string | Uint8Array, options?: { encoding?: string; mode?: number; flag?: string }, ): void abstract write( fd: number, buffer: Uint8Array, // Buffer to read from offset: number, // Offset in buffer to start reading from length: number, // Number of bytes to write position: number, // Position in file to write to ): number } export type FsStats = { dev: number ino: number mode: number nlink: number uid: number gid: number rdev: number size: number blksize: number blocks: number atime: number mtime: number ctime: number } type EmscriptenFileSystem = Emscripten.FileSystemType & { createNode: ( parent: FSNode | null, name: string, mode: number, dev?: any, ) => FSNode node_ops: FS.NodeOps stream_ops: FS.StreamOps & { dup: (stream: FSStream) => void mmap: ( stream: FSStream, length: number, position: number, prot: any, flags: any, ) => { ptr: number; allocated: boolean } msync: ( stream: FSStream, buffer: Uint8Array, offset: number, length: number, mmapFlags: any, ) => number } } & { [key: string]: any } type FSNode = FS.FSNode & { node_ops: FS.NodeOps stream_ops: FS.StreamOps } type FSStream = FS.FSStream & { node: FSNode shared: { refcount: number } } type FSMount = FS.Mount & { opts: { root: string } } type EmscriptenFS = PostgresMod['FS'] & { createNode: ( parent: FSNode | null, name: string, mode: number, dev?: any, ) => FSNode } export const ERRNO_CODES = { EBADF: 8, EBADFD: 127, EEXIST: 20, EINVAL: 28, EISDIR: 31, ENODEV: 43, ENOENT: 44, ENOTDIR: 54, ENOTEMPTY: 55, } as const /** * Create an emscripten filesystem that uses the BaseFilesystem. * @param Module The emscripten module * @param baseFS The BaseFilesystem implementation * @returns The emscripten filesystem */ const createEmscriptenFS = (Module: PostgresMod, baseFS: BaseFilesystem) => { const FS = Module.FS as EmscriptenFS const log = baseFS.debug ? console.log : null const EMFS = { tryFSOperation(f: () => T): T { try { return f() } catch (e: any) { if (!e.code) throw e if (e.code === 'UNKNOWN') throw new FS.ErrnoError(ERRNO_CODES.EINVAL) throw new FS.ErrnoError(e.code) } }, mount(_mount: FSMount): FSNode { return EMFS.createNode(null, '/', 16384 | 511, 0) }, syncfs( _mount: FS.Mount, _populate: any, // This has the wrong type in @types/emscripten _done: (err?: number | null) => unknown, ): void { // noop }, createNode( parent: FSNode | null, name: string, mode: number, _dev?: any, ): FSNode { if (!FS.isDir(mode) && !FS.isFile(mode)) { throw new FS.ErrnoError(28) } const node = FS.createNode(parent, name, mode) node.node_ops = EMFS.node_ops node.stream_ops = EMFS.stream_ops return node }, getMode: function (path: string): number { log?.('getMode', path) return EMFS.tryFSOperation(() => { const stats = baseFS.lstat(path) return stats.mode }) }, realPath: function (node: FSNode): string { const parts: string[] = [] while (node.parent !== node) { parts.push(node.name) node = node.parent as FSNode } parts.push((node.mount as FSMount).opts.root) parts.reverse() return parts.join('/') }, node_ops: { getattr(node: FSNode): FS.Stats { log?.('getattr', EMFS.realPath(node)) const path = EMFS.realPath(node) return EMFS.tryFSOperation(() => { const stats = baseFS.lstat(path) return { ...stats, dev: 0, ino: node.id, nlink: 1, rdev: node.rdev, atime: new Date(stats.atime), mtime: new Date(stats.mtime), ctime: new Date(stats.ctime), } }) }, setattr(node: FSNode, attr: FS.Stats): void { log?.('setattr', EMFS.realPath(node), attr) const path = EMFS.realPath(node) EMFS.tryFSOperation(() => { if (attr.mode !== undefined) { baseFS.chmod(path, attr.mode) } if (attr.size !== undefined) { baseFS.truncate(path, attr.size) } if (attr.timestamp !== undefined) { baseFS.utimes(path, attr.timestamp, attr.timestamp) } if (attr.size !== undefined) { baseFS.truncate(path, attr.size) } }) }, lookup(parent: FSNode, name: string): FSNode { log?.('lookup', EMFS.realPath(parent), name) const path = [EMFS.realPath(parent), name].join('/') const mode = EMFS.getMode(path) return EMFS.createNode(parent, name, mode) }, mknod(parent: FSNode, name: string, mode: number, dev: unknown): FSNode { log?.('mknod', EMFS.realPath(parent), name, mode, dev) const node = EMFS.createNode(parent, name, mode, dev) // create the backing node for this in the fs root as well const path = EMFS.realPath(node) return EMFS.tryFSOperation(() => { if (FS.isDir(node.mode)) { baseFS.mkdir(path, { mode }) } else { baseFS.writeFile(path, '', { mode }) } return node }) }, rename(oldNode: FSNode, newDir: FSNode, newName: string): void { log?.('rename', EMFS.realPath(oldNode), EMFS.realPath(newDir), newName) const oldPath = EMFS.realPath(oldNode) const newPath = [EMFS.realPath(newDir), newName].join('/') EMFS.tryFSOperation(() => { baseFS.rename(oldPath, newPath) }) oldNode.name = newName }, unlink(parent: FSNode, name: string): void { log?.('unlink', EMFS.realPath(parent), name) const path = [EMFS.realPath(parent), name].join('/') try { baseFS.unlink(path) } catch (e: any) { // no-op } }, rmdir(parent: FSNode, name: string): void { log?.('rmdir', EMFS.realPath(parent), name) const path = [EMFS.realPath(parent), name].join('/') return EMFS.tryFSOperation(() => { baseFS.rmdir(path) }) }, readdir(node: FSNode): string[] { log?.('readdir', EMFS.realPath(node)) const path = EMFS.realPath(node) return EMFS.tryFSOperation(() => { return baseFS.readdir(path) }) }, symlink(parent: FSNode, newName: string, oldPath: string): void { log?.('symlink', EMFS.realPath(parent), newName, oldPath) // This is not supported by EMFS throw new FS.ErrnoError(63) }, readlink(node: FSNode): string { log?.('readlink', EMFS.realPath(node)) // This is not supported by EMFS throw new FS.ErrnoError(63) }, }, stream_ops: { open(stream: FSStream): void { log?.('open stream', EMFS.realPath(stream.node)) const path = EMFS.realPath(stream.node) return EMFS.tryFSOperation(() => { if (FS.isFile(stream.node.mode)) { stream.shared.refcount = 1 stream.nfd = baseFS.open(path) } }) }, close(stream: FSStream): void { log?.('close stream', EMFS.realPath(stream.node)) return EMFS.tryFSOperation(() => { if ( FS.isFile(stream.node.mode) && stream.nfd && --stream.shared.refcount === 0 ) { baseFS.close(stream.nfd) } }) }, dup(stream: FSStream) { log?.('dup stream', EMFS.realPath(stream.node)) stream.shared.refcount++ }, read( stream: FSStream, // Stream to read from buffer: Uint8Array, // Buffer to read into - Wrong type in @types/emscripten offset: number, // Offset in buffer to start writing to length: number, // Number of bytes to read position: number, // Position in file to read from ): number { log?.( 'read stream', EMFS.realPath(stream.node), offset, length, position, ) if (length === 0) return 0 const ret = EMFS.tryFSOperation(() => baseFS.read( stream.nfd!, buffer as unknown as Uint8Array, offset, length, position, ), ) return ret }, write( stream: FSStream, // Stream to write to buffer: Uint8Array, // Buffer to read from - Wrong type in @types/emscripten offset: number, // Offset in buffer to start writing from length: number, // Number of bytes to write position: number, // Position in file to write to ): number { log?.( 'write stream', EMFS.realPath(stream.node), offset, length, position, ) return EMFS.tryFSOperation(() => baseFS.write( stream.nfd!, buffer.buffer as unknown as Uint8Array, offset, length, position, ), ) }, llseek(stream: FSStream, offset: number, whence: number): number { log?.('llseek stream', EMFS.realPath(stream.node), offset, whence) let position = offset if (whence === 1) { position += stream.position } else if (whence === 2) { if (FS.isFile(stream.node.mode)) { EMFS.tryFSOperation(() => { const stat = baseFS.fstat(stream.nfd!) position += stat.size }) } } if (position < 0) { throw new FS.ErrnoError(28) } return position }, mmap( stream: FSStream, length: number, position: number, prot: any, flags: any, ) { log?.( 'mmap stream', EMFS.realPath(stream.node), length, position, prot, flags, ) if (!FS.isFile(stream.node.mode)) { throw new FS.ErrnoError(ERRNO_CODES.ENODEV) } const ptr = (Module as any).mmapAlloc(length) // TODO: Fix type and check this is exported EMFS.stream_ops.read( stream, Module.HEAP8 as unknown as Uint8Array, ptr, length, position, ) return { ptr, allocated: true } }, msync( stream: FSStream, buffer: Uint8Array, offset: number, length: number, mmapFlags: any, ) { log?.( 'msync stream', EMFS.realPath(stream.node), offset, length, mmapFlags, ) EMFS.stream_ops.write(stream, buffer, 0, length, offset) return 0 }, }, } satisfies EmscriptenFileSystem return EMFS } ================================================ FILE: packages/pglite/src/fs/idbfs.ts ================================================ import { EmscriptenBuiltinFilesystem } from './base.js' import type { PostgresMod } from '../postgresMod.js' import { PGlite } from '../pglite.js' import { PGDATA, PG_ROOT } from '../initdb.js' export class IdbFs extends EmscriptenBuiltinFilesystem { async init(pg: PGlite, opts: Partial) { this.pg = pg const options: Partial = { ...opts, preRun: [ ...(opts.preRun || []), (mod: any) => { const idbfs = mod.FS.filesystems.IDBFS // Mount the idbfs to the users dataDir then symlink the PGDATA to the // idbfs mount point. // We specifically use /pglite as the root directory for the idbfs // as the fs will ber persisted in the indexeddb as a database with // the path as the name. if (!mod.FS.analyzePath(PG_ROOT).exists) { mod.FS.mkdir(PG_ROOT) } if (!mod.FS.analyzePath(`${PG_ROOT}/${this.dataDir}`).exists) { mod.FS.mkdir(`${PG_ROOT}/${this.dataDir}`) } mod.FS.mount(idbfs, {}, `${PG_ROOT}/${this.dataDir}`) mod.FS.symlink(`${PG_ROOT}/${this.dataDir}`, PGDATA) }, ], } return { emscriptenOpts: options } } initialSyncFs() { return new Promise((resolve, reject) => { this.pg!.Module.FS.syncfs(true, (err: any) => { if (err) { reject(err) } else { resolve() } }) }) } syncToFs(_relaxedDurability?: boolean) { return new Promise((resolve, reject) => { this.pg!.Module.FS.syncfs(false, (err: any) => { if (err) { reject(err) } else { resolve() } }) }) } async closeFs(): Promise { // IDBDatabase.close() method is essentially async, but returns immediately, // the database will be closed when all transactions are complete. // This needs to be handled in application code if you want to delete the // database after it has been closed. If you try to delete the database // before it has fully closed it will throw a blocking error. const indexedDb = this.pg!.Module.FS.filesystems.IDBFS.dbs[this.dataDir!] if (indexedDb) { indexedDb.close() } this.pg!.Module.FS.quit() } } ================================================ FILE: packages/pglite/src/fs/index.ts ================================================ import type { FsType, Filesystem } from './base.js' import { IdbFs } from './idbfs.js' import { MemoryFS } from './memoryfs.js' export { BaseFilesystem, ERRNO_CODES, WASM_PREFIX, type Filesystem, type FsType, type FsStats, } from './base.js' export function parseDataDir(dataDir?: string) { let fsType: FsType if (dataDir?.startsWith('file://')) { // Remove the file:// prefix, and use node filesystem dataDir = dataDir.slice(7) if (!dataDir) { throw new Error('Invalid dataDir, must be a valid path') } fsType = 'nodefs' } else if (dataDir?.startsWith('idb://')) { // Remove the idb:// prefix, and use indexeddb filesystem dataDir = dataDir.slice(6) fsType = 'idbfs' } else if (dataDir?.startsWith('opfs-ahp://')) { // Remove the opfsahp:// prefix, and use opfs access handle pool filesystem dataDir = dataDir.slice(11) fsType = 'opfs-ahp' } else if (!dataDir || dataDir?.startsWith('memory://')) { // Use in-memory filesystem fsType = 'memoryfs' } else { // No prefix, use node filesystem fsType = 'nodefs' } return { dataDir, fsType } } export async function loadFs(dataDir?: string, fsType?: FsType) { let fs: Filesystem if (dataDir && fsType === 'nodefs') { // Lazy load the nodefs to avoid bundling it in the browser const { NodeFS } = await import('./nodefs.js') fs = new NodeFS(dataDir) } else if (dataDir && fsType === 'idbfs') { fs = new IdbFs(dataDir) } else if (dataDir && fsType === 'opfs-ahp') { // Lazy load the opfs-ahp to so that it's optional in the bundle const { OpfsAhpFS } = await import('./opfs-ahp.js') fs = new OpfsAhpFS(dataDir) } else { fs = new MemoryFS() } return fs } ================================================ FILE: packages/pglite/src/fs/memoryfs.ts ================================================ import { EmscriptenBuiltinFilesystem } from './base.js' export class MemoryFS extends EmscriptenBuiltinFilesystem { async closeFs(): Promise { this.pg!.Module.FS.quit() } } ================================================ FILE: packages/pglite/src/fs/nodefs.ts ================================================ import * as fs from 'fs' import * as path from 'path' import { EmscriptenBuiltinFilesystem } from './base.js' import type { PostgresMod } from '../postgresMod.js' import { PGlite } from '../pglite.js' import { PGDATA } from '../initdb.js' export class NodeFS extends EmscriptenBuiltinFilesystem { protected rootDir: string constructor(dataDir: string) { super(dataDir) this.rootDir = path.resolve(dataDir) if (!fs.existsSync(path.join(this.rootDir))) { fs.mkdirSync(this.rootDir) } } async init(pg: PGlite, opts: Partial) { this.pg = pg const options: Partial = { ...opts, preRun: [ ...(opts.preRun || []), (mod: any) => { const nodefs = mod.FS.filesystems.NODEFS mod.FS.mkdir(PGDATA) mod.FS.mount(nodefs, { root: this.rootDir }, PGDATA) }, ], } return { emscriptenOpts: options } } async closeFs(): Promise { this.pg!.Module.FS.quit() } } ================================================ FILE: packages/pglite/src/fs/opfs-ahp.ts ================================================ import { BaseFilesystem, ERRNO_CODES, type FsStats } from './base.js' import type { PostgresMod } from '../postgresMod.js' import { PGlite } from '../pglite.js' export interface OpfsAhpOptions { initialPoolSize?: number maintainedPoolSize?: number debug?: boolean } // TypeScript doesn't have a built-in type for FileSystemSyncAccessHandle export interface FileSystemSyncAccessHandle { close(): void flush(): void getSize(): number read(buffer: ArrayBuffer, options: { at: number }): number truncate(newSize: number): void write(buffer: ArrayBuffer, options: { at: number }): number } // State const STATE_FILE = 'state.txt' const DATA_DIR = 'data' const INITIAL_MODE = { DIR: 16384, FILE: 32768, } export interface State { root: DirectoryNode pool: PoolFilenames } export type PoolFilenames = Array // WAL export interface WALEntry { opp: string args: any[] } // Node tree export type NodeType = 'file' | 'directory' interface BaseNode { type: NodeType lastModified: number mode: number } export interface FileNode extends BaseNode { type: 'file' backingFilename: string } export interface DirectoryNode extends BaseNode { type: 'directory' children: { [filename: string]: Node } } export type Node = FileNode | DirectoryNode /** * PGlite OPFS access handle pool filesystem. * Opens a pool of sync access handles and then allocates them as needed. */ export class OpfsAhpFS extends BaseFilesystem { declare readonly dataDir: string readonly initialPoolSize: number readonly maintainedPoolSize: number #opfsRootAh!: FileSystemDirectoryHandle #rootAh!: FileSystemDirectoryHandle #dataDirAh!: FileSystemDirectoryHandle #stateFH!: FileSystemFileHandle #stateSH!: FileSystemSyncAccessHandle #fh: Map = new Map() #sh: Map = new Map() #handleIdCounter = 0 #openHandlePaths: Map = new Map() #openHandleIds: Map = new Map() state!: State lastCheckpoint = 0 checkpointInterval = 1000 * 60 // 1 minute poolCounter = 0 #unsyncedSH = new Set() constructor( dataDir: string, { initialPoolSize = 1000, maintainedPoolSize = 100, debug = false, }: OpfsAhpOptions = {}, ) { super(dataDir, { debug }) this.initialPoolSize = initialPoolSize this.maintainedPoolSize = maintainedPoolSize } async init(pg: PGlite, opts: Partial) { await this.#init() return super.init(pg, opts) } async syncToFs(relaxedDurability = false) { await this.maybeCheckpointState() await this.maintainPool() if (!relaxedDurability) { this.flush() } } async closeFs(): Promise { for (const sh of this.#sh.values()) { sh.close() } this.#stateSH.flush() this.#stateSH.close() this.pg!.Module.FS.quit() } async #init() { this.#opfsRootAh = await navigator.storage.getDirectory() this.#rootAh = await this.#resolveOpfsDirectory(this.dataDir!, { create: true, }) this.#dataDirAh = await this.#resolveOpfsDirectory(DATA_DIR, { from: this.#rootAh, create: true, }) this.#stateFH = await this.#rootAh.getFileHandle(STATE_FILE, { create: true, }) this.#stateSH = await (this.#stateFH as any).createSyncAccessHandle() const stateAB = new ArrayBuffer(this.#stateSH.getSize()) this.#stateSH.read(stateAB, { at: 0 }) let state: State const stateLines = new TextDecoder().decode(stateAB).split('\n') // Line 1 is a base state object. // Lines 1+n are WAL entries. let isNewState = false try { state = JSON.parse(stateLines[0]) } catch (e) { state = { root: { type: 'directory', lastModified: Date.now(), mode: INITIAL_MODE.DIR, children: {}, }, pool: [], } // write new state to file this.#stateSH.truncate(0) this.#stateSH.write(new TextEncoder().encode(JSON.stringify(state)), { at: 0, }) isNewState = true } this.state = state // Apply WAL entries const wal = stateLines .slice(1) .filter(Boolean) .map((line) => JSON.parse(line)) for (const entry of wal) { const methodName = `_${entry.opp}State` if (typeof this[methodName as keyof this] === 'function') { try { const method = this[methodName as keyof this] as any method.bind(this)(...entry.args) } catch (e) { console.warn('Error applying OPFS AHP WAL entry', entry, e) } } } // Open all file handles for dir tree const walkPromises: Promise[] = [] const walk = async (node: Node) => { if (node.type === 'file') { try { const fh = await this.#dataDirAh.getFileHandle(node.backingFilename) const sh: FileSystemSyncAccessHandle = await ( fh as any ).createSyncAccessHandle() this.#fh.set(node.backingFilename, fh) this.#sh.set(node.backingFilename, sh) } catch (e) { console.error('Error opening file handle for node', node, e) } } else { for (const child of Object.values(node.children)) { walkPromises.push(walk(child)) } } } await walk(this.state.root) // Open all pool file handles const poolPromises: Promise[] = [] for (const filename of this.state.pool) { poolPromises.push( // eslint-disable-next-line no-async-promise-executor new Promise(async (resolve) => { if (this.#fh.has(filename)) { console.warn('File handle already exists for pool file', filename) } const fh = await this.#dataDirAh.getFileHandle(filename) const sh: FileSystemSyncAccessHandle = await ( fh as any ).createSyncAccessHandle() this.#fh.set(filename, fh) this.#sh.set(filename, sh) resolve() }), ) } await Promise.all([...walkPromises, ...poolPromises]) await this.maintainPool( isNewState ? this.initialPoolSize : this.maintainedPoolSize, ) } async maintainPool(size?: number) { size = size || this.maintainedPoolSize const change = size - this.state.pool.length const promises: Promise[] = [] for (let i = 0; i < change; i++) { promises.push( // eslint-disable-next-line no-async-promise-executor new Promise(async (resolve) => { ++this.poolCounter const filename = `${(Date.now() - 1704063600).toString(16).padStart(8, '0')}-${this.poolCounter.toString(16).padStart(8, '0')}` const fh = await this.#dataDirAh.getFileHandle(filename, { create: true, }) const sh: FileSystemSyncAccessHandle = await ( fh as any ).createSyncAccessHandle() this.#fh.set(filename, fh) this.#sh.set(filename, sh) this.#logWAL({ opp: 'createPoolFile', args: [filename], }) this.state.pool.push(filename) resolve() }), ) } for (let i = 0; i > change; i--) { promises.push( // eslint-disable-next-line no-async-promise-executor new Promise(async (resolve) => { const filename = this.state.pool.pop()! this.#logWAL({ opp: 'deletePoolFile', args: [filename], }) const fh = this.#fh.get(filename)! const sh = this.#sh.get(filename) sh?.close() await this.#dataDirAh.removeEntry(fh.name) this.#fh.delete(filename) this.#sh.delete(filename) resolve() }), ) } await Promise.all(promises) } _createPoolFileState(filename: string) { this.state.pool.push(filename) } _deletePoolFileState(filename: string) { const index = this.state.pool.indexOf(filename) if (index > -1) { this.state.pool.splice(index, 1) } } async maybeCheckpointState() { if (Date.now() - this.lastCheckpoint > this.checkpointInterval) { await this.checkpointState() } } async checkpointState() { const stateAB = new TextEncoder().encode(JSON.stringify(this.state)) this.#stateSH.truncate(0) this.#stateSH.write(stateAB, { at: 0 }) this.#stateSH.flush() this.lastCheckpoint = Date.now() } flush() { for (const sh of this.#unsyncedSH) { try { sh.flush() } catch (e) { // The file may have been closed if it was deleted } } this.#unsyncedSH.clear() } // Filesystem API: chmod(path: string, mode: number): void { this.#tryWithWAL({ opp: 'chmod', args: [path, mode] }, () => { this._chmodState(path, mode) }) } _chmodState(path: string, mode: number): void { const node = this.#resolvePath(path) node.mode = mode } close(fd: number): void { const path = this.#getPathFromFd(fd) this.#openHandlePaths.delete(fd) this.#openHandleIds.delete(path) } fstat(fd: number): FsStats { const path = this.#getPathFromFd(fd) return this.lstat(path) } lstat(path: string): FsStats { const node = this.#resolvePath(path) const size = node.type === 'file' ? this.#sh.get(node.backingFilename)!.getSize() : 0 const blksize = 4096 return { dev: 0, ino: 0, mode: node.mode, nlink: 1, uid: 0, gid: 0, rdev: 0, size, blksize, blocks: Math.ceil(size / blksize), atime: node.lastModified, mtime: node.lastModified, ctime: node.lastModified, } } mkdir(path: string, options?: { recursive?: boolean; mode?: number }): void { this.#tryWithWAL({ opp: 'mkdir', args: [path, options] }, () => { this._mkdirState(path, options) }) } _mkdirState( path: string, options?: { recursive?: boolean; mode?: number }, ): void { const parts = this.#pathParts(path) const newDirName = parts.pop()! const currentPath: string[] = [] let node = this.state.root for (const part of parts) { currentPath.push(path) if (!Object.prototype.hasOwnProperty.call(node.children, part)) { if (options?.recursive) { this.mkdir(currentPath.join('/')) } else { throw new FsError('ENOENT', 'No such file or directory') } } if (node.children[part].type !== 'directory') { throw new FsError('ENOTDIR', 'Not a directory') } node = node.children[part] as DirectoryNode } if (Object.prototype.hasOwnProperty.call(node.children, newDirName)) { throw new FsError('EEXIST', 'File exists') } const newDir: DirectoryNode = { type: 'directory', lastModified: Date.now(), mode: options?.mode || INITIAL_MODE.DIR, children: {}, } node.children[newDirName] = newDir } open(path: string, _flags?: string, _mode?: number): number { const node = this.#resolvePath(path) if (node.type !== 'file') { throw new FsError('EISDIR', 'Is a directory') } const handleId = this.#nextHandleId() this.#openHandlePaths.set(handleId, path) this.#openHandleIds.set(path, handleId) return handleId } readdir(path: string): string[] { const node = this.#resolvePath(path) if (node.type !== 'directory') { throw new FsError('ENOTDIR', 'Not a directory') } return Object.keys(node.children) } read( fd: number, buffer: Uint8Array, // Buffer to read into offset: number, // Offset in buffer to start writing to length: number, // Number of bytes to read position: number, // Position in file to read from ): number { const path = this.#getPathFromFd(fd) const node = this.#resolvePath(path) if (node.type !== 'file') { throw new FsError('EISDIR', 'Is a directory') } const sh = this.#sh.get(node.backingFilename)! return sh.read(new Uint8Array(buffer.buffer, offset, length), { at: position, }) } rename(oldPath: string, newPath: string): void { this.#tryWithWAL({ opp: 'rename', args: [oldPath, newPath] }, () => { this._renameState(oldPath, newPath, true) }) } _renameState(oldPath: string, newPath: string, doFileOps = false): void { const oldPathParts = this.#pathParts(oldPath) const oldFilename = oldPathParts.pop()! const oldParent = this.#resolvePath(oldPathParts.join('/')) as DirectoryNode if ( !Object.prototype.hasOwnProperty.call(oldParent.children, oldFilename) ) { throw new FsError('ENOENT', 'No such file or directory') } const newPathParts = this.#pathParts(newPath) const newFilename = newPathParts.pop()! const newParent = this.#resolvePath(newPathParts.join('/')) as DirectoryNode if ( doFileOps && Object.prototype.hasOwnProperty.call(newParent.children, newFilename) ) { // Overwrite, so return the underlying file to the pool const node = newParent.children[newFilename]! as FileNode const sh = this.#sh.get(node.backingFilename)! sh.truncate(0) this.state.pool.push(node.backingFilename) } newParent.children[newFilename] = oldParent.children[oldFilename]! delete oldParent.children[oldFilename] } rmdir(path: string): void { this.#tryWithWAL({ opp: 'rmdir', args: [path] }, () => { this._rmdirState(path) }) } _rmdirState(path: string): void { const pathParts = this.#pathParts(path) const dirName = pathParts.pop()! const parent = this.#resolvePath(pathParts.join('/')) as DirectoryNode if (!Object.prototype.hasOwnProperty.call(parent.children, dirName)) { throw new FsError('ENOENT', 'No such file or directory') } const node = parent.children[dirName]! if (node.type !== 'directory') { throw new FsError('ENOTDIR', 'Not a directory') } if (Object.keys(node.children).length > 0) { throw new FsError('ENOTEMPTY', 'Directory not empty') } delete parent.children[dirName] } truncate(path: string, len = 0): void { const node = this.#resolvePath(path) if (node.type !== 'file') { throw new FsError('EISDIR', 'Is a directory') } const sh = this.#sh.get(node.backingFilename) if (!sh) { throw new FsError('ENOENT', 'No such file or directory') } sh.truncate(len) this.#unsyncedSH.add(sh) } unlink(path: string): void { this.#tryWithWAL({ opp: 'unlink', args: [path] }, () => { this._unlinkState(path, true) }) } _unlinkState(path: string, doFileOps = false): void { const pathParts = this.#pathParts(path) const filename = pathParts.pop()! const dir = this.#resolvePath(pathParts.join('/')) as DirectoryNode if (!Object.prototype.hasOwnProperty.call(dir.children, filename)) { throw new FsError('ENOENT', 'No such file or directory') } const node = dir.children[filename]! if (node.type !== 'file') { throw new FsError('EISDIR', 'Is a directory') } delete dir.children[filename] if (doFileOps) { const sh = this.#sh.get(node.backingFilename)! // We don't delete the file, it's truncated and returned to the pool sh?.truncate(0) this.#unsyncedSH.add(sh) if (this.#openHandleIds.has(path)) { this.#openHandlePaths.delete(this.#openHandleIds.get(path)!) this.#openHandleIds.delete(path) } } this.state.pool.push(node.backingFilename) } utimes(path: string, atime: number, mtime: number): void { this.#tryWithWAL({ opp: 'utimes', args: [path, atime, mtime] }, () => { this._utimesState(path, atime, mtime) }) } _utimesState(path: string, _atime: number, mtime: number): void { const node = this.#resolvePath(path) node.lastModified = mtime } writeFile( path: string, data: string | Uint8Array, options?: { encoding?: string; mode?: number; flag?: string }, ): void { const pathParts = this.#pathParts(path) const filename = pathParts.pop()! const parent = this.#resolvePath(pathParts.join('/')) as DirectoryNode if (!Object.prototype.hasOwnProperty.call(parent.children, filename)) { if (this.state.pool.length === 0) { throw new Error('No more file handles available in the pool') } const node: Node = { type: 'file', lastModified: Date.now(), mode: options?.mode || INITIAL_MODE.FILE, backingFilename: this.state.pool.pop()!, } parent.children[filename] = node this.#logWAL({ opp: 'createFileNode', args: [path, node], }) } else { const node = parent.children[filename] as FileNode node.lastModified = Date.now() this.#logWAL({ opp: 'setLastModified', args: [path, node.lastModified], }) } const node = parent.children[filename] as FileNode const sh = this.#sh.get(node.backingFilename)! // Files in pool are empty, only write if data is provided if (data.length > 0) { sh.write( typeof data === 'string' ? new TextEncoder().encode(data) : new Uint8Array(data), { at: 0 }, ) if (path.startsWith('/pg_wal')) { this.#unsyncedSH.add(sh) } } } _createFileNodeState(path: string, node: FileNode): FileNode { const pathParts = this.#pathParts(path) const filename = pathParts.pop()! const parent = this.#resolvePath(pathParts.join('/')) as DirectoryNode parent.children[filename] = node // remove backingFilename from pool const index = this.state.pool.indexOf(node.backingFilename) if (index > -1) { this.state.pool.splice(index, 1) } return node } _setLastModifiedState(path: string, lastModified: number): void { const node = this.#resolvePath(path) node.lastModified = lastModified } write( fd: number, buffer: Uint8Array, // Buffer to read from offset: number, // Offset in buffer to start reading from length: number, // Number of bytes to write position: number, // Position in file to write to ): number { const path = this.#getPathFromFd(fd) const node = this.#resolvePath(path) if (node.type !== 'file') { throw new FsError('EISDIR', 'Is a directory') } const sh = this.#sh.get(node.backingFilename) if (!sh) { throw new FsError('EBADF', 'Bad file descriptor') } const ret = sh.write(new Uint8Array(buffer, offset, length), { at: position, }) if (path.startsWith('/pg_wal')) { this.#unsyncedSH.add(sh) } return ret } // Internal methods: #tryWithWAL(entry: WALEntry, fn: () => void) { const offset = this.#logWAL(entry) try { fn() } catch (e) { // Rollback WAL entry this.#stateSH.truncate(offset) throw e } } #logWAL(entry: WALEntry) { const entryJSON = JSON.stringify(entry) const stateAB = new TextEncoder().encode(`\n${entryJSON}`) const offset = this.#stateSH.getSize() this.#stateSH.write(stateAB, { at: offset }) this.#unsyncedSH.add(this.#stateSH) return offset } #pathParts(path: string): string[] { return path.split('/').filter(Boolean) } #resolvePath(path: string, from?: DirectoryNode): Node { const parts = this.#pathParts(path) let node: Node = from || this.state.root for (const part of parts) { if (node.type !== 'directory') { throw new FsError('ENOTDIR', 'Not a directory') } if (!Object.prototype.hasOwnProperty.call(node.children, part)) { throw new FsError('ENOENT', 'No such file or directory') } node = node.children[part]! } return node } #getPathFromFd(fd: number): string { const path = this.#openHandlePaths.get(fd) if (!path) { throw new FsError('EBADF', 'Bad file descriptor') } return path } #nextHandleId(): number { const id = ++this.#handleIdCounter while (this.#openHandlePaths.has(id)) { this.#handleIdCounter++ } return id } async #resolveOpfsDirectory( path: string, options?: { from?: FileSystemDirectoryHandle create?: boolean }, ): Promise { const parts = this.#pathParts(path) let ah = options?.from || this.#opfsRootAh for (const part of parts) { ah = await ah.getDirectoryHandle(part, { create: options?.create }) } return ah } } class FsError extends Error { code?: number constructor(code: number | keyof typeof ERRNO_CODES | null, message: string) { super(message) if (typeof code === 'number') { this.code = code } else if (typeof code === 'string') { this.code = ERRNO_CODES[code] } } } ================================================ FILE: packages/pglite/src/fs/tarUtils.ts ================================================ import { tar, untar, type TarFile, REGTYPE, DIRTYPE } from 'tinytar' import type { FS } from '../postgresMod.js' export type DumpTarCompressionOptions = 'none' | 'gzip' | 'auto' export async function dumpTar( FS: FS, pgDataDir: string, dbname: string = 'pgdata', compression: DumpTarCompressionOptions = 'auto', ): Promise { const tarball = createTarball(FS, pgDataDir) const [compressed, zipped] = await maybeZip(tarball, compression) const filename = dbname + (zipped ? '.tar.gz' : '.tar') const type = zipped ? 'application/x-gzip' : 'application/x-tar' if (typeof File !== 'undefined') { return new File([compressed], filename, { type, }) } else { return new Blob([compressed], { type, }) } } const compressedMimeTypes = [ 'application/x-gtar', 'application/x-tar+gzip', 'application/x-gzip', 'application/gzip', ] export async function loadTar( FS: FS, file: File | Blob, pgDataDir: string, ): Promise { let tarball = new Uint8Array(await file.arrayBuffer()) const filename = typeof File !== 'undefined' && file instanceof File ? file.name : undefined const compressed = compressedMimeTypes.includes(file.type) || filename?.endsWith('.tgz') || filename?.endsWith('.tar.gz') if (compressed) { tarball = await unzip(tarball) } let files try { files = untar(tarball) } catch (e) { if (e instanceof Error && e.message.includes('File is corrupted')) { // The file may be compressed, but had the wrong mime type, try unzipping it tarball = await unzip(tarball) files = untar(tarball) } else { throw e } } for (const file of files) { const filePath = pgDataDir + file.name // Ensure the directory structure exists const dirPath = filePath.split('/').slice(0, -1) for (let i = 1; i <= dirPath.length; i++) { const dir = dirPath.slice(0, i).join('/') if (!FS.analyzePath(dir).exists) { FS.mkdir(dir) } } // Write the file or directory if (file.type === REGTYPE) { FS.writeFile(filePath, file.data) FS.utime( filePath, dateToUnixTimestamp(file.modifyTime), dateToUnixTimestamp(file.modifyTime), ) } else if (file.type === DIRTYPE) { FS.mkdir(filePath) } } } function readDirectory(FS: FS, path: string) { const files: TarFile[] = [] const traverseDirectory = (currentPath: string) => { const entries = FS.readdir(currentPath) entries.forEach((entry) => { if (entry === '.' || entry === '..') { return } const fullPath = currentPath + '/' + entry const stats = FS.stat(fullPath) const data = FS.isFile(stats.mode) ? FS.readFile(fullPath, { encoding: 'binary' }) : new Uint8Array(0) files.push({ name: fullPath.substring(path.length), // remove the root path mode: stats.mode, size: stats.size, type: FS.isFile(stats.mode) ? REGTYPE : DIRTYPE, modifyTime: stats.mtime, data, }) if (FS.isDir(stats.mode)) { traverseDirectory(fullPath) } }) } traverseDirectory(path) return files } export function createTarball(FS: FS, directoryPath: string) { const files = readDirectory(FS, directoryPath) const tarball = tar(files) return tarball } export async function maybeZip( file: Uint8Array, compression: DumpTarCompressionOptions = 'auto', ): Promise<[Uint8Array, boolean]> { if (compression === 'none') { return [file, false] } else if (typeof CompressionStream !== 'undefined') { return [await zipBrowser(file), true] } else if ( typeof process !== 'undefined' && process.versions && process.versions.node ) { return [await zipNode(file), true] } else if (compression === 'auto') { return [file, false] } else { throw new Error('Compression not supported in this environment') } } export async function zipBrowser(file: Uint8Array): Promise { const cs = new CompressionStream('gzip') const writer = cs.writable.getWriter() const reader = cs.readable.getReader() writer.write(file) writer.close() const chunks: Uint8Array[] = [] while (true) { const { value, done } = await reader.read() if (done) break if (value) chunks.push(value) } const compressed = new Uint8Array( chunks.reduce((acc, chunk) => acc + chunk.length, 0), ) let offset = 0 chunks.forEach((chunk) => { compressed.set(chunk, offset) offset += chunk.length }) return compressed } export async function zipNode(file: Uint8Array): Promise { const { promisify } = await import('util') const { gzip } = await import('zlib') const gzipPromise = promisify(gzip) return await gzipPromise(file) } export async function unzip(file: Uint8Array): Promise { if (typeof CompressionStream !== 'undefined') { return await unzipBrowser(file) } else if ( typeof process !== 'undefined' && process.versions && process.versions.node ) { return await unzipNode(file) } else { throw new Error('Unsupported environment for decompression') } } export async function unzipBrowser(file: Uint8Array): Promise { const ds = new DecompressionStream('gzip') const writer = ds.writable.getWriter() const reader = ds.readable.getReader() writer.write(file) writer.close() const chunks: Uint8Array[] = [] while (true) { const { value, done } = await reader.read() if (done) break if (value) chunks.push(value) } const decompressed = new Uint8Array( chunks.reduce((acc, chunk) => acc + chunk.length, 0), ) let offset = 0 chunks.forEach((chunk) => { decompressed.set(chunk, offset) offset += chunk.length }) return decompressed } export async function unzipNode(file: Uint8Array): Promise { const { promisify } = await import('util') const { gunzip } = await import('zlib') const gunzipPromise = promisify(gunzip) return await gunzipPromise(file) } function dateToUnixTimestamp(date: Date | number | undefined): number { if (!date) { return Math.floor(Date.now() / 1000) } else { return typeof date === 'number' ? date : Math.floor(date.getTime() / 1000) } } ================================================ FILE: packages/pglite/src/index.ts ================================================ export * from './pglite.js' export * from './interface.js' export * as types from './types.js' export * as parse from './parse.js' export * as messages from '@electric-sql/pg-protocol/messages' export * as protocol from '@electric-sql/pg-protocol' export { MemoryFS } from './fs/memoryfs.js' export { IdbFs } from './fs/idbfs.js' export { Mutex } from 'async-mutex' export { uuid, formatQuery } from './utils.js' export type * as postgresMod from './postgresMod.js' ================================================ FILE: packages/pglite/src/initdb.ts ================================================ import InitdbModFactory, { InitdbMod } from './initdbModFactory' import parse from './argsParser' function assert(condition: unknown, message?: string): asserts condition { if (!condition) { throw new Error(message ?? 'Assertion failed') } } export const PG_ROOT = '/pglite' export const PGDATA = PG_ROOT + '/data' const initdbExePath = PG_ROOT + '/bin/initdb' const pgstdoutPath = PG_ROOT + '/pgstdout' const pgstdinPath = PG_ROOT + '/pgstdin' /** * Interface defining what initdb needs from a PGlite instance. * This avoids a circular dependency between pglite and pglite-initdb. */ export interface PGliteForInitdb { Module: { HEAPU8: Uint8Array stringToUTF8OnStack(str: string): number _pgl_freopen(path: number, mode: number, fd: number): void FS: any } callMain(args: string[]): number } interface ExecResult { exitCode: number stderr: string stdout: string dataFolder: string } function log(debug?: number, ...args: any[]) { if (debug && debug > 0) { console.log('initdb: ', ...args) } } async function execInitdb({ pg, debug, args, }: { pg: PGliteForInitdb debug?: number args: string[] }): Promise { let system_fn, popen_fn, pclose_fn let needToCallPGmain = false let postgresArgs: string[] = [] let pgMainResult = 0 let initdb_stdin_fd = -1 let initdb_stdout_fd = -1 let stderrOutput: string = '' let stdoutOutput: string = '' const callPgMain = (args: string[]) => { const firstArg = args.shift() log(debug, 'initdb: firstArg', firstArg) assert(firstArg === '/pglite/bin/postgres', `trying to execute ${firstArg}`) pg.Module.HEAPU8.set(origHEAPU8) log(debug, 'executing pg main with', args) const result = pg.callMain(args) log(debug, result) postgresArgs = [] return result } const origHEAPU8 = pg.Module.HEAPU8.slice() const emscriptenOpts: Partial = { arguments: args, noExitRuntime: false, thisProgram: initdbExePath, // Provide a stdin that returns EOF to avoid browser prompt stdin: () => null, print: (text) => { stdoutOutput += text log(debug, 'initdbout', text) }, printErr: (text) => { stderrOutput += text log(debug, 'initdberr', text) }, preRun: [ (mod: InitdbMod) => { mod.onRuntimeInitialized = () => { // default $HOME in emscripten is /home/web_user system_fn = mod.addFunction((cmd_ptr: number) => { postgresArgs = getArgs(mod.UTF8ToString(cmd_ptr)) return callPgMain(postgresArgs) }, 'pi') mod._pgl_set_system_fn(system_fn) popen_fn = mod.addFunction((cmd_ptr: number, mode: number) => { const smode = mod.UTF8ToString(mode) postgresArgs = getArgs(mod.UTF8ToString(cmd_ptr)) if (smode === 'r') { pgMainResult = callPgMain(postgresArgs) return initdb_stdin_fd } else { if (smode === 'w') { needToCallPGmain = true return initdb_stdout_fd } else { throw `Unexpected popen mode value ${smode}` } } }, 'ppi') mod._pgl_set_popen_fn(popen_fn) pclose_fn = mod.addFunction((stream: number) => { if (stream === initdb_stdin_fd || stream === initdb_stdout_fd) { // if the last popen had mode w, execute now postgres' main() if (needToCallPGmain) { needToCallPGmain = false pgMainResult = callPgMain(postgresArgs) } return pgMainResult } else { return mod._pclose(stream) } }, 'pi') mod._pgl_set_pclose_fn(pclose_fn) { const pglite_stdin_path = pg.Module.stringToUTF8OnStack(pgstdinPath) const rmode = pg.Module.stringToUTF8OnStack('r') pg.Module._pgl_freopen(pglite_stdin_path, rmode, 0) const pglite_stdout_path = pg.Module.stringToUTF8OnStack(pgstdoutPath) const wmode = pg.Module.stringToUTF8OnStack('w') pg.Module._pgl_freopen(pglite_stdout_path, wmode, 1) } { const initdb_path = mod.stringToUTF8OnStack(pgstdoutPath) const rmode = mod.stringToUTF8OnStack('r') initdb_stdin_fd = mod._fopen(initdb_path, rmode) const path = mod.stringToUTF8OnStack(pgstdinPath) const wmode = mod.stringToUTF8OnStack('w') initdb_stdout_fd = mod._fopen(path, wmode) } } }, (mod: InitdbMod) => { mod.ENV.PGDATA = PGDATA }, (mod: InitdbMod) => { mod.FS.mkdir(PG_ROOT) mod.FS.mount( mod.PROXYFS, { root: PG_ROOT, fs: pg.Module.FS, }, PG_ROOT, ) }, ], } const initDbMod = await InitdbModFactory(emscriptenOpts) log(debug, 'calling initdb.main with', args) const result = initDbMod.callMain(args) return { exitCode: result, stderr: stderrOutput, stdout: stdoutOutput, dataFolder: PGDATA, } } interface InitdbOptions { pg: PGliteForInitdb debug?: number args?: string[] } function getArgs(cmd: string) { const a: string[] = [] const parsed = parse(cmd) for (let i = 0; i < parsed.length; i++) { const token = parsed[i] if (typeof token === 'object' && 'op' in token) break if (typeof token === 'string') a.push(token) } return a } /** * Execute initdb */ export async function initdb({ pg, debug, args, }: InitdbOptions): Promise { const execResult = await execInitdb({ pg, debug, args: [ '--allow-group-access', '--encoding', 'UTF8', '--locale=C.UTF-8', '--locale-provider=libc', '--auth=trust', ...(args ?? []), ], }) return execResult } ================================================ FILE: packages/pglite/src/initdbModFactory.ts ================================================ import InitdbModFactory from '../release/initdb' type IDBFS = Emscripten.FileSystemType & { quit: () => void dbs: Record } export type FS = typeof FS & { filesystems: { MEMFS: Emscripten.FileSystemType NODEFS: Emscripten.FileSystemType IDBFS: IDBFS } quit: () => void } export interface InitdbMod extends Omit { preInit: Array<{ (mod: InitdbMod): void }> preRun: Array<{ (mod: InitdbMod): void }> postRun: Array<{ (mod: InitdbMod): void }> thisProgram: string stdin: (() => number | null) | null ENV: Record FS: FS PROXYFS: Emscripten.FileSystemType WASM_PREFIX: string INITIAL_MEMORY: number UTF8ToString: (ptr: number, maxBytesToRead?: number) => string stringToUTF8OnStack: (s: string) => number ___errno_location: () => number _strerror: (errno: number) => number _pgl_set_rw_cbs: (read_cb: number, write_cb: number) => void _pgl_set_system_fn: (system_fn: number) => void _pgl_set_popen_fn: (popen_fn: number) => void _pgl_set_pclose_fn: (pclose_fn: number) => void _pgl_set_pipe_fn: (pipe_fn: number) => void _pclose: (stream: number) => number _pipe: (fd: number) => number _pgl_freopen: (filepath: number, mode: number, stream: number) => number // _pgl_set_fgets_fn: (fgets_fn: number) => void // _pgl_set_fputs_fn: (fputs_fn: number) => void // _pgl_set_errno: (errno: number) => number // _fgets: (str: number, size: number, stream: number) => number // _fputs: (s: number, stream: number) => number _fopen: (path: number, mode: number) => number _fclose: (stream: number) => number _fflush: (stream: number) => number addFunction: (fn: CallableFunction, signature: string) => number removeFunction: (f: number) => void callMain: (args: string[]) => number onExit: (status: number) => void print: (test: string) => void printErr: (text: string) => void } type PgDumpFactory = ( moduleOverrides?: Partial, ) => Promise export default InitdbModFactory as PgDumpFactory ================================================ FILE: packages/pglite/src/interface.ts ================================================ import type { BackendMessage, NoticeMessage, } from '@electric-sql/pg-protocol/messages' import type { Filesystem } from './fs/base.js' import type { DumpTarCompressionOptions } from './fs/tarUtils.js' import type { Parser, Serializer } from './types.js' export type FilesystemType = 'nodefs' | 'idbfs' | 'memoryfs' export type DebugLevel = 0 | 1 | 2 | 3 | 4 | 5 export type RowMode = 'array' | 'object' export interface ParserOptions { [pgType: number]: (value: string) => any } export interface SerializerOptions { [pgType: number]: (value: any) => string } export interface QueryOptions { rowMode?: RowMode parsers?: ParserOptions serializers?: SerializerOptions blob?: Blob | File onNotice?: (notice: NoticeMessage) => void paramTypes?: number[] } export interface ExecProtocolOptions { syncToFs?: boolean throwOnError?: boolean onNotice?: (notice: NoticeMessage) => void } export interface ExecProtocolOptionsStream { syncToFs?: boolean onRawData: (data: Uint8Array) => void } export interface ExtensionSetupResult { emscriptenOpts?: any namespaceObj?: TNamespace bundlePath?: URL init?: () => Promise close?: () => Promise } export type ExtensionSetup = ( pg: PGliteInterface, emscriptenOpts: any, clientOnly?: boolean, ) => Promise> export interface Extension { name: string setup: ExtensionSetup } export type ExtensionNamespace = T extends Extension ? TNamespace : any export type Extensions = { [namespace: string]: Extension | URL } export type InitializedExtensions = { [K in keyof TExtensions]: ExtensionNamespace } export interface ExecProtocolResult { messages: BackendMessage[] data: Uint8Array } export interface DumpDataDirResult { tarball: Uint8Array extension: '.tar' | '.tgz' filename: string } export interface PGliteOptions { noInitDb?: boolean dataDir?: string username?: string database?: string fs?: Filesystem debug?: DebugLevel relaxedDurability?: boolean extensions?: TExtensions loadDataDir?: Blob | File initialMemory?: number wasmModule?: WebAssembly.Module fsBundle?: Blob | File parsers?: ParserOptions serializers?: SerializerOptions startParams?: string[] } export type PGliteInterface = InitializedExtensions & { readonly waitReady: Promise readonly debug: DebugLevel readonly ready: boolean readonly closed: boolean close(): Promise query( query: string, params?: any[], options?: QueryOptions, ): Promise> sql( sqlStrings: TemplateStringsArray, ...params: any[] ): Promise> exec(query: string, options?: QueryOptions): Promise> describeQuery(query: string): Promise transaction(callback: (tx: Transaction) => Promise): Promise execProtocolRaw( message: Uint8Array, options?: ExecProtocolOptions, ): Promise execProtocolRawStream( message: Uint8Array, options?: ExecProtocolOptionsStream, ): Promise execProtocol( message: Uint8Array, options?: ExecProtocolOptions, ): Promise runExclusive(fn: () => Promise): Promise listen( channel: string, callback: (payload: string) => void, tx?: Transaction, ): Promise<(tx?: Transaction) => Promise> unlisten( channel: string, callback?: (payload: string) => void, tx?: Transaction, ): Promise onNotification( callback: (channel: string, payload: string) => void, ): () => void offNotification(callback: (channel: string, payload: string) => void): void dumpDataDir(compression?: DumpTarCompressionOptions): Promise refreshArrayTypes(): Promise } export type PGliteInterfaceExtensions = E extends Extensions ? { [K in keyof E]: E[K] extends Extension ? Awaited>['namespaceObj'] extends infer N ? N extends undefined | null | void ? never : N : never : never } : Record export type Row = T export type Results = { rows: Row[] affectedRows?: number fields: { name: string; dataTypeID: number }[] blob?: Blob // Only set when a file is returned, such as from a COPY command } export interface Transaction { query( query: string, params?: any[], options?: QueryOptions, ): Promise> sql( sqlStrings: TemplateStringsArray, ...params: any[] ): Promise> exec(query: string, options?: QueryOptions): Promise> rollback(): Promise listen( channel: string, callback: (payload: string) => void, ): Promise<(tx?: Transaction) => Promise> get closed(): boolean } export type DescribeQueryResult = { queryParams: { dataTypeID: number; serializer: Serializer }[] resultFields: { name: string; dataTypeID: number; parser: Parser }[] } ================================================ FILE: packages/pglite/src/live/index.ts ================================================ import type { Extension, PGliteInterface, Results, Transaction, } from '../interface' import type { LiveQueryOptions, LiveIncrementalQueryOptions, LiveChangesOptions, LiveNamespace, LiveQuery, LiveChanges, Change, LiveQueryResults, } from './interface' import { uuid, formatQuery, debounceMutex } from '../utils.js' export type { LiveNamespace, LiveQuery, LiveChanges, Change, LiveQueryResults, } from './interface.js' const MAX_RETRIES = 5 const setup = async (pg: PGliteInterface, _emscriptenOpts: any) => { // The notify triggers are only ever added and never removed // Keep track of which triggers have been added to avoid adding them multiple times const tableNotifyTriggersAdded = new Set() const namespaceObj: LiveNamespace = { async query( query: string | LiveQueryOptions, params?: any[] | null, callback?: (results: Results) => void, ) { let signal: AbortSignal | undefined let offset: number | undefined let limit: number | undefined if (typeof query !== 'string') { signal = query.signal params = query.params callback = query.callback offset = query.offset limit = query.limit query = query.query } // Offset and limit must be provided together if ((offset === undefined) !== (limit === undefined)) { throw new Error('offset and limit must be provided together') } const isWindowed = offset !== undefined && limit !== undefined let totalCount: number | undefined = undefined if ( isWindowed && (typeof offset !== 'number' || isNaN(offset) || typeof limit !== 'number' || isNaN(limit)) ) { throw new Error('offset and limit must be numbers') } let callbacks: Array<(results: Results) => void> = callback ? [callback] : [] const id = uuid().replace(/-/g, '') let dead = false let results: LiveQueryResults let unsubList: Array<(tx?: Transaction) => Promise> const init = async () => { await pg.transaction(async (tx) => { // Create a temporary view with the query const formattedQuery = params && params.length > 0 ? await formatQuery(pg, query, params, tx) : query await tx.exec( `CREATE OR REPLACE TEMP VIEW live_query_${id}_view AS ${formattedQuery}`, ) // Get the tables used in the view and add triggers to notify when they change const tables = await getTablesForView(tx, `live_query_${id}_view`) await addNotifyTriggersToTables(tx, tables, tableNotifyTriggersAdded) if (isWindowed) { await tx.exec(` PREPARE live_query_${id}_get(int, int) AS SELECT * FROM live_query_${id}_view LIMIT $1 OFFSET $2; `) await tx.exec(` PREPARE live_query_${id}_get_total_count AS SELECT COUNT(*) FROM live_query_${id}_view; `) totalCount = ( await tx.query<{ count: number }>( `EXECUTE live_query_${id}_get_total_count;`, ) ).rows[0].count results = { ...(await tx.query( `EXECUTE live_query_${id}_get(${limit}, ${offset});`, )), offset, limit, totalCount, } } else { await tx.exec(` PREPARE live_query_${id}_get AS SELECT * FROM live_query_${id}_view; `) results = await tx.query(`EXECUTE live_query_${id}_get;`) } // Setup the listeners unsubList = await Promise.all( tables!.map((table) => tx.listen( `"table_change__${table.schema_oid}__${table.table_oid}"`, async () => { refresh() }, ), ), ) }) } await init() // Function to refresh the query const refresh = debounceMutex( async ({ offset: newOffset, limit: newLimit, }: { offset?: number limit?: number } = {}) => { // We can optionally provide new offset and limit values to refresh with if ( !isWindowed && (newOffset !== undefined || newLimit !== undefined) ) { throw new Error( 'offset and limit cannot be provided for non-windowed queries', ) } if ( (newOffset && (typeof newOffset !== 'number' || isNaN(newOffset))) || (newLimit && (typeof newLimit !== 'number' || isNaN(newLimit))) ) { throw new Error('offset and limit must be numbers') } offset = newOffset ?? offset limit = newLimit ?? limit const run = async (count = 0) => { if (callbacks.length === 0) { return } try { if (isWindowed) { // For a windowed query we defer the refresh of the total count until // after we have returned the results with the old total count. This // is due to a count(*) being a fairly slow query and we want to update // the rows on screen as quickly as possible. results = { ...(await pg.query( `EXECUTE live_query_${id}_get(${limit}, ${offset});`, )), offset, limit, totalCount, // This is the old total count } } else { results = await pg.query(`EXECUTE live_query_${id}_get;`) } } catch (e) { const msg = (e as Error).message if ( msg.startsWith(`prepared statement "live_query_${id}`) && msg.endsWith('does not exist') ) { // If the prepared statement does not exist, reset and try again // This can happen if using the multi-tab worker if (count > MAX_RETRIES) { throw e } await init() run(count + 1) } else { throw e } } runResultCallbacks(callbacks, results) // Update the total count // If the total count has changed, refresh the query if (isWindowed) { const newTotalCount = ( await pg.query<{ count: number }>( `EXECUTE live_query_${id}_get_total_count;`, ) ).rows[0].count if (newTotalCount !== totalCount) { // The total count has changed, refresh the query totalCount = newTotalCount refresh() } } } await run() }, ) // Function to subscribe to the query const subscribe = (callback: (results: Results) => void) => { if (dead) { throw new Error( 'Live query is no longer active and cannot be subscribed to', ) } callbacks.push(callback) } // Function to unsubscribe from the query // If no function is provided, unsubscribe all callbacks // If there are no callbacks, unsubscribe from the notify triggers const unsubscribe = async (callback?: (results: Results) => void) => { if (callback) { callbacks = callbacks.filter((callback) => callback !== callback) } else { callbacks = [] } if (callbacks.length === 0 && !dead) { dead = true await pg.transaction(async (tx) => { await Promise.all(unsubList.map((unsub) => unsub(tx))) await tx.exec(` DROP VIEW IF EXISTS live_query_${id}_view; DEALLOCATE live_query_${id}_get; `) }) } } // If the signal has already been aborted, unsubscribe if (signal?.aborted) { await unsubscribe() } else { // Add an event listener to unsubscribe if the signal is aborted signal?.addEventListener( 'abort', () => { unsubscribe() }, { once: true }, ) } // Run the callback with the initial results runResultCallbacks(callbacks, results!) // Return the initial results return { initialResults: results!, subscribe, unsubscribe, refresh, } satisfies LiveQuery }, async changes( query: string | LiveChangesOptions, params?: any[] | null, key?: string, callback?: (changes: Array>) => void, ) { let signal: AbortSignal | undefined if (typeof query !== 'string') { signal = query.signal params = query.params key = query.key callback = query.callback query = query.query } if (!key) { throw new Error('key is required for changes queries') } let callbacks: Array<(changes: Array>) => void> = callback ? [callback] : [] const id = uuid().replace(/-/g, '') let dead = false let stateSwitch: 1 | 2 = 1 let changes: Results> let unsubList: Array<(tx?: Transaction) => Promise> const init = async () => { await pg.transaction(async (tx) => { // Create a temporary view with the query const formattedQuery = await formatQuery(pg, query, params, tx) await tx.query( `CREATE OR REPLACE TEMP VIEW live_query_${id}_view AS ${formattedQuery}`, ) // Get the tables used in the view and add triggers to notify when they change const tables = await getTablesForView(tx, `live_query_${id}_view`) await addNotifyTriggersToTables(tx, tables, tableNotifyTriggersAdded) // Get the columns of the view const columns = [ ...( await tx.query(` SELECT column_name, data_type, udt_name FROM information_schema.columns WHERE table_name = 'live_query_${id}_view' `) ).rows, { column_name: '__after__', data_type: 'integer' }, ] // Init state tables as empty temp table await tx.exec(` CREATE TEMP TABLE live_query_${id}_state1 (LIKE live_query_${id}_view INCLUDING ALL); CREATE TEMP TABLE live_query_${id}_state2 (LIKE live_query_${id}_view INCLUDING ALL); `) // Create Diff views and prepared statements for (const curr of [1, 2]) { const prev = curr === 1 ? 2 : 1 await tx.exec(` PREPARE live_query_${id}_diff${curr} AS WITH prev AS (SELECT LAG("${key}") OVER () as __after__, * FROM live_query_${id}_state${prev}), curr AS (SELECT LAG("${key}") OVER () as __after__, * FROM live_query_${id}_state${curr}), data_diff AS ( -- INSERT operations: Include all columns SELECT 'INSERT' AS __op__, ${columns .map( ({ column_name }) => `curr."${column_name}" AS "${column_name}"`, ) .join(',\n')}, ARRAY[]::text[] AS __changed_columns__ FROM curr LEFT JOIN prev ON curr.${key} = prev.${key} WHERE prev.${key} IS NULL UNION ALL -- DELETE operations: Include only the primary key SELECT 'DELETE' AS __op__, ${columns .map(({ column_name, data_type, udt_name }) => { if (column_name === key) { return `prev."${column_name}" AS "${column_name}"` } else { return `NULL${data_type === 'USER-DEFINED' ? `::${udt_name}` : ``} AS "${column_name}"` } }) .join(',\n')}, ARRAY[]::text[] AS __changed_columns__ FROM prev LEFT JOIN curr ON prev.${key} = curr.${key} WHERE curr.${key} IS NULL UNION ALL -- UPDATE operations: Include only changed columns SELECT 'UPDATE' AS __op__, ${columns .map(({ column_name, data_type, udt_name }) => column_name === key ? `curr."${column_name}" AS "${column_name}"` : `CASE WHEN curr."${column_name}" IS DISTINCT FROM prev."${column_name}" THEN curr."${column_name}" ELSE NULL${data_type === 'USER-DEFINED' ? `::${udt_name}` : ``} END AS "${column_name}"`, ) .join(',\n')}, ARRAY(SELECT unnest FROM unnest(ARRAY[${columns .filter(({ column_name }) => column_name !== key) .map( ({ column_name }) => `CASE WHEN curr."${column_name}" IS DISTINCT FROM prev."${column_name}" THEN '${column_name}' ELSE NULL END`, ) .join( ', ', )}]) WHERE unnest IS NOT NULL) AS __changed_columns__ FROM curr INNER JOIN prev ON curr.${key} = prev.${key} WHERE NOT (curr IS NOT DISTINCT FROM prev) ) SELECT * FROM data_diff; `) } // Setup the listeners unsubList = await Promise.all( tables!.map((table) => tx.listen( `"table_change__${table.schema_oid}__${table.table_oid}"`, async () => { refresh() }, ), ), ) }) } await init() const refresh = debounceMutex(async () => { if (callbacks.length === 0 && changes) { return } let reset = false for (let i = 0; i < 5; i++) { try { await pg.transaction(async (tx) => { // Populate the state table await tx.exec(` INSERT INTO live_query_${id}_state${stateSwitch} SELECT * FROM live_query_${id}_view; `) // Get the changes changes = await tx.query( `EXECUTE live_query_${id}_diff${stateSwitch};`, ) // Switch state stateSwitch = stateSwitch === 1 ? 2 : 1 // Truncate the old state table await tx.exec(` TRUNCATE live_query_${id}_state${stateSwitch}; `) }) break } catch (e) { const msg = (e as Error).message if ( msg === `relation "live_query_${id}_state${stateSwitch}" does not exist` ) { // If the state table does not exist, reset and try again // This can happen if using the multi-tab worker reset = true await init() continue } else { throw e } } } runChangeCallbacks(callbacks, [ ...(reset ? [ { __op__: 'RESET' as const, }, ] : []), ...changes!.rows, ]) }) // Function to subscribe to the query const subscribe = (callback: (changes: Array>) => void) => { if (dead) { throw new Error( 'Live query is no longer active and cannot be subscribed to', ) } callbacks.push(callback) } // Function to unsubscribe from the query const unsubscribe = async ( callback?: (changes: Array>) => void, ) => { if (callback) { callbacks = callbacks.filter((callback) => callback !== callback) } else { callbacks = [] } if (callbacks.length === 0 && !dead) { dead = true await pg.transaction(async (tx) => { await Promise.all(unsubList.map((unsub) => unsub(tx))) await tx.exec(` DROP VIEW IF EXISTS live_query_${id}_view; DROP TABLE IF EXISTS live_query_${id}_state1; DROP TABLE IF EXISTS live_query_${id}_state2; DEALLOCATE live_query_${id}_diff1; DEALLOCATE live_query_${id}_diff2; `) }) } } // If the signal has already been aborted, unsubscribe if (signal?.aborted) { await unsubscribe() } else { // Add an event listener to unsubscribe if the signal is aborted signal?.addEventListener( 'abort', () => { unsubscribe() }, { once: true }, ) } // Run the callback with the initial changes await refresh() // Fields const fields = changes!.fields.filter( (field) => !['__after__', '__op__', '__changed_columns__'].includes(field.name), ) // Return the initial results return { fields, initialChanges: changes!.rows, subscribe, unsubscribe, refresh, } satisfies LiveChanges }, async incrementalQuery( query: string | LiveIncrementalQueryOptions, params?: any[] | null, key?: string, callback?: (results: Results) => void, ) { let signal: AbortSignal | undefined if (typeof query !== 'string') { signal = query.signal params = query.params key = query.key callback = query.callback query = query.query } if (!key) { throw new Error('key is required for incremental queries') } let callbacks: Array<(results: Results) => void> = callback ? [callback] : [] const rowsMap: Map = new Map() const afterMap: Map = new Map() let lastRows: T[] = [] let firstRun = true const { fields, unsubscribe: unsubscribeChanges, refresh, } = await namespaceObj.changes(query, params, key, (changes) => { // Process the changes for (const change of changes) { const { __op__: op, __changed_columns__: changedColumns, ...obj } = change as typeof change & { [key: string]: any } switch (op) { case 'RESET': rowsMap.clear() afterMap.clear() break case 'INSERT': rowsMap.set(obj[key], obj) afterMap.set(obj.__after__, obj[key]) break case 'DELETE': { const oldObj = rowsMap.get(obj[key]) rowsMap.delete(obj[key]) // null is the starting point, we don't delete it as another insert // may have happened thats replacing it if (oldObj.__after__ !== null) { afterMap.delete(oldObj.__after__) } break } case 'UPDATE': { const newObj = { ...(rowsMap.get(obj[key]) ?? {}) } for (const columnName of changedColumns) { newObj[columnName] = obj[columnName] if (columnName === '__after__') { afterMap.set(obj.__after__, obj[key]) } } rowsMap.set(obj[key], newObj) break } } } // Get the rows in order const rows: T[] = [] let lastKey: any = null for (let i = 0; i < rowsMap.size; i++) { const nextKey = afterMap.get(lastKey) const obj = rowsMap.get(nextKey) if (!obj) { break } // Remove the __after__ key from the exposed row const cleanObj = { ...obj } delete cleanObj.__after__ rows.push(cleanObj) lastKey = nextKey } lastRows = rows // Run the callbacks if (!firstRun) { runResultCallbacks(callbacks, { rows, fields, }) } }) firstRun = false runResultCallbacks(callbacks, { rows: lastRows, fields, }) const subscribe = (callback: (results: Results) => void) => { callbacks.push(callback) } const unsubscribe = async (callback?: (results: Results) => void) => { if (callback) { callbacks = callbacks.filter((callback) => callback !== callback) } else { callbacks = [] } if (callbacks.length === 0) { await unsubscribeChanges() } } if (signal?.aborted) { await unsubscribe() } else { signal?.addEventListener( 'abort', () => { unsubscribe() }, { once: true }, ) } return { initialResults: { rows: lastRows, fields, }, subscribe, unsubscribe, refresh, } satisfies LiveQuery }, } return { namespaceObj, } } export const live = { name: 'Live Queries', setup, } satisfies Extension export type PGliteWithLive = PGliteInterface & { live: LiveNamespace } /** * Get a list of all the tables used in a view, recursively * @param tx a transaction or PGlite instance * @param viewName the name of the view * @returns list of tables used in the view */ async function getTablesForView( tx: Transaction | PGliteInterface, viewName: string, ): Promise< { table_name: string schema_name: string table_oid: number schema_oid: number }[] > { const result = await tx.query<{ table_name: string schema_name: string table_oid: number schema_oid: number }>( ` WITH RECURSIVE view_dependencies AS ( -- Base case: Get the initial view's dependencies SELECT DISTINCT cl.relname AS dependent_name, n.nspname AS schema_name, cl.oid AS dependent_oid, n.oid AS schema_oid, cl.relkind = 'v' AS is_view FROM pg_rewrite r JOIN pg_depend d ON r.oid = d.objid JOIN pg_class cl ON d.refobjid = cl.oid JOIN pg_namespace n ON cl.relnamespace = n.oid WHERE r.ev_class = ( SELECT oid FROM pg_class WHERE relname = $1 AND relkind = 'v' ) AND d.deptype = 'n' UNION ALL -- Recursive case: Traverse dependencies for views SELECT DISTINCT cl.relname AS dependent_name, n.nspname AS schema_name, cl.oid AS dependent_oid, n.oid AS schema_oid, cl.relkind = 'v' AS is_view FROM view_dependencies vd JOIN pg_rewrite r ON vd.dependent_name = ( SELECT relname FROM pg_class WHERE oid = r.ev_class AND relkind = 'v' ) JOIN pg_depend d ON r.oid = d.objid JOIN pg_class cl ON d.refobjid = cl.oid JOIN pg_namespace n ON cl.relnamespace = n.oid WHERE d.deptype = 'n' ) SELECT DISTINCT dependent_name AS table_name, schema_name, dependent_oid AS table_oid, schema_oid FROM view_dependencies WHERE NOT is_view; -- Exclude intermediate views `, [viewName], ) return result.rows.map((row) => ({ table_name: row.table_name, schema_name: row.schema_name, table_oid: row.table_oid, schema_oid: row.schema_oid, })) } /** * Add triggers to tables to notify when they change * @param tx a transaction or PGlite instance * @param tables list of tables to add triggers to */ async function addNotifyTriggersToTables( tx: Transaction | PGliteInterface, tables: { table_name: string table_oid: number schema_name: string schema_oid: number }[], tableNotifyTriggersAdded: Set, ) { const triggers = tables .filter( (table) => !tableNotifyTriggersAdded.has(`${table.schema_oid}_${table.table_oid}`), ) .map((table) => { return ` CREATE OR REPLACE FUNCTION "_notify_${table.schema_oid}_${table.table_oid}"() RETURNS TRIGGER AS $$ BEGIN PERFORM pg_notify('table_change__${table.schema_oid}__${table.table_oid}', ''); RETURN NULL; END; $$ LANGUAGE plpgsql; CREATE OR REPLACE TRIGGER "_notify_trigger_${table.schema_oid}_${table.table_oid}" AFTER INSERT OR UPDATE OR DELETE ON "${table.schema_name}"."${table.table_name}" FOR EACH STATEMENT EXECUTE FUNCTION "_notify_${table.schema_oid}_${table.table_oid}"(); ` }) .join('\n') if (triggers.trim() !== '') { await tx.exec(triggers) } tables.map((table) => tableNotifyTriggersAdded.add(`${table.schema_oid}_${table.table_oid}`), ) } const runResultCallbacks = ( callbacks: Array<(results: Results) => void>, results: Results, ) => { for (const callback of callbacks) { callback(results) } } const runChangeCallbacks = ( callbacks: Array<(changes: Array>) => void>, changes: Array>, ) => { for (const callback of callbacks) { callback(changes) } } ================================================ FILE: packages/pglite/src/live/interface.ts ================================================ import type { Results } from '../interface' export interface LiveQueryOptions { query: string params?: any[] | null offset?: number limit?: number callback?: (results: Results) => void signal?: AbortSignal } export interface LiveChangesOptions { query: string params?: any[] | null key: string callback?: (changes: Array>) => void signal?: AbortSignal } export interface LiveIncrementalQueryOptions { query: string params?: any[] | null key: string callback?: (results: Results) => void signal?: AbortSignal } export interface LiveNamespace { /** * Create a live query * @param query - The query to run * @param params - The parameters to pass to the query * @param callback - A callback to run when the query is updated * @returns A promise that resolves to an object with the initial results, * an unsubscribe function, and a refresh function */ query( query: string, params?: any[] | null, callback?: (results: Results) => void, ): Promise> /** * Create a live query * @param options - The options to pass to the query * @returns A promise that resolves to an object with the initial results, * an unsubscribe function, and a refresh function */ query( options: LiveQueryOptions, ): Promise> /** * Create a live query that returns the changes to the query results * @param query - The query to run * @param params - The parameters to pass to the query * @param callback - A callback to run when the query is updated * @returns A promise that resolves to an object with the initial changes, * an unsubscribe function, and a refresh function */ changes( query: string, params: any[] | undefined | null, key: string, callback?: (changes: Array>) => void, ): Promise> /** * Create a live query that returns the changes to the query results * @param options - The options to pass to the query * @returns A promise that resolves to an object with the initial changes, * an unsubscribe function, and a refresh function */ changes( options: LiveChangesOptions, ): Promise> /** * Create a live query with incremental updates * @param query - The query to run * @param params - The parameters to pass to the query * @param callback - A callback to run when the query is updated * @returns A promise that resolves to an object with the initial results, * an unsubscribe function, and a refresh function */ incrementalQuery( query: string, params: any[] | undefined | null, key: string, callback?: (results: Results) => void, ): Promise> /** * Create a live query with incremental updates * @param options - The options to pass to the query * @returns A promise that resolves to an object with the initial results, * an unsubscribe function, and a refresh function */ incrementalQuery( options: LiveIncrementalQueryOptions, ): Promise> } export interface LiveQueryResults extends Results { totalCount?: number offset?: number limit?: number } export interface LiveQuery { initialResults: LiveQueryResults subscribe: (callback: (results: LiveQueryResults) => void) => void unsubscribe: ( callback?: (results: LiveQueryResults) => void, ) => Promise refresh: (options?: { offset?: number; limit?: number }) => Promise } export interface LiveChanges { fields: { name: string; dataTypeID: number }[] initialChanges: Array> subscribe: (callback: (changes: Array>) => void) => void unsubscribe: (callback?: (changes: Array>) => void) => Promise refresh: () => Promise } export type ChangeInsert = { __changed_columns__: string[] __op__: 'INSERT' __after__: number } & T export type ChangeDelete = { __changed_columns__: string[] __op__: 'DELETE' __after__: undefined } & T export type ChangeUpdate = { __changed_columns__: string[] __op__: 'UPDATE' __after__: number } & T export type ChangeReset = { __op__: 'RESET' } & T export type Change = | ChangeInsert | ChangeDelete | ChangeUpdate | ChangeReset ================================================ FILE: packages/pglite/src/parse.ts ================================================ import { BackendMessage, RowDescriptionMessage, DataRowMessage, CommandCompleteMessage, ParameterDescriptionMessage, } from '@electric-sql/pg-protocol/messages' import type { Results, QueryOptions } from './interface.js' import { parseType, type Parser } from './types.js' /** * This function is used to parse the results of either a simple or extended query. * https://www.postgresql.org/docs/current/protocol-flow.html#PROTOCOL-FLOW-SIMPLE-QUERY */ export function parseResults( messages: Array, defaultParsers: Record, options?: QueryOptions, blob?: Blob, ): Array { const resultSets: Results[] = [] let currentResultSet: Results = { rows: [], fields: [] } let affectedRows = 0 const parsers = { ...defaultParsers, ...options?.parsers } messages.forEach((message) => { switch (message.name) { case 'rowDescription': { const msg = message as RowDescriptionMessage currentResultSet.fields = msg.fields.map((field) => ({ name: field.name, dataTypeID: field.dataTypeID, })) break } case 'dataRow': { if (!currentResultSet) break const msg = message as DataRowMessage if (options?.rowMode === 'array') { currentResultSet.rows.push( msg.fields.map((field, i) => parseType(field, currentResultSet!.fields[i].dataTypeID, parsers), ), ) } else { // rowMode === "object" currentResultSet.rows.push( Object.fromEntries( msg.fields.map((field, i) => [ currentResultSet!.fields[i].name, parseType( field, currentResultSet!.fields[i].dataTypeID, parsers, ), ]), ), ) } break } case 'commandComplete': { const msg = message as CommandCompleteMessage affectedRows += retrieveRowCount(msg) resultSets.push({ ...currentResultSet, affectedRows, ...(blob ? { blob } : {}), }) currentResultSet = { rows: [], fields: [] } break } } }) if (resultSets.length === 0) { resultSets.push({ affectedRows: 0, rows: [], fields: [], }) } return resultSets } function retrieveRowCount(msg: CommandCompleteMessage): number { const parts = msg.text.split(' ') switch (parts[0]) { case 'INSERT': return parseInt(parts[2], 10) case 'UPDATE': case 'DELETE': case 'COPY': case 'MERGE': return parseInt(parts[1], 10) default: return 0 } } /** Get the dataTypeIDs from a list of messages, if it's available. */ export function parseDescribeStatementResults( messages: Array, ): number[] { const message = messages.find( (msg): msg is ParameterDescriptionMessage => msg.name === 'parameterDescription', ) if (message) { return message.dataTypeIDs } return [] } ================================================ FILE: packages/pglite/src/pg_hashids/index.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, emscriptenOpts: any) => { return { emscriptenOpts, bundlePath: new URL('../../release/pg_hashids.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const pg_hashids = { name: 'pg_hashids', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/pg_ivm/index.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, emscriptenOpts: any) => { return { emscriptenOpts, bundlePath: new URL('../../release/pg_ivm.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const pg_ivm = { name: 'pg_ivm', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/pg_textsearch/index.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, emscriptenOpts: any) => { return { emscriptenOpts, bundlePath: new URL('../../release/pg_textsearch.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const pg_textsearch = { name: 'pg_textsearch', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/pg_uuidv7/index.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, emscriptenOpts: any) => { return { emscriptenOpts, bundlePath: new URL('../../release/pg_uuidv7.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const pg_uuidv7 = { name: 'pg_uuidv7', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/pglite.ts ================================================ import { Mutex } from 'async-mutex' import { BasePGlite } from './base.js' import { loadExtensionBundle, loadExtensions } from './extensionUtils.js' import { type Filesystem, loadFs, parseDataDir, WASM_PREFIX, } from './fs/index.js' import { DumpTarCompressionOptions, loadTar } from './fs/tarUtils.js' import type { DebugLevel, ExecProtocolOptions, ExecProtocolOptionsStream, ExecProtocolResult, Extensions, PGliteInterface, PGliteInterfaceExtensions, PGliteOptions, Transaction, } from './interface.js' import PostgresModFactory, { type PostgresMod } from './postgresMod.js' import { getFsBundle, instantiateWasm, startWasmDownload, toPostgresName, } from './utils.js' // Importing the source as the built version is not ESM compatible import { Parser as ProtocolParser, serialize } from '@electric-sql/pg-protocol' import { BackendMessage, DatabaseError, NoticeMessage, NotificationResponseMessage, } from '@electric-sql/pg-protocol/messages' import { initdb, PGDATA } from './initdb' const postgresExePath = '/pglite/bin/postgres' const initdbExePath = '/pglite/bin/initdb' export class PGlite extends BasePGlite implements PGliteInterface, AsyncDisposable { fs?: Filesystem protected mod?: PostgresMod // we handle Postgres' main longjmp manually, by intercepting it and exiting with this error code // keep in sync with pglitec.c->POSTGRES_MAIN_LONGJMP private readonly POSTGRES_MAIN_LONGJMP = 100 get ENV(): any { return this.mod?.ENV } readonly dataDir?: string #ready = false #closing = false #closed = false #relaxedDurability = false readonly waitReady: Promise #queryMutex = new Mutex() #transactionMutex = new Mutex() #listenMutex = new Mutex() #fsSyncMutex = new Mutex() #fsSyncScheduled = false readonly debug: DebugLevel = 0 #extensions: Extensions #extensionsClose: Array<() => Promise> = [] #protocolParser = new ProtocolParser() // These are the current ArrayBuffer that is being read or written to // during a query, such as COPY FROM or COPY TO. #queryReadBuffer?: ArrayBuffer #queryWriteChunks?: Uint8Array[] #notifyListeners = new Map void>>() #globalNotifyListeners = new Set<(channel: string, payload: string) => void>() // receive data from wasm #pglite_socket_write: number = -1 #currentResults: BackendMessage[] = [] #currentThrowOnError: boolean = false #currentOnNotice: ((notice: NoticeMessage) => void) | undefined #currentOnRawData: ((data: Uint8Array) => void) | undefined // send data to wasm #pglite_socket_read: number = -1 // buffer that holds the data to be sent to wasm #outputData: any = [] // read index in the buffer #readOffset: number = 0 #currentDatabaseError: DatabaseError | null = null #keepRawResponse: boolean = true // these are needed for point 2 above static readonly DEFAULT_RECV_BUF_SIZE: number = 1 * 1024 * 1024 // 1MB default static readonly MAX_BUFFER_SIZE: number = Math.pow(2, 30) // buffer that holds data received from wasm #inputData = new Uint8Array(0) // write index in the buffer #writeOffset: number = 0 #system_fn: number = -1 #popen_fn: number = -1 #pclose_fn: number = -1 externalCommandStreamFd: number | null = null #running: boolean = false static readonly defaultStartParams = [ '--single', // selects single-user mode (must be first argument) '-F', // turn fsync off '-O', // allow system table structure changes '-j', // do not use newline as interactive query delimiter '-c', 'search_path=public', '-c', 'exit_on_error=false', '-c', 'log_checkpoints=false', ] /** * Create a new PGlite instance * @param dataDir The directory to store the database files * Prefix with idb:// to use indexeddb filesystem in the browser * Use memory:// to use in-memory filesystem * @param options PGlite options */ constructor(dataDir?: string, options?: PGliteOptions) /** * Create a new PGlite instance * @param options PGlite options including the data directory */ constructor(options?: PGliteOptions) constructor( dataDirOrPGliteOptions: string | PGliteOptions = {}, options: PGliteOptions = {}, ) { super() if (typeof dataDirOrPGliteOptions === 'string') { options = { dataDir: dataDirOrPGliteOptions, ...options, } } else { options = dataDirOrPGliteOptions } this.dataDir = options.dataDir // Override default parsers and serializers if requested if (options.parsers !== undefined) { this.parsers = { ...this.parsers, ...options.parsers } } if (options.serializers !== undefined) { this.serializers = { ...this.serializers, ...options.serializers } } // Enable debug logging if requested if (options?.debug !== undefined) { this.debug = options.debug } // Enable relaxed durability if requested if (options?.relaxedDurability !== undefined) { this.#relaxedDurability = options.relaxedDurability } // Save the extensions for later use this.#extensions = options.extensions ?? {} // Initialize the database, and store the promise so we can wait for it to be ready this.waitReady = this.#init(options ?? {}) } /** * Create a new PGlite instance with extensions on the Typescript interface * (The main constructor does enable extensions, however due to the limitations * of Typescript, the extensions are not available on the instance interface) * @param options PGlite options including the data directory * @returns A promise that resolves to the PGlite instance when it's ready. */ static async create( options?: O, ): Promise> /** * Create a new PGlite instance with extensions on the Typescript interface * (The main constructor does enable extensions, however due to the limitations * of Typescript, the extensions are not available on the instance interface) * @param dataDir The directory to store the database files * Prefix with idb:// to use indexeddb filesystem in the browser * Use memory:// to use in-memory filesystem * @param options PGlite options * @returns A promise that resolves to the PGlite instance when it's ready. */ static async create( dataDir?: string, options?: O, ): Promise> static async create( dataDirOrPGliteOptions?: string | PGliteOptions, options?: PGliteOptions, ): Promise> { const resolvedOpts: PGliteOptions = typeof dataDirOrPGliteOptions === 'string' ? { dataDir: dataDirOrPGliteOptions, ...(options ?? {}), } : (dataDirOrPGliteOptions ?? {}) const pg = new PGlite(resolvedOpts) await pg.waitReady return pg as any } #print(text: string): void { if (this.debug) { console.debug(text) } } #printErr(text: string): void { if (this.debug) { console.error(text) } } handleExternalCmd(cmd: string, mode: string) { if (cmd.startsWith('locale -a') && mode === 'r') { const filePath = this.mod!.stringToUTF8OnStack('/pglite/locale-a') const smode = this.mod!.stringToUTF8OnStack(mode) return this.mod!._fopen(filePath, smode) } throw new Error('Unhandled cmd') } /** * Initialize the database * @returns A promise that resolves when the database is ready */ async #init(options: PGliteOptions) { if (options.fs) { this.fs = options.fs } else { const { dataDir, fsType } = parseDataDir(options.dataDir) this.fs = await loadFs(dataDir, fsType) } const extensionBundlePromises: Record> = {} const extensionInitFns: Array<() => Promise> = [] const args = [ // "-F", // Disable fsync (TODO: Only for in-memory mode?) ...(this.debug ? ['-d', this.debug.toString()] : []), ] if (!options.wasmModule) { // Start the wasm download in the background so it's ready when we need it startWasmDownload() } // Get the fs bundle // We don't await the loading of the fs bundle at this point as we can continue // with other work. // It's resolved value `fsBundleBuffer` is set and used in `getPreloadedPackage` // which is called via `PostgresModFactory` after we have awaited // `fsBundleBufferPromise` below. const fsBundleBufferPromise = options.fsBundle ? options.fsBundle.arrayBuffer() : getFsBundle() let fsBundleBuffer: ArrayBuffer fsBundleBufferPromise.then((buffer) => { fsBundleBuffer = buffer }) let emscriptenOpts: Partial = { thisProgram: postgresExePath, WASM_PREFIX, arguments: args, noExitRuntime: true, // Provide a stdin that returns EOF to avoid browser prompt stdin: () => null, print: (text: string) => { this.#print(text) }, printErr: (text: string) => { this.#printErr(text) }, instantiateWasm: (imports, successCallback) => { instantiateWasm(imports, options.wasmModule).then( ({ instance, module }) => { // @ts-ignore wrong type in Emscripten typings successCallback(instance, module) }, ) return {} }, getPreloadedPackage: (remotePackageName, remotePackageSize) => { if (remotePackageName === 'pglite.data') { if (fsBundleBuffer.byteLength !== remotePackageSize) { throw new Error( `Invalid FS bundle size: ${fsBundleBuffer.byteLength} !== ${remotePackageSize}`, ) } return fsBundleBuffer } throw new Error(`Unknown package: ${remotePackageName}`) }, preRun: [ (mod: PostgresMod) => { mod.onRuntimeInitialized = () => { this.#onRuntimeInitialized(mod) } }, (mod: PostgresMod) => { // Register /dev/blob device // This is used to read and write blobs when used in COPY TO/FROM // e.g. COPY mytable TO '/dev/blob' WITH (FORMAT binary) // The data is returned by the query as a `blob` property in the results const devId = mod.FS.makedev(64, 0) const devOpt = { open: (_stream: any) => {}, close: (_stream: any) => {}, read: ( _stream: any, buffer: Uint8Array, offset: number, length: number, position: number, ) => { const buf = this.#queryReadBuffer if (!buf) { throw new Error( 'No /dev/blob File or Blob provided to read from', ) } const contents = new Uint8Array(buf) if (position >= contents.length) return 0 const size = Math.min(contents.length - position, length) for (let i = 0; i < size; i++) { buffer[offset + i] = contents[position + i] } return size }, write: ( _stream: any, buffer: Uint8Array, offset: number, length: number, _position: number, ) => { this.#queryWriteChunks ??= [] this.#queryWriteChunks.push(buffer.slice(offset, offset + length)) return length }, llseek: (stream: any, offset: number, whence: number) => { const buf = this.#queryReadBuffer if (!buf) { throw new Error('No /dev/blob File or Blob provided to llseek') } let position = offset if (whence === 1) { position += stream.position } else if (whence === 2) { position = new Uint8Array(buf).length } if (position < 0) { throw new mod.FS.ErrnoError(28) } return position }, } mod.FS.registerDevice(devId, devOpt) mod.FS.mkdev('/dev/blob', devId) }, (mod: PostgresMod) => { mod.FS.chmod('/home/web_user/.pgpass', 0o0600) // https://www.postgresql.org/docs/current/libpq-pgpass.html mod.FS.chmod(initdbExePath, 0o0555) mod.FS.chmod(postgresExePath, 0o0555) }, (mod: PostgresMod) => { mod.ENV.PGDATA = PGDATA mod.ENV.PGUSER = options.username ?? 'postgres' mod.ENV.PGDATABASE = options.database ?? 'postgres' mod.ENV.LC_CTYPE = 'en_US.UTF-8' mod.ENV.TZ = 'UTC' mod.ENV.PGTZ = 'UTC' mod.ENV.PGCLIENTENCODING = 'UTF8' // some extensions might need their own ENV variables for (const [extName] of Object.entries(this.#extensions)) { if (extName === 'postgis') { mod.ENV.PROJ_DATA = `${WASM_PREFIX}/share/proj` } } }, ], } const { emscriptenOpts: amendedEmscriptenOpts } = await this.fs!.init( this, emscriptenOpts, ) emscriptenOpts = amendedEmscriptenOpts // # Setup extensions // This is the first step of loading PGlite extensions // We loop through each extension and call the setup function // This amends the emscriptenOpts and can return: // - emscriptenOpts: The updated emscripten options // - namespaceObj: The namespace object to attach to the PGlite instance // - init: A function to initialize the extension/plugin after the database is ready // - close: A function to close/tidy-up the extension/plugin when the database is closed for (const [extName, ext] of Object.entries(this.#extensions)) { if (ext instanceof URL) { // Extension with only a URL to a bundle extensionBundlePromises[extName] = loadExtensionBundle(ext) } else { // Extension with JS setup function const extRet = await ext.setup(this, emscriptenOpts) if (extRet.emscriptenOpts) { emscriptenOpts = extRet.emscriptenOpts } if (extRet.namespaceObj) { const instance = this as any instance[extName] = extRet.namespaceObj } if (extRet.bundlePath) { extensionBundlePromises[extName] = loadExtensionBundle( extRet.bundlePath, ) // Don't await here, this is parallel } if (extRet.init) { extensionInitFns.push(extRet.init) } if (extRet.close) { this.#extensionsClose.push(extRet.close) } } } emscriptenOpts['pg_extensions'] = extensionBundlePromises // Await the fs bundle - we do this just before calling PostgresModFactory // as it needs the fs bundle to be ready. await fsBundleBufferPromise // Load the database engine this.mod = await PostgresModFactory(emscriptenOpts) // Sync the filesystem from any previous store await this.fs!.initialSyncFs() if (!options.noInitDb) { // If the user has provided a tarball to load the database from, do that now. // We do this after the initial sync so that we can throw if the database // already exists. if (options.loadDataDir) { if (this.mod.FS.analyzePath(PGDATA + '/PG_VERSION').exists) { throw new Error('Database already exists, cannot load from tarball') } this.#log('pglite: loading data from tarball') await loadTar(this.mod.FS, options.loadDataDir, PGDATA) } else { // Check if the database exists in the file system, if not we run initdb if (this.mod.FS.analyzePath(PGDATA + '/PG_VERSION').exists) { this.#log('pglite: found DB, resuming') } else { this.#log('pglite: no db in filesystem, running initdb') const pgInitDbOpts = { ...options } pgInitDbOpts.noInitDb = true pgInitDbOpts.dataDir = undefined pgInitDbOpts.extensions = undefined pgInitDbOpts.loadDataDir = undefined const pg_initDb = await PGlite.create(pgInitDbOpts) // Initialize the database const initdbResult = await initdb({ pg: pg_initDb, debug: options.debug, }) if (initdbResult.exitCode !== 0) { if (!initdbResult.stderr.includes('exists but is not empty')) { throw new Error( 'INITDB failed to initialize: ' + initdbResult.stderr, ) } } const pgdatatar = await pg_initDb.dumpDataDir('none') pg_initDb.close() await loadTar(this.mod.FS, pgdatatar, PGDATA) // Sync any changes back to the persisted store (if there is one) // TODO: only sync here if initdb did init db. await this.syncToFs() } } // Start compiling dynamic extensions present in FS. await loadExtensions(this.mod, (...args) => this.#log(...args)) this.mod!._pgl_setPGliteActive(1) this.#startInSingleMode({ pgDataFolder: PGDATA, startParams: [ ...(options.startParams || PGlite.defaultStartParams), ...(this.debug ? ['-d', this.debug.toString()] : []), ], }) this.#setPGliteActive() this.#ready = true if (options.username) { await this.exec(`SET ROLE ${options.username};`) } // Init array types await this._initArrayTypes() // Init extensions for (const initFn of extensionInitFns) { await initFn() } } } #onRuntimeInitialized(mod: PostgresMod) { // default $HOME in emscripten is /home/web_user // we override system() to intercept any calls that might generate unexpected output this.#system_fn = mod.addFunction((cmd_ptr: number) => { this.#log( `Postgres tried to execute ${mod.UTF8ToString(cmd_ptr)}, returning 1.`, ) return 1 }, 'pi') mod._pgl_set_system_fn(this.#system_fn) this.#popen_fn = mod.addFunction((cmd_ptr: number, mode: number) => { const smode = mod.UTF8ToString(mode) const args = mod.UTF8ToString(cmd_ptr) this.externalCommandStreamFd = this.handleExternalCmd(args, smode) return this.externalCommandStreamFd! }, 'ppp') mod._pgl_set_popen_fn(this.#popen_fn) this.#pclose_fn = mod.addFunction((stream: number) => { if (stream === this.externalCommandStreamFd) { this.mod!._fclose(this.externalCommandStreamFd!) this.externalCommandStreamFd = null } else { throw `Unhandled pclose ${stream}` } this.#log('pclose_fn', stream) }, 'pi') mod._pgl_set_pclose_fn(this.#pclose_fn) // set the write callback this.#pglite_socket_write = mod.addFunction((ptr: any, length: number) => { let bytes try { bytes = this.mod!.HEAPU8.subarray(ptr, ptr + length) } catch (e: any) { console.error('error', e) throw e } this.#protocolParser.parse(bytes, (msg) => { const parsedMsg = this.#parse(msg) if (parsedMsg) { this.#currentResults.push(parsedMsg) } }) if (this.#keepRawResponse) { const copied = bytes.slice() if (this.#currentOnRawData) { try { this.#currentOnRawData(copied) } catch (e) { // swallow this.#log('Error in onRawData() callback', e) } } else { let requiredSize = this.#writeOffset + copied.length if (requiredSize > this.#inputData.length) { const newSize = this.#inputData.length + (this.#inputData.length >> 1) + requiredSize if (requiredSize > PGlite.MAX_BUFFER_SIZE) { requiredSize = PGlite.MAX_BUFFER_SIZE } const newBuffer = new Uint8Array(newSize) newBuffer.set(this.#inputData.subarray(0, this.#writeOffset)) this.#inputData = newBuffer } this.#inputData.set(copied, this.#writeOffset) this.#writeOffset += copied.length } } return length }, 'iii') // set the read callback this.#pglite_socket_read = mod.addFunction( (ptr: any, max_length: number) => { // copy current data to wasm buffer let length = this.#outputData.length - this.#readOffset if (length > max_length) { length = max_length } this.mod!.HEAP8.set( (this.#outputData as Uint8Array).subarray( this.#readOffset, this.#readOffset + length, ), ptr, ) this.#readOffset += length return length }, 'iii', ) mod._pgl_set_rw_cbs(this.#pglite_socket_read, this.#pglite_socket_write) } /** * The Postgres Emscripten Module */ get Module() { return this.mod! } /** * The ready state of the database */ get ready() { return this.#ready && !this.#closing && !this.#closed } /** * The closed state of the database */ get closed() { return this.#closed } /** * Close the database * @returns A promise that resolves when the database is closed */ async close() { await this._checkReady() this.#closing = true // Close all extensions for (const closeFn of this.#extensionsClose) { await closeFn() } // Close the database try { this.mod!._pgl_setPGliteActive(0) await this.execProtocol(serialize.end()) this.mod!._pgl_run_atexit_funcs() } catch (e: any) { const err = e as { name: string; status: number } if (err.name === 'ExitStatus' && err.status === 0) { // Database closed successfully // An earlier build of PGlite would throw an error here when closing // leaving this here for now. I believe it was a bug in Emscripten. } else { this.#log(`An error occured while closing the db`, e.toString()) } } finally { this.mod!.removeFunction(this.#pglite_socket_read) this.mod!.removeFunction(this.#pglite_socket_write) } // Close the filesystem await this.fs!.closeFs() this.#closed = true this.#closing = false this.#ready = false this.#running = false try { // exit the runtime. since we're using `noExitRuntime: true` on our module, // we need to do this explicitly this.mod!._emscripten_force_exit(/* exit code */ 0) } catch (e: any) { this.#log(e) if (e.status !== 0) { this.#log('Error when exiting', e.toString()) } } } /** * Close the database when the object exits scope * Stage 3 ECMAScript Explicit Resource Management * https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-2.html#using-declarations-and-explicit-resource-management */ async [Symbol.asyncDispose]() { await this.close() } /** * Handle a file attached to the current query * @param file The file to handle */ async _handleBlob(blob?: File | Blob) { this.#queryReadBuffer = blob ? await blob.arrayBuffer() : undefined } /** * Cleanup the current file */ async _cleanupBlob() { this.#queryReadBuffer = undefined } /** * Get the written blob from the current query * @returns The written blob */ async _getWrittenBlob(): Promise { if (!this.#queryWriteChunks) { return undefined } const blob = new Blob(this.#queryWriteChunks) this.#queryWriteChunks = undefined return blob } /** * Wait for the database to be ready */ async _checkReady() { if (this.#closing) { throw new Error('PGlite is closing') } if (this.#closed) { throw new Error('PGlite is closed') } if (!this.#ready) { // Starting the database can take a while and it might not be ready yet // We'll wait for it to be ready before continuing await this.waitReady } } /** * Execute a postgres wire protocol synchronously * @param message The postgres wire protocol message to execute * @returns The direct message data response produced by Postgres */ execProtocolRawSync(message: Uint8Array) { const mod = this.mod! this.#readOffset = 0 this.#writeOffset = 0 this.#outputData = message if ( this.#keepRawResponse && this.#inputData.length !== PGlite.DEFAULT_RECV_BUF_SIZE ) { // the previous call might have increased the size of the buffer so reset it to its default this.#inputData = new Uint8Array(PGlite.DEFAULT_RECV_BUF_SIZE) } if (message[0] === 'X'.charCodeAt(0)) { // ignore exit return new Uint8Array(0) } if (message[0] === 0) { // startup pass const result = this.#processStartupPacket(message) return result } // execute the message try { // a single message might contain multiple batched queries // postgresMainLoopOnce returns after each one while ( this.#readOffset < message.length || mod._pq_buffer_remaining_data() > 0 ) { try { mod._PostgresMainLoopOnce() } catch (e: any) { // we catch here only the "known" exceptions if (e.status === this.POSTGRES_MAIN_LONGJMP) { // this is the siglongjmp call that a Database exception has occured // the original Postgres code makes a longjmp into main, handles the exception, // then re-enters the processing loop // to keep original code changes to a minimum, we extract the exception handling to a separate function // that we call whenever the exception longjmp is executed // like this we also just need to setjmp only once, in a similar fashion to the original code. mod._PostgresMainLongJmp() } // even if there is an exception caused by one of the batched queries, // we need to continue processing the rest without throwing. // the first error will be saved in this.#currentDatabaseError // and returned to the caller for handling } } } finally { mod._PostgresSendReadyForQueryIfNecessary() mod._pgl_pq_flush() } this.#outputData = [] if (this.#keepRawResponse && this.#writeOffset) { // reusing the buffer might lead to unexpected behavior if a previous query has a view into the buffer // therefore, better return a copy of the response return new Uint8Array(this.#inputData.subarray(0, this.#writeOffset)) } return new Uint8Array(0) } /** * Execute a postgres wire protocol message directly without wrapping the response. * Only use if `execProtocol()` doesn't suite your needs. * * **Warning:** This bypasses PGlite's protocol wrappers that manage error/notice messages, * transactions, and notification listeners. Only use if you need to bypass these wrappers and * don't intend to use the above features. * * @param message The postgres wire protocol message to execute * @returns The direct message data response produced by Postgres */ async execProtocolRaw( message: Uint8Array, { syncToFs = true }: ExecProtocolOptions = {}, ) { const data = this.execProtocolRawSync(message) if (syncToFs) { await this.syncToFs() } return data } /** * Execute a postgres wire protocol message directly without wrapping the response. * Only use if `execProtocol()` doesn't suite your needs. * * **Warning:** This bypasses PGlite's protocol wrappers that manage error/notice messages, * transactions, and notification listeners. Only use if you need to bypass these wrappers and * don't intend to use the above features. * * @param message The postgres wire protocol message to execute * @param options.onRawData Callback to receive results as streaming data */ async execProtocolRawStream( message: Uint8Array, { syncToFs = true, onRawData }: ExecProtocolOptionsStream, ) { this.#currentOnRawData = onRawData this.execProtocolRawSync(message) if (syncToFs) { await this.syncToFs() } } /** * Execute a postgres wire protocol message * @param message The postgres wire protocol message to execute * @returns The result of the query */ async execProtocol( message: Uint8Array, { syncToFs = true, throwOnError = true, onNotice, }: ExecProtocolOptions = {}, ): Promise { this.#currentThrowOnError = throwOnError this.#currentOnNotice = onNotice this.#currentResults = [] this.#currentDatabaseError = null const data = await this.execProtocolRaw(message, { syncToFs }) const databaseError = this.#currentDatabaseError this.#currentThrowOnError = false this.#currentOnNotice = undefined this.#currentDatabaseError = null const result = { messages: this.#currentResults, data } this.#currentResults = [] if (throwOnError && databaseError) { this.#protocolParser = new ProtocolParser() // Reset the parser throw databaseError } return result } /** * Execute a postgres wire protocol message * @param message The postgres wire protocol message to execute * @returns The parsed results of the query */ async execProtocolStream( message: Uint8Array, { syncToFs, throwOnError = true, onNotice }: ExecProtocolOptions = {}, ): Promise { this.#currentThrowOnError = throwOnError this.#currentOnNotice = onNotice this.#currentResults = [] this.#currentDatabaseError = null this.#keepRawResponse = false await this.execProtocolRaw(message, { syncToFs }) this.#keepRawResponse = true const databaseError = this.#currentDatabaseError this.#currentThrowOnError = false this.#currentOnNotice = undefined this.#currentDatabaseError = null const result = this.#currentResults this.#currentResults = [] if (throwOnError && databaseError) { this.#protocolParser = new ProtocolParser() // Reset the parser throw databaseError } return result } #parse(msg: BackendMessage) { // keep the existing logic of throwing the first db exception // as soon as there is a db error, we're not interested in the remaining data // but since the parser is plugged into the pglite_socket_write callback, we can't just throw // and need to ack the messages received from the db if (!this.#currentDatabaseError) { if (msg instanceof DatabaseError) { if (this.#currentThrowOnError) { this.#currentDatabaseError = msg } // TODO: Do we want to wrap the error in a custom error? } else if (msg instanceof NoticeMessage) { if (this.debug > 0) { // Notice messages are warnings, we should log them console.warn(msg) } if (this.#currentOnNotice) { this.#currentOnNotice(msg) } } else if (msg instanceof NotificationResponseMessage) { // We've received a notification, call the listeners const listeners = this.#notifyListeners.get(msg.channel) if (listeners) { listeners.forEach((cb) => { // We use queueMicrotask so that the callback is called after any // synchronous code has finished running. queueMicrotask(() => cb(msg.payload)) }) } this.#globalNotifyListeners.forEach((cb) => { queueMicrotask(() => cb(msg.channel, msg.payload)) }) } return msg } return null } /** * Check if the database is in a transaction * @returns True if the database is in a transaction, false otherwise */ isInTransaction() { const result = this.mod!._IsTransactionBlock() return result !== 0 } /** * Perform any sync operations implemented by the filesystem, this is * run after every query to ensure that the filesystem is synced. */ async syncToFs() { if (this.#fsSyncScheduled) { return } this.#fsSyncScheduled = true const doSync = async () => { await this.#fsSyncMutex.runExclusive(async () => { this.#fsSyncScheduled = false await this.fs!.syncToFs(this.#relaxedDurability) }) } if (this.#relaxedDurability) { doSync() } else { await doSync() } } /** * Internal log function */ #log(...args: any[]) { if (this.debug > 0) { console.log(...args) } } /** * Listen for a notification * @param channel The channel to listen on * @param callback The callback to call when a notification is received */ async listen( channel: string, callback: (payload: string) => void, tx?: Transaction, ) { return this._runExclusiveListen(() => this.#listen(channel, callback, tx)) } async #listen( channel: string, callback: (payload: string) => void, tx?: Transaction, ) { const pgChannel = toPostgresName(channel) const pg = tx ?? this if (!this.#notifyListeners.has(pgChannel)) { this.#notifyListeners.set(pgChannel, new Set()) } this.#notifyListeners.get(pgChannel)!.add(callback) try { await pg.exec(`LISTEN ${channel}`) } catch (e) { this.#notifyListeners.get(pgChannel)!.delete(callback) if (this.#notifyListeners.get(pgChannel)?.size === 0) { this.#notifyListeners.delete(pgChannel) } throw e } return async (tx?: Transaction) => { await this.unlisten(pgChannel, callback, tx) } } /** * Stop listening for a notification * @param channel The channel to stop listening on * @param callback The callback to remove */ async unlisten( channel: string, callback?: (payload: string) => void, tx?: Transaction, ) { return this._runExclusiveListen(() => this.#unlisten(channel, callback, tx)) } async #unlisten( channel: string, callback?: (payload: string) => void, tx?: Transaction, ) { const pgChannel = toPostgresName(channel) const pg = tx ?? this const cleanUp = async () => { await pg.exec(`UNLISTEN ${channel}`) // While that query was running, another query might have subscribed // so we need to check again if (this.#notifyListeners.get(pgChannel)?.size === 0) { this.#notifyListeners.delete(pgChannel) } } if (callback) { this.#notifyListeners.get(pgChannel)?.delete(callback) if (this.#notifyListeners.get(pgChannel)?.size === 0) { await cleanUp() } } else { await cleanUp() } } /** * Listen to notifications * @param callback The callback to call when a notification is received */ onNotification( callback: (channel: string, payload: string) => void, ): () => void { this.#globalNotifyListeners.add(callback) return () => { this.#globalNotifyListeners.delete(callback) } } /** * Stop listening to notifications * @param callback The callback to remove */ offNotification(callback: (channel: string, payload: string) => void) { this.#globalNotifyListeners.delete(callback) } /** * Dump the PGDATA dir from the filesystem to a gzipped tarball. * @param compression The compression options to use - 'gzip', 'auto', 'none' * @returns The tarball as a File object where available, and fallback to a Blob */ async dumpDataDir( compression?: DumpTarCompressionOptions, ): Promise { await this._checkReady() const dbname = this.dataDir?.split('/').pop() ?? 'pgdata' return this.fs!.dumpTar(dbname, compression) } /** * Run a function in a mutex that's exclusive to queries * @param fn The query to run * @returns The result of the query */ _runExclusiveQuery(fn: () => Promise): Promise { return this.#queryMutex.runExclusive(fn) } /** * Run a function in a mutex that's exclusive to transactions * @param fn The function to run * @returns The result of the function */ _runExclusiveTransaction(fn: () => Promise): Promise { const x = this.#transactionMutex.runExclusive(fn) return x } async clone(): Promise { const dump = await this.dumpDataDir('none') return PGlite.create({ loadDataDir: dump, extensions: this.#extensions }) } _runExclusiveListen(fn: () => Promise): Promise { return this.#listenMutex.runExclusive(fn) } callMain(args: string[]): number { return this.mod!.callMain(args) } #setPGliteActive(): void { if (this.#running) { throw new Error('PGlite single mode already running') } this.mod!._pgl_startPGlite() this.#running = true } #startInSingleMode(opts: { pgDataFolder: string startParams: string[] }): void { const singleModeArgs = [ ...opts.startParams, '-D', opts.pgDataFolder, this.mod!.ENV.PGDATABASE, ] const result = this.mod!.callMain(singleModeArgs) if (result !== 99) { throw new Error('PGlite failed to initialize properly') } } #processStartupPacket(message: Uint8Array): Uint8Array { this.#readOffset = 0 this.#writeOffset = 0 this.#outputData = message const myProcPort = this.mod!._pgl_getMyProcPort() const result = this.mod!._ProcessStartupPacket(myProcPort, true, true) if (result !== 0) { throw new Error(`Cannot process startup packet + ${message.toString()}`) } this.mod!._pgl_sendConnData() this.mod!._pgl_pq_flush() this.#outputData = [] if (this.#writeOffset) return this.#inputData.subarray(0, this.#writeOffset) return new Uint8Array(0) } } ================================================ FILE: packages/pglite/src/pgtap/index.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, emscriptenOpts: any) => { return { emscriptenOpts, bundlePath: new URL('../../release/pgtap.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const pgtap = { name: 'pgtap', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/polyfills/blank.ts ================================================ // Used in tsup.config.ts to replace the `assert` module with a blank file. ================================================ FILE: packages/pglite/src/polyfills/indirectEval.ts ================================================ const indirectEval = (globalThis || window).eval export { indirectEval as eval } ================================================ FILE: packages/pglite/src/postgresMod.ts ================================================ import PostgresModFactory from '../release/pglite' type IDBFS = Emscripten.FileSystemType & { quit: () => void dbs: Record } export type FS = typeof FS & { filesystems: { MEMFS: Emscripten.FileSystemType NODEFS: Emscripten.FileSystemType IDBFS: IDBFS } quit: () => void } export interface PostgresMod extends Omit { preInit: Array<{ (mod: PostgresMod): void }> preRun: Array<{ (mod: PostgresMod): void }> postRun: Array<{ (mod: PostgresMod): void }> thisProgram: string stdin: (() => number | null) | null FS: FS PROXYFS: Emscripten.FileSystemType WASM_PREFIX: string pg_extensions: Record> UTF8ToString: (ptr: number, maxBytesToRead?: number) => string stringToUTF8OnStack: (s: string) => number _pgl_set_system_fn: (system_fn: number) => void _pgl_set_popen_fn: (popen_fn: number) => void _pgl_set_pclose_fn: (pclose_fn: number) => void _pgl_set_rw_cbs: (read_cb: number, write_cb: number) => void _pgl_set_pipe_fn: (pipe_fn: number) => number _pgl_freopen: (filepath: number, mode: number, stream: number) => number _pgl_pq_flush: () => void _fopen: (path: number, mode: number) => number _fclose: (stream: number) => number _fflush: (stream: number) => void _pgl_proc_exit: (code: number) => number addFunction: ( cb: (ptr: any, length: number) => void, signature: string, ) => number removeFunction: (f: number) => void callMain: (args?: string[]) => number _PostgresMainLoopOnce: () => void _PostgresMainLongJmp: () => void _PostgresSendReadyForQueryIfNecessary: () => void _ProcessStartupPacket: ( Port: number, ssl_done: boolean, gss_done: boolean, ) => number // althought the C function returns bool, we receive in JS a number _IsTransactionBlock: () => number _pgl_setPGliteActive: (newValue: number) => number _pgl_startPGlite: () => void _pgl_getMyProcPort: () => number _pgl_sendConnData: () => void ENV: any _emscripten_force_exit: (status: number) => void _pgl_run_atexit_funcs: () => void _pq_buffer_remaining_data: () => number } type PostgresFactory = ( moduleOverrides?: Partial, ) => Promise export default PostgresModFactory as PostgresFactory ================================================ FILE: packages/pglite/src/templating.ts ================================================ const TemplateType = { part: 'part', container: 'container', } as const interface TemplatePart { _templateType: typeof TemplateType.part str: string } interface TemplateContainer { _templateType: typeof TemplateType.container strings: TemplateStringsArray values: any[] } interface TemplatedQuery { query: string params: any[] } function addToLastAndPushWithSuffix( arr: string[], suffix: string, ...values: string[] ) { const lastArrIdx = arr.length - 1 const lastValIdx = values.length - 1 // no-op if (lastValIdx === -1) return // overwrite last element if (lastValIdx === 0) { arr[lastArrIdx] = arr[lastArrIdx] + values[0] + suffix return } // sandwich values between array and suffix arr[lastArrIdx] = arr[lastArrIdx] + values[0] arr.push(...values.slice(1, lastValIdx)) arr.push(values[lastValIdx] + suffix) } /** * Templating utility that allows nesting multiple SQL strings without * losing the automatic parametrization capabilities of {@link query}. * * @example * ```ts * query`SELECT * FROM tale ${withFilter ? sql`WHERE foo = ${fooVar}` : sql``}` * // > { query: 'SELECT * FROM tale WHERE foo = $1', params: [fooVar] } * // or * // > { query: 'SELECT * FROM tale', params: [] } * ``` */ export function sql( strings: TemplateStringsArray, ...values: any[] ): TemplateContainer { const parsedStrings = [strings[0]] as string[] & { raw: string[] } parsedStrings.raw = [strings.raw[0]] const parsedValues: any[] = [] for (let i = 0; i < values.length; i++) { const value = values[i] const nextStringIdx = i + 1 // if value is a template tag, collapse into last string if (value?._templateType === TemplateType.part) { addToLastAndPushWithSuffix( parsedStrings, strings[nextStringIdx], value.str, ) addToLastAndPushWithSuffix( parsedStrings.raw, strings.raw[nextStringIdx], value.str, ) continue } // if value is an output of this method, append in place if (value?._templateType === TemplateType.container) { addToLastAndPushWithSuffix( parsedStrings, strings[nextStringIdx], ...value.strings, ) addToLastAndPushWithSuffix( parsedStrings.raw, strings.raw[nextStringIdx], ...value.strings.raw, ) parsedValues.push(...value.values) continue } // otherwise keep reconstructing parsedStrings.push(strings[nextStringIdx]) parsedStrings.raw.push(strings.raw[nextStringIdx]) parsedValues.push(value) } return { _templateType: 'container', strings: parsedStrings, values: parsedValues, } } /** * Allows adding identifiers into a query template string without * parametrizing them. This method will automatically escape identifiers. * * @example * ```ts * query`SELECT * FROM ${identifier`foo`} WHERE ${identifier`id`} = ${id}` * // > { query: 'SELECT * FROM "foo" WHERE "id" = $1', params: [id] } * ``` */ export function identifier( strings: TemplateStringsArray, ...values: any[] ): TemplatePart { return { _templateType: 'part', str: `"${String.raw(strings, ...values)}"`, } } /** * Allows adding raw strings into a query template string without * parametrizing or modifying them in any way. * * @example * ```ts * query`SELECT * FROM foo ${raw`WHERE id = ${2+3}`}` * // > { query: 'SELECT * FROM foo WHERE id = 5', params: [] } * ``` */ export function raw( strings: TemplateStringsArray, ...values: any[] ): TemplatePart { return { _templateType: 'part', str: String.raw(strings, ...values), } } /** * Generates a parametrized query from a templated query string, assigning * the provided values to the appropriate named parameters. * * You can use templating helpers like {@link identifier} and {@link raw} to * add identifiers and raw strings to the query without making them parameters, * and you can use {@link sql} to nest multiple queries and create utilities. * * @example * ```ts * query`SELECT * FROM ${identifier`foo`} WHERE id = ${id} and name = ${name}` * // > { query: 'SELECT * FROM "foo" WHERE id = $1 and name = $2', params: [id, name] } * ``` */ export function query( strings: TemplateStringsArray, ...values: any[] ): TemplatedQuery { const { strings: queryStringParts, values: params } = sql(strings, ...values) return { query: [ queryStringParts[0], ...params.flatMap((_, idx) => [`$${idx + 1}`, queryStringParts[idx + 1]]), ].join(''), params: params, } } ================================================ FILE: packages/pglite/src/types.ts ================================================ /* Based on postgres.js types.js https://github.com/porsager/postgres/blob/master/src/types.js Published under the Unlicense: https://github.com/porsager/postgres/blob/master/UNLICENSE */ import type { ParserOptions } from './interface.js' const JSON_parse = globalThis.JSON.parse const JSON_stringify = globalThis.JSON.stringify export const BOOL = 16, BYTEA = 17, CHAR = 18, INT8 = 20, INT2 = 21, INT4 = 23, REGPROC = 24, TEXT = 25, OID = 26, TID = 27, XID = 28, CID = 29, JSON = 114, XML = 142, PG_NODE_TREE = 194, SMGR = 210, PATH = 602, POLYGON = 604, CIDR = 650, FLOAT4 = 700, FLOAT8 = 701, ABSTIME = 702, RELTIME = 703, TINTERVAL = 704, CIRCLE = 718, MACADDR8 = 774, MONEY = 790, MACADDR = 829, INET = 869, ACLITEM = 1033, BPCHAR = 1042, VARCHAR = 1043, DATE = 1082, TIME = 1083, TIMESTAMP = 1114, TIMESTAMPTZ = 1184, INTERVAL = 1186, TIMETZ = 1266, BIT = 1560, VARBIT = 1562, NUMERIC = 1700, REFCURSOR = 1790, REGPROCEDURE = 2202, REGOPER = 2203, REGOPERATOR = 2204, REGCLASS = 2205, REGTYPE = 2206, UUID = 2950, TXID_SNAPSHOT = 2970, PG_LSN = 3220, PG_NDISTINCT = 3361, PG_DEPENDENCIES = 3402, TSVECTOR = 3614, TSQUERY = 3615, GTSVECTOR = 3642, REGCONFIG = 3734, REGDICTIONARY = 3769, JSONB = 3802, REGNAMESPACE = 4089, REGROLE = 4096 export const types = { string: { to: TEXT, from: [TEXT, VARCHAR, BPCHAR], serialize: (x: string | number) => { if (typeof x === 'string') { return x } else if (typeof x === 'number') { return x.toString() } else { throw new Error('Invalid input for string type') } }, parse: (x: string) => x, }, number: { to: 0, from: [INT2, INT4, OID, FLOAT4, FLOAT8], serialize: (x: number) => x.toString(), parse: (x: string) => +x, }, bigint: { to: INT8, from: [INT8], serialize: (x: bigint) => x.toString(), parse: (x: string) => { const n = BigInt(x) if (n < Number.MIN_SAFE_INTEGER || n > Number.MAX_SAFE_INTEGER) { return n // return BigInt } else { return Number(n) // in range of standard JS numbers so return number } }, }, json: { to: JSON, from: [JSON, JSONB], serialize: (x: any) => { if (typeof x === 'string') { return x } else { return JSON_stringify(x) } }, parse: (x: string) => JSON_parse(x), }, boolean: { to: BOOL, from: [BOOL], serialize: (x: boolean) => { if (typeof x !== 'boolean') { throw new Error('Invalid input for boolean type') } return x ? 't' : 'f' }, parse: (x: string) => x === 't', }, date: { to: TIMESTAMPTZ, from: [DATE, TIMESTAMP, TIMESTAMPTZ], serialize: (x: Date | string | number) => { if (typeof x === 'string') { return x } else if (typeof x === 'number') { return new Date(x).toISOString() } else if (x instanceof Date) { return x.toISOString() } else { throw new Error('Invalid input for date type') } }, parse: (x: string | number) => new Date(x), }, bytea: { to: BYTEA, from: [BYTEA], serialize: (x: Uint8Array) => { if (!(x instanceof Uint8Array)) { throw new Error('Invalid input for bytea type') } return ( '\\x' + Array.from(x) .map((byte) => byte.toString(16).padStart(2, '0')) .join('') ) }, parse: (x: string): Uint8Array => { const hexString = x.slice(2) return Uint8Array.from({ length: hexString.length / 2 }, (_, idx) => parseInt(hexString.substring(idx * 2, (idx + 1) * 2), 16), ) }, }, } satisfies TypeHandlers export type Parser = (x: string, typeId?: number) => any export type Serializer = (x: any) => string export type TypeHandler = { to: number from: number | number[] serialize: Serializer parse: Parser } export type TypeHandlers = { [key: string]: TypeHandler } const defaultHandlers = typeHandlers(types) export const parsers = defaultHandlers.parsers export const serializers = defaultHandlers.serializers export function parseType( x: string | null, type: number, parsers?: ParserOptions, ): any { if (x === null) { return null } const handler = parsers?.[type] ?? defaultHandlers.parsers[type] if (handler) { return handler(x, type) } else { return x } } function typeHandlers(types: TypeHandlers) { return Object.keys(types).reduce( ({ parsers, serializers }, k) => { const { to, from, serialize, parse } = types[k] serializers[to] = serialize serializers[k] = serialize parsers[k] = parse if (Array.isArray(from)) { from.forEach((f) => { parsers[f] = parse serializers[f] = serialize }) } else { parsers[from] = parse serializers[from] = serialize } return { parsers, serializers } }, { parsers: {} as { [key: number | string]: (x: string, typeId?: number) => any }, serializers: {} as { [key: number | string]: Serializer }, }, ) } const escapeBackslash = /\\/g const escapeQuote = /"/g function arrayEscape(x: string) { return x.replace(escapeBackslash, '\\\\').replace(escapeQuote, '\\"') } export function arraySerializer( xs: any, serializer: Serializer | undefined, typarray: number, ): string { if (Array.isArray(xs) === false) return xs if (!xs.length) return '{}' const first = xs[0] // Only _box (1020) has the ';' delimiter for arrays, all other types use the ',' delimiter const delimiter = typarray === 1020 ? ';' : ',' if (Array.isArray(first)) { return `{${xs.map((x) => arraySerializer(x, serializer, typarray)).join(delimiter)}}` } else { return `{${xs .map((x) => { if (x === undefined) { x = null // TODO: Add an option to specify how to handle undefined values } return x === null ? 'null' : '"' + arrayEscape(serializer ? serializer(x) : x.toString()) + '"' }) .join(delimiter)}}` } } const arrayParserState = { i: 0, char: null as string | null, str: '', quoted: false, last: 0, p: null as string | null, } export function arrayParser(x: string, parser: Parser, typarray: number) { arrayParserState.i = arrayParserState.last = 0 return arrayParserLoop(arrayParserState, x, parser, typarray)[0] } function arrayParserLoop( s: typeof arrayParserState, x: string, parser: Parser | undefined, typarray: number, ): any[] { const xs = [] // Only _box (1020) has the ';' delimiter for arrays, all other types use the ',' delimiter const delimiter = typarray === 1020 ? ';' : ',' for (; s.i < x.length; s.i++) { s.char = x[s.i] if (s.quoted) { if (s.char === '\\') { s.str += x[++s.i] } else if (s.char === '"') { xs.push(parser ? parser(s.str) : s.str) s.str = '' s.quoted = x[s.i + 1] === '"' s.last = s.i + 2 } else { s.str += s.char } } else if (s.char === '"') { s.quoted = true } else if (s.char === '{') { s.last = ++s.i xs.push(arrayParserLoop(s, x, parser, typarray)) } else if (s.char === '}') { s.quoted = false s.last < s.i && xs.push(parser ? parser(x.slice(s.last, s.i)) : x.slice(s.last, s.i)) s.last = s.i + 1 break } else if (s.char === delimiter && s.p !== '}' && s.p !== '"') { xs.push(parser ? parser(x.slice(s.last, s.i)) : x.slice(s.last, s.i)) s.last = s.i + 1 } s.p = s.char } s.last < s.i && xs.push( parser ? parser(x.slice(s.last, s.i + 1)) : x.slice(s.last, s.i + 1), ) return xs } ================================================ FILE: packages/pglite/src/utils.ts ================================================ import type { PGliteInterface, Transaction } from './interface.js' import { serialize as serializeProtocol } from '@electric-sql/pg-protocol' import { parseDescribeStatementResults } from './parse.js' import { TEXT } from './types.js' export const IN_NODE = typeof process === 'object' && typeof process.versions === 'object' && typeof process.versions.node === 'string' let wasmDownloadPromise: Promise | undefined export async function startWasmDownload() { if (IN_NODE || wasmDownloadPromise) { return } const moduleUrl = new URL('../release/pglite.wasm', import.meta.url) wasmDownloadPromise = fetch(moduleUrl) } // This is a global cache of the PGlite Wasm module to avoid having to re-download or // compile it on subsequent calls. let cachedWasmModule: WebAssembly.Module | undefined export async function instantiateWasm( imports: WebAssembly.Imports, module?: WebAssembly.Module, ): Promise<{ instance: WebAssembly.Instance module: WebAssembly.Module }> { if (module || cachedWasmModule) { return { instance: await WebAssembly.instantiate( module || cachedWasmModule!, imports, ), module: module || cachedWasmModule!, } } const moduleUrl = new URL('../release/pglite.wasm', import.meta.url) if (IN_NODE) { const fs = await import('fs/promises') const buffer = await fs.readFile(moduleUrl) const { module: newModule, instance } = await WebAssembly.instantiate( buffer, imports, ) cachedWasmModule = newModule return { instance, module: newModule, } } else { if (!wasmDownloadPromise) { wasmDownloadPromise = fetch(moduleUrl) } const response = await wasmDownloadPromise const { module: newModule, instance } = await WebAssembly.instantiateStreaming(response, imports) cachedWasmModule = newModule return { instance, module: newModule, } } } export async function getFsBundle(): Promise { const fsBundleUrl = new URL('../release/pglite.data', import.meta.url) if (IN_NODE) { const fs = await import('fs/promises') const fileData = await fs.readFile(fsBundleUrl) return fileData.buffer } else { const response = await fetch(fsBundleUrl) return response.arrayBuffer() } } export const uuid = (): string => { // best case, `crypto.randomUUID` is available if (globalThis.crypto?.randomUUID) { return globalThis.crypto.randomUUID() } const bytes = new Uint8Array(16) if (globalThis.crypto?.getRandomValues) { // `crypto.getRandomValues` is available even in non-secure contexts globalThis.crypto.getRandomValues(bytes) } else { // fallback to Math.random, if the Crypto API is completely missing for (let i = 0; i < bytes.length; i++) { bytes[i] = Math.floor(Math.random() * 256) } } bytes[6] = (bytes[6] & 0x0f) | 0x40 // Set the 4 most significant bits to 0100 bytes[8] = (bytes[8] & 0x3f) | 0x80 // Set the 2 most significant bits to 10 const hexValues: string[] = [] bytes.forEach((byte) => { hexValues.push(byte.toString(16).padStart(2, '0')) }) return ( hexValues.slice(0, 4).join('') + '-' + hexValues.slice(4, 6).join('') + '-' + hexValues.slice(6, 8).join('') + '-' + hexValues.slice(8, 10).join('') + '-' + hexValues.slice(10).join('') ) } /** * Formats a query with parameters * Expects that any tables/relations referenced in the query exist in the database * due to requiring them to be present to describe the parameters types. * `tx` is optional, and to be used when formatQuery is called during a transaction. * @param pg - The PGlite instance * @param query - The query to format * @param params - The parameters to format the query with * @param tx - The transaction to use, defaults to the PGlite instance * @returns The formatted query */ export async function formatQuery( pg: PGliteInterface, query: string, params?: any[] | null, tx?: Transaction | PGliteInterface, ) { if (!params || params.length === 0) { // no params so no formatting needed return query } tx = tx ?? pg // Get the types of the parameters const messages = [] try { await pg.execProtocol(serializeProtocol.parse({ text: query }), { syncToFs: false, }) messages.push( ...( await pg.execProtocol(serializeProtocol.describe({ type: 'S' }), { syncToFs: false, }) ).messages, ) } finally { messages.push( ...(await pg.execProtocol(serializeProtocol.sync(), { syncToFs: false })) .messages, ) } const dataTypeIDs = parseDescribeStatementResults(messages) // replace $1, $2, etc with %1L, %2L, etc const subbedQuery = query.replace(/\$([0-9]+)/g, (_, num) => { return '%' + num + 'L' }) const ret = await tx.query<{ query: string }>( `SELECT format($1, ${params.map((_, i) => `$${i + 2}`).join(', ')}) as query`, [subbedQuery, ...params], { paramTypes: [TEXT, ...dataTypeIDs] }, ) return ret.rows[0].query } /** * Debounce a function to ensure that only one instance of the function is running at * a time. * - If the function is called while an instance is already running, the new * call is scheduled to run after the current instance completes. * - If there is already a scheduled call, it is replaced with the new call. * @param fn - The function to debounce * @returns A debounced version of the function */ export function debounceMutex( fn: (...args: A) => Promise, ): (...args: A) => Promise { let next: | { args: A resolve: (value: R | void) => void reject: (reason?: any) => void } | undefined = undefined let isRunning = false const processNext = async () => { if (!next) { isRunning = false return } isRunning = true const { args, resolve, reject } = next next = undefined try { const ret = await fn(...args) resolve(ret) } catch (e) { reject(e) } finally { processNext() } } return async (...args: A) => { if (next) { next.resolve(undefined) } const promise = new Promise((resolve, reject) => { next = { args, resolve, reject } }) if (!isRunning) { processNext() } return promise } } /** * Postgresql handles quoted names as CaseSensitive and unquoted as lower case. * If input is quoted, returns an unquoted string (same casing) * If input is unquoted, returns a lower-case string */ export function toPostgresName(input: string): string { let output if (input.startsWith('"') && input.endsWith('"')) { // Postgres sensitive case output = input.substring(1, input.length - 1) } else { // Postgres case insensitive - all to lower output = input.toLowerCase() } return output } ================================================ FILE: packages/pglite/src/vector/index.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '../interface' const setup = async (_pg: PGliteInterface, emscriptenOpts: any) => { return { emscriptenOpts, bundlePath: new URL('../../release/vector.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const vector = { name: 'pgvector', setup, } satisfies Extension ================================================ FILE: packages/pglite/src/worker/index.ts ================================================ import type { DebugLevel, ExecProtocolResult, Extensions, PGliteInterface, PGliteInterfaceExtensions, PGliteOptions, Transaction, } from '../interface.js' import type { PGlite } from '../pglite.js' import { BasePGlite } from '../base.js' import { toPostgresName, uuid } from '../utils.js' import { DumpTarCompressionOptions } from '../fs/tarUtils.js' import { BackendMessage } from '@electric-sql/pg-protocol/messages' export type PGliteWorkerOptions = PGliteOptions & { meta?: any id?: string } export class PGliteWorker extends BasePGlite implements PGliteInterface, AsyncDisposable { #initPromise: Promise #debug: DebugLevel = 0 #ready = false #closed = false #isLeader = false #eventTarget = new EventTarget() #tabId: string #connected = false #workerProcess: Worker #workerID?: string #workerHerePromise?: Promise #workerReadyPromise?: Promise #broadcastChannel?: BroadcastChannel #tabChannel?: BroadcastChannel #releaseTabCloseLock?: () => void #notifyListeners = new Map void>>() #globalNotifyListeners = new Set<(channel: string, payload: string) => void>() #extensions: Extensions #extensionsClose: Array<() => Promise> = [] constructor(worker: Worker, options?: PGliteWorkerOptions) { super() this.#workerProcess = worker this.#tabId = uuid() this.#extensions = options?.extensions ?? {} this.#workerHerePromise = new Promise((resolve) => { this.#workerProcess.addEventListener( 'message', (event) => { if (event.data.type === 'here') { resolve() } else { throw new Error('Invalid message') } }, { once: true }, ) }) this.#workerReadyPromise = new Promise((resolve) => { const callback = (event: MessageEvent) => { if (event.data.type === 'ready') { this.#workerID = event.data.id this.#workerProcess.removeEventListener('message', callback) resolve() } } this.#workerProcess.addEventListener('message', callback) }) this.#initPromise = this.#init(options) } /** * Create a new PGlite instance with extensions on the Typescript interface * This also awaits the instance to be ready before resolving * (The main constructor does enable extensions, however due to the limitations * of Typescript, the extensions are not available on the instance interface) * @param worker The worker to use * @param options Optional options * @returns A promise that resolves to the PGlite instance when it's ready. */ static async create( worker: Worker, options?: O, ): Promise> { const pg = new PGliteWorker(worker, options) await pg.#initPromise return pg as PGliteWorker & PGliteInterfaceExtensions } async #init(options: PGliteWorkerOptions = {}) { // Setup the extensions for (const [extName, ext] of Object.entries(this.#extensions)) { if (ext instanceof URL) { throw new Error( 'URL extensions are not supported on the client side of a worker', ) } else { const extRet = await ext.setup(this, {}, true) if (extRet.emscriptenOpts) { console.warn( `PGlite extension ${extName} returned emscriptenOpts, these are not supported on the client side of a worker`, ) } if (extRet.namespaceObj) { const instance = this as any instance[extName] = extRet.namespaceObj } if (extRet.bundlePath) { console.warn( `PGlite extension ${extName} returned bundlePath, this is not supported on the client side of a worker`, ) } if (extRet.init) { await extRet.init() } if (extRet.close) { this.#extensionsClose.push(extRet.close) } } } // Wait for the worker let us know it's here await this.#workerHerePromise // Send the worker the options const { extensions: _, ...workerOptions } = options this.#workerProcess.postMessage({ type: 'init', options: workerOptions, }) // Wait for the worker let us know it's ready await this.#workerReadyPromise // Acquire the tab close lock, this is released then the tab, or this // PGliteWorker instance, is closed const tabCloseLockId = `pglite-tab-close:${this.#tabId}` this.#releaseTabCloseLock = await acquireLock(tabCloseLockId) // Start the broadcast channel used to communicate with tabs and leader election const broadcastChannelId = `pglite-broadcast:${this.#workerID}` this.#broadcastChannel = new BroadcastChannel(broadcastChannelId) // Start the tab channel used to communicate with the leader directly const tabChannelId = `pglite-tab:${this.#tabId}` this.#tabChannel = new BroadcastChannel(tabChannelId) this.#broadcastChannel.addEventListener('message', async (event) => { if (event.data.type === 'leader-here') { this.#connected = false this.#eventTarget.dispatchEvent(new Event('leader-change')) this.#leaderNotifyLoop() } else if (event.data.type === 'notify') { this.#receiveNotification(event.data.channel, event.data.payload) } }) this.#tabChannel.addEventListener('message', async (event) => { if (event.data.type === 'connected') { this.#connected = true this.#eventTarget.dispatchEvent(new Event('connected')) this.#debug = await this.#rpc('getDebugLevel') this.#ready = true } }) this.#workerProcess.addEventListener('message', async (event) => { if (event.data.type === 'leader-now') { this.#isLeader = true this.#eventTarget.dispatchEvent(new Event('leader-change')) } }) this.#leaderNotifyLoop() // Init array types // We don't await this as it will result in a deadlock // It immediately takes out the transaction lock as so another query this._initArrayTypes() } async #leaderNotifyLoop() { if (!this.#connected) { this.#broadcastChannel!.postMessage({ type: 'tab-here', id: this.#tabId, }) setTimeout(() => this.#leaderNotifyLoop(), 16) } } async #rpc( method: Method, ...args: Parameters ): Promise> { const callId = uuid() const message: WorkerRpcCall = { type: 'rpc-call', callId, method, args, } this.#tabChannel!.postMessage(message) return await new Promise>( (resolve, reject) => { const listener = (event: MessageEvent) => { if (event.data.callId !== callId) return cleanup() const message: WorkerRpcResponse = event.data if (message.type === 'rpc-return') { resolve(message.result) } else if (message.type === 'rpc-error') { const error = new Error(message.error.message) Object.assign(error, message.error) reject(error) } else { reject(new Error('Invalid message')) } } const leaderChangeListener = () => { // If the leader changes, throw an error to reject the promise cleanup() reject(new LeaderChangedError()) } const cleanup = () => { this.#tabChannel!.removeEventListener('message', listener) this.#eventTarget.removeEventListener( 'leader-change', leaderChangeListener, ) } this.#eventTarget.addEventListener( 'leader-change', leaderChangeListener, ) this.#tabChannel!.addEventListener('message', listener) }, ) } get waitReady() { return new Promise((resolve) => { this.#initPromise.then(() => { if (!this.#connected) { resolve( new Promise((resolve) => { this.#eventTarget.addEventListener('connected', () => { resolve() }) }), ) } else { resolve() } }) }) } get debug() { return this.#debug } /** * The ready state of the database */ get ready() { return this.#ready } /** * The closed state of the database */ get closed() { return this.#closed } /** * The leader state of this tab */ get isLeader() { return this.#isLeader } /** * Close the database * @returns Promise that resolves when the connection to shared PGlite is closed */ async close() { if (this.#closed) { return } this.#closed = true this.#broadcastChannel?.close() this.#tabChannel?.close() this.#releaseTabCloseLock?.() this.#workerProcess.terminate() } /** * Close the database when the object exits scope * Stage 3 ECMAScript Explicit Resource Management * https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-2.html#using-declarations-and-explicit-resource-management */ async [Symbol.asyncDispose]() { await this.close() } /** * Execute a postgres wire protocol message directly without wrapping the response. * Only use if `execProtocol()` doesn't suite your needs. * * **Warning:** This bypasses PGlite's protocol wrappers that manage error/notice messages, * transactions, and notification listeners. Only use if you need to bypass these wrappers and * don't intend to use the above features. * * @param message The postgres wire protocol message to execute * @returns The direct message data response produced by Postgres */ async execProtocolRaw(message: Uint8Array): Promise { return (await this.#rpc('execProtocolRaw', message)) as Uint8Array } /** * Execute a postgres wire protocol message * @param message The postgres wire protocol message to execute * @returns The result of the query */ async execProtocol(message: Uint8Array): Promise { return await this.#rpc('execProtocol', message) } /** * Execute a postgres wire protocol message * @param message The postgres wire protocol message to execute * @returns The result of the query */ async execProtocolStream(message: Uint8Array): Promise { return await this.#rpc('execProtocolStream', message) } /** * Execute a postgres wire protocol message directly without wrapping the response. * Only use if `execProtocol()` doesn't suite your needs. * * **Warning:** This bypasses PGlite's protocol wrappers that manage error/notice messages, * transactions, and notification listeners. Only use if you need to bypass these wrappers and * don't intend to use the above features. * * @param message The postgres wire protocol message to execute * @returns The direct message data response produced by Postgres */ async execProtocolRawStream( message: Uint8Array, options: { onRawData: (data: Uint8Array) => void }, ): Promise { await this.#rpc('execProtocolRawStream', message, options) } /** * Sync the database to the filesystem * @returns Promise that resolves when the database is synced to the filesystem */ async syncToFs() { await this.#rpc('syncToFs') } /** * Listen for a notification * @param channel The channel to listen on * @param callback The callback to call when a notification is received */ async listen( channel: string, callback: (payload: string) => void, tx?: Transaction, ): Promise<() => Promise> { const pgChannel = toPostgresName(channel) const pg = tx ?? this if (!this.#notifyListeners.has(pgChannel)) { this.#notifyListeners.set(pgChannel, new Set()) } this.#notifyListeners.get(pgChannel)!.add(callback) await pg.exec(`LISTEN ${channel}`) return async (tx?: Transaction) => { await this.unlisten(pgChannel, callback, tx) } } /** * Stop listening for a notification * @param channel The channel to stop listening on * @param callback The callback to remove */ async unlisten( channel: string, callback?: (payload: string) => void, tx?: Transaction, ): Promise { await this.waitReady const pg = tx ?? this if (callback) { this.#notifyListeners.get(channel)?.delete(callback) } else { this.#notifyListeners.delete(channel) } if (this.#notifyListeners.get(channel)?.size === 0) { // As we currently have a dedicated worker we can just unlisten await pg.exec(`UNLISTEN ${channel}`) } } /** * Listen to notifications * @param callback The callback to call when a notification is received */ onNotification(callback: (channel: string, payload: string) => void) { this.#globalNotifyListeners.add(callback) return () => { this.#globalNotifyListeners.delete(callback) } } /** * Stop listening to notifications * @param callback The callback to remove */ offNotification(callback: (channel: string, payload: string) => void) { this.#globalNotifyListeners.delete(callback) } #receiveNotification(channel: string, payload: string) { const listeners = this.#notifyListeners.get(channel) if (listeners) { for (const listener of listeners) { queueMicrotask(() => listener(payload)) } } for (const listener of this.#globalNotifyListeners) { queueMicrotask(() => listener(channel, payload)) } } async dumpDataDir( compression?: DumpTarCompressionOptions, ): Promise { return (await this.#rpc('dumpDataDir', compression)) as File | Blob } onLeaderChange(callback: () => void) { this.#eventTarget.addEventListener('leader-change', callback) return () => { this.#eventTarget.removeEventListener('leader-change', callback) } } offLeaderChange(callback: () => void) { this.#eventTarget.removeEventListener('leader-change', callback) } async _handleBlob(blob?: File | Blob): Promise { await this.#rpc('_handleBlob', blob) } async _getWrittenBlob(): Promise { return await this.#rpc('_getWrittenBlob') } async _cleanupBlob(): Promise { await this.#rpc('_cleanupBlob') } async _checkReady() { await this.waitReady } async _runExclusiveQuery(fn: () => Promise): Promise { await this.#rpc('_acquireQueryLock') try { return await fn() } finally { await this.#rpc('_releaseQueryLock') } } async _runExclusiveTransaction(fn: () => Promise): Promise { await this.#rpc('_acquireTransactionLock') try { return await fn() } finally { await this.#rpc('_releaseTransactionLock') } } } export interface WorkerOptions { init: (options: Exclude) => Promise } export async function worker({ init }: WorkerOptions) { // Send a message to the main thread to let it know we are here postMessage({ type: 'here' }) // Await the main thread to send us the options const options = await new Promise>( (resolve) => { addEventListener( 'message', (event) => { if (event.data.type === 'init') { resolve(event.data.options) } }, { once: true }, ) }, ) // ID for this multi-tab worker - this is used to identify the group of workers // that are trying to elect a leader for a shared PGlite instance. // It defaults to the URL of the worker, and the dataDir if provided // but can be overridden by the options. const id = options.id ?? `${import.meta.url}:${options.dataDir ?? ''}` // Let the main thread know we are ready postMessage({ type: 'ready', id }) const electionLockId = `pglite-election-lock:${id}` const broadcastChannelId = `pglite-broadcast:${id}` const broadcastChannel = new BroadcastChannel(broadcastChannelId) const connectedTabs = new Set() // Await the main lock which is used to elect the leader // We don't release this lock, its automatically released when the worker or // tab is closed await acquireLock(electionLockId) // Now we are the leader, start the worker const dbPromise = init(options) // Start listening for messages from tabs broadcastChannel.onmessage = async (event) => { const msg = event.data switch (msg.type) { case 'tab-here': // A new tab has joined, connectTab(msg.id, await dbPromise, connectedTabs) break } } // Notify the other tabs that we are the leader broadcastChannel.postMessage({ type: 'leader-here', id }) // Let the main thread know we are the leader postMessage({ type: 'leader-now' }) const db = await dbPromise // Listen for notifications and broadcast them to all tabs db.onNotification((channel, payload) => { broadcastChannel.postMessage({ type: 'notify', channel, payload }) }) } function connectTab(tabId: string, pg: PGlite, connectedTabs: Set) { if (connectedTabs.has(tabId)) { return } connectedTabs.add(tabId) const tabChannelId = `pglite-tab:${tabId}` const tabCloseLockId = `pglite-tab-close:${tabId}` const tabChannel = new BroadcastChannel(tabChannelId) // Use a tab close lock to unsubscribe the tab navigator.locks.request(tabCloseLockId, () => { return new Promise((resolve) => { // The tab has been closed, unsubscribe the tab broadcast channel tabChannel.close() connectedTabs.delete(tabId) resolve() }) }) const api = makeWorkerApi(tabId, pg) tabChannel.addEventListener('message', async (event) => { const msg = event.data switch (msg.type) { case 'rpc-call': { await pg.waitReady const { callId, method, args } = msg as WorkerRpcCall try { // @ts-ignore no apparent reason why it fails const result = (await api[method](...args)) as WorkerRpcResult< typeof method >['result'] tabChannel.postMessage({ type: 'rpc-return', callId, result, } satisfies WorkerRpcResult) } catch (error) { console.error(error) tabChannel.postMessage({ type: 'rpc-error', callId, error: { message: (error as Error).message }, } satisfies WorkerRpcError) } break } } }) // Send a message to the tab to let it know it's connected tabChannel.postMessage({ type: 'connected' }) } function makeWorkerApi(tabId: string, db: PGlite) { let queryLockRelease: (() => void) | null = null let transactionLockRelease: (() => void) | null = null // If the tab is closed and it is holding a lock, release the the locks // and rollback any pending transactions const tabCloseLockId = `pglite-tab-close:${tabId}` acquireLock(tabCloseLockId).then(() => { if (transactionLockRelease) { // rollback any pending transactions db.exec('ROLLBACK') } queryLockRelease?.() transactionLockRelease?.() }) return { async getDebugLevel() { return db.debug }, async close() { await db.close() }, async execProtocol(message: Uint8Array) { const { messages, data } = await db.execProtocol(message) if (data.byteLength !== data.buffer.byteLength) { const buffer = new ArrayBuffer(data.byteLength) const dataCopy = new Uint8Array(buffer) dataCopy.set(data) return { messages, data: dataCopy } } else { return { messages, data } } }, async execProtocolStream(message: Uint8Array) { const messages = await db.execProtocolStream(message) return messages }, async execProtocolRawStream(message: Uint8Array, options: any) { const messages = await db.execProtocolRawStream(message, options) return messages }, async execProtocolRaw(message: Uint8Array) { const result = await db.execProtocolRaw(message) if (result.byteLength !== result.buffer.byteLength) { // The data is a slice of a larger buffer, this is potentially the whole // memory of the WASM module. We copy it to a new Uint8Array and return that. const buffer = new ArrayBuffer(result.byteLength) const resultCopy = new Uint8Array(buffer) resultCopy.set(result) return resultCopy } else { return result } }, async dumpDataDir(compression?: DumpTarCompressionOptions) { return await db.dumpDataDir(compression) }, async syncToFs() { return await db.syncToFs() }, async _handleBlob(blob?: File | Blob) { return await db._handleBlob(blob) }, async _getWrittenBlob() { return await db._getWrittenBlob() }, async _cleanupBlob() { return await db._cleanupBlob() }, async _checkReady() { return await db._checkReady() }, async _acquireQueryLock() { return new Promise((resolve) => { db._runExclusiveQuery(() => { return new Promise((release) => { queryLockRelease = release resolve() }) }) }) }, async _releaseQueryLock() { queryLockRelease?.() queryLockRelease = null }, async _acquireTransactionLock() { return new Promise((resolve) => { db._runExclusiveTransaction(() => { return new Promise((release) => { transactionLockRelease = release resolve() }) }) }) }, async _releaseTransactionLock() { transactionLockRelease?.() transactionLockRelease = null }, } } export class LeaderChangedError extends Error { constructor() { super('Leader changed, pending operation in indeterminate state') } } async function acquireLock(lockId: string) { let release await new Promise((resolve) => { navigator.locks.request(lockId, () => { return new Promise((releaseCallback) => { release = releaseCallback resolve() }) }) }) return release } type WorkerApi = ReturnType type WorkerRpcMethod = keyof WorkerApi type WorkerRpcCall = { type: 'rpc-call' callId: string method: Method args: Parameters } type WorkerRpcResult = { type: 'rpc-return' callId: string result: ReturnType } type WorkerRpcError = { type: 'rpc-error' callId: string error: any } type WorkerRpcResponse = | WorkerRpcResult | WorkerRpcError ================================================ FILE: packages/pglite/tests/age.test.ts ================================================ /** * AGE Extension Tests for PGlite * * Apache AGE (A Graph Extension) brings graph database functionality to PostgreSQL. * This test suite demonstrates common graph operations using Cypher query language. * * @see https://age.apache.org/ - Apache AGE documentation * @see https://pglite.dev/ - PGlite documentation * * Usage: * ```typescript * import { PGlite } from '@electric-sql/pglite' * import { age } from '@electric-sql/pglite/age' * * const pg = new PGlite({ extensions: { age } }) * ``` */ import { describe, it, expect, beforeAll, afterAll } from 'vitest' import { testEsmCjsAndDTC } from './test-utils.ts' await testEsmCjsAndDTC(async (importType) => { const { PGlite } = importType === 'esm' ? await import('../dist/index.js') : ((await import( '../dist/index.cjs' )) as unknown as typeof import('../dist/index.js')) const { age } = importType === 'esm' ? await import('../dist/age/index.js') : ((await import( '../dist/age/index.cjs' )) as unknown as typeof import('../dist/age/index.js')) describe(`age (${importType})`, () => { // ========================================================================= // BASIC EXTENSION LOADING // ========================================================================= it('can load extension', async () => { const pg = new PGlite({ extensions: { age, }, }) await pg.exec(` CREATE EXTENSION IF NOT EXISTS age; LOAD 'age'; SET search_path = ag_catalog, "$user", public; `) const res = await pg.query<{ extname: string }>(` SELECT extname FROM pg_extension WHERE extname = 'age' `) expect(res.rows).toHaveLength(1) expect(res.rows[0].extname).toBe('age') await pg.close() }) // ========================================================================= // GRAPH LIFECYCLE - CREATE AND DROP GRAPHS // ========================================================================= it('can create a graph', async () => { const pg = new PGlite({ extensions: { age, }, }) await pg.exec(` CREATE EXTENSION IF NOT EXISTS age; LOAD 'age'; SET search_path = ag_catalog, "$user", public; `) // Create a new graph using ag_catalog.create_graph() // This creates the graph metadata and necessary internal tables await pg.exec("SELECT ag_catalog.create_graph('test_graph');") // Verify graph exists in ag_catalog.ag_graph system table const res = await pg.query<{ name: string }>(` SELECT name FROM ag_catalog.ag_graph WHERE name = 'test_graph' `) expect(res.rows).toHaveLength(1) expect(res.rows[0].name).toBe('test_graph') await pg.close() }) it('can drop graph', async () => { const pg = new PGlite({ extensions: { age, }, }) await pg.exec(` CREATE EXTENSION IF NOT EXISTS age; LOAD 'age'; SET search_path = ag_catalog, "$user", public; `) // Create and then drop a graph await pg.exec("SELECT ag_catalog.create_graph('temp_graph');") await pg.exec("SELECT ag_catalog.drop_graph('temp_graph', true);") // Verify graph no longer exists const res = await pg.query<{ name: string }>(` SELECT name FROM ag_catalog.ag_graph WHERE name = 'temp_graph' `) expect(res.rows).toHaveLength(0) await pg.close() }) // ========================================================================= // CREATING NODES (VERTICES) // ========================================================================= it('can execute cypher CREATE and MATCH', async () => { const pg = new PGlite({ extensions: { age, }, }) await pg.exec(` CREATE EXTENSION IF NOT EXISTS age; LOAD 'age'; SET search_path = ag_catalog, "$user", public; `) await pg.exec("SELECT ag_catalog.create_graph('cypher_test');") // CREATE a node with a label and properties // Labels are like types/categories for nodes (e.g., Person, Movie) // Properties are key-value pairs stored on the node await pg.exec(` SELECT * FROM ag_catalog.cypher('cypher_test', $$ CREATE (n:Person {name: 'Alice', age: 30}) RETURN n $$) as (v ag_catalog.agtype); `) // MATCH finds nodes that match the pattern // Properties in the pattern act as filters const res = await pg.query<{ v: string }>(` SELECT * FROM ag_catalog.cypher('cypher_test', $$ MATCH (n:Person {name: 'Alice'}) RETURN n $$) as (v ag_catalog.agtype); `) expect(res.rows).toHaveLength(1) // AGE returns data as agtype (JSON-like format) expect(res.rows[0].v).toContain('Alice') await pg.close() }) // ========================================================================= // CREATING RELATIONSHIPS (EDGES) // ========================================================================= it('can create edges between nodes', async () => { const pg = new PGlite({ extensions: { age, }, }) await pg.exec(` CREATE EXTENSION IF NOT EXISTS age; LOAD 'age'; SET search_path = ag_catalog, "$user", public; `) await pg.exec("SELECT ag_catalog.create_graph('edge_test');") // Create a full path: two nodes connected by an edge // Pattern: (node1)-[:EDGE_TYPE]->(node2) // Edges are directed (arrow shows direction) await pg.exec(` SELECT * FROM ag_catalog.cypher('edge_test', $$ CREATE (a:Person {name: 'Alice'})-[:KNOWS {since: 2020}]->(b:Person {name: 'Bob'}) RETURN a, b $$) as (a ag_catalog.agtype, b ag_catalog.agtype); `) // Query the relationship // MATCH pattern includes the edge with its type const res = await pg.query<{ name: string; friend: string }>(` SELECT * FROM ag_catalog.cypher('edge_test', $$ MATCH (a:Person)-[:KNOWS]->(b:Person) RETURN a.name, b.name $$) as (name ag_catalog.agtype, friend ag_catalog.agtype); `) expect(res.rows).toHaveLength(1) expect(res.rows[0].name).toBe('"Alice"') expect(res.rows[0].friend).toBe('"Bob"') await pg.close() }) // ========================================================================= // CYPHER PARSER HOOKS - VERIFYING AGE INTEGRATION // ========================================================================= it('hooks are active - cypher syntax parses correctly', async () => { const pg = new PGlite({ extensions: { age, }, }) await pg.exec(` CREATE EXTENSION IF NOT EXISTS age; LOAD 'age'; SET search_path = ag_catalog, "$user", public; `) await pg.exec("SELECT ag_catalog.create_graph('hook_test');") // This query uses Cypher-specific syntax that PostgreSQL // doesn't understand natively. It only works because AGE's // post_parse_analyze_hook intercepts and transforms the query. const res = await pg.query<{ result: string }>(` SELECT * FROM ag_catalog.cypher('hook_test', $$ RETURN 1 + 2 $$) as (result ag_catalog.agtype); `) expect(res.rows).toHaveLength(1) expect(res.rows[0].result).toBe('3') await pg.close() }) // ========================================================================= // FILTERING WITH WHERE CLAUSE // ========================================================================= it('can use WHERE clause in MATCH', async () => { const pg = new PGlite({ extensions: { age, }, }) await pg.exec(` CREATE EXTENSION IF NOT EXISTS age; LOAD 'age'; SET search_path = ag_catalog, "$user", public; `) await pg.exec("SELECT ag_catalog.create_graph('where_test');") // Create multiple nodes await pg.exec(` SELECT * FROM ag_catalog.cypher('where_test', $$ CREATE (:Person {name: 'Alice', age: 30}), (:Person {name: 'Bob', age: 25}), (:Person {name: 'Charlie', age: 35}) $$) as (v ag_catalog.agtype); `) // Use WHERE to filter results // WHERE clause supports comparison operators and boolean logic const res = await pg.query<{ name: string }>(` SELECT * FROM ag_catalog.cypher('where_test', $$ MATCH (p:Person) WHERE p.age > 28 RETURN p.name $$) as (name ag_catalog.agtype); `) expect(res.rows).toHaveLength(2) const names = res.rows.map((r) => r.name) expect(names).toContain('"Alice"') expect(names).toContain('"Charlie"') await pg.close() }) // ========================================================================= // QUERY ANALYSIS WITH EXPLAIN // ========================================================================= it('EXPLAIN works on cypher queries', async () => { const pg = new PGlite({ extensions: { age, }, }) await pg.exec(` CREATE EXTENSION IF NOT EXISTS age; LOAD 'age'; SET search_path = ag_catalog, "$user", public; `) await pg.exec("SELECT ag_catalog.create_graph('explain_test');") // EXPLAIN shows the query execution plan // Useful for performance tuning const res = await pg.query<{ 'QUERY PLAN': string }>(` EXPLAIN SELECT * FROM ag_catalog.cypher('explain_test', $$ MATCH (n) RETURN n $$) as (v ag_catalog.agtype); `) expect(res.rows.length).toBeGreaterThan(0) await pg.close() }) // ========================================================================= // UNICODE AND INTERNATIONAL TEXT SUPPORT // ========================================================================= it('handles unicode in properties', async () => { const pg = new PGlite({ extensions: { age, }, }) await pg.exec(` CREATE EXTENSION IF NOT EXISTS age; LOAD 'age'; SET search_path = ag_catalog, "$user", public; `) await pg.exec("SELECT ag_catalog.create_graph('unicode_test');") // Create node with unicode properties // AGE supports full UTF-8 text in property values await pg.exec(` SELECT * FROM ag_catalog.cypher('unicode_test', $$ CREATE (n:Message { text: '你好世界', emoji: '🎉', mixed: 'Hello 世界! 🌍' }) $$) as (v ag_catalog.agtype); `) const res = await pg.query<{ text: string }>(` SELECT * FROM ag_catalog.cypher('unicode_test', $$ MATCH (n:Message) RETURN n.text $$) as (text ag_catalog.agtype); `) expect(res.rows).toHaveLength(1) expect(res.rows[0].text).toContain('你好世界') await pg.close() }) // ========================================================================= // ERROR HANDLING // ========================================================================= it('handles invalid cypher syntax gracefully', async () => { const pg = new PGlite({ extensions: { age, }, }) await pg.exec(` CREATE EXTENSION IF NOT EXISTS age; LOAD 'age'; SET search_path = ag_catalog, "$user", public; `) await pg.exec("SELECT ag_catalog.create_graph('error_test');") // Invalid Cypher syntax should throw an error await expect( pg.exec(` SELECT * FROM ag_catalog.cypher('error_test', $$ MATCH (n INVALID SYNTAX $$) as (v ag_catalog.agtype); `), ).rejects.toThrow() await pg.close() }) // ========================================================================= // UPDATING NODE PROPERTIES // ========================================================================= it('can update node properties', async () => { const pg = new PGlite({ extensions: { age, }, }) await pg.exec(` CREATE EXTENSION IF NOT EXISTS age; LOAD 'age'; SET search_path = ag_catalog, "$user", public; `) await pg.exec("SELECT ag_catalog.create_graph('update_test');") // Create a node await pg.exec(` SELECT * FROM ag_catalog.cypher('update_test', $$ CREATE (n:Person {name: 'Alice', age: 30}) $$) as (v ag_catalog.agtype); `) // Update the node using SET clause await pg.exec(` SELECT * FROM ag_catalog.cypher('update_test', $$ MATCH (n:Person {name: 'Alice'}) SET n.age = 31, n.city = 'New York' RETURN n $$) as (v ag_catalog.agtype); `) // Verify the update const res = await pg.query<{ age: string; city: string }>(` SELECT * FROM ag_catalog.cypher('update_test', $$ MATCH (n:Person {name: 'Alice'}) RETURN n.age, n.city $$) as (age ag_catalog.agtype, city ag_catalog.agtype); `) expect(res.rows).toHaveLength(1) expect(res.rows[0].age).toBe('31') expect(res.rows[0].city).toBe('"New York"') await pg.close() }) // ========================================================================= // DELETING NODES // ========================================================================= it('can delete nodes', async () => { const pg = new PGlite({ extensions: { age, }, }) await pg.exec(` CREATE EXTENSION IF NOT EXISTS age; LOAD 'age'; SET search_path = ag_catalog, "$user", public; `) await pg.exec("SELECT ag_catalog.create_graph('delete_test');") // Create nodes await pg.exec(` SELECT * FROM ag_catalog.cypher('delete_test', $$ CREATE (:Person {name: 'ToDelete'}), (:Person {name: 'ToKeep'}) $$) as (v ag_catalog.agtype); `) // Delete specific node using DELETE clause // DETACH DELETE removes the node and all its relationships await pg.exec(` SELECT * FROM ag_catalog.cypher('delete_test', $$ MATCH (n:Person {name: 'ToDelete'}) DELETE n $$) as (v ag_catalog.agtype); `) // Verify only one node remains const res = await pg.query<{ count: string }>(` SELECT * FROM ag_catalog.cypher('delete_test', $$ MATCH (n:Person) RETURN count(n) $$) as (count ag_catalog.agtype); `) expect(res.rows[0].count).toBe('1') await pg.close() }) // ========================================================================= // ORDERING AND LIMITING RESULTS // ========================================================================= it('can use ORDER BY and LIMIT', async () => { const pg = new PGlite({ extensions: { age, }, }) await pg.exec(` CREATE EXTENSION IF NOT EXISTS age; LOAD 'age'; SET search_path = ag_catalog, "$user", public; `) await pg.exec("SELECT ag_catalog.create_graph('order_test');") // Create multiple nodes with different ages await pg.exec(` SELECT * FROM ag_catalog.cypher('order_test', $$ CREATE (:Person {name: 'Alice', age: 30}), (:Person {name: 'Bob', age: 25}), (:Person {name: 'Charlie', age: 35}), (:Person {name: 'Diana', age: 28}) $$) as (v ag_catalog.agtype); `) // Query with ORDER BY and LIMIT // ORDER BY sorts results, LIMIT restricts count const res = await pg.query<{ name: string }>(` SELECT * FROM ag_catalog.cypher('order_test', $$ MATCH (p:Person) RETURN p.name ORDER BY p.age DESC LIMIT 2 $$) as (name ag_catalog.agtype); `) expect(res.rows).toHaveLength(2) expect(res.rows[0].name).toBe('"Charlie"') // age 35 expect(res.rows[1].name).toBe('"Alice"') // age 30 await pg.close() }) // ========================================================================= // REAL-WORLD EXAMPLE: SOCIAL NETWORK // ========================================================================= describe('real-world example: social network', () => { let pg: InstanceType beforeAll(async () => { pg = new PGlite({ extensions: { age }, }) await pg.exec(` CREATE EXTENSION IF NOT EXISTS age; LOAD 'age'; SET search_path = ag_catalog, "$user", public; `) // Create a social network graph await pg.exec("SELECT ag_catalog.create_graph('social');") // Create users await pg.exec(` SELECT * FROM ag_catalog.cypher('social', $$ CREATE (alice:User {name: 'Alice', email: 'alice@example.com', joined: '2023-01-15'}), (bob:User {name: 'Bob', email: 'bob@example.com', joined: '2023-02-20'}), (charlie:User {name: 'Charlie', email: 'charlie@example.com', joined: '2023-03-10'}), (diana:User {name: 'Diana', email: 'diana@example.com', joined: '2023-04-05'}) $$) as (v ag_catalog.agtype); `) // Create friendship relationships await pg.exec(` SELECT * FROM ag_catalog.cypher('social', $$ MATCH (alice:User {name: 'Alice'}), (bob:User {name: 'Bob'}) CREATE (alice)-[:FRIENDS_WITH {since: '2023-03-01'}]->(bob) $$) as (v ag_catalog.agtype); `) await pg.exec(` SELECT * FROM ag_catalog.cypher('social', $$ MATCH (alice:User {name: 'Alice'}), (charlie:User {name: 'Charlie'}) CREATE (alice)-[:FRIENDS_WITH {since: '2023-04-15'}]->(charlie) $$) as (v ag_catalog.agtype); `) await pg.exec(` SELECT * FROM ag_catalog.cypher('social', $$ MATCH (bob:User {name: 'Bob'}), (diana:User {name: 'Diana'}) CREATE (bob)-[:FRIENDS_WITH {since: '2023-05-01'}]->(diana) $$) as (v ag_catalog.agtype); `) // Create posts await pg.exec(` SELECT * FROM ag_catalog.cypher('social', $$ MATCH (alice:User {name: 'Alice'}) CREATE (alice)-[:POSTED]->(p:Post { content: 'Hello from PGlite with AGE!', timestamp: '2023-06-01T10:00:00Z', likes: 42 }) $$) as (v ag_catalog.agtype); `) }) afterAll(async () => { await pg.close() }) it('can find direct friends', async () => { const res = await pg.query<{ friend: string }>(` SELECT * FROM ag_catalog.cypher('social', $$ MATCH (alice:User {name: 'Alice'})-[:FRIENDS_WITH]->(friend:User) RETURN friend.name $$) as (friend ag_catalog.agtype); `) expect(res.rows).toHaveLength(2) const friends = res.rows.map((r) => r.friend) expect(friends).toContain('"Bob"') expect(friends).toContain('"Charlie"') }) it('can find friends of friends', async () => { // Variable length path: find friends up to 2 hops away const res = await pg.query<{ person: string }>(` SELECT * FROM ag_catalog.cypher('social', $$ MATCH (alice:User {name: 'Alice'})-[:FRIENDS_WITH*1..2]->(person:User) WHERE person.name <> 'Alice' RETURN DISTINCT person.name $$) as (person ag_catalog.agtype); `) // Should find Bob, Charlie (direct) and Diana (through Bob) expect(res.rows.length).toBeGreaterThanOrEqual(2) const people = res.rows.map((r) => r.person) expect(people).toContain('"Diana"') // friend of friend }) it('can find posts by user', async () => { const res = await pg.query<{ content: string; likes: string }>(` SELECT * FROM ag_catalog.cypher('social', $$ MATCH (u:User {name: 'Alice'})-[:POSTED]->(post:Post) RETURN post.content, post.likes $$) as (content ag_catalog.agtype, likes ag_catalog.agtype); `) expect(res.rows).toHaveLength(1) expect(res.rows[0].content).toContain('PGlite with AGE') expect(res.rows[0].likes).toBe('42') }) it('can count relationships', async () => { const res = await pg.query<{ name: string; friend_count: string }>(` SELECT * FROM ag_catalog.cypher('social', $$ MATCH (u:User)-[:FRIENDS_WITH]->(friend:User) RETURN u.name, count(friend) as friend_count ORDER BY friend_count DESC $$) as (name ag_catalog.agtype, friend_count ag_catalog.agtype); `) // Alice has 2 friends (most) expect(res.rows[0].name).toBe('"Alice"') expect(res.rows[0].friend_count).toBe('2') }) }) }) }) ================================================ FILE: packages/pglite/tests/array-types.test.ts ================================================ import { describe, it, expect } from 'vitest' import { PGlite } from '../dist/index.js' import { expectToThrowAsync } from './test-utils.js' describe('array types', () => { it('throws for array params enum when not calling refreshArrayTypes', async () => { const db = new PGlite() await db.query(` CREATE TYPE mood AS ENUM ('sad', 'happy'); `) await db.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT, moods mood[] ); `) await expectToThrowAsync(async () => { await db.query( ` INSERT INTO test (name, moods) VALUES ($1, $2); `, ['test2', ['sad', 'happy']], ) }, 'malformed array literal: "sad,happy"') }) it('works with new array types after calling refreshArrayTypes', async () => { const db = new PGlite() await db.query(` CREATE TYPE mood AS ENUM ('sad', 'happy'); `) await db.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT, moods mood[] ); `) await db.refreshArrayTypes() await db.query( ` INSERT INTO test (name, moods) VALUES ($1, $2); `, ['test2', ['sad', 'happy']], ) const res = await db.query(` SELECT * FROM test; `) expect(res).toEqual({ rows: [ { id: 1, name: 'test2', moods: ['sad', 'happy'], }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'name', dataTypeID: 25, }, { name: 'moods', dataTypeID: 16384, }, ], affectedRows: 0, }) }) it('refreshArrayTypes is indempotent', async () => { function getSize(obj) { return Object.keys(obj).length } const db = new PGlite() await db.waitReady const initialSerializersSize = getSize(db.serializers) const initialParsersSize = getSize(db.parsers) expect(initialSerializersSize).toBeGreaterThan(0) expect(initialParsersSize).toBeGreaterThan(0) await db.refreshArrayTypes() expect(getSize(db.serializers)).toBe(initialSerializersSize) expect(getSize(db.parsers)).toBe(initialParsersSize) await db.refreshArrayTypes() expect(getSize(db.serializers)).toBe(initialSerializersSize) expect(getSize(db.parsers)).toBe(initialParsersSize) }) }) ================================================ FILE: packages/pglite/tests/basic.test.ts ================================================ import { describe, it, expect } from 'vitest' import { expectToThrowAsync, testEsmCjsAndDTC } from './test-utils.ts' import { identifier } from '../dist/templating.js' await testEsmCjsAndDTC(async (importType) => { const { PGlite } = importType === 'esm' ? await import('../dist/index.js') : ((await import( '../dist/index.cjs' )) as unknown as typeof import('../dist/index.js')) describe(`basic`, () => { it('exec', async () => { const db = await PGlite.create() await db.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) const multiStatementResult = await db.exec(` INSERT INTO test (name) VALUES ('test'); UPDATE test SET name = 'test2'; SELECT * FROM test; `) expect(multiStatementResult).toEqual([ { affectedRows: 1, rows: [], fields: [], }, { affectedRows: 2, rows: [], fields: [], }, { rows: [{ id: 1, name: 'test2' }], fields: [ { name: 'id', dataTypeID: 23 }, { name: 'name', dataTypeID: 25 }, ], affectedRows: 2, }, ]) await db.close() }) it('query', async () => { const db = new PGlite() await db.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await db.query("INSERT INTO test (name) VALUES ('test');") const selectResult = await db.query(` SELECT * FROM test; `) expect(selectResult).toEqual({ rows: [ { id: 1, name: 'test', }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'name', dataTypeID: 25, }, ], affectedRows: 0, }) const updateResult = await db.query("UPDATE test SET name = 'test2';") expect(updateResult).toEqual({ rows: [], fields: [], affectedRows: 1, }) }) it('query templated', async () => { const db = new PGlite() const tableName = identifier`test` await db.sql` CREATE TABLE IF NOT EXISTS ${tableName} ( id SERIAL PRIMARY KEY, name TEXT ); ` await db.sql`INSERT INTO ${tableName} (name) VALUES (${'test'});` const selectResult = await db.sql`SELECT * FROM ${tableName};` expect(selectResult).toEqual({ rows: [ { id: 1, name: 'test', }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'name', dataTypeID: 25, }, ], affectedRows: 0, }) const updateResult = await db.sql`UPDATE ${tableName} SET name = ${'test2'};` expect(updateResult).toEqual({ rows: [], fields: [], affectedRows: 1, }) }) it('types', async () => { const db = await PGlite.create() await db.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, text TEXT, number INT, float FLOAT, bigint BIGINT, bool BOOLEAN, date DATE, timestamp TIMESTAMP, json JSONB, blob BYTEA, array_text TEXT[], array_number INT[], nested_array_float FLOAT[][], test_null INT, test_undefined INT ); `) await db.query( ` INSERT INTO test (text, number, float, bigint, bool, date, timestamp, json, blob, array_text, array_number, nested_array_float, test_null, test_undefined) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14); `, [ 'test', 1, 1.5, 9223372036854775807n, true, new Date('2021-01-01'), new Date('2021-01-01T12:00:00'), { test: 'test' }, Uint8Array.from([1, 2, 3]), ['test1', 'test2', 'test,3'], [1, 2, 3], [ [1.1, 2.2], [3.3, 4.4], ], null, undefined, ], ) const res = await db.query<{ id: number text: string number: number float: number bigint: bigint bool: boolean date: Date timestamp: Date json: Record blob: Uint8Array array_text: string[] array_number: number[] nested_array_float: number[][] test_null: null test_undefined: null }>(` SELECT * FROM test; `) expect(res).toMatchObject({ rows: [ { id: 1, text: 'test', number: 1, float: 1.5, bigint: 9223372036854775807n, bool: true, date: new Date('2021-01-01T00:00:00.000Z'), json: { test: 'test' }, blob: Uint8Array.from([1, 2, 3]), array_text: ['test1', 'test2', 'test,3'], array_number: [1, 2, 3], nested_array_float: [ [1.1, 2.2], [3.3, 4.4], ], test_null: null, test_undefined: null, }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'text', dataTypeID: 25, }, { name: 'number', dataTypeID: 23, }, { name: 'float', dataTypeID: 701, }, { name: 'bigint', dataTypeID: 20, }, { name: 'bool', dataTypeID: 16, }, { name: 'date', dataTypeID: 1082, }, { name: 'timestamp', dataTypeID: 1114, }, { name: 'json', dataTypeID: 3802, }, { name: 'blob', dataTypeID: 17, }, { name: 'array_text', dataTypeID: 1009, }, { name: 'array_number', dataTypeID: 1007, }, { name: 'nested_array_float', dataTypeID: 1022, }, { name: 'test_null', dataTypeID: 23, }, { name: 'test_undefined', dataTypeID: 23, }, ], affectedRows: 0, }) // standardize timestamp comparison to UTC milliseconds to ensure predictable test runs on machines in different timezones. expect(res.rows[0].timestamp.getUTCMilliseconds()).toBe( new Date('2021-01-01T12:00:00.000Z').getUTCMilliseconds(), ) }) it('custom parser and serializer', async () => { const db = new PGlite({ serializers: { 1700: (x) => x.toString() }, parsers: { 1700: (x) => BigInt(x) }, }) await db.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, numeric NUMERIC ); `) await db.query('INSERT INTO test (numeric) VALUES ($1);', [100n]) const res = await db.query(` SELECT * FROM test; `) expect(res).toEqual({ rows: [ { id: 1, numeric: 100n, }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'numeric', dataTypeID: 1700, }, ], affectedRows: 0, }) }) it('params', async () => { const db = new PGlite() await db.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await db.query('INSERT INTO test (name) VALUES ($1);', ['test2']) const res = await db.query(` SELECT * FROM test; `) expect(res).toEqual({ rows: [ { id: 1, name: 'test2', }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'name', dataTypeID: 25, }, ], affectedRows: 0, }) }) it('array params', async () => { const db = new PGlite() await db.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, json JSONB, array_text TEXT[] ); `) await db.query( ` INSERT INTO test (json, array_text) VALUES ($1, $2); `, [ ['hello', 'world'], ['yolo', 'fam'], ], ) const res = await db.query( ` SELECT * FROM test WHERE id = ANY($1); `, [[0, 1, 2, 3]], ) expect(res).toEqual({ rows: [ { id: 1, json: ['hello', 'world'], array_text: ['yolo', 'fam'], }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'json', dataTypeID: 3802, }, { name: 'array_text', dataTypeID: 1009, }, ], affectedRows: 0, }) }) it('error', async () => { const db = await PGlite.create() await expectToThrowAsync(async () => { await db.query('SELECT * FROM test;') }, 'relation "test" does not exist') }) it('transaction', async () => { const db = new PGlite() await db.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await db.query("INSERT INTO test (name) VALUES ('test');") await db.transaction(async (tx) => { await tx.query("INSERT INTO test (name) VALUES ('test2');") const res = await tx.query(` SELECT * FROM test; `) expect(res).toEqual({ rows: [ { id: 1, name: 'test', }, { id: 2, name: 'test2', }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'name', dataTypeID: 25, }, ], affectedRows: 0, }) await tx.rollback() }) const res = await db.query(` SELECT * FROM test; `) expect(res).toEqual({ rows: [ { id: 1, name: 'test', }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'name', dataTypeID: 25, }, ], affectedRows: 0, }) }) it('merge delete', async () => { const db = new PGlite() await db.exec(` CREATE TABLE employees ( id SERIAL PRIMARY KEY, name TEXT, department TEXT, salary NUMERIC);`) await db.exec(`INSERT INTO employees (id, name, department, salary) VALUES (1, 'Alice', 'Engineering', 75000), (2, 'Bob', 'Sales', 50000), (3, 'Charlie', 'Engineering', 80000);`) await db.exec(`CREATE TEMP TABLE employees_updates ( id INT, name TEXT, department TEXT, salary NUMERIC);`) await db.exec(`INSERT INTO employees_updates VALUES (2, 'Bob', 'Sales', 55000), -- Update salary (3, 'Charlie', 'Product', 80000), -- Update department (4, 'Diana', 'Engineering', 70000); -- New employee`) const res = await db.exec(`MERGE INTO employees AS target USING employees_updates AS source ON target.id = source.id WHEN MATCHED THEN DELETE`) expect(res[0].affectedRows).toEqual(2) }) it('copy to/from blob', async () => { const db = new PGlite() await db.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, test TEXT ); INSERT INTO test (test) VALUES ('test'), ('test2'); `) // copy to const copyToRet = await db.query( "COPY test TO '/dev/blob' WITH (FORMAT csv);", ) // Check that the copy command returns the number of rows affected expect(copyToRet.affectedRows).toBe(2) const csv = await copyToRet.blob?.text() expect(csv).toBe('1,test\n2,test2\n') // copy from const blob2 = new Blob([csv!]) await db.exec(` CREATE TABLE IF NOT EXISTS test2 ( id SERIAL PRIMARY KEY, test TEXT ); `) const copyFromRet = await db.query( "COPY test2 FROM '/dev/blob' WITH (FORMAT csv);", [], { blob: blob2, }, ) // Check that the copy command returns the number of rows affected expect(copyFromRet.affectedRows).toBe(2) const res = await db.query(` SELECT * FROM test2; `) expect(res).toEqual({ rows: [ { id: 1, test: 'test', }, { id: 2, test: 'test2', }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'test', dataTypeID: 25, }, ], affectedRows: 0, }) }) it('close', async () => { const db = new PGlite() await db.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await db.query("INSERT INTO test (name) VALUES ('test');") await db.close() await expectToThrowAsync(async () => { await db.query('SELECT * FROM test;') }, 'PGlite is closed') }) it('use same param multiple times', async () => { const db = new PGlite() await db.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, first_name TEXT, last_name TEXT ); `) await db.query( 'INSERT INTO test (first_name, last_name) VALUES ($1, $1);', ['Duck'], ) const result = await db.query( 'SELECT first_name, last_name FROM test WHERE first_name = $1 AND last_name = $1', ['Duck'], ) expect(result).toEqual({ rows: [{ first_name: 'Duck', last_name: 'Duck' }], fields: [ { name: 'first_name', dataTypeID: 25 }, { name: 'last_name', dataTypeID: 25 }, ], affectedRows: 0, }) }) it('timezone', async () => { const db = new PGlite() const res = await db.query( `SELECT now(),* FROM pg_timezone_names WHERE name = current_setting('TIMEZONE')`, ) expect(res.rows.length).toEqual(1) }) }) }) ================================================ FILE: packages/pglite/tests/clone.test.js ================================================ import { describe, it, expect } from 'vitest' import { PGlite } from '../dist/index.js' describe('clone', () => { it('clone pglite instance', async () => { const pg1 = await PGlite.create() await pg1.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await pg1.exec("INSERT INTO test (name) VALUES ('test');") const pg2 = await pg1.clone() const ret1 = await pg1.query('SELECT * FROM test;') const ret2 = await pg2.query('SELECT * FROM test;') expect(ret1).toEqual(ret2) }) it('clone pglite instance - insert into pg2', async () => { const pg1 = await PGlite.create() await pg1.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await pg1.exec("INSERT INTO test (name) VALUES ('test');") const pg2 = await pg1.clone() await pg2.exec("INSERT INTO test (name) VALUES ('2-test');") const ret1 = await pg1.query('SELECT * FROM test;') const ret2 = await pg2.query('SELECT * FROM test;') expect(ret1.rows.length).toBe(1) expect(ret2.rows.length).toBe(2) }) }) ================================================ FILE: packages/pglite/tests/contrib/amcheck.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { amcheck } from '../../dist/contrib/amcheck.js' it('amcheck', async () => { const pg = new PGlite({ extensions: { amcheck, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS amcheck;') // Example query from https://www.postgresql.org/docs/current/amcheck.html const res = await pg.query(` SELECT bt_index_check(index => c.oid, heapallindexed => i.indisunique), c.relname, c.relpages FROM pg_index i JOIN pg_opclass op ON i.indclass[0] = op.oid JOIN pg_am am ON op.opcmethod = am.oid JOIN pg_class c ON i.indexrelid = c.oid JOIN pg_namespace n ON c.relnamespace = n.oid WHERE am.amname = 'btree' AND n.nspname = 'pg_catalog' -- Don't check temp tables, which may be from another session: AND c.relpersistence != 't' -- Function may throw an error when this is omitted: AND c.relkind = 'i' AND i.indisready AND i.indisvalid ORDER BY c.relpages DESC LIMIT 10; `) expect(res.rows).toEqual([ { bt_index_check: '', relname: 'pg_proc_proname_args_nsp_index', relpages: 32, }, { bt_index_check: '', relname: 'pg_description_o_c_o_index', relpages: 23, }, { bt_index_check: '', relname: 'pg_attribute_relid_attnam_index', relpages: 15, }, { bt_index_check: '', relname: 'pg_proc_oid_index', relpages: 12, }, { bt_index_check: '', relname: 'pg_attribute_relid_attnum_index', relpages: 11, }, { bt_index_check: '', relname: 'pg_depend_depender_index', relpages: 10, }, { bt_index_check: '', relname: 'pg_depend_reference_index', relpages: 8, }, { bt_index_check: '', relname: 'pg_amop_fam_strat_index', relpages: 6, }, { bt_index_check: '', relname: 'pg_operator_oprname_l_r_n_index', relpages: 6, }, { bt_index_check: '', relname: 'pg_amop_opr_fam_index', relpages: 6, }, ]) }) ================================================ FILE: packages/pglite/tests/contrib/auto_explain.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { auto_explain } from '../../dist/contrib/auto_explain.js' it('auto_explain', async () => { const pg = await PGlite.create({ extensions: { auto_explain, }, }) await pg.exec(` LOAD 'auto_explain'; SET auto_explain.log_min_duration = '0'; SET auto_explain.log_analyze = 'true'; SET auto_explain.log_level = 'NOTICE'; `) const notices = [] await pg.query( ` SELECT count(*) FROM pg_class, pg_index WHERE oid = indrelid AND indisunique; `, [], { onNotice: (msg) => { notices.push(msg) }, }, ) const explainNotice = notices.find( (msg) => msg.routine === 'explain_ExecutorEnd', ) expect(!!explainNotice).toBe(true) }) ================================================ FILE: packages/pglite/tests/contrib/bloom.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { bloom } from '../../dist/contrib/bloom.js' it('bloom', async () => { const pg = new PGlite({ extensions: { bloom, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS bloom;') await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); CREATE INDEX IF NOT EXISTS test_name_bloom_idx ON test USING bloom (name); `) await pg.exec("INSERT INTO test (name) VALUES ('test1');") await pg.exec("INSERT INTO test (name) VALUES ('test2');") await pg.exec("INSERT INTO test (name) VALUES ('test3');") // in previous versions, we were running PGlite with '"-f", "siobtnmh",' which disabled some query plans. // now, to force Postgres to use the bloom filter, we disable sequential scans for this test await pg.exec(`SET enable_seqscan = off;`) const res = await pg.query(` SELECT name FROM test WHERE name = 'test1'; `) expect(res.rows).toEqual([ { name: 'test1', }, ]) const res2 = await pg.query(` EXPLAIN ANALYZE SELECT name FROM test WHERE name = 'test1'; `) // check that `test_name_bloom_idx` is in the plan const match = res2.rows.filter((row) => row['QUERY PLAN'].includes('test_name_bloom_idx'), ) expect(match.length > 0).toBe(true) }) ================================================ FILE: packages/pglite/tests/contrib/btree_gin.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { btree_gin } from '../../dist/contrib/btree_gin.js' it('btree_gin', async () => { const pg = new PGlite({ extensions: { btree_gin, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS btree_gin;') await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, number int4 ); CREATE INDEX IF NOT EXISTS test_number_btree_gin_idx ON test USING GIN (number); `) await pg.exec('INSERT INTO test (number) VALUES (1);') await pg.exec('INSERT INTO test (number) VALUES (2);') await pg.exec('INSERT INTO test (number) VALUES (3);') const res = await pg.query(` SELECT number FROM test WHERE number = 1; `) expect(res.rows).toEqual([ { number: 1, }, ]) const res2 = await pg.query(` EXPLAIN ANALYZE SELECT number FROM test WHERE number = 1; `) // check that `test_number_btree_gin_idx` is in the plan const match = res2.rows.filter((row) => row['QUERY PLAN'].includes('test_number_btree_gin_idx'), ) expect(match.length > 0).toBe(true) }) ================================================ FILE: packages/pglite/tests/contrib/btree_gist.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { btree_gist } from '../../dist/contrib/btree_gist.js' it('btree_gist', async () => { const pg = new PGlite({ extensions: { btree_gist, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS btree_gist;') await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, number int4 ); CREATE INDEX IF NOT EXISTS test_number_btree_gist_idx ON test USING GIST (number); `) await pg.exec('INSERT INTO test (number) VALUES (1);') await pg.exec('INSERT INTO test (number) VALUES (2);') await pg.exec('INSERT INTO test (number) VALUES (3);') const res = await pg.query(` SELECT number FROM test WHERE number = 1; `) expect(res.rows).toEqual([ { number: 1, }, ]) const res2 = await pg.query(` EXPLAIN ANALYZE SELECT number FROM test WHERE number = 1; `) // check that `test_number_btree_gist_idx` is in the plan const match = res2.rows.filter((row) => row['QUERY PLAN'].includes('test_number_btree_gist_idx'), ) expect(match.length > 0).toBe(true) }) ================================================ FILE: packages/pglite/tests/contrib/citext.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { citext } from '../../dist/contrib/citext.js' it('citext', async () => { const pg = new PGlite({ extensions: { citext, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS citext;') await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name CITEXT ); `) await pg.exec("INSERT INTO test (name) VALUES ('tEsT1');") await pg.exec("INSERT INTO test (name) VALUES ('TeSt2');") await pg.exec("INSERT INTO test (name) VALUES ('TEST3');") const res = await pg.query(` SELECT name FROM test WHERE name = 'test1'; `) expect(res.rows).toEqual([ { name: 'tEsT1', }, ]) }) ================================================ FILE: packages/pglite/tests/contrib/cube.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { cube } from '../../dist/contrib/cube.js' it('cube', async () => { const pg = new PGlite({ extensions: { cube, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS cube;') await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, point CUBE ); `) await pg.exec("INSERT INTO test (point) VALUES ('(1, 2, 3)');") await pg.exec("INSERT INTO test (point) VALUES ('(4, 5, 6)');") await pg.exec("INSERT INTO test (point) VALUES ('(7, 8, 9)');") const res = await pg.query(` SELECT point, point <-> cube(array[1, 2, 3]) AS distance FROM test; `) expect(res.rows).toEqual([ { point: '(1, 2, 3)', distance: 0 }, { point: '(4, 5, 6)', distance: 5.196152422706632 }, { point: '(7, 8, 9)', distance: 10.392304845413264 }, ]) }) ================================================ FILE: packages/pglite/tests/contrib/dict_int.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { dict_int } from '../../dist/contrib/dict_int.js' it('dict_int', async () => { const pg = await PGlite.create({ extensions: { dict_int, }, }) // from dict_int.sql await pg.exec('CREATE EXTENSION IF NOT EXISTS dict_int;') const lexizeResult1 = await pg.query(` select ts_lexize('intdict', '511673'); `) expect(lexizeResult1.rows[0]).toEqual({ ts_lexize: ['511673'], }) const lexizeResult2 = await pg.query(` select ts_lexize('intdict', '129'); `) expect(lexizeResult2.rows[0]).toEqual({ ts_lexize: ['129'], }) const lexizeResult3 = await pg.query(` select ts_lexize('intdict', '40865854'); `) expect(lexizeResult3.rows[0]).toEqual({ ts_lexize: ['408658'], }) }) ================================================ FILE: packages/pglite/tests/contrib/dict_xsyn.test.ts ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { dict_xsyn } from '../../dist/contrib/dict_xsyn.js' it('dict_xsyn', async () => { const pg = await PGlite.create({ extensions: { dict_xsyn, }, }) // from dict_xsyn.sql await pg.exec('CREATE EXTENSION IF NOT EXISTS dict_xsyn;') await pg.exec(` -- default configuration - match first word and return it among with all synonyms ALTER TEXT SEARCH DICTIONARY xsyn (RULES='xsyn_sample', KEEPORIG=true, MATCHORIG=true, KEEPSYNONYMS=true, MATCHSYNONYMS=false); `) const lexizeResult1 = await pg.query(` SELECT ts_lexize('xsyn', 'supernova'); `) expect(lexizeResult1.rows[0]).toEqual({ ts_lexize: ['supernova', 'sn', 'sne', '1987a'], }) const lexizeResult2 = await pg.query(` SELECT ts_lexize('xsyn', 'sn'); `) expect(lexizeResult2.rows[0]).toEqual({ ts_lexize: null, }) const lexizeResult3 = await pg.query(` SELECT ts_lexize('xsyn', 'grb'); `) expect(lexizeResult3.rows[0]).toEqual({ ts_lexize: null, }) }) ================================================ FILE: packages/pglite/tests/contrib/earthdistance.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { cube } from '../../dist/contrib/cube.js' import { earthdistance } from '../../dist/contrib/earthdistance.js' it('earthdistance', async () => { const pg = new PGlite({ extensions: { cube, earthdistance, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS cube;') await pg.exec('CREATE EXTENSION IF NOT EXISTS earthdistance;') await pg.exec(` CREATE TABLE locations ( id SERIAL PRIMARY KEY, name VARCHAR(100), latitude DOUBLE PRECISION, longitude DOUBLE PRECISION ); `) await pg.exec(` INSERT INTO locations (name, latitude, longitude) VALUES ('Location A', 40.7128, -74.0060), -- New York City (nearby point) ('Location B', 40.730610, -73.935242), -- Another point in NYC ('Location C', 34.052235, -118.243683), -- Los Angeles (far away) ('Location D', 40.758896, -73.985130), -- Times Square, NYC ('Location E', 51.507351, -0.127758); -- London (far away) `) const res = await pg.query(` SELECT name, earth_distance( ll_to_earth(40.7128, -74.0060), ll_to_earth(latitude, longitude) ) AS distance FROM locations ORDER BY distance; `) expect(res.rows).toEqual([ { name: 'Location A', distance: 0 }, { name: 'Location D', distance: 5424.971028170555 }, { name: 'Location B', distance: 6290.327117342975 }, { name: 'Location C', distance: 3940171.3340000752 }, { name: 'Location E', distance: 5576493.70395964 }, ]) }) ================================================ FILE: packages/pglite/tests/contrib/file_fdw.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { file_fdw } from '../../dist/contrib/file_fdw.js' it('file_fdw', async () => { const pg = await PGlite.create({ extensions: { file_fdw, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS file_fdw;') await pg.exec('CREATE SERVER file_server FOREIGN DATA WRAPPER file_fdw;') await pg.exec(`CREATE FOREIGN TABLE file_contents (line text) SERVER file_server OPTIONS ( filename '/pglite/bin/postgres', format 'text' );`) const contents = await pg.query(`SELECT * FROM file_contents;`) expect(contents.rows).toEqual([ { line: 'PGlite is the best!', }, ]) }) ================================================ FILE: packages/pglite/tests/contrib/fuzzystrmatch.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { fuzzystrmatch } from '../../dist/contrib/fuzzystrmatch.js' it('fuzzystrmatch', async () => { const pg = new PGlite({ extensions: { fuzzystrmatch, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS fuzzystrmatch;') const res = await pg.query(` SELECT levenshtein('kitten', 'sitting') AS distance; `) expect(res.rows).toEqual([{ distance: 3 }]) const res2 = await pg.query(` SELECT soundex('kitten') AS soundex; `) expect(res2.rows).toEqual([{ soundex: 'K350' }]) }) ================================================ FILE: packages/pglite/tests/contrib/hstore.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { hstore } from '../../dist/contrib/hstore.js' it('hstore', async () => { const pg = new PGlite({ extensions: { hstore, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS hstore;') await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, data HSTORE ); `) await pg.exec('INSERT INTO test (data) VALUES (\'"name" => "test1"\');') await pg.exec('INSERT INTO test (data) VALUES (\'"name" => "test2"\');') await pg.exec('INSERT INTO test (data) VALUES (\'"name" => "test3"\');') const res = await pg.query(` SELECT data::JSONB FROM test WHERE data->'name' = 'test1'; `) expect(res.rows).toEqual([ { data: { name: 'test1', }, }, ]) }) ================================================ FILE: packages/pglite/tests/contrib/intarray.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { intarray } from '../../dist/contrib/intarray.js' it('intarray', async () => { const pg = await PGlite.create({ extensions: { intarray, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS intarray;') await pg.exec(` CREATE TABLE articles ( id SERIAL PRIMARY KEY, title TEXT NOT NULL, tag_ids INTEGER[]);`) await pg.exec(` INSERT INTO articles (title, tag_ids) VALUES ('Postgres Performance Tips', '{1,2,3}'), ('Introduction to SQL', '{2,4}'), ('Advanced intarray Usage', '{1,3,5}'), ('Database Normalization', '{4,6}');`) const titleTags25 = await pg.query(` SELECT title, tag_ids FROM articles WHERE tag_ids && '{2,5}'::integer[];`) expect(titleTags25.rows).toEqual([ { title: 'Postgres Performance Tips', tag_ids: [1, 2, 3], }, { title: 'Introduction to SQL', tag_ids: [2, 4], }, { title: 'Advanced intarray Usage', tag_ids: [1, 3, 5], }, ]) const titleTags12 = await pg.query(` SELECT title, tag_ids FROM articles WHERE tag_ids @> '{1,2}'::integer[];`) expect(titleTags12.rows).toEqual([ { title: 'Postgres Performance Tips', tag_ids: [1, 2, 3], }, ]) const titleTags1235 = await pg.query(` SELECT title, tag_ids FROM articles WHERE tag_ids <@ '{1,2,3,5}'::integer[];`) expect(titleTags1235.rows).toEqual([ { title: 'Postgres Performance Tips', tag_ids: [1, 2, 3], }, { title: 'Advanced intarray Usage', tag_ids: [1, 3, 5], }, ]) const queryInt = await pg.query(` SELECT title, tag_ids FROM articles WHERE tag_ids @@ '1 & (3|4)'::query_int;`) expect(queryInt.rows).toEqual([ { title: 'Postgres Performance Tips', tag_ids: [1, 2, 3], }, { title: 'Advanced intarray Usage', tag_ids: [1, 3, 5], }, ]) }) ================================================ FILE: packages/pglite/tests/contrib/isn.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { isn } from '../../dist/contrib/isn.js' it('bloom', async () => { const pg = new PGlite({ extensions: { isn, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS isn;') const ret1 = await pg.query("SELECT isbn('978-0-393-04002-9');") expect(ret1.rows).toEqual([ { isbn: '0-393-04002-X', }, ]) const ret2 = await pg.query("SELECT isbn13('0901690546');") expect(ret2.rows).toEqual([ { isbn13: '978-0-901690-54-8', }, ]) const ret3 = await pg.query("SELECT issn('1436-4522');") expect(ret3.rows).toEqual([ { issn: '1436-4522', }, ]) await pg.exec(` CREATE TABLE test (id isbn); INSERT INTO test VALUES('9780393040029'); `) const ret4 = await pg.query('SELECT * FROM test;') expect(ret4.rows).toEqual([ { id: '0-393-04002-X', }, ]) }) ================================================ FILE: packages/pglite/tests/contrib/lo.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { lo } from '../../dist/contrib/lo.js' it('lo', async () => { const pg = new PGlite({ extensions: { lo, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS lo;') await pg.exec(` CREATE TABLE test (id SERIAL PRIMARY KEY, data OID); `) await pg.exec(` CREATE TRIGGER test_data_lo BEFORE UPDATE OR DELETE ON test FOR EACH ROW EXECUTE FUNCTION lo_manage(data); `) const text = 'hello world' const blob = new Blob([text], { type: 'text/plain' }) await pg.query( ` INSERT INTO test (data) VALUES (lo_import('/dev/blob')); `, [], { blob, }, ) const res = await pg.query(` SELECT lo_export(data, '/dev/blob') AS data FROM test; `) const data = res.blob const asText = await data.text() expect(asText).toBe(text) await pg.query(` DELETE FROM test; `) }) ================================================ FILE: packages/pglite/tests/contrib/ltree.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { ltree } from '../../dist/contrib/ltree.js' it('ltree', async () => { const pg = new PGlite({ extensions: { ltree, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS ltree;') await pg.exec(` CREATE TABLE test (path ltree); INSERT INTO test VALUES ('Top'); INSERT INTO test VALUES ('Top.Science'); INSERT INTO test VALUES ('Top.Science.Astronomy'); INSERT INTO test VALUES ('Top.Science.Astronomy.Astrophysics'); INSERT INTO test VALUES ('Top.Science.Astronomy.Cosmology'); INSERT INTO test VALUES ('Top.Hobbies'); INSERT INTO test VALUES ('Top.Hobbies.Amateurs_Astronomy'); INSERT INTO test VALUES ('Top.Collections'); INSERT INTO test VALUES ('Top.Collections.Pictures'); INSERT INTO test VALUES ('Top.Collections.Pictures.Astronomy'); INSERT INTO test VALUES ('Top.Collections.Pictures.Astronomy.Stars'); INSERT INTO test VALUES ('Top.Collections.Pictures.Astronomy.Galaxies'); INSERT INTO test VALUES ('Top.Collections.Pictures.Astronomy.Astronauts'); CREATE INDEX path_gist_idx ON test USING GIST (path); CREATE INDEX path_idx ON test USING BTREE (path); `) const ret = await pg.query(` SELECT path FROM test WHERE path <@ 'Top.Science'; `) expect(ret.rows).toEqual([ { path: 'Top.Science' }, { path: 'Top.Science.Astronomy' }, { path: 'Top.Science.Astronomy.Astrophysics' }, { path: 'Top.Science.Astronomy.Cosmology' }, ]) }) ================================================ FILE: packages/pglite/tests/contrib/pageinspect.test.js ================================================ import { it } from 'vitest' import { PGlite } from '../../dist/index.js' import { pageinspect } from '../../dist/contrib/pageinspect.js' it('pageinspect', async () => { const pg = await PGlite.create({ extensions: { pageinspect, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pageinspect;') await pg.exec(` CREATE TABLE pageinspect_test ( id serial PRIMARY KEY, name text, value integer); `) await pg.exec(`INSERT INTO pageinspect_test (name, value) SELECT 'row_' || g, (random() * 100)::int FROM generate_series(1, 5) AS g;`) await pg.exec('CHECKPOINT;') await pg.query(` SELECT relfilenode, relname FROM pg_class WHERE relname = 'pageinspect_test'; `) await pg.query(` SELECT * FROM heap_page_items(get_raw_page('pageinspect_test', 0)); `) await pg.query(` SELECT * FROM page_header(get_raw_page('pageinspect_test', 0)); `) await pg.query(` SELECT * FROM pageinspect_test ORDER BY id; `) }) ================================================ FILE: packages/pglite/tests/contrib/pg_buffercache.test.js ================================================ import { expect, it } from 'vitest' import { PGlite } from '../../dist/index.js' import { pg_buffercache } from '../../dist/contrib/pg_buffercache.js' it('pg_buffercache', async () => { const pg = await PGlite.create({ extensions: { pg_buffercache, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_buffercache;') const buffers = await pg.query(` SELECT n.nspname, c.relname, count(*) AS buffers FROM pg_buffercache b JOIN pg_class c ON b.relfilenode = pg_relation_filenode(c.oid) AND b.reldatabase IN (0, (SELECT oid FROM pg_database WHERE datname = current_database())) JOIN pg_namespace n ON n.oid = c.relnamespace GROUP BY n.nspname, c.relname ORDER BY 3 DESC LIMIT 10; `) expect(buffers.rows.length).toEqual(10) const bufferCacheSummary = await pg.query( `SELECT * FROM pg_buffercache_summary();`, ) expect(bufferCacheSummary.rows.length).toEqual(1) await pg.query(`SELECT * FROM pg_buffercache_usage_counts();`) }) ================================================ FILE: packages/pglite/tests/contrib/pg_freespacemap.test.ts ================================================ import { expect, it } from 'vitest' import { PGlite } from '../../dist/index.js' import { pg_freespacemap } from '../../dist/contrib/pg_freespacemap.js' it('pg_freespacemap', async () => { const pg = await PGlite.create({ extensions: { pg_freespacemap, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_freespacemap;') await pg.exec(` CREATE TABLE test_fsm(id serial PRIMARY KEY, data text); INSERT INTO test_fsm (data) SELECT repeat('x', 100) FROM generate_series(1, 1000); DELETE FROM test_fsm WHERE id <= 500; `) const freeSpace = await pg.query(` SELECT * FROM pg_freespace('test_fsm'); `) expect(freeSpace.rows.length).toBeGreaterThan(0) const freeSpace0 = await pg.query(` SELECT pg_freespace('test_fsm', 0); `) expect(freeSpace0.rows.length).toBeGreaterThan(0) }) ================================================ FILE: packages/pglite/tests/contrib/pg_surgery.test.js ================================================ import { it } from 'vitest' import { PGlite } from '../../dist/index.js' import { pg_surgery } from '../../dist/contrib/pg_surgery.js' it('pg_surgery', async () => { const pg = await PGlite.create({ extensions: { pg_surgery, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_surgery;') // unsure how to test this extension }) ================================================ FILE: packages/pglite/tests/contrib/pg_trgm.test.js ================================================ import { describe, it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { pg_trgm } from '../../dist/contrib/pg_trgm.js' describe('pg_trgm', () => { it('gin', async () => { const pg = new PGlite({ extensions: { pg_trgm, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_trgm;') await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); CREATE INDEX IF NOT EXISTS test_name_trgm_idx ON test USING gin (name gin_trgm_ops); `) await pg.exec("INSERT INTO test (name) VALUES ('test1');") await pg.exec("INSERT INTO test (name) VALUES ('test2');") await pg.exec("INSERT INTO test (name) VALUES ('text3');") const res = await pg.query(` SELECT name, name % 'test' AS similarity, name <-> 'test' AS distance FROM test; `) expect(res.rows).toEqual([ { name: 'test1', similarity: true, distance: 0.4285714, }, { name: 'test2', similarity: true, distance: 0.4285714, }, { name: 'text3', similarity: false, distance: 0.7777778, }, ]) const res2 = await pg.query(` SELECT name FROM test WHERE name % 'test'; `) expect(res2.rows).toEqual([ { name: 'test1', }, { name: 'test2', }, ]) }) it('gist', async () => { const pg = new PGlite({ extensions: { pg_trgm, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_trgm;') await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); CREATE INDEX IF NOT EXISTS test_name_trgm_idx ON test USING gist (name gist_trgm_ops); `) await pg.exec("INSERT INTO test (name) VALUES ('test1');") await pg.exec("INSERT INTO test (name) VALUES ('test2');") await pg.exec("INSERT INTO test (name) VALUES ('text3');") const res = await pg.query(` SELECT name, name % 'test' AS similarity, name <-> 'test' AS distance FROM test; `) expect(res.rows).toEqual([ { name: 'test1', similarity: true, distance: 0.4285714, }, { name: 'test2', similarity: true, distance: 0.4285714, }, { name: 'text3', similarity: false, distance: 0.7777778, }, ]) const res2 = await pg.query(` SELECT name FROM test WHERE name % 'test'; `) expect(res2.rows).toEqual([ { name: 'test1', }, { name: 'test2', }, ]) }) }) ================================================ FILE: packages/pglite/tests/contrib/pg_visibility.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { pg_visibility } from '../../dist/contrib/pg_visibility.js' it('pg_visibility', async () => { const pg = await PGlite.create({ extensions: { pg_visibility, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_visibility;') await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await pg.exec(` INSERT INTO test (name) VALUES ('test'); UPDATE test SET name = 'test2'; SELECT * FROM test; `) const visible = await pg.query(` -- Show all invisible tuples in a specific table using pg_visibility SELECT * FROM pg_visibility('test') WHERE all_visible = false; `) expect(visible.rows).toEqual([ { blkno: 0, all_visible: false, all_frozen: false, pd_all_visible: false, }, ]) const visibilityMap = await pg.query(` -- Check visibility map status for a table SELECT * FROM pg_visibility_map('test'); `) expect(visibilityMap.rows).toEqual([ { blkno: 0, all_visible: false, all_frozen: false, }, ]) const frozen = await pg.query(` -- Find pages with all-frozen tuples SELECT * FROM pg_visibility('test') WHERE all_frozen = true; `) expect(frozen.rows).toEqual([]) }) ================================================ FILE: packages/pglite/tests/contrib/pg_walinspect.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { pg_walinspect } from '../../dist/contrib/pg_walinspect.js' it('pg_walinspect', async () => { const pg = await PGlite.create({ extensions: { pg_walinspect, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_walinspect;') await pg.exec(` CREATE TABLE test_wal ( id SERIAL PRIMARY KEY, data TEXT ); `) const blsn = await pg.query(` SELECT pg_current_wal_lsn() AS before_lsn; `) await pg.exec(` INSERT INTO test_wal(data) SELECT 'row ' || generate_series::text FROM generate_series(1,5); `) const alsn = await pg.query(` SELECT pg_current_wal_lsn() AS after_lsn; `) const _blsn = blsn.rows[0].before_lsn const _alsn = alsn.rows[0].after_lsn const infos = await pg.query( ` SELECT * FROM pg_get_wal_block_info($1, $2) ORDER BY start_lsn, block_id LIMIT 200;`, [_blsn, _alsn], ) expect(infos.rows.length).toBeGreaterThan(0) }) ================================================ FILE: packages/pglite/tests/contrib/pgcrypto.test.js ================================================ import { describe, it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { pgcrypto } from '../../dist/contrib/pgcrypto.js' import * as openpgp from 'openpgp' describe('pg_pgcryptotrgm', () => { it('digest', async () => { const pg = new PGlite({ extensions: { pgcrypto, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;') const res = await pg.query( "SELECT encode(digest(convert_to('test', 'UTF8'), 'sha1'), 'hex') as value;", ) expect(res.rows[0].value, 'a94a8fe5ccb19ba61c4c0873d391e987982fbbd3') }) it('hmac', async () => { const pg = new PGlite({ extensions: { pgcrypto, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;') const res = await pg.query( "SELECT encode(hmac(convert_to('test', 'UTF8'), convert_to('key', 'UTF8'), 'sha1'), 'hex') as value;", ) expect(res.rows[0].value).toEqual( '671f54ce0c540f78ffe1e26dcf9c2a047aea4fda', ) }) it('crypt', async () => { const pg = new PGlite({ extensions: { pgcrypto, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;') const res = await pg.query("SELECT crypt('test', gen_salt('bf')) as value;") expect(res.rows[0].value.length).toEqual(60) }) it('gen_salt', async () => { const pg = new PGlite({ extensions: { pgcrypto, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;') const res = await pg.query("SELECT gen_salt('bf') as value;") expect(res.rows[0].value.length).toEqual(29) }) it('armor', async () => { const pg = new PGlite({ extensions: { pgcrypto, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;') const res = await pg.query("SELECT armor(digest('test', 'sha1')) as value;") expect(res.rows[0].value).toContain('-----BEGIN PGP MESSAGE-----') expect(res.rows[0].value).toContain('-----END PGP MESSAGE-----') }) it('pgp_sym_encrypt and pgp_sym_decrypt', async () => { const pg = new PGlite({ extensions: { pgcrypto, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;') const res = await pg.query( "SELECT pgp_sym_encrypt('test', 'key') as value;", ) const encrypted = res.rows[0].value const res2 = await pg.query("SELECT pgp_sym_decrypt($1, 'key') as value;", [ encrypted, ]) expect(res2.rows[0].value).toEqual('test') }) it('pgp_pub_encrypt and pgp_pub_decrypt', async () => { const pg = new PGlite({ extensions: { pgcrypto, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;') const { privateKey, publicKey } = await openpgp.generateKey({ type: 'rsa', rsaBits: 2048, userIDs: [{ name: 'PGlite', email: 'hello@pglite.dev' }], passphrase: '', }) const toEncrypt = 'PGlite@$#%!^$&*WQFgjqPkVERewfreg094340f1012-=' const e2 = await pg.exec( ` WITH encrypted AS ( SELECT pgp_pub_encrypt('${toEncrypt}', dearmor('${publicKey}')) AS encrypted ) SELECT pgp_pub_decrypt(encrypted, dearmor('${privateKey}')) as decrypted_output FROM encrypted; `, ) expect(e2[0].rows[0].decrypted_output, toEncrypt) }) it('pgp_key_id', async () => { const pg = new PGlite({ extensions: { pgcrypto, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;') const { publicKey } = await openpgp.generateKey({ type: 'rsa', rsaBits: 2048, userIDs: [{ name: 'PGlite', email: 'hello@pglite.dev' }], passphrase: '', }) const res = await pg.query( `SELECT pgp_key_id(dearmor('${publicKey}')) as value;`, ) // pgp_key_id returns a 16-character hex string expect(res.rows[0].value).toHaveLength(16) expect(res.rows[0].value).toMatch(/^[0-9A-F]+$/) }) it('pgp_armor_headers', async () => { const pg = new PGlite({ extensions: { pgcrypto, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;') // Create armored data with headers const res = await pg.query( `SELECT armor(digest('test', 'sha1'), ARRAY['key1'], ARRAY['value1']) as armored;`, ) const armored = res.rows[0].armored const res2 = await pg.query(`SELECT * FROM pgp_armor_headers($1);`, [ armored, ]) expect(res2.rows).toContainEqual({ key: 'key1', value: 'value1' }) }) it('encrypt and decrypt', async () => { const pg = new PGlite({ extensions: { pgcrypto, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;') const res = await pg.query( `SELECT encrypt('test data'::bytea, 'secret key'::bytea, 'aes') as encrypted;`, ) const encrypted = res.rows[0].encrypted const res2 = await pg.query( `SELECT convert_from(decrypt($1, 'secret key'::bytea, 'aes'), 'UTF8') as decrypted;`, [encrypted], ) expect(res2.rows[0].decrypted).toEqual('test data') }) it('encrypt_iv and decrypt_iv', async () => { const pg = new PGlite({ extensions: { pgcrypto, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;') // AES block size is 16 bytes, so IV must be 16 bytes const iv = '1234567890123456' const res = await pg.query( `SELECT encrypt_iv('test data'::bytea, 'secret key'::bytea, '${iv}'::bytea, 'aes') as encrypted;`, ) const encrypted = res.rows[0].encrypted const res2 = await pg.query( `SELECT convert_from(decrypt_iv($1, 'secret key'::bytea, '${iv}'::bytea, 'aes'), 'UTF8') as decrypted;`, [encrypted], ) expect(res2.rows[0].decrypted).toEqual('test data') }) it('gen_random_bytes', async () => { const pg = new PGlite({ extensions: { pgcrypto, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;') const res = await pg.query( `SELECT length(gen_random_bytes(32)) as len, encode(gen_random_bytes(16), 'hex') as bytes;`, ) expect(res.rows[0].len).toEqual(32) // 16 bytes = 32 hex characters expect(res.rows[0].bytes).toHaveLength(32) }) it('gen_random_uuid', async () => { const pg = new PGlite({ extensions: { pgcrypto, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;') const res = await pg.query(`SELECT gen_random_uuid() as uuid;`) // UUID format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx expect(res.rows[0].uuid).toMatch( /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/, ) }) }) ================================================ FILE: packages/pglite/tests/contrib/seg.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { seg } from '../../dist/contrib/seg.js' it('seg', async () => { const pg = new PGlite({ extensions: { seg, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS seg;') const ret = await pg.query(`SELECT '6.25 .. 6.50'::seg AS "pH"`) expect(ret.rows).toEqual([{ pH: '6.25 .. 6.50' }]) const ret2 = await pg.query(`SELECT '7(+-)1'::seg AS "set"`) expect(ret2.rows).toEqual([{ set: '6 .. 8' }]) }) ================================================ FILE: packages/pglite/tests/contrib/tablefunc.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { tablefunc } from '../../dist/contrib/tablefunc.js' it('tablefunc', async () => { const pg = new PGlite({ extensions: { tablefunc, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS tablefunc;') const ret = await pg.query(`SELECT * FROM normal_rand(10, 5, 3)`) expect(ret.rows.length).toEqual(10) await pg.exec(` CREATE TABLE ct(id SERIAL, rowid TEXT, attribute TEXT, value TEXT); INSERT INTO ct(rowid, attribute, value) VALUES('test1','att1','val1'); INSERT INTO ct(rowid, attribute, value) VALUES('test1','att2','val2'); INSERT INTO ct(rowid, attribute, value) VALUES('test1','att3','val3'); INSERT INTO ct(rowid, attribute, value) VALUES('test1','att4','val4'); INSERT INTO ct(rowid, attribute, value) VALUES('test2','att1','val5'); INSERT INTO ct(rowid, attribute, value) VALUES('test2','att2','val6'); INSERT INTO ct(rowid, attribute, value) VALUES('test2','att3','val7'); INSERT INTO ct(rowid, attribute, value) VALUES('test2','att4','val8'); `) const ret2 = await pg.query(` SELECT * FROM crosstab( 'select rowid, attribute, value from ct where attribute = ''att2'' or attribute = ''att3'' order by 1,2') AS ct(row_name text, category_1 text, category_2 text, category_3 text); `) expect(ret2.rows).toEqual([ { row_name: 'test1', category_1: 'val2', category_2: 'val3', category_3: null, }, { row_name: 'test2', category_1: 'val6', category_2: 'val7', category_3: null, }, ]) }) ================================================ FILE: packages/pglite/tests/contrib/tcn.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { tcn } from '../../dist/contrib/tcn.js' it('tcn', async () => { const pg = new PGlite({ extensions: { tcn, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS tcn;') await pg.exec(` CREATE TABLE test ( id SERIAL PRIMARY KEY, name TEXT ); CREATE TRIGGER test_tcn AFTER INSERT OR UPDATE OR DELETE ON test FOR EACH ROW EXECUTE FUNCTION triggered_change_notification(); `) pg.listen('tcn', (payload) => { expect(payload).toBe(`"test",I,"id"='1'`) }) await pg.exec("INSERT INTO test (name) VALUES ('test1');") }) ================================================ FILE: packages/pglite/tests/contrib/tsm_system_rows.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { tsm_system_rows } from '../../dist/contrib/tsm_system_rows.js' it('tsm_system_rows', async () => { const pg = new PGlite({ extensions: { tsm_system_rows, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS tsm_system_rows;') // crate test table with 10 rows await pg.exec(` CREATE TABLE test ( id SERIAL PRIMARY KEY, name TEXT ); `) await pg.exec(` INSERT INTO test (name) SELECT 'test' || i FROM generate_series(1, 10) AS i; `) // sample 5 rows const res = await pg.query(` SELECT * FROM test TABLESAMPLE SYSTEM_ROWS(5); `) expect(res.rows.length).toBe(5) }) ================================================ FILE: packages/pglite/tests/contrib/tsm_system_time.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { tsm_system_time } from '../../dist/contrib/tsm_system_time.js' it('tsm_system_time', async () => { const pg = new PGlite({ extensions: { tsm_system_time, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS tsm_system_time;') // crate test table with 10 rows await pg.exec(` CREATE TABLE test ( id SERIAL PRIMARY KEY, name TEXT ); `) await pg.exec(` INSERT INTO test (name) SELECT 'test' || i FROM generate_series(1, 10) AS i; `) // sample 5 rows const res = await pg.query(` SELECT * FROM test TABLESAMPLE SYSTEM_TIME(50); `) expect(res.rows.length).toBe(10) }) ================================================ FILE: packages/pglite/tests/contrib/unaccent.test.js ================================================ import { it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { unaccent } from '../../dist/contrib/unaccent.js' it('unaccent', async () => { const pg = new PGlite({ extensions: { unaccent, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS unaccent;') const result = await pg.query(`select ts_lexize('unaccent','Hôtel');`) expect(result.rows).toEqual([ { ts_lexize: ['Hotel'], }, ]) }) ================================================ FILE: packages/pglite/tests/contrib/uuid_ossp.test.js ================================================ import { describe, it, expect } from 'vitest' import { PGlite } from '../../dist/index.js' import { uuid_ossp } from '../../dist/contrib/uuid_ossp.js' describe('uuid_ossp', () => { it('uuid_generate_v1', async () => { const pg = new PGlite({ extensions: { uuid_ossp, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS "uuid-ossp";') const res = await pg.query('SELECT uuid_generate_v1() as value;') expect(res.rows[0].value.length).toBe(36) }) it('uuid_generate_v3', async () => { const pg = new PGlite({ extensions: { uuid_ossp, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS "uuid-ossp";') const res = await pg.query( "SELECT uuid_generate_v3(uuid_ns_dns(), 'www.example.com') as value;", ) expect(res.rows[0].value.length).toBe(36) }) it('uuid_generate_v4', async () => { const pg = new PGlite({ extensions: { uuid_ossp, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS "uuid-ossp";') const res = await pg.query('SELECT uuid_generate_v4() as value;') expect(res.rows[0].value.length).toBe(36) }) it('uuid_generate_v5', async () => { const pg = new PGlite({ extensions: { uuid_ossp, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS "uuid-ossp";') const res = await pg.query( "SELECT uuid_generate_v5(uuid_ns_dns(), 'www.example.com') as value;", ) expect(res.rows[0].value.length).toBe(36) }) it('uuid_nil', async () => { const pg = new PGlite({ extensions: { uuid_ossp, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS "uuid-ossp";') const res = await pg.query('SELECT uuid_nil() as value;') expect(res.rows[0].value).toBe('00000000-0000-0000-0000-000000000000') }) it('uuid_ns_dns', async () => { const pg = new PGlite({ extensions: { uuid_ossp, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS "uuid-ossp";') const res = await pg.query('SELECT uuid_ns_dns() as value;') expect(res.rows[0].value).toBe('6ba7b810-9dad-11d1-80b4-00c04fd430c8') }) it('uuid_ns_oid', async () => { const pg = new PGlite({ extensions: { uuid_ossp, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS "uuid-ossp";') const res = await pg.query('SELECT uuid_ns_oid() as value;') expect(res.rows[0].value).toBe('6ba7b812-9dad-11d1-80b4-00c04fd430c8') }) }) ================================================ FILE: packages/pglite/tests/describe-query.test.ts ================================================ import { test, expect } from 'vitest' import { PGlite } from '../dist/index.js' test('describeQuery returns parameter and result types', async () => { const db = await PGlite.create() await db.query(` CREATE TABLE users ( id INTEGER PRIMARY KEY, name TEXT, age INTEGER, active BOOLEAN ) `) const description = await db.describeQuery( 'SELECT name, age FROM users WHERE id = $1 AND active = $2', ) // Check parameter types expect(description.queryParams).toHaveLength(2) expect(description.queryParams[0].dataTypeID).toBe(23) // INTEGER expect(description.queryParams[1].dataTypeID).toBe(16) // BOOLEAN expect(description.queryParams[0].serializer).toBeDefined() expect(description.queryParams[1].serializer).toBeDefined() // Check result field types expect(description.resultFields).toHaveLength(2) expect(description.resultFields[0].name).toBe('name') expect(description.resultFields[0].dataTypeID).toBe(25) // TEXT expect(description.resultFields[1].name).toBe('age') expect(description.resultFields[1].dataTypeID).toBe(23) // INTEGER expect(description.resultFields[0].parser).toBeDefined() expect(description.resultFields[1].parser).toBeDefined() }) test('describeQuery handles queries with no parameters or results', async () => { const db = await PGlite.create() const description = await db.describeQuery('SELECT 1') expect(description.queryParams).toHaveLength(0) expect(description.resultFields).toHaveLength(1) expect(description.resultFields[0].dataTypeID).toBe(23) // INTEGER }) test('describeQuery handles INSERT queries', async () => { const db = await PGlite.create() await db.query(` CREATE TABLE test ( id INTEGER PRIMARY KEY, value TEXT ) `) const description = await db.describeQuery( 'INSERT INTO test (id, value) VALUES ($1, $2)', ) expect(description.queryParams).toHaveLength(2) expect(description.queryParams[0].dataTypeID).toBe(23) // INTEGER expect(description.queryParams[1].dataTypeID).toBe(25) // TEXT expect(description.resultFields).toHaveLength(0) // INSERT typically returns no fields }) test('describeQuery handles invalid queries', async () => { const db = await PGlite.create() await expect( db.describeQuery('SELECT * FROM nonexistent_table'), ).rejects.toThrow(/relation "nonexistent_table" does not exist/) }) ================================================ FILE: packages/pglite/tests/drop-database.test.ts ================================================ import { describe, it, expect } from 'vitest' import { PGlite } from '../dist/index.js' import * as fs from 'fs/promises' describe('drop database', () => { it('should create and drop database', async () => { const pg = await PGlite.create() await pg.exec(` CREATE DATABASE mypostgres TEMPLATE template1; `) await pg.exec(` DROP DATABASE mypostgres; `) }) it('should drop postgres db and create from postgres', async () => { await fs.rm('./pgdata-test-drop-db', { force: true, recursive: true }) const pg = await PGlite.create('./pgdata-test-drop-db') await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await pg.exec("INSERT INTO test (name) VALUES ('test');") await pg.exec(` DROP DATABASE IF EXISTS mypostgres; `) await pg.exec(` CREATE DATABASE mypostgres TEMPLATE postgres; `) await pg.close() const pg2 = await PGlite.create('./pgdata-test-drop-db', { database: 'mypostgres', }) const ret = await pg2.query(` SELECT * FROM test; `) expect(ret.rows).toEqual([{ id: 1, name: 'test' }]) }) it('should drop postgres db and restart after unclean shutdown', async () => { await fs.rm('./pgdata-test-drop-db2', { force: true, recursive: true }) { let pg: PGlite | null = await PGlite.create('./pgdata-test-drop-db2') await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await pg.exec("INSERT INTO test (name) VALUES ('test');") await pg.exec(` DROP DATABASE IF EXISTS mypostgres; `) await pg.exec(` CREATE DATABASE mypostgres TEMPLATE template1; `) // we don't close pg here on purpose pg = null } // pause for a bit for GC... await new Promise((resolve) => setTimeout(resolve, 10)) const pg2 = await PGlite.create('./pgdata-test-drop-db2', { database: 'postgres', }) const ret = await pg2.query(` SELECT * FROM test; `) expect(ret.rows).toEqual([{ id: 1, name: 'test' }]) }) }) ================================================ FILE: packages/pglite/tests/dump.test.js ================================================ import { describe, it, expect } from 'vitest' import { PGlite } from '../dist/index.js' import * as fs from 'fs/promises' describe('dump', () => { it('dump data dir and load it', async () => { const pg1 = new PGlite() await pg1.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) pg1.exec("INSERT INTO test (name) VALUES ('test');") const ret1 = await pg1.query('SELECT * FROM test;') const file = await pg1.dumpDataDir() expect(typeof file).toBe('object') const pg2 = new PGlite({ loadDataDir: file, }) const ret2 = await pg2.query('SELECT * FROM test;') expect(ret1).toEqual(ret2) }) it('dump persisted data dir and load it', async () => { const folderPath = './pgdata-test-dump' await fs.rm(folderPath, { force: true, recursive: true }) const pg1 = new PGlite(folderPath) await pg1.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) pg1.exec("INSERT INTO test (name) VALUES ('test');") const ret1 = await pg1.query('SELECT * FROM test;') const file = await pg1.dumpDataDir() expect(typeof file).toBe('object') const pg2 = new PGlite({ loadDataDir: file, }) const ret2 = await pg2.query('SELECT * FROM test;') expect(ret1).toEqual(ret2) await pg1.close() await pg2.close() }) it('dump data dir and load it no compression', async () => { const pg1 = new PGlite() await pg1.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) pg1.exec("INSERT INTO test (name) VALUES ('test');") const ret1 = await pg1.query('SELECT * FROM test;') const file = await pg1.dumpDataDir('none') expect(typeof file).toBe('object') expect(file.type).toBe('application/x-tar') const pg2 = new PGlite({ loadDataDir: file, }) const ret2 = await pg2.query('SELECT * FROM test;') expect(ret1).toEqual(ret2) }) it('dump data dir and load it - compressed but not specified', async () => { const pg1 = new PGlite() await pg1.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) pg1.exec("INSERT INTO test (name) VALUES ('test');") const ret1 = await pg1.query('SELECT * FROM test;') const file = await pg1.dumpDataDir() // remove the mime type from the file const file2 = new Blob([file]) expect(typeof file2).toBe('object') const pg2 = new PGlite({ loadDataDir: file2, }) const ret2 = await pg2.query('SELECT * FROM test;') expect(ret1).toEqual(ret2) }) }) ================================================ FILE: packages/pglite/tests/exec-protocol.test.ts ================================================ import { describe, it, expect, beforeAll, afterAll } from 'vitest' import { PGlite } from '../dist/index.js' import { serialize } from '@electric-sql/pg-protocol' describe('exec protocol', () => { let db: PGlite beforeAll(async () => { db = await PGlite.create() }) afterAll(async () => { await db.close() }) it('should perform a simple query', async () => { const result = await db.execProtocol(serialize.query('SELECT 1')) const messageNames = result.messages.map((msg) => msg.name) expect(messageNames).toEqual([ 'rowDescription', 'dataRow', 'commandComplete', 'readyForQuery', ]) expect(result.data.length).toEqual(66) }) it('should perform an extended query', async () => { const r1 = await db.execProtocol(serialize.parse({ text: 'SELECT $1' })) const messageNames1 = r1.messages.map((msg) => msg.name) expect(messageNames1).toEqual([ // 'notice', 'parseComplete', // 'readyForQuery' ]) const r2 = await db.execProtocol(serialize.bind({ values: ['1'] })) const messageNames2 = r2.messages.map((msg) => msg.name) expect(messageNames2).toEqual([ // 'notice', 'bindComplete', ]) const r3 = await db.execProtocol(serialize.describe({ type: 'P' })) const messageNames3 = r3.messages.map((msg) => msg.name) expect(messageNames3).toEqual(['rowDescription']) const r4 = await db.execProtocol(serialize.execute({})) const messageNames4 = r4.messages.map((msg) => msg.name) expect(messageNames4).toEqual(['dataRow', 'commandComplete']) const r5 = await db.execProtocol(serialize.sync()) const messageNames5 = r5.messages.map((msg) => msg.name) expect(messageNames5).toEqual(['readyForQuery']) }) it('should handle error', async () => { const result = await db.execProtocol(serialize.query('invalid sql'), { throwOnError: false, }) const messageNames = result.messages.map((msg) => msg.name) expect(messageNames).toEqual(['error', 'readyForQuery']) }) it('should throw error', async () => { await expect( db.execProtocol(serialize.query('invalid sql')), ).rejects.toThrow() }) }) ================================================ FILE: packages/pglite/tests/format.test.js ================================================ import { describe, beforeAll, it, expect } from 'vitest' import { PGlite, formatQuery } from '../dist/index.js' describe('format', () => { let pg beforeAll(async () => { pg = await PGlite.create() }) it('boolean', async () => { await pg.exec(` CREATE TABLE test1 ( id SERIAL PRIMARY KEY, value BOOLEAN ); `) const ret1 = await formatQuery( pg, 'SELECT * FROM test1 WHERE value = $1;', [true], ) expect(ret1).toBe("SELECT * FROM test1 WHERE value = 't';") }) it('number', async () => { await pg.exec(` CREATE TABLE test2 ( id SERIAL PRIMARY KEY, value INTEGER ); `) const ret2 = await formatQuery( pg, 'SELECT * FROM test2 WHERE value = $1;', [1], ) expect(ret2).toBe("SELECT * FROM test2 WHERE value = '1';") }) it('string', async () => { await pg.exec(` CREATE TABLE test3 ( id SERIAL PRIMARY KEY, value VARCHAR ); `) const ret3 = await formatQuery( pg, 'SELECT * FROM test3 WHERE value = $1;', ['test'], ) expect(ret3).toBe("SELECT * FROM test3 WHERE value = 'test';") }) it('json', async () => { await pg.exec(` CREATE TABLE test4 ( id SERIAL PRIMARY KEY, value JSONB ); `) const ret4 = await formatQuery( pg, 'SELECT * FROM test4 WHERE value = $1;', [{ test: 'test' }], ) expect(ret4).toBe('SELECT * FROM test4 WHERE value = \'{"test": "test"}\';') }) }) ================================================ FILE: packages/pglite/tests/fts.english.test.js ================================================ import { describe, it, expect } from 'vitest' import { PGlite } from '../dist/index.js' /* function lc_init(db, lang) { // TODO: check if 'SELECT dictname FROM pg_catalog.pg_ts_dict;' has the lang db.exec(` SET search_path = pg_catalog; CREATE FUNCTION dsnowball_init(INTERNAL) RETURNS INTERNAL AS '$libdir/dict_snowball', 'dsnowball_init' LANGUAGE C STRICT; CREATE FUNCTION dsnowball_lexize(INTERNAL, INTERNAL, INTERNAL, INTERNAL) RETURNS INTERNAL AS '$libdir/dict_snowball', 'dsnowball_lexize' LANGUAGE C STRICT; CREATE TEXT SEARCH TEMPLATE snowball (INIT = dsnowball_init, LEXIZE = dsnowball_lexize); COMMENT ON TEXT SEARCH TEMPLATE snowball IS 'snowball stemmer'; `) db.exec(` CREATE TEXT SEARCH DICTIONARY ${lang}_stem (TEMPLATE = snowball, Language = ${lang} , StopWords=${lang}); COMMENT ON TEXT SEARCH DICTIONARY ${lang}_stem IS 'snowball stemmer for ${lang} language'; CREATE TEXT SEARCH CONFIGURATION ${lang} (PARSER = default); COMMENT ON TEXT SEARCH CONFIGURATION ${lang} IS 'configuration for ${lang} language'; ALTER TEXT SEARCH CONFIGURATION ${lang} ADD MAPPING FOR email, url, url_path, host, file, version, sfloat, float, int, uint, numword, hword_numpart, numhword WITH simple; ALTER TEXT SEARCH CONFIGURATION ${lang} ADD MAPPING FOR asciiword, hword_asciipart, asciihword WITH ${lang}_stem; ALTER TEXT SEARCH CONFIGURATION ${lang} ADD MAPPING FOR word, hword_part, hword WITH ${lang}_stem; `) } */ describe('fts', () => { it('basic', async () => { const db = await PGlite.create() // lc_init(db, "english") let ret = await db.query(` SELECT 'a fat cat sat on a mat and ate a fat rat'::tsvector @@ 'cat & rat'::tsquery AS match; `) expect(ret.rows).toEqual([{ match: true }]) ret = await db.query(` SELECT to_tsvector('english', 'fat cats ate fat rats') @@ to_tsquery('english', 'fat & rat') AS match; `) expect(ret.rows).toEqual([{ match: true }]) ret = await db.query(` SELECT to_tsquery('english', 'The & Fat & Rats') as value; `) expect(ret.rows).toEqual([{ value: "'fat' & 'rat'" }]) ret = await db.query(` SELECT to_tsquery('english', 'Fat | Rats:AB') as value; `) expect(ret.rows).toEqual([{ value: "'fat' | 'rat':AB" }]) ret = await db.query(` SELECT to_tsquery('english', 'supern:*A & star:A*B') as value; `) expect(ret.rows).toEqual([{ value: "'supern':*A & 'star':*AB" }]) ret = await db.query(` SELECT plainto_tsquery('english', 'The Fat Rats') as value; `) expect(ret.rows).toEqual([{ value: "'fat' & 'rat'" }]) ret = await db.query(` SELECT plainto_tsquery('english', 'The Fat & Rats:C') as value; `) expect(ret.rows).toEqual([{ value: "'fat' & 'rat' & 'c'" }]) ret = await db.query(` SELECT phraseto_tsquery('english', 'The Fat Rats') as value; `) expect(ret.rows).toEqual([{ value: "'fat' <-> 'rat'" }]) ret = await db.query(` SELECT websearch_to_tsquery('english', '"supernovae stars" -crab') as value; `) expect(ret.rows).toEqual([{ value: "'supernova' <-> 'star' & !'crab'" }]) ret = await db.query(` SELECT websearch_to_tsquery('english', '"sad cat" or "fat rat"') as value; `) expect(ret.rows).toEqual([{ value: "'sad' <-> 'cat' | 'fat' <-> 'rat'" }]) ret = await db.query(` SELECT websearch_to_tsquery('english', 'signal -"segmentation fault"') as value; `) expect(ret.rows).toEqual([ { value: "'signal' & !( 'segment' <-> 'fault' )" }, ]) }) it('ranking', async () => { const db = await PGlite.create() // lc_init(db, "english") await db.query(` CREATE TABLE fts_ranking ( id serial PRIMARY KEY, title text, body text ); `) await db.query(` INSERT INTO fts_ranking (title, body) VALUES ('The Fat Rats', 'The fat rats ate the fat cats.'), ('The Fat Cats', 'The fat cats ate the fat rats.'), ('The Fat Cats and Rats', 'The fat cats and rats ate the fat rats and cats.'); `) let ret = await db.query(` SELECT title, ts_rank_cd(to_tsvector('english', body), to_tsquery('english', 'fat & rat')) as rank FROM fts_ranking ORDER BY rank DESC; `) expect(ret.rows).toEqual([ { rank: 0.16666667, title: 'The Fat Cats and Rats', }, { rank: 0.13333334, title: 'The Fat Rats', }, { rank: 0.1, title: 'The Fat Cats', }, ]) ret = await db.query(` SELECT title, ts_rank_cd(to_tsvector('english', body), to_tsquery('english', 'fat | rat')) as rank FROM fts_ranking ORDER BY rank DESC; `) expect(ret.rows).toEqual([ { rank: 0.4, title: 'The Fat Cats and Rats', }, { rank: 0.3, title: 'The Fat Rats', }, { rank: 0.3, title: 'The Fat Cats', }, ]) ret = await db.query(` SELECT title, ts_rank_cd(to_tsvector('english', body), to_tsquery('english', 'fat & rat | cat')) as rank FROM fts_ranking ORDER BY rank DESC; `) expect(ret.rows).toEqual([ { rank: 0.33333334, title: 'The Fat Cats and Rats', }, { rank: 0.23333333, title: 'The Fat Rats', }, { rank: 0.2, title: 'The Fat Cats', }, ]) ret = await db.query(` SELECT title, ts_rank_cd(to_tsvector('english', body), to_tsquery('english', 'fat & rat | cat & rat')) as rank FROM fts_ranking ORDER BY rank DESC; `) expect(ret.rows).toEqual([ { rank: 0.23333333, title: 'The Fat Cats and Rats', }, { rank: 0.13333334, title: 'The Fat Rats', }, { rank: 0.1, title: 'The Fat Cats', }, ]) }) }) ================================================ FILE: packages/pglite/tests/fts.simple.test.js ================================================ import { describe, it, expect } from 'vitest' import { PGlite } from '../dist/index.js' describe('fts', () => { it('basic', async () => { const db = await PGlite.create({ debug: false }) let ret = await db.query( `SELECT 'a fat cat sat on a mat and ate a fat rat'::tsvector @@ 'cat & rat'::tsquery AS match;`, ) expect(ret.rows).toEqual([{ match: true }]) ret = await db.query(` SELECT to_tsvector('simple', 'fat cats ate fat rats') @@ to_tsquery('simple', 'fat & rat') AS match; `) expect(ret.rows).toEqual([{ match: false }]) ret = await db.query(` SELECT to_tsquery('simple', 'The & Fat & Rats') as value; `) expect(ret.rows).toEqual([{ value: "'the' & 'fat' & 'rats'" }]) ret = await db.query(` SELECT to_tsquery('simple', 'Fat | Rats:AB') as value; `) expect(ret.rows).toEqual([{ value: "'fat' | 'rats':AB" }]) ret = await db.query(` SELECT to_tsquery('simple', 'supern:*A & star:A*B') as value; `) expect(ret.rows).toEqual([{ value: "'supern':*A & 'star':*AB" }]) ret = await db.query(` SELECT plainto_tsquery('simple', 'The Fat Rats') as value; `) expect(ret.rows).toEqual([{ value: "'the' & 'fat' & 'rats'" }]) ret = await db.query(` SELECT plainto_tsquery('simple', 'The Fat & Rats:C') as value; `) expect(ret.rows).toEqual([{ value: "'the' & 'fat' & 'rats' & 'c'" }]) ret = await db.query(` SELECT phraseto_tsquery('simple', 'The Fat Rats') as value; `) expect(ret.rows).toEqual([{ value: "'the' <-> 'fat' <-> 'rats'" }]) ret = await db.query(` SELECT websearch_to_tsquery('simple', '"supernovae stars" -crab') as value; `) expect(ret.rows).toEqual([{ value: "'supernovae' <-> 'stars' & !'crab'" }]) ret = await db.query(` SELECT websearch_to_tsquery('simple', '"sad cat" or "fat rat"') as value; `) expect(ret.rows).toEqual([{ value: "'sad' <-> 'cat' | 'fat' <-> 'rat'" }]) ret = await db.query(` SELECT websearch_to_tsquery('simple', 'signal -"segmentation fault"') as value; `) expect(ret.rows).toEqual([ { value: "'signal' & !( 'segmentation' <-> 'fault' )" }, ]) }) it('ranking', async () => { const db = await PGlite.create() await db.query(` CREATE TABLE fts_ranking ( id serial PRIMARY KEY, title text, body text ); `) await db.query(` INSERT INTO fts_ranking (title, body) VALUES ('The Fat Rats', 'The fat rats ate the fat cats.'), ('The Fat Cats', 'The fat cats ate the fat rats.'), ('The Fat Cats and Rats', 'The fat cats and rats ate the fat rats and cats.'); `) let ret = await db.query(` SELECT title, ts_rank_cd(to_tsvector('simple', body), to_tsquery('simple', 'fat & rat')) as rank FROM fts_ranking ORDER BY rank DESC; `) expect(ret.rows).toEqual([ { rank: 0, title: 'The Fat Rats', }, { rank: 0, title: 'The Fat Cats', }, { rank: 0, title: 'The Fat Cats and Rats', }, ]) ret = await db.query(` SELECT title, ts_rank_cd(to_tsvector('simple', body), to_tsquery('simple', 'fat | rat')) as rank FROM fts_ranking ORDER BY rank DESC; `) expect(ret.rows).toEqual([ { rank: 0.2, title: 'The Fat Rats', }, { rank: 0.2, title: 'The Fat Cats', }, { rank: 0.2, title: 'The Fat Cats and Rats', }, ]) ret = await db.query(` SELECT title, ts_rank_cd(to_tsvector('simple', body), to_tsquery('simple', 'fat & rat | cat')) as rank FROM fts_ranking ORDER BY rank DESC; `) expect(ret.rows).toEqual([ { rank: 0, title: 'The Fat Rats', }, { rank: 0, title: 'The Fat Cats', }, { rank: 0, title: 'The Fat Cats and Rats', }, ]) ret = await db.query(` SELECT title, ts_rank_cd(to_tsvector('simple', body), to_tsquery('simple', 'fat & rat | cat & rat')) as rank FROM fts_ranking ORDER BY rank DESC; `) expect(ret.rows).toEqual([ { rank: 0, title: 'The Fat Rats', }, { rank: 0, title: 'The Fat Cats', }, { rank: 0, title: 'The Fat Cats and Rats', }, ]) }) }) ================================================ FILE: packages/pglite/tests/instantiation.test.ts ================================================ import { describe, it, expect } from 'vitest' import { PGlite } from '../dist/index.js' describe('instantiation', () => { testInstatiationMethod('constructor') testInstatiationMethod('static `create` factory') }) function testInstatiationMethod( method: 'constructor' | 'static `create` factory', ) { const instantiateDb = async (...args) => { switch (method) { case 'constructor': return new PGlite(...args) case 'static `create` factory': return await PGlite.create(...args) default: throw new Error(`Invalid instantiation method ${method}`) } } describe(`${method}`, () => { it('should instantiate with defaults', async () => { const pg = await instantiateDb() const res = await pg.query(`SELECT 1 as one;`) expect(res.rows[0]?.['one']).toBe(1) }) it('should instantiate with data dir argument', async () => { const pg = await instantiateDb('./pgdata-test') const res = await pg.query(`SELECT 1 as one;`) expect(res.rows[0]?.['one']).toBe(1) }) it('should instantiate with options', async () => { const pg = await instantiateDb({ dataDir: './pgdata-test', }) const res = await pg.query(`SELECT 1 as one;`) expect(res.rows[0]?.['one']).toBe(1) }) }) } ================================================ FILE: packages/pglite/tests/largeobjects.test.js ================================================ import { describe, it, expect } from 'vitest' import { PGlite } from '../dist/index.js' describe('large objects', () => { it('blob', async () => { const pg = new PGlite() const text = 'hello world' const blob = new Blob([text], { type: 'text/plain' }) await pg.exec(` CREATE TABLE test (id SERIAL PRIMARY KEY, data OID); `) await pg.query( ` INSERT INTO test (data) VALUES (lo_import('/dev/blob')); `, [], { blob, }, ) const res = await pg.query(` SELECT lo_export(data, '/dev/blob') AS data FROM test; `) const data = res.blob const asText = await data.text() expect(asText).toBe(text) }) }) ================================================ FILE: packages/pglite/tests/live.test.ts ================================================ import { describe, it, expect } from 'vitest' import { testEsmCjsAndDTC } from './test-utils.ts' await testEsmCjsAndDTC(async (importType) => { const { PGlite } = ( importType === 'esm' ? await import('../dist/index.js') : await import('../dist/index.cjs') ) as typeof import('../dist/index.js') const { live } = importType === 'esm' ? await import('../dist/live/index.js') : await import('../dist/live/index.cjs') describe(`live`, () => { it('basic live query', async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS testTable ( id SERIAL PRIMARY KEY, number INT ); `) await db.exec(` INSERT INTO testTable (number) SELECT i*10 FROM generate_series(1, 5) i; `) let updatedResults const eventTarget = new EventTarget() const { initialResults, unsubscribe } = await db.live.query( 'SELECT * FROM testTable ORDER BY number;', [], (result) => { updatedResults = result eventTarget.dispatchEvent(new Event('change')) }, ) expect(initialResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await db.exec('INSERT INTO testTable (number) VALUES (25);') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 6, number: 25 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await db.exec('DELETE FROM testTable WHERE id = 6;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await db.exec('UPDATE testTable SET number = 15 WHERE id = 3;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 3, number: 15 }, { id: 2, number: 20 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await unsubscribe() await db.exec('INSERT INTO testTable (number) VALUES (35);') await new Promise((resolve) => setTimeout(resolve, 100)) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 3, number: 15 }, { id: 2, number: 20 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) }) it('live query on view', async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS testTable ( id SERIAL PRIMARY KEY, number INT ); `) await db.exec(` CREATE OR REPLACE VIEW testView2 AS SELECT * FROM testTable; `) await db.exec(` CREATE OR REPLACE VIEW testView1 AS SELECT * FROM testView2; `) await db.exec(` CREATE OR REPLACE VIEW testView AS SELECT * FROM testView1; `) await db.exec(` INSERT INTO testTable (number) SELECT i*10 FROM generate_series(1, 5) i; `) let updatedResults const eventTarget = new EventTarget() const { initialResults, unsubscribe } = await db.live.query( 'SELECT * FROM testView ORDER BY number;', [], (result) => { updatedResults = result eventTarget.dispatchEvent(new Event('change')) }, ) expect(initialResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await db.exec('INSERT INTO testTable (number) VALUES (25);') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 6, number: 25 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await db.exec('DELETE FROM testTable WHERE id = 6;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await db.exec('UPDATE testTable SET number = 15 WHERE id = 3;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 3, number: 15 }, { id: 2, number: 20 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await unsubscribe() await db.exec('INSERT INTO testTable (number) VALUES (35);') await new Promise((resolve) => setTimeout(resolve, 100)) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 3, number: 15 }, { id: 2, number: 20 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) }) it('live query with params', async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS testTable ( id SERIAL PRIMARY KEY, number INT ); `) await db.exec(` INSERT INTO testTable (number) SELECT i*10 FROM generate_series(1, 5) i; `) let updatedResults const eventTarget = new EventTarget() const { initialResults, unsubscribe } = await db.live.query( 'SELECT * FROM testTable WHERE number < $1 ORDER BY number;', [40], (result) => { updatedResults = result eventTarget.dispatchEvent(new Event('change')) }, ) expect(initialResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 3, number: 30 }, ]) await db.exec('INSERT INTO testTable (number) VALUES (25);') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 6, number: 25 }, { id: 3, number: 30 }, ]) await db.exec('DELETE FROM testTable WHERE id = 6;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 3, number: 30 }, ]) await db.exec('UPDATE testTable SET number = 15 WHERE id = 3;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 3, number: 15 }, { id: 2, number: 20 }, ]) await unsubscribe() await db.exec('INSERT INTO testTable (number) VALUES (35);') await new Promise((resolve) => setTimeout(resolve, 100)) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 3, number: 15 }, { id: 2, number: 20 }, ]) }) it('incremental query unordered', async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS testTable ( id SERIAL PRIMARY KEY, number INT ); `) await db.exec(` INSERT INTO testTable (number) VALUES (1), (2); `) let updatedResults const eventTarget = new EventTarget() const { initialResults, unsubscribe } = await db.live.incrementalQuery( 'SELECT * FROM testTable;', [], 'id', (result) => { updatedResults = result eventTarget.dispatchEvent(new Event('change')) }, ) expect(initialResults.rows).toEqual([ { id: 1, number: 1 }, { id: 2, number: 2 }, ]) await db.exec('UPDATE testTable SET number = 10 WHERE id = 1;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 2, number: 2 }, { id: 1, number: 10 }, ]) await unsubscribe() }) it('incremental query with non-integer key', async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS testTable ( id TEXT PRIMARY KEY, number INT ); `) await db.exec(` INSERT INTO testTable (id, number) VALUES ('potato', 1), ('banana', 2); `) let updatedResults const eventTarget = new EventTarget() const { initialResults, unsubscribe } = await db.live.incrementalQuery( 'SELECT * FROM testTable;', [], 'id', (result) => { updatedResults = result eventTarget.dispatchEvent(new Event('change')) }, ) expect(initialResults.rows).toEqual([ { id: 'potato', number: 1 }, { id: 'banana', number: 2 }, ]) await db.exec(`UPDATE testTable SET number = 10 WHERE id = 'potato';`) await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 'banana', number: 2 }, { id: 'potato', number: 10 }, ]) await unsubscribe() }) it('basic live incremental query', async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS testTable ( id SERIAL PRIMARY KEY, number INT ); `) await db.exec(` INSERT INTO testTable (number) SELECT i*10 FROM generate_series(1, 5) i; `) let updatedResults const eventTarget = new EventTarget() const { initialResults, unsubscribe } = await db.live.incrementalQuery( 'SELECT * FROM testTable ORDER BY number;', [], 'id', (result) => { updatedResults = result eventTarget.dispatchEvent(new Event('change')) }, ) expect(initialResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await db.exec('INSERT INTO testTable (number) VALUES (25);') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 6, number: 25 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await db.exec('DELETE FROM testTable WHERE id = 6;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await db.exec('UPDATE testTable SET number = 15 WHERE id = 3;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 3, number: 15 }, { id: 2, number: 20 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await unsubscribe() await db.exec('INSERT INTO testTable (number) VALUES (35);') await new Promise((resolve) => setTimeout(resolve, 100)) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 3, number: 15 }, { id: 2, number: 20 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) }) it('basic live incremental query with limit 1', async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS testTable ( id SERIAL PRIMARY KEY, number INT ); `) await db.exec(` INSERT INTO testTable (number) VALUES (10); `) let updatedResults const eventTarget = new EventTarget() const { initialResults, unsubscribe } = await db.live.incrementalQuery( 'SELECT * FROM testTable ORDER BY number ASC LIMIT 1;', [], 'id', (result) => { updatedResults = result eventTarget.dispatchEvent(new Event('change')) }, ) expect(initialResults.rows).toEqual([{ id: 1, number: 10 }]) await db.exec('INSERT INTO testTable (number) VALUES (5);') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([{ id: 2, number: 5 }]) await unsubscribe() }) it('live incremental query on view', async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS testTable ( id SERIAL PRIMARY KEY, number INT ); `) await db.exec(` CREATE OR REPLACE VIEW testView2 AS SELECT * FROM testTable; `) await db.exec(` CREATE OR REPLACE VIEW testView1 AS SELECT * FROM testView2; `) await db.exec(` CREATE OR REPLACE VIEW testView AS SELECT * FROM testView1; `) await db.exec(` INSERT INTO testTable (number) SELECT i*10 FROM generate_series(1, 5) i; `) let updatedResults const eventTarget = new EventTarget() const { initialResults, unsubscribe } = await db.live.incrementalQuery( 'SELECT * FROM testTable ORDER BY number;', [], 'id', (result) => { updatedResults = result eventTarget.dispatchEvent(new Event('change')) }, ) expect(initialResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await db.exec('INSERT INTO testTable (number) VALUES (25);') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 6, number: 25 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await db.exec('DELETE FROM testTable WHERE id = 6;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await db.exec('UPDATE testTable SET number = 15 WHERE id = 3;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 3, number: 15 }, { id: 2, number: 20 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await unsubscribe() await db.exec('INSERT INTO testTable (number) VALUES (35);') await new Promise((resolve) => setTimeout(resolve, 100)) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 3, number: 15 }, { id: 2, number: 20 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) }) it('live incremental query with params', async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS testTable ( id SERIAL PRIMARY KEY, number INT ); `) await db.exec(` INSERT INTO testTable (number) SELECT i*10 FROM generate_series(1, 5) i; `) let updatedResults const eventTarget = new EventTarget() const { initialResults, unsubscribe } = await db.live.incrementalQuery( 'SELECT * FROM testTable WHERE number < $1 ORDER BY number;', [40], 'id', (result) => { updatedResults = result eventTarget.dispatchEvent(new Event('change')) }, ) expect(initialResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 3, number: 30 }, ]) await db.exec('INSERT INTO testTable (number) VALUES (25);') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 6, number: 25 }, { id: 3, number: 30 }, ]) await db.exec('DELETE FROM testTable WHERE id = 6;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 3, number: 30 }, ]) await db.exec('UPDATE testTable SET number = 15 WHERE id = 3;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 3, number: 15 }, { id: 2, number: 20 }, ]) await unsubscribe() await db.exec('INSERT INTO testTable (number) VALUES (35);') await new Promise((resolve) => setTimeout(resolve, 100)) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 3, number: 15 }, { id: 2, number: 20 }, ]) }) it('basic live changes', async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS testTable ( id SERIAL PRIMARY KEY, number INT ); `) await db.exec(` INSERT INTO testTable (number) SELECT i*10 FROM generate_series(1, 5) i; `) let updatedChanges const eventTarget = new EventTarget() const { initialChanges, unsubscribe } = await db.live.changes( 'SELECT * FROM testTable ORDER BY number;', [], 'id', (changes) => { updatedChanges = changes eventTarget.dispatchEvent(new Event('change')) }, ) expect(initialChanges).toEqual([ { __op__: 'INSERT', id: 1, number: 10, __after__: null, __changed_columns__: [], }, { __op__: 'INSERT', id: 2, number: 20, __after__: 1, __changed_columns__: [], }, { __op__: 'INSERT', id: 3, number: 30, __after__: 2, __changed_columns__: [], }, { __op__: 'INSERT', id: 4, number: 40, __after__: 3, __changed_columns__: [], }, { __op__: 'INSERT', id: 5, number: 50, __after__: 4, __changed_columns__: [], }, ]) await db.exec('INSERT INTO testTable (number) VALUES (25);') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedChanges).toEqual([ { __op__: 'INSERT', id: 6, number: 25, __after__: 2, __changed_columns__: [], }, { __after__: 6, __changed_columns__: ['__after__'], __op__: 'UPDATE', id: 3, number: null, }, ]) await db.exec('DELETE FROM testTable WHERE id = 6;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedChanges).toEqual([ { __op__: 'DELETE', id: 6, number: null, __after__: null, __changed_columns__: [], }, { __after__: 2, __changed_columns__: ['__after__'], __op__: 'UPDATE', id: 3, number: null, }, ]) await db.exec('UPDATE testTable SET number = 15 WHERE id = 3;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedChanges).toEqual([ { id: 2, __after__: 3, __changed_columns__: ['__after__'], __op__: 'UPDATE', number: null, }, { id: 3, __after__: 1, __changed_columns__: ['number', '__after__'], __op__: 'UPDATE', number: 15, }, { id: 4, __after__: 2, __changed_columns__: ['__after__'], __op__: 'UPDATE', number: null, }, ]) await unsubscribe() await db.exec('INSERT INTO testTable (number) VALUES (35);') await new Promise((resolve) => setTimeout(resolve, 100)) expect(updatedChanges).toEqual([ { id: 2, __after__: 3, __changed_columns__: ['__after__'], __op__: 'UPDATE', number: null, }, { id: 3, __after__: 1, __changed_columns__: ['number', '__after__'], __op__: 'UPDATE', number: 15, }, { id: 4, __after__: 2, __changed_columns__: ['__after__'], __op__: 'UPDATE', number: null, }, ]) }) it('subscribe to live query after creation', async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS testTable ( id SERIAL PRIMARY KEY, number INT ); `) await db.exec(` INSERT INTO testTable (number) SELECT i*10 FROM generate_series(1, 5) i; `) const eventTarget = new EventTarget() let updatedResults const { initialResults, subscribe, unsubscribe } = await db.live.query( 'SELECT * FROM testTable ORDER BY number;', ) expect(initialResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) // Subscribe after creation subscribe((result) => { updatedResults = result eventTarget.dispatchEvent(new Event('change')) }) await db.exec('INSERT INTO testTable (number) VALUES (25);') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 6, number: 25 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await unsubscribe() }) it('live changes limit 1', async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS testTable ( id SERIAL PRIMARY KEY, number INT ); `) await db.exec(` INSERT INTO testTable (number) VALUES (10); `) let updatedChanges const eventTarget = new EventTarget() const { initialChanges, subscribe, unsubscribe } = await db.live.changes({ query: 'SELECT * FROM testTable ORDER BY number ASC LIMIT 1;', params: [], key: 'id', }) expect(initialChanges).toEqual([ { __op__: 'INSERT', id: 1, number: 10, __after__: null, __changed_columns__: [], }, ]) subscribe((changes) => { updatedChanges = changes eventTarget.dispatchEvent(new Event('change')) }) await db.exec('INSERT INTO testTable (number) VALUES (5);') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedChanges).toEqual([ { __op__: 'INSERT', id: 2, number: 5, __after__: null, __changed_columns__: [], }, { __op__: 'DELETE', id: 1, number: null, __after__: null, __changed_columns__: [], }, ]) await unsubscribe() }) it('subscribe to live changes after creation', async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS testTable ( id SERIAL PRIMARY KEY, number INT ); `) await db.exec(` INSERT INTO testTable (number) SELECT i*10 FROM generate_series(1, 5) i; `) const eventTarget = new EventTarget() let updatedResults const { initialResults, subscribe, unsubscribe } = await db.live.incrementalQuery( 'SELECT * FROM testTable ORDER BY number;', [], 'id', ) expect(initialResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) // Subscribe after creation subscribe((result) => { updatedResults = result eventTarget.dispatchEvent(new Event('change')) }) await db.exec('INSERT INTO testTable (number) VALUES (25);') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 6, number: 25 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) await unsubscribe() }) it('live query with windowing', async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS testTable ( id SERIAL PRIMARY KEY, number INT ); `) await db.exec(` INSERT INTO testTable (number) SELECT i*10 FROM generate_series(1, 5) i; `) let updatedResults const eventTarget = new EventTarget() const { initialResults, unsubscribe, refresh } = await db.live.query({ query: 'SELECT * FROM testTable ORDER BY number', offset: 1, limit: 2, callback: (result) => { updatedResults = result eventTarget.dispatchEvent(new Event('change')) }, }) // Check initial results include windowing metadata expect(initialResults.rows).toEqual([ { id: 2, number: 20 }, { id: 3, number: 30 }, ]) expect(initialResults.offset).toBe(1) expect(initialResults.limit).toBe(2) expect(initialResults.totalCount).toBe(5) // Insert a row that affects the window await db.exec('INSERT INTO testTable (number) VALUES (25);') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 2, number: 20 }, { id: 6, number: 25 }, ]) expect(updatedResults.totalCount).toBe(5) // initially its still 5 // We wait again for the total count to update, this is done lazily // as it can be slower to calculate, we want the UI to update fast. await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.totalCount).toBe(6) // now its 6 // Test changing window position await refresh({ offset: 3, limit: 2 }) expect(updatedResults.rows).toEqual([ { id: 3, number: 30 }, { id: 4, number: 40 }, ]) expect(updatedResults.offset).toBe(3) expect(updatedResults.limit).toBe(2) expect(updatedResults.totalCount).toBe(6) // Delete rows to affect totalCount await db.exec('DELETE FROM testTable WHERE number > 30;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([{ id: 3, number: 30 }]) expect(updatedResults.totalCount).toBe(6) // initially its still 6 // We wait again for the total count to update await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.totalCount).toBe(4) // now its 4 await unsubscribe() }) it('throws error when only one of offset/limit is provided', async () => { const db = await PGlite.create({ extensions: { live }, }) await expect( db.live.query({ query: 'SELECT * FROM (VALUES (1)) t', offset: 0, }), ).rejects.toThrow('offset and limit must be provided together') await expect( db.live.query({ query: 'SELECT * FROM (VALUES (1)) t', limit: 10, }), ).rejects.toThrow('offset and limit must be provided together') }) it('throws error when offset/limit are not numbers', async () => { const db = await PGlite.create({ extensions: { live }, }) await expect( db.live.query({ query: 'SELECT * FROM (VALUES (1)) t', offset: '0' as any, limit: 10, }), ).rejects.toThrow('offset and limit must be numbers') await expect( db.live.query({ query: 'SELECT * FROM (VALUES (1)) t', offset: 0, limit: '10' as any, }), ).rejects.toThrow('offset and limit must be numbers') }) it("doesn't have a race condition when unsubscribing from a live query", async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS testTable ( id SERIAL PRIMARY KEY, number INT ); `) let results const eventTarget = new EventTarget() // Create a first live query const { unsubscribe } = await db.live.query({ query: 'SELECT * FROM testTable WHERE number > 1', }) // Create a second live query that listens to the same channel, but don't // await it's subscription to complete. // This creates a race condition with the following unsubscribe, both are // potentially interlaced with each other. await db.live.query({ query: 'SELECT * FROM testTable WHERE number > 2', callback: (result) => { results = result eventTarget.dispatchEvent(new Event('change')) }, }) // Unsubscribe from the first live query await unsubscribe() const promise = new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) await db.exec('INSERT INTO testTable (number) VALUES (3);') // In a failed test, this will never resolve. await promise expect(results.rows).toEqual([{ id: 1, number: 3 }]) }, 3000) it('works with pattern matching', async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS testTable ( id SERIAL PRIMARY KEY, statement VARCHAR(100) ); INSERT INTO testTable (statement) VALUES ('i love pglite!'); `) const eventTarget = new EventTarget() let updatedResults const { initialResults, unsubscribe } = await db.live.query( `SELECT id, statement FROM testTable WHERE statement ILIKE '%pglite%' ORDER BY id;`, [], (result) => { updatedResults = result eventTarget.dispatchEvent(new Event('change')) }, ) expect(initialResults.rows).toEqual([ { id: 1, statement: 'i love pglite!' }, ]) await db.exec( `INSERT INTO testTable (statement) VALUES ('This should not be in the results!');`, ) await db.exec( `INSERT INTO testTable (statement) VALUES ('PGlite is da best!');`, ) await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) await unsubscribe() expect(updatedResults.rows).toEqual([ { id: 1, statement: 'i love pglite!' }, { id: 3, statement: 'PGlite is da best!' }, ]) }) }) it('basic live query - case sensitive table name', async () => { const db = await PGlite.create({ extensions: { live }, }) await db.exec(` CREATE TABLE IF NOT EXISTS "cAseSENSiTYVE" ( id SERIAL PRIMARY KEY, number INT ); `) await db.exec(` INSERT INTO "cAseSENSiTYVE" (number) SELECT i*10 FROM generate_series(1, 5) i; `) let updatedResults const eventTarget = new EventTarget() const { initialResults, unsubscribe } = await db.live.query( 'SELECT * FROM "cAseSENSiTYVE" ORDER BY number;', [], (result) => { updatedResults = result eventTarget.dispatchEvent(new Event('change')) }, ) expect(initialResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) db.exec('INSERT INTO "cAseSENSiTYVE" (number) VALUES (25);') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 6, number: 25 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) db.exec('DELETE FROM "cAseSENSiTYVE" WHERE id = 6;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 2, number: 20 }, { id: 3, number: 30 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) db.exec('UPDATE "cAseSENSiTYVE" SET number = 15 WHERE id = 3;') await new Promise((resolve) => eventTarget.addEventListener('change', resolve, { once: true }), ) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 3, number: 15 }, { id: 2, number: 20 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) unsubscribe() db.exec('INSERT INTO "cAseSENSiTYVE" (number) VALUES (35);') await new Promise((resolve) => setTimeout(resolve, 100)) expect(updatedResults.rows).toEqual([ { id: 1, number: 10 }, { id: 3, number: 15 }, { id: 2, number: 20 }, { id: 4, number: 40 }, { id: 5, number: 50 }, ]) }) }) ================================================ FILE: packages/pglite/tests/message-context-leak.test.ts ================================================ import { describe, it, expect, beforeEach } from 'vitest' import { testEsmCjsAndDTC } from './test-utils.js' import { PGlite } from '../dist/index.js' // This test isolates the MessageContext leak reported in // https://github.com/electric-sql/pglite/issues/779 // It inserts many rows with large JSON literals and then inspects // pg_backend_memory_contexts to ensure MessageContext has been reset // between queries and does not accumulate unbounded allocations. const KB = 1024 function makeJsonBlob(size: number): string { // Keep the SQL literal simple (mostly "x" payload) to simulate // large messages while avoiding excessive parsing overhead. return JSON.stringify({ padding: 'x'.repeat(size) }) } testEsmCjsAndDTC(async () => { describe('MessageContext reset between queries', () => { let db: PGlite beforeEach(async () => { db = new PGlite() await db.exec(` CREATE TABLE IF NOT EXISTS leak_test ( id SERIAL PRIMARY KEY, blob jsonb NOT NULL ); `) }) it('does not accumulate allocations in MessageContext', async () => { // Choose sizes to expose the leak without taking too long. const blobSize = 100 * KB // ~100KB per row const rows = 300 // ~30MB of total SQL literal payload const blob = makeJsonBlob(blobSize) for (let i = 0; i < rows; i++) { await db.exec(`INSERT INTO leak_test (blob) VALUES ('${blob}')`) } // After the loop, the next query should see a freshly reset // MessageContext (reset happens at the start of command read), // so used_bytes should remain small (well below the total data inserted). const mem = await db.query<{ used_bytes: number }>(` SELECT used_bytes FROM pg_backend_memory_contexts WHERE name = 'MessageContext' ORDER BY level LIMIT 1 `) expect(mem.rows).toHaveLength(1) const used = Number(mem.rows[0].used_bytes) // On a correctly resetting build, MessageContext should typically be in the // low kilobytes to a few megabytes range. Set an upper bound that will fail // if allocations accumulated across the INSERTs (~30MB of literal payload). // Using 5MB as a generous ceiling for transient allocations of this SELECT. expect(used).toBeLessThan(5 * 1024 * 1024) }) }) }) ================================================ FILE: packages/pglite/tests/notify.test.ts ================================================ import { describe, it, expect, vi } from 'vitest' import { PGlite } from '../dist/index.js' import { expectToThrowAsync } from './test-utils.js' describe('notify API', () => { it('notify', async () => { const db = new PGlite() await db.listen('test', (payload) => { expect(payload).toBe('321') }) await db.exec("NOTIFY test, '321'") await new Promise((resolve) => setTimeout(resolve, 1000)) }) it('unlisten', async () => { const db = new PGlite() const unsub = await db.listen('test', () => { throw new Error('Notification received after unsubscribed') }) await unsub() await db.exec('NOTIFY test') await new Promise((resolve) => setTimeout(resolve, 1000)) }) it('onNotification', async () => { const db = new PGlite() db.onNotification((chan, payload) => { expect(chan).toBe('test') expect(payload).toBe('123') }) await db.exec('LISTEN test') await db.exec("NOTIFY test, '123'") await new Promise((resolve) => setTimeout(resolve, 1000)) }) it('check notify case sensitivity + special chars as Postgresql', async () => { const pg = new PGlite() const allLower1 = vi.fn() await pg.listen('postgresdefaultlower', allLower1) await pg.exec(`NOTIFY postgresdefaultlower, 'payload1'`) const autoLowerTest1 = vi.fn() await pg.listen('PostgresDefaultLower', autoLowerTest1) await pg.exec(`NOTIFY PostgresDefaultLower, 'payload1'`) const autoLowerTest2 = vi.fn() await pg.listen('PostgresDefaultLower', autoLowerTest2) await pg.exec(`NOTIFY postgresdefaultlower, 'payload1'`) const autoLowerTest3 = vi.fn() await pg.listen('postgresdefaultlower', autoLowerTest3) await pg.exec(`NOTIFY PostgresDefaultLower, 'payload1'`) const caseSensitive1 = vi.fn() await pg.listen('"tesT2"', caseSensitive1) await pg.exec(`NOTIFY "tesT2", 'paYloAd2'`) const caseSensitive2 = vi.fn() await pg.listen('"tesT3"', caseSensitive2) await pg.exec(`NOTIFY tesT3, 'paYloAd2'`) const caseSensitive3 = vi.fn() await pg.listen('testNotCalled2', caseSensitive3) await pg.exec(`NOTIFY "testNotCalled2", 'paYloAd2'`) const quotedWithSpaces = vi.fn() await pg.listen('"Quoted Channel With Spaces"', quotedWithSpaces) await pg.exec(`NOTIFY "Quoted Channel With Spaces", 'payload1'`) const unquotedWithSpaces = vi.fn() await expectToThrowAsync(async () => { await pg.listen('Unquoted Channel With Spaces', unquotedWithSpaces) }) await expectToThrowAsync(async () => { await pg.exec(`NOTIFY Unquoted Channel With Spaces, 'payload1'`) }) const otherCharsWithQuotes = vi.fn() await pg.listen('"test&me"', otherCharsWithQuotes) await pg.exec(`NOTIFY "test&me", 'paYloAd2'`) const otherChars = vi.fn() await expectToThrowAsync(async () => { await pg.listen('test&me', otherChars) }) await expectToThrowAsync(async () => { await pg.exec(`NOTIFY test&me, 'payload1'`) }) expect(allLower1).toHaveBeenCalledTimes(4) expect(autoLowerTest1).toHaveBeenCalledTimes(3) expect(autoLowerTest2).toHaveBeenCalledTimes(2) expect(autoLowerTest3).toHaveBeenCalledTimes(1) expect(caseSensitive1).toHaveBeenCalledOnce() expect(caseSensitive2).not.toHaveBeenCalled() expect(caseSensitive3).not.toHaveBeenCalled() expect(otherCharsWithQuotes).toHaveBeenCalledOnce() expect(quotedWithSpaces).toHaveBeenCalledOnce() expect(unquotedWithSpaces).not.toHaveBeenCalled() }) it('check unlisten case sensitivity + special chars as Postgresql', async () => { const pg = new PGlite() const allLower1 = vi.fn() { const unsub1 = await pg.listen('postgresdefaultlower', allLower1) await pg.exec(`NOTIFY postgresdefaultlower, 'payload1'`) await unsub1() } const autoLowerTest1 = vi.fn() { const unsub2 = await pg.listen('PostgresDefaultLower', autoLowerTest1) await pg.exec(`NOTIFY PostgresDefaultLower, 'payload1'`) await unsub2() } const autoLowerTest2 = vi.fn() { const unsub3 = await pg.listen('PostgresDefaultLower', autoLowerTest2) await pg.exec(`NOTIFY postgresdefaultlower, 'payload1'`) await unsub3() } const autoLowerTest3 = vi.fn() { const unsub4 = await pg.listen('postgresdefaultlower', autoLowerTest3) await pg.exec(`NOTIFY PostgresDefaultLower, 'payload1'`) await unsub4() } const caseSensitive1 = vi.fn() { await pg.listen('"CaSESEnsiTIvE"', caseSensitive1) await pg.exec(`NOTIFY "CaSESEnsiTIvE", 'payload1'`) await pg.unlisten('"CaSESEnsiTIvE"') await pg.exec(`NOTIFY "CaSESEnsiTIvE", 'payload1'`) } const quotedWithSpaces = vi.fn() { await pg.listen('"Quoted Channel With Spaces"', quotedWithSpaces) await pg.exec(`NOTIFY "Quoted Channel With Spaces", 'payload1'`) await pg.unlisten('"Quoted Channel With Spaces"') } const otherCharsWithQuotes = vi.fn() { await pg.listen('"test&me"', otherCharsWithQuotes) await pg.exec(`NOTIFY "test&me", 'payload'`) await pg.unlisten('"test&me"') } expect(allLower1).toHaveBeenCalledOnce() expect(autoLowerTest1).toHaveBeenCalledOnce() expect(autoLowerTest2).toHaveBeenCalledOnce() expect(autoLowerTest3).toHaveBeenCalledOnce() expect(caseSensitive1).toHaveBeenCalledOnce() expect(otherCharsWithQuotes).toHaveBeenCalledOnce() }) }) ================================================ FILE: packages/pglite/tests/pg_hashids.test.ts ================================================ import { describe, it, expect } from 'vitest' import { testEsmCjsAndDTC } from './test-utils.ts' await testEsmCjsAndDTC(async (importType) => { const { PGlite } = importType === 'esm' ? await import('../dist/index.js') : ((await import( '../dist/index.cjs' )) as unknown as typeof import('../dist/index.js')) const { pg_hashids } = importType === 'esm' ? await import('../dist/pg_hashids/index.js') : ((await import( '../dist/pg_hashids/index.cjs' )) as unknown as typeof import('../dist/pg_hashids/index.js')) describe(`pg_hashids`, () => { it('can load extension', async () => { const pg = new PGlite({ extensions: { pg_hashids, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;') const res = await pg.query<{ extname: string }>(` SELECT extname FROM pg_extension WHERE extname = 'pg_hashids' `) expect(res.rows).toHaveLength(1) expect(res.rows[0].extname).toBe('pg_hashids') }) it('should return a hash using the default alphabet and empty salt', async () => { const pg = new PGlite({ extensions: { pg_hashids, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;') const res = await pg.exec(`SELECT id_encode(1001);`) expect(res[0].rows[0].id_encode).toEqual('jNl') }) it('should return a hash using the default alphabet and supplied salt', async () => { const pg = new PGlite({ extensions: { pg_hashids, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;') const res = await pg.exec(`SELECT id_encode(1234567, 'This is my salt');`) expect(res[0].rows[0].id_encode).toEqual('Pdzxp') }) it('should return a hash using the default alphabet, salt and minimum hash length', async () => { const pg = new PGlite({ extensions: { pg_hashids, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;') const res = await pg.exec( `SELECT id_encode(1234567, 'This is my salt', 10);`, ) expect(res[0].rows[0].id_encode).toEqual('PlRPdzxpR7') }) it('should return a hash using the supplied alphabet, salt and minimum hash length', async () => { const pg = new PGlite({ extensions: { pg_hashids, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;') const res = await pg.exec( `SELECT id_encode(1234567, 'This is my salt', 10, 'abcdefghijABCDxFGHIJ1234567890');`, ) expect(res[0].rows[0].id_encode).toEqual('3GJ956J9B9') }) it('should decode previously generated hash', async () => { const pg = new PGlite({ extensions: { pg_hashids, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;') const res = await pg.exec( `SELECT id_decode('PlRPdzxpR7', 'This is my salt', 10);`, ) expect(res[0].rows[0].id_decode).toEqual([1234567]) }) it('should decode previously generated hash using the supplied alphabet', async () => { const pg = new PGlite({ extensions: { pg_hashids, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;') const res = await pg.exec( `SELECT id_decode('3GJ956J9B9', 'This is my salt', 10, 'abcdefghijABCDxFGHIJ1234567890');`, ) expect(res[0].rows[0].id_decode).toEqual([1234567]) }) it('should decode previously generated hash into a single integer', async () => { const pg = new PGlite({ extensions: { pg_hashids, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;') const res = await pg.exec(`SELECT id_decode_once('jNl');`) expect(res[0].rows[0].id_decode_once).toEqual(1001) }) it('should decode previously generated hash into a single integer using the supplied salt', async () => { const pg = new PGlite({ extensions: { pg_hashids, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;') const res = await pg.exec( `SELECT id_decode_once('Pdzxp', 'This is my salt');`, ) expect(res[0].rows[0].id_decode_once).toEqual(1234567) }) it('should decode previously generated hash into a single integer using the supplied salt and minimum hash length', async () => { const pg = new PGlite({ extensions: { pg_hashids, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;') const res = await pg.exec( `SELECT id_decode_once('PlRPdzxpR7', 'This is my salt', 10);`, ) expect(res[0].rows[0].id_decode_once).toEqual(1234567) }) it('should decode previously generated hash into a single integer using the supplied alphabet', async () => { const pg = new PGlite({ extensions: { pg_hashids, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;') const res = await pg.exec( `SELECT id_decode_once('3GJ956J9B9', 'This is my salt', 10, 'abcdefghijABCDxFGHIJ1234567890');`, ) expect(res[0].rows[0].id_decode_once).toEqual(1234567) }) }) }) ================================================ FILE: packages/pglite/tests/pg_ivm.test.ts ================================================ import { describe, it, expect } from 'vitest' import { testEsmCjsAndDTC } from './test-utils.ts' await testEsmCjsAndDTC(async (importType) => { const { PGlite } = importType === 'esm' ? await import('../dist/index.js') : ((await import( '../dist/index.cjs' )) as unknown as typeof import('../dist/index.js')) const { pg_ivm } = importType === 'esm' ? await import('../dist/pg_ivm/index.js') : ((await import( '../dist/pg_ivm/index.cjs' )) as unknown as typeof import('../dist/pg_ivm/index.js')) describe(`pg_ivm`, () => { it('can load extension', async () => { const pg = new PGlite({ extensions: { pg_ivm, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_ivm;') // Verify the extension is loaded const res = await pg.query<{ extname: string }>(` SELECT extname FROM pg_extension WHERE extname = 'pg_ivm' `) expect(res.rows).toHaveLength(1) expect(res.rows[0].extname).toBe('pg_ivm') }) it('can create incremental materialized view', async () => { const pg = new PGlite({ extensions: { pg_ivm, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_ivm;') // Create base table await pg.exec(` CREATE TABLE orders ( id SERIAL PRIMARY KEY, customer_id INTEGER, amount DECIMAL(10,2), created_at TIMESTAMP DEFAULT NOW() ); `) // Create incremental materialized view using correct syntax with dollar quoting await pg.exec(` SELECT pgivm.create_immv('order_summary', $$ SELECT customer_id, COUNT(*) as order_count, SUM(amount) as total_amount FROM orders GROUP BY customer_id $$); `) // Commit to ensure view is created await pg.exec('COMMIT;') // Verify the view was created - check both pg_matviews and information_schema const res = await pg.query<{ table_name: string }>(` SELECT table_name FROM information_schema.tables WHERE table_name = 'order_summary' AND table_type = 'BASE TABLE' `) expect(res.rows).toHaveLength(1) expect(res.rows[0].table_name).toBe('order_summary') }) it('automatically updates view when base table changes', async () => { const pg = new PGlite({ extensions: { pg_ivm, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_ivm;') // Create base table await pg.exec(` CREATE TABLE products ( id SERIAL PRIMARY KEY, category VARCHAR(50), price DECIMAL(10,2), quantity INTEGER ); `) // Create incremental materialized view using dollar quoting await pg.exec(` SELECT pgivm.create_immv('category_stats', $$ SELECT category, COUNT(*) as product_count, SUM(price * quantity) as total_value, AVG(price) as avg_price FROM products GROUP BY category $$); `) // Initially, view should be empty let viewData = await pg.query( `SELECT * FROM category_stats ORDER BY category;`, ) expect(viewData.rows).toHaveLength(0) // Insert some data await pg.exec(` INSERT INTO products (category, price, quantity) VALUES ('electronics', 100.00, 10), ('electronics', 200.00, 5), ('books', 15.00, 20), ('books', 25.00, 8); `) // Commit after inserts await pg.exec('COMMIT;') // View should be automatically updated viewData = await pg.query<{ category: string product_count: number total_value: string avg_price: string }>(`SELECT * FROM category_stats ORDER BY category;`) expect(viewData.rows).toHaveLength(2) const electronicsRow = viewData.rows.find( (row: any) => row.category === 'electronics', ) as any const booksRow = viewData.rows.find( (row: any) => row.category === 'books', ) as any expect(electronicsRow).toBeDefined() expect(electronicsRow.product_count).toBe(2) expect(Number(electronicsRow.total_value)).toBe(2000.0) // 100*10 + 200*5 expect(Number(electronicsRow.avg_price)).toBe(150.0) // (100+200)/2 expect(booksRow).toBeDefined() expect(booksRow.product_count).toBe(2) expect(Number(booksRow.total_value)).toBe(500.0) // 15*20 + 25*8 expect(Number(booksRow.avg_price)).toBe(20.0) // (15+25)/2 // Update existing data await pg.exec( `UPDATE products SET quantity = 15 WHERE category = 'electronics' AND price = 100.00;`, ) // View should reflect the update viewData = await pg.query<{ category: string product_count: number total_value: string avg_price: string }>(`SELECT * FROM category_stats WHERE category = 'electronics';`) expect(viewData.rows).toHaveLength(1) expect(Number((viewData.rows[0] as any).total_value)).toBe(2500.0) // 100*15 + 200*5 // Insert more data await pg.exec( `INSERT INTO products (category, price, quantity) VALUES ('electronics', 300.00, 3);`, ) // View should include new data viewData = await pg.query<{ category: string product_count: number total_value: string avg_price: string }>(`SELECT * FROM category_stats WHERE category = 'electronics';`) expect(viewData.rows).toHaveLength(1) expect((viewData.rows[0] as any).product_count).toBe(3) expect(Number((viewData.rows[0] as any).total_value)).toBe(3400.0) // 100*15 + 200*5 + 300*3 expect(Number((viewData.rows[0] as any).avg_price)).toBe(200.0) // (100+200+300)/3 // Delete data await pg.exec( `DELETE FROM products WHERE category = 'electronics' AND price = 300.00;`, ) // View should reflect the deletion viewData = await pg.query<{ category: string product_count: number total_value: string avg_price: string }>(`SELECT * FROM category_stats WHERE category = 'electronics';`) expect(viewData.rows).toHaveLength(1) expect((viewData.rows[0] as any).product_count).toBe(2) expect(Number((viewData.rows[0] as any).total_value)).toBe(2500.0) // 100*15 + 200*5 }) it('supports simple views without aggregates', async () => { const pg = new PGlite({ extensions: { pg_ivm, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_ivm;') // Create base tables await pg.exec(` CREATE TABLE users ( id SERIAL PRIMARY KEY, name VARCHAR(100), status VARCHAR(20) ); `) await pg.exec(` CREATE TABLE user_profiles ( user_id INTEGER, email VARCHAR(100), age INTEGER ); `) // Create incremental materialized view with join using dollar quoting await pg.exec(` SELECT pgivm.create_immv('active_users', $$ SELECT u.id, u.name, p.email, p.age FROM users u JOIN user_profiles p ON u.id = p.user_id WHERE u.status = 'active' $$); `) // Insert test data await pg.exec(` INSERT INTO users (name, status) VALUES ('Alice', 'active'), ('Bob', 'inactive'), ('Charlie', 'active'); `) await pg.exec(` INSERT INTO user_profiles (user_id, email, age) VALUES (1, 'alice@example.com', 25), (2, 'bob@example.com', 30), (3, 'charlie@example.com', 35); `) // Check the view content let viewData = await pg.query<{ id: number name: string email: string age: number }>(`SELECT * FROM active_users ORDER BY id;`) expect(viewData.rows).toHaveLength(2) expect(viewData.rows[0].name).toBe('Alice') expect(viewData.rows[1].name).toBe('Charlie') // Update user status await pg.exec(`UPDATE users SET status = 'active' WHERE name = 'Bob';`) // View should now include Bob viewData = await pg.query<{ id: number name: string email: string age: number }>(`SELECT * FROM active_users ORDER BY id;`) expect(viewData.rows).toHaveLength(3) expect(viewData.rows[1].name).toBe('Bob') // Delete a user profile await pg.exec(`DELETE FROM user_profiles WHERE user_id = 1;`) // Alice should no longer appear in the view viewData = await pg.query<{ id: number name: string email: string age: number }>(`SELECT * FROM active_users ORDER BY id;`) expect(viewData.rows).toHaveLength(2) expect(viewData.rows.every((row) => row.name !== 'Alice')).toBe(true) }) it('supports DISTINCT in views', async () => { const pg = new PGlite({ extensions: { pg_ivm, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_ivm;') // Create base table with potential duplicates await pg.exec(` CREATE TABLE events ( id SERIAL PRIMARY KEY, event_type VARCHAR(50), user_id INTEGER, timestamp TIMESTAMP DEFAULT NOW() ); `) // Create incremental materialized view with DISTINCT using dollar quoting await pg.exec(` SELECT pgivm.create_immv('unique_event_types', $$ SELECT DISTINCT event_type FROM events $$); `) // Insert some events with duplicates await pg.exec(` INSERT INTO events (event_type, user_id) VALUES ('login', 1), ('login', 2), ('logout', 1), ('purchase', 3), ('login', 3), ('logout', 2); `) // View should only contain unique event types let viewData = await pg.query<{ event_type: string }>( `SELECT * FROM unique_event_types ORDER BY event_type;`, ) expect(viewData.rows).toHaveLength(3) expect(viewData.rows.map((row) => row.event_type)).toEqual([ 'login', 'logout', 'purchase', ]) // Add a new unique event type await pg.exec( `INSERT INTO events (event_type, user_id) VALUES ('signup', 4);`, ) // View should include the new event type viewData = await pg.query<{ event_type: string }>( `SELECT * FROM unique_event_types ORDER BY event_type;`, ) expect(viewData.rows).toHaveLength(4) expect(viewData.rows.map((row) => row.event_type)).toEqual([ 'login', 'logout', 'purchase', 'signup', ]) // Add more of existing event type (should not change view) await pg.exec( `INSERT INTO events (event_type, user_id) VALUES ('login', 5);`, ) viewData = await pg.query<{ event_type: string }>( `SELECT * FROM unique_event_types ORDER BY event_type;`, ) expect(viewData.rows).toHaveLength(4) }) it('can use refresh_immv function', async () => { const pg = new PGlite({ extensions: { pg_ivm, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_ivm;') // Create base table await pg.exec(` CREATE TABLE items ( id SERIAL PRIMARY KEY, name VARCHAR(100), price DECIMAL(10,2) ); `) // Create IMMV using dollar quoting await pg.exec(` SELECT pgivm.create_immv('item_summary', $$ SELECT COUNT(*) as total_items, AVG(price) as avg_price FROM items $$); `) // Insert initial data await pg.exec( `INSERT INTO items (name, price) VALUES ('item1', 10.00), ('item2', 20.00);`, ) // Check initial view state let viewData = await pg.query<{ total_items: number; avg_price: string }>( `SELECT * FROM item_summary;`, ) expect(viewData.rows).toHaveLength(1) expect(viewData.rows[0].total_items).toBe(2) expect(Number(viewData.rows[0].avg_price)).toBe(15.0) // Test refresh_immv function await pg.exec(`SELECT pgivm.refresh_immv('item_summary', true);`) // View should still have the same data after refresh viewData = await pg.query<{ total_items: number; avg_price: string }>( `SELECT * FROM item_summary;`, ) expect(viewData.rows).toHaveLength(1) expect(viewData.rows[0].total_items).toBe(2) expect(Number(viewData.rows[0].avg_price)).toBe(15.0) }) }) }) ================================================ FILE: packages/pglite/tests/pg_textsearch.test.ts ================================================ /** * Tests for pg_textsearch extension. * Based on tests from https://github.com/timescale/pg_textsearch/tree/main/test/sql */ import { describe, it, expect } from 'vitest' import { testEsmCjsAndDTC } from './test-utils.ts' await testEsmCjsAndDTC(async (importType) => { const { PGlite } = importType === 'esm' ? await import('../dist/index.js') : ((await import( '../dist/index.cjs' )) as unknown as typeof import('../dist/index.js')) const { pg_textsearch } = importType === 'esm' ? await import('../dist/pg_textsearch/index.js') : ((await import( '../dist/pg_textsearch/index.cjs' )) as unknown as typeof import('../dist/pg_textsearch/index.js')) describe(`pg_textsearch`, () => { // From test/sql/basic.sql it('extension creation and bm25 access method', async () => { const pg = await PGlite.create({ extensions: { pg_textsearch, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_textsearch;') // Test bm25 access method exists const res = await pg.query<{ amname: string }>( "SELECT amname FROM pg_am WHERE amname = 'bm25';", ) expect(res.rows).toHaveLength(1) expect(res.rows[0].amname).toBe('bm25') }) // From test/sql/basic.sql - bm25vector type it('bm25vector type exists and works', async () => { const pg = new PGlite({ extensions: { pg_textsearch, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_textsearch;') // Test bm25vector type exists const res = await pg.query<{ pg_typeof: string }>( "SELECT pg_typeof('my_index:{database:2,system:1}'::bm25vector);", ) expect(res.rows[0].pg_typeof).toBe('bm25vector') // Test bm25vector input/output const res2 = await pg.query<{ bm25vector: string }>( "SELECT 'my_index:{database:2,system:1}'::bm25vector;", ) expect(res2.rows[0].bm25vector).toBe('my_index:{database:2,system:1}') }) // From test/sql/basic.sql - bm25query type it('bm25query type exists and works', async () => { const pg = new PGlite({ extensions: { pg_textsearch, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_textsearch;') // Test bm25query type exists const res = await pg.query<{ pg_typeof: string }>( "SELECT pg_typeof('search terms'::bm25query);", ) expect(res.rows[0].pg_typeof).toBe('bm25query') // Test to_bm25query function const res2 = await pg.query<{ to_bm25query: string }>( "SELECT to_bm25query('hello world');", ) expect(res2.rows[0].to_bm25query).toBe('hello world') }) // From test/sql/basic.sql - index creation and basic search it('bm25 index creation and basic search', async () => { const pg = new PGlite({ extensions: { pg_textsearch, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_textsearch;') await pg.exec(` CREATE TABLE test_docs (id SERIAL PRIMARY KEY, content TEXT); `) await pg.exec(` CREATE INDEX test_tapir_idx ON test_docs USING bm25(content) WITH (text_config='english'); `) // Verify index was created const indexRes = await pg.query<{ indexrelid: string }>(` SELECT indexrelid::regclass::text as indexrelid FROM pg_index WHERE indrelid = 'test_docs'::regclass AND indexrelid::regclass::text LIKE '%tapir%'; `) expect(indexRes.rows).toHaveLength(1) expect(indexRes.rows[0].indexrelid).toBe('test_tapir_idx') // Insert test documents await pg.exec(` INSERT INTO test_docs (content) VALUES ('hello world example'), ('database system design'), ('the quick brown fox'), ('jumped over lazy dog'), ('sphinx of black quartz'); `) // Test search with explicit index const searchRes = await pg.query<{ content: string; score: number }>(` SELECT content, content <@> to_bm25query('hello', 'test_tapir_idx') as score FROM test_docs ORDER BY score LIMIT 1; `) expect(searchRes.rows).toHaveLength(1) expect(searchRes.rows[0].content).toBe('hello world example') // BM25 returns negative scores expect(searchRes.rows[0].score).toBeLessThan(0) }) // From test/sql/queries.sql - realistic search queries it('top-k query patterns', async () => { const pg = new PGlite({ extensions: { pg_textsearch, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_textsearch;') await pg.exec(` CREATE TABLE articles ( id SERIAL PRIMARY KEY, title TEXT, content TEXT, category TEXT ); `) await pg.exec(` INSERT INTO articles (title, content, category) VALUES ('Introduction to Databases', 'postgresql database management system with advanced indexing capabilities for fast query processing', 'technology'), ('Machine Learning Fundamentals', 'machine learning algorithms and artificial intelligence techniques for data analysis and prediction', 'technology'), ('Text Search Algorithms', 'full text search with bm25 ranking and relevance scoring for information retrieval systems', 'technology'), ('Information Retrieval', 'information retrieval and search engines using vector space models and term frequency analysis', 'technology'), ('Natural Language Processing', 'natural language processing techniques including parsing stemming and semantic analysis', 'technology'), ('Database Optimization', 'database indexing and query optimization strategies for improving performance in large datasets', 'technology'); `) await pg.exec(` CREATE INDEX articles_idx ON articles USING bm25(content) WITH (text_config='english'); `) // Basic text search with LIMIT const res1 = await pg.query<{ title: string; score: number }>(` SELECT title, ROUND((content <@> to_bm25query('database', 'articles_idx'))::numeric, 4) as score FROM articles ORDER BY content <@> to_bm25query('database', 'articles_idx') LIMIT 3; `) expect(res1.rows.length).toBeLessThanOrEqual(3) // Database-related articles should rank first expect(res1.rows[0].title).toMatch(/database/i) // Multi-term search const res2 = await pg.query<{ title: string; score: number }>(` SELECT title, ROUND((content <@> to_bm25query('machine learning', 'articles_idx'))::numeric, 4) as score FROM articles ORDER BY content <@> to_bm25query('machine learning', 'articles_idx') LIMIT 3; `) expect(res2.rows.length).toBeLessThanOrEqual(3) expect(res2.rows[0].title).toBe('Machine Learning Fundamentals') // Category-filtered search const res3 = await pg.query<{ title: string; score: number }>(` SELECT title, ROUND((content <@> to_bm25query('search algorithms', 'articles_idx'))::numeric, 4) as score FROM articles WHERE category = 'technology' ORDER BY content <@> to_bm25query('search algorithms', 'articles_idx') LIMIT 5; `) expect(res3.rows.length).toBeGreaterThan(0) }) // From test/sql/scoring1.sql - bulk vs incremental index build it('bulk build mode (insert then create index)', async () => { const pg = new PGlite({ extensions: { pg_textsearch, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_textsearch;') await pg.exec(` CREATE TABLE scoring_bulk ( id SERIAL PRIMARY KEY, content TEXT ); `) // Insert test documents first await pg.exec( "INSERT INTO scoring_bulk (content) VALUES ('hello world');", ) await pg.exec( "INSERT INTO scoring_bulk (content) VALUES ('goodbye cruel world');", ) // Create index after data insertion (bulk build) await pg.exec(` CREATE INDEX scoring_bulk_idx ON scoring_bulk USING bm25(content) WITH (text_config='english', k1=1.2, b=0.75); `) // Query with 'world' const res = await pg.query<{ id: number content: string score: number }>(` SELECT id, content, ROUND((content <@> to_bm25query('world', 'scoring_bulk_idx'))::numeric, 4) as score FROM scoring_bulk ORDER BY content <@> to_bm25query('world', 'scoring_bulk_idx'), id; `) expect(res.rows).toHaveLength(2) // 'hello world' should rank higher (more negative score) expect(res.rows[0].content).toBe('hello world') expect(Number(res.rows[0].score)).toBeLessThan(Number(res.rows[1].score)) }) // From test/sql/strings.sql - various text patterns it('handles various text patterns', async () => { const pg = new PGlite({ extensions: { pg_textsearch, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_textsearch;') await pg.exec(` CREATE TABLE text_patterns ( id SERIAL PRIMARY KEY, content TEXT ); `) await pg.exec(` CREATE INDEX text_patterns_idx ON text_patterns USING bm25(content) WITH (text_config='english'); `) // Insert various text patterns await pg.exec(` INSERT INTO text_patterns (content) VALUES ('simple text'), ('UPPERCASE TEXT'), ('MiXeD CaSe TeXt'), ('text with numbers 123 456'), ('special-characters_and.punctuation!'), ('repeated word word word word'), (''); `) // Search should be case-insensitive const res = await pg.query<{ content: string }>(` SELECT content FROM text_patterns WHERE content <@> to_bm25query('text', 'text_patterns_idx') < 0 ORDER BY content <@> to_bm25query('text', 'text_patterns_idx'); `) // Should find multiple matches regardless of case expect(res.rows.length).toBeGreaterThan(1) }) // From test/sql/updates.sql - update and delete operations it('handles updates and deletes', async () => { const pg = new PGlite({ extensions: { pg_textsearch, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_textsearch;') await pg.exec(` CREATE TABLE update_test ( id SERIAL PRIMARY KEY, content TEXT ); `) await pg.exec(` CREATE INDEX update_test_idx ON update_test USING bm25(content) WITH (text_config='english'); `) // Insert initial data await pg.exec( "INSERT INTO update_test (content) VALUES ('original content here');", ) // Verify initial search works const res1 = await pg.query<{ id: number }>(` SELECT id FROM update_test WHERE content <@> to_bm25query('original', 'update_test_idx') < 0; `) expect(res1.rows).toHaveLength(1) // Update content await pg.exec( "UPDATE update_test SET content = 'modified content now' WHERE id = 1;", ) // 'original' should no longer match const res2 = await pg.query<{ id: number }>(` SELECT id FROM update_test WHERE content <@> to_bm25query('original', 'update_test_idx') < 0; `) expect(res2.rows).toHaveLength(0) // 'modified' should match const res3 = await pg.query<{ id: number }>(` SELECT id FROM update_test WHERE content <@> to_bm25query('modified', 'update_test_idx') < 0; `) expect(res3.rows).toHaveLength(1) // Delete await pg.exec('DELETE FROM update_test WHERE id = 1;') const res4 = await pg.query<{ id: number }>(` SELECT id FROM update_test WHERE content <@> to_bm25query('modified', 'update_test_idx') < 0; `) expect(res4.rows).toHaveLength(0) }) }) }) ================================================ FILE: packages/pglite/tests/pg_uuidv7.test.ts ================================================ import { describe, it, expect } from 'vitest' import { testEsmCjsAndDTC } from './test-utils.ts' await testEsmCjsAndDTC(async (importType) => { const { PGlite } = importType === 'esm' ? await import('../dist/index.js') : ((await import( '../dist/index.cjs' )) as unknown as typeof import('../dist/index.js')) const { pg_uuidv7 } = importType === 'esm' ? await import('../dist/pg_uuidv7/index.js') : ((await import( '../dist/pg_uuidv7/index.cjs' )) as unknown as typeof import('../dist/pg_uuidv7/index.js')) describe(`pg_uuidv7`, () => { it('can load extension', async () => { const pg = new PGlite({ extensions: { pg_uuidv7, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_uuidv7;') // Verify the extension is loaded const res = await pg.query<{ extname: string }>(` SELECT extname FROM pg_extension WHERE extname = 'pg_uuidv7' `) expect(res.rows).toHaveLength(1) expect(res.rows[0].extname).toBe('pg_uuidv7') }) it('should generate uuiv7', async () => { const pg = new PGlite({ extensions: { pg_uuidv7, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_uuidv7;') const res = await pg.exec(`SELECT uuid_generate_v7();`) expect(res[0].rows[0].uuid_generate_v7.length).toEqual(36) }) it('should generate uuiv7', async () => { const pg = new PGlite({ extensions: { pg_uuidv7, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_uuidv7;') const res = await pg.exec( `SELECT uuid_v7_to_timestamptz('018570bb-4a7d-7c7e-8df4-6d47afd8c8fc');`, ) expect(res[0].rows[0].uuid_v7_to_timestamptz.toISOString()).toEqual( '2023-01-02T04:26:40.637Z', ) }) }) }) ================================================ FILE: packages/pglite/tests/pgtap.test.ts ================================================ import { describe, it, expect } from 'vitest' import { testEsmCjsAndDTC } from './test-utils.ts' await testEsmCjsAndDTC(async (importType) => { const { PGlite } = importType === 'esm' ? await import('../dist/index.js') : ((await import( '../dist/index.cjs' )) as unknown as typeof import('../dist/index.js')) const { pgtap } = importType === 'esm' ? await import('../dist/pgtap/index.js') : ((await import( '../dist/pgtap/index.cjs' )) as unknown as typeof import('../dist/pgtap/index.js')) describe(`pgtap`, () => { it('can load extension', async () => { const pg = new PGlite({ extensions: { pgtap, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgtap;') // Verify the extension is loaded const res = await pg.query<{ extname: string }>(` SELECT extname FROM pg_extension WHERE extname = 'pgtap' `) expect(res.rows).toHaveLength(1) expect(res.rows[0].extname).toBe('pgtap') }) it('should run individual pgTAP assertions', async () => { const pg = new PGlite({ extensions: { pgtap, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgtap;') const res = await pg.exec(` -- Start transaction and plan the tests. BEGIN; SELECT plan(1); -- Run the tests. SELECT pass('This test passes'); -- Finish the tests and clean up. SELECT * FROM finish(); ROLLBACK; `) // we get 5 outputs, one for each SQL statement expect(res.length).toBe(5) expect(res[1].rows).toEqual([{ plan: '1..1' }]) expect(res[2].rows).toEqual([{ pass: 'ok 1 - This test passes' }]) // no issues reported in finish step expect(res[3].rows.length).toBe(0) }) it('should check for correct amounts of tests', async () => { const pg = new PGlite({ extensions: { pgtap, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgtap;') const res = await pg.exec(` BEGIN; SELECT plan(1); -- wrong amount of tests SELECT pass('This test passes'); SELECT pass('This test passes too'); SELECT * FROM finish(); ROLLBACK; `) expect(res.length).toBe(6) expect(res[1].rows).toEqual([{ plan: '1..1' }]) expect(res[2].rows).toEqual([{ pass: 'ok 1 - This test passes' }]) expect(res[3].rows).toEqual([{ pass: 'ok 2 - This test passes too' }]) expect(res[4].rows).toEqual([ { finish: '# Looks like you planned 1 test but ran 2', }, ]) }) it('should run multiple tests', async () => { const pg = new PGlite({ extensions: { pgtap, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgtap;') const res = await pg.exec(` -- Start transaction and plan the tests. BEGIN; CREATE TABLE test_table ( id SERIAL NOT NULL PRIMARY KEY, name TEXT DEFAULT '' ); SELECT plan(4); -- set the wrong number of tests on purpose -- Test that public schema exists SELECT has_schema('public', 'public schema should exist'); SELECT has_table('public', 'test_table', 'test_table should exist in public'); -- Cause an error SELECT has_table('table_that_does_not_exist', 'this table should exist'); -- Finish the tests and clean up. SELECT * FROM finish(); ROLLBACK; `) expect(res.length).toBe(8) expect(res[2].rows).toEqual([{ plan: '1..4' }]) expect(res[3].rows).toEqual([ { has_schema: 'ok 1 - public schema should exist' }, ]) expect(res[4].rows).toEqual([ { has_table: 'ok 2 - test_table should exist in public' }, ]) expect(res[5].rows).toEqual([ { has_table: 'not ok 3 - this table should exist\n# Failed test 3: "this table should exist"', }, ]) expect(res[6].rows).toEqual([ { finish: '# Looks like you planned 4 tests but ran 3' }, ]) }) it('should run pgTAP test suite', async () => { const pg = new PGlite({ extensions: { pgtap, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgtap;') const res = await pg.exec(` BEGIN; CREATE TABLE users ( id SERIAL NOT NULL PRIMARY KEY, name TEXT DEFAULT '' ); CREATE OR REPLACE FUNCTION setup_insert( ) RETURNS SETOF TEXT AS $$ BEGIN RETURN NEXT is( MAX(name), NULL, 'Should have no users') FROM users; INSERT INTO users (name) VALUES ('tester'); RETURN; END $$ LANGUAGE plpgsql; Create OR REPLACE FUNCTION test_user( ) RETURNS SETOF TEXT AS $$ SELECT is( name, 'tester', 'Should have name') FROM users; $$ LANGUAGE sql; SELECT * FROM runtests(); ROLLBACK; `) expect(res.length).toBe(6) // we don't care about the outputs of the other SQL statements before expect(res[4].rows).toEqual([ { runtests: '# Subtest: public.test_user()' }, { runtests: ' ok 1 - Should have no users' }, { runtests: ' ok 2 - Should have name' }, { runtests: ' 1..2' }, { runtests: 'ok 1 - public.test_user' }, { runtests: '1..1' }, ]) }) it('should run in-depth assertion tests', async () => { const pg = new PGlite({ extensions: { pgtap, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS pgtap;') const res = await pg.exec(` BEGIN; -- Create test user and grant privileges CREATE USER testuser WITH PASSWORD 'testpass'; GRANT CONNECT ON DATABASE postgres TO testuser; GRANT TEMPORARY ON DATABASE postgres TO testuser; GRANT CREATE ON DATABASE postgres TO testuser; -- Create tables and sample data CREATE TABLE users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, email TEXT UNIQUE, age INTEGER CHECK (age >= 0), created_at TIMESTAMP DEFAULT NOW() ); CREATE TABLE expected_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, email TEXT UNIQUE, age INTEGER CHECK (age >= 0), created_at TIMESTAMP DEFAULT NOW() ); CREATE TABLE large_table ( id SERIAL PRIMARY KEY, indexed_col INTEGER, data TEXT ); CREATE INDEX idx_large_table ON large_table(indexed_col); -- Insert sample data INSERT INTO users (name, email, age) VALUES ('alice', 'alice@example.com', 30), ('bob', 'bob@example.com', 25), ('charlie', 'charlie@example.com', 35); INSERT INTO expected_users (name, email, age) VALUES ('alice', 'alice@example.com', 30), ('bob', 'bob@example.com', 25), ('charlie', 'charlie@example.com', 35); INSERT INTO large_table (indexed_col, data) SELECT i, 'data_' || i FROM generate_series(1, 1000) i; -- Plan the number of tests SELECT plan(9); -- 1. results_eq() - Query result comparison SELECT results_eq( 'SELECT name, email, age FROM users ORDER BY id', 'SELECT name, email, age FROM expected_users ORDER BY id', 'Users table should match expected results' ); -- 2. set_eq() - Set comparison (order doesn't matter) SELECT set_eq( 'SELECT name FROM users', ARRAY['alice', 'bob', 'charlie'], 'Should have exactly these users (any order)' ); -- 3. bag_eq() - Bag comparison (allows duplicates) SELECT bag_eq( 'SELECT name FROM users WHERE age > 20', ARRAY['alice', 'bob', 'charlie'], 'Should have these users with age > 20' ); -- 4. throws_ok() - Exception testing SELECT throws_ok( 'INSERT INTO users (id, name) VALUES (NULL, ''test'')', '23502', 'null value in column "id" of relation "users" violates not-null constraint', 'Should enforce NOT NULL constraint on id' ); -- 5. Another throws_ok() - Check constraint violation SELECT throws_ok( 'INSERT INTO users (name, age) VALUES (''invalid'', -5)', '23514', 'new row for relation "users" violates check constraint "users_age_check"', 'Should enforce CHECK constraint on age' ); -- 6. performs_ok() - Performance testing SELECT performs_ok( 'SELECT * FROM large_table WHERE indexed_col = 123', 1000, 'Indexed query should complete within 1 second' ); -- 7. has_table() - Schema verification SELECT has_table('users', 'Should have users table'); -- 8. col_type_is() - Column type verification SELECT col_type_is( 'users', 'email', 'text', 'email column should be TEXT type' ); -- 9. database_privs_are() - Privilege verification SELECT database_privs_are( 'postgres', 'testuser', ARRAY['CONNECT', 'TEMPORARY', 'CREATE'], 'testuser should have specific database privileges' ); SELECT * FROM finish(); ROLLBACK; `) expect(res.length).toBe(24) // we don't care about the outputs of the other SQL statements before expect(res[12].rows).toEqual([{ plan: '1..9' }]) expect(res[13].rows).toEqual([ { results_eq: 'ok 1 - Users table should match expected results' }, ]) expect(res[14].rows).toEqual([ { set_eq: 'ok 2 - Should have exactly these users (any order)' }, ]) expect(res[15].rows).toEqual([ { bag_eq: 'ok 3 - Should have these users with age > 20' }, ]) expect(res[16].rows).toEqual([ { throws_ok: 'ok 4 - Should enforce NOT NULL constraint on id' }, ]) expect(res[17].rows).toEqual([ { throws_ok: 'ok 5 - Should enforce CHECK constraint on age' }, ]) expect(res[18].rows).toEqual([ { performs_ok: 'ok 6 - Indexed query should complete within 1 second', }, ]) expect(res[19].rows).toEqual([ { has_table: 'ok 7 - Should have users table' }, ]) expect(res[20].rows).toEqual([ { col_type_is: 'ok 8 - email column should be TEXT type' }, ]) expect(res[21].rows).toEqual([ { database_privs_are: 'ok 9 - testuser should have specific database privileges', }, ]) // no issues reported in finish step expect(res[22].rows.length).toBe(0) }) }) }) ================================================ FILE: packages/pglite/tests/pgvector.test.ts ================================================ import { describe, it, expect } from 'vitest' import { testEsmCjsAndDTC } from './test-utils.ts' await testEsmCjsAndDTC(async (importType) => { const { PGlite } = importType === 'esm' ? await import('../dist/index.js') : ((await import( '../dist/index.cjs' )) as unknown as typeof import('../dist/index.js')) const { vector } = importType === 'esm' ? await import('../dist/vector/index.js') : ((await import( '../dist/vector/index.cjs' )) as unknown as typeof import('../dist/vector/index.js')) describe(`pgvector`, () => { it('basic', async () => { const pg = new PGlite({ extensions: { vector, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS vector;') await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT, vec vector(3) ); `) await pg.exec("INSERT INTO test (name, vec) VALUES ('test1', '[1,2,3]');") await pg.exec("INSERT INTO test (name, vec) VALUES ('test2', '[4,5,6]');") await pg.exec("INSERT INTO test (name, vec) VALUES ('test3', '[7,8,9]');") const res = await pg.exec(` SELECT name, vec, vec <-> '[3,1,2]' AS distance FROM test; `) expect(res).toMatchObject([ { rows: [ { name: 'test1', vec: '[1,2,3]', distance: 2.449489742783178, }, { name: 'test2', vec: '[4,5,6]', distance: 5.744562646538029, }, { name: 'test3', vec: '[7,8,9]', distance: 10.677078252031311, }, ], fields: [ { name: 'name', dataTypeID: 25, }, { name: 'vec', dataTypeID: 16385, }, { name: 'distance', dataTypeID: 701, }, ], affectedRows: 0, }, ]) }) it('has correct oid', async () => { const pg = new PGlite({ extensions: { vector, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS vector;') const res = await pg.query<{ oid: number }>(` select oid from pg_extension where extname = 'vector' `) // 16384 is the first none builtin object id // as the vector extension is the first thing we create it should be this // it certainly wont be lower. // if it happens to be higher it may be that we have changed PGlite to create // something with that oid before handing back to the user, if thats the case we // should check what we are doing, and then update this test. expect(res.rows[0].oid).toBe(16384) }) it('has correct oid after restart', async () => { let pg = await PGlite.create({ dataDir: './pgdata-test-vector-oid', extensions: { vector, }, }) await pg.close() pg = await PGlite.create({ dataDir: './pgdata-test-vector-oid', extensions: { vector, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS vector;') const res = await pg.query<{ oid: number }>(` select oid from pg_extension where extname = 'vector' `) expect(res.rows[0].oid).toBeGreaterThan(16383) }) }) }) ================================================ FILE: packages/pglite/tests/plpgsql.test.js ================================================ import { describe, it, expect } from 'vitest' import { PGlite } from '../dist/index.js' describe('plpgsql', () => { it('can create and call function', async () => { const db = new PGlite() await db.exec(` CREATE EXTENSION IF NOT EXISTS plpgsql; CREATE OR REPLACE FUNCTION test_func() RETURNS TEXT AS $$ BEGIN RETURN 'test'; END; $$ LANGUAGE plpgsql; `) const res = await db.query('SELECT test_func();') expect(res.rows[0].test_func).toBe('test') }) it('can create and call complex function', async () => { const db = new PGlite() await db.exec(` CREATE EXTENSION IF NOT EXISTS plpgsql; CREATE OR REPLACE FUNCTION calculate_factorial(n INT) RETURNS INT AS $$ DECLARE result INT := 1; BEGIN IF n < 0 THEN RAISE EXCEPTION 'The input cannot be negative.'; ELSIF n = 0 OR n = 1 THEN RETURN result; ELSE FOR i IN 2..n LOOP result := result * i; END LOOP; RETURN result; END IF; END; $$ LANGUAGE plpgsql; `) const res = await db.query('SELECT calculate_factorial(5) AS result;') expect(res.rows[0].result).toBe(120) }) it('plpgsql usable after exception', async () => { const db = await PGlite.create() await db.exec(` CREATE EXTENSION IF NOT EXISTS plpgsql; CREATE OR REPLACE PROCEDURE raise_exception() LANGUAGE plpgsql AS $$ BEGIN RAISE 'exception'; END; $$; `) try { await db.exec('CALL raise_exception();') } catch (e) { // expected expect(e.message).toBe('exception') } }) }) ================================================ FILE: packages/pglite/tests/query-sizes.test.ts ================================================ import { describe, it, expect, beforeEach } from 'vitest' import { PGlite } from '../dist/index.js' function createStringOfSize(sizeInBytes: number): string { return 'a'.repeat(sizeInBytes) } const sizes = { '8kb': 8 * 1024, '5mb': 5 * 1024 * 1024, '12mb': 12 * 1024 * 1024, '128mb': 128 * 1024 * 1024, } const rowDataSizes = { '100b': 100, '1kb': 1024, '10kb': 10 * 1024, '100kb': 100 * 1024, } const rowCounts = { '1k rows': 1000, '10k rows': 10000, '100k rows': 100000, } function testEachSize( testFn: (sizeLabel: string, sizeInBytes: number) => Promise | void, ) { Object.entries(sizes).forEach(([sizeLabel, sizeInBytes]) => { it(`handles ${sizeLabel} data size`, async () => { await new Promise((resolve) => setTimeout(async () => { resolve(testFn(sizeLabel, sizeInBytes)) }, 10), ) }) }) } function testRowCountAndSize( testFn: ( countLabel: string, rowCount: number, sizeLabel: string, sizeInBytes: number, ) => Promise | void, ) { const countEntries = Object.entries(rowCounts) const sizeEntries = Object.entries(rowDataSizes) for (const [countLabel, rowCount] of countEntries) { for (const [sizeLabel, sizeInBytes] of sizeEntries) { if (sizeInBytes * rowCount > 1024 * 1024 * 1024) { // limit the size of the test to 1gb continue } it(`handles ${countLabel} with ${sizeLabel} per row`, async () => { await new Promise((resolve) => setTimeout(async () => { // We use a timeout to ensure the console.log is flushed // Some of these can take a while to run resolve(testFn(countLabel, rowCount, sizeLabel, sizeInBytes)) }, 10), ) }) } } } describe('query and exec with different data sizes', () => { let db: PGlite beforeEach(async () => { db = new PGlite({ debug: 0 }) await db.exec(` CREATE TABLE IF NOT EXISTS size_test ( id SERIAL PRIMARY KEY, data TEXT ); `) }) describe('exec method', () => { testEachSize(async (_, sizeInBytes) => { const testData = createStringOfSize(sizeInBytes) const results = await db.exec(` INSERT INTO size_test (data) VALUES ('${testData}'); SELECT * FROM size_test; `) expect(results).toHaveLength(2) expect(results[1].rows).toHaveLength(1) expect(results[1].rows[0].data).toBe(testData) expect(results[1].rows[0].data.length).toBe(sizeInBytes) }) }) describe('query method without params', () => { testEachSize(async (_, sizeInBytes) => { const testData = createStringOfSize(sizeInBytes) await db.query(`INSERT INTO size_test (data) VALUES ('${testData}');`) const result = await db.query<{ id: number; data: string }>( 'SELECT * FROM size_test;', ) expect(result.rows).toHaveLength(1) expect(result.rows[0].data).toBe(testData) expect(result.rows[0].data.length).toBe(sizeInBytes) }) }) describe('query method with params', () => { testEachSize(async (_, sizeInBytes) => { const testData = createStringOfSize(sizeInBytes) await db.query('INSERT INTO size_test (data) VALUES ($1);', [testData]) const result = await db.query<{ id: number; data: string }>( 'SELECT * FROM size_test WHERE data = $1;', [testData], ) expect(result.rows).toHaveLength(1) expect(result.rows[0].data).toBe(testData) expect(result.rows[0].data.length).toBe(sizeInBytes) }) }) }) describe('query with combinations of row counts and data sizes', () => { let db: PGlite beforeEach(async () => { db = new PGlite() }) testRowCountAndSize(async (_, rowCount, __, dataSize) => { const testData = createStringOfSize(dataSize) const result = await db.query<{ id: number; data: string }>(` SELECT generate_series(1, ${rowCount}) as id, '${testData}' as data; `) expect(result.rows).toHaveLength(rowCount) expect(result.rows[0].data).toBe(testData) expect(result.rows[0].data.length).toBe(dataSize) expect(result.rows[rowCount - 1].data).toBe(testData) expect(result.rows[rowCount - 1].data.length).toBe(dataSize) if (rowCount > 5) { const middleIndex = Math.floor(rowCount / 2) expect(result.rows[middleIndex].data).toBe(testData) expect(result.rows[middleIndex].data.length).toBe(dataSize) } }) }) describe('query with postgres-generated data of different sizes', () => { let db: PGlite beforeEach(async () => { db = new PGlite() }) testEachSize(async (_, sizeInBytes) => { const result = await db.query<{ id: number; data: string }>(` SELECT 1 as id, repeat('a', ${sizeInBytes}) as data; `) expect(result.rows).toHaveLength(1) expect(result.rows[0].data.length).toBe(sizeInBytes) expect(result.rows[0].data).toBe('a'.repeat(sizeInBytes)) }) }) ================================================ FILE: packages/pglite/tests/targets/deno/.gitignore ================================================ deno.lock ================================================ FILE: packages/pglite/tests/targets/deno/basic.test.deno.js ================================================ import { assertEquals, assertRejects, } from 'https://deno.land/std@0.202.0/testing/asserts.ts' import { PGlite } from '@electric-sql/pglite' import denoTestBaseConfig from './denoUtils.js' Deno.test({ ...denoTestBaseConfig, name: 'basic exec', fn: async () => { const db = new PGlite() await db.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) const multiStatementResult = await db.exec(` INSERT INTO test (name) VALUES ('test'); UPDATE test SET name = 'test2'; SELECT * FROM test; `) assertEquals(multiStatementResult, [ { affectedRows: 1, rows: [], fields: [], }, { affectedRows: 2, rows: [], fields: [], }, { rows: [{ id: 1, name: 'test2' }], fields: [ { name: 'id', dataTypeID: 23 }, { name: 'name', dataTypeID: 25 }, ], affectedRows: 2, }, ]) }, }) Deno.test({ ...denoTestBaseConfig, name: 'basic query', fn: async () => { const db = new PGlite() await db.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await db.query("INSERT INTO test (name) VALUES ('test');") const selectResult = await db.query(` SELECT * FROM test; `) assertEquals(selectResult, { rows: [ { id: 1, name: 'test', }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'name', dataTypeID: 25, }, ], affectedRows: 0, }) const updateResult = await db.query("UPDATE test SET name = 'test2';") assertEquals(updateResult, { rows: [], fields: [], affectedRows: 1, }) }, }) Deno.test({ ...denoTestBaseConfig, name: 'basic types', fn: async () => { const db = new PGlite() await db.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, text TEXT, number INT, float FLOAT, bigint BIGINT, bool BOOLEAN, date DATE, timestamp TIMESTAMP, json JSONB, blob BYTEA, array_text TEXT[], array_number INT[], nested_array_float FLOAT[][], test_null INT, test_undefined INT ); `) await db.query( ` INSERT INTO test (text, number, float, bigint, bool, date, timestamp, json, blob, array_text, array_number, nested_array_float, test_null, test_undefined) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14); `, [ 'test', 1, 1.5, 9223372036854775807n, true, new Date('2021-01-01'), new Date('2021-01-01T12:00:00'), { test: 'test' }, Uint8Array.from([1, 2, 3]), ['test1', 'test2', 'test,3'], [1, 2, 3], [ [1.1, 2.2], [3.3, 4.4], ], null, undefined, ], ) const res = await db.query(` SELECT * FROM test; `) assertEquals(res, { rows: [ { id: 1, text: 'test', number: 1, float: 1.5, bigint: 9223372036854775807n, bool: true, date: new Date('2021-01-01T00:00:00.000Z'), timestamp: new Date('2021-01-01T12:00:00.000Z'), json: { test: 'test' }, blob: Uint8Array.from([1, 2, 3]), array_text: ['test1', 'test2', 'test,3'], array_number: [1, 2, 3], nested_array_float: [ [1.1, 2.2], [3.3, 4.4], ], test_null: null, test_undefined: null, }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'text', dataTypeID: 25, }, { name: 'number', dataTypeID: 23, }, { name: 'float', dataTypeID: 701, }, { name: 'bigint', dataTypeID: 20, }, { name: 'bool', dataTypeID: 16, }, { name: 'date', dataTypeID: 1082, }, { name: 'timestamp', dataTypeID: 1114, }, { name: 'json', dataTypeID: 3802, }, { name: 'blob', dataTypeID: 17, }, { name: 'array_text', dataTypeID: 1009, }, { name: 'array_number', dataTypeID: 1007, }, { name: 'nested_array_float', dataTypeID: 1022, }, { name: 'test_null', dataTypeID: 23, }, { name: 'test_undefined', dataTypeID: 23, }, ], affectedRows: 0, }) // standardize timestamp comparison to UTC milliseconds to ensure predictable test runs on machines in different timezones. assertEquals( res.rows[0].timestamp.getUTCMilliseconds(), new Date('2021-01-01T12:00:00.000Z').getUTCMilliseconds(), ) }, }) Deno.test({ ...denoTestBaseConfig, name: 'basic params', fn: async () => { const db = new PGlite() await db.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await db.query('INSERT INTO test (name) VALUES ($1);', ['test2']) const res = await db.query(` SELECT * FROM test; `) assertEquals(res, { rows: [ { id: 1, name: 'test2', }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'name', dataTypeID: 25, }, ], affectedRows: 0, }) }, }) Deno.test({ ...denoTestBaseConfig, name: 'basic error', fn: async () => { const db = new PGlite() await assertRejects( async () => { await db.query('SELECT * FROM test;') }, Error, 'relation "test" does not exist', ) }, }) Deno.test({ ...denoTestBaseConfig, name: 'basic transaction', fn: async () => { const db = new PGlite() await db.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await db.query("INSERT INTO test (name) VALUES ('test');") await db.transaction(async (tx) => { await tx.query("INSERT INTO test (name) VALUES ('test2');") const res = await tx.query(` SELECT * FROM test; `) assertEquals(res, { rows: [ { id: 1, name: 'test', }, { id: 2, name: 'test2', }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'name', dataTypeID: 25, }, ], affectedRows: 0, }) await tx.rollback() }) const res = await db.query(` SELECT * FROM test; `) assertEquals(res, { rows: [ { id: 1, name: 'test', }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'name', dataTypeID: 25, }, ], affectedRows: 0, }) }, }) Deno.test({ ...denoTestBaseConfig, name: 'basic copy to/from blob', fn: async () => { const db = new PGlite() await db.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, test TEXT ); INSERT INTO test (test) VALUES ('test'), ('test2'); `) // copy to const ret = await db.query("COPY test TO '/dev/blob' WITH (FORMAT csv);") const csv = await ret.blob.text() assertEquals(csv, '1,test\n2,test2\n') // copy from const blob2 = new Blob([csv]) await db.exec(` CREATE TABLE IF NOT EXISTS test2 ( id SERIAL PRIMARY KEY, test TEXT ); `) await db.query("COPY test2 FROM '/dev/blob' WITH (FORMAT csv);", [], { blob: blob2, }) const res = await db.query(` SELECT * FROM test2; `) assertEquals(res, { rows: [ { id: 1, test: 'test', }, { id: 2, test: 'test2', }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'test', dataTypeID: 25, }, ], affectedRows: 0, }) }, }) Deno.test({ ...denoTestBaseConfig, name: 'basic close', fn: async () => { const db = new PGlite() await db.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await db.query("INSERT INTO test (name) VALUES ('test');") await db.close() await assertRejects( async () => { await db.query('SELECT * FROM test;') }, Error, 'PGlite is closed', ) }, }) ================================================ FILE: packages/pglite/tests/targets/deno/denoUtils.js ================================================ const denoTestBaseConfig = { sanitizeExit: false, sanitizeOps: false, sanitizeResources: false, } export default denoTestBaseConfig ================================================ FILE: packages/pglite/tests/targets/deno/fs.test.deno.js ================================================ import { assertEquals } from 'https://deno.land/std@0.202.0/testing/asserts.ts' import { PGlite } from '@electric-sql/pglite' import denoTestBaseConfig from './denoUtils.js' Deno.test({ ...denoTestBaseConfig, name: 'filesystem new', fn: async () => { const db = new PGlite('./pgdata-test') await db.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) const multiStatementResult = await db.exec(` INSERT INTO test (name) VALUES ('test'); UPDATE test SET name = 'test2'; SELECT * FROM test; `) assertEquals(multiStatementResult, [ { affectedRows: 1, rows: [], fields: [], }, { affectedRows: 2, rows: [], fields: [], }, { rows: [{ id: 1, name: 'test2' }], fields: [ { name: 'id', dataTypeID: 23 }, { name: 'name', dataTypeID: 25 }, ], affectedRows: 2, }, ]) await db.close() }, }) Deno.test({ ...denoTestBaseConfig, name: 'filesystem existing', fn: async () => { const db = new PGlite('./pgdata-test') const res = await db.exec('SELECT * FROM test;') assertEquals(res, [ { rows: [{ id: 1, name: 'test2' }], fields: [ { name: 'id', dataTypeID: 23 }, { name: 'name', dataTypeID: 25 }, ], affectedRows: 0, }, ]) await db.close() }, }) ================================================ FILE: packages/pglite/tests/targets/deno/package.json ================================================ { "name": "pglite-deno-tests", "type": "module", "private": true, "description": "Tests for pglite running in Deno. The `test` script below is designed to trick Deno into 'Node Compatibility' mode for the tests.", "scripts": { "test": "./runtest.sh" }, "dependencies": { "@electric-sql/pglite": "0.3.5" } } ================================================ FILE: packages/pglite/tests/targets/deno/pgvector.test.deno.js ================================================ import { assertEquals } from 'https://deno.land/std@0.202.0/testing/asserts.ts' import { PGlite } from '@electric-sql/pglite' import { vector } from '@electric-sql/pglite/vector' import denoTestBaseConfig from './denoUtils.js' Deno.test({ ...denoTestBaseConfig, name: 'pgvector', fn: async () => { const pg = new PGlite({ extensions: { vector, }, }) await pg.waitReady await pg.exec('CREATE EXTENSION IF NOT EXISTS vector;') await pg.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT, vec vector(3) ); `) await pg.exec("INSERT INTO test (name, vec) VALUES ('test1', '[1,2,3]');") await pg.exec("INSERT INTO test (name, vec) VALUES ('test2', '[4,5,6]');") await pg.exec("INSERT INTO test (name, vec) VALUES ('test3', '[7,8,9]');") const res = await pg.exec(` SELECT name, vec, vec <-> '[3,1,2]' AS distance FROM test; `) assertEquals(res, [ { rows: [ { name: 'test1', vec: '[1,2,3]', distance: 2.449489742783178, }, { name: 'test2', vec: '[4,5,6]', distance: 5.744562646538029, }, { name: 'test3', vec: '[7,8,9]', distance: 10.677078252031311, }, ], fields: [ { name: 'name', dataTypeID: 25, }, { name: 'vec', dataTypeID: 16385, }, { name: 'distance', dataTypeID: 701, }, ], affectedRows: 0, }, ]) }, }) ================================================ FILE: packages/pglite/tests/targets/deno/runtest.sh ================================================ #!/bin/bash rm -rf ./pgdata-test ./node_modules deno install mkdir -p ./node_modules/@electric-sql/pglite/dist cp -Rf ../../../dist/* node_modules/@electric-sql/pglite/dist/ TZ=UTC deno test --allow-read --allow-write --allow-env --allow-sys --node-modules-dir ./*.test.deno.js ================================================ FILE: packages/pglite/tests/targets/runtimes/base.js ================================================ import { describe, it, expect } from 'vitest' import { PGlite } from '../../../dist/index.js' export function tests(env, dbFilename, target) { describe(`targets ${target}`, () => { let db it(`basic`, async () => { db = new PGlite(dbFilename) await db.waitReady await db.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await db.query("INSERT INTO test (name) VALUES ('test');") const res = await db.query(` SELECT * FROM test; `) expect(res).toMatchObject({ affectedRows: 0, fields: [ { dataTypeID: 23, name: 'id', }, { dataTypeID: 25, name: 'name', }, ], rows: [ { id: 1, name: 'test', }, ], }) }) it(`params`, async () => { await db.query('INSERT INTO test (name) VALUES ($1);', ['test2']) const res = await db.query(` SELECT * FROM test; `) expect(res).toMatchObject({ affectedRows: 0, fields: [ { dataTypeID: 23, name: 'id', }, { dataTypeID: 25, name: 'name', }, ], rows: [ { id: 1, name: 'test', }, { id: 2, name: 'test2', }, ], }) }) it(`dump data dir and load it`, async () => { // Force compression to test that it's working in all environments const file = await db.dumpDataDir('gzip') const db2 = await PGlite.create({ loadDataDir: file, }) const res = await db2.query('SELECT * FROM test;') expect(res.rows).toEqual([ { id: 1, name: 'test', }, { id: 2, name: 'test2', }, ]) }) it(`close`, async () => { // should not throw await db.close() }) if (dbFilename === 'memory://') { // Skip the rest of the tests for memory:// as it's not persisted return } it(`persisted`, async () => { db = new PGlite(dbFilename) await db.waitReady const res = await db.query(` SELECT * FROM test; `) expect(res).toMatchObject({ affectedRows: 0, fields: [ { dataTypeID: 23, name: 'id', }, { dataTypeID: 25, name: 'name', }, ], rows: [ { id: 1, name: 'test', }, { id: 2, name: 'test2', }, ], }) }) }) } ================================================ FILE: packages/pglite/tests/targets/runtimes/node-fs.test.js ================================================ import { tests } from './base.js' import { describe, it, expect, beforeEach, afterAll } from 'vitest' import * as fs from 'fs/promises' import { PGlite } from '../../../dist/index.js' tests('node', './pgdata-test', 'node.fs') describe('NODEFS', () => { const folderPath = './pgdata-persisted' beforeEach(async () => { await fs.rm(folderPath, { force: true, recursive: true }) }) afterAll(async () => { await fs.rm(folderPath, { force: true, recursive: true }) }) it('reuse persisted folder', async () => { await fs.rm(folderPath, { force: true, recursive: true }) const pg1 = new PGlite(folderPath) await pg1.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT );`) pg1.exec("INSERT INTO test (name) VALUES ('test');") const ret1 = await pg1.query('SELECT * FROM test;') // emscripten NODEFS peculiarities: need to close everything to flush to disk await pg1.close() // now reusing the same folder should work! const pg2 = new PGlite(folderPath) const ret2 = await pg2.query('SELECT * FROM test;') expect(ret1).toEqual(ret2) await pg2.close() await fs.rm(folderPath, { force: true, recursive: true }) }) }) ================================================ FILE: packages/pglite/tests/targets/runtimes/node-memory.test.js ================================================ import { tests } from './base.js' tests('node', 'memory://', 'node.memory') ================================================ FILE: packages/pglite/tests/targets/web/base.js ================================================ import { describe, it, expect, beforeAll, afterAll } from 'vitest' import playwright from 'playwright' const wsPort = process.env.WS_PORT || 3334 const BASE_URL = `http://localhost:${wsPort}/tests/targets/web/blank.html` const PGLITE_PATH = '../../../dist/index.js' const PGLITE_WORKER_PATH = '../../../dist/worker/index.js' const PGLITE_LIVE_PATH = '../../../dist/live/index.js' const WORKER_PATH = '/tests/targets/web/worker.js' const useWorkerForBbFilename = ['opfs-ahp://base'] export function tests(env, dbFilename, target) { describe(`targets ${target}`, () => { let browser let evaluate let context let page let db let evaluationQueue = Promise.resolve() async function populateGlobals(page) { await page?.evaluate(` window.dbFilename = "${dbFilename}"; window.useWorkerForBbFilename = ${JSON.stringify(useWorkerForBbFilename)}; window.PGLITE_PATH = "${PGLITE_PATH}"; window.PGLITE_WORKER_PATH = "${PGLITE_WORKER_PATH}"; window.PGLITE_LIVE_PATH = "${PGLITE_LIVE_PATH}"; window.WORKER_PATH = "${WORKER_PATH}"; `) } afterAll(async () => { if (browser) { await browser.close() } }) beforeAll(async () => { browser = await playwright[env].launch() context = await browser.newContext() page = await context.newPage() await page.goto(BASE_URL) await populateGlobals(page) page.on('console', (msg) => { console.log(msg) }) evaluate = async (fn) => { try { const resultPromise = evaluationQueue.then(() => page.evaluate(fn)) evaluationQueue = resultPromise return await resultPromise } catch (e) { console.error(e) throw e } } }) it(`basic`, async () => { const res = await evaluate(async () => { if (useWorkerForBbFilename.includes(dbFilename)) { const { PGliteWorker } = await import(PGLITE_WORKER_PATH) db = new PGliteWorker( new Worker(WORKER_PATH, { type: 'module', }), { dataDir: dbFilename, }, ) } else { const { PGlite } = await import(PGLITE_PATH) db = new PGlite(dbFilename) } await db.waitReady await db.query(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await db.query("INSERT INTO test (name) VALUES ('test');") const res = await db.query(` SELECT * FROM test; `) return res }) expect(res).toMatchObject({ affectedRows: 0, fields: [ { dataTypeID: 23, name: 'id', }, { dataTypeID: 25, name: 'name', }, ], rows: [ { id: 1, name: 'test', }, ], }) }) it(`params`, async () => { const res = await evaluate(async () => { await db.query('INSERT INTO test (name) VALUES ($1);', ['test2']) const res = await db.query(` SELECT * FROM test; `) return res }) expect(res).toMatchObject({ affectedRows: 0, fields: [ { dataTypeID: 23, name: 'id', }, { dataTypeID: 25, name: 'name', }, ], rows: [ { id: 1, name: 'test', }, { id: 2, name: 'test2', }, ], }) }) it(`dump data dir and load it`, async () => { const res = await evaluate(async () => { // Force compression to test that it's working in all environments const file = await db.dumpDataDir('gzip') const { PGlite } = await import(PGLITE_PATH) const db2 = await PGlite.create({ loadDataDir: file, }) return await db2.query('SELECT * FROM test;') }) expect(res.rows).toEqual([ { id: 1, name: 'test', }, { id: 2, name: 'test2', }, ]) }) it(`close`, async () => { const err = await evaluate(async () => { try { await db.close() } catch (e) { console.error(e) return e.message } return null }) expect(err).toBe(null) }) if (dbFilename === 'memory://') { // Skip the rest of the tests for memory:// as it's not persisted return } it(`persisted`, async () => { await page?.reload() // Refresh the page await populateGlobals(page) const res = await evaluate(async () => { if (useWorkerForBbFilename.includes(dbFilename)) { const { PGliteWorker } = await import(PGLITE_WORKER_PATH) db = new PGliteWorker( new Worker(WORKER_PATH, { type: 'module', }), { dataDir: dbFilename, }, ) } else { const { PGlite } = await import(PGLITE_PATH) db = new PGlite(dbFilename) } await db.waitReady const res = await db.query(` SELECT * FROM test; `) return res }) expect(res).toMatchObject({ affectedRows: 0, fields: [ { dataTypeID: 23, name: 'id', }, { dataTypeID: 25, name: 'name', }, ], rows: [ { id: 1, name: 'test', }, { id: 2, name: 'test2', }, ], }) }) it(`worker live query`, async () => { const page2 = await context.newPage() await page2.goto(BASE_URL) await populateGlobals(page2) page.on('console', (msg) => { console.log(msg) }) const res2Prom = page2.evaluate(async () => { const { live } = await import(PGLITE_LIVE_PATH) const { PGliteWorker } = await import(PGLITE_WORKER_PATH) let db db = new PGliteWorker( new Worker(WORKER_PATH, { type: 'module', }), { dataDir: window.dbFilename, extensions: { live }, }, ) await db.waitReady let updatedResults const eventTarget = new EventTarget() const { initialResults } = await db.live.query( 'SELECT * FROM test ORDER BY name;', [], (result) => { updatedResults = result eventTarget.dispatchEvent(new Event('updated')) }, ) await new Promise((resolve) => { eventTarget.addEventListener('updated', resolve) }) return { initialResults, updatedResults } }) const res1 = await evaluate(async () => { const { live } = await import(PGLITE_LIVE_PATH) const { PGliteWorker } = await import(PGLITE_WORKER_PATH) let db db = new PGliteWorker( new Worker(WORKER_PATH, { type: 'module', }), { dataDir: window.dbFilename, extensions: { live }, }, ) await db.waitReady let updatedResults const eventTarget = new EventTarget() const { initialResults } = await db.live.query( 'SELECT * FROM test ORDER BY name;', [], (result) => { updatedResults = result eventTarget.dispatchEvent(new Event('updated')) }, ) await new Promise((resolve) => setTimeout(resolve, 500)) await db.sql`INSERT INTO test (id, name) VALUES (${3}, ${'test3'});` await new Promise((resolve) => { eventTarget.addEventListener('updated', resolve) }) return { initialResults, updatedResults } }) const res2 = await res2Prom expect(res1.initialResults.rows).toEqual([ { id: 1, name: 'test', }, { id: 2, name: 'test2', }, ]) for (const res of [res1, res2]) { expect(res.updatedResults.rows).toEqual([ { id: 1, name: 'test', }, { id: 2, name: 'test2', }, { id: 3, name: 'test3', }, ]) } }) it(`worker live incremental query`, async () => { const page2 = await context.newPage() await page2.goto(BASE_URL) await populateGlobals(page2) page.on('console', (msg) => { console.log(msg) }) const res2Prom = page2.evaluate(async () => { const { live } = await import(PGLITE_LIVE_PATH) const { PGliteWorker } = await import(PGLITE_WORKER_PATH) let db db = new PGliteWorker( new Worker(WORKER_PATH, { type: 'module', }), { dataDir: window.dbFilename, extensions: { live }, }, ) await db.waitReady let updatedResults const eventTarget = new EventTarget() const { initialResults } = await db.live.incrementalQuery( 'SELECT * FROM test ORDER BY name;', [], 'id', (result) => { updatedResults = result eventTarget.dispatchEvent(new Event('updated')) }, ) await new Promise((resolve) => { eventTarget.addEventListener('updated', resolve) }) return { initialResults, updatedResults } }) const res1 = await evaluate(async () => { const { live } = await import(PGLITE_LIVE_PATH) const { PGliteWorker } = await import(PGLITE_WORKER_PATH) let db db = new PGliteWorker( new Worker(WORKER_PATH, { type: 'module', }), { dataDir: window.dbFilename, extensions: { live }, }, ) await db.waitReady let updatedResults const eventTarget = new EventTarget() const { initialResults } = await db.live.incrementalQuery( 'SELECT * FROM test ORDER BY name;', [], 'id', (result) => { updatedResults = result eventTarget.dispatchEvent(new Event('updated')) }, ) await new Promise((resolve) => setTimeout(resolve, 500)) await db.query("INSERT INTO test (id, name) VALUES (4, 'test4');") await new Promise((resolve) => { eventTarget.addEventListener('updated', resolve) }) return { initialResults, updatedResults } }) const res2 = await res2Prom expect(res1.initialResults.rows).toEqual([ { id: 1, name: 'test', }, { id: 2, name: 'test2', }, { id: 3, name: 'test3', }, ]) for (const res of [res1, res2]) { expect(res.updatedResults.rows).toEqual([ { id: 1, name: 'test', }, { id: 2, name: 'test2', }, { id: 3, name: 'test3', }, { id: 4, name: 'test4', }, ]) } }) if (dbFilename.startsWith('idb://')) { it(`idb close and delete`, async () => { const res = await evaluate(async () => { await db.query('select 1;') await db.close() const waitForDelete = () => new Promise((resolve, reject) => { const req = indexedDB.deleteDatabase(dbFilename) req.onsuccess = () => { resolve() } req.onerror = () => { reject( req.error ? req.error : 'An unknown error occurred when deleting IndexedDB database', ) } req.onblocked = async () => { await new Promise((resolve) => setTimeout(resolve, 10)) resolve(waitForDelete()) } }) await waitForDelete() return true }) expect(res).toBe(true) }) } }) } ================================================ FILE: packages/pglite/tests/targets/web/blank.html ================================================ ================================================ FILE: packages/pglite/tests/targets/web/chromium-idb.test.web.js ================================================ import { tests } from './base.js' tests('chromium', 'idb://base', 'chromium.idb') ================================================ FILE: packages/pglite/tests/targets/web/chromium-memory.test.web.js ================================================ import { tests } from './base.js' tests('chromium', 'memory://', 'chromium.memory') ================================================ FILE: packages/pglite/tests/targets/web/chromium-opfs-ahp.test.web.js ================================================ import { tests } from './base.js' tests('chromium', 'opfs-ahp://base', 'chromium.opfs-ahp') ================================================ FILE: packages/pglite/tests/targets/web/firefox-idb.test.web.js ================================================ import { tests } from './base.js' tests('firefox', 'idb://base', 'firefox.idb') ================================================ FILE: packages/pglite/tests/targets/web/firefox-memory.test.web.js ================================================ import { tests } from './base.js' tests('firefox', 'memory://', 'firefox.memory') ================================================ FILE: packages/pglite/tests/targets/web/firefox-opfs-ahp.test.web.js ================================================ import { tests } from './base.js' tests('firefox', 'opfs-ahp://base', 'firefox.opfs-ahp') ================================================ FILE: packages/pglite/tests/targets/web/webkit-idb.test.web.js ================================================ import { tests } from './base.js' tests('webkit', 'idb://base', 'webkit.idb') ================================================ FILE: packages/pglite/tests/targets/web/webkit-memory.test.web.js ================================================ import { tests } from './base.js' tests('webkit', 'memory://', 'webkit.memory') ================================================ FILE: packages/pglite/tests/targets/web/webkit-opfs-ahp.test.web.js ================================================ // import { tests } from './base-web.js' import { it } from 'vitest' // There is an issue with webkit opening more than 252 access handles, this // prevents the opfs-ahp VFS working on webkit. :-( // tests("webkit", "opfs-ahp://base", "webkit.opfs-ahp"); it('dummy', () => {}) ================================================ FILE: packages/pglite/tests/targets/web/worker.js ================================================ import { PGlite } from '../../../dist/index.js' import { worker } from '../../../dist/worker/index.js' worker({ async init(options) { return new PGlite({ dataDir: options.dataDir, }) }, }) ================================================ FILE: packages/pglite/tests/templating.test.js ================================================ import { describe, it, expect } from 'vitest' import { query, sql, raw, identifier } from '../dist/templating.js' describe('templating', () => { it('should leave plain query untouched', () => { expect(query`SELECT * FROM test WHERE value = $1;`).toEqual({ query: 'SELECT * FROM test WHERE value = $1;', params: [], }) expect( query` CREATE TABLE test ( id SERIAL PRIMARY KEY, value TEXT );`, ).toEqual({ query: ` CREATE TABLE test ( id SERIAL PRIMARY KEY, value TEXT );`, params: [], }) }) it('should parametrize templated values', () => { expect(query`SELECT * FROM test WHERE value = ${'foo'};`).toEqual({ query: 'SELECT * FROM test WHERE value = $1;', params: ['foo'], }) expect( query`SELECT * FROM test WHERE value = ${'foo'} AND num = ${3};`, ).toEqual({ query: 'SELECT * FROM test WHERE value = $1 AND num = $2;', params: ['foo', 3], }) }) it('should parametrize templated values of null', () => { expect(query`SELECT * FROM test WHERE value = ${null};`).toEqual({ query: 'SELECT * FROM test WHERE value = $1;', params: [null], }) expect( query`SELECT * FROM test WHERE value = ${null} AND num = ${3};`, ).toEqual({ query: 'SELECT * FROM test WHERE value = $1 AND num = $2;', params: [null, 3], }) }) it('should correctly escape identifiers', () => { expect( query` CREATE TABLE ${identifier`test`} ( id SERIAL PRIMARY KEY, value TEXT );`, ).toEqual({ query: ` CREATE TABLE "test" ( id SERIAL PRIMARY KEY, value TEXT );`, params: [], }) expect( query`SELECT * FROM ${identifier`test_${2 + 3}_${'dance'}`};`, ).toEqual({ query: 'SELECT * FROM "test_5_dance";', params: [], }) }) it('should correctly escape raw sql', () => { expect( query`SELECT * FROM test ${raw`WHERE value = ${"'foo'"} AND num = ${3}`};`, ).toEqual({ query: "SELECT * FROM test WHERE value = 'foo' AND num = 3;", params: [], }) expect( query`SELECT * FROM test ${raw`WHERE value = ${"'foo'"} AND num = ${3}`};`, ).toEqual({ query: "SELECT * FROM test WHERE value = 'foo' AND num = 3;", params: [], }) }) it('should be able to nest templated statements', () => { const getStmt = (filterVar) => query`SELECT * FROM ${identifier`test`}${filterVar !== undefined ? sql` WHERE ${identifier`foo`} = ${filterVar}` : sql``};` expect(getStmt('foo')).toEqual({ query: 'SELECT * FROM "test" WHERE "foo" = $1;', params: ['foo'], }) expect(getStmt()).toEqual({ query: 'SELECT * FROM "test";', params: [], }) }) it('should parametrize without accounting for non-parameter values', () => { expect( query`SELECT * FROM ${identifier`test`} ${raw`WHERE value = ${"'foo'"}`} AND num = ${3};`, ).toEqual({ query: 'SELECT * FROM "test" WHERE value = \'foo\' AND num = $1;', params: [3], }) }) }) ================================================ FILE: packages/pglite/tests/test-utils.ts ================================================ import { describe, expect } from 'vitest' declare global { let Bun: any } export async function expectToThrowAsync( fn: () => Promise, expected?: string, ) { if (typeof Bun !== 'undefined') { // @ts-ignore because const bunTest = await import('bun:test') try { await fn() throw new Error('function did not throw') } catch (err) { if (expected) { return bunTest.expect(err.message).toBe(expected) } else { return bunTest.expect(err).toBeDefined() } } } return expect(fn).rejects.toThrow(expected) } export async function testEsmCjsAndDTC( fn: (importType: 'esm' | 'cjs') => Promise, ) { describe('esm import', async () => { await fn('esm') }) // don't run cjs tests for Bun if (typeof Bun !== 'undefined') return describe('cjs import', async () => { await fn('cjs') }) } ================================================ FILE: packages/pglite/tests/triggers.test.js ================================================ import { describe, it, beforeEach, afterEach } from 'vitest' import { PGlite } from '../dist/index.js' describe('db triggers', () => { let db let eventTarget beforeEach(async () => { db = await PGlite.create() eventTarget = new EventTarget() await db.listen('messages', (event) => eventTarget.dispatchEvent(new Event(event)), ) }) afterEach(() => { db.unlisten('messages') }) describe('regular triggers', () => { it('should detect insert on table', async () => { const eventType = `table changed` await db.exec(` CREATE EXTENSION IF NOT EXISTS plpgsql; CREATE TABLE foo_table (id TEXT, value TEXT); CREATE OR REPLACE FUNCTION foo() RETURNS trigger AS $$ BEGIN PERFORM pg_notify('messages', '${eventType}'); RETURN NULL; END; $$ LANGUAGE plpgsql; CREATE OR REPLACE TRIGGER table_trigger AFTER INSERT OR UPDATE OR DELETE ON foo_table EXECUTE FUNCTION foo(); `) db.query(`INSERT INTO foo_table (id, value) VALUES ('foo', 'bar');`) await new Promise((resolve) => eventTarget.addEventListener(eventType, resolve, { once: true }), ) }) }) describe('event triggers', () => { it('should detect ddl_command_end', async () => { const eventType = `table created or dropped` await db.exec(` CREATE EXTENSION IF NOT EXISTS plpgsql; CREATE OR REPLACE FUNCTION foo() RETURNS event_trigger AS $$ BEGIN PERFORM pg_notify('messages','${eventType}'); END; $$ LANGUAGE plpgsql; CREATE EVENT TRIGGER ddl_trigger ON ddl_command_end EXECUTE FUNCTION foo(); `) db.exec(`CREATE TABLE foo_table (id TEXT, value TEXT);`) await new Promise((resolve) => eventTarget.addEventListener(eventType, resolve, { once: true }), ) db.exec(`DROP TABLE foo_table;`) await new Promise((resolve) => eventTarget.addEventListener(eventType, resolve, { once: true }), ) }) it('should detect ddl_command_start', async () => { const eventType = `table created or dropped` await db.exec(` CREATE EXTENSION IF NOT EXISTS plpgsql; CREATE OR REPLACE FUNCTION foo() RETURNS event_trigger AS $$ BEGIN PERFORM pg_notify('messages','${eventType}'); END; $$ LANGUAGE plpgsql; CREATE EVENT TRIGGER ddl_trigger ON ddl_command_start EXECUTE FUNCTION foo(); `) db.exec(`CREATE TABLE foo_table (id TEXT, value TEXT);`) await new Promise((resolve) => eventTarget.addEventListener(eventType, resolve, { once: true }), ) db.exec(`DROP TABLE foo_table;`) await new Promise((resolve) => eventTarget.addEventListener(eventType, resolve, { once: true }), ) }) it('should detect sql_drop', async () => { const eventType = `table dropped` await db.exec(` CREATE EXTENSION IF NOT EXISTS plpgsql; CREATE OR REPLACE FUNCTION foo() RETURNS event_trigger AS $$ BEGIN PERFORM pg_notify('messages','${eventType}'); END; $$ LANGUAGE plpgsql; CREATE EVENT TRIGGER ddl_trigger ON sql_drop EXECUTE FUNCTION foo(); `) db.exec(`CREATE TABLE foo_table (id TEXT, value TEXT);`) // -> Should NOT fire the event trigger await new Promise((resolve, reject) => { eventTarget.addEventListener(eventType, reject, { once: true }) setTimeout(resolve, 500) }) db.exec(`DROP TABLE foo_table;`) await new Promise((resolve) => eventTarget.addEventListener(eventType, resolve, { once: true }), ) }) }) }) ================================================ FILE: packages/pglite/tests/types.test.ts ================================================ import { describe, it, expect } from 'vitest' import { types } from '../dist/index.js' describe('parse', () => { it('text', () => { expect(types.parseType('test', 0)).toEqual('test') }) it('varchar 1043', () => { expect(types.parseType('test', 1043)).toEqual('test') }) it('int2 21', () => { expect(types.parseType('1', 21)).toEqual(1) }) it('int4 23', () => { expect(types.parseType('1', 23)).toEqual(1) }) it('oid 26', () => { expect(types.parseType('1', 26)).toEqual(1) }) it('float4 700', () => { expect(types.parseType('1.1', 700)).toEqual(1.1) }) it('float8 701', () => { expect(types.parseType('1.1', 701)).toEqual(1.1) }) it('int8 20', () => { expect(types.parseType('1', 20)).toEqual(1) }) it('json 114', () => { expect(types.parseType('{"test":1}', 114)).toEqual({ test: 1 }) }) it('jsonb 3802', () => { expect(types.parseType('{"test":1}', 3802)).toEqual({ test: 1 }) }) it('bool 16', () => { expect(types.parseType('t', 16)).toEqual(true) }) it('date 1082', () => { expect(types.parseType('2021-01-01', 1082)).toEqual( new Date('2021-01-01T00:00:00.000Z'), ) }) it('timestamp 1114', () => { // standardize timestamp comparison to UTC milliseconds to ensure predictable test runs on machines in different timezones. expect( types.parseType('2021-01-01T12:00:00', 1114).getUTCMilliseconds(), ).toEqual(new Date('2021-01-01T12:00:00.000Z').getUTCMilliseconds()) }) it('timestamptz 1184', () => { // standardize timestamp comparison to UTC milliseconds to ensure predictable test runs on machines in different timezones. expect( types.parseType('2021-01-01T12:00:00', 1184).getUTCMilliseconds(), ).toEqual(new Date('2021-01-01T12:00:00.000Z').getUTCMilliseconds()) }) it('bytea 17', () => { expect(types.parseType('\\x010203', 17)).toEqual(Uint8Array.from([1, 2, 3])) }) it('unknown', () => { expect(types.parseType('test', 0)).toEqual('test') }) }) // Serialize type tests describe('serialize', () => { it('string', () => { expect(types.serializers[25]('test')).toEqual('test') }) it('string from number', () => { expect(types.serializers[25](1)).toEqual('1') }) it('not string', () => { expect(() => types.serializers[25](true)).toThrow() }) it('number', () => { expect(types.serializers[0](1)).toEqual('1') expect(types.serializers[0](1.1)).toEqual('1.1') }) it('bigint', () => { expect(types.serializers[20](1n)).toEqual('1') }) it('bool', () => { expect(types.serializers[16](true)).toEqual('t') }) it('not bool', () => { expect(() => types.serializers[16]('test')).toThrow() }) it('date', () => { expect( types.serializers[1184](new Date('2021-01-01T00:00:00.000Z')), ).toEqual('2021-01-01T00:00:00.000Z') }) it('date from number', () => { expect(types.serializers[1184](1672531200000)).toEqual( '2023-01-01T00:00:00.000Z', ) }) it('date from string', () => { expect(types.serializers[1184]('2021-01-01T00:00:00.000Z')).toEqual( '2021-01-01T00:00:00.000Z', ) }) it('not date', () => { expect(() => types.serializers[1184](true)).toThrow() }) it('json', () => { expect(types.serializers[114]({ test: 1 })).toEqual('{"test":1}') }) it('json from string', () => { expect(types.serializers[114](JSON.stringify({ test: 1 }))).toEqual( '{"test":1}', ) }) it('blob', () => { expect(types.serializers[17](Uint8Array.from([1, 2, 3]))).toEqual( '\\x010203', ) }) it('not blob', () => { expect(() => types.serializers[17](1)).toThrow() }) }) ================================================ FILE: packages/pglite/tests/user.test.ts ================================================ import { describe, it, expect, afterAll } from 'vitest' import { expectToThrowAsync } from './test-utils.js' import * as fs from 'fs/promises' import { PGlite } from '../dist/index.js' describe('user', () => { afterAll(async () => { await fs.rm('./pgdata-test-user', { force: true, recursive: true }) }) it('user switching', async () => { await fs.rm('./pgdata-test-user', { force: true, recursive: true }) const db = new PGlite('./pgdata-test-user') await db.exec( "CREATE USER test_user WITH PASSWORD 'md5abdbecd56d5fbd2cdaee3d0fa9e4f434';", ) await db.exec(` CREATE TABLE test ( id SERIAL PRIMARY KEY, number INT ); INSERT INTO test (number) VALUES (42); `) await db.exec(` CREATE TABLE test2 ( id SERIAL PRIMARY KEY, number INT ); INSERT INTO test2 (number) VALUES (42); `) const test = await db.query('SELECT * FROM test2;') expect(test.rows).toEqual([{ id: 1, number: 42 }]) await db.exec('ALTER TABLE test2 OWNER TO test_user;') await db.close() const db2 = new PGlite({ dataDir: './pgdata-test-user', username: 'test_user', }) const currentUsername = await db2.query('SELECT current_user;') expect(currentUsername.rows).toEqual([{ current_user: 'test_user' }]) await expectToThrowAsync(async () => { await db2.query('SELECT * FROM test;') }, 'permission denied for table test') const test2 = await db2.query('SELECT * FROM test2;') expect(test2.rows).toEqual([{ id: 1, number: 42 }]) // tdrz: TODO! // await expectToThrowAsync(async () => { // await db2.query('SET ROLE postgres;') // }, 'permission denied to set role "postgres"') await expectToThrowAsync(async () => { await db2.query('SET ROLE postgres;') }) }) it('switch to user created after initial run', async () => { await fs.rm('./pgdata-test-user', { force: true, recursive: true }) const db0 = new PGlite('./pgdata-test-user') await db0.waitReady await db0.close() const db = new PGlite('./pgdata-test-user') await db.exec( "CREATE USER test_user WITH PASSWORD 'md5abdbecd56d5fbd2cdaee3d0fa9e4f434';", ) await db.exec(` CREATE TABLE test ( id SERIAL PRIMARY KEY, number INT ); INSERT INTO test (number) VALUES (42); `) await db.exec(` CREATE TABLE test2 ( id SERIAL PRIMARY KEY, number INT ); INSERT INTO test2 (number) VALUES (42); `) await db.exec('ALTER TABLE test2 OWNER TO test_user;') await db.close() const db2 = new PGlite({ dataDir: './pgdata-test-user', username: 'test_user', }) const currentUsername = await db2.query('SELECT current_user;') expect(currentUsername.rows).toEqual([{ current_user: 'test_user' }]) await expectToThrowAsync(async () => { await db2.query('SELECT * FROM test;') }, 'permission denied for table test') const test2 = await db2.query('SELECT * FROM test2;') expect(test2.rows).toEqual([{ id: 1, number: 42 }]) // tdrz: TODO! // await expectToThrowAsync(async () => { // await db2.query('SET ROLE postgres;') // }, 'permission denied to set role "postgres"') await expectToThrowAsync(async () => { await db2.query('SET ROLE postgres;') }) }) it('create database and switch to it', async () => { await fs.rm('./pgdata-test-user', { force: true, recursive: true }) const db = new PGlite('./pgdata-test-user') await db.exec( "CREATE USER test_user WITH PASSWORD 'md5abdbecd56d5fbd2cdaee3d0fa9e4f434';", ) await db.exec('CREATE DATABASE test_db OWNER test_user;') await db.close() const db2 = new PGlite({ dataDir: './pgdata-test-user', username: 'test_user', database: 'test_db', }) const currentUsername = await db2.query('SELECT current_user;') expect(currentUsername.rows).toEqual([{ current_user: 'test_user' }]) const currentDatabase = await db2.query('SELECT current_database();') expect(currentDatabase.rows).toEqual([{ current_database: 'test_db' }]) }) }) ================================================ FILE: packages/pglite/tests/utils.test.ts ================================================ import { describe, it, expect } from 'vitest' import { debounceMutex } from '../src/utils' describe('debounceMutex', () => { const delay = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)) it('should execute first and last calls, cancelling intermediate ones', async () => { const results: number[] = [] const fn = async (n: number) => { await delay(10) results.push(n) return n } const debouncedFn = debounceMutex(fn) // Start multiple calls in quick succession const calls = [debouncedFn(1), debouncedFn(2), debouncedFn(3)] const returnValues = await Promise.all(calls) // Check execution order and return values expect(results).toEqual([1, 3]) expect(returnValues).toEqual([1, undefined, 3]) }) it('should respect execution order regardless of delays', async () => { const results: number[] = [] const fn = async (n: number, delayMs: number) => { await delay(delayMs) results.push(n) return n } const debouncedFn = debounceMutex(fn) const call1 = debouncedFn(1, 50) // Longer delay, but should complete first const call2 = debouncedFn(2, 10) // Should be replaced and return undefined const call3 = debouncedFn(3, 10) // Should complete second despite shorter delay const returnValues = await Promise.all([call1, call2, call3]) expect(results).toEqual([1, 3]) expect(returnValues).toEqual([1, undefined, 3]) }) it('should handle errors properly', async () => { const fn = async () => { throw new Error('Test error') } const debouncedFn = debounceMutex(fn) await expect(debouncedFn()).rejects.toThrow('Test error') }) }) ================================================ FILE: packages/pglite/tests/xml.test.ts ================================================ import { describe, it, expect, beforeAll, afterAll } from 'vitest' import { PGlite } from '../dist/index.js' import * as fs from 'fs/promises' describe('XML functionality', () => { let db beforeAll(async () => { await fs.rm('./pgdata-test-xml', { force: true, recursive: true }) db = new PGlite('./pgdata-test-xml') await db.exec(` CREATE TABLE xml_test ( id SERIAL PRIMARY KEY, data XML ); `) }) afterAll(async () => { await db.close() }) it('should create XML documents', async () => { await db.exec(` INSERT INTO xml_test (data) VALUES ('value1'), ('value2'); `) const result = await db.query('SELECT * FROM xml_test;') expect(result.rows).toEqual([ { id: 1, data: 'value1' }, { id: 2, data: 'value2' }, ]) }) it('should use xpath to query XML documents', async () => { const result = await db.query(` SELECT xpath('/root/element/text()', data) AS elements FROM xml_test; `) expect(result.rows).toEqual([ { elements: ['value1'] }, { elements: ['value2'] }, ]) }) it('should use XML aggregation', async () => { const result = await db.query(` SELECT xmlelement(name "aggregated", xmlagg(data)) AS aggregated_data FROM xml_test; `) expect(result.rows[0].aggregated_data).toEqual( 'value1value2', ) }) }) ================================================ FILE: packages/pglite/tsconfig.json ================================================ { "extends": "../../tsconfig.json", "compilerOptions": { "types": ["@types/emscripten", "node"], "paths": { "@electric-sql/pg-protocol": [ "./node_modules/@electric-sql/pg-protocol/src/index" ], "@electric-sql/pg-protocol/messages": [ "./node_modules/@electric-sql/pg-protocol/src/messages" ] } }, "include": ["src", "tsup.config.ts", "vitest.config.ts"] } ================================================ FILE: packages/pglite/tsup.config.ts ================================================ import { defineConfig } from 'tsup' import path from 'path' import { fileURLToPath } from 'url' import fs from 'fs' const thisFile = fileURLToPath(new URL(import.meta.url)) const root = path.dirname(thisFile) const replaceAssertPlugin = { name: 'replace-assert', setup(build: any) { // Resolve `assert` to a blank file build.onResolve({ filter: /^assert$/ }, (_args: any) => { return { path: path.join(root, 'src', 'polyfills', 'blank.ts') } }) }, } const entryPoints = [ 'src/index.ts', 'src/fs/nodefs.ts', 'src/fs/opfs-ahp.ts', 'src/fs/base.ts', 'src/templating.ts', 'src/live/index.ts', 'src/vector/index.ts', 'src/pg_ivm/index.ts', 'src/pgtap/index.ts', 'src/pg_uuidv7/index.ts', 'src/age/index.ts', 'src/worker/index.ts', 'src/pg_hashids/index.ts', 'src/pg_textsearch/index.ts', ] const contribDir = path.join(root, 'src', 'contrib') const contribFiles = await fs.promises.readdir(contribDir) for (const file of contribFiles) { if (file.endsWith('.ts')) { entryPoints.push(`src/contrib/${file}`) } } const minify = process.env.DEBUG === 'true' ? false : true export default defineConfig([ { entry: entryPoints, sourcemap: true, dts: { entry: entryPoints, resolve: true, }, clean: true, external: ['../release/pglite.js', '../release/pglite.cjs'], esbuildPlugins: [replaceAssertPlugin], minify: minify, shims: true, // Convert import.meta.url to a shim for CJS format: ['esm', 'cjs'], }, { // Convert the Emscripten ESM bundle to a CJS bundle entry: ['release/pglite.js'], format: ['cjs'], minify: minify, shims: true, // Convert import.meta.url to a shim for CJS keepNames: true, }, ]) ================================================ FILE: packages/pglite/vitest.config.ts ================================================ import { defineConfig } from 'vitest/config' export default defineConfig({ test: { name: 'pglite', dir: './tests', watch: false, typecheck: { enabled: true }, testTimeout: 30000, hookTimeout: 30000, include: ['**/*.{test,test.web}.{js,ts}'], server: { deps: { external: [/\/tests\/targets\/web\//], }, }, }, }) ================================================ FILE: packages/pglite-postgis/.gitignore ================================================ release/* dist ================================================ FILE: packages/pglite-postgis/CHANGELOG.md ================================================ # @electric-sql/pglite-postgis ## 0.0.3 ### Patch Changes - Updated dependencies [37fb39e] - @electric-sql/pglite@0.4.1 ## 0.0.2 ### Patch Changes - d6f9910: Fix deployed package on npmjs ## 0.0.1 ### Patch Changes - New package for postgis (experimental) as extension. - Updated dependencies [d848955] - @electric-sql/pglite@0.4.0 ================================================ FILE: packages/pglite-postgis/README.md ================================================ # @electric-sql/pglite-postgis *** EXPERIMENTAL *** PostGIS extension for [PGlite](https://pglite.dev). This is an experimental release, use at your own risk. ## Installation ```bash npm install @electric-sql/pglite-postgis ``` ## Usage ```typescript import { PGlite } from '@electric-sql/pglite' import { postgis } from '@electric-sql/pglite-postgis' const pg = new PGlite({ extensions: { postgis, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS postgis;') // Create a table with geometry columns await pg.exec(` CREATE TABLE cities ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, location GEOMETRY(Point, 4326) ); `) // Insert data await pg.query(` INSERT INTO cities (name, location) VALUES ('New York', ST_GeomFromText('POINT(-74.0060 40.7128)', 4326)) `) // Query with spatial functions const result = await pg.query(` SELECT name, ST_AsText(location) as location FROM cities `) ``` ## License Apache-2.0 ================================================ FILE: packages/pglite-postgis/eslint.config.js ================================================ import globals from 'globals' import rootConfig from '../../eslint.config.js' export default [ ...rootConfig, { ignores: ['release/**/*', 'dist/**/*'], }, { languageOptions: { globals: { ...globals.browser, ...globals.node, }, }, rules: { ...rootConfig.rules, '@typescript-eslint/no-explicit-any': 'off', }, }, ] ================================================ FILE: packages/pglite-postgis/package.json ================================================ { "name": "@electric-sql/pglite-postgis", "version": "0.0.3", "description": "PostGIS extension for PGlite", "author": "Electric DB Limited", "homepage": "https://pglite.dev", "license": "Apache-2.0", "keywords": [ "postgres", "sql", "database", "wasm", "pglite", "postgis", "gis", "geospatial" ], "private": false, "publishConfig": { "access": "public" }, "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "files": [ "dist" ], "repository": { "type": "git", "url": "git+https://github.com/electric-sql/pglite.git", "directory": "packages/pglite-postgis" }, "scripts": { "build": "tsup && tsx scripts/bundle-wasm.ts", "check:exports": "attw . --pack --profile node16", "lint": "eslint ./src ./tests --report-unused-disable-directives --max-warnings 0", "format": "prettier --write ./src ./tests", "typecheck": "tsc", "stylecheck": "pnpm lint && prettier --check ./src ./tests", "test": "vitest", "prepublishOnly": "pnpm check:exports" }, "devDependencies": { "@arethetypeswrong/cli": "^0.18.1", "@electric-sql/pglite": "workspace:*", "@types/node": "^20.16.11", "vitest": "^2.1.2" }, "peerDependencies": { "@electric-sql/pglite": "workspace:*" } } ================================================ FILE: packages/pglite-postgis/scripts/bundle-wasm.ts ================================================ import * as fs from 'fs/promises' import * as path from 'path' async function findAndReplaceInFile( find: string | RegExp, replace: string, file: string, ): Promise { const content = await fs.readFile(file, 'utf8') const replacedContent = content.replace(find, replace) await fs.writeFile(file, replacedContent) } async function findAndReplaceInDir( dir: string, find: string | RegExp, replace: string, extensions: string[], recursive = false, ): Promise { const files = await fs.readdir(dir, { withFileTypes: true }) for (const file of files) { const filePath = path.join(dir, file.name) if (file.isDirectory() && recursive) { await findAndReplaceInDir(filePath, find, replace, extensions) } else { const fileExt = path.extname(file.name) if (extensions.includes(fileExt)) { await findAndReplaceInFile(find, replace, filePath) } } } } const copyFiles = async (srcDir: string, destDir: string) => { await fs.mkdir(destDir, { recursive: true }) const files = await fs.readdir(srcDir) for (const file of files) { if (file.startsWith('.')) { continue } const srcFile = path.join(srcDir, file) const destFile = path.join(destDir, file) const stat = await fs.stat(srcFile) if (stat.isFile()) { await fs.copyFile(srcFile, destFile) console.log(`Copied ${srcFile} to ${destFile}`) } } } async function main() { await copyFiles('./release', './dist') await findAndReplaceInDir('./dist', /\.\.\/release\//g, './', ['.js', '.cjs']) } await main() ================================================ FILE: packages/pglite-postgis/src/index.ts ================================================ import type { Extension, ExtensionSetupResult, PGliteInterface, } from '@electric-sql/pglite' const setup = async (_pg: PGliteInterface, emscriptenOpts: any) => { return { emscriptenOpts, bundlePath: new URL('../release/postgis.tar.gz', import.meta.url), } satisfies ExtensionSetupResult } export const postgis = { name: 'postgis', setup, } satisfies Extension ================================================ FILE: packages/pglite-postgis/tests/postgis.test.ts ================================================ import { describe, it, expect } from 'vitest' import { PGlite } from '@electric-sql/pglite' import { postgis } from '../src/index.js' describe(`postgis`, () => { it('basic', async () => { const pg = new PGlite({ extensions: { postgis, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS postgis;') await pg.exec(` CREATE TABLE vehicle_location ( time TIMESTAMPTZ NOT NULL, vehicle_id INT NOT NULL, location GEOGRAPHY(POINT, 4326) ); `) const inserted = await pg.query(`INSERT INTO vehicle_location VALUES ('2023-05-29 20:00:00', 1, 'POINT(15.3672 -87.7231)'), ('2023-05-30 20:00:00', 1, 'POINT(15.3652 -80.7331)'), ('2023-05-31 20:00:00', 1, 'POINT(15.2672 -85.7431)');`) expect(inserted.affectedRows).toEqual(3) }), it('cities', async () => { const pg = new PGlite({ extensions: { postgis, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS postgis;') await pg.exec(` CREATE TABLE cities ( id SERIAL PRIMARY KEY, name VARCHAR(100), location GEOMETRY(Point, 4326) ); `) const inserted = await pg.query(`INSERT INTO cities (name, location) VALUES ('New York', ST_GeomFromText('POINT(-74.0060 40.7128)', 4326)), ('Los Angeles', ST_GeomFromText('POINT(-118.2437 34.0522)', 4326)), ('Chicago', ST_GeomFromText('POINT(-87.6298 41.8781)', 4326));`) expect(inserted.affectedRows).toEqual(3) const cities = await pg.query(`WITH state_boundary AS ( SELECT ST_GeomFromText( 'POLYGON((-91 36, -91 43, -87 43, -87 36, -91 36))', 4326 ) AS geom ) SELECT c.name FROM cities c, state_boundary s WHERE ST_Within(c.location, s.geom);`) expect(cities.affectedRows).toBe(0) expect(cities.rows[0]).toEqual({ name: 'Chicago', }) }) }) it('areas', async () => { const pg = new PGlite({ extensions: { postgis, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS postgis;') const area1 = await pg.exec(` select ST_Area(geom) sqft, ST_Area(geom) * 0.3048 ^ 2 sqm from ( select 'SRID=2249;POLYGON((743238 2967416,743238 2967450, 743265 2967450,743265.625 2967416,743238 2967416))' :: geometry geom ) subquery;`) expect(area1).toEqual([ { rows: [ { sqft: 928.625, sqm: 86.27208552, }, ], fields: [ { name: 'sqft', dataTypeID: 701, }, { name: 'sqm', dataTypeID: 701, }, ], affectedRows: 0, }, ]) const area2 = await pg.exec(` select ST_Area(geom) sqft, ST_Area(ST_Transform(geom, 26986)) As sqm from ( select 'SRID=2249;POLYGON((743238 2967416,743238 2967450, 743265 2967450,743265.625 2967416,743238 2967416))' :: geometry geom ) subquery; -- Cleanup test schema -- DROP SCHEMA postgis_test CASCADE; `) expect(area2).toEqual([ { rows: [ { sqft: 928.625, sqm: 86.27243061926092, }, ], fields: [ { name: 'sqft', dataTypeID: 701, }, { name: 'sqm', dataTypeID: 701, }, ], affectedRows: 0, }, ]) const area3 = await pg.exec(` select ST_Area(geog) / 0.3048 ^ 2 sqft_spheroid, ST_Area(geog, false) / 0.3048 ^ 2 sqft_sphere, ST_Area(geog) sqm_spheroid from ( select ST_Transform( 'SRID=2249;POLYGON((743238 2967416,743238 2967450,743265 2967450,743265.625 2967416,743238 2967416))'::geometry, 4326 ) :: geography geog ) as subquery; `) expect(area3).toEqual([ { rows: [ { sqft_spheroid: 928.6844047556697, sqft_sphere: 926.609762750544, sqm_spheroid: 86.27760440239217, }, ], fields: [ { name: 'sqft_spheroid', dataTypeID: 701, }, { name: 'sqft_sphere', dataTypeID: 701, }, { name: 'sqm_spheroid', dataTypeID: 701, }, ], affectedRows: 0, }, ]) }) it('ST_Polygonize', async () => { const pg = new PGlite({ extensions: { postgis, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS postgis;') const res = await pg.exec(` WITH data(geom) AS (VALUES ('LINESTRING (180 40, 30 20, 20 90)'::geometry) ,('LINESTRING (180 40, 160 160)'::geometry) ,('LINESTRING (80 60, 120 130, 150 80)'::geometry) ,('LINESTRING (80 60, 150 80)'::geometry) ,('LINESTRING (20 90, 70 70, 80 130)'::geometry) ,('LINESTRING (80 130, 160 160)'::geometry) ,('LINESTRING (20 90, 20 160, 70 190)'::geometry) ,('LINESTRING (70 190, 80 130)'::geometry) ,('LINESTRING (70 190, 160 160)'::geometry) ) SELECT ST_AsText( ST_Polygonize( geom )) FROM data; `) expect(res).toEqual([ { rows: [ { st_astext: '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)))', }, ], fields: [ { name: 'st_astext', dataTypeID: 25, }, ], affectedRows: 0, }, ]) }) it('complex1', async () => { const pg = new PGlite({ extensions: { postgis, }, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS postgis;') await pg.exec(` -- Create test schema -- CREATE SCHEMA IF NOT EXISTS postgis_test; -- SET search_path TO postgis_test; -- Create a table with geometry columns CREATE TABLE cities ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, population INTEGER, geom GEOMETRY(Point, 4326) );`) await pg.exec(` CREATE TABLE rivers ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, geom GEOMETRY(LineString, 4326) ); -- Insert sample data INSERT INTO cities (name, population, geom) VALUES ('Paris', 2148000, ST_SetSRID(ST_MakePoint(2.3522, 48.8566), 4326)), ('Berlin', 3769000, ST_SetSRID(ST_MakePoint(13.4050, 52.5200), 4326)), ('London', 8982000, ST_SetSRID(ST_MakePoint(-0.1276, 51.5072), 4326)), ('Amsterdam', 872757, ST_SetSRID(ST_MakePoint(4.9041, 52.3676), 4326)); INSERT INTO rivers (name, geom) VALUES ('Seine', ST_SetSRID(ST_MakeLine(ARRAY[ ST_MakePoint(2.1, 48.8), ST_MakePoint(2.35, 48.85), ST_MakePoint(2.45, 48.9) ]), 4326)), ('Spree', ST_SetSRID(ST_MakeLine(ARRAY[ ST_MakePoint(13.1, 52.4), ST_MakePoint(13.35, 52.5), ST_MakePoint(13.45, 52.52) ]), 4326)); -- Create spatial index CREATE INDEX idx_cities_geom ON cities USING GIST (geom); CREATE INDEX idx_rivers_geom ON rivers USING GIST (geom); -- Query: Find cities within 10 km of any river SELECT c.name AS city, r.name AS river, ST_Distance(c.geom::geography, r.geom::geography) AS distance_km FROM cities c JOIN rivers r ON ST_DWithin(c.geom::geography, r.geom::geography, 10000) ORDER BY distance_km; `) }) it('The coordinates in GeoJSON are not sufficiently nested', async () => { const pg = new PGlite({ extensions: { postgis, }, debug: 1, }) await pg.exec('CREATE EXTENSION IF NOT EXISTS postgis;') await expect( pg.exec( `SELECT '#3583', ST_AsText(ST_GeomFromGeoJSON('{"type":"MultiPolygon", "coordinates":[[[139.10030364990232,35.16777444430609],5842.4224490305424]]}'));`, ), ).rejects.toThrow(`The 'coordinates' in GeoJSON are not sufficiently nested`) }) ================================================ FILE: packages/pglite-postgis/tsconfig.json ================================================ { "extends": "../../tsconfig.json", "compilerOptions": { "types": ["node"] }, "include": ["src", "tsup.config.ts", "vitest.config.ts"] } ================================================ FILE: packages/pglite-postgis/tsup.config.ts ================================================ import { cpSync } from 'fs' import { resolve } from 'path' import { defineConfig } from 'tsup' const entryPoints = ['src/index.ts'] const minify = process.env.DEBUG === 'true' ? false : true export default defineConfig([ { entry: entryPoints, sourcemap: true, dts: { entry: entryPoints, resolve: true, }, clean: true, minify: minify, shims: true, format: ['esm', 'cjs'], onSuccess: async () => { cpSync(resolve('release/postgis.tar.gz'), resolve('dist/postgis.tar.gz')) }, }, ]) ================================================ FILE: packages/pglite-postgis/vitest.config.ts ================================================ import { defineConfig } from 'vitest/config' export default defineConfig({ test: { globals: true, environment: 'node', testTimeout: 30000, }, }) ================================================ FILE: packages/pglite-react/.gitignore ================================================ dist node_modules ================================================ FILE: packages/pglite-react/CHANGELOG.md ================================================ # @electric-sql/pglite-react ## 0.3.1 ### Patch Changes - Updated dependencies [37fb39e] - @electric-sql/pglite@0.4.1 ## 0.3.0 ### Minor Changes - Updated dependencies [d848955] - @electric-sql/pglite@0.4.0 ## 0.2.34 ### Patch Changes - Updated dependencies [3dfa40f] - @electric-sql/pglite@0.3.16 ## 0.2.33 ### Patch Changes - Updated dependencies [45bff97] - Updated dependencies [5ec474f] - @electric-sql/pglite@0.3.15 ## 0.2.32 ### Patch Changes - Updated dependencies [8785034] - Updated dependencies [90cfee8] - @electric-sql/pglite@0.3.14 ## 0.2.31 ### Patch Changes - Updated dependencies [ad3d0d8] - @electric-sql/pglite@0.3.13 ## 0.2.30 ### Patch Changes - Updated dependencies [ce0e74e] - @electric-sql/pglite@0.3.12 ## 0.2.29 ### Patch Changes - Updated dependencies [9a104b9] - @electric-sql/pglite@0.3.11 ## 0.2.28 ### Patch Changes - Updated dependencies [ad765ed] - @electric-sql/pglite@0.3.10 ## 0.2.27 ### Patch Changes - Updated dependencies [e40ccad] - @electric-sql/pglite@0.3.9 ## 0.2.26 ### Patch Changes - Updated dependencies [f12a582] - Updated dependencies [bd263aa] - @electric-sql/pglite@0.3.8 ## 0.2.25 ### Patch Changes - Updated dependencies [0936962] - @electric-sql/pglite@0.3.7 ## 0.2.24 ### Patch Changes - Updated dependencies [6898469] - Updated dependencies [469be18] - Updated dependencies [64e33c7] - @electric-sql/pglite@0.3.6 ## 0.2.23 ### Patch Changes - Updated dependencies [6653899] - Updated dependencies [5f007fc] - @electric-sql/pglite@0.3.5 ## 0.2.22 ### Patch Changes - 38a55d0: fix cjs/esm misconfigurations - Updated dependencies [1fcaa3e] - Updated dependencies [38a55d0] - Updated dependencies [aac7003] - Updated dependencies [8ca254d] - @electric-sql/pglite@0.3.4 ## 0.2.21 ### Patch Changes - Updated dependencies [ea2c7c7] - @electric-sql/pglite@0.3.3 ## 0.2.20 ### Patch Changes - Updated dependencies [e2c654b] - @electric-sql/pglite@0.3.2 ## 0.2.19 ### Patch Changes - Updated dependencies [713364e] - @electric-sql/pglite@0.3.1 ## 0.2.18 ### Patch Changes - 317fd36: Specify a peer dependency range on @electric-sql/pglite - Updated dependencies [97e52f7] - Updated dependencies [4356024] - Updated dependencies [0033bc7] - @electric-sql/pglite@0.3.0 ## 0.2.17 ### Patch Changes - Updated dependencies [6bdd74e] - Updated dependencies [f94d591] - @electric-sql/pglite@0.2.17 ## 0.2.16 ### Patch Changes - 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. - Updated dependencies [c36fd09] - Updated dependencies [e037883] - Updated dependencies [d6b981b] - Updated dependencies [17e7664] - Updated dependencies [118ba3e] - Updated dependencies [d93c1bb] - Updated dependencies [ddd4a68] - Updated dependencies [f3f1103] - Updated dependencies [67fb2aa] - @electric-sql/pglite@0.2.16 ## 0.2.15 ### Patch Changes - Updated dependencies [fa13714] - @electric-sql/pglite@0.2.15 ## 0.2.14 ### Patch Changes - 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. - Updated dependencies [6547374] - Updated dependencies [6547374] - Updated dependencies [df5c290] - Updated dependencies [1784d04] - Updated dependencies [ae36974] - Updated dependencies [75f9f6d] - Updated dependencies [ce212cf] - @electric-sql/pglite@0.2.14 ## 0.2.13 ### Patch Changes - 3d8efbb: Bump dependencies to address Dependabot alerts - 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`. - Updated dependencies [5e39036] - Updated dependencies [3d8efbb] - Updated dependencies [1844b10] - Updated dependencies [79e6082] - Updated dependencies [16d2296] - Updated dependencies [cf50f47] - Updated dependencies [bd1b3b9] - Updated dependencies [5e39036] - Updated dependencies [16d2296] - Updated dependencies [e9bd9a7] - Updated dependencies [c442c88] - @electric-sql/pglite@0.2.13 ## 0.2.12 ### Patch Changes - d3905cf: Enable the number of useLiveQuery params to change between renders, and for there to be none. - Updated dependencies [1495625] - Updated dependencies [d3905cf] - Updated dependencies [1f036dc] - Updated dependencies [52ddcb0] - @electric-sql/pglite@0.2.12 ## 0.2.11 ### Patch Changes - Updated dependencies [2aed553] - @electric-sql/pglite@0.2.11 ## 0.2.10 ### Patch Changes - Updated dependencies [3113d56] - Updated dependencies [23cd31a] - @electric-sql/pglite@0.2.10 ## 0.2.9 ### Patch Changes - Updated dependencies [20008c2] - Updated dependencies [a5712a8] - @electric-sql/pglite@0.2.9 ## 0.2.8 ### Patch Changes - Updated dependencies [53ec60e] - Updated dependencies [880b60d] - Updated dependencies [058ed7c] - Updated dependencies [2831c34] - Updated dependencies [880b60d] - Updated dependencies [880b60d] - Updated dependencies [4aeb677] - Updated dependencies [19b3529] - @electric-sql/pglite@0.2.8 ## 0.2.7 ### Patch Changes - Updated dependencies [5e65236] - Updated dependencies [5e65236] - @electric-sql/pglite@0.2.7 ## 0.2.6 ### Patch Changes - Updated dependencies [09b356c] - Updated dependencies [4238595] - Updated dependencies [ef57e10] - @electric-sql/pglite@0.2.6 ## 0.2.5 ### Patch Changes - fcb101c: Add `useLiveQuery.sql` hook for SQL string templating. - Updated dependencies [fcb101c] - Updated dependencies [3ee5e60] - Updated dependencies [0dc34af] - @electric-sql/pglite@0.2.5 ## 0.2.4 ### Patch Changes - Updated dependencies [113aa56] - @electric-sql/pglite@0.2.4 ## 0.2.3 ### Patch Changes - Updated dependencies [d8ef285] - @electric-sql/pglite@0.2.3 ## 0.2.2 ### Patch Changes - Updated dependencies [be41880] - @electric-sql/pglite@0.2.2 ## 0.2.1 ### Patch Changes - e0d205c: Add utility for generating typed provider and hook. - af9e064: Fix exports in package.json - Updated dependencies [2cc39ff] - @electric-sql/pglite@0.2.1 ================================================ FILE: packages/pglite-react/README.md ================================================ # PGlite React.js Hooks This 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). To install: ```sh npm install @electric-sql/pglite-react ``` The hooks this package provides are: - [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. - [usePGlite](https://pglite.dev/docs/framework-hooks/react#usepglite): Retrieve the provided PGlite instance. - [makePGliteProvider](https://pglite.dev/docs/framework-hooks/react#makepgliteprovider): Create typed instances of `PGliteProvider` and `usePGlite`. - [useLiveQuery](https://pglite.dev/docs/framework-hooks/react#uselivequery): Reactively re-render your component whenever the results of a live query change - [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 ================================================ FILE: packages/pglite-react/eslint.config.js ================================================ import rootConfig from "../../eslint.config.js"; import pluginReact from "@eslint-react/eslint-plugin"; // @ts-expect-error no types import pluginReactCompiler from "eslint-plugin-react-compiler"; // @ts-expect-error no types import pluginReactHooks from "eslint-plugin-react-hooks"; export default [ ...rootConfig, { files: ["**/*.{ts,tsx}"], ...pluginReact.configs.recommended, }, { plugins: { "react-hooks": pluginReactHooks, "react-compiler": pluginReactCompiler, }, rules: { "react-compiler/react-compiler": "error", "react-hooks/exhaustive-deps": "error", "react-hooks/rules-of-hooks": "error", }, }, { files: ["**/test/**"], rules: { "@typescript-eslint/no-unnecessary-condition": "off", "react-compiler/react-compiler": "off", }, }, ]; ================================================ FILE: packages/pglite-react/package.json ================================================ { "name": "@electric-sql/pglite-react", "version": "0.3.1", "description": "Hooks for using PGlite", "type": "module", "private": false, "publishConfig": { "access": "public" }, "keywords": [ "postgres", "sql", "database", "wasm", "client", "pglite", "react" ], "author": "Electric DB Limited", "homepage": "https://pglite.dev", "license": "Apache-2.0", "repository": { "type": "git", "url": "git+https://github.com/electric-sql/pglite.git", "directory": "packages/pglite-react" }, "scripts": { "build": "tsup", "check:exports": "attw . --pack --profile node16", "test": "vitest", "lint": "eslint ./src ./test", "format": "prettier --write ./src ./test", "typecheck": "tsc", "stylecheck": "eslint ./src ./test && prettier --check ./src ./test", "prepublishOnly": "pnpm check:exports" }, "types": "dist/index.d.ts", "main": "dist/index.cjs", "module": "dist/index.js", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "files": [ "dist" ], "devDependencies": { "@arethetypeswrong/cli": "^0.18.1", "@electric-sql/pglite": "workspace:*", "@eslint-react/eslint-plugin": "^1.14.3", "@testing-library/dom": "^10.4.0", "@testing-library/react": "^16.1.0", "@types/react": "^19.0.2", "@types/react-dom": "^19.0.2", "@vitejs/plugin-react": "^4.3.2", "eslint-plugin-react-compiler": "0.0.0-experimental-9ed098e-20240725", "globals": "^15.11.0", "jsdom": "^24.1.3", "react": "^19.0.0", "react-dom": "^19.0.0", "vitest": "^2.1.2" }, "peerDependencies": { "@electric-sql/pglite": "workspace:0.4.1", "react": "^18.0.0 || ^19.0.0 || ^19.0.0-rc" } } ================================================ FILE: packages/pglite-react/src/hooks.ts ================================================ import type { LiveQuery, LiveQueryResults } from '@electric-sql/pglite/live' import { query as buildQuery } from '@electric-sql/pglite/template' import { useEffect, useRef, useState } from 'react' import { usePGlite } from './provider' function paramsEqual( a1: unknown[] | undefined | null, a2: unknown[] | undefined | null, ) { if (!a1 && !a2) return true if (a1?.length !== a2?.length) return false for (let i = 0; i < a1!.length; i++) { if (!Object.is(a1![i], a2![i])) { return false } } return true } function useLiveQueryImpl( query: string | LiveQuery | Promise>, params: unknown[] | undefined | null, key?: string, ): Omit, 'affectedRows'> | undefined { const db = usePGlite() const paramsRef = useRef(params) const liveQueryRef = useRef | undefined>(undefined) let liveQuery: LiveQuery | undefined let liveQueryChanged = false if (!(typeof query === 'string') && !(query instanceof Promise)) { liveQuery = query liveQueryChanged = liveQueryRef.current !== liveQuery liveQueryRef.current = liveQuery } const [results, setResults] = useState | undefined>( liveQuery?.initialResults, ) let currentParams = paramsRef.current if (!paramsEqual(paramsRef.current, params)) { paramsRef.current = params currentParams = params } /* eslint-disable @eslint-react/hooks-extra/no-direct-set-state-in-use-effect */ useEffect(() => { let cancelled = false const cb = (results: LiveQueryResults) => { if (cancelled) return setResults(results) } if (typeof query === 'string') { const ret = key !== undefined ? db.live.incrementalQuery(query, currentParams, key, cb) : db.live.query(query, currentParams, cb) return () => { cancelled = true ret.then(({ unsubscribe }) => unsubscribe()) } } else if (query instanceof Promise) { query.then((liveQuery) => { if (cancelled) return liveQueryRef.current = liveQuery setResults(liveQuery.initialResults) liveQuery.subscribe(cb) }) return () => { cancelled = true liveQueryRef.current?.unsubscribe(cb) } } else if (liveQuery) { setResults(liveQuery.initialResults) liveQuery.subscribe(cb) return () => { cancelled = true liveQuery.unsubscribe(cb) } } else { throw new Error('Should never happen') } }, [db, key, query, currentParams, liveQuery]) /* eslint-enable @eslint-react/hooks-extra/no-direct-set-state-in-use-effect */ if (liveQueryChanged && liveQuery) { return liveQuery.initialResults } return ( results && { rows: results.rows, fields: results.fields, totalCount: results.totalCount, offset: results.offset, limit: results.limit, } ) } export function useLiveQuery( query: string, params?: unknown[] | null, ): LiveQueryResults | undefined export function useLiveQuery( liveQuery: LiveQuery, ): LiveQueryResults export function useLiveQuery( liveQueryPromise: Promise>, ): LiveQueryResults | undefined export function useLiveQuery( query: string | LiveQuery | Promise>, params?: unknown[] | null, ): LiveQueryResults | undefined { return useLiveQueryImpl(query, params) } useLiveQuery.sql = function ( strings: TemplateStringsArray, ...values: any[] ): LiveQueryResults | undefined { const { query, params } = buildQuery(strings, ...values) // eslint-disable-next-line react-compiler/react-compiler // eslint-disable-next-line react-hooks/rules-of-hooks return useLiveQueryImpl(query, params) } export function useLiveIncrementalQuery( query: string, params: unknown[] | undefined | null, key: string, ): LiveQueryResults | undefined { return useLiveQueryImpl(query, params, key) } ================================================ FILE: packages/pglite-react/src/index.ts ================================================ export * from './provider' export * from './hooks' ================================================ FILE: packages/pglite-react/src/provider.tsx ================================================ import React, { createContext, useContext } from 'react' import { PGliteWithLive } from '@electric-sql/pglite/live' interface Props { children?: React.ReactNode db?: T } type PGliteProvider = ( props: Props, ) => React.JSX.Element type UsePGlite = (db?: T) => T interface PGliteProviderSet { PGliteProvider: PGliteProvider usePGlite: UsePGlite } /** * Create a typed set of {@link PGliteProvider} and {@link usePGlite}. */ function makePGliteProvider(): PGliteProviderSet { const ctx = createContext(undefined) return { usePGlite: ((db?: T) => { const dbProvided = useContext(ctx) // allow providing a db explicitly if (db !== undefined) return db if (!dbProvided) throw new Error( 'No PGlite instance found, use PGliteProvider to provide one', ) return dbProvided }) as UsePGlite, PGliteProvider: ({ children, db }: Props) => { return {children} }, } } const { PGliteProvider, usePGlite } = makePGliteProvider() export { makePGliteProvider, PGliteProvider, usePGlite } ================================================ FILE: packages/pglite-react/test/hooks.test.tsx ================================================ import { describe, it, expect, beforeEach } from 'vitest' import { renderHook } from '@testing-library/react' import { waitFor } from '@testing-library/dom' import React from 'react' import { PGlite } from '@electric-sql/pglite' import { live, PGliteWithLive } from '@electric-sql/pglite/live' import { PGliteProvider, useLiveQuery, useLiveIncrementalQuery } from '../src' describe('hooks', () => { testLiveQuery('useLiveQuery') testLiveQuery('useLiveIncrementalQuery') describe('useLiveQuery.sql', () => { let db: PGliteWithLive let wrapper: ({ children, }: { children: React.ReactNode }) => React.ReactElement beforeEach(async () => { db = await PGlite.create({ extensions: { live, }, }) wrapper = ({ children }) => { return {children} } await db.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await db.exec(`TRUNCATE test;`) }) it('updates when query parameter changes', async () => { await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`) const { result, rerender } = renderHook( (props) => useLiveQuery.sql`SELECT * FROM test WHERE name = ${props.params[0]};`, { wrapper, initialProps: { params: ['test1'] } }, ) await waitFor(() => expect(result.current?.rows).toEqual([ { id: 1, name: 'test1', }, ]), ) rerender({ params: ['test2'] }) await waitFor(() => expect(result.current?.rows).toEqual([ { id: 2, name: 'test2', }, ]), ) }) }) }) function testLiveQuery(queryHook: 'useLiveQuery' | 'useLiveIncrementalQuery') { describe(queryHook, () => { let db: PGliteWithLive let wrapper: ({ children, }: { children: React.ReactNode }) => React.ReactElement const hookFn = queryHook === 'useLiveQuery' ? useLiveQuery : useLiveIncrementalQuery const incKey = 'id' beforeEach(async () => { db = await PGlite.create({ extensions: { live, }, }) wrapper = ({ children }) => { return {children} } await db.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) await db.exec(`TRUNCATE test;`) }) it('can receive initial results', async () => { await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`) const { result } = renderHook( () => hookFn(`SELECT * FROM test`, [], incKey), { wrapper }, ) await waitFor(() => expect(result.current).not.toBe(undefined)) expect(result.current).toEqual({ rows: [ { id: 1, name: 'test1', }, { id: 2, name: 'test2', }, ], fields: [ { name: 'id', dataTypeID: 23, }, { name: 'name', dataTypeID: 25, }, ], }) }) it('can receive changes', async () => { await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`) const { result } = renderHook( () => hookFn(`SELECT * FROM test`, [], incKey), { wrapper }, ) await waitFor(() => expect(result.current?.rows).toEqual([ { id: 1, name: 'test1', }, { id: 2, name: 'test2', }, ]), ) // detect new inserts db.exec(`INSERT INTO test (name) VALUES ('test3');`) await waitFor(() => expect(result.current?.rows).toEqual([ { id: 1, name: 'test1', }, { id: 2, name: 'test2', }, { id: 3, name: 'test3', }, ]), ) // detect deletes db.exec(`DELETE FROM test WHERE name = 'test1';`) await waitFor(() => expect(result.current?.rows).toEqual([ { id: 2, name: 'test2', }, { id: 3, name: 'test3', }, ]), ) // detect updates db.exec(`UPDATE test SET name = 'foobar' WHERE name = 'test2';`) await waitFor(() => expect(result.current?.rows).toEqual([ { id: 3, name: 'test3', }, { id: 2, name: 'foobar', }, ]), ) // // detect truncates // db.exec(`TRUNCATE test;`) // await waitFor(() => expect(result.current?.rows).toHaveLength(0)) }) it('updates when query changes', async () => { await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`) const { result, rerender } = renderHook( (props) => hookFn(props.query, [], incKey), { wrapper, initialProps: { query: `SELECT * FROM test` } }, ) await waitFor(() => expect(result.current?.rows).toHaveLength(2)) rerender({ query: `SELECT * FROM test WHERE name = 'test1'` }) await waitFor(() => expect(result.current?.rows).toHaveLength(1)) }) it('updates when query parameters change', async () => { await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`) const paramsArr = ['foo'] const { result, rerender } = renderHook( ({ params }) => hookFn( `SELECT * FROM test WHERE name = $1;`, [params[params.length - 1]], incKey, ), { wrapper, initialProps: { params: paramsArr } }, ) await waitFor(() => expect(result.current?.rows).toEqual([])) // update when query parameter changes rerender({ params: ['test1'] }) await waitFor(() => expect(result.current?.rows).toEqual([ { id: 1, name: 'test1', }, ]), ) // update when number of query parameters changes rerender({ params: ['test1', 'test2'] }) await waitFor(() => expect(result.current?.rows).toEqual([ { id: 2, name: 'test2', }, ]), ) }) if (queryHook !== 'useLiveQuery') { return } it('can take a live query return value directly', async () => { await db.exec(` CREATE TABLE live_test ( id SERIAL PRIMARY KEY, name TEXT ); `) await db.exec(`INSERT INTO live_test (name) VALUES ('initial');`) const liveQuery = await db.live.query( `SELECT * FROM live_test ORDER BY id DESC LIMIT 1;`, ) const { result } = renderHook(() => useLiveQuery(liveQuery), { wrapper }) await waitFor(() => expect(result.current?.rows).toHaveLength(1)) expect(result.current?.rows[0]).toEqual({ id: 1, name: 'initial' }) // Trigger an update await db.exec(`INSERT INTO live_test (name) VALUES ('updated');`) await waitFor(() => expect(result.current?.rows[0].name).toBe('updated')) expect(result.current?.rows[0]).toEqual({ id: 2, name: 'updated' }) }) it('can take a live query returned promise directly', async () => { await db.exec(` CREATE TABLE live_test ( id SERIAL PRIMARY KEY, name TEXT ); `) await db.exec(`INSERT INTO live_test (name) VALUES ('initial');`) const liveQueryPromise = db.live.query( `SELECT * FROM live_test ORDER BY id DESC LIMIT 1;`, ) const { result } = renderHook(() => useLiveQuery(liveQueryPromise), { wrapper, }) expect(result.current).toBe(undefined) await waitFor(() => expect(result.current).not.toBe(undefined)) await waitFor(() => expect(result.current?.rows).toHaveLength(1)) expect(result.current?.rows[0]).toEqual({ id: 1, name: 'initial' }) // Trigger an update await db.exec(`INSERT INTO live_test (name) VALUES ('updated');`) await waitFor(() => expect(result.current?.rows[0].name).toBe('updated')) expect(result.current?.rows[0]).toEqual({ id: 2, name: 'updated' }) }) it('can take a live incremental query return value directly', async () => { await db.exec(` CREATE TABLE live_test ( id SERIAL PRIMARY KEY, name TEXT ); `) await db.exec(`INSERT INTO live_test (name) VALUES ('initial');`) const liveQuery = await db.live.incrementalQuery( `SELECT * FROM live_test ORDER BY id DESC LIMIT 1;`, [], incKey, ) const { result } = renderHook(() => useLiveQuery(liveQuery), { wrapper }) await waitFor(() => expect(result.current?.rows).toHaveLength(1)) expect(result.current?.rows[0]).toEqual({ id: 1, name: 'initial' }) // Trigger an update await db.exec(`INSERT INTO live_test (name) VALUES ('updated');`) await waitFor(() => expect(result.current?.rows[0].name).toBe('updated')) expect(result.current?.rows[0]).toEqual({ id: 2, name: 'updated' }) }) it('can take a live incremental query returned promise directly', async () => { await db.exec(` CREATE TABLE live_test ( id SERIAL PRIMARY KEY, name TEXT ); `) await db.exec(`INSERT INTO live_test (name) VALUES ('initial');`) const liveQueryPromise = db.live.incrementalQuery( `SELECT * FROM live_test ORDER BY id DESC LIMIT 1;`, [], incKey, ) const { result } = renderHook(() => useLiveQuery(liveQueryPromise), { wrapper, }) expect(result.current).toBe(undefined) await waitFor(() => expect(result.current).not.toBe(undefined)) await waitFor(() => expect(result.current?.rows).toHaveLength(1)) expect(result.current?.rows[0]).toEqual({ id: 1, name: 'initial' }) // Trigger an update await db.exec(`INSERT INTO live_test (name) VALUES ('updated');`) await waitFor(() => expect(result.current?.rows[0].name).toBe('updated')) }) it('works with pattern matching', async () => { await db.exec(` CREATE TABLE pattern_matching ( id SERIAL PRIMARY KEY, statement VARCHAR(100) ); `) await db.exec( `INSERT INTO pattern_matching (statement) VALUES ('PGlite 4 ever.'),('To not be or not to be.');`, ) const liveQueryPromise = db.live.incrementalQuery( `SELECT * FROM pattern_matching WHERE statement ILIKE '%pglite%' ORDER BY id DESC LIMIT 1;`, [], incKey, ) const { result } = renderHook(() => useLiveQuery(liveQueryPromise), { wrapper, }) await waitFor(() => expect(result.current?.rows).toEqual([ { id: 1, statement: 'PGlite 4 ever.', }, ]), ) await db.exec( `INSERT INTO pattern_matching (statement) VALUES ('should not trigger!');`, ) // Trigger an update await db.exec( `INSERT INTO pattern_matching (statement) VALUES ('ElectricSQL + pglite = <3');`, ) await waitFor(() => expect(result.current?.rows[0].statement).toBe( 'ElectricSQL + pglite = <3', ), ) }) }) } ================================================ FILE: packages/pglite-react/test/provider.test-d.tsx ================================================ import { describe, it, expectTypeOf } from 'vitest' import { PGlite, PGliteInterfaceExtensions } from '@electric-sql/pglite' import { live } from '@electric-sql/pglite/live' import { vector } from '@electric-sql/pglite/vector' import { makePGliteProvider } from '../src/provider.js' describe('provider', () => { it('provider type respected ', async () => { const dbLiveVector = await PGlite.create({ extensions: { live, vector, }, }) const dbLive = await PGlite.create({ extensions: { live, }, }) const { PGliteProvider, usePGlite } = makePGliteProvider< PGlite & PGliteInterfaceExtensions<{ live: typeof live vector: typeof vector }> >() // @ts-expect-error cannot pass db with just live extension ;() => ;() => // @ts-expect-error cannot pass wrong type db to typed hook usePGlite(dbLive) expectTypeOf(usePGlite()).toEqualTypeOf() }) }) ================================================ FILE: packages/pglite-react/test/provider.test.tsx ================================================ import { describe, it, expect } from 'vitest' import { renderHook } from '@testing-library/react' import { waitFor } from '@testing-library/dom' import React from 'react' import { PGlite } from '@electric-sql/pglite' import { live, PGliteWithLive } from '@electric-sql/pglite/live' import { makePGliteProvider, PGliteProvider, usePGlite } from '../src' describe('provider', () => { it('can receive PGlite', async () => { const db = await PGlite.create({ extensions: { live, }, }) const wrapper = ({ children }: { children: React.ReactNode }) => { return {children} } const { result } = renderHook(() => usePGlite(), { wrapper }) await waitFor(() => expect(result.current).toBe(db)) }) it('can receive PGlite with typed provider', async () => { const db = await PGlite.create({ extensions: { live, }, }) const { PGliteProvider: PGliteProviderTyped, usePGlite: usePGliteTyped } = makePGliteProvider() const wrapper = ({ children }: { children: React.ReactNode }) => { return {children} } const { result } = renderHook(() => usePGliteTyped(), { wrapper }) await waitFor(() => expect(result.current).toBe(db)) }) }) ================================================ FILE: packages/pglite-react/test-setup.ts ================================================ import { afterEach } from 'vitest' import { cleanup } from '@testing-library/react' // Polyfill File.prototype.arrayBuffer for jsdom // jsdom's File implementation doesn't properly support arrayBuffer() if (typeof File !== 'undefined' && !File.prototype.arrayBuffer) { File.prototype.arrayBuffer = function () { return new Promise((resolve, reject) => { const reader = new FileReader() reader.onload = () => resolve(reader.result as ArrayBuffer) reader.onerror = () => reject(reader.error) reader.readAsArrayBuffer(this) }) } } // https://testing-library.com/docs/react-testing-library/api#cleanup afterEach(() => cleanup()) ================================================ FILE: packages/pglite-react/tsconfig.json ================================================ { "extends": "../../tsconfig.json", "compilerOptions": { "jsx": "react-jsx", }, "include": [ "src", "test", "eslint.config.js", "test-setup.ts", "tsup.config.js", "vitest.config.ts" ] } ================================================ FILE: packages/pglite-react/tsup.config.ts ================================================ import { defineConfig } from 'tsup' const minify = process.env.DEBUG === 'true' ? false : true export default defineConfig([ { entry: ['src/index.ts'], format: ['cjs', 'esm'], outDir: 'dist', dts: true, minify: minify, sourcemap: true, clean: true, }, ]) ================================================ FILE: packages/pglite-react/vitest.config.ts ================================================ import { defineConfig } from 'vitest/config' import react from '@vitejs/plugin-react' export default defineConfig({ plugins: [react()], test: { name: 'pglite-react', dir: './test', watch: false, environment: 'jsdom', setupFiles: ['test-setup.ts'], typecheck: { enabled: true }, restoreMocks: true, testTimeout: 15000, testTransformMode: { ssr: ['**/*'], }, }, }) ================================================ FILE: packages/pglite-repl/.gitignore ================================================ # Logs logs *.log npm-debug.log* yarn-debug.log* yarn-error.log* pnpm-debug.log* lerna-debug.log* node_modules dist dist-ssr dist-webcomponent *.local # Editor directories and files .vscode/* !.vscode/extensions.json .idea .DS_Store *.suo *.ntvs* *.njsproj *.sln *.sw? ================================================ FILE: packages/pglite-repl/CHANGELOG.md ================================================ # @electric-sql/pglite-repl ## 0.3.1 ### Patch Changes - Updated dependencies [37fb39e] - @electric-sql/pglite@0.4.1 - @electric-sql/pglite-react@0.3.1 ## 0.3.0 ### Minor Changes - Updated dependencies [d848955] - @electric-sql/pglite-react@0.3.0 - @electric-sql/pglite@0.4.0 ## 0.2.34 ### Patch Changes - Updated dependencies [3dfa40f] - @electric-sql/pglite@0.3.16 - @electric-sql/pglite-react@0.2.34 ## 0.2.33 ### Patch Changes - Updated dependencies [45bff97] - Updated dependencies [5ec474f] - @electric-sql/pglite@0.3.15 - @electric-sql/pglite-react@0.2.33 ## 0.2.32 ### Patch Changes - Updated dependencies [8785034] - Updated dependencies [90cfee8] - @electric-sql/pglite@0.3.14 - @electric-sql/pglite-react@0.2.32 ## 0.2.31 ### Patch Changes - Updated dependencies [ad3d0d8] - @electric-sql/pglite@0.3.13 - @electric-sql/pglite-react@0.2.31 ## 0.2.30 ### Patch Changes - Updated dependencies [ce0e74e] - @electric-sql/pglite@0.3.12 - @electric-sql/pglite-react@0.2.30 ## 0.2.29 ### Patch Changes - Updated dependencies [9a104b9] - @electric-sql/pglite@0.3.11 - @electric-sql/pglite-react@0.2.29 ## 0.2.28 ### Patch Changes - Updated dependencies [ad765ed] - @electric-sql/pglite@0.3.10 - @electric-sql/pglite-react@0.2.28 ## 0.2.27 ### Patch Changes - Updated dependencies [e40ccad] - @electric-sql/pglite@0.3.9 - @electric-sql/pglite-react@0.2.27 ## 0.2.26 ### Patch Changes - Updated dependencies [f12a582] - Updated dependencies [bd263aa] - @electric-sql/pglite@0.3.8 - @electric-sql/pglite-react@0.2.26 ## 0.2.25 ### Patch Changes - Updated dependencies [0936962] - @electric-sql/pglite@0.3.7 - @electric-sql/pglite-react@0.2.25 ## 0.2.24 ### Patch Changes - Updated dependencies [6898469] - Updated dependencies [469be18] - Updated dependencies [64e33c7] - @electric-sql/pglite@0.3.6 - @electric-sql/pglite-react@0.2.24 ## 0.2.23 ### Patch Changes - Updated dependencies [6653899] - Updated dependencies [5f007fc] - @electric-sql/pglite@0.3.5 - @electric-sql/pglite-react@0.2.23 ## 0.2.22 ### Patch Changes - 38a55d0: fix cjs/esm misconfigurations - Updated dependencies [1fcaa3e] - Updated dependencies [38a55d0] - Updated dependencies [aac7003] - Updated dependencies [8ca254d] - @electric-sql/pglite@0.3.4 - @electric-sql/pglite-react@0.2.22 ## 0.2.21 ### Patch Changes - Updated dependencies [ea2c7c7] - @electric-sql/pglite@0.3.3 - @electric-sql/pglite-react@0.2.21 ## 0.2.20 ### Patch Changes - Updated dependencies [e2c654b] - @electric-sql/pglite@0.3.2 - @electric-sql/pglite-react@0.2.20 ## 0.2.19 ### Patch Changes - Updated dependencies [713364e] - @electric-sql/pglite@0.3.1 - @electric-sql/pglite-react@0.2.19 ## 0.2.18 ### Patch Changes - 317fd36: Specify a peer dependency range on @electric-sql/pglite - Updated dependencies [97e52f7] - Updated dependencies [4356024] - Updated dependencies [0033bc7] - Updated dependencies [317fd36] - @electric-sql/pglite@0.3.0 - @electric-sql/pglite-react@0.2.18 ## 0.2.17 ### Patch Changes - Updated dependencies [6bdd74e] - Updated dependencies [f94d591] - @electric-sql/pglite@0.2.17 - @electric-sql/pglite-react@0.2.17 ## 0.2.16 ### Patch Changes - 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. - Updated dependencies [c36fd09] - Updated dependencies [e037883] - Updated dependencies [d6b981b] - Updated dependencies [17e7664] - Updated dependencies [118ba3e] - Updated dependencies [d93c1bb] - Updated dependencies [ddd4a68] - Updated dependencies [514943b] - Updated dependencies [f3f1103] - Updated dependencies [67fb2aa] - @electric-sql/pglite@0.2.16 - @electric-sql/pglite-react@0.2.16 ## 0.2.15 ### Patch Changes - Updated dependencies [fa13714] - @electric-sql/pglite@0.2.15 - @electric-sql/pglite-react@0.2.15 ## 0.2.14 ### Patch Changes - Updated dependencies [6547374] - Updated dependencies [6547374] - Updated dependencies [df5c290] - Updated dependencies [1784d04] - Updated dependencies [ae36974] - Updated dependencies [75f9f6d] - Updated dependencies [ce212cf] - @electric-sql/pglite@0.2.14 - @electric-sql/pglite-react@0.2.14 ## 0.2.13 ### Patch Changes - 3d8efbb: Bump dependencies to address Dependabot alerts - Updated dependencies [5e39036] - Updated dependencies [3d8efbb] - Updated dependencies [1844b10] - Updated dependencies [bd1b3b9] - Updated dependencies [79e6082] - Updated dependencies [16d2296] - Updated dependencies [cf50f47] - Updated dependencies [bd1b3b9] - Updated dependencies [5e39036] - Updated dependencies [16d2296] - Updated dependencies [e9bd9a7] - Updated dependencies [c442c88] - @electric-sql/pglite@0.2.13 - @electric-sql/pglite-react@0.2.13 ## 0.2.12 ### Patch Changes - Updated dependencies [1495625] - Updated dependencies [d3905cf] - Updated dependencies [d3905cf] - Updated dependencies [1f036dc] - Updated dependencies [52ddcb0] - @electric-sql/pglite@0.2.12 - @electric-sql/pglite-react@0.2.12 ## 0.2.11 ### Patch Changes - Updated dependencies [2aed553] - @electric-sql/pglite@0.2.11 - @electric-sql/pglite-react@0.2.11 ## 0.2.10 ### Patch Changes - Updated dependencies [3113d56] - Updated dependencies [23cd31a] - @electric-sql/pglite@0.2.10 - @electric-sql/pglite-react@0.2.10 ## 0.2.9 ### Patch Changes - Updated dependencies [20008c2] - Updated dependencies [a5712a8] - @electric-sql/pglite@0.2.9 - @electric-sql/pglite-react@0.2.9 ## 0.2.8 ### Patch Changes - Updated dependencies [53ec60e] - Updated dependencies [880b60d] - Updated dependencies [058ed7c] - Updated dependencies [2831c34] - Updated dependencies [880b60d] - Updated dependencies [880b60d] - Updated dependencies [4aeb677] - Updated dependencies [19b3529] - @electric-sql/pglite@0.2.8 - @electric-sql/pglite-react@0.2.8 ## 0.2.7 ### Patch Changes - Updated dependencies [5e65236] - Updated dependencies [5e65236] - @electric-sql/pglite@0.2.7 - @electric-sql/pglite-react@0.2.7 ## 0.2.6 ### Patch Changes - Updated dependencies [09b356c] - Updated dependencies [4238595] - Updated dependencies [ef57e10] - @electric-sql/pglite@0.2.6 - @electric-sql/pglite-react@0.2.6 ## 0.2.5 ### Patch Changes - Updated dependencies [fcb101c] - Updated dependencies [3ee5e60] - Updated dependencies [0dc34af] - Updated dependencies [fcb101c] - @electric-sql/pglite@0.2.5 - @electric-sql/pglite-react@0.2.5 ## 0.2.4 ### Patch Changes - Updated dependencies [113aa56] - @electric-sql/pglite@0.2.4 - @electric-sql/pglite-react@0.2.4 ## 0.2.3 ### Patch Changes - Updated dependencies [d8ef285] - @electric-sql/pglite@0.2.3 - @electric-sql/pglite-react@0.2.3 ## 0.2.2 ### Patch Changes - Updated dependencies [be41880] - @electric-sql/pglite@0.2.2 - @electric-sql/pglite-react@0.2.2 ## 0.2.1 ### Patch Changes - b0d7119: Make this pglite-repl Repl component compatible with the react hooks - Updated dependencies [e0d205c] - Updated dependencies [2cc39ff] - Updated dependencies [af9e064] - @electric-sql/pglite-react@0.2.1 - @electric-sql/pglite@0.2.1 ================================================ FILE: packages/pglite-repl/README.md ================================================ # PGlite REPL React Component A REPL, or terminal, for use in the browser with PGlite, allowing you to have an interactive session with your WASM Postgres in the page. ## Features: - Available as both a React.js component and a Web Components - [CodeMirror](https://codemirror.net) for input editing - Auto complete, including table and column names from the database - Input history (up and down keys) - `\d` PSQL commands (via [psql-describe](https://www.npmjs.com/package/psql-describe)) ## How to use with React ``` npm install @electric-sql/pglite-repl ``` then to include in a page: ```tsx import { PGlite } from "@electric-sql/pglite"; import { Repl } from "@electric-sql/pglite-repl"; function MyComponent() { const pg = new PGlite(); return <> } ``` The props for the `` component are described by this interface: ```ts // The theme to use, auto is auto switching based on the system type ReplTheme = "light" | "dark" | "auto"; interface ReplProps { pg: PGlite; // PGlite db instance border?: boolean; // Outer border on the component, defaults to false lightTheme?: Extension; darkTheme?: Extension; theme?: ReplTheme; // Defaults to "auto" } ``` The `lightTheme` and `darkTheme` should be instances of a [React CodeMirror](https://uiwjs.github.io/react-codemirror/) theme. ## How to use as a Web Component Although the PGlite REPL is built with React, its also available as a web component for easy inclusion in any page or other framework. ```html ``` ## Development Checkout this repo and from package dir: ```sh # Install deps pnpm install # Run dev server pnpm dev # then open a browser to the url shown # Build the lib pnpm build ``` ================================================ FILE: packages/pglite-repl/eslint.config.js ================================================ import rootConfig from '../../eslint.config.js' import pluginReact from '@eslint-react/eslint-plugin' import pluginReactCompiler from 'eslint-plugin-react-compiler' import pluginReactHooks from 'eslint-plugin-react-hooks' import pluginReactRefresh from 'eslint-plugin-react-refresh' export default [ { ignores: ['dist-webcomponent/**'], }, ...rootConfig, { files: ['**/*.{ts,tsx}'], ...pluginReact.configs.recommended, }, { plugins: { 'react-hooks': pluginReactHooks, 'react-compiler': pluginReactCompiler, 'react-refresh': pluginReactRefresh, }, rules: { 'react-compiler/react-compiler': 'error', 'react-hooks/exhaustive-deps': 'error', 'react-hooks/rules-of-hooks': 'error', 'react-refresh/only-export-components': 'off', '@eslint-react/hooks-extra/no-direct-set-state-in-use-effect': 'off', '@eslint-react/web-api/no-leaked-timeout': 'off', }, }, { files: ['**/test/**'], rules: { '@typescript-eslint/no-unnecessary-condition': 'off', 'react-compiler/react-compiler': 'off', }, }, ] ================================================ FILE: packages/pglite-repl/index.html ================================================ PGlite REPL
================================================ FILE: packages/pglite-repl/package.json ================================================ { "name": "@electric-sql/pglite-repl", "version": "0.3.1", "author": "Electric DB Limited", "homepage": "https://pglite.dev", "license": "Apache-2.0", "private": false, "repository": { "type": "git", "url": "git+https://github.com/electric-sql/pglite.git", "directory": "packages/pglite-repl" }, "publishConfig": { "access": "public" }, "type": "module", "files": [ "dist", "dist-webcomponent" ], "module": "dist/Repl.js", "types": "dist/Repl.d.ts", "exports": { ".": { "import": { "types": "./dist/Repl.d.ts", "default": "./dist/Repl.js" } }, "./webcomponent": { "import": { "default": "./dist-webcomponent/Repl.js" } } }, "scripts": { "check:exports": "attw . --pack --profile esm-only", "dev": "vite", "build:react": "tsc && vite build", "build:webcomp": "vite build --config vite.webcomp.config.ts", "build": "pnpm run build:react && pnpm run build:webcomp", "lint": "eslint ./**/*.{ts,tsx} --report-unused-disable-directives --max-warnings 0", "preview": "vite preview", "format": "prettier --write ./src && prettier --write ./src-webcomponent", "typecheck": "tsc --noEmit", "stylecheck": "pnpm lint && prettier -c ./src" }, "dependencies": { "@codemirror/autocomplete": "^6.18.1", "@codemirror/commands": "^6.7.0", "@codemirror/lang-sql": "^6.8.0", "@codemirror/language": "^6.10.3", "@codemirror/view": "^6.34.1", "@electric-sql/pglite-react": "workspace:*", "@uiw/codemirror-theme-github": "4.23.5", "@uiw/codemirror-theme-xcode": "4.23.5", "@uiw/codemirror-themes": "4.23.5", "@uiw/react-codemirror": "4.23.5", "psql-describe": "^0.1.5", "react": "^19.0.0", "react-dom": "^19.0.0" }, "peerDependencies": { "@electric-sql/pglite": "workspace:0.4.1" }, "peerDependenciesMeta": { "@electric-sql/pglite": { "optional": true } }, "devDependencies": { "@arethetypeswrong/cli": "^0.18.1", "@electric-sql/pglite": "workspace:*", "@types/node": "^20.16.11", "@types/react": "^19.0.2", "@types/react-dom": "^19.0.2", "@vitejs/plugin-react": "^4.3.2", "eslint-plugin-react-compiler": "0.0.0-experimental-9ed098e-20240725", "eslint-plugin-react-hooks": "^4.6.2", "eslint-plugin-react-refresh": "^0.4.12", "terser": "^5.34.1", "vite": "^5.4.8", "vite-plugin-dts": "^4.2.3", "vite-plugin-libcss": "^1.1.1" } } ================================================ FILE: packages/pglite-repl/src/App.css ================================================ #root { padding: 1rem; height: calc(100vh - 2rem); display: flex; flex-direction: column; } .App { display: flex; flex-direction: column; height: 100%; } ================================================ FILE: packages/pglite-repl/src/App.tsx ================================================ import { PGlite } from '@electric-sql/pglite' import './App.css' import { Repl } from './Repl' const pg = new PGlite() function App() { return (
) } export default App ================================================ FILE: packages/pglite-repl/src/Repl.css ================================================ .PGliteRepl-root { --fg: var(--PGliteRepl-foreground-color); --bg: var(--PGliteRepl-background-color); --border: var(--PGliteRepl-border); --border-color: var(--PGliteRepl-border-color); --font-size: var(--PGliteRepl-font-size, 12px); display: flex; flex-direction: column; height: 100%; width: 100%; font-size: var(--font-size); color: var(--fg); background-color: var(--bg); } .PGliteRepl-loading-msg { opacity: 0.5; } .PGliteRepl-root table { font-size: var(--font-size); } .PGliteRepl-root-border { border: var(--border); } .PGliteRepl-output { flex: 1; overflow-y: auto; padding: 0.5em 0 0.5em 0.5em; border-bottom: var(--border); } .PGliteRepl-root hr { margin: 0.5em 0; border: none; border-top: var(--border); } .PGliteRepl-input { display: flex; min-height: 60px; max-height: 50%; width: 100%; } .PGliteRepl-input .cm-editor.cm-focused { outline: none; } .PGliteRepl-input-loading { pointer-events: none; } .PGliteRepl-table-scroll { overflow-x: auto; } .PGliteRepl-table { border-collapse: collapse; } .PGliteRepl-line { margin: 0 0 0 1em; position: relative; } .PGliteRepl-line::before { display: block; width: 0.7em; text-align: center; content: '❮'; margin-right: 0.5em; color: var(--border-color); position: absolute; left: -1em; } .PGliteRepl-line + .PGliteRepl-line { margin-top: 0.25em; } .PGliteRepl-query { margin: 0 0 0.25em 1em; } .PGliteRepl-query::before { content: '❯'; } .PGliteRepl-table th { text-align: center; font-weight: 600; } .PGliteRepl-table td { text-align: left; max-width: 400px; overflow: hidden; text-overflow: ellipsis; } .PGliteRepl-table .PGliteRepl-number { text-align: right; font-variant-numeric: tabular-nums; } .PGliteRepl-table .PGliteRepl-boolean { text-align: center; } .PGliteRepl-table .PGliteRepl-json { font-family: monospace; } .PGliteRepl-table th, .PGliteRepl-table td { padding: 0 0.2em; border: var(--border); } .PGliteRepl-divider { font-size: 9px; display: flex; align-items: center; color: var(--border-color); padding-right: 0.5em; } .PGliteRepl-divider hr { margin: 0; flex-grow: 1; } .PGliteRepl-time { margin: 0 0.5em; } .PGliteRepl-null { color: var(--border-color); } .PGliteRepl-error { color: #c33; } .PGliteRepl-error::before { content: '!'; color: #c33; font-weight: bold; } .PGliteRepl-table-row-count a { text-decoration: none; } ================================================ FILE: packages/pglite-repl/src/Repl.tsx ================================================ import { useState, useCallback, useMemo, useRef, useEffect } from 'react' import CodeMirror, { type ViewUpdate, type ReactCodeMirrorRef, type Extension, } from '@uiw/react-codemirror' import type { CreateThemeOptions } from '@uiw/codemirror-themes' import { defaultKeymap } from '@codemirror/commands' import { keymap } from '@codemirror/view' import { PostgreSQL } from '@codemirror/lang-sql' import type { PGliteInterface } from '@electric-sql/pglite' import type { PGliteWithLive } from '@electric-sql/pglite/live' import { usePGlite } from '@electric-sql/pglite-react' import { makeSqlExt } from './sqlSupport' import type { Response } from './types' import { runQuery, getSchema } from './utils' import { ReplResponse } from './ReplResponse' import { githubDark, githubDarkInit, githubLight, githubLightInit, } from '@uiw/codemirror-theme-github' import './Repl.css' // Filter out the Enter key from the default keymap, we entirely override its behavior // to run the query when the user presses Enter. // We keep the up and down arrow keys as we only override their behavior // when the cursor is on the first or last line. const baseKeymap = defaultKeymap.filter((key) => key.key !== 'Enter') export type ReplTheme = 'light' | 'dark' | 'auto' type ThemeInit = (options?: Partial) => Extension export const defaultLightThemeInit: ThemeInit = githubLightInit export const defaultLightTheme = githubLight export const defaultDarkThemeInit: ThemeInit = githubDarkInit export const defaultDarkTheme = githubDark export interface ReplProps { pg?: PGliteInterface border?: boolean lightTheme?: Extension darkTheme?: Extension theme?: ReplTheme showTime?: boolean disableUpdateSchema?: boolean } export function Repl({ pg: pgProp, border = false, lightTheme = defaultLightTheme, darkTheme = defaultDarkTheme, theme = 'auto', showTime = false, disableUpdateSchema = false, }: ReplProps) { const [value, setValue] = useState('') const valueNoHistory = useRef('') const [loading, setLoading] = useState(true) const [output, setOutput] = useState([]) const outputRef = useRef(null) const [schema, setSchema] = useState>({}) const historyPos = useRef(-1) const rcm = useRef(null) const [themeToUse, setThemeToUse] = useState( theme === 'dark' ? darkTheme : lightTheme, ) const [styles, setStyles] = useState<{ [key: string]: string | number }>({}) const pg: PGliteInterface = usePGlite(pgProp as PGliteWithLive) useEffect(() => { let ignore = false const init = async () => { await pg.waitReady if (ignore) return setLoading(false) } setLoading(true) init() return () => { ignore = true } }, [pg]) useEffect(() => { if (theme === 'auto') { const systemTheme = window.matchMedia('(prefers-color-scheme: dark)') .matches ? 'dark' : 'light' setThemeToUse(systemTheme === 'dark' ? darkTheme : lightTheme) const listener = (e: MediaQueryListEvent) => { setThemeToUse(e.matches ? darkTheme : lightTheme) setTimeout(() => { extractStyles() }, 0) } // eslint-disable-next-line @eslint-react/web-api/no-leaked-event-listener window .matchMedia('(prefers-color-scheme: dark)') .addEventListener('change', listener) return () => { window .matchMedia('(prefers-color-scheme: dark)') .removeEventListener('change', listener) } } else { setThemeToUse(theme === 'dark' ? darkTheme : lightTheme) setTimeout(() => { extractStyles() }, 0) return } }, [theme, lightTheme, darkTheme]) const onChange = useCallback((val: string, _viewUpdate: ViewUpdate) => { extractStyles() setValue(val) if (historyPos.current === -1) { valueNoHistory.current = val } }, []) const extensions = useMemo( () => [ keymap.of([ { key: 'Enter', preventDefault: true, run: () => { if (value.trim() === '') return false // Do nothing if the input is empty runQuery(value, pg).then((response) => { setOutput((prev) => [...prev, response]) if (outputRef.current) { setTimeout(() => { outputRef.current!.scrollTop = outputRef.current!.scrollHeight }, 0) } // Update the schema for any new tables to be used in autocompletion if (!disableUpdateSchema) { getSchema(pg).then(setSchema) } }) historyPos.current = -1 valueNoHistory.current = '' setValue('') return true }, }, { key: 'ArrowUp', run: (view) => { const state = view.state const cursorLine = state.doc.lineAt( state.selection.main.head, ).number if (cursorLine === 1) { // If the cursor is on the first line, go back in history const currentPos = historyPos.current historyPos.current++ if (historyPos.current >= output.length) { historyPos.current = output.length - 1 } if (historyPos.current < -1) { historyPos.current = -1 } if (historyPos.current === currentPos) return true if (historyPos.current === -1) { setValue(valueNoHistory.current) } else { setValue(output[output.length - historyPos.current - 1].query) } return true // Prevent the default behavior } return false // Allow the default behavior }, }, { key: 'ArrowDown', run: (view) => { const state = view.state const cursorLine = state.doc.lineAt( state.selection.main.head, ).number const lastLine = state.doc.lines if (cursorLine === lastLine) { // If the cursor is on the last line, go forward in history const currentPos = historyPos.current historyPos.current-- if (historyPos.current >= output.length) { historyPos.current = output.length - 1 } if (historyPos.current < -1) { historyPos.current = -1 } if (historyPos.current === currentPos) return true if (historyPos.current === -1) { setValue(valueNoHistory.current) } else { setValue(output[output.length - historyPos.current - 1].query) } return true // Prevent the default behavior } return false // Allow the default behavior }, }, ...baseKeymap, ]), makeSqlExt({ dialect: PostgreSQL, schema: schema, tables: [ { label: 'd', displayLabel: '\\d', }, ], defaultSchema: 'public', }), ], [pg, schema, value, output, disableUpdateSchema], ) const extractStyles = () => { // Get the styles from the CodeMirror editor to use in the REPL const cmEditorEl = rcm.current?.editor?.querySelector('.cm-editor') if (!cmEditorEl) { throw new Error('No CodeMirror editor found') } const gutterEl = cmEditorEl.querySelector('.cm-gutters') const cmEditorElComputedStyles = window.getComputedStyle(cmEditorEl) const foregroundColor = cmEditorElComputedStyles.color const backgroundColor = cmEditorElComputedStyles.backgroundColor const gutterElComputedStyles = window.getComputedStyle(gutterEl!) const gutterBorder = gutterElComputedStyles.borderRight const borderWidth = parseInt(gutterElComputedStyles.borderRightWidth) || 0 const borderColor = borderWidth ? gutterElComputedStyles.borderRightColor : foregroundColor.replace('rgb', 'rgba').replace(')', ', 0.15)') const border = borderWidth ? gutterElComputedStyles.borderRight : `1px solid ${borderColor}` setStyles({ '--PGliteRepl-foreground-color': foregroundColor, '--PGliteRepl-background-color': backgroundColor, '--PGliteRepl-border': border, '--PGliteRepl-gutter-border': gutterBorder, '--PGliteRepl-border-color': borderColor, }) } return (
{loading &&
Loading...
} {output.map((response) => (
))}
{ extractStyles() setTimeout(extractStyles, 0) getSchema(pg).then(setSchema) }} />
) } ================================================ FILE: packages/pglite-repl/src/ReplResponse.tsx ================================================ import type { Results, Response } from './types' import { ReplTable } from './ReplTable' function OutLine({ result }: { result: Results }) { return (
{result.fields.length > 0 ? ( ) : (
null
)}
) } export function ReplResponse({ response, showTime, }: { response: Response showTime: boolean }) { let out if (response.error) { out = (
{response.error}
) } else { out = ( <> {response.results?.map((result, i) => ( // eslint-disable-next-line @eslint-react/no-array-index-key ))} ) } return ( <>
{response.query}
{response.text && (
{response.text}
)} {out}

{showTime && (
{response.time.toFixed(1)}ms
)}
) } ================================================ FILE: packages/pglite-repl/src/ReplTable.tsx ================================================ import { useState, useEffect } from 'react' import type { Results } from './types' const tableRowIncrement = 100 const maxCellLength = 200 function cellClass(value: unknown) { if (value === null) { return 'PGliteRepl-null' } else if (typeof value === 'number') { return 'PGliteRepl-number' } else if (typeof value === 'boolean') { return 'PGliteRepl-boolean' } else { return '' } } function cellValue(value: unknown) { let str: string if (value === null) { str = 'null' } else if (typeof value === 'number') { str = value.toString() } else if (typeof value === 'boolean') { str = value ? 'true' : 'false' } else if (value instanceof Date) { str = value.toISOString() } else if (Array.isArray(value)) { str = `[${value.map(cellValue).join(', ')}]` } else if (typeof value === 'object') { str = JSON.stringify(value) } else if (ArrayBuffer.isView(value)) { str = `${value.byteLength} bytes` } else if (value === undefined) { str = 'undefined' } else { str = value.toString() } return str.length > maxCellLength ? str.slice(0, maxCellLength) + '…' : str } export function ReplTable({ result }: { result: Results }) { const [maxRows, setMaxRows] = useState(tableRowIncrement) const rows = result.rows.slice(0, maxRows) useEffect(() => { // Reset maxRows when the result changes setMaxRows(tableRowIncrement) }, [result]) const showMore = () => { setMaxRows((prev) => prev + tableRowIncrement) } return ( <>
{result.fields.map((col) => ( ))} {/* {result.fields.map((col, i) => ( ))} */} {rows.map((row, i) => ( // eslint-disable-next-line @eslint-react/no-array-index-key {row.map((col, j) => ( // eslint-disable-next-line @eslint-react/no-array-index-key ))} ))}
{col.name}
{col.dataTypeID}
{cellValue(col)}
) } ================================================ FILE: packages/pglite-repl/src/index.css ================================================ :root { font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; line-height: 1.5; font-weight: 400; color-scheme: light dark; color: rgba(255, 255, 255, 0.87); background-color: #242424; box-sizing: border-box; } @media (prefers-color-scheme: light) { :root { color: #213547; background-color: #ffffff; } } html, body { margin: 0; padding: 0; height: 100%; } ================================================ FILE: packages/pglite-repl/src/main.tsx ================================================ import React from 'react' import ReactDOM from 'react-dom/client' import App from './App.tsx' import './index.css' ReactDOM.createRoot(document.getElementById('root')!).render( , ) ================================================ FILE: packages/pglite-repl/src/sqlSupport.ts ================================================ import { PostgreSQL, SQLConfig, keywordCompletionSource, schemaCompletionSource, } from '@codemirror/lang-sql' import { CompletionContext, CompletionResult } from '@codemirror/autocomplete' import { LanguageSupport } from '@codemirror/language' const describeCompletions = [ { label: '\\d', type: 'function', displayLabel: '\\d[S+] [ pattern ]', detail: 'PSQL Describe', }, { label: '\\da', type: 'function', displayLabel: '\\da[S] [ pattern ]', detail: 'Lists aggregate functions', }, { label: '\\dA', type: 'function', displayLabel: '\\dA[+] [ pattern ]', detail: 'Lists access methods', }, { label: '\\dAc', type: 'function', displayLabel: '\\dAc[+] [access-method-pattern [input-type-pattern]]', detail: 'Lists operator classes', }, { label: '\\dAf', type: 'function', displayLabel: '\\dAf[+] [access-method-pattern [input-type-pattern]]', detail: 'Lists operator families', }, { label: '\\dAo', type: 'function', displayLabel: '\\dAo[+] [access-method-pattern [operator-family-pattern]]', detail: 'Lists operators associated with operator families', }, { label: '\\dAp', type: 'function', displayLabel: '\\dAp[+] [access-method-pattern [operator-family-pattern]]', detail: 'Lists support functions associated with operator families', }, { label: '\\db', type: 'function', displayLabel: '\\db[+] [ pattern ]', detail: 'Lists tablespaces', }, { label: '\\dc', type: 'function', displayLabel: '\\dc[S+] [ pattern ]', detail: 'Lists conversions between character-set encodings', }, { label: '\\dconfig', type: 'function', displayLabel: '\\dconfig[+] [ pattern ]', detail: 'Lists server configuration parameters and their values', }, { label: '\\dC', type: 'function', displayLabel: '\\dC[+] [ pattern ]', detail: 'Lists type casts', }, { label: '\\dd', type: 'function', displayLabel: '\\dd[S] [ pattern ]', detail: 'Shows the descriptions of objects of type constraint, operator class, operator family, rule, and trigger', }, { label: '\\dD', type: 'function', displayLabel: '\\dD[S+] [ pattern ]', detail: 'Lists domains', }, { label: '\\ddp', type: 'function', displayLabel: '\\ddp [ pattern ]', detail: 'Lists default access privilege settings', }, { label: '\\dE', type: 'function', displayLabel: '\\dE[S+] [ pattern ]', detail: 'Lists foreign tables', }, { label: '\\di', type: 'function', displayLabel: '\\di[S+] [ pattern ]', detail: 'Lists indexes', }, { label: '\\dm', type: 'function', displayLabel: '\\dm[S+] [ pattern ]', detail: 'Lists materialized views', }, { label: '\\ds', type: 'function', displayLabel: '\\ds[S+] [ pattern ]', detail: 'Lists sequences', }, { label: '\\dt', type: 'function', displayLabel: '\\dt[S+] [ pattern ]', detail: 'Lists tables', }, { label: '\\dv', type: 'function', displayLabel: '\\dv[S+] [ pattern ]', detail: 'Lists views', }, { label: '\\des', type: 'function', displayLabel: '\\des[+] [ pattern ]', detail: 'Lists foreign servers', }, { label: '\\det', type: 'function', displayLabel: '\\det[+] [ pattern ]', detail: 'Lists foreign tables', }, { label: '\\deu', type: 'function', displayLabel: '\\deu[+] [ pattern ]', detail: 'Lists user mappings', }, { label: '\\dew', type: 'function', displayLabel: '\\dew[+] [ pattern ]', detail: 'Lists foreign-data wrappers', }, { label: '\\df', type: 'function', displayLabel: '\\df[anptwS+] [ pattern [ arg_pattern ... ] ]', detail: 'Lists functions', }, { label: '\\dF', type: 'function', displayLabel: '\\dF[+] [ pattern ]', detail: 'Lists text search configurations', }, { label: '\\dFd', type: 'function', displayLabel: '\\dFd[+] [ pattern ]', detail: 'Lists text search dictionaries', }, { label: '\\dFp', type: 'function', displayLabel: '\\dFp[+] [ pattern ]', detail: 'Lists text search parsers', }, { label: '\\dFt', type: 'function', displayLabel: '\\dFt[+] [ pattern ]', detail: 'Lists text search templates', }, { label: '\\dg', type: 'function', displayLabel: '\\dg[S+] [ pattern ]', detail: 'Lists database roles', }, { label: '\\dl', type: 'function', displayLabel: '\\dl[+] ', detail: 'List large objects', }, { label: '\\dL', type: 'function', displayLabel: '\\dL[S+] [ pattern ]', detail: 'Lists procedural languages', }, { label: '\\dn', type: 'function', displayLabel: '\\dn[S+] [ pattern ]', detail: 'Lists schemas', }, { label: '\\do', type: 'function', displayLabel: '\\do[S+] [ pattern [ arg_pattern [ arg_pattern ] ] ]', detail: 'Lists operators with their operand and result types', }, { label: '\\dO', type: 'function', displayLabel: '\\dO[S+] [ pattern ]', detail: 'Lists collations', }, { label: '\\dp', type: 'function', displayLabel: '\\dp[S] [ pattern ]', detail: 'Lists tables, views and sequences with their associated access privileges', }, { label: '\\dP', type: 'function', displayLabel: '\\dP[itn+] [ pattern ]', detail: 'Lists partitioned relations', }, { label: '\\drds', type: 'function', displayLabel: '\\drds [ role-pattern [ database-pattern ] ]', detail: 'Lists defined configuration settings', }, { label: '\\drg', type: 'function', displayLabel: '\\drg[S] [ pattern ]', detail: 'Lists information about each granted role membership', }, { label: '\\dRp', type: 'function', displayLabel: '\\dRp[+] [ pattern ]', detail: 'Lists replication publications', }, { label: '\\dRs', type: 'function', displayLabel: '\\dRs[+] [ pattern ]', detail: 'Lists replication subscriptions', }, { label: '\\dT', type: 'function', displayLabel: '\\dT[S+] [ pattern ]', detail: 'Lists data types', }, { label: '\\du', type: 'function', displayLabel: '\\du[S+] [ pattern ]', detail: 'Lists database roles', }, { label: '\\dx', type: 'function', displayLabel: '\\dx[+] [ pattern ]', detail: 'Lists installed extensions', }, { label: '\\dX', type: 'function', displayLabel: '\\dX [ pattern ]', detail: 'Lists extended statistics', }, { label: '\\dy', type: 'function', displayLabel: '\\dy[+] [ pattern ]', detail: 'Lists event triggers', }, ] function describeCompletionsAutoComplete( context: CompletionContext, ): CompletionResult | null { const word = context.matchBefore(/\\\w*/) if (!word || word.from === word.to) return null return { from: word.from, options: describeCompletions, } } // This is a reimplemented version of `sql()` from `@codemirror/lang-sql` that // includes a custom autocompletion function for postgresql's `\d` command. export function makeSqlExt(config: SQLConfig = {}) { const lang = config.dialect || PostgreSQL return new LanguageSupport(lang.language, [ // schemaCompletion(config), config.schema ? lang.language.data.of({ autocomplete: schemaCompletionSource(config), }) : [], // keywordCompletion(lang, !!config.upperCaseKeywords) lang.language.data.of({ autocomplete: keywordCompletionSource(lang, !!config.upperCaseKeywords), }), lang.language.data.of({ autocomplete: describeCompletionsAutoComplete, }), ]) } ================================================ FILE: packages/pglite-repl/src/types.ts ================================================ import { type Results as BaseResults } from '@electric-sql/pglite' export type Results = BaseResults<{ [key: string]: unknown }[]> export interface Response { query: string text?: string error?: string results?: Results[] time: number } ================================================ FILE: packages/pglite-repl/src/utils.ts ================================================ import { type PGliteInterface } from '@electric-sql/pglite' import { describe } from 'psql-describe' import type { Results, Response } from './types' export async function runQuery( query: string, pg: PGliteInterface, ): Promise { if (query.trim().toLowerCase().startsWith('\\')) { return runDescribe(query, pg) } const start = performance.now() try { const result = await pg.exec(query, { rowMode: 'array', }) const elapsed = performance.now() - start return { query, results: result as Results[], time: elapsed, } } catch (err) { return { query, error: (err as Error).message, time: performance.now() - start, } } } export async function runDescribe( query: string, pg: PGliteInterface, ): Promise { const start = performance.now() let out: string | Record | undefined let ret: Results const { promise, cancel: _cancel } = describe( query, 'postgres', async (sql) => { ret = (await pg.exec(sql, { rowMode: 'array' }))[0] as Results return { rows: ret.rows, fields: ret.fields, rowCount: ret.rows.length, } }, (output) => { out = output }, ) await promise const elapsed = performance.now() - start if (!out) { return { query, error: 'No output', time: elapsed, } } else if (typeof out === 'string') { if (out.startsWith('ERROR:')) { return { query, error: out, time: elapsed, } } else { return { query, text: out, time: elapsed, } } } else { return { query, text: out.title as string, results: [ret!], time: elapsed, } } } export async function getSchema( pg: PGliteInterface, ): Promise> { const ret = await pg.query<{ schema: string table: string columns: string }>(` SELECT table_schema AS schema, table_name AS table, array_agg(column_name) AS columns FROM information_schema.columns GROUP BY table_schema, table_name ORDER BY table_schema, table_name; `) const schema: Record = {} for (const row of ret.rows) { schema[`${row.schema}.${row.table}`] = Array.isArray(row.columns) ? row.columns : row.columns.slice(1, -1).split(',') } return schema } ================================================ FILE: packages/pglite-repl/src/vite-env.d.ts ================================================ /// ================================================ FILE: packages/pglite-repl/src-webcomponent/main.tsx ================================================ import { createRoot } from 'react-dom/client' import { Repl, defaultLightThemeInit, defaultLightTheme, defaultDarkThemeInit, defaultDarkTheme, } from '../src/Repl' import type { ReplProps, ReplTheme } from '../src/Repl' import type { PGlite } from '@electric-sql/pglite' import type { Extension } from '@uiw/react-codemirror' // @ts-ignore uses CSS loader import css from '../src/Repl.css?raw' export type { ReplProps, ReplTheme } export { defaultLightThemeInit, defaultLightTheme, defaultDarkThemeInit, defaultDarkTheme, } export class PGliteREPL extends HTMLElement { #mountPoint: HTMLDivElement #root: ReturnType #pg?: PGlite #lightTheme?: Extension #darkTheme?: Extension constructor() { super() this.#mountPoint = document.createElement('div') this.#mountPoint.classList.add('PGliteRepl-root') const shadowRoot = this.attachShadow({ mode: 'open' }) const style = document.createElement('style') style.textContent = css shadowRoot.appendChild(style) shadowRoot.appendChild(this.#mountPoint) this.#root = createRoot(this.#mountPoint) } static get observedAttributes() { return ['border', 'theme', 'show-time', 'disable-update-schema'] } connectedCallback() { this.render() } attributeChangedCallback( _name: string, oldValue: unknown, newValue: unknown, ) { if (oldValue !== newValue) { this.render() } } disconnectedCallback() { this.#root?.unmount() } get pg() { return this.#pg } set pg(pg: PGlite | undefined) { this.#pg = pg this.render() } get lightTheme() { return this.#lightTheme } set lightTheme(lightTheme: Extension | undefined) { this.#lightTheme = lightTheme this.render() } get darkTheme() { return this.#darkTheme } set darkTheme(darkTheme: Extension | undefined) { this.#darkTheme = darkTheme this.render() } render() { const border = this.hasAttribute('border') ? this.getAttribute('border') !== 'false' : undefined const theme = this.getAttribute('theme') const showTime = this.hasAttribute('show-time') ? this.getAttribute('show-time') !== 'false' : undefined const disableUpdateSchema = this.hasAttribute('disable-update-schema') ? this.getAttribute('disable-update-schema') !== 'false' : undefined const props: ReplProps = { pg: this.#pg!, border, lightTheme: this.#lightTheme, darkTheme: this.#darkTheme, theme: (theme as ReplTheme | null) || 'auto', showTime, disableUpdateSchema, } this.#root.render( <> {this.#pg ? ( ) : (
PGlite instance not provided
)} , ) } } customElements.define('pglite-repl', PGliteREPL) ================================================ FILE: packages/pglite-repl/tsconfig.json ================================================ { "extends": "../../tsconfig.json", "compilerOptions": { "useDefineForClassFields": true, "allowImportingTsExtensions": true, "jsx": "react-jsx", }, "include": ["src", "src-webcomponent"], "references": [{ "path": "./tsconfig.node.json" }] } ================================================ FILE: packages/pglite-repl/tsconfig.node.json ================================================ { "compilerOptions": { "composite": true, "skipLibCheck": true, "module": "ESNext", "moduleResolution": "bundler", "allowSyntheticDefaultImports": true, "strict": true, "noEmit": false }, "include": ["vite.config.ts"] } ================================================ FILE: packages/pglite-repl/vite.config.ts ================================================ import { resolve } from 'path' import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' import dts from 'vite-plugin-dts' import libCss from 'vite-plugin-libcss' import packageJson from './package.json' export default defineConfig({ plugins: [ // @ts-ignore type mismsatch but works? react(), libCss(), dts({ include: ['./src/Repl.tsx'], }), ], optimizeDeps: { exclude: ['@electric-sql/pglite'], }, build: { lib: { entry: resolve(import.meta.dirname, 'src/Repl.tsx'), name: 'PGliteREPL', fileName: 'Repl', // formats: ["es"], }, sourcemap: true, minify: false, rollupOptions: { external: [ 'react/jsx-runtime', ...Object.keys(packageJson.dependencies), ...Object.keys(packageJson.peerDependencies), ...Object.keys(packageJson.devDependencies), ], }, }, }) ================================================ FILE: packages/pglite-repl/vite.webcomp.config.ts ================================================ /// import { resolve } from 'path' import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' import dts from 'vite-plugin-dts' import packageJson from './package.json' export default defineConfig({ plugins: [ // @ts-ignore type mismsatch but works? react(), dts({ include: ['./src-webcomponent/main.tsx', './src/Repl.tsx'], }), ], optimizeDeps: { exclude: ['@electric-sql/pglite'], }, define: { 'process.env': {} }, build: { lib: { entry: resolve(import.meta.dirname, './src-webcomponent/main.tsx'), name: 'PGliteREPL', fileName: 'Repl', // formats: ["iife", "es"], formats: ['es'], }, sourcemap: true, minify: 'terser', outDir: 'dist-webcomponent', rollupOptions: { external: [ ...Object.keys(packageJson.peerDependencies), ...Object.keys(packageJson.devDependencies), ], }, }, }) ================================================ FILE: packages/pglite-socket/CHANGELOG.md ================================================ # @electric-sql/pglite-socket ## 0.1.1 ### Patch Changes - Updated dependencies [37fb39e] - @electric-sql/pglite@0.4.1 ## 0.1.0 ### Minor Changes - Updated dependencies [d848955] - @electric-sql/pglite-postgis@0.0.1 - @electric-sql/pglite@0.4.0 ## 0.0.22 ### Patch Changes - Updated dependencies [3dfa40f] - @electric-sql/pglite@0.3.16 ## 0.0.21 ### Patch Changes - 8a03647: Fix: Message buffering, connection handling, and concurrent connection support; ## 0.0.20 ### Patch Changes - 54a4873: allow extensions to be loaded via '-e/--extensions ' cmd line parameter' - 45bff97: added pgcrypto extension - Updated dependencies [45bff97] - Updated dependencies [5ec474f] - @electric-sql/pglite@0.3.15 ## 0.0.19 ### Patch Changes - Updated dependencies [8785034] - Updated dependencies [90cfee8] - @electric-sql/pglite@0.3.14 ## 0.0.18 ### Patch Changes - Updated dependencies [ad3d0d8] - @electric-sql/pglite@0.3.13 ## 0.0.17 ### Patch Changes - Updated dependencies [ce0e74e] - @electric-sql/pglite@0.3.12 ## 0.0.16 ### Patch Changes - Updated dependencies [9a104b9] - @electric-sql/pglite@0.3.11 ## 0.0.15 ### Patch Changes - Updated dependencies [ad765ed] - @electric-sql/pglite@0.3.10 ## 0.0.14 ### Patch Changes - e40ccad: Upgrade emsdk - Updated dependencies [e40ccad] - @electric-sql/pglite@0.3.9 ## 0.0.13 ### Patch Changes - bd263aa: fix oom; other fixes - Updated dependencies [f12a582] - Updated dependencies [bd263aa] - @electric-sql/pglite@0.3.8 ## 0.0.12 ### Patch Changes - Updated dependencies [0936962] - @electric-sql/pglite@0.3.7 ## 0.0.11 ### Patch Changes - Updated dependencies [6898469] - Updated dependencies [469be18] - Updated dependencies [64e33c7] - @electric-sql/pglite@0.3.6 ## 0.0.10 ### Patch Changes - Updated dependencies [6653899] - Updated dependencies [5f007fc] - @electric-sql/pglite@0.3.5 ## 0.0.9 ### Patch Changes - 38a55d0: fix cjs/esm misconfigurations - Updated dependencies [1fcaa3e] - Updated dependencies [38a55d0] - Updated dependencies [aac7003] - Updated dependencies [8ca254d] - @electric-sql/pglite@0.3.4 ## 0.0.8 ### Patch Changes - Updated dependencies [ea2c7c7] - @electric-sql/pglite@0.3.3 ## 0.0.7 ### Patch Changes - 5a47f4d: better handling of closing the socket - 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. ## 0.0.6 ### Patch Changes - Updated dependencies [e2c654b] - @electric-sql/pglite@0.3.2 ## 0.0.5 ### Patch Changes - f975f77: Updated README - d9b52d5: allows unix socket connections ## 0.0.4 ### Patch Changes - 027baed: missing shebang ## 0.0.3 ### Patch Changes - 1c2dc84: fix pglite-socket exports ## 0.0.2 ### Patch Changes - Updated dependencies [713364e] - @electric-sql/pglite@0.3.1 ================================================ FILE: packages/pglite-socket/README.md ================================================ # pglite-socket A 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. There are two main components to this package: - [`PGLiteSocketServer`](#pglitesocketserver) - A TCP server that allows PostgreSQL clients to connect to a PGlite database instance. - [`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. The package also includes a [CLI](#cli-usage) for quickly starting a PGlite socket server. Note: 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. ## Installation ```bash npm install @electric-sql/pglite-socket # or yarn add @electric-sql/pglite-socket # or pnpm add @electric-sql/pglite-socket ``` ## Usage ```typescript import { PGlite } from '@electric-sql/pglite' import { PGLiteSocketServer } from '@electric-sql/pglite-socket' // Create a PGlite instance const db = await PGlite.create() // Create and start a socket server const server = new PGLiteSocketServer({ db, port: 5432, host: '127.0.0.1', }) await server.start() console.log('Server started on 127.0.0.1:5432') // Handle graceful shutdown process.on('SIGINT', async () => { await server.stop() await db.close() console.log('Server stopped and database closed') process.exit(0) }) ``` ## API ### PGLiteSocketServer Creates a TCP server that allows PostgreSQL clients to connect to a PGlite database instance. #### Options - `db: PGlite` - The PGlite database instance - `port?: number` - The port to listen on (default: 5432). Use port 0 to let the OS assign an available port - `host?: string` - The host to bind to (default: 127.0.0.1) - `path?: string` - Unix socket path to bind to (takes precedence over host:port) - `inspect?: boolean` - Print the incoming and outgoing data to the console (default: false) #### Methods - `start(): Promise` - Start the socket server - `stop(): Promise` - Stop the socket server #### Events - `listening` - Emitted when the server starts listening - `connection` - Emitted when a client connects - `error` - Emitted when an error occurs - `close` - Emitted when the server is closed ### PGLiteSocketHandler Low-level handler for a single socket connection to PGlite. This class handles the raw protocol communication between a socket and PGlite. #### Options - `db: PGlite` - The PGlite database instance - `closeOnDetach?: boolean` - Whether to close the socket when detached (default: false) - `inspect?: boolean` - Print the incoming and outgoing data to the console in hex and ascii (default: false) #### Methods - `attach(socket: Socket): Promise` - Attach a socket to this handler - `detach(close?: boolean): PGLiteSocketHandler` - Detach the current socket from this handler - `isAttached: boolean` - Check if a socket is currently attached #### Events - `data` - Emitted when data is processed through the handler - `error` - Emitted when an error occurs - `close` - Emitted when the socket is closed #### Example ```typescript import { PGlite } from '@electric-sql/pglite' import { PGLiteSocketHandler } from '@electric-sql/pglite-socket' import { createServer, Socket } from 'net' // Create a PGlite instance const db = await PGlite.create() // Create a handler const handler = new PGLiteSocketHandler({ db, closeOnDetach: true, inspect: false, }) // Create a server that uses the handler const server = createServer(async (socket: Socket) => { try { await handler.attach(socket) console.log('Client connected') } catch (err) { console.error('Error attaching socket', err) socket.end() } }) server.listen(5432, '127.0.0.1') ``` ## Examples See the [examples directory](./examples) for more usage examples. ## CLI Usage This package provides a command-line interface for quickly starting a PGlite socket server. ```bash # Install globally npm install -g @electric-sql/pglite-socket # Start a server with default settings (in-memory database, port 5432) pglite-server # Start a server with custom options pglite-server --db=/path/to/database --port=5433 --host=0.0.0.0 --debug=1 # Using short options pglite-server -d /path/to/database -p 5433 -h 0.0.0.0 -v 1 # Show help pglite-server --help ``` ### CLI Options - `-d, --db=PATH` - Database path (default: memory://) - `-p, --port=PORT` - Port to listen on (default: 5432). Use 0 to let the OS assign an available port - `-h, --host=HOST` - Host to bind to (default: 127.0.0.1) - `-u, --path=UNIX` - Unix socket to bind to (takes precedence over host:port) - `-v, --debug=LEVEL` - Debug level 0-5 (default: 0) - `-e, --extensions=LIST` - Comma-separated list of extensions to load (e.g., vector,pgcrypto) - `-r, --run=COMMAND` - Command to run after server starts - `--include-database-url` - Include DATABASE_URL in subprocess environment - `--shutdown-timeout=MS` - Timeout for graceful subprocess shutdown in ms (default: 5000) - `-m, --max-connections=N` - Maximum concurrent connections (default is no concurrency: 1) ### Development Server Integration The `--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. ```bash # Start your Next.js dev server with PGlite pglite-server --run "npm run dev" --include-database-url # Start a Node.js app with PGlite pglite-server --db=./dev-db --run "node server.js" --include-database-url # Start multiple services (using a process manager like concurrently) pglite-server --run "npx concurrently 'npm run dev' 'npm run worker'" --include-database-url ``` When 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. ### Using in npm scripts You can add the CLI to your package.json scripts for convenient execution: ```json { "scripts": { "db:start": "pglite-server --db=./data/mydb --port=5433", "db:dev": "pglite-server --db=memory:// --debug=1", "dev": "pglite-server --db=./dev-db --run 'npm run start:dev' --include-database-url", "dev:clean": "pglite-server --run 'npm run start:dev' --include-database-url" } } ``` Then run with: ```bash npm run dev # Start with persistent database npm run dev:clean # Start with in-memory database ``` ### Unix Socket Support For better performance in local development, you can use Unix sockets instead of TCP: ```bash # Start server on a Unix socket pglite-server --path=/tmp/pglite.sock --run "npm run dev" --include-database-url # The DATABASE_URL will be: postgresql://postgres:postgres@/postgres?host=/tmp ``` ### Connecting to the server Once the server is running, you can connect to it using any PostgreSQL client: #### Using psql ```bash PGSSLMODE=disable psql -h localhost -p 5432 -d template1 ``` #### Using Node.js clients ```javascript // Using node-postgres import pg from 'pg' const client = new pg.Client({ host: 'localhost', port: 5432, database: 'template1' }) await client.connect() // Using postgres.js import postgres from 'postgres' const sql = postgres({ host: 'localhost', port: 5432, database: 'template1' }) // Using environment variable (when using --include-database-url) const sql = postgres(process.env.DATABASE_URL) ``` ### Limitations and Tips - Multiple concurrent connections are supported through a **multiplexer** over the single conn, therefore not all cases might be covered. - For development purposes, using an in-memory database (`--db=memory://`) is fastest but data won't persist after the server is stopped. - For persistent storage, specify a file path for the database (e.g., `--db=./data/mydb`). - When using debug mode (`--debug=1` or higher), additional protocol information will be displayed in the console. - To allow connections from other machines, set the host to `0.0.0.0` with `--host=0.0.0.0`. - SSL connections are **NOT** supported. For `psql`, set env var `PGSSLMODE=disable`. - When using `--run`, the server will automatically shut down if the subprocess exits with a non-zero code. - Use `--shutdown-timeout` to adjust how long to wait for graceful subprocess termination (default: 5 seconds). - Use `--max-connections=10` to allow up to 10 concurrent connections (default: 1, no concurrent connections). ## License Apache 2.0 ================================================ FILE: packages/pglite-socket/eslint.config.js ================================================ import globals from 'globals' import rootConfig from '../../eslint.config.js' export default [ ...rootConfig, { ignores: ['release/**/*', 'examples/**/*', 'dist/**/*'], }, { languageOptions: { globals: { ...globals.browser, ...globals.node, }, }, rules: { ...rootConfig.rules, '@typescript-eslint/no-explicit-any': 'off', }, }, { files: ['tests/targets/deno/**/*.js'], languageOptions: { globals: { Deno: false, }, }, }, ] ================================================ FILE: packages/pglite-socket/examples/basic-server.ts ================================================ import { PGLiteSocketServer } from '../src' import { PGlite, DebugLevel } from '@electric-sql/pglite' /* * This is a basic example of how to use the PGLiteSocketServer class. * It creates a PGlite instance and a PGLiteSocketServer instance and starts the server. * It also handles SIGINT to stop the server and close the database. * You can run this example with the following command: * * ```bash * pnpm tsx examples/basic-server.ts * ``` * or with the handy script: * ```bash * pnpm example:basic-server * ``` * * You can set the host and port with the following environment variables: * * ```bash * HOST=127.0.0.1 PORT=5432 DEBUG=1 pnpm tsx examples/basic-server.ts * ``` * * Debug level can be set to 0, 1, 2, 3, or 4. * * ```bash * DEBUG=1 pnpm tsx examples/basic-server.ts * ``` * You can also use a UNIX socket instead of the host:port * * ```bash * UNIX=/tmp/.s.PGSQL.5432 DEBUG=1 pnpm tsx examples/basic-server.ts * ``` */ const UNIX = process.env.UNIX const PORT = process.env.PORT ? parseInt(process.env.PORT) : 5432 const HOST = process.env.HOST ?? '127.0.0.1' const DEBUG = process.env.DEBUG ? (parseInt(process.env.DEBUG) as DebugLevel) : 0 // Create a PGlite instance const db = await PGlite.create({ debug: DEBUG, }) // Check if the database is working console.log(await db.query('SELECT version()')) // Create a PGLiteSocketServer instance const server = new PGLiteSocketServer({ db, port: PORT, host: HOST, path: UNIX, inspect: !!DEBUG, // Print the incoming and outgoing data to the console }) server.addEventListener('listening', (event) => { const detail = ( event as CustomEvent<{ port: number; host: string } | { host: string }> ).detail console.log(`Server listening on ${JSON.stringify(detail)}`) }) // Start the server await server.start() // Handle SIGINT to stop the server and close the database process.on('SIGINT', async () => { await server.stop() await db.close() console.log('Server stopped and database closed') process.exit(0) }) ================================================ FILE: packages/pglite-socket/package.json ================================================ { "name": "@electric-sql/pglite-socket", "version": "0.1.1", "description": "A socket implementation for PGlite enabling remote connections", "author": "Electric DB Limited", "homepage": "https://pglite.dev", "license": "Apache-2.0", "repository": { "type": "git", "url": "git+https://github.com/electric-sql/pglite", "directory": "packages/pglite-socket" }, "keywords": [ "postgres", "sql", "database", "wasm", "pglite", "socket" ], "private": false, "publishConfig": { "access": "public" }, "type": "module", "main": "dist/index.cjs", "module": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "bin": { "pglite-server": "./dist/scripts/server.js" }, "scripts": { "build": "tsup", "check:exports": "attw . --pack --profile node16", "lint": "eslint ./src ./tests --report-unused-disable-directives --max-warnings 0", "format": "prettier --write ./src ./tests", "typecheck": "tsc", "stylecheck": "pnpm lint && prettier --check ./src ./tests", "test": "vitest", "example:basic-server": "tsx examples/basic-server.ts", "pglite-server:dev": "tsx --watch src/scripts/server.ts", "prepublishOnly": "pnpm check:exports" }, "devDependencies": { "@arethetypeswrong/cli": "^0.18.1", "@electric-sql/pg-protocol": "workspace:*", "@electric-sql/pglite": "workspace:*", "@types/emscripten": "^1.41.1", "@types/node": "^20.16.11", "pg": "^8.14.0", "postgres": "^3.4.5", "tsx": "^4.19.2", "vitest": "^1.3.1" }, "peerDependencies": { "@electric-sql/pglite": "workspace:*" } } ================================================ FILE: packages/pglite-socket/src/index.ts ================================================ import type { PGlite } from '@electric-sql/pglite' import { type Server, type Socket, createServer } from 'net' // Connection queue timeout in milliseconds export const CONNECTION_QUEUE_TIMEOUT = 60000 // 60 seconds /** * Represents a queued query waiting for PGlite access */ interface QueuedQuery { handlerId: number message: Uint8Array resolve: (resultSize: number) => void reject: (error: Error) => void timestamp: number onData: (data: Uint8Array) => void } /** * Global query queue manager * Ensures only one query executes at a time in PGlite */ class QueryQueueManager { private queue: QueuedQuery[] = [] private processing = false private db: PGlite private debug: boolean private lastHandlerId: null | number = null constructor(db: PGlite, debug = false) { this.db = db this.debug = debug } private log(message: string, ...args: any[]): void { if (this.debug) { console.log(`[QueryQueueManager] ${message}`, ...args) } } async enqueue( handlerId: number, message: Uint8Array, onData: (data: Uint8Array) => void, ): Promise { return new Promise((resolve, reject) => { const query: QueuedQuery = { handlerId, message, resolve, reject, timestamp: Date.now(), onData, } this.queue.push(query) this.log( `enqueued query from handler #${handlerId}, queue size: ${this.queue.length}`, ) // Process queue if not already processing if (!this.processing) { this.processQueue() } }) } private async processQueue(): Promise { if (this.processing || this.queue.length === 0) { return } this.processing = true while (this.queue.length > 0) { let query if (this.db.isInTransaction() && this.lastHandlerId) { const i = this.queue.findIndex( (q) => q.handlerId === this.lastHandlerId, ) if (i === -1) { // we didn't find any other query from the same client! this.log( `transaction started, but no query from the same handler id found in queue`, this.lastHandlerId, ) query = null } else { query = this.queue.splice(i, 1)[0] } } else { query = this.queue.shift() } if (!query) break const waitTime = Date.now() - query.timestamp this.log( `processing query from handler #${query.handlerId} (waited ${waitTime}ms)`, ) let result = 0 try { // Execute the query with exclusive access to PGlite await this.db.runExclusive(async () => { return await this.db.execProtocolRawStream(query.message, { onRawData: (data) => { result += data.length query.onData(data) }, }) }) } catch (error) { this.log(`query from handler #${query.handlerId} failed:`, error) query.reject(error as Error) return } this.log( `query from handler #${query.handlerId} completed, ${result} bytes`, ) this.lastHandlerId = query.handlerId query.resolve(result) } this.processing = false this.log(`queue processing complete, queue length is`, this.queue.length) } getQueueLength(): number { return this.queue.length } clearQueueForHandler(handlerId: number): void { const before = this.queue.length this.queue = this.queue.filter((q) => { if (q.handlerId === handlerId) { q.reject(new Error('Handler disconnected')) return false } return true }) const removed = before - this.queue.length if (removed > 0) { this.log(`cleared ${removed} queries for handler #${handlerId}`) } } async clearTransactionIfNeeded(handlerId: number): Promise { if (this.db.isInTransaction() && this.lastHandlerId === handlerId) { await this.db.exec('ROLLBACK') this.lastHandlerId = null await this.processQueue() } } } /** * Options for creating a PGLiteSocketHandler */ export interface PGLiteSocketHandlerOptions { /** The query queue manager */ queryQueue: QueryQueueManager /** Whether to close the socket when detached (default: false) */ closeOnDetach?: boolean /** Print the incoming and outgoing data to the console in hex and ascii */ inspect?: boolean /** Enable debug logging of method calls */ debug?: boolean /** Idle timeout in ms (0 to disable, default: 0) */ idleTimeout?: number } /** * Handler for a single socket connection to PGlite * Each connection can remain open and send multiple queries */ export class PGLiteSocketHandler extends EventTarget { private queryQueue: QueryQueueManager private socket: Socket | null = null private active = false private closeOnDetach: boolean private inspect: boolean private debug: boolean private readonly id: number private messageBuffer: Buffer = Buffer.alloc(0) private idleTimer?: NodeJS.Timeout private idleTimeout: number private lastActivityTime: number = Date.now() // Static counter for generating unique handler IDs private static nextHandlerId = 1 constructor(options: PGLiteSocketHandlerOptions) { super() this.queryQueue = options.queryQueue this.closeOnDetach = options.closeOnDetach ?? false this.inspect = options.inspect ?? false this.debug = options.debug ?? false this.idleTimeout = options.idleTimeout ?? 0 this.id = PGLiteSocketHandler.nextHandlerId++ this.log('constructor: created new handler') } public get handlerId(): number { return this.id } private log(message: string, ...args: any[]): void { if (this.debug) { console.log(`[PGLiteSocketHandler#${this.id}] ${message}`, ...args) } } public async attach(socket: Socket): Promise { this.log( `attach: attaching socket from ${socket.remoteAddress}:${socket.remotePort}`, ) if (this.socket) { throw new Error('Socket already attached') } this.socket = socket this.active = true this.lastActivityTime = Date.now() // Set up socket options socket.setNoDelay(true) // Set up idle timeout if configured if (this.idleTimeout > 0) { this.resetIdleTimer() } // Setup event handlers this.log(`attach: setting up socket event handlers`) socket.on('data', (data) => { this.lastActivityTime = Date.now() this.resetIdleTimer() setImmediate(async () => { try { await this.handleData(data) } catch (err) { this.log('socket on data error: ', err) this.handleError(err as Error) } }) }) socket.on('error', (err) => { setImmediate(() => this.handleError(err)) }) socket.on('close', () => { setImmediate(() => this.handleClose()) }) this.log(`attach: socket handler ready`) return this } private resetIdleTimer(): void { if (this.idleTimeout <= 0) return if (this.idleTimer) { clearTimeout(this.idleTimer) } this.idleTimer = setTimeout(() => { const idleTime = Date.now() - this.lastActivityTime this.log(`idle timeout after ${idleTime}ms`) this.handleError(new Error('Idle timeout')) }, this.idleTimeout) } public async detach(close?: boolean): Promise { this.log(`detach: detaching socket, close=${close ?? this.closeOnDetach}`) if (this.idleTimer) { clearTimeout(this.idleTimer) this.idleTimer = undefined } // Clear any pending queries for this handler this.queryQueue.clearQueueForHandler(this.id) await this.queryQueue.clearTransactionIfNeeded(this.id) if (!this.socket) { this.log(`detach: no socket attached, nothing to do`) return this } // Remove all listeners this.socket.removeAllListeners('data') this.socket.removeAllListeners('error') this.socket.removeAllListeners('close') // Close the socket if requested if (close ?? this.closeOnDetach) { if (this.socket.writable) { this.log(`detach: closing socket`) try { this.socket.end() this.socket.destroy() } catch (err) { this.log(`detach: error closing socket:`, err) } } } this.socket = null this.active = false this.messageBuffer = Buffer.alloc(0) this.log(`detach: handler cleaned up`) return this } public get isAttached(): boolean { return this.socket !== null } private async handleData(data: Buffer): Promise { if (!this.socket || !this.active) { this.log(`handleData: no active socket, ignoring data`) return 0 } this.log(`handleData: received ${data.length} bytes`) // Append to buffer for message reassembly this.messageBuffer = Buffer.concat([this.messageBuffer, data]) // Print the incoming data to the console this.inspectData('incoming', data) try { let totalProcessed = 0 while (this.messageBuffer.length > 0) { // Determine message length let messageLength = 0 let isComplete = false // Handle startup message (no type byte, just length) if (this.messageBuffer.length >= 4) { const firstInt = this.messageBuffer.readInt32BE(0) if (this.messageBuffer.length >= 8) { const secondInt = this.messageBuffer.readInt32BE(4) // PostgreSQL 3.0 protocol version if (secondInt === 196608 || secondInt === 0x00030000) { messageLength = firstInt isComplete = this.messageBuffer.length >= messageLength } } // Regular message (type byte + length) if (!isComplete && this.messageBuffer.length >= 5) { const msgLength = this.messageBuffer.readInt32BE(1) messageLength = 1 + msgLength isComplete = this.messageBuffer.length >= messageLength } } if (!isComplete || messageLength === 0) { this.log( `handleData: incomplete message, buffering ${this.messageBuffer.length} bytes`, ) break } // Extract and process complete message const message = this.messageBuffer.slice(0, messageLength) this.messageBuffer = this.messageBuffer.slice(messageLength) this.log(`handleData: processing message of ${message.length} bytes`) // Check if socket is still active before processing if (!this.active || !this.socket) { this.log(`handleData: socket no longer active, stopping processing`) break } let socketWriteError: any = undefined // Queue the query for execution // This allows multiple connections to queue queries simultaneously await this.queryQueue.enqueue( this.id, new Uint8Array(message), (data) => { this.log(`handleData: received ${data.length} bytes from PGlite`) // Print the outgoing data to the console this.inspectData('outgoing', data) // Send response if available if ( data.length > 0 && this.socket && this.socket.writable && this.active ) { // await new Promise((resolve, reject) => { this.log(`handleData: writing response to socket`) if (this.socket?.writable) { this.socket.write(Buffer.from(data), (err?: any) => { if (err) { this.log(`handleData: error writing to socket:`, err) socketWriteError = err } else { this.log(`handleData: socket sent: ${data.length} bytes`) } }) } else { this.log(`handleData: socket no longer writable`) } } totalProcessed += data.length }, ) if (socketWriteError) throw socketWriteError } // Emit data event with byte sizes this.dispatchEvent( new CustomEvent('data', { detail: { incoming: data.length, outgoing: totalProcessed }, }), ) return totalProcessed } catch (err) { this.log(`handleData: error processing data:`, err) throw err } } private handleError(err: Error): void { if (!this.active) { this.log(`handleError: handler not active, ignoring error`) return } // ECONNRESET is expected behavior when clients disconnect if (err.message?.includes('ECONNRESET')) { this.log( `handleError: client disconnected (ECONNRESET) - normal behavior`, ) } else if (err.message?.includes('Idle timeout')) { this.log(`handleError: connection idle timeout`) } else { this.log(`handleError:`, err) } this.active = false // Emit error event this.dispatchEvent(new CustomEvent('error', { detail: err })) // Clean up this.detach(true) } private handleClose(): void { this.log(`handleClose: socket closed`) this.active = false this.dispatchEvent(new CustomEvent('close')) this.detach(false) } private inspectData( direction: 'incoming' | 'outgoing', data: Buffer | Uint8Array, ): void { if (!this.inspect) return console.log('-'.repeat(75)) if (direction === 'incoming') { console.log('-> incoming', data.length, 'bytes') } else { console.log('<- outgoing', data.length, 'bytes') } for (let offset = 0; offset < data.length; offset += 16) { const chunkSize = Math.min(16, data.length - offset) let hexPart = '' for (let i = 0; i < 16; i++) { if (i < chunkSize) { const byte = data[offset + i] hexPart += byte.toString(16).padStart(2, '0') + ' ' } else { hexPart += ' ' } } let asciiPart = '' for (let i = 0; i < chunkSize; i++) { const byte = data[offset + i] asciiPart += byte >= 32 && byte <= 126 ? String.fromCharCode(byte) : '.' } console.log( `${offset.toString(16).padStart(8, '0')} ${hexPart} ${asciiPart}`, ) } } } /** * Options for creating a PGLiteSocketServer */ export interface PGLiteSocketServerOptions { /** The PGlite database instance */ db: PGlite /** The port to listen on (default: 5432) */ port?: number /** The host to bind to (default: 127.0.0.1) */ host?: string /** Unix socket path to bind to (default: undefined) */ path?: string /** Print the incoming and outgoing data to the console in hex and ascii */ inspect?: boolean /** Enable debug logging of method calls */ debug?: boolean /** Idle timeout in ms (0 to disable, default: 0) */ idleTimeout?: number /** Maximum concurrent connections (default: 100) */ maxConnections?: number } /** * PGLite Socket Server with support for multiple concurrent connections * Connections remain open and queries are queued at the query level */ export class PGLiteSocketServer extends EventTarget { readonly db: PGlite private server: Server | null = null private port?: number private host?: string private path?: string private active = false private inspect: boolean private debug: boolean private idleTimeout: number private maxConnections: number private handlers: Set = new Set() private queryQueue: QueryQueueManager constructor(options: PGLiteSocketServerOptions) { super() this.db = options.db if (options.path) { this.path = options.path } else { if (typeof options.port === 'number') { // Keep port undefined on port 0, will be set by the OS when we start the server. this.port = options.port ?? options.port } else { this.port = 5432 } this.host = options.host || '127.0.0.1' } this.inspect = options.inspect ?? false this.debug = options.debug ?? false this.idleTimeout = options.idleTimeout ?? 0 this.maxConnections = options.maxConnections ?? 1 // Create the shared query queue this.queryQueue = new QueryQueueManager(this.db, this.debug) this.log(`constructor: created server on ${this.getServerConn()}`) this.log(`constructor: max connections: ${this.maxConnections}`) if (this.idleTimeout > 0) { this.log(`constructor: idle timeout: ${this.idleTimeout}ms`) } } private log(message: string, ...args: any[]): void { if (this.debug) { console.log(`[PGLiteSocketServer] ${message}`, ...args) } } public async start(): Promise { this.log(`start: starting server on ${this.getServerConn()}`) if (this.server) { throw new Error('Socket server already started') } // Ensure PGlite is ready before accepting connections await this.db.waitReady this.active = true this.server = createServer((socket) => { setImmediate(() => this.handleConnection(socket)) }) this.server.maxConnections = this.maxConnections return new Promise((resolve, reject) => { if (!this.server) return reject(new Error('Server not initialized')) this.server.on('error', (err) => { this.log(`start: server error:`, err) this.dispatchEvent(new CustomEvent('error', { detail: err })) if (!this.active) { reject(err) } }) if (this.path) { this.server.listen(this.path, () => { this.log(`start: server listening on ${this.getServerConn()}`) this.dispatchEvent( new CustomEvent('listening', { detail: { path: this.path }, }), ) resolve() }) } else { const server = this.server server.listen(this.port, this.host, () => { const address = server.address() // We are not using pipes, so return type should be AddressInfo if (address === null || typeof address !== 'object') { throw Error('Expected address info') } // Assign the new port number this.port = address.port this.log(`start: server listening on ${this.getServerConn()}`) this.dispatchEvent( new CustomEvent('listening', { detail: { port: this.port, host: this.host }, }), ) resolve() }) } }) } public getServerConn(): string { if (this.path) return this.path return `${this.host}:${this.port}` } public async stop(): Promise { this.log(`stop: stopping server`) this.active = false // Detach all handlers this.log(`stop: detaching ${this.handlers.size} handlers`) for (const handler of this.handlers) { handler.detach(true) } this.handlers.clear() if (!this.server) { this.log(`stop: server not running, nothing to do`) return Promise.resolve() } return new Promise((resolve) => { if (!this.server) return resolve() this.server.close(() => { this.log(`stop: server closed`) this.server = null this.dispatchEvent(new CustomEvent('close')) resolve() }) }) } private async handleConnection(socket: Socket): Promise { const clientInfo = { clientAddress: socket.remoteAddress || 'unknown', clientPort: socket.remotePort || 0, } this.log( `handleConnection: new connection from ${clientInfo.clientAddress}:${clientInfo.clientPort}`, ) this.log( `handleConnection: active connections: ${this.handlers.size}, queued queries: ${this.queryQueue.getQueueLength()}`, ) if (!this.active) { this.log(`handleConnection: server not active, closing connection`) try { socket.end() } catch (err) { this.log(`handleConnection: error closing socket:`, err) } return } // Check connection limit if (this.handlers.size >= this.maxConnections) { this.log(`handleConnection: max connections reached, rejecting`) socket.write(Buffer.from('Too many connections\n')) socket.end() return } // Create a new handler for this connection const handler = new PGLiteSocketHandler({ queryQueue: this.queryQueue, closeOnDetach: true, inspect: this.inspect, debug: this.debug, idleTimeout: this.idleTimeout, }) // Track this handler this.handlers.add(handler) // Handle errors handler.addEventListener('error', (event) => { const error = (event as CustomEvent).detail if (error?.message?.includes('ECONNRESET')) { this.log( `handler #${handler.handlerId}: client disconnected (ECONNRESET)`, ) } else if (error?.message?.includes('Idle timeout')) { this.log(`handler #${handler.handlerId}: idle timeout`) } else { this.log(`handler #${handler.handlerId}: error:`, error) } }) // Handle close event handler.addEventListener('close', () => { this.log(`handler #${handler.handlerId}: closed`) this.handlers.delete(handler) this.log(`handleConnection: active connections: ${this.handlers.size}`) }) try { await handler.attach(socket) this.dispatchEvent(new CustomEvent('connection', { detail: clientInfo })) } catch (err) { this.log(`handleConnection: error attaching socket:`, err) this.handlers.delete(handler) this.dispatchEvent(new CustomEvent('error', { detail: err })) try { socket.end() } catch (closeErr) { this.log(`handleConnection: error closing socket:`, closeErr) } } } public getStats() { return { activeConnections: this.handlers.size, queuedQueries: this.queryQueue.getQueueLength(), maxConnections: this.maxConnections, } } } ================================================ FILE: packages/pglite-socket/src/scripts/server.ts ================================================ #!/usr/bin/env node import { PGlite, DebugLevel } from '@electric-sql/pglite' import type { Extension, Extensions } from '@electric-sql/pglite' import { PGLiteSocketServer } from '../index' import { parseArgs } from 'node:util' import { spawn, ChildProcess } from 'node:child_process' // Define command line argument options const args = parseArgs({ options: { db: { type: 'string', short: 'd', default: 'memory://', help: 'Database path (relative or absolute). Use memory:// for in-memory database.', }, port: { type: 'string', short: 'p', default: '5432', help: 'Port to listen on', }, host: { type: 'string', short: 'h', default: '127.0.0.1', help: 'Host to bind to', }, path: { type: 'string', short: 'u', default: undefined, help: 'unix socket to bind to. Takes precedence over host:port', }, debug: { type: 'string', short: 'v', default: '0', help: 'Debug level (0-5)', }, extensions: { type: 'string', short: 'e', default: undefined, help: 'Comma-separated list of extensions to load (e.g., vector,pgcrypto,postgis etc.)', }, run: { type: 'string', short: 'r', default: undefined, help: 'Command to run after server starts', }, 'include-database-url': { type: 'boolean', default: false, help: 'Include DATABASE_URL in the environment of the subprocess', }, 'shutdown-timeout': { type: 'string', default: '5000', help: 'Timeout in milliseconds for graceful subprocess shutdown (default: 5000)', }, 'max-connections': { type: 'string', short: 'm', default: '1', help: 'Maximum concurrent connections (default: 1)', }, help: { type: 'boolean', short: '?', default: false, help: 'Show help', }, }, }) const help = `PGlite Socket Server Usage: pglite-server [options] Options: -d, --db=PATH Database path (default: memory://) -p, --port=PORT Port to listen on (default: 5432) -h, --host=HOST Host to bind to (default: 127.0.0.1) -u, --path=UNIX Unix socket to bind to (default: undefined). Takes precedence over host:port -v, --debug=LEVEL Debug level 0-5 (default: 0) -e, --extensions=LIST Comma-separated list of extensions to load Formats: vector, pgcrypto (built-in/contrib) @org/package/path:exportedName (npm package) -r, --run=COMMAND Command to run after server starts --include-database-url Include DATABASE_URL in subprocess environment --shutdown-timeout=MS Timeout for graceful subprocess shutdown in ms (default: 5000) -m, --max-connections=N Maximum concurrent connections (default is no concurrency: 1) ` interface ServerConfig { dbPath: string port: number host: string path?: string debugLevel: DebugLevel extensionNames?: string[] runCommand?: string includeDatabaseUrl: boolean shutdownTimeout: number maxConnections: number } class PGLiteServerRunner { private config: ServerConfig private db: PGlite | null = null private server: PGLiteSocketServer | null = null private subprocessManager: SubprocessManager | null = null constructor(config: ServerConfig) { this.config = config } static parseConfig(): ServerConfig { const extensionsArg = args.values.extensions as string | undefined return { dbPath: args.values.db as string, port: parseInt(args.values.port as string, 10), host: args.values.host as string, path: args.values.path as string, debugLevel: parseInt(args.values.debug as string, 10) as DebugLevel, extensionNames: extensionsArg ? extensionsArg.split(',').map((e) => e.trim()) : undefined, runCommand: args.values.run as string, includeDatabaseUrl: args.values['include-database-url'] as boolean, shutdownTimeout: parseInt(args.values['shutdown-timeout'] as string, 10), maxConnections: parseInt(args.values['max-connections'] as string, 10), } } private createDatabaseUrl(): string { const { host, port, path } = this.config if (path) { // Unix socket connection const socketDir = path.endsWith('/.s.PGSQL.5432') ? path.slice(0, -13) : path return `postgresql://postgres:postgres@/postgres?host=${encodeURIComponent(socketDir)}` } else { // TCP connection return `postgresql://postgres:postgres@${host}:${port}/postgres` } } private async importExtensions(): Promise { if (!this.config.extensionNames?.length) { return undefined } const extensions: Extensions = {} // Built-in extensions that are not in contrib const builtInExtensions = [ 'vector', 'live', 'pg_hashids', 'pg_ivm', 'pg_uuidv7', 'pgtap', 'age', 'pg_textsearch', ] for (const name of this.config.extensionNames) { let ext: Extension | null = null try { // Check if this is a custom package path (contains ':') // Format: @org/package/path:exportedName or package/path:exportedName if (name.includes(':')) { const [packagePath, exportName] = name.split(':') if (!packagePath || !exportName) { throw new Error( `Invalid extension format '${name}'. Expected: package/path:exportedName`, ) } const mod = await import(packagePath) ext = mod[exportName] as Extension if (ext) { extensions[exportName] = ext console.log( `Imported extension '${exportName}' from '${packagePath}'`, ) } } else if (builtInExtensions.includes(name)) { // Built-in extension (e.g., @electric-sql/pglite/vector) const mod = await import(`@electric-sql/pglite/${name}`) ext = mod[name] as Extension if (ext) { extensions[name] = ext console.log(`Imported extension: ${name}`) } } else { // Try contrib first (e.g., @electric-sql/pglite/contrib/pgcrypto) try { const mod = await import(`@electric-sql/pglite/contrib/${name}`) ext = mod[name] as Extension } catch { // Fall back to external package (e.g., @electric-sql/pglite-) const mod = await import(`@electric-sql/pglite-${name}`) ext = mod[name] as Extension } if (ext) { extensions[name] = ext console.log(`Imported extension: ${name}`) } } } catch (error) { console.error(`Failed to import extension '${name}':`, error) throw new Error(`Failed to import extension '${name}'`) } } return Object.keys(extensions).length > 0 ? extensions : undefined } private async initializeDatabase(): Promise { console.log(`Initializing PGLite with database: ${this.config.dbPath}`) console.log(`Debug level: ${this.config.debugLevel}`) const extensions = await this.importExtensions() this.db = new PGlite(this.config.dbPath, { debug: this.config.debugLevel, extensions, }) await this.db.waitReady console.log('PGlite database initialized') } private setupServerEventHandlers(): void { if (!this.server || !this.subprocessManager) { throw new Error('Server or subprocess manager not initialized') } this.server.addEventListener('listening', (event) => { const detail = ( event as CustomEvent<{ port: number; host: string } | { host: string }> ).detail console.log(`PGLiteSocketServer listening on ${JSON.stringify(detail)}`) // Run the command after server starts listening if (this.config.runCommand && this.subprocessManager) { const databaseUrl = this.createDatabaseUrl() this.subprocessManager.spawn( this.config.runCommand, databaseUrl, this.config.includeDatabaseUrl, ) } }) this.server.addEventListener('connection', (event) => { const { clientAddress, clientPort } = ( event as CustomEvent<{ clientAddress: string; clientPort: number }> ).detail console.log(`Client connected from ${clientAddress}:${clientPort}`) }) this.server.addEventListener('error', (event) => { const error = (event as CustomEvent).detail console.error('Socket server error:', error) }) } private setupSignalHandlers(): void { process.on('SIGINT', () => this.shutdown()) process.on('SIGTERM', () => this.shutdown()) } async start(): Promise { try { // Initialize database await this.initializeDatabase() if (!this.db) { throw new Error('Database initialization failed') } // Create and setup the socket server this.server = new PGLiteSocketServer({ db: this.db, port: this.config.port, host: this.config.host, path: this.config.path, inspect: this.config.debugLevel > 0, maxConnections: this.config.maxConnections, }) // Create subprocess manager this.subprocessManager = new SubprocessManager((exitCode) => { this.shutdown(exitCode) }) // Setup event handlers this.setupServerEventHandlers() this.setupSignalHandlers() // Start the server await this.server.start() } catch (error) { console.error('Failed to start PGLiteSocketServer:', error) throw error } } async shutdown(exitCode: number = 0): Promise { console.log('\nShutting down PGLiteSocketServer...') // Terminate subprocess if running if (this.subprocessManager) { this.subprocessManager.terminate(this.config.shutdownTimeout) } // Stop server if (this.server) { await this.server.stop() } // Close database if (this.db) { await this.db.close() } console.log('Server stopped') process.exit(exitCode) } } class SubprocessManager { private childProcess: ChildProcess | null = null private onExit: (code: number) => void constructor(onExit: (code: number) => void) { this.onExit = onExit } get process(): ChildProcess | null { return this.childProcess } spawn( command: string, databaseUrl: string, includeDatabaseUrl: boolean, ): void { console.log(`Running command: ${command}`) // Prepare environment variables const env = { ...process.env } if (includeDatabaseUrl) { env.DATABASE_URL = databaseUrl console.log(`Setting DATABASE_URL=${databaseUrl}`) } // Parse and spawn the command const commandParts = command.trim().split(/\s+/) this.childProcess = spawn(commandParts[0], commandParts.slice(1), { env, stdio: 'inherit', }) this.childProcess.on('error', (error) => { console.error('Error running command:', error) // If subprocess fails to start, shutdown the server console.log('Subprocess failed to start, shutting down...') this.onExit(1) }) this.childProcess.on('close', (code) => { console.log(`Command exited with code ${code}`) this.childProcess = null // If child process exits with non-zero code, notify parent if (code !== null && code !== 0) { console.log( `Child process failed with exit code ${code}, shutting down...`, ) this.onExit(code) } }) } terminate(timeout: number): void { if (this.childProcess) { console.log('Terminating child process...') this.childProcess.kill('SIGTERM') // Give it a moment to exit gracefully, then force kill if needed setTimeout(() => { if (this.childProcess && !this.childProcess.killed) { console.log('Force killing child process...') this.childProcess.kill('SIGKILL') } }, timeout) } } } // Main execution async function main() { // Show help and exit if requested if (args.values.help) { console.log(help) process.exit(0) } try { const config = PGLiteServerRunner.parseConfig() const serverRunner = new PGLiteServerRunner(config) await serverRunner.start() } catch (error) { console.error('Unhandled error:', error) process.exit(1) } } // Run the main function main() ================================================ FILE: packages/pglite-socket/tests/index.test.ts ================================================ import { describe, it, expect, beforeEach, afterEach, vi, beforeAll, afterAll, } from 'vitest' import { PGlite } from '@electric-sql/pglite' import { PGLiteSocketHandler, PGLiteSocketServer } from '../src' import { Socket, createConnection } from 'net' import { existsSync } from 'fs' import { unlink } from 'fs/promises' // Mock timers for testing timeouts beforeAll(() => { vi.useFakeTimers() }) afterAll(() => { vi.useRealTimers() }) async function testSocket( fn: (socketOptions: { host?: string port?: number path?: string }) => Promise, ) { describe('TCP socket server', async () => { await fn({ host: '127.0.0.1', port: 5433 }) }) describe('unix socket server', async () => { await fn({ path: '/tmp/.s.PGSQL.5432' }) }) } // Create a mock Socket for testing const createMockSocket = () => { const eventHandlers: Record void>> = {} const mockSocket = { // Socket methods we need for testing removeAllListeners: vi.fn(), end: vi.fn(), destroy: vi.fn(), write: vi.fn(), writable: true, remoteAddress: '127.0.0.1', remotePort: 12345, setNoDelay: vi.fn(), // Mock on method with tracking of handlers on: vi .fn() .mockImplementation((event: string, callback: (data: any) => void) => { if (!eventHandlers[event]) { eventHandlers[event] = [] } eventHandlers[event].push(callback) return mockSocket }), // Store event handlers for testing eventHandlers, // Helper to emit events emit(event: string, data: any) { if (eventHandlers[event]) { eventHandlers[event].forEach((handler) => handler(data)) } }, } return mockSocket as unknown as Socket } // Create a mock QueryQueueManager for testing const createMockQueryQueue = () => { return { enqueue: vi.fn().mockResolvedValue(new Uint8Array(0)), clearQueueForHandler: vi.fn(), clearTransactionIfNeeded: vi.fn(), getQueueLength: vi.fn().mockReturnValue(0), } } describe('PGLiteSocketHandler', () => { let handler: PGLiteSocketHandler let mockSocket: ReturnType & { eventHandlers: Record void>> } let mockQueryQueue: ReturnType beforeEach(async () => { // Create a mock query queue for testing mockQueryQueue = createMockQueryQueue() handler = new PGLiteSocketHandler({ queryQueue: mockQueryQueue as any }) mockSocket = createMockSocket() as any }) afterEach(async () => { // Ensure handler is detached if (handler?.isAttached) { await handler.detach(true) } }) it('should attach to a socket', async () => { // Attach mock socket to handler await handler.attach(mockSocket) // Check that the socket is attached expect(handler.isAttached).toBe(true) expect(mockSocket.on).toHaveBeenCalledWith('data', expect.any(Function)) expect(mockSocket.on).toHaveBeenCalledWith('error', expect.any(Function)) expect(mockSocket.on).toHaveBeenCalledWith('close', expect.any(Function)) }) it('should detach from a socket', async () => { // First attach await handler.attach(mockSocket) expect(handler.isAttached).toBe(true) // Then detach await handler.detach(false) expect(handler.isAttached).toBe(false) expect(mockSocket.removeAllListeners).toHaveBeenCalled() }) it('should close socket when detaching with close option', async () => { // Attach mock socket to handler await handler.attach(mockSocket) // Detach with close option await handler.detach(true) expect(handler.isAttached).toBe(false) expect(mockSocket.end).toHaveBeenCalled() }) it('should reject attaching multiple sockets', async () => { // Attach first socket await handler.attach(mockSocket) // Trying to attach another socket should throw an error const anotherMockSocket = createMockSocket() await expect(handler.attach(anotherMockSocket)).rejects.toThrow( 'Socket already attached', ) }) it('should emit error event when socket has error', async () => { // Set up error listener const errorHandler = vi.fn() handler.addEventListener('error', errorHandler) // Attach socket await handler.attach(mockSocket) // Mock the event handler logic directly instead of triggering actual error handlers const customEvent = new CustomEvent('error', { detail: { code: 'MOCK_ERROR', message: 'Test socket error' }, }) handler.dispatchEvent(customEvent) // Verify error handler was called expect(errorHandler).toHaveBeenCalled() }) it('should emit close event when socket closes', async () => { // Set up close listener const closeHandler = vi.fn() handler.addEventListener('close', closeHandler) // Attach socket await handler.attach(mockSocket) // Mock the event handler logic directly instead of triggering actual socket handlers const customEvent = new CustomEvent('close') handler.dispatchEvent(customEvent) // Verify close handler was called expect(closeHandler).toHaveBeenCalled() }) }) testSocket(async (connOptions) => { describe('PGLiteSocketServer', () => { let db: PGlite let server: PGLiteSocketServer beforeEach(async () => { // Create a PGlite instance for testing db = await PGlite.create() if (connOptions.path) { if (existsSync(connOptions.path)) { try { await unlink(connOptions.path) console.log(`Removed old socket at ${connOptions.path}`) } catch (err) { console.log('') } } } }) afterEach(async () => { // Stop server if running try { await server?.stop() } catch (e) { // Ignore errors during cleanup } // Close database await db.close() }) it('should start and stop server', async () => { // Create server server = new PGLiteSocketServer({ db, host: connOptions.host, port: connOptions.port, path: connOptions.path, }) // Start server await server.start() // Try to connect to confirm server is running let client if (connOptions.path) { // unix socket client = createConnection({ path: connOptions.path }) } else { if (connOptions.port) { // TCP socket client = createConnection({ port: connOptions.port, host: connOptions.host, }) } else { throw new Error( 'need to specify connOptions.path or connOptions.port', ) } } client.on('error', () => { // Ignore connection errors during test }) await new Promise((resolve) => { client.on('connect', () => { client.end() resolve() }) // Set timeout to resolve in case connection fails setTimeout(resolve, 100) }) // Stop server await server.stop() // Try to connect again - should fail await expect( new Promise((resolve, reject) => { let failClient if (connOptions.path) { // unix socket failClient = createConnection({ path: connOptions.path }) } else { if (connOptions.port) { // TCP socket failClient = createConnection({ port: connOptions.port, host: connOptions.host, }) } else { throw new Error( 'need to specify connOptions.path or connOptions.port', ) } } failClient.on('error', () => { // Expected error - connection should fail resolve() }) failClient.on('connect', () => { failClient.end() reject(new Error('Connection should have failed')) }) // Set timeout to resolve in case no events fire setTimeout(resolve, 100) }), ).resolves.not.toThrow() }) describe('Connection multiplexing', () => { beforeEach(() => { // Create a server for testing server = new PGLiteSocketServer({ db, host: connOptions.host, port: connOptions.port, path: connOptions.path, maxConnections: 100, }) }) it('should create a handler for a new connection', async () => { await server.start() // Create mock socket const socket1 = createMockSocket() // Setup event listener const connectionHandler = vi.fn() server.addEventListener('connection', connectionHandler) // Handle connection await (server as any).handleConnection(socket1) // Verify handler was created and tracked expect((server as any).handlers.size).toBe(1) expect(connectionHandler).toHaveBeenCalled() }) it('should handle multiple simultaneous connections', async () => { await server.start() // Setup event listeners const connectionHandler = vi.fn() server.addEventListener('connection', connectionHandler) // Create mock sockets const socket1 = createMockSocket() const socket2 = createMockSocket() const socket3 = createMockSocket() // Handle connections - all should be accepted simultaneously await (server as any).handleConnection(socket1) await (server as any).handleConnection(socket2) await (server as any).handleConnection(socket3) // All three sockets should have handlers (multiplexed) expect((server as any).handlers.size).toBe(3) expect(connectionHandler).toHaveBeenCalledTimes(3) // None should be closed - they're all active expect(socket1.end).not.toHaveBeenCalled() expect(socket2.end).not.toHaveBeenCalled() expect(socket3.end).not.toHaveBeenCalled() }) it('should remove handler when connection closes', async () => { await server.start() // Create mock sockets const socket1 = createMockSocket() const socket2 = createMockSocket() // Handle connections await (server as any).handleConnection(socket1) await (server as any).handleConnection(socket2) // Both should be tracked expect((server as any).handlers.size).toBe(2) // Get the first handler and simulate close const handlers = Array.from((server as any).handlers) const handler1 = handlers[0] as PGLiteSocketHandler handler1.dispatchEvent(new CustomEvent('close')) // First handler should be removed, second still active expect((server as any).handlers.size).toBe(1) }) it('should reject connections when max connections reached', async () => { // Create server with low max connections server = new PGLiteSocketServer({ db, host: connOptions.host, port: connOptions.port, path: connOptions.path, maxConnections: 2, }) await server.start() // Create mock sockets const socket1 = createMockSocket() const socket2 = createMockSocket() const socket3 = createMockSocket() // Handle first two connections - should succeed await (server as any).handleConnection(socket1) await (server as any).handleConnection(socket2) expect((server as any).handlers.size).toBe(2) // Third connection should be rejected await (server as any).handleConnection(socket3) // Third socket should be closed expect(socket3.end).toHaveBeenCalled() expect((server as any).handlers.size).toBe(2) }) it('should provide stats about active connections', async () => { await server.start() // Create mock sockets const socket1 = createMockSocket() const socket2 = createMockSocket() // Check initial stats (maxConnections is set to 100 in beforeEach) let stats = server.getStats() expect(stats.activeConnections).toBe(0) expect(stats.maxConnections).toBe(100) // Handle connections await (server as any).handleConnection(socket1) await (server as any).handleConnection(socket2) // Check updated stats stats = server.getStats() expect(stats.activeConnections).toBe(2) }) it('should clean up all handlers when stopping the server', async () => { await server.start() // Create mock sockets const socket1 = createMockSocket() const socket2 = createMockSocket() const socket3 = createMockSocket() // Handle connections await (server as any).handleConnection(socket1) await (server as any).handleConnection(socket2) await (server as any).handleConnection(socket3) expect((server as any).handlers.size).toBe(3) // Stop the server await server.stop() // All connections should be closed expect(socket1.end).toHaveBeenCalled() expect(socket2.end).toHaveBeenCalled() expect(socket3.end).toHaveBeenCalled() // Handlers should be cleared expect((server as any).handlers.size).toBe(0) }) it('should start server with OS-assigned port when port is 0', async () => { server = new PGLiteSocketServer({ db, host: connOptions.host, port: 0, // Let OS assign port }) await server.start() const assignedPort = (server as any).port expect(assignedPort).toBeGreaterThan(1024) // Try to connect to confirm server is running const client = createConnection({ port: assignedPort, host: connOptions.host, }) await new Promise((resolve, reject) => { client.on('error', () => { reject(new Error('Connection should have failed')) }) client.on('connect', () => { client.end() resolve() }) setTimeout(resolve, 100) }) await server.stop() }) }) }) }) ================================================ FILE: packages/pglite-socket/tests/query-with-node-pg.test.ts ================================================ import { describe, it, expect, beforeAll, afterAll, beforeEach, afterEach, } from 'vitest' import { Client } from 'pg' import { PGlite } from '@electric-sql/pglite' import { PGLiteSocketServer } from '../src' import { spawn, ChildProcess } from 'node:child_process' import { fileURLToPath } from 'node:url' import { dirname, join } from 'node:path' import fs from 'fs' const __filename = fileURLToPath(import.meta.url) const __dirname = dirname(__filename) /** * Debug configuration for testing * * To test against a real PostgreSQL server: * - Set DEBUG_TESTS=true as an environment variable * - Optionally set DEBUG_TESTS_REAL_SERVER with a connection URL (defaults to localhost) * * Example: * DEBUG_TESTS=true DEBUG_TESTS_REAL_SERVER=postgres://user:pass@host:port/db npm vitest ./tests/query-with-node-pg.test.ts */ const DEBUG_TESTS = process.env.DEBUG_TESTS === 'true' const DEBUG_TESTS_REAL_SERVER = process.env.DEBUG_TESTS_REAL_SERVER || 'postgres://postgres:postgres@localhost:5432/postgres' const TEST_PORT = 5434 describe(`PGLite Socket Server`, () => { describe('with node-pg client', () => { let db: PGlite let server: PGLiteSocketServer let client: typeof Client.prototype let connectionConfig: any beforeAll(async () => { if (DEBUG_TESTS) { console.log('TESTING WITH REAL POSTGRESQL SERVER') console.log(`Connection URL: ${DEBUG_TESTS_REAL_SERVER}`) } else { console.log('TESTING WITH PGLITE SERVER') // Create a PGlite instance db = await PGlite.create() // Wait for database to be ready await db.waitReady console.log('PGLite database ready') // Create and start the server with explicit host server = new PGLiteSocketServer({ db, port: TEST_PORT, host: '127.0.0.1', maxConnections: 100, }) // Add event listeners for debugging server.addEventListener('error', (event) => { console.error('Socket server error:', (event as CustomEvent).detail) }) server.addEventListener('connection', (event) => { console.log( 'Socket connection received:', (event as CustomEvent).detail, ) }) await server.start() console.log(`PGLite Socket Server started on port ${TEST_PORT}`) connectionConfig = { host: '127.0.0.1', port: TEST_PORT, database: 'postgres', user: 'postgres', password: 'postgres', // Connection timeout in milliseconds connectionTimeoutMillis: 10000, // Query timeout in milliseconds statement_timeout: 5000, } } }) afterAll(async () => { if (!DEBUG_TESTS) { // Stop server if running if (server) { await server.stop() console.log('PGLite Socket Server stopped') } // Close database if (db) { await db.close() console.log('PGLite database closed') } } }) beforeEach(async () => { // Create pg client instance before each test if (DEBUG_TESTS) { // Direct connection to real PostgreSQL server using URL client = new Client({ connectionString: DEBUG_TESTS_REAL_SERVER, connectionTimeoutMillis: 10000, statement_timeout: 5000, }) } else { // Connection to PGLite Socket Server client = new Client(connectionConfig) } // Connect the client await client.connect() }) afterEach(async () => { // Clean up any tables created in tests try { await client.query('DROP TABLE IF EXISTS test_users') } catch (e) { console.error('Error cleaning up tables:', e) } // Disconnect the client after each test if (client) { await client.end() } }) it('should execute a basic SELECT query', async () => { const result = await client.query('SELECT 1 as one') expect(result.rows[0].one).toBe(1) }) it('should create a table', async () => { await client.query(` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, email TEXT, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ) `) // Verify table exists by querying the schema const tableCheck = await client.query(` SELECT table_name FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'test_users' `) expect(tableCheck.rows.length).toBe(1) expect(tableCheck.rows[0].table_name).toBe('test_users') }) it('should insert rows into a table', async () => { // Create table await client.query(` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, email TEXT ) `) // Insert data const insertResult = await client.query(` INSERT INTO test_users (name, email) VALUES ('Alice', 'alice@example.com'), ('Bob', 'bob@example.com') RETURNING * `) expect(insertResult.rows.length).toBe(2) expect(insertResult.rows[0].name).toBe('Alice') expect(insertResult.rows[1].name).toBe('Bob') // Verify data is there const count = await client.query( 'SELECT COUNT(*)::int as count FROM test_users', ) expect(count.rows[0].count).toBe(2) }) it('should update rows in a table', async () => { // Create and populate table await client.query(` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, email TEXT ) `) await client.query(` INSERT INTO test_users (name, email) VALUES ('Alice', 'alice@example.com') `) // Update const updateResult = await client.query(` UPDATE test_users SET email = 'alice.new@example.com' WHERE name = 'Alice' RETURNING * `) expect(updateResult.rows.length).toBe(1) expect(updateResult.rows[0].email).toBe('alice.new@example.com') }) it('should delete rows from a table', async () => { // Create and populate table await client.query(` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, email TEXT ) `) await client.query(` INSERT INTO test_users (name, email) VALUES ('Alice', 'alice@example.com'), ('Bob', 'bob@example.com') `) // Delete const deleteResult = await client.query(` DELETE FROM test_users WHERE name = 'Alice' RETURNING * `) expect(deleteResult.rows.length).toBe(1) expect(deleteResult.rows[0].name).toBe('Alice') // Verify only Bob remains const remaining = await client.query('SELECT * FROM test_users') expect(remaining.rows.length).toBe(1) expect(remaining.rows[0].name).toBe('Bob') }) it('should execute operations in a transaction', async () => { // Create table await client.query(` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, balance INTEGER DEFAULT 0 ) `) // Insert initial data await client.query(` INSERT INTO test_users (name, balance) VALUES ('Alice', 100), ('Bob', 50) `) // Start a transaction and perform operations await client.query('BEGIN') try { // Deduct from Alice await client.query(` UPDATE test_users SET balance = balance - 30 WHERE name = 'Alice' `) // Add to Bob await client.query(` UPDATE test_users SET balance = balance + 30 WHERE name = 'Bob' `) // Commit the transaction await client.query('COMMIT') } catch (error) { // Rollback on error await client.query('ROLLBACK') throw error } // Verify both operations succeeded const users = await client.query( 'SELECT name, balance FROM test_users ORDER BY name', ) expect(users.rows.length).toBe(2) expect(users.rows[0].name).toBe('Alice') expect(users.rows[0].balance).toBe(70) expect(users.rows[1].name).toBe('Bob') expect(users.rows[1].balance).toBe(80) }) it('should rollback a transaction on ROLLBACK', async () => { // Create table await client.query(` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, balance INTEGER DEFAULT 0 ) `) // Insert initial data await client.query(` INSERT INTO test_users (name, balance) VALUES ('Alice', 100), ('Bob', 50) `) // Get initial balance const initialResult = await client.query(` SELECT balance FROM test_users WHERE name = 'Alice' `) const initialBalance = initialResult.rows[0].balance // Start a transaction await client.query('BEGIN') try { // Deduct from Alice await client.query(` UPDATE test_users SET balance = balance - 30 WHERE name = 'Alice' `) // Verify balance is changed within transaction const midResult = await client.query(` SELECT balance FROM test_users WHERE name = 'Alice' `) expect(midResult.rows[0].balance).toBe(70) // Explicitly roll back (cancel) the transaction await client.query('ROLLBACK') } catch (error) { await client.query('ROLLBACK') throw error } // Verify balance wasn't changed after rollback const finalResult = await client.query(` SELECT balance FROM test_users WHERE name = 'Alice' `) expect(finalResult.rows[0].balance).toBe(initialBalance) }) it('should rollback a transaction on error', async () => { // Create table await client.query(` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, balance INTEGER DEFAULT 0 ) `) // Insert initial data await client.query(` INSERT INTO test_users (name, balance) VALUES ('Alice', 100), ('Bob', 50) `) try { // Start a transaction await client.query('BEGIN') // Deduct from Alice await client.query(` UPDATE test_users SET balance = balance - 30 WHERE name = 'Alice' `) // This will trigger an error await client.query(` UPDATE test_users_nonexistent SET balance = balance + 30 WHERE name = 'Bob' `) // Should never get here await client.query('COMMIT') } catch (error) { // Expected to fail - rollback transaction await client.query('ROLLBACK').catch(() => { // If the client connection is in a bad state, we just ignore // the rollback error }) } // Verify Alice's balance was not changed due to rollback const users = await client.query( 'SELECT name, balance FROM test_users ORDER BY name', ) expect(users.rows.length).toBe(2) expect(users.rows[0].name).toBe('Alice') expect(users.rows[0].balance).toBe(100) // Should remain 100 after rollback }) it('should handle a syntax error', async () => { // Expect syntax error let errorMessage = '' try { await client.query('THIS IS NOT VALID SQL;') } catch (error) { errorMessage = (error as Error).message } expect(errorMessage).not.toBe('') expect(errorMessage.toLowerCase()).toContain('syntax error') }) it('should support cursor-based pagination', async () => { // Create a test table with many rows await client.query(` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, value INTEGER ) `) // Insert 100 rows using generate_series (server-side generation) await client.query(` INSERT INTO test_users (name, value) SELECT 'User ' || i as name, i as value FROM generate_series(1, 100) as i `) // Use a cursor to read data in smaller chunks const chunkSize = 10 let results: any[] = [] let page = 0 try { // Begin transaction await client.query('BEGIN') // Declare a cursor await client.query( 'DECLARE user_cursor CURSOR FOR SELECT * FROM test_users ORDER BY id', ) let hasMoreData = true while (hasMoreData) { // Fetch a batch of results const chunk = await client.query('FETCH 10 FROM user_cursor') // If no rows returned, we're done if (chunk.rows.length === 0) { hasMoreData = false continue } // Process this chunk page++ // Add to our results array results = [...results, ...chunk.rows] // Verify each chunk has correct data (except possibly the last one) if (chunk.rows.length === chunkSize) { expect(chunk.rows.length).toBe(chunkSize) expect(chunk.rows[0].id).toBe((page - 1) * chunkSize + 1) } } // Close the cursor await client.query('CLOSE user_cursor') // Commit transaction await client.query('COMMIT') } catch (error) { await client.query('ROLLBACK') throw error } // Verify we got all 100 records expect(results.length).toBe(100) expect(results[0].name).toBe('User 1') expect(results[99].name).toBe('User 100') // Verify we received the expected number of pages expect(page).toBe(Math.ceil(100 / chunkSize)) }) it('should support LISTEN/NOTIFY for pub/sub messaging', async () => { // Set up listener for notifications let receivedPayload = '' const notificationReceived = new Promise((resolve) => { client.on('notification', (msg) => { receivedPayload = msg.payload || '' resolve() }) }) // Start listening await client.query('LISTEN test_channel') // Small delay to ensure listener is set up await new Promise((resolve) => setTimeout(resolve, 100)) // Send a notification await client.query("NOTIFY test_channel, 'Hello from PGlite!'") // Wait for the notification to be received with an appropriate timeout const timeoutPromise = new Promise((_, reject) => { setTimeout(() => reject(new Error('Notification timeout')), 2000) }) await Promise.race([notificationReceived, timeoutPromise]).catch( (error) => { console.error('Notification error:', error) }, ) // Verify the notification was received with the correct payload expect(receivedPayload).toBe('Hello from PGlite!') }) it('should handle large queries that split across TCP packets', async () => { // Create a table await client.query(`CREATE TABLE test_users (id SERIAL, data TEXT)`) // Generate >64KB payload to force TCP fragmentation const largeData = 'x'.repeat(100_000) // 100KB string // Insert large data const result = await client.query(` INSERT INTO test_users (data) VALUES ('${largeData}') RETURNING * `) expect(result.rows[0].data).toBe(largeData) }) it('should handle concurrent clients with interleaved transaction and query', async () => { // Create a second client connecting to the same server let client2: typeof Client.prototype if (DEBUG_TESTS) { client2 = new Client({ connectionString: DEBUG_TESTS_REAL_SERVER, connectionTimeoutMillis: 10000, statement_timeout: 5000, }) } else { client2 = new Client(connectionConfig) } await client2.connect() try { // Client 1 starts a transaction (don't await yet) const beginResult = await client.query('BEGIN') // Client 2 makes a simple SELECT 1 query (don't await yet) const selectPromise = client2.query('SELECT 999999 as one') // Small delay to ensure SELECT is sent before ROLLBACK await new Promise((r) => setTimeout(r, 10)) // Client 1 rolls back the transaction (don't await yet) const rollbackResult = await client.query('ROLLBACK') const selectResult = await selectPromise // Verify results expect(beginResult.command).toBe('BEGIN') expect(selectResult.rows[0].one).toBe(999999) expect(rollbackResult.command).toBe('ROLLBACK') } finally { await client2.end() } }, 30000) it('should process pending queries when transaction owner disconnects', async () => { // Create a second client connecting to the same server let client2: typeof Client.prototype if (DEBUG_TESTS) { client2 = new Client({ connectionString: DEBUG_TESTS_REAL_SERVER, connectionTimeoutMillis: 10000, statement_timeout: 5000, }) } else { client2 = new Client(connectionConfig) } await client2.connect() // Suppress the expected "Connection terminated unexpectedly" error client2.on('error', () => { // Expected when we destroy the connection }) try { // Client starts a transaction const beginResult = await client2.query('BEGIN') expect(beginResult.command).toBe('BEGIN') // Client 2 sends a query (will be blocked because client is in transaction) const selectPromise = client.query('SELECT 123456 as val') // Small delay to ensure SELECT is enqueued await new Promise((r) => setTimeout(r, 10)) // Client abruptly disconnects (simulating connection abort) // This should trigger clearTransactionIfNeeded which rolls back // the transaction and processes pending queries ;(client2 as any).connection.stream.destroy() // Client 2's query should complete successfully after transaction is cleared const selectResult = await selectPromise expect(selectResult.rows[0].val).toBe(123456) } catch { expect(false, 'Should not happen') } }, 30000) it('interleaved transactions should work', async () => { const bob = client // table that will be accessed by both clients await client.query(` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, email TEXT, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ) `) // Create a second bob connecting to the same server let alice: typeof Client.prototype if (DEBUG_TESTS) { alice = new Client({ connectionString: DEBUG_TESTS_REAL_SERVER, connectionTimeoutMillis: 10000, statement_timeout: 5000, }) } else { alice = new Client(connectionConfig) } await alice.connect() alice.on('error', () => { // Suppress the expected "Connection terminated unexpectedly" error }) // Client starts a transaction const aliceBegin = await alice.query('BEGIN') expect(aliceBegin.command).toBe('BEGIN') // Client 2 begins its own transaction const bobBegin = bob.query('BEGIN') // Small delay to ensure client2.BEGIN is enqueued await new Promise((r) => setTimeout(r, 10)) const aliceInsertPromise = alice.query(` INSERT INTO test_users (name, email) VALUES ('Alice', 'alice@example.com') RETURNING * `) const bobInsertPromise = bob.query(` INSERT INTO test_users (name, email) VALUES ('Bob', 'bob@example.com') RETURNING * `) // Small delay to ensure both inserts are enqueued await new Promise((r) => setTimeout(r, 10)) // bob commits const bobCommit = bob.query('COMMIT') // alice rolls back const aliceRollback = alice.query('ROLLBACK') await Promise.all([ bobBegin, aliceInsertPromise, bobInsertPromise, aliceRollback, bobCommit, ]) // Verify only Bob was commited const testUsers = await bob.query('SELECT * FROM test_users') expect(testUsers.rows.length).toBe(1) expect(testUsers.rows[0].name).toBe('Bob') }, 30000) it('interleaved transactions should work when one client crashes', async () => { const bob = client // table that will be accessed by both clients await bob.query(` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, email TEXT, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ) `) // Create a second client connecting to the same server let alice: typeof Client.prototype if (DEBUG_TESTS) { alice = new Client({ connectionString: DEBUG_TESTS_REAL_SERVER, connectionTimeoutMillis: 10000, statement_timeout: 5000, }) } else { alice = new Client(connectionConfig) } await alice.connect() // Suppress the expected "Connection terminated unexpectedly" error alice.on('error', () => { // Expected when we destroy the connection }) try { // alice starts a transaction const aliceBegin = await alice.query('BEGIN') expect(aliceBegin.command).toBe('BEGIN') // bob begins its own transaction const bobBegin = bob.query('BEGIN') // Small delay to ensure client2.BEGIN is enqueued await new Promise((r) => setTimeout(r, 10)) // alice inserts data alice.query(` INSERT INTO test_users (name, email) VALUES ('Alice', 'alice@example.com') RETURNING * `) // client inserts data const bobInsert = bob.query(` INSERT INTO test_users (name, email) VALUES ('Bob', 'bob@example.com') RETURNING * `) // Small delay to ensure both inserts are enqueued await new Promise((r) => setTimeout(r, 10)) // Client2 abruptly disconnects (simulating connection abort) // This should trigger clearTransactionIfNeeded which rolls back // the transaction and processes pending queries ;(alice as any).connection.stream.destroy() // bob commits const bobCommit = bob.query('COMMIT') await Promise.all([bobBegin, bobInsert, bobCommit]) // Verify only Bob was commited const selectResult = await bob.query('SELECT * FROM test_users') expect(selectResult.rows.length).toBe(1) expect(selectResult.rows[0].name).toBe('Bob') } catch { // swallow } }, 30000) }) describe('with extensions via CLI', () => { const UNIX_SOCKET_DIR_PATH = `/tmp/${Date.now()}-${Math.random().toString(36).slice(2, 8)}` fs.mkdirSync(UNIX_SOCKET_DIR_PATH) const UNIX_SOCKET_PATH = `${UNIX_SOCKET_DIR_PATH}/.s.PGSQL.5432` let serverProcess: ChildProcess | null = null let client: typeof Client.prototype beforeAll(async () => { // Start the server with extensions via CLI using tsx for dev or node for dist const serverScript = join(__dirname, '../src/scripts/server.ts') serverProcess = spawn( 'npx', [ 'tsx', serverScript, '--path', UNIX_SOCKET_PATH, '--extensions', 'vector,pg_uuidv7,@electric-sql/pglite/pg_hashids:pg_hashids', ], { stdio: ['ignore', 'pipe', 'pipe'], }, ) // Wait for server to be ready by checking for "listening" message await new Promise((resolve, reject) => { const timeout = setTimeout(() => { reject(new Error('Server startup timeout')) }, 30000) const onData = (data: Buffer) => { const output = data.toString() if (output.includes('listening')) { clearTimeout(timeout) resolve() } } serverProcess!.stdout?.on('data', onData) serverProcess!.stderr?.on('data', (data) => { console.error('Server stderr:', data.toString()) }) serverProcess!.on('error', (err) => { clearTimeout(timeout) reject(err) }) serverProcess!.on('exit', (code) => { if (code !== 0 && code !== null) { clearTimeout(timeout) reject(new Error(`Server exited with code ${code}`)) } }) }) console.log('Server with extensions started') client = new Client({ host: UNIX_SOCKET_DIR_PATH, database: 'postgres', user: 'postgres', password: 'postgres', connectionTimeoutMillis: 10000, }) await client.connect() }) afterAll(async () => { if (client) { await client.end().catch(() => {}) } if (serverProcess) { serverProcess.kill('SIGTERM') await new Promise((resolve) => { serverProcess!.on('exit', () => resolve()) setTimeout(resolve, 2000) // Force resolve after 2s }) } }) it('should load and use vector extension', async () => { // Create the extension await client.query('CREATE EXTENSION IF NOT EXISTS vector') // Verify extension is loaded const extCheck = await client.query(` SELECT extname FROM pg_extension WHERE extname = 'vector' `) expect(extCheck.rows).toHaveLength(1) expect(extCheck.rows[0].extname).toBe('vector') // Create a table with vector column await client.query(` CREATE TABLE test_vectors ( id SERIAL PRIMARY KEY, name TEXT, vec vector(3) ) `) // Insert test data await client.query(` INSERT INTO test_vectors (name, vec) VALUES ('test1', '[1,2,3]'), ('test2', '[4,5,6]'), ('test3', '[7,8,9]') `) // Query with vector distance const result = await client.query(` SELECT name, vec, vec <-> '[3,1,2]' AS distance FROM test_vectors ORDER BY distance `) expect(result.rows).toHaveLength(3) expect(result.rows[0].name).toBe('test1') expect(result.rows[0].vec).toBe('[1,2,3]') expect(parseFloat(result.rows[0].distance)).toBeCloseTo(2.449, 2) }) it('should load and use pg_uuidv7 extension', async () => { // Create the extension await client.query('CREATE EXTENSION IF NOT EXISTS pg_uuidv7') // Verify extension is loaded const extCheck = await client.query(` SELECT extname FROM pg_extension WHERE extname = 'pg_uuidv7' `) expect(extCheck.rows).toHaveLength(1) expect(extCheck.rows[0].extname).toBe('pg_uuidv7') // Generate a UUIDv7 const result = await client.query('SELECT uuid_generate_v7() as uuid') expect(result.rows[0].uuid).toHaveLength(36) // Test uuid_v7_to_timestamptz function const tsResult = await client.query(` SELECT uuid_v7_to_timestamptz('018570bb-4a7d-7c7e-8df4-6d47afd8c8fc') as ts `) const timestamp = new Date(tsResult.rows[0].ts) expect(timestamp.toISOString()).toBe('2023-01-02T04:26:40.637Z') }) it('should load and use pg_hashids extension from npm package path', async () => { // Create the extension await client.query('CREATE EXTENSION IF NOT EXISTS pg_hashids') // Verify extension is loaded const extCheck = await client.query(` SELECT extname FROM pg_extension WHERE extname = 'pg_hashids' `) expect(extCheck.rows).toHaveLength(1) expect(extCheck.rows[0].extname).toBe('pg_hashids') // Test id_encode function const result = await client.query(` SELECT id_encode(1234567, 'salt', 10, 'abcdefghijABCDEFGHIJ1234567890') as hash `) expect(result.rows[0].hash).toBeTruthy() expect(typeof result.rows[0].hash).toBe('string') // Test id_decode function (round-trip) const hash = result.rows[0].hash const decodeResult = await client.query(` SELECT id_decode('${hash}', 'salt', 10, 'abcdefghijABCDEFGHIJ1234567890') as id `) expect(decodeResult.rows[0].id[0]).toBe('1234567') }) }) }) ================================================ FILE: packages/pglite-socket/tests/query-with-postgres-js.test.ts ================================================ import { describe, it, expect, beforeAll, afterAll, beforeEach, afterEach, } from 'vitest' import postgres from 'postgres' import { PGlite } from '@electric-sql/pglite' import { PGLiteSocketServer } from '../src' import { spawn, ChildProcess } from 'node:child_process' import { fileURLToPath } from 'node:url' import { dirname, join } from 'node:path' import fs from 'fs' const __filename = fileURLToPath(import.meta.url) const __dirname = dirname(__filename) /** * Debug configuration for testing * * To test against a real PostgreSQL server: * - Set DEBUG_TESTS=true as an environment variable * - Optionally set DEBUG_TESTS_REAL_SERVER with a connection URL (defaults to localhost) * * Example: * DEBUG_TESTS=true DEBUG_TESTS_REAL_SERVER=postgres://user:pass@host:port/db npm vitest ./tests/query-with-postgres-js.test.ts */ const DEBUG_LOCAL = process.env.DEBUG_LOCAL === 'true' const DEBUG_TESTS = process.env.DEBUG_TESTS === 'true' const DEBUG_TESTS_REAL_SERVER = process.env.DEBUG_TESTS_REAL_SERVER || 'postgres://postgres:postgres@localhost:5432/postgres' const TEST_PORT = 5434 describe(`PGLite Socket Server`, () => { describe('with postgres.js client', () => { let db: PGlite let server: PGLiteSocketServer let sql: ReturnType let connectionConfig: any beforeAll(async () => { if (DEBUG_TESTS) { console.log('TESTING WITH REAL POSTGRESQL SERVER') console.log(`Connection URL: ${DEBUG_TESTS_REAL_SERVER}`) } else { console.log('TESTING WITH PGLITE SERVER') // Create a PGlite instance if (DEBUG_LOCAL) db = await PGlite.create({ debug: '1' }) else db = await PGlite.create() // Wait for database to be ready await db.waitReady console.log('PGLite database ready') // Create and start the server with explicit host server = new PGLiteSocketServer({ db, port: TEST_PORT, host: '127.0.0.1', inspect: DEBUG_TESTS || DEBUG_LOCAL, }) // Add event listeners for debugging server.addEventListener('error', (event) => { console.error('Socket server error:', (event as CustomEvent).detail) }) server.addEventListener('connection', (event) => { console.log( 'Socket connection received:', (event as CustomEvent).detail, ) }) await server.start() console.log(`PGLite Socket Server started on port ${TEST_PORT}`) connectionConfig = { host: '127.0.0.1', port: TEST_PORT, database: 'postgres', username: 'postgres', password: 'postgres', idle_timeout: 5, connect_timeout: 10, max: 1, } } }) afterAll(async () => { if (!DEBUG_TESTS) { // Stop server if running if (server) { await server.stop() console.log('PGLite Socket Server stopped') } // Close database if (db) { await db.close() console.log('PGLite database closed') } } }) beforeEach(() => { // Create a postgres client instance before each test if (DEBUG_TESTS) { // Direct connection to real PostgreSQL server using URL sql = postgres(DEBUG_TESTS_REAL_SERVER, { idle_timeout: 5, connect_timeout: 10, max: 1, }) } else { // Connection to PGLite Socket Server sql = postgres(connectionConfig) } }) afterEach(async () => { // Clean up any tables created in tests try { await sql`DROP TABLE IF EXISTS test_users` } catch (e) { console.error('Error cleaning up tables:', e) } // Disconnect the client after each test if (sql) { await sql.end() } }) if (!DEBUG_LOCAL) { it('should execute a basic SELECT query', async () => { const result = await sql`SELECT 1 as one` expect(result[0].one).toBe(1) }) it('should create a table', async () => { await sql` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, email TEXT, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ) ` // Verify table exists by querying the schema const tableCheck = await sql` SELECT table_name FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'test_users' ` expect(tableCheck.length).toBe(1) expect(tableCheck[0].table_name).toBe('test_users') }) it('should insert rows into a table', async () => { // Create table await sql` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, email TEXT ) ` // Insert data const insertResult = await sql` INSERT INTO test_users (name, email) VALUES ('Alice', 'alice@example.com'), ('Bob', 'bob@example.com') RETURNING * ` expect(insertResult.length).toBe(2) expect(insertResult[0].name).toBe('Alice') expect(insertResult[1].name).toBe('Bob') // Verify data is there const count = await sql`SELECT COUNT(*)::int as count FROM test_users` expect(count[0].count).toBe(2) }) it('should update rows in a table', async () => { // Create and populate table await sql` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, email TEXT ) ` await sql` INSERT INTO test_users (name, email) VALUES ('Alice', 'alice@example.com') ` // Update const updateResult = await sql` UPDATE test_users SET email = 'alice.new@example.com' WHERE name = 'Alice' RETURNING * ` expect(updateResult.length).toBe(1) expect(updateResult[0].email).toBe('alice.new@example.com') }) it('should delete rows from a table', async () => { // Create and populate table await sql` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, email TEXT ) ` await sql` INSERT INTO test_users (name, email) VALUES ('Alice', 'alice@example.com'), ('Bob', 'bob@example.com') ` // Delete const deleteResult = await sql` DELETE FROM test_users WHERE name = 'Alice' RETURNING * ` expect(deleteResult.length).toBe(1) expect(deleteResult[0].name).toBe('Alice') // Verify only Bob remains const remaining = await sql`SELECT * FROM test_users` expect(remaining.length).toBe(1) expect(remaining[0].name).toBe('Bob') }) it('should execute operations in a transaction', async () => { // Create table await sql` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, balance INTEGER DEFAULT 0 ) ` // Insert initial data await sql` INSERT INTO test_users (name, balance) VALUES ('Alice', 100), ('Bob', 50) ` // Start a transaction and perform operations await sql.begin(async (tx) => { // Deduct from Alice await tx` UPDATE test_users SET balance = balance - 30 WHERE name = 'Alice' ` // Add to Bob await tx` UPDATE test_users SET balance = balance + 30 WHERE name = 'Bob' ` }) // Verify both operations succeeded const users = await sql`SELECT name, balance FROM test_users ORDER BY name` expect(users.length).toBe(2) expect(users[0].name).toBe('Alice') expect(users[0].balance).toBe(70) expect(users[1].name).toBe('Bob') expect(users[1].balance).toBe(80) }) it('should rollback a transaction on ROLLBACK', async () => { // Create table await sql` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, balance INTEGER DEFAULT 0 ) ` // Insert initial data await sql` INSERT INTO test_users (name, balance) VALUES ('Alice', 100), ('Bob', 50) ` // Get initial balance const initialResult = await sql` SELECT balance FROM test_users WHERE name = 'Alice' ` const initialBalance = initialResult[0].balance // Start a transaction await sql .begin(async (tx) => { // Deduct from Alice await tx` UPDATE test_users SET balance = balance - 30 WHERE name = 'Alice' ` // Verify balance is changed within transaction const midResult = await tx` SELECT balance FROM test_users WHERE name = 'Alice' ` expect(midResult[0].balance).toBe(70) // Explicitly roll back (cancel) the transaction throw new Error('Triggering rollback') }) .catch(() => { // Expected error to trigger rollback console.log('Transaction was rolled back as expected') }) // Verify balance wasn't changed after rollback const finalResult = await sql` SELECT balance FROM test_users WHERE name = 'Alice' ` expect(finalResult[0].balance).toBe(initialBalance) }) it('should rollback a transaction on error', async () => { // Create table await sql` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, balance INTEGER DEFAULT 0 ) ` // Insert initial data await sql` INSERT INTO test_users (name, balance) VALUES ('Alice', 100), ('Bob', 50) ` // Start a transaction that will fail try { await sql.begin(async (tx) => { // Deduct from Alice await tx` UPDATE test_users SET balance = balance - 30 WHERE name = 'Alice' ` // This will trigger an error await tx` UPDATE test_users_nonexistent SET balance = balance + 30 WHERE name = 'Bob' ` }) } catch (error) { // Expected to fail } // Verify Alice's balance was not changed due to rollback const users = await sql`SELECT name, balance FROM test_users ORDER BY name` expect(users.length).toBe(2) expect(users[0].name).toBe('Alice') expect(users[0].balance).toBe(100) // Should remain 100 after rollback }) it('should handle a syntax error', async () => { // Expect syntax error let errorMessage = '' try { await sql`THIS IS NOT VALID SQL;` } catch (error) { errorMessage = (error as Error).message } expect(errorMessage).not.toBe('') expect(errorMessage.toLowerCase()).toContain('syntax error') }) it('should support cursor-based pagination', async () => { // Create a test table with many rows await sql` CREATE TABLE test_users ( id SERIAL PRIMARY KEY, name TEXT NOT NULL, value INTEGER ) ` // Insert 100 rows using generate_series (server-side generation) await sql` INSERT INTO test_users (name, value) SELECT 'User ' || i as name, i as value FROM generate_series(1, 100) as i ` // Use a cursor to read data in smaller chunks const chunkSize = 10 let results: any[] = [] let page = 0 // Use a transaction for cursor operations (cursors must be in transactions) await sql.begin(async (tx) => { // Declare a cursor await tx`DECLARE user_cursor CURSOR FOR SELECT * FROM test_users ORDER BY id` let hasMoreData = true while (hasMoreData) { // Fetch a batch of results const chunk = await tx`FETCH 10 FROM user_cursor` // If no rows returned, we're done if (chunk.length === 0) { hasMoreData = false continue } // Process this chunk page++ // Add to our results array results = [...results, ...chunk] // Verify each chunk has correct data (except possibly the last one) if (chunk.length === chunkSize) { expect(chunk.length).toBe(chunkSize) expect(chunk[0].id).toBe((page - 1) * chunkSize + 1) } } // Close the cursor await tx`CLOSE user_cursor` }) // Verify we got all 100 records expect(results.length).toBe(100) expect(results[0].name).toBe('User 1') expect(results[99].name).toBe('User 100') // Verify we received the expected number of pages expect(page).toBe(Math.ceil(100 / chunkSize)) }) } else { it('should support LISTEN/NOTIFY for pub/sub messaging', async () => { // Create a promise that will resolve when the notification is received let receivedPayload = '' const notificationPromise = new Promise((resolve) => { // Set up listener for the 'test_channel' notification sql.listen('test_channel', (data) => { receivedPayload = data resolve() }) }) // Small delay to ensure listener is set up // await new Promise((resolve) => setTimeout(resolve, 100)) // Send a notification on the same connection await sql`NOTIFY test_channel, 'Hello from PGlite!'` // Wait for the notification to be received await notificationPromise // Verify the notification was received with the correct payload expect(receivedPayload).toBe('Hello from PGlite!') }) } }) describe('with extensions via CLI', () => { const UNIX_SOCKET_DIR_PATH = `/tmp/${Date.now().toString()}` fs.mkdirSync(UNIX_SOCKET_DIR_PATH) const UNIX_SOCKET_PATH = `${UNIX_SOCKET_DIR_PATH}/.s.PGSQL.5432` let serverProcess: ChildProcess | null = null let sql: ReturnType beforeAll(async () => { // Start the server with extensions via CLI using tsx for dev or node for dist const serverScript = join(__dirname, '../src/scripts/server.ts') serverProcess = spawn( 'npx', [ 'tsx', serverScript, '--path', UNIX_SOCKET_PATH, '--extensions', 'vector,pg_uuidv7,@electric-sql/pglite/pg_hashids:pg_hashids', ], { stdio: ['ignore', 'pipe', 'pipe'], }, ) // Wait for server to be ready by checking for "listening" message await new Promise((resolve, reject) => { const timeout = setTimeout(() => { reject(new Error('Server startup timeout')) }, 30000) const onData = (data: Buffer) => { const output = data.toString() if (output.includes('listening')) { clearTimeout(timeout) resolve() } } serverProcess!.stdout?.on('data', onData) serverProcess!.stderr?.on('data', (data) => { console.error('Server stderr:', data.toString()) }) serverProcess!.on('error', (err) => { clearTimeout(timeout) reject(err) }) serverProcess!.on('exit', (code) => { if (code !== 0 && code !== null) { clearTimeout(timeout) reject(new Error(`Server exited with code ${code}`)) } }) }) console.log('Server with extensions started') sql = postgres({ path: UNIX_SOCKET_PATH, database: 'postgres', username: 'postgres', password: 'postgres', idle_timeout: 5, connect_timeout: 10, max: 1, }) }) afterAll(async () => { if (sql) { await sql.end().catch(() => {}) } if (serverProcess) { serverProcess.kill('SIGTERM') await new Promise((resolve) => { serverProcess!.on('exit', () => resolve()) setTimeout(resolve, 2000) // Force resolve after 2s }) } }) it('should load and use vector extension', async () => { // Create the extension await sql`CREATE EXTENSION IF NOT EXISTS vector` // Verify extension is loaded const extCheck = await sql` SELECT extname FROM pg_extension WHERE extname = 'vector' ` expect(extCheck).toHaveLength(1) expect(extCheck[0].extname).toBe('vector') // Create a table with vector column await sql` CREATE TABLE test_vectors ( id SERIAL PRIMARY KEY, name TEXT, vec vector(3) ) ` // Insert test data await sql` INSERT INTO test_vectors (name, vec) VALUES ('test1', '[1,2,3]'), ('test2', '[4,5,6]'), ('test3', '[7,8,9]') ` // Query with vector distance const result = await sql` SELECT name, vec, vec <-> '[3,1,2]' AS distance FROM test_vectors ORDER BY distance ` expect(result).toHaveLength(3) expect(result[0].name).toBe('test1') expect(result[0].vec).toBe('[1,2,3]') expect(parseFloat(result[0].distance)).toBeCloseTo(2.449, 2) }) it('should load and use pg_uuidv7 extension', async () => { // Create the extension await sql`CREATE EXTENSION IF NOT EXISTS pg_uuidv7` // Verify extension is loaded const extCheck = await sql` SELECT extname FROM pg_extension WHERE extname = 'pg_uuidv7' ` expect(extCheck).toHaveLength(1) expect(extCheck[0].extname).toBe('pg_uuidv7') // Generate a UUIDv7 const result = await sql`SELECT uuid_generate_v7() as uuid` expect(result[0].uuid).toHaveLength(36) // Test uuid_v7_to_timestamptz function const tsResult = await sql` SELECT uuid_v7_to_timestamptz('018570bb-4a7d-7c7e-8df4-6d47afd8c8fc') as ts ` const timestamp = new Date(tsResult[0].ts) expect(timestamp.toISOString()).toBe('2023-01-02T04:26:40.637Z') }) it('should load and use pg_hashids extension from npm package path', async () => { // Create the extension await sql`CREATE EXTENSION IF NOT EXISTS pg_hashids` // Verify extension is loaded const extCheck = await sql` SELECT extname FROM pg_extension WHERE extname = 'pg_hashids' ` expect(extCheck).toHaveLength(1) expect(extCheck[0].extname).toBe('pg_hashids') // Test id_encode function const result = await sql` SELECT id_encode(1234567, 'salt', 10, 'abcdefghijABCDEFGHIJ1234567890') as hash ` expect(result[0].hash).toBeTruthy() expect(typeof result[0].hash).toBe('string') // Test id_decode function (round-trip) const hash = result[0].hash const decodeResult = await sql` SELECT id_decode(${hash}, 'salt', 10, 'abcdefghijABCDEFGHIJ1234567890') as id ` expect(decodeResult[0].id[0]).toBe('1234567') }) }) }) ================================================ FILE: packages/pglite-socket/tests/server.test.ts ================================================ import { describe, it, expect, afterEach } from 'vitest' import { spawn, ChildProcess } from 'node:child_process' import { createConnection } from 'net' import path from 'node:path' import { fileURLToPath } from 'node:url' const __dirname = path.dirname(fileURLToPath(import.meta.url)) const serverScript = path.resolve(__dirname, '../src/scripts/server.ts') // Helper to wait for a port to be available async function waitForPort(port: number, timeout = 15000): Promise { const start = Date.now() while (Date.now() - start < timeout) { try { const socket = createConnection({ port, host: '127.0.0.1' }) await new Promise((resolve, reject) => { socket.on('connect', () => { socket.end() resolve() }) socket.on('error', reject) }) return true } catch { await new Promise((resolve) => setTimeout(resolve, 100)) } } return false } describe('Server Script Tests', () => { const TEST_PORT_BASE = 15500 let currentTestPort = TEST_PORT_BASE // Get a unique port for each test function getTestPort(): number { return ++currentTestPort } describe('Help and Basic Functionality', () => { it('should show help when --help flag is used', async () => { const serverProcess = spawn('tsx', [serverScript, '--help'], { stdio: ['pipe', 'pipe', 'pipe'], }) let output = '' serverProcess.stdout?.on('data', (data) => { output += data.toString() }) serverProcess.stderr?.on('data', (data) => { console.error(data.toString()) }) await new Promise((resolve) => { serverProcess.on('exit', (code) => { expect(code).toBe(0) expect(output).toContain('PGlite Socket Server') expect(output).toContain('Usage:') expect(output).toContain('Options:') expect(output).toContain('--db') expect(output).toContain('--port') expect(output).toContain('--host') resolve() }) }) }, 10000) it('should accept and use debug level parameter', async () => { const testPort = getTestPort() const serverProcess = spawn( 'tsx', [serverScript, '--port', testPort.toString(), '--debug', '2'], { stdio: ['pipe', 'pipe', 'pipe'], }, ) let output = '' serverProcess.stdout?.on('data', (data) => { output += data.toString() }) serverProcess.stderr?.on('data', (data) => { console.error(data.toString()) }) // Wait for server to start await waitForPort(testPort) // Kill the server serverProcess.kill('SIGTERM') await new Promise((resolve) => { serverProcess.on('exit', () => { expect(output).toContain('Debug level: 2') resolve() }) }) }, 10000) }) describe('Server Startup and Connectivity', () => { let serverProcess: ChildProcess | null = null afterEach(async () => { if (serverProcess) { serverProcess.kill('SIGTERM') await new Promise((resolve) => { if (serverProcess) { serverProcess.on('exit', () => resolve()) } else { resolve() } }) serverProcess = null } }) it('should start server on TCP port and accept connections', async () => { const testPort = getTestPort() serverProcess = spawn( 'tsx', [serverScript, '--port', testPort.toString()], { stdio: ['pipe', 'pipe', 'pipe'], }, ) let output = '' serverProcess.stdout?.on('data', (data) => { output += data.toString() }) serverProcess.stderr?.on('data', (data) => { console.error(data.toString()) }) // Wait for server to be ready const isReady = await waitForPort(testPort) expect(isReady).toBe(true) // Check that we can connect const socket = createConnection({ port: testPort, host: '127.0.0.1' }) await new Promise((resolve, reject) => { socket.on('connect', resolve) socket.on('error', reject) setTimeout(() => reject(new Error('Connection timeout')), 3000) }) socket.end() expect(output).toContain('PGlite database initialized') expect(output).toContain(`"port":${testPort}`) }, 10000) it('should work with memory database', async () => { const testPort = getTestPort() serverProcess = spawn( 'tsx', [serverScript, '--port', testPort.toString(), '--db', 'memory://'], { stdio: ['pipe', 'pipe', 'pipe'], }, ) let output = '' serverProcess.stdout?.on('data', (data) => { output += data.toString() }) serverProcess.stderr?.on('data', (data) => { console.error(data.toString()) }) const isReady = await waitForPort(testPort) expect(isReady).toBe(true) expect(output).toContain('Initializing PGLite with database: memory://') }, 10000) }) describe('Configuration Options', () => { let serverProcess: ChildProcess | null = null afterEach(async () => { if (serverProcess) { serverProcess.kill('SIGTERM') await new Promise((resolve) => { if (serverProcess) { serverProcess.on('exit', () => resolve()) } else { resolve() } }) serverProcess = null } }) it('should handle different hosts', async () => { const testPort = getTestPort() serverProcess = spawn( 'tsx', [serverScript, '--port', testPort.toString(), '--host', '0.0.0.0'], { stdio: ['pipe', 'pipe', 'pipe'], }, ) let output = '' serverProcess.stdout?.on('data', (data) => { output += data.toString() }) serverProcess.stderr?.on('data', (data) => { console.error(data.toString()) }) const isReady = await waitForPort(testPort) expect(isReady).toBe(true) serverProcess.kill() await new Promise((resolve) => { serverProcess.on('exit', () => { expect(output).toContain(`"host":"0.0.0.0"`) serverProcess = null resolve() }) }) }, 10000) }) }) ================================================ FILE: packages/pglite-socket/tsconfig.json ================================================ { "extends": "../../tsconfig.json", "compilerOptions": { "types": [ "@types/emscripten", "node" ] }, "include": ["src", "examples", "tsup.config.ts", "vitest.config.ts"] } ================================================ FILE: packages/pglite-socket/tsup.config.ts ================================================ import { defineConfig } from 'tsup' const entryPoints = ['src/index.ts', 'src/scripts/server.ts'] const minify = process.env.DEBUG === 'true' ? false : true export default defineConfig([ { entry: entryPoints, sourcemap: true, dts: { entry: entryPoints, resolve: true, }, clean: true, minify: minify, shims: true, format: ['esm', 'cjs'], }, ]) ================================================ FILE: packages/pglite-socket/vitest.config.ts ================================================ import { defineConfig } from 'vitest/config' export default defineConfig({ test: { name: 'integration tests', globals: true, typecheck: { enabled: true }, environment: 'node', testTimeout: 30000, watch: false, dir: './tests', maxWorkers: 1, fileParallelism: false, maxConcurrency: 1 // because we are running a TCP server on a port }, }) ================================================ FILE: packages/pglite-sync/.gitignore ================================================ dist node_modules ================================================ FILE: packages/pglite-sync/CHANGELOG.md ================================================ # @electric-sql/pglite-sync ## 0.5.1 ### Patch Changes - Updated dependencies [37fb39e] - @electric-sql/pglite@0.4.1 ## 0.5.0 ### Minor Changes - Updated dependencies [d848955] - @electric-sql/pglite@0.4.0 ## 0.4.2 ### Patch Changes - Updated dependencies [3dfa40f] - @electric-sql/pglite@0.3.16 ## 0.4.1 ### Patch Changes - Updated dependencies [45bff97] - Updated dependencies [5ec474f] - @electric-sql/pglite@0.3.15 ## 0.4.0 ### Minor Changes - 408500c: Allow passing in onError to 'syncShapesToTables' ### Patch Changes - Updated dependencies [8785034] - Updated dependencies [90cfee8] - @electric-sql/pglite@0.3.14 ## 0.3.17 ### Patch Changes - Updated dependencies [ad3d0d8] - @electric-sql/pglite@0.3.13 ## 0.3.16 ### Patch Changes - Updated dependencies [ce0e74e] - @electric-sql/pglite@0.3.12 ## 0.3.15 ### Patch Changes - Updated dependencies [9a104b9] - @electric-sql/pglite@0.3.11 ## 0.3.14 ### Patch Changes - Updated dependencies [ad765ed] - @electric-sql/pglite@0.3.10 ## 0.3.13 ### Patch Changes - Updated dependencies [e40ccad] - @electric-sql/pglite@0.3.9 ## 0.3.12 ### Patch Changes - da3cdf3: bump the version of the electric client used by the sync plugin ## 0.3.11 ### Patch Changes - Updated dependencies [f12a582] - Updated dependencies [bd263aa] - @electric-sql/pglite@0.3.8 ## 0.3.10 ### Patch Changes - Updated dependencies [0936962] - @electric-sql/pglite@0.3.7 ## 0.3.9 ### Patch Changes - Updated dependencies [6898469] - Updated dependencies [469be18] - Updated dependencies [64e33c7] - @electric-sql/pglite@0.3.6 ## 0.3.8 ### Patch Changes - Updated dependencies [6653899] - Updated dependencies [5f007fc] - @electric-sql/pglite@0.3.5 ## 0.3.7 ### Patch Changes - 38a55d0: fix cjs/esm misconfigurations - Updated dependencies [1fcaa3e] - Updated dependencies [38a55d0] - Updated dependencies [aac7003] - Updated dependencies [8ca254d] - @electric-sql/pglite@0.3.4 ## 0.3.6 ### Patch Changes - Updated dependencies [ea2c7c7] - @electric-sql/pglite@0.3.3 ## 0.3.5 ### Patch Changes - 0655bff: batch inserts by by a max query size of 50mb ## 0.3.4 ### Patch Changes - Updated dependencies [e2c654b] - @electric-sql/pglite@0.3.2 ## 0.3.3 ### Patch Changes - ad27e7c: Improve insert management for pglite-sync - Updated dependencies [713364e] - @electric-sql/pglite@0.3.1 ## 0.3.2 ### Patch Changes - 317fd36: Specify a peer dependency range on @electric-sql/pglite - Updated dependencies [97e52f7] - Updated dependencies [4356024] - Updated dependencies [0033bc7] - @electric-sql/pglite@0.3.0 ## 0.3.1 ### Patch Changes - 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. ## 0.3.0 ### Minor Changes - 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. Note: The `commitGranularity` and `commitThrottle` options have been removed due to incompatibility with the new transactional sync mechanism. ## 0.2.20 ### Patch Changes - c489ec0: Correctly persist the offset during initial sync ## 0.2.19 ### Patch Changes - 67bf759: shapeKey in syncShapeToTable is now mandatory but nullable; passing null will not persist the shape - b3640ee: Update the sync plugin to work with the latest Electric sync server - Updated dependencies [6bdd74e] - Updated dependencies [f94d591] - @electric-sql/pglite@0.2.17 ## 0.2.18 ### Patch Changes - Updated dependencies [c36fd09] - Updated dependencies [e037883] - Updated dependencies [d6b981b] - Updated dependencies [17e7664] - Updated dependencies [118ba3e] - Updated dependencies [d93c1bb] - Updated dependencies [ddd4a68] - Updated dependencies [f3f1103] - Updated dependencies [67fb2aa] - @electric-sql/pglite@0.2.16 ## 0.2.17 ### Patch Changes - 46c102c: Add options for the `commitGranularity` parameter in the `syncShapeToTable` function, enabling the user to choose how often the sync should commit. - c3d98d5: Export return type of `syncShapeToTable` - 515a155: Bump the version of the Electric sync client - Updated dependencies [fa13714] - @electric-sql/pglite@0.2.15 ## 0.2.16 ### Patch Changes - d1dd12b: Bump the supported version of the ElectricSQL sync server to the latest version - Updated dependencies [6547374] - Updated dependencies [6547374] - Updated dependencies [df5c290] - Updated dependencies [1784d04] - Updated dependencies [ae36974] - Updated dependencies [75f9f6d] - Updated dependencies [ce212cf] - @electric-sql/pglite@0.2.14 ## 0.2.14 ### Patch Changes - f4f8a42: Filter out update messages that don't modify any columns - 3d8efbb: Bump dependencies to address Dependabot alerts - 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. - 61f638e: Change to do a `DELETE FROM` rather than a `TRUNCATE` on `must-refetch` so that custom merge logic can be applied with triggers. - 61f638e: Add a `useCopy` option to `syncShapeToTable`, when `true` performs a `COPY TO` for the initial sync. - Updated dependencies [5e39036] - Updated dependencies [3d8efbb] - Updated dependencies [1844b10] - Updated dependencies [79e6082] - Updated dependencies [16d2296] - Updated dependencies [cf50f47] - Updated dependencies [bd1b3b9] - Updated dependencies [5e39036] - Updated dependencies [16d2296] - Updated dependencies [e9bd9a7] - Updated dependencies [c442c88] - @electric-sql/pglite@0.2.13 ## 0.2.13 ### Patch Changes - Updated dependencies [1495625] - Updated dependencies [d3905cf] - Updated dependencies [1f036dc] - Updated dependencies [52ddcb0] - @electric-sql/pglite@0.2.12 ## 0.2.12 ### Patch Changes - Updated dependencies [2aed553] - @electric-sql/pglite@0.2.11 ## 0.2.11 ### Patch Changes - Updated dependencies [3113d56] - Updated dependencies [23cd31a] - @electric-sql/pglite@0.2.10 ## 0.2.10 ### Patch Changes - Updated dependencies [20008c2] - Updated dependencies [a5712a8] - @electric-sql/pglite@0.2.9 ## 0.2.9 ### Patch Changes - 95b41a1: Clear uncommitted aggregated messages upon receiving `must-refetch` message ## 0.2.8 ### Patch Changes - 821a7c5: Commit `ShapeStream` message batches transactionally. Implement `shapeKey` option to `syncShapeToTable` to persist stream. Implement `metadataSchema` option to `electricSync` configuration to specify where stream metadata is peristed. Implement in-memory lock to disallow multiple shapes on single table. Fix `must-refetch` handling by truncating underlying table on refetch. [BREAKING] Move `ShapeStreamOptions` as separate property of `SyncShapeToTableOptions` rather than extension - 6e116c6: Implement naive resumability which truncates the synced table on restart. - Updated dependencies [53ec60e] - Updated dependencies [880b60d] - Updated dependencies [058ed7c] - Updated dependencies [2831c34] - Updated dependencies [880b60d] - Updated dependencies [880b60d] - Updated dependencies [4aeb677] - Updated dependencies [19b3529] - @electric-sql/pglite@0.2.8 ## 0.2.7 ### Patch Changes - Updated dependencies [5e65236] - Updated dependencies [5e65236] - @electric-sql/pglite@0.2.7 ## 0.2.6 ### Patch Changes - Updated dependencies [09b356c] - Updated dependencies [4238595] - Updated dependencies [ef57e10] - @electric-sql/pglite@0.2.6 ## 0.2.5 ### Patch Changes - dd271b3: Fix #232 by making the options passed to the sync plugin optional - 79b5a7b: Fix the pglite-sync package dependencies - Updated dependencies [fcb101c] - Updated dependencies [3ee5e60] - Updated dependencies [0dc34af] - @electric-sql/pglite@0.2.5 ## 0.2.4 ### Patch Changes - 76d1908: Fix typo in `unsubscribe` API (was previously `unsuscribe`). - e9a2677: Change `action` header to `operation` to match the Electric API. - Updated dependencies [113aa56] - @electric-sql/pglite@0.2.4 ## 0.2.3 ### Patch Changes - Updated dependencies [d8ef285] - @electric-sql/pglite@0.2.3 ## 0.2.2 ### Patch Changes - b7917db: Fix pglite-sync package which incorrectly pointed to ./build not ./dist - Updated dependencies [be41880] - @electric-sql/pglite@0.2.2 ## 0.2.1 ### Patch Changes - Updated dependencies [2cc39ff] - @electric-sql/pglite@0.2.1 ================================================ FILE: packages/pglite-sync/README.md ================================================ # PGlite ElectricSQL Sync Plugin A [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). To install: ```sh npm install @electric-sql/pglite-sync ``` Then add it to you PGlite instance and create any local tables needed: ```ts import { electricSync } from '@electric-sql/pglite-sync' const pg = await PGlite.create({ extensions: { electric: electricSync(), }, }) await pg.exec(` CREATE TABLE IF NOT EXISTS todo ( id SERIAL PRIMARY KEY, task TEXT, done BOOLEAN ); `) ``` You can sync data from Electric using either the single table or multi-table API: ### Single Table Sync Use `syncShapeToTable` to sync a single table: ```ts const shape = await pg.electric.syncShapeToTable({ shape: { url: 'http://localhost:3000/v1/shape', table: 'todo' }, shapeKey: 'todo', // or null if the shape state does not need to be persisted table: 'todo', primaryKey: ['id'], onError: (error) => { console.error('Shape sync error', error) } }) ``` ### Multi-Table Sync The 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. Use `syncShapesToTables` to sync multiple tables simultaneously: ```ts const sync = await pg.electric.syncShapesToTables({ shapes: { todos: { shape: { url: 'http://localhost:3000/v1/shape', table: 'todo' }, table: 'todo', primaryKey: ['id'], }, users: { shape: { url: 'http://localhost:3000/v1/shape', table: 'users' }, table: 'users', primaryKey: ['id'], } }, key: 'my-sync', // or null if the sync state does not need to be persisted onInitialSync: () => { console.log('Initial sync complete') }, onError: (error) => { console.error('Sync error', error) } }) // Unsubscribe when done sync.unsubscribe() ``` ================================================ FILE: packages/pglite-sync/eslint.config.js ================================================ import globals from 'globals' import rootConfig from '../../eslint.config.js' export default [ ...rootConfig, { ignores: ['release/**/*', 'examples/**/*', 'dist/**/*'], }, { languageOptions: { globals: { ...globals.browser, ...globals.node, }, }, rules: { ...rootConfig.rules, '@typescript-eslint/no-explicit-any': 'off', }, }, ] ================================================ FILE: packages/pglite-sync/example/README.md ================================================ # PGlite Electric Sync Example To run the electric server: ``` docker compose up ``` And start a http server in the `./packages` dir: ```sh python3 -m http.server ``` Open `http://localhost:8000/pglite-sync/example/index.html`. Then connect with `psql` and insert, update, or delete rows in the `test` table. ```sh psql postgresql://postgres:password@localhost:54321/electric ``` ```sql INSERT INTO test (name) VALUES ('Hello, World!'); UPDATE test SET name = 'Hello, Electric!' WHERE id = 1; DELETE FROM test WHERE id = 1; ``` ================================================ FILE: packages/pglite-sync/example/docker-compose.yaml ================================================ version: "3.3" name: "electric_quickstart" services: postgres: image: postgres:16 environment: POSTGRES_DB: electric POSTGRES_USER: postgres POSTGRES_PASSWORD: password ports: - 54321:5432 tmpfs: - /var/lib/postgresql/data - /tmp volumes: - ./init.sql:/docker-entrypoint-initdb.d/init.sql command: - -c - listen_addresses=* - -c - wal_level=logical electric: image: electricsql/electric environment: DATABASE_URL: postgresql://postgres:password@postgres:5432/electric?sslmode=disable # Not suitable for production. Only use insecure mode in development or if you've otherwise secured the Electric API. # See https://electric-sql.com/docs/guides/security ELECTRIC_INSECURE: true ports: - "3000:3000" depends_on: - postgres ================================================ FILE: packages/pglite-sync/example/index.html ================================================ PGlite Electric Sync Example

PGlite Electric Sync Example

================================================ FILE: packages/pglite-sync/example/init.sql ================================================ CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); ================================================ FILE: packages/pglite-sync/package.json ================================================ { "name": "@electric-sql/pglite-sync", "version": "0.5.1", "description": "ElectricSQL Sync for PGlite", "type": "module", "private": false, "publishConfig": { "access": "public" }, "keywords": [ "postgres", "sql", "database", "wasm", "client", "pglite", "sync", "partial-replication" ], "author": "Electric DB Limited", "homepage": "https://pglite.dev", "license": "Apache-2.0", "repository": { "type": "git", "url": "git+https://github.com/electric-sql/pglite.git", "directory": "packages/pglite-sync" }, "scripts": { "build": "tsup", "check:exports": "attw . --pack --profile node16", "test": "vitest", "test:e2e:up": "docker compose -f test-e2e/docker_compose.yaml up -d", "test:e2e:down": "docker compose -f test-e2e/docker_compose.yaml down --volumes", "test:e2e:reset": "pnpm test:e2e:down && pnpm test:e2e:up", "test:e2e:run": "pnpm vitest --config vitest-e2e.config.ts", "test:e2e": "pnpm test:e2e:reset && pnpm test:e2e:run && pnpm test:e2e:down", "lint": "eslint ./src ./test --report-unused-disable-directives --max-warnings 0", "format": "prettier --write ./src ./test", "typecheck": "tsc", "stylecheck": "pnpm lint && prettier --check ./src ./test", "prepublishOnly": "pnpm check:exports" }, "types": "dist/index.d.ts", "main": "dist/index.cjs", "module": "dist/index.js", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "files": [ "dist" ], "dependencies": { "@electric-sql/client": "^1.0.9", "@electric-sql/experimental": "^1.0.9" }, "devDependencies": { "@arethetypeswrong/cli": "^0.18.1", "@electric-sql/pglite": "workspace:*", "@eslint-react/eslint-plugin": "^1.14.3", "@types/node": "^20.16.11", "@vitejs/plugin-react": "^4.3.2", "globals": "^15.11.0", "pg": "^8.14.0", "vitest": "^2.1.2" }, "peerDependencies": { "@electric-sql/pglite": "workspace:0.4.1" } } ================================================ FILE: packages/pglite-sync/src/apply.ts ================================================ import { ChangeMessage } from '@electric-sql/client' import type { PGliteInterface, Transaction } from '@electric-sql/pglite' import type { MapColumns, InsertChangeMessage } from './types' export interface ApplyMessageToTableOptions { pg: PGliteInterface | Transaction table: string schema?: string message: ChangeMessage mapColumns?: MapColumns primaryKey: string[] debug: boolean } export async function applyMessageToTable({ pg, table, schema = 'public', message, mapColumns, primaryKey, debug, }: ApplyMessageToTableOptions) { const data = mapColumns ? doMapColumns(mapColumns, message) : message.value switch (message.headers.operation) { case 'insert': { if (debug) console.log('inserting', data) const columns = Object.keys(data) return await pg.query( ` INSERT INTO "${schema}"."${table}" (${columns.map((s) => '"' + s + '"').join(', ')}) VALUES (${columns.map((_v, i) => '$' + (i + 1)).join(', ')}) `, columns.map((column) => data[column]), ) } case 'update': { if (debug) console.log('updating', data) const columns = Object.keys(data).filter( // we don't update the primary key, they are used to identify the row (column) => !primaryKey.includes(column), ) if (columns.length === 0) return // nothing to update return await pg.query( ` UPDATE "${schema}"."${table}" SET ${columns .map((column, i) => '"' + column + '" = $' + (i + 1)) .join(', ')} WHERE ${primaryKey .map( (column, i) => '"' + column + '" = $' + (columns.length + i + 1), ) .join(' AND ')} `, [ ...columns.map((column) => data[column]), ...primaryKey.map((column) => data[column]), ], ) } case 'delete': { if (debug) console.log('deleting', data) return await pg.query( ` DELETE FROM "${schema}"."${table}" WHERE ${primaryKey .map((column, i) => '"' + column + '" = $' + (i + 1)) .join(' AND ')} `, [...primaryKey.map((column) => data[column])], ) } } } export interface BulkApplyMessagesToTableOptions { pg: PGliteInterface | Transaction table: string schema?: string messages: InsertChangeMessage[] mapColumns?: MapColumns debug: boolean } export async function applyInsertsToTable({ pg, table, schema = 'public', messages, mapColumns, debug, }: BulkApplyMessagesToTableOptions) { // Map the messages to the data to be inserted const data: Record[] = messages.map((message) => mapColumns ? doMapColumns(mapColumns, message) : message.value, ) if (debug) console.log('inserting', data) // Get column names from the first message const columns = Object.keys(data[0]) // Calculate size of a single value const getValueSize = (value: any): number => { if (value === null) return 0 // Handle binary data types if (value instanceof ArrayBuffer) return value.byteLength if (value instanceof Blob) return value.size if (value instanceof Uint8Array) return value.byteLength if (value instanceof DataView) return value.byteLength if (ArrayBuffer.isView(value)) return value.byteLength // Handle regular types switch (typeof value) { case 'string': return value.length case 'number': return 8 // assuming 8 bytes for numbers case 'boolean': return 1 default: if (value instanceof Date) return 8 return value?.toString()?.length || 0 } } // Calculate size of a single row's values in bytes const getRowSize = (row: Record): number => { return columns.reduce((size, column) => { const value = row[column] if (value === null) return size // Handle arrays if (Array.isArray(value)) { if (value.length === 0) return size // Check first element to determine array type const firstElement = value[0] // Handle homogeneous arrays switch (typeof firstElement) { case 'number': return size + value.length * 8 // 8 bytes per number case 'string': return ( size + value.reduce((arrSize, str) => arrSize + str.length, 0) ) case 'boolean': return size + value.length // 1 byte per boolean default: if (firstElement instanceof Date) { return size + value.length * 8 // 8 bytes per date } // Handle mixed or other types of arrays (including binary data) return ( size + value.reduce((arrSize, item) => arrSize + getValueSize(item), 0) ) } } return size + getValueSize(value) }, 0) } const MAX_PARAMS = 32_000 const MAX_BYTES = 50 * 1024 * 1024 // 50MB // Helper function to execute a batch insert const executeBatch = async (batch: Record[]) => { const sql = ` INSERT INTO "${schema}"."${table}" (${columns.map((s) => `"${s}"`).join(', ')}) VALUES ${batch.map((_, j) => `(${columns.map((_v, k) => '$' + (j * columns.length + k + 1)).join(', ')})`).join(', ')} ` const values = batch.flatMap((message) => columns.map((column) => message[column]), ) await pg.query(sql, values) } let currentBatch: Record[] = [] let currentBatchSize = 0 let currentBatchParams = 0 for (let i = 0; i < data.length; i++) { const row = data[i] const rowSize = getRowSize(row) const rowParams = columns.length // Check if adding this row would exceed either limit if ( currentBatch.length > 0 && (currentBatchSize + rowSize > MAX_BYTES || currentBatchParams + rowParams > MAX_PARAMS) ) { if (debug && currentBatchSize + rowSize > MAX_BYTES) { console.log('batch size limit exceeded, executing batch') } if (debug && currentBatchParams + rowParams > MAX_PARAMS) { console.log('batch params limit exceeded, executing batch') } await executeBatch(currentBatch) // Reset batch currentBatch = [] currentBatchSize = 0 currentBatchParams = 0 } // Add row to current batch currentBatch.push(row) currentBatchSize += rowSize currentBatchParams += rowParams } // Execute final batch if there are any remaining rows if (currentBatch.length > 0) { await executeBatch(currentBatch) } if (debug) console.log(`Inserted ${messages.length} rows using INSERT`) } export async function applyMessagesToTableWithJson({ pg, table, schema = 'public', messages, mapColumns, debug, }: BulkApplyMessagesToTableOptions) { if (debug) console.log('applying messages with json_to_recordset') // Map the messages to the data to be inserted const data: Record[] = messages.map((message) => mapColumns ? doMapColumns(mapColumns, message) : message.value, ) const columns = ( await pg.query<{ column_name: string udt_name: string data_type: string }>( ` SELECT column_name, udt_name, data_type FROM information_schema.columns WHERE table_name = $1 AND table_schema = $2 `, [table, schema], ) ).rows.filter((x) => Object.prototype.hasOwnProperty.call(data[0], x.column_name), ) const MAX = 10_000 for (let i = 0; i < data.length; i += MAX) { const maxdata = data.slice(i, i + MAX) await pg.query( ` INSERT INTO "${schema}"."${table}" SELECT x.* from json_to_recordset($1) as x(${columns .map( (x) => `${x.column_name} ${x.udt_name.replace(/^_/, '')}` + (x.data_type === 'ARRAY' ? `[]` : ''), ) .join(', ')}) `, [maxdata], ) } if (debug) console.log(`Inserted ${messages.length} rows using json_to_recordset`) } export async function applyMessagesToTableWithCopy({ pg, table, schema = 'public', messages, mapColumns, debug, }: BulkApplyMessagesToTableOptions) { if (debug) console.log('applying messages with COPY') // Map the messages to the data to be inserted const data: Record[] = messages.map((message) => mapColumns ? doMapColumns(mapColumns, message) : message.value, ) // Get column names from the first message const columns = Object.keys(data[0]) // Create CSV data const csvData = data .map((message) => { return columns .map((column) => { const value = message[column] // Escape double quotes and wrap in quotes if necessary if ( typeof value === 'string' && (value.includes(',') || value.includes('"') || value.includes('\n')) ) { return `"${value.replace(/"/g, '""')}"` } return value === null ? '\\N' : value }) .join(',') }) .join('\n') const csvBlob = new Blob([csvData], { type: 'text/csv' }) // Perform COPY FROM await pg.query( ` COPY "${schema}"."${table}" (${columns.map((c) => `"${c}"`).join(', ')}) FROM '/dev/blob' WITH (FORMAT csv, NULL '\\N') `, [], { blob: csvBlob, }, ) if (debug) console.log(`Inserted ${messages.length} rows using COPY`) } function doMapColumns( mapColumns: MapColumns, message: ChangeMessage, ): Record { if (typeof mapColumns === 'function') { return mapColumns(message) } const mappedColumns: Record = {} for (const [key, value] of Object.entries(mapColumns)) { mappedColumns[key] = message.value[value] } return mappedColumns } ================================================ FILE: packages/pglite-sync/src/index.ts ================================================ import type { Row } from '@electric-sql/client' import { ChangeMessage, isChangeMessage, isControlMessage, ShapeStreamOptions, } from '@electric-sql/client' import { MultiShapeStream } from '@electric-sql/experimental' import type { Extension, PGliteInterface } from '@electric-sql/pglite' import { migrateSubscriptionMetadataTables, getSubscriptionState, updateSubscriptionState, deleteSubscriptionState, SubscriptionState, } from './subscriptionState' import type { ElectricSyncOptions, SyncShapesToTablesOptions, SyncShapesToTablesResult, SyncShapeToTableOptions, SyncShapeToTableResult, InsertChangeMessage, Lsn, } from './types' import { applyInsertsToTable, applyMessageToTable, applyMessagesToTableWithCopy, applyMessagesToTableWithJson, } from './apply' export * from './types' async function createPlugin( pg: PGliteInterface, options?: ElectricSyncOptions, ) { const debug = options?.debug ?? false const metadataSchema = options?.metadataSchema ?? 'electric' const streams: Array<{ stream: MultiShapeStream>> aborter: AbortController }> = [] // We keep an in-memory lock per table such that two // shapes are not synced into one table - this will be // resolved by using reference counting in shadow tables const shapePerTableLock = new Map() let initMetadataTablesDone = false const initMetadataTables = async () => { if (initMetadataTablesDone) return initMetadataTablesDone = true await migrateSubscriptionMetadataTables({ pg, metadataSchema, }) } const syncShapesToTables = async ({ key, shapes, useCopy = false, // DEPRECATED: use initialInsertMethod instead initialInsertMethod = 'insert', onInitialSync, onError, }: SyncShapesToTablesOptions): Promise => { let unsubscribed = false await initMetadataTables() Object.values(shapes) .filter((shape) => !shape.onMustRefetch) // Shapes with onMustRefetch bypass the lock .forEach((shape) => { if (shapePerTableLock.has(shape.table)) { throw new Error('Already syncing shape for table ' + shape.table) } shapePerTableLock.set(shape.table) }) let subState: SubscriptionState | null = null // if key is not null, ensure persistence of subscription state // is possible and check if it is already persisted if (key !== null) { subState = await getSubscriptionState({ pg, metadataSchema, subscriptionKey: key, }) if (debug && subState) { console.log('resuming from subscription state', subState) } } // If it's a new subscription there is no state to resume from const isNewSubscription = subState === null // We need to handle the old useCopy option // We check if it's set to true and initialInsertMethod is it's default value if (useCopy && initialInsertMethod === 'insert') { initialInsertMethod = 'csv' console.warn( 'The useCopy option is deprecated and will be removed in a future version. Use initialInsertMethod instead.', ) } // If it's a new subscription we can do a `COPY FROM` to insert the initial data // TODO: in future when we can have multiple shapes on the same table we will need // to make sure we only do a `COPY FROM` on the first shape on the table as they // may overlap and so the insert logic will be wrong. let useInsert = !isNewSubscription || initialInsertMethod === 'insert' // Track if onInitialSync has been called let onInitialSyncCalled = false // Map of shape name to lsn to changes // We accumulate changes for each lsn and then apply them all at once const changes = new Map>[]>>( Object.keys(shapes).map((key) => [key, new Map()]), ) // We track the highest completely buffered lsn for each shape const completeLsns = new Map( Object.keys(shapes).map((key) => [key, BigInt(-1)]), ) // We track which shapes need a truncate // These are truncated at the start of the next commit const truncateNeeded = new Set() // We also have to track the last lsn that we have committed // This is across all shapes const lastCommittedLsn: Lsn = subState?.last_lsn ?? BigInt(-1) // We need our own aborter to be able to abort the streams but still accept the // signals from the user for each shape, and so we monitor the user provided signal // for each shape and abort our own aborter when the user signal is aborted. const aborter = new AbortController() Object.values(shapes) .filter((shapeOptions) => !!shapeOptions.shape.signal) .forEach((shapeOptions) => { shapeOptions.shape.signal!.addEventListener( 'abort', () => aborter.abort(), { once: true, }, ) }) const multiShapeStream = new MultiShapeStream>>( { shapes: Object.fromEntries( Object.entries(shapes).map(([key, shapeOptions]) => { const shapeMetadata = subState?.shape_metadata[key] return [ key, { ...shapeOptions.shape, ...(shapeMetadata ? { offset: shapeMetadata.offset, handle: shapeMetadata.handle, } : {}), signal: aborter.signal, } satisfies ShapeStreamOptions, ] }), ), }, ) const insertMethods = { json: applyMessagesToTableWithJson, csv: applyMessagesToTableWithCopy, useCopy: applyMessagesToTableWithCopy, insert: applyInsertsToTable, } as const const commitUpToLsn = async (targetLsn: Lsn) => { // We need to collect all the messages for each shape that we need to commit const messagesToCommit = new Map>[]>( Object.keys(shapes).map((shapeName) => [shapeName, []]), ) for (const [shapeName, shapeChanges] of changes.entries()) { const messagesForShape = messagesToCommit.get(shapeName)! for (const lsn of shapeChanges.keys()) { if (lsn <= targetLsn) { for (const message of shapeChanges.get(lsn)!) { messagesForShape.push(message) } shapeChanges.delete(lsn) } } } await pg.transaction(async (tx) => { if (debug) { console.time('commit') } // Set the syncing flag to true during this transaction so that // user defined triggers on the table are able to chose how to run // during a sync await tx.exec(`SET LOCAL ${metadataSchema}.syncing = true;`) for (const [shapeName, initialMessages] of messagesToCommit.entries()) { const shape = shapes[shapeName] let messages = initialMessages // If we need to truncate the table, do so if (truncateNeeded.has(shapeName)) { if (debug) { console.log('truncating table', shape.table) } if (shape.onMustRefetch) { await shape.onMustRefetch(tx) } else { const schema = shape.schema || 'public' await tx.exec(`DELETE FROM "${schema}"."${shape.table}";`) } truncateNeeded.delete(shapeName) } // Apply the changes to the table if (!useInsert) { // We can do a `COPY FROM`/json_to_recordset to insert the initial data // Split messageAggregator into initial inserts and remaining messages const initialInserts: InsertChangeMessage[] = [] const remainingMessages: ChangeMessage[] = [] let foundNonInsert = false for (const message of messages) { if (!foundNonInsert && message.headers.operation === 'insert') { initialInserts.push(message as InsertChangeMessage) } else { foundNonInsert = true remainingMessages.push(message) } } if (initialInserts.length > 0 && initialInsertMethod === 'csv') { // As `COPY FROM` doesn't trigger a NOTIFY, we pop // the last insert message and and add it to the be beginning // of the remaining messages to be applied after the `COPY FROM` remainingMessages.unshift(initialInserts.pop()!) } messages = remainingMessages // Do the `COPY FROM`/json_to_recordset with initial inserts if (initialInserts.length > 0) { await insertMethods[initialInsertMethod]({ pg: tx, table: shape.table, schema: shape.schema, messages: initialInserts as InsertChangeMessage[], mapColumns: shape.mapColumns, debug, }) // We don't want to do a `COPY FROM`/json_to_recordset again after that useInsert = true } } const bulkInserts: InsertChangeMessage[] = [] let change: ChangeMessage | null = null const messagesLength = messages.length for (let i = 0; i < messagesLength; i++) { const changeMessage = messages[i] if (changeMessage.headers.operation === 'insert') { bulkInserts.push(changeMessage as InsertChangeMessage) } else { change = changeMessage } if (change || i === messagesLength - 1) { if (bulkInserts.length > 0) { await applyInsertsToTable({ pg: tx, table: shape.table, schema: shape.schema, messages: bulkInserts as InsertChangeMessage[], mapColumns: shape.mapColumns, debug, }) bulkInserts.length = 0 } if (change) { await applyMessageToTable({ pg: tx, table: shape.table, schema: shape.schema, message: change, mapColumns: shape.mapColumns, primaryKey: shape.primaryKey, debug, }) change = null } } } } if (key) { await updateSubscriptionState({ pg: tx, metadataSchema, subscriptionKey: key, shapeMetadata: Object.fromEntries( Object.keys(shapes).map((shapeName) => [ shapeName, { handle: multiShapeStream.shapes[shapeName].shapeHandle!, offset: multiShapeStream.shapes[shapeName].lastOffset, }, ]), ), lastLsn: targetLsn, debug, }) } if (unsubscribed) { await tx.rollback() } }) if (debug) console.timeEnd('commit') if ( onInitialSync && !onInitialSyncCalled && multiShapeStream.isUpToDate ) { onInitialSync() onInitialSyncCalled = true } } multiShapeStream.subscribe(async (messages) => { if (unsubscribed) { return } if (debug) { console.log('received messages', messages.length) } messages.forEach((message) => { const lastCommittedLsnForShape = completeLsns.get(message.shape) ?? BigInt(-1) // we default to -1 if there are no previous changes if (isChangeMessage(message)) { const shapeChanges = changes.get(message.shape)! const lsn = typeof message.headers.lsn === 'string' ? BigInt(message.headers.lsn) : BigInt(0) // we default to 0 if there no lsn on the message if (lsn <= lastCommittedLsnForShape) { // We are replaying changes / have already seen this lsn // skip and move on to the next message return } const isLastOfLsn = (message.headers.last as boolean | undefined) ?? false if (!shapeChanges.has(lsn)) { shapeChanges.set(lsn, []) } shapeChanges.get(lsn)!.push(message) if (isLastOfLsn) { completeLsns.set(message.shape, lsn) } } else if (isControlMessage(message)) { switch (message.headers.control) { case 'up-to-date': { // Update the complete lsn for this shape if (debug) { console.log('received up-to-date', message) } if (typeof message.headers.global_last_seen_lsn !== `string`) { throw new Error(`global_last_seen_lsn is not a string`) } const globalLastSeenLsn = BigInt( message.headers.global_last_seen_lsn, ) if (globalLastSeenLsn <= lastCommittedLsnForShape) { // We are replaying changes / have already seen this lsn // skip and move on to the next message return } completeLsns.set(message.shape, globalLastSeenLsn) break } case 'must-refetch': { // Reset the changes for this shape if (debug) { console.log('received must-refetch', message) } const shapeChanges = changes.get(message.shape)! shapeChanges.clear() completeLsns.set(message.shape, BigInt(-1)) // Track that we need to truncate the table for this shape truncateNeeded.add(message.shape) break } } } }) const lowestCommittedLsn = Array.from(completeLsns.values()).reduce( (m, e) => (e < m ? e : m), // Min of all complete lsn ) // Normal commit needed const isCommitNeeded = lowestCommittedLsn > lastCommittedLsn // We've had a must-refetch and are catching up on one of the shape const isMustRefetchAndCatchingUp = lowestCommittedLsn >= lastCommittedLsn && truncateNeeded.size > 0 if (isCommitNeeded || isMustRefetchAndCatchingUp) { // We have new changes to commit commitUpToLsn(lowestCommittedLsn) // Await a timeout to start a new task and allow other connections to do work await new Promise((resolve) => setTimeout(resolve)) } }, onError) streams.push({ stream: multiShapeStream, aborter, }) const unsubscribe = () => { if (debug) { console.log('unsubscribing') } unsubscribed = true multiShapeStream.unsubscribeAll() aborter.abort() for (const shape of Object.values(shapes)) { shapePerTableLock.delete(shape.table) } } return { unsubscribe, get isUpToDate() { return multiShapeStream.isUpToDate }, streams: Object.fromEntries( Object.keys(shapes).map((shapeName) => [ shapeName, multiShapeStream.shapes[shapeName], ]), ), } } const syncShapeToTable = async ( options: SyncShapeToTableOptions, ): Promise => { const multiShapeSub = await syncShapesToTables({ shapes: { shape: { shape: options.shape, table: options.table, schema: options.schema, mapColumns: options.mapColumns, primaryKey: options.primaryKey, onMustRefetch: options.onMustRefetch, }, }, key: options.shapeKey, useCopy: options.useCopy, // DEPRECATED: use initialInsertMethod instead initialInsertMethod: options.initialInsertMethod, onInitialSync: options.onInitialSync, onError: options.onError, }) return { unsubscribe: multiShapeSub.unsubscribe, get isUpToDate() { return multiShapeSub.isUpToDate }, stream: multiShapeSub.streams.shape, } } const deleteSubscription = async (key: string) => { await deleteSubscriptionState({ pg, metadataSchema, subscriptionKey: key, }) } const namespaceObj = { initMetadataTables, syncShapesToTables, syncShapeToTable, deleteSubscription, } const close = async () => { for (const { stream, aborter } of streams) { stream.unsubscribeAll() aborter.abort() } } return { namespaceObj, close, } } export type SyncNamespaceObj = Awaited< ReturnType >['namespaceObj'] export type PGliteWithSync = PGliteInterface & { sync: SyncNamespaceObj } export function electricSync(options?: ElectricSyncOptions) { return { name: 'ElectricSQL Sync', setup: async (pg: PGliteInterface) => { const { namespaceObj, close } = await createPlugin(pg, options) return { namespaceObj, close, } }, } satisfies Extension } ================================================ FILE: packages/pglite-sync/src/subscriptionState.ts ================================================ import type { PGliteInterface, Transaction } from '@electric-sql/pglite' import type { Offset } from '@electric-sql/client' import { SubscriptionKey, Lsn } from './types' const subscriptionTableName = `subscriptions_metadata` export interface SubscriptionState { key: SubscriptionKey shape_metadata: Record last_lsn: Lsn } export interface ShapeSubscriptionState { handle: string offset: Offset } export interface GetSubscriptionStateOptions { readonly pg: PGliteInterface | Transaction readonly metadataSchema: string readonly subscriptionKey: SubscriptionKey } /** * Get the subscription state for a given key. * @param options - The options for the subscription state. * @returns The subscription state or null if it does not exist. */ export async function getSubscriptionState({ pg, metadataSchema, subscriptionKey, }: GetSubscriptionStateOptions): Promise { const result = await pg.query( ` SELECT key, shape_metadata, last_lsn FROM ${subscriptionMetadataTableName(metadataSchema)} WHERE key = $1 `, [subscriptionKey], ) if (result.rows.length === 0) { return null } else if (result.rows.length > 1) { throw new Error(`Multiple subscriptions found for key: ${subscriptionKey}`) } const res = result.rows[0] if (typeof res.last_lsn === 'string') { return { ...res, last_lsn: BigInt(res.last_lsn), } } else { throw new Error(`Invalid last_lsn type: ${typeof res.last_lsn}`) } } export interface UpdateSubscriptionStateOptions { pg: PGliteInterface | Transaction metadataSchema: string subscriptionKey: SubscriptionKey shapeMetadata: Record lastLsn: Lsn debug?: boolean } /** * Update the subscription state for a given key. * @param options - The options for the subscription state. */ export async function updateSubscriptionState({ pg, metadataSchema, subscriptionKey, shapeMetadata, lastLsn, debug, }: UpdateSubscriptionStateOptions) { if (debug) { console.log( 'updating subscription state', subscriptionKey, shapeMetadata, lastLsn, ) } await pg.query( ` INSERT INTO ${subscriptionMetadataTableName(metadataSchema)} (key, shape_metadata, last_lsn) VALUES ($1, $2, $3) ON CONFLICT(key) DO UPDATE SET shape_metadata = EXCLUDED.shape_metadata, last_lsn = EXCLUDED.last_lsn; `, [subscriptionKey, shapeMetadata, lastLsn.toString()], ) } export interface DeleteSubscriptionStateOptions { pg: PGliteInterface | Transaction metadataSchema: string subscriptionKey: SubscriptionKey } /** * Delete the subscription state for a given key. * @param options - The options for the subscription state. */ export async function deleteSubscriptionState({ pg, metadataSchema, subscriptionKey, }: DeleteSubscriptionStateOptions) { await pg.query( `DELETE FROM ${subscriptionMetadataTableName(metadataSchema)} WHERE key = $1`, [subscriptionKey], ) } export interface MigrateSubscriptionMetadataTablesOptions { pg: PGliteInterface | Transaction metadataSchema: string } /** * Migrate the subscription metadata tables. * @param options - The options for the subscription metadata tables. */ export async function migrateSubscriptionMetadataTables({ pg, metadataSchema, }: MigrateSubscriptionMetadataTablesOptions) { await pg.exec( ` SET ${metadataSchema}.syncing = false; CREATE SCHEMA IF NOT EXISTS "${metadataSchema}"; CREATE TABLE IF NOT EXISTS ${subscriptionMetadataTableName(metadataSchema)} ( key TEXT PRIMARY KEY, shape_metadata JSONB NOT NULL, last_lsn TEXT NOT NULL ); `, ) } function subscriptionMetadataTableName(metadataSchema: string) { return `"${metadataSchema}"."${subscriptionTableName}"` } ================================================ FILE: packages/pglite-sync/src/types.ts ================================================ import type { ShapeStreamOptions, ShapeStreamInterface, Row, ChangeMessage, FetchError, } from '@electric-sql/client' import { Transaction } from '@electric-sql/pglite' export type Lsn = bigint export type MapColumnsMap = Record export type MapColumnsFn = (message: ChangeMessage) => Record export type MapColumns = MapColumnsMap | MapColumnsFn export type SubscriptionKey = string export type InitialInsertMethod = 'insert' | 'csv' | 'json' | 'useCopy' export interface ShapeToTableOptions { shape: ShapeStreamOptions table: string schema?: string mapColumns?: MapColumns primaryKey: string[] onMustRefetch?: (tx: Transaction) => Promise } export interface SyncShapesToTablesOptions { key: string | null shapes: Record useCopy?: boolean // DEPRECATED: use initialInsertMethod instead initialInsertMethod?: InitialInsertMethod onInitialSync?: () => void onError?: (error: FetchError | Error) => void } export interface SyncShapesToTablesResult { unsubscribe: () => void readonly isUpToDate: boolean streams: Record>> } export interface SyncShapeToTableOptions { shape: ShapeStreamOptions table: string schema?: string mapColumns?: MapColumns primaryKey: string[] shapeKey: string | null useCopy?: boolean // DEPRECATED: use initialInsertMethod instead initialInsertMethod?: InitialInsertMethod onInitialSync?: () => void onError?: (error: FetchError | Error) => void onMustRefetch?: (tx: Transaction) => Promise } export interface SyncShapeToTableResult { unsubscribe: () => void readonly isUpToDate: boolean stream: ShapeStreamInterface> } export interface ElectricSyncOptions { debug?: boolean metadataSchema?: string } export type InsertChangeMessage = ChangeMessage & { headers: { operation: 'insert' } } ================================================ FILE: packages/pglite-sync/test/sync.test.ts ================================================ import { ShapeStreamOptions } from '@electric-sql/client' import { MultiShapeMessages } from '@electric-sql/experimental' import { PGlite, PGliteInterfaceExtensions } from '@electric-sql/pglite' import { Mock, beforeEach, describe, expect, it, vi } from 'vitest' import { electricSync } from '../src/index.js' import { MultiShapeStream } from '@electric-sql/experimental' type MultiShapeMessage = MultiShapeMessages vi.mock('@electric-sql/experimental', async (importOriginal) => { const mod = await importOriginal() const MultiShapeStream = vi.fn(() => ({ subscribe: vi.fn(), unsubscribeAll: vi.fn(), isUpToDate: true, shapes: {}, })) return { ...mod, MultiShapeStream } }) describe('pglite-sync', () => { let pg: PGlite & PGliteInterfaceExtensions<{ electric: ReturnType }> const MockMultiShapeStream = MultiShapeStream as unknown as Mock beforeEach(async () => { pg = await PGlite.create({ extensions: { electric: electricSync({ debug: false }), }, }) await pg.exec(` CREATE TABLE IF NOT EXISTS todo ( id SERIAL PRIMARY KEY, task TEXT, done BOOLEAN ); `) await pg.exec(`TRUNCATE todo;`) }) it('passes onError through to MultiShapeStream.subscribe', async () => { const subscribe = vi.fn().mockReturnValue(() => {}) MockMultiShapeStream.mockImplementation(() => ({ subscribe, unsubscribeAll: vi.fn(), isUpToDate: true, shapes: { todos: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, }, })) const onError = vi.fn() await pg.electric.syncShapesToTables({ shapes: { todos: { shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'todo' }, }, table: 'todo', primaryKey: ['id'], }, }, key: null, onError, }) expect(subscribe).toHaveBeenCalled() const [, passedOnError] = subscribe.mock.calls[0] expect(passedOnError).toBe(onError) }) it('handles inserts/updates/deletes', async () => { let feedMessage: ( lsn: number, message: MultiShapeMessage, ) => Promise = async (_) => {} MockMultiShapeStream.mockImplementation(() => ({ subscribe: vi.fn( (cb: (messages: MultiShapeMessage[]) => Promise) => { feedMessage = (lsn, message) => cb([ message, { shape: 'shape', headers: { control: 'up-to-date', global_last_seen_lsn: lsn.toString(), }, }, ]) }, ), unsubscribeAll: vi.fn(), isUpToDate: true, shapes: { shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, }, })) const shape = await pg.electric.syncShapeToTable({ shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'todo' }, }, table: 'todo', primaryKey: ['id'], shapeKey: null, }) // insert await feedMessage(0, { headers: { operation: 'insert', lsn: '0' }, key: 'id1', value: { id: 1, task: 'task1', done: false, }, shape: 'shape', }) expect((await pg.sql`SELECT* FROM todo;`).rows).toEqual([ { id: 1, task: 'task1', done: false, }, ]) // update await feedMessage(1, { headers: { operation: 'update', lsn: '1' }, key: 'id1', value: { id: 1, task: 'task2', done: true, }, shape: 'shape', }) expect((await pg.sql`SELECT* FROM todo;`).rows).toEqual([ { id: 1, task: 'task2', done: true, }, ]) // delete await feedMessage(2, { headers: { operation: 'delete', lsn: '2' }, key: 'id1', value: { id: 1, task: 'task2', done: true, }, shape: 'shape', }) expect((await pg.sql`SELECT* FROM todo;`).rows).toEqual([]) shape.unsubscribe() }) it('performs operations within a transaction', async () => { let feedMessages: ( lsn: number, messages: MultiShapeMessage[], ) => Promise = async (_) => {} MockMultiShapeStream.mockImplementation(() => ({ subscribe: vi.fn( (cb: (messages: MultiShapeMessage[]) => Promise) => { feedMessages = (lsn, messages) => cb([ ...messages, { shape: 'shape', headers: { control: 'up-to-date', global_last_seen_lsn: lsn.toString(), }, }, ]) }, ), unsubscribeAll: vi.fn(), isUpToDate: true, shapes: { shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, }, })) const shape = await pg.electric.syncShapeToTable({ shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'todo' }, }, table: 'todo', primaryKey: ['id'], shapeKey: null, }) const numInserts = 10000 const numBatches = 5 for (let i = 0; i < numBatches; i++) { const numBatchInserts = numInserts / numBatches feedMessages( i, Array.from({ length: numBatchInserts }, (_, idx) => { const itemIdx = i * numBatchInserts + idx return { headers: { operation: 'insert', lsn: i.toString() }, key: `id${itemIdx}`, value: { id: itemIdx, task: `task${itemIdx}`, done: false, }, shape: 'shape', } }), ) } // let timeToProcessMicrotask = Infinity // const startTime = performance.now() // Promise.resolve().then(() => { // timeToProcessMicrotask = performance.now() - startTime // }) let numItemsInserted = 0 await vi.waitUntil(async () => { numItemsInserted = ( await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` ).rows[0]?.['count'] ?? 0 return numItemsInserted > 0 }) // should have exact number of inserts added transactionally expect(numItemsInserted).toBe(numInserts) // should have processed microtask within few ms, not blocking main loop // expect(timeToProcessMicrotask).toBeLessThan(15) // TODO: flaky on CI await shape.unsubscribe() }) it('persists shape stream state and automatically resumes', async () => { let feedMessages: ( lsn: number, messages: MultiShapeMessage[], ) => Promise = async (_) => {} const shapeStreamInits = vi.fn() let mockShapeId: string | void = undefined MockMultiShapeStream.mockImplementation((initOpts: ShapeStreamOptions) => { shapeStreamInits(initOpts) return { subscribe: vi.fn( (cb: (messages: MultiShapeMessage[]) => Promise) => { feedMessages = (lsn, messages) => { mockShapeId ??= Math.random() + '' return cb([ ...messages, { shape: 'shape', headers: { control: 'up-to-date', global_last_seen_lsn: lsn.toString(), }, }, ]) } }, ), unsubscribeAll: vi.fn(), isUpToDate: true, shapes: { shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, }, } }) let totalRowCount = 0 const numInserts = 3 //100 const shapeIds: string[] = [] const numResumes = 3 for (let i = 0; i < numResumes; i++) { const shape = await pg.electric.syncShapeToTable({ shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'todo' }, }, table: 'todo', primaryKey: ['id'], shapeKey: 'foo', }) await feedMessages( i, Array.from({ length: numInserts }, (_, idx) => ({ headers: { operation: 'insert', lsn: i.toString(), }, key: `id${i * numInserts + idx}`, value: { id: i * numInserts + idx, task: `task${idx}`, done: false, }, shape: 'shape', })), ) await vi.waitUntil(async () => { const result = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` if (result.rows[0]?.count > totalRowCount) { totalRowCount = result.rows[0].count return true } return false }) shapeIds.push(mockShapeId!) expect(shapeStreamInits).toHaveBeenCalledTimes(i + 1) if (i === 0) { expect(shapeStreamInits.mock.calls[i][0]).not.toHaveProperty('shapeId') expect(shapeStreamInits.mock.calls[i][0]).not.toHaveProperty('offset') } shape.unsubscribe() } }) it('clears and restarts persisted shape stream state on refetch', async () => { let feedMessages: (messages: MultiShapeMessage[]) => Promise = async ( _, ) => {} const shapeStreamInits = vi.fn() let mockShapeId: string | void = undefined MockMultiShapeStream.mockImplementation((initOpts: ShapeStreamOptions) => { shapeStreamInits(initOpts) return { subscribe: vi.fn( (cb: (messages: MultiShapeMessage[]) => Promise) => { feedMessages = (messages) => { mockShapeId ??= Math.random() + '' if (messages.find((m) => m.headers.control === 'must-refetch')) { mockShapeId = undefined } return cb([ ...messages, { shape: 'shape', headers: { control: 'up-to-date', global_last_seen_lsn: '0', }, }, ]) } }, ), unsubscribeAll: vi.fn(), isUpToDate: true, shapes: { shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, }, } }) const shape = await pg.electric.syncShapeToTable({ shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'todo' }, }, table: 'todo', primaryKey: ['id'], shapeKey: 'foo', }) const numInserts = 100 await feedMessages([ { headers: { operation: 'insert' }, key: `id${numInserts}`, value: { id: numInserts, task: `task`, done: false, }, shape: 'shape', }, { headers: { control: 'must-refetch' }, shape: 'shape' }, { headers: { operation: 'insert' }, key: `id21`, value: { id: 21, task: `task`, done: false, }, shape: 'shape', }, ]) const result = await pg.query(`SELECT * FROM todo;`) expect(result.rows).toHaveLength(1) expect(result.rows[0]).toEqual({ id: 21, done: false, task: 'task', }) shape.unsubscribe() // resuming should const resumedShape = await pg.electric.syncShapeToTable({ shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'todo' }, }, table: 'todo', primaryKey: ['id'], shapeKey: 'foo', }) resumedShape.unsubscribe() expect(shapeStreamInits).toHaveBeenCalledTimes(2) expect(shapeStreamInits.mock.calls[1][0]).not.toHaveProperty('shapeId') expect(shapeStreamInits.mock.calls[1][0]).not.toHaveProperty('offset') }) it('uses the specified metadata schema for subscription metadata', async () => { const metadataSchema = 'foobar' const db = await PGlite.create({ extensions: { electric: electricSync({ metadataSchema, }), }, }) await db.electric.initMetadataTables() const result = await db.query( `SELECT schema_name FROM information_schema.schemata WHERE schema_name = $1`, [metadataSchema], ) expect(result.rows).toHaveLength(1) expect(result.rows[0]).toEqual({ schema_name: metadataSchema }) }) it('forbids multiple subscriptions to the same table', async () => { MockMultiShapeStream.mockImplementation(() => ({ subscribe: vi.fn(), unsubscribeAll: vi.fn(), isUpToDate: true, shapes: { shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, }, })) const table = 'foo' const altTable = 'bar' const shape1 = await pg.electric.syncShapeToTable({ shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'todo' }, }, table: table, primaryKey: ['id'], shapeKey: null, }) // should throw if syncing more shapes into same table await expect( async () => await pg.electric.syncShapeToTable({ shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'todo_alt' }, }, table: table, primaryKey: ['id'], shapeKey: null, }), ).rejects.toThrowError(`Already syncing shape for table ${table}`) // should be able to sync shape into other table const altShape = await pg.electric.syncShapeToTable({ shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'bar' }, }, table: altTable, primaryKey: ['id'], shapeKey: null, }) altShape.unsubscribe() // should be able to sync different shape if previous is unsubscribed // (and we assume data has been cleaned up?) shape1.unsubscribe() const shape2 = await pg.electric.syncShapeToTable({ shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'todo_alt' }, }, table: table, primaryKey: ['id'], shapeKey: null, }) shape2.unsubscribe() }) it('handles an update message with no columns to update', async () => { let feedMessage: (message: MultiShapeMessage) => Promise = async ( _, ) => {} MockMultiShapeStream.mockImplementation(() => ({ subscribe: vi.fn( (cb: (messages: MultiShapeMessage[]) => Promise) => { feedMessage = (message) => cb([ message, { shape: 'shape', headers: { control: 'up-to-date', global_last_seen_lsn: '0', }, }, ]) }, ), unsubscribeAll: vi.fn(), isUpToDate: true, shapes: { shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, }, })) const shape = await pg.electric.syncShapeToTable({ shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'todo' }, }, table: 'todo', primaryKey: ['id'], shapeKey: null, }) // insert await feedMessage({ headers: { operation: 'insert' }, key: 'id1', value: { id: 1, task: 'task1', done: false, }, shape: 'shape', }) expect((await pg.sql`SELECT* FROM todo;`).rows).toEqual([ { id: 1, task: 'task1', done: false, }, ]) // update with no columns to update await feedMessage({ headers: { operation: 'update' }, key: 'id1', value: { id: 1, }, shape: 'shape', }) expect((await pg.sql`SELECT* FROM todo;`).rows).toEqual([ { id: 1, task: 'task1', done: false, }, ]) shape.unsubscribe() }) it('sets the syncing flag to true when syncing begins', async () => { let feedMessage: (message: MultiShapeMessage) => Promise = async ( _, ) => {} MockMultiShapeStream.mockImplementation(() => ({ subscribe: vi.fn( (cb: (messages: MultiShapeMessage[]) => Promise) => { feedMessage = (message) => cb([ message, { shape: 'shape', headers: { control: 'up-to-date', global_last_seen_lsn: '0', }, }, ]) }, ), unsubscribeAll: vi.fn(), isUpToDate: true, shapes: { shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, }, })) await pg.exec(` CREATE TABLE test_syncing ( id TEXT PRIMARY KEY, value TEXT, is_syncing BOOLEAN ); CREATE OR REPLACE FUNCTION check_syncing() RETURNS TRIGGER AS $$ DECLARE is_syncing BOOLEAN; BEGIN is_syncing := COALESCE(current_setting('electric.syncing', true)::boolean, false); IF is_syncing THEN NEW.is_syncing := TRUE; ELSE NEW.is_syncing := FALSE; END IF; RETURN NEW; END; $$ LANGUAGE plpgsql; CREATE TRIGGER test_syncing_trigger BEFORE INSERT ON test_syncing FOR EACH ROW EXECUTE FUNCTION check_syncing(); `) // Check the flag is not set outside of a sync const result0 = await pg.sql`SELECT current_setting('electric.syncing', true)` expect(result0.rows[0]).toEqual({ current_setting: null }) // not set yet as syncShapeToTable hasn't been called const shape = await pg.electric.syncShapeToTable({ shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'test_syncing' }, }, table: 'test_syncing', primaryKey: ['id'], shapeKey: null, }) await feedMessage({ headers: { operation: 'insert' }, key: 'id1', value: { id: 'id1', value: 'test value', }, shape: 'shape', }) // Check the flag is set during a sync const result = await pg.sql`SELECT * FROM test_syncing WHERE id = 'id1'` expect(result.rows).toHaveLength(1) expect(result.rows[0]).toEqual({ id: 'id1', value: 'test value', is_syncing: true, }) // Check the flag is not set outside of a sync const result2 = await pg.sql`SELECT current_setting('electric.syncing', true)` expect(result2.rows[0]).toEqual({ current_setting: 'false' }) shape.unsubscribe() }) it('uses COPY FROM for initial batch of inserts', async () => { let feedMessages: (messages: MultiShapeMessage[]) => Promise = async ( _, ) => {} MockMultiShapeStream.mockImplementation(() => ({ subscribe: vi.fn( (cb: (messages: MultiShapeMessage[]) => Promise) => { feedMessages = (messages) => cb([ ...messages, { shape: 'shape', headers: { control: 'up-to-date', global_last_seen_lsn: '0', }, }, ]) }, ), unsubscribeAll: vi.fn(), isUpToDate: true, shapes: { shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, }, })) const shape = await pg.electric.syncShapeToTable({ shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'todo' }, }, table: 'todo', primaryKey: ['id'], initialInsertMethod: 'csv', shapeKey: null, }) // Create a batch of insert messages followed by an update const numInserts = 1000 const messages: MultiShapeMessage[] = [ ...Array.from( { length: numInserts }, (_, idx) => ({ headers: { operation: 'insert' as const }, key: `id${idx}`, value: { id: idx, task: `task${idx}`, done: idx % 2 === 0, }, shape: 'shape', }) as MultiShapeMessage, ), { headers: { operation: 'update' as const }, key: `id0`, value: { id: 0, task: 'updated task', done: true, }, shape: 'shape', }, ] await feedMessages(messages) // Wait for all inserts to complete await vi.waitUntil(async () => { const result = await pg.sql<{ count: number }>` SELECT COUNT(*) as count FROM todo; ` return result.rows[0].count === numInserts }) // Verify the data was inserted correctly const result = await pg.sql` SELECT * FROM todo ORDER BY id LIMIT 5; ` expect(result.rows).toEqual([ { id: 0, task: 'updated task', done: true }, { id: 1, task: 'task1', done: false }, { id: 2, task: 'task2', done: true }, { id: 3, task: 'task3', done: false }, { id: 4, task: 'task4', done: true }, ]) // Verify total count const countResult = await pg.sql<{ count: number }>` SELECT COUNT(*) as count FROM todo; ` expect(countResult.rows[0].count).toBe(numInserts) shape.unsubscribe() }) it('handles special characters in COPY FROM data', async () => { let feedMessages: (messages: MultiShapeMessage[]) => Promise = async ( _, ) => {} MockMultiShapeStream.mockImplementation(() => ({ subscribe: vi.fn( (cb: (messages: MultiShapeMessage[]) => Promise) => { feedMessages = (messages) => cb([ ...messages, { shape: 'shape', headers: { control: 'up-to-date', global_last_seen_lsn: '0', }, }, ]) }, ), unsubscribeAll: vi.fn(), isUpToDate: true, shapes: { shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, }, })) const shape = await pg.electric.syncShapeToTable({ shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'todo' }, }, table: 'todo', primaryKey: ['id'], initialInsertMethod: 'csv', shapeKey: null, }) const specialCharMessages: MultiShapeMessage[] = [ { headers: { operation: 'insert' }, key: 'id1', value: { id: 1, task: 'task with, comma', done: false, }, shape: 'shape', }, { headers: { operation: 'insert' }, key: 'id2', value: { id: 2, task: 'task with "quotes"', done: true, }, shape: 'shape', }, { headers: { operation: 'insert' }, key: 'id3', value: { id: 3, task: 'task with\nnewline', done: false, }, shape: 'shape', }, ] await feedMessages(specialCharMessages) // Wait for inserts to complete await vi.waitUntil(async () => { const result = await pg.sql<{ count: number }>` SELECT COUNT(*) as count FROM todo; ` return result.rows[0].count === specialCharMessages.length }) // Verify the data was inserted correctly with special characters preserved const result = await pg.sql` SELECT * FROM todo ORDER BY id; ` expect(result.rows).toEqual([ { id: 1, task: 'task with, comma', done: false }, { id: 2, task: 'task with "quotes"', done: true }, { id: 3, task: 'task with\nnewline', done: false }, ]) shape.unsubscribe() }) it('calls onInitialSync callback after initial sync', async () => { let feedMessages: ( lsn: number, messages: MultiShapeMessage[], ) => Promise = async (_) => {} MockMultiShapeStream.mockImplementation(() => ({ subscribe: vi.fn( (cb: (messages: MultiShapeMessage[]) => Promise) => { feedMessages = (lsn, messages) => cb([ ...messages, { shape: 'shape', headers: { control: 'up-to-date', global_last_seen_lsn: lsn.toString(), }, }, ]) }, ), unsubscribeAll: vi.fn(), isUpToDate: true, shapes: { shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, }, })) const onInitialSync = vi.fn(() => { console.log('onInitialSync') }) const shape = await pg.electric.syncShapeToTable({ shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'todo' }, }, table: 'todo', primaryKey: ['id'], onInitialSync, shapeKey: null, }) // Send some initial data await feedMessages(0, [ { headers: { operation: 'insert', lsn: '0' }, key: 'id1', value: { id: 1, task: 'task1', done: false, }, shape: 'shape', }, { headers: { operation: 'insert', lsn: '0' }, key: 'id2', value: { id: 2, task: 'task2', done: true, }, shape: 'shape', }, ]) // Verify callback was called once expect(onInitialSync).toHaveBeenCalledTimes(1) // Send more data - callback should not be called again await feedMessages(1, [ { headers: { operation: 'insert', lsn: '1' }, key: 'id3', value: { id: 3, task: 'task3', done: false, }, shape: 'shape', }, ]) // Verify callback was still only called once expect(onInitialSync).toHaveBeenCalledTimes(1) // Verify all data was inserted expect( (await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;`) .rows[0].count, ).toBe(3) shape.unsubscribe() }) it('syncs multiple shapes to multiple tables simultaneously', async () => { // Create a second table for testing multi-shape sync await pg.exec(` CREATE TABLE IF NOT EXISTS project ( id SERIAL PRIMARY KEY, name TEXT, active BOOLEAN ); `) await pg.exec(`TRUNCATE project;`) // Setup mock for MultiShapeStream with two shapes let feedMessages: ( lsn: number, messages: MultiShapeMessage[], ) => Promise = async (_) => {} MockMultiShapeStream.mockImplementation(() => ({ subscribe: vi.fn( (cb: (messages: MultiShapeMessage[]) => Promise) => { feedMessages = (lsn, messages) => cb([ ...messages, { shape: 'todo_shape', headers: { control: 'up-to-date', global_last_seen_lsn: lsn.toString(), }, }, { shape: 'project_shape', headers: { control: 'up-to-date', global_last_seen_lsn: lsn.toString(), }, }, ]) }, ), unsubscribeAll: vi.fn(), isUpToDate: true, shapes: { todo_shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, project_shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, }, })) // Set up sync for both tables const onInitialSync = vi.fn() const syncResult = await pg.electric.syncShapesToTables({ key: 'multi_sync_test', shapes: { todo_shape: { shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'todo' }, }, table: 'todo', primaryKey: ['id'], }, project_shape: { shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'project' }, }, table: 'project', primaryKey: ['id'], }, }, onInitialSync, }) // Send data for both shapes in a single batch await feedMessages(0, [ // Todo table inserts { headers: { operation: 'insert', lsn: '0' }, key: 'id1', value: { id: 1, task: 'task1', done: false, }, shape: 'todo_shape', }, { headers: { operation: 'insert', lsn: '0' }, key: 'id2', value: { id: 2, task: 'task2', done: true, }, shape: 'todo_shape', }, // Project table inserts { headers: { operation: 'insert', lsn: '0' }, key: 'id1', value: { id: 1, name: 'Project 1', active: true, }, shape: 'project_shape', }, { headers: { operation: 'insert', lsn: '0' }, key: 'id2', value: { id: 2, name: 'Project 2', active: false, }, shape: 'project_shape', }, ]) // Verify data was inserted into both tables const todoResult = await pg.sql`SELECT * FROM todo ORDER BY id;` expect(todoResult.rows).toEqual([ { id: 1, task: 'task1', done: false }, { id: 2, task: 'task2', done: true }, ]) const projectResult = await pg.sql`SELECT * FROM project ORDER BY id;` expect(projectResult.rows).toEqual([ { id: 1, name: 'Project 1', active: true }, { id: 2, name: 'Project 2', active: false }, ]) // Verify onInitialSync was called expect(onInitialSync).toHaveBeenCalledTimes(1) // Test updates across both tables await feedMessages(1, [ // Update todo { headers: { operation: 'update', lsn: '1' }, key: 'id1', value: { id: 1, task: 'Updated task 1', done: true, }, shape: 'todo_shape', }, // Update project { headers: { operation: 'update', lsn: '1' }, key: 'id2', value: { id: 2, name: 'Updated Project 2', active: true, }, shape: 'project_shape', }, ]) // Verify updates were applied to both tables const updatedTodoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;` expect(updatedTodoResult.rows[0]).toEqual({ id: 1, task: 'Updated task 1', done: true, }) const updatedProjectResult = await pg.sql`SELECT * FROM project WHERE id = 2;` expect(updatedProjectResult.rows[0]).toEqual({ id: 2, name: 'Updated Project 2', active: true, }) // Test deletes across both tables await feedMessages(2, [ { headers: { operation: 'delete', lsn: '2' }, key: 'id2', shape: 'todo_shape', value: { id: 2 }, }, { headers: { operation: 'delete', lsn: '2' }, key: 'id1', shape: 'project_shape', value: { id: 1 }, }, ]) // Verify deletes were applied to both tables const todoCountAfterDelete = await pg.sql<{ count: number }>` SELECT COUNT(*) as count FROM todo; ` expect(todoCountAfterDelete.rows[0].count).toBe(1) const projectCountAfterDelete = await pg.sql<{ count: number }>` SELECT COUNT(*) as count FROM project; ` expect(projectCountAfterDelete.rows[0].count).toBe(1) // Cleanup syncResult.unsubscribe() }) it('handles transactions across multiple tables with syncShapesToTables', async () => { // Create a second table for testing multi-shape sync await pg.exec(` CREATE TABLE IF NOT EXISTS project ( id SERIAL PRIMARY KEY, name TEXT, active BOOLEAN ); `) await pg.exec(`TRUNCATE project;`) // Setup mock for MultiShapeStream with two shapes and LSN tracking let feedMessages: ( lsn: number, messages: MultiShapeMessage[], ) => Promise = async (_lsn, _messages) => {} MockMultiShapeStream.mockImplementation(() => ({ subscribe: vi.fn( (cb: (messages: MultiShapeMessage[]) => Promise) => { feedMessages = (lsn, messages) => cb([ ...messages.map((msg) => { if ('headers' in msg && 'operation' in msg.headers) { return { ...msg, headers: { ...msg.headers, lsn: lsn.toString(), }, } as MultiShapeMessage } return msg }), { shape: 'todo_shape', headers: { control: 'up-to-date', global_last_seen_lsn: lsn.toString(), }, } as MultiShapeMessage, { shape: 'project_shape', headers: { control: 'up-to-date', global_last_seen_lsn: lsn.toString(), }, } as MultiShapeMessage, ]) }, ), unsubscribeAll: vi.fn(), isUpToDate: true, shapes: { todo_shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, project_shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, }, })) // Set up sync for both tables const syncResult = await pg.electric.syncShapesToTables({ key: 'transaction_test', shapes: { todo_shape: { shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'todo' }, }, table: 'todo', primaryKey: ['id'], }, project_shape: { shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'project' }, }, table: 'project', primaryKey: ['id'], }, }, }) // Send initial data with LSN 1 await feedMessages(1, [ { headers: { operation: 'insert' }, key: 'id1', value: { id: 1, task: 'Initial task', done: false, }, shape: 'todo_shape', }, { headers: { operation: 'insert' }, key: 'id1', value: { id: 1, name: 'Initial project', active: true, }, shape: 'project_shape', }, ]) // Verify initial data was inserted const initialTodoCount = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` expect(initialTodoCount.rows[0].count).toBe(1) const initialProjectCount = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM project;` expect(initialProjectCount.rows[0].count).toBe(1) // Simulate a transaction with LSN 2 that updates both tables await feedMessages(2, [ { headers: { operation: 'update' }, key: 'id1', value: { id: 1, task: 'Updated in transaction', done: true, }, shape: 'todo_shape', }, { headers: { operation: 'update' }, key: 'id1', value: { id: 1, name: 'Updated in transaction', active: false, }, shape: 'project_shape', }, ]) // Verify both updates were applied const todoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;` expect(todoResult.rows[0]).toEqual({ id: 1, task: 'Updated in transaction', done: true, }) const projectResult = await pg.sql`SELECT * FROM project WHERE id = 1;` expect(projectResult.rows[0]).toEqual({ id: 1, name: 'Updated in transaction', active: false, }) // Cleanup syncResult.unsubscribe() }) it('handles must-refetch control message across multiple tables', async () => { // Create a second table for testing multi-shape sync await pg.exec(` CREATE TABLE IF NOT EXISTS project ( id SERIAL PRIMARY KEY, name TEXT, active BOOLEAN ); `) await pg.exec(`TRUNCATE project;`) // Setup mock for MultiShapeStream with refetch handling let feedMessages: (messages: MultiShapeMessage[]) => Promise = async ( _, ) => {} let mockShapeId: string | void = undefined MockMultiShapeStream.mockImplementation(() => ({ subscribe: vi.fn( (cb: (messages: MultiShapeMessage[]) => Promise) => { feedMessages = (messages) => { mockShapeId ??= Math.random() + '' if (messages.find((m) => m.headers.control === 'must-refetch')) { mockShapeId = undefined } return cb([ ...messages, { shape: 'todo_shape', headers: { control: 'up-to-date', global_last_seen_lsn: '0', }, } as MultiShapeMessage, { shape: 'project_shape', headers: { control: 'up-to-date', global_last_seen_lsn: '0', }, } as MultiShapeMessage, ]) } }, ), unsubscribeAll: vi.fn(), isUpToDate: true, shapes: { todo_shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, project_shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, }, })) // Set up sync for both tables const syncResult = await pg.electric.syncShapesToTables({ key: 'refetch_test', shapes: { todo_shape: { shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'todo' }, }, table: 'todo', primaryKey: ['id'], }, project_shape: { shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'project' }, }, table: 'project', primaryKey: ['id'], }, }, }) // Insert initial data await feedMessages([ { headers: { operation: 'insert' }, key: 'id1', value: { id: 1, task: 'Initial task', done: false, }, shape: 'todo_shape', }, { headers: { operation: 'insert' }, key: 'id1', value: { id: 1, name: 'Initial project', active: true, }, shape: 'project_shape', }, ]) // Verify initial data was inserted const refetchTodoCount = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` expect(refetchTodoCount.rows[0].count).toBe(1) const refetchProjectCount = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM project;` expect(refetchProjectCount.rows[0].count).toBe(1) // Send must-refetch control message and new data await feedMessages([ { headers: { control: 'must-refetch' }, shape: 'todo_shape' }, { headers: { control: 'must-refetch' }, shape: 'project_shape' }, { headers: { operation: 'insert' }, key: 'id2', value: { id: 2, task: 'New task after refetch', done: true, }, shape: 'todo_shape', }, { headers: { operation: 'insert' }, key: 'id2', value: { id: 2, name: 'New project after refetch', active: false, }, shape: 'project_shape', }, ]) // Verify tables were cleared and new data was inserted const todoResult = await pg.sql`SELECT * FROM todo ORDER BY id;` expect(todoResult.rows).toEqual([ { id: 2, task: 'New task after refetch', done: true, }, ]) const projectResult = await pg.sql`SELECT * FROM project ORDER BY id;` expect(projectResult.rows).toEqual([ { id: 2, name: 'New project after refetch', active: false, }, ]) // Cleanup syncResult.unsubscribe() }) it('case sensitivity: handles inserts/updates/deletes on case sensitive table names', async () => { let feedMessage: ( lsn: number, message: MultiShapeMessage, ) => Promise = async (_) => {} MockMultiShapeStream.mockImplementation(() => ({ subscribe: vi.fn( (cb: (messages: MultiShapeMessage[]) => Promise) => { feedMessage = (lsn, message) => cb([ message, { shape: 'shape', headers: { control: 'up-to-date', global_last_seen_lsn: lsn.toString(), }, }, ]) }, ), unsubscribeAll: vi.fn(), isUpToDate: true, shapes: { shape: { subscribe: vi.fn(), unsubscribeAll: vi.fn(), }, }, })) await pg.exec(` CREATE TABLE IF NOT EXISTS "cAseSENSiTiVe" ( id SERIAL PRIMARY KEY, task TEXT, done BOOLEAN ); `) await pg.exec(`TRUNCATE "cAseSENSiTiVe";`) const shape = await pg.electric.syncShapeToTable({ shape: { url: 'http://localhost:3000/v1/shape', params: { table: 'cAseSENSiTiVe' }, }, table: 'cAseSENSiTiVe', primaryKey: ['id'], shapeKey: null, }) // insert await feedMessage(0, { headers: { operation: 'insert', lsn: '0' }, key: 'id1', value: { id: 1, task: 'task1', done: false, }, shape: 'shape', }) expect((await pg.sql`SELECT* FROM "cAseSENSiTiVe";`).rows).toEqual([ { id: 1, task: 'task1', done: false, }, ]) // update await feedMessage(1, { headers: { operation: 'update', lsn: '1' }, key: 'id1', value: { id: 1, task: 'task2', done: true, }, shape: 'shape', }) expect((await pg.sql`SELECT* FROM "cAseSENSiTiVe";`).rows).toEqual([ { id: 1, task: 'task2', done: true, }, ]) // delete await feedMessage(2, { headers: { operation: 'delete', lsn: '2' }, key: 'id1', value: { id: 1, task: 'task2', done: true, }, shape: 'shape', }) expect((await pg.sql`SELECT* FROM "cAseSENSiTiVe";`).rows).toEqual([]) shape.unsubscribe() }) }) ================================================ FILE: packages/pglite-sync/test-e2e/docker_compose.yaml ================================================ version: "3.3" name: "electric_quickstart" services: postgres: image: postgres:16-alpine environment: POSTGRES_DB: electric POSTGRES_USER: postgres POSTGRES_PASSWORD: password ports: - 54321:5432 tmpfs: - /var/lib/postgresql/data - /tmp command: - -c - listen_addresses=* - -c - wal_level=logical electric: image: electricsql/electric:latest environment: DATABASE_URL: postgresql://postgres:password@postgres:5432/electric?sslmode=disable # Not suitable for production. Only use insecure mode in development or if you've otherwise secured the Electric API. # See https://electric-sql.com/docs/guides/security ELECTRIC_INSECURE: true ELECTRIC_ENABLE_INTEGRATION_TESTING: true ports: - "3000:3000" depends_on: - postgres ================================================ FILE: packages/pglite-sync/test-e2e/sync-e2e.test.ts ================================================ /// import { describe, it, expect, beforeAll, afterAll, beforeEach, afterEach, vi, } from 'vitest' import { Client } from 'pg' import { PGlite, PGliteInterfaceExtensions } from '@electric-sql/pglite' import { electricSync, InitialInsertMethod } from '../src/index.js' const DATABASE_URL = process.env.DATABASE_URL || 'postgresql://postgres:password@localhost:54321/electric?sslmode=disable' const ELECTRIC_URL = process.env.ELECTRIC_URL || 'http://localhost:3000/v1/shape' const shapeHandles: Map = new Map() const DEBUG = false const LOG_FETCH = DEBUG let fetchCount = 0 const fetchClient: typeof fetch = async ( url: string | Request | URL, options: RequestInit = {}, ) => { const thisFetchCount = fetchCount++ if (LOG_FETCH) { console.log('>> fetch', thisFetchCount, url, options) } let table: string | null = null if (typeof url === 'string') { table = new URL(url).searchParams.get('table') } else if (url instanceof Request) { table = new URL(url.url).searchParams.get('table') } else if (url instanceof URL) { table = url.searchParams.get('table') } let res: Response try { res = await fetch(url, options) } catch (e) { if (LOG_FETCH) { console.log('>> fetch error', thisFetchCount, e) } throw e } if (table) { shapeHandles.set(res.headers.get('electric-handle')!, table) } if (LOG_FETCH) { console.log( '>> fetch res', thisFetchCount, res.status, res.statusText, res.headers, ) } return res } const deleteShape = async (table: string, handle: string) => { const deleteUrl = new URL(ELECTRIC_URL) deleteUrl.searchParams.set('table', table) deleteUrl.searchParams.set('handle', handle) const res = await fetch(deleteUrl, { method: 'DELETE', }) if (res.status === 404) { // Nothing to delete return } if (!res.ok) { throw new Error(`Error deleting shape: ${res.statusText}`) } } const deleteAllShapes = async () => { for (const [handle, table] of shapeHandles.entries()) { await deleteShape(table, handle) } shapeHandles.clear() } const deleteAllShapesForTable = async (targetTable: string) => { for (const [handle, table] of shapeHandles.entries()) { if (table === targetTable) { await deleteShape(table, handle) } } } describe('sync-e2e', () => { let pgClient: typeof Client.prototype let pg: PGlite & PGliteInterfaceExtensions<{ electric: ReturnType }> // Setup PostgreSQL client and tables beforeAll(async () => { // Connect to PostgreSQL pgClient = new Client({ connectionString: DATABASE_URL, }) await pgClient.connect() // Create test tables in PostgreSQL if they don't exist await pgClient.query(` CREATE TABLE IF NOT EXISTS todo ( id SERIAL PRIMARY KEY, task TEXT, done BOOLEAN ); `) // Create additional tables needed for tests await pgClient.query(` CREATE TABLE IF NOT EXISTS project ( id SERIAL PRIMARY KEY, name TEXT, active BOOLEAN ); `) await pgClient.query(` CREATE TABLE IF NOT EXISTS alt_todo ( id SERIAL PRIMARY KEY, task TEXT, done BOOLEAN ); `) await pgClient.query(` CREATE TABLE IF NOT EXISTS test_syncing ( id TEXT PRIMARY KEY, value TEXT, is_syncing BOOLEAN ); `) // Create or replace the trigger function await pgClient.query(` CREATE OR REPLACE FUNCTION check_syncing() RETURNS TRIGGER AS $$ DECLARE is_syncing BOOLEAN; BEGIN is_syncing := COALESCE(current_setting('electric.syncing', true)::boolean, false); IF is_syncing THEN NEW.is_syncing := TRUE; ELSE NEW.is_syncing := FALSE; END IF; RETURN NEW; END; $$ LANGUAGE plpgsql; `) // Drop and recreate the trigger await pgClient.query( `DROP TRIGGER IF EXISTS test_syncing_trigger ON test_syncing;`, ) await pgClient.query(` CREATE TRIGGER test_syncing_trigger BEFORE INSERT ON test_syncing FOR EACH ROW EXECUTE FUNCTION check_syncing(); `) // Create a todo_alt table for the multiple subscriptions test await pgClient.query(` CREATE TABLE IF NOT EXISTS todo_alt ( id SERIAL PRIMARY KEY, task TEXT, done BOOLEAN ); `) // Create a large table with 10 columns in PostgreSQL await pgClient.query(` CREATE TABLE IF NOT EXISTS large_table ( id SERIAL PRIMARY KEY, col1 TEXT, col2 INTEGER, col3 BOOLEAN, col4 TIMESTAMP, col5 NUMERIC(10,2), col6 TEXT, col7 INTEGER, col8 BOOLEAN, col9 TEXT ); `) // Create a table for large operations await pgClient.query(` CREATE TABLE IF NOT EXISTS large_ops_table ( id SERIAL PRIMARY KEY, value TEXT, number INTEGER, flag BOOLEAN ); `) // Create a user-defined enum for data type testing await pgClient.query(` CREATE TYPE data_types_enum AS ENUM ('one', 'two', 'three'); `) // Create a table for data type testing await pgClient.query(` CREATE TABLE IF NOT EXISTS data_types_table ( id SERIAL PRIMARY KEY, int_col INTEGER, float_col FLOAT, boolean_col BOOLEAN, string_col TEXT, json_col JSONB, json_plain_col JSON, int_array_col INTEGER[], enum_col data_types_enum ); `) // Clean up any existing data await pgClient.query( 'TRUNCATE todo, project, alt_todo, test_syncing, todo_alt, large_table, large_ops_table, data_types_table;', ) }) afterAll(async () => { // Truncate all tables await pgClient.query( 'TRUNCATE todo, project, alt_todo, test_syncing, todo_alt, large_table, large_ops_table, data_types_table;', ) await pgClient.end() await deleteAllShapes() }) beforeEach(async () => { await pgClient.query( 'TRUNCATE todo, project, alt_todo, test_syncing, todo_alt, large_table, large_ops_table, data_types_table;', ) // Create PGlite instance with electric sync extension pg = await PGlite.create({ extensions: { electric: electricSync({ debug: DEBUG }), }, }) // Create the same tables in PGlite await pg.exec(` CREATE TABLE todo ( id SERIAL PRIMARY KEY, task TEXT, done BOOLEAN ); `) // Create additional tables needed for tests await pg.exec(` CREATE TABLE project ( id SERIAL PRIMARY KEY, name TEXT, active BOOLEAN ); `) await pg.exec(` CREATE TABLE alt_todo ( id SERIAL PRIMARY KEY, task TEXT, done BOOLEAN ); `) await pg.exec(` CREATE TABLE test_syncing ( id TEXT PRIMARY KEY, value TEXT, is_syncing BOOLEAN ); CREATE OR REPLACE FUNCTION check_syncing() RETURNS TRIGGER AS $$ DECLARE is_syncing BOOLEAN; BEGIN is_syncing := COALESCE(current_setting('electric.syncing', true)::boolean, false); IF is_syncing THEN NEW.is_syncing := TRUE; ELSE NEW.is_syncing := FALSE; END IF; RETURN NEW; END; $$ LANGUAGE plpgsql; CREATE TRIGGER test_syncing_trigger BEFORE INSERT ON test_syncing FOR EACH ROW EXECUTE FUNCTION check_syncing(); `) // Create a todo_alt table for the multiple subscriptions test await pg.exec(` CREATE TABLE todo_alt ( id SERIAL PRIMARY KEY, task TEXT, done BOOLEAN ); `) // Create the same table in PGlite await pg.exec(` CREATE TABLE large_table ( id SERIAL PRIMARY KEY, col1 TEXT, col2 INTEGER, col3 BOOLEAN, col4 TIMESTAMP, col5 NUMERIC(10,2), col6 TEXT, col7 INTEGER, col8 BOOLEAN, col9 TEXT ); `) await pg.exec(` CREATE TABLE large_ops_table ( id SERIAL PRIMARY KEY, value TEXT, number INTEGER, flag BOOLEAN ); `) // Create a user-defined enum for data type testing await pg.query(` CREATE TYPE data_types_enum AS ENUM ('one', 'two', 'three'); `) // Create data types testing table await pg.exec(` CREATE TABLE data_types_table ( id SERIAL PRIMARY KEY, int_col INTEGER, float_col FLOAT, boolean_col BOOLEAN, string_col TEXT, json_col JSONB, json_plain_col JSON, int_array_col INTEGER[], enum_col data_types_enum ); `) }) afterEach(async () => { try { await pg.close() } catch (e) { // ignore as we may have already closed it in the test } await deleteAllShapes() // Truncate all tables await pgClient.query( 'TRUNCATE todo, project, alt_todo, test_syncing, todo_alt, large_table, large_ops_table, data_types_table;', ) }) it('handles inserts/updates/deletes', async () => { const shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], shapeKey: null, }) // Insert data into PostgreSQL await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (1, 'task1', false); `) // Wait for sync to complete await vi.waitFor( async () => { const result = await pg.sql`SELECT * FROM todo;` expect(result.rows).toEqual([ { id: 1, task: 'task1', done: false, }, ]) }, { timeout: 10000 }, ) // Update data in PostgreSQL await pgClient.query(` UPDATE todo SET task = 'task2', done = true WHERE id = 1; `) // Wait for sync to complete await vi.waitFor( async () => { const result = await pg.sql`SELECT * FROM todo;` expect(result.rows).toEqual([ { id: 1, task: 'task2', done: true, }, ]) }, { timeout: 5000 }, ) // Delete data in PostgreSQL await pgClient.query(` DELETE FROM todo WHERE id = 1; `) // Wait for sync to complete await vi.waitFor( async () => { const result = await pg.sql`SELECT * FROM todo;` expect(result.rows).toEqual([]) }, { timeout: 5000 }, ) shape.unsubscribe() }) it('performs operations within a transaction', async () => { const shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo' }, }, table: 'todo', primaryKey: ['id'], shapeKey: null, }) // Insert a large batch of records to test transaction behavior const numInserts = 1000 // Reduced from 10000 in the mock test for practical e2e testing const numBatches = 5 const batchSize = Math.floor(numInserts / numBatches) for (let i = 0; i < numBatches; i++) { const values = Array.from({ length: batchSize }, (_, idx) => { const itemIdx = i * batchSize + idx return `(${itemIdx}, 'task${itemIdx}', false)` }).join(', ') await pgClient.query(` INSERT INTO todo (id, task, done) VALUES ${values}; `) } // Wait for all inserts to be synced await vi.waitFor( async () => { const result = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` expect(result.rows[0].count).toBe(numInserts) }, { timeout: 10000 }, // Increase timeout for larger batch ) // Verify some sample data const firstItem = await pg.sql`SELECT * FROM todo WHERE id = 0;` expect(firstItem.rows[0]).toEqual({ id: 0, task: 'task0', done: false, }) const lastItem = await pg.sql`SELECT * FROM todo WHERE id = ${numInserts - 1};` expect(lastItem.rows[0]).toEqual({ id: numInserts - 1, task: `task${numInserts - 1}`, done: false, }) shape.unsubscribe() }) it('syncs multiple shapes to multiple tables simultaneously', async () => { // Clean up any existing data in the project table await pgClient.query('TRUNCATE project;') await pg.exec('TRUNCATE project;') // Set up sync for both tables const todoShape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo' }, }, table: 'todo', primaryKey: ['id'], shapeKey: null, }) const projectShape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'project' }, }, table: 'project', primaryKey: ['id'], shapeKey: null, }) // Insert data into both tables in PostgreSQL await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (1, 'task1', false), (2, 'task2', true); `) await pgClient.query(` INSERT INTO project (id, name, active) VALUES (1, 'Project 1', true), (2, 'Project 2', false); `) // Wait for todo table sync to complete await vi.waitFor(async () => { const result = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` expect(result.rows[0].count).toBe(2) }) // Wait for project table sync to complete await vi.waitFor(async () => { const result = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM project;` expect(result.rows[0].count).toBe(2) }) // Verify data was inserted into both tables const todoResult = await pg.sql`SELECT * FROM todo ORDER BY id;` expect(todoResult.rows).toEqual([ { id: 1, task: 'task1', done: false }, { id: 2, task: 'task2', done: true }, ]) const projectResult = await pg.sql`SELECT * FROM project ORDER BY id;` expect(projectResult.rows).toEqual([ { id: 1, name: 'Project 1', active: true }, { id: 2, name: 'Project 2', active: false }, ]) // Clean up todoShape.unsubscribe() projectShape.unsubscribe() }) it('handles an update message with no columns to update', async () => { const shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], shapeKey: null, }) // Insert data into PostgreSQL await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (1, 'task1', false); `) // Wait for sync to complete await vi.waitFor(async () => { const result = await pg.sql`SELECT * FROM todo;` expect(result.rows).toEqual([ { id: 1, task: 'task1', done: false, }, ]) }) // Update data in PostgreSQL with only the primary key (no other columns) await pgClient.query(` UPDATE todo SET id = 1 WHERE id = 1; `) // Wait a moment to ensure sync has time to process await new Promise((resolve) => setTimeout(resolve, 1000)) // Verify data remains unchanged const result = await pg.sql`SELECT * FROM todo;` expect(result.rows).toEqual([ { id: 1, task: 'task1', done: false, }, ]) shape.unsubscribe() }) it('sets the syncing flag to true when syncing begins', async () => { // Check the flag is not set outside of a sync const result0 = await pg.sql`SELECT current_setting('electric.syncing', true)` expect(result0.rows[0]).toEqual({ current_setting: null }) // not set yet as syncShapeToTable hasn't been called const shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'test_syncing' }, fetchClient, }, table: 'test_syncing', primaryKey: ['id'], shapeKey: null, }) // Insert data into PostgreSQL await pgClient.query(` INSERT INTO test_syncing (id, value) VALUES ('id1', 'test value'); `) // Wait for sync to complete await vi.waitFor(async () => { const result = await pg.sql`SELECT * FROM test_syncing WHERE id = 'id1'` expect(result.rows).toHaveLength(1) }) // Check the syncing flag was set during sync const result = await pg.sql`SELECT * FROM test_syncing WHERE id = 'id1'` expect(result.rows[0]).toEqual({ id: 'id1', value: 'test value', is_syncing: true, }) // Check the flag is not set outside of a sync const result2 = await pg.sql`SELECT current_setting('electric.syncing', true)` expect(result2.rows[0]).toEqual({ current_setting: 'false' }) // Clean up shape.unsubscribe() }) it('forbids multiple subscriptions to the same table', async () => { const table = 'todo' const altTable = 'alt_todo' // First subscription const shape1 = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table }, fetchClient, }, table, primaryKey: ['id'], shapeKey: null, }) // Should throw if syncing more shapes into same table await expect( async () => await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo_alt' }, fetchClient, }, table, primaryKey: ['id'], shapeKey: null, }), ).rejects.toThrowError(`Already syncing shape for table ${table}`) // Should be able to sync shape into other table const altShape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: altTable }, fetchClient, }, table: altTable, primaryKey: ['id'], shapeKey: null, }) // Clean up first subscription shape1.unsubscribe() // Should be able to sync different shape if previous is unsubscribed const shape2 = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo_alt' }, fetchClient, }, table, primaryKey: ['id'], shapeKey: null, }) // Clean up altShape.unsubscribe() shape2.unsubscribe() }) it('uses COPY FROM for initial batch of inserts', async () => { // Insert a large batch of records to test COPY FROM behavior const numInserts = 1000 const values = Array.from( { length: numInserts }, (_, idx) => `(${idx}, 'task${idx}', ${idx % 2 === 0})`, ).join(', ') await pgClient.query(` INSERT INTO todo (id, task, done) VALUES ${values}; `) const shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], initialInsertMethod: 'csv', shapeKey: null, }) // Wait for all inserts to be synced await vi.waitFor( async () => { const result = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` expect(result.rows[0].count).toBe(numInserts) }, { timeout: 20000 }, // Increase timeout for larger batch ) // Verify some sample data const sampleResult = await pg.sql` SELECT * FROM todo ORDER BY id LIMIT 5; ` expect(sampleResult.rows).toEqual([ { id: 0, task: 'task0', done: true }, { id: 1, task: 'task1', done: false }, { id: 2, task: 'task2', done: true }, { id: 3, task: 'task3', done: false }, { id: 4, task: 'task4', done: true }, ]) // Update one record to verify updates still work after COPY await pgClient.query(` UPDATE todo SET task = 'updated task' WHERE id = 0; `) // Wait for update to sync await vi.waitFor( async () => { const result = await pg.sql`SELECT * FROM todo WHERE id = 0;` expect(result.rows[0]).toEqual({ id: 0, task: 'updated task', done: true, }) }, { timeout: 5000 }, ) shape.unsubscribe() }) it('handles special characters in COPY FROM data', async () => { // Insert records with special characters await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (1, 'task with, comma', false), (2, 'task with "quotes"', true), (3, 'task with newline', false); `) const shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], initialInsertMethod: 'csv', shapeKey: null, }) // Wait for inserts to complete await vi.waitFor( async () => { const result = await pg.sql<{ count: number }>` SELECT COUNT(*) as count FROM todo; ` expect(result.rows[0].count).toBe(3) }, { timeout: 5000 }, ) // Verify the data was inserted correctly with special characters preserved const result = await pg.sql` SELECT * FROM todo ORDER BY id; ` expect(result.rows).toEqual([ { id: 1, task: 'task with, comma', done: false }, { id: 2, task: 'task with "quotes"', done: true }, { id: 3, task: 'task with\nnewline', done: false }, ]) shape.unsubscribe() }) it('calls onInitialSync callback after initial sync', async () => { let callbackCalled = false const onInitialSync = () => { callbackCalled = true } const shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], onInitialSync, shapeKey: null, }) // Insert some initial data await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (1, 'task1', false), (2, 'task2', true); `) // Wait for initial sync to complete await vi.waitFor( async () => { const result = await pg.sql<{ count: number }>` SELECT COUNT(*) as count FROM todo; ` return result.rows[0].count === 2 }, { timeout: 5000 }, ) // Verify callback was called await vi.waitFor( () => { expect(callbackCalled).toBe(true) return callbackCalled === true }, { timeout: 5000 }, ) // Insert more data - callback should not be called again callbackCalled = false await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (3, 'task3', false); `) // Wait for sync to complete await vi.waitFor( async () => { const result = await pg.sql<{ count: number }>` SELECT COUNT(*) as count FROM todo; ` return result.rows[0].count === 3 }, { timeout: 5000 }, ) // Verify callback was not called again expect(callbackCalled).toBe(false) shape.unsubscribe() }) it('uses the specified metadata schema for subscription metadata', async () => { // Close the default PGlite instance await pg.close() // Create a new PGlite instance with a custom metadata schema const metadataSchema = 'custom_metadata' pg = await PGlite.create({ extensions: { electric: electricSync({ metadataSchema, }), }, }) // Initialize metadata tables await pg.electric.initMetadataTables() // Create the todo table await pg.exec(` CREATE TABLE todo ( id SERIAL PRIMARY KEY, task TEXT, done BOOLEAN ); `) // Verify the custom schema was created const schemaResult = await pg.query( `SELECT schema_name FROM information_schema.schemata WHERE schema_name = $1`, [metadataSchema], ) expect(schemaResult.rows).toHaveLength(1) expect(schemaResult.rows[0]).toEqual({ schema_name: metadataSchema }) // Verify the subscription table exists in the custom schema const tableResult = await pg.query( `SELECT table_name FROM information_schema.tables WHERE table_schema = $1 AND table_name = 'subscriptions_metadata'`, [metadataSchema], ) expect(tableResult.rows).toHaveLength(1) expect(tableResult.rows[0]).toEqual({ table_name: 'subscriptions_metadata', }) // Test that we can create a subscription with the custom schema const shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], shapeKey: 'custom_schema_test', }) // We don't persist any metadata until some data has been synced await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (1, 'task1', false); `) await vi.waitFor( async () => { const result = await pg.sql<{ count: number }>` SELECT COUNT(*) as count FROM todo; ` expect(result.rows[0].count).toBe(1) }, { timeout: 5000 }, ) // Check the data was inserted into the todo table const todoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;` expect(todoResult.rows[0]).toEqual({ id: 1, task: 'task1', done: false, }) // Verify the subscription was stored in the custom schema const subscriptionResult = await pg.query( `SELECT * FROM ${metadataSchema}.subscriptions_metadata WHERE key = $1`, ['custom_schema_test'], ) expect(subscriptionResult.rows).toHaveLength(1) // Clean up shape.unsubscribe() await pg.electric.deleteSubscription('custom_schema_test') }) it('handles transactions across multiple tables with syncShapesToTables', async () => { // Clean up any existing data in the project table await pgClient.query('TRUNCATE project;') await pg.exec('TRUNCATE project;') // Set up sync for both tables using syncShapesToTables const syncResult = await pg.electric.syncShapesToTables({ key: 'transaction_test', shapes: { todo_shape: { shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], }, project_shape: { shape: { url: ELECTRIC_URL, params: { table: 'project' }, fetchClient, }, table: 'project', primaryKey: ['id'], }, }, }) // Insert initial data in a transaction await pgClient.query('BEGIN;') await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (1, 'Initial task', false); `) await pgClient.query(` INSERT INTO project (id, name, active) VALUES (1, 'Initial project', true); `) await pgClient.query('COMMIT;') // Wait for both inserts to be synced await vi.waitFor( async () => { const todoCount = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` const projectCount = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM project;` expect(todoCount.rows[0].count).toBe(1) expect(projectCount.rows[0].count).toBe(1) }, { timeout: 5000 }, ) // Verify initial data was inserted const todoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;` expect(todoResult.rows[0]).toEqual({ id: 1, task: 'Initial task', done: false, }) const projectResult = await pg.sql`SELECT * FROM project WHERE id = 1;` expect(projectResult.rows[0]).toEqual({ id: 1, name: 'Initial project', active: true, }) // Update both tables in a transaction await pgClient.query('BEGIN;') await pgClient.query(` UPDATE todo SET task = 'Updated in transaction', done = true WHERE id = 1; `) await pgClient.query(` UPDATE project SET name = 'Updated in transaction', active = false WHERE id = 1; `) await pgClient.query('COMMIT;') // Wait for both updates to be synced await vi.waitFor( async () => { const todoResult = await pg.sql<{ id: number task: string done: boolean }>`SELECT * FROM todo WHERE id = 1;` const projectResult = await pg.sql<{ id: number name: string active: boolean }>`SELECT * FROM project WHERE id = 1;` expect(todoResult.rows[0].task).toBe('Updated in transaction') expect(projectResult.rows[0].name).toBe('Updated in transaction') }, { timeout: 5000 }, ) // Verify both updates were applied const updatedTodoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;` expect(updatedTodoResult.rows[0]).toEqual({ id: 1, task: 'Updated in transaction', done: true, }) const updatedProjectResult = await pg.sql`SELECT * FROM project WHERE id = 1;` expect(updatedProjectResult.rows[0]).toEqual({ id: 1, name: 'Updated in transaction', active: false, }) // Clean up syncResult.unsubscribe() }) it('stops sync after unsubscribe', async () => { // First sync session with a persistent key const shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], shapeKey: 'refetch_test', }) // Insert initial batch of data await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (1, 'Initial task', false); `) // Wait 3 seconds to make sure the data is synced await new Promise((resolve) => setTimeout(resolve, 3000)) // Wait for initial sync to complete await vi.waitFor(async () => { const result = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` expect(result.rows[0].count).toBe(1) }) // Check the data was inserted into the todo table const todoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;` expect(todoResult.rows[0]).toEqual({ id: 1, task: 'Initial task', done: false, }) // Unsubscribe from first sync session shape.unsubscribe() // Insert new data before we resume the sync await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (2, 'New task after refetch', true); `) // Wait for sync to complete await vi.waitFor( async () => { const result = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` expect(result.rows[0].count).not.toBe(2) }, { timeout: 5000 }, ) // Verify only the new data is present (old data was cleared) const result = await pg.sql`SELECT * FROM todo ORDER BY id;` expect(result.rows).toEqual([ { id: 1, task: 'Initial task', done: false, }, ]) // Clean up shape.unsubscribe() await pg.electric.deleteSubscription('refetch_test') }) it('resumes sync after unsubscribe', async () => { // First sync session with a persistent key let shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], shapeKey: 'refetch_test', }) // Insert initial batch of data await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (1, 'Initial task', false); `) // Wait for initial sync to complete await vi.waitFor(async () => { const result = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` expect(result.rows[0].count).toBe(1) }) // Check the data was inserted into the todo table const todoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;` expect(todoResult.rows[0]).toEqual({ id: 1, task: 'Initial task', done: false, }) // Unsubscribe from first sync session shape.unsubscribe() // Insert new data before we resume the sync await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (2, 'New task after refetch', true); `) // Start a new sync session with the same key shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], shapeKey: 'refetch_test', }) // Wait for sync to complete await vi.waitFor( async () => { const result = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` expect(result.rows[0].count).toBe(2) }, { timeout: 5000 }, ) // Verify only the new data is present (old data was cleared) const result = await pg.sql`SELECT * FROM todo ORDER BY id;` expect(result.rows).toEqual([ { id: 1, task: 'Initial task', done: false, }, { id: 2, task: 'New task after refetch', done: true, }, ]) // Clean up shape.unsubscribe() await pg.electric.deleteSubscription('refetch_test') }) it('resumes sync after pglite restart', async () => { // First sync session with a persistent key let shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], shapeKey: 'refetch_test', }) // Insert initial batch of data await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (1, 'Initial task', false); `) // Wait for initial sync to complete await vi.waitFor(async () => { const result = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` expect(result.rows[0].count).toBe(1) }) // Check the data was inserted into the todo table const todoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;` expect(todoResult.rows[0]).toEqual({ id: 1, task: 'Initial task', done: false, }) // Unsubscribe from first sync session shape.unsubscribe() // Dump datadir and restart pglite const datadir = await pg.dumpDataDir() await pg.close() const pg2 = await PGlite.create({ loadDataDir: datadir, extensions: { electric: electricSync(), }, }) // Insert new data before we resume the sync await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (2, 'New task after refetch', true); `) // Start a new sync session with the same key shape = await pg2.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], shapeKey: 'refetch_test', }) // Wait for sync to complete await vi.waitFor( async () => { const result = await pg2.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` expect(result.rows[0].count).toBe(2) }, { timeout: 5000 }, ) // Verify only the new data is present (old data was cleared) const result = await pg2.sql`SELECT * FROM todo ORDER BY id;` expect(result.rows).toEqual([ { id: 1, task: 'Initial task', done: false, }, { id: 2, task: 'New task after refetch', done: true, }, ]) // Clean up shape.unsubscribe() }) it('clears and restarts persisted shape stream state on refetch', async () => { // First sync session with a persistent key let shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], shapeKey: 'refetch_test', }) // Insert initial batch of data await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (1, 'Initial task', false); `) // Wait for initial sync to complete await vi.waitFor(async () => { const result = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` expect(result.rows[0].count).toBe(1) }) // Check the data was inserted into the todo table const todoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;` expect(todoResult.rows[0]).toEqual({ id: 1, task: 'Initial task', done: false, }) // Unsubscribe from first sync session shape.unsubscribe() // Delete the shape on the server to force a refetch await deleteAllShapes() // Insert new data before we resume the sync await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (2, 'New task after refetch', true); `) // Start a new sync session with the same key shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], shapeKey: 'refetch_test', }) // Wait for sync to complete await vi.waitFor( async () => { const result = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` expect(result.rows[0].count).toBe(2) }, { timeout: 5000 }, ) // Verify only the new data is present (old data was cleared) const result = await pg.sql`SELECT * FROM todo ORDER BY id;` expect(result.rows).toEqual([ { id: 1, task: 'Initial task', done: false, }, { id: 2, task: 'New task after refetch', done: true, }, ]) // Clean up shape.unsubscribe() await pg.electric.deleteSubscription('refetch_test') }) it('handles must-refetch control message across multiple tables', async () => { // Set up sync for both tables using syncShapesToTables const syncResult = await pg.electric.syncShapesToTables({ key: 'refetch_multi_test', shapes: { todo_shape: { shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], }, project_shape: { shape: { url: ELECTRIC_URL, params: { table: 'project' }, fetchClient, }, table: 'project', primaryKey: ['id'], }, }, }) // Insert initial data await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (1, 'Initial todo', false); `) await pgClient.query(` INSERT INTO project (id, name, active) VALUES (1, 'Initial project', true); `) // Wait for initial sync to complete await vi.waitFor( async () => { const todoCount = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` const projectCount = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM project;` return todoCount.rows[0].count === 1 && projectCount.rows[0].count === 1 }, { timeout: 5000 }, ) // Unsubscribe from sync syncResult.unsubscribe() // Delete the shapes on the server to force a refetch await deleteAllShapesForTable('todo') // we don't need to delete the project shape so we can test a must-refetch on // just one of the tables // Insert new data after refetch await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (2, 'New todo after refetch', true); `) await pgClient.query(` INSERT INTO project (id, name, active) VALUES (2, 'New project after refetch', false); `) // Start a new sync session with the same key const newSyncResult = await pg.electric.syncShapesToTables({ key: 'refetch_multi_test', shapes: { todo_shape: { shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], }, project_shape: { shape: { url: ELECTRIC_URL, params: { table: 'project' }, fetchClient, }, table: 'project', primaryKey: ['id'], }, }, }) // Wait for sync to complete await vi.waitFor( async () => { const todoCount = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` const projectCount = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM project;` expect(todoCount.rows[0].count).toBe(2) expect(projectCount.rows[0].count).toBe(2) }, { timeout: 5000 }, ) // Verify only the new data is present (old data was cleared) const todoResult = await pg.sql`SELECT * FROM todo ORDER BY id;` expect(todoResult.rows).toEqual([ { id: 1, task: 'Initial todo', done: false, }, { id: 2, task: 'New todo after refetch', done: true, }, ]) const projectResult = await pg.sql`SELECT * FROM project ORDER BY id;` expect(projectResult.rows).toEqual([ { id: 1, name: 'Initial project', active: true, }, { id: 2, name: 'New project after refetch', active: false, }, ]) // Clean up newSyncResult.unsubscribe() await pg.electric.deleteSubscription('refetch_multi_test') }) it('handles onMustRefetch with local data', async () => { // Insert initial data await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (1, 'Todo 1', false), (2, 'Todo 2', false), (3, 'Todo 3', false), (4, 'Todo 4', false), (5, 'Todo 5', false), (6, 'Todo 6', false), (7, 'Todo 7', false), (8, 'Todo 8', false), (9, 'Todo 9', false), (10, 'Todo 10', false); `) // Set up sync for both tables using syncShapesToTables const shape1 = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo', where: 'id > 5' }, fetchClient, }, table: 'todo', primaryKey: ['id'], shapeKey: 'todo_shape1', onMustRefetch: async (tx) => { await tx.exec(`DELETE FROM todo WHERE id > 5;`) }, }) const shape2 = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo', where: 'id <= 5' }, fetchClient, }, table: 'todo', primaryKey: ['id'], shapeKey: 'todo_shape2', onMustRefetch: async (tx) => { await tx.exec(`DELETE FROM todo WHERE id <= 5;`) }, }) // Wait for initial sync to complete await vi.waitFor( async () => { const todoCount = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` expect(todoCount.rows[0].count).toBe(10) }, { timeout: 5000 }, ) // Insert some local data await pg.query(` INSERT INTO todo (id, task, done) VALUES (11, 'Todo 11', false), (12, 'Todo 12', false), (13, 'Todo 13', false); `) // Delete the shapes on the server to force a must-refetch on it await deleteShape('todo', shape1.stream.shapeHandle!) // Update all to done await pgClient.query(` UPDATE todo SET done = true; `) // Wait for sync to complete await vi.waitFor( async () => { const todoCount = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo WHERE done = true;` expect(todoCount.rows[0].count).toBe(10) }, { timeout: 5000 }, ) // Verify that the local data is still present const localTodoCount = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo WHERE id > 10 AND done = false;` expect(localTodoCount.rows[0].count).toBe(3) // Clean up shape1.unsubscribe() shape2.unsubscribe() await pg.electric.deleteSubscription('todo_shape1') await pg.electric.deleteSubscription('todo_shape2') }) it('handles large initial load with multiple columns', async () => { // Generate data in batches const numRows = 5000 // Reduced from 10k to 5k for faster test execution const batchSize = 500 const batches = Math.ceil(numRows / batchSize) for (let batch = 0; batch < batches; batch++) { const start = batch * batchSize const end = Math.min(start + batchSize, numRows) // Build a batch of INSERT statements for (let i = start; i < end; i++) { await pgClient.query( ` INSERT INTO large_table ( id, col1, col2, col3, col4, col5, col6, col7, col8, col9 ) VALUES ( $1, $2, $3, $4, $5, $6, $7, $8, $9, $10 ); `, [ i, `text-${i}`, i * 10, i % 2 === 0, new Date(2023, 0, 1, 12 + i), // 2023-01-01 12:00:00 + i hours i * 1.5, `long-text-value-${i}-with-some-additional-content`, i * 5, i % 3 === 0, `another-text-value-${i}`, ], ) } } // Set up sync with COPY enabled for efficiency const shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'large_table' }, fetchClient, }, table: 'large_table', primaryKey: ['id'], initialInsertMethod: 'csv', shapeKey: null, }) // Wait for all data to be synced - increase timeout for large dataset await vi.waitFor( async () => { const result = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM large_table;` expect(result.rows[0].count).toBe(numRows) }, { timeout: 60000 }, // 60 second timeout for large dataset ) // Verify some sample data points const firstRow = await pg.sql`SELECT * FROM large_table WHERE id = 0;` expect(firstRow.rows[0]).toMatchObject({ id: 0, col1: 'text-0', col2: 0, col3: true, // Skip timestamp comparison as it might have timezone differences col5: '0.00', col6: 'long-text-value-0-with-some-additional-content', col7: 0, col8: true, col9: 'another-text-value-0', }) const middleRow = await pg.sql`SELECT * FROM large_table WHERE id = 2500;` expect(middleRow.rows[0]).toMatchObject({ id: 2500, col1: 'text-2500', col2: 25000, col3: true, // Skip timestamp comparison col5: '3750.00', col6: 'long-text-value-2500-with-some-additional-content', col7: 12500, col8: false, col9: 'another-text-value-2500', }) const lastRow = await pg.sql`SELECT * FROM large_table WHERE id = ${numRows - 1};` expect(lastRow.rows[0]).toMatchObject({ id: numRows - 1, col1: `text-${numRows - 1}`, col2: (numRows - 1) * 10, col3: (numRows - 1) % 2 === 0, // Skip timestamp comparison col5: ((numRows - 1) * 1.5).toFixed(2), col6: `long-text-value-${numRows - 1}-with-some-additional-content`, col7: (numRows - 1) * 5, col8: (numRows - 1) % 3 === 0, col9: `another-text-value-${numRows - 1}`, }) // Clean up shape.unsubscribe() }, 60000) it('handles large update with inserts, deletes, and updates', async () => { // Insert initial rows (some will be updated, some deleted, some unchanged) const totalRows = 3000 const batchSize = 500 const batches = Math.ceil(totalRows / batchSize) for (let batch = 0; batch < batches; batch++) { const start = batch * batchSize const end = Math.min(start + batchSize, totalRows) for (let i = start; i < end; i++) { await pgClient.query( ` INSERT INTO large_ops_table (id, value, number, flag) VALUES ($1, $2, $3, $4); `, [i, `initial-value-${i}`, i, i % 2 === 0], ) } } // Set up sync const shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'large_ops_table' }, fetchClient, }, table: 'large_ops_table', primaryKey: ['id'], initialInsertMethod: 'csv', shapeKey: null, }) // Wait for initial sync to complete await vi.waitFor( async () => { const result = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM large_ops_table;` expect(result.rows[0].count).toBe(totalRows) }, { timeout: 30000 }, ) // Begin transaction for large update await pgClient.query('BEGIN;') // 1. Delete rows (ids 1-999) - leave id=1 in the table await pgClient.query(` DELETE FROM large_ops_table WHERE id BETWEEN 1 AND 999; `) // 2. Update rows (ids 1000-1999) await pgClient.query(` UPDATE large_ops_table SET value = 'updated-value', number = number * 10, flag = NOT flag WHERE id BETWEEN 1000 AND 1999; `) // 3. Insert new rows for (let i = totalRows; i < totalRows + 1000; i++) { await pgClient.query( ` INSERT INTO large_ops_table (id, value, number, flag) VALUES ($1, $2, $3, $4); `, [i, `new-value-${i}`, i * 2, i % 3 === 0], ) } // Commit the transaction await pgClient.query('COMMIT;') // Wait for all changes to sync await vi.waitFor( async () => { const result = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM large_ops_table;` expect(result.rows[0].count).toBe(3001) // 3000 original - 999 deleted + 1000 new = 3001 }, { timeout: 30000 }, ) // Verify deleted rows are gone const deletedCount = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM large_ops_table WHERE id BETWEEN 1 AND 999;` expect(deletedCount.rows[0].count).toBe(0) // Verify updated rows have new values const updatedRow = await pg.sql`SELECT * FROM large_ops_table WHERE id = 1500;` expect(updatedRow.rows[0]).toEqual({ id: 1500, value: 'updated-value', number: 15000, // 1500 * 10 flag: 1500 % 2 !== 0, // NOT the original flag }) // Verify new rows were inserted const newRow = await pg.sql`SELECT * FROM large_ops_table WHERE id = 3500;` expect(newRow.rows[0]).toEqual({ id: 3500, value: 'new-value-3500', number: 7000, // 3500 * 2 flag: 3500 % 3 === 0, }) // Verify unchanged rows remain the same const unchangedRow = await pg.sql`SELECT * FROM large_ops_table WHERE id = 2500;` expect(unchangedRow.rows[0]).toEqual({ id: 2500, value: 'initial-value-2500', number: 2500, flag: 2500 % 2 === 0, }) // Clean up shape.unsubscribe() }) it('will perform initial sync for multi-shape subscriptions when only one table has data', async () => { const syncResult = await pg.electric.syncShapesToTables({ key: 'cycle_test', shapes: { todo_shape: { shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], }, project_shape: { shape: { url: ELECTRIC_URL, params: { table: 'project' }, fetchClient, }, table: 'project', primaryKey: ['id'], }, }, }) await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (1, 'Todo 1', false); `) // Wait for todo insert to sync await vi.waitFor( async () => { const todoResult = await pg.sql<{ id: number task: string done: boolean }>`SELECT * FROM todo WHERE id = 1;` expect(todoResult.rows.length).toBe(1) expect(todoResult.rows[0]).toEqual({ id: 1, task: `Todo 1`, done: false, }) }, { timeout: 5000 }, ) syncResult.unsubscribe() }) it('cycles through operations with todo and project tables', async () => { // Set up sync for both tables using syncShapesToTables const syncResult = await pg.electric.syncShapesToTables({ key: 'cycle_test', shapes: { todo_shape: { shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], }, project_shape: { shape: { url: ELECTRIC_URL, params: { table: 'project' }, fetchClient, }, table: 'project', primaryKey: ['id'], }, }, }) // Run multiple iterations of the cycle const iterations = 20 for (let i = 1; i <= iterations; i++) { // 1. Insert into todo, check await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (${i * 6 - 5}, 'Todo ${i}.1', false); `) // Wait for todo insert to sync await vi.waitFor( async () => { const todoResult = await pg.sql<{ id: number task: string done: boolean }>`SELECT * FROM todo WHERE id = ${i * 6 - 5};` expect(todoResult.rows.length).toBe(1) expect(todoResult.rows[0]).toEqual({ id: i * 6 - 5, task: `Todo ${i}.1`, done: false, }) }, { timeout: 5000 }, ) // 2. Insert into todo and project in transaction, check await pgClient.query('BEGIN;') await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (${i * 6 - 4}, 'Todo ${i}.2', true); `) await pgClient.query(` INSERT INTO project (id, name, active) VALUES (${i}, 'Project ${i}', true); `) await pgClient.query('COMMIT;') // Wait for transaction to sync await vi.waitFor( async () => { const todoResult = await pg.sql<{ id: number task: string done: boolean }>`SELECT * FROM todo WHERE id = ${i * 6 - 4};` const projectResult = await pg.sql<{ id: number name: string active: boolean }>`SELECT * FROM project WHERE id = ${i};` expect(todoResult.rows).toHaveLength(1) expect(projectResult.rows).toHaveLength(1) }, { timeout: 5000 }, ) // 3. Update todo, check await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (${i * 6 - 3}, 'Todo ${i}.3', false); `) await pgClient.query(` UPDATE todo SET task = 'Updated Todo ${i}.1', done = true WHERE id = ${i * 6 - 5}; `) // Wait for update to sync await vi.waitFor( async () => { const todoResult = await pg.sql<{ id: number task: string done: boolean }>`SELECT * FROM todo WHERE id = ${i * 6 - 5};` expect(todoResult.rows[0]).toEqual({ id: i * 6 - 5, task: `Updated Todo ${i}.1`, done: true, }) }, { timeout: 5000 }, ) // 4. Update project and todo, check await pgClient.query('BEGIN;') await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (${i * 6 - 2}, 'Todo ${i}.4', true); `) await pgClient.query(` UPDATE todo SET task = 'Updated Todo ${i}.2', done = false WHERE id = ${i * 6 - 4}; `) await pgClient.query(` UPDATE project SET name = 'Updated Project ${i}', active = false WHERE id = ${i}; `) await pgClient.query('COMMIT;') // Wait for updates to sync await vi.waitFor( async () => { const todoResult = await pg.sql<{ id: number task: string done: boolean }>`SELECT * FROM todo WHERE id = ${i * 6 - 4};` const projectResult = await pg.sql<{ id: number name: string active: boolean }>`SELECT * FROM project WHERE id = ${i};` expect(todoResult.rows[0].task).toBe(`Updated Todo ${i}.2`) expect(projectResult.rows[0].name).toBe(`Updated Project ${i}`) }, { timeout: 5000 }, ) // 5. Delete a todo, check await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (${i * 6 - 1}, 'Todo ${i}.5', false); `) await pgClient.query(` DELETE FROM todo WHERE id = ${i * 6 - 3}; `) // Wait for delete to sync await vi.waitFor( async () => { const todoResult = await pg.sql<{ id: number task: string done: boolean }>`SELECT * FROM todo WHERE id = ${i * 6 - 3};` expect(todoResult.rows).toHaveLength(0) }, { timeout: 5000 }, ) // 6. Delete the project, check await pgClient.query(` INSERT INTO todo (id, task, done) VALUES (${i * 6}, 'Todo ${i}.6', true); `) await pgClient.query(` DELETE FROM project WHERE id = ${i}; `) // Wait for delete to sync await vi.waitFor( async () => { const projectResult = await pg.sql<{ id: number name: string active: boolean }>`SELECT * FROM project WHERE id = ${i};` expect(projectResult.rows).toHaveLength(0) }, { timeout: 5000 }, ) // Verify that after each iteration: // - project count is 0 // - todo count increases by 1 (we add 6 todos and delete 1 per iteration) const projectCount = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM project;` const todoCount = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` expect(projectCount.rows[0].count).toBe(0) expect(todoCount.rows[0].count).toBe(i * 5) // 6 inserts - 1 delete per iteration } // Clean up syncResult.unsubscribe() await pg.electric.deleteSubscription('cycle_test') }, 30000) // allow 30 seconds to run this test as it is long const types_syncer = async (initialInsertMethod: InitialInsertMethod) => { // Test data for different data types const testData = [ { id: 1, int_col: 42, float_col: 3.14159, boolean_col: true, string_col: 'Hello, world!', json_col: { name: 'Test', nested: { value: 123 }, array: [1, 2, 3] }, json_plain_col: { type: 'JSON', different: 'from JSONB', nums: [42, 43], }, int_array_col: [1, 2, 3], enum_col: 'one', }, { id: 2, int_col: -100, float_col: -0.5, boolean_col: false, string_col: 'Special chars: \n\t"\'\\', json_col: { empty: {}, list: [] }, json_plain_col: { empty_arr: [], value: null }, int_array_col: [4, 5, 6], enum_col: 'two', }, { id: 3, int_col: 0, float_col: 0.0, boolean_col: true, string_col: '', json_col: null, json_plain_col: null, int_array_col: [7, 8, 9], enum_col: 'three', }, ] // Insert data into PostgreSQL for (const row of testData) { await pgClient.query( `INSERT INTO data_types_table (id, int_col, float_col, boolean_col, string_col, json_col, json_plain_col, int_array_col, enum_col) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)`, [ row.id, row.int_col, row.float_col, row.boolean_col, row.string_col, row.json_col, row.json_plain_col, row.int_array_col, row.enum_col, ], ) } // Set up sync const shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'data_types_table' }, fetchClient, }, table: 'data_types_table', initialInsertMethod, primaryKey: ['id'], shapeKey: 'data_types_test', }) // Wait for sync to complete await vi.waitFor( async () => { const result = await pg.sql<{ count: number }>` SELECT COUNT(*) as count FROM data_types_table; ` expect(result.rows[0].count).toBe(testData.length) }, { timeout: 5000 }, ) // Define the row type for type safety type DataTypeRow = { id: number int_col: number float_col: string boolean_col: boolean string_col: string json_col: any json_plain_col: any int_array_col: number[] enum_col: 'one' | 'two' | 'three' } // Verify data was synced correctly for (const expected of testData) { const result = await pg.sql` SELECT * FROM data_types_table WHERE id = ${expected.id}; ` const row = result.rows[0] expect(row.id).toBe(expected.id) expect(row.int_col).toBe(expected.int_col) // Float comparison needs to account for potential precision differences expect( Math.abs(parseFloat(row.float_col) - expected.float_col), ).toBeLessThan(0.00001) expect(row.boolean_col).toBe(expected.boolean_col) expect(row.string_col).toBe(expected.string_col) // JSON data might be serialized differently but should be equivalent if (expected.json_col === null) { expect(row.json_col).toBeNull() } else { expect(row.json_col).toStrictEqual(expected.json_col) } // Plain JSON data should also be properly synced if (expected.json_plain_col === null) { expect(row.json_plain_col).toBeNull() } else { expect(row.json_plain_col).toStrictEqual(expected.json_plain_col) } expect(row.int_array_col).toStrictEqual(expected.int_array_col) expect(row.enum_col).toBe(expected.enum_col) } // Update a row with new values for all columns await pgClient.query( `UPDATE data_types_table SET int_col = $1, float_col = $2, boolean_col = $3, string_col = $4, json_col = $5, json_plain_col = $6, int_array_col = $7, enum_col = $8 WHERE id = 1`, [ 99999, 1234.5678, false, 'Updated text value', { updated: true, values: [4, 5, 6] }, { updated: 'plainJSON', order: { might: 'matter' } }, [3, 4, 5], 'two', ], ) // Wait for update to sync await vi.waitFor( async () => { const result = await pg.sql<{ int_col: number }>` SELECT int_col FROM data_types_table WHERE id = 1; ` expect(result.rows[0].int_col).toBe(99999) }, { timeout: 5000 }, ) // Verify updated data const updatedResult = await pg.sql` SELECT * FROM data_types_table WHERE id = 1; ` const updated = updatedResult.rows[0] expect(updated.int_col).toBe(99999) expect(Math.abs(parseFloat(updated.float_col) - 1234.5678)).toBeLessThan( 0.00001, ) expect(updated.boolean_col).toBe(false) expect(updated.string_col).toBe('Updated text value') expect(updated.json_col).toStrictEqual({ updated: true, values: [4, 5, 6] }) expect(updated.json_plain_col).toStrictEqual({ updated: 'plainJSON', order: { might: 'matter' }, }) expect(updated.int_array_col).toStrictEqual([3, 4, 5]) expect(updated.enum_col).toBe('two') // Clean up shape.unsubscribe() await pg.electric.deleteSubscription('data_types_test') } // FIXME: fails... // it('syncs data with various column types initial COPY', async () => { // await types_syncer('csv') // }, 60000) it('syncs data with various column types initial json_to_recordset', async () => { await types_syncer('json') }, 60000) it('syncs data with various column types', async () => { await types_syncer('insert') }, 60000) const many_syncer = async ( method: InitialInsertMethod | 'useCopy', numTodos: number = 150000, rowSize: number = 100, ) => { // Batch the inserts to Postgres const batchSize = 1000 const batches = Math.ceil(numTodos / batchSize) const rowBytesValue = 'a'.repeat(rowSize) for (let batch = 0; batch < batches; batch++) { const start = batch * batchSize const end = Math.min(start + batchSize, numTodos) // Build a batch of INSERT statements using a VALUES list for better performance const values: string[] = [] const params: (number | string | boolean)[] = [] let paramIndex = 1 for (let i = start; i < end; i++) { values.push(`($${paramIndex}, $${paramIndex + 1}, $${paramIndex + 2})`) params.push(i, `Todo ${i} ${rowBytesValue}`, i % 3 === 0) // id, task, done paramIndex += 3 } const query = ` INSERT INTO todo (id, task, done) VALUES ${values.join(', ')}; ` await pgClient.query(query, params) } // We want to test the deprecated useCopy option, but also the new initialInsertMethod option let useCopy: boolean | undefined = undefined let initialInsertMethod: InitialInsertMethod | undefined = undefined if (method === 'useCopy') { useCopy = true initialInsertMethod = undefined } else { initialInsertMethod = method } // Set up sync with COPY enabled for efficiency const shape = await pg.electric.syncShapeToTable({ shape: { url: ELECTRIC_URL, params: { table: 'todo' }, fetchClient, }, table: 'todo', primaryKey: ['id'], useCopy, initialInsertMethod, shapeKey: 'large_todo_sync_test', }) // Wait for all data to be synced - increase timeout for large dataset await vi.waitFor( async () => { const result = await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;` expect(result.rows[0].count).toBe(numTodos) }, { timeout: 30000 }, ) // Verify some sample data points const firstRow = await pg.sql`SELECT * FROM todo WHERE id = 0;` expect(firstRow.rows[0]).toEqual({ id: 0, task: `Todo 0 ${rowBytesValue}`, done: true, // 0 % 3 === 0 }) const middleRowId = Math.floor(numTodos / 2) const middleRow = await pg.sql`SELECT * FROM todo WHERE id = ${middleRowId};` expect(middleRow.rows[0]).toEqual({ id: middleRowId, task: `Todo ${middleRowId} ${rowBytesValue}`, done: middleRowId % 3 === 0, }) const lastRow = await pg.sql`SELECT * FROM todo WHERE id = ${numTodos - 1};` expect(lastRow.rows[0]).toEqual({ id: numTodos - 1, task: `Todo ${numTodos - 1} ${rowBytesValue}`, done: (numTodos - 1) % 3 === 0, }) // Test that we can still perform operations after the large sync await pgClient.query(` UPDATE todo SET task = 'Updated after sync' WHERE id = 0; `) // Wait for update to sync await vi.waitFor( async () => { const result = await pg.sql<{ task: string }>`SELECT task FROM todo WHERE id = 0;` expect(result.rows[0].task).toBe('Updated after sync') }, { timeout: 5000 }, ) // Clean up shape.unsubscribe() await pg.electric.deleteSubscription('large_todo_sync_test') } for (const numTodos of [20_000, 150_000, 300_000]) { const rowSizeOptions = numTodos <= 20_000 ? [100, 10000] : [100] // 20_000 row of 100000 bytes triggers the batching by size for inserts for (const rowSize of rowSizeOptions) { describe(`handles initial sync of ${numTodos} rows`, () => { describe(`with row size ${rowSize} bytes`, () => { it(`with insert`, async () => { await many_syncer('insert', numTodos, rowSize) }, 360000) if (numTodos <= 150_000) { it(`with COPY`, async () => { await many_syncer('csv', numTodos, rowSize) }, 60000) it(`with json_to_recordset`, async () => { await many_syncer('json', numTodos, rowSize) }, 60000) } if (numTodos <= 20_000) { it(`with the deprecated useCopy option`, async () => { await many_syncer('useCopy', numTodos) }, 60000) } }) }) } } }) ================================================ FILE: packages/pglite-sync/tsconfig.json ================================================ { "extends": "../../tsconfig.json", "include": [ "src", "test", "eslint.config.js", "test-setup.ts", "tsup.config.js", "vitest.config.ts" ] } ================================================ FILE: packages/pglite-sync/tsup.config.ts ================================================ import { defineConfig } from 'tsup' const minify = process.env.DEBUG === 'true' ? false : true export default defineConfig([ { entry: ['src/index.ts'], format: ['cjs', 'esm'], outDir: 'dist', dts: true, minify: minify, sourcemap: true, clean: true, }, ]) ================================================ FILE: packages/pglite-sync/vitest-e2e.config.ts ================================================ import { defineConfig } from 'vitest/config' export default defineConfig({ test: { name: 'pglite-sync-e2e', dir: './test-e2e', watch: false, typecheck: { enabled: true }, testTimeout: 30000, hookTimeout: 30000, restoreMocks: true, testTransformMode: { ssr: ['**/*'], }, }, }) ================================================ FILE: packages/pglite-sync/vitest.config.ts ================================================ import { defineConfig } from 'vitest/config' export default defineConfig({ test: { name: 'pglite-sync', dir: './test', watch: false, typecheck: { enabled: true }, testTimeout: 30000, hookTimeout: 30000, restoreMocks: true, testTransformMode: { ssr: ['**/*'], }, }, }) ================================================ FILE: packages/pglite-tools/.gitignore ================================================ release/ ================================================ FILE: packages/pglite-tools/CHANGELOG.md ================================================ # @electric-sql/pglite-tools ## 0.3.1 ### Patch Changes - Updated dependencies [37fb39e] - @electric-sql/pglite@0.4.1 ## 0.3.0 ### Minor Changes - Updated dependencies [d848955] - @electric-sql/pglite@0.4.0 ## 0.2.21 ### Patch Changes - Updated dependencies [3dfa40f] - @electric-sql/pglite@0.3.16 ## 0.2.20 ### Patch Changes - Updated dependencies [45bff97] - Updated dependencies [5ec474f] - @electric-sql/pglite@0.3.15 ## 0.2.19 ### Patch Changes - Updated dependencies [8785034] - Updated dependencies [90cfee8] - @electric-sql/pglite@0.3.14 ## 0.2.18 ### Patch Changes - ad3d0d8: Updated pg_dump to use callback data exchange; built pg_dump with emscripten - Updated dependencies [ad3d0d8] - @electric-sql/pglite@0.3.13 ## 0.2.17 ### Patch Changes - Updated dependencies [ce0e74e] - @electric-sql/pglite@0.3.12 ## 0.2.16 ### Patch Changes - Updated dependencies [9a104b9] - @electric-sql/pglite@0.3.11 ## 0.2.15 ### Patch Changes - Updated dependencies [ad765ed] - @electric-sql/pglite@0.3.10 ## 0.2.14 ### Patch Changes - e40ccad: Upgrade emsdk - Updated dependencies [e40ccad] - @electric-sql/pglite@0.3.9 ## 0.2.13 ### Patch Changes - be677b4: fix pg_dump on Windows systems When calling **pg_dump** on Windows system the function fails with an error as the one bellow. ❗ Notice the double drive letter `Error: ENOENT: no such file or directory, open 'E:\C:\Users\\AppData\Local\npm-cache\_npx\ba4f1959e38407b5\node_modules\@electric-sql\pglite-tools\dist\pg_dump.wasm'` The problem is in execPgDump function at line `const blob = await fs.readFile(bin.toString().slice(7))` 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. Moreover this will fail on Windows becase the slice creates a path like '/C:/...' and the readFile function will add the extra drive letter - Updated dependencies [f12a582] - Updated dependencies [bd263aa] - @electric-sql/pglite@0.3.8 ## 0.2.12 ### Patch Changes - Updated dependencies [0936962] - @electric-sql/pglite@0.3.7 ## 0.2.11 ### Patch Changes - Updated dependencies [6898469] - Updated dependencies [469be18] - Updated dependencies [64e33c7] - @electric-sql/pglite@0.3.6 ## 0.2.10 ### Patch Changes - 8172b72: new pg_dump wasm blob - Updated dependencies [6653899] - Updated dependencies [5f007fc] - @electric-sql/pglite@0.3.5 ## 0.2.9 ### Patch Changes - 38a55d0: fix cjs/esm misconfigurations - Updated dependencies [1fcaa3e] - Updated dependencies [38a55d0] - Updated dependencies [aac7003] - Updated dependencies [8ca254d] - @electric-sql/pglite@0.3.4 ## 0.2.8 ### Patch Changes - Updated dependencies [ea2c7c7] - @electric-sql/pglite@0.3.3 ## 0.2.7 ### Patch Changes - Updated dependencies [e2c654b] - @electric-sql/pglite@0.3.2 ## 0.2.6 ### Patch Changes - Updated dependencies [713364e] - @electric-sql/pglite@0.3.1 ## 0.2.5 ### Patch Changes - 317fd36: Specify a peer dependency range on @electric-sql/pglite - Updated dependencies [97e52f7] - Updated dependencies [4356024] - Updated dependencies [0033bc7] - @electric-sql/pglite@0.3.0 ## 0.2.4 ### Patch Changes - bbfa9f1: Restore SEARCH_PATH after pg_dump ## 0.2.3 ### Patch Changes - 8545760: pg_dump error messages set on the thrown Error - d26e658: Run a DEALLOCATE ALL after each pg_dump to cleanup the prepared statements. ## 0.2.2 ### Patch Changes - 17c9875: add node imports to the package.json browser excludes ## 0.2.1 ### Patch Changes - 6547374: Alpha version of pg_dump support in the browser and Node using a WASM build of pg_dump ================================================ FILE: packages/pglite-tools/README.md ================================================ # pglite-tools A selection of tools for working with [PGlite](https://github.com/electric-sql/pglite) databases, including pg_dump. Install with: ```bash npm install @electric-sql/pglite-tools ``` ## `pgDump` pg_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). Note: 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. ### Options - `pg`: A PGlite instance. - `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. - `fileName`: The name of the file to write the dump to, defaults to `dump.sql`. There are a number of arguments that are automatically added to the end of the command, these are: - `--inserts` - use inserts format for the output, this ensures that the dump can be restored by simply passing the output to `pg.exec()`. - `-j 1` - concurrency level, set to 1 as multithreading isn't supported. - `-f /tmp/out.sql` - the output file is always written to `/tmp/out.sql` in the virtual file system. - `-U postgres` - use the postgres user is hard coded. ### Returns - A `File` object containing the dump. ### Caveats - After restoring a dump, you might want to set the same search path as the initial db. ### Example ```typescript import { PGlite } from '@electric-sql/pglite' import { pgDump } from '@electric-sql/pglite-tools/pg_dump' const pg = await PGlite.create() // Create a table and insert some data await pg.exec(` CREATE TABLE test ( id SERIAL PRIMARY KEY, name TEXT ); `) await pg.exec(` INSERT INTO test (name) VALUES ('test'); `) // store the current search path so it can be used in the restored db const initialSearchPath = (await pg1.query<{ search_path: string }>('SHOW SEARCH_PATH;')).rows[0].search_path // Dump the database to a file const dump = await pgDump({ pg }) // Get the dump text - used for restore const dumpContent = await dump.text() // Create a new database const restoredPG = await PGlite.create() // ... and restore it using the dump await restoredPG.exec(dumpContent) // optional - after importing, set search path back to the initial one await restoredPG.exec(`SET search_path TO ${initialSearchPath};`); ``` ================================================ FILE: packages/pglite-tools/eslint.config.js ================================================ import globals from 'globals' import rootConfig from '../../eslint.config.js' export default [ ...rootConfig, { ignores: ['release/**/*', 'examples/**/*', 'dist/**/*'], }, { languageOptions: { globals: { ...globals.browser, ...globals.node, }, }, rules: { ...rootConfig.rules, '@typescript-eslint/no-explicit-any': 'off', }, }, { files: ['tests/targets/deno/**/*.js'], languageOptions: { globals: { Deno: false, }, }, }, ] ================================================ FILE: packages/pglite-tools/package.json ================================================ { "name": "@electric-sql/pglite-tools", "version": "0.3.1", "description": "Tools for working with PGlite databases", "author": "Electric DB Limited", "homepage": "https://pglite.dev", "license": "Apache-2.0", "repository": { "type": "git", "url": "git+https://github.com/electric-sql/pglite", "directory": "packages/pglite-tools" }, "keywords": [ "postgres", "sql", "database", "wasm", "pglite", "pg_dump", "pg_restore" ], "private": false, "publishConfig": { "access": "public" }, "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } }, "./pg_dump": { "import": { "types": "./dist/pg_dump.d.ts", "default": "./dist/pg_dump.js" }, "require": { "types": "./dist/pg_dump.d.cts", "default": "./dist/pg_dump.cjs" } } }, "scripts": { "build": "tsup", "check:exports": "attw . --pack --profile node16", "lint": "eslint ./src ./tests --report-unused-disable-directives --max-warnings 0", "format": "prettier --write ./src ./tests", "typecheck": "tsc", "stylecheck": "pnpm lint && prettier --check ./src ./tests", "test": "vitest", "prepublishOnly": "pnpm check:exports" }, "browser": { "fs": false, "fs/promises": false }, "devDependencies": { "@arethetypeswrong/cli": "^0.18.1", "@electric-sql/pglite": "workspace:*", "@types/emscripten": "^1.41.1", "@types/node": "^20.16.11", "tsx": "^4.19.2", "vitest": "^1.3.1" }, "peerDependencies": { "@electric-sql/pglite": "workspace:0.4.1" } } ================================================ FILE: packages/pglite-tools/src/index.ts ================================================ export * from './pg_dump' ================================================ FILE: packages/pglite-tools/src/pgDumpModFactory.ts ================================================ import PgDumpModFactory from '../release/pg_dump' type IDBFS = Emscripten.FileSystemType & { quit: () => void dbs: Record } export type FS = typeof FS & { filesystems: { MEMFS: Emscripten.FileSystemType NODEFS: Emscripten.FileSystemType IDBFS: IDBFS } quit: () => void } export interface PgDumpMod extends Omit { preInit: Array<{ (mod: PgDumpMod): void }> preRun: Array<{ (mod: PgDumpMod): void }> postRun: Array<{ (mod: PgDumpMod): void }> FS: FS WASM_PREFIX: string INITIAL_MEMORY: number _pgl_set_rw_cbs: (read_cb: number, write_cb: number) => void addFunction: ( cb: (ptr: any, length: number) => void, signature: string, ) => number removeFunction: (f: number) => void onExit: (status: number) => void print: (test: string) => void printErr: (text: string) => void callMain: (args?: string[]) => number } type PgDumpFactory = ( moduleOverrides?: Partial, ) => Promise export default PgDumpModFactory as PgDumpFactory ================================================ FILE: packages/pglite-tools/src/pg_dump.ts ================================================ import { PGlite } from '@electric-sql/pglite' import PgDumpModFactory, { PgDumpMod } from './pgDumpModFactory' const dumpFilePath = '/tmp/out.sql' /** * Creates a new Uint8Array based on two different ArrayBuffers * * @private * @param {ArrayBuffers} buffer1 The first buffer. * @param {ArrayBuffers} buffer2 The second buffer. * @return {ArrayBuffers} The new ArrayBuffer created out of the two. */ function concat(buffer1: ArrayBuffer, buffer2: ArrayBuffer) { const tmp = new Uint8Array(buffer1.byteLength + buffer2.byteLength) tmp.set(new Uint8Array(buffer1), 0) tmp.set(new Uint8Array(buffer2), buffer1.byteLength) return tmp } interface ExecResult { exitCode: number fileContents: string stderr: string stdout: string } /** * Inner function to execute pg_dump */ async function execPgDump({ pg, args, }: { pg: PGlite args: string[] }): Promise { let pgdump_write, pgdump_read let exitCode = 0 let stderrOutput: string = '' let stdoutOutput: string = '' const emscriptenOpts: Partial = { noExitRuntime: false, print: (text) => { stdoutOutput += text }, printErr: (text) => { stderrOutput += text }, onExit: (status: number) => { exitCode = status }, preRun: [ (mod: PgDumpMod) => { mod.onRuntimeInitialized = () => { let bufferedBytes: Uint8Array = new Uint8Array() pgdump_write = mod.addFunction((ptr: any, length: number) => { let bytes try { bytes = mod.HEAPU8.subarray(ptr, ptr + length) } catch (e: any) { console.error('error', e) throw e } const currentResponse = pg.execProtocolRawSync(bytes) bufferedBytes = concat(bufferedBytes, currentResponse) return length }, 'iii') pgdump_read = mod.addFunction((ptr: any, max_length: number) => { let length = bufferedBytes.length if (length > max_length) { length = max_length } try { mod.HEAP8.set(bufferedBytes.subarray(0, length), ptr) } catch (e) { console.error(e) } bufferedBytes = bufferedBytes.subarray(length, bufferedBytes.length) return length }, 'iii') mod._pgl_set_rw_cbs(pgdump_read, pgdump_write) // default $HOME in emscripten is /home/web_user mod.FS.chmod('/home/web_user/.pgpass', 0o0600) // https://www.postgresql.org/docs/current/libpq-pgpass.html } }, ], } const mod = await PgDumpModFactory(emscriptenOpts) mod.callMain(args) let fileContents = '' if (!exitCode) { fileContents = mod.FS.readFile(dumpFilePath, { encoding: 'utf8' }) } return { exitCode, fileContents, stderr: stderrOutput, stdout: stdoutOutput, } } interface PgDumpOptions { pg: PGlite args?: string[] database?: string fileName?: string verbose?: boolean } /** * Execute pg_dump * @param pg - The PGlite instance * @param args - The arguments to pass to pg_dump * @param fileName - The name of the file to write the dump to (dump.sql by default) * @returns The file containing the dump */ export async function pgDump({ pg, args, fileName = 'dump.sql', }: PgDumpOptions) { const getSearchPath = await pg.query<{ search_path: string }>( 'SHOW SEARCH_PATH;', ) const searchPath = getSearchPath.rows[0].search_path const baseArgs = [ '-U', 'web_user', '--inserts', '-j', '1', '-f', dumpFilePath, ] const execResult = await execPgDump({ pg, args: [...(args ?? []), ...baseArgs], }) await pg.exec(`DEALLOCATE ALL`) await pg.exec(`SET SEARCH_PATH = ${searchPath}`) const newSearchPath = await pg.query<{ search_path: string }>( 'SHOW SEARCH_PATH;', ) if (newSearchPath.rows[0].search_path !== searchPath) { console.warn( `Warning: search_path has been changed from ${searchPath} to ${newSearchPath}`, searchPath, newSearchPath, ) } if (execResult.exitCode !== 0) { throw new Error( `pg_dump failed with exit code ${execResult.exitCode}. \nError message: ${execResult.stderr}`, ) } const file = new File([execResult.fileContents], fileName, { type: 'text/plain', }) return file } ================================================ FILE: packages/pglite-tools/tests/pg_dump.test.ts ================================================ import { describe, it, expect } from 'vitest' import { PGlite } from '@electric-sql/pglite' import { pgDump } from '../dist/pg_dump.js' import * as fs from 'fs/promises' describe('pgDump', () => { it('should dump an empty database', async () => { const pg = await PGlite.create() const dump = await pgDump({ pg }) expect(dump).toBeInstanceOf(File) expect(dump.name).toBe('dump.sql') const content = await dump.text() expect(content).toContain('PostgreSQL database dump') }) it('should dump an empty database multiple times', async () => { const pg = await PGlite.create() for (let i = 0; i < 5; i++) { const fileName = `dump_${i}.sql` const dump = await pgDump({ pg, fileName }) expect(dump).toBeInstanceOf(File) expect(dump.name).toBe(fileName) const content = await dump.text() expect(content).toContain('PostgreSQL database dump') } }) it('should dump a database with tables and data', async () => { const pg = await PGlite.create() // Create test tables and insert data await pg.exec(` CREATE TABLE test1 ( id SERIAL PRIMARY KEY, name TEXT ); INSERT INTO test1 (name) VALUES ('test1-row1'); CREATE TABLE test2 ( id SERIAL PRIMARY KEY, value INTEGER ); INSERT INTO test2 (value) VALUES (42); `) const dump = await pgDump({ pg }) const content = await dump.text() // Check for table creation expect(content).toContain('CREATE TABLE public.test1') expect(content).toContain('CREATE TABLE public.test2') // Check for data inserts expect(content).toContain('INSERT INTO public.test1') expect(content).toContain("'test1-row1'") expect(content).toContain('INSERT INTO public.test2') expect(content).toContain('42') }) it('should respect custom filename', async () => { const pg = await PGlite.create() const dump = await pgDump({ pg, fileName: 'custom.sql' }) expect(dump.name).toBe('custom.sql') }) it('should handle custom pg_dump arguments', async () => { const pg = await PGlite.create() await pg.exec(` CREATE TABLE test (id SERIAL PRIMARY KEY, name TEXT); INSERT INTO test (name) VALUES ('row1'); `) // Use --schema-only to exclude data const dump = await pgDump({ pg, args: ['--schema-only'] }) const content = await dump.text() expect(content).toContain('CREATE TABLE public.test') expect(content).not.toContain('INSERT INTO public.test') }) it('should be able to restore dumped database', async () => { const pg1 = await PGlite.create() // Create original database await pg1.exec(` CREATE TABLE test (id SERIAL PRIMARY KEY, name TEXT); INSERT INTO test (name) VALUES ('row1'), ('row2'); `) const initialSearchPath = ( await pg1.query<{ search_path: string }>('SHOW SEARCH_PATH;') ).rows[0].search_path // Dump database const dump = await pgDump({ pg: pg1 }) const dumpContent = await dump.text() // Create new database and restore const pg2 = await PGlite.create() await pg2.exec(dumpContent) // after importing, set search path back to the initial one await pg2.exec(`SET search_path TO ${initialSearchPath};`) // Verify data const result = await pg2.query<{ name: string }>( 'SELECT * FROM test ORDER BY id', ) expect(result.rows).toHaveLength(2) expect(result.rows[0].name).toBe('row1') expect(result.rows[1].name).toBe('row2') }) it('pg_dump should not change SEARCH_PATH', async () => { const pg = await PGlite.create() await pg.exec(`SET SEARCH_PATH = amigo;`) const initialSearchPath = await pg.query('SHOW SEARCH_PATH;') const dump = await pgDump({ pg }) await dump.text() const finalSearchPath = await pg.query('SHOW SEARCH_PATH;') expect(initialSearchPath).toEqual(finalSearchPath) }) it('specify datadir: should dump a database with tables and data', async () => { const dataDir = '/tmp/pg_dump_pglite_data_dir' await fs.rm(dataDir, { force: true, recursive: true }) const pg = await PGlite.create({ dataDir: dataDir, }) // Create test tables and insert data await pg.exec(` CREATE TABLE test1 ( id SERIAL PRIMARY KEY, name TEXT ); INSERT INTO test1 (name) VALUES ('test1-row1'); CREATE TABLE test2 ( id SERIAL PRIMARY KEY, value INTEGER ); INSERT INTO test2 (value) VALUES (42); `) const dump = await pgDump({ pg }) const content = await dump.text() // Check for table creation expect(content).toContain('CREATE TABLE public.test1') expect(content).toContain('CREATE TABLE public.test2') // Check for data inserts expect(content).toContain('INSERT INTO public.test1') expect(content).toContain("'test1-row1'") expect(content).toContain('INSERT INTO public.test2') expect(content).toContain('42') }) it('param --quote-all-identifiers should work', async () => { const pg = await PGlite.create() // Create test tables and insert data await pg.exec(` CREATE TABLE test1 ( id SERIAL PRIMARY KEY, name TEXT ); INSERT INTO test1 (name) VALUES ('test1-row1'); CREATE TABLE test2 ( id SERIAL PRIMARY KEY, value INTEGER ); INSERT INTO test2 (value) VALUES (42); `) const dump = await pgDump({ pg, args: ['--quote-all-identifiers'] }) const content = await dump.text() // Check for table creation expect(content).toContain('CREATE TABLE "public"."test1"') expect(content).toContain('CREATE TABLE "public"."test2"') // Check for data inserts expect(content).toContain('INSERT INTO "public"."test1"') expect(content).toContain("'test1-row1'") expect(content).toContain('INSERT INTO "public"."test2"') expect(content).toContain('42') }) }) ================================================ FILE: packages/pglite-tools/tests/setup.ts ================================================ import { beforeAll } from 'vitest' import { execSync } from 'child_process' import { existsSync } from 'fs' import { join } from 'path' beforeAll(() => { // Check if we need to build const distPath = join(__dirname, '../dist') const wasmPath = join(distPath, 'pg_dump.wasm') if (!existsSync(wasmPath)) { console.log('Building project before running tests...') execSync('pnpm build', { stdio: 'inherit' }) } }) ================================================ FILE: packages/pglite-tools/tsconfig.json ================================================ { "extends": "../../tsconfig.json", "compilerOptions": { "types": [ "@types/emscripten", "node" ] }, "include": ["src", "tsup.config.ts", "vitest.config.ts"] } ================================================ FILE: packages/pglite-tools/tsup.config.ts ================================================ import { cpSync } from 'fs' import { resolve } from 'path' import { defineConfig } from 'tsup' const entryPoints = [ 'src/index.ts', 'src/pg_dump.ts', ] const minify = process.env.DEBUG === 'true' ? false : true export default defineConfig([ { entry: entryPoints, sourcemap: true, dts: { entry: entryPoints, resolve: true, }, clean: true, minify: minify, shims: true, format: ['esm', 'cjs'], onSuccess: async () => { cpSync(resolve('release/pg_dump.wasm'), resolve('dist/pg_dump.wasm')) } }, ]) ================================================ FILE: packages/pglite-tools/vitest.config.ts ================================================ import { defineConfig } from 'vitest/config' export default defineConfig({ test: { globals: true, environment: 'node', testTimeout: 30000, setupFiles: ['./tests/setup.ts'], }, }) ================================================ FILE: packages/pglite-vue/.gitignore ================================================ dist node_modules ================================================ FILE: packages/pglite-vue/CHANGELOG.md ================================================ # @electric-sql/pglite-vue ## 0.3.1 ### Patch Changes - Updated dependencies [37fb39e] - @electric-sql/pglite@0.4.1 ## 0.3.0 ### Minor Changes - Updated dependencies [d848955] - @electric-sql/pglite@0.4.0 ## 0.2.34 ### Patch Changes - Updated dependencies [3dfa40f] - @electric-sql/pglite@0.3.16 ## 0.2.33 ### Patch Changes - Updated dependencies [45bff97] - Updated dependencies [5ec474f] - @electric-sql/pglite@0.3.15 ## 0.2.32 ### Patch Changes - Updated dependencies [8785034] - Updated dependencies [90cfee8] - @electric-sql/pglite@0.3.14 ## 0.2.31 ### Patch Changes - Updated dependencies [ad3d0d8] - @electric-sql/pglite@0.3.13 ## 0.2.30 ### Patch Changes - Updated dependencies [ce0e74e] - @electric-sql/pglite@0.3.12 ## 0.2.29 ### Patch Changes - Updated dependencies [9a104b9] - @electric-sql/pglite@0.3.11 ## 0.2.28 ### Patch Changes - Updated dependencies [ad765ed] - @electric-sql/pglite@0.3.10 ## 0.2.27 ### Patch Changes - Updated dependencies [e40ccad] - @electric-sql/pglite@0.3.9 ## 0.2.26 ### Patch Changes - Updated dependencies [f12a582] - Updated dependencies [bd263aa] - @electric-sql/pglite@0.3.8 ## 0.2.25 ### Patch Changes - Updated dependencies [0936962] - @electric-sql/pglite@0.3.7 ## 0.2.24 ### Patch Changes - Updated dependencies [6898469] - Updated dependencies [469be18] - Updated dependencies [64e33c7] - @electric-sql/pglite@0.3.6 ## 0.2.23 ### Patch Changes - Updated dependencies [6653899] - Updated dependencies [5f007fc] - @electric-sql/pglite@0.3.5 ## 0.2.22 ### Patch Changes - 38a55d0: fix cjs/esm misconfigurations - Updated dependencies [1fcaa3e] - Updated dependencies [38a55d0] - Updated dependencies [aac7003] - Updated dependencies [8ca254d] - @electric-sql/pglite@0.3.4 ## 0.2.21 ### Patch Changes - Updated dependencies [ea2c7c7] - @electric-sql/pglite@0.3.3 ## 0.2.20 ### Patch Changes - Updated dependencies [e2c654b] - @electric-sql/pglite@0.3.2 ## 0.2.19 ### Patch Changes - Updated dependencies [713364e] - @electric-sql/pglite@0.3.1 ## 0.2.18 ### Patch Changes - 317fd36: Specify a peer dependency range on @electric-sql/pglite - Updated dependencies [97e52f7] - Updated dependencies [4356024] - Updated dependencies [0033bc7] - @electric-sql/pglite@0.3.0 ## 0.2.17 ### Patch Changes - Updated dependencies [6bdd74e] - Updated dependencies [f94d591] - @electric-sql/pglite@0.2.17 ## 0.2.16 ### Patch Changes - 7ce9f04: Fix Vue useLiveQuery to allow no parameters to be provided - Updated dependencies [c36fd09] - Updated dependencies [e037883] - Updated dependencies [d6b981b] - Updated dependencies [17e7664] - Updated dependencies [118ba3e] - Updated dependencies [d93c1bb] - Updated dependencies [ddd4a68] - Updated dependencies [f3f1103] - Updated dependencies [67fb2aa] - @electric-sql/pglite@0.2.16 ## 0.2.15 ### Patch Changes - Updated dependencies [fa13714] - @electric-sql/pglite@0.2.15 ## 0.2.14 ### Patch Changes - Updated dependencies [6547374] - Updated dependencies [6547374] - Updated dependencies [df5c290] - Updated dependencies [1784d04] - Updated dependencies [ae36974] - Updated dependencies [75f9f6d] - Updated dependencies [ce212cf] - @electric-sql/pglite@0.2.14 ## 0.2.13 ### Patch Changes - 3d8efbb: Bump dependencies to address Dependabot alerts - Updated dependencies [5e39036] - Updated dependencies [3d8efbb] - Updated dependencies [1844b10] - Updated dependencies [79e6082] - Updated dependencies [16d2296] - Updated dependencies [cf50f47] - Updated dependencies [bd1b3b9] - Updated dependencies [5e39036] - Updated dependencies [16d2296] - Updated dependencies [e9bd9a7] - Updated dependencies [c442c88] - @electric-sql/pglite@0.2.13 ## 0.2.12 ### Patch Changes - Updated dependencies [1495625] - Updated dependencies [d3905cf] - Updated dependencies [1f036dc] - Updated dependencies [52ddcb0] - @electric-sql/pglite@0.2.12 ## 0.2.11 ### Patch Changes - Updated dependencies [2aed553] - @electric-sql/pglite@0.2.11 ## 0.2.10 ### Patch Changes - Updated dependencies [3113d56] - Updated dependencies [23cd31a] - @electric-sql/pglite@0.2.10 ## 0.2.9 ### Patch Changes - Updated dependencies [20008c2] - Updated dependencies [a5712a8] - @electric-sql/pglite@0.2.9 ## 0.2.8 ### Patch Changes - b6e963c: fix: add export providePGlite and injectPGlite - Updated dependencies [53ec60e] - Updated dependencies [880b60d] - Updated dependencies [058ed7c] - Updated dependencies [2831c34] - Updated dependencies [880b60d] - Updated dependencies [880b60d] - Updated dependencies [4aeb677] - Updated dependencies [19b3529] - @electric-sql/pglite@0.2.8 ## 0.2.7 ### Patch Changes - Updated dependencies [5e65236] - Updated dependencies [5e65236] - @electric-sql/pglite@0.2.7 ## 0.2.6 ### Patch Changes - Updated dependencies [09b356c] - Updated dependencies [4238595] - Updated dependencies [ef57e10] - @electric-sql/pglite@0.2.6 ## 0.2.5 ### Patch Changes - fcb101c: Add `useLiveQuery.sql` hook for SQL string templating. - Updated dependencies [fcb101c] - Updated dependencies [3ee5e60] - Updated dependencies [0dc34af] - @electric-sql/pglite@0.2.5 ## 0.2.4 ### Patch Changes - Updated dependencies [113aa56] - @electric-sql/pglite@0.2.4 ## 0.2.3 ### Patch Changes - Updated dependencies [d8ef285] - @electric-sql/pglite@0.2.3 ## 0.2.2 ### Patch Changes - Updated dependencies [be41880] - @electric-sql/pglite@0.2.2 ## 0.2.1 ### Patch Changes - 446c2df: Include both utility for typed injection and static injectors. - Updated dependencies [2cc39ff] - @electric-sql/pglite@0.2.1 ================================================ FILE: packages/pglite-vue/README.md ================================================ # PGlite Vue Bindings This 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). To install: ```sh npm install @electric-sql/pglite-vue ``` The hooks this package provides are: - [providePGlite](https://pglite.dev/docs/framework-hooks/vue#providepglite): Provide a PGlite instance to all child components. - [injectPGlite](https://pglite.dev/docs/framework-hooks/vue#injectpglite): Retrieve the provided PGlite instance. - [makePGliteDependencyInjector](https://pglite.dev/docs/framework-hooks/vue#makepglitedependencyinjector): Utility to create a typed version of `providePGlite` and `injectPGlite`. - [useLiveQuery](https://pglite.dev/docs/framework-hooks/vue#uselivequery): Reactively receive results of a live query change - [useLiveIncrementalQuery](https://pglite.dev/docs/framework-hooks/vue#useliveincrementalquery): Reactively receive results of a live query change by offloading the diff to PGlite ================================================ FILE: packages/pglite-vue/eslint.config.js ================================================ import rootConfig from '../../eslint.config.js' import pluginVue from 'eslint-plugin-vue' export default [...rootConfig, ...pluginVue.configs['flat/base']] ================================================ FILE: packages/pglite-vue/package.json ================================================ { "name": "@electric-sql/pglite-vue", "version": "0.3.1", "description": "Vue hooks for using PGlite", "type": "module", "private": false, "publishConfig": { "access": "public" }, "keywords": [ "postgres", "sql", "database", "wasm", "client", "pglite", "vue" ], "author": "Electric DB Limited", "homepage": "https://pglite.dev", "license": "Apache-2.0", "repository": { "type": "git", "url": "git+https://github.com/electric-sql/pglite.git", "directory": "packages/pglite-vue" }, "scripts": { "build": "tsup", "check:exports": "attw . --pack --profile node16", "test-v2": "vue-demi-switch 2 vue2 && vitest", "test-v2.7": "vue-demi-switch 2.7 vue2.7 && vitest", "test-v3": "vue-demi-switch 3 && vitest", "test": "pnpm test-v2 && pnpm test-v2.7 && pnpm test-v3", "lint": "eslint ./src ./test", "format": "prettier --write ./src ./test", "typecheck": "tsc", "stylecheck": "eslint ./src ./test && prettier --check ./src ./test", "prepublishOnly": "pnpm check:exports" }, "types": "dist/index.d.ts", "module": "dist/index.js", "main": "dist/index.cjs", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "files": [ "dist" ], "dependencies": { "vue-demi": "^0.14.10" }, "devDependencies": { "@arethetypeswrong/cli": "^0.18.1", "@electric-sql/pglite": "workspace:*", "@eslint-react/eslint-plugin": "^1.14.3", "@testing-library/dom": "^10.4.0", "@testing-library/vue": "^8.1.0", "@vitejs/plugin-vue": "^5.1.4", "@vue/composition-api": "1.7.2", "eslint-plugin-vue": "^9.29.0", "jsdom": "^24.1.3", "vitest": "^2.1.2", "vue": "^3.5.11", "vue2": "npm:vue@~2.6.14", "vue2.7": "npm:vue@~2.7.16" }, "peerDependencies": { "@electric-sql/pglite": "workspace:0.4.1", "@vue/composition-api": "^1.1.2", "vue": "^2.6.0 || ^3.3.0" }, "peerDependenciesMeta": { "@vue/composition-api": { "optional": true } } } ================================================ FILE: packages/pglite-vue/src/dependency-injection.ts ================================================ import { provide, inject, unref, Ref } from 'vue-demi' import { PGliteWithLive } from '@electric-sql/pglite/live' interface PGliteDependencyInjection { providePGlite: (db: Ref | (T | undefined)) => void injectPGlite: () => T | undefined } const PGliteKey = Symbol('PGliteProvider') /** * Call this function to get a PGlite provider and injector for your Vue application. * We can't provide a predefined provider and injector because that would lose type information * as the PGlite interface depends on the extensions provided to PGlite. * * @example * This example loses type information about the PGlite extensions: * ``` * provide(PGliteKey, db) * * // generic PGlite instance type, no extension types * const { db } = inject(PGliteKey) * ``` * * @returns An object with two functions: `providePGlite` and `injectPGlite`. * */ function makePGliteDependencyInjector< T extends PGliteWithLive, >(): PGliteDependencyInjection { const providePGlite = (db: Ref | (T | undefined)): void => provide(PGliteKey, db) const injectPGlite = (): T | undefined => { const db = inject | T>(PGliteKey) return unref(db) } return { providePGlite, injectPGlite, } } const { injectPGlite, providePGlite } = makePGliteDependencyInjector() export { makePGliteDependencyInjector, injectPGlite, providePGlite } ================================================ FILE: packages/pglite-vue/src/hooks.ts ================================================ import { watch, WatchSource, readonly, DeepReadonly, shallowReactive, toRefs, ToRefs, shallowRef, onScopeDispose, ref, isRef, unref, } from 'vue-demi' import { Results } from '@electric-sql/pglite' import { query as buildQuery } from '@electric-sql/pglite/template' import { injectPGlite } from './dependency-injection' type UnsubscribeFn = () => Promise type QueryParams = unknown[] | undefined | null type QueryResult = | Omit, 'affectedRows'> | { rows: undefined; fields: undefined; blob: undefined } type LiveQueryResults = ToRefs>> function useLiveQueryImpl( query: string | WatchSource, params?: QueryParams | WatchSource | WatchSource[], key?: string | WatchSource, ): LiveQueryResults { const db = injectPGlite()! const liveUpdate = shallowReactive< | Omit, 'affectedRows'> | { rows: undefined; fields: undefined; blob: undefined } >({ rows: undefined, fields: undefined, blob: undefined, }) // keep track of live query subscriptions to unsubscribe when scope is disposed const unsubscribeRef = shallowRef() const querySource = typeof query === 'string' ? ref(query) : query const paramsSources = !params ? [] : Array.isArray(params) ? params.map(ref) : [ref(params)] const keySource = typeof key === 'string' ? ref(key) : key watch( key !== undefined ? [querySource, keySource, ...paramsSources] : [querySource, ...paramsSources], () => { let cancelled = false const cb = (results: Results) => { if (cancelled) return liveUpdate.rows = results.rows liveUpdate.fields = results.fields if (results.blob !== undefined) { liveUpdate.blob = results.blob } } const query = isRef(querySource) ? unref(querySource) : querySource() const paramVals = Array.isArray(params) ? params.map((p) => (typeof p === 'function' ? p() : unref(p))) : typeof params === 'function' ? params() : unref(params) const key = isRef(keySource) ? keySource.value : keySource?.() const ret = key !== undefined ? db.live.incrementalQuery(query, paramVals, key, cb) : db.live.query(query, paramVals, cb) unsubscribeRef.value = () => { cancelled = true return ret.then(({ unsubscribe }) => unsubscribe()) } }, { immediate: true }, ) onScopeDispose(() => unsubscribeRef.value?.()) // @ts-ignore vue v2 has issues with DeepReadonly mapping return toRefs(readonly(liveUpdate)) } export function useLiveQuery( query: string | WatchSource, params?: QueryParams | WatchSource | WatchSource[], ): LiveQueryResults { return useLiveQueryImpl(query, params) } useLiveQuery.sql = function ( strings: TemplateStringsArray, ...values: any[] ): LiveQueryResults { const { query, params } = buildQuery(strings, ...values) return useLiveQueryImpl(query, params) } export function useLiveIncrementalQuery( query: string | WatchSource, params: QueryParams | WatchSource | WatchSource[], key: string | WatchSource, ): LiveQueryResults { return useLiveQueryImpl(query, params, key) } ================================================ FILE: packages/pglite-vue/src/index.ts ================================================ export * from './dependency-injection' export * from './hooks' ================================================ FILE: packages/pglite-vue/test/hooks.test.ts ================================================ import { vi, describe, it, expect, beforeEach, beforeAll } from 'vitest' import { ref } from 'vue-demi' import { PGlite } from '@electric-sql/pglite' import { live, PGliteWithLive } from '@electric-sql/pglite/live' import { type useLiveIncrementalQuery, type useLiveQuery } from '../src' function flushPromises(timeoutMs = 0): Promise { return new Promise((resolve) => setTimeout(resolve, timeoutMs)) } let db: PGliteWithLive describe('hooks', () => { beforeAll(async () => { // mock db injection vi.doMock('vue-demi', async () => { const vue = await vi.importActual('vue-demi') return { ...vue, inject: vi.fn((_) => db), } }) }) testLiveQuery('useLiveQuery') testLiveQuery('useLiveIncrementalQuery') describe('useLiveQuery.sql', () => { beforeEach(async () => { // prepare db for test db = await PGlite.create({ extensions: { live, }, }) await db.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) }) it('updates when query without parameters is provided', async () => { const { useLiveQuery } = await import('../src') await db.exec(`INSERT INTO test (name) VALUES ('test1');`) const result = useLiveQuery('SELECT * FROM test;') await flushPromises() expect(result?.rows?.value).toEqual([ { id: 1, name: 'test1', }, ]) await db.exec(`INSERT INTO test (name) VALUES ('test2');`) await flushPromises() expect(result?.rows?.value).toEqual([ { id: 1, name: 'test1', }, { id: 2, name: 'test2', }, ]) }) it('updates when query parameter ref changes', async () => { const { useLiveQuery } = await import('../src') await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`) const param = ref('test1') const result = useLiveQuery.sql`SELECT * FROM test WHERE name = ${param};` await flushPromises() expect(result?.rows?.value).toEqual([ { id: 1, name: 'test1', }, ]) param.value = 'test2' await flushPromises() expect(result?.rows?.value).toEqual([ { id: 2, name: 'test2', }, ]) }) it('updates when query contains WHERE ANY', async () => { const { useLiveQuery } = await import('../src') await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`) const ids = await db.query(`SELECT id FROM test`) expect(ids.rows.length).toBe(2) const result = useLiveQuery(`SELECT * FROM test WHERE id = ANY($1)`, [ [1, 2], ]) await flushPromises() await db.exec(`UPDATE test SET name = 'foobar' WHERE name = 'test2';`) await flushPromises() expect(result?.rows?.value).toEqual([ { id: 1, name: 'test1', }, { id: 2, name: 'foobar', }, ]) }) }) }) function testLiveQuery(queryHook: 'useLiveQuery' | 'useLiveIncrementalQuery') { describe(queryHook, () => { let hookFn: typeof useLiveQuery | typeof useLiveIncrementalQuery const incKey = 'id' beforeAll(async () => { const { useLiveQuery, useLiveIncrementalQuery } = await import('../src') hookFn = queryHook === 'useLiveQuery' ? useLiveQuery : useLiveIncrementalQuery }) beforeEach(async () => { // prepare db for test db = await PGlite.create({ extensions: { live, }, }) await db.exec(` CREATE TABLE IF NOT EXISTS test ( id SERIAL PRIMARY KEY, name TEXT ); `) }) it('can receive initial results', async () => { await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`) const result = hookFn(`SELECT * FROM test`, [], incKey) expect(result?.rows?.value).toEqual(undefined) await flushPromises() expect(result?.rows?.value).toEqual([ { id: 1, name: 'test1', }, { id: 2, name: 'test2', }, ]) expect(result?.fields?.value).toEqual([ { name: 'id', dataTypeID: 23, }, { name: 'name', dataTypeID: 25, }, ]) }) it('can receive changes', async () => { await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`) const result = hookFn(`SELECT * FROM test`, [], incKey) await flushPromises() expect(result?.rows?.value).toEqual([ { id: 1, name: 'test1', }, { id: 2, name: 'test2', }, ]) // detect new inserts await db.exec(`INSERT INTO test (name) VALUES ('test3');`) await flushPromises() expect(result?.rows?.value).toEqual([ { id: 1, name: 'test1', }, { id: 2, name: 'test2', }, { id: 3, name: 'test3', }, ]) // detect deletes await db.exec(`DELETE FROM test WHERE name = 'test1';`) await flushPromises() expect(result?.rows?.value).toEqual([ { id: 2, name: 'test2', }, { id: 3, name: 'test3', }, ]) // detect updates await db.exec(`UPDATE test SET name = 'foobar' WHERE name = 'test2';`) await flushPromises() expect(result?.rows?.value).toEqual([ { id: 3, name: 'test3', }, { id: 2, name: 'foobar', }, ]) // // detect truncates // db.exec(`TRUNCATE test;`) // await flushPromises() // expect(result?.rows?.value).toHaveLength(0) }) it('updates when query ref changes', async () => { await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`) const query = ref('SELECT * FROM test') const result = hookFn(query, [], incKey) await flushPromises() expect(result?.rows?.value).toHaveLength(2) query.value = `SELECT * FROM test WHERE name = 'test1'` await flushPromises() expect(result?.rows?.value).toHaveLength(1) }) it('updates when query getter changes', async () => { await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`) const query = ref('SELECT * FROM test') const result = hookFn(() => query.value, [], incKey) await flushPromises() expect(result?.rows?.value).toHaveLength(2) query.value = `SELECT * FROM test WHERE name = 'test1'` await flushPromises() expect(result?.rows?.value).toHaveLength(1) }) it('updates when query parameter ref changes', async () => { await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`) const params = ref(['test1']) const result = hookFn( `SELECT * FROM test WHERE name = $1;`, params, incKey, ) await flushPromises() expect(result?.rows?.value).toEqual([ { id: 1, name: 'test1', }, ]) params.value = ['test2'] await flushPromises() expect(result?.rows?.value).toEqual([ { id: 2, name: 'test2', }, ]) }) }) } ================================================ FILE: packages/pglite-vue/test/injection.test-d.ts ================================================ /** * @vitest-environment node */ import { describe, it, expectTypeOf } from 'vitest' import { PGlite, PGliteInterfaceExtensions } from '@electric-sql/pglite' import { live } from '@electric-sql/pglite/live' import { makePGliteDependencyInjector } from '../src' import { vector } from '@electric-sql/pglite/vector' describe('dependency injection', () => { it('typechecks instance being provided and injected', async () => { const dbLive = await PGlite.create({ extensions: { live, }, }) const dbLiveVector = await PGlite.create({ extensions: { live, vector, }, }) const { providePGlite, injectPGlite } = makePGliteDependencyInjector< PGlite & PGliteInterfaceExtensions<{ live: typeof live vector: typeof vector }> >() // @ts-expect-error name is a string providePGlite(dbLive) providePGlite(dbLiveVector) expectTypeOf(injectPGlite()!).toEqualTypeOf() }) }) ================================================ FILE: packages/pglite-vue/test/injection.test.ts ================================================ import { describe, it, expect, afterEach } from 'vitest' import { cleanup, render, waitFor } from '@testing-library/vue' import { computed, defineComponent, isVue3, ref, shallowRef } from 'vue-demi' import { isProxy } from 'vue' import { PGlite } from '@electric-sql/pglite' import { live } from '@electric-sql/pglite/live' import { makePGliteDependencyInjector } from '../src' if (isVue3) { describe('dependency injection', () => { afterEach(() => { cleanup() }) it('works without reference to client', async () => { const db = await PGlite.create({ extensions: { live, }, }) const { providePGlite, injectPGlite } = makePGliteDependencyInjector() const ProviderComponent = defineComponent({ template: '
', setup() { providePGlite(db) return { show: true } }, }) const ConsumerComponent = defineComponent({ template: '
count: {{ count }}
', setup() { const db = injectPGlite() const count = ref(0) db?.exec(`SELECT 1 as count;`).then((res) => { count.value = res[0].rows[0]['count'] }) return { count } }, }) const wrapper = render({ template: '', components: { ProviderComponent, ConsumerComponent }, }) await waitFor(() => expect(wrapper.getByText('count: 1')).toBeTruthy()) }) it('works with shallow reference to client', async () => { const db = await PGlite.create({ extensions: { live, }, }) const { providePGlite, injectPGlite } = makePGliteDependencyInjector() const ProviderComponent = defineComponent({ template: '
', setup() { const dbRef = shallowRef() const show = computed(() => dbRef.value !== undefined) setTimeout(() => (dbRef.value = db), 200) providePGlite(dbRef) return { show } }, }) let dbInstance: typeof db | undefined const ConsumerComponent = defineComponent({ template: '
count: {{ count }}
', setup() { const db = injectPGlite() dbInstance = db const count = ref(0) db?.exec(`SELECT 1 as count;`).then((res) => { count.value = res[0].rows[0]['count'] }) return { count } }, }) const wrapper = render({ template: '', components: { ProviderComponent, ConsumerComponent }, }) await waitFor(() => expect(wrapper.getByText('count: 1')).toBeTruthy()) // consumer's instance should not be a proxy expect(!isProxy(dbInstance)).true }) }) } else { it('dummy', () => {}) } ================================================ FILE: packages/pglite-vue/test-setup.ts ================================================ import { install } from 'vue-demi' // Polyfill File.prototype.arrayBuffer for jsdom // jsdom's File implementation doesn't properly support arrayBuffer() if (typeof File !== 'undefined' && !File.prototype.arrayBuffer) { File.prototype.arrayBuffer = function () { return new Promise((resolve, reject) => { const reader = new FileReader() reader.onload = () => resolve(reader.result as ArrayBuffer) reader.onerror = () => reject(reader.error) reader.readAsArrayBuffer(this) }) } } install() ================================================ FILE: packages/pglite-vue/tsconfig.json ================================================ { "extends": "../../tsconfig.json", "compilerOptions": { "jsx": "react-jsx", }, "include": [ "src", "test", "eslint.config.js", "test-setup.ts", "tsup.config.js", "vitest.config.ts" ] } ================================================ FILE: packages/pglite-vue/tsup.config.ts ================================================ import { defineConfig } from 'tsup' const minify = process.env.DEBUG === 'true' ? false : true export default defineConfig([ { entry: ['src/index.ts'], format: ['cjs', 'esm'], outDir: 'dist', dts: true, minify: minify, sourcemap: true, clean: true, }, ]) ================================================ FILE: packages/pglite-vue/vitest.config.ts ================================================ import { defineConfig } from 'vitest/config' import vue from '@vitejs/plugin-vue' export default defineConfig({ // @ts-ignore type mismsatch but works? plugins: [vue()], test: { name: 'pglite-vue', dir: './test', watch: false, environment: 'jsdom', setupFiles: ['test-setup.ts'], typecheck: { enabled: true }, restoreMocks: true, testTimeout: 15000, testTransformMode: { ssr: ['**/*'], }, }, }) ================================================ FILE: pnpm-workspace.yaml ================================================ packages: - 'packages/*' - './docs/**' - 'examples/*' ================================================ FILE: tsconfig.json ================================================ { "compilerOptions": { "allowJs": true, "allowSyntheticDefaultImports": true, "alwaysStrict": true, "allowUnreachableCode": false, "allowUnusedLabels": false, "checkJs": false, "declaration": true, "noEmit": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "isolatedModules": true, "lib": ["ES2020", "DOM", "DOM.Iterable"], "module": "ESNext", "moduleResolution": "Bundler", "noFallthroughCasesInSwitch": true, "noImplicitAny": true, "noImplicitReturns": true, "noImplicitThis": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "strictBindCallApply": true, "strictFunctionTypes": true, "strictNullChecks": true, "target": "ES2020" }, "include": ["eslint.config.js"] }